/* ==========================================================================
   CERTIBIOCIDE FORMATION - DESIGN SYSTEM 2026
   Style global unifié, responsive & optimisé conversion / SEO / GEO
   ========================================================================== */

@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800&family=Outfit:wght@500;600;700;800&display=swap');

/* --- Variables & Tokens --- */
:root {
    --primary: #0f3d23;
    --primary-dark: #092615;
    --primary-light: #165b34;
    --primary-gradient: linear-gradient(135deg, #0f3d23 0%, #1c683c 100%);
    
    --accent: #10b981;
    --accent-light: #34d399;
    --accent-dark: #059669;
    --accent-glow: rgba(16, 185, 129, 0.2);
    --secondary-color: #10b981;
    --accent-color: #34d399;
    --primary-color: #0f3d23;
    
    --gold: #f59e0b;
    --gold-light: #fef3c7;
    --gold-border: #fcd34d;
    
    --dark: #0f172a;
    --dark-muted: #334155;
    --dark-text: #1e293b;
    --text-color: #1e293b;
    --text-light: #64748b;
    
    --bg-page: #f8fafc;
    --light-bg: #f8fafc;
    --bg-card: #ffffff;
    --bg-alt: #f1f5f9;
    
    --border: #e2e8f0;
    --border-subtle: #cbd5e1;
    
    --shadow-sm: 0 2px 4px rgba(15, 23, 42, 0.04), 0 1px 2px rgba(15, 23, 42, 0.06);
    --shadow-md: 0 4px 12px rgba(15, 23, 42, 0.08), 0 2px 4px rgba(15, 23, 42, 0.04);
    --shadow-lg: 0 12px 28px rgba(15, 23, 42, 0.1), 0 4px 8px rgba(15, 23, 42, 0.04);
    --shadow-xl: 0 20px 40px rgba(15, 61, 35, 0.15);
    
    --radius-sm: 6px;
    --radius-md: 10px;
    --radius-lg: 16px;
    --radius-xl: 24px;
    --radius-full: 9999px;
    
    --transition-fast: 0.15s ease;
    --transition: 0.25s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-slow: 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

/* --- Base & Reset --- */
*, *::before, *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

body {
    font-family: 'Inter', system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    color: var(--text-color);
    background-color: var(--bg-page);
    line-height: 1.65;
    overflow-x: hidden;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

/* --- Typography --- */
h1, h2, h3, h4, h5, h6 {
    font-family: 'Outfit', 'Inter', sans-serif;
    color: var(--dark);
    font-weight: 700;
    line-height: 1.25;
    letter-spacing: -0.02em;
}

h1 { font-size: clamp(2rem, 4vw + 1rem, 3.2rem); }
h2 { font-size: clamp(1.6rem, 2.5vw + 0.8rem, 2.4rem); }
h3 { font-size: clamp(1.25rem, 1.5vw + 0.5rem, 1.6rem); }
h4 { font-size: 1.2rem; }

p {
    margin-bottom: 1rem;
    color: var(--dark-muted);
}

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

a {
    color: var(--primary-light);
    text-decoration: none;
    transition: color var(--transition);
}

a:hover {
    color: var(--accent-dark);
}

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

/* --- Layout Containers --- */
.container,
.page-container,
.pricing-container,
.faq-container,
.container-blog {
    width: 100%;
    max-width: 1240px;
    margin-left: auto;
    margin-right: auto;
    padding-left: 1.25rem;
    padding-right: 1.25rem;
}

/* --- Badges & Chips --- */
.badge-pill {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.35rem 0.9rem;
    border-radius: var(--radius-full);
    font-size: 0.82rem;
    font-weight: 600;
    letter-spacing: 0.02em;
    text-transform: uppercase;
}

.badge-pill.success {
    background-color: #ecfdf5;
    color: #065f46;
    border: 1px solid #a7f3d0;
}

.badge-pill.warning {
    background-color: var(--gold-light);
    color: #92400e;
    border: 1px solid var(--gold-border);
}

.badge-pill.primary {
    background-color: rgba(15, 61, 35, 0.1);
    color: var(--primary);
    border: 1px solid rgba(15, 61, 35, 0.2);
}

/* --- Buttons --- */
.button,
.main-button,
.cta-button,
.submit-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.6rem;
    font-family: 'Inter', sans-serif;
    font-weight: 600;
    font-size: 1rem;
    padding: 0.85rem 1.8rem;
    border-radius: var(--radius-md);
    cursor: pointer;
    transition: all var(--transition);
    text-align: center;
    border: 1px solid transparent;
    text-decoration: none;
}

.button-primary,
.main-button {
    background: var(--primary-gradient);
    color: #ffffff !important;
    box-shadow: 0 4px 14px rgba(15, 61, 35, 0.3);
}

.button-primary:hover,
.main-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(15, 61, 35, 0.4);
    background: linear-gradient(135deg, #144f2e 0%, #227b47 100%);
    color: #ffffff !important;
}

.button-secondary,
.accent-button {
    background-color: #ffffff;
    color: var(--primary) !important;
    border: 1.5px solid var(--primary);
    box-shadow: var(--shadow-sm);
}

.button-secondary:hover,
.accent-button:hover {
    background-color: var(--bg-alt);
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
    color: var(--primary-dark) !important;
}

.button-accent {
    background: linear-gradient(135deg, var(--accent) 0%, var(--accent-dark) 100%);
    color: #ffffff !important;
    box-shadow: 0 4px 14px var(--accent-glow);
}

.button-accent:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(16, 185, 129, 0.4);
}

/* --- Section Headings --- */
.section-heading,
.section-header {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 3rem auto;
}

.section-heading h2,
.section-header h2,
.main-title {
    position: relative;
    display: inline-block;
    margin-bottom: 1rem;
    color: var(--dark);
}

.section-heading h2::after,
.section-header h2::after,
.main-title::after {
    content: '';
    display: block;
    width: 60px;
    height: 4px;
    background: linear-gradient(90deg, var(--accent), var(--primary-light));
    margin: 0.6rem auto 0 auto;
    border-radius: var(--radius-full);
}

.section-heading p,
.section-header p,
.subtitle-text {
    font-size: 1.1rem;
    color: var(--text-light);
    margin-top: 0.5rem;
}

/* --- Hero Section --- */
.hero {
    background: linear-gradient(145deg, #092615 0%, #0f3d23 50%, #164d2d 100%);
    color: #ffffff;
    padding: 5.5rem 1.5rem 4.5rem 1.5rem;
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background: radial-gradient(circle at 80% 20%, rgba(16, 185, 129, 0.15) 0%, transparent 60%);
    pointer-events: none;
}

.badge-hero,
.hero .badge-hero,
.blog-header .badge-hero,
.article-hero .badge-hero {
    background: rgba(255, 255, 255, 0.12);
    border: 1px solid rgba(255, 255, 255, 0.25);
    backdrop-filter: blur(8px);
    color: #a7f3d0;
    padding: 0.4rem 1.1rem;
    border-radius: var(--radius-full);
    font-size: 0.85rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

.hero h1 {
    color: #ffffff;
    max-width: 950px;
    margin: 0 auto 1.5rem auto;
    font-weight: 800;
}

.hero p {
    color: #e2e8f0;
    font-size: 1.15rem;
    max-width: 780px;
    margin: 0 auto 2.5rem auto;
    line-height: 1.7;
    opacity: 0.95;
}

.hero .cta-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 2.5rem;
}

.hero .cta-buttons .button-primary {
    background: #ffffff;
    color: var(--primary) !important;
    font-weight: 700;
}

.hero .cta-buttons .button-primary:hover {
    background: #f1f5f9;
    transform: translateY(-2px);
}

.hero .cta-buttons .button-secondary {
    background: rgba(255, 255, 255, 0.1);
    color: #ffffff !important;
    border-color: rgba(255, 255, 255, 0.4);
    backdrop-filter: blur(4px);
}

.hero .cta-buttons .button-secondary:hover {
    background: rgba(255, 255, 255, 0.2);
    border-color: #ffffff;
}

.hero-reassurance-bar {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 2rem;
    margin-top: 1.5rem;
    padding: 1.25rem 2rem;
    background: rgba(0, 0, 0, 0.25);
    backdrop-filter: blur(8px);
    border-radius: var(--radius-lg);
    border: 1px solid rgba(255, 255, 255, 0.1);
    max-width: 1000px;
    width: 100%;
}

.hero-reassurance-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    color: #ffffff;
    font-size: 0.95rem;
    font-weight: 500;
}

.hero-reassurance-item i {
    color: var(--accent-light);
    font-size: 1.25rem;
}

.professional-image {
    max-width: 850px;
    width: 100%;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-xl);
    border: 3px solid rgba(255, 255, 255, 0.2);
    margin: 2.5rem auto 0 auto;
}

/* --- Cards & Grid Systems --- */
.certi-section {
    padding: 5rem 1.25rem;
    max-width: 1240px;
    margin: 0 auto;
}

.certi-card {
    background: var(--bg-card);
    border-radius: var(--radius-lg);
    padding: 2.5rem;
    box-shadow: var(--shadow-md);
    border: 1px solid var(--border);
    margin-top: 2rem;
    transition: transform var(--transition), box-shadow var(--transition);
}

.certi-card:hover {
    box-shadow: var(--shadow-lg);
}

.certi-card h3 {
    margin-bottom: 1.25rem;
    color: var(--primary);
}

.certi-list {
    list-style: none;
    display: grid;
    gap: 1rem;
}

.certi-list li {
    display: flex;
    align-items: flex-start;
    gap: 0.85rem;
    font-size: 1.05rem;
    color: var(--dark-muted);
}

.certi-check {
    color: var(--accent);
    font-weight: 800;
    font-size: 1.2rem;
    flex-shrink: 0;
}

.certi-info-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 1.75rem;
    margin: 2.5rem 0;
}

.certi-info-box {
    background: var(--bg-card);
    border-radius: var(--radius-lg);
    padding: 2rem;
    border: 1px solid var(--border);
    box-shadow: var(--shadow-sm);
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 1rem;
    position: relative;
    overflow: hidden;
    transition: all var(--transition);
}

.certi-info-box::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 4px;
    background: var(--primary-gradient);
}

.certi-info-box:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
    border-color: var(--accent-light);
}

.certi-info-icon {
    font-size: 2.2rem;
    color: var(--primary);
    background: rgba(16, 185, 129, 0.12);
    width: 60px;
    height: 60px;
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
}

.certi-info-text strong {
    font-size: 1.2rem;
    color: var(--dark);
    display: block;
    margin-bottom: 0.35rem;
}

.certi-info-text p {
    color: var(--text-light);
    font-size: 0.98rem;
    margin: 0;
}

/* --- CPF Notice / Regulatory Alerts --- */
.cpf-notice {
    background: linear-gradient(135deg, #fffbeb 0%, #fef3c7 100%);
    border: 1px solid #fde68a;
    border-left: 5px solid var(--gold);
    border-radius: var(--radius-md);
    padding: 1.5rem 1.75rem;
    margin: 2.5rem 0;
    box-shadow: var(--shadow-sm);
}

.cpf-notice-content {
    display: flex;
    align-items: flex-start;
    gap: 1.25rem;
}

.cpf-icon {
    font-size: 1.75rem;
    color: #b45309;
    flex-shrink: 0;
    margin-top: 0.15rem;
}

.cpf-text strong {
    color: #92400e;
    font-size: 1.05rem;
    display: block;
    margin-bottom: 0.25rem;
}

.cpf-text p {
    color: #78350f;
    font-size: 0.95rem;
    margin: 0;
}

/* --- Program Tables --- */
.formation-program-section {
    padding: 4rem 1.5rem;
    background: var(--bg-card);
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-md);
    border: 1px solid var(--border);
    max-width: 1200px;
    margin: 3rem auto;
}

.table-responsive {
    width: 100%;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    margin: 1.5rem 0;
    border-radius: var(--radius-md);
    border: 1px solid var(--border);
}

.formation-table {
    width: 100%;
    border-collapse: collapse;
    background: #ffffff;
    font-size: 0.98rem;
}

.formation-table thead {
    background: var(--primary-gradient);
    color: #ffffff;
}

.formation-table th {
    padding: 1rem 1.25rem;
    text-align: left;
    font-weight: 600;
    font-family: 'Outfit', sans-serif;
    letter-spacing: 0.01em;
}

.formation-table td {
    padding: 1rem 1.25rem;
    border-bottom: 1px solid var(--border);
    color: var(--dark-muted);
}

.formation-table tr:nth-child(even) {
    background-color: var(--bg-page);
}

.formation-table tr:hover {
    background-color: #f0fdf4;
}

.formation-table tr:last-child td {
    border-bottom: none;
}

/* --- Pricing Cards --- */
.pricing-section {
    padding: 5rem 1.25rem;
    background: var(--bg-page);
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(340px, 1fr));
    gap: 2rem;
    margin: 3rem 0;
}

.price-card,
.pricing-card {
    background: var(--bg-card);
    border-radius: var(--radius-xl);
    padding: 2.5rem 2rem;
    box-shadow: var(--shadow-md);
    border: 1px solid var(--border);
    position: relative;
    display: flex;
    flex-direction: column;
    transition: all var(--transition);
    overflow: hidden;
}

.price-card.featured,
.pricing-card.featured {
    border: 2px solid var(--accent);
    box-shadow: var(--shadow-xl);
    transform: scale(1.02);
}

.popular-badge {
    position: absolute;
    top: 1rem;
    right: 1.5rem;
    background: var(--accent);
    color: #ffffff;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    padding: 0.35rem 0.85rem;
    border-radius: var(--radius-full);
}

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

.price-card.featured:hover,
.pricing-card.featured:hover {
    transform: scale(1.02) translateY(-6px);
}

.course-name {
    font-size: 1.35rem;
    font-weight: 700;
    color: var(--dark);
    margin-bottom: 0.5rem;
}

.price-duration {
    display: inline-block;
    color: var(--text-light);
    font-size: 0.9rem;
    margin-bottom: 1.5rem;
}

.price-amount {
    font-size: 2.8rem;
    font-weight: 800;
    color: var(--primary);
    font-family: 'Outfit', sans-serif;
    line-height: 1;
    margin-bottom: 1.5rem;
}

.price-amount span {
    font-size: 1rem;
    font-weight: 500;
    color: var(--text-light);
}

/* --- Dual Pricing Structure (CPF vs Financement Perso) --- */
.price-dual-container {
    background: #f8fafc;
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 1.15rem 1.25rem;
    margin-bottom: 1rem;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.price-card.featured .price-dual-container {
    background: rgba(16, 185, 129, 0.04);
    border-color: rgba(16, 185, 129, 0.2);
}

.price-dual-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 0.75rem;
}

.price-dual-meta {
    display: flex;
    flex-direction: column;
    gap: 0.2rem;
}

.price-badge-pill {
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
    font-size: 0.78rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.03em;
    padding: 0.2rem 0.55rem;
    border-radius: var(--radius-full);
    width: fit-content;
}

.price-badge-pill.cpf-pill {
    background: rgba(15, 61, 35, 0.1);
    color: var(--primary);
}

.price-badge-pill.perso-pill {
    background: rgba(16, 185, 129, 0.12);
    color: #047857;
}

.price-dual-note {
    font-size: 0.8rem;
    color: var(--text-light);
}

.price-dual-val {
    font-family: 'Outfit', sans-serif;
    font-size: 1.75rem;
    font-weight: 800;
    color: var(--primary);
    line-height: 1;
    text-align: right;
    white-space: nowrap;
}

.price-dual-val span {
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--text-light);
}

.price-dual-val.perso-val {
    color: #059669;
}

.price-dual-divider {
    height: 1px;
    background: var(--border);
    width: 100%;
}

/* Scalapay Notice */
.scalapay-notice {
    display: flex;
    align-items: center;
    gap: 0.65rem;
    background: #f0fdf4;
    border: 1px solid #bbf7d0;
    color: #166534;
    padding: 0.75rem 1rem;
    border-radius: var(--radius-md);
    font-size: 0.84rem;
    line-height: 1.4;
    margin-bottom: 1.25rem;
}

.scalapay-notice i {
    color: #10b981;
    font-size: 1.1rem;
    flex-shrink: 0;
}

.scalapay-notice strong {
    color: #14532d;
}


.price-features {
    list-style: none;
    margin: 1.5rem 0 2rem 0;
    flex-grow: 1;
    display: grid;
    gap: 0.85rem;
}

.price-features li {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-size: 0.95rem;
    color: var(--dark-muted);
}

.price-features li i {
    color: var(--accent);
    font-size: 1rem;
    flex-shrink: 0;
}

/* --- Financing Box --- */
.financing-section {
    background: var(--bg-card);
    border-radius: var(--radius-xl);
    padding: 3.5rem 2.5rem;
    box-shadow: var(--shadow-md);
    border: 1px solid var(--border);
    margin-top: 3rem;
}

.financing-options {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 1.5rem;
    margin: 2rem 0;
}

.financing-item {
    background: var(--bg-page);
    padding: 1.5rem;
    border-radius: var(--radius-md);
    border: 1px solid var(--border);
    border-left: 4px solid var(--accent);
    transition: all var(--transition);
}

.financing-item:hover {
    background: #ffffff;
    box-shadow: var(--shadow-sm);
    transform: translateX(4px);
}

.financing-item-header {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 0.5rem;
}

.financing-icon {
    color: var(--primary);
    font-size: 1.3rem;
}

.financing-name {
    font-weight: 700;
    color: var(--dark);
    font-size: 1.05rem;
}

/* --- Testimonials --- */
.temoignage-section {
    padding: 5rem 1.25rem;
    max-width: 1200px;
    margin: 0 auto;
}

.temoignage-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2rem;
    margin-top: 2.5rem;
}

.temoignage-card {
    background: var(--bg-card);
    padding: 2rem;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--border);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    transition: transform var(--transition), box-shadow var(--transition);
}

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

.stars {
    color: #fbbf24;
    margin-bottom: 1rem;
    font-size: 1rem;
    display: flex;
    gap: 0.2rem;
}

.temoignage-text {
    font-style: italic;
    color: var(--dark-muted);
    font-size: 0.98rem;
    line-height: 1.65;
    margin-bottom: 1.5rem;
}

.temoignage-author {
    display: flex;
    align-items: center;
    gap: 0.85rem;
    border-top: 1px solid var(--border);
    padding-top: 1rem;
}

.temoignage-avatar {
    width: 44px;
    height: 44px;
    border-radius: var(--radius-full);
    background: var(--primary-gradient);
    color: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1rem;
}

.temoignage-info h4 {
    font-size: 0.95rem;
    color: var(--dark);
    margin: 0;
}

.temoignage-info span {
    font-size: 0.82rem;
    color: var(--text-light);
}

/* --- FAQ Accordion --- */
.faq-section {
    padding: 5rem 1.25rem;
    background: var(--bg-page);
}

.faq-accordion {
    display: grid;
    gap: 1rem;
    max-width: 900px;
    margin: 2.5rem auto 3rem auto;
}

.faq-item {
    background: var(--bg-card);
    border-radius: var(--radius-md);
    border: 1px solid var(--border);
    overflow: hidden;
    transition: all var(--transition);
    box-shadow: var(--shadow-sm);
}

.faq-item:hover {
    border-color: var(--border-subtle);
    box-shadow: var(--shadow-md);
}

.faq-question {
    width: 100%;
    padding: 1.35rem 1.5rem;
    text-align: left;
    background: transparent;
    border: none;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 1rem;
    cursor: pointer;
    font-family: 'Outfit', sans-serif;
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--dark);
    transition: color var(--transition);
}

.faq-question:hover {
    color: var(--primary-light);
}

.faq-icon {
    font-size: 1rem;
    color: var(--primary);
    transition: transform var(--transition);
    flex-shrink: 0;
}

.faq-item.active .faq-icon {
    transform: rotate(180deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.35s ease-out;
    background: #ffffff;
}

.faq-answer-content {
    padding: 0 1.5rem 1.5rem 1.5rem;
    color: var(--dark-muted);
    font-size: 0.98rem;
    line-height: 1.7;
}

.faq-item.active .faq-answer {
    max-height: 800px;
}

/* --- GEO Localisation Section --- */
.geo-section {
    padding: 4.5rem 1.25rem;
    background: var(--bg-card);
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
}

.geo-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 1.25rem;
    margin-top: 2.5rem;
}

.geo-card {
    background: var(--bg-page);
    border-radius: var(--radius-md);
    padding: 1.25rem 1.5rem;
    border: 1px solid var(--border);
    display: flex;
    align-items: center;
    gap: 1rem;
    transition: all var(--transition);
}

.geo-card:hover {
    background: #ffffff;
    border-color: var(--accent);
    transform: translateY(-2px);
    box-shadow: var(--shadow-sm);
}

.geo-card i {
    color: var(--accent);
    font-size: 1.3rem;
}

.geo-card strong {
    color: var(--dark);
    display: block;
    font-size: 1rem;
}

.geo-card span {
    font-size: 0.82rem;
    color: var(--text-light);
}

/* --- Contact & Forms --- */
.contact-section {
    padding: 4rem 1.25rem;
    background: var(--bg-page);
}

.contact-container {
    max-width: 1150px;
    margin: 0 auto;
    background: var(--bg-card);
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-lg);
    border: 1px solid var(--border);
    display: flex;
    overflow: hidden;
}

.contact-content,
.contact-form-side {
    flex: 1.1;
    padding: 3.5rem;
}

.contact-image {
    flex: 0.9;
    background: linear-gradient(135deg, #092615 0%, #0f3d23 100%);
    padding: 3rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    color: #ffffff;
    text-align: center;
    position: relative;
}

.contact-image img {
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
    border: 2px solid rgba(255, 255, 255, 0.2);
    margin-bottom: 1.5rem;
}

.form-row {
    display: flex;
    gap: 1.25rem;
    margin-bottom: 1.25rem;
}

.form-group {
    flex: 1;
    margin-bottom: 1.25rem;
    display: flex;
    flex-direction: column;
}

.form-group label {
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--dark);
    margin-bottom: 0.4rem;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 0.85rem 1rem;
    border: 1.5px solid var(--border);
    border-radius: var(--radius-md);
    background-color: #ffffff;
    font-size: 0.98rem;
    font-family: inherit;
    color: var(--dark);
    transition: border-color var(--transition), box-shadow var(--transition);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--accent);
    box-shadow: 0 0 0 3px rgba(16, 185, 129, 0.15);
}

.submit-btn {
    width: 100%;
    padding: 1rem 2rem;
    background: var(--primary-gradient);
    color: #ffffff;
    font-weight: 700;
    font-size: 1.05rem;
    border: none;
    border-radius: var(--radius-md);
    cursor: pointer;
    box-shadow: 0 4px 14px rgba(15, 61, 35, 0.3);
    transition: all var(--transition);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
}

.submit-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 22px rgba(15, 61, 35, 0.4);
    background: linear-gradient(135deg, #144f2e 0%, #227b47 100%);
}

.form-security-note {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    font-size: 0.82rem;
    color: var(--text-light);
    margin-top: 1rem;
}

/* --- Blog & Article System --- */
.blog-header {
    background: linear-gradient(145deg, #092615 0%, #0f3d23 100%);
    color: #ffffff;
    padding: 4.5rem 1.5rem 3.5rem 1.5rem;
    text-align: center;
}

.blog-header h1 {
    color: #ffffff;
    margin-bottom: 1rem;
}

.blog-header p {
    color: #e2e8f0;
    font-size: 1.15rem;
    max-width: 750px;
    margin: 0 auto;
}

.blog-filters {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 0.75rem;
    margin: 2.5rem 0 1.5rem 0;
}

.filter-btn {
    padding: 0.5rem 1.1rem;
    border-radius: var(--radius-full);
    border: 1px solid var(--border);
    background: var(--bg-card);
    color: var(--dark-muted);
    font-size: 0.88rem;
    font-weight: 600;
    cursor: pointer;
    transition: all var(--transition);
}

.filter-btn:hover,
.filter-btn.active {
    background: var(--primary);
    color: #ffffff;
    border-color: var(--primary);
}

.blog-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(340px, 1fr));
    gap: 2rem;
    margin: 2.5rem 0 4rem 0;
}

.blog-card {
    background: var(--bg-card);
    border-radius: var(--radius-lg);
    border: 1px solid var(--border);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    display: flex;
    flex-direction: column;
    transition: all var(--transition);
}

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

.blog-card-header {
    padding: 1.75rem 1.75rem 0.5rem 1.75rem;
}

.blog-card-meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 0.85rem;
}

.blog-card-category {
    background: rgba(16, 185, 129, 0.12);
    color: var(--accent-dark);
    padding: 0.25rem 0.75rem;
    border-radius: var(--radius-full);
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
}

.blog-card-read-time {
    font-size: 0.82rem;
    color: var(--text-light);
}

.blog-card-title {
    font-size: 1.25rem;
    margin-bottom: 0.75rem;
    line-height: 1.35;
}

.blog-card-title a {
    color: var(--dark);
}

.blog-card-title a:hover {
    color: var(--primary-light);
}

.blog-card-excerpt {
    color: var(--dark-muted);
    font-size: 0.93rem;
    line-height: 1.6;
    padding: 0 1.75rem 1.5rem 1.75rem;
    flex-grow: 1;
}

.blog-card-footer {
    padding: 1.25rem 1.75rem;
    background: var(--bg-page);
    border-top: 1px solid var(--border);
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.blog-card-date {
    font-size: 0.82rem;
    color: var(--text-light);
}

.read-more-btn {
    font-weight: 600;
    font-size: 0.88rem;
    color: var(--primary);
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
}

.read-more-btn:hover {
    color: var(--accent-dark);
    gap: 0.55rem;
}

/* --- Article Detail View --- */
.article-page {
    background-color: var(--bg-page);
}

.article-hero {
    background: linear-gradient(145deg, #092615 0%, #0f3d23 50%, #164d2d 100%);
    color: #ffffff;
    padding: 5rem 1.5rem 3.5rem 1.5rem;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.article-hero::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background: radial-gradient(circle at 80% 20%, rgba(16, 185, 129, 0.15) 0%, transparent 60%);
    pointer-events: none;
}

.article-hero h1 {
    color: #ffffff;
    max-width: 900px;
    margin: 0 auto 1.25rem auto;
}

.article-hero .article-meta {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 1.5rem;
    color: #cbd5e1;
    font-size: 0.9rem;
    position: relative;
    z-index: 1;
}

.article-container {
    max-width: 880px;
    width: calc(100% - 2.5rem);
    margin: 2.5rem auto 4rem auto;
    background: #ffffff;
    border-radius: var(--radius-xl);
    padding: 3.5rem;
    box-shadow: var(--shadow-lg);
    border: 1px solid var(--border);
    position: relative;
}

.back-to-blog {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    font-weight: 600;
    color: var(--primary);
    margin-bottom: 2rem;
    padding: 0.4rem 0.9rem;
    background: var(--bg-page);
    border-radius: var(--radius-md);
    border: 1px solid var(--border);
}

.back-to-blog:hover {
    background: #e2e8f0;
}

.article-content h2 {
    color: var(--primary);
    margin: 2.5rem 0 1rem 0;
    padding-bottom: 0.5rem;
    border-bottom: 2px solid var(--border);
}

.article-content h3 {
    color: var(--dark);
    margin: 1.75rem 0 0.75rem 0;
}

.article-content p {
    font-size: 1.05rem;
    line-height: 1.75;
    margin-bottom: 1.25rem;
}

.article-content ul,
.article-content ol {
    margin: 1rem 0 1.5rem 1.75rem;
    color: var(--dark-muted);
}

.article-content li {
    margin-bottom: 0.5rem;
    line-height: 1.65;
}

.article-cta-box {
    background: linear-gradient(135deg, #092615 0%, #0f3d23 100%);
    color: #ffffff;
    border-radius: var(--radius-lg);
    padding: 2.5rem;
    text-align: center;
    margin: 3.5rem 0 2rem 0;
}

.article-cta-box h3 {
    color: #ffffff;
    margin-bottom: 0.75rem;
}

.article-cta-box p {
    color: #e2e8f0;
    margin-bottom: 1.5rem;
}

/* Article Alerts & Components */
.alert {
    padding: 1.25rem 1.5rem;
    border-radius: var(--radius-md);
    margin: 1.75rem 0;
    border: 1px solid transparent;
}

.alert-warning {
    background-color: #fffbeb;
    border-color: #fde68a;
    color: #92400e;
}

.alert-warning strong {
    color: #78350f;
    display: block;
    margin-bottom: 0.25rem;
}

.alert-danger {
    background-color: #fef2f2;
    border-color: #fecaca;
    color: #991b1b;
}

.alert-info {
    background-color: #f0fdf4;
    border-color: #bbf7d0;
    color: #166534;
}

.info-box {
    background-color: var(--bg-page);
    border-left: 4px solid var(--primary);
    padding: 1.25rem 1.5rem;
    border-radius: var(--radius-sm);
    margin: 1.5rem 0;
}

.grid-2 {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1.5rem;
    margin: 1.75rem 0;
}

.card {
    background: #ffffff;
    border: 1px solid var(--border);
    border-radius: var(--radius-md);
    padding: 1.5rem;
    box-shadow: var(--shadow-sm);
}

.card h4 {
    color: var(--primary);
    margin-bottom: 0.5rem;
}

.related-articles {
    margin-top: 3.5rem;
    padding-top: 2rem;
    border-top: 2px solid var(--border);
}

.related-articles h3 {
    margin-bottom: 1.25rem;
    color: var(--dark);
}

.related-links {
    display: grid;
    gap: 0.75rem;
}

.related-link {
    display: block;
    padding: 1rem 1.25rem;
    background: var(--bg-page);
    border: 1px solid var(--border);
    border-radius: var(--radius-md);
    color: var(--dark-muted);
    font-weight: 500;
    transition: all var(--transition);
}

.related-link:hover {
    background: #ffffff;
    border-color: var(--accent);
    color: var(--primary);
    transform: translateX(4px);
}

/* --- Footer --- */
.custom-footer-wrapper {
    background: #092615;
    color: #cbd5e1;
    padding: 4.5rem 1.5rem 2rem 1.5rem;
    margin-top: auto;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.custom-footer-container {
    max-width: 1240px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1.4fr 1fr 1fr 1.2fr;
    gap: 3rem;
    padding-bottom: 3.5rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.custom-footer-heading {
    color: #ffffff;
    font-size: 1.15rem;
    font-family: 'Outfit', sans-serif;
    margin-bottom: 1.25rem;
    font-weight: 700;
}

.custom-footer-links {
    list-style: none;
    display: grid;
    gap: 0.65rem;
}

.custom-footer-links a {
    color: #94a3b8;
    font-size: 0.92rem;
    transition: all var(--transition);
}

.custom-footer-links a:hover {
    color: var(--accent-light);
    transform: translateX(3px);
    display: inline-block;
}

.custom-footer-bottom {
    max-width: 1240px;
    margin: 2rem auto 0 auto;
    text-align: center;
    font-size: 0.85rem;
    color: #64748b;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
    gap: 1rem;
}

/* --- Responsive Adjustments --- */
@media (max-width: 1024px) {
    .custom-footer-container {
        grid-template-columns: repeat(2, 1fr);
        gap: 2.5rem;
    }
    
    .contact-container {
        flex-direction: column;
    }
    
    .contact-content {
        padding: 2.5rem 1.75rem;
    }
    
    .contact-image {
        padding: 2.5rem 1.75rem;
    }
}

@media (max-width: 768px) {
    .hero {
        padding: 4.5rem 1rem 3rem 1rem;
    }
    
    .hero-reassurance-bar {
        flex-direction: column;
        align-items: flex-start;
        gap: 0.85rem;
        padding: 1rem 1.25rem;
    }
    
    .form-row {
        flex-direction: column;
        gap: 0;
    }
    
    .pricing-grid {
        grid-template-columns: 1fr;
    }
    
    .contact-content,
    .contact-form-side {
        padding: 2rem 1.25rem;
    }
    
    .contact-image {
        padding: 2rem 1.25rem;
    }
    
    .article-container {
        padding: 2rem 1.25rem;
        width: calc(100% - 1.5rem);
        margin: 1.5rem auto 3rem auto;
    }
    
    .price-card.featured,
    .pricing-card.featured {
        transform: none;
    }
    
    .custom-footer-container {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .article-container {
        padding: 2rem 1.25rem;
        margin: -1.5rem 1rem 3rem 1rem;
    }
    
    .custom-footer-bottom {
        flex-direction: column;
        text-align: center;
    }
}