/* ============ DESIGN TOKENS ============ */
:root {
  --paper: #FAF8F3;      /* warm off-white background */
  --cloud: #FFFFFF;      /* cards */
  --ink: #1A1A22;        /* primary text (logo black) */
  --navy: #2D3E50;       /* primary brand (logo navy square) */
  --navy-deep: #1E2A38;  /* dark sections */
  --gold: #B89154;       /* secondary brand (logo gold square) */
  --gold-soft: #E4D6BC;  /* light gold fills/borders */
  --pop: #FF2E7E;        /* energetic accent / CTAs */
  --pop-hot: #FF5A9B;    /* hover */
  --muted: #6B6B73;      /* secondary text */
  --muted-light: #9A9AA2;
  --line: rgba(30,42,56,.12);
  --line-soft: rgba(30,42,56,.07);
  --line-dark: rgba(250,248,243,.12);
  --ease: cubic-bezier(.22,1,.36,1);
  --ease-bounce: cubic-bezier(.34,1.56,.64,1);
  --r-card: 16px;
  --r-pill: 99px;
}
*, *::before, *::after { margin:0; padding:0; box-sizing:border-box; }
html { scroll-behavior: smooth; }
body {
  background: var(--paper);
  color: var(--ink);
  font-family: 'Inter', system-ui, -apple-system, sans-serif;
  font-size: 16px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}
::selection { background: var(--pop); color: #fff; }
h1,h2,h3,h4 { font-family: 'Unbounded', sans-serif; line-height: 1.1; font-weight: 700; }
.mono { font-family: 'Fredoka', sans-serif; font-size: 12px; font-weight: 600; letter-spacing: .12em; text-transform: uppercase; }
a { color: inherit; text-decoration: none; }
a:focus-visible, button:focus-visible { outline: 2px solid var(--pop); outline-offset: 3px; border-radius: 2px; }
img { max-width: 100%; height: auto; }
.wrap { max-width: 1320px; margin: 0 auto; padding: 0 clamp(20px, 4vw, 60px); }

/* ============ PRELOADER ============ */
.preloader {
  position: fixed; inset: 0; z-index: 9999;
  background: var(--paper);
  display: flex; align-items: center; justify-content: center;
  transition: opacity .6s ease, visibility .6s ease;
}
.preloader.done { opacity: 0; visibility: hidden; pointer-events: none; }
.preloader svg { animation: preload-pulse 1.2s ease-in-out infinite; }
@keyframes preload-pulse {
  0%,100% { transform: scale(1) rotate(0); opacity: 1; }
  50% { transform: scale(1.12) rotate(4deg); opacity: .6; }
}

/* ============ NAV ============ */
/* Scoped to #nav so other <nav> elements (e.g. .breadcrumb) aren't pinned/fixed */
#nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 500;
  display: flex; align-items: center; justify-content: space-between;
  padding: 16px clamp(20px, 4vw, 60px);
  transition: background .4s, backdrop-filter .4s, box-shadow .4s;
}
#nav.scrolled { background: rgba(250,248,243,.9); backdrop-filter: blur(18px); box-shadow: 0 1px 0 var(--line); }
.logo { display: flex; align-items: center; gap: 11px; }
.logo svg { display: block; }
.logo-text {
  font-family: 'Fredoka', sans-serif; font-weight: 600;
  font-size: 24px; letter-spacing: .01em; color: var(--ink);
}
.logo-text em { font-style: normal; color: var(--ink); }
.nav-links { display: flex; gap: 32px; align-items: center; }
.nav-links a {
  font-size: 14px; font-weight: 500; letter-spacing: .01em;
  color: var(--navy); transition: color .25s;
}
.nav-links a:hover { color: var(--pop); }
.nav-cta {
  background: var(--pop) !important; color: #fff !important;
  padding: 10px 24px; border-radius: var(--r-pill);
  font-weight: 600; transition: transform .25s var(--ease), background .25s;
}
.nav-cta:hover { background: var(--pop-hot) !important; transform: translateY(-2px); }
.burger { display: none; background: none; border: none; cursor: pointer; width: 40px; height: 40px; position: relative; z-index: 510; }
.burger span { display: block; width: 22px; height: 2px; background: var(--ink); margin: 5px auto; transition: .3s var(--ease); border-radius: 2px; }
.burger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.burger.open span:nth-child(2) { opacity: 0; }
.burger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ============ HERO ============ */
.hero {
  position: relative; min-height: 100svh;
  display: grid; grid-template-columns: 1fr 1fr;
  align-items: center; gap: clamp(30px, 5vw, 80px);
  padding: 120px 0 80px;
  overflow: hidden;
}
.hero::before {
  content: ''; position: absolute; top: -40%; right: -20%; width: 70vw; height: 70vw;
  background: radial-gradient(circle, rgba(255,46,126,.08) 0%, transparent 60%);
  pointer-events: none; z-index: 0;
}
.hero::after {
  content: ''; position: absolute; bottom: -30%; left: -10%; width: 50vw; height: 50vw;
  background: radial-gradient(circle, rgba(184,145,84,.12) 0%, transparent 60%);
  pointer-events: none; z-index: 0;
}
.hero-content { position: relative; z-index: 2; }
.hero-badge {
  display: inline-flex; align-items: center; gap: 10px;
  background: rgba(255,46,126,.1); color: var(--pop);
  padding: 7px 16px 7px 12px; border-radius: var(--r-pill);
  margin-bottom: 28px;
  opacity: 0; animation: fadeUp .8s var(--ease) .3s forwards;
}
.hero-badge .dot { width: 6px; height: 6px; border-radius: 50%; background: var(--pop); animation: blink 1.6s infinite; }
@keyframes blink { 0%,100% { opacity: 1; } 50% { opacity: .2; } }
.hero h1 {
  font-size: clamp(40px, 6vw, 76px);
  letter-spacing: -.02em; color: var(--ink);
  opacity: 0; animation: fadeUp .9s var(--ease) .45s forwards;
}
.hero h1 .accent { color: var(--pop); }
.hero h1 .accent-g { color: var(--gold); }
.hero-sub {
  max-width: 500px; margin-top: 22px; font-size: clamp(15px, 1.6vw, 17px);
  color: var(--muted); line-height: 1.7;
  opacity: 0; animation: fadeUp .9s var(--ease) .6s forwards;
}
.hero-ctas {
  display: flex; gap: 14px; margin-top: 36px; flex-wrap: wrap;
  opacity: 0; animation: fadeUp .9s var(--ease) .75s forwards;
}
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(24px); }
  to { opacity: 1; transform: translateY(0); }
}
.btn {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 14px 30px; border-radius: var(--r-pill); font-weight: 600; font-size: 14px;
  transition: transform .25s var(--ease), background .25s, border-color .25s;
  border: 1.5px solid transparent; cursor: pointer; font-family: inherit;
}
.btn-pulse { background: var(--pop); color: #fff; }
.btn-pulse:hover { background: var(--pop-hot); transform: translateY(-3px); }
.btn-ghost { border-color: var(--navy); color: var(--navy); background: transparent; }
.btn-ghost:hover { background: var(--navy); color: #fff; transform: translateY(-3px); }
.btn-dark { background: var(--navy); color: #fff; border-color: var(--navy); }
.btn-dark:hover { background: var(--navy-deep); transform: translateY(-3px); }
.hero-clients {
  margin-top: 48px; display: flex; align-items: center; gap: 16px;
  opacity: 0; animation: fadeUp .9s var(--ease) .9s forwards;
}
.hero-avatars { display: flex; }
.hero-avatars span {
  width: 34px; height: 34px; border-radius: 50%; border: 2px solid var(--paper);
  margin-left: -10px; display: flex; align-items: center; justify-content: center;
  font-size: 13px; font-weight: 600; color: #fff;
}
.hero-avatars span:first-child { margin-left: 0; }
.hero-clients-txt { font-size: 13px; color: var(--muted); }
.hero-clients-txt strong { color: var(--ink); }

/* ---- BENTO GRID ---- */
.bento {
  position: relative; z-index: 2;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-template-rows: repeat(3, auto);
  gap: 14px;
  opacity: 0; animation: fadeUp 1s var(--ease) .5s forwards;
}
.bento-card {
  background: var(--cloud);
  border: 1px solid var(--line);
  border-radius: var(--r-card);
  padding: 22px;
  position: relative; overflow: hidden;
  box-shadow: 0 10px 30px -22px rgba(30,42,56,.4);
  transition: transform .35s var(--ease), border-color .35s, box-shadow .35s;
}
.bento-card:hover { transform: translateY(-4px); border-color: rgba(255,46,126,.4); box-shadow: 0 18px 40px -24px rgba(30,42,56,.5); }
.bento-card.span2c { grid-column: span 2; }
.bento-card.span2r { grid-row: span 2; }
.bento-card .label { color: var(--muted); margin-bottom: 8px; }
.bento-card .big-num {
  font-family: 'Unbounded', sans-serif; font-weight: 700;
  font-size: clamp(30px, 2.8vw, 42px); line-height: 1; letter-spacing: -.02em; color: var(--navy);
}
.bento-card .big-num .unit { font-size: .5em; color: var(--pop); }
.bento-card .card-desc { font-size: 13px; color: var(--muted); margin-top: 6px; }
.bento-card.card-pulse {
  display: flex; flex-direction: column; justify-content: center; align-items: center;
  background: linear-gradient(135deg, var(--cloud) 0%, rgba(255,46,126,.06) 100%);
}
.bento-card.card-pulse svg { width: 100%; max-width: 180px; }
.bento-card.card-growth {
  background: linear-gradient(135deg, rgba(184,145,84,.1), var(--cloud));
}
.bento-card.card-growth .big-num { color: var(--gold); }
.bento-card.card-rating { display: flex; flex-direction: column; justify-content: center; }
.bento-card.card-rating .stars { color: var(--gold); font-size: 18px; letter-spacing: 2px; margin-top: 6px; }
.bento-card.card-dubai {
  background: linear-gradient(135deg, rgba(45,62,80,.06), var(--cloud));
  display: flex; flex-direction: column; justify-content: center;
}
.bento-card.card-dubai .big-num { color: var(--navy); font-size: clamp(18px, 1.8vw, 22px); }
.mini-bars { display: flex; gap: 3px; align-items: flex-end; height: 40px; margin-top: 10px; }
.mini-bars i {
  flex: 1; border-radius: 3px; background: var(--gold); opacity: .7;
  animation: miniGrow 1.4s ease-in-out infinite alternate;
}
.mini-bars i:nth-child(1) { height: 30%; }
.mini-bars i:nth-child(2) { height: 65%; animation-delay: .15s; }
.mini-bars i:nth-child(3) { height: 45%; animation-delay: .3s; }
.mini-bars i:nth-child(4) { height: 80%; animation-delay: .45s; }
.mini-bars i:nth-child(5) { height: 55%; animation-delay: .6s; }
.mini-bars i:nth-child(6) { height: 100%; animation-delay: .75s; background: var(--pop); }
@keyframes miniGrow { to { transform: scaleY(.4); } }

/* ============ MARQUEE ============ */
.marquee {
  background: var(--navy); color: var(--paper);
  overflow: hidden; white-space: nowrap; padding: 16px 0;
  position: relative; z-index: 3;
}
.marquee-track { display: inline-flex; animation: marquee-scroll 30s linear infinite; }
.marquee span {
  font-family: 'Fredoka', sans-serif; font-weight: 600; font-size: 16px;
  letter-spacing: .04em; text-transform: uppercase;
  padding: 0 28px; display: inline-flex; align-items: center; gap: 28px;
}
.marquee .sep { width: 6px; height: 6px; border-radius: 50%; background: var(--gold); opacity: .9; flex-shrink: 0; }
@keyframes marquee-scroll { to { transform: translateX(-50%); } }

/* ============ SHARED SECTION ============ */
section { padding: clamp(80px, 12vw, 150px) 0; position: relative; }
.sec-label { color: var(--pop); margin-bottom: 16px; display: flex; align-items: center; gap: 12px; }
.sec-label::before { content: ''; width: 28px; height: 2px; background: var(--pop); }
h2.sec-title { font-size: clamp(32px, 4.6vw, 60px); letter-spacing: -.02em; margin-bottom: 18px; color: var(--ink); }
.sec-subtitle { color: var(--muted); font-size: 16px; max-width: 520px; }
.sec-head { margin-bottom: clamp(40px, 7vw, 72px); }

.reveal { opacity: 0; transform: translateY(32px); transition: opacity .7s var(--ease), transform .7s var(--ease); }
.reveal.in { opacity: 1; transform: none; }

/* ============ SERVICES ============ */
.services { background: var(--cloud); color: var(--ink); }
.services .sec-label { color: var(--pop); }
.services .sec-label::before { background: var(--pop); }
.services h2 { color: var(--ink); }
.services .sec-subtitle { color: var(--muted); }
.srv-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.srv-card {
  background: var(--paper); border: 1px solid var(--line-soft);
  border-radius: var(--r-card); padding: 32px 28px;
  transition: transform .35s var(--ease), box-shadow .35s;
  position: relative; overflow: hidden;
}
.srv-card:hover { transform: translateY(-6px); box-shadow: 0 20px 44px -18px rgba(30,42,56,.18); }
.srv-card::after {
  content: ''; position: absolute; bottom: 0; left: 0; right: 0; height: 3px;
  background: var(--pop); transform: scaleX(0); transition: transform .35s var(--ease);
  transform-origin: left;
}
.srv-card:hover::after { transform: scaleX(1); }
.srv-icon {
  width: 50px; height: 50px; border-radius: 12px;
  display: flex; align-items: center; justify-content: center; margin-bottom: 20px;
}
.srv-card h3 { font-size: 19px; margin-bottom: 10px; color: var(--ink); letter-spacing: -.01em; }
.srv-card p { font-size: 14px; color: var(--muted); line-height: 1.6; }
.srv-items { list-style: none; margin-top: 16px; border-top: 1px solid var(--line-soft); padding-top: 14px; }
.srv-items li {
  font-size: 13px; color: var(--navy); padding: 4px 0;
  display: flex; align-items: center; gap: 8px;
}
.srv-items li::before { content: ''; width: 5px; height: 5px; border-radius: 50%; background: var(--gold); flex-shrink: 0; }

/* ============ RESULTS (dark navy band) ============ */
.results { background: var(--navy-deep); }
.results .sec-title, .results .sec-subtitle { color: var(--paper); }
.results .sec-subtitle { color: rgba(250,248,243,.6); }
.results-grid { display: grid; grid-template-columns: repeat(12, 1fr); gap: 20px; }
.result-card {
  background: rgba(250,248,243,.05); border: 1px solid var(--line-dark); border-radius: 20px;
  padding: 32px; position: relative; overflow: hidden;
  display: flex; flex-direction: column; justify-content: space-between; min-height: 320px;
  transition: transform .35s var(--ease), border-color .35s;
}
.result-card:hover { transform: translateY(-5px); border-color: rgba(255,46,126,.5); }
.result-card::before {
  content: ''; position: absolute; inset: 0; opacity: 0; transition: opacity .4s;
  background: radial-gradient(600px circle at var(--rx, 50%) var(--ry, 50%), rgba(255,46,126,.12), transparent 50%);
  pointer-events: none;
}
.result-card:hover::before { opacity: 1; }
.result-card.col7 { grid-column: span 7; }
.result-card.col5 { grid-column: span 5; }
.result-tag { color: var(--gold); margin-bottom: 14px; }
.result-card h3 { font-size: clamp(20px, 2.4vw, 28px); margin-bottom: 10px; letter-spacing: -.01em; font-weight: 600; color: var(--paper); }
.result-card p { font-size: 14px; color: rgba(250,248,243,.6); max-width: 400px; }
.result-stat { display: flex; align-items: baseline; gap: 12px; margin-top: 28px; }
.result-stat .num {
  font-family: 'Unbounded', sans-serif; font-weight: 700;
  font-size: clamp(36px, 4vw, 54px); color: var(--pop); line-height: 1; letter-spacing: -.03em;
}
.result-stat .desc { color: rgba(250,248,243,.5); font-size: 13px; max-width: 130px; line-height: 1.4; }

/* ============ ABOUT / MANIFESTO ============ */
.about {
  background: var(--paper); border-top: 1px solid var(--line); border-bottom: 1px solid var(--line);
}
.about-grid { display: grid; grid-template-columns: 1.2fr 1fr; gap: clamp(40px, 6vw, 100px); align-items: start; }
.manifesto-text {
  font-family: 'Unbounded', sans-serif; font-weight: 600;
  font-size: clamp(22px, 3vw, 36px); line-height: 1.3; letter-spacing: -.01em; color: var(--ink);
}
.manifesto-text em { font-style: normal; color: var(--pop); }
.manifesto-text mark { background: none; color: var(--gold); }
.about-stats { display: flex; flex-direction: column; gap: 36px; padding-top: 10px; }
.stat-item { padding-bottom: 36px; border-bottom: 1px solid var(--line); }
.stat-item:last-child { border-bottom: none; padding-bottom: 0; }
.stat-item .num {
  font-family: 'Unbounded', sans-serif; font-weight: 700;
  font-size: clamp(34px, 3.6vw, 50px); line-height: 1; color: var(--navy);
}
.stat-item .num span { color: var(--pop); }
.stat-item .lbl { font-size: 13px; color: var(--muted); margin-top: 6px; letter-spacing: .03em; }

/* ============ PROCESS ============ */
.process-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 0; position: relative; }
.process-grid::before {
  content: ''; position: absolute; top: 36px; left: 10%; right: 10%; height: 2px;
  background: repeating-linear-gradient(90deg, var(--gold) 0 8px, transparent 8px 18px);
  opacity: .5;
}
.proc-step { text-align: center; padding: 0 16px; position: relative; }
.proc-node {
  width: 72px; height: 72px; border-radius: 50%; margin: 0 auto 24px;
  border: 2px solid var(--pop); display: flex; align-items: center; justify-content: center;
  background: var(--paper); position: relative; z-index: 1;
  transition: background .3s, transform .3s var(--ease), box-shadow .3s;
}
.proc-node svg { width: 28px; height: 28px; }
.proc-step:hover .proc-node {
  background: var(--pop); transform: scale(1.1);
  box-shadow: 0 0 30px rgba(255,46,126,.3);
}
.proc-step:hover .proc-node svg path { stroke: #fff; }
.proc-step h3 { font-size: 18px; margin-bottom: 8px; letter-spacing: .01em; color: var(--ink); }
.proc-step p { font-size: 14px; color: var(--muted); }

/* ============ TESTIMONIALS ============ */
.testimonials { background: var(--cloud); color: var(--ink); }
.testimonials h2 { color: var(--ink); }
.test-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.test-card {
  background: var(--paper); border: 1px solid var(--line-soft); border-radius: var(--r-card);
  padding: 32px; position: relative;
}
.test-card::before {
  content: '"'; font-family: Georgia, serif; font-size: 64px;
  color: var(--gold); opacity: .25; position: absolute; top: 10px; right: 24px; line-height: 1;
}
.test-card p { font-size: 15px; color: var(--navy); line-height: 1.7; margin-bottom: 20px; }
.test-author { display: flex; align-items: center; gap: 12px; }
.test-avatar {
  width: 40px; height: 40px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-weight: 600; font-size: 14px; color: #fff;
}
.test-name { font-size: 14px; font-weight: 600; color: var(--ink); }
.test-role { font-size: 12px; color: var(--muted); }

/* ============ FAQ ============ */
.faq-list { max-width: 780px; }
.faq-item { border-bottom: 1px solid var(--line); }
.faq-q {
  width: 100%; background: none; border: none; color: var(--ink);
  font-family: 'Unbounded', sans-serif; font-weight: 600; font-size: 16px;
  text-align: left; padding: 22px 40px 22px 0; cursor: pointer;
  position: relative; display: block;
}
.faq-q::after {
  content: '+'; position: absolute; right: 0; top: 50%; transform: translateY(-50%);
  font-size: 22px; color: var(--pop); transition: transform .3s var(--ease);
}
.faq-item.open .faq-q::after { content: '−'; transform: translateY(-50%) rotate(0); }
.faq-a {
  max-height: 0; overflow: hidden; transition: max-height .4s var(--ease), padding .4s;
  padding: 0 0 0 0;
}
.faq-item.open .faq-a { max-height: 300px; padding-bottom: 22px; }
.faq-a p { font-size: 15px; color: var(--muted); line-height: 1.7; }

/* ============ CTA CONTACT (dark navy band) ============ */
.cta-section { position: relative; overflow: hidden; background: var(--navy-deep); }
.cta-section::before {
  content: ''; position: absolute; top: 50%; left: 50%; width: 60vw; height: 60vw;
  transform: translate(-50%, -50%);
  background: radial-gradient(circle, rgba(255,46,126,.12) 0%, transparent 60%);
  pointer-events: none;
}
.cta-section .sec-label { color: var(--gold); }
.cta-section .sec-label::before { background: var(--gold); }
.cta-inner { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(40px, 7vw, 100px); align-items: start; position: relative; z-index: 1; }
.cta-left h2 { font-size: clamp(34px, 5vw, 66px); color: var(--paper); }
.cta-left h2 .outline { color: transparent; -webkit-text-stroke: 2px var(--gold); }
.cta-left .sec-subtitle { margin-top: 18px; max-width: 420px; color: rgba(250,248,243,.65); }
.cta-promises { margin-top: 36px; display: flex; flex-direction: column; gap: 14px; }
.cta-promise { display: flex; align-items: center; gap: 12px; font-size: 14px; color: rgba(250,248,243,.75); }
.cta-promise svg { flex-shrink: 0; color: var(--pop); }
.cta-divider { margin-top: 40px; padding-top: 32px; border-top: 1px solid var(--line-dark); display: flex; gap: clamp(16px, 3vw, 40px); flex-wrap: wrap; }
.cta-contact-item { display: flex; align-items: center; gap: 10px; font-size: 14px; color: rgba(250,248,243,.75); }
.cta-contact-item svg { color: var(--gold); flex-shrink: 0; }
.cta-contact-item a:hover { color: var(--pop); }

/* Contact Form */
.contact-form-wrap {
  background: rgba(250,248,243,.05); border: 1px solid var(--line-dark);
  border-radius: 24px; padding: clamp(28px, 4vw, 48px);
}
.contact-form-wrap h3 { font-size: 22px; margin-bottom: 6px; color: var(--paper); }
.contact-form-wrap .form-sub { font-size: 14px; color: rgba(250,248,243,.6); margin-bottom: 28px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.form-group { display: flex; flex-direction: column; gap: 6px; margin-bottom: 14px; }
.form-group label { font-size: 12px; font-weight: 600; letter-spacing: .05em; text-transform: uppercase; color: rgba(250,248,243,.7); }
.form-group input,
.form-group select,
.form-group textarea {
  background: rgba(30,42,56,.6); border: 1px solid var(--line-dark);
  color: var(--paper); border-radius: 10px;
  padding: 12px 16px; font-family: inherit; font-size: 14px;
  transition: border-color .25s, box-shadow .25s;
  width: 100%; outline: none;
  -webkit-appearance: none; appearance: none;
}
.form-group input::placeholder,
.form-group textarea::placeholder { color: rgba(250,248,243,.4); }
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus { border-color: var(--pop); box-shadow: 0 0 0 3px rgba(255,46,126,.15); }
.form-group select { background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8' fill='none'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%23FAF8F3' stroke-width='1.5' stroke-linecap='round'/%3E%3C/svg%3E"); background-repeat: no-repeat; background-position: right 14px center; padding-right: 38px; cursor: pointer; }
.form-group select option { background: var(--navy-deep); color: var(--paper); }
.form-group textarea { resize: vertical; min-height: 110px; }
.btn-submit {
  width: 100%; background: var(--pop); color: #fff; border: none;
  padding: 15px 28px; border-radius: var(--r-pill);
  font-family: inherit; font-size: 15px; font-weight: 600;
  cursor: pointer; transition: background .25s, transform .25s var(--ease);
  display: flex; align-items: center; justify-content: center; gap: 10px; margin-top: 6px;
}
.btn-submit:hover { background: var(--pop-hot); transform: translateY(-2px); }
.btn-submit:disabled { opacity: .6; cursor: not-allowed; transform: none; }
.form-status { margin-top: 14px; padding: 12px 16px; border-radius: 10px; font-size: 14px; text-align: center; display: none; }
.form-status.success { background: rgba(184,145,84,.18); color: var(--gold-soft); border: 1px solid rgba(184,145,84,.4); display: block; }
.form-status.error { background: rgba(255,46,126,.12); color: var(--pop-hot); border: 1px solid rgba(255,46,126,.3); display: block; }
/* Honeypot — hidden from humans, visible to bots */
.hp-field { position: absolute; left: -9999px; top: auto; width: 1px; height: 1px; overflow: hidden; }

@media (max-width: 900px) {
  .cta-inner { grid-template-columns: 1fr; }
}
@media (max-width: 560px) {
  .form-row { grid-template-columns: 1fr; }
}

/* ============ FOOTER ============ */
footer {
  background: var(--navy-deep); color: var(--paper);
  border-top: 1px solid var(--line-dark); padding: 60px 0 40px;
}
.foot-top { display: grid; grid-template-columns: 1.5fr 1fr 1fr 1fr; gap: 40px; margin-bottom: 40px; }
.foot-brand { }
.foot-brand .logo { margin-bottom: 14px; }
.foot-brand .logo-text { color: var(--paper); }
.foot-brand .logo-text em { color: var(--paper); }
.foot-brand p { font-size: 14px; color: rgba(250,248,243,.6); max-width: 280px; line-height: 1.6; }
.foot-tag { font-family: 'Fredoka', sans-serif; font-weight: 600; color: var(--gold); font-size: 14px; letter-spacing: .04em; margin-top: 10px; }
.foot-col h4 { font-size: 13px; font-weight: 600; letter-spacing: .06em; text-transform: uppercase; margin-bottom: 16px; color: var(--paper); }
.foot-col a { display: block; font-size: 14px; color: rgba(250,248,243,.6); padding: 4px 0; transition: color .2s; }
.foot-col a:hover { color: var(--pop); }
.foot-bottom {
  display: flex; justify-content: space-between; align-items: center; gap: 16px; flex-wrap: wrap;
  padding-top: 24px; border-top: 1px solid var(--line-dark);
  font-size: 13px; color: rgba(250,248,243,.6);
}
.socials { display: flex; gap: 20px; }
.socials a { transition: color .2s; color: rgba(250,248,243,.6); }
.socials a:hover { color: var(--pop); }

/* ============ WHATSAPP FLOAT ============ */
.wa-float {
  position: fixed; bottom: 28px; right: 28px; z-index: 400;
  width: 56px; height: 56px; border-radius: 50%;
  background: #25D366; color: #fff;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 4px 20px rgba(37,211,102,.4);
  transition: transform .3s var(--ease), box-shadow .3s;
}
.wa-float:hover { transform: scale(1.1); box-shadow: 0 6px 28px rgba(37,211,102,.5); }
.wa-float svg { width: 28px; height: 28px; }

/* ============ RESPONSIVE ============ */
@media (max-width: 1024px) {
  .hero { grid-template-columns: 1fr; }
  .bento { max-width: 520px; }
  .srv-grid { grid-template-columns: repeat(2, 1fr); }
  .process-grid { grid-template-columns: repeat(2, 1fr); row-gap: 40px; }
  .process-grid::before { display: none; }
  .result-card.col7, .result-card.col5 { grid-column: span 12; }
  .about-grid { grid-template-columns: 1fr; }
  .test-grid { grid-template-columns: 1fr 1fr; }
  .foot-top { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 768px) {
  .nav-links {
    position: fixed; inset: 0; background: var(--paper);
    flex-direction: column; justify-content: center; gap: 28px;
    transform: translateY(-100%); transition: transform .45s var(--ease); z-index: 505;
  }
  .nav-links.open { transform: none; }
  .nav-links a { font-size: 18px; }
  .burger { display: block; }
  .bento { grid-template-columns: repeat(2, 1fr); }
  .bento-card.span2c { grid-column: span 2; }
  .srv-grid { grid-template-columns: 1fr; }
  .test-grid { grid-template-columns: 1fr; }
  .foot-top { grid-template-columns: 1fr; gap: 28px; }
}
@media (max-width: 480px) {
  .bento { grid-template-columns: 1fr 1fr; }
  .hero h1 { font-size: 36px; }
}
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: .01ms !important; animation-iteration-count: 1 !important;
    transition-duration: .01ms !important;
  }
  html { scroll-behavior: auto; }
  .reveal, .hero-badge, .hero h1, .hero-sub, .hero-ctas, .hero-clients, .bento { opacity: 1; transform: none; }
}

/* ============================================================
   SUBPAGE COMPONENTS (about, services, packages, contact, blog)
   ============================================================ */

/* Page hero */
.page-hero { position: relative; padding: clamp(130px, 16vw, 180px) 0 clamp(50px, 7vw, 80px); overflow: hidden; }
.page-hero::before {
  content: ''; position: absolute; top: -30%; right: -15%; width: 55vw; height: 55vw;
  background: radial-gradient(circle, rgba(184,145,84,.12) 0%, transparent 60%); pointer-events: none;
}
.page-hero::after {
  content: ''; position: absolute; bottom: -40%; left: -15%; width: 45vw; height: 45vw;
  background: radial-gradient(circle, rgba(255,46,126,.06) 0%, transparent 60%); pointer-events: none;
}
.page-hero .wrap { position: relative; z-index: 1; }
.page-hero h1 { font-size: clamp(38px, 6vw, 74px); letter-spacing: -.02em; max-width: 14ch; }
.page-hero h1 .accent { color: var(--pop); }
.page-hero h1 .accent-g { color: var(--gold); }
.page-hero .lead { margin-top: 22px; max-width: 600px; font-size: clamp(16px, 1.7vw, 19px); color: var(--muted); line-height: 1.7; }
.page-hero .hero-ctas { margin-top: 32px; }

/* Breadcrumb */
.breadcrumb { display: flex; gap: 8px; align-items: center; font-size: 13px; color: var(--muted); margin-bottom: 22px; }
.breadcrumb a { color: var(--muted); transition: color .2s; }
.breadcrumb a:hover { color: var(--pop); }
.breadcrumb span { color: var(--gold); }

/* Generic content band */
.band { padding: clamp(64px, 10vw, 130px) 0; position: relative; }
.band-cloud { background: var(--cloud); }
.band-paper { background: var(--paper); }
.band-navy { background: var(--navy-deep); color: var(--paper); }
.band-navy h2, .band-navy h3 { color: var(--paper); }
.band-navy .sec-subtitle, .band-navy p { color: rgba(250,248,243,.7); }
.band-navy .sec-label { color: var(--gold); }
.band-navy .sec-label::before { background: var(--gold); }

/* Split: text + image */
.split { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(36px, 5vw, 80px); align-items: center; }
.split.reverse .split-text { order: 2; }
.split-text h2 { font-size: clamp(28px, 3.6vw, 44px); letter-spacing: -.02em; margin-bottom: 18px; }
.split-text p { color: var(--muted); margin-bottom: 16px; line-height: 1.75; }
.band-navy .split-text p { color: rgba(250,248,243,.72); }
.split-media { position: relative; }
.media-rounded { border-radius: 22px; overflow: hidden; box-shadow: 0 30px 60px -30px rgba(30,42,56,.45); display: block; }
.media-rounded img { display: block; width: 100%; height: 100%; object-fit: cover; }
.media-tag {
  position: absolute; bottom: 18px; left: 18px; background: var(--cloud); color: var(--ink);
  font-family: 'Fredoka', sans-serif; font-weight: 600; font-size: 13px; padding: 9px 16px;
  border-radius: var(--r-pill); box-shadow: 0 10px 24px -12px rgba(30,42,56,.5);
}
.media-float {
  position: absolute; top: -22px; right: -16px; background: var(--pop); color: #fff;
  border-radius: 16px; padding: 14px 18px; box-shadow: 0 18px 34px -16px rgba(255,46,126,.6);
}
.media-float .n { font-family: 'Unbounded', sans-serif; font-weight: 700; font-size: 24px; line-height: 1; }
.media-float .t { font-size: 11px; opacity: .9; margin-top: 3px; }

/* Full-width feature image */
.feature-banner { height: clamp(220px, 34vw, 420px); border-radius: 24px; overflow: hidden; position: relative; box-shadow: 0 30px 60px -30px rgba(30,42,56,.4); }
.feature-banner img { width: 100%; height: 100%; object-fit: cover; }
.feature-banner .overlay { position: absolute; inset: 0; background: linear-gradient(120deg, rgba(30,42,56,.78), rgba(30,42,56,.15)); display: flex; align-items: center; }
.feature-banner .overlay .wrap { width: 100%; }
.feature-banner h2 { color: var(--paper); font-size: clamp(26px, 4vw, 48px); max-width: 16ch; }
.feature-banner p { color: rgba(250,248,243,.8); max-width: 44ch; margin-top: 12px; }

/* Checklist */
.checklist { list-style: none; display: grid; gap: 14px; }
.checklist.cols2 { grid-template-columns: 1fr 1fr; }
.checklist li { display: flex; gap: 12px; align-items: flex-start; font-size: 15px; color: var(--navy); }
.band-navy .checklist li { color: rgba(250,248,243,.85); }
.checklist li svg { flex-shrink: 0; color: var(--pop); margin-top: 2px; }

/* Numbered steps */
.step-list { display: grid; gap: 22px; counter-reset: step; }
.step-row { display: grid; grid-template-columns: 56px 1fr; gap: 20px; align-items: start; }
.step-row .num {
  width: 56px; height: 56px; border-radius: 50%; background: var(--navy); color: var(--paper);
  font-family: 'Unbounded', sans-serif; font-weight: 700; font-size: 20px;
  display: flex; align-items: center; justify-content: center;
}
.step-row h3 { font-size: 19px; margin-bottom: 6px; }
.step-row p { color: var(--muted); font-size: 14px; line-height: 1.7; }

/* Service index cards (linked) */
.svc-index-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.svc-link {
  display: block; background: var(--cloud); border: 1px solid var(--line-soft); border-radius: var(--r-card);
  padding: 30px 28px; transition: transform .35s var(--ease), box-shadow .35s, border-color .35s; position: relative; overflow: hidden;
}
.svc-link:hover { transform: translateY(-6px); box-shadow: 0 22px 46px -20px rgba(30,42,56,.2); border-color: rgba(255,46,126,.3); }
.svc-link .svc-icon { margin-bottom: 18px; }
.svc-link h3 { font-size: 19px; color: var(--ink); margin-bottom: 8px; }
.svc-link p { font-size: 14px; color: var(--muted); line-height: 1.6; }
.svc-link .arrow { margin-top: 16px; display: inline-flex; align-items: center; gap: 6px; color: var(--pop); font-weight: 600; font-size: 14px; font-family: 'Fredoka', sans-serif; }

/* Packages */
.pkg-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; align-items: start; }
.pkg-card {
  background: var(--cloud); border: 1px solid var(--line); border-radius: 22px; padding: 36px 30px;
  position: relative; transition: transform .35s var(--ease), box-shadow .35s;
}
.pkg-card:hover { transform: translateY(-6px); box-shadow: 0 26px 52px -24px rgba(30,42,56,.25); }
.pkg-card.featured { background: var(--navy-deep); color: var(--paper); border-color: var(--navy-deep); box-shadow: 0 30px 60px -26px rgba(30,42,56,.5); }
.pkg-badge {
  position: absolute; top: -13px; left: 50%; transform: translateX(-50%);
  background: var(--pop); color: #fff; font-family: 'Fredoka', sans-serif; font-weight: 600;
  font-size: 12px; letter-spacing: .06em; text-transform: uppercase; padding: 6px 16px; border-radius: var(--r-pill);
}
.pkg-name { font-family: 'Unbounded', sans-serif; font-weight: 700; font-size: 24px; margin-bottom: 6px; }
.pkg-card.featured .pkg-name { color: var(--paper); }
.pkg-for { font-size: 13px; color: var(--muted); margin-bottom: 22px; }
.pkg-card.featured .pkg-for { color: rgba(250,248,243,.6); }
.pkg-price { font-family: 'Unbounded', sans-serif; font-weight: 700; font-size: 38px; line-height: 1; color: var(--navy); }
.pkg-card.featured .pkg-price { color: var(--gold); }
.pkg-price small { font-family: 'Inter', sans-serif; font-weight: 500; font-size: 14px; color: var(--muted); }
.pkg-card.featured .pkg-price small { color: rgba(250,248,243,.6); }
.pkg-feats { list-style: none; margin: 24px 0; display: grid; gap: 12px; border-top: 1px solid var(--line); padding-top: 24px; }
.pkg-card.featured .pkg-feats { border-color: var(--line-dark); }
.pkg-feats li { display: flex; gap: 10px; align-items: flex-start; font-size: 14px; color: var(--navy); }
.pkg-card.featured .pkg-feats li { color: rgba(250,248,243,.85); }
.pkg-feats li svg { flex-shrink: 0; color: var(--gold); margin-top: 2px; }
.pkg-card .btn { width: 100%; justify-content: center; }

/* Value / pillar cards */
.value-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.value-card { background: var(--cloud); border: 1px solid var(--line-soft); border-radius: var(--r-card); padding: 30px 26px; }
.value-card .vc-icon { width: 48px; height: 48px; border-radius: 12px; background: rgba(255,46,126,.1); display: flex; align-items: center; justify-content: center; margin-bottom: 16px; }
.value-card h3 { font-size: 18px; margin-bottom: 8px; }
.value-card p { font-size: 14px; color: var(--muted); line-height: 1.6; }

/* Team placeholders */
.team-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px; }
.team-card { text-align: center; }
.team-photo { aspect-ratio: 1; border-radius: 18px; background: linear-gradient(150deg, var(--gold-soft), var(--cloud)); display: flex; align-items: center; justify-content: center; margin-bottom: 14px; font-family: 'Unbounded', sans-serif; font-weight: 700; font-size: 32px; color: var(--navy); }
.team-card h4 { font-size: 16px; }
.team-card p { font-size: 13px; color: var(--muted); }

/* Industries */
.industry-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 14px; }
.industry-card { background: var(--cloud); border: 1px solid var(--line-soft); border-radius: 14px; padding: 22px; display: flex; flex-direction: column; gap: 10px; transition: transform .3s var(--ease), border-color .3s; }
.industry-card:hover { transform: translateY(-4px); border-color: rgba(255,46,126,.3); }
.industry-card .ic { font-size: 26px; }
.industry-card h3 { font-size: 16px; }

/* Blog */
.blog-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.post-card { background: var(--cloud); border: 1px solid var(--line-soft); border-radius: 18px; overflow: hidden; transition: transform .35s var(--ease), box-shadow .35s; display: flex; flex-direction: column; }
.post-card:hover { transform: translateY(-6px); box-shadow: 0 22px 46px -22px rgba(30,42,56,.22); }
.post-thumb { aspect-ratio: 16/10; overflow: hidden; }
.post-thumb img { width: 100%; height: 100%; object-fit: cover; }
.post-body { padding: 24px; flex: 1; display: flex; flex-direction: column; }
.post-meta { font-family: 'Fredoka', sans-serif; font-size: 12px; letter-spacing: .04em; text-transform: uppercase; color: var(--pop); margin-bottom: 10px; }
.post-card h3 { font-size: 19px; line-height: 1.3; margin-bottom: 10px; }
.post-card p { font-size: 14px; color: var(--muted); line-height: 1.6; flex: 1; }
.post-card .arrow { margin-top: 14px; color: var(--pop); font-weight: 600; font-size: 14px; font-family: 'Fredoka', sans-serif; }

/* Prose (blog article body) */
.prose { max-width: 760px; margin: 0 auto; }
.prose p { color: var(--navy); font-size: 17px; line-height: 1.8; margin-bottom: 22px; }
.prose h2 { font-size: clamp(24px, 3vw, 34px); margin: 40px 0 16px; letter-spacing: -.01em; }
.prose h3 { font-size: 21px; margin: 30px 0 12px; }
.prose ul { margin: 0 0 22px 0; padding-left: 22px; }
.prose li { color: var(--navy); font-size: 17px; line-height: 1.8; margin-bottom: 8px; }
.prose strong { color: var(--ink); }
.prose .post-hero-img { width: 100%; border-radius: 20px; margin-bottom: 36px; box-shadow: 0 30px 60px -30px rgba(30,42,56,.4); }

/* CTA band (reusable) */
.cta-band { background: var(--navy-deep); text-align: center; position: relative; overflow: hidden; }
.cta-band::before { content: ''; position: absolute; top: 50%; left: 50%; width: 60vw; height: 60vw; transform: translate(-50%,-50%); background: radial-gradient(circle, rgba(255,46,126,.12) 0%, transparent 60%); pointer-events: none; }
.cta-band .wrap { position: relative; z-index: 1; }
.cta-band h2 { color: var(--paper); font-size: clamp(30px, 5vw, 56px); }
.cta-band h2 .outline { color: transparent; -webkit-text-stroke: 2px var(--gold); }
.cta-band p { color: rgba(250,248,243,.7); max-width: 480px; margin: 18px auto 0; }
.cta-band .btn { margin-top: 32px; }

/* Section centered head helper */
.sec-head.center { text-align: center; }
.sec-head.center .sec-label { justify-content: center; }
.sec-head.center .sec-subtitle { margin-left: auto; margin-right: auto; }

/* Subpage responsive */
@media (max-width: 1024px) {
  .svc-index-grid { grid-template-columns: repeat(2, 1fr); }
  .pkg-grid { grid-template-columns: 1fr; max-width: 460px; margin: 0 auto; }
  .value-grid { grid-template-columns: 1fr; }
  .team-grid { grid-template-columns: repeat(2, 1fr); }
  .industry-grid { grid-template-columns: repeat(2, 1fr); }
  .blog-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 768px) {
  .split { grid-template-columns: 1fr; }
  .split.reverse .split-text { order: 0; }
  .checklist.cols2 { grid-template-columns: 1fr; }
  .svc-index-grid { grid-template-columns: 1fr; }
  .blog-grid { grid-template-columns: 1fr; }
  .industry-grid { grid-template-columns: 1fr 1fr; }
}
