/* ============================================
   MON ANNUAIRE - fr.monannuaire.co
   Design: Premium Trust / Conversion-Optimized
   ============================================ */

@import url('https://fonts.googleapis.com/css2?family=DM+Serif+Display:ital@0;1&family=DM+Sans:ital,opsz,wght@0,9..40,300;0,9..40,400;0,9..40,500;0,9..40,600;0,9..40,700;1,9..40,400&display=swap');

:root {
    --navy: #0B1D3A;
    --navy-light: #132B52;
    --navy-mid: #1A3A6B;
    --gold: #D4A843;
    --gold-light: #F0D48A;
    --gold-dark: #B8922E;
    --white: #FFFFFF;
    --off-white: #F7F5F0;
    --gray-100: #F0EDE6;
    --gray-200: #E0DDD5;
    --gray-400: #9A9689;
    --gray-600: #6B675C;
    --gray-800: #3D3A33;
    --green: #2E8B57;
    --green-light: #E8F5EE;
    --red-soft: #C0392B;
    --shadow-sm: 0 1px 3px rgba(11,29,58,0.08);
    --shadow-md: 0 4px 16px rgba(11,29,58,0.10);
    --shadow-lg: 0 8px 32px rgba(11,29,58,0.14);
    --shadow-xl: 0 16px 48px rgba(11,29,58,0.18);
    --radius-sm: 6px;
    --radius-md: 12px;
    --radius-lg: 20px;
    --radius-xl: 28px;
}

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

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: 'DM Sans', -apple-system, sans-serif;
    color: var(--gray-800);
    background: var(--off-white);
    line-height: 1.7;
    -webkit-font-smoothing: antialiased;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

/* ---- HEADER ---- */
.site-header {
    background: var(--navy);
    padding: 0;
    position: sticky;
    top: 0;
    z-index: 100;
    box-shadow: 0 2px 20px rgba(11,29,58,0.3);
}

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

.logo {
    display: flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
    color: var(--white);
}

.logo-icon {
    width: 42px;
    height: 42px;
    background: linear-gradient(135deg, var(--gold), var(--gold-dark));
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    color: var(--navy);
    font-weight: 700;
    box-shadow: 0 2px 8px rgba(212,168,67,0.3);
}

.logo-text {
    font-family: 'DM Serif Display', serif;
    font-size: 1.25rem;
    letter-spacing: -0.02em;
    line-height: 1.2;
}

.logo-text small {
    display: block;
    font-family: 'DM Sans', sans-serif;
    font-size: 0.65rem;
    font-weight: 400;
    color: var(--gold-light);
    letter-spacing: 0.15em;
    text-transform: uppercase;
    opacity: 0.85;
}

.header-badge {
    display: flex;
    align-items: center;
    gap: 8px;
    background: rgba(255,255,255,0.08);
    border: 1px solid rgba(255,255,255,0.12);
    padding: 8px 16px;
    border-radius: 100px;
    font-size: 0.78rem;
    color: rgba(255,255,255,0.8);
}

.header-badge .dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #2ECC71;
    animation: pulse-dot 2s ease-in-out infinite;
}

@keyframes pulse-dot {
    0%, 100% { opacity: 1; box-shadow: 0 0 0 0 rgba(46,204,113,0.4); }
    50% { opacity: 0.8; box-shadow: 0 0 0 6px rgba(46,204,113,0); }
}

/* ---- HERO SECTION ---- */
.hero {
    background: linear-gradient(170deg, var(--navy) 0%, var(--navy-light) 50%, var(--navy-mid) 100%);
    position: relative;
    overflow: hidden;
    padding: 72px 24px 80px;
}

.hero::before {
    content: '';
    position: absolute;
    top: -30%;
    right: -10%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(212,168,67,0.08) 0%, transparent 70%);
    pointer-events: none;
}

.hero::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(212,168,67,0.3), transparent);
}

.hero-inner {
    max-width: 760px;
    margin: 0 auto;
    text-align: center;
    position: relative;
    z-index: 1;
}

.hero-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(212,168,67,0.12);
    border: 1px solid rgba(212,168,67,0.25);
    color: var(--gold-light);
    font-size: 0.78rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    padding: 8px 20px;
    border-radius: 100px;
    margin-bottom: 28px;
    animation: fadeInDown 0.6s ease-out;
}

.hero h1 {
    font-family: 'DM Serif Display', serif;
    font-size: clamp(2rem, 5vw, 3.1rem);
    color: var(--white);
    line-height: 1.15;
    margin-bottom: 18px;
    letter-spacing: -0.02em;
    animation: fadeInUp 0.7s ease-out 0.1s both;
}

.hero h1 em {
    color: var(--gold);
    font-style: italic;
}

.hero-subtitle {
    font-size: 1.1rem;
    color: rgba(255,255,255,0.65);
    max-width: 540px;
    margin: 0 auto 40px;
    line-height: 1.7;
    animation: fadeInUp 0.7s ease-out 0.2s both;
}

/* ---- SEARCH BOX ---- */
.search-box {
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: 32px;
    box-shadow: var(--shadow-xl), 0 0 0 1px rgba(255,255,255,0.1);
    max-width: 560px;
    margin: 0 auto;
    animation: fadeInUp 0.7s ease-out 0.3s both;
    position: relative;
}

.search-box::before {
    content: '';
    position: absolute;
    inset: -1px;
    border-radius: var(--radius-lg);
    background: linear-gradient(135deg, rgba(212,168,67,0.4), transparent 50%, rgba(212,168,67,0.2));
    z-index: -1;
}

.search-box label {
    display: block;
    font-size: 0.82rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: var(--gray-600);
    margin-bottom: 12px;
}

.input-group {
    display: flex;
    gap: 10px;
}

.input-wrapper {
    flex: 1;
    position: relative;
}

.input-wrapper .prefix {
    position: absolute;
    left: 16px;
    top: 50%;
    transform: translateY(-50%);
    font-size: 1rem;
    font-weight: 600;
    color: var(--navy);
    pointer-events: none;
}

.input-wrapper input[type="tel"] {
    width: 100%;
    padding: 16px 16px 16px 56px;
    font-size: 1.15rem;
    font-family: 'DM Sans', sans-serif;
    font-weight: 500;
    color: var(--navy);
    border: 2px solid var(--gray-200);
    border-radius: var(--radius-md);
    background: var(--gray-100);
    transition: all 0.25s ease;
    letter-spacing: 0.03em;
}

.input-wrapper input[type="tel"]:focus {
    outline: none;
    border-color: var(--gold);
    background: var(--white);
    box-shadow: 0 0 0 4px rgba(212,168,67,0.12);
}

.input-wrapper input[type="tel"]::placeholder {
    color: var(--gray-400);
    font-weight: 400;
}

.btn-search {
    padding: 16px 32px;
    background: linear-gradient(135deg, var(--gold), var(--gold-dark));
    color: var(--navy);
    border: none;
    border-radius: var(--radius-md);
    font-family: 'DM Sans', sans-serif;
    font-size: 1rem;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.25s ease;
    display: flex;
    align-items: center;
    gap: 8px;
    white-space: nowrap;
    box-shadow: 0 2px 8px rgba(212,168,67,0.3);
}

.btn-search:hover {
    transform: translateY(-1px);
    box-shadow: 0 4px 16px rgba(212,168,67,0.4);
    background: linear-gradient(135deg, var(--gold-light), var(--gold));
}

.btn-search:active {
    transform: translateY(0);
}

.search-hint {
    margin-top: 14px;
    font-size: 0.8rem;
    color: var(--gray-400);
    text-align: center;
}

.search-hint span {
    color: var(--green);
    font-weight: 600;
}

/* ---- TRUST BAR ---- */
.trust-bar {
    display: flex;
    justify-content: center;
    gap: 32px;
    margin-top: 40px;
    flex-wrap: wrap;
    animation: fadeInUp 0.7s ease-out 0.5s both;
}

.trust-item {
    display: flex;
    align-items: center;
    gap: 8px;
    color: rgba(255,255,255,0.55);
    font-size: 0.82rem;
    font-weight: 500;
}

.trust-item svg {
    width: 18px;
    height: 18px;
    opacity: 0.7;
}

/* ---- STATS BAR ---- */
.stats-bar {
    background: var(--white);
    border-bottom: 1px solid var(--gray-200);
    padding: 24px;
}

.stats-inner {
    max-width: 900px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    text-align: center;
}

.stat-item strong {
    display: block;
    font-family: 'DM Serif Display', serif;
    font-size: 1.6rem;
    color: var(--navy);
    margin-bottom: 2px;
}

.stat-item span {
    font-size: 0.78rem;
    color: var(--gray-600);
    text-transform: uppercase;
    letter-spacing: 0.06em;
    font-weight: 500;
}

/* ---- SECTION COMMONS ---- */
.section {
    padding: 72px 24px;
}

.section-dark {
    background: var(--navy);
    color: var(--white);
}

.section-alt {
    background: var(--white);
}

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

.section-header h2 {
    font-family: 'DM Serif Display', serif;
    font-size: clamp(1.6rem, 3vw, 2.2rem);
    color: var(--navy);
    margin-bottom: 12px;
    letter-spacing: -0.02em;
}

.section-dark .section-header h2 {
    color: var(--white);
}

.section-header p {
    font-size: 1rem;
    color: var(--gray-600);
    line-height: 1.7;
}

.section-dark .section-header p {
    color: rgba(255,255,255,0.6);
}

/* ---- HOW IT WORKS ---- */
.steps-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
    max-width: 960px;
    margin: 0 auto;
}

.step-card {
    text-align: center;
    padding: 36px 28px;
    background: var(--white);
    border-radius: var(--radius-lg);
    border: 1px solid var(--gray-200);
    position: relative;
    transition: all 0.3s ease;
}

.step-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
    border-color: var(--gold);
}

.step-number {
    width: 48px;
    height: 48px;
    background: linear-gradient(135deg, var(--navy), var(--navy-light));
    color: var(--gold);
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-family: 'DM Serif Display', serif;
    font-size: 1.2rem;
    margin-bottom: 20px;
}

.step-card h3 {
    font-family: 'DM Serif Display', serif;
    font-size: 1.15rem;
    color: var(--navy);
    margin-bottom: 10px;
}

.step-card p {
    font-size: 0.9rem;
    color: var(--gray-600);
    line-height: 1.6;
}

/* ---- BENEFITS ---- */
.benefits-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    max-width: 800px;
    margin: 0 auto;
}

.benefit-card {
    display: flex;
    gap: 16px;
    padding: 24px;
    background: rgba(255,255,255,0.04);
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: var(--radius-md);
    transition: all 0.25s ease;
}

.benefit-card:hover {
    background: rgba(255,255,255,0.08);
    border-color: rgba(212,168,67,0.3);
}

.benefit-icon {
    width: 44px;
    height: 44px;
    min-width: 44px;
    background: rgba(212,168,67,0.12);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
}

.benefit-card h4 {
    font-size: 0.95rem;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 4px;
}

.benefit-card p {
    font-size: 0.85rem;
    color: rgba(255,255,255,0.55);
    line-height: 1.5;
}

/* ---- TESTIMONIALS ---- */
.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    max-width: 960px;
    margin: 0 auto;
}

.testimonial-card {
    background: var(--white);
    border-radius: var(--radius-md);
    padding: 28px;
    border: 1px solid var(--gray-200);
    transition: all 0.25s ease;
}

.testimonial-card:hover {
    box-shadow: var(--shadow-md);
}

.stars {
    color: var(--gold);
    font-size: 0.9rem;
    margin-bottom: 12px;
    letter-spacing: 2px;
}

.testimonial-card blockquote {
    font-size: 0.9rem;
    color: var(--gray-800);
    line-height: 1.65;
    margin-bottom: 16px;
    font-style: italic;
}

.testimonial-author {
    font-size: 0.8rem;
    font-weight: 600;
    color: var(--navy);
}

.testimonial-author span {
    font-weight: 400;
    color: var(--gray-400);
}

/* ---- FAQ ---- */
.faq-list {
    max-width: 700px;
    margin: 0 auto;
}

.faq-item {
    border-bottom: 1px solid var(--gray-200);
    padding: 20px 0;
}

.faq-item summary {
    font-weight: 600;
    font-size: 1rem;
    color: var(--navy);
    cursor: pointer;
    list-style: none;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 16px;
}

.faq-item summary::after {
    content: '+';
    font-size: 1.3rem;
    color: var(--gold);
    font-weight: 300;
    transition: transform 0.3s ease;
}

.faq-item[open] summary::after {
    transform: rotate(45deg);
}

.faq-item p {
    margin-top: 12px;
    font-size: 0.9rem;
    color: var(--gray-600);
    line-height: 1.7;
    padding-right: 40px;
}

/* ---- SEO CONTENT ---- */
.seo-content {
    max-width: 760px;
    margin: 0 auto;
}

.seo-content h2 {
    font-family: 'DM Serif Display', serif;
    font-size: 1.5rem;
    color: var(--navy);
    margin-bottom: 16px;
}

.seo-content h3 {
    font-family: 'DM Serif Display', serif;
    font-size: 1.15rem;
    color: var(--navy);
    margin-top: 28px;
    margin-bottom: 10px;
}

.seo-content p {
    font-size: 0.95rem;
    color: var(--gray-600);
    margin-bottom: 14px;
    line-height: 1.75;
}

/* ---- CTA SECTION ---- */
.cta-section {
    text-align: center;
    padding: 64px 24px;
    background: linear-gradient(135deg, var(--navy) 0%, var(--navy-mid) 100%);
    position: relative;
}

.cta-section h2 {
    font-family: 'DM Serif Display', serif;
    font-size: clamp(1.5rem, 3vw, 2rem);
    color: var(--white);
    margin-bottom: 12px;
}

.cta-section p {
    color: rgba(255,255,255,0.6);
    margin-bottom: 28px;
}

.btn-cta {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 16px 36px;
    background: linear-gradient(135deg, var(--gold), var(--gold-dark));
    color: var(--navy);
    text-decoration: none;
    border-radius: var(--radius-md);
    font-weight: 700;
    font-size: 1rem;
    transition: all 0.25s ease;
    box-shadow: 0 4px 16px rgba(212,168,67,0.3);
}

.btn-cta:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 24px rgba(212,168,67,0.4);
}

/* ---- FOOTER ---- */
.site-footer {
    background: var(--navy);
    border-top: 1px solid rgba(255,255,255,0.06);
    padding: 48px 24px 32px;
    margin-top: auto;
}

.footer-inner {
    max-width: 960px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 40px;
}

.footer-brand .logo {
    margin-bottom: 14px;
}

.footer-brand p {
    font-size: 0.85rem;
    color: rgba(255,255,255,0.4);
    line-height: 1.6;
    max-width: 280px;
}

.footer-col h4 {
    font-size: 0.78rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: rgba(255,255,255,0.5);
    margin-bottom: 16px;
}

.footer-col a {
    display: block;
    font-size: 0.88rem;
    color: rgba(255,255,255,0.55);
    text-decoration: none;
    padding: 4px 0;
    transition: color 0.2s ease;
}

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

.footer-bottom {
    max-width: 960px;
    margin: 32px auto 0;
    padding-top: 24px;
    border-top: 1px solid rgba(255,255,255,0.06);
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 0.78rem;
    color: rgba(255,255,255,0.3);
}

.footer-bottom a {
    color: rgba(255,255,255,0.4);
    text-decoration: none;
}

.footer-bottom a:hover {
    color: var(--gold-light);
}

/* ---- LEAD PAGE ---- */
.page-lead {
    padding: 48px 24px 72px;
    max-width: 1040px;
    margin: 0 auto;
}

.lead-layout {
    display: grid;
    grid-template-columns: 1fr 400px;
    gap: 48px;
    align-items: start;
}

.lead-result {
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: 36px;
    box-shadow: var(--shadow-md);
    border: 1px solid var(--gray-200);
}

.result-header {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 28px;
    padding-bottom: 20px;
    border-bottom: 1px solid var(--gray-200);
}

.result-icon {
    width: 56px;
    height: 56px;
    background: var(--green-light);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.4rem;
}

.result-header h2 {
    font-family: 'DM Serif Display', serif;
    font-size: 1.3rem;
    color: var(--navy);
    margin-bottom: 2px;
}

.result-header p {
    font-size: 0.85rem;
    color: var(--green);
    font-weight: 600;
}

.result-preview {
    background: var(--gray-100);
    border-radius: var(--radius-md);
    padding: 24px;
    margin-bottom: 24px;
}

.result-row {
    display: flex;
    justify-content: space-between;
    padding: 10px 0;
    border-bottom: 1px solid var(--gray-200);
    font-size: 0.9rem;
}

.result-row:last-child {
    border-bottom: none;
}

.result-row .label {
    color: var(--gray-600);
    font-weight: 500;
}

.result-row .value {
    font-weight: 600;
    color: var(--navy);
}

.result-row .value.blurred {
    filter: blur(5px);
    user-select: none;
    color: var(--gray-600);
}

.result-note {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    background: #FFF8E7;
    border: 1px solid #F0DCA0;
    border-radius: var(--radius-sm);
    padding: 14px;
    font-size: 0.82rem;
    color: var(--gray-800);
    line-height: 1.5;
}

.result-note strong {
    color: var(--gold-dark);
}

/* Lead Form */
.lead-form-wrapper {
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: 36px;
    box-shadow: var(--shadow-lg);
    border: 2px solid var(--gold);
    position: sticky;
    top: 100px;
}

.lead-form-wrapper h3 {
    font-family: 'DM Serif Display', serif;
    font-size: 1.3rem;
    color: var(--navy);
    margin-bottom: 6px;
}

.lead-form-wrapper > p {
    font-size: 0.88rem;
    color: var(--gray-600);
    margin-bottom: 24px;
}

.price-tag {
    display: inline-flex;
    align-items: baseline;
    gap: 6px;
    background: var(--green-light);
    border: 1px solid #B8E6CF;
    padding: 8px 16px;
    border-radius: var(--radius-sm);
    margin-bottom: 24px;
}

.price-tag .amount {
    font-family: 'DM Serif Display', serif;
    font-size: 1.4rem;
    color: var(--navy);
}

.price-tag .note {
    font-size: 0.78rem;
    color: var(--gray-600);
}

.form-group {
    margin-bottom: 16px;
}

.form-group label {
    display: block;
    font-size: 0.82rem;
    font-weight: 600;
    color: var(--gray-800);
    margin-bottom: 6px;
}

.form-group label .req {
    color: var(--red-soft);
}

.form-group input,
.form-group select {
    width: 100%;
    padding: 12px 14px;
    font-family: 'DM Sans', sans-serif;
    font-size: 0.95rem;
    border: 2px solid var(--gray-200);
    border-radius: var(--radius-sm);
    background: var(--gray-100);
    color: var(--navy);
    transition: all 0.2s ease;
}

.form-group input:focus,
.form-group select:focus {
    outline: none;
    border-color: var(--gold);
    background: var(--white);
    box-shadow: 0 0 0 3px rgba(212,168,67,0.1);
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
}

.btn-submit {
    width: 100%;
    padding: 16px;
    background: linear-gradient(135deg, var(--gold), var(--gold-dark));
    color: var(--navy);
    border: none;
    border-radius: var(--radius-md);
    font-family: 'DM Sans', sans-serif;
    font-size: 1rem;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.25s ease;
    box-shadow: 0 4px 12px rgba(212,168,67,0.3);
    margin-top: 8px;
}

.btn-submit:hover {
    transform: translateY(-1px);
    box-shadow: 0 6px 20px rgba(212,168,67,0.4);
}

.form-secure {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    margin-top: 14px;
    font-size: 0.78rem;
    color: var(--gray-400);
}

.form-guarantee {
    text-align: center;
    margin-top: 16px;
    padding-top: 16px;
    border-top: 1px solid var(--gray-200);
    font-size: 0.8rem;
    color: var(--gray-600);
    line-height: 1.5;
}

/* ---- CONFIRMATION PAGE ---- */
.confirmation-wrapper {
    max-width: 600px;
    margin: 60px auto;
    padding: 0 24px;
    text-align: center;
}

.confirmation-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: 48px 40px;
    box-shadow: var(--shadow-lg);
    border: 1px solid var(--gray-200);
}

.confirmation-icon {
    width: 72px;
    height: 72px;
    background: var(--green-light);
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    margin-bottom: 24px;
}

.confirmation-card h1 {
    font-family: 'DM Serif Display', serif;
    font-size: 1.6rem;
    color: var(--navy);
    margin-bottom: 12px;
}

.confirmation-card > p {
    font-size: 0.95rem;
    color: var(--gray-600);
    margin-bottom: 28px;
    line-height: 1.7;
}

.confirmation-details {
    background: var(--gray-100);
    border-radius: var(--radius-md);
    padding: 24px;
    text-align: left;
    margin-bottom: 28px;
}

.confirmation-details .detail-row {
    display: flex;
    justify-content: space-between;
    padding: 8px 0;
    font-size: 0.88rem;
}

.confirmation-details .detail-row .label {
    color: var(--gray-600);
}

.confirmation-details .detail-row .value {
    font-weight: 600;
    color: var(--navy);
}

.btn-home {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 14px 32px;
    background: var(--navy);
    color: var(--white);
    text-decoration: none;
    border-radius: var(--radius-md);
    font-weight: 600;
    font-size: 0.95rem;
    transition: all 0.25s ease;
}

.btn-home:hover {
    background: var(--navy-light);
    transform: translateY(-1px);
}

/* ---- ERROR MESSAGES ---- */
.error-msg {
    background: #FFF0EE;
    border: 1px solid #F5C4BE;
    color: var(--red-soft);
    padding: 12px 16px;
    border-radius: var(--radius-sm);
    font-size: 0.88rem;
    margin-bottom: 20px;
}

/* ---- PAGE HERO SMALL ---- */
.page-hero-sm {
    background: linear-gradient(170deg, var(--navy) 0%, var(--navy-light) 100%);
    padding: 56px 24px;
    text-align: center;
    position: relative;
}

.page-hero-sm::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(212,168,67,0.3), transparent);
}

.page-hero-inner {
    max-width: 600px;
    margin: 0 auto;
}

.page-hero-sm h1 {
    font-family: 'DM Serif Display', serif;
    font-size: clamp(1.6rem, 4vw, 2.4rem);
    color: var(--white);
    margin-bottom: 10px;
    letter-spacing: -0.02em;
}

.page-hero-sm p {
    font-size: 1rem;
    color: rgba(255,255,255,0.55);
}

/* ---- LEGAL / INFO CONTENT ---- */
.legal-content {
    max-width: 760px;
    margin: 0 auto;
}

.legal-content h2 {
    font-family: 'DM Serif Display', serif;
    font-size: 1.35rem;
    color: var(--navy);
    margin-top: 40px;
    margin-bottom: 14px;
    padding-top: 20px;
    border-top: 1px solid var(--gray-200);
}

.legal-content h2:first-child {
    margin-top: 0;
    padding-top: 0;
    border-top: none;
}

.legal-content h3 {
    font-family: 'DM Serif Display', serif;
    font-size: 1.08rem;
    color: var(--navy);
    margin-top: 24px;
    margin-bottom: 8px;
}

.legal-content p {
    font-size: 0.92rem;
    color: var(--gray-600);
    margin-bottom: 12px;
    line-height: 1.75;
}

.legal-content a {
    color: var(--navy-mid);
    text-decoration: underline;
    text-decoration-color: var(--gold);
    text-underline-offset: 3px;
    transition: color 0.2s ease;
}

.legal-content a:hover {
    color: var(--gold-dark);
}

.legal-info-box {
    background: var(--gray-100);
    border-left: 4px solid var(--gold);
    border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
    padding: 20px 24px;
    margin: 16px 0 20px;
}

.legal-info-box p {
    margin-bottom: 4px;
    font-size: 0.88rem;
    color: var(--gray-800);
}

.legal-update {
    margin-top: 40px;
    padding-top: 20px;
    border-top: 1px solid var(--gray-200);
    font-size: 0.82rem !important;
    color: var(--gray-400) !important;
    font-style: italic;
}

/* ---- CONTACT PAGE ---- */
.contact-layout {
    max-width: 800px;
    margin: 0 auto;
}

.contact-info-cards {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}

.contact-card {
    background: var(--white);
    border: 1px solid var(--gray-200);
    border-radius: var(--radius-md);
    padding: 28px;
    transition: all 0.25s ease;
}

.contact-card:hover {
    border-color: var(--gold);
    box-shadow: var(--shadow-md);
    transform: translateY(-2px);
}

.contact-card-icon {
    font-size: 1.6rem;
    margin-bottom: 14px;
}

.contact-card h3 {
    font-family: 'DM Serif Display', serif;
    font-size: 1.05rem;
    color: var(--navy);
    margin-bottom: 8px;
}

.contact-card p {
    font-size: 0.88rem;
    color: var(--gray-600);
    line-height: 1.6;
}

.contact-card a {
    color: var(--navy-mid);
    text-decoration: underline;
    text-decoration-color: var(--gold);
    text-underline-offset: 3px;
}

.contact-card a:hover {
    color: var(--gold-dark);
}

.contact-card-note {
    font-size: 0.78rem !important;
    color: var(--gray-400) !important;
    margin-top: 4px;
}

/* ---- PRICING PAGE ---- */
.pricing-center {
    max-width: 460px;
    margin: 0 auto;
}

.pricing-card {
    background: var(--white);
    border: 2px solid var(--gold);
    border-radius: var(--radius-lg);
    padding: 40px 36px;
    text-align: center;
    position: relative;
    box-shadow: var(--shadow-lg);
}

.pricing-badge {
    position: absolute;
    top: -14px;
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(135deg, var(--gold), var(--gold-dark));
    color: var(--navy);
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    padding: 6px 20px;
    border-radius: 100px;
    white-space: nowrap;
}

.pricing-amount {
    display: flex;
    align-items: baseline;
    justify-content: center;
    gap: 4px;
    margin: 24px 0 8px;
}

.pricing-amount .currency {
    font-family: 'DM Serif Display', serif;
    font-size: 1.6rem;
    color: var(--navy);
}

.pricing-amount .price {
    font-family: 'DM Serif Display', serif;
    font-size: 3.5rem;
    color: var(--navy);
    line-height: 1;
}

.pricing-amount .per {
    font-size: 0.9rem;
    color: var(--gray-600);
    font-weight: 500;
}

.pricing-tagline {
    font-size: 0.88rem;
    color: var(--green);
    font-weight: 600;
    margin-bottom: 28px;
}

.pricing-features {
    list-style: none;
    text-align: left;
    margin-bottom: 28px;
}

.pricing-features li {
    font-size: 0.88rem;
    color: var(--gray-600);
    padding: 8px 0;
    border-bottom: 1px solid var(--gray-100);
    line-height: 1.5;
}

.pricing-features li:last-child {
    border-bottom: none;
}

/* ---- ANIMATIONS ---- */
@keyframes fadeInUp {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}

@keyframes fadeInDown {
    from { opacity: 0; transform: translateY(-10px); }
    to { opacity: 1; transform: translateY(0); }
}

/* ---- RESPONSIVE ---- */
@media (max-width: 768px) {
    .header-badge { display: none; }
    
    .hero { padding: 48px 20px 56px; }
    
    .input-group { flex-direction: column; }
    
    .btn-search { justify-content: center; }
    
    .trust-bar { gap: 16px; }
    .trust-item { font-size: 0.75rem; }
    
    .stats-inner { grid-template-columns: 1fr; gap: 12px; }
    
    .steps-grid { grid-template-columns: 1fr; max-width: 400px; }
    
    .benefits-grid { grid-template-columns: 1fr; }
    
    .testimonials-grid { grid-template-columns: 1fr; max-width: 400px; }
    
    .lead-layout {
        grid-template-columns: 1fr;
    }
    
    .lead-form-wrapper {
        position: static;
    }
    
    .footer-inner { grid-template-columns: 1fr; gap: 28px; }
    
    .footer-bottom { flex-direction: column; gap: 8px; text-align: center; }
    
    .form-row { grid-template-columns: 1fr; }
    
    .contact-info-cards { grid-template-columns: 1fr; }
}
