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

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

:root {
  --navy:       #0A2647;
  --navy-light: #0D3261;
  --orange:     #F97316;
  --orange-dark:#EA580C;
  --white:      #ffffff;
  --off-white:  #F8F9FB;
  --border:     #E4E7ED;
  --text:       #1A202C;
  --muted:      #64748B;
  --font:       'Inter', system-ui, sans-serif;
  --nav-h:      64px;
  --max:        1100px;
  --radius:     10px;
}

html { scroll-behavior: smooth; }
body { font-family: var(--font); color: var(--text); background: #fff; line-height: 1.6; -webkit-font-smoothing: antialiased; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }
img { display: block; max-width: 100%; }

/* ── NAV ── */
.nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  height: var(--nav-h); background: var(--navy);
}
.nav-inner {
  max-width: var(--max); margin: 0 auto; padding: 0 24px;
  height: 100%; display: flex; align-items: center; gap: 32px;
}
.nav-logo {
  font-size: 1.05rem; font-weight: 800; color: #fff; letter-spacing: -0.01em; flex-shrink: 0;
}
.nav-logo span { color: var(--orange); }
.nav-links { display: flex; gap: 2px; flex: 1; }
.nav-links a {
  font-size: 0.875rem; font-weight: 500; color: rgba(255,255,255,0.75);
  padding: 7px 14px; border-radius: 6px; transition: all 0.15s;
}
.nav-links a:hover, .nav-links a.active { color: #fff; background: rgba(255,255,255,0.1); }
.nav-btn {
  margin-left: auto; background: var(--orange); color: #fff;
  font-size: 0.85rem; font-weight: 700; padding: 8px 18px;
  border-radius: 8px; transition: background 0.15s; white-space: nowrap;
}
.nav-btn:hover { background: var(--orange-dark); }
.nav-hamburger {
  display: none; background: none; border: none; cursor: pointer; padding: 4px; margin-left: auto;
}
.nav-hamburger span { display: block; width: 22px; height: 2px; background: #fff; margin: 5px 0; border-radius: 2px; transition: 0.3s; }

/* ── MOBILE DRAWER ── */
.nav-drawer {
  position: fixed; top: var(--nav-h); left: 0; right: 0; bottom: 0;
  background: var(--navy); z-index: 99; padding: 20px 24px;
  display: flex; flex-direction: column; gap: 6px;
  transform: translateX(100%); transition: transform 0.28s ease;
}
.nav-drawer.open { transform: translateX(0); }
.nav-drawer a { color: rgba(255,255,255,0.85); font-size: 1.05rem; font-weight: 500; padding: 13px 16px; border-radius: 8px; transition: all 0.15s; }
.nav-drawer a:hover { background: rgba(255,255,255,0.1); color: #fff; }
.nav-drawer .drawer-btn { background: var(--orange); color: #fff; text-align: center; font-weight: 700; margin-top: 8px; }

/* ── HERO ── */
.hero {
  background: var(--navy);
  padding: calc(var(--nav-h) + 72px) 24px 80px;
  text-align: center;
}
.hero-eyebrow {
  display: inline-flex; align-items: center; gap: 7px;
  background: rgba(249,115,22,0.15); border: 1px solid rgba(249,115,22,0.3);
  color: var(--orange); font-size: 0.75rem; font-weight: 700;
  letter-spacing: 0.1em; text-transform: uppercase;
  padding: 5px 14px; border-radius: 999px; margin-bottom: 22px;
}
.hero h1 {
  font-size: clamp(2.2rem, 5vw, 3.4rem); font-weight: 800;
  color: #fff; line-height: 1.15; letter-spacing: -0.03em;
  max-width: 720px; margin: 0 auto 18px;
}
.hero h1 span { color: var(--orange); }
.hero p {
  font-size: 1.05rem; color: rgba(255,255,255,0.72);
  max-width: 520px; margin: 0 auto 36px; line-height: 1.75;
}
.hero-actions { display: flex; gap: 12px; justify-content: center; flex-wrap: wrap; }

/* ── BUTTONS ── */
.btn {
  display: inline-flex; align-items: center; gap: 8px;
  font-family: var(--font); font-weight: 700; border-radius: 8px;
  cursor: pointer; border: 2px solid transparent; transition: all 0.18s;
}
.btn-orange { background: var(--orange); color: #fff; border-color: var(--orange); }
.btn-orange:hover { background: var(--orange-dark); border-color: var(--orange-dark); transform: translateY(-1px); }
.btn-white-outline { background: transparent; color: #fff; border-color: rgba(255,255,255,0.4); }
.btn-white-outline:hover { border-color: #fff; background: rgba(255,255,255,0.08); }
.btn-navy { background: var(--navy); color: #fff; border-color: var(--navy); }
.btn-navy:hover { background: var(--navy-light); }
.btn-lg { padding: 14px 28px; font-size: 1rem; }
.btn-md { padding: 11px 22px; font-size: 0.9rem; }
.btn-sm { padding: 8px 16px; font-size: 0.825rem; }

/* ── SECTIONS ── */
.section { padding: 80px 0; }
.container { max-width: var(--max); margin: 0 auto; padding: 0 24px; }
.section-tag {
  display: inline-block; font-size: 0.72rem; font-weight: 700;
  letter-spacing: 0.1em; text-transform: uppercase;
  color: var(--orange); margin-bottom: 10px;
}
.section-title {
  font-size: clamp(1.7rem, 3vw, 2.3rem); font-weight: 800;
  color: var(--navy); letter-spacing: -0.025em; line-height: 1.2;
  margin-bottom: 12px;
}
.section-sub { color: var(--muted); font-size: 1rem; line-height: 1.75; max-width: 560px; }
.section-header { margin-bottom: 52px; }
.centered { text-align: center; }
.centered .section-sub { margin: 0 auto; }
.bg-off { background: var(--off-white); }

/* ── FEATURE GRID (3-up) ── */
.feat-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.feat-card {
  background: #fff; border: 1px solid var(--border); border-radius: var(--radius);
  padding: 28px 24px; transition: box-shadow 0.2s, transform 0.2s;
}
.feat-card:hover { box-shadow: 0 6px 24px rgba(10,38,71,0.09); transform: translateY(-2px); }
.feat-icon {
  width: 44px; height: 44px; border-radius: 10px;
  background: rgba(249,115,22,0.1); color: var(--orange);
  display: flex; align-items: center; justify-content: center; margin-bottom: 16px;
}
.feat-card h3 { font-size: 0.975rem; font-weight: 700; color: var(--navy); margin-bottom: 6px; }
.feat-card p { font-size: 0.875rem; color: var(--muted); line-height: 1.7; }

/* ── PRICING CARD ── */
.price-card {
  max-width: 480px; margin: 0 auto;
  background: var(--navy); border-radius: 16px;
  padding: 44px; color: #fff; text-align: center;
}
.price-card .tag { color: rgba(255,255,255,0.5); font-size: 0.75rem; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; margin-bottom: 10px; }
.price-big { font-size: 3.8rem; font-weight: 800; color: var(--orange); line-height: 1; letter-spacing: -0.03em; }
.price-big sub { font-size: 1.2rem; font-weight: 500; color: rgba(255,255,255,0.5); vertical-align: baseline; }
.price-desc { color: rgba(255,255,255,0.6); font-size: 0.9rem; margin: 10px 0 32px; }
.price-list { text-align: left; margin-bottom: 32px; }
.price-list li {
  display: flex; align-items: center; gap: 10px;
  font-size: 0.875rem; color: rgba(255,255,255,0.82);
  padding: 9px 0; border-bottom: 1px solid rgba(255,255,255,0.08);
}
.price-list li:last-child { border: none; }
.price-list svg { color: var(--orange); flex-shrink: 0; }

/* ── CTA STRIP ── */
.cta-strip {
  background: var(--orange); padding: 60px 24px; text-align: center;
}
.cta-strip h2 { font-size: clamp(1.6rem, 3vw, 2.2rem); font-weight: 800; color: #fff; letter-spacing: -0.025em; margin-bottom: 12px; }
.cta-strip p { color: rgba(255,255,255,0.85); font-size: 1rem; margin-bottom: 28px; max-width: 480px; margin-left: auto; margin-right: auto; }
.btn-white { background: #fff; color: var(--orange); border: 2px solid #fff; font-weight: 700; }
.btn-white:hover { background: var(--off-white); }

/* ── PAGE HEADER ── */
.page-header {
  background: var(--navy);
  padding: calc(var(--nav-h) + 52px) 24px 52px;
  text-align: center;
}
.page-header h1 { font-size: clamp(1.9rem, 4vw, 2.8rem); font-weight: 800; color: #fff; letter-spacing: -0.03em; margin-bottom: 10px; }
.page-header p { color: rgba(255,255,255,0.68); font-size: 1rem; max-width: 500px; margin: 0 auto; }

/* ── ABOUT ── */
.story-block { max-width: 680px; }
.story-block p { color: var(--muted); font-size: 0.975rem; line-height: 1.85; margin-bottom: 16px; }
.values-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 14px; margin-top: 32px; }
.value-card {
  background: var(--off-white); border-radius: var(--radius); padding: 20px;
  display: flex; gap: 12px;
}
.v-icon { font-size: 1.3rem; flex-shrink: 0; }
.value-card h4 { font-size: 0.875rem; font-weight: 700; color: var(--navy); margin-bottom: 3px; }
.value-card p { font-size: 0.825rem; color: var(--muted); line-height: 1.6; }
.about-photo {
  width: 100%; border-radius: 14px;
  object-fit: cover; height: 380px;
}
.about-split { display: grid; grid-template-columns: 1fr 1fr; gap: 56px; align-items: start; }

/* ── CONTACT ── */
.contact-split { display: grid; grid-template-columns: 1fr 1.6fr; gap: 48px; align-items: start; }
.contact-aside h2 { font-size: 1.5rem; font-weight: 800; color: var(--navy); letter-spacing: -0.02em; margin-bottom: 10px; }
.contact-aside p { color: var(--muted); font-size: 0.9rem; line-height: 1.75; margin-bottom: 28px; }
.c-detail { display: flex; gap: 12px; align-items: flex-start; margin-bottom: 18px; }
.c-icon {
  width: 38px; height: 38px; background: rgba(249,115,22,0.1); border-radius: 8px;
  display: flex; align-items: center; justify-content: center; color: var(--orange); flex-shrink: 0;
}
.c-detail strong { display: block; font-size: 0.75rem; font-weight: 700; letter-spacing: 0.06em; text-transform: uppercase; color: var(--muted); margin-bottom: 2px; }
.c-detail span { font-size: 0.95rem; color: var(--text); }
.price-reminder { background: var(--off-white); border-radius: var(--radius); padding: 20px; margin-top: 8px; }
.price-reminder .label { font-size: 0.72rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.08em; color: var(--muted); margin-bottom: 12px; }
.pr-row { display: flex; justify-content: space-between; padding: 8px 0; border-bottom: 1px solid var(--border); font-size: 0.875rem; }
.pr-row:last-child { border: none; }
.pr-row .name { color: var(--text); font-weight: 500; }
.pr-row .price { color: var(--navy); font-weight: 700; }

/* ── FORM ── */
.form-card {
  background: #fff; border: 1px solid var(--border); border-radius: 14px; padding: 36px;
  box-shadow: 0 4px 20px rgba(10,38,71,0.07);
}
.form-card h3 { font-size: 1.1rem; font-weight: 800; color: var(--navy); margin-bottom: 4px; }
.form-card .sub { font-size: 0.85rem; color: var(--muted); margin-bottom: 24px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.form-group { margin-bottom: 16px; }
.form-group label { display: block; font-size: 0.8rem; font-weight: 600; color: var(--text); margin-bottom: 5px; }
.form-group input, .form-group select, .form-group textarea {
  width: 100%; padding: 10px 13px; border: 1.5px solid var(--border);
  border-radius: 7px; font-family: var(--font); font-size: 0.875rem;
  color: var(--text); background: #fff; outline: none; transition: border-color 0.15s;
}
.form-group input:focus, .form-group select:focus, .form-group textarea:focus {
  border-color: var(--orange); box-shadow: 0 0 0 3px rgba(249,115,22,0.1);
}
.form-group textarea { resize: vertical; min-height: 100px; }
.submit-btn { width: 100%; padding: 13px; font-size: 0.95rem; border: none; border-radius: 8px; cursor: pointer; }
.form-success {
  display: none; text-align: center; padding: 28px;
  background: #f0fdf4; border-radius: 10px; color: #166534; font-size: 0.95rem;
}
.form-success.show { display: block; }
.form-success strong { display: block; font-size: 1.05rem; margin-bottom: 6px; }

/* ── FOOTER ── */
.footer { background: var(--navy); }
.footer-inner {
  max-width: var(--max); margin: 0 auto; padding: 48px 24px 28px;
  display: grid; grid-template-columns: 1.4fr 1fr 1fr; gap: 40px;
}
.footer-logo { font-size: 1.05rem; font-weight: 800; color: #fff; margin-bottom: 10px; }
.footer-logo span { color: var(--orange); }
.footer-tagline { font-size: 0.85rem; color: rgba(255,255,255,0.5); line-height: 1.7; max-width: 260px; }
.footer h4 { font-size: 0.72rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.1em; color: rgba(255,255,255,0.4); margin-bottom: 14px; }
.footer ul li { margin-bottom: 9px; }
.footer ul li a { font-size: 0.85rem; color: rgba(255,255,255,0.6); transition: color 0.15s; }
.footer ul li a:hover { color: #fff; }
.footer ul li span { font-size: 0.85rem; color: rgba(255,255,255,0.6); }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.08);
  max-width: var(--max); margin: 0 auto; padding: 18px 24px;
  display: flex; justify-content: space-between; align-items: center;
  font-size: 0.78rem; color: rgba(255,255,255,0.35);
}

/* ── RESPONSIVE ── */
@media (max-width: 860px) {
  .nav-links, .nav-btn { display: none; }
  .nav-hamburger { display: block; }
  .feat-grid { grid-template-columns: 1fr; }
  .about-split { grid-template-columns: 1fr; }
  .contact-split { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .footer-inner { grid-template-columns: 1fr; gap: 28px; }
  .footer-bottom { flex-direction: column; gap: 6px; text-align: center; }
  .values-grid { grid-template-columns: 1fr; }
}
@media (max-width: 520px) {
  .hero-actions { flex-direction: column; align-items: center; }
  .hero-actions .btn { width: 100%; justify-content: center; }
  .price-card { padding: 32px 24px; }
  .form-card { padding: 24px 18px; }
}
