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

        :root {
            /* Modern Earth Color Palette */
            --primary-color: #CC785C;
            --primary-dark: #B3664A;
            --primary-light: #E09070;
            --secondary-color: #8B6B47;
            --accent-color: #CC785C;
            --success-color: #4A9B7F;
            --warning-color: #D4A574;

            /* Typography Colors */
            --text-dark: #1A1A1A;
            --text-light: #6B6B6B;
            --text-lighter: #999999;

            /* Background Colors */
            --bg-light: #FEFCF9;
            --bg-white: #FFFFFF;
            --bg-card: #F9F6F1;

            /* Border Colors */
            --border-color: #E8E3DB;
            --border-subtle: #F2EFE9;

            /* Enhanced Shadow System - Warm tones */
            --shadow-xs: 0 1px 2px rgba(26, 26, 26, 0.03);
            --shadow-sm: 0 2px 4px rgba(26, 26, 26, 0.04);
            --shadow: 0 4px 8px rgba(26, 26, 26, 0.06);
            --shadow-md: 0 8px 16px rgba(26, 26, 26, 0.08);
            --shadow-lg: 0 12px 32px rgba(26, 26, 26, 0.1);
            --shadow-xl: 0 24px 48px rgba(26, 26, 26, 0.12);

            /* Refined Transitions */
            --transition-fast: all 0.15s cubic-bezier(0.4, 0, 0.2, 1);
            --transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
            --transition-slow: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
            --transition-spring: all 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);

            /* Spacing Scale */
            --spacing-xs: 0.25rem;
            --spacing-sm: 0.5rem;
            --spacing-md: 1rem;
            --spacing-lg: 1.5rem;
            --spacing-xl: 2rem;
            --spacing-2xl: 3rem;
            --spacing-3xl: 4rem;

            /* Border Radius Scale - Subtle */
            --radius-sm: 4px;
            --radius-md: 8px;
            --radius-lg: 12px;
            --radius-xl: 16px;
            --radius-2xl: 20px;
            --radius-full: 9999px;

            /* Layout */
            --header-height: 0px;
        }

        /* Dark Mode - Warm */
        html.dark-mode {
            --bg-light: #1A1614;
            --bg-white: #231F1D;
            --bg-card: #2D2926;
            --text-dark: #F5F1ED;
            --text-light: #B8ADA3;
            --text-lighter: #8C7E71;
            --border-color: #3D3733;
            --border-subtle: #2D2926;

            /* Enhanced Dark Mode Shadows */
            --shadow-xs: 0 1px 2px rgba(0, 0, 0, 0.3);
            --shadow-sm: 0 1px 3px rgba(0, 0, 0, 0.4);
            --shadow: 0 2px 6px rgba(0, 0, 0, 0.5);
            --shadow-md: 0 4px 12px rgba(0, 0, 0, 0.6);
            --shadow-lg: 0 8px 24px rgba(0, 0, 0, 0.7);
            --shadow-xl: 0 20px 40px rgba(0, 0, 0, 0.8);
        }

        html.dark-mode .back-to-top {
            background: linear-gradient(180deg, #D4876A 0%, #C66E52 100%);
            box-shadow: 0 4px 12px rgba(198, 110, 82, 0.5);
        }

        html.dark-mode .back-to-top:hover {
            box-shadow: 0 8px 24px rgba(198, 110, 82, 0.6);
        }

        html.dark-mode .theme-toggle-inner {
            background: linear-gradient(135deg, var(--primary-light), var(--primary-color));
            box-shadow: 0 2px 4px rgba(204, 120, 92, 0.5);
        }

        html.dark-mode .scroll-down-arrow {
            background: linear-gradient(135deg, var(--primary-light) 0%, var(--primary-color) 100%);
            box-shadow: 0 4px 12px rgba(204, 120, 92, 0.5);
            color: white;
        }

        html.dark-mode .scroll-down-arrow svg {
            stroke: white;
        }

        html.dark-mode .scroll-down-arrow:hover {
            box-shadow: 0 8px 24px rgba(204, 120, 92, 0.6);
        }

        html.dark-mode .step-card,
        html.dark-mode .faq-item {
            background: var(--bg-card);
            border-color: var(--border-color);
        }

        html.dark-mode .step-card:hover,
        html.dark-mode .faq-item:hover {
            background: var(--bg-white);
        }

        html.dark-mode .hero {
            background: linear-gradient(135deg, #1A1614 0%, #231F1D 50%, #2D2926 100%);
        }

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

        html.dark-mode .why-claims {
            background: var(--bg-white);
        }

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

        html.dark-mode footer {
            background: #110F0D;
            border-top: 1px solid var(--border-color);
        }

      /* pill background */
        html.dark-mode .badge {
            background: rgba(33, 29, 27, 0.01);
            border-color: var(--border-color);
        }

        html.dark-mode .step-card,
        html.dark-mode .pricing-card {
            background: var(--bg-white);
        }

        html.dark-mode .pricing-cta {
            background: var(--bg-card);
            border-color: var(--border-color);
            
        }

        html.dark-mode .pricing-cta:hover {
            background: var(--bg-white);
        }

        html.dark-mode .pricing-card.featured .pricing-cta {
            background: linear-gradient(180deg, #D2805C 0%, #C66A4A 100%);
        }

        html {
            scroll-behavior: smooth;
            background-color: #FEFCF9;
            color-scheme: light;
            scrollbar-gutter: stable;
        }

        /* Disable transitions during first paint to avoid flashes */
        .no-transitions, .no-transitions * {
            transition: none !important; /* * has zero specificity; must beat any component's transition */
        }

        html.dark-mode {
            background-color: #1A1614;
            color-scheme: dark;
        }

        body {
            font-family: 'Atkinson Hyperlegible', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
            font-size: 1.125rem;
            font-weight: 500;
            line-height: 1.65;
            color: var(--text-dark);
            background-color: var(--bg-light);
            -webkit-font-smoothing: antialiased;
            -moz-osx-font-smoothing: grayscale;
            overflow-x: hidden;
        }

        /* Header & Navigation */
        header {
            background: var(--bg-light);
            padding: 1rem 2rem;
            box-shadow: 0 1px 0 0 var(--border-subtle);
            position: sticky;
            top: 0;
            z-index: 100;
            transition: background 0.3s ease, backdrop-filter 0.3s ease, box-shadow 0.3s ease;
        }

        body.sticky-offset {
            padding-top: var(--header-height);
        }

        header.is-sticky {
            position: fixed;
            top: 0;
            left: 0;
            right: 0;
            width: 100%;
            animation: headerDrop 150ms ease-out;
            z-index: 1000;
        }

        header.scrolled {
            background: rgba(254, 252, 249, 0.75);
            backdrop-filter: blur(12px) saturate(180%);
            -webkit-backdrop-filter: blur(12px) saturate(180%);
            box-shadow: 0 10px 30px rgba(26, 26, 26, 0.06);
        }

        @keyframes headerDrop {
            from {
                transform: translateY(-6px);
                opacity: 0.92;
            }
            to {
                transform: translateY(0);
                opacity: 1;
            }
        }

        html.dark-mode header {
            background: var(--bg-light);
            box-shadow: 0 1px 0 0 var(--border-color);
        }

        html.dark-mode header.scrolled {
            background: rgba(35, 31, 29, 0.85);
        }

        .header-container {
            max-width: 1650px;
            margin: 0 auto;
            display: flex;
            flex-wrap: nowrap;
            justify-content: space-between;
            align-items: center;
            gap: 2rem;
        }

        .nav-controls {
            display: flex;
            flex-wrap: nowrap;
            align-items: center;
            gap: 1rem;
            flex-shrink: 0;
        }

        .main-links {
            display: flex;
            gap: 2rem;
            align-items: center;
        }

        .desktop-nav {
            display: flex;
            gap: 2rem;
            align-items: center;
        }

        .logo {
            font-size: 1.5rem;
            font-weight: 700;
            text-decoration: none;
            display: flex;
            align-items: center;
            gap: 0.75rem;
            transition: var(--transition);
            flex-shrink: 1;
            min-width: 0;
        }

        .logo:hover {
            opacity: 0.85;
            transform: translateY(-1px);
        }

        .logo:active {
            transform: translateY(0);
        }

        .logo svg {
            flex-shrink: 0;
        }

        .logo-text {
            font-family: 'Source Serif 4', Georgia, 'Times New Roman', serif;
            font-weight: 700;
            letter-spacing: 0.02em;
            background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-color) 100%);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }

        /* Logo theme switching */
        .logo-light {
            display: block;
        }

        .logo-dark {
            display: none;
        }

        html.dark-mode .logo-light {
            display: none;
        }

        html.dark-mode .logo-dark {
            display: block;
        }

        .main-links a {
            color: var(--text-dark);
            text-decoration: none;
            font-size: 0.95rem;
            transition: var(--transition);
        }

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

        .cta-nav {
            background: linear-gradient(180deg, #D4876A 0%, #C66E52 100%);
            color: white;
            padding: 0.6rem 1.5rem;
            border-radius: var(--radius-md);
            font-weight: 600;
            transition: var(--transition);
            border: 1px solid rgba(139, 90, 66, 0.3);
            cursor: pointer;
            text-decoration: none;
            box-shadow:
                0 2px 8px rgba(204, 120, 92, 0.25),
                inset 0 1px 0 rgba(255, 255, 255, 0.15);
            position: relative;
            overflow: hidden;
            letter-spacing: 0.01em;
        }

        .cta-nav::before {
            content: none;
        }

        .cta-nav:hover {
            background: linear-gradient(180deg, #DE9276 0%, #CF7A5E 100%);
            transform: translateY(-2px);
            box-shadow:
                0 6px 16px rgba(198, 110, 82, 0.35),
                inset 0 1px 0 rgba(255, 255, 255, 0.2);
        }

        .cta-nav:active {
            transform: translateY(0);
            box-shadow:
                0 2px 6px rgba(198, 110, 82, 0.2),
                inset 0 1px 2px rgba(0, 0, 0, 0.1);
        }

         .cta-nav2 {
            color: white;
            font-weight: 600;
            transition: var(--transition);
            border: none;
            cursor: pointer;
            text-decoration: none;
        }

        .cta-nav2:hover {
                      color: rgb(133, 132, 132);
            transform: translateY(-2px);
            box-shadow: var(--shadow);
        }

        .icon, svg, i {
            color: var(--text-light);
        }

        /* Hamburger Menu */
        .nav-toggle {
            position: absolute;
            opacity: 0;
            width: 0;
            height: 0;
        }

        .hamburger {
            display: none;
            flex-direction: column;
            gap: 4px;
            background: none;
            border: none;
            cursor: pointer;
            padding: 0.5rem;
            z-index: 101;
        }

        .hamburger span {
            width: 24px;
            height: 2px;
            background: var(--text-dark);
            transition: var(--transition);
            border-radius: 2px;
        }

        .nav-toggle:checked + .hamburger span:nth-child(1) {
            transform: rotate(45deg) translate(6px, 6px);
        }

        .nav-toggle:checked + .hamburger span:nth-child(2) {
            opacity: 0;
        }

        .nav-toggle:checked + .hamburger span:nth-child(3) {
            transform: rotate(-45deg) translate(6px, -6px);
        }

        /* Theme Toggle */
        .theme-toggle {
            position: relative;
            width: 50px;
            height: 20px;
            background: var(--bg-card);
            border: 1.5px solid var(--border-color);
            border-radius: 14px;
            cursor: pointer;
            transition: var(--transition);
            padding: 0;
            box-shadow: var(--shadow-xs);
        }

        .theme-toggle:hover {
            border-color: var(--primary-color);
            box-shadow: var(--shadow-sm);
            transform: scale(1.05);
        }

        .theme-toggle:active {
            transform: scale(0.95);
        }

        .theme-toggle-inner {
            position: absolute;
            width: 17px;
            height: 17px;
            border-radius: 50%;
            background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
            top: 1px;
            left: 2px;
            transition: var(--transition-spring);
            box-shadow: 0 2px 4px rgba(204, 120, 92, 0.3);
        }
        

        html.dark-mode .theme-toggle-inner {
            left: 24px;
        }

        /* Container */
        .container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 2rem;
        }

        /* Hero Section */
        .hero {
            padding: 5rem 2rem 5rem;
            background: linear-gradient(180deg, #f0ece0 0%, #f6f2ec 100%);
            text-align: center;
            position: relative;
            min-height: 100vh;
        }

        .hero-grid-overlay {
            position: absolute;
            inset: 0;
            background-image:
                linear-gradient(rgba(180, 180, 180, 0.2) 1px, transparent 1px),
                linear-gradient(90deg, rgba(180, 180, 180, 0.2) 1px, transparent 1px);
            background-size: 90px 90px;
            background-position: center;
            pointer-events: none;
            z-index: 0;
            opacity: 0.45;
            mask-image: radial-gradient(170% 170% at 100% 100%, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0) 35%, rgba(0, 0, 0, 0.45) 60%, rgba(0, 0, 0, 1) 85%);
            -webkit-mask-image: radial-gradient(170% 170% at 100% 100%, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0) 35%, rgba(0, 0, 0, 0.45) 60%, rgba(0, 0, 0, 1) 85%);
        }

        .hero-particles {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            z-index: 1;
            pointer-events: none;
        }

        .hero-content {
            position: relative;
            z-index: 2;
        }

        .hero h1 {
            font-family: 'Source Serif 4', Georgia, 'Times New Roman', serif;
            font-size: 5.5rem;
            line-height: 1.05;
            margin-bottom: 1.75rem;
            color: var(--text-dark);
            font-weight: 700;
            letter-spacing: 0.02em;
            text-transform: uppercase;
        }

        .hero h1 .gradient-text {
            background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            position: relative;
            display: inline-block;
        }

        .hero h1 .gradient-text::after {
            content: '';
            position: absolute;
            bottom: -8px;
            left: 0;
            right: 0;
            height: 4px;
            background: linear-gradient(90deg, var(--primary-color) 0%, var(--secondary-color) 100%);
            border-radius: 2px;
            opacity: 0.3;
        }

        .hero p {
            font-size: 1.5rem;
            color: var(--text-light);
            max-width: 720px;
            margin: 0 auto 2.5rem;
            line-height: 1.5;
            font-weight: 400;
        }

        .hero-badges {
            display: flex;
            justify-content: center;
            gap: 1rem;
            margin-bottom: 2rem;
            flex-wrap: wrap;
                       padding-bottom: 2rem;
        }

        .badge {
            display: inline-flex;
            align-items: center;
            gap: 0.5rem;
            padding: 0.625rem 1.25rem;
            background: rgba(255, 255, 255, 0.03);
            border: 2px solid var(--border-color);
            border-radius: var(--radius-full);
            font-size: 0.9375rem;
            color: var(--text-dark);
            font-weight: 500;
            transition: var(--transition);
            box-shadow: var(--shadow-xs);
        }

        .badge:hover {
            border-color: var(--primary-color);
            transform: translateY(-2px) scale(1.03);
            box-shadow: var(--shadow-md);
            background: linear-gradient(135deg, rgba(255, 255, 255, 1) 0%, rgba(204, 120, 92, 0.05) 100%);
        }

        .badge-icon {
            font-size: 1.1rem;
            color: var(--success-color);
        }

        .badge-visual {
            position: relative;
        }

        .badge-shield-container {
            position: relative;
            display: inline-flex;
            align-items: center;
            justify-content: center;
            width: 28px;
            height: 28px;
        }

        .badge-shield {
            width: 24px;
            height: 24px;
            color: var(--success-color);
        }

        .badge-shield-gray {
            color: #b8ada3;
        }

        .badge-checkmark {
            position: absolute;
            width: 14px;
            height: 14px;
            color: white;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
        }

        .badge-x {
            position: absolute;
            width: 16px;
            height: 16px;
            color: #ef4444;
            top: -4px;
            right: -4px;
            background: white;
            border-radius: 999px;
            padding: 1px;
        }

        html.dark-mode .badge-x {
            background: var(--bg-card);
        }

        .cta-group {
            display: flex;
            justify-content: center;
            gap: 1.5rem;
            margin-top: 2rem;
            flex-wrap: wrap;
        }

        .cta-primary-wrapper {
            display: flex;
            flex-direction: column;
            align-items: center;
            gap: 0.75rem;
        }

        .cta-subtext {
            font-size: 0.875rem;
            color: var(--text-light);
            font-weight: 500;
        }

        .btn {
            padding: 1rem 2rem;
            border: none;
            border-radius: var(--radius-lg);
            font-size: 1.5rem;
            font-weight: 600;
            cursor: pointer;
            transition: var(--transition);
            text-decoration: none;
            display: inline-flex;
            align-items: center;
            justify-content: center;
            gap: 0.5rem;
            position: relative;
            overflow: hidden;
        }

        .btn::before {
            content: none;
        }

        .btn > * {
            position: relative;
            z-index: 1;
        }

.btn-primary {
  background: linear-gradient(
    180deg,
    #D4876A 0%,
    #C66E52 100%
  );
  color: #ffffff;

  border: 1px solid rgba(198, 110, 82, 0.45);
  border-radius: var(--radius-lg);

  box-shadow:
    0 8px 20px rgba(198, 110, 82, 0.28),
    inset 0 1px 0 rgba(255, 255, 255, 0.12);

  letter-spacing: 0.02em;
  transition: var(--transition);
}

.btn-primary:hover {
  background: linear-gradient(
    180deg,
    #DE9276 0%,
    #CF7A5E 100%
  );

  transform: translateY(-2px);

  box-shadow:
    0 14px 34px rgba(198, 110, 82, 0.38),
    inset 0 1px 0 rgba(255, 255, 255, 0.18);
}

.btn-primary:active {
  transform: translateY(0);

  box-shadow:
    0 6px 16px rgba(198, 110, 82, 0.28),
    inset 0 2px 4px rgba(0, 0, 0, 0.15);
}

        .btn-primary:active {
            transform: translateY(0);
            box-shadow:
                0 2px 6px rgba(204, 120, 92, 0.25),
                inset 0 1px 2px rgba(0, 0, 0, 0.1);
        }

        .btn-secondary {
            background: var(--bg-white);
            color: var(--text-dark);
            border: 2px solid var(--border-color);
            box-shadow: var(--shadow-xs);
        }

        .btn-secondary::before {
            background: linear-gradient(135deg, rgba(204, 120, 92, 0.05) 0%, rgba(99, 102, 241, 0.05) 100%);
        }

        .btn-secondary:hover {
            border-color: var(--primary-color);
            background: var(--bg-card);
            box-shadow: var(--shadow-md);
            transform: translateY(-2px);
        }

        .btn-secondary:hover::before {
            opacity: 1;
        }

        .btn-secondary:active {
            transform: translateY(0);
        }

        /* Enhanced Focus States for Accessibility */
        .btn:focus-visible,
        .btn-primary:focus-visible,
        .btn-secondary:focus-visible,
        .btn-ghost:focus-visible,
        .btn-pill-primary:focus-visible,
        .cta-nav:focus-visible,
        .theme-toggle:focus-visible {
            outline: 3px solid var(--primary-color);
            outline-offset: 3px;
        }

        button:focus-visible,
        a:focus-visible {
            outline: 2px solid var(--primary-color);
            outline-offset: 2px;
            border-radius: var(--radius-sm);
        }

        .btn-icon {
            width: 50px;
            height: 50px;
        }

        /* Scroll Down Arrow */
        .scroll-down-arrow {
            display: flex;
            align-items: center;
            justify-content: center;
            width: 48px;
            height: 48px;
            border-radius: 50%;
            background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
            color: white;
            cursor: pointer;
            transition: box-shadow 0.3s cubic-bezier(0.4, 0, 0.2, 1);
            animation: moveDown 2s ease-in-out infinite;
            z-index: 2;
            box-shadow: 0 4px 12px rgba(204, 120, 92, 0.3);
            position: absolute;
            top: calc(100vh - 10rem);
            left: 50%;
            transition: box-shadow 0.3s cubic-bezier(0.4, 0, 0.2, 1);
        }

        .scroll-down-arrow svg {
            stroke: white;
        }

        .scroll-down-arrow:hover {
            box-shadow: 0 8px 24px rgba(204, 120, 92, 0.4);
        }

        @keyframes moveDown {
            0%, 100% {
                transform: translateX(-50%) translateY(0);
            }
            50% {
                transform: translateX(-50%) translateY(12px);
            }
        }

        /* How It Works */
        .how-it-works {
            padding: 5rem 0;
            background: var(--bg-card);
            scroll-margin-top: 2.5rem;
        }

            .why-claims {
            padding: 5rem 0;
            background: var(--bg-card);
        }

        .section-title {
            font-family: 'Source Serif 4', Georgia, 'Times New Roman', serif;
            font-size: 3.25rem;
            font-weight: 700;
            text-align: center;
            margin-bottom: 1.25rem;
            color: var(--text-dark);
            line-height: 1.15;
            letter-spacing: -0.01em;
        }

        .section-title span {
            background: var(--text-dark);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            position: relative;
        }

        .section-subtitle {
            font-size: 1.25rem;
            color: var(--text-light);
            text-align: center;
            max-width: 680px;
            margin: 0 auto 3.5rem;
            line-height: 1.6;
            font-weight: 400;
        }

        .steps-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 2rem;
            margin-top: 3rem;
            position: relative;
            --steps-gap: 2rem;
            --connector-offset: 24px;
            --connector-color: rgba(139, 107, 71, 0.14);
        }

        html.dark-mode .steps-grid {
            --connector-color: rgba(240, 214, 196, 0.4);
        }

        @media (min-width: 960px) {
            .steps-grid::before,
            .steps-grid::after {
                content: "";
                position: absolute;
                top: 50%;
                transform: translateY(-50%);
                height: 1px;
                width: calc(var(--steps-gap) + (var(--connector-offset) * 2) + 8px);
                background-image: repeating-linear-gradient(
                    90deg,
                    var(--connector-color) 0px,
                    var(--connector-color) 2px,
                    transparent 2px,
                    transparent 9px
                );
                pointer-events: none;
                z-index: 0;
            }

            .steps-grid::before {
                left: calc(((100% - (2 * var(--steps-gap))) / 3) - var(--connector-offset));
            }

            .steps-grid::after {
                left: calc((((100% - (2 * var(--steps-gap))) / 3) * 2) + var(--steps-gap) - var(--connector-offset));
            }

            .step-card {
                position: relative;
                z-index: 1;
            }
        }

        @media (max-width: 959px) {
            .steps-grid::before,
            .steps-grid::after {
                display: none;
            }
        }

        .step-card {
            background: white;
            padding: 2.5rem;
            border-radius: var(--radius-xl);
            border: 2px solid var(--border-color);
            transition: var(--transition-slow);
            position: relative;
            overflow: hidden;
            box-shadow: var(--shadow-sm);
        }

        .step-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            height: 3px;
            background: linear-gradient(90deg, var(--primary-color) 0%, var(--secondary-color) 100%);
            transform: scaleX(0);
            transform-origin: left;
            transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
        }

        .step-card:hover {
            border-color: var(--primary-color);
            transform: translateY(-8px);
            box-shadow: var(--shadow-lg);
            background: linear-gradient(135deg, rgba(255, 255, 255, 1) 0%, rgba(204, 120, 92, 0.02) 100%);
        }

        .step-card:hover::before {
            transform: scaleX(1);
        }

        .step-number {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            width: 52px;
            height: 52px;
            background: linear-gradient(180deg, #D4876A 0%, #C66E52 100%);
            color: white;
            border-radius: var(--radius-lg);
            font-size: 1.5rem;
            font-weight: 700;
            margin-bottom: 1.5rem;
            box-shadow: 0 4px 12px rgba(198, 110, 82, 0.25);
            transition: var(--transition-spring);
        }

        .step-card:hover .step-number {
            transform: scale(1.12) rotate(-5deg);
            box-shadow: 0 8px 24px rgba(198, 110, 82, 0.4);
        }

        .step-card h3 {
            font-family: 'Source Serif 4', Georgia, 'Times New Roman', serif;
            font-size: 1.6rem;
            margin-bottom: 0.875rem;
            color: var(--text-dark);
            font-weight: 600;
            letter-spacing: -0.01em;
        }

        .step-card p {
            font-size: 1.15rem;
            line-height: 1.65;
            font-weight: 500;
            color: var(--text-light);
        }

        html.dark-mode .step-card p {
            color: #DED7D0;
        }

        .highlight-box {
            background: linear-gradient(135deg, rgba(204, 120, 92, 0.08) 0%, rgba(99, 102, 241, 0.08) 100%);
            padding: 1.75rem 2rem;
            border-left: 4px solid var(--primary-color);
            border-radius: 12px;
            margin-top: 2.5rem;
            font-weight: 500;
            font-size: 1.05rem;
            color: var(--text-dark);
            box-shadow: 0 4px 12px rgba(204, 120, 92, 0.08);
            position: relative;
            overflow: hidden;
        }

        .highlight-box::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            bottom: 0;
            width: 4px;
            background: linear-gradient(180deg, var(--primary-color) 0%, var(--secondary-color) 100%);
        }

        /* Why Claims Happen */
.why-card {
    padding: 2rem 2.5rem;
    background: var(--bg-card);
    border-radius: 16px;
    border-left: 4px solid var(--primary-color);
    font-size: 1.25rem;
    font-weight: 500;
    color: var(--text-dark);
    line-height: 1.7;

    /* Smooth premium motion */
    transition:
        transform .35s cubic-bezier(.22,.61,.36,1),
        box-shadow .35s cubic-bezier(.22,.61,.36,1),
        rotate .35s cubic-bezier(.22,.61,.36,1);
    transform-origin: center;
}

/* Success block */
.why-card-success {
    background: linear-gradient(135deg, rgba(34,197,94,0.12), rgba(16,185,129,0.06));
    border-left-color: var(--success-color);
}

.why-card-sub {
    display: block;
    margin-top: 0.6rem;
    font-size: 1.15rem;
    color: var(--text-light);
}

/* Hover glow */
.why-card:hover {
    box-shadow: 0 18px 38px rgba(204, 120, 92, 0.20);
}

/* Directional slide + micro tilt */
.why-card:nth-child(1):hover { 
    transform: translate(12px, -10px) scale(1.13);
    rotate: -1deg;
}

.why-card:nth-child(2):hover { 
    transform: translate(-12px, 10px) scale(1.13);
    rotate: 1deg;
}

.why-card:nth-child(3):hover { 
    transform: translateY(-14px) scale(1.13);
    rotate: -0.8deg;
}

.why-card:nth-child(4):hover { 
    transform: translateY(14px) scale(1.13);
    rotate: 0.8deg;
}

.why-card:nth-child(5):hover { 
    transform: translate(14px, 0) scale(1.13);
    rotate: -1deg;
}

.why-card:nth-child(6):hover {
    transform: translate(-14px, 0) scale(1.13);
    rotate: 1deg;
}

        /* Try Free Tool Section */
        .try-free-tool {
            padding: 5rem 0;
            background: linear-gradient(135deg, rgba(204, 120, 92, 0.06) 0%, rgba(99, 102, 241, 0.06) 100%), var(--bg-white);
            scroll-margin-top: 2.5rem;
        }

        html.dark-mode .try-free-tool {
            background: #2a2420;
        }

        /* Two-column layout */
        .try-free-layout {
            display: grid;
            grid-template-columns: 1fr 1.3fr;
            gap: 3rem;
            margin-top: 3rem;
            align-items: start;
        }

        /* Left: Instructions with big numbers */
        .try-free-instructions {
            display: flex;
            flex-direction: column;
            gap: 1.75rem;
            padding-right: 3rem;
            border-right: 2px solid rgba(232, 227, 219, 0.4);
        }

        html.dark-mode .try-free-instructions {
            border-right-color: rgba(74, 68, 62, 0.3);
        }

        .instruction-step {
            display: flex;
            gap: 1.25rem;
            align-items: flex-start;
        }

        .instruction-number {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            width: 56px;
            height: 56px;
            min-width: 56px;
            background: linear-gradient(180deg, #D4876A 0%, #C66E52 100%);
            color: white;
            border-radius: var(--radius-lg);
            font-size: 1.75rem;
            font-weight: 700;
            box-shadow: 0 4px 12px rgba(198, 110, 82, 0.25);
            transition: transform 0.3s ease, box-shadow 0.3s ease;
        }

        .instruction-step:hover .instruction-number {
            transform: scale(1.08) rotate(-3deg);
            box-shadow: 0 8px 24px rgba(198, 110, 82, 0.35);
        }

        .instruction-content h4 {
            font-family: 'Source Serif 4', Georgia, 'Times New Roman', serif;
            font-size: 1.35rem;
            font-weight: 600;
            color: var(--text-dark);
            margin-bottom: 0.35rem;
        }

        .instruction-content p {
            font-size: 1.05rem;
            color: var(--text-light);
            line-height: 1.55;
        }

        html.dark-mode .instruction-content p {
            color: #DED7D0;
        }

        .instructions-note {
            font-size: 0.95rem;
            color: var(--text-light);
            margin-top: 0.5rem;
            display: flex;
            align-items: center;
            gap: 0.5rem;
        }

        .instructions-note i {
            color: var(--primary-color);
        }

        /* Right: Generator Form */
        .try-free-generator {
            background: transparent;
            border: none;
            padding: 0;
            box-shadow: none;
        }

        .generator-url-input {
            text-align: center;
            margin-bottom: 1.25rem;
            padding-bottom: 1.25rem;
            border-bottom: 2px dashed var(--border-color);
        }

        html.dark-mode .generator-url-input {
            border-bottom: none;
            padding-bottom: 0;
            margin-bottom: 1.25rem;
        }

        .generator-label {
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 0.5rem;
            font-weight: 600;
            font-size: 1rem;
            margin-bottom: 0.625rem;
            color: var(--text-dark);
        }

        html.dark-mode .generator-label {
            color: var(--text-light-dark);
        }

        .generator-label i {
            color: var(--primary-color);
        }

        .generator-input {
            width: 100%;
            padding: 0.75rem 1rem;
            border: 2px solid var(--border-color);
            border-radius: var(--radius-lg);
            font-size: 0.95rem;
            background: white;
            color: var(--text-dark);
            transition: border-color 0.2s, box-shadow 0.2s;
        }

        html.dark-mode .generator-input {
            background: #352F2A;
            border: 1px solid #786f69;
            padding: 1rem 1.25rem;
            color: var(--text-light-dark);
        }

        .generator-input:focus {
            outline: none;
            border-color: var(--primary-color);
            box-shadow: 0 0 0 3px rgba(204, 120, 92, 0.15);
        }

        /* Override browser autofill styles */
        .generator-input:-webkit-autofill,
        .generator-input:-webkit-autofill:hover,
        .generator-input:-webkit-autofill:focus {
            -webkit-box-shadow: 0 0 0 1000px #e8e0d5 inset !important; /* browser-forced autofill bg; box-shadow color-fill hack requires !important */
            box-shadow: 0 0 0 1000px #e8e0d5 inset !important; /* same: standard-property mirror of the above */
            -webkit-text-fill-color: var(--text-dark) !important; /* browser overrides color on autofill; -webkit-text-fill-color + !important is the only escape */
        }

        html.dark-mode .generator-input:-webkit-autofill,
        html.dark-mode .generator-input:-webkit-autofill:hover,
        html.dark-mode .generator-input:-webkit-autofill:focus {
            -webkit-box-shadow: 0 0 0 1000px #584c44 inset !important; /* dark-mode autofill bg override; same browser limitation as above */
            box-shadow: 0 0 0 1000px #584c44 inset !important; /* standard-property mirror */
            -webkit-text-fill-color: var(--text-light-dark) !important; /* dark-mode autofill text color; browser-forced */
        }

        .generator-input-url {
            text-align: center;
        }

        .generator-input::placeholder {
            color: #888;
        }

        html.dark-mode .generator-input::placeholder {
            color: #7D7770;
        }

        .generator-tip {
            display: flex;
            align-items: center;
            gap: 0.5rem;
            padding: 0.75rem 1rem;
            background: rgba(204, 120, 92, 0.08);
            border: 1px solid rgba(237, 68, 12, 0.2);
            border-radius: var(--radius-md);
            font-size: 0.9rem;
            color: var(--text-dark);
            margin-bottom: 1rem;
        }

        .generator-tip i {
            color: var(--primary-color);
            line-height: 1.4;
        }

        html.dark-mode .generator-tip {
            background: rgba(204, 120, 92, 0.1);
            border-color: rgba(204, 120, 92, 0.25);
        }

        .tip-link {
            color: var(--primary-color);
            text-decoration: underline;
            font-weight: 500;
        }

        .tip-link:hover {
            color: var(--secondary-color);
        }

        /* Tooltip styles */
        .tooltip-wrapper {
            position: relative;
            display: inline-flex;
            align-items: center;
            gap: 0.35rem;
        }

        .tooltip-icon {
            font-size: 0.7rem;
            color: var(--text-muted);
            cursor: help;
            opacity: 0.6;
        }

        .tooltip-wrapper:hover .tooltip-icon {
            opacity: 1;
            color: var(--primary-color);
        }

        .tooltip-text {
            visibility: hidden;
            opacity: 0;
            position: absolute;
            bottom: 125%;
            left: 50%;
            transform: translateX(-50%);
            background-color: #333;
            color: #fff;
            text-align: center;
            padding: 0.5rem 0.75rem;
            border-radius: 6px;
            font-size: 0.8rem;
            font-weight: 400;
            white-space: nowrap;
            z-index: 100;
            transition: opacity 0.2s, visibility 0.2s;
        }

        .tooltip-text::after {
            content: "";
            position: absolute;
            top: 100%;
            left: 50%;
            margin-left: -5px;
            border-width: 5px;
            border-style: solid;
            border-color: #333 transparent transparent transparent;
        }

        .tooltip-wrapper:hover .tooltip-text {
            visibility: visible;
            opacity: 1;
        }

        html.dark-mode .tooltip-text {
            background-color: #4a433d;
        }

        html.dark-mode .tooltip-text::after {
            border-color: #4a433d transparent transparent transparent;
        }

        .generator-form {
            display: flex;
            flex-direction: column;
            gap: 1.1rem;
        }

        html.dark-mode .generator-form {
            gap: 1.1rem;
        }

        .generator-row {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 1rem;
        }

        .generator-field {
            display: flex;
            flex-direction: column;
        }

        .generator-label-sm {
            font-size: 0.9rem;
            font-weight: 500;
            margin-bottom: 0.4rem;
            color: var(--text-dark);
        }

        html.dark-mode .generator-label-sm {
            color: #b8b1ab;
            font-size: 0.85rem;
        }

        .generator-label-sm .required {
            color: #ef4444;
        }

        html.dark-mode .generator-label-sm .required {
            color: var(--primary-color);
        }

        .generator-actions {
            display: flex;
            gap: 1rem;
            margin-top: 0.5rem;
        }

        html.dark-mode .generator-actions {
            margin-top: 0.5rem;
        }

        .generator-actions .btn-primary {
            flex: 1;
            display: inline-flex;
            align-items: center;
            justify-content: center;
            gap: 0.5rem;
        }

        .generator-actions .btn-primary i {
            color: #F0EBE6;
        }

        html.dark-mode .generator-actions .btn-primary {
            padding: 1rem 1.5rem;
        }

        .generator-actions .btn-secondary {
            display: inline-flex;
            align-items: center;
            gap: 0.5rem;
            background: transparent;
            border: 2px solid var(--border-color);
            color: var(--text-light);
        }

        .generator-actions .btn-secondary:hover {
            background: var(--border-color);
            color: var(--text-dark);
        }

        html.dark-mode .generator-actions .btn-secondary {
            background: #352F2A;
            border: 1px solid #3D3733;
            padding: 1rem 1.5rem;
            color: var(--text-light-dark);
        }

        html.dark-mode .generator-actions .btn-secondary:hover {
            background: #3D3733;
        }

        /* Generator Preview */
        .generator-preview {
            margin-top: 2rem;
            padding-top: 2rem;
            border-top: 2px solid var(--border-color);
        }

        html.dark-mode .generator-preview {
            border-top: none;
            margin-top: 1.5rem;
            padding-top: 0;
        }

        .preview-title {
            font-family: 'Source Serif 4', Georgia, 'Times New Roman', serif;
            font-size: 1.25rem;
            font-weight: 600;
            margin-bottom: 1rem;
            color: var(--text-dark);
        }

        html.dark-mode .preview-title {
            color: #A09890;
            font-size: 1rem;
        }

        .preview-text {
            font-family: 'JetBrains Mono', ui-monospace, monospace;
            font-size: 0.8rem;
            line-height: 1.6;
            background: #f8f9fa;
            border: 1px solid var(--border-color);
            border-radius: var(--radius-lg);
            padding: 1.25rem;
            max-height: 300px;
            overflow-y: auto;
            overflow-x: hidden;
            white-space: pre-wrap;
            word-wrap: break-word;
            color: var(--text-dark);
            
        }

        html.dark-mode .preview-text {
            background: #352F2A;
            border: 1px solid #3D3733;
            border-radius: 1rem;
            color: var(--text-light-dark);
        }

        .preview-actions {
            display: flex;
            flex-wrap: wrap;
            gap: 0.75rem;
            margin-top: 1rem;
        }

        .btn-outline {
            background: transparent;
            border: 2px solid var(--border-color);
            color: var(--text-dark);
            padding: 0.5rem 1rem;
            border-radius: var(--radius-md);
            font-size: 0.9rem;
            font-weight: 500;
            cursor: pointer;
            transition: all 0.2s;
            display: inline-flex;
            align-items: center;
            gap: 0.4rem;
        }

        .btn-outline:hover {
            border-color: var(--primary-color);
            color: var(--primary-color);
            background: rgba(204, 120, 92, 0.05);
        }

        html.dark-mode .btn-outline {
            background: #352F2A;
            border: 1px solid #3D3733;
            border-radius: 50px;
            color: var(--text-light-dark);
        }

        html.dark-mode .btn-outline:hover {
            background: #3D3733;
            border-color: #4D4743;
            color: var(--text-light-dark);
        }

        .btn-sm {
            padding: 0.5rem 0.875rem;
            font-size: 0.85rem;
        }

        html.dark-mode .btn-sm {
            padding: 0.625rem 1rem;
        }

        .generator-link {
            color: var(--primary-color);
            text-decoration: none;
            font-weight: 500;
        }

        .generator-link:hover {
            text-decoration: underline;
        }

        .generator-link-mobile {
            text-align: center;
            margin-top: 1.25rem;
            font-size: 0.9rem;
            display: none;
        }

        /* License Activation Card */
        .license-activation-card {
            margin-top: 1.5rem;
            padding: 1.25rem;
            background: var(--bg-card);
            border: 1px dashed var(--border-color);
            border-radius: var(--radius-lg);
        }

        html.dark-mode .license-activation-card {
            background: rgba(45, 41, 38, 0.6);
            border-color: var(--border-color);
        }

        .license-activation-header {
            display: flex;
            align-items: flex-start;
            gap: 1rem;
            margin-bottom: 1rem;
        }

        .license-icon {
            width: 40px;
            height: 40px;
            background: linear-gradient(180deg, #D4876A 0%, #C66E52 100%);
            border-radius: var(--radius-md);
            display: flex;
            align-items: center;
            justify-content: center;
            flex-shrink: 0;
        }

        .license-icon i {
            color: white;
            font-size: 1.1rem;
        }

        .license-activation-header h4 {
            font-size: 1rem;
            font-weight: 600;
            margin: 0 0 0.25rem 0;
            color: var(--text-dark);
        }

        .license-subtitle {
            font-size: 0.875rem;
            color: var(--text-light);
            margin: 0 0 0.25rem 0;
        }

        .license-note {
            font-size: 0.75rem;
            color: var(--text-lighter);
            margin: 0;
            font-style: italic;
        }

        /* Pro License Active Badge */
        .pro-license-badge {
            display: flex;
            align-items: center;
            gap: 0.5rem;
            padding: 0.75rem 1rem;
            background: linear-gradient(135deg, #7c3aed 0%, #6d28d9 100%);
            border-radius: var(--radius-md);
            color: white;
            font-weight: 600;
            font-size: 0.9rem;
        }

        .pro-license-badge i {
            color: white;
        }

        .pro-license-badge.hidden {
            display: none;
        }

        .badge-close {
            margin-left: auto;
            background: transparent;
            border: none;
            color: white;
            opacity: 0.7;
            cursor: pointer;
            padding: 0.25rem;
            transition: opacity 0.2s;
        }

        .badge-close:hover {
            opacity: 1;
        }

        /* License Form */
        .license-form.hidden {
            display: none;
        }

        .license-input-group {
            display: flex;
            gap: 0.5rem;
            margin-bottom: 0.75rem;
        }

        .license-input {
            flex: 1;
            padding: 0.75rem 1rem;
            border: 2px solid var(--border-color);
            border-radius: var(--radius-md);
            font-size: 0.9rem;
            font-family: monospace;
            text-transform: uppercase;
            letter-spacing: 0.05em;
            background: white;
            color: var(--text-dark);
            text-align: center;
        }

        html.dark-mode .license-input {
            background: #352F2A;
            border-color: #786f69;
            color: var(--text-dark);
        }

        .license-input:focus {
            outline: none;
            border-color: var(--primary-color);
            box-shadow: 0 0 0 3px rgba(204, 120, 92, 0.15);
        }

        .license-input::placeholder {
            color: #999;
            text-transform: uppercase;
        }

        .license-btn {
            flex-shrink: 0;
            white-space: nowrap;
        }

        .license-status {
            font-size: 0.8rem;
            min-height: 1.25rem;
        }

        .license-status.success {
            color: var(--success-color);
        }

        .license-status.error {
            color: #ef4444;
        }

        .license-recovery-link {
            text-align: center;
            margin-top: 0.5rem;
            font-size: 0.8rem;
        }

        .license-recovery-link a {
            color: var(--text-light);
            text-decoration: none;
            transition: color 0.2s;
        }

        .license-recovery-link a:hover {
            color: var(--primary-color);
            text-decoration: underline;
        }

        /* License Activation Modal */
        #licenseActivationModal .modal-card {
            max-width: 420px;
            text-align: center;
        }

        #licenseActivationModal .modal-icon {
            width: 56px;
            height: 56px;
            background: linear-gradient(180deg, #D4876A 0%, #C66E52 100%);
            border-radius: var(--radius-lg);
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 0 auto 1rem;
        }

        #licenseActivationModal .modal-icon i {
            color: white;
            font-size: 1.5rem;
        }

        #licenseActivationModal .modal-title {
            font-family: 'Source Serif 4', Georgia, 'Times New Roman', serif;
            font-size: 1.5rem;
            font-weight: 700;
            margin-bottom: 0.5rem;
            background: linear-gradient(135deg, var(--primary-light) 0%, var(--primary-dark) 100%);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }

        #licenseActivationModal .modal-subtitle {
            font-size: 0.9rem;
            color: var(--text-light);
            margin-bottom: 0.25rem;
        }

        #licenseActivationModal .modal-note {
            font-size: 0.8rem;
            color: var(--text-lighter);
            font-style: italic;
            margin-bottom: 1.25rem;
        }

        #licenseActivationModal .license-input-group {
            margin-bottom: 0.75rem;
        }

        #licenseActivationModal .license-input {
            width: 100%;
            margin-bottom: 0.5rem;
        }

        #licenseActivationModal .license-btn {
            width: 100%;
        }

        #licenseActivationModal .license-btn i {
            color: #F5F1ED;
        }

        #licenseActivationModal .tos-checkbox-group {
            display: flex;
            align-items: center;
            gap: 0.5rem;
            margin-bottom: 1rem;
            font-size: 0.875rem;
            color: var(--text-muted);
        }

        #licenseActivationModal .tos-checkbox-group input[type="checkbox"] {
            flex-shrink: 0;
            width: 16px;
            height: 16px;
            margin: 0;
            margin-bottom: 2px;
            accent-color: var(--primary-color);
            cursor: pointer;
        }

        #licenseActivationModal .tos-checkbox-group label {
            cursor: pointer;
            line-height: 1.3;
        }

        #licenseActivationModal .tos-checkbox-group a {
            color: var(--primary-color);
            text-decoration: underline;
        }

        #licenseActivationModal .pro-license-badge {
            background: linear-gradient(135deg, #CC785C 0%, #B3664A 100%);
            margin-top: 1rem;
            margin-bottom: 1rem;
            justify-content: center;
        }

        /* Nav activate license link */
        .activate-license-link {
            display: inline-flex;
            align-items: center;
            gap: 0.4rem;
            padding: 0.5rem 0.85rem;
            font-size: 0.85rem;
            font-weight: 500;
            color: var(--primary-color);
            background: transparent;
            border: 1px dashed var(--primary-color);
            border-radius: var(--radius-md);
            cursor: pointer;
            transition: var(--transition);
        }

        .activate-license-link:hover {
            background: rgba(204, 120, 92, 0.08);
            border-style: solid;
        }

        html.dark-mode .activate-license-link {
            color: var(--primary-light);
            border-color: var(--primary-light);
        }

        html.dark-mode .activate-license-link:hover {
            background: rgba(224, 144, 112, 0.1);
        }

        /* Home toast notification */
        .home-toast {
            position: fixed;
            bottom: 2rem;
            left: 50%;
            transform: translateX(-50%) translateY(100px);
            background: var(--text-dark);
            color: white;
            padding: 0.875rem 1.5rem;
            border-radius: var(--radius-lg);
            font-size: 0.95rem;
            font-weight: 500;
            z-index: 9999;
            opacity: 0;
            transition: all 0.3s ease;
            box-shadow: var(--shadow-lg);
        }

        .home-toast.show {
            opacity: 1;
            transform: translateX(-50%) translateY(0);
        }

        .home-toast.success {
            background: #22c55e;
        }

        .home-toast.error {
            background: #ef4444;
        }

        .home-toast.info {
            background: var(--primary-color);
        }

        /* Modal system shared with generator-free logic */
        .modal-backdrop {
            position: fixed;
            inset: 0;
            background: rgba(0, 0, 0, 0.55);
            backdrop-filter: blur(4px);
            display: none;
            align-items: center;
            justify-content: center;
            z-index: 9998;
            padding: 1rem;
        }

        .modal-backdrop.show {
            display: flex;
        }

        .modal-card {
            background: var(--bg-white);
            color: var(--text-dark);
            border: 2px solid var(--border-color);
            border-radius: var(--radius-2xl);
            box-shadow: var(--shadow-xl);
            max-width: 560px;
            width: min(560px, 100%);
            padding: 1.75rem;
            position: relative;
        }

        html.dark-mode .modal-card {
            background: var(--bg-card);
            border-color: var(--border-dark);
            color: var(--text-light-dark);
        }

        .modal-close {
            position: absolute;
            top: 0.75rem;
            right: 0.75rem;
            background: transparent;
            border: 2px solid var(--border-color);
            border-radius: 50%;
            width: 40px;
            height: 40px;
            color: var(--text-light);
            cursor: pointer;
            display: grid;
            place-items: center;
        }

        html.dark-mode .modal-close {
            border-color: var(--border-dark);
            color: var(--text-light-dark);
        }

        .modal-close:hover {
            color: var(--text-dark);
            border-color: var(--primary-color);
        }

        .modal-title {
            font-family: 'Source Serif 4', Georgia, 'Times New Roman', serif;
            font-size: 1.35rem;
            font-weight: 700;
            margin-bottom: 0.4rem;
        }

        .modal-text {
            color: var(--text-light);
            line-height: 1.55;
            margin-bottom: 1.25rem;
        }

        .modal-actions {
            display: flex;
            flex-wrap: wrap;
            gap: 0.75rem;
            margin-top: 1rem;
        }

        .modal-actions .btn {
            flex: 1 1 auto;
            justify-content: center;
        }

        .pill {
            display: inline-flex;
            align-items: center;
            gap: 0.45rem;
            padding: 0.35rem 0.75rem;
            border-radius: 999px;
            font-size: 0.8rem;
            font-weight: 600;
            background: rgba(204, 120, 92, 0.1);
            color: var(--primary-color);
        }

        html.dark-mode .pill {
            background: rgba(204, 120, 92, 0.15);
            color: var(--primary-light);
        }

        .cid-track {
            background: var(--bg-card);
            border: 1px dashed var(--border-color);
            border-radius: var(--radius-xl);
            padding: 1rem;
            margin-bottom: 1rem;
        }

        html.dark-mode .cid-track {
            border-color: var(--border-dark);
        }

        .cid-nav {
            display: flex;
            align-items: center;
            gap: 0.5rem;
            justify-content: space-between;
            margin-top: 0.5rem;
        }

        .cid-dots {
            display: inline-flex;
            gap: 0.35rem;
            align-items: center;
        }

        .cid-dot {
            width: 8px;
            height: 8px;
            border-radius: 50%;
            background: var(--border-color);
        }

        .cid-dot.active {
            background: var(--primary-color);
        }

        /* ---- Content ID Modal: distinct visual identity ---- */
        .cid-icon-badge {
            width: 52px;
            height: 52px;
            background: rgba(217, 119, 6, 0.1);
            border: 1.5px solid rgba(217, 119, 6, 0.25);
            border-radius: 50%;
            display: grid;
            place-items: center;
            margin-bottom: 0.75rem;
            color: #B45309;
        }

        html.dark-mode .cid-icon-badge {
            background: rgba(217, 119, 6, 0.12);
            border-color: rgba(217, 119, 6, 0.3);
            color: #FCD34D;
        }

        .badge-shield {
            width: 26px;
            height: 26px;
            display: block;
        }

        .cid-pill {
            background: rgba(217, 119, 6, 0.1) !important;
            color: #B45309 !important;
        }

        html.dark-mode .cid-pill {
            background: rgba(217, 119, 6, 0.15) !important;
            color: #FCD34D !important;
        }

        .cid-info-block {
            color: var(--text-light);
            line-height: 1.6;
            margin-bottom: 1.25rem;
            display: flex;
            flex-direction: column;
            gap: 0.5rem;
        }

        .cid-info-block p {
            margin: 0;
        }

        .cid-note {
            font-size: 0.82rem;
            padding: 0.45rem 0.75rem;
            background: rgba(217, 119, 6, 0.06);
            border-radius: var(--radius-md);
            border-left: 2px solid rgba(217, 119, 6, 0.35);
            color: var(--text-lighter);
        }

        html.dark-mode .cid-note {
            background: rgba(217, 119, 6, 0.08);
            color: var(--text-light);
        }

        #contentIdModal .cid-track {
            border-style: solid;
            border-color: rgba(217, 119, 6, 0.2);
            background: rgba(217, 119, 6, 0.04);
        }

        html.dark-mode #contentIdModal .cid-track {
            border-color: rgba(217, 119, 6, 0.18);
            background: rgba(217, 119, 6, 0.06);
        }

        .support-options {
            display: grid;
            gap: 0.75rem;
            margin: 1rem 0;
        }

        .support-card {
            border: 2px solid var(--border-color);
            border-radius: var(--radius-xl);
            padding: 0.85rem 1rem;
            background: var(--bg-white);
            text-align: left;
            display: flex;
            gap: 0.75rem;
            cursor: pointer;
            transition: var(--transition);
        }

        .support-card:hover {
            border-color: var(--primary-color);
            transform: translateY(-1px);
        }

        html.dark-mode .support-card {
            background: var(--bg-card);
            border-color: var(--border-dark);
        }

        .support-card .icon {
            font-size: 1.35rem;
        }

        .support-card h5 {
            margin: 0;
            font-size: 1rem;
        }

        .support-card p {
            margin: 0.15rem 0 0;
            color: var(--text-light);
            font-size: 0.9rem;
        }

        .modal-small {
            max-width: 480px;
        }

        @media (max-width: 968px) {
            .try-free-layout {
                grid-template-columns: 1fr;
                gap: 2rem;
            }

            .try-free-instructions {
                order: 2;
                display: grid;
                grid-template-columns: repeat(3, 1fr);
                gap: 1.5rem;
                border-right: none;
                padding-right: 0;
            }

            .instruction-step {
                flex-direction: column;
                text-align: center;
                gap: 0.75rem;
            }

            .instruction-number {
                width: 48px;
                height: 48px;
                min-width: 48px;
                font-size: 1.5rem;
                margin: 0 auto;
            }

            .instruction-content h4 {
                font-size: 1.1rem;
            }

            .instruction-content p {
                font-size: 0.9rem;
            }

            .instructions-note {
                display: none;
            }

            .try-free-generator {
                order: 1;
            }

            .generator-link-mobile {
                display: block;
            }
        }

        @media (max-width: 768px) {
            .try-free-instructions {
                grid-template-columns: 1fr;
            }

            .instruction-step {
                flex-direction: row;
                text-align: left;
            }

            .instruction-number {
                margin: 0;
            }

            .try-free-generator {
                padding: 1.5rem;
            }

            .generator-row {
                grid-template-columns: 1fr;
            }

            .generator-actions {
                flex-direction: column;
            }

            .generator-actions .btn-primary,
            .generator-actions .btn-secondary {
                width: 100%;
                justify-content: center;
            }

            .preview-actions {
                justify-content: center;
            }

            .hero {
                padding: 7rem 1.5rem 5rem;
            }

            .hero::before {
                width: 400px;
                height: 400px;
            }

            .hero h1 {
                font-size: 2.75rem;
                letter-spacing: -0.03em;
            }

            .hero p {
                font-size: 1.2rem;
            }

            .section-title {
                font-size: 2.25rem;
            }

            .section-subtitle {
                font-size: 1.1rem;
            }

            .step-card {
                padding: 2rem;
            }

            .step-card h3 {
                font-size: 1.2rem;
            }

            .step-card p {
                font-size: 0.9375rem;
            }

            .step-number {
                width: 48px;
                height: 48px;
                font-size: 1.25rem;
            }

            .faq-question {
                font-size: 1rem;
                padding: 1.25rem 1.5rem;
            }

            .faq-item.active .faq-answer {
                padding: 0 1.5rem 1.5rem;
            }

            .closing h2 {
                font-size: 2.25rem;
            }

            .closing p {
                font-size: 1.2rem;
            }

            .btn {
                padding: 0.8rem 1.5rem;
                font-size: 0.9rem;
            }

            .theme-toggle {
                width: 44px;
                height: 26px;
                display: none;
            }

            .theme-toggle-inner {
                width: 20px;
                height: 20px;
            }

            html.dark-mode .theme-toggle-inner {
                left: 22px;
            }

            .language-selector {
                display: none;
            }

            .cta-nav {
                padding: 0.5rem 1rem;
                font-size: 0.85rem;
            }

            .cta-group {
                gap: 0.8rem;
            }

            .steps-grid {
                gap: 1rem;
            }

            .step-card {
                padding: 1.5rem;
            }

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

            .hero-badges {
                gap: 0.5rem;
            }

            .badge {
                padding: 0.5rem 1rem;
                font-size: 0.8rem;
            }

            .modal {
                padding: 1.5rem;
                border-radius: 16px;
                max-width: 100%;
            }

            .modal-title {
                font-size: 1.5rem;
            }

            .modal-header {
                margin-bottom: 1.5rem;
                padding-bottom: 1rem;
            }

            .modal-steps {
                flex-direction: column;
                gap: 1.5rem;
            }

            .modal-sidebar {
                min-width: auto;
            }

            .step-indicator {
                flex-direction: row;
                gap: 0.5rem;
                justify-content: flex-start;
            }

            .step-indicator-item span:not(.step-indicator-bullet) {
                display: none;
            }

            .step-indicator-bullet {
                width: 36px;
                height: 36px;
            }

            .modal-step-title {
                font-size: 1.125rem;
            }

            .modal-actions {
                flex-direction: column;
                gap: 0.75rem;
                margin-top: 1.5rem;
            }

            .btn-ghost,
            .btn-pill-primary {
                width: 100%;
                justify-content: center;
            }

            .hamburger {
                display: flex;
                z-index: 250;
                position: relative;
            }

            .desktop-nav {
                display: none;
            }

            .header-container {
                gap: 1rem;
                align-items: center;
            }

            .logo {
                font-size: 1.25rem;
                gap: 0.5rem;
            }

            .nav-controls {
                gap: 0.5rem;
            }

            .main-links {
                position: fixed;
                top: 0;
                right: 0;
                width: min(280px, 100vw);
                max-width: 100vw;
                left: auto;
                height: 100vh;
                background: var(--bg-white);
                flex-direction: column;
                justify-content: flex-start;
                padding: 5rem 2rem 2rem;
                gap: 1.5rem;
                box-shadow: -4px 0 12px rgba(0, 0, 0, 0.1);
                transform: translateX(100%);
                transition: transform 0.3s ease;
                z-index: 200;
            }

            #nav-toggle:checked ~ .main-links {
                transform: translateX(0);
            }

            .main-links a {
                width: 100%;
                padding: 0.75rem 0;
                border-bottom: 1px solid var(--border-color);
            }
        }

        @media (max-width: 768px) {
            .nps-card {
                padding: 1.25rem;
            }

            .nps-scale {
                grid-template-columns: repeat(2, minmax(0, 1fr));
            }

            .nps-option label {
                padding: 0.75rem 0.25rem;
            }

            .nps-actions {
                justify-content: stretch;
            }

            .nps-back,
            .nps-next,
            .nps-submit {
                width: 100%;
                text-align: center;
            }
        }

        /* Pricing Section */
        .pricing {
            padding: 5rem 0;
            background: var(--bg-card);
            scroll-margin-top: 2.5rem;
        }

        .pricing-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
            gap: 2rem;
            margin-top: 3rem;
            max-width: 900px;
            margin-left: auto;
            margin-right: auto;
        }

        .pricing-card {
            background: white;
            padding: 2.5rem;
            border-radius: var(--radius-2xl);
            border: 2px solid var(--border-color);
            transition: var(--transition-slow);
            position: relative;
            display: flex;
            flex-direction: column;
            box-shadow: var(--shadow-sm);
        }

        .pricing-card:hover {
            border-color: var(--primary-color);
            transform: translateY(-8px);
            box-shadow: var(--shadow-xl);
            background: linear-gradient(135deg, rgba(255, 255, 255, 1) 0%, rgba(204, 120, 92, 0.03) 100%);
        }

        .pricing-card.featured {
            border-color: #c9a24d;
            box-shadow: 0 8px 24px rgba(204, 120, 92, 0.2);
        }

        .pricing-card.featured::before {
            content: 'POPULAR';
            position: absolute;
            top: -12px;
            right: 20px;
            background: #c9a24d;
            color: white;
            padding: 0.4rem 1rem;
            border-radius: 999px;
            font-size: 0.75rem;
            font-weight: 700;
            letter-spacing: 0.05em;
        }

        .pricing-tier {
            font-size: 1.75rem;
            font-weight: 700;
            margin-bottom: 0.5rem;
            color: var(--text-dark);
        }

        .pricing-price {
            font-size: 3.5rem;
            font-weight: 800;
            color: var(--text-dark);
            margin-bottom: 0.5rem;
            line-height: 1;
        }

        .pricing-price .currency {
            font-size: 1.75rem;
            vertical-align: super;
        }

        .pricing-period {
            font-size: 1.125rem;
            color: var(--text-light);
            margin-bottom: 2rem;
        }

        .pricing-description {
            font-size: 1.0625rem;
            color: var(--text-light);
            margin-bottom: 2rem;
            line-height: 1.6;
        }

        .pricing-features {
            list-style: none;
            margin-bottom: 2rem;
            flex-grow: 1;
        }

        .pricing-features li {
            padding: 0.75rem 0;
            color: var(--text-dark);
            display: flex;
            align-items: flex-start;
            gap: 0.75rem;
            font-size: 1.0625rem;
        }

        .pricing-features li::before {
            content: '✓';
            color: var(--success-color);
            font-weight: 700;
            font-size: 1.125rem;
            flex-shrink: 0;
        }

        .pricing-features li.disabled {
            color: var(--text-lighter);
            text-decoration: line-through;
        }

        .pricing-features li.disabled::before {
            content: '✕';
            color: var(--text-lighter);
        }

        .pricing-cta {
            width: 100%;
            padding: 1rem 2rem;
            border-radius: 10px;
            font-size: 1rem;
            font-weight: 600;
            cursor: pointer;
            transition: var(--transition);
            border: 2px solid var(--border-color);
            background: white;
            color: var(--text-dark);
            text-decoration: none;
            display: block;
            text-align: center;
        }

        .pricing-cta:hover {
            border-color: var(--primary-color);
            background: var(--bg-card);
            transform: translateY(-2px);
        }

        .pricing-card.featured .pricing-cta {

            background: linear-gradient(180deg, #D2805C 0%, #C66A4A 100%);
            color: white;
            border: none;
            box-shadow: 0 4px 12px rgba(198, 110, 82, 0.25);
        }

        .pricing-card.featured .pricing-cta:hover {
            transform: translateY(-2px);
            box-shadow: 0 8px 24px rgba(198, 110, 82, 0.35);
        }

        /* Hard override to ensure visible in all themes/bundles */
        .pricing-card.featured .pricing-cta {
         background: linear-gradient(180deg, #d2764e 0%, #c85833 100%);
        }
        html.dark-mode .pricing-card.featured .pricing-cta {
            background: linear-gradient(180deg, #d2764e 0%, #c85833 100%);
        }

        /* FAQ */
        .faq {
            padding: 5rem 0;
            background: var(--bg-light);
            scroll-margin-top: 2.5rem;
        }

        .faq-container {
            max-width: 900px;
            margin: 0 auto;
        }

        .faq-item {
            background: var(--bg-white);
            margin-bottom: 0.75rem;
            border-radius: 12px;
            overflow: hidden;
            border: 2px solid var(--border-color);
            transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
        }

        .faq-item:hover {
            border-color: var(--primary-color);
            box-shadow: 0 4px 16px rgba(204, 120, 92, 0.1);
            transform: translateX(4px);
        }

        .faq-item.active {
            border-color: var(--primary-color);
            box-shadow: 0 4px 16px rgba(204, 120, 92, 0.12);
        }

        .faq-question {
            padding: 1.5rem 1.75rem;
            cursor: pointer;
            display: flex;
            justify-content: space-between;
            align-items: center;
            font-weight: 600;
            font-size: 1.25rem;
            color: var(--text-dark);
            user-select: none;
            transition: var(--transition);
        }

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

        .faq-item.active .faq-question {
            background: transparent;
        }

        .faq-item.active .faq-question:hover {
            background: transparent;
        }

        .faq-toggle {
            width: 36px;
            height: 36px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.5rem;
            color: var(--text-light);
            background: var(--bg-card);
            border-radius: 8px;
            transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
        }

        .faq-item.active .faq-toggle {
            transform: rotate(180deg);
            background: var(--primary-color);
            color: white;
        }

        .faq-item:hover .faq-toggle {
            background: rgba(204, 120, 92, 0.1);
            color: var(--primary-color);
        }

        .faq-answer {
            max-height: 0;
            overflow: hidden;
            padding: 0 2rem;
            opacity: 0;
            transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1),
                        padding 0.4s cubic-bezier(0.4, 0, 0.2, 1),
                        opacity 0.3s cubic-bezier(0.4, 0, 0.2, 1);
        }

        .faq-item.active .faq-answer {
            max-height: 500px;
            padding: 0 2rem 2rem;
            opacity: 1;
        }

        .faq-answer p {
            color: var(--text-light);
            line-height: 1.7;
            font-size: 1.125rem;
        }

        .faq-answer ul {
            margin-left: 1.5rem;
            margin-top: 0.5rem;
        }

        .faq-answer li {
            color: var(--text-light);
            line-height: 1.7;
            font-size: 1.125rem;
            margin-bottom: 0.375rem;
        }

        .faq-answer a {
            color: var(--primary-color);
            font-weight: 600;
            text-decoration: none;
            border-bottom: 1px solid rgba(204, 120, 92, 0.35);
            transition: color 0.2s ease, border-color 0.2s ease;
        }

        .faq-answer a:hover {
            color: var(--primary-light);
            border-color: rgba(224, 144, 112, 0.75);
        }

        .faq-answer a:focus-visible {
            outline: 2px solid var(--primary-light);
            outline-offset: 2px;
            border-color: transparent;
        }

        html.dark-mode .faq-answer a {
            color: #E7A481;
            border-color: rgba(231, 164, 129, 0.5);
        }

        html.dark-mode .faq-answer a:hover {
            color: #F0B899;
            border-color: rgba(240, 184, 153, 0.8);
        }

        /* Closing Section (matches recover Get in Touch) */
        .closing {
            padding: 4rem 2rem;
            background: var(--bg-card);
            text-align: center;
            position: relative;
            overflow: hidden;
        }

        .closing-particles,
        .closing-stars {
            position: absolute;
            inset: 0;
            width: 100%;
            height: 100%;
            pointer-events: none;
            z-index: 0;
        }

        .closing-stars {
            mix-blend-mode: screen;
        }

        .closing h2 {
            font-family: 'Source Serif 4', Georgia, serif;
            font-size: 2.8rem;
            font-weight: 700;
            margin-bottom: 0.2rem;
        }

        /* Primary icon tint for all section headers */
        .section-title i,
        .contact-section h2 i,
        .closing h2 i {
            color: #b8ada3;
            margin-right: 0.7rem;
        }

        .closing .section-subtitle {
            color: var(--text-light);
            margin-bottom: 2rem;
        }

        .nps-card {
            max-width: 960px;
            margin: 1rem auto 1rem;
            padding: 1.5rem;
            position: relative;
            z-index: 1;
        }

        #closing-nps-form {
            display: flex;
            flex-direction: column;
            align-items: center;
        }

        .nps-step {
            display: none;
        }

        .nps-step.active {
            display: flex;
            flex-direction: column;
            gap: 0.45rem;
            width: 100%;
        }

        .nps-title {
            font-size: 1.5rem;
            font-weight: 500;
            color: var(--text-dark);
            margin: 0.05rem 0 0.15rem;
        }

        .nps-eyebrow {
            position: relative;
        }

        .nps-separator {
            display: block;
            width: 34%;
            height: 1px;
            background: var(--border-color);
            opacity: 0.6;
            margin: 0.08rem auto 0.08rem;
        }

        .nps-scale {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
            gap: 0.75rem;
            align-items: stretch;
        }

        .nps-option {
            position: relative;
            text-align: center;
        }

        .nps-option input {
            position: absolute;
            opacity: 0;
            inset: 0;
            cursor: pointer;
        }

        .nps-option label {
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: center;
            gap: 0.35rem;
            height: 100%;
            padding: 0.85rem 0.25rem;
            background: var(--bg-card);
            border: 1px solid var(--border-color);
            border-radius: 12px;
            font-weight: 700;
            color: var(--text-dark);
            transition: all 0.2s ease;
            cursor: pointer;
            user-select: none;
        }

        .nps-option input:focus-visible + label {
            outline: 2px solid var(--primary-color);
            outline-offset: 2px;
        }

        .nps-option input:checked + label {
            /* Keep NPS card warm without the secondary (greenish) tone */
            background: #231d1d;
            border-color: var(--primary-color);
            color: white;
            box-shadow: 0 10px 30px rgba(204, 120, 92, 0.35);
        }

        .nps-option input:not(:checked) + label:hover {
            border-color: var(--primary-color);
            color: var(--primary-color);
        }

        .nps-option label .nps-lottie {
            width: 82px;
            height: 82px;
            pointer-events: none;
        }

        .nps-option label span {
            font-weight: 500;
        }

        .nps-label {
            font-weight: 600;
            color: var(--text-dark);
                        font-size: 1.5rem;
        }

        .nps-card textarea {
            width: 100%;
            padding: 0.9rem 1rem;
            border-radius: 12px;
            border: 1px solid var(--border-color);
            background: var(--bg-card);
            color: var(--text-dark);
            font-size: 1.05rem;
            resize: vertical;
            min-height: 120px;
        }

        .nps-card textarea:focus {
            outline: 2px solid var(--primary-color);
            border-color: var(--primary-color);
            background: var(--bg-white);
        }

        .nps-actions {
            display: flex;
            gap: 0.75rem;
            justify-content: flex-end;
            align-items: center;
            flex-wrap: wrap;
                        font-size: 2rem;
        }

        .nps-next,
        .nps-submit,
        .nps-back {
            border: none;
            border-radius: 12px;
            padding: 0.85rem 1.25rem;
            font-weight: 700;
            cursor: pointer;
            transition: all 0.2s ease;
            width: auto;
        }

        .nps-next,
        .nps-submit {
            /* Use warm primary tones only (remove greenish secondary hue) */
            background: linear-gradient(135deg, var(--primary-light), var(--primary-color));
            color: white;
            box-shadow: 0 10px 24px rgba(204, 120, 92, 0.25);
        }

        .nps-next {
            min-width: 140px;
            align-self: flex-end;
        }

        .nps-submit {
            min-width: 150px;
        }

        .nps-next:disabled {
            opacity: 0.5;
            cursor: not-allowed;
            box-shadow: none;
        }

        .nps-back {
            background: var(--bg-card);
            color: var(--text-dark);
            border: 1px solid var(--border-color);
        }

        .nps-success {
            position: relative;
            display: none;
            align-items: center;
            gap: 0.625rem;
            padding: 1rem 1.5rem;
            margin: 1.25rem auto 0;
            background: linear-gradient(135deg, rgba(204, 120, 92, 0.08), rgba(204, 120, 92, 0.04));
            border: 1.5px solid rgba(204, 120, 92, 0.25);
            border-radius: 12px;
            color: var(--primary-color);
            font-weight: 600;
            font-size: 0.95rem;
            box-shadow: 0 2px 8px rgba(204, 120, 92, 0.1);
            opacity: 0;
            transform: translateY(-8px);
            transition: opacity 0.4s cubic-bezier(0.4, 0, 0.2, 1), 
                        transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
            pointer-events: none;
            width: fit-content;
            max-width: 90%;
        }

        html.dark-mode .nps-success {
            background: linear-gradient(135deg, rgba(204, 120, 92, 0.12), rgba(204, 120, 92, 0.06));
            border-color: rgba(204, 120, 92, 0.3);
            box-shadow: 0 2px 12px rgba(204, 120, 92, 0.15);
        }

        .nps-success::before {
            content: '\f058';
            font-family: 'Font Awesome 6 Free';
            font-weight: 900;
            font-size: 1.1rem;
            color: var(--primary-color);
        }

        .nps-success:not([hidden]) {
            display: inline-flex;
        }

        .nps-success.show {
            opacity: 1;
            transform: translateY(0);
            pointer-events: auto;
        }

        .closing .section-subtitle {
            color: var(--text-light);
            margin-top: 1.5rem;
            margin-bottom: 0;
        }

        .closing-links {
            display: flex;
            flex-wrap: wrap;
            justify-content: center;
            gap: 1rem;
            max-width: 800px;
            margin: 0 auto;
        }

        .closing-link-item {
            display: flex;
            align-items: center;
            gap: 0.75rem;
            padding: 1rem 1.5rem;
            background: var(--bg-white);
            border: 1px solid var(--border-color);
            border-radius: var(--radius-md);
            color: var(--text-dark);
            text-decoration: none;
            transition: var(--transition);
        }

        .closing-link-item:hover {
            border-color: var(--primary-color);
            transform: translateY(-2px);
            box-shadow: var(--shadow);
        }

        .closing-link-icon {
            color: var(--primary-color);
            font-size: 1.25rem;
        }

        .closing-content {
            position: relative;
            z-index: 1;
        }
      

        /* Contact Section */
        .contact-section {
            padding: 5rem 2rem;
            background: var(--bg-light);
            scroll-margin-top: 2.5rem;
        }

        .contact-section .container {
            max-width: 680px;
            margin: 0 auto;
        }

        .contact-section h2 {
            font-size: 2.5rem;
            font-weight: 800;
            text-align: center;
            margin-bottom: 0.75rem;
            color: var(--text-dark);
        }

        .contact-section .section-subtitle {
            text-align: center;
            color: var(--text-light);
            font-size: 1.125rem;
            margin-bottom: 3rem;
        }

        .contact-links {
            display: flex;
            flex-direction: column;
            gap: 1rem;
        }

        .contact-link-item {
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 0.75rem;
            padding: 1.25rem 2rem;
            background: var(--bg-white);
            border: 2px solid var(--border-color);
            border-radius: 12px;
            text-decoration: none;
            color: var(--text-dark);
            font-weight: 600;
            font-size: 1.0625rem;
            transition: var(--transition);
            cursor: pointer;
            position: relative;
            overflow: hidden;
        }

        .contact-link-item::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
            opacity: 0;
            transition: opacity 0.3s ease;
            z-index: 0;
        }

        .contact-link-item:hover::before {
            opacity: 1;
        }

        .contact-link-item:hover {
            border-color: var(--primary-color);
            transform: translateY(-2px);
            box-shadow: 0 8px 24px rgba(204, 120, 92, 0.2);
            color: white;
        }

        .contact-link-item:hover .contact-link-icon,
        .contact-link-item:hover .contact-link-icon i,
        .contact-link-item:hover .copy-icon,
        .contact-link-item:hover .copy-icon i {
            color: rgba(255, 255, 255, 0.75);
        }

        .contact-link-icon {
            font-size: 1.5rem;
            position: relative;
            z-index: 1;
            color: #b8ada3;
        }

        .contact-link-text {
            position: relative;
            z-index: 1;
        }

        .copy-icon {
            position: relative;
            z-index: 1;
            margin-left: auto;
            font-size: 1.25rem;
            opacity: 0.6;
            transition: opacity 0.3s ease, color 0.3s ease;
            cursor: pointer;
        }

        .copy-icon:hover {
            opacity: 1;
        }

        .contact-link-item:active {
            transform: scale(0.98);
        }

        /* Footer */
        footer {
            background: var(--text-dark);
            color: var(--text-light);
            padding: 3rem 2rem;
            text-align: center;
        }

        .footer-content {
            max-width: 1200px;
            margin: 0 auto;
        }

        .footer-links {
            display: flex;
            justify-content: center;
            gap: 2rem;
            margin-bottom: 2rem;
            flex-wrap: wrap;
        }

        .footer-links a {
            color: var(--text-light);
            text-decoration: none;
            transition: var(--transition);
            font-size: 0.9rem;
        }

        .footer-links a:hover {
            color: white;
        }

        .footer-divider {
            border-top: 1px solid rgba(255, 255, 255, 0.1);
            padding-top: 1.5rem;
            margin-top: 2rem;
        }

        .footer-text {
            font-size: 0.85rem;
            opacity: 0.7;
        }

        /* Back to Top Button */
        .back-to-top {
            position: fixed;
            bottom: 2rem;
            right: 2rem;
            width: 50px;
            height: 50px;
            background: linear-gradient(180deg, #D4876A 0%, #C66E52 100%);
            border: none;
            border-radius: 50%;
            color: white;
            font-size: 1.5rem;
            cursor: pointer;
            opacity: 0;
            visibility: hidden;
            transform: translateY(20px);
            transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
            z-index: 999;
            display: flex;
            align-items: center;
            justify-content: center;
            box-shadow: 0 4px 12px rgba(198, 110, 82, 0.3);
        }

        .back-to-top.visible {
            opacity: 1;
            visibility: visible;
            transform: translateY(0);
        }

        .back-to-top:hover {
            transform: translateY(-4px);
            box-shadow: 0 8px 24px rgba(198, 110, 82, 0.4);
        }

        .back-to-top:active {
            transform: translateY(-2px);
        }

        /* Extension UI */
        .extension-installed {
            margin-top: 0.75rem;
            padding: 0.6rem 0.9rem;
            border-radius: 999px;
            display: inline-flex;
            align-items: center;
            gap: 0.45rem;
            font-size: 0.85rem;
            background: rgba(34, 197, 94, 0.12);
            color: #15803d;
            border: 1px solid rgba(34, 197, 94, 0.3);
        }

        html.dark-mode .extension-installed {
            background: rgba(34, 197, 94, 0.15);
            color: #86efac;
            border: 1px solid rgba(34, 197, 94, 0.4);
        }

        .extension-installed .badge-icon {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            width: 1.1rem;
            height: 1.1rem;
            border-radius: 999px;
            background: #22c55e;
            color: #022c22;
            font-size: 0.75rem;
            font-weight: 700;
        }

        .install-tip {
            margin-left: 0.75rem;
            padding: 0.2rem 0.7rem;
            border-radius: 999px;
            border: 1px dashed var(--border-color);
            background: var(--bg-card);
            color: var(--text-light);
            font-size: 0.8rem;
            cursor: pointer;
            display: inline-flex;
            align-items: center;
            gap: 0.4rem;
            transition: var(--transition);
        }

        .install-tip-icon {
            font-size: 0.9rem;
            display: inline-flex;
            align-items: center;
        }

        .install-tip-icon svg {
            display: block;
            transform: translateY(1px);
        }

        .install-tip:hover {
            border-style: solid;
            border-color: var(--primary-color);
            background: var(--bg-white);
            color: var(--text-dark);
        }

        html.dark-mode .install-tip {
            background: var(--bg-card);
        }

        html.dark-mode .install-tip:hover {
            background: var(--bg-white);
            color: var(--text-dark);
        }

        .hidden {
            display: none !important; /* utility class; must win over any component's display rule */
        }

        .modal-backdrop {
            position: fixed;
            inset: 0;
            background: rgba(80, 70, 60, 0.9);
            backdrop-filter: blur(8px);
            align-items: center;
            justify-content: center;
            padding: 1.5rem;
            z-index: 200;
            animation: fadeIn 0.3s ease-out;
        }

        html.dark-mode .modal-backdrop {
            background: rgba(26, 22, 20, 0.95);
        }

        .puzzle-icon-img {
            transition: filter 0.3s ease;
        }

        html.dark-mode .puzzle-icon-img {
            filter: brightness(0) saturate(100%) invert(93%) sepia(0%) saturate(0%) hue-rotate(0deg) brightness(103%) contrast(90%);
        }

        @keyframes fadeIn {
            from { opacity: 0; }
            to { opacity: 1; }
        }

        .modal {
            background: var(--bg-white);
            color: var(--text-dark);
            border-radius: 20px;
            max-width: 760px;
            width: 100%;
            box-shadow: 0 20px 60px rgba(204, 120, 92, 0.3);
            border: 2px solid var(--border-color);
            padding: 2rem;
            position: relative;
            animation: slideUp 0.4s cubic-bezier(0.4, 0, 0.2, 1);
        }

        @keyframes slideUp {
            from {
                opacity: 0;
                transform: translateY(40px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        html.dark-mode .modal {
            background: var(--bg-card);
            border-color: var(--border-color);
            box-shadow: 0 20px 60px rgba(0, 0, 0, 0.8);
        }

        .modal-header {
            display: flex;
            align-items: flex-start;
            justify-content: space-between;
            margin-bottom: 2rem;
            padding-bottom: 1.5rem;
            border-bottom: 2px solid var(--border-color);
        }

        .modal-title {
            font-family: 'Source Serif 4', Georgia, 'Times New Roman', serif;
            font-size: 2rem;
            font-weight: 700;
            letter-spacing: -0.02em;
            margin-bottom: 0.75rem;
            background: linear-gradient(135deg, var(--primary-light) 0%, var(--primary-dark) 100%);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }

        .modal-header .modal-step-body {
            margin-bottom: 0;
            font-size: 1.125rem;
            color: var(--text-light);
        }

        .modal-close {
            border: none;
            background: var(--bg-card);
            color: var(--text-light);
            cursor: pointer;
            font-size: 1.5rem;
            padding: 0.5rem;
            width: 40px;
            height: 40px;
            border-radius: 10px;
            display: flex;
            align-items: center;
            justify-content: center;
            transition: var(--transition);
            flex-shrink: 0;
        }

        .modal-close:hover {
            background: var(--primary-color);
            color: white;
            transform: rotate(90deg);
        }

        .modal-steps {
            display: flex;
            gap: 2rem;
        }

        .modal-sidebar {
            min-width: 140px;
            font-size: 0.875rem;
        }

        .step-indicator {
            display: flex;
            flex-direction: column;
            gap: 1rem;
        }

        .step-indicator-item {
            display: flex;
            align-items: center;
            gap: 0.75rem;
            opacity: 0.4;
            transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
            font-size: 1.0625rem;
            cursor: pointer;
        }

        .step-indicator-item:hover {
            opacity: 0.7;
        }

        .step-indicator-item.active {
            opacity: 1;
            font-weight: 600;
            color: var(--primary-color);
            transform: translateX(4px);
        }

        .step-indicator-bullet {
            width: 36px;
            height: 36px;
            border-radius: 10px;
            border: 2px solid var(--border-color);
            display: inline-flex;
            align-items: center;
            justify-content: center;
            font-size: 1rem;
            font-weight: 700;
            background: var(--bg-card);
            transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
            flex-shrink: 0;
        }

        .step-indicator-item.active .step-indicator-bullet {
            border-color: var(--primary-color);
            background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
            color: white;
            box-shadow: 0 4px 12px rgba(204, 120, 92, 0.3);
        }

        .modal-main {
            flex: 1;
            font-size: 0.9rem;
        }

        .install-step {
            display: none;
        }

        .install-step.active {
            display: block;
        }

        .modal-step-title {
            font-size: 1.5rem;
            font-weight: 700;
            margin-bottom: 1.25rem;
            color: var(--text-dark);
            letter-spacing: -0.02em;
        }

        .modal-step-body {
            margin-bottom: 1.5rem;
            color: var(--text-light);
            line-height: 1.65;
        }

        .modal-step-body p {
            margin-bottom: 1rem;
            font-size: 1.125rem;
        }

        .puzzle-icon {
            color: var(--text-light);
            transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
        }

        .modal-step-body li:hover .puzzle-icon {
            color: var(--primary-color);
            transform: scale(1.15);
        }

        .modal-step-body ul,
        .modal-step-body ol {
            margin-left: 1.5rem;
            margin-top: 0.75rem;
        }

        .modal-step-body li {
            margin-bottom: 0.5rem;
            line-height: 1.6;
        }

        html.dark-mode .modal-step-body {
            color: var(--text-light);
        }

        .modal-step-highlight {
            margin-top: 1rem;
            padding: 1rem 1.25rem;
            border-radius: 12px;
            background: linear-gradient(135deg, rgba(204, 120, 92, 0.08) 0%, rgba(99, 102, 241, 0.08) 100%);
            border-left: 3px solid var(--primary-color);
            color: var(--text-dark);
            font-size: 0.9375rem;
            font-weight: 500;
        }

        .modal-actions {
            display: flex;
            justify-content: flex-end;
            gap: 1rem;
            margin-top: 2rem;
            padding-top: 1.5rem;
            border-top: 2px solid var(--border-color);
        }

        .btn-ghost {
            border-radius: 10px;
            border: 2px solid var(--border-color);
            background: transparent;
            color: var(--text-dark);
            padding: 0.75rem 1.5rem;
            font-size: 0.9375rem;
            font-weight: 600;
            cursor: pointer;
            transition: var(--transition);
        }

        .btn-ghost:hover {
            border-color: var(--primary-color);
            background: var(--bg-card);
            color: var(--primary-color);
        }

        .btn-pill-primary {
            border-radius: 10px;
            border: none;
            background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
            color: white;
            padding: 0.75rem 1.5rem;
            font-size: 0.9375rem;
            font-weight: 600;
            cursor: pointer;
            display: inline-flex;
            align-items: center;
            gap: 0.5rem;
            transition: var(--transition);
            box-shadow: 0 4px 12px rgba(204, 120, 92, 0.25);
        }

        .btn-pill-primary[disabled] {
            cursor: default;
            opacity: 0.5;
            box-shadow: none;
        }

        .btn-pill-primary:hover:not([disabled]) {
            transform: translateY(-2px);
            box-shadow: 0 8px 20px rgba(204, 120, 92, 0.35);
        }

        .btn-pill-primary:active:not([disabled]) {
            transform: translateY(0);
        }

        .btn-pill-primary .spinner {
            width: 1rem;
            height: 1rem;
            border-radius: 999px;
            border: 2px solid rgba(248, 250, 252, 0.5);
            border-top-color: white;
            animation: spin 0.7s linear infinite;
        }

        @keyframes spin {
            to {
                transform: rotate(360deg);
            }
        }

        /* Animations */
        @keyframes fadeInUp {
            from {
                opacity: 0;
                transform: translateY(30px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }


        @media (max-width: 480px) {
            header {
                padding: 0.75rem 1rem;
            }

            .header-container {
                flex-wrap: nowrap;
                gap: 0.5rem;
            }

            .logo {
                font-size: 1.1rem;
                gap: 0.5rem;
            }

            .logo svg {
                width: 24px;
                height: 24px;
            }

            .nav-controls {
                gap: 0.5rem;
            }

            nav {
                width: 100%;
                justify-content: center;
            }

            .hero {
                padding: 3rem 1rem;
            }

            .hero h1 {
                font-size: 1.8rem;
            }

            .hero p {
                font-size: 1rem;
            }

            .cta-group {
                flex-direction: column;
                gap: 1rem;
            }

            .btn {
                width: 100%;
                justify-content: center;
            }

            .section-title {
                font-size: 1.5rem;
            }

            .closing {
                padding: 3rem 1rem;
            }

            .closing h2 {
                font-size: 1.5rem;
            }

            .footer-links {
                gap: 1rem;
            }

            .contact-link-item {
                padding: 0.875rem 1rem;
                font-size: 0.875rem;
                gap: 0.5rem;
            }

            .contact-link-icon {
                font-size: 1.125rem;
            }

            .contact-link-text {
                font-size: 0.875rem;
            }

            .copy-icon {
                font-size: 1rem;
            }
        }

        /* Mobile overrides to mirror generator-pro-mode header */
        /* Hide hamburger only on large screens */
        @media (min-width: 769px) {
            .hamburger {
                display: none;
            }
        }
