*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
:root {
  --navy: #1e3a5f;
  --navy-dark: #152b47;
  --teal: #2a9d6e;
  --teal-light: #3bbd88;
  --text: #1a202c;
  --muted: #64748b;
  --bg: #ffffff;
  --bg-muted: #f8fafc;
  --border: #e2e8f0;
  --radius: 12px;
}
body { font-family: 'DM Sans', sans-serif; color: var(--text); background: var(--bg); line-height: 1.6; }
a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }

/* NAV */
header { position: sticky; top: 0; z-index: 100; background: rgba(255,255,255,.96); backdrop-filter: blur(8px); border-bottom: 1px solid var(--border); }
.nav-inner { max-width: 1100px; margin: 0 auto; padding: 0 24px; height: 64px; display: flex; align-items: center; justify-content: space-between; }
.logo { display: flex; align-items: center; gap: 10px; font-family: 'Raleway', sans-serif; font-weight: 800; font-size: 1.2rem; color: var(--navy); letter-spacing: -.02em; }
.logo span { color: var(--teal); }
nav a { font-size: .9rem; font-weight: 500; color: var(--text); margin-left: 28px; transition: color .2s; }
nav a:hover { color: var(--navy); }
.nav-cta { background: var(--navy); color: #fff !important; padding: 8px 20px; border-radius: 8px; }
.nav-cta:hover { background: var(--navy-dark) !important; }

/* HERO */
.hero { background: var(--navy); color: #fff; padding: 72px 24px; }
.hero-inner { max-width: 1100px; margin: 0 auto; display: grid; grid-template-columns: 1fr 1fr; gap: 56px; align-items: center; }
.hero-badge { display: inline-block; border: 1px solid rgba(255,255,255,.25); background: rgba(255,255,255,.1); border-radius: 999px; padding: 4px 14px; font-size: .75rem; font-weight: 600; letter-spacing: .05em; margin-bottom: 20px; }
.hero h1 { font-family: 'Raleway', sans-serif; font-size: clamp(2rem, 4vw, 3.2rem); font-weight: 800; line-height: 1.15; margin-bottom: 20px; }
.hero p { font-size: 1.1rem; color: rgba(255,255,255,.8); max-width: 520px; margin-bottom: 32px; }
.btn-row { display: flex; gap: 12px; flex-wrap: wrap; margin-bottom: 24px; }
.btn { display: inline-flex; align-items: center; justify-content: center; gap: 8px; padding: 14px 28px; border-radius: 10px; font-weight: 600; font-size: 1rem; cursor: pointer; border: none; transition: all .2s; text-decoration: none; }
.btn-primary { background: #2a5298; color: #fff; }
.btn-primary:hover { background: #3462b8; }
.btn-outline-white { background: transparent; color: #fff; border: 2px solid rgba(255,255,255,.7); }
.btn-outline-white:hover { background: rgba(255,255,255,.1); }
.btn-navy { background: var(--navy); color: #fff; }
.btn-navy:hover { background: var(--navy-dark); }
.btn-outline { background: transparent; color: var(--navy); border: 2px solid var(--navy); }
.btn-outline:hover { background: var(--navy); color: #fff; }
.hero-tags { display: flex; gap: 20px; font-size: .875rem; color: rgba(255,255,255,.75); }
.hero-tags span { display: flex; align-items: center; gap: 6px; }
.hero-img { background: #fff; border-radius: 16px; padding: 8px; box-shadow: 0 24px 64px rgba(0,0,0,.3); }
.hero-img img { border-radius: 10px; width: 100%; }

/* TRUST STRIP */
.trust-strip { background: var(--bg-muted); border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); padding: 36px 24px; }
.trust-inner { max-width: 1100px; margin: 0 auto; display: grid; grid-template-columns: repeat(4,1fr); gap: 24px; }
.trust-item { display: flex; flex-direction: column; align-items: center; text-align: center; gap: 8px; }
.trust-icon { width: 48px; height: 48px; color: var(--navy); }
.trust-item h3 { font-weight: 700; font-size: .9rem; }
.trust-item p { font-size: .8rem; color: var(--muted); }

/* PACKAGE */
.section { padding: 80px 24px; }
.section-alt { background: var(--bg-muted); }
.container { max-width: 1100px; margin: 0 auto; }
.container-sm { max-width: 760px; margin: 0 auto; }
.product-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 56px; align-items: start; }
.product-img { border-radius: 16px; overflow: hidden; background: var(--bg-muted); border: 1px solid var(--border); }
.product-img img { width: 100%; }
.price-row { display: flex; align-items: center; gap: 16px; margin: 16px 0; }
.price { font-size: 2.4rem; font-weight: 800; color: var(--text); }
.badge { background: rgba(42,157,110,.1); color: var(--teal); border-radius: 999px; padding: 4px 14px; font-size: .82rem; font-weight: 600; }
.select-pkg { width: 100%; padding: 14px 16px; border: 1px solid var(--border); border-radius: 10px; font-size: 1rem; font-family: inherit; margin-bottom: 12px; background: #fff; appearance: none; background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='20' height='20' viewBox='0 0 24 24' fill='none' stroke='%2364748b' stroke-width='2'%3E%3Cpath d='m6 9 6 6 6-6'/%3E%3C/svg%3E"); background-repeat: no-repeat; background-position: right 12px center; }
.btn-full { width: 100%; margin-bottom: 10px; padding: 16px; font-size: 1.05rem; }
.divider-icons { display: flex; justify-content: center; gap: 24px; padding: 16px 0; border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); margin: 12px 0; font-size: .85rem; color: var(--muted); }
.divider-icons span { display: flex; align-items: center; gap: 6px; }
.included-box { background: var(--bg-muted); border-radius: 12px; padding: 24px; margin-top: 12px; }
.included-box h4 { font-weight: 700; margin-bottom: 16px; }
.included-box li { list-style: none; display: flex; align-items: flex-start; gap: 10px; font-size: .9rem; margin-bottom: 10px; }
.check { color: var(--teal); flex-shrink: 0; margin-top: 2px; }

/* STEPS */
.steps-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 24px; max-width: 900px; margin: 0 auto; }
.step-card { background: #fff; border: 1px solid var(--border); border-radius: 16px; padding: 32px 24px; text-align: center; }
.step-num { width: 56px; height: 56px; border-radius: 50%; background: var(--navy); color: #fff; font-size: 1.4rem; font-weight: 800; display: flex; align-items: center; justify-content: center; margin: 0 auto 16px; }
.step-card h3 { font-weight: 700; font-size: 1.05rem; margin-bottom: 8px; }
.step-card p { font-size: .88rem; color: var(--muted); }

/* REVIEWS */
.reviews-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 24px; }
.review-card { background: #fff; border: 1px solid var(--border); border-radius: 12px; padding: 24px; display: flex; flex-direction: column; }
.stars { color: var(--teal); font-size: 1rem; letter-spacing: 2px; margin-bottom: 12px; }
.review-card blockquote { font-size: .9rem; color: var(--muted); font-style: italic; line-height: 1.7; flex: 1; }
.review-card cite { font-weight: 700; font-size: .88rem; margin-top: 16px; display: block; font-style: normal; }
.rating-summary { text-align: center; margin-bottom: 40px; }
.rating-summary .big-stars { font-size: 1.6rem; color: var(--teal); letter-spacing: 4px; }
.rating-summary p { font-size: 1.1rem; font-weight: 600; margin-top: 8px; }

/* FAQ */
.faq-item { border-bottom: 1px solid var(--border); }
.faq-q { width: 100%; text-align: left; font-family: inherit; font-size: 1rem; font-weight: 600; padding: 20px 0; background: none; border: none; cursor: pointer; display: flex; justify-content: space-between; align-items: center; gap: 12px; }
.faq-q:hover { color: var(--navy); }
.faq-a { padding: 0 0 20px; color: var(--muted); font-size: .93rem; line-height: 1.7; display: none; }
.faq-a.open { display: block; }
.faq-arrow { transition: transform .3s; flex-shrink: 0; }
.faq-arrow.open { transform: rotate(180deg); }

/* FOOTER */
footer { background: var(--navy); color: rgba(255,255,255,.9); padding: 64px 24px 32px; }
.footer-inner { max-width: 1100px; margin: 0 auto; }
.footer-grid { display: grid; grid-template-columns: 1.5fr 1fr 1fr; gap: 48px; margin-bottom: 48px; }
.footer-logo { font-family: 'Raleway', sans-serif; font-weight: 800; font-size: 1.15rem; color: #fff; margin-bottom: 12px; display: flex; align-items: center; gap: 8px; }
.footer-logo span { color: #6ee7b7; }
.footer-desc { font-size: .88rem; color: rgba(255,255,255,.65); margin-bottom: 16px; }
.contact-line { font-size: .85rem; color: rgba(255,255,255,.7); display: flex; align-items: flex-start; gap: 8px; margin-bottom: 8px; }
.contact-line a:hover { color: #fff; }
footer h4 { font-weight: 700; font-size: .9rem; margin-bottom: 16px; color: #fff; }
footer ul { list-style: none; }
footer ul li { margin-bottom: 8px; }
footer ul li a { font-size: .88rem; color: rgba(255,255,255,.65); transition: color .2s; }
footer ul li a:hover { color: #fff; }
.footer-bottom { border-top: 1px solid rgba(255,255,255,.15); padding-top: 24px; font-size: .78rem; color: rgba(255,255,255,.45); }
.footer-bottom p { margin-bottom: 6px; }

/* CONTACT PAGE */
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 56px; align-items: start; }
.info-card { background: #fff; border: 1px solid var(--border); border-radius: 12px; padding: 20px 24px; display: flex; align-items: flex-start; gap: 16px; margin-bottom: 12px; }
.info-icon { width: 40px; height: 40px; background: rgba(30,58,95,.08); border-radius: 50%; display: flex; align-items: center; justify-content: center; flex-shrink: 0; color: var(--navy); }
.info-card h3 { font-weight: 700; font-size: .92rem; margin-bottom: 4px; }
.info-card p, .info-card a { font-size: .875rem; color: var(--muted); }
.info-card a:hover { color: var(--navy); }
.form-card { background: #fff; border: 1px solid var(--border); border-radius: 16px; padding: 36px; }
.form-card h2 { font-weight: 700; font-size: 1.3rem; margin-bottom: 6px; }
.form-card .sub { font-size: .9rem; color: var(--muted); margin-bottom: 24px; }
label { display: block; font-weight: 600; font-size: .88rem; margin-bottom: 6px; color: var(--text); }
input, textarea, select { width: 100%; padding: 11px 14px; border: 1px solid var(--border); border-radius: 8px; font-family: inherit; font-size: .95rem; margin-bottom: 16px; transition: border .2s; background: #fff; }
input:focus, textarea:focus, select:focus { outline: none; border-color: var(--navy); }
textarea { resize: vertical; min-height: 120px; }
.map-wrap { border-radius: 12px; overflow: hidden; border: 1px solid var(--border); margin-top: 16px; }

/* CHECKOUT */
.checkout-grid { display: grid; grid-template-columns: 1fr 380px; gap: 40px; align-items: start; }
.checkout-card { background: #fff; border: 1px solid var(--border); border-radius: 16px; padding: 32px; margin-bottom: 24px; }
.checkout-card h2 { font-weight: 700; font-size: 1.15rem; margin-bottom: 20px; padding-bottom: 12px; border-bottom: 1px solid var(--border); }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.order-summary { background: #fff; border: 1px solid var(--border); border-radius: 16px; padding: 28px; position: sticky; top: 80px; }
.order-summary h3 { font-weight: 700; font-size: 1rem; margin-bottom: 20px; }
.order-item { display: flex; gap: 16px; margin-bottom: 20px; }
.order-item img { width: 72px; height: 72px; object-fit: cover; border-radius: 8px; }
.order-item-info h4 { font-weight: 600; font-size: .92rem; }
.order-item-info p { font-size: .82rem; color: var(--muted); margin: 2px 0 6px; }
.order-item-info .price { font-size: 1rem; font-weight: 700; }
.order-totals { border-top: 1px solid var(--border); padding-top: 16px; font-size: .9rem; }
.order-totals .row { display: flex; justify-content: space-between; margin-bottom: 8px; color: var(--muted); }
.order-totals .total { display: flex; justify-content: space-between; font-weight: 800; font-size: 1.1rem; color: var(--text); margin-top: 12px; padding-top: 12px; border-top: 1px solid var(--border); }
.trust-items { margin-top: 20px; font-size: .82rem; color: var(--muted); }
.trust-items div { display: flex; align-items: center; gap: 8px; margin-bottom: 8px; }
.payment-tabs { display: flex; gap: 0; border: 1px solid var(--border); border-radius: 10px; overflow: hidden; margin-bottom: 20px; }
.tab-btn { flex: 1; padding: 12px; background: #fff; border: none; font-family: inherit; font-weight: 600; font-size: .9rem; cursor: pointer; transition: all .2s; border-right: 1px solid var(--border); }
.tab-btn:last-child { border-right: none; }
.tab-btn.active { background: var(--navy); color: #fff; }
.payment-panel { display: none; }
.payment-panel.active { display: block; }
.stripe-notice { background: #f0f9f5; border: 1px solid #a7f3d0; border-radius: 8px; padding: 14px 16px; font-size: .85rem; color: #065f46; }

/* PROSE */
.prose h2 { font-size: 1.15rem; font-weight: 700; margin: 32px 0 10px; }
.prose p { color: var(--muted); margin-bottom: 12px; line-height: 1.8; }
.prose ul { padding-left: 20px; color: var(--muted); margin-bottom: 12px; }
.prose ul li { margin-bottom: 6px; line-height: 1.7; }
.prose a { color: var(--navy); text-decoration: underline; }
.page-header { margin-bottom: 40px; }
.page-header h1 { font-size: 2.4rem; font-weight: 800; margin-bottom: 6px; }
.page-header .date { font-size: .85rem; color: var(--muted); }

/* SECTION HEADING */
.section-heading { text-align: center; margin-bottom: 48px; }
.section-heading h2 { font-family: 'Raleway', sans-serif; font-size: clamp(1.6rem, 3vw, 2.2rem); font-weight: 800; margin-bottom: 12px; }
.section-heading p { color: var(--muted); max-width: 560px; margin: 0 auto; }

/* RESPONSIVE */
@media (max-width: 900px) {
  .hero-inner, .product-grid, .contact-grid, .checkout-grid { grid-template-columns: 1fr; }
  .trust-inner { grid-template-columns: repeat(2,1fr); }
  .steps-grid, .reviews-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; gap: 32px; }
  .form-row { grid-template-columns: 1fr; }
  .order-summary { position: static; }
  .hero-img { max-width: 420px; margin: 0 auto; }
}
@media (max-width: 600px) {
  .trust-inner { grid-template-columns: repeat(2,1fr); }
  nav a:not(.nav-cta) { display: none; }
}
