﻿/* âââââââââââââââââââââââââââââââââââââââââââââââââââââââââââââââ
   ED-ADMIN LANDING PAGE â PRODUCTION CSS
   Brand: Navy #051e35 | Gold #bd9754 | Paper #FAF8F3
âââââââââââââââââââââââââââââââââââââââââââââââââââââââââââââââ */

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --navy:   #051e35;
  --orange: #bd9754;
  --gold:   #bd9754;
  --grey:   #E7E5E1;
  --paper:  #FAF8F3;
  --text:   #1a1a2e;
  --text-mid: #3a4060;
  --text-light: #6a7090;
  --white:  #ffffff;
  --font-head: 'Montserrat', sans-serif;
  --font-body: 'Inter', sans-serif;
  --max-w: 1280px;
  --section-px: clamp(20px, 5vw, 80px);
}

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-body);
  color: var(--text);
  background: var(--paper);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  position: relative;
  min-height: 100vh;
}

section, footer, header {
  position: relative;
  z-index: 1;
}

/* ââ Topographic background texture ââââââââââââââââââââââââââââ */
body::before {
  content: '';
  position: fixed;
  inset: 0;
  background-image:
    url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='800' height='600'%3E%3Cdefs%3E%3Cstyle%3E.c%7Bfill:none;stroke:%23062052;stroke-width:1%7D%3C/style%3E%3C/defs%3E%3Cpath class='c' d='M-50,120 C100,80 200,160 400,100 C600,40 700,120 850,90' opacity='0.07'/%3E%3Cpath class='c' d='M-50,160 C100,120 200,200 400,140 C600,80 700,160 850,130' opacity='0.07'/%3E%3Cpath class='c' d='M-50,200 C100,160 200,240 400,180 C600,120 700,200 850,170' opacity='0.06'/%3E%3Cpath class='c' d='M-50,240 C100,200 200,280 400,220 C600,160 700,240 850,210' opacity='0.06'/%3E%3Cpath class='c' d='M-50,280 C100,240 200,320 400,260 C600,200 700,280 850,250' opacity='0.05'/%3E%3Cpath class='c' d='M-50,320 C100,280 200,360 400,300 C600,240 700,320 850,290' opacity='0.05'/%3E%3Cpath class='c' d='M-50,360 C150,310 250,400 450,340 C650,280 750,360 850,330' opacity='0.06'/%3E%3Cpath class='c' d='M-50,400 C150,350 250,440 450,380 C650,320 750,400 850,370' opacity='0.06'/%3E%3Cpath class='c' d='M-50,440 C150,390 250,480 450,420 C650,360 750,440 850,410' opacity='0.05'/%3E%3Cpath class='c' d='M-50,480 C150,430 250,520 450,460 C650,400 750,480 850,450' opacity='0.05'/%3E%3Cpath class='c' d='M-50,70 C200,30 350,100 550,50 C700,10 780,70 850,55' opacity='0.05'/%3E%3Cpath class='c' d='M-50,520 C150,470 250,560 450,500 C650,440 750,520 850,490' opacity='0.04'/%3E%3Cpath class='c' d='M50,580 C200,540 350,600 550,560 C700,520 790,575 850,555' opacity='0.04'/%3E%3Cpath d='M-50,300 C200,260 400,340 600,280 C750,230 820,300 850,285' fill='none' stroke='%23F29B00' stroke-width='1' opacity='0.04'/%3E%3Cpath d='M-50,420 C200,380 400,460 600,400 C750,350 820,420 850,405' fill='none' stroke='%23F29B00' stroke-width='1' opacity='0.03'/%3E%3C/svg%3E");
  background-size: 800px 600px;
  pointer-events: none;
  z-index: 0;
  opacity: 1;
}

/* ââ Utility ââââââââââââââââââââââââââââââââââââââââââââââââââââ */
.text-orange { color: var(--orange); }
.centered { text-align: center; }

.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-head);
  font-weight: 600;
  font-size: 14px;
  letter-spacing: 0.3px;
  padding: 12px 22px;
  border-radius: 5px;
  border: 2px solid transparent;
  cursor: pointer;
  text-decoration: none;
  transition: all 0.2s ease;
  white-space: nowrap;
}

.btn-orange {
  background: var(--orange);
  color: var(--white);
  border-color: var(--orange);
}
.btn-orange:hover { background: #a6823f; border-color: #a6823f; }
.text-gold { color: var(--gold); }

.btn-outline-white {
  background: transparent;
  color: var(--white);
  border-color: rgba(255,255,255,0.6);
}
.btn-outline-white:hover { background: rgba(255,255,255,0.1); border-color: white; }

.btn-dark-navy {
  background: rgba(6,32,82,0.7);
  color: var(--white);
  border-color: rgba(255,255,255,0.25);
  backdrop-filter: blur(4px);
}
.btn-dark-navy:hover { background: rgba(6,32,82,0.9); }

.play-icon { display: flex; align-items: center; }

/* ââââââââââââââââââââââââââââââââââââââââââââââââââââââââââââââââ
   NAVIGATION
ââââââââââââââââââââââââââââââââââââââââââââââââââââââââââââââââ */
.site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  background: var(--navy);
  border-bottom: 1px solid rgba(255,255,255,0.08);
}

.nav-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 var(--section-px);
  height: 68px;
  display: flex;
  align-items: center;
  gap: 32px;
}

.nav-logo-img {
  height: 42px;
  width: auto;
  display: block;
}

.footer-logo-img {
  height: 34px;
  width: auto;
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  flex-shrink: 0;
}

.logo-icon { display: flex; align-items: center; }

.logo-text {
  display: flex;
  flex-direction: column;
  line-height: 1;
}

.logo-name {
  font-family: var(--font-head);
  font-weight: 800;
  font-size: 22px;
  color: var(--white);
  letter-spacing: -0.3px;
}

.logo-tagline {
  font-family: var(--font-head);
  font-weight: 500;
  font-size: 7.5px;
  color: var(--orange);
  letter-spacing: 1.2px;
  margin-top: 2px;
}

.nav-links {
  list-style: none;
  display: flex;
  align-items: center;
  gap: 6px;
  margin-left: auto;
}

.nav-links a {
  font-family: var(--font-head);
  font-size: 13.5px;
  font-weight: 500;
  color: rgba(255,255,255,0.85);
  text-decoration: none;
  padding: 6px 12px;
  border-radius: 4px;
  transition: all 0.15s;
}
.nav-links a:hover { color: white; background: rgba(255,255,255,0.08); }

.nav-cta {
  margin-left: 8px;
  font-size: 13px;
  padding: 10px 20px;
}

.nav-hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 6px;
  margin-left: auto;
}
.nav-hamburger span {
  display: block;
  width: 22px;
  height: 2px;
  background: white;
  border-radius: 2px;
}

/* ââââââââââââââââââââââââââââââââââââââââââââââââââââââââââââââââ
   HERO SECTION
ââââââââââââââââââââââââââââââââââââââââââââââââââââââââââââââââ */
.hero {
  position: relative;
  box-sizing: border-box;
  background-color: #040f2a;
  padding-top: 68px;
  height: 100vh;
  min-height: 640px;
  overflow: hidden;
}

/* Globe background at 20% opacity */
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: url(hero-globe.jpg?v=2);
  background-size: cover;
  background-position: center center;
  opacity: 0.20;
  z-index: 0;
}

/* Hide the SVG globe â real photo is the background now */
.hero-globe-wrap { display: none; }
.globe-gradient  { display: none; }
.globe-svg       { display: none; }

.hero-inner {
  position: relative;
  z-index: 2;
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 32px var(--section-px) 0;
  display: grid;
  grid-template-columns: minmax(260px, 380px) 1fr 390px;
  gap: 0 24px;
  align-items: end;
  height: 100%;
}

/* ââ Hero copy âââââââââââââââââââââââââââââââââââââââââââââââââ */
.hero-content {
  padding-top: 20px;
  padding-bottom: 20px;
  display: flex;
  flex-direction: column;
  align-self: stretch;
}

.hero-headline {
  font-family: 'Playfair Display', Georgia, serif;
  font-weight: 800;
  font-size: clamp(40px, 5.2vw, 68px);
  line-height: 1.05;
  letter-spacing: -0.5px;
  margin-bottom: 22px;
  display: flex;
  flex-direction: column;
  text-shadow:
    0 2px 4px rgba(0,0,0,1),
    0 4px 14px rgba(0,0,0,0.95),
    0 10px 34px rgba(0,0,0,0.85);
}

.hero-line-white { color: var(--white); }
.hero-line-orange { color: var(--gold); }
.hero-line-gold  { color: var(--gold); }

.hero-body {
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.7;
  color: rgba(255,255,255,0.82);
  margin-bottom: 32px;
  text-shadow:
    0 1px 3px rgba(0,0,0,1),
    0 3px 10px rgba(0,0,0,0.95),
    0 6px 22px rgba(0,0,0,0.8);
}

.hero-g30-badge {
  display: inline-block;
  margin-top: auto;
  opacity: 0.85;
  transition: opacity 0.2s;
}
.hero-g30-badge:hover { opacity: 1; }
.hero-g30-img {
  width: 96px;
  height: auto;
  border-radius: 4px;
  display: block;
}

.hero-ctas {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-bottom: 20px;
}

/* ââ Center column device image ââââââââââââââââââââââââââââââââ */
/* Device image â absolutely positioned in .hero (outside the grid) */
.hero-devices {
  position: absolute;
  top: 265px;
  left: 50%;
  transform: translateX(-62%);
  width: 576px;
  z-index: 1;
  pointer-events: none;
}

.hero-devices-img {
  width: 100%;
  height: auto;
  display: block;
  filter: drop-shadow(0 24px 48px rgba(0,0,0,0.7));
}

/* Laptop */
.device-laptop {
  position: relative;
  width: 340px;
  flex-shrink: 0;
}

.laptop-screen {
  background: #0a1535;
  border: 2px solid #1e3a7a;
  border-bottom: none;
  border-radius: 10px 10px 0 0;
  overflow: hidden;
  width: 340px;
  height: 210px;
  box-shadow: 0 0 40px rgba(100,140,255,0.15);
}

.screen-header {
  background: #041035;
  height: 28px;
  display: flex;
  align-items: center;
  padding: 0 8px;
  gap: 6px;
  border-bottom: 1px solid #1e3060;
}

.screen-nav-item {
  height: 14px;
  border-radius: 2px;
  background: #1e3a7a;
}
.screen-nav-item:nth-child(1) { width: 55px; background: #bd9754; opacity: 0.7; }
.screen-nav-item:nth-child(2) { width: 45px; }
.screen-nav-item:nth-child(3) { width: 50px; }
.screen-nav-item:nth-child(4) { width: 45px; }
.screen-nav-item:nth-child(5) { width: 40px; }
.screen-nav-item.active { background: #bd9754; opacity: 0.8; }

.screen-body {
  display: flex;
  height: calc(100% - 28px);
}

.screen-sidebar {
  width: 36px;
  background: #041035;
  border-right: 1px solid #1e3060;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 8px 4px;
  gap: 6px;
}

.sidebar-logo-mini {
  width: 20px;
  height: 20px;
  background: var(--orange);
  border-radius: 3px;
  opacity: 0.8;
  margin-bottom: 4px;
}

.sidebar-item {
  width: 20px;
  height: 8px;
  background: #2a4a90;
  border-radius: 2px;
  opacity: 0.6;
}
.sidebar-item.active { background: #bd9754; opacity: 0.8; }

.screen-main {
  flex: 1;
  padding: 8px;
  overflow: hidden;
}

.screen-title-bar {
  height: 8px;
  background: #1e3a7a;
  border-radius: 2px;
  margin-bottom: 8px;
  width: 60%;
  opacity: 0.6;
}

.stats-row {
  display: grid;
  grid-template-columns: repeat(4,1fr);
  gap: 4px;
  margin-bottom: 8px;
}

.stat-card {
  background: #0c1f55;
  border: 1px solid #1e3a7a;
  border-radius: 4px;
  padding: 4px 5px;
}

.stat-num {
  font-family: var(--font-head);
  font-size: 9px;
  font-weight: 700;
  color: white;
  line-height: 1;
}
.stat-num.orange { color: var(--orange); font-size: 7px; }

.stat-label, .stat-sub {
  height: 3px;
  background: #2a4080;
  border-radius: 1px;
  margin-top: 3px;
  opacity: 0.5;
}
.stat-sub { width: 70%; }

.icon-grid {
  display: grid;
  grid-template-columns: repeat(4,1fr);
  gap: 5px;
  margin-top: 6px;
}

.ig-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 3px;
}

.ig-icon {
  width: 22px;
  height: 22px;
  background: #0c1f55;
  border: 1px solid #1e3a7a;
  border-radius: 5px;
}

.ig-label {
  height: 3px;
  width: 20px;
  background: #2a4080;
  border-radius: 1px;
  opacity: 0.5;
}

.laptop-base {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.laptop-hinge {
  width: 100%;
  height: 6px;
  background: linear-gradient(to right, #1e3a7a, #2a5aaa, #1e3a7a);
  border-radius: 0 0 2px 2px;
}

.laptop-foot {
  width: 70%;
  height: 8px;
  background: linear-gradient(to right, #0a1830, #1e3a7a, #0a1830);
  border-radius: 0 0 6px 6px;
}

/* ââ Phone mockups in hero âââââââââââââââââââââââââââââââââââââ */
.device-phones {
  display: flex;
  gap: -10px;
  align-items: flex-end;
  margin-left: 16px;
}

.device-phone {
  width: 90px;
  height: 170px;
  background: #0a1535;
  border: 2px solid #1e3a7a;
  border-radius: 14px;
  overflow: hidden;
  position: relative;
  box-shadow: 0 8px 24px rgba(0,0,0,0.4);
}
.phone-left { transform: translateY(10px); z-index: 2; }
.phone-right { transform: translateY(0px) translateX(-8px); z-index: 1; }

.phone-screen { height: 100%; display: flex; flex-direction: column; }

.phone-topbar {
  background: var(--navy);
  padding: 6px 6px 4px;
  border-bottom: 1px solid rgba(255,255,255,0.1);
}

.phone-app-title {
  font-family: var(--font-head);
  font-size: 6.5px;
  font-weight: 700;
  color: var(--orange);
  letter-spacing: 0.5px;
}

.phone-nav-icons {
  flex: 1;
  padding: 4px;
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.pni {
  display: flex;
  align-items: center;
  gap: 4px;
  padding: 3px 3px;
  border-radius: 3px;
  background: rgba(255,255,255,0.03);
}

.pni-icon {
  width: 10px;
  height: 10px;
  background: var(--orange);
  border-radius: 2px;
  opacity: 0.7;
  flex-shrink: 0;
}

.pni span {
  font-family: var(--font-head);
  font-size: 5.5px;
  color: rgba(255,255,255,0.75);
}

/* ââ White Paper Form âââââââââââââââââââââââââââââââââââââââââââ */
.hero-content {
  align-self: center;
  padding-bottom: 40px;
}

.hero-form-wrap {
  position: relative;
  align-self: start;
  grid-column: 3;
}

.form-card {
  background: var(--white);
  border-radius: 8px;
  padding: 22px 24px 20px;
  box-shadow: 0 20px 60px rgba(6,32,82,0.35), 0 4px 16px rgba(0,0,0,0.15);
  max-width: 400px;
  max-height: calc(100vh - 120px);
  overflow-y: auto;
}

.form-card-header {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  margin-bottom: 10px;
  padding-bottom: 12px;
  border-bottom: 1px solid var(--grey);
}

.form-card-icon { flex-shrink: 0; padding-top: 2px; }

.form-header-map {
  flex-shrink: 0;
  width: 52px;
  height: auto;
  margin-left: auto;
  align-self: center;
  opacity: 0.9;
}

.form-wp-label {
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 13px;
  color: var(--navy);
  margin-bottom: 4px;
}

.form-wp-subtitle {
  font-family: var(--font-body);
  font-size: 12.5px;
  line-height: 1.45;
  color: var(--text-mid);
}

.form-intro {
  font-family: var(--font-body);
  font-size: 12.5px;
  text-align: center;
  margin-bottom: 14px;
  color: var(--text-mid);
  line-height: 1.5;
}

.wp-form { display: flex; flex-direction: column; gap: 7px; }

.form-row { display: flex; gap: 7px; }
.form-row-2 { }

.form-field {
  position: relative;
  display: flex;
  align-items: center;
  flex: 1;
  min-width: 0;
}

.form-field-full { width: 100%; flex: none; }

.field-icon {
  position: absolute;
  left: 10px;
  top: 50%;
  transform: translateY(-50%);
  display: flex;
  align-items: center;
  pointer-events: none;
  z-index: 1;
}

.form-field input,
.form-field select {
  width: 100%;
  font-family: var(--font-body);
  font-size: 12px;
  color: var(--text);
  background: #f8f9fc;
  border: 1px solid #d0d5e8;
  border-radius: 4px;
  padding: 8px 10px 8px 30px;
  outline: none;
  transition: border-color 0.15s;
  appearance: none;
  -webkit-appearance: none;
}

.form-row .form-field:last-child input,
.form-row .form-field:last-child select {
  padding-left: 10px;
}

.form-field input:focus,
.form-field select:focus { border-color: var(--orange); background: white; }

.form-field input::placeholder { color: #9aa0b8; }

.form-field-select { position: relative; }
.form-field-select select { padding-right: 24px; cursor: pointer; }
.select-arrow {
  position: absolute;
  right: 9px;
  top: 50%;
  transform: translateY(-50%) rotate(90deg);
  color: #9aa0b8;
  font-size: 12px;
  pointer-events: none;
}

.form-section-label {
  font-family: var(--font-head);
  font-size: 10.5px;
  font-weight: 700;
  color: var(--orange);
  letter-spacing: 0.8px;
  text-transform: uppercase;
  margin-top: 4px;
  margin-bottom: -1px;
}

.form-checkbox {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  cursor: pointer;
  margin-top: 4px;
}

.form-checkbox input[type="checkbox"] { display: none; }

.checkmark {
  width: 14px;
  height: 14px;
  border: 1.5px solid #c0c5d8;
  border-radius: 3px;
  flex-shrink: 0;
  margin-top: 1px;
  background: white;
  transition: all 0.15s;
}
.form-checkbox input:checked + .checkmark {
  background: var(--orange);
  border-color: var(--orange);
}

.checkbox-label {
  font-size: 10.5px;
  color: var(--text-light);
  line-height: 1.45;
}

.btn-download {
  width: 100%;
  justify-content: center;
  padding: 13px 20px;
  font-size: 14px;
  margin-top: 6px;
  border-radius: 5px;
}

/* Success state after submit â let the message wrap to 2 lines and shrink */
.btn-download.is-success {
  display: block;
  text-align: center;
  white-space: normal;
  font-size: 12.5px !important;
  line-height: 1.35;
  padding: 10px 16px !important;
}

.form-privacy {
  display: flex;
  align-items: center;
  gap: 5px;
  justify-content: center;
  font-size: 10px;
  color: #9aa0b8;
  margin-top: 4px;
}

/* ââââââââââââââââââââââââââââââââââââââââââââââââââââââââââââââââ
   TRUST BAR
ââââââââââââââââââââââââââââââââââââââââââââââââââââââââââââââââ */
.trust-bar {
  position: relative;
  z-index: 1;
  background: var(--navy);
  border-top: 1px solid rgba(242,155,0,0.2);
  padding: 20px 0;
  scroll-margin-top: 80px;
}

.trust-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 var(--section-px);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 14px;
}

.trust-g30-inner {
  flex-direction: row;
  align-items: center;
  gap: 56px;
}

.trust-g30-logo-wrap {
  flex-shrink: 0;
}

.trust-g30-logo {
  width: 260px;
  height: auto;
  filter: brightness(1.1);
}

.trust-g30-content {
  flex: 1;
}

.trust-g30-heading {
  font-family: var(--font-head);
  font-size: clamp(16px, 1.8vw, 22px);
  font-weight: 700;
  color: var(--white);
  margin-bottom: 14px;
  letter-spacing: 0.3px;
}

.trust-g30-body {
  font-family: var(--font-body);
  font-size: 14.5px;
  line-height: 1.75;
  color: rgba(255,255,255,0.80);
}

/* ââââââââââââââââââââââââââââââââââââââââââââââââââââââââââââââââ
   CHALLENGES SECTION
ââââââââââââââââââââââââââââââââââââââââââââââââââââââââââââââââ */
.challenges-section {
  position: relative;
  z-index: 1;
  background: var(--white) url(contour-bg.png) center top / 800px auto repeat;
  padding: 72px 0;
}
.challenges-heading-row {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 24px;
  margin-bottom: 52px;
}
.challenges-heading-row .section-title {
  margin-bottom: 0;
}
.challenges-lion {
  width: 90px;
  height: auto;
  flex-shrink: 0;
}

.section-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 var(--section-px);
}

.section-title {
  font-family: var(--font-head);
  font-size: clamp(14px, 1.6vw, 18px);
  font-weight: 800;
  letter-spacing: 2.5px;
  color: var(--navy);
  margin-bottom: 52px;
}

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

.challenge-card {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  text-align: left;
  padding: 24px 20px;
  border-left: 3px solid var(--orange);
}

.challenge-card-text .challenge-title {
  font-size: 17px;
  margin-bottom: 14px;
}

.challenge-icon {
  margin-bottom: 20px;
}

.challenge-title {
  font-family: var(--font-head);
  font-size: 15px;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 10px;
}

.challenge-body {
  font-family: var(--font-body);
  font-size: 13.5px;
  line-height: 1.6;
  color: var(--text-mid);
  margin-bottom: 14px;
}

.challenge-cta {
  font-family: var(--font-head);
  font-size: 13px;
  font-weight: 700;
  color: var(--orange);
  line-height: 1.4;
}

/* ââââââââââââââââââââââââââââââââââââââââââââââââââââââââââââââââ
   PRODUCT SECTION
ââââââââââââââââââââââââââââââââââââââââââââââââââââââââââââââââ */
.product-section {
  position: relative;
  z-index: 1;
  background: var(--paper) url(contour-bg.png) center top / 800px auto repeat;
  padding: 72px 0;
}

.product-title {
  margin-bottom: 56px;
}

.product-grid {
  display: grid;
  grid-template-columns: minmax(140px,1fr) 130px 130px minmax(140px,1fr) 130px minmax(140px,1fr);
  grid-template-rows: auto;
  gap: 20px;
  align-items: center;
}

.product-app {
  align-self: start;
}

.app-header {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 12px;
}

.app-icon-wrap {
  width: 44px;
  height: 44px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.orange-bg { background: var(--orange); }
.navy-bg { background: var(--navy); }

.app-title {
  font-family: var(--font-head);
  font-size: 13px;
  font-weight: 800;
  color: var(--navy);
  letter-spacing: 1px;
}

.app-body {
  font-family: var(--font-body);
  font-size: 13.5px;
  line-height: 1.65;
  color: var(--text-mid);
}

/* ââ Real phone images (product section) âââââââââââââââââââââââ */
.product-phone-wrap {
  display: flex;
  justify-content: center;
  align-items: center;
}

.product-phone-img {
  width: 130px;
  height: auto;
  display: block;
  filter: drop-shadow(0 12px 28px rgba(6,32,82,0.18));
}

/* ââ Real dashboard image ââââââââââââââââââââââââââââââââââââââ */
.product-dashboard-wrap {
  display: flex;
  align-items: center;
}

.product-dashboard-img {
  width: 100%;
  height: auto;
  display: block;
  filter: drop-shadow(0 8px 32px rgba(6,32,82,0.18));
}

/* UK Map */
.uk-map-wrap {
  grid-column: 6;
  display: flex;
  align-items: center;
  justify-content: center;
}

.uk-map-img {
  width: 160px;
  height: auto;
  filter: drop-shadow(0 4px 12px rgba(6,32,82,0.1));
}

/* Student App row */
.student-app-row {
  grid-column: 1 / -1;
  display: flex;
  align-items: center;
  gap: 48px;
  padding-top: 40px;
  border-top: 1px solid rgba(189,151,84,0.2);
  margin-top: 16px;
}

.student-app-text {
  flex: 1;
  max-width: 480px;
}

.student-app-phone {
  flex-shrink: 0;
}

.student-phone-img {
  width: 180px;
  height: auto;
  display: block;
  filter: drop-shadow(0 8px 32px rgba(6,32,82,0.18));
}

/* ââââââââââââââââââââââââââââââââââââââââââââââââââââââââââââââââ
   PARTNER SECTION
ââââââââââââââââââââââââââââââââââââââââââââââââââââââââââââââââ */
.partner-section {
  position: relative;
  z-index: 1;
  background: var(--navy);
  padding: 72px 0;
  overflow: hidden;
}

.partner-inner {
  display: grid;
  grid-template-columns: 1fr 380px;
  gap: 48px;
  align-items: center;
}

.partner-heading {
  font-family: var(--font-head);
  font-size: clamp(12px, 1.4vw, 16px);
  font-weight: 800;
  letter-spacing: 2.5px;
  color: var(--orange);
  margin-bottom: 40px;
}

.partner-pillars {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 28px;
}

.pillar { display: flex; flex-direction: column; }

.pillar-icon { margin-bottom: 14px; }

.pillar h3 {
  font-family: var(--font-head);
  font-size: 14px;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 8px;
  line-height: 1.3;
}

.pillar p {
  font-family: var(--font-body);
  font-size: 13px;
  line-height: 1.6;
  color: rgba(255,255,255,0.65);
}

.partner-image {
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 16px 48px rgba(0,0,0,0.45);
  flex-shrink: 0;
}

.partner-school-img {
  display: block;
  width: 100%;
  height: 320px;
  object-fit: cover;
  object-position: center 20%;
}

/* ââââââââââââââââââââââââââââââââââââââââââââââââââââââââââââââââ
   TESTIMONIAL + CTA
ââââââââââââââââââââââââââââââââââââââââââââââââââââââââââââââââ */
.testimonial-section {
  position: relative;
  z-index: 1;
  background: var(--paper) url(contour-bg.png) center top / 800px auto repeat;
  padding: 72px 0;
}

.testimonial-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.testimonial-quote-wrap { position: relative; }

.quote-mark {
  font-family: Georgia, serif;
  font-size: 120px;
  color: var(--orange);
  opacity: 0.25;
  line-height: 0.6;
  position: absolute;
  top: -20px;
  left: -20px;
}

.testimonial-text {
  font-family: var(--font-body);
  font-size: 17px;
  font-style: italic;
  line-height: 1.75;
  color: var(--text);
  padding-left: 12px;
  padding-top: 24px;
  border-left: 4px solid var(--orange);
  margin-bottom: 24px;
}

.testimonial-attribution {
  font-family: var(--font-body);
  font-size: 14px;
  line-height: 1.6;
  color: var(--text-mid);
  padding-left: 16px;
}

.cta-join-wrap { text-align: center; }

.cta-join-title {
  font-family: var(--font-head);
  font-size: clamp(22px, 2.8vw, 34px);
  font-weight: 800;
  color: var(--navy);
  line-height: 1.2;
  margin-bottom: 28px;
}

.btn-cta-large {
  font-size: 16px;
  padding: 16px 36px;
  border-radius: 6px;
  margin-bottom: 28px;
}

.cta-trust-icons {
  display: flex;
  justify-content: center;
  gap: 28px;
  flex-wrap: wrap;
}

.cti {
  display: flex;
  align-items: center;
  gap: 6px;
  font-family: var(--font-body);
  font-size: 12px;
  color: var(--text-mid);
}

/* ââââââââââââââââââââââââââââââââââââââââââââââââââââââââââââââââ
   DEMO FORM SECTION
ââââââââââââââââââââââââââââââââââââââââââââââââââââââââââââââââ */
.demo-section {
  position: relative;
  z-index: 1;
  background: var(--navy);
  padding: 72px 0;
  scroll-margin-top: 68px;
}
.demo-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: url(hero-globe.jpg);
  background-size: cover;
  background-position: center;
  opacity: 0.15;
  z-index: 0;
}

.demo-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
  position: relative;
  z-index: 1;
}

.demo-title {
  font-family: var(--font-head);
  font-size: clamp(26px, 3.2vw, 40px);
  font-weight: 800;
  color: var(--white);
  line-height: 1.2;
  margin-bottom: 18px;
}

.demo-subtitle {
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.65;
  color: rgba(255,255,255,0.82);
  margin-bottom: 28px;
}

.demo-points {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.demo-points li {
  display: flex;
  align-items: center;
  gap: 12px;
  font-family: var(--font-body);
  font-size: 15px;
  color: var(--white);
}

.demo-points svg { flex-shrink: 0; }

.demo-form-wrap { display: flex; justify-content: center; }

.demo-form-card {
  max-width: 440px;
  width: 100%;
  max-height: none;
  overflow-y: visible;
  padding: 28px 28px 24px;
}

@media (max-width: 1100px) {
  .demo-inner {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .demo-intro { text-align: center; }
  .demo-points { align-items: center; }
}

/* ââââââââââââââââââââââââââââââââââââââââââââââââââââââââââââââââ
   FOOTER
ââââââââââââââââââââââââââââââââââââââââââââââââââââââââââââââââ */
.site-footer {
  position: relative;
  z-index: 1;
  background: #0e1a3a;
  border-top: 3px solid rgba(242,155,0,0.25);
}

.footer-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 56px var(--section-px) 40px;
  display: grid;
  grid-template-columns: 220px 200px 150px 150px 150px 130px;
  gap: 32px;
}

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

.footer-logo-name { color: var(--white) !important; font-size: 20px !important; }
.footer-logo-tagline { color: var(--orange) !important; }

.footer-brand-desc {
  font-family: var(--font-body);
  font-size: 12.5px;
  line-height: 1.65;
  color: rgba(255,255,255,0.55);
  margin-top: 14px;
}

.footer-col-title {
  font-family: var(--font-head);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 1.8px;
  color: var(--orange);
  margin-bottom: 16px;
}

.footer-contact-name {
  font-family: var(--font-head);
  font-size: 13px;
  color: var(--white);
  margin-bottom: 2px;
}

.footer-contact-role {
  font-family: var(--font-body);
  font-size: 11.5px;
  color: rgba(255,255,255,0.5);
  margin-bottom: 10px;
}

.footer-contact-item {
  display: flex;
  align-items: center;
  gap: 7px;
  font-family: var(--font-body);
  font-size: 12px;
  color: rgba(255,255,255,0.65);
  margin-bottom: 6px;
}
.footer-contact-item svg { opacity: 0.6; flex-shrink: 0; }

.footer-contact-item a {
  color: inherit;
  text-decoration: none;
}
.footer-contact-item a:hover { color: var(--gold); }

.footer-links {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.footer-links a {
  font-family: var(--font-body);
  font-size: 12.5px;
  color: rgba(255,255,255,0.6);
  text-decoration: none;
  transition: color 0.15s;
}
.footer-links a:hover { color: var(--orange); }

.footer-contact-person {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 12px;
}

.footer-headshot {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid rgba(242,155,0,0.4);
  flex-shrink: 0;
}

.footer-g30 {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  gap: 12px;
  padding-top: 2px;
}

.footer-g30-text {
  font-family: var(--font-body);
  font-size: 11px;
  line-height: 1.55;
  color: rgba(255,255,255,0.5);
  text-align: center;
}

.footer-g30-img {
  width: 80px;
  height: auto;
  filter: brightness(1.05);
}

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.08);
  padding: 16px var(--section-px);
  text-align: center;
}

.footer-bottom p {
  font-family: var(--font-body);
  font-size: 11.5px;
  color: rgba(255,255,255,0.35);
}

/* ââ Field error state âââââââââââââââââââââââââââââââââââââââââ */
.field-error {
  border-color: #e04040 !important;
  background: #fff5f5 !important;
}

/* ââ Section fade-in animation âââââââââââââââââââââââââââââââââ */
.challenges-section,
.product-section,
.partner-section,
.testimonial-section {
  opacity: 1;
  transform: translateY(0);
  transition: opacity 0.55s ease, transform 0.55s ease;
}
.anim-ready .challenges-section,
.anim-ready .product-section,
.anim-ready .partner-section,
.anim-ready .testimonial-section {
  opacity: 0;
  transform: translateY(18px);
}
.anim-ready .challenges-section.visible,
.anim-ready .product-section.visible,
.anim-ready .partner-section.visible,
.anim-ready .testimonial-section.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ââ Mobile nav open state âââââââââââââââââââââââââââââââââââââ */
@media (max-width: 900px) {
  .nav-links.nav-open {
    display: flex;
    flex-direction: column;
    position: absolute;
    top: 68px;
    left: 0;
    right: 0;
    background: var(--navy);
    padding: 16px 20px 20px;
    border-bottom: 1px solid rgba(255,255,255,0.1);
    z-index: 999;
    gap: 4px;
  }
  .nav-links.nav-open a {
    padding: 10px 12px;
    font-size: 15px;
  }
}

/* ââââââââââââââââââââââââââââââââââââââââââââââââââââââââââââââââ
   RESPONSIVE â TABLET (â¤ 1024px)
ââââââââââââââââââââââââââââââââââââââââââââââââââââââââââââââââ */
@media (max-width: 1100px) {
  .hero-inner {
    grid-template-columns: 1fr 380px;
    grid-template-rows: auto auto;
    gap: 24px;
    align-items: start;
  }

  .hero-devices {
    width: 44%;
    transform: translateX(-30%);
    max-width: 420px;
  }

  .hero-form-wrap {
    grid-column: 2;
    grid-row: 1 / 3;
    position: static;
  }

  .form-card { max-width: 100%; }

  .challenges-grid { grid-template-columns: repeat(2, 1fr); }
  .trust-g30-inner { flex-direction: column; gap: 32px; text-align: center; }

  .product-grid {
    grid-template-columns: 1fr 140px 140px 1fr;
    grid-template-rows: auto auto auto;
  }

  .product-dashboard-wrap { grid-column: 1 / 3; }
  .uk-map-wrap { grid-column: 3 / 5; }

  .partner-inner { grid-template-columns: 1fr; }
  .partner-pillars { grid-template-columns: repeat(2, 1fr); }
  .partner-image { max-width: 500px; margin: 0 auto; }

  .testimonial-inner { grid-template-columns: 1fr; gap: 48px; }

  .footer-inner {
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
  }
  .footer-brand { grid-column: 1 / -1; }
}

/* ââââââââââââââââââââââââââââââââââââââââââââââââââââââââââââââââ
   RESPONSIVE â MOBILE (â¤ 768px)
ââââââââââââââââââââââââââââââââââââââââââââââââââââââââââââââââ */
@media (max-width: 900px) {
  .nav-links, .nav-cta { display: none; }

  .hero {
    height: auto;
    min-height: 100vh;
    overflow: visible;
  }
  .hero-inner {
    grid-template-columns: 1fr;
    padding: 32px 20px 48px;
    height: auto;
  }
  .hero-content { padding-bottom: 24px; }
  .hero-form-wrap {
    grid-column: 1;
    grid-row: auto;
    width: 100%;
    max-width: 480px;
    margin: 0 auto;
  }
  .form-card {
    max-height: none;
    overflow-y: visible;
  }
  .hero-devices { display: none; }

  .challenges-grid { grid-template-columns: 1fr; gap: 24px; }

  .product-grid {
    grid-template-columns: 1fr 1fr;
    grid-template-rows: auto;
  }
  .product-app { grid-column: 1 / -1; }
  .product-phone-mockup { display: none; }
  .product-dashboard-wrap { grid-column: 1 / -1; }
  .uk-map-wrap { display: none; }

  .partner-pillars { grid-template-columns: 1fr 1fr; gap: 20px; }

  .footer-inner {
    grid-template-columns: 1fr 1fr;
    gap: 24px;
  }
  .footer-brand, .footer-g30 { grid-column: 1 / -1; }
}

@media (max-width: 480px) {
  .partner-pillars { grid-template-columns: 1fr; }
  .footer-inner { grid-template-columns: 1fr; }
  .trust-items { flex-direction: column; gap: 20px; }
  .trust-divider { display: none; }
  /* Stack the two-column form rows so fields aren't cramped on phones. */
  .form-row { flex-direction: column; gap: 12px; }
}


