/* ===== ifin.co Design System ===== */

:root {
    --primary: #83BF25;
    --primary-dark: #6B9E1E;
    --primary-light: #A5D64E;
    --primary-bg: #EDF5E0;
    --accent: #2D8A1E;

    --bg-white: #FFFFFF;
    --bg-light: #F7FAF3;
    --bg-section: #F0F5EB;
    --text-dark: #1A2332;
    --text-body: #47566A;
    --text-light: #8E9BAD;
    --border-color: #DDE4D4;

    --font-body: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    --font-heading: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;

    --container-width: 1180px;
    --section-padding: 96px;
    --border-radius: 8px;
    --border-radius-lg: 16px;

    --shadow-sm: 0 1px 3px rgba(0, 0, 0, 0.06);
    --shadow-md: 0 4px 12px rgba(0, 0, 0, 0.08);
    --shadow-lg: 0 8px 24px rgba(0, 0, 0, 0.1);
    --shadow-xl: 0 16px 40px rgba(0, 0, 0, 0.12);
    --shadow-green: 0 8px 32px rgba(131, 191, 37, 0.2);

    --gradient-primary: linear-gradient(90deg, #83BF25, #A5D64E);
    --gradient-dark: linear-gradient(180deg, #1A2332, #2A3648);
    --gradient-hero-bg: linear-gradient(180deg, #F7FAF3, #FFFFFF);

    --transition: all 0.25s ease;
    --transition-slow: all 0.4s ease;
}

/* ===== Reset ===== */

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

html {
    font-size: 16px;
    scroll-behavior: smooth;
    -webkit-text-size-adjust: 100%;
}

body {
    font-family: var(--font-body);
    font-weight: 400;
    line-height: 1.7;
    color: var(--text-body);
    background-color: var(--bg-white);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    overflow-x: hidden;
}

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

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

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

ul, ol {
    list-style: none;
}

button {
    font-family: inherit;
    cursor: pointer;
    border: none;
    background: none;
}

/* ===== Typography ===== */

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    font-weight: 700;
    color: var(--text-dark);
    line-height: 1.25;
}

h1 {
    font-size: 3.25rem;
    letter-spacing: -0.02em;
}

h2 {
    font-size: 2.25rem;
    letter-spacing: -0.01em;
}

h3 {
    font-size: 1.5rem;
}

h4 {
    font-size: 1.25rem;
}

h5 {
    font-size: 1.125rem;
}

h6 {
    font-size: 1rem;
}

p {
    margin-bottom: 1rem;
}

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

strong {
    font-weight: 600;
    color: var(--text-dark);
}

/* ===== Layout ===== */

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

section {
    padding: var(--section-padding) 0;
}

.bg-light {
    background: var(--bg-light);
}

.section-header {
    text-align: center;
    margin-bottom: 56px;
}

.section-header h2 {
    margin-bottom: 16px;
}

.section-header p {
    font-size: 1.125rem;
    color: var(--text-body);
    max-width: 640px;
    margin: 0 auto;
}

.text-primary {
    color: var(--primary);
}

/* ===== Buttons ===== */

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 12px 28px;
    font-family: var(--font-body);
    font-size: 1rem;
    font-weight: 600;
    border-radius: var(--border-radius);
    transition: var(--transition);
    white-space: nowrap;
    position: relative;
}

.btn-primary {
    background: var(--primary);
    color: #FFFFFF;
    box-shadow: var(--shadow-sm);
}

.btn-primary:hover {
    background: var(--primary-dark);
    color: #FFFFFF;
    box-shadow: var(--shadow-green);
    transform: translateY(-2px);
}

.btn-secondary {
    background: var(--bg-white);
    color: var(--primary);
    border: 2px solid var(--primary);
}

.btn-secondary:hover {
    background: var(--primary-bg);
    color: var(--primary-dark);
    transform: translateY(-2px);
}

.btn-white {
    background: #FFFFFF;
    color: var(--text-dark);
    box-shadow: var(--shadow-sm);
}

.btn-white:hover {
    box-shadow: var(--shadow-md);
    transform: translateY(-2px);
}

.btn-lg {
    padding: 16px 36px;
    font-size: 1.0625rem;
}

/* ===== Header ===== */

.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    background: var(--bg-white);
    transition: var(--transition);
}

.header.scrolled {
    box-shadow: var(--shadow-md);
}

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

.header-logo img {
    height: 36px;
    width: auto;
}

.header-nav {
    display: flex;
    align-items: center;
    gap: 36px;
}

.header-nav a {
    color: var(--text-body);
    font-weight: 500;
    font-size: 0.9375rem;
}

.header-nav a:hover {
    color: var(--primary);
}

.nav-dropdown {
    position: relative;
}

.nav-dropdown-trigger {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    cursor: pointer;
}

.nav-dropdown-trigger svg {
    transition: transform 0.25s ease;
}

.nav-dropdown:hover .nav-dropdown-trigger svg {
    transform: rotate(180deg);
}

.nav-dropdown-menu {
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%) translateY(8px);
    background: var(--bg-white);
    border-radius: var(--border-radius-lg);
    box-shadow: var(--shadow-xl);
    border: 1px solid var(--border-color);
    padding: 24px 28px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
    min-width: 420px;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.2s ease, visibility 0.2s ease, transform 0.2s ease;
    pointer-events: none;
    z-index: 100;
}

.nav-dropdown:hover .nav-dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateX(-50%) translateY(0);
    pointer-events: auto;
}

.nav-dropdown-menu::before {
    content: '';
    position: absolute;
    top: -12px;
    left: 0;
    right: 0;
    height: 12px;
}

.dropdown-heading {
    display: block;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    color: var(--text-light);
    margin-bottom: 10px;
    padding-bottom: 8px;
    border-bottom: 1px solid var(--border-color);
}

.dropdown-col a {
    display: block;
    padding: 6px 0;
    font-size: 0.875rem;
    font-weight: 500;
    color: var(--text-body);
    white-space: nowrap;
}

.dropdown-col a:hover {
    color: var(--primary);
}

.header-cta {
    margin-left: 12px;
}

.mobile-toggle {
    display: none;
    flex-direction: column;
    justify-content: center;
    gap: 5px;
    width: 28px;
    height: 28px;
    cursor: pointer;
}

.mobile-toggle span {
    display: block;
    width: 100%;
    height: 2px;
    background: var(--text-dark);
    border-radius: 2px;
    transition: var(--transition);
}

.mobile-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.mobile-toggle.active span:nth-child(2) {
    opacity: 0;
}

.mobile-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
}

/* ===== Hero ===== */

.hero {
    padding: 160px 0 80px;
    text-align: center;
    background: var(--gradient-hero-bg);
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: -40%;
    left: -20%;
    width: 60%;
    height: 80%;
    background: radial-gradient(ellipse, rgba(131, 191, 37, 0.06) 0%, transparent 70%);
    pointer-events: none;
}

.hero::after {
    content: '';
    position: absolute;
    bottom: -30%;
    right: -15%;
    width: 50%;
    height: 70%;
    background: radial-gradient(ellipse, rgba(131, 191, 37, 0.04) 0%, transparent 70%);
    pointer-events: none;
}

.hero-content {
    position: relative;
    z-index: 1;
    max-width: 900px;
    margin: 0 auto;
}

.hero h1 {
    margin-bottom: 20px;
}

.hero-subtitle {
    font-size: 1.125rem;
    color: var(--text-body);
    margin-bottom: 36px;
    max-width: 820px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.7;
}

.hero-cta {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
    margin-bottom: 40px;
}

.hero-trust {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 24px;
    color: var(--text-light);
    font-size: 0.875rem;
}

.hero-trust span {
    display: flex;
    align-items: center;
    gap: 6px;
}

.hero-trust svg {
    width: 16px;
    height: 16px;
    fill: var(--primary);
}

/* ===== Partners / Trust logos ===== */

.partners {
    padding: 48px 0;
    background: var(--bg-white);
    border-top: 1px solid var(--border-color);
    border-bottom: 1px solid var(--border-color);
}

.partners-label {
    text-align: center;
    font-size: 0.8125rem;
    font-weight: 500;
    color: var(--text-light);
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-bottom: 24px;
}

.partners-row {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 48px;
    flex-wrap: wrap;
}

.partners-row span {
    font-size: 1.125rem;
    font-weight: 600;
    color: var(--text-light);
    opacity: 0.5;
    transition: var(--transition);
}

.partners-row span:hover {
    opacity: 0.8;
}

/* ===== Problem / Solution ===== */

.why-section {
    background: var(--bg-light);
}

.why-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 64px;
    align-items: start;
}

.why-column h3 {
    margin-bottom: 16px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.why-column h3 .icon {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.why-column.challenge h3 .icon {
    background: #FEE2E2;
    color: #DC2626;
}

.why-column.solution h3 .icon {
    background: var(--primary-bg);
    color: var(--primary);
}

.why-column p {
    color: var(--text-body);
    line-height: 1.8;
}

.why-column ul {
    margin-top: 16px;
}

.why-column ul li {
    padding: 8px 0;
    padding-left: 24px;
    position: relative;
    color: var(--text-body);
}

.why-column ul li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 16px;
    width: 8px;
    height: 8px;
    border-radius: 50%;
}

.why-column.challenge ul li::before {
    background: #FCA5A5;
}

.why-column.solution ul li::before {
    background: var(--primary);
}

/* ===== Stats bar ===== */

.stats-bar {
    padding: 0;
}

.stats-inner {
    background: var(--text-dark);
    border-radius: var(--border-radius-lg);
    padding: 48px 40px;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 0;
    position: relative;
}

.stat-item {
    text-align: center;
    position: relative;
}

.stat-item:not(:last-child)::after {
    content: '';
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 1px;
    height: 48px;
    background: rgba(255, 255, 255, 0.15);
}

.stat-number {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--primary-light);
    line-height: 1;
    margin-bottom: 8px;
}

.stat-label {
    font-size: 0.875rem;
    color: rgba(255, 255, 255, 0.7);
    font-weight: 500;
}

/* ===== Services tabs ===== */

.services {
    background: var(--bg-white);
}

.tabs-nav {
    display: flex;
    justify-content: center;
    gap: 4px;
    margin-bottom: 48px;
    background: var(--bg-section);
    border-radius: var(--border-radius);
    padding: 4px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.tab-btn {
    padding: 12px 24px;
    font-size: 0.9375rem;
    font-weight: 500;
    color: var(--text-body);
    border-radius: 6px;
    transition: var(--transition);
    flex: 1;
    text-align: center;
}

.tab-btn:hover {
    color: var(--text-dark);
}

.tab-btn.active {
    background: var(--bg-white);
    color: var(--primary);
    box-shadow: var(--shadow-sm);
    font-weight: 600;
}

.tab-panel {
    display: none;
}

.tab-panel.active {
    display: block;
}

.tab-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 48px;
    align-items: center;
}

.tab-text h3 {
    margin-bottom: 12px;
}

.tab-text > p {
    margin-bottom: 20px;
    line-height: 1.8;
}

.tab-features {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.tab-features li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    padding: 12px 16px;
    background: var(--bg-light);
    border-radius: var(--border-radius);
    font-size: 0.9375rem;
    color: var(--text-body);
}

.tab-features li svg {
    width: 20px;
    height: 20px;
    fill: var(--primary);
    flex-shrink: 0;
    margin-top: 1px;
}

.tab-visual {
    background: var(--bg-light);
    border-radius: var(--border-radius-lg);
    padding: 48px;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.tab-visual-item {
    background: var(--bg-white);
    border-radius: var(--border-radius);
    padding: 20px 24px;
    border-left: 3px solid var(--primary);
    box-shadow: var(--shadow-sm);
}

.tab-visual-item h4 {
    font-size: 1rem;
    margin-bottom: 4px;
}

.tab-visual-item p {
    font-size: 0.875rem;
    color: var(--text-light);
    margin-bottom: 0;
}

/* ===== How it works ===== */

.how-it-works {
    background: var(--bg-light);
}

.timeline {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 0;
    position: relative;
    max-width: 900px;
    margin: 0 auto;
}

.timeline--2x2 {
    grid-template-columns: repeat(2, 1fr);
    gap: 32px;
    max-width: 800px;
}

.timeline--2x2::before {
    display: none;
}

.timeline--2x2 .timeline-step {
    background: var(--bg-white);
    border: 1px solid var(--border-color);
    border-radius: var(--border-radius);
    padding: 32px 24px;
    transition: var(--transition);
}

.timeline--2x2 .timeline-step:hover {
    border-color: var(--primary);
    box-shadow: var(--shadow-md);
    transform: translateY(-3px);
}

.timeline::before {
    content: '';
    position: absolute;
    top: 32px;
    left: calc(16.666% + 16px);
    right: calc(16.666% + 16px);
    height: 2px;
    background: var(--border-color);
}

.timeline-step {
    text-align: center;
    position: relative;
    padding: 0 20px;
}

.step-circle {
    width: 64px;
    height: 64px;
    border-radius: 50%;
    background: var(--bg-white);
    border: 2px solid var(--primary);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    position: relative;
    z-index: 1;
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--primary);
}

.timeline-step h3 {
    font-size: 1.125rem;
    margin-bottom: 8px;
}

.timeline-step p {
    font-size: 0.9375rem;
    color: var(--text-body);
    line-height: 1.7;
}

/* ===== Coverage ===== */

.coverage {
    background: var(--bg-white);
}

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

.coverage-card {
    background: var(--bg-white);
    border: 1px solid var(--border-color);
    border-radius: var(--border-radius);
    padding: 28px 24px;
    transition: var(--transition);
}

.coverage-card:hover {
    border-color: var(--primary);
    box-shadow: var(--shadow-md);
    transform: translateY(-4px);
}

.coverage-card h3 {
    font-size: 1.125rem;
    margin-bottom: 4px;
}

.coverage-card .region-sub {
    font-size: 0.8125rem;
    color: var(--text-light);
    margin-bottom: 16px;
}

.coverage-card ul li {
    font-size: 0.875rem;
    color: var(--text-body);
    padding: 6px 0;
    padding-left: 18px;
    position: relative;
}

.coverage-card ul li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 14px;
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--primary);
}

/* ===== Social proof ===== */

.social-proof {
    background: var(--bg-light);
}

.proof-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 32px;
    max-width: 900px;
    margin: 0 auto;
}

.proof-card {
    background: var(--bg-white);
    border-radius: var(--border-radius);
    padding: 32px;
    box-shadow: var(--shadow-sm);
    border-left: 3px solid var(--primary);
}

.proof-quote {
    font-size: 1.0625rem;
    color: var(--text-dark);
    line-height: 1.7;
    margin-bottom: 20px;
    font-style: italic;
}

.proof-author {
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--text-dark);
}

.proof-role {
    font-size: 0.8125rem;
    color: var(--text-light);
}

/* ===== Snake timeline ===== */

.snake-timeline {
    max-width: 960px;
    margin: 0 auto;
}

.snake-row {
    display: flex;
    justify-content: center;
    gap: 24px;
}

.snake-row--single {
    max-width: 380px;
    margin: 0 auto;
}

.snake-row--triple {
    max-width: 100%;
}

.snake-step {
    background: var(--bg-white);
    border: 1px solid var(--border-color);
    border-radius: var(--border-radius);
    padding: 28px 24px;
    text-align: center;
    flex: 1;
    transition: var(--transition);
}

.snake-step:hover {
    border-color: var(--primary);
    box-shadow: var(--shadow-md);
    transform: translateY(-3px);
}

.snake-step .step-circle {
    width: 52px;
    height: 52px;
    border-radius: 50%;
    background: var(--primary-bg);
    border: 2px solid var(--primary);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 16px;
    font-size: 1.125rem;
    font-weight: 700;
    color: var(--primary);
}

.snake-step h3 {
    font-size: 1.0625rem;
    margin-bottom: 8px;
    color: var(--text-dark);
}

.snake-step p {
    font-size: 0.875rem;
    color: var(--text-body);
    line-height: 1.7;
    margin-bottom: 0;
}

.snake-connector {
    display: flex;
    justify-content: center;
    padding: 12px 0;
}

.snake-connector--down::after {
    content: '';
    display: block;
    width: 2px;
    height: 32px;
    background: var(--border-color);
    position: relative;
}

@media (max-width: 768px) {
    .snake-row--triple {
        flex-direction: column;
        gap: 16px;
    }

    .snake-row--single {
        max-width: 100%;
    }
}

/* ===== Features grid (4-col) ===== */

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

.features-grid--3 {
    grid-template-columns: repeat(3, 1fr);
    max-width: 100%;
}

.features-grid--2x2 {
    grid-template-columns: repeat(2, 1fr);
    max-width: 100%;
}

.feature-card {
    background: var(--bg-white);
    border: 1px solid var(--border-color);
    border-radius: var(--border-radius);
    padding: 32px 24px;
    transition: var(--transition);
}

.feature-card:hover {
    border-color: var(--primary);
    box-shadow: var(--shadow-md);
    transform: translateY(-4px);
}

.feature-card .feature-icon {
    width: 48px;
    height: 48px;
    border-radius: 12px;
    background: transparent;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    color: var(--primary);
}

.feature-card h4 {
    font-size: 1.0625rem;
    margin-bottom: 10px;
    color: var(--text-dark);
}

.feature-card h3 {
    font-size: 1.0625rem;
    margin-bottom: 10px;
    color: var(--text-dark);
}

.feature-card h3 a {
    color: var(--text-dark);
    transition: var(--transition);
}

.feature-card h3 a:hover {
    color: var(--primary);
}

.feature-card p {
    font-size: 0.875rem;
    color: var(--text-body);
    line-height: 1.7;
    margin-bottom: 0;
}

/* ===== Pricing transparency ===== */

.pricing {
    background: var(--bg-white);
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    max-width: 900px;
    margin: 0 auto;
}

.pricing-item {
    text-align: center;
    padding: 36px 28px;
    background: var(--bg-light);
    border-radius: var(--border-radius);
    transition: var(--transition);
}

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

.pricing-icon {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: var(--primary-bg);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 16px;
}

.pricing-icon svg {
    width: 24px;
    height: 24px;
    fill: var(--primary);
}

.pricing-item h3 {
    font-size: 1.125rem;
    margin-bottom: 8px;
}

.pricing-item p {
    font-size: 0.9375rem;
    color: var(--text-body);
}

/* ===== FAQ ===== */

.faq {
    background: var(--bg-light);
}

.faq-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    max-width: 1000px;
    margin: 0 auto;
}

.faq-item {
    background: var(--bg-white);
    border: 1px solid var(--border-color);
    border-radius: var(--border-radius);
    overflow: hidden;
    transition: var(--transition);
}

.faq-item:hover {
    border-color: var(--primary);
}

.faq-question {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    width: 100%;
    padding: 20px 24px;
    text-align: left;
    font-size: 0.9375rem;
    font-weight: 600;
    color: var(--text-dark);
    cursor: pointer;
    transition: var(--transition);
}

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

.faq-icon {
    width: 24px;
    height: 24px;
    flex-shrink: 0;
    position: relative;
}

.faq-icon::before,
.faq-icon::after {
    content: '';
    position: absolute;
    background: var(--text-body);
    border-radius: 1px;
    transition: var(--transition);
}

.faq-icon::before {
    width: 14px;
    height: 2px;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.faq-icon::after {
    width: 2px;
    height: 14px;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.faq-item.active .faq-icon::after {
    transform: translate(-50%, -50%) rotate(90deg);
    opacity: 0;
}

.faq-item.active .faq-icon::before {
    background: var(--primary);
}

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

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

/* ===== CTA section ===== */

.cta-section {
    background: var(--text-dark);
    padding: var(--section-padding) 0;
    text-align: center;
}

.cta-section h2 {
    color: #FFFFFF;
    margin-bottom: 16px;
}

.cta-section p {
    color: rgba(255, 255, 255, 0.7);
    font-size: 1.0625rem;
    max-width: 760px;
    margin: 0 auto 32px;
    line-height: 1.7;
}

.cta-section .btn-primary {
    box-shadow: var(--shadow-green);
}

/* ===== Footer ===== */

.footer {
    background: #0F151F;
    padding: 64px 0 0;
    color: rgba(255, 255, 255, 0.6);
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1fr;
    gap: 48px;
    padding-bottom: 48px;
}

.footer-brand img {
    height: 32px;
    margin-bottom: 16px;
}

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

.footer-col h4 {
    color: #FFFFFF;
    font-size: 0.875rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    margin-bottom: 20px;
}

.footer-col ul li {
    margin-bottom: 10px;
}

.footer-col ul li a {
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.875rem;
    transition: var(--transition);
}

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

.footer-col h4 + ul + h4 {
    margin-top: 24px;
}

/* Footer Industries "Full list" link */
.footer-industries-btn {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    cursor: pointer;
    transition: color 0.2s;
}

.footer-industries-btn:hover {
    color: var(--primary) !important;
}

/* Industries Modal */
.industries-modal {
    position: fixed;
    inset: 0;
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.25s, visibility 0.25s;
}

.industries-modal.active {
    opacity: 1;
    visibility: visible;
}

.industries-modal-backdrop {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(4px);
}

.industries-modal-content {
    position: relative;
    background: #fff;
    border-radius: 16px;
    padding: 40px 36px 36px;
    max-width: 480px;
    width: 90%;
    max-height: 85vh;
    overflow-y: auto;
    box-shadow: 0 24px 48px rgba(0, 0, 0, 0.15);
}

.industries-modal-content h3 {
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: var(--text-gray, #6b7280);
    margin: 0 0 12px;
}

.industries-modal-content h3:not(:first-of-type) {
    margin-top: 24px;
    padding-top: 20px;
    border-top: 1px solid var(--border-color, #e5e7eb);
}

.industries-modal-content ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.industries-modal-content li a {
    display: block;
    padding: 10px 14px;
    border-radius: 8px;
    color: var(--text-dark, #1a1a2e);
    font-size: 0.95rem;
    font-weight: 500;
    text-decoration: none;
    transition: background 0.15s, color 0.15s;
}

.industries-modal-content li a:hover {
    background: var(--primary-bg, #f0fdf4);
    color: var(--primary, #22c55e);
}

.industries-modal-close {
    position: absolute;
    top: 12px;
    right: 16px;
    background: none;
    border: none;
    font-size: 1.5rem;
    color: var(--text-gray, #6b7280);
    cursor: pointer;
    line-height: 1;
    padding: 4px 8px;
    border-radius: 6px;
    transition: background 0.15s, color 0.15s;
}

.industries-modal-close:hover {
    background: #f3f4f6;
    color: var(--text-dark, #1a1a2e);
}

.footer-social {
    display: flex;
    gap: 12px;
    margin-top: 20px;
}

.footer-social a {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.08);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
}

.footer-social a:hover {
    background: var(--primary);
}

.footer-social a svg {
    width: 16px;
    height: 16px;
    fill: rgba(255, 255, 255, 0.7);
}

.footer-social a:hover svg {
    fill: #FFFFFF;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    padding: 20px 0;
    display: flex;
    align-items: center;
    justify-content: space-between;
    font-size: 0.8125rem;
}

.footer-legal {
    display: flex;
    gap: 24px;
}

.footer-legal a {
    color: rgba(255, 255, 255, 0.4);
    font-size: 0.8125rem;
}

.footer-legal a:hover {
    color: rgba(255, 255, 255, 0.7);
}

/* ===== Cookie Consent Banner ===== */

.cookie-banner {
    position: fixed;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 1000;
    background: var(--bg-white);
    border-top: 1px solid var(--border-color);
    box-shadow: 0 -8px 24px rgba(0, 0, 0, 0.08);
    padding: 16px 0;
    transform: translateY(100%);
    opacity: 0;
    transition: transform 0.35s ease, opacity 0.35s ease;
}

.cookie-banner[hidden] {
    display: none;
}

.cookie-banner.visible {
    transform: translateY(0);
    opacity: 1;
}

.cookie-banner-inner {
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 24px;
    display: flex;
    align-items: center;
    gap: 24px;
    flex-wrap: wrap;
    justify-content: space-between;
}

.cookie-banner-text {
    flex: 1 1 380px;
    margin: 0;
    color: var(--text-body);
    font-size: 0.9375rem;
    line-height: 1.55;
}

.cookie-banner-text a {
    color: var(--primary);
    font-weight: 600;
    text-decoration: underline;
    text-underline-offset: 2px;
}

.cookie-banner-text a:hover {
    color: var(--primary-dark);
}

.cookie-banner-actions {
    display: flex;
    gap: 12px;
    flex-shrink: 0;
}

.cookie-banner-actions .btn {
    padding: 10px 22px;
    font-size: 0.9375rem;
}

/* ===== Responsive ===== */

@media (max-width: 1024px) {
    h1 {
        font-size: 2.5rem;
    }

    h2 {
        font-size: 1.875rem;
    }

    .coverage-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .features-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .footer-grid {
        grid-template-columns: 1fr 1fr;
        gap: 36px;
    }
}

@media (max-width: 768px) {
    :root {
        --section-padding: 64px;
    }

    h1 {
        font-size: 2rem;
    }

    h2 {
        font-size: 1.625rem;
    }

    .header-nav {
        display: none;
        position: fixed;
        top: 72px;
        left: 0;
        width: 100%;
        background: var(--bg-white);
        flex-direction: column;
        padding: 24px;
        gap: 0;
        box-shadow: var(--shadow-lg);
        border-top: 1px solid var(--border-color);
    }

    .header-nav.open {
        display: flex;
    }

    .header-nav a {
        padding: 12px 0;
        font-size: 1rem;
        border-bottom: 1px solid var(--border-color);
    }

    .header-nav a:last-child {
        border-bottom: none;
    }

    .nav-dropdown {
        width: 100%;
    }

    .nav-dropdown-trigger {
        padding: 12px 0;
        font-size: 1rem;
        border-bottom: 1px solid var(--border-color);
        width: 100%;
        justify-content: space-between;
    }

    .nav-dropdown-menu {
        position: static;
        transform: none;
        opacity: 1;
        visibility: visible;
        pointer-events: auto;
        box-shadow: none;
        border: none;
        border-radius: 0;
        min-width: 0;
        padding: 12px 0 12px 16px;
        grid-template-columns: 1fr;
        gap: 16px;
        display: none;
    }

    .nav-dropdown.open .nav-dropdown-menu {
        display: grid;
    }

    .nav-dropdown:hover .nav-dropdown-menu {
        transform: none;
    }

    .header-cta {
        margin-left: 0;
        margin-top: 12px;
    }

    .header-cta .btn {
        width: 100%;
    }

    .mobile-toggle {
        display: flex;
    }

    .hero {
        padding: 130px 0 60px;
    }

    .hero-cta {
        flex-direction: column;
    }

    .hero-trust {
        flex-direction: column;
        gap: 12px;
    }

    .partners-row {
        gap: 24px;
    }

    .why-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .stats-inner {
        grid-template-columns: repeat(2, 1fr);
        gap: 32px;
        padding: 36px 24px;
    }

    .stat-item:not(:last-child)::after {
        display: none;
    }

    .tabs-nav {
        flex-direction: column;
        max-width: 100%;
    }

    .tab-content {
        grid-template-columns: 1fr;
        gap: 32px;
    }

    .timeline {
        grid-template-columns: 1fr;
        gap: 32px;
    }

    .timeline::before {
        display: none;
    }

    .coverage-grid {
        grid-template-columns: 1fr;
    }

    .proof-grid {
        grid-template-columns: 1fr;
    }

    .features-grid {
        grid-template-columns: 1fr;
    }

    .pricing-grid {
        grid-template-columns: 1fr;
    }

    .faq-grid {
        grid-template-columns: 1fr;
    }

    .footer-grid {
        grid-template-columns: 1fr;
        gap: 32px;
    }

    .footer-bottom {
        flex-direction: column;
        gap: 12px;
        text-align: center;
    }

    .cookie-banner-inner {
        flex-direction: column;
        align-items: stretch;
        justify-content: flex-start;
        gap: 16px;
        padding: 0 20px;
    }

    .cookie-banner-text {
        flex: 0 0 auto;
    }

    .cookie-banner-actions {
        flex-direction: column;
        width: 100%;
    }

    .cookie-banner-actions .btn {
        width: 100%;
    }
}
