:root{
  --bg: #ffffff;
  --ink: #0b1b2e;
  --muted: #5b6b7c;
  --line: #e7edf5;

  --primary: #0a8a5a;   /* green call button */
  --primary-ink: #ffffff;

  --blue: #0b73c9;      /* request help button */
  --blue-ink: #ffffff;

  --mint: #dff7ea;
  --mint-ink: #0a6b45;

  --card: #ffffff;
  --card-muted: #f6f9fc;

  --shadow: 0 16px 40px rgba(15, 23, 42, .10);
  --shadow-soft: 0 10px 24px rgba(15, 23, 42, .08);

  --radius: 18px;
  --radius-lg: 24px;
  --container: 1160px;
}

*{ box-sizing:border-box; }
html,body{ height:100%; }
body{
  margin:0;
  font-family: Inter, system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  color: var(--ink);
  background: var(--bg);
  line-height: 1.6;
}

img{ max-width:100%; display:block; }
a{ color:inherit; text-decoration:none; }
p{ margin: 0 0 14px; }

.skip-link{
  position:absolute; left:-999px; top:auto;
  width:1px; height:1px; overflow:hidden;
}
.skip-link:focus{
  left:16px; top:16px; width:auto; height:auto;
  background:#fff; padding:10px 12px; border-radius:10px;
  box-shadow: var(--shadow-soft); z-index: 9999;
}

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

.site-header{
  position: sticky;
  top: 0;
  background: rgba(255,255,255,.86);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(231,237,245,.75);
  z-index: 50;
}

.header-inner{
  display:flex;
  align-items:center;
  justify-content:space-between;
  padding: 14px 0;
  gap: 18px;
}

.brand{
  display:flex;
  align-items:center;
  gap: 10px;
  font-weight: 800;
  letter-spacing: -0.02em;
}
.brand-mark{
  width: 34px; height: 34px;
  border-radius: 11px;
  background: radial-gradient(circle at 30% 30%, #41d69f 0%, #0a8a5a 45%, #0a1c33 100%);
  box-shadow: 0 10px 18px rgba(10,138,90,.22);
}
.brand-name{ font-size: 15px; }

.nav{
  display:flex;
  align-items:center;
  gap: 14px;
}
.nav a{
  color: var(--muted);
  font-weight: 600;
  font-size: 14px;
}
.nav a:hover{ color: var(--ink); }

.menu-btn{
  display:none;
  width: 44px; height: 44px;
  border: 1px solid var(--line);
  background:#fff;
  border-radius: 12px;
  align-items:center;
  justify-content:center;
  gap: 4px;
  box-shadow: 0 10px 20px rgba(15,23,42,.06);
}
.menu-btn span{
  width: 18px; height: 2px;
  background: #22324a;
  display:block;
  border-radius: 2px;
}

.mobile-nav{
  padding: 10px 0 18px;
  border-top: 1px solid var(--line);
}
.mobile-nav a{
  display:block;
  padding: 10px 0;
  color: var(--muted);
  font-weight: 600;
}
.mobile-nav a.btn{ margin-top: 8px; text-align:center; }

.btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  gap: 10px;
  padding: 12px 16px;
  border-radius: 14px;
  font-weight: 700;
  font-size: 14px;
  border: 1px solid transparent;
  transition: transform .08s ease, box-shadow .15s ease, background .15s ease;
  white-space: nowrap;
}
.btn:active{ transform: translateY(1px); }

.btn-primary{
  background: var(--primary);
  color: var(--primary-ink);
  box-shadow: 0 14px 30px rgba(10,138,90,.22);
}
.btn-primary:hover{ box-shadow: 0 18px 36px rgba(10,138,90,.26); }

.btn-outline{
  background: #fff;
  border-color: #cfd9e6;
  color: #1b2a41;
  box-shadow: 0 10px 18px rgba(15,23,42,.06);
}
.btn-outline:hover{
  box-shadow: 0 14px 26px rgba(15,23,42,.08);
}

.btn-blue{
  background: var(--blue);
  color: var(--blue-ink);
  box-shadow: 0 16px 30px rgba(11,115,201,.20);
}
.btn-blue:hover{ box-shadow: 0 18px 34px rgba(11,115,201,.24); }

.btn-full{ width: 100%; }
.btn-large{ padding: 14px 18px; border-radius: 16px; font-size: 16px; }

.icon{ width: 18px; height: 18px; display:inline-block; }
.icon::before{ content:""; display:block; width:100%; height:100%; background-size:contain; background-repeat:no-repeat; background-position:center; }

/* Simple inline SVG icons (data URIs) */
.i-phone::before{ background-image:url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23ffffff' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M22 16.9v3a2 2 0 0 1-2.2 2 19.8 19.8 0 0 1-8.6-3 19.5 19.5 0 0 1-6-6A19.8 19.8 0 0 1 2.1 4.3 2 2 0 0 1 4.1 2h3a2 2 0 0 1 2 1.7c.1 1 .3 2 .6 2.9a2 2 0 0 1-.5 2.1L8 10a16 16 0 0 0 6 6l1.3-1.2a2 2 0 0 1 2.1-.5c.9.3 1.9.5 2.9.6A2 2 0 0 1 22 16.9z'/%3E%3C/svg%3E"); }
.btn-outline .i-chat::before{ background-image:url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%231b2a41' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M21 15a4 4 0 0 1-4 4H8l-5 3V7a4 4 0 0 1 4-4h10a4 4 0 0 1 4 4z'/%3E%3C/svg%3E"); }

.i-clock::before{ background-image:url(\"data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%230b73c9' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Ccircle cx='12' cy='12' r='9'/%3E%3Cpath d='M12 7v6l4 2'/%3E%3C/svg%3E\"); }
.i-shield::before{ background-image:url(\"data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%230b73c9' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M12 22s8-4 8-10V5l-8-3-8 3v7c0 6 8 10 8 10z'/%3E%3Cpath d='M9 12l2 2 4-4'/%3E%3C/svg%3E\"); }
.i-calendar::before{ background-image:url(\"data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%230b73c9' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Crect x='3' y='4' width='18' height='18' rx='2'/%3E%3Cpath d='M16 2v4M8 2v4M3 10h18'/%3E%3C/svg%3E\"); }
.i-pin::before{ background-image:url(\"data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%230b73c9' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M12 21s7-4.4 7-11a7 7 0 0 0-14 0c0 6.6 7 11 7 11z'/%3E%3Ccircle cx='12' cy='10' r='2'/%3E%3C/svg%3E\"); }

.i-alert::before{ background-image:url(\"data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%230a6b45' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Ccircle cx='12' cy='12' r='9'/%3E%3Cpath d='M12 8v5M12 16h.01'/%3E%3C/svg%3E\"); }
.i-heartbeat::before{ background-image:url(\"data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%230a6b45' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M3 12h4l2-6 4 12 2-6h6'/%3E%3C/svg%3E\"); }
.i-brain::before{ background-image:url(\"data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%230a6b45' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M8 7a3 3 0 0 1 3-3h1a3 3 0 0 1 3 3v1a3 3 0 0 1 3 3v4a3 3 0 0 1-3 3'/%3E%3Cpath d='M8 7v12a3 3 0 0 0 3 3'/%3E%3C/svg%3E\"); }
.i-users::before{ background-image:url(\"data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%230a6b45' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M17 21v-2a4 4 0 0 0-4-4H5a4 4 0 0 0-4 4v2'/%3E%3Ccircle cx='9' cy='7' r='3'/%3E%3Cpath d='M23 21v-2a4 4 0 0 0-3-3.87'/%3E%3Cpath d='M16 3.13a3 3 0 0 1 0 5.74'/%3E%3C/svg%3E\"); }

.i-coffee::before{ background-image:url(\"data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%230b73c9' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M17 8h1a4 4 0 0 1 0 8h-1'/%3E%3Cpath d='M3 8h14v9a4 4 0 0 1-4 4H7a4 4 0 0 1-4-4V8z'/%3E%3Cpath d='M6 1v3M10 1v3M14 1v3'/%3E%3C/svg%3E\"); }
.i-hands::before{ background-image:url(\"data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%230b73c9' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M12 21c-3.3 0-6-2.7-6-6V9a2 2 0 0 1 4 0v3'/%3E%3Cpath d='M10 12V6a2 2 0 0 1 4 0v6'/%3E%3Cpath d='M14 12V8a2 2 0 0 1 4 0v7a6 6 0 0 1-6 6z'/%3E%3C/svg%3E\"); }
.i-chef::before{ background-image:url(\"data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%230b73c9' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M6 14h12v7H6z'/%3E%3Cpath d='M8 14V9a4 4 0 0 1 8 0v5'/%3E%3Cpath d='M9 3h6'/%3E%3C/svg%3E\"); }

.i-phone-lg::before{ background-image:url(\"data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%230b73c9' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M22 16.9v3a2 2 0 0 1-2.2 2 19.8 19.8 0 0 1-8.6-3 19.5 19.5 0 0 1-6-6A19.8 19.8 0 0 1 2.1 4.3 2 2 0 0 1 4.1 2h3a2 2 0 0 1 2 1.7c.1 1 .3 2 .6 2.9a2 2 0 0 1-.5 2.1L8 10a16 16 0 0 0 6 6l1.3-1.2a2 2 0 0 1 2.1-.5c.9.3 1.9.5 2.9.6A2 2 0 0 1 22 16.9z'/%3E%3C/svg%3E\"); }
.i-checkuser::before{ background-image:url(\"data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%230b73c9' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M20 21v-2a4 4 0 0 0-3-3.87'/%3E%3Cpath d='M4 21v-2a4 4 0 0 1 4-4h3'/%3E%3Ccircle cx='9' cy='7' r='3'/%3E%3Cpath d='M16 11l2 2 4-4'/%3E%3C/svg%3E\"); }
.i-calendar-lg::before{ background-image:url(\"data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%230b73c9' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Crect x='3' y='4' width='18' height='18' rx='2'/%3E%3Cpath d='M16 2v4M8 2v4M3 10h18'/%3E%3C/svg%3E\"); }

.i-home::before{ background-image:url(\"data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%230a6b45' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M3 11l9-8 9 8v10a2 2 0 0 1-2 2H5a2 2 0 0 1-2-2V11z'/%3E%3Cpath d='M9 22V12h6v10'/%3E%3C/svg%3E\"); }
.i-heart::before{ background-image:url(\"data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%230a6b45' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M20.8 4.6a5.5 5.5 0 0 0-7.8 0L12 5.6l-1-1a5.5 5.5 0 0 0-7.8 7.8l1 1L12 21l7.8-7.6 1-1a5.5 5.5 0 0 0 0-7.8z'/%3E%3C/svg%3E\"); }
.i-usergroup::before{ background-image:url(\"data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%230a6b45' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M17 21v-2a4 4 0 0 0-4-4H5a4 4 0 0 0-4 4v2'/%3E%3Ccircle cx='9' cy='7' r='3'/%3E%3Cpath d='M23 21v-2a4 4 0 0 0-3-3.87'/%3E%3Cpath d='M16 3.13a3 3 0 0 1 0 5.74'/%3E%3C/svg%3E\"); }
.i-spark::before{ background-image:url(\"data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%230a6b45' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M12 2l1.5 5L19 9l-5 2 1.5 5L12 13l-3.5 3 1.5-5-5-2 5.5-2L12 2z'/%3E%3C/svg%3E\"); }

/* Footer icons */
.i-phone-sm::before{ background-image:url(\"data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23cfe0ff' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M22 16.9v3a2 2 0 0 1-2.2 2 19.8 19.8 0 0 1-8.6-3 19.5 19.5 0 0 1-6-6A19.8 19.8 0 0 1 2.1 4.3 2 2 0 0 1 4.1 2h3a2 2 0 0 1 2 1.7c.1 1 .3 2 .6 2.9a2 2 0 0 1-.5 2.1L8 10a16 16 0 0 0 6 6l1.3-1.2a2 2 0 0 1 2.1-.5c.9.3 1.9.5 2.9.6A2 2 0 0 1 22 16.9z'/%3E%3C/svg%3E\"); }
.i-mail::before{ background-image:url(\"data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23cfe0ff' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M4 4h16v16H4z'/%3E%3Cpath d='M22 6l-10 7L2 6'/%3E%3C/svg%3E\"); }
.i-pin-sm::before{ background-image:url(\"data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23cfe0ff' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M12 21s7-4.4 7-11a7 7 0 0 0-14 0c0 6.6 7 11 7 11z'/%3E%3Ccircle cx='12' cy='10' r='2'/%3E%3C/svg%3E\"); }

/* HERO */
.hero{
  padding: 54px 0 28px;
}
.hero-grid{
  display:grid;
  grid-template-columns: 1.05fr .95fr;
  gap: 42px;
  align-items:center;
}
.hero-copy h1{
  margin: 0 0 14px;
  font-size: clamp(38px, 4vw, 56px);
  line-height: 1.06;
  letter-spacing: -0.03em;
}
.hero-sub{
  margin: 0 0 22px;
  color: var(--muted);
  font-size: 18px;
}
.hero-cta{
  display:flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-bottom: 18px;
}
.hero-foot{
  color: var(--muted);
  font-size: 14px;
  margin-top: 6px;
}

.hero-photo{
  border-radius: var(--radius-lg);
  overflow:hidden;
  background: #dbe7f6;
  box-shadow: var(--shadow);
}
.hero-photo img{
  width:100%;
  height: 360px;
  object-fit: cover;
}

/* SECTIONS */
.section{ padding: 78px 0; }
.section-tight{ padding: 40px 0 70px; }
.section-muted{ background: #f6f9fc; }
.section-head{
  text-align:center;
  margin-bottom: 34px;
}
.section-head h2{
  margin: 0 0 10px;
  font-size: clamp(34px, 3.2vw, 52px);
  letter-spacing: -0.03em;
  line-height: 1.08;
}
.section-head p{
  margin: 0 auto;
  max-width: 780px;
  color: var(--muted);
  font-size: 18px;
}

/* FEATURES ROW */
.feature-row{
  display:grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  text-align:center;
  align-items:start;
}
.feature-icon{
  width: 56px; height: 56px;
  margin: 0 auto 14px;
  border-radius: 999px;
  background: #dff0ff;
  display:flex;
  align-items:center;
  justify-content:center;
}
.feature h3{
  margin: 0 0 8px;
  font-size: 18px;
  letter-spacing: -0.01em;
}
.feature p{
  margin: 0 auto;
  max-width: 240px;
  color: var(--muted);
  font-size: 15px;
}

/* CARDS */
.grid-2{
  display:grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 22px;
}
.cards .card{
  display:flex;
  gap: 16px;
  align-items:flex-start;
  padding: 22px;
  border-radius: var(--radius);
  background: var(--card);
  border: 1px solid var(--line);
  box-shadow: var(--shadow-soft);
}
.card h3{ margin: 2px 0 6px; font-size: 18px; }
.card p{ margin: 0; color: var(--muted); }

.card-badge{
  width: 44px; height: 44px;
  border-radius: 12px;
  display:flex;
  align-items:center;
  justify-content:center;
  flex: 0 0 auto;
}
.badge-mint{ background: var(--mint); }
.badge-mint .icon{ width: 22px; height: 22px; }

.center-note{
  text-align:center;
  margin-top: 18px;
  color: var(--muted);
}

/* SERVICES */
.notice-pill{
  display:inline-block;
  margin-top: 18px;
  padding: 12px 14px;
  border-radius: 12px;
  background: #fff7d1;
  border: 1px solid #f2d37d;
  color: #7a4a00;
  font-size: 14px;
}
.grid-3{
  display:grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}
.service-card{
  background: #f8fbff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow-soft);
  padding: 26px;
}
.service-icon{
  width: 54px; height: 54px;
  border-radius: 16px;
  background: #dff0ff;
  display:flex;
  align-items:center;
  justify-content:center;
  margin-bottom: 12px;
}
.service-card h3{
  margin: 10px 0 8px;
  font-size: 20px;
  letter-spacing: -0.02em;
}
.service-card p{ color: var(--muted); margin:0; }

/* STEPS */
.steps{
  display:grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  text-align:center;
  align-items:start;
}
.step{
  padding: 18px 10px 0;
}
.step-number{
  width: 84px; height: 84px;
  border-radius: 999px;
  background: var(--primary);
  color: #fff;
  display:flex;
  align-items:center;
  justify-content:center;
  font-size: 26px;
  font-weight: 800;
  margin: 0 auto 16px;
  box-shadow: 0 18px 38px rgba(10,138,90,.25);
}
.step-icon{
  width: 46px; height: 46px;
  margin: 0 auto 12px;
}
.step-icon .icon{ width: 46px; height: 46px; }
.step h3{ margin: 0 0 8px; font-size: 18px; }
.step p{ margin: 0 auto; max-width: 320px; color: var(--muted); }

/* SPLIT SECTION */
.split{
  display:grid;
  grid-template-columns: 1.02fr .98fr;
  gap: 42px;
  align-items:center;
}
.split-media img{
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
  width: 100%;
  height: 360px;
  object-fit: cover;
}
.split-copy h2{
  margin: 0 0 10px;
  font-size: clamp(32px, 3vw, 48px);
  letter-spacing: -0.03em;
  line-height: 1.08;
}
.split-copy p{ color: var(--muted); font-size: 18px; }

.icon-list{
  list-style:none;
  padding: 0;
  margin: 20px 0 0;
  display:flex;
  flex-direction:column;
  gap: 16px;
}
.icon-list li{
  display:flex;
  gap: 14px;
  align-items:flex-start;
}
.list-icon{
  width: 46px; height: 46px;
  border-radius: 14px;
  background: var(--mint);
  display:flex;
  align-items:center;
  justify-content:center;
  flex: 0 0 auto;
}
.list-icon .icon{ width: 22px; height: 22px; }
.icon-list strong{ display:block; font-size: 18px; margin-bottom: 2px; }
.icon-list span{ color: var(--muted); }

/* FAQ */
.faq{ max-width: 820px; margin: 0 auto; display:flex; flex-direction:column; gap: 14px; }
.faq-item{
  border-radius: var(--radius);
  background: #fff;
  border: 1px solid var(--line);
  box-shadow: var(--shadow-soft);
  padding: 6px 18px;
}
.faq-item summary{
  list-style:none;
  cursor:pointer;
  padding: 16px 8px;
  font-weight: 700;
  font-size: 16px;
  color: var(--ink);
  display:flex;
  justify-content:space-between;
  align-items:center;
}
.faq-item summary::-webkit-details-marker{ display:none; }
.faq-item summary::after{
  content:"▾";
  color: #6b7b8f;
  font-size: 16px;
}
.faq-item[open] summary::after{ content:"▴"; }
.faq-body{
  padding: 0 8px 16px;
  color: var(--muted);
}

/* CONTACT */
.contact-grid{
  display:grid;
  grid-template-columns: 1.05fr .95fr;
  gap: 36px;
  align-items:start;
}
.contact-copy h2{
  margin: 0 0 12px;
  font-size: clamp(34px, 3.2vw, 50px);
  letter-spacing: -0.03em;
  line-height: 1.1;
}
.contact-emph{ margin-top: 18px; }

.callout{
  margin-top: 18px;
  background: #e8fbf1;
  border: 2px solid #bfeedd;
  border-radius: var(--radius-lg);
  padding: 22px;
}
.callout-label{ margin: 0 0 12px; color: #0a3e2d; font-weight: 700; }
.callout-note{ margin: 12px 0 0; color: #2c5b4a; font-size: 14px; }

.card-form{
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
  padding: 26px;
}
.card-form h3{ margin: 0 0 6px; font-size: 24px; letter-spacing: -0.02em; }
.card-form .muted{ color: var(--muted); margin-bottom: 16px; }
.req{ color: #d04444; font-weight: 800; }
.fineprint{ color: #73849a; font-size: 12px; margin-top: 12px; }

label{ display:block; font-weight: 700; font-size: 13px; color: #2a3a52; margin: 14px 0 8px; }
input, textarea{
  width:100%;
  padding: 14px 14px;
  border-radius: 14px;
  border: 1px solid #cfd9e6;
  outline: none;
  font: inherit;
  background: #fff;
  box-shadow: 0 8px 18px rgba(15,23,42,.05);
}
textarea{ resize: vertical; min-height: 120px; }
input:focus, textarea:focus{ border-color: rgba(11,115,201,.55); box-shadow: 0 10px 24px rgba(11,115,201,.12); }

/* FOOTER */
.site-footer{
  margin-top: 60px;
  padding: 52px 0 34px;
  background: radial-gradient(circle at 30% 0%, #122a55 0%, #0a1c33 55%, #071529 100%);
  color: #d9e6ff;
}
.footer-top{
  display:grid;
  grid-template-columns: 1.2fr .9fr 1fr;
  gap: 28px;
  padding-bottom: 26px;
  border-bottom: 1px solid rgba(255,255,255,.12);
}
.site-footer h4{
  margin: 0 0 10px;
  color: #ffffff;
  letter-spacing: -0.01em;
}
.site-footer p{ color: rgba(217,230,255,.78); }
.footer-list{
  list-style:none; padding:0; margin:0;
  display:flex; flex-direction:column; gap: 10px;
}
.footer-list li{
  display:flex; gap: 10px; align-items:center;
  color: rgba(217,230,255,.85);
}
.footer-list a{ text-decoration: underline; text-underline-offset: 3px; }
.footer-list .icon{ width: 18px; height: 18px; }

.areas{ line-height: 1.9; }

.footer-disclaimer{ padding-top: 22px; }
.disclaimer-card{
  background: rgba(255,255,255,.07);
  border: 1px solid rgba(255,255,255,.10);
  border-radius: var(--radius-lg);
  padding: 18px 18px;
  color: rgba(217,230,255,.78);
  box-shadow: 0 18px 40px rgba(0,0,0,.25);
}
.disclaimer-card strong{ color: #fff; }

.copyright{
  margin-top: 14px;
  text-align:center;
  color: rgba(217,230,255,.62);
  font-size: 13px;
}

/* RESPONSIVE */
@media (max-width: 980px){
  .nav{ display:none; }
  .menu-btn{ display:flex; }
  .hero-grid{ grid-template-columns: 1fr; }
  .hero-photo img{ height: 320px; }
  .feature-row{ grid-template-columns: repeat(2, 1fr); }
  .grid-2{ grid-template-columns: 1fr; }
  .grid-3{ grid-template-columns: 1fr; }
  .steps{ grid-template-columns: 1fr; }
  .split{ grid-template-columns: 1fr; }
  .split-media img{ height: 320px; }
  .contact-grid{ grid-template-columns: 1fr; }
  .footer-top{ grid-template-columns: 1fr; }
}

@media (max-width: 520px){
  .container{ width: min(var(--container), calc(100% - 32px)); }
  .btn{ width: 100%; }
  .hero-cta{ gap: 10px; }
}
