:root {
    --navy: #07182f;
    --navy-2: #0e2a4d;
    --navy-3: #123c66;
    --gold: #d8b45c;
    --gold-2: #f2d78a;
    --ivory: #f8f5ed;
    --white: #ffffff;
    --ink: #162033;
    --muted: #65738a;
    --line: rgba(216, 180, 92, .24);
    --shadow: 0 24px 70px rgba(7, 24, 47, .18);
    --radius: 24px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
    margin: 0;
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", "PingFang SC", "Microsoft YaHei", Arial, sans-serif;
    color: var(--ink);
    background: var(--ivory);
    line-height: 1.65;
}
a { color: inherit; text-decoration: none; }
img { max-width: 100%; height: auto; }
.container { width: min(1160px, calc(100% - 40px)); margin: 0 auto; }
.section { padding: 92px 0; }

.site-header {
    position: sticky;
    top: 0;
    z-index: 1000;
    background: rgba(7, 24, 47, .92);
    backdrop-filter: blur(16px);
    border-bottom: 1px solid rgba(255,255,255,.08);
}
.header-inner { display: flex; align-items: center; justify-content: space-between; min-height: 76px; }
.brand { display: inline-flex; align-items: center; gap: 12px; color: #fff; font-weight: 800; letter-spacing: .02em; }
.brand-mark {
    width: 42px; height: 42px; border-radius: 14px;
    display: inline-grid; place-items: center;
    background: linear-gradient(135deg, var(--gold), var(--gold-2));
    color: var(--navy); font-size: 24px; font-weight: 900;
    box-shadow: 0 10px 25px rgba(216, 180, 92, .25);
}
.brand-text { font-size: 18px; }
.custom-logo-link img { max-height: 52px; width: auto; display: block; }
.primary-nav { display: flex; align-items: center; gap: 24px; color: rgba(255,255,255,.88); font-size: 15px; }
.primary-nav a { transition: .2s ease; }
.primary-nav a:hover { color: var(--gold-2); }
.nav-cta {
    padding: 10px 16px; border-radius: 999px;
    background: linear-gradient(135deg, var(--gold), var(--gold-2));
    color: var(--navy) !important; font-weight: 800;
}
.mobile-menu-toggle { display: none; background: transparent; color: #fff; border: 0; font-size: 30px; }

.hero {
    position: relative;
    overflow: hidden;
    background:
        radial-gradient(circle at top right, rgba(216, 180, 92, .28), transparent 28%),
        linear-gradient(135deg, #061428 0%, #0a2342 58%, #07182f 100%);
    color: #fff;
    padding: 72px 0 92px;
}
.hero::before {
    content: ""; position: absolute; inset: 0;
    background-image: linear-gradient(rgba(255,255,255,.045) 1px, transparent 1px), linear-gradient(90deg, rgba(255,255,255,.045) 1px, transparent 1px);
    background-size: 56px 56px; opacity: .28;
}
.hero-grid { position: relative; z-index: 2; display: grid; grid-template-columns: 1fr 470px; gap: 46px; align-items: center; }
.eyebrow { display: inline-flex; align-items: center; color: var(--gold-2); font-weight: 800; letter-spacing: .08em; text-transform: uppercase; font-size: 13px; margin-bottom: 14px; }
.hero h1 { font-size: clamp(38px, 5vw, 64px); line-height: 1.08; margin: 0 0 22px; letter-spacing: -.04em; }
.hero-lead { font-size: 19px; color: rgba(255,255,255,.82); margin: 0 0 30px; max-width: 680px; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 14px; align-items: center; }
.hero-actions.center { justify-content: center; }
.button {
    display: inline-flex; align-items: center; justify-content: center;
    min-height: 50px; padding: 13px 22px;
    border-radius: 999px; font-weight: 850; border: 1px solid transparent;
    transition: transform .2s ease, box-shadow .2s ease, background .2s ease;
    cursor: pointer;
}
.button:hover { transform: translateY(-2px); }
.button-gold { background: linear-gradient(135deg, var(--gold), var(--gold-2)); color: var(--navy); box-shadow: 0 18px 40px rgba(216, 180, 92, .24); }
.button-outline { border-color: rgba(255,255,255,.35); color: #fff; background: rgba(255,255,255,.06); }
.button-outline.light { border-color: rgba(255,255,255,.45); }
.trust-row { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 26px; color: rgba(255,255,255,.8); }
.trust-row span { border: 1px solid rgba(255,255,255,.12); border-radius: 999px; padding: 7px 12px; background: rgba(255,255,255,.06); }

.hero-form-wrap { align-self: stretch; }
.ycap-form-card {
    background: rgba(255,255,255,.98);
    color: var(--ink);
    border-radius: var(--radius);
    padding: 30px;
    box-shadow: var(--shadow);
    border: 1px solid rgba(216, 180, 92, .22);
}
.form-kicker { color: var(--gold); font-weight: 900; font-size: 13px; letter-spacing: .06em; text-transform: uppercase; }
.ycap-form-card h2 { margin: 6px 0 8px; font-size: 28px; line-height: 1.18; color: var(--navy); }
.form-subtitle { margin: 0 0 20px; color: var(--muted); font-size: 15px; }
.ycap-lead-form { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.ycap-lead-form label { display: grid; gap: 6px; font-weight: 800; color: var(--navy); font-size: 14px; }
.ycap-lead-form input, .ycap-lead-form select {
    width: 100%; min-height: 48px;
    border: 1px solid rgba(7,24,47,.14);
    border-radius: 14px;
    padding: 12px 14px;
    background: #fbfcff;
    color: var(--ink);
    font: inherit;
    outline: none;
}
.ycap-lead-form input:focus, .ycap-lead-form select:focus { border-color: var(--gold); box-shadow: 0 0 0 4px rgba(216, 180, 92, .13); }
.consent-row, .form-submit, .form-disclaimer { grid-column: 1 / -1; }
.consent-row { display: flex !important; grid-template-columns: none !important; align-items: flex-start; gap: 10px !important; color: var(--muted) !important; font-weight: 600 !important; }
.consent-row input { width: 18px !important; min-height: 18px !important; margin-top: 4px; }
.form-submit { width: 100%; border: 0; font-size: 16px; }
.form-disclaimer { color: var(--muted); font-size: 12.5px; margin: 0; }
.hp-field { position: absolute !important; left: -9999px !important; height: 1px; width: 1px; overflow: hidden; }
.form-alert { grid-column: 1 / -1; padding: 12px 14px; border-radius: 14px; margin: 0 0 16px; font-weight: 800; }
.form-alert.success { background: #ecfdf3; color: #146c43; }
.form-alert.error { background: #fff1f1; color: #b42318; }

.stats-strip { margin-top: -34px; position: relative; z-index: 4; }
.stats-grid { display: grid; grid-template-columns: repeat(4, 1fr); background: #fff; border-radius: 24px; box-shadow: var(--shadow); overflow: hidden; border: 1px solid rgba(216,180,92,.2); }
.stats-grid div { padding: 26px 22px; border-right: 1px solid rgba(7,24,47,.08); }
.stats-grid div:last-child { border-right: 0; }
.stats-grid strong { display: block; color: var(--navy); font-size: 22px; line-height: 1.2; }
.stats-grid span { display: block; color: var(--muted); margin-top: 5px; }

.section-heading { max-width: 760px; text-align: center; margin: 0 auto 42px; }
.section-heading.left { text-align: left; margin-left: 0; }
.section-heading h2, .why-grid h2, .final-cta h2 { font-size: clamp(30px, 4vw, 44px); line-height: 1.15; color: var(--navy); margin: 0 0 14px; letter-spacing: -.035em; }
.section-heading p, .why-grid p { color: var(--muted); font-size: 17px; margin: 0; }

.cards.two-col { display: grid; grid-template-columns: repeat(2, 1fr); gap: 24px; }
.service-card {
    background: #fff;
    border-radius: var(--radius);
    padding: 34px;
    border: 1px solid rgba(216,180,92,.2);
    box-shadow: 0 16px 50px rgba(7,24,47,.08);
}
.card-icon {
    width: 56px; height: 56px; display: grid; place-items: center;
    border-radius: 18px; color: var(--navy); font-weight: 900;
    background: linear-gradient(135deg, var(--gold), var(--gold-2));
    margin-bottom: 18px;
}
.service-card h3 { color: var(--navy); margin: 0 0 10px; font-size: 26px; }
.service-card p { color: var(--muted); margin: 0 0 16px; }
ul { padding-left: 20px; margin: 0 0 20px; }
li { margin: 7px 0; }
.text-link { color: var(--navy); font-weight: 900; border-bottom: 2px solid var(--gold); }

.process-section { background: #fff; }
.process-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; }
.process-item { background: var(--ivory); border-radius: 22px; padding: 26px; border: 1px solid rgba(7,24,47,.07); }
.process-item span { display: inline-flex; color: var(--gold); font-weight: 950; font-size: 24px; margin-bottom: 8px; }
.process-item h3 { color: var(--navy); margin: 0 0 8px; font-size: 20px; }
.process-item p { color: var(--muted); margin: 0; font-size: 15px; }

.why-section { background: linear-gradient(135deg, #07182f, #0e2a4d); color: #fff; }
.why-grid { display: grid; grid-template-columns: .9fr 1.1fr; gap: 46px; align-items: center; }
.why-grid h2 { color: #fff; }
.why-grid p { color: rgba(255,255,255,.74); margin-bottom: 24px; }
.why-list { display: grid; grid-template-columns: repeat(2, 1fr); gap: 16px; }
.why-list div { padding: 24px; border-radius: 22px; background: rgba(255,255,255,.07); border: 1px solid rgba(255,255,255,.1); }
.why-list strong { display: block; color: var(--gold-2); font-size: 18px; margin-bottom: 8px; }
.why-list span { color: rgba(255,255,255,.72); }

.comparison-card { background: #fff; padding: 44px; border-radius: 30px; box-shadow: var(--shadow); border: 1px solid rgba(216,180,92,.2); }
.comparison-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 18px; }
.comparison-grid div { padding: 26px; border-radius: 22px; }
.comparison-grid h3 { margin: 0 0 10px; color: var(--navy); font-size: 22px; }
.comparison-grid p { margin: 0; color: var(--muted); }
.good { background: #f4fbf6; border: 1px solid #cdebd5; }
.bad { background: #fff8ef; border: 1px solid rgba(216,180,92,.28); }

.faq-section { background: #fff; }
.faq-list { max-width: 860px; margin: 0 auto; display: grid; gap: 12px; }
details { background: var(--ivory); border: 1px solid rgba(7,24,47,.08); border-radius: 18px; padding: 18px 20px; }
summary { cursor: pointer; font-weight: 900; color: var(--navy); }
details p { margin: 12px 0 0; color: var(--muted); }

.final-cta { background: var(--ivory); }
.final-cta-card { text-align: center; padding: 52px; border-radius: 32px; color: #fff; background: linear-gradient(135deg, #07182f, #123c66); box-shadow: var(--shadow); }
.final-cta h2 { color: #fff; }
.final-cta p { color: rgba(255,255,255,.74); margin: 0 0 26px; }

.site-footer { background: #061428; color: rgba(255,255,255,.72); padding: 58px 0 26px; }
.footer-grid { display: grid; grid-template-columns: 1.4fr .8fr .8fr; gap: 34px; }
.footer-brand { color: #fff; font-weight: 950; font-size: 22px; margin-bottom: 10px; }
.footer-note { color: var(--gold-2); font-weight: 800; }
.site-footer h3 { color: #fff; margin: 0 0 12px; }
.site-footer a { display: block; margin: 8px 0; color: rgba(255,255,255,.72); }
.site-footer a:hover { color: var(--gold-2); }
.footer-bottom { border-top: 1px solid rgba(255,255,255,.08); margin-top: 34px; padding-top: 20px; display: flex; justify-content: space-between; gap: 20px; font-size: 13px; }
.footer-bottom p { margin: 0; }
.floating-whatsapp {
    position: fixed; right: 18px; bottom: 18px; z-index: 999;
    display: inline-flex; align-items: center; justify-content: center;
    min-width: 108px; height: 48px; padding: 0 16px;
    border-radius: 999px; color: var(--navy); font-weight: 950;
    background: linear-gradient(135deg, var(--gold), var(--gold-2));
    box-shadow: 0 12px 32px rgba(7,24,47,.24);
}

.page-hero { background: linear-gradient(135deg, #07182f, #123c66); color: #fff; padding: 72px 0; }
.page-hero h1 { margin: 0; font-size: clamp(36px, 5vw, 54px); line-height: 1.1; }
.page-hero p { color: rgba(255,255,255,.76); max-width: 720px; font-size: 18px; }
.content-card { background: #fff; padding: 38px; border-radius: 28px; box-shadow: var(--shadow); border: 1px solid rgba(216,180,92,.2); }
.content-card h2, .content-card h3 { color: var(--navy); }
.content-card p, .content-card li { color: var(--muted); }

@media (max-width: 980px) {
    .hero-grid, .why-grid, .footer-grid { grid-template-columns: 1fr; }
    .stats-grid, .process-grid { grid-template-columns: repeat(2, 1fr); }
    .primary-nav {
        position: absolute; top: 76px; left: 0; right: 0;
        display: none; flex-direction: column; align-items: stretch;
        gap: 0; padding: 12px 20px 24px;
        background: rgba(7,24,47,.98);
        border-top: 1px solid rgba(255,255,255,.08);
    }
    .primary-nav.is-open { display: flex; }
    .primary-nav a { padding: 12px 0; }
    .nav-cta { text-align: center; margin-top: 8px; padding: 12px 16px !important; }
    .mobile-menu-toggle { display: inline-flex; }
}

@media (max-width: 720px) {
    .container { width: min(100% - 28px, 1160px); }
    .section { padding: 64px 0; }
    .hero { padding: 52px 0 74px; }
    .hero h1 { font-size: 38px; }
    .hero-lead { font-size: 16px; }
    .ycap-form-card { padding: 22px; }
    .ycap-lead-form, .cards.two-col, .why-list, .comparison-grid, .stats-grid, .process-grid { grid-template-columns: 1fr; }
    .stats-grid div { border-right: 0; border-bottom: 1px solid rgba(7,24,47,.08); }
    .stats-grid div:last-child { border-bottom: 0; }
    .comparison-card, .final-cta-card { padding: 28px; }
    .footer-bottom { flex-direction: column; }
    .floating-whatsapp { left: 14px; right: 14px; width: auto; bottom: 14px; }
    .site-footer { padding-bottom: 84px; }
}

/* Version 1.1 updates: embedded logo, lighter premium header, stories, thank-you page */
.site-header {
    background: rgba(255, 255, 255, .96);
    border-bottom: 1px solid rgba(7,24,47,.08);
    box-shadow: 0 12px 34px rgba(7,24,47,.06);
}
.header-inner { min-height: 82px; }
.brand { color: var(--navy); }
.brand-logo-img { height: 64px; width: auto; display: block; object-fit: contain; }
.custom-logo-link img { max-height: 64px; width: auto; display: block; }
.primary-nav { color: rgba(7,24,47,.82); font-weight: 750; }
.primary-nav a:hover { color: #a47b18; }
.mobile-menu-toggle { color: var(--navy); }
.nav-cta { box-shadow: 0 10px 24px rgba(216,180,92,.22); }

.footer-logo {
    width: min(230px, 100%);
    height: auto;
    margin-bottom: 14px;
    filter: drop-shadow(0 10px 22px rgba(216,180,92,.12));
}

.stories-section {
    background:
        radial-gradient(circle at 15% 10%, rgba(216,180,92,.18), transparent 28%),
        linear-gradient(180deg, #fff 0%, #f8f5ed 100%);
}
.story-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 22px;
}
.story-card {
    background: rgba(255,255,255,.95);
    border: 1px solid rgba(216,180,92,.22);
    border-radius: 28px;
    overflow: hidden;
    box-shadow: 0 18px 55px rgba(7,24,47,.08);
    display: flex;
    flex-direction: column;
}
.story-card.featured {
    transform: translateY(-14px);
    border-color: rgba(216,180,92,.44);
    box-shadow: 0 26px 70px rgba(7,24,47,.14);
}
.story-photo {
    width: 100%;
    aspect-ratio: 16 / 11;
    object-fit: cover;
    display: block;
    background: #f1efe8;
}
.story-content { padding: 26px; }
.story-tag {
    display: inline-flex;
    align-items: center;
    padding: 6px 10px;
    border-radius: 999px;
    color: var(--navy);
    background: linear-gradient(135deg, rgba(216,180,92,.28), rgba(242,215,138,.38));
    font-size: 12px;
    font-weight: 900;
    margin-bottom: 12px;
}
.story-content h3 {
    margin: 0 0 10px;
    color: var(--navy);
    font-size: 22px;
}
.story-content p {
    margin: 0;
    color: var(--muted);
    font-size: 15.5px;
}
.stories-disclaimer {
    max-width: 860px;
    margin: 24px auto 0;
    text-align: center;
    color: var(--muted);
    font-size: 13px;
}

.thank-hero { min-height: 64vh; display: flex; align-items: center; }
.thank-grid {
    display: grid;
    grid-template-columns: 1fr 420px;
    gap: 42px;
    align-items: center;
}
.thank-card {
    background: rgba(255,255,255,.96);
    color: var(--ink);
    border-radius: 28px;
    padding: 34px;
    border: 1px solid rgba(216,180,92,.28);
    box-shadow: var(--shadow);
}
.thank-card h2 { color: var(--navy); margin: 0 0 16px; }
.thank-card p { color: var(--muted); font-size: 13px; margin: 16px 0 0; }
.thank-card ul { margin-bottom: 0; }
.thank-card li { color: var(--muted); }

@media (max-width: 980px) {
    .primary-nav {
        background: rgba(255,255,255,.99);
        border-top: 1px solid rgba(7,24,47,.08);
        box-shadow: 0 18px 40px rgba(7,24,47,.08);
    }
    .primary-nav a { color: var(--navy); }
    .story-grid, .thank-grid { grid-template-columns: 1fr; }
    .story-card.featured { transform: none; }
}

@media (max-width: 720px) {
    .header-inner { min-height: 74px; }
    .brand-logo-img, .custom-logo-link img { height: 50px; max-width: 185px; }
    .primary-nav { top: 74px; }
    .story-content { padding: 22px; }
    .thank-card { padding: 24px; }
}
