/*!
 * EasifyMe Finance Tools Hub
 * CSS Prefix: fh-
 */

/* ============================================================
   SECTION LAYOUT
   ============================================================ */
.fh-section {
    padding: var(--space-12) 0;
    position: relative;
}

.fh-section:nth-child(even) {
    background: var(--color-bg-secondary);
}

.fh-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 var(--space-5);
}

.fh-section-header {
    text-align: center;
    margin-bottom: var(--space-8);
}

.fh-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: var(--text-xs);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--color-accent);
    margin-bottom: var(--space-2);
}

.fh-section-title {
    font-size: clamp(24px, 4vw, 36px);
    font-weight: 800;
    color: var(--color-text);
    margin: 0 0 var(--space-3);
    line-height: 1.2;
}

.fh-section-desc {
    font-size: var(--text-base);
    color: var(--color-text-muted);
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.6;
}

/* ============================================================
   HERO SECTION
   ============================================================ */
.fh-hero {
    padding: var(--space-16) 0 var(--space-12);
    background: linear-gradient(135deg, #0f172a 0%, #1e293b 50%, #0f172a 100%);
    position: relative;
    overflow: hidden;
}

.fh-hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 30% 40%, rgba(59,130,246,0.12) 0%, transparent 50%),
                radial-gradient(circle at 70% 60%, rgba(139,92,246,0.1) 0%, transparent 50%),
                radial-gradient(circle at 50% 80%, rgba(245,158,11,0.08) 0%, transparent 40%);
    pointer-events: none;
}

/* Floating SVG shapes */
.fh-hero-shapes {
    position: absolute;
    inset: 0;
    pointer-events: none;
    overflow: hidden;
}

.fh-hero-shape {
    position: absolute;
    opacity: 0.06;
    color: #fff;
    font-size: 48px;
    animation: fh-float 12s ease-in-out infinite;
}

.fh-hero-shape:nth-child(1) { top: 10%; left: 5%; animation-delay: 0s; }
.fh-hero-shape:nth-child(2) { top: 20%; right: 8%; animation-delay: 2s; font-size: 36px; }
.fh-hero-shape:nth-child(3) { top: 60%; left: 10%; animation-delay: 4s; font-size: 40px; }
.fh-hero-shape:nth-child(4) { bottom: 15%; right: 12%; animation-delay: 1s; }
.fh-hero-shape:nth-child(5) { top: 40%; right: 25%; animation-delay: 3s; font-size: 32px; }
.fh-hero-shape:nth-child(6) { bottom: 30%; left: 20%; animation-delay: 5s; font-size: 44px; }

@keyframes fh-float {
    0%, 100% { transform: translateY(0) rotate(0deg); }
    50% { transform: translateY(-15px) rotate(5deg); }
}

.fh-hero-content {
    position: relative;
    z-index: 1;
    text-align: center;
}

.fh-hero-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 6px 16px;
    background: rgba(255,255,255,0.08);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: var(--radius-full);
    font-size: var(--text-xs);
    font-weight: 600;
    color: rgba(255,255,255,0.7);
    letter-spacing: 0.05em;
    margin-bottom: var(--space-4);
}

.fh-hero h1 {
    font-size: clamp(32px, 5vw, 52px);
    font-weight: 800;
    color: #fff;
    margin: 0 0 var(--space-3);
    line-height: 1.15;
}

.fh-hero h1 .fh-gradient-text {
    background: linear-gradient(135deg, #60a5fa, #a78bfa, #f59e0b);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.fh-hero-sub {
    font-size: var(--text-lg);
    color: rgba(255,255,255,0.6);
    max-width: 600px;
    margin: 0 auto var(--space-8);
    line-height: 1.6;
}

/* Question Cards */
.fh-questions-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--space-3);
    max-width: 800px;
    margin: 0 auto;
}

.fh-question-card {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 14px 18px;
    background: rgba(255,255,255,0.06);
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: var(--radius-lg);
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    text-decoration: none;
    color: rgba(255,255,255,0.85);
    font-size: var(--text-sm);
    font-weight: 500;
    text-align: left;
}

.fh-question-card:hover {
    background: rgba(255,255,255,0.12);
    border-color: rgba(255,255,255,0.2);
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(0,0,0,0.2);
    color: #fff;
}

.fh-question-card i {
    font-size: 20px;
    width: 24px;
    text-align: center;
    flex-shrink: 0;
}

.fh-question-card:nth-child(1) i { color: #60a5fa; }
.fh-question-card:nth-child(2) i { color: #34d399; }
.fh-question-card:nth-child(3) i { color: #fbbf24; }
.fh-question-card:nth-child(4) i { color: #a78bfa; }
.fh-question-card:nth-child(5) i { color: #f472b6; }
.fh-question-card:nth-child(6) i { color: #38bdf8; }

/* Stagger animation */
.fh-question-card { opacity: 0; animation: fh-card-in 0.5s ease forwards; }
.fh-question-card:nth-child(1) { animation-delay: 0.1s; }
.fh-question-card:nth-child(2) { animation-delay: 0.2s; }
.fh-question-card:nth-child(3) { animation-delay: 0.3s; }
.fh-question-card:nth-child(4) { animation-delay: 0.4s; }
.fh-question-card:nth-child(5) { animation-delay: 0.5s; }
.fh-question-card:nth-child(6) { animation-delay: 0.6s; }

@keyframes fh-card-in {
    from { opacity: 0; transform: translateY(12px); }
    to { opacity: 1; transform: translateY(0); }
}

/* ============================================================
   MINI-CALCULATORS
   ============================================================ */
.fh-mini-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-5);
}

.fh-mini-card {
    background: var(--color-surface);
    border: 1px solid var(--color-border);
    border-radius: var(--radius-lg);
    overflow: hidden;
    transition: all 0.3s ease;
    opacity: 0;
    transform: translateY(20px);
}

.fh-mini-card.fh-visible {
    opacity: 1;
    transform: translateY(0);
}

.fh-mini-card:hover {
    box-shadow: 0 8px 32px rgba(0,0,0,0.08);
    transform: translateY(-2px);
}

.fh-mini-card.fh-visible:hover {
    transform: translateY(-2px);
}

.fh-mini-header {
    padding: var(--space-3) var(--space-4);
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 700;
    font-size: var(--text-sm);
    border-bottom: 1px solid var(--color-border);
}

.fh-mini-header i {
    font-size: 16px;
}

.fh-mini-header.emi { color: var(--color-accent); border-top: 3px solid var(--color-accent); }
.fh-mini-header.compound { color: var(--color-success); border-top: 3px solid var(--color-success); }
.fh-mini-header.mortgage { color: var(--color-warning); border-top: 3px solid var(--color-warning); }
.fh-mini-header.gst { color: #8b5cf6; border-top: 3px solid #8b5cf6; }

.fh-mini-body {
    padding: var(--space-4);
}

.fh-mini-inputs {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
    margin-bottom: var(--space-3);
}

.fh-mini-field {
    display: flex;
    flex-direction: column;
    gap: 3px;
    flex: 1;
    min-width: 80px;
}

.fh-mini-field label {
    font-size: 10px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: var(--color-text-muted);
}

.fh-mini-input {
    padding: 7px 8px;
    border: 1.5px solid var(--color-border);
    border-radius: var(--radius-md);
    font-size: var(--text-sm);
    font-weight: 500;
    color: var(--color-text);
    background: var(--color-surface);
    width: 100%;
    transition: border-color 0.2s;
}

.fh-mini-input:focus {
    outline: none;
    border-color: var(--color-accent);
}

.fh-mini-input::-webkit-inner-spin-button,
.fh-mini-input::-webkit-outer-spin-button { -webkit-appearance: none; }
.fh-mini-input[type="number"] { -moz-appearance: textfield; }

.fh-mini-toggle {
    display: flex;
    border-radius: var(--radius-full);
    overflow: hidden;
    border: 1px solid var(--color-border);
    margin-bottom: var(--space-3);
}

.fh-mini-toggle button {
    padding: 5px 12px;
    border: none;
    background: transparent;
    font-size: 11px;
    font-weight: 600;
    cursor: pointer;
    color: var(--color-text-muted);
    transition: all 0.2s;
}

.fh-mini-toggle button.active {
    background: var(--color-accent);
    color: #fff;
}

.fh-mini-result {
    padding: var(--space-3);
    background: var(--color-bg-secondary);
    border-radius: var(--radius-md);
    margin-bottom: var(--space-3);
}

.fh-mini-result-main {
    font-size: clamp(20px, 3vw, 26px);
    font-weight: 800;
    color: var(--color-text);
    line-height: 1.2;
}

.fh-mini-result-sub {
    font-size: 12px;
    color: var(--color-text-muted);
    margin-top: 4px;
}

.fh-mini-cta {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 8px;
}

.fh-mini-cta a {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 8px 16px;
    border-radius: var(--radius-full);
    font-size: var(--text-sm);
    font-weight: 600;
    text-decoration: none;
    transition: all 0.2s;
}

.fh-mini-cta a.emi { background: rgba(59,130,246,0.08); color: var(--color-accent); }
.fh-mini-cta a.compound { background: rgba(16,185,129,0.08); color: var(--color-success); }
.fh-mini-cta a.mortgage { background: rgba(245,158,11,0.08); color: var(--color-warning); }
.fh-mini-cta a.gst { background: rgba(139,92,246,0.08); color: #8b5cf6; }

.fh-mini-cta a:hover { filter: brightness(1.15); transform: translateX(2px); }

.fh-mini-cta-features {
    font-size: 11px;
    color: var(--color-text-muted);
    flex: 1;
}

/* ============================================================
   KNOW YOUR NUMBERS
   ============================================================ */
.fh-kyn-card {
    max-width: 700px;
    margin: 0 auto;
    background: var(--color-surface);
    border: 1px solid var(--color-border);
    border-radius: var(--radius-lg);
    padding: var(--space-6);
}

.fh-kyn-inputs {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--space-4);
    margin-bottom: var(--space-5);
}

.fh-kyn-field label {
    display: block;
    font-size: var(--text-sm);
    font-weight: 600;
    color: var(--color-text);
    margin-bottom: 6px;
}

.fh-kyn-input {
    width: 100%;
    padding: 10px 12px;
    border: 1.5px solid var(--color-border);
    border-radius: var(--radius-md);
    font-size: var(--text-base);
    font-weight: 500;
    color: var(--color-text);
    background: var(--color-surface);
}

.fh-kyn-input:focus {
    outline: none;
    border-color: var(--color-accent);
    box-shadow: 0 0 0 3px rgba(59,130,246,0.15);
}

.fh-kyn-results {
    display: none;
    padding-top: var(--space-4);
    border-top: 1px solid var(--color-border);
}

.fh-kyn-results.show { display: block; }

.fh-kyn-bar-section {
    margin-bottom: var(--space-4);
}

.fh-kyn-bar-label {
    display: flex;
    justify-content: space-between;
    font-size: var(--text-sm);
    font-weight: 600;
    margin-bottom: 6px;
}

.fh-kyn-bar-wrap {
    height: 28px;
    background: var(--color-bg-secondary);
    border-radius: var(--radius-lg);
    overflow: hidden;
}

.fh-kyn-bar {
    height: 100%;
    border-radius: var(--radius-lg);
    transition: width 0.8s cubic-bezier(0.4, 0, 0.2, 1);
    display: flex;
    align-items: center;
    padding-left: 10px;
    font-size: 12px;
    font-weight: 700;
    color: #fff;
}

.fh-kyn-bar.healthy { background: linear-gradient(90deg, #10b981, #34d399); }
.fh-kyn-bar.moderate { background: linear-gradient(90deg, #f59e0b, #fbbf24); }
.fh-kyn-bar.high { background: linear-gradient(90deg, #ef4444, #f87171); }
.fh-kyn-bar.low { background: linear-gradient(90deg, #ef4444, #f87171); }

.fh-kyn-bar-hint {
    font-size: 11px;
    color: var(--color-text-muted);
    margin-top: 4px;
}

.fh-kyn-projection {
    padding: var(--space-4);
    background: rgba(16,185,129,0.06);
    border: 1px solid rgba(16,185,129,0.15);
    border-radius: var(--radius-lg);
    text-align: center;
    margin: var(--space-4) 0;
}

.fh-kyn-projection-amount {
    font-size: clamp(24px, 4vw, 32px);
    font-weight: 800;
    color: var(--color-success);
}

.fh-kyn-projection-sub {
    font-size: var(--text-sm);
    color: var(--color-text-muted);
    margin-top: 4px;
}

.fh-kyn-recs {
    display: flex;
    flex-direction: column;
    gap: 8px;
    margin-top: var(--space-4);
}

.fh-kyn-rec {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px 14px;
    background: var(--color-bg-secondary);
    border-radius: var(--radius-md);
    font-size: var(--text-sm);
    color: var(--color-text);
    text-decoration: none;
    transition: background 0.2s;
}

.fh-kyn-rec:hover { background: rgba(59,130,246,0.06); }

.fh-kyn-rec i {
    font-size: 18px;
    width: 24px;
    text-align: center;
}

/* ============================================================
   TOOL CARDS GRID
   ============================================================ */
.fh-tools-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: var(--space-5);
}

.fh-tool-card {
    background: var(--color-surface);
    border: 1px solid var(--color-border);
    border-radius: var(--radius-lg);
    padding: var(--space-5);
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    position: relative;
    overflow: hidden;
}

.fh-tool-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    transition: height 0.3s ease;
}

.fh-tool-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 40px rgba(0,0,0,0.1);
    border-color: transparent;
}

.fh-tool-card:hover::before { height: 6px; }

.fh-tool-card.emi::before { background: linear-gradient(90deg, #3b82f6, #60a5fa); }
.fh-tool-card.compound::before { background: linear-gradient(90deg, #10b981, #34d399); }
.fh-tool-card.mortgage::before { background: linear-gradient(90deg, #f59e0b, #fbbf24); }
.fh-tool-card.gst::before { background: linear-gradient(90deg, #8b5cf6, #a78bfa); }

.fh-tool-icon {
    width: 52px;
    height: 52px;
    border-radius: var(--radius-lg);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    margin-bottom: var(--space-3);
}

.fh-tool-card.emi .fh-tool-icon { background: rgba(59,130,246,0.1); color: var(--color-accent); }
.fh-tool-card.compound .fh-tool-icon { background: rgba(16,185,129,0.1); color: var(--color-success); }
.fh-tool-card.mortgage .fh-tool-icon { background: rgba(245,158,11,0.1); color: var(--color-warning); }
.fh-tool-card.gst .fh-tool-icon { background: rgba(139,92,246,0.1); color: #8b5cf6; }

.fh-tool-name {
    font-size: var(--text-lg);
    font-weight: 700;
    color: var(--color-text);
    margin-bottom: var(--space-2);
}

.fh-tool-desc {
    font-size: var(--text-sm);
    color: var(--color-text-muted);
    line-height: 1.5;
    margin-bottom: var(--space-3);
    flex: 1;
}

.fh-tool-audience {
    font-size: 12px;
    font-weight: 600;
    margin-bottom: var(--space-2);
    display: flex;
    flex-wrap: wrap;
    gap: 4px;
}

.fh-audience-badge {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    padding: 3px 10px;
    border-radius: var(--radius-full);
    font-size: 11px;
    font-weight: 600;
    white-space: nowrap;
}

.fh-audience-badge i {
    font-size: 10px;
}

.fh-tool-stats {
    font-size: 12px;
    color: var(--color-text-muted);
    margin-bottom: var(--space-3);
}

.fh-tool-stats i { color: #f59e0b; }

.fh-tool-btn {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 10px 20px;
    border-radius: var(--radius-full);
    font-size: var(--text-sm);
    font-weight: 600;
    text-decoration: none;
    transition: all 0.2s;
    border: 1px solid var(--color-border);
    color: var(--color-text);
    background: var(--color-surface);
}

.fh-tool-btn:hover {
    border-color: var(--color-accent);
    color: var(--color-accent);
    background: rgba(59,130,246,0.04);
}

/* ============================================================
   FACTS CAROUSEL
   ============================================================ */
.fh-facts {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.fh-fact-nav-wrap {
    display: flex;
    align-items: center;
    gap: var(--space-3);
}

.fh-fact-arrow {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: 1px solid var(--color-border);
    background: var(--color-surface);
    color: var(--color-text-muted);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    transition: all 0.2s;
    font-size: 14px;
}

.fh-fact-arrow:hover {
    background: var(--color-accent);
    color: #fff;
    border-color: var(--color-accent);
}

.fh-fact-card {
    flex: 1;
    background: var(--color-surface);
    border: 1px solid var(--color-border);
    border-radius: var(--radius-lg);
    padding: var(--space-6);
    min-height: 140px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    position: relative;
}

.fh-fact-text {
    font-size: var(--text-base);
    color: var(--color-text);
    line-height: 1.7;
    max-width: 650px;
    margin: 0 auto var(--space-3);
}

.fh-fact-text strong {
    color: var(--color-accent);
}

.fh-fact-link {
    font-size: var(--text-sm);
    font-weight: 600;
    color: var(--color-accent);
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 4px;
}

.fh-fact-link:hover { text-decoration: underline; }

.fh-fact-dots {
    display: flex;
    gap: 8px;
    justify-content: center;
    margin-top: var(--space-4);
}

.fh-fact-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--color-border);
    border: none;
    cursor: pointer;
    transition: all 0.3s;
    padding: 0;
}

.fh-fact-dot.active {
    background: var(--color-accent);
    width: 24px;
    border-radius: 4px;
}

/* ============================================================
   COMPARISON TABLE
   ============================================================ */
.fh-compare-table {
    width: 100%;
    max-width: 800px;
    margin: 0 auto;
    border-collapse: collapse;
    background: var(--color-surface);
    border-radius: var(--radius-lg);
    overflow: hidden;
    border: 1px solid var(--color-border);
}

.fh-compare-table th {
    padding: 12px 16px;
    font-size: var(--text-sm);
    font-weight: 700;
    text-align: left;
    background: var(--color-bg-secondary);
    color: var(--color-text-muted);
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.fh-compare-table td {
    padding: 12px 16px;
    font-size: var(--text-sm);
    border-bottom: 1px solid var(--color-border);
    color: var(--color-text);
}

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

.fh-compare-table tr {
    transition: background 0.2s;
    cursor: pointer;
}

.fh-compare-table tbody tr:hover {
    background: rgba(59,130,246,0.04);
}

.fh-compare-table td:last-child {
    font-weight: 600;
}

.fh-compare-table td:last-child a {
    color: var(--color-accent);
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 4px;
}

.fh-compare-table td:last-child a:hover { text-decoration: underline; }

/* ============================================================
   TRUST BADGES
   ============================================================ */
.fh-trust-grid {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: var(--space-4);
}

.fh-trust-item {
    text-align: center;
    padding: var(--space-4);
}

.fh-trust-icon {
    font-size: 28px;
    margin-bottom: var(--space-2);
    color: var(--color-accent);
}

.fh-trust-text {
    font-size: 13px;
    font-weight: 600;
    color: var(--color-text);
    line-height: 1.4;
}

/* ============================================================
   COMING SOON
   ============================================================ */
.fh-coming-grid {
    display: flex;
    flex-wrap: wrap;
    gap: var(--space-3);
    justify-content: center;
    margin-bottom: var(--space-5);
}

.fh-coming-pill {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 10px 18px;
    background: var(--color-surface);
    border: 1px dashed var(--color-border);
    border-radius: var(--radius-full);
    font-size: var(--text-sm);
    font-weight: 500;
    color: var(--color-text-muted);
}

.fh-coming-pill i { font-size: 18px; }

.fh-notify-form {
    display: flex;
    gap: 8px;
    justify-content: center;
    max-width: 420px;
    margin: 0 auto;
}

.fh-notify-input {
    flex: 1;
    padding: 10px 16px;
    border: 1.5px solid var(--color-border);
    border-radius: var(--radius-full);
    font-size: var(--text-sm);
    color: var(--color-text);
    background: var(--color-surface);
}

.fh-notify-input:focus {
    outline: none;
    border-color: var(--color-accent);
}

.fh-notify-btn {
    padding: 10px 24px;
    background: var(--color-accent);
    color: #fff;
    border: none;
    border-radius: var(--radius-full);
    font-size: var(--text-sm);
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s;
    white-space: nowrap;
}

.fh-notify-btn:hover { filter: brightness(1.1); }
.fh-notify-btn:disabled { opacity: 0.6; cursor: not-allowed; }

.fh-notify-success {
    display: none;
    text-align: center;
    color: var(--color-success);
    font-size: var(--text-sm);
    font-weight: 600;
    margin-top: var(--space-2);
}

.fh-notify-success.show { display: block; }

/* ============================================================
   SEO / ABOUT / FAQ
   ============================================================ */
.fh-about {
    max-width: 800px;
    margin: 0 auto;
    font-size: var(--text-sm);
    color: var(--color-text);
    line-height: 1.7;
}

.fh-about h3 {
    font-size: var(--text-base);
    font-weight: 700;
    margin: var(--space-4) 0 var(--space-2);
}

.fh-about a { color: var(--color-accent); }

.fh-faq-list {
    max-width: 800px;
    margin: 0 auto;
    list-style: none;
    padding: 0;
}

.fh-faq-item {
    border: 1px solid var(--color-border);
    border-radius: var(--radius-lg);
    margin-bottom: var(--space-3);
    overflow: hidden;
    background: var(--color-surface);
}

.fh-faq-q {
    width: 100%;
    padding: 16px 20px;
    border: none;
    background: transparent;
    text-align: left;
    font-size: var(--text-sm);
    font-weight: 600;
    color: var(--color-text);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
}

.fh-faq-q i {
    transition: transform 0.3s;
    color: var(--color-text-muted);
    flex-shrink: 0;
}

.fh-faq-item.open .fh-faq-q i { transform: rotate(180deg); }

.fh-faq-a {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
}

.fh-faq-item.open .fh-faq-a { max-height: 300px; }

.fh-faq-a p {
    padding: 0 20px 16px;
    font-size: var(--text-sm);
    color: var(--color-text-muted);
    line-height: 1.7;
    margin: 0;
}

/* ============================================================
   SCROLL REVEAL
   ============================================================ */
.fh-reveal {
    opacity: 0;
    transform: translateY(24px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.fh-reveal.fh-visible {
    opacity: 1;
    transform: translateY(0);
}

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 992px) {
    .fh-questions-grid { grid-template-columns: repeat(2, 1fr); }
    .fh-tools-grid { grid-template-columns: repeat(2, 1fr); }
    .fh-trust-grid { grid-template-columns: repeat(3, 1fr); }
}

@media (max-width: 768px) {
    .fh-section { padding: var(--space-8) 0; }
    .fh-hero { padding: var(--space-10) 0 var(--space-8); }
    .fh-questions-grid { grid-template-columns: 1fr; max-width: 400px; }
    .fh-mini-grid { grid-template-columns: 1fr; }
    .fh-kyn-inputs { grid-template-columns: 1fr; }
    .fh-tools-grid { grid-template-columns: 1fr; }
    .fh-trust-grid { grid-template-columns: repeat(2, 1fr); }
    .fh-compare-table { font-size: 12px; }
    .fh-compare-table th, .fh-compare-table td { padding: 8px 10px; }
    .fh-notify-form { flex-direction: column; }
}

@media (max-width: 480px) {
    .fh-trust-grid { grid-template-columns: 1fr 1fr; gap: var(--space-2); }
    .fh-trust-item { padding: var(--space-2); }
}
