:root {
  --navy-950: #06132f;
  --navy-900: #091b42;
  --navy-800: #10295d;
  --navy-700: #173873;
  --purple: #381788;
  --green-700: #0b6b3a;
  --green-600: #0f8a4c;
  --green-500: #19a960;
  --red-700: #8b1016;
  --red-600: #b51d23;
  --gold: #f1b62b;
  --ink: #111b2e;
  --muted: #5e6a7d;
  --line: #dbe3ee;
  --surface: #ffffff;
  --surface-2: #f5f8fc;
  --surface-3: #eef4fb;
  --shadow-sm: 0 8px 24px rgba(6, 19, 47, .08);
  --shadow-md: 0 18px 50px rgba(6, 19, 47, .14);
  --shadow-lg: 0 28px 80px rgba(6, 19, 47, .22);
  --radius-sm: 12px;
  --radius-md: 20px;
  --radius-lg: 30px;
  --max-width: 1180px;
  --header-height: 82px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  color: var(--ink);
  background: var(--surface);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button, input, select, textarea { font: inherit; }
button { cursor: pointer; }
::selection { background: rgba(25, 169, 96, .24); }

.skip-link {
  position: fixed;
  z-index: 10000;
  left: 16px;
  top: -100px;
  background: #fff;
  color: var(--navy-950);
  padding: 10px 14px;
  border-radius: 10px;
  box-shadow: var(--shadow-sm);
  transition: top .2s ease;
}
.skip-link:focus { top: 16px; }

.container {
  width: min(calc(100% - 40px), var(--max-width));
  margin-inline: auto;
}
.section { padding: 96px 0; }
.section--soft { background: var(--surface-2); }
.section--dark {
  color: #fff;
  background:
    radial-gradient(circle at 15% 20%, rgba(56, 23, 136, .42), transparent 30%),
    radial-gradient(circle at 82% 80%, rgba(15, 138, 76, .25), transparent 28%),
    var(--navy-950);
}
.section-kicker {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin: 0 0 12px;
  color: var(--green-600);
  font-size: .82rem;
  font-weight: 800;
  letter-spacing: .12em;
  text-transform: uppercase;
}
.section-kicker::before {
  content: "";
  width: 26px;
  height: 3px;
  border-radius: 99px;
  background: currentColor;
}
.section--dark .section-kicker { color: #5ee399; }
.section-title {
  margin: 0;
  color: var(--navy-950);
  font-size: clamp(2rem, 4vw, 3.4rem);
  line-height: 1.08;
  letter-spacing: -.04em;
}
.section--dark .section-title { color: #fff; }
.section-lead {
  max-width: 760px;
  margin: 20px 0 0;
  color: var(--muted);
  font-size: 1.08rem;
}
.section--dark .section-lead { color: #c7d2e7; }
.section-heading { margin-bottom: 52px; }

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

/* Header */
.site-header {
  position: sticky;
  z-index: 1000;
  top: 0;
  height: var(--header-height);
  background: rgba(255, 255, 255, .92);
  border-bottom: 1px solid rgba(219, 227, 238, .85);
  backdrop-filter: blur(16px);
}
.nav-wrap {
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}
.brand { display: inline-flex; align-items: center; flex: 0 0 auto; }
.brand img { width: 154px; height: 64px; object-fit: contain; }
.site-nav { display: flex; align-items: center; gap: 28px; }
.site-nav > a {
  position: relative;
  color: #24334f;
  font-size: .95rem;
  font-weight: 700;
}
.site-nav > a:not(.btn)::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -8px;
  width: 100%;
  height: 2px;
  border-radius: 99px;
  background: var(--green-600);
  transform: scaleX(0);
  transform-origin: right;
  transition: transform .2s ease;
}
.site-nav > a:hover::after,
.site-nav > a[aria-current="page"]::after {
  transform: scaleX(1);
  transform-origin: left;
}
.nav-toggle {
  display: none;
  width: 46px;
  height: 46px;
  border: 1px solid var(--line);
  border-radius: 12px;
  background: #fff;
  color: var(--navy-950);
  align-items: center;
  justify-content: center;
}
.nav-toggle span,
.nav-toggle span::before,
.nav-toggle span::after {
  display: block;
  width: 22px;
  height: 2px;
  border-radius: 99px;
  background: currentColor;
  transition: .2s ease;
}
.nav-toggle span { position: relative; }
.nav-toggle span::before,
.nav-toggle span::after { content: ""; position: absolute; left: 0; }
.nav-toggle span::before { top: -7px; }
.nav-toggle span::after { top: 7px; }
.nav-toggle[aria-expanded="true"] span { background: transparent; }
.nav-toggle[aria-expanded="true"] span::before { top: 0; transform: rotate(45deg); }
.nav-toggle[aria-expanded="true"] span::after { top: 0; transform: rotate(-45deg); }

/* Buttons */
.btn {
  display: inline-flex;
  min-height: 48px;
  align-items: center;
  justify-content: center;
  gap: 9px;
  padding: 12px 20px;
  border: 1px solid transparent;
  border-radius: 999px;
  font-weight: 800;
  line-height: 1;
  transition: transform .2s ease, box-shadow .2s ease, background .2s ease, border-color .2s ease;
}
.btn:hover { transform: translateY(-2px); }
.btn--primary {
  color: #fff;
  background: linear-gradient(135deg, var(--green-600), var(--green-700));
  box-shadow: 0 12px 30px rgba(15, 138, 76, .24);
}
.btn--primary:hover { box-shadow: 0 16px 36px rgba(15, 138, 76, .32); }
.btn--navy {
  color: #fff;
  background: linear-gradient(135deg, var(--navy-800), var(--navy-950));
  box-shadow: 0 12px 30px rgba(6, 19, 47, .24);
}
.btn--outline { color: var(--navy-900); border-color: #b9c7da; background: rgba(255,255,255,.78); }
.btn--light { color: var(--navy-950); background: #fff; box-shadow: var(--shadow-sm); }
.btn--small { min-height: 42px; padding: 10px 17px; font-size: .9rem; }
.btn svg { width: 18px; height: 18px; }

/* Hero */
.hero {
  position: relative;
  overflow: hidden;
  min-height: calc(100svh - var(--header-height));
  display: grid;
  align-items: center;
  color: #fff;
  background:
    linear-gradient(100deg, rgba(6, 19, 47, .99) 0%, rgba(9, 27, 66, .96) 44%, rgba(9, 27, 66, .70) 72%, rgba(9, 27, 66, .86) 100%),
    url('../images/hero-automation.jpg') center right / cover no-repeat;
}
.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  opacity: .18;
  background-image:
    linear-gradient(rgba(255,255,255,.08) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.08) 1px, transparent 1px);
  background-size: 64px 64px;
  mask-image: linear-gradient(to right, #000 0%, transparent 75%);
}
.hero::after {
  content: "";
  position: absolute;
  width: 520px;
  height: 520px;
  left: -240px;
  bottom: -300px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(56,23,136,.75), transparent 70%);
}
.hero-inner {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(360px, .65fr);
  gap: 62px;
  align-items: center;
  padding: 74px 0;
}
.hero-copy { max-width: 730px; }
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 20px;
  padding: 8px 13px;
  border: 1px solid rgba(255,255,255,.22);
  border-radius: 999px;
  background: rgba(255,255,255,.08);
  color: #dce7f8;
  font-size: .86rem;
  font-weight: 800;
  letter-spacing: .04em;
}
.eyebrow-dot {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: #4ee28e;
  box-shadow: 0 0 0 6px rgba(78,226,142,.13);
}
.hero h1 {
  max-width: 780px;
  margin: 0;
  font-size: clamp(3.2rem, 7vw, 6.5rem);
  line-height: .94;
  letter-spacing: -.065em;
}
.hero h1 .accent { display: block; color: #62df99; }
.hero-lead {
  max-width: 690px;
  margin: 26px 0 0;
  color: #d0daec;
  font-size: clamp(1.05rem, 2vw, 1.25rem);
}
.hero-actions { display: flex; flex-wrap: wrap; gap: 14px; margin-top: 32px; }
.hero-meta {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 12px;
  margin-top: 42px;
}
.hero-stat {
  min-height: 90px;
  padding: 15px;
  border: 1px solid rgba(255,255,255,.16);
  border-radius: 16px;
  background: rgba(255,255,255,.07);
  backdrop-filter: blur(8px);
}
.hero-stat strong { display: block; font-size: 1.25rem; line-height: 1.2; }
.hero-stat span { display: block; margin-top: 5px; color: #aebbd2; font-size: .82rem; }
.hero-card {
  position: relative;
  align-self: end;
  margin-bottom: 18px;
  padding: 26px;
  border: 1px solid rgba(255,255,255,.2);
  border-radius: 26px;
  background: linear-gradient(155deg, rgba(255,255,255,.16), rgba(255,255,255,.06));
  box-shadow: var(--shadow-lg);
  backdrop-filter: blur(16px);
}
.hero-card::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background: linear-gradient(135deg, rgba(98,223,153,.12), transparent 45%);
  pointer-events: none;
}
.hero-card-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding-bottom: 20px;
  border-bottom: 1px solid rgba(255,255,255,.15);
}
.hero-card-badge { color: #6be2a1; font-weight: 900; letter-spacing: .08em; font-size: .75rem; text-transform: uppercase; }
.hero-card h2 { margin: 6px 0 0; font-size: 1.55rem; line-height: 1.2; }
.hero-card-price { text-align: right; }
.hero-card-price strong { display: block; color: #fff; font-size: 1.8rem; }
.hero-card-price span { color: #acb8cf; font-size: .78rem; }
.hero-card-list { display: grid; gap: 16px; margin: 22px 0 0; }
.hero-card-row { display: grid; grid-template-columns: 42px 1fr; gap: 13px; align-items: center; }
.hero-card-icon {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  border-radius: 12px;
  background: rgba(255,255,255,.10);
  color: #68e09e;
}
.hero-card-icon svg { width: 21px; height: 21px; }
.hero-card-row strong { display: block; font-size: .94rem; }
.hero-card-row span { display: block; color: #b9c5da; font-size: .82rem; }
.countdown {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 8px;
  margin-top: 22px;
}
.countdown-item {
  text-align: center;
  padding: 10px 4px;
  border-radius: 12px;
  background: rgba(3,11,28,.38);
}
.countdown-item strong { display: block; font-size: 1.24rem; line-height: 1; }
.countdown-item span { color: #9aa9c3; font-size: .68rem; text-transform: uppercase; letter-spacing: .08em; }

/* Trust strip */
.trust-strip { position: relative; z-index: 4; margin-top: -1px; background: #fff; border-bottom: 1px solid var(--line); }
.trust-grid { display: grid; grid-template-columns: repeat(4, 1fr); }
.trust-item { display: flex; align-items: center; gap: 13px; min-height: 92px; padding: 20px 24px; border-right: 1px solid var(--line); }
.trust-item:last-child { border-right: 0; }
.trust-icon { width: 42px; height: 42px; display: grid; place-items: center; flex: 0 0 auto; border-radius: 12px; color: var(--green-700); background: #e9f8f0; }
.trust-icon svg { width: 22px; height: 22px; }
.trust-item strong { display: block; color: var(--navy-900); }
.trust-item span { display: block; color: var(--muted); font-size: .82rem; }

/* Generic layouts */
.grid-2 { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 52px; align-items: center; }
.grid-3 { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 22px; }
.grid-4 { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 18px; }
.card {
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  background: #fff;
  box-shadow: var(--shadow-sm);
}

/* About */
.about-visual { position: relative; min-height: 500px; }
.about-photo {
  position: absolute;
  inset: 0 58px 32px 0;
  overflow: hidden;
  border-radius: 30px;
  box-shadow: var(--shadow-md);
}
.about-photo img { width: 100%; height: 100%; object-fit: cover; }
.about-photo::after { content: ""; position: absolute; inset: 0; background: linear-gradient(to top, rgba(6,19,47,.50), transparent 55%); }
.about-floating {
  position: absolute;
  right: 0;
  bottom: 0;
  width: min(320px, 72%);
  padding: 22px;
  border-radius: 22px;
  color: #fff;
  background: linear-gradient(145deg, var(--navy-800), var(--navy-950));
  box-shadow: var(--shadow-md);
}
.about-floating strong { display: block; color: #60df99; font-size: 2.1rem; line-height: 1; }
.about-floating span { display: block; margin-top: 8px; color: #d5deee; }
.about-copy p { color: var(--muted); }
.check-list { display: grid; gap: 14px; margin: 28px 0 0; padding: 0; list-style: none; }
.check-list li { display: grid; grid-template-columns: 26px 1fr; gap: 12px; align-items: start; color: #344158; }
.check-list-icon { width: 24px; height: 24px; display: grid; place-items: center; border-radius: 50%; color: #fff; background: var(--green-600); font-size: .78rem; font-weight: 900; }

/* Services */
.service-card { position: relative; overflow: hidden; min-height: 280px; padding: 28px; transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease; }
.service-card:hover { transform: translateY(-7px); border-color: #b6c5d9; box-shadow: var(--shadow-md); }
.service-card::after { content: ""; position: absolute; right: -45px; bottom: -55px; width: 150px; height: 150px; border-radius: 50%; background: rgba(15,138,76,.07); transition: transform .25s ease; }
.service-card:hover::after { transform: scale(1.15); }
.service-icon { width: 54px; height: 54px; display: grid; place-items: center; border-radius: 16px; color: #fff; background: linear-gradient(135deg, var(--green-600), var(--green-700)); box-shadow: 0 12px 26px rgba(15,138,76,.2); }
.service-icon--purple { background: linear-gradient(135deg, #5426ac, var(--purple)); box-shadow: 0 12px 26px rgba(56,23,136,.2); }
.service-icon--red { background: linear-gradient(135deg, #c52d32, var(--red-700)); box-shadow: 0 12px 26px rgba(181,29,35,.2); }
.service-icon svg { width: 27px; height: 27px; }
.service-card h3 { margin: 22px 0 10px; color: var(--navy-950); font-size: 1.25rem; }
.service-card p { margin: 0; color: var(--muted); font-size: .95rem; }
.service-link { position: relative; z-index: 1; display: inline-flex; align-items: center; gap: 7px; margin-top: 20px; color: var(--green-700); font-size: .9rem; font-weight: 800; }

/* Programme */
.programme-summary {
  display: grid;
  grid-template-columns: 1.05fr .95fr;
  gap: 34px;
  align-items: stretch;
  margin-bottom: 34px;
}
.programme-panel {
  overflow: hidden;
  border-radius: 28px;
  background: #fff;
  color: var(--ink);
  box-shadow: var(--shadow-md);
}
.programme-panel img { width: 100%; height: 100%; min-height: 430px; object-fit: cover; }
.programme-details { padding: 34px; }
.programme-details h3 { margin: 0; color: var(--navy-950); font-size: 1.8rem; }
.programme-details > p { color: var(--muted); }
.programme-facts { display: grid; grid-template-columns: repeat(2, 1fr); gap: 12px; margin-top: 24px; }
.fact { padding: 17px; border-radius: 15px; background: var(--surface-3); }
.fact span { display: block; color: var(--muted); font-size: .75rem; font-weight: 700; letter-spacing: .07em; text-transform: uppercase; }
.fact strong { display: block; margin-top: 5px; color: var(--navy-900); }
.week-card { position: relative; overflow: hidden; padding: 25px; color: #fff; border: 1px solid rgba(255,255,255,.14); border-radius: 20px; background: linear-gradient(145deg, #10295d, #071630); }
.week-card:nth-child(2), .week-card:nth-child(4) { background: linear-gradient(145deg, #47229a, #20104e); }
.week-card::before { content: attr(data-week); position: absolute; right: 16px; top: 2px; color: rgba(255,255,255,.07); font-size: 5.6rem; font-weight: 900; line-height: 1; }
.week-number { display: inline-flex; padding: 6px 11px; border-radius: 999px; color: #072719; background: #62df99; font-size: .74rem; font-weight: 900; text-transform: uppercase; letter-spacing: .08em; }
.week-card h3 { position: relative; margin: 20px 0 12px; font-size: 1.24rem; line-height: 1.25; }
.week-card ul { position: relative; margin: 0; padding-left: 18px; color: #d2dcef; font-size: .9rem; }
.week-card li + li { margin-top: 7px; }
.tools-row { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 26px; }
.tool-pill { display: inline-flex; align-items: center; gap: 8px; padding: 9px 13px; border: 1px solid rgba(255,255,255,.16); border-radius: 999px; color: #dce5f5; background: rgba(255,255,255,.06); font-size: .84rem; font-weight: 700; }
.tool-dot { width: 8px; height: 8px; border-radius: 50%; background: #58dc93; }

/* Projects */
.project-grid { display: grid; grid-template-columns: 1.3fr .85fr .85fr; grid-auto-rows: 270px; gap: 20px; }
.project-card { position: relative; overflow: hidden; border-radius: 24px; color: #fff; box-shadow: var(--shadow-md); }
.project-card:first-child { grid-row: span 2; }
.project-card img { width: 100%; height: 100%; object-fit: cover; transition: transform .45s ease; }
.project-card:hover img { transform: scale(1.04); }
.project-card::after { content: ""; position: absolute; inset: 0; background: linear-gradient(to top, rgba(3,13,32,.94), rgba(3,13,32,.08) 68%); }
.project-content { position: absolute; z-index: 2; left: 24px; right: 24px; bottom: 22px; }
.project-tag { display: inline-flex; margin-bottom: 9px; padding: 5px 10px; border-radius: 99px; color: #062c19; background: #6ee3a4; font-size: .68rem; font-weight: 900; text-transform: uppercase; letter-spacing: .08em; }
.project-content h3 { margin: 0; font-size: 1.35rem; }
.project-content p { margin: 7px 0 0; color: #cad5e7; font-size: .88rem; }
.project-card--gradient { display: flex; align-items: flex-end; background: radial-gradient(circle at 80% 10%, rgba(98,223,153,.35), transparent 28%), linear-gradient(145deg, var(--navy-800), var(--navy-950)); }
.project-card--gradient.purple { background: radial-gradient(circle at 80% 10%, rgba(181,29,35,.30), transparent 28%), linear-gradient(145deg, #4a239e, #1f104b); }
.project-illustration { position: absolute; right: 18px; top: 17px; width: 104px; height: 104px; color: rgba(255,255,255,.24); }

/* Process */
.process-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px; counter-reset: process; }
.process-card { position: relative; padding: 26px; border-radius: 20px; color: #fff; background: rgba(255,255,255,.07); border: 1px solid rgba(255,255,255,.14); }
.process-card::before { counter-increment: process; content: "0" counter(process); display: inline-grid; width: 46px; height: 46px; place-items: center; border-radius: 14px; color: #082819; background: #63df9a; font-weight: 900; }
.process-card h3 { margin: 24px 0 10px; }
.process-card p { margin: 0; color: #bcc8dc; font-size: .9rem; }

/* FAQ */
.faq-list { display: grid; gap: 13px; max-width: 900px; }
.faq-item { overflow: hidden; border: 1px solid var(--line); border-radius: 16px; background: #fff; }
.faq-question { width: 100%; display: flex; align-items: center; justify-content: space-between; gap: 24px; padding: 20px 22px; border: 0; color: var(--navy-950); background: transparent; text-align: left; font-weight: 800; }
.faq-question svg { width: 20px; height: 20px; transition: transform .2s ease; }
.faq-question[aria-expanded="true"] svg { transform: rotate(45deg); }
.faq-answer { display: grid; grid-template-rows: 0fr; transition: grid-template-rows .25s ease; }
.faq-answer > div { overflow: hidden; }
.faq-answer p { margin: 0; padding: 0 22px 20px; color: var(--muted); }
.faq-question[aria-expanded="true"] + .faq-answer { grid-template-rows: 1fr; }

/* CTA */
.cta {
  position: relative;
  overflow: hidden;
  padding: 54px;
  border-radius: 30px;
  color: #fff;
  background: linear-gradient(130deg, var(--purple), var(--navy-900) 50%, var(--green-700));
  box-shadow: var(--shadow-lg);
}
.cta::before { content: ""; position: absolute; width: 380px; height: 380px; right: -140px; top: -220px; border: 70px solid rgba(255,255,255,.08); border-radius: 50%; }
.cta-inner { position: relative; z-index: 1; display: flex; align-items: center; justify-content: space-between; gap: 40px; }
.cta h2 { max-width: 680px; margin: 0; font-size: clamp(2rem, 4vw, 3.4rem); line-height: 1.05; letter-spacing: -.04em; }
.cta p { max-width: 650px; margin: 16px 0 0; color: #d5dced; }
.cta-actions { display: flex; flex-direction: column; gap: 11px; min-width: 210px; }

/* Footer */
.site-footer { color: #d5deef; background: #041027; }
.footer-main { display: grid; grid-template-columns: 1.35fr .8fr .8fr 1fr; gap: 38px; padding: 64px 0 48px; }
.footer-brand img { width: 170px; filter: drop-shadow(0 8px 20px rgba(0,0,0,.18)); }
.footer-brand p { max-width: 350px; margin-top: 18px; color: #a8b5cb; font-size: .92rem; }
.footer-title { margin: 5px 0 18px; color: #fff; font-size: .92rem; letter-spacing: .08em; text-transform: uppercase; }
.footer-links { display: grid; gap: 11px; }
.footer-links a { color: #aebbd0; font-size: .9rem; }
.footer-links a:hover { color: #68e09e; }
.footer-contact { display: grid; gap: 14px; }
.footer-contact a { display: grid; grid-template-columns: 34px 1fr; gap: 10px; align-items: center; color: #c8d2e4; font-size: .9rem; }
.footer-contact-icon { width: 34px; height: 34px; display: grid; place-items: center; border-radius: 10px; color: #6be2a1; background: rgba(255,255,255,.07); }
.footer-contact-icon svg { width: 17px; height: 17px; }
.footer-bottom { display: flex; align-items: center; justify-content: space-between; gap: 24px; padding: 21px 0; border-top: 1px solid rgba(255,255,255,.10); color: #8998b2; font-size: .82rem; }
.footer-bottom-links { display: flex; gap: 18px; }

/* WhatsApp float */
.whatsapp-float { position: fixed; z-index: 800; right: 22px; bottom: 22px; width: 58px; height: 58px; display: grid; place-items: center; border-radius: 50%; color: #fff; background: #16a960; box-shadow: 0 12px 30px rgba(0,0,0,.24); transition: transform .2s ease; }
.whatsapp-float:hover { transform: translateY(-4px) scale(1.03); }
.whatsapp-float svg { width: 28px; height: 28px; }

/* Inner pages */
.page-hero { position: relative; overflow: hidden; padding: 88px 0 80px; color: #fff; background: radial-gradient(circle at 80% 20%, rgba(15,138,76,.28), transparent 30%), linear-gradient(135deg, var(--navy-950), var(--navy-800)); }
.page-hero::after { content: ""; position: absolute; inset: 0; opacity: .12; background-image: linear-gradient(rgba(255,255,255,.1) 1px, transparent 1px), linear-gradient(90deg, rgba(255,255,255,.1) 1px, transparent 1px); background-size: 48px 48px; }
.page-hero .container { position: relative; z-index: 2; }
.breadcrumbs { display: flex; align-items: center; gap: 9px; color: #aab7cf; font-size: .86rem; }
.breadcrumbs a:hover { color: #64df9a; }
.page-hero h1 { max-width: 840px; margin: 20px 0 0; font-size: clamp(2.7rem, 6vw, 5.2rem); line-height: .98; letter-spacing: -.055em; }
.page-hero p { max-width: 720px; margin: 22px 0 0; color: #c8d2e5; font-size: 1.08rem; }

/* Apply */
.apply-layout { display: grid; grid-template-columns: minmax(0, 1.1fr) minmax(310px, .65fr); gap: 32px; align-items: start; }
.form-card { padding: 32px; }
.form-card h2 { margin: 0; color: var(--navy-950); }
.form-intro { color: var(--muted); }
.form-grid { display: grid; grid-template-columns: repeat(2, minmax(0,1fr)); gap: 18px; margin-top: 28px; }
.form-field { display: grid; gap: 8px; }
.form-field--full { grid-column: 1 / -1; }
.form-label { color: #273650; font-size: .9rem; font-weight: 800; }
.form-label .required { color: var(--red-600); }
.form-control { width: 100%; min-height: 50px; padding: 12px 14px; border: 1px solid #cbd6e5; border-radius: 12px; color: var(--ink); background: #fff; outline: 0; transition: border-color .2s ease, box-shadow .2s ease; }
textarea.form-control { min-height: 130px; resize: vertical; }
.form-control:focus { border-color: var(--green-600); box-shadow: 0 0 0 4px rgba(15,138,76,.12); }
.form-control[aria-invalid="true"] { border-color: var(--red-600); }
.form-help { color: var(--muted); font-size: .78rem; }
.form-error { min-height: 18px; color: var(--red-600); font-size: .78rem; font-weight: 700; }
.checkbox-row { display: grid; grid-template-columns: 20px 1fr; gap: 10px; align-items: start; }
.checkbox-row input { width: 18px; height: 18px; margin-top: 3px; accent-color: var(--green-600); }
.checkbox-row label { color: #49566a; font-size: .87rem; }
.form-actions { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 24px; }
.form-status { display: none; margin-top: 18px; padding: 14px 16px; border-radius: 12px; color: #0a5f35; background: #e7f8ef; font-size: .9rem; font-weight: 700; }
.form-status.is-visible { display: block; }
.application-side { position: static; display: grid; gap: 18px; }
.side-card { padding: 25px; }
.side-card h3 { margin: 0 0 14px; color: var(--navy-950); }
.side-list { display: grid; gap: 12px; margin: 0; padding: 0; list-style: none; }
.side-list li { display: grid; grid-template-columns: 24px 1fr; gap: 10px; color: #4c596c; font-size: .9rem; }
.side-list .check-list-icon { width: 22px; height: 22px; }
.fee-card { color: #fff; background: linear-gradient(145deg, var(--green-600), var(--green-700)); border: 0; }
.fee-card h3 { color: #fff; }
.fee-card .big-fee { display: block; margin: 8px 0 4px; font-size: 3.4rem; font-weight: 900; line-height: 1; letter-spacing: -.05em; }
.fee-card p { margin: 0; color: #d8f3e4; font-size: .9rem; }

/* Privacy */
.prose { max-width: 820px; }
.prose h2 { margin: 42px 0 12px; color: var(--navy-950); font-size: 1.6rem; }
.prose h2:first-child { margin-top: 0; }
.prose p, .prose li { color: #566276; }
.prose a { color: var(--green-700); font-weight: 700; }

/* Reveal */
[data-reveal] { opacity: 0; transform: translateY(18px); transition: opacity .55s ease, transform .55s ease; }
[data-reveal].is-visible { opacity: 1; transform: translateY(0); }

/* Responsive */
@media (max-width: 1050px) {
  .site-nav { gap: 18px; }
  .site-nav > a { font-size: .88rem; }
  .hero-inner { grid-template-columns: 1fr .55fr; gap: 30px; }
  .hero h1 { font-size: clamp(3.1rem, 7vw, 5.4rem); }
  .hero-meta { grid-template-columns: repeat(2, 1fr); }
  .grid-3 { grid-template-columns: repeat(2, 1fr); }
  .grid-4, .process-grid { grid-template-columns: repeat(2, 1fr); }
  .project-grid { grid-template-columns: repeat(2, 1fr); }
  .project-card:first-child { grid-row: span 1; grid-column: span 2; }
  .footer-main { grid-template-columns: 1.3fr 1fr 1fr; }
  .footer-main > :nth-child(3) { display: none; }
}

@media (max-width: 860px) {
  :root { --header-height: 74px; }
  .section { padding: 78px 0; }
  .nav-toggle { display: inline-flex; }
  .site-nav {
    position: fixed;
    left: 20px;
    right: 20px;
    top: calc(var(--header-height) + 8px);
    display: grid;
    gap: 0;
    padding: 12px;
    border: 1px solid var(--line);
    border-radius: 18px;
    background: #fff;
    box-shadow: var(--shadow-md);
    transform: translateY(-12px);
    opacity: 0;
    visibility: hidden;
    transition: .2s ease;
  }
  .site-nav.is-open { transform: translateY(0); opacity: 1; visibility: visible; }
  .site-nav > a { padding: 13px 14px; border-radius: 10px; }
  .site-nav > a:not(.btn)::after { display: none; }
  .site-nav > a:hover { background: var(--surface-2); }
  .site-nav .btn { margin-top: 7px; }
  .brand img { width: 132px; height: 54px; }
  .hero { min-height: auto; background-position: 68% center; }
  .hero-inner { grid-template-columns: 1fr; padding: 72px 0 76px; }
  .hero-copy { max-width: 700px; }
  .hero-card { max-width: 620px; width: 100%; margin: 0; }
  .trust-grid { grid-template-columns: repeat(2, 1fr); }
  .trust-item:nth-child(2) { border-right: 0; }
  .trust-item:nth-child(-n+2) { border-bottom: 1px solid var(--line); }
  .grid-2, .programme-summary, .apply-layout { grid-template-columns: 1fr; }
  .about-visual { min-height: 460px; }
  .programme-panel img { min-height: 360px; }
  .application-side { position: static; }
  .cta-inner { align-items: flex-start; flex-direction: column; }
  .cta-actions { flex-direction: row; min-width: 0; }
}

@media (max-width: 620px) {
  .container { width: min(calc(100% - 28px), var(--max-width)); }
  .section { padding: 66px 0; }
  .hero { background-image: linear-gradient(100deg, rgba(6,19,47,.98), rgba(9,27,66,.88)), url('../images/hero-automation.jpg'); }
  .hero-inner { padding: 58px 0 64px; }
  .hero h1 { font-size: clamp(2.8rem, 14vw, 4.2rem); }
  .hero-lead { font-size: 1rem; }
  .hero-actions .btn { width: 100%; }
  .hero-meta { grid-template-columns: repeat(2, 1fr); }
  .hero-stat { min-height: 80px; }
  .hero-card { padding: 21px; }
  .hero-card-top { align-items: flex-start; flex-direction: column; }
  .hero-card-price { text-align: left; }
  .trust-grid, .grid-3, .grid-4, .process-grid, .form-grid { grid-template-columns: 1fr; }
  .trust-item { border-right: 0; border-bottom: 1px solid var(--line); }
  .trust-item:last-child { border-bottom: 0; }
  .about-visual { min-height: 410px; }
  .about-photo { inset: 0 24px 50px 0; }
  .about-floating { width: 80%; }
  .programme-facts { grid-template-columns: 1fr; }
  .programme-details, .form-card { padding: 24px; }
  .project-grid { grid-template-columns: 1fr; grid-auto-rows: 280px; }
  .project-card:first-child { grid-column: span 1; }
  .cta { padding: 36px 26px; }
  .cta-actions { width: 100%; flex-direction: column; }
  .cta-actions .btn { width: 100%; }
  .footer-main { grid-template-columns: 1fr; }
  .footer-main > :nth-child(3) { display: block; }
  .footer-bottom { align-items: flex-start; flex-direction: column; }
  .page-hero { padding: 66px 0 62px; }
  .form-field--full { grid-column: auto; }
  .form-actions .btn { width: 100%; }
  .whatsapp-float { width: 52px; height: 52px; right: 14px; bottom: 14px; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: .01ms !important; animation-iteration-count: 1 !important; transition-duration: .01ms !important; }
  [data-reveal] { opacity: 1; transform: none; }
}
