@font-face {
font-family: "Inter";
src: url("../fonts/Inter.ttf") format("truetype");
font-weight: 100 900;
font-style: normal;
font-display: swap;
}

@font-face {
font-family: "Playfair Display";
src: url("../fonts/PlayfairDisplay.ttf") format("truetype");
font-weight: 100 900;
font-style: normal;
font-display: swap;
}

:root {
--c-bg: #f7f3ec;
--c-cream: #efe8db;
--c-ink: #1a2238;
--c-ink-soft: #2d3654;
--c-gold: #c9a24a;
--c-gold-deep: #a8822f;
--c-accent: #6b4e8f;
--c-line: #d9cfbc;
--c-white: #ffffff;
--f-display: 'Playfair Display', Georgia, serif;
--f-body: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
--shadow-sm: 0 2px 8px rgba(26, 34, 56, 0.06);
--shadow-md: 0 12px 40px rgba(26, 34, 56, 0.12);
--shadow-lg: 0 24px 60px rgba(26, 34, 56, 0.18);
--radius: 14px;
}

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

html {
scroll-behavior: smooth;
overflow-x: clip;
}

body {
overflow-x: clip;
font-family: var(--f-body);
color: var(--c-ink);
background: var(--c-bg);
line-height: 1.6;
font-size: 16px;
min-height: 100vh;
display: flex;
flex-direction: column;
-webkit-font-smoothing: antialiased;
}

main { flex: 1 0 auto; }

img { max-width: 100%; display: block; }

a { color: inherit; text-decoration: none; }

.container {
max-width: 1200px;
margin: 0 auto;
padding: 0 24px;
}

h1, h2, h3, h4 {
font-family: var(--f-display);
font-weight: 600;
line-height: 1.15;
color: var(--c-ink);
}

h1 { font-size: clamp(2.4rem, 5vw, 4rem); letter-spacing: -0.01em; }
h2 { font-size: clamp(1.9rem, 3.5vw, 2.8rem); letter-spacing: -0.01em; }
h3 { font-size: clamp(1.3rem, 2vw, 1.6rem); }

h1 em, h2 em {
font-style: italic;
color: var(--c-gold-deep);
font-weight: 500;
}

.eyebrow {
display: inline-block;
font-family: var(--f-body);
font-size: 0.78rem;
font-weight: 600;
letter-spacing: 0.18em;
text-transform: uppercase;
color: var(--c-gold-deep);
margin-bottom: 16px;
}

.eyebrow.light { color: var(--c-gold); }

.btn-primary {
display: inline-flex;
align-items: center;
gap: 10px;
background: linear-gradient(135deg, var(--c-gold) 0%, var(--c-gold-deep) 100%);
color: var(--c-ink);
padding: 14px 28px;
border-radius: 50px;
font-weight: 600;
font-size: 0.95rem;
border: none;
cursor: pointer;
transition: transform 0.25s, box-shadow 0.25s;
box-shadow: 0 8px 24px rgba(201, 162, 74, 0.35);
}

.btn-primary:hover {
transform: translateY(-2px);
box-shadow: 0 12px 32px rgba(201, 162, 74, 0.45);
}

.btn-primary.btn-lg { padding: 18px 36px; font-size: 1.05rem; }

.btn-back {
background: transparent;
border: none;
color: var(--c-ink-soft);
cursor: pointer;
font-size: 0.9rem;
font-weight: 500;
display: inline-flex;
align-items: center;
gap: 6px;
padding: 8px 0;
}

.btn-back:disabled { opacity: 0.3; cursor: not-allowed; }

header.site-header {
position: sticky;
top: 0;
z-index: 100;
background: rgba(247, 243, 236, 0.92);
backdrop-filter: blur(14px);
border-bottom: 1px solid var(--c-line);
}

.header-inner {
max-width: 1280px;
margin: 0 auto;
padding: 14px 24px;
display: flex;
align-items: center;
justify-content: space-between;
flex-wrap: wrap;
gap: 16px;
}

.logo a {
display: flex;
align-items: center;
gap: 12px;
}

.logo img {
border-radius: 8px;
}

.logo-line1 {
font-family: var(--f-display);
font-size: 1.7rem;
font-weight: 600;
color: var(--c-ink);
letter-spacing: 0.02em;
}

.header-notice {
font-size: 0.72rem;
letter-spacing: 0.1em;
text-transform: uppercase;
color: var(--c-ink-soft);
padding: 6px 12px;
border: 1px solid var(--c-line);
border-radius: 50px;
}

.hero {
position: relative;
padding: 64px 0 80px;
overflow: hidden;
}

.hero-bg {
position: absolute;
inset: 0;
background:
linear-gradient(135deg, rgba(26, 34, 56, 0.85) 0%, rgba(26, 34, 56, 0.7) 100%),
url('../images/1.webp') center/cover no-repeat;
z-index: 0;
}

.hero-inner {
position: relative;
z-index: 1;
max-width: 1280px;
margin: 0 auto;
padding: 0 24px;
display: grid;
grid-template-columns: 1.1fr 1fr;
gap: 56px;
align-items: center;
}

.hero-inner > * {
min-width: 0;
max-width: 100%;
}

.hero-eyebrow {
display: inline-block;
font-size: 0.78rem;
font-weight: 600;
letter-spacing: 0.18em;
text-transform: uppercase;
color: var(--c-gold);
padding: 8px 16px;
background: rgba(201, 162, 74, 0.2);
border-radius: 50px;
margin-bottom: 24px;
}

.hero h1 {
color: var(--c-white);
}

.hero h1 em {
color: var(--c-gold);
}

.hero-sub {
font-size: 1.1rem;
color: rgba(239, 232, 219, 0.9);
margin: 24px 0 32px;
max-width: 520px;
}

.hero-sub strong {
color: var(--c-white);
font-size: 1.3rem;
font-family: var(--f-display);
font-weight: 600;
}

.hero-badges {
display: flex;
flex-wrap: wrap;
gap: 12px;
}

.badge {
display: inline-flex;
align-items: center;
gap: 8px;
padding: 10px 16px;
background: rgba(255, 255, 255, 0.1);
backdrop-filter: blur(10px);
border: 1px solid rgba(201, 162, 74, 0.3);
border-radius: 50px;
font-size: 0.85rem;
font-weight: 500;
color: var(--c-cream);
}

.badge i { color: var(--c-gold); }

.quiz-card {
background: var(--c-white);
border-radius: 20px;
padding: 32px;
box-shadow: var(--shadow-lg);
position: relative;
border: 1px solid var(--c-line);
}

.quiz-progress {
height: 4px;
background: var(--c-cream);
border-radius: 50px;
overflow: hidden;
margin-bottom: 24px;
}

.progress-bar {
height: 100%;
background: linear-gradient(90deg, var(--c-gold), var(--c-gold-deep));
transition: width 0.4s;
}

.quiz-step { display: none; }
.quiz-step.active { display: block; animation: fadeIn 0.4s; }

@keyframes fadeIn {
from { opacity: 0; transform: translateY(8px); }
to { opacity: 1; transform: translateY(0); }
}

.quiz-step h3 {
font-size: 1.4rem;
margin-bottom: 8px;
}

.quiz-q {
color: var(--c-ink-soft);
margin-bottom: 20px;
font-size: 0.95rem;
}

.quiz-options {
display: grid;
gap: 10px;
}

.quiz-opt {
padding: 14px 18px;
background: var(--c-bg);
border: 1.5px solid var(--c-line);
border-radius: 10px;
font-size: 0.95rem;
font-weight: 500;
color: var(--c-ink);
cursor: pointer;
text-align: left;
transition: all 0.2s;
font-family: inherit;
}

.quiz-opt:hover {
border-color: var(--c-gold);
background: var(--c-white);
transform: translateX(4px);
}

.lead-form {
display: grid;
gap: 12px;
}

.lead-form input[type="text"],
.lead-form input[type="email"],
.lead-form input[type="tel"] {
width: 100%;
max-width: 100%;
padding: 14px 16px;
border: 1.5px solid var(--c-line);
border-radius: 10px;
font-size: 0.95rem;
font-family: inherit;
background: var(--c-bg);
transition: border-color 0.2s;
}

.lead-form .btn-primary {
width: 100%;
max-width: 100%;
justify-content: center;
}

.lead-form input:focus {
outline: none;
border-color: var(--c-gold);
background: var(--c-white);
}

.agree {
display: flex;
align-items: flex-start;
gap: 10px;
font-size: 0.82rem;
color: var(--c-ink-soft);
line-height: 1.4;
cursor: pointer;
}

.agree input { margin-top: 2px; accent-color: var(--c-gold-deep); }

.quiz-nav {
display: flex;
justify-content: space-between;
align-items: center;
margin-top: 24px;
padding-top: 20px;
border-top: 1px solid var(--c-line);
}

.step-indicator {
font-size: 0.82rem;
color: var(--c-ink-soft);
font-weight: 500;
}

.trust-strip {
background: var(--c-ink);
color: var(--c-cream);
padding: 22px 0;
}

.trust-strip .container {
display: grid;
grid-template-columns: repeat(4, 1fr);
gap: 24px;
align-items: center;
}

.trust-item {
display: flex;
align-items: center;
gap: 12px;
font-size: 0.88rem;
}

.trust-item i {
color: var(--c-gold);
font-size: 1.1rem;
}

.trust-item strong { color: var(--c-white); font-weight: 600; }

section {
padding: 72px 0;
}

.section-head {
text-align: center;
max-width: 680px;
margin: 0 auto 48px;
}

.section-head p {
color: var(--c-ink-soft);
font-size: 1.05rem;
margin-top: 12px;
}

.process {
background: var(--c-cream);
}

.process-grid {
display: grid;
grid-template-columns: repeat(3, 1fr);
gap: 28px;
}

.process-grid > * {
min-width: 0;
max-width: 100%;
}

.process-card {
background: var(--c-white);
border-radius: var(--radius);
padding: 32px 28px;
position: relative;
box-shadow: var(--shadow-sm);
transition: transform 0.3s, box-shadow 0.3s;
}

.process-card:hover {
transform: translateY(-6px);
box-shadow: var(--shadow-md);
}

.process-num {
font-family: var(--f-display);
font-size: 3.2rem;
font-weight: 500;
color: var(--c-gold);
line-height: 1;
margin-bottom: 16px;
font-style: italic;
}

.process-card h3 {
margin-bottom: 10px;
font-size: 1.35rem;
}

.process-card p {
color: var(--c-ink-soft);
font-size: 0.95rem;
}

.why-grid {
display: grid;
grid-template-columns: 1fr;
gap: 56px;
align-items: center;
max-width: 800px;
margin: 0 auto;
}

.why-text p {
color: var(--c-ink-soft);
margin: 16px 0 28px;
font-size: 1.02rem;
}

.why-list {
list-style: none;
display: grid;
gap: 16px;
margin-bottom: 32px;
}

.why-list li {
display: flex;
gap: 14px;
align-items: flex-start;
}

.why-list i {
color: var(--c-gold-deep);
font-size: 1.1rem;
margin-top: 4px;
flex-shrink: 0;
}

.why-list strong {
display: block;
color: var(--c-ink);
margin-bottom: 2px;
font-family: var(--f-display);
font-size: 1.15rem;
font-weight: 600;
}

.why-list div > div {
font-size: 0.93rem;
color: var(--c-ink-soft);
}

.features {
background: linear-gradient(180deg, var(--c-bg) 0%, var(--c-cream) 100%);
}

.features-grid {
display: grid;
grid-template-columns: repeat(3, 1fr);
gap: 24px;
}

.features-grid > * {
min-width: 0;
max-width: 100%;
}

.feature {
background: var(--c-white);
padding: 32px 28px;
border-radius: var(--radius);
border: 1px solid var(--c-line);
transition: transform 0.3s, border-color 0.3s;
}

.feature:hover {
transform: translateY(-4px);
border-color: var(--c-gold);
}

.feature i {
width: 48px;
height: 48px;
display: flex;
align-items: center;
justify-content: center;
background: linear-gradient(135deg, rgba(201, 162, 74, 0.15), rgba(107, 78, 143, 0.1));
color: var(--c-gold-deep);
border-radius: 12px;
font-size: 1.2rem;
margin-bottom: 18px;
}

.feature h4 {
font-size: 1.2rem;
margin-bottom: 8px;
}

.feature p {
color: var(--c-ink-soft);
font-size: 0.92rem;
}

.stories {
background: var(--c-ink);
color: var(--c-cream);
}

.stories .section-head h2 { color: var(--c-white); }
.stories .section-head p { color: rgba(239, 232, 219, 0.7); }

.stories-grid {
display: grid;
grid-template-columns: repeat(2, 1fr);
gap: 24px;
}

.stories-grid > * {
min-width: 0;
max-width: 100%;
}

.story {
background: rgba(255, 255, 255, 0.04);
border: 1px solid rgba(201, 162, 74, 0.2);
padding: 32px;
border-radius: var(--radius);
transition: background 0.3s, border-color 0.3s;
}

.story:hover {
background: rgba(255, 255, 255, 0.07);
border-color: var(--c-gold);
}

.story-stars {
color: var(--c-gold);
font-size: 1.1rem;
margin-bottom: 14px;
letter-spacing: 2px;
}

.story > p {
font-family: var(--f-display);
font-size: 1.15rem;
line-height: 1.5;
color: var(--c-cream);
font-style: italic;
margin-bottom: 20px;
}

.story-author {
padding-top: 18px;
border-top: 1px solid rgba(201, 162, 74, 0.2);
}

.story-author strong {
display: block;
color: var(--c-white);
font-size: 0.95rem;
}

.story-author span {
font-size: 0.8rem;
color: rgba(239, 232, 219, 0.6);
}

.final-cta {
padding: 80px 0;
background: var(--c-bg);
}

.cta-card {
background: linear-gradient(135deg, var(--c-ink) 0%, var(--c-ink-soft) 100%);
border-radius: 24px;
padding: 56px;
text-align: center;
position: relative;
overflow: hidden;
box-shadow: var(--shadow-lg);
}

.cta-card::before {
content: '';
position: absolute;
top: -100px; right: -100px;
width: 300px; height: 300px;
background: radial-gradient(circle, rgba(201, 162, 74, 0.2), transparent 70%);
}

.cta-content { position: relative; z-index: 1; }

.cta-content h2 {
color: var(--c-white);
margin-bottom: 16px;
}

.cta-content p {
color: rgba(239, 232, 219, 0.8);
font-size: 1.05rem;
margin-bottom: 28px;
max-width: 600px;
margin-left: auto;
margin-right: auto;
}

footer.site-footer {
background: #0f1528;
color: rgba(239, 232, 219, 0.75);
padding: 56px 0 0;
margin-top: auto;
font-size: 0.92rem;
}

.footer-inner {
max-width: 1200px;
margin: 0 auto;
padding: 0 24px 40px;
display: grid;
grid-template-columns: 1.5fr 1fr 1fr 1fr;
gap: 40px;
}

.footer-col h5 {
color: var(--c-white);
font-family: var(--f-body);
font-size: 0.95rem;
font-weight: 600;
margin-bottom: 16px;
letter-spacing: 0.05em;
}

.footer-col p {
margin-bottom: 8px;
line-height: 1.55;
font-size: 0.9rem;
}

.footer-col a {
transition: color 0.2s;
}

.footer-col a:hover { color: var(--c-gold); }

.footer-tagline {
margin-top: 16px;
max-width: 300px;
}

.footer-col .logo-line1 { color: var(--c-white); }

.footer-disclaimer {
max-width: 1200px;
margin: 0 auto;
padding: 24px 24px;
border-top: 1px solid rgba(201, 162, 74, 0.15);
}

.footer-disclaimer p {
font-size: 0.82rem;
line-height: 1.6;
color: rgba(239, 232, 219, 0.55);
max-width: 900px;
}

.footer-bottom {
max-width: 1200px;
margin: 0 auto;
padding: 20px 24px;
border-top: 1px solid rgba(255, 255, 255, 0.06);
text-align: center;
font-size: 0.82rem;
color: rgba(239, 232, 219, 0.5);
}

.to-top {
position: fixed;
bottom: 24px;
right: 24px;
width: 48px;
height: 48px;
border-radius: 50%;
background: var(--c-ink);
color: var(--c-gold);
border: 1px solid var(--c-gold);
cursor: pointer;
display: none;
align-items: center;
justify-content: center;
z-index: 50;
box-shadow: var(--shadow-md);
transition: transform 0.2s;
}

.to-top:hover { transform: translateY(-3px); }
.to-top.visible { display: flex; }

[data-aos="fade-right"]:not(.aos-animate) {
transform: translate3d(-32px, 0, 0) !important;
}

[data-aos="fade-left"]:not(.aos-animate) {
transform: translate3d(32px, 0, 0) !important;
}

[data-aos="zoom-in"]:not(.aos-animate) {
transform: translate3d(0, 24px, 0) !important;
opacity: 0;
}

[data-aos="zoom-in"].aos-animate {
transform: translate3d(0, 0, 0) !important;
}

.legal-content {
word-break: break-word;
}

@media (max-width: 900px) {
[data-aos] {
transform: none !important;
opacity: 1 !important;
transition: none !important;
}

.hero-inner > *,
.process-grid > *,
.features-grid > *,
.stories-grid > *,
.why-grid > * {
min-width: 0;
max-width: 100%;
}
}

@media (max-width: 960px) {
.hero-inner { grid-template-columns: 1fr; gap: 40px; }
.process-grid { grid-template-columns: 1fr; }
.why-grid { grid-template-columns: 1fr; gap: 40px; }
.features-grid { grid-template-columns: repeat(2, 1fr); }
.stories-grid { grid-template-columns: 1fr; }
.cta-card { padding: 40px 28px; }
.footer-inner { grid-template-columns: 1fr 1fr; gap: 32px; }
.trust-strip .container { grid-template-columns: repeat(2, 1fr); gap: 16px; }
section { padding: 56px 0; }
}

@media (max-width: 640px) {
.header-inner {
flex-direction: row;
align-items: center;
justify-content: space-between;
flex-wrap: nowrap;
gap: 10px;
}

.logo {
min-width: 0;
flex: 1 1 auto;
}

.logo a {
flex-direction: row;
align-items: center;
}

.header-notice {
word-break: break-all;
flex-shrink: 0;
}

.logo a span {
word-break: break-all;
min-width: 0;
}

.footer-col {
word-break: break-all;
}
}

@media (max-width: 560px) {
.features-grid { grid-template-columns: 1fr; }
.footer-inner { grid-template-columns: 1fr; }
.trust-strip .container { grid-template-columns: 1fr; }
.hero { padding: 40px 0 56px; }
.quiz-card { padding: 24px; }
}

@media (max-width: 480px) {
.container,
.header-inner,
.hero-inner,
.page-wrap {
padding-left: 16px;
padding-right: 16px;
}

.header-inner {
gap: 8px;
}

.logo-line1 {
font-size: 1.35rem;
}

.header-notice {
font-size: 0.65rem;
padding: 5px 10px;
}

.page-card {
padding: 24px 20px;
}

.quiz-card {
padding: 20px 16px;
}

h1 { font-size: clamp(2rem, 8vw, 2.6rem); }
h2 { font-size: clamp(1.6rem, 6vw, 2rem); }

.btn-primary {
padding: 12px 22px;
font-size: 0.9rem;
}
}

.legal-page {
    padding: 40px 0;
}
.legal-page .legal-content {
    max-width: 800px;
    margin: 0 auto;
    padding: 0 24px;
}
.legal-page h1 {
    font-size: 2.6rem;
    font-family: var(--f-display);
    font-weight: 600;
    margin: 0 0 24px 0;
    color: var(--c-ink);
    letter-spacing: -0.01em;
}
.legal-page p {
    font-size: 1rem;
    line-height: 1.7;
    margin-bottom: 20px;
    color: var(--c-ink-soft);
}
.legal-page b, .legal-page strong {
    color: var(--c-ink);
    font-weight: 600;
}
.legal-page .legal-content > p:first-of-type {
    margin-top: 8px;
    font-size: 0.9rem;
    color: rgba(26,34,56,0.6);
}
.legal-page ul, .legal-page ol {
    padding-left: 24px;
    margin-bottom: 20px;
}
.legal-page li {
    margin-bottom: 8px;
    line-height: 1.6;
}
.legal-page a {
    color: var(--c-gold-deep);
    text-decoration: underline;
}
.legal-page a:hover {
    color: var(--c-ink);
}

.thanks-main .container {
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 60vh;
    padding: 60px 24px;
}

.page-wrap {
    max-width: 820px;
    margin: 0 auto;
    padding: 60px 24px;
}

.page-card {
    background: var(--c-white);
    border-radius: var(--radius);
    padding: 40px 48px;
    box-shadow: var(--shadow-md);
    border: 1px solid var(--c-line);
    transition: box-shadow 0.25s;
    color: var(--c-ink); 
}

.page-card h1 {
    margin-top: 0;
    margin-bottom: 0.5rem;
    font-size: clamp(2rem, 4vw, 2.8rem);
    color: var(--c-ink); 
}

.page-card .last-updated,
.page-card h1 + p {
    color: var(--c-ink);
    font-size: 0.9rem;
    margin-bottom: 1.5rem;
}

.page-card p {
    line-height: 1.7;
    color: var(--c-ink);  
    margin-bottom: 1.25rem;
}

.page-card b,
.page-card strong {
    font-weight: 600;   
    color: var(--c-ink);
}