@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:wght@400;600&family=Inter:wght@300;400;500;600&display=swap');
@import url('https://cdn.jsdelivr.net/npm/@tabler/icons-webfont@latest/tabler-icons.min.css');

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

:root {
  --blue: #185FA5;
  --blue-dark: #0C447C;
  --blue-light: #E6F1FB;
  --blue-mid: #B5D4F4;
  --teal-light: #E1F5EE;
  --teal-dark: #085041;
  --amber-light: #FAEEDA;
  --amber-dark: #633806;
  --purple-light: #EEEDFE;
  --purple-dark: #3C3489;
  --coral-light: #FAECE7;
  --coral-dark: #712B13;
  --green-light: #EAF3DE;
  --green-dark: #27500A;
  --gold: #BA7517;
  --text: #1a1a1a;
  --text-muted: #6b7280;
  --border: rgba(0,0,0,0.1);
  --border-strong: rgba(0,0,0,0.2);
  --bg: #ffffff;
  --bg-secondary: #f8f8f6;
  --radius-md: 8px;
  --radius-lg: 12px;
}

body {
  font-family: 'Inter', sans-serif;
  color: var(--text);
  background: var(--bg);
  line-height: 1.6;
  font-size: 15px;
}

.site { max-width: 960px; margin: 0 auto; }

/* NAV */
nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.1rem 2rem;
  border-bottom: 0.5px solid var(--border);
  background: var(--bg);
  position: sticky;
  top: 0;
  z-index: 100;
}
.nav-logo { font-family: 'Playfair Display', serif; font-size: 18px; font-weight: 600; text-decoration: none; color: var(--text); }
.nav-logo span { color: var(--blue); }
.nav-links { display: flex; gap: 1.8rem; list-style: none; }
.nav-links a { text-decoration: none; font-size: 13px; font-weight: 500; color: var(--text-muted); transition: color 0.15s; }
.nav-links a:hover, .nav-links a.active { color: var(--text); }
.nav-pill { background: var(--blue-light); color: var(--blue-dark); font-size: 11px; font-weight: 600; padding: 5px 13px; border-radius: 100px; letter-spacing: 0.3px; }

/* BUTTONS */
.btn { display: inline-block; padding: 10px 20px; border-radius: var(--radius-md); font-size: 13px; font-weight: 500; cursor: pointer; text-decoration: none; border: none; transition: background 0.15s; }
.btn-primary { background: var(--blue); color: #fff; }
.btn-primary:hover { background: var(--blue-dark); }
.btn-outline { background: transparent; color: var(--blue); border: 0.5px solid var(--blue); }
.btn-outline:hover { background: var(--blue-light); }
.btn-lg { padding: 13px 28px; font-size: 15px; font-weight: 600; }
.btn-white { background: #fff; color: var(--blue); }
.btn-white:hover { background: var(--blue-light); }

/* PAGE TABS */
.page-tabs { display: flex; border-bottom: 0.5px solid var(--border); background: var(--bg-secondary); }
.tab-link { padding: 0.9rem 1.5rem; font-size: 13px; font-weight: 500; text-decoration: none; color: var(--text-muted); border-bottom: 2px solid transparent; display: inline-block; }
.tab-link:hover { color: var(--text); }
.tab-link.active { color: var(--blue); border-bottom-color: var(--blue); }

/* HERO */
.hero { padding: 4rem 2rem 3rem; border-bottom: 0.5px solid var(--border); }
.hero.centered { text-align: center; }
.hero.centered .hero-sub { margin-left: auto; margin-right: auto; }
.eyebrow { font-size: 11px; font-weight: 600; letter-spacing: 0.9px; text-transform: uppercase; color: var(--blue); margin-bottom: 0.8rem; }
.hero h1 { font-family: 'Playfair Display', serif; font-size: 38px; line-height: 1.18; font-weight: 600; letter-spacing: -0.5px; margin-bottom: 1rem; max-width: 640px; }
.hero h1 em { font-style: normal; color: var(--blue); }
.hero-sub { font-size: 15px; color: var(--text-muted); line-height: 1.75; max-width: 580px; margin-bottom: 2rem; }
.hero-actions { display: flex; gap: 12px; flex-wrap: wrap; margin-bottom: 2.5rem; }
.hero-cta-note { font-size: 12px; color: var(--text-muted); margin-top: 0.75rem; }

/* METRICS */
.metrics-row { display: grid; grid-template-columns: repeat(4, 1fr); gap: 12px; }
.metric { background: var(--bg-secondary); border-radius: var(--radius-md); padding: 1rem; text-align: center; }
.metric-num { font-family: 'Playfair Display', serif; font-size: 26px; font-weight: 600; color: var(--blue); }
.metric-label { font-size: 11px; color: var(--text-muted); margin-top: 4px; line-height: 1.4; }

/* TRUST BAR */
.trust-bar { padding: 1rem 2rem; border-bottom: 0.5px solid var(--border); display: flex; gap: 2rem; align-items: center; flex-wrap: wrap; justify-content: center; background: var(--bg-secondary); }
.trust-item { display: flex; align-items: center; gap: 7px; font-size: 12px; color: var(--text-muted); }
.trust-item i { color: var(--blue); font-size: 15px; }

/* SECTIONS */
section { padding: 3.2rem 2rem; border-bottom: 0.5px solid var(--border); }
.section-bg { background: var(--bg-secondary); }
.sec-eye { font-size: 11px; font-weight: 600; letter-spacing: 0.8px; text-transform: uppercase; color: var(--blue); margin-bottom: 0.5rem; }
.sec-title { font-family: 'Playfair Display', serif; font-size: 26px; font-weight: 600; line-height: 1.25; letter-spacing: -0.3px; margin-bottom: 0.7rem; }
.sec-sub { font-size: 14px; color: var(--text-muted); line-height: 1.75; max-width: 580px; margin-bottom: 2rem; }

/* CARDS */
.grid-2 { display: grid; grid-template-columns: repeat(2, 1fr); gap: 14px; }
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 14px; }
.grid-4 { display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); gap: 14px; }
.card { background: var(--bg); border: 0.5px solid var(--border); border-radius: var(--radius-lg); padding: 1.25rem; }
.card:hover { border-color: var(--border-strong); }
.card-icon { width: 38px; height: 38px; border-radius: var(--radius-md); background: var(--blue-light); display: flex; align-items: center; justify-content: center; margin-bottom: 1rem; }
.card-icon i { color: var(--blue); font-size: 19px; }
.card h3 { font-size: 14px; font-weight: 600; margin-bottom: 0.5rem; }
.card p { font-size: 13px; color: var(--text-muted); line-height: 1.65; }
.card-featured { border: 2px solid var(--blue-mid); }

/* PILLS / TAGS */
.pill { display: inline-block; font-size: 10px; font-weight: 600; padding: 3px 9px; border-radius: 100px; letter-spacing: 0.3px; margin-bottom: 0.7rem; }
.pill-blue { background: var(--blue-light); color: var(--blue-dark); }
.pill-green { background: var(--green-light); color: var(--green-dark); }
.pill-amber { background: var(--amber-light); color: var(--amber-dark); }
.pill-teal { background: var(--teal-light); color: var(--teal-dark); }
.pill-purple { background: var(--purple-light); color: var(--purple-dark); }
.pill-coral { background: var(--coral-light); color: var(--coral-dark); }

/* STAR RATING */
.stars { color: var(--gold); font-size: 13px; margin-bottom: 0.7rem; letter-spacing: 1px; }

/* TESTIMONIALS */
.tcard { background: var(--bg-secondary); border: 0.5px solid var(--border); border-radius: var(--radius-lg); padding: 1.25rem; }
.tcard blockquote { font-size: 13px; color: var(--text-muted); line-height: 1.65; margin-bottom: 1rem; font-style: italic; }
.tcard-author { font-size: 12px; font-weight: 600; }
.tcard-role { font-size: 11px; color: var(--text-muted); }

/* HIGHLIGHT BANNER */
.highlight-banner { background: var(--blue-light); border: 0.5px solid var(--blue-mid); border-radius: var(--radius-lg); padding: 1.4rem 1.6rem; display: flex; align-items: flex-start; gap: 14px; }
.highlight-banner > i { color: var(--blue); font-size: 22px; flex-shrink: 0; margin-top: 2px; }
.highlight-banner h4 { font-size: 14px; font-weight: 600; color: var(--blue-dark); margin-bottom: 0.4rem; }
.highlight-banner p { font-size: 13px; color: var(--blue); line-height: 1.65; }

/* NETWORK SECTION */
.network-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 3rem; align-items: center; }
.network-bullets { list-style: none; display: flex; flex-direction: column; gap: 10px; margin-top: 1rem; }
.network-bullets li { display: flex; align-items: flex-start; gap: 10px; font-size: 13px; line-height: 1.55; }
.network-bullets li i { color: var(--blue); font-size: 16px; margin-top: 1px; flex-shrink: 0; }
.stat-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; }
.stat-card { background: var(--bg); border: 0.5px solid var(--border); border-radius: var(--radius-lg); padding: 1.1rem; text-align: center; }
.stat-num { font-family: 'Playfair Display', serif; font-size: 28px; font-weight: 600; color: var(--blue); }
.stat-label { font-size: 11px; color: var(--text-muted); margin-top: 4px; line-height: 1.4; }

/* PORTAL STEPS */
.portal-steps { display: grid; grid-template-columns: repeat(5, 1fr); gap: 0; border: 0.5px solid var(--border); border-radius: var(--radius-lg); overflow: hidden; margin-bottom: 1.5rem; }
.pstep { padding: 1.1rem; border-right: 0.5px solid var(--border); }
.pstep:last-child { border-right: none; }
.pstep-num { font-size: 10px; font-weight: 600; color: var(--blue); letter-spacing: 0.5px; margin-bottom: 0.5rem; }
.pstep h4 { font-size: 12px; font-weight: 600; margin-bottom: 0.35rem; }
.pstep p { font-size: 11px; color: var(--text-muted); line-height: 1.5; margin-bottom: 0.5rem; }

/* TIMELINE STEPS */
.timeline { display: flex; flex-direction: column; }
.timeline-row { display: grid; grid-template-columns: 52px 1fr; align-items: stretch; }
.timeline-left { display: flex; flex-direction: column; align-items: center; }
.timeline-circle { width: 36px; height: 36px; border-radius: 50%; background: var(--blue); color: #fff; font-size: 13px; font-weight: 600; display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.timeline-line { flex: 1; width: 2px; background: var(--border); margin: 4px 0; }
.timeline-row:last-child .timeline-line { display: none; }
.timeline-body { padding: 0 0 2rem 1rem; }
.timeline-body h3 { font-size: 15px; font-weight: 600; margin-bottom: 0.45rem; margin-top: 6px; }
.timeline-body p { font-size: 13px; color: var(--text-muted); line-height: 1.7; }
.timeline-detail { background: var(--bg-secondary); border: 0.5px solid var(--border); border-radius: var(--radius-md); padding: 1rem 1.1rem; margin-top: 0.8rem; font-size: 12px; color: var(--text-muted); line-height: 1.65; }
.timeline-detail strong { color: var(--text); font-weight: 600; }

/* FAQ */
.faq-item { border-bottom: 0.5px solid var(--border); padding: 1.1rem 0; }
.faq-item:last-child { border-bottom: none; }
.faq-q { font-size: 14px; font-weight: 600; margin-bottom: 0.5rem; display: flex; align-items: center; gap: 10px; }
.faq-q i { color: var(--blue); font-size: 15px; flex-shrink: 0; }
.faq-a { font-size: 13px; color: var(--text-muted); line-height: 1.7; padding-left: 25px; }
.faq-a a { color: var(--blue); font-weight: 600; text-decoration: none; }

/* ORDER FORM */
.order-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 2.5rem; align-items: start; }
.order-info h2 { font-family: 'Playfair Display', serif; font-size: 22px; font-weight: 600; margin-bottom: 0.7rem; }
.order-info p { font-size: 13px; color: var(--text-muted); line-height: 1.75; margin-bottom: 1.2rem; }
.contact-row { display: flex; align-items: center; gap: 10px; margin-bottom: 0.8rem; font-size: 13px; }
.contact-row i { color: var(--blue); font-size: 16px; width: 18px; }
.contact-row span { color: var(--text-muted); }
.contact-row strong { color: var(--text); }
.form { display: flex; flex-direction: column; gap: 10px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; }
.field { display: flex; flex-direction: column; gap: 3px; }
.field label { font-size: 10px; font-weight: 600; color: var(--text-muted); letter-spacing: 0.4px; text-transform: uppercase; }
.form input, .form select, .form textarea { width: 100%; padding: 9px 12px; border: 0.5px solid var(--border-strong); border-radius: var(--radius-md); background: var(--bg); color: var(--text); font-size: 13px; font-family: 'Inter', sans-serif; outline: none; }
.form input:focus, .form select:focus, .form textarea:focus { border-color: var(--blue); }
.form textarea { resize: vertical; min-height: 80px; }
.form .btn { width: 100%; padding: 12px; font-size: 14px; text-align: center; }

/* CTA SECTION */
.cta-section { background: var(--blue); padding: 3.5rem 2rem; text-align: center; }
.cta-section h2 { font-family: 'Playfair Display', serif; font-size: 28px; font-weight: 600; color: #fff; margin-bottom: 0.8rem; letter-spacing: -0.3px; }
.cta-section p { font-size: 14px; color: var(--blue-mid); line-height: 1.7; max-width: 500px; margin: 0 auto 2rem; }
.cta-note { font-size: 12px; color: #85B7EB; margin-top: 1rem; }
.cta-note a { color: #fff; font-weight: 600; text-decoration: none; }

/* FOOTER */
footer { padding: 2.5rem 2rem; display: grid; grid-template-columns: 2fr 1fr 1fr; gap: 2rem; background: var(--bg-secondary); border-top: 0.5px solid var(--border); }
.footer-brand { font-family: 'Playfair Display', serif; font-size: 16px; font-weight: 600; margin-bottom: 0.5rem; }
.footer-brand span { color: var(--blue); }
.footer-desc { font-size: 12px; color: var(--text-muted); line-height: 1.7; }
.footer-col h4 { font-size: 10px; font-weight: 600; letter-spacing: 0.6px; text-transform: uppercase; margin-bottom: 0.8rem; color: var(--text-muted); }
.footer-col a { display: block; font-size: 12px; color: var(--text-muted); text-decoration: none; margin-bottom: 0.45rem; }
.footer-col a:hover { color: var(--text); }
.footer-bottom { padding: 1rem 2rem; border-top: 0.5px solid var(--border); font-size: 11px; color: var(--text-muted); text-align: center; background: var(--bg-secondary); }

/* SERVICE LIST */
.svc-list { list-style: none; margin-top: 0.8rem; }
.svc-list li { font-size: 12px; color: var(--text-muted); padding: 3px 0; display: flex; align-items: center; gap: 6px; }
.svc-list li::before { content: ''; width: 4px; height: 4px; border-radius: 50%; background: var(--blue); flex-shrink: 0; }

/* MOBILE */
@media (max-width: 680px) {
  .hero h1 { font-size: 28px; }
  .metrics-row, .grid-2, .grid-3, .network-grid, .order-grid { grid-template-columns: 1fr; }
  .portal-steps { grid-template-columns: 1fr 1fr; }
  nav { padding: 1rem; }
  .nav-links { display: none; }
  section, .hero { padding: 2.5rem 1rem; }
  footer { grid-template-columns: 1fr; }
}
