@import url('https://fonts.googleapis.com/css2?family=Rethink+Sans:wght@400;500;600;700;800&display=swap');

:root {
  --blue: #1DB6FF;
  --pink: #FF99FF;
  --ink: #111318;
  --muted: #68707b;
  --line: #e8ebef;
  --soft: #f6f8fa;
  --white: #ffffff;
  --radius: 24px;
  --shadow: 0 18px 60px rgba(17,19,24,.08);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--white);
  color: var(--ink);
  font-family: 'Rethink Sans', Arial, sans-serif;
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
}

body.menu-open {
  overflow: hidden;
}

a {
  color: inherit;
  text-decoration: none;
}

img {
  max-width: 100%;
  display: block;
}

.container {
  width: min(1180px, calc(100% - 40px));
  margin: 0 auto;
}


/* =========================================
   HEADER
   ========================================= */

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(255,255,255,.94);
  backdrop-filter: blur(18px);
  border-bottom: 1px solid rgba(232,235,239,.85);
}

.nav-wrap {
  min-height: 88px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
}

.brand {
  display: flex;
  align-items: center;
  width: 220px;
  flex: 0 0 220px;
}

.brand img {
  width: 100%;
  height: auto;
}

.site-logo {
  width: 240px;
  height: auto;
}

.main-nav {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 14px;
  font-weight: 600;
}

.main-nav > a {
  padding: 10px 13px;
  border-radius: 999px;
  color: #3f4650;
  transition: .2s ease;
}

.main-nav > a:hover {
  background: #f2f4f6;
  color: var(--ink);
}

.main-nav .nav-cta {
  background: var(--ink);
  color: #fff;
  padding: 12px 17px;
  margin-left: 8px;
}

.main-nav .nav-cta:hover {
  background: #262a31;
  color: #fff;
}

.nav-cta span {
  margin-left: 7px;
  color: var(--blue);
}

.menu-toggle {
  display: none;
  border: 0;
  background: none;
  padding: 10px;
  cursor: pointer;
}

.menu-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--ink);
  margin: 5px 0;
}


/* =========================================
   HERO
   ========================================= */

.hero {
  padding: 86px 0 34px;
  overflow: hidden;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.02fr .98fr;
  gap: 58px;
  align-items: center;
}

.eyebrow {
  text-transform: uppercase;
  letter-spacing: .13em;
  font-size: 11px;
  font-weight: 800;
  color: #7b838d;
  margin-bottom: 16px;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1 {
  font-size: clamp(54px, 7vw, 92px);
  line-height: .95;
  letter-spacing: -.042em;
  margin-bottom: 28px;
  font-weight: 800;
  max-width: 780px;
}

h1 .accent,
h2 .accent {
  background: linear-gradient(90deg, var(--blue), var(--pink));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.lede {
  font-size: 20px;
  line-height: 1.55;
  color: #4f5660;
  max-width: 660px;
}

.actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-top: 32px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  border-radius: 999px;
  padding: 13px 19px;
  font-weight: 700;
  font-size: 14px;
  border: 1px solid transparent;
  transition: .2s ease;
}

.btn-primary {
  background: var(--ink);
  color: #fff;
}

.btn-primary:hover {
  transform: translateY(-2px);
  background: #282c33;
}

.btn-secondary {
  background: #fff;
  border-color: #dfe3e7;
}

.btn-secondary:hover {
  border-color: var(--ink);
  transform: translateY(-2px);
}

.btn-blue {
  background: var(--blue);
  color: var(--ink);
}


/* =========================================
   HERO MEDIA
   ========================================= */

.hero-media {
  position: relative;
  min-height: 480px;
  border-radius: 32px;
  overflow: hidden;
  background: #f4f6f8;
}

.hero-media img {
  position: relative;
  z-index: 2;
  width: 100%;
  height: 100%;
  min-height: 480px;
  object-fit: cover;
  object-position: center;
}

.hero-media:before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(29,182,255,.08),
    rgba(255,153,255,.08)
  );
  z-index: 1;
  pointer-events: none;
}

.hero-orb {
  position: absolute;
  width: 340px;
  height: 340px;
  border-radius: 50%;
  right: -90px;
  top: -90px;
  background: linear-gradient(
    135deg,
    rgba(29,182,255,.22),
    rgba(255,153,255,.24)
  );
  filter: blur(2px);
  z-index: 3;
  pointer-events: none;
}


/* =========================================
   HERO BACKGROUND VERSION
   ========================================= */

.hero-background {
  position: relative;
  min-height: 720px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  overflow: hidden;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(
      90deg,
      rgba(255,255,255,.96) 0%,
      rgba(255,255,255,.90) 38%,
      rgba(255,255,255,.45) 65%,
      rgba(255,255,255,.10) 100%
    );
}

.hero-content {
  position: relative;
  z-index: 2;
  width: 100%;
}

.hero-copy {
  max-width: 680px;
  padding: 80px 0 120px;
}

.hero-copy h1 {
  max-width: 700px;
}

.hero-copy .lede {
  max-width: 620px;
}

.hero-background .stats {
  position: relative;
  z-index: 2;
  width: 100%;
  margin-top: auto;
  margin-bottom: 30px;
}


/* =========================================
   IMAGE PLACEHOLDERS
   ========================================= */

.image-placeholder {
  position: relative;
  overflow: hidden;
  background: linear-gradient(
    135deg,
    #f4f6f8,
    #edf1f5
  );
  min-height: 480px;
  border: 1px solid var(--line);
  border-radius: 32px;
}

.image-placeholder:before {
  content: "IMAGE PLACEHOLDER";
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  color: #a3aab3;
  font-weight: 800;
  font-size: 12px;
  letter-spacing: .16em;
}

.image-placeholder img {
  position: relative;
  z-index: 1;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.image-placeholder.tall {
  min-height: 560px;
}

.image-placeholder.small {
  min-height: 300px;
}

.image-note {
  position: absolute;
  z-index: 4;
  bottom: 14px;
  left: 14px;
  background: rgba(255,255,255,.9);
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 7px 11px;
  font-size: 10px;
  font-weight: 700;
  color: #777;
  letter-spacing: .05em;
}


/* =========================================
   ABOUT IMAGE
   ========================================= */

.about-image {
  width: 100%;
  height: 520px;
  overflow: hidden;
  border-radius: 24px;
  background: #f4f6f8;
}

.about-photo {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
}


/* =========================================
   SECTIONS
   ========================================= */

.section {
  padding: 105px 0;
}

.section.soft {
  background: var(--soft);
}

.section.dark {
  background: var(--ink);
  color: #fff;
}

.section-head {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: end;
  margin-bottom: 48px;
}

.section-head.single {
  grid-template-columns: 1fr;
  max-width: 800px;
}

h2 {
  font-size: clamp(38px, 5vw, 64px);
  line-height: 1;
  letter-spacing: -.05em;
  margin-bottom: 18px;
  font-weight: 800;
}

h3 {
  font-size: 24px;
  line-height: 1.15;
  letter-spacing: -.025em;
  margin-bottom: 12px;
}

.body-copy {
  font-size: 18px;
  color: #59616c;
  max-width: 620px;
}

.dark .body-copy,
.dark .muted {
  color: #c5cbd2;
}


/* =========================================
   VALUE CARDS
   ========================================= */

.value-grid {
  display: grid;
  grid-template-columns: repeat(3,1fr);
  gap: 16px;
}

.value-card,
.feature-card,
.package-card,
.story-card,
.contact-card,
.legal-card {
  border: 1px solid var(--line);
  background: #fff;
  border-radius: var(--radius);
  padding: 30px;
  box-shadow: 0 8px 30px rgba(17,19,24,.025);
}

.value-card {
  min-height: 260px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.icon-box {
  width: 46px;
  height: 46px;
  border-radius: 14px;
  background: linear-gradient(
    135deg,
    rgba(29,182,255,.18),
    rgba(255,153,255,.18)
  );
  display: grid;
  place-items: center;
  font-weight: 800;
  margin-bottom: 30px;
}

.card-link {
  font-size: 13px;
  font-weight: 800;
  margin-top: 20px;
  display: inline-flex;
  gap: 7px;
}

.card-link span {
  color: var(--blue);
}


/* =========================================
   TWO COLUMN
   ========================================= */

.two-col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 70px;
  align-items: center;
}

.feature-list {
  display: grid;
  gap: 12px;
  margin: 30px 0 0;
  padding: 0;
  list-style: none;
}

.feature-list li {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  padding: 15px 0;
  border-bottom: 1px solid var(--line);
  font-weight: 600;
}

.feature-list li:before {
  content: '✓';
  display: grid;
  place-items: center;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: rgba(29,182,255,.14);
  font-size: 12px;
  color: #0d84bd;
  flex: 0 0 22px;
}


/* =========================================
   STATS
   ========================================= */

.stats {
  display: grid;
  grid-template-columns: repeat(4,1fr);
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
  border-radius: 22px;
  overflow: hidden;
  margin-top: 30px;
}

.stat {
  background: #fff;
  padding: 26px 24px;
}

.stat strong {
  display: block;
  font-size: 31px;
  letter-spacing: -.04em;
}

.stat span {
  display: block;
  font-size: 12px;
  color: var(--muted);
  margin-top: 4px;
}


/* =========================================
   EXPERIENCES
   ========================================= */

.experience-grid {
  display: grid;
  grid-template-columns: repeat(2,1fr);
  gap: 16px;
}

.feature-card {
  padding: 0;
  overflow: hidden;
  min-height: 460px;
  display: flex;
  flex-direction: column;
}

.feature-card .card-image {
  height: 240px;
  overflow: hidden;
}

.feature-card .card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.feature-card .card-content {
  padding: 28px;
}

.tag {
  display: inline-flex;
  padding: 6px 10px;
  border-radius: 999px;
  background: #f1f4f6;
  color: #616a74;
  font-size: 10px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: .08em;
  margin-bottom: 16px;
}


/* =========================================
   PACKAGES
   ========================================= */

.package-grid {
  display: grid;
  grid-template-columns: repeat(3,1fr);
  gap: 16px;
}

.package-card {
  position: relative;
  min-height: 440px;
  display: flex;
  flex-direction: column;
}

.package-card.featured {
  border: 2px solid var(--blue);
  box-shadow: 0 16px 50px rgba(29,182,255,.12);
}

.package-card .package-label {
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: .12em;
  font-weight: 800;
  color: #77808a;
}

.package-card .price-note {
  font-size: 13px;
  color: var(--muted);
  margin-bottom: 24px;
}

.package-card ul {
  list-style: none;
  padding: 0;
  margin: 0 0 30px;
  display: grid;
  gap: 10px;
}

.package-card li {
  font-size: 14px;
  color: #4d5560;
  padding-left: 22px;
  position: relative;
}

.package-card li:before {
  content: '•';
  position: absolute;
  left: 4px;
  color: var(--blue);
  font-size: 18px;
  line-height: 1;
}

.package-card .btn {
  margin-top: auto;
}


/* =========================================
   CLIENT LOGOS
   ========================================= */

/*
   FLOATING LOGOS
   No square cards.
   No borders.
   No background.
   No shadows.
*/

.logos {
  display: grid;
  grid-template-columns: repeat(5,1fr);
  gap: 38px 30px;
  align-items: center;
}

.client {
  min-height: 80px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 15px;
  background: transparent;
  border: 0;
  border-radius: 0;
  box-shadow: none;
}

.client img {
  display: block;
  max-width: 155px;
  max-height: 60px;
  width: auto;
  height: auto;
  object-fit: contain;
}

.client .logo-fallback {
  font-size: 11px;
  font-weight: 800;
  color: #98a0a9;
  text-align: center;
}


/* =========================================
   CASE STUDIES / SELECTED ACTIVATIONS
   ========================================= */

.case-grid {
  display: grid;
  grid-template-columns: repeat(2,1fr);
  gap: 16px;
}

.story-card {
  padding: 0;
  overflow: hidden;
  transition:
    transform .25s ease,
    box-shadow .25s ease;
}

.story-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow);
}

.story-card .story-image {
  width: 100%;
  height: 300px;
  overflow: hidden;
  background: #f4f6f8;
  position: relative;
}

.story-card .story-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
  transition: transform .45s ease;
}

.story-card:hover .story-image img {
  transform: scale(1.04);
}

.story-card .story-content {
  padding: 28px;
}

.story-meta {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  margin: 18px 0;
}

.pill {
  border: 1px solid var(--line);
  padding: 7px 10px;
  border-radius: 999px;
  font-size: 11px;
  color: #656d76;
  font-weight: 700;
}


/* =========================================
   IMPACT
   ========================================= */

.impact-panel {
  border-radius: 32px;
  padding: 44px;
  background: linear-gradient(
    135deg,
    #f7fbfe,
    #fff6ff
  );
  border: 1px solid var(--line);
}

.impact-grid {
  display: grid;
  grid-template-columns: repeat(4,1fr);
  gap: 12px;
  margin-top: 30px;
}

.impact-stat {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 20px;
  padding: 24px;
}

.impact-stat strong {
  font-size: 36px;
  letter-spacing: -.05em;
  display: block;
}

.impact-stat span {
  font-size: 12px;
  color: var(--muted);
}


/* =========================================
   DASHBOARD
   ========================================= */

.dashboard {
  display: grid;
  grid-template-columns: 1.3fr .7fr;
  gap: 16px;
}

.dash-main,
.dash-side {
  border: 1px solid var(--line);
  border-radius: 24px;
  background: #fff;
  padding: 26px;
}

.dash-top {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  align-items: center;
  border-bottom: 1px solid var(--line);
  padding-bottom: 20px;
  margin-bottom: 20px;
}

.mini-grid {
  display: grid;
  grid-template-columns: repeat(2,1fr);
  gap: 12px;
}

.mini-card {
  border: 1px solid var(--line);
  border-radius: 18px;
  padding: 20px;
}

.mini-card strong {
  display: block;
  font-size: 25px;
}

.mini-card span {
  font-size: 11px;
  color: var(--muted);
}

.bar {
  height: 10px;
  background: #edf0f3;
  border-radius: 99px;
  overflow: hidden;
  margin-top: 10px;
}

.bar i {
  display: block;
  height: 100%;
  width: 72%;
  background: linear-gradient(
    90deg,
    var(--blue),
    var(--pink)
  );
  border-radius: 99px;
}
/* =========================================================
   CONTACT PAGE
   ========================================================= */

.contact-hero {
    padding: 80px 0;
    border-bottom: 1px solid var(--line);
}

.contact-hero-grid {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 520px;
    gap: 80px;
    align-items: center;
}

.contact-hero-copy {
    max-width: 760px;
}

.contact-hero-copy h1 {
    margin: 18px 0 24px;
    font-size: clamp(48px, 6vw, 78px);
    line-height: 0.98;
    letter-spacing: -0.045em;
}

.contact-hero-copy p {
    max-width: 680px;
    margin: 0;
    font-size: 19px;
    line-height: 1.65;
    color: var(--muted);
}


/* =========================================================
   CONTACT FORM
   ========================================================= */

.contact-form-card {
    padding: 36px;
}

.contact-form-card h2 {
    margin: 14px 0 28px;
    font-size: 34px;
    line-height: 1.08;
    letter-spacing: -0.025em;
}

.contact-form-card .btn {
    width: 100%;
}


/* =========================================================
   CONTACT OPTIONS
   FORCE FOUR HORIZONTAL COLUMNS
   ========================================================= */

section.contact-options-section .container .contact-options-grid {
    display: grid !important;
    grid-template-columns: repeat(4, minmax(0, 1fr)) !important;
    grid-template-rows: 1fr !important;
    gap: 16px !important;
    width: 100%;
}

section.contact-options-section .contact-options-grid .contact-card {
    width: 100% !important;
    min-width: 0;
    margin: 0 !important;
    height: 100%;
    display: flex;
    flex-direction: column;
}

section.contact-options-section .contact-options-grid .contact-card .body-copy {
    flex: 1;
}

section.contact-options-section .contact-options-grid .contact-card a {
    margin-top: 24px;
}


/* =========================================================
   DIRECT CONTACT
   ========================================================= */

.contact-direct {
    max-width: 900px;
}

.contact-direct h2 {
    margin: 14px 0 18px;
}


/* =========================================================
   RESPONSIVE
   ========================================================= */

/* Tablet */

@media (max-width: 1100px) {

    .contact-hero-grid {
        grid-template-columns: minmax(0, 1fr) 460px;
        gap: 40px;
    }

    section.contact-options-section .container .contact-options-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
    }

}


/* Mobile */

@media (max-width: 760px) {

    .contact-hero {
        padding: 60px 0;
    }

    .contact-hero-grid {
        grid-template-columns: 1fr;
        gap: 44px;
    }

    .contact-hero-copy h1 {
        font-size: clamp(44px, 12vw, 64px);
    }

    .contact-form-card {
        padding: 28px;
    }

    .contact-form-card h2 {
        font-size: 30px;
    }

    section.contact-options-section .container .contact-options-grid {
        grid-template-columns: 1fr !important;
    }

}


/* Small mobile */

@media (max-width: 480px) {

    .contact-form-card {
        padding: 24px;
    }

    .contact-hero-copy p {
        font-size: 17px;
    }

}

/* =========================================
   SOCIAL
   ========================================= */

.social-grid {
  display: grid;
  grid-template-columns: repeat(4,1fr);
  gap: 12px;
}

.social-tile {
  min-height: 250px;
  border-radius: 24px;
  padding: 24px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  border: 1px solid var(--line);
  background: var(--soft);
}

.social-tile:nth-child(2) {
  background: linear-gradient(
    135deg,
    rgba(29,182,255,.12),
    rgba(29,182,255,.03)
  );
}

.social-tile:nth-child(3) {
  background: linear-gradient(
    135deg,
    rgba(255,153,255,.16),
    rgba(255,153,255,.03)
  );
}

.social-tile:nth-child(4) {
  background: linear-gradient(
    135deg,
    rgba(17,19,24,.08),
    #fff
  );
}


/* =========================================
   CTA
   ========================================= */

.cta-band {
  padding: 85px 0;
  background: var(--ink);
  color: #fff;
}

.cta-band .cta-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
}

.cta-band h2 {
  max-width: 760px;
  margin: 0;
}

.cta-band .btn {
  background: #fff;
  color: var(--ink);
}


/* =========================================
   PAGE HERO
   ========================================= */

.page-hero {
  padding: 80px 0 70px;
  border-bottom: 1px solid var(--line);
}

.page-hero .hero-copy {
  max-width: 900px;
}

.page-hero h1 {
  font-size: clamp(52px,7vw,84px);
  max-width: 1000px;
}

.page-hero p {
  font-size: 19px;
  color: #5b636d;
  max-width: 720px;
}


/* =========================================
   TIMELINE
   ========================================= */

.timeline {
  display: grid;
  gap: 0;
}

.timeline-row {
  display: grid;
  grid-template-columns: 90px 1fr;
  gap: 30px;
  padding: 28px 0;
  border-bottom: 1px solid var(--line);
}

.timeline-row .num {
  font-size: 12px;
  font-weight: 800;
  color: var(--blue);
  padding-top: 4px;
}

.timeline-row h3 {
  margin-bottom: 7px;
}


/* =========================================
   CONTACT
   ========================================= */

.contact-grid {
  display: grid;
  grid-template-columns: .8fr 1.2fr;
  gap: 16px;
}

.contact-card {
  min-height: 240px;
}

.contact-card a {
  font-weight: 700;
}

.contact-card a:hover {
  color: #008bc9;
}


/* =========================================
   FORMS
   ========================================= */

.form-card {
  border: 1px solid var(--line);
  border-radius: 28px;
  padding: 32px;
  background: #fff;
}

.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.form-field {
  display: grid;
  gap: 7px;
}

.form-field.full {
  grid-column: 1/-1;
}

.form-field label {
  font-size: 12px;
  font-weight: 800;
}

.form-field input,
.form-field textarea,
.form-field select {
  width: 100%;
  border: 1px solid #dfe3e7;
  border-radius: 14px;
  padding: 13px 14px;
  font: inherit;
  background: #fff;
  outline: none;
}

.form-field textarea {
  min-height: 150px;
  resize: vertical;
}

.form-field input:focus,
.form-field textarea:focus,
.form-field select:focus {
  border-color: var(--blue);
  box-shadow: 0 0 0 4px rgba(29,182,255,.1);
}


/* =========================================
   LEGAL
   ========================================= */

.legal-card {
  padding: 38px;
}

.legal-card h2 {
  font-size: 32px;
  margin-top: 36px;
}

.legal-card h2:first-child {
  margin-top: 0;
}

.legal-card h3 {
  font-size: 19px;
  margin-top: 26px;
}

.legal-card p,
.legal-card li {
  color: #555e69;
}

.legal-card ul {
  padding-left: 20px;
}


/* =========================================
   FOOTER
   ========================================= */

.site-footer {
  background: #0e1014;
  color: #fff;
  padding-top: 70px;
}

.footer-top {
  display: grid;
  grid-template-columns: 1.7fr repeat(4,1fr);
  gap: 38px;
  padding-bottom: 58px;
}

.footer-logo-link {
  display: block;
  width: min(300px,100%);
  margin-bottom: 18px;
}

.footer-logo-link img {
  width: 100%;
  height: auto;
}

.footer-brand-col p {
  max-width: 360px;
  color: #fff;
  font-weight: 700;
}

.footer-brand-col .muted {
  font-weight: 400;
  color: #aeb5bf;
}

.footer-col {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer-col h3 {
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: .12em;
  color: #fff;
  margin-bottom: 8px;
}

.footer-col a {
  font-size: 13px;
  color: #aeb5bf;
}

.footer-col a:hover {
  color: #fff;
}

.social-col a span {
  color: var(--blue);
}

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,.12);
  padding: 18px 0;
  display: flex;
  justify-content: space-between;
  gap: 20px;
  font-size: 11px;
  color: #858d97;
}


/* =========================================
   REVEAL ANIMATION
   ========================================= */

.reveal {
  opacity: 0;
  transform: translateY(16px);
  transition: .7s ease;
}

.reveal.is-visible {
  opacity: 1;
  transform: none;
}


/* =========================================
   TABLET
   ========================================= */

@media (max-width: 980px) {

  .main-nav {
    gap: 0;
  }

  .main-nav > a {
    padding: 9px 8px;
  }

  .brand {
    width: 200px;
    flex-basis: 200px;
  }

  .hero-grid,
  .two-col,
  .section-head,
  .dashboard,
  .contact-grid {
    grid-template-columns: 1fr;
  }

  .hero {
    padding-top: 58px;
  }

  .hero-media {
    min-height: 400px;
  }

  .hero-media img {
    min-height: 400px;
  }

  .section-head {
    gap: 18px;
  }

  .value-grid,
  .package-grid {
    grid-template-columns: 1fr 1fr;
  }

  .stats {
    grid-template-columns: 1fr 1fr;
  }

  .logos {
    grid-template-columns: repeat(4,1fr);
  }

  .social-grid {
    grid-template-columns: 1fr 1fr;
  }

  .footer-top {
    grid-template-columns: 1.4fr 1fr 1fr 1fr;
  }

  .footer-top .social-col {
    display: none;
  }

  .impact-grid {
    grid-template-columns: 1fr 1fr;
  }
}


/* =========================================
   MOBILE
   ========================================= */

@media (max-width: 760px) {

  .container {
    width: min(100% - 28px,1180px);
  }

  .nav-wrap {
    min-height: 72px;
  }

  .brand {
    width: 180px;
    flex-basis: 180px;
  }

  .site-logo {
    width: 190px;
  }

  .menu-toggle {
    display: block;
    position: relative;
    z-index: 70;
  }

  .main-nav {
    display: none;
    position: fixed;
    inset: 72px 0 0;
    background: #fff;
    padding: 18px 14px;
    flex-direction: column;
    align-items: stretch;
    gap: 4px;
    overflow: auto;
    border-top: 1px solid var(--line);
    z-index: 60;
  }

  .main-nav.is-open {
    display: flex;
  }

  .main-nav > a {
    padding: 15px 14px;
    border-radius: 14px;
    font-size: 16px;
  }

  .main-nav .nav-cta {
    margin: 10px 0 0;
    text-align: center;
  }

  .hero {
    padding: 45px 0 25px;
  }

  .hero-media {
    min-height: 330px;
  }

  .hero-media img {
    min-height: 330px;
  }

  .hero-background {
    min-height: 760px;
    background-position: 62% center;
  }

  .hero-overlay {
    background:
      linear-gradient(
        180deg,
        rgba(255,255,255,.94) 0%,
        rgba(255,255,255,.88) 48%,
        rgba(255,255,255,.55) 100%
      );
  }

  .hero-copy {
    padding: 70px 0 80px;
  }

  .hero-background .stats {
    margin-bottom: 20px;
  }

  .section {
    padding: 72px 0;
  }

  .section-head {
    margin-bottom: 32px;
  }

  .value-grid,
  .package-grid,
  .experience-grid,
  .case-grid,
  .contact-grid {
    grid-template-columns: 1fr;
  }

  .stats {
    grid-template-columns: 1fr 1fr;
  }

  .stat {
    padding: 20px;
  }

  .stat strong {
    font-size: 26px;
  }

  .logos {
    grid-template-columns: repeat(2,1fr);
    gap: 30px 20px;
  }

  .client {
    min-height: 80px;
    padding: 12px;
  }

  .client img {
    max-width: 130px;
    max-height: 55px;
  }

  .story-card .story-image {
    height: 250px;
  }

  .impact-grid {
    grid-template-columns: 1fr 1fr;
  }

  .social-grid {
    grid-template-columns: 1fr 1fr;
  }

  .cta-band .cta-inner {
    align-items: flex-start;
    flex-direction: column;
  }

  .footer-top {
    grid-template-columns: 1fr 1fr;
    gap: 34px;
  }

  .footer-brand-col {
    grid-column: 1/-1;
  }

  .footer-bottom {
    flex-direction: column;
  }

  .form-grid {
    grid-template-columns: 1fr;
  }

  .form-field.full {
    grid-column: auto;
  }

  .page-hero {
    padding: 58px 0;
  }

  .page-hero h1 {
    font-size: 52px;
  }

  .about-image {
    height: 400px;
  }
}


/* =========================================
   SMALL MOBILE
   ========================================= */

@media (max-width: 480px) {

  h1 {
    font-size: 49px;
    line-height: .97;
    letter-spacing: -.025em;
  }

  .hero-media {
    min-height: 280px;
  }

  .hero-media img {
    min-height: 280px;
  }

  .stats,
  .impact-grid {
    grid-template-columns: 1fr;
  }

  .social-grid {
    grid-template-columns: 1fr;
  }

  .footer-top {
    grid-template-columns: 1fr;
  }

  .footer-col {
    display: none;
  }

  .footer-brand-col {
    grid-column: auto;
  }

  .package-card {
    min-height: 0;
  }

  .page-hero h1 {
    font-size: 46px;
  }

  .about-image {
    height: 330px;
  }

  .story-card .story-image {
    height: 220px;
  }

}

/* =========================================================
   HOMEPAGE RECOGNITION
========================================================= */

.recognition-section {
    padding-top: 70px;
    padding-bottom: 70px;
}

.recognition-card {
    display: grid;
    grid-template-columns: minmax(0, 1.35fr) minmax(260px, .65fr);
    gap: 60px;
    align-items: center;
    padding: 55px 60px;
    border: 1px solid var(--line);
    border-radius: 28px;
    background: #ffffff;
    box-shadow: var(--shadow);
}

.recognition-copy h2 {
    max-width: 700px;
    margin-bottom: 20px;
}

.recognition-copy .body-copy {
    max-width: 650px;
}

.recognition-label {
    display: flex;
    flex-direction: column;
    gap: 3px;
    margin-top: 28px;
    padding-left: 18px;
    border-left: 3px solid var(--blue);
}

.recognition-label strong {
    font-size: 16px;
    line-height: 1.3;
}

.recognition-label span {
    font-size: 14px;
    color: var(--muted);
}

.recognition-logo {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 220px;
}

.recognition-logo img {
    display: block;
    width: 100%;
    max-width: 260px;
    max-height: 220px;
    object-fit: contain;
}

.recognition-placeholder {
    width: 220px;
    height: 220px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    border: 2px dashed #d9dee4;
    border-radius: 20px;
    color: #8a929c;
    font-size: 14px;
    line-height: 1.5;
}

.recognition-placeholder small {
    font-size: 11px;
}


/* =========================================================
   HOMEPAGE RECOGNITION — TABLET
========================================================= */

@media (max-width: 980px) {

    .recognition-card {
        grid-template-columns: 1fr;
        gap: 35px;
        padding: 45px;
    }

    .recognition-logo {
        min-height: 180px;
    }

}


/* =========================================================
   HOMEPAGE RECOGNITION
========================================================= */

.recognition-section {
    padding-top: 55px;
    padding-bottom: 55px;
}

.recognition-card {
    display: grid !important;
    grid-template-columns: 130px minmax(0, 1fr) !important;
    gap: 35px;
    align-items: center;
    width: 100%;
    padding: 30px 40px;
    box-sizing: border-box;
    border: 1px solid var(--line);
    border-radius: 24px;
    background: #ffffff;
    box-shadow: var(--shadow);
}

.recognition-logo {
    width: 130px !important;
    height: 110px !important;
    display: flex !important;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.recognition-logo img {
    display: block !important;
    width: 100% !important;
    height: 100% !important;
    max-width: 130px !important;
    max-height: 110px !important;
    object-fit: contain !important;
}

.recognition-copy {
    min-width: 0;
}

.recognition-copy h2 {
    margin-top: 5px;
    margin-bottom: 12px;
    max-width: 700px;
}

.recognition-copy .body-copy {
    max-width: 680px;
    margin-bottom: 0;
}

.recognition-label {
    display: flex;
    flex-direction: column;
    gap: 2px;
    margin-top: 18px;
    padding-left: 14px;
    border-left: 3px solid var(--blue);
}

.recognition-label strong {
    font-size: 14px;
    line-height: 1.3;
}

.recognition-label span {
    font-size: 12px;
    color: var(--muted);
}


/* =========================================================
   HOMEPAGE RECOGNITION
   DEDICATED / ISOLATED STYLES
========================================================= */

.homepage-recognition-section {
    padding-top: 55px;
    padding-bottom: 55px;
}

.homepage-recognition-card {
    display: flex !important;
    flex-direction: row !important;
    flex-wrap: nowrap !important;
    align-items: center !important;
    width: 100% !important;
    box-sizing: border-box;
    gap: 40px;
    padding: 32px 40px;
    border: 1px solid var(--line);
    border-radius: 24px;
    background: #ffffff;
    box-shadow: var(--shadow);
}

.homepage-recognition-image {
    display: flex !important;
    flex: 0 0 120px !important;
    width: 120px !important;
    height: 100px !important;
    min-width: 120px !important;
    max-width: 120px !important;
    align-items: center !important;
    justify-content: center !important;
    overflow: hidden;
}

.homepage-recognition-image img {
    display: block !important;
    width: 120px !important;
    height: 100px !important;
    max-width: 120px !important;
    max-height: 100px !important;
    object-fit: contain !important;
}

.homepage-recognition-text {
    flex: 1 1 auto !important;
    min-width: 0 !important;
}

.homepage-recognition-text h2 {
    margin-top: 4px;
    margin-bottom: 12px;
}

.homepage-recognition-text .body-copy {
    max-width: 700px;
    margin-bottom: 0;
}

.homepage-recognition-label {
    display: flex;
    flex-direction: column;
    gap: 2px;
    margin-top: 16px;
    padding-left: 14px;
    border-left: 3px solid var(--blue);
}

.homepage-recognition-label strong {
    font-size: 14px;
    line-height: 1.3;
}

.homepage-recognition-label span {
    font-size: 12px;
    color: var(--muted);
}


/* =========================================================
   MOBILE
   STILL TWO COLUMNS
========================================================= */

@media (max-width: 760px) {

    .homepage-recognition-section {
        padding-top: 40px;
        padding-bottom: 40px;
    }

    .homepage-recognition-card {
        display: flex !important;
        flex-direction: row !important;
        flex-wrap: nowrap !important;
        gap: 18px;
        padding: 24px 18px;
    }

    .homepage-recognition-image {
        flex: 0 0 75px !important;
        width: 75px !important;
        height: 70px !important;
        min-width: 75px !important;
        max-width: 75px !important;
    }

    .homepage-recognition-image img {
        width: 75px !important;
        height: 70px !important;
        max-width: 75px !important;
        max-height: 70px !important;
    }

    .homepage-recognition-text h2 {
        font-size: 23px;
        line-height: 1.15;
        margin-top: 3px;
        margin-bottom: 9px;
    }

    .homepage-recognition-text .body-copy {
        font-size: 13px;
        line-height: 1.5;
    }

    .homepage-recognition-label {
        margin-top: 12px;
    }

}
/* =========================================
   TEAM CULTURE — BUILD / CARE / MOVE
   ========================================= */

.culture-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin-top: 42px;
}

.culture-card {
    padding: 36px 32px;
    background: #ffffff;
    border: 1px solid #e8ebef;
    border-radius: 22px;
    min-height: 230px;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
}

.culture-number {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 42px;
    height: 42px;
    margin-bottom: 24px;
    border-radius: 50%;
    background: #1DB6FF;
    color: #ffffff;
    font-size: 13px;
    font-weight: 700;
}

.culture-card h3 {
    margin: 0 0 12px;
    font-size: 25px;
    line-height: 1.2;
}

.culture-card p {
    margin: 0;
    color: #68717c;
    line-height: 1.7;
}


/* TABLET */
@media (max-width: 900px) {

    .culture-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 16px;
    }

    .culture-card {
        padding: 28px 22px;
    }

}


/* MOBILE */
@media (max-width: 700px) {

    .culture-grid {
        grid-template-columns: 1fr;
        gap: 16px;
        margin-top: 30px;
    }

    .culture-card {
        min-height: auto;
        padding: 28px 24px;
    }

}

/* =========================================
   CSR PAGE
   ========================================= */

.csr-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    margin-top: 42px;
}

.csr-card {
    background: #ffffff;
    border: 1px solid #e8ebef;
    border-radius: 22px;
    padding: 32px 26px;
    min-height: 280px;
    display: flex;
    flex-direction: column;
}

.csr-number {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    background: #1DB6FF;
    color: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 13px;
    font-weight: 700;
    margin-bottom: 28px;
}

.csr-card h3 {
    margin: 0 0 14px;
    font-size: 21px;
    line-height: 1.25;
}

.csr-card p {
    margin: 0;
    color: #68717c;
    line-height: 1.7;
}


/* CLOSING SECTION */

.csr-closing {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
}

.csr-closing-content {
    max-width: 560px;
}

.csr-closing-content h2 {
    margin-bottom: 18px;
}

.csr-closing-content p {
    color: #68717c;
    line-height: 1.8;
    font-size: 17px;
}

.csr-closing-image {
    height: 420px;
    overflow: hidden;
    border-radius: 24px;
}

.csr-closing-image img {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
}


/* TABLET */

@media (max-width: 1000px) {

    .csr-grid {
        grid-template-columns: repeat(2, 1fr);
    }

}


/* MOBILE */

@media (max-width: 760px) {

    .csr-grid {
        grid-template-columns: 1fr;
        gap: 16px;
        margin-top: 30px;
    }

    .csr-card {
        min-height: auto;
        padding: 28px 24px;
    }

    .csr-closing {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .csr-closing-image {
        height: 300px;
    }

}


/* =========================================================
   BIKEDPH V3 — VISUAL POLISH + INTERACTION LAYER
   This layer is intentionally additive. Existing page structure
   and booking figures are preserved.
========================================================= */

:root {
  --gradient: linear-gradient(105deg, #1DB6FF 0%, #8ea5ff 48%, #FF99FF 100%);
  --gradient-soft: linear-gradient(135deg, rgba(29,182,255,.13), rgba(255,153,255,.16));
  --focus: 0 0 0 4px rgba(29,182,255,.16);
}

::selection {
  background: #1DB6FF;
  color: #111318;
}

:focus-visible {
  outline: 0;
  box-shadow: var(--focus);
}

/* Header polish */
.site-header {
  transition: box-shadow .25s ease, background .25s ease;
}
.site-header.is-scrolled {
  box-shadow: 0 10px 35px rgba(17,19,24,.08);
  background: rgba(255,255,255,.97);
}
.nav-wrap {
  position: relative;
}
.main-nav > a {
  position: relative;
}
.main-nav > a:not(.nav-cta):after {
  content: "";
  position: absolute;
  left: 13px;
  right: 13px;
  bottom: 5px;
  height: 2px;
  border-radius: 99px;
  background: var(--gradient);
  transform: scaleX(0);
  transform-origin: center;
  transition: transform .22s ease;
}
.main-nav > a:not(.nav-cta):hover:after,
.main-nav > a.nav-current:not(.nav-cta):after {
  transform: scaleX(1);
}
.main-nav > a.nav-current:not(.nav-cta) {
  color: var(--ink);
}

.nav-cta,
.btn-primary,
.btn-blue,
.btn-light {
  position: relative;
  overflow: hidden;
}

.main-nav .nav-cta {
  background: var(--gradient);
  color: var(--ink);
  border: 0;
  box-shadow: 0 8px 24px rgba(29,182,255,.16);
}
.main-nav .nav-cta:hover {
  background: var(--gradient);
  color: var(--ink);
  transform: translateY(-1px);
  box-shadow: 0 11px 28px rgba(29,182,255,.23);
}

/* Buttons become unmistakable CTAs */
.btn {
  min-height: 48px;
  padding: 13px 20px;
  box-shadow: 0 6px 18px rgba(17,19,24,.04);
}
.btn span {
  transition: transform .2s ease;
}
.btn:hover span {
  transform: translateX(3px);
}
.btn-primary {
  background: var(--gradient);
  color: var(--ink);
  border-color: transparent;
  box-shadow: 0 10px 26px rgba(29,182,255,.18);
}
.btn-primary:hover {
  background: var(--gradient);
  color: var(--ink);
  transform: translateY(-2px);
  box-shadow: 0 14px 32px rgba(29,182,255,.25);
}
.btn-secondary {
  border-color: #cfd6dd;
  background: #fff;
  color: var(--ink);
}
.btn-secondary:hover {
  border-color: #1DB6FF;
  background: #f8fcff;
  color: var(--ink);
}
.btn-blue {
  background: #1DB6FF;
  color: var(--ink);
  box-shadow: 0 10px 26px rgba(29,182,255,.20);
}
.btn-blue:hover {
  background: #1DB6FF;
  color: var(--ink);
  transform: translateY(-2px);
  box-shadow: 0 14px 32px rgba(29,182,255,.28);
}
.cta-band .btn,
.btn-light {
  background: var(--pink);
  color: var(--ink);
  border: 0;
  box-shadow: 0 10px 28px rgba(255,153,255,.20);
}
.cta-band .btn:hover,
.btn-light:hover {
  background: #FF99FF;
  color: var(--ink);
  transform: translateY(-2px);
}

/* Section rhythm: slightly more intentional without changing layout */
.section-head .eyebrow,
.page-hero .eyebrow,
.hero .eyebrow,
.contact-hero .eyebrow {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 9px;
}
.section-head .eyebrow:before,
.page-hero .eyebrow:before,
.hero .eyebrow:before,
.contact-hero .eyebrow:before {
  content: "";
  width: 24px;
  height: 2px;
  border-radius: 99px;
  background: var(--gradient);
}

/* Hero typography — prevent the squashed display look */
h1 {
  letter-spacing: -.032em;
  line-height: .98;
}
.page-hero h1,
.contact-hero-copy h1,
.hero-copy h1 {
  letter-spacing: -.032em;
  line-height: .98;
}
.hero h1 {
  max-width: 820px;
}

/* Image treatment */
.hero-image,
.about-photo,
.card-image img,
.story-image img,
.social-photo img,
.client-collage img {
  transition: transform .55s cubic-bezier(.2,.7,.2,1), filter .35s ease;
}
.hero-image:hover,
.about-image:hover .about-photo,
.feature-card:hover .card-image img,
.story-card:hover .story-image img,
.social-photo:hover img {
  transform: scale(1.025);
}
.hero-image {
  border-radius: 32px;
  box-shadow: 0 20px 60px rgba(17,19,24,.10);
}

/* Card polish */
.value-card,
.feature-card,
.package-card,
.story-card,
.contact-card,
.legal-card,
.form-card {
  transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease;
}
.value-card:hover,
.feature-card:hover,
.package-card:hover,
.contact-card:hover,
.form-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow);
  border-color: #d9e0e6;
}
.package-card.featured {
  box-shadow: 0 18px 55px rgba(29,182,255,.14);
}
.package-card.featured:hover {
  box-shadow: 0 22px 62px rgba(29,182,255,.20);
}

/* Icon system — SVG is injected by site.js into existing icon boxes */
.icon-box {
  position: relative;
  width: 52px;
  height: 52px;
  min-width: 52px;
  border-radius: 16px;
  background: var(--gradient-soft);
  border: 1px solid rgba(29,182,255,.12);
  color: var(--ink);
  box-shadow: inset 0 0 0 1px rgba(255,255,255,.45);
  transition: transform .25s ease, border-color .25s ease, box-shadow .25s ease;
}
.icon-box svg {
  width: 24px;
  height: 24px;
  stroke: currentColor;
  fill: none;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.value-card:hover .icon-box,
.contact-card:hover .icon-box {
  transform: rotate(-4deg) scale(1.06);
  border-color: rgba(29,182,255,.28);
  box-shadow: 0 8px 20px rgba(29,182,255,.10);
}

/* Make package labels feel like selectable options */
.package-card .package-label {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  width: fit-content;
  padding: 7px 11px;
  border-radius: 999px;
  background: #f2f5f7;
}
.package-card.featured .package-label {
  background: var(--gradient);
  color: var(--ink);
}

/* Links get clearer interactive affordance */
.card-link {
  align-items: center;
  width: fit-content;
}
.card-link span {
  transition: transform .2s ease;
}
.card-link:hover span {
  transform: translateX(4px);
}

/* Stats */
.stat,
.impact-stat,
.mini-card {
  transition: background .2s ease, transform .2s ease;
}
.stat:hover,
.impact-stat:hover,
.mini-card:hover {
  background: #fbfdff;
}
.stat strong,
.impact-stat strong {
  font-variant-numeric: tabular-nums;
}

/* Image placeholders / graceful missing-media state */
.image-placeholder,
.impact-image-placeholder,
.csr-closing-image,
.client-collage,
.social-photo {
  position: relative;
}
.image-missing:before {
  content: "IMAGE COMING SOON";
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  background:
    radial-gradient(circle at 20% 20%, rgba(29,182,255,.10), transparent 34%),
    radial-gradient(circle at 80% 80%, rgba(255,153,255,.12), transparent 34%),
    #f5f7f9;
  color: #8b949e;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: .15em;
  z-index: 1;
}
.media-placeholder-v3 {
  min-height: 320px;
  display: grid;
  place-items: center;
  text-align: center;
  border: 1px dashed #cfd7df;
  border-radius: 24px;
  background: var(--gradient-soft);
  color: #6f7882;
  padding: 30px;
}
.media-placeholder-v3 strong {
  display: block;
  color: var(--ink);
  font-size: 18px;
  margin-bottom: 6px;
}

/* Social tiles */
.social-tile {
  transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease;
}
.social-tile:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow);
  border-color: #d7dfe6;
}

/* FAQ polish */
.faq-question {
  transition: color .2s ease, padding-left .2s ease;
}
.faq-question:hover {
  padding-left: 9px;
}
.faq-item.is-open .faq-question {
  color: #008bc9;
}

/* Scroll progress */
.scroll-progress {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 3px;
  z-index: 100;
  pointer-events: none;
}
.scroll-progress span {
  display: block;
  width: 0;
  height: 100%;
  background: var(--gradient);
  transition: width .08s linear;
}

/* Back to top */
.back-to-top {
  position: fixed;
  right: 24px;
  bottom: 24px;
  z-index: 45;
  width: 46px;
  height: 46px;
  border: 1px solid #dce2e7;
  border-radius: 50%;
  background: rgba(255,255,255,.94);
  color: var(--ink);
  display: grid;
  place-items: center;
  box-shadow: 0 12px 30px rgba(17,19,24,.12);
  cursor: pointer;
  opacity: 0;
  visibility: hidden;
  transform: translateY(8px);
  transition: .25s ease;
}
.back-to-top.is-visible {
  opacity: 1;
  visibility: visible;
  transform: none;
}
.back-to-top:hover {
  border-color: #1DB6FF;
  transform: translateY(-2px);
}

/* Persistent mobile CTA: intentionally only on small screens */
.mobile-cta {
  display: none;
}

/* Reduced motion */
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *:before, *:after {
    animation-duration: .01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: .01ms !important;
  }
}

@media (max-width: 760px) {
  h1,
  .page-hero h1,
  .contact-hero-copy h1,
  .hero-copy h1 {
    letter-spacing: -.018em;
    line-height: 1.0;
  }
  .hero h1 {
    max-width: 100%;
  }
  .hero-image {
    border-radius: 24px;
  }
  .back-to-top {
    right: 16px;
    bottom: 82px;
    width: 42px;
    height: 42px;
  }
  .mobile-cta {
    position: fixed;
    left: 12px;
    right: 12px;
    bottom: 12px;
    z-index: 44;
    min-height: 54px;
    padding: 14px 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    border-radius: 18px;
    background: var(--gradient);
    color: var(--ink);
    font-size: 15px;
    font-weight: 800;
    box-shadow: 0 16px 35px rgba(17,19,24,.20);
  }
  .mobile-cta span {
    transition: transform .2s ease;
  }
  .mobile-cta:hover span {
    transform: translateX(3px);
  }
  body {
    padding-bottom: 78px;
  }
  .main-nav {
    box-shadow: 0 18px 45px rgba(17,19,24,.10);
  }
  .main-nav .nav-cta {
    padding: 15px 14px;
  }
}

@media (max-width: 480px) {
  .container {
    width: calc(100% - 24px);
  }
  .icon-box {
    width: 48px;
    height: 48px;
    min-width: 48px;
  }
  .mobile-cta {
    left: 10px;
    right: 10px;
    bottom: 10px;
  }
}


/* =========================================
   V4 MOBILE NAVIGATION HARDENING
   ========================================= */
@media (max-width: 760px) {
  .site-header {
    position: sticky;
    z-index: 1000;
  }

  .nav-wrap {
    position: relative;
    z-index: 1001;
  }

  .menu-toggle {
    display: flex !important;
    position: relative !important;
    z-index: 1100 !important;
    width: 48px;
    height: 48px;
    min-width: 48px;
    padding: 10px !important;
    margin: 0;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    border: 0 !important;
    border-radius: 12px;
    background: #fff !important;
    color: var(--ink);
    cursor: pointer !important;
    pointer-events: auto !important;
    -webkit-tap-highlight-color: transparent;
    touch-action: manipulation;
  }

  .menu-toggle:hover,
  .menu-toggle:focus {
    background: #f5f7f9 !important;
  }

  .menu-toggle span {
    width: 24px;
    height: 3px;
    margin: 3px 0;
    display: block;
    flex: 0 0 auto;
    background: var(--ink);
    border-radius: 10px;
    pointer-events: none;
  }

  .main-nav {
    top: 72px !important;
    z-index: 1050 !important;
    pointer-events: none;
    visibility: hidden;
    opacity: 0;
    transform: translateY(-8px);
    transition: opacity .2s ease, transform .2s ease, visibility .2s ease;
  }

  .main-nav.is-open {
    display: flex !important;
    pointer-events: auto;
    visibility: visible;
    opacity: 1;
    transform: none;
  }

  .main-nav > a {
    pointer-events: auto;
  }
}
