/* Full page styles for fragor-svar.cfm (divergent chrome kept inline; app.css loaded first for shared baseline/cache). */
*, *::before, *::after {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        :root {
            --deep: #ffffff;
            --navy: #f4f5f7;
            --slate: #e5e7eb;
            --gold: #f2ea25;
            --gold-light: #f5ef5a;
            --gold-dark: #c4bd00;
            --gold-glow: rgba(242, 234, 37, 0.12);
            --green: #234d35;
            --green-mid: #3a7d55;
            --green-glow: rgba(35, 77, 53, 0.08);
            --cream: #1a1a2e;
            --warm-white: #faf8f4;
            --text-muted: #6b7280;
            --text-body: #374151;
            --glass: rgba(255, 255, 255, 0.92);
            --glass-border: rgba(0, 0, 0, 0.08);
            --radius: 16px;
            --radius-sm: 10px;
            --font-display: 'Cormorant Garamond', Georgia, serif;
            --font-body: 'Outfit', system-ui, sans-serif;
        }

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

        body {
            font-family: var(--font-body);
            background: var(--deep);
            color: var(--text-body);
            overflow-x: hidden;
            -webkit-font-smoothing: antialiased;
        }

        /* ─── NAV ─── */
        .nav {
            position: fixed;
            top: 0;
            left: 0;
            right: 0;
            z-index: 100;
            padding: 0.75rem 3rem;
            display: flex;
            align-items: center;
            justify-content: space-between;
            background: rgba(255, 255, 255, 0.92);
            backdrop-filter: blur(24px);
            box-shadow: 0 1px 8px rgba(0, 0, 0, 0.06);
            transition: background 0.4s, backdrop-filter 0.4s, box-shadow 0.4s;
        }

        .nav-logo {
            text-decoration: none;
            display: flex;
            align-items: center;
            position: relative;
            z-index: 101;
        }

        .nav-logo img {
            height: 120px;
            width: auto;
            margin: 0 0 -60px 0;
        }

        .nav-links {
            display: flex;
            gap: 2rem;
            list-style: none;
            align-items: center;
        }

        .nav-links a {
            color: #1a1a1a;
            text-decoration: none;
            font-size: 0.85rem;
            font-weight: 500;
            letter-spacing: 0.05em;
            text-transform: uppercase;
            transition: color 0.3s;
            position: relative;
        }

        .nav-links a::after {
            content: '';
            position: absolute;
            bottom: -4px;
            left: 0;
            width: 0;
            height: 1px;
            background: var(--green);
            transition: width 0.3s;
        }

        .nav-links a:hover {
            color: var(--green);
        }

        .nav-links a:hover::after {
            width: 100%;
        }

        .nav-links a.active {
            color: var(--green);
        }

        .nav-links a.active::after {
            width: 100%;
        }

        .nav-cta {
            background: transparent;
            border: 1px solid var(--green);
            color: var(--green) !important;
            padding: 0.6rem 1.5rem;
            border-radius: 100px;
            font-size: 0.8rem !important;
            letter-spacing: 0.1em !important;
            transition: all 0.3s !important;
            cursor: pointer;
        }

        .nav-cta:hover {
            background: var(--green) !important;
            color: #fff !important;
        }

        .nav-cta::after {
            display: none !important;
        }

        /* ─── HAMBURGER ─── */
        .hamburger {
            display: none;
            flex-direction: column;
            gap: 5px;
            cursor: pointer;
            z-index: 110;
            background: none;
            border: none;
            padding: 4px;
        }

        .hamburger span {
            display: block;
            width: 26px;
            height: 2px;
            background: #1a1a1a;
            border-radius: 2px;
            transition: transform 0.3s, opacity 0.3s;
        }

        .hamburger.open span:nth-child(1) {
            transform: translateY(7px) rotate(45deg);
        }

        .hamburger.open span:nth-child(2) {
            opacity: 0;
        }

        .hamburger.open span:nth-child(3) {
            transform: translateY(-7px) rotate(-45deg);
        }

        /* ─── MOBILE MENU ─── */
        .mobile-menu {
            display: none;
            position: fixed;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: var(--deep);
            z-index: 105;
            flex-direction: column;
            align-items: center;
            justify-content: center;
            gap: 2rem;
            opacity: 0;
            pointer-events: none;
            transition: opacity 0.35s ease;
        }

        .mobile-menu.open {
            opacity: 1;
            pointer-events: auto;
        }

        .mobile-menu a {
            color: var(--cream);
            text-decoration: none;
            font-family: var(--font-display);
            font-size: 1.75rem;
            font-weight: 600;
            letter-spacing: 0.02em;
            transition: color 0.3s;
        }

        .mobile-menu a:hover {
            color: var(--green);
        }

        .mobile-menu .nav-cta {
            font-family: var(--font-body);
            font-size: 0.9rem !important;
            padding: 0.75rem 2rem;
            margin-top: 1rem;
        }

        /* ─── PAGE HERO ─── */
        .page-hero {
            padding: 10rem 3rem 5rem;
            text-align: center;
            background: var(--navy);
            position: relative;
            overflow: hidden;
        }

        .page-hero::before {
            content: '';
            position: absolute;
            top: -60%;
            left: -20%;
            width: 140%;
            height: 140%;
            background: radial-gradient(ellipse at center, var(--green-glow) 0%, transparent 70%);
            pointer-events: none;
        }

        .page-hero-badge {
            display: inline-block;
            font-size: 0.75rem;
            font-weight: 600;
            letter-spacing: 0.15em;
            text-transform: uppercase;
            color: var(--green);
            background: var(--green-glow);
            border: 1px solid rgba(35, 77, 53, 0.15);
            padding: 0.5rem 1.25rem;
            border-radius: 100px;
            margin-bottom: 2rem;
            position: relative;
        }

        .page-hero h1 {
            font-family: var(--font-display);
            font-size: clamp(2.5rem, 5vw, 4rem);
            font-weight: 700;
            color: var(--cream);
            line-height: 1.15;
            margin-bottom: 1.25rem;
            position: relative;
        }

        .page-hero p {
            font-size: 1.1rem;
            color: var(--text-muted);
            max-width: 560px;
            margin: 0 auto;
            line-height: 1.7;
            position: relative;
        }

        /* ─── FAQ SECTION ─── */
        .faq-section {
            padding: 5rem 3rem;
            max-width: 880px;
            margin: 0 auto;
        }

        .faq-category {
            margin-bottom: 3.5rem;
        }

        .faq-category:last-child {
            margin-bottom: 0;
        }

        .faq-category-header {
            display: flex;
            align-items: center;
            gap: 1rem;
            margin-bottom: 1.5rem;
        }

        .faq-category-icon {
            width: 44px;
            height: 44px;
            border-radius: var(--radius-sm);
            background: var(--green-glow);
            border: 1px solid rgba(35, 77, 53, 0.12);
            display: flex;
            align-items: center;
            justify-content: center;
            flex-shrink: 0;
        }

        .faq-category-icon svg {
            width: 22px;
            height: 22px;
            color: var(--green);
        }

        .faq-category-title {
            font-family: var(--font-display);
            font-size: 1.5rem;
            font-weight: 700;
            color: var(--cream);
            letter-spacing: 0.01em;
        }

        .faq-item {
            border: 1px solid var(--glass-border);
            border-radius: var(--radius-sm);
            margin-bottom: 0.75rem;
            background: var(--deep);
            transition: border-color 0.3s, box-shadow 0.3s;
            overflow: hidden;
        }

        .faq-item:hover {
            border-color: rgba(35, 77, 53, 0.15);
        }

        .faq-item.open {
            border-color: rgba(35, 77, 53, 0.25);
            box-shadow: 0 4px 20px rgba(35, 77, 53, 0.06);
        }

        .faq-question {
            display: flex;
            align-items: center;
            justify-content: space-between;
            gap: 1.5rem;
            padding: 1.25rem 1.5rem;
            cursor: pointer;
            user-select: none;
            transition: background 0.2s;
        }

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

        .faq-question-text {
            font-size: 0.975rem;
            font-weight: 500;
            color: var(--cream);
            line-height: 1.5;
        }

        .faq-item.open .faq-question-text {
            color: var(--green);
        }

        .faq-chevron {
            width: 32px;
            height: 32px;
            border-radius: 50%;
            background: var(--navy);
            display: flex;
            align-items: center;
            justify-content: center;
            flex-shrink: 0;
            transition: background 0.3s, transform 0.35s ease;
        }

        .faq-chevron svg {
            width: 16px;
            height: 16px;
            color: var(--text-muted);
            transition: color 0.3s;
        }

        .faq-item.open .faq-chevron {
            background: var(--green-glow);
            transform: rotate(180deg);
        }

        .faq-item.open .faq-chevron svg {
            color: var(--green);
        }

        .faq-answer {
            max-height: 0;
            overflow: hidden;
            transition: max-height 0.4s ease, padding 0.3s ease;
        }

        .faq-answer-inner {
            padding: 0 1.5rem 1.5rem;
            font-size: 0.925rem;
            color: var(--text-muted);
            line-height: 1.8;
        }

        .faq-answer-inner a {
            color: var(--green);
            text-decoration: none;
            font-weight: 500;
            transition: color 0.3s;
        }

        .faq-answer-inner a:hover {
            color: var(--green-mid);
        }

        /* ─── CTA SECTION ─── */
        .cta-section {
            padding: 5rem 3rem;
            background: var(--navy);
        }

        .cta-card {
            max-width: 880px;
            margin: 0 auto;
            background: var(--deep);
            border: 1px solid var(--glass-border);
            border-radius: var(--radius);
            padding: 3.5rem;
            text-align: center;
            position: relative;
            overflow: hidden;
        }

        .cta-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            height: 3px;
            background: linear-gradient(90deg, var(--green), var(--green-mid), var(--gold));
        }

        .cta-card h2 {
            font-family: var(--font-display);
            font-size: clamp(1.75rem, 3vw, 2.25rem);
            font-weight: 700;
            color: var(--cream);
            margin-bottom: 1rem;
        }

        .cta-card p {
            color: var(--text-muted);
            font-size: 1rem;
            line-height: 1.7;
            max-width: 500px;
            margin: 0 auto 2.5rem;
        }

        .cta-contact {
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 3rem;
            margin-bottom: 2.5rem;
            flex-wrap: wrap;
        }

        .cta-contact-item {
            display: flex;
            align-items: center;
            gap: 0.75rem;
        }

        .cta-contact-icon {
            width: 44px;
            height: 44px;
            border-radius: 50%;
            background: var(--green-glow);
            border: 1px solid rgba(35, 77, 53, 0.12);
            display: flex;
            align-items: center;
            justify-content: center;
            flex-shrink: 0;
        }

        .cta-contact-icon svg {
            width: 20px;
            height: 20px;
            color: var(--green);
        }

        .cta-contact-detail {
            text-align: left;
        }

        .cta-contact-label {
            font-size: 0.7rem;
            font-weight: 600;
            letter-spacing: 0.1em;
            text-transform: uppercase;
            color: var(--text-muted);
            margin-bottom: 0.15rem;
        }

        .cta-contact-value {
            font-size: 0.95rem;
            font-weight: 500;
            color: var(--cream);
        }

        .cta-contact-value a {
            color: var(--cream);
            text-decoration: none;
            transition: color 0.3s;
        }

        .cta-contact-value a:hover {
            color: var(--green);
        }

        .cta-btn {
            display: inline-block;
            background: var(--green);
            color: #fff;
            text-decoration: none;
            font-size: 0.85rem;
            font-weight: 600;
            letter-spacing: 0.08em;
            text-transform: uppercase;
            padding: 1rem 2.5rem;
            border-radius: 100px;
            transition: background 0.3s, transform 0.2s, box-shadow 0.3s;
        }

        .cta-btn:hover {
            background: var(--green-mid);
            transform: translateY(-1px);
            box-shadow: 0 8px 24px rgba(35, 77, 53, 0.2);
        }

        /* ─── FOOTER ─── */
        .footer {
            background: var(--navy);
            border-top: 1px solid rgba(0, 0, 0, 0.06);
            padding: 4rem 3rem 2rem;
        }

        .footer-grid {
            display: grid;
            grid-template-columns: 2fr 1fr 1fr 1fr;
            gap: 3rem;
            max-width: 1200px;
            margin: 0 auto;
            margin-bottom: 3rem;
        }

        .footer-brand .nav-logo {
            display: inline-block;
            margin-bottom: 1rem;
        }

        .footer-brand .nav-logo img {
            height: 60px;
            margin: 0;
        }

        .footer-brand p {
            color: var(--text-muted);
            font-size: 0.85rem;
            line-height: 1.7;
            max-width: 300px;
        }

        .footer-aaa-img {
            width: 125px;
            height: auto;
            display: block;
            margin-top: 25px;
        }

        .footer-col h4 {
            font-family: var(--font-display);
            font-size: 1rem;
            font-weight: 600;
            color: var(--cream);
            margin-bottom: 1.25rem;
        }

        .footer-col ul {
            list-style: none;
        }

        .footer-col li {
            margin-bottom: 0.6rem;
        }

        .footer-col a {
            color: var(--text-muted);
            text-decoration: none;
            font-size: 0.85rem;
            transition: color 0.3s;
        }

        .footer-col a:hover {
            color: var(--green);
        }

        .footer-bottom {
            max-width: 1200px;
            margin: 0 auto;
            padding-top: 2rem;
            border-top: 1px solid rgba(0, 0, 0, 0.06);
            display: flex;
            justify-content: space-between;
            align-items: center;
            font-size: 0.8rem;
            color: var(--text-muted);
        }

        /* ─── RESPONSIVE ─── */
        @media (max-width: 768px) {
            .nav {
                padding: 0.6rem 1.5rem;
            }

            .nav-logo img {
                height: 90px;
                margin: 5px 0 -38px 0;
            }

            .nav-links {
                display: none;
            }

            .hamburger {
                display: flex;
            }

            .mobile-menu {
                display: flex;
            }

            .page-hero {
                padding: 8rem 1.5rem 3.5rem;
            }

            .faq-section {
                padding: 3rem 1.5rem;
            }

            .faq-category-header {
                gap: 0.75rem;
            }

            .faq-category-title {
                font-size: 1.25rem;
            }

            .faq-question {
                padding: 1rem 1.25rem;
                gap: 1rem;
            }

            .faq-question-text {
                font-size: 0.9rem;
            }

            .faq-answer-inner {
                padding: 0 1.25rem 1.25rem;
                font-size: 0.875rem;
            }

            .cta-section {
                padding: 3rem 1.5rem;
            }

            .cta-card {
                padding: 2.5rem 1.75rem;
            }

            .cta-contact {
                flex-direction: column;
                gap: 1.5rem;
            }

            .footer {
                padding: 3rem 1.5rem 1.5rem;
            }

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

            .footer-bottom {
                flex-direction: column;
                gap: 0.75rem;
                text-align: center;
            }
        }

        @media (max-width: 480px) {
            .page-hero h1 {
                font-size: 2rem;
            }

            .faq-category-icon {
                width: 38px;
                height: 38px;
            }

            .faq-chevron {
                width: 28px;
                height: 28px;
            }

            .cta-card {
                padding: 2rem 1.25rem;
            }

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