/**
 * TCF Canada — Page d'accueil v1.1 (Absolute Design)
 */

.tcf-home {
    --tcf-primary: #2563eb;
    --tcf-primary-dark: #1d4ed8;
    --tcf-primary-glow: rgba(37, 99, 235, 0.15);
    --tcf-cyan: #06b6d4;
    --tcf-cyan-glow: rgba(6, 182, 212, 0.15);
    --tcf-indigo: #4f46e5;
    --tcf-dark: #0f172a;
    --tcf-dark-soft: #1e293b;
    --tcf-white: #ffffff;
    --tcf-gray-light: #f8fafc;
    --tcf-gray-border: #e2e8f0;
    --tcf-transition-smooth: cubic-bezier(0.16, 1, 0.3, 1);

    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen, Ubuntu, sans-serif;
    color: var(--tcf-dark);
    background: var(--tcf-gray-light);
    overflow-x: hidden;
    line-height: 1.6;
}

.tcf-home *,
.tcf-home *::before,
.tcf-home *::after {
    box-sizing: border-box;
}

.tcf-sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

/* Scroll progress */
.tcf-scroll-progress {
    position: fixed;
    top: 0;
    left: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--tcf-primary), var(--tcf-cyan));
    z-index: 10000;
    width: 0;
    transition: width 0.1s linear;
    pointer-events: none;
}

/* Scroll reveal */
.reveal-element {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 1.2s var(--tcf-transition-smooth), transform 1.2s var(--tcf-transition-smooth);
}

.reveal-element.revealed {
    opacity: 1;
    transform: translateY(0);
}

.reveal-element.delay-1 { transition-delay: 0.15s; }
.reveal-element.delay-2 { transition-delay: 0.3s; }

/* Container */
.tcf-home__container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1.5rem;
}

.tcf-home__container--narrow {
    max-width: 760px;
}

/* Header sticky compact */
.tcf-home__header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 999;
    background: rgba(255, 255, 255, 0.82);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border-bottom: 1px solid transparent;
    transition: padding 0.4s var(--tcf-transition-smooth),
        background-color 0.4s var(--tcf-transition-smooth),
        box-shadow 0.4s var(--tcf-transition-smooth),
        border-color 0.4s var(--tcf-transition-smooth);
    padding: 1.25rem 0;
}

.tcf-home__header.is-shrunk {
    padding: 0.65rem 0;
    box-shadow: 0 10px 30px -10px rgba(15, 23, 42, 0.08);
    background: rgba(255, 255, 255, 0.96);
    border-bottom-color: var(--tcf-gray-border);
}

.tcf-home__header.is-shrunk .tcf-home__logo-icon svg {
    width: 30px;
    height: 30px;
    transition: width 0.4s var(--tcf-transition-smooth), height 0.4s var(--tcf-transition-smooth);
}

.tcf-home__header-inner {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1.5rem;
    display: grid;
    grid-template-columns: auto 1fr auto;
    align-items: center;
    gap: 1rem;
}

.tcf-home__logo {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    text-decoration: none;
    font-weight: 800;
    font-size: 1.35rem;
    color: var(--tcf-dark);
    flex-shrink: 0;
    grid-column: 1;
    transition: font-size 0.4s var(--tcf-transition-smooth);
}

.tcf-home__header.is-shrunk .tcf-home__logo {
    font-size: 1.15rem;
}

.tcf-home__logo-icon {
    display: flex;
    line-height: 0;
}

.tcf-text-cyan {
    color: var(--tcf-cyan);
}

/* Mobile nav toggle */
.tcf-home__nav-toggle {
    display: none;
    flex-direction: column;
    justify-content: center;
    gap: 5px;
    width: 40px;
    height: 40px;
    padding: 0;
    border: none;
    background: transparent;
    cursor: pointer;
    z-index: 1001;
    flex-shrink: 0;
    grid-column: 3;
    justify-self: end;
}

.tcf-home__nav-toggle-bar {
    display: block;
    width: 22px;
    height: 2px;
    background: var(--tcf-dark);
    border-radius: 2px;
    transition: transform 0.3s ease, opacity 0.3s ease;
}

.tcf-home__nav-toggle[aria-expanded="true"] .tcf-home__nav-toggle-bar:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
}

.tcf-home__nav-toggle[aria-expanded="true"] .tcf-home__nav-toggle-bar:nth-child(2) {
    opacity: 0;
}

.tcf-home__nav-toggle[aria-expanded="true"] .tcf-home__nav-toggle-bar:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
}

/* Navigation */
.tcf-home__nav {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 1.75rem;
    grid-column: 2;
    min-width: 0;
}

.tcf-home__header-actions {
    grid-column: 3;
    justify-self: end;
}

.tcf-home__nav-link {
    text-decoration: none;
    color: var(--tcf-dark-soft);
    font-weight: 500;
    font-size: 0.95rem;
    transition: color 0.3s ease;
    position: relative;
    padding: 0.25rem 0;
}

.tcf-home__nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--tcf-primary);
    transition: width 0.3s var(--tcf-transition-smooth);
}

.tcf-home__nav-link:hover {
    color: var(--tcf-primary);
}

.tcf-home__nav-link:hover::after {
    width: 100%;
}

.tcf-home__header-actions {
    flex-shrink: 0;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

/* Buttons */
.tcf-home__btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    font-weight: 600;
    font-size: 0.95rem;
    padding: 0.75rem 1.75rem;
    border-radius: 10px;
    text-decoration: none;
    transition: all 0.3s var(--tcf-transition-smooth);
    cursor: pointer;
    border: none;
    font-family: inherit;
    line-height: 1.4;
}

.tcf-home__btn--primary {
    background: linear-gradient(135deg, var(--tcf-primary), var(--tcf-cyan));
    color: var(--tcf-white);
    box-shadow: 0 4px 14px rgba(37, 99, 235, 0.35);
}

.tcf-home__btn--primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(37, 99, 235, 0.45);
}

.tcf-home__btn--outline {
    background: transparent;
    border: 1px solid var(--tcf-gray-border);
    color: var(--tcf-dark-soft);
}

.tcf-home__btn--outline:hover {
    background: var(--tcf-gray-light);
    border-color: var(--tcf-dark-soft);
    transform: translateY(-2px);
}

.tcf-home__btn--lg {
    padding: 0.875rem 2rem;
    font-size: 1rem;
}

.tcf-home__btn--block {
    width: 100%;
}

.tcf-home__btn--header {
    white-space: nowrap;
    padding: 0.625rem 1.25rem;
    font-size: 0.875rem;
}

.tcf-home__header.is-shrunk .tcf-home__btn--header {
    padding: 0.5rem 1rem;
}

/* Main offset for fixed header */
.tcf-home__main {
    padding-top: 0;
}

/* Hero */
.tcf-home__hero {
    position: relative;
    padding: 9rem 0 5rem;
    background: radial-gradient(circle at 80% 20%, var(--tcf-cyan-glow) 0%, transparent 45%),
                radial-gradient(circle at 20% 80%, var(--tcf-primary-glow) 0%, transparent 45%);
    overflow: hidden;
}

.tcf-home__hero-bg-glow {
    position: absolute;
    top: -20%;
    right: -10%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(6, 182, 212, 0.12) 0%, transparent 70%);
    pointer-events: none;
    animation: tcf-glow-float 8s ease-in-out infinite alternate;
}

@keyframes tcf-glow-float {
    from { transform: translate(0, 0) scale(1); }
    to { transform: translate(-30px, 20px) scale(1.05); }
}

.tcf-home__hero-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
    position: relative;
    z-index: 1;
}

.tcf-home__badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1rem;
    background: rgba(37, 99, 235, 0.08);
    border: 1px solid rgba(37, 99, 235, 0.15);
    border-radius: 9999px;
    color: var(--tcf-primary);
    font-size: 0.85rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
}

.tcf-pulse-dot {
    width: 8px;
    height: 8px;
    background-color: var(--tcf-primary);
    border-radius: 50%;
    animation: tcf-pulse 2s infinite;
}

@keyframes tcf-pulse {
    0% { transform: scale(0.95); box-shadow: 0 0 0 0 rgba(37, 99, 235, 0.7); }
    70% { transform: scale(1); box-shadow: 0 0 0 6px rgba(37, 99, 235, 0); }
    100% { transform: scale(0.95); box-shadow: 0 0 0 0 rgba(37, 99, 235, 0); }
}

.tcf-home__hero-title {
    font-size: clamp(2.25rem, 5vw, 3.75rem);
    line-height: 1.12;
    font-weight: 800;
    color: var(--tcf-dark);
    margin: 0 0 1.25rem;
}

.tcf-home__gradient-text {
    background: linear-gradient(135deg, var(--tcf-primary) 0%, var(--tcf-cyan) 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.tcf-home__hero-lead {
    font-size: 1.1rem;
    color: var(--tcf-dark-soft);
    line-height: 1.65;
    margin: 0 0 2rem;
    max-width: 540px;
}

.tcf-hero-metrics {
    display: flex;
    gap: 2.5rem;
    margin-bottom: 2.5rem;
    flex-wrap: wrap;
}

.tcf-metric-item {
    display: flex;
    flex-direction: column;
}

.tcf-metric-val {
    font-size: 1.75rem;
    font-weight: 800;
    color: var(--tcf-primary);
    line-height: 1;
}

.tcf-metric-lbl {
    font-size: 0.85rem;
    color: var(--tcf-dark-soft);
    font-weight: 500;
    margin-top: 0.35rem;
}

/* Glassmorphism premium calculator */
.tcf-home__glass {
    position: relative;
    background: rgba(255, 255, 255, 0.65);
    backdrop-filter: blur(24px) saturate(180%);
    -webkit-backdrop-filter: blur(24px) saturate(180%);
    border: 1px solid rgba(255, 255, 255, 0.5);
    border-radius: 20px;
    box-shadow: 0 25px 50px -12px rgba(15, 23, 42, 0.12),
                0 0 0 1px rgba(255, 255, 255, 0.4) inset;
    padding: 2rem;
    overflow: hidden;
}

.tcf-home__glass--premium {
    transition: box-shadow 0.4s var(--tcf-transition-smooth), transform 0.4s var(--tcf-transition-smooth);
}

.tcf-home__glass--premium:hover {
    box-shadow: 0 32px 64px -16px rgba(37, 99, 235, 0.18),
                0 0 0 1px rgba(255, 255, 255, 0.5) inset;
    transform: translateY(-2px);
}

.tcf-home__glass-shine {
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(135deg, transparent 40%, rgba(255, 255, 255, 0.15) 50%, transparent 60%);
    pointer-events: none;
    animation: tcf-shine 6s ease-in-out infinite;
}

@keyframes tcf-shine {
    0%, 100% { transform: translateX(-30%) translateY(-30%); }
    50% { transform: translateX(10%) translateY(10%); }
}

.tcf-home__hero-calculator .tcf-calculator {
    max-width: none;
    margin: 0;
    position: relative;
    z-index: 1;
}

.tcf-home__hero-calculator .tcf-calculator__title {
    font-size: 1.375rem;
    color: var(--tcf-dark);
    margin: 0 0 0.375rem;
}

.tcf-home__hero-calculator .tcf-calculator__subtitle {
    font-size: 0.875rem;
    color: #64748b;
    margin: 0 0 1.25rem;
}

.tcf-home__hero-calculator .tcf-calculator__grid {
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
    margin-bottom: 1.25rem;
}

.tcf-home__hero-calculator .tcf-calculator__field label {
    font-size: 0.8125rem;
}

.tcf-home__hero-calculator .tcf-calculator__field input {
    background: rgba(255, 255, 255, 0.9);
    border: 1px solid rgba(226, 232, 240, 0.8);
    border-radius: 10px;
    padding: 0.625rem 0.875rem;
    transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

.tcf-home__hero-calculator .tcf-calculator__field input:focus {
    outline: none;
    border-color: var(--tcf-primary);
    box-shadow: 0 0 0 4px rgba(37, 99, 235, 0.12);
}

.tcf-home__hero-calculator .tcf-calculator__submit {
    width: 100%;
    max-width: none;
    margin-bottom: 0;
}

.tcf-home__results-highlight {
    margin-top: 1.25rem;
    margin-bottom: 0;
    background: linear-gradient(135deg, rgba(37, 99, 235, 0.1), rgba(6, 182, 212, 0.08));
    border: 1px solid rgba(37, 99, 235, 0.2);
    border-radius: 14px;
    padding: 1.25rem;
    animation: tcf-results-in 0.5s var(--tcf-transition-smooth);
}

@keyframes tcf-results-in {
    from { opacity: 0; transform: translateY(12px) scale(0.98); }
    to { opacity: 1; transform: translateY(0) scale(1); }
}

.tcf-home__results-highlight .tcf-calculator__global-value {
    color: var(--tcf-primary);
    font-size: 1.75rem;
    font-weight: 800;
}

.tcf-home__results-highlight .tcf-calculator__result-card {
    background: rgba(255, 255, 255, 0.85);
    border-radius: 10px;
}

/* Sections */
.tcf-home__section {
    padding: 5rem 0;
}

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

.tcf-home__section-header {
    text-align: center;
    margin-bottom: 3rem;
}

.tcf-home__section-title {
    font-size: clamp(1.75rem, 3vw, 2.25rem);
    font-weight: 800;
    color: var(--tcf-dark);
    margin: 0 0 0.75rem;
}

.tcf-home__section-lead {
    font-size: 1.0625rem;
    color: #64748b;
    margin: 0 auto;
    max-width: 620px;
    line-height: 1.65;
}

.tcf-home__payment-note {
    display: inline-flex;
    align-items: center;
    margin-top: 1rem;
    padding: 0.5rem 1rem;
    background: var(--tcf-gray-light);
    border: 1px solid var(--tcf-gray-border);
    border-radius: 999px;
    font-size: 0.8125rem;
    color: #64748b;
}

/* Bento grid */
.tcf-bento-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
}

.tcf-bento-card {
    background: var(--tcf-white);
    border: 1px solid var(--tcf-gray-border);
    border-radius: 20px;
    padding: 2rem;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    transition: transform 0.4s var(--tcf-transition-smooth),
        box-shadow 0.4s var(--tcf-transition-smooth),
        border-color 0.4s;
    overflow: hidden;
    position: relative;
    min-height: 280px;
}

.tcf-bento-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 25px 50px -12px rgba(15, 23, 42, 0.1);
    border-color: rgba(37, 99, 235, 0.25);
}

.tcf-bento-card--large {
    grid-column: span 2;
    flex-direction: row;
    gap: 2rem;
    align-items: center;
}

.tcf-bento-card--reverse {
    flex-direction: row-reverse;
}

.tcf-bento-content {
    flex: 1;
    display: flex;
    flex-direction: column;
}

.tcf-bento-tag {
    align-self: flex-start;
    padding: 0.3rem 0.75rem;
    border-radius: 9999px;
    font-size: 0.7rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.04em;
    margin-bottom: 1rem;
}

.tcf-bento-tag--blue { background: rgba(37, 99, 235, 0.1); color: #1d4ed8; }
.tcf-bento-tag--cyan { background: rgba(6, 182, 212, 0.12); color: #0891b2; }
.tcf-bento-tag--indigo { background: rgba(79, 70, 229, 0.1); color: #4338ca; }
.tcf-bento-tag--sky { background: rgba(14, 165, 233, 0.12); color: #0284c7; }

.tcf-bento-title {
    font-size: 1.375rem;
    font-weight: 700;
    color: var(--tcf-dark);
    margin: 0 0 0.75rem;
}

.tcf-bento-desc {
    font-size: 0.9375rem;
    color: var(--tcf-dark-soft);
    line-height: 1.55;
    margin: 0 0 1rem;
}

.tcf-bento-meta {
    font-size: 0.8125rem;
    color: #64748b;
    font-weight: 500;
    margin-bottom: 1.25rem;
    display: block;
}

.tcf-bento-link {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    text-decoration: none;
    color: var(--tcf-primary);
    font-weight: 700;
    font-size: 0.9375rem;
    margin-top: auto;
}

.tcf-bento-link svg {
    transition: transform 0.3s ease;
}

.tcf-bento-link:hover svg {
    transform: translateX(4px);
}

/* Bento visuals */
.tcf-bento-visual {
    flex: 0 0 42%;
    display: flex;
    justify-content: center;
    align-items: center;
    background: linear-gradient(135deg, var(--tcf-gray-light), rgba(241, 245, 249, 0.5));
    border-radius: 14px;
    min-height: 180px;
    padding: 1.5rem;
}

.tcf-visual-quiz-mockup {
    width: 100%;
    max-width: 200px;
}

.tcf-mock-bar {
    display: block;
    height: 8px;
    background: var(--tcf-gray-border);
    border-radius: 4px;
    margin-bottom: 8px;
}

.tcf-mock-bar.length-1 { width: 90%; }
.tcf-mock-bar.length-2 { width: 65%; margin-bottom: 16px; }

.tcf-mock-options {
    display: flex;
    gap: 8px;
}

.tcf-mock-opt {
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid var(--tcf-gray-border);
    border-radius: 8px;
    font-size: 0.75rem;
    font-weight: 700;
    color: #64748b;
}

.tcf-mock-opt.active {
    background: var(--tcf-primary);
    color: #fff;
    border-color: var(--tcf-primary);
}

.tcf-visual-audio-wave {
    display: flex;
    gap: 5px;
    align-items: center;
    height: 60px;
}

.tcf-visual-audio-wave span {
    width: 5px;
    background: linear-gradient(180deg, var(--tcf-cyan), var(--tcf-primary));
    border-radius: 4px;
    animation: tcf-wave 1.2s ease-in-out infinite alternate;
}

.tcf-visual-audio-wave span:nth-child(1) { height: 20px; animation-delay: -0.4s; }
.tcf-visual-audio-wave span:nth-child(2) { height: 50px; animation-delay: -0.2s; }
.tcf-visual-audio-wave span:nth-child(3) { height: 35px; animation-delay: -0.6s; }
.tcf-visual-audio-wave span:nth-child(4) { height: 45px; animation-delay: -0.1s; }
.tcf-visual-audio-wave span:nth-child(5) { height: 25px; animation-delay: -0.3s; }

@keyframes tcf-wave {
    0% { transform: scaleY(0.4); }
    100% { transform: scaleY(1.1); }
}

/* Pricing */
.tcf-home__pricing-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    align-items: stretch;
}

.tcf-home__pricing-card {
    position: relative;
    background: var(--tcf-white);
    border: 1px solid var(--tcf-gray-border);
    border-radius: 20px;
    padding: 2rem 1.75rem;
    display: flex;
    flex-direction: column;
    box-shadow: 0 4px 24px rgba(15, 23, 42, 0.06);
    transition: transform 0.3s var(--tcf-transition-smooth), box-shadow 0.3s;
}

.tcf-home__pricing-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 40px rgba(15, 23, 42, 0.1);
}

.tcf-home__pricing-card--featured {
    border-color: var(--tcf-primary);
    box-shadow: 0 12px 40px rgba(37, 99, 235, 0.15);
    transform: scale(1.03);
}

.tcf-home__pricing-card--featured:hover {
    transform: scale(1.03) translateY(-4px);
}

.tcf-home__pricing-badge {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    padding: 0.3rem 0.875rem;
    background: linear-gradient(135deg, var(--tcf-primary), var(--tcf-cyan));
    color: #fff;
    font-size: 0.75rem;
    font-weight: 700;
    border-radius: 999px;
    white-space: nowrap;
}

.tcf-home__pricing-name {
    font-size: 1.125rem;
    font-weight: 700;
    color: var(--tcf-dark);
    margin: 0 0 0.5rem;
}

.tcf-pricing-desc {
    font-size: 0.875rem;
    color: #64748b;
    margin: 0 0 1.25rem;
}

.tcf-home__pricing-price {
    margin-bottom: 1.5rem;
}

.tcf-home__pricing-amount {
    display: block;
    font-size: 2rem;
    font-weight: 800;
    color: var(--tcf-dark);
    line-height: 1.2;
}

.tcf-home__pricing-amount small {
    font-size: 1rem;
    font-weight: 600;
}

.tcf-home__pricing-equiv {
    display: block;
    font-size: 0.875rem;
    color: #64748b;
    margin-top: 0.25rem;
}

.tcf-home__pricing-period {
    display: block;
    font-size: 0.875rem;
    color: #64748b;
}

.tcf-home__pricing-features {
    list-style: none;
    padding: 0;
    margin: 0 0 1.5rem;
    flex: 1;
}

.tcf-home__pricing-features li {
    position: relative;
    padding-left: 1.5rem;
    margin-bottom: 0.625rem;
    font-size: 0.9375rem;
    color: var(--tcf-dark-soft);
}

.tcf-home__pricing-features li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: var(--tcf-cyan);
    font-weight: 700;
}

/* FAQ */
.tcf-home__faq {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.tcf-home__faq-item {
    background: var(--tcf-white);
    border: 1px solid var(--tcf-gray-border);
    border-radius: 14px;
    overflow: hidden;
    box-shadow: 0 2px 12px rgba(15, 23, 42, 0.04);
}

.tcf-home__faq-trigger {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    padding: 1.125rem 1.25rem;
    background: var(--tcf-white);
    border: none;
    cursor: pointer;
    font-family: inherit;
    font-size: 0.9375rem;
    font-weight: 600;
    color: var(--tcf-dark);
    text-align: left;
    transition: background 0.3s ease;
}

.tcf-home__faq-trigger:hover {
    background: var(--tcf-gray-light);
}

.tcf-home__faq-trigger[aria-expanded="true"] {
    background: rgba(37, 99, 235, 0.04);
    color: var(--tcf-primary);
}

.tcf-home__faq-chevron {
    width: 20px;
    height: 20px;
    flex-shrink: 0;
    color: #64748b;
    transition: transform 0.3s var(--tcf-transition-smooth);
}

.tcf-home__faq-trigger[aria-expanded="true"] .tcf-home__faq-chevron {
    transform: rotate(180deg);
}

.tcf-home__faq-panel {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.35s var(--tcf-transition-smooth);
}

.tcf-home__faq-panel p {
    padding: 0 1.25rem 1.125rem;
    margin: 0;
    font-size: 0.9375rem;
    color: #64748b;
    line-height: 1.7;
}

/* Footer */
.tcf-home__footer {
    background: var(--tcf-white);
    border-top: 1px solid var(--tcf-gray-border);
    padding: 0 0 1.5rem;
}

.tcf-footer-newsletter {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    gap: 1.5rem;
    padding: 2.5rem 0;
    margin-bottom: 2.5rem;
    border-bottom: 1px solid var(--tcf-gray-border);
}

.tcf-newsletter-title {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--tcf-dark);
    margin: 0 0 0.375rem;
}

.tcf-newsletter-desc {
    font-size: 0.9375rem;
    color: #64748b;
    margin: 0;
    max-width: 480px;
}

.tcf-newsletter-form {
    display: flex;
    gap: 0.75rem;
    flex: 1;
    min-width: 280px;
    max-width: 460px;
}

.tcf-newsletter-form input[type="email"] {
    flex: 1;
    padding: 0.75rem 1rem;
    border: 1px solid var(--tcf-gray-border);
    border-radius: 10px;
    font-size: 0.9375rem;
    font-family: inherit;
    transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

.tcf-newsletter-form input[type="email"]:focus {
    outline: none;
    border-color: var(--tcf-primary);
    box-shadow: 0 0 0 4px rgba(37, 99, 235, 0.1);
}

.tcf-newsletter-form .tcf-home__btn {
    flex-shrink: 0;
    white-space: nowrap;
}

.tcf-newsletter-feedback {
    width: 100%;
    font-size: 0.875rem;
    margin: 0;
    padding: 0.5rem 0;
}

.tcf-newsletter-feedback--success {
    color: #16a34a;
}

.tcf-newsletter-feedback--error {
    color: #dc2626;
}

.tcf-footer-top {
    display: grid;
    grid-template-columns: 1.4fr 2fr;
    gap: 3rem;
    padding-bottom: 2.5rem;
}

.tcf-footer-brand-column {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.tcf-home__footer-brand {
    display: flex;
    align-items: center;
    gap: 0.625rem;
}

.tcf-footer-brand-name {
    font-size: 1.2rem;
    font-weight: 800;
    color: var(--tcf-dark);
}

.tcf-home__footer-desc {
    font-size: 0.875rem;
    color: #64748b;
    line-height: 1.65;
    margin: 0;
}

.tcf-home__footer-address {
    font-style: normal;
    font-size: 0.875rem;
    color: #94a3b8;
}

.tcf-footer-links-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.tcf-home__footer-heading {
    font-size: 0.9375rem;
    font-weight: 700;
    color: var(--tcf-dark);
    margin: 0 0 1rem;
}

.tcf-home__footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 0.625rem;
}

.tcf-home__footer-links a {
    color: #64748b;
    text-decoration: none;
    font-size: 0.875rem;
    transition: color 0.3s ease;
}

.tcf-home__footer-links a:hover {
    color: var(--tcf-primary);
}

.tcf-footer-whatsapp-link {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: #25D366 !important;
    font-weight: 600;
}

.tcf-footer-reassurance {
    padding: 2rem 0;
    border-top: 1px solid var(--tcf-gray-border);
    border-bottom: 1px solid var(--tcf-gray-border);
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 2rem;
    flex-wrap: wrap;
}

.tcf-disclaimer {
    font-size: 0.78rem;
    color: #64748b;
    line-height: 1.6;
    max-width: 720px;
    margin: 0;
}

.tcf-reassurance-badges {
    display: flex;
    gap: 1rem;
    align-items: center;
    flex-wrap: wrap;
    color: #94a3b8;
}

.tcf-trust-badge {
    opacity: 0.75;
    transition: opacity 0.3s ease, transform 0.3s ease;
}

.tcf-trust-badge:hover {
    opacity: 1;
    transform: translateY(-2px);
}

.tcf-home__footer-bottom {
    padding-top: 1.5rem;
    text-align: center;
}

.tcf-home__footer-bottom p {
    margin: 0;
    font-size: 0.8125rem;
    color: #94a3b8;
}

/* Responsive */
@media (max-width: 1024px) {
    .tcf-bento-grid {
        grid-template-columns: 1fr;
    }

    .tcf-bento-card--large,
    .tcf-bento-card--reverse {
        grid-column: span 1;
        flex-direction: column;
        align-items: stretch;
    }

    .tcf-bento-visual {
        flex: none;
        width: 100%;
    }

    .tcf-home__pricing-grid {
        grid-template-columns: 1fr;
        max-width: 420px;
        margin: 0 auto;
    }

    .tcf-home__pricing-card--featured {
        transform: none;
    }

    .tcf-home__pricing-card--featured:hover {
        transform: translateY(-4px);
    }

    .tcf-footer-top {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 960px) {
    .tcf-home__header-inner {
        grid-template-columns: auto 1fr auto;
    }

    .tcf-home__nav {
        grid-column: auto;
    }

    .tcf-home__nav-toggle {
        display: flex;
    }

    .tcf-home__header-actions {
        display: none;
    }

    .tcf-home__nav-backdrop {
        position: fixed;
        inset: 0;
        background: rgba(15, 23, 42, 0.45);
        z-index: 999;
        opacity: 0;
        pointer-events: none;
        transition: opacity 0.3s ease;
    }

    .tcf-home__nav-backdrop.is-visible {
        opacity: 1;
        pointer-events: auto;
    }

    .tcf-home__nav {
        position: fixed;
        top: 0;
        right: 0;
        bottom: 0;
        width: min(300px, 88vw);
        flex-direction: column;
        align-items: stretch;
        gap: 0;
        padding: 5rem 1.5rem 1.5rem;
        background: #fff;
        box-shadow: -8px 0 32px rgba(15, 23, 42, 0.12);
        transform: translateX(100%);
        transition: transform 0.35s var(--tcf-transition-smooth);
        z-index: 1000;
        overflow-y: auto;
        -webkit-overflow-scrolling: touch;
        visibility: hidden;
        pointer-events: none;
    }

    .tcf-home__nav.is-active {
        transform: translateX(0);
        visibility: visible;
        pointer-events: auto;
    }

    .tcf-home__nav-link {
        padding: 1rem 0;
        border-bottom: 1px solid var(--tcf-gray-border);
    }

    .tcf-home__nav-link::after {
        display: none;
    }

    .tcf-home__hero {
        padding: 7.5rem 0 3.5rem;
    }

    .tcf-home__hero-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .tcf-home__hero-calculator .tcf-calculator__grid {
        grid-template-columns: 1fr;
    }

    .tcf-hero-metrics {
        flex-direction: column;
        gap: 1.25rem;
    }

    .tcf-footer-newsletter {
        flex-direction: column;
        align-items: flex-start;
    }

    .tcf-newsletter-form {
        flex-direction: column;
        max-width: 100%;
        width: 100%;
    }

    .tcf-newsletter-form .tcf-home__btn {
        width: 100%;
    }

    .tcf-footer-links-grid {
        grid-template-columns: 1fr;
    }

    .tcf-footer-reassurance {
        flex-direction: column;
        align-items: flex-start;
    }
}

body.tcf-nav-open {
    overflow: hidden;
}
