/*
Theme Name: Placements Trésorerie
Theme URI: https://placements-tresorerie.fr
Author: Invest'Aide
Author URI: https://invest-aide.fr
Description: Thème sur mesure pour placements-tresorerie.fr - Conseils en placement de trésorerie d'entreprise
Version: 1.0.0
License: GNU General Public License v2 or later
Text Domain: placements-tresorerie
Tags: business, finance, lead-generation, responsive
*/

/* =============================================
   IMPORT FONTS
   ============================================= */
@import url('https://fonts.googleapis.com/css2?family=Spectral:wght@400;500;600;700&family=Poppins:wght@300;400;500;600;700&display=swap');

/* =============================================
   CSS VARIABLES
   ============================================= */
:root {
    --navy:        #001F5C;
    --navy-dark:   #001244;
    --navy-light:  #0a2d6e;
    --gold:        #C7A252;
    --gold-dark:   #a8883e;
    --gold-light:  #d4b46a;
    --white:       #FFFFFF;
    --off-white:   #F7FBFC;
    --grey-light:  #F5F5F5;
    --grey-mid:    #E8E8E8;
    --grey-text:   #6b7280;
    --dark-text:   #1a1a2e;
    --body-text:   #374151;

    --font-serif:  'Spectral', Georgia, serif;
    --font-sans:   'Poppins', system-ui, sans-serif;

    --radius:      8px;
    --radius-lg:   16px;
    --shadow:      0 4px 20px rgba(0,31,92,0.10);
    --shadow-lg:   0 8px 40px rgba(0,31,92,0.15);

    --max-width:   1200px;
    --section-pad: 80px 20px;
}

/* =============================================
   RESET & BASE
   ============================================= */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

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

body {
    font-family: var(--font-sans);
    color: var(--body-text);
    background: var(--white);
    line-height: 1.7;
    -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; height: auto; display: block; }
a { color: var(--navy); text-decoration: none; transition: color .2s; }
a:hover { color: var(--gold); }
ul { list-style: none; }

.container {
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 0 20px;
}

/* =============================================
   TYPOGRAPHY
   ============================================= */
h1, h2, h3, h4 {
    font-family: var(--font-serif);
    color: var(--navy);
    line-height: 1.25;
    font-weight: 700;
}

h1 { font-size: clamp(2rem, 4vw, 3.25rem); }
h2 { font-size: clamp(1.6rem, 3vw, 2.5rem); }
h3 { font-size: clamp(1.2rem, 2vw, 1.75rem); }
h4 { font-size: 1.25rem; }

p { margin-bottom: 1rem; }
p:last-child { margin-bottom: 0; }

.lead {
    font-size: 1.2rem;
    color: var(--grey-text);
    line-height: 1.8;
}

.section-title {
    text-align: center;
    margin-bottom: 16px;
}

.section-subtitle {
    text-align: center;
    color: var(--grey-text);
    font-size: 1.1rem;
    max-width: 640px;
    margin: 0 auto 56px;
    line-height: 1.8;
}

.gold-label {
    display: inline-block;
    color: var(--gold);
    font-family: var(--font-sans);
    font-weight: 600;
    font-size: .85rem;
    letter-spacing: .12em;
    text-transform: uppercase;
    margin-bottom: 12px;
}

/* =============================================
   BUTTONS
   ============================================= */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 14px 32px;
    border-radius: var(--radius);
    font-family: var(--font-sans);
    font-weight: 600;
    font-size: .95rem;
    cursor: pointer;
    transition: all .25s ease;
    border: 2px solid transparent;
    text-decoration: none;
    white-space: nowrap;
}

.btn-primary {
    background: var(--gold);
    color: var(--white);
    border-color: var(--gold);
}
.btn-primary:hover {
    background: var(--gold-dark);
    border-color: var(--gold-dark);
    color: var(--white);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(199,162,82,.4);
}

.btn-secondary {
    background: transparent;
    color: var(--white);
    border-color: var(--white);
}
.btn-secondary:hover {
    background: var(--white);
    color: var(--navy);
}

.btn-outline {
    background: transparent;
    color: var(--navy);
    border-color: var(--navy);
}
.btn-outline:hover {
    background: var(--navy);
    color: var(--white);
}

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

/* =============================================
   HEADER & NAVIGATION
   ============================================= */
#site-header {
    position: sticky;
    top: 0;
    z-index: 1000;
    background: var(--white);
    box-shadow: 0 2px 20px rgba(0,31,92,.08);
}

.header-top {
    background: var(--navy);
    padding: 8px 0;
    text-align: center;
    font-size: .85rem;
    color: rgba(255,255,255,.8);
}

.header-top a { color: var(--gold); font-weight: 600; }

.header-main {
    padding: 16px 0;
}

.header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
}

.site-logo {
    display: flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
}

.logo-icon {
    width: 44px;
    height: 44px;
    background: var(--navy);
    border-radius: var(--radius);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.4rem;
}

.logo-text {
    display: flex;
    flex-direction: column;
    line-height: 1.1;
}

.logo-text strong {
    font-family: var(--font-serif);
    font-size: 1.2rem;
    color: var(--navy);
    font-weight: 700;
}

.logo-text span {
    font-size: .72rem;
    color: var(--grey-text);
    letter-spacing: .05em;
    text-transform: uppercase;
    font-weight: 500;
}

/* Main Nav */
.main-nav { display: flex; align-items: center; gap: 4px; }

.main-nav > li { position: relative; }

.main-nav > li > a {
    display: block;
    padding: 10px 14px;
    font-size: .9rem;
    font-weight: 500;
    color: var(--dark-text);
    border-radius: var(--radius);
    transition: all .2s;
}

.main-nav > li > a:hover,
.main-nav > li.current-menu-item > a {
    background: var(--grey-light);
    color: var(--navy);
}

/* Dropdown */
.main-nav .sub-menu {
    position: absolute;
    top: calc(100% + 8px);
    left: 0;
    background: var(--white);
    border-radius: var(--radius);
    box-shadow: var(--shadow-lg);
    min-width: 280px;
    padding: 8px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-8px);
    transition: all .2s;
    border-top: 3px solid var(--gold);
}

.main-nav li:hover > .sub-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.main-nav .sub-menu a {
    display: block;
    padding: 10px 14px;
    font-size: .88rem;
    color: var(--body-text);
    border-radius: 6px;
    transition: all .15s;
}

.main-nav .sub-menu a:hover {
    background: var(--grey-light);
    color: var(--navy);
    padding-left: 20px;
}

.header-cta {
    display: flex;
    align-items: center;
    gap: 12px;
    flex-shrink: 0;
}

/* Mobile menu toggle */
.menu-toggle {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
    flex-direction: column;
    gap: 5px;
}

.menu-toggle span {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--navy);
    border-radius: 2px;
    transition: all .3s;
}

/* =============================================
   HERO SECTION
   ============================================= */
.hero {
    background: linear-gradient(135deg, var(--navy) 0%, var(--navy-light) 60%, #0d3580 100%);
    padding: 80px 0 100px;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -10%;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(199,162,82,.12) 0%, transparent 70%);
    pointer-events: none;
}

.hero::after {
    content: '';
    position: absolute;
    bottom: -30%;
    right: -5%;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(199,162,82,.08) 0%, transparent 70%);
    pointer-events: none;
}

.hero-grid {
    display: grid;
    grid-template-columns: 1fr 420px;
    gap: 60px;
    align-items: center;
    position: relative;
    z-index: 1;
}

.hero-content h1 { color: var(--white); margin-bottom: 24px; }

.hero-content .hero-subtitle {
    color: rgba(255,255,255,.8);
    font-size: 1.15rem;
    margin-bottom: 36px;
    line-height: 1.8;
}

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

.hero-badge {
    display: flex;
    align-items: center;
    gap: 8px;
    background: rgba(255,255,255,.1);
    border: 1px solid rgba(255,255,255,.2);
    border-radius: 50px;
    padding: 8px 16px;
    font-size: .82rem;
    color: rgba(255,255,255,.9);
    font-weight: 500;
    backdrop-filter: blur(4px);
}

.hero-badge .badge-icon { color: var(--gold); font-size: 1rem; }

/* Lead Form Card */
.hero-form-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: 36px 32px;
    box-shadow: 0 20px 60px rgba(0,0,0,.25);
    position: relative;
}

.hero-form-card::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--gold), var(--gold-light));
    border-radius: var(--radius-lg) var(--radius-lg) 0 0;
}

.hero-form-card h3 {
    font-size: 1.35rem;
    margin-bottom: 6px;
    color: var(--navy);
}

.hero-form-card .form-subtitle {
    font-size: .88rem;
    color: var(--grey-text);
    margin-bottom: 24px;
}

/* GHL Calendar Embed */
.ghl-calendar-embed {
    width: 100%;
    min-height: 480px;
    border: none;
    border-radius: var(--radius);
}

/* =============================================
   STATS BAND
   ============================================= */
.stats-band {
    background: var(--off-white);
    border-bottom: 1px solid var(--grey-mid);
    padding: 32px 0;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
    text-align: center;
}

.stat-item { padding: 0 16px; }

.stat-number {
    font-family: var(--font-serif);
    font-size: 2.2rem;
    font-weight: 700;
    color: var(--navy);
    line-height: 1;
    margin-bottom: 6px;
}

.stat-number .stat-unit { color: var(--gold); font-size: 1.4rem; }

.stat-label {
    font-size: .85rem;
    color: var(--grey-text);
    font-weight: 500;
}

/* =============================================
   PLACEMENTS GRID
   ============================================= */
.section { padding: var(--section-pad); }
.section-light { background: var(--off-white); }
.section-dark { background: var(--navy); }
.section-dark h2, .section-dark h3, .section-dark p { color: var(--white); }
.section-dark .section-subtitle { color: rgba(255,255,255,.7); }

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

.placement-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: transform .25s, box-shadow .25s;
    display: flex;
    flex-direction: column;
    border: 1px solid var(--grey-mid);
}

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

.card-header-bar {
    height: 6px;
    background: linear-gradient(90deg, var(--navy), var(--navy-light));
}

.placement-card.featured .card-header-bar {
    background: linear-gradient(90deg, var(--gold), var(--gold-light));
}

.card-body { padding: 28px 24px; flex: 1; }

.card-icon {
    width: 52px;
    height: 52px;
    background: var(--grey-light);
    border-radius: var(--radius);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    margin-bottom: 18px;
}

.placement-card.featured .card-icon {
    background: rgba(199,162,82,.12);
}

.card-body h3 { font-size: 1.25rem; margin-bottom: 10px; }

.card-body p { font-size: .9rem; color: var(--grey-text); margin-bottom: 16px; }

.card-meta {
    display: flex;
    gap: 16px;
    margin-bottom: 20px;
}

.card-meta-item {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.meta-label { font-size: .75rem; color: var(--grey-text); text-transform: uppercase; letter-spacing: .05em; font-weight: 500; }
.meta-value { font-size: 1.05rem; font-weight: 700; color: var(--navy); font-family: var(--font-serif); }

.card-tags { display: flex; flex-wrap: wrap; gap: 6px; margin-top: 16px; }

.tag {
    background: var(--grey-light);
    color: var(--grey-text);
    font-size: .75rem;
    padding: 4px 10px;
    border-radius: 50px;
    font-weight: 500;
}

.tag-gold {
    background: rgba(199,162,82,.12);
    color: var(--gold-dark);
}

.card-footer { padding: 16px 24px; border-top: 1px solid var(--grey-mid); }
.card-footer .btn { width: 100%; justify-content: center; }

/* =============================================
   WHY US SECTION
   ============================================= */
.why-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 28px;
    margin-top: 48px;
}

.why-item {
    display: flex;
    gap: 20px;
    background: rgba(255,255,255,.06);
    border: 1px solid rgba(255,255,255,.1);
    border-radius: var(--radius-lg);
    padding: 28px;
}

.why-icon {
    width: 48px;
    height: 48px;
    background: rgba(199,162,82,.15);
    border-radius: var(--radius);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.4rem;
    flex-shrink: 0;
}

.why-text h4 { color: var(--white); font-size: 1.05rem; margin-bottom: 8px; }
.why-text p { color: rgba(255,255,255,.65); font-size: .88rem; line-height: 1.7; margin: 0; }

/* =============================================
   PROCESS SECTION
   ============================================= */
.process-steps {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 32px;
    margin-top: 56px;
    position: relative;
}

.process-steps::before {
    content: '';
    position: absolute;
    top: 28px;
    left: 12.5%;
    right: 12.5%;
    height: 2px;
    background: linear-gradient(90deg, var(--gold), var(--gold-light));
}

.process-step { text-align: center; position: relative; }

.step-number {
    width: 56px;
    height: 56px;
    background: var(--navy);
    border: 3px solid var(--gold);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-serif);
    font-weight: 700;
    font-size: 1.2rem;
    color: var(--gold);
    margin: 0 auto 20px;
    position: relative;
    z-index: 1;
    background: var(--white);
}

.process-step h4 { font-size: 1rem; margin-bottom: 8px; }
.process-step p { font-size: .85rem; color: var(--grey-text); margin: 0; }

/* =============================================
   TESTIMONIALS
   ============================================= */
.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin-top: 48px;
}

.testimonial-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: 28px;
    box-shadow: var(--shadow);
    border: 1px solid var(--grey-mid);
    position: relative;
}

.testimonial-card::before {
    content: '"';
    position: absolute;
    top: 16px;
    left: 24px;
    font-family: var(--font-serif);
    font-size: 4rem;
    color: var(--gold);
    opacity: .3;
    line-height: 1;
}

.testimonial-stars { color: var(--gold); font-size: 1rem; margin-bottom: 16px; padding-top: 8px; }
.testimonial-text { font-size: .9rem; color: var(--body-text); line-height: 1.7; margin-bottom: 20px; font-style: italic; }

.testimonial-author { display: flex; align-items: center; gap: 12px; }
.author-avatar {
    width: 44px; height: 44px;
    background: var(--navy);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    color: var(--white);
    font-size: .9rem;
    flex-shrink: 0;
}
.author-name { font-weight: 600; font-size: .9rem; color: var(--navy); }
.author-role { font-size: .8rem; color: var(--grey-text); }

/* =============================================
   BLOG / ARTICLES
   ============================================= */
.blog-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
    margin-top: 48px;
}

.blog-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow);
    border: 1px solid var(--grey-mid);
    transition: transform .25s, box-shadow .25s;
    display: flex;
    flex-direction: column;
}

.blog-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }

.blog-card-img {
    height: 200px;
    background: linear-gradient(135deg, var(--navy) 0%, var(--navy-light) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 3rem;
    color: rgba(199,162,82,.5);
    overflow: hidden;
}

.blog-card-img img { width: 100%; height: 100%; object-fit: cover; }

.blog-card-body { padding: 24px; flex: 1; }

.blog-cat {
    display: inline-block;
    background: rgba(199,162,82,.12);
    color: var(--gold-dark);
    font-size: .75rem;
    padding: 4px 10px;
    border-radius: 50px;
    font-weight: 600;
    letter-spacing: .04em;
    text-transform: uppercase;
    margin-bottom: 12px;
}

.blog-card-body h3 { font-size: 1.1rem; margin-bottom: 10px; line-height: 1.4; }
.blog-card-body p { font-size: .85rem; color: var(--grey-text); }

.blog-card-footer {
    padding: 14px 24px;
    border-top: 1px solid var(--grey-mid);
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: .82rem;
    color: var(--grey-text);
}

/* =============================================
   CTA BANNER
   ============================================= */
.cta-banner {
    background: linear-gradient(135deg, var(--navy) 0%, var(--navy-light) 100%);
    padding: 80px 0;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.cta-banner::before {
    content: '';
    position: absolute;
    inset: 0;
    background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23C7A252' fill-opacity='0.04'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}

.cta-banner h2 { color: var(--white); margin-bottom: 16px; position: relative; }
.cta-banner p { color: rgba(255,255,255,.75); max-width: 600px; margin: 0 auto 36px; position: relative; font-size: 1.1rem; }

.cta-buttons { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; position: relative; }

/* =============================================
   FOOTER
   ============================================= */
#site-footer {
    background: var(--navy-dark);
    color: rgba(255,255,255,.7);
    padding: 64px 0 0;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1.5fr;
    gap: 48px;
    padding-bottom: 48px;
    border-bottom: 1px solid rgba(255,255,255,.1);
}

.footer-brand .logo-text strong { color: var(--white); }
.footer-brand .logo-text span { color: rgba(255,255,255,.5); }

.footer-desc {
    font-size: .88rem;
    line-height: 1.7;
    margin: 16px 0 24px;
    color: rgba(255,255,255,.55);
}

.footer-col h5 {
    font-family: var(--font-sans);
    font-size: .82rem;
    font-weight: 700;
    letter-spacing: .1em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 20px;
}

.footer-col ul { display: flex; flex-direction: column; gap: 10px; }

.footer-col ul li a {
    font-size: .88rem;
    color: rgba(255,255,255,.6);
    transition: color .2s;
}

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

.footer-mentions {
    font-size: .8rem;
    color: rgba(255,255,255,.45);
    line-height: 1.6;
}

.footer-bottom {
    padding: 20px 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: .82rem;
    color: rgba(255,255,255,.35);
    flex-wrap: wrap;
    gap: 12px;
}

.footer-bottom a { color: rgba(255,255,255,.45); }
.footer-bottom a:hover { color: var(--gold); }

/* =============================================
   PAGE INTERIOR
   ============================================= */
.page-hero {
    background: linear-gradient(135deg, var(--navy) 0%, var(--navy-light) 100%);
    padding: 64px 0;
    text-align: center;
}

.page-hero h1 { color: var(--white); margin-bottom: 16px; }
.page-hero .breadcrumb { color: rgba(255,255,255,.6); font-size: .9rem; }
.page-hero .breadcrumb a { color: var(--gold); }

.page-content { padding: 64px 0; }

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

/* Sidebar */
.sidebar { position: sticky; top: 90px; }

.sidebar-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: 28px;
    box-shadow: var(--shadow);
    border: 1px solid var(--grey-mid);
    margin-bottom: 24px;
}

.sidebar-card h4 {
    font-size: 1.05rem;
    margin-bottom: 16px;
    padding-bottom: 12px;
    border-bottom: 2px solid var(--gold);
}

/* Content rich text */
.rich-content h2 { margin: 40px 0 16px; font-size: 1.8rem; }
.rich-content h3 { margin: 32px 0 12px; font-size: 1.35rem; }
.rich-content p { margin-bottom: 18px; line-height: 1.8; }
.rich-content ul, .rich-content ol { padding-left: 24px; margin-bottom: 18px; }
.rich-content li { margin-bottom: 8px; line-height: 1.7; }
.rich-content strong { color: var(--navy); }

.info-box {
    background: rgba(0,31,92,.05);
    border-left: 4px solid var(--navy);
    border-radius: 0 var(--radius) var(--radius) 0;
    padding: 20px 24px;
    margin: 24px 0;
}

.info-box.gold { border-color: var(--gold); background: rgba(199,162,82,.07); }
.info-box.green { border-color: #22c55e; background: rgba(34,197,94,.06); }
.info-box.red { border-color: #ef4444; background: rgba(239,68,68,.06); }

.info-box h5 { font-size: .95rem; font-weight: 700; margin-bottom: 8px; color: var(--navy); }
.info-box p { font-size: .9rem; margin: 0; line-height: 1.6; }

/* Comparison Table */
.comparison-table { width: 100%; border-collapse: collapse; margin: 32px 0; border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow); }
.comparison-table th { background: var(--navy); color: var(--white); padding: 14px 18px; font-size: .85rem; font-weight: 600; text-align: left; }
.comparison-table td { padding: 14px 18px; font-size: .88rem; border-bottom: 1px solid var(--grey-mid); }
.comparison-table tr:last-child td { border-bottom: none; }
.comparison-table tr:nth-child(even) td { background: var(--off-white); }
.comparison-table .check { color: #22c55e; font-size: 1.1rem; }
.comparison-table .cross { color: #ef4444; font-size: 1.1rem; }
.comparison-table .highlight td { background: rgba(199,162,82,.1) !important; font-weight: 600; }

/* FAQ */
.faq-list { margin-top: 32px; }

.faq-item {
    border: 1px solid var(--grey-mid);
    border-radius: var(--radius);
    margin-bottom: 12px;
    overflow: hidden;
}

.faq-question {
    width: 100%;
    background: none;
    border: none;
    padding: 18px 24px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    font-family: var(--font-sans);
    font-size: .95rem;
    font-weight: 600;
    color: var(--navy);
    text-align: left;
    transition: background .2s;
}

.faq-question:hover { background: var(--grey-light); }

.faq-question .faq-icon {
    width: 24px; height: 24px;
    background: var(--navy);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
    flex-shrink: 0;
    transition: transform .25s;
}

.faq-item.open .faq-question .faq-icon { transform: rotate(45deg); }

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height .35s ease;
}

.faq-item.open .faq-answer { max-height: 400px; }

.faq-answer p {
    padding: 0 24px 20px;
    font-size: .9rem;
    color: var(--body-text);
    line-height: 1.7;
}

/* =============================================
   SINGLE POST
   ============================================= */
.post-header { padding: 64px 0 48px; background: var(--off-white); border-bottom: 1px solid var(--grey-mid); }
.post-meta { display: flex; gap: 16px; align-items: center; margin-bottom: 16px; font-size: .85rem; color: var(--grey-text); }
.post-meta .post-cat { background: rgba(199,162,82,.12); color: var(--gold-dark); padding: 4px 12px; border-radius: 50px; font-weight: 600; }
.post-body { padding: 56px 0; }
.post-layout { display: grid; grid-template-columns: 1fr 320px; gap: 48px; }

/* =============================================
   RESPONSIVE
   ============================================= */
@media (max-width: 1024px) {
    .hero-grid { grid-template-columns: 1fr; }
    .hero-form-card { max-width: 540px; margin: 0 auto; }
    .placements-grid { grid-template-columns: repeat(2, 1fr); }
    .footer-grid { grid-template-columns: 1fr 1fr; }
    .process-steps { grid-template-columns: repeat(2, 1fr); }
    .process-steps::before { display: none; }
    .page-layout, .post-layout { grid-template-columns: 1fr; }
    .sidebar { position: static; }
}

@media (max-width: 768px) {
    :root { --section-pad: 56px 16px; }
    .main-nav { display: none; }
    .menu-toggle { display: flex; }
    .stats-grid { grid-template-columns: repeat(2, 1fr); }
    .placements-grid, .why-grid, .testimonials-grid, .blog-grid { grid-template-columns: 1fr; }
    .process-steps { grid-template-columns: 1fr; }
    .footer-grid { grid-template-columns: 1fr; }
    .footer-bottom { flex-direction: column; text-align: center; }
    .hero-badges { gap: 8px; }
    .cta-buttons { flex-direction: column; align-items: center; }
    .header-cta .btn-secondary { display: none; }
}

@media (max-width: 480px) {
    .stats-grid { grid-template-columns: 1fr 1fr; }
    .hero { padding: 48px 0 64px; }
}
