        :root {
            --gold-primary: #d4af37;
            --gold-light: #e6c875;
            --gold-dark: #b8941f;
            --gold-accent: #f5f0e6;
            --dark-blue: #1B365D;
            --navy: #2C5F41;
            --white: #FFFFFF;
            --light-gray: #F8F9FA;
            --medium-gray: #6C757D;
            --dark-gray: #343A40;
        }

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

        body {
            font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
            line-height: 1.6;
            color: var(--dark-gray);
            overflow-x: hidden;
        }

        /* Header */
        .header {
            background: linear-gradient(135deg, #1b365d 0%, var(--dark-blue) 50%, #4a6fa5 100%);
            color: white;
            padding: 40px 0 120px;
            position: relative;
            overflow: hidden;
            min-height: 100vh;
            /* Column axis: the nav bar stacks above the hero content. As a row
               (the original) a second child would sit beside the hero instead.
               The nav sits at the top in normal flow — absolute positioning
               would overlap the hero text on short viewports — and the hero
               content centers itself in whatever space is left via auto
               margins. */
            display: flex;
            flex-direction: column;
            justify-content: flex-start;
        }

        .header > .site-nav,
        .header > .header-content {
            width: 100%;
        }

        .header > .header-content {
            margin-top: auto;
            margin-bottom: auto;
        }

        .header::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grain" width="100" height="100" patternUnits="userSpaceOnUse"><circle cx="25" cy="25" r="1" fill="white" opacity="0.05"/><circle cx="75" cy="75" r="1" fill="white" opacity="0.05"/></pattern></defs><rect width="100" height="100" fill="url(%23grain)"/></svg>');
            pointer-events: none;
        }

        .header-content {
            max-width: 1400px;
            margin: 0 auto;
            padding: 0 20px;
            position: relative;
            z-index: 1;
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 60px;
            align-items: center;
        }

        .header-text {
            max-width: 600px;
        }

        .header h1 {
            font-size: 3.5rem;
            font-weight: 700;
            margin-bottom: 20px;
            background: linear-gradient(45deg, #fff, var(--gold-light));
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }

        .header .subtitle {
            font-size: 1.4rem;
            margin-bottom: 40px;
            opacity: 0.9;
            line-height: 1.5;
        }

        .cta-button {
            display: inline-block;
            background: var(--gold-primary);
            color: var(--dark-blue);
            padding: 18px 40px;
            border-radius: 50px;
            text-decoration: none;
            font-weight: 600;
            font-size: 1.1rem;
            transition: all 0.3s ease;
            box-shadow: 0 10px 30px rgba(212, 165, 116, 0.3);
        }

        .cta-button:hover {
            transform: translateY(-3px);
            box-shadow: 0 15px 40px rgba(212, 165, 116, 0.4);
            background: var(--gold-light);
            color: var(--dark-blue);
        }

        /* iPhone Mockup */
        .phone-mockup {
            max-width: 350px;
            margin: 0 auto;
            perspective: 1000px;
        }

        .phone {
            background: #000;
            border-radius: 40px;
            padding: 8px;
            box-shadow: 0 20px 60px rgba(0,0,0,0.3);
            transform: rotateY(-5deg) rotateX(5deg);
            transition: transform 0.3s ease;
        }

        .phone:hover {
            transform: rotateY(0deg) rotateX(0deg);
        }

        .phone-screen {
            background: white;
            border-radius: 32px;
            overflow: hidden;
            position: relative;
        }

        .phone-top-bar {
            background: #000;
            color: white;
            padding: 12px 20px;
            display: flex;
            justify-content: space-between;
            align-items: center;
            font-size: 14px;
            font-weight: 600;
        }

        .phone-time {
            color: white;
        }

        .phone-status {
            display: flex;
            gap: 5px;
            align-items: center;
            color: white;
            font-size: 12px;
        }

        .phone-battery {
            width: 20px;
            height: 10px;
            border: 1px solid white;
            border-radius: 2px;
            position: relative;
        }

        .phone-battery::after {
            content: '';
            position: absolute;
            top: 2px;
            left: 2px;
            right: 2px;
            bottom: 2px;
            background: white;
            border-radius: 1px;
        }

        .chat-container {
            height: 600px;
            background: linear-gradient(to bottom, #f8f9fa, #ffffff);
            display: flex;
            flex-direction: column;
        }

        .chat-header {
            background: white;
            color: #333;
            padding: 15px 20px;
            display: flex;
            align-items: center;
            border-bottom: 3px solid var(--gold-primary);
            box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
        }

        .header-icon {
            width: 32px;
            height: 32px;
            background: var(--gold-primary);
            border-radius: 6px;
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            font-size: 16px;
            margin-right: 12px;
        }

        .header-title {
            font-size: 18px;
            font-weight: 600;
            color: #333;
            margin: 0;
        }

        .chat-messages {
            flex: 1;
            padding: 20px;
            overflow-y: auto;
            display: flex;
            flex-direction: column;
            gap: 15px;
        }

        .message {
            max-width: 80%;
            padding: 12px 16px;
            border-radius: 18px;
            font-size: 14px;
            line-height: 1.4;
        }

        .message-user {
            background: linear-gradient(135deg, #d4af37 0%, #b8941f 100%);
            color: white;
            align-self: flex-end;
            margin-left: auto;
        }

        .message-bot {
            background: white;
            color: #333;
            align-self: flex-start;
            border: 1px solid #e9ecef;
            border-bottom-left-radius: 4px;
            box-shadow: 0 1px 2px rgba(0, 0, 0, 0.1);
        }

        .typing-indicator {
            align-self: flex-start;
            background: #e9ecef;
            padding: 12px 16px;
            border-radius: 18px;
            max-width: 60px;
        }

        .typing-dots {
            display: flex;
            gap: 3px;
        }

        .typing-dots span {
            width: 6px;
            height: 6px;
            background: var(--medium-gray);
            border-radius: 50%;
            animation: typing 1.4s infinite;
        }

        .typing-dots span:nth-child(2) { animation-delay: 0.2s; }
        .typing-dots span:nth-child(3) { animation-delay: 0.4s; }

        @keyframes typing {
            0%, 60%, 100% { opacity: 0.3; }
            30% { opacity: 1; }
        }

        /* Features Section */
        .features {
            padding: 100px 0;
            background: var(--light-gray);
        }

        .container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }

        .section-title {
            text-align: center;
            font-size: 2.5rem;
            font-weight: 700;
            margin-bottom: 20px;
            color: var(--dark-blue);
        }

        .section-subtitle {
            text-align: center;
            font-size: 1.2rem;
            color: var(--medium-gray);
            margin-bottom: 60px;
            max-width: 600px;
            margin-left: auto;
            margin-right: auto;
        }

        .features-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 25px;
            margin-top: 60px;
        }

        .feature-card {
            background: white;
            padding: 40px;
            border-radius: 20px;
            box-shadow: 0 10px 30px rgba(0,0,0,0.1);
            text-align: center;
            transition: all 0.3s ease;
            border: 2px solid transparent;
        }

        .feature-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 20px 50px rgba(0,0,0,0.15);
            border-color: var(--gold-light);
        }

        .feature-icon {
            width: 80px;
            height: 80px;
            background: linear-gradient(135deg, var(--gold-primary), var(--gold-dark));
            border-radius: 20px;
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 0 auto 30px;
            font-size: 2rem;
            color: white;
        }

        .feature-card h3 {
            font-size: 1.5rem;
            font-weight: 600;
            margin-bottom: 15px;
            color: var(--dark-blue);
        }

        .feature-card p {
            color: var(--medium-gray);
            line-height: 1.6;
        }

        /* Benefits Section */
        .benefits {
            padding: 100px 0;
            background: white;
        }

        .stats-grid {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 30px;
            margin: 40px 0 60px 0;
            text-align: center;
            max-width: 1000px;
            margin-left: auto;
            margin-right: auto;
        }

        .stat-item {
            padding: 25px 15px;
            background: white;
            border-radius: 15px;
            box-shadow: 0 4px 15px rgba(0,0,0,0.08);
            transition: transform 0.3s ease, box-shadow 0.3s ease;
            border: 1px solid #f8f9fa;
        }

        .stat-item:hover {
            transform: translateY(-5px);
            box-shadow: 0 8px 25px rgba(0,0,0,0.12);
        }

        .stat-number {
            font-size: 3.2rem;
            font-weight: 800;
            color: var(--gold-primary);
            margin-bottom: 8px;
            line-height: 1;
            text-shadow: 0 1px 2px rgba(0,0,0,0.1);
        }

        .stat-label {
            font-size: 1rem;
            color: var(--dark-blue);
            font-weight: 600;
            line-height: 1.4;
        }

        .stat-label span {
            font-size: 0.85em;
            opacity: 0.7;
            font-weight: 500;
            color: var(--medium-gray);
        }

        /* Time Savings Cards */
        .time-savings-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
            gap: 25px;
            margin: 40px 0;
        }

        .time-savings-card {
            background: white;
            padding: 30px 20px;
            border-radius: 15px;
            box-shadow: 0 5px 20px rgba(0,0,0,0.1);
            transition: transform 0.3s ease;
        }

        .time-savings-card:hover {
            transform: translateY(-5px);
        }

        .savings-enterprise {
            border: 2px solid var(--gold-primary);
            position: relative;
        }

        .savings-enterprise::before {
            content: 'Most Savings';
            position: absolute;
            top: -10px;
            left: 50%;
            transform: translateX(-50%);
            background: var(--gold-primary);
            color: var(--dark-blue);
            padding: 5px 15px;
            border-radius: 10px;
            font-size: 12px;
            font-weight: 600;
        }

        .time-savings-card h4 {
            color: var(--dark-blue);
            font-size: 1.3rem;
            margin-bottom: 5px;
        }

        .church-size {
            color: var(--medium-gray);
            font-size: 0.9rem;
            margin-bottom: 20px;
        }

        .savings-stat {
            margin-bottom: 15px;
        }

        .savings-number {
            font-size: 2.5rem;
            font-weight: 700;
            color: var(--gold-primary);
            display: block;
        }

        .savings-unit {
            font-size: 1rem;
            color: var(--medium-gray);
        }

        .savings-detail {
            color: var(--medium-gray);
            font-size: 0.9rem;
            line-height: 1.4;
        }

        /* Interactive Calculator Styles */
        .calculator-container {
            max-width: 800px;
            margin: 0 auto;
        }

        .slider-container {
            margin-bottom: 40px;
        }

        .size-slider {
            width: 100%;
            height: 12px;
            border-radius: 8px;
            background: linear-gradient(to right, #f8f9fa 0%, #e9ecef 100%);
            outline: none;
            opacity: 1;
            transition: all 0.3s ease;
            margin: 25px 0;
            box-shadow: inset 0 2px 4px rgba(0,0,0,0.08);
            border: 1px solid #dee2e6;
        }

        .size-slider:hover {
            box-shadow: inset 0 2px 8px rgba(0,0,0,0.12), 0 0 0 4px rgba(212, 175, 55, 0.08);
            border-color: var(--gold-primary);
        }

        .size-slider::-webkit-slider-thumb {
            appearance: none;
            width: 32px;
            height: 32px;
            border-radius: 50%;
            background: linear-gradient(135deg, var(--gold-primary) 0%, #b8941f 100%);
            cursor: pointer;
            box-shadow: 0 4px 12px rgba(0,0,0,0.15), 0 0 0 4px white, 0 0 0 5px var(--gold-primary);
            transition: all 0.2s ease;
            position: relative;
        }

        .size-slider::-webkit-slider-thumb:hover {
            transform: scale(1.1);
            box-shadow: 0 6px 20px rgba(0,0,0,0.25), 0 0 0 4px white, 0 0 0 6px var(--gold-primary);
        }

        .size-slider::-moz-range-thumb {
            width: 32px;
            height: 32px;
            border-radius: 50%;
            background: linear-gradient(135deg, var(--gold-primary) 0%, #b8941f 100%);
            cursor: pointer;
            border: 4px solid white;
            box-shadow: 0 4px 12px rgba(0,0,0,0.15), 0 0 0 1px var(--gold-primary);
            transition: all 0.2s ease;
            box-shadow: 0 2px 10px rgba(212, 175, 55, 0.3);
        }

        .slider-labels {
            display: flex;
            justify-content: space-between;
            margin-top: 15px;
            font-size: 0.95rem;
            color: var(--medium-gray);
            font-weight: 600;
        }

        /* Slider fill effect */
        .size-slider {
            background: linear-gradient(to right, var(--gold-primary) 0%, var(--gold-primary) var(--slider-fill, 100%), #e9ecef var(--slider-fill, 100%), #e9ecef 100%);
        }

        .savings-display {
            margin-top: 30px;
        }

        .savings-card-large {
            background: white;
            padding: 40px;
            border-radius: 20px;
            box-shadow: 0 10px 30px rgba(0,0,0,0.1);
            position: relative;
            text-align: center;
        }

        .tier-badge {
            background: var(--gold-primary);
            color: var(--dark-blue);
            padding: 8px 20px;
            border-radius: 15px;
            font-size: 14px;
            font-weight: 600;
            display: inline-block;
            margin-bottom: 20px;
        }

        .savings-main {
            margin-bottom: 20px;
        }

        .savings-number-large {
            font-size: 4rem;
            font-weight: 700;
            color: var(--gold-primary);
            display: block;
            line-height: 1;
        }

        .savings-unit-large {
            font-size: 1.2rem;
            color: var(--medium-gray);
        }

        .savings-breakdown {
            margin: 20px 0;
            color: var(--dark-gray);
        }

        .savings-breakdown p {
            margin: 5px 0;
            font-size: 1.1rem;
        }

        .ministry-focus {
            background: var(--gold-accent);
            padding: 20px;
            border-radius: 15px;
            margin: 20px 0;
            font-style: italic;
        }

        .pricing-preview {
            padding-top: 20px;
            border-top: 1px solid #e9ecef;
        }

        /* Pricing Section */
        .pricing-section {
            padding: 100px 0;
            background: white;
        }

        .pricing-grid {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 25px;
            margin-top: 60px;
            max-width: 1200px;
            margin-left: auto;
            margin-right: auto;
        }

        .billing-toggle {
            display: flex;
            justify-content: center;
            align-items: center;
            width: fit-content;
            margin: 40px auto -20px;
            background: var(--gold-accent);
            border-radius: 50px;
            padding: 5px;
        }

        .billing-toggle button {
            border: none;
            background: transparent;
            padding: 12px 26px;
            border-radius: 50px;
            font-family: inherit;
            font-weight: 600;
            font-size: 1rem;
            color: var(--dark-blue);
            cursor: pointer;
            transition: all 0.25s ease;
        }

        .billing-toggle button.active {
            background: var(--dark-blue);
            color: white;
            box-shadow: 0 4px 12px rgba(0,0,0,0.15);
        }

        .billing-toggle .toggle-badge {
            background: var(--gold-primary);
            color: var(--dark-blue);
            font-size: 0.75rem;
            font-weight: 700;
            padding: 3px 10px;
            border-radius: 12px;
            margin-left: 8px;
            white-space: nowrap;
        }

        .aud-short { display: none; }
        @media (max-width: 640px) {
            .aud-full { display: none; }
            .aud-short { display: inline; }
            .billing-toggle button { padding: 10px 16px; font-size: .92rem; }
        }

        .price-was {
            display: none;
            text-decoration: line-through;
            color: var(--medium-gray);
            font-size: 1.3rem;
            margin-right: 4px;
        }

        .bundle-chip {
            display: none;
            background: var(--gold-primary);
            color: var(--dark-blue);
            font-size: .72rem;
            font-weight: 700;
            padding: 2px 10px;
            border-radius: 12px;
            margin-left: 6px;
            vertical-align: middle;
        }

        .price-note {
            color: var(--navy);
            font-size: 0.9rem;
            font-weight: 600;
            min-height: 1.3em;
            margin-bottom: 12px;
        }

        .pricing-card {
            background: white;
            border: 2px solid #e9ecef;
            border-radius: 20px;
            padding: 40px 30px;
            text-align: center;
            position: relative;
            transition: all 0.3s ease;
            box-shadow: 0 5px 20px rgba(0,0,0,0.05);
        }

        .pricing-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 20px 40px rgba(0,0,0,0.1);
            border-color: var(--gold-primary);
        }

        .pricing-card.recommended {
            border: 3px solid var(--dark-blue) !important;
            transform: translateY(-5px);
            box-shadow: 0 15px 30px rgba(0,0,0,0.15);
            position: relative;
        }

        .pricing-card.recommended::before {
            content: 'Recommended';
            position: absolute;
            top: -15px;
            left: 50%;
            transform: translateX(-50%);
            background: var(--dark-blue);
            color: white;
            padding: 8px 20px;
            border-radius: 20px;
            font-size: 0.85rem;
            font-weight: 700;
            box-shadow: 0 4px 12px rgba(0,0,0,0.2);
        }

        .pricing-popular {
            border-color: var(--gold-primary);
            transform: scale(1.05);
            box-shadow: 0 15px 40px rgba(212, 165, 116, 0.2);
        }

        .pricing-popular:hover {
            transform: scale(1.05) translateY(-10px);
        }



        .popular-badge {
            position: absolute;
            top: -15px;
            left: 50%;
            transform: translateX(-50%);
            background: var(--gold-primary);
            color: var(--dark-blue);
            padding: 8px 20px;
            border-radius: 20px;
            font-size: 14px;
            font-weight: 600;
        }

        .pricing-header h3 {
            font-size: 1.8rem;
            font-weight: 700;
            color: var(--dark-blue);
            margin-bottom: 10px;
        }

        .pricing-ideal {
            color: var(--medium-gray);
            font-size: 1rem;
            margin-bottom: 25px;
        }

        .pricing-price {
            margin-bottom: 15px;
        }

        .price-amount {
            font-size: 3rem;
            font-weight: 700;
            color: var(--gold-primary);
        }

        .price-period {
            font-size: 1.2rem;
            color: var(--medium-gray);
        }

        .setup-fee {
            color: var(--medium-gray);
            font-size: 0.9rem;
            margin-bottom: 30px;
        }

        .pricing-features {
            margin-bottom: 30px;
        }

        .pricing-features ul {
            list-style: none;
            padding: 0;
            text-align: left;
        }

        .pricing-features li {
            padding: 8px 0;
            color: var(--dark-gray);
            font-size: 0.95rem;
            line-height: 1.4;
        }

        .pricing-button {
            width: 100%;
            background: var(--gold-primary);
            color: var(--dark-blue);
            border: none;
            padding: 15px 30px;
            border-radius: 50px;
            font-weight: 600;
            font-size: 1rem;
            cursor: pointer;
            transition: all 0.3s ease;
        }

        .pricing-button:hover {
            background: var(--gold-dark);
            transform: translateY(-2px);
        }

        .pricing-button-popular {
            background: var(--dark-blue);
            color: white;
        }

        .pricing-button-popular:hover {
            background: var(--navy);
        }

        .pricing-notes {
            text-align: center;
            margin-top: 60px;
            padding-top: 40px;
            border-top: 1px solid #e9ecef;
        }

        .pricing-notes p {
            color: var(--medium-gray);
            margin-bottom: 10px;
            font-size: 0.95rem;
        }

        .benefits-list {
            max-width: 1000px;
            margin: 0 auto 50px auto;
            padding: 0 20px;
        }

        .benefit-items {
            list-style: none;
            padding: 0;
            margin: 0;
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 30px 40px;
        }

        .benefit-items li {
            color: var(--medium-gray);
            line-height: 1.6;
            margin-bottom: 0;
            padding-left: 35px;
            position: relative;
            font-size: 1.05rem;
            text-align: left;
        }

        .benefit-items li:before {
            content: '✓';
            color: var(--gold-primary);
            font-weight: bold;
            position: absolute;
            left: 0;
            top: 2px;
            font-size: 1.3rem;
            width: 20px;
            text-align: center;
        }

        .benefit-items li strong {
            color: var(--dark-blue);
            font-weight: 600;
        }

        .guarantee-section {
            background: linear-gradient(135deg, var(--gold-primary) 0%, #e6c200 100%);
            border-radius: 15px;
            padding: 25px;
            width: 100%;
            margin: 0;
        }

        .guarantee-badge {
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 15px;
            color: var(--dark-blue);
        }

        .guarantee-badge i {
            font-size: 1.5rem;
            color: var(--dark-blue);
        }

        .guarantee-badge span {
            font-size: 1.1rem;
        }

        /* Contact Form Section */
        .contact-section {
            background: linear-gradient(135deg, var(--gold-accent) 0%, white 100%);
            padding: 100px 0;
        }

        .form-container {
            max-width: 600px;
            margin: 0 auto;
            background: white;
            padding: 50px;
            border-radius: 20px;
            box-shadow: 0 20px 60px rgba(0,0,0,0.1);
        }

        .form-group {
            margin-bottom: 25px;
        }

        .form-group label {
            display: block;
            margin-bottom: 8px;
            font-weight: 600;
            color: var(--dark-blue);
        }

        .form-group input,
        .form-group textarea {
            width: 100%;
            padding: 15px;
            border: 2px solid #e9ecef;
            border-radius: 10px;
            font-size: 16px;
            transition: border-color 0.3s ease;
        }

        .form-group input:focus,
        .form-group textarea:focus {
            outline: none;
            border-color: var(--gold-primary);
        }

        .form-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 20px;
        }

        .submit-button {
            background: var(--gold-primary);
            color: var(--dark-blue);
            padding: 18px 40px;
            border: none;
            border-radius: 50px;
            font-weight: 600;
            font-size: 1.1rem;
            cursor: pointer;
            transition: all 0.3s ease;
            width: 100%;
        }

        .submit-button:hover {
            background: var(--gold-dark);
            transform: translateY(-2px);
        }

        /* Footer */
        .footer {
            background: var(--dark-blue);
            color: white;
            padding: 60px 0 40px;
        }

        .footer-content {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 40px;
            margin-bottom: 40px;
        }

        .footer-section h3 {
            font-size: 1.2rem;
            font-weight: 600;
            margin-bottom: 20px;
            color: var(--gold-light);
        }

        .footer-section p, .footer-section a {
            color: #cbd5e0;
            text-decoration: none;
            line-height: 1.6;
        }

        .footer-section a:hover {
            color: var(--gold-light);
        }

        .footer-bottom {
            border-top: 1px solid var(--navy);
            padding-top: 30px;
            text-align: center;
            color: #94a3b8;
        }

        /* Responsive */
        @media (max-width: 1200px) {
            .pricing-grid {
                grid-template-columns: repeat(2, 1fr) !important;
                gap: 25px;
            }
        }

        @media (max-width: 768px) {
            .pricing-grid {
                grid-template-columns: 1fr !important;
                gap: 25px;
            }
        }

        @media (max-width: 768px) {
            .header-content {
                grid-template-columns: 1fr;
                text-align: center;
                gap: 40px;
            }
            
            .header h1 {
                font-size: 2.5rem;
            }
            
            .phone-mockup {
                max-width: 280px;
            }
            
            .chat-container {
                height: 500px;
            }
            
            .section-title {
                font-size: 2rem;
            }
            
            /* Horizontal snap carousel on small screens */
            .features-grid {
                display: flex;
                overflow-x: auto;
                scroll-snap-type: x mandatory;
                gap: 16px;
                padding: 4px 24px 18px;
                margin-left: -20px;
                margin-right: -20px;
                -webkit-overflow-scrolling: touch;
                scrollbar-width: none;
            }
            .features-grid::-webkit-scrollbar { display: none; }
            .feature-card {
                flex: 0 0 80%;
                max-width: 320px;
                scroll-snap-align: center;
            }
            
            .pricing-grid {
                grid-template-columns: 1fr;
                gap: 20px;
            }
            
            .pricing-popular {
                transform: none;
            }
            
            .time-savings-grid {
                grid-template-columns: 1fr 1fr;
                gap: 15px;
            }
            
            .stats-grid {
                grid-template-columns: repeat(2, 1fr);
                gap: 20px;
                margin: 30px 0 40px 0;
            }
            
            .form-grid {
                grid-template-columns: 1fr;
            }
            
            .header .cta-button {
                display: block;
                margin-bottom: 15px;
                width: 100%;
            }
        }

        @media (max-width: 480px) {
            .time-savings-grid {
                grid-template-columns: 1fr;
            }
            
            .stats-grid {
                grid-template-columns: 1fr;
                gap: 15px;
                margin: 20px 0 30px 0;
            }
            
            .stat-number {
                font-size: 2.8rem;
            }
            
            .header div[style*="display: flex"] {
                flex-direction: column;
                gap: 15px !important;
            }
        }

        /* Diocesan Discount Section */
        .diocesan-discount {
            background: linear-gradient(135deg, var(--dark-blue) 0%, #1e3a5f 100%);
            color: white;
            border-radius: 20px;
            padding: 40px;
            margin-top: 60px;
            text-align: center;
        }

        .discount-header {
            margin-bottom: 30px;
        }

        .discount-header i {
            font-size: 2rem;
            color: var(--gold-primary);
            margin-bottom: 15px;
        }

        .discount-header h3 {
            font-size: 1.8rem;
            margin: 0;
            font-weight: 600;
        }

        .discount-description {
            font-size: 1.1rem;
            line-height: 1.6;
            margin-bottom: 30px;
            color: rgba(255,255,255,0.9);
            max-width: 800px;
            margin-left: auto;
            margin-right: auto;
        }

        .cta-text {
            font-size: 1.1rem;
            margin-bottom: 25px;
            color: white;
            font-weight: 500;
        }

        .discount-content {
            margin: 40px 0;
            max-width: 800px;
            margin-left: auto;
            margin-right: auto;
        }

        .discount-benefit {
            display: flex;
            align-items: center;
            gap: 20px;
            text-align: left;
        }

        .benefit-icon {
            background: var(--gold-primary);
            color: var(--dark-blue);
            width: 60px;
            height: 60px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.5rem;
            flex-shrink: 0;
        }

        .benefit-text {
            flex: 1;
        }

        .benefit-text strong {
            display: block;
            font-size: 1.2rem;
            margin-bottom: 5px;
            color: white;
        }

        .benefit-text p {
            margin: 0;
            opacity: 0.9;
            font-size: 0.95rem;
        }

        .discount-cta {
            margin-top: 30px;
        }

        .discount-cta p {
            font-size: 1.1rem;
            margin-bottom: 20px;
            opacity: 0.9;
        }

        .discount-button {
            background: var(--gold-primary);
            color: var(--dark-blue);
            padding: 15px 30px;
            border-radius: 50px;
            text-decoration: none;
            font-weight: 600;
            font-size: 1.1rem;
            transition: all 0.3s ease;
            display: inline-block;
        }

        .discount-button:hover {
            background: #b8941f;
            color: var(--dark-blue);
            text-decoration: none;
            transform: translateY(-2px);
            box-shadow: 0 8px 25px rgba(212, 175, 55, 0.3);
        }

        @media (max-width: 1024px) {
            .benefits-list {
                padding: 0 15px;
            }
            
            .benefit-items {
                gap: 25px 30px;
            }
        }

        @media (max-width: 900px) {
            .benefit-items {
                grid-template-columns: 1fr;
                gap: 22px;
            }
        }

        @media (max-width: 768px) {
            .discount-content {
                margin: 30px 0;
            }
            
            .discount-benefit {
                text-align: center;
                flex-direction: column;
                gap: 15px;
            }
            
            .diocesan-discount {
                padding: 30px 20px;
            }

            .benefits-list {
                padding: 0 10px;
            }

            .benefit-items {
                grid-template-columns: 1fr;
                gap: 20px;
            }

            .benefit-items li {
                font-size: 1rem;
                margin-bottom: 0;
                padding-left: 30px;
            }

            .benefit-items li:before {
                font-size: 1.2rem;
                width: 18px;
            }

            .guarantee-section {
                padding: 20px;
            }

            .guarantee-badge {
                flex-direction: column;
                gap: 10px;
                text-align: center;
            }
        }

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

        .fade-in-up {
            animation: fadeInUp 0.8s ease-out;
        }

        @keyframes float {
            0%, 100% { transform: translateY(0px); }
            50% { transform: translateY(-10px); }
        }

        .phone-mockup {
            animation: float 6s ease-in-out infinite;
        }

/* ── Standalone page header (pricing and other subpages) ─────────────────────
   The home page's .header is a full hero with the phone mockup; subpages need
   the same brand band at a fraction of the height. */
.page-header {
    background: linear-gradient(135deg, var(--dark-blue) 0%, var(--navy) 100%);
    color: white;
    padding: 40px 0 55px;
    text-align: center;
}


.page-header h1 {
    font-size: 3rem;
    margin: 0 0 12px;
    color: var(--gold-primary);
}

.page-header p {
    font-size: 1.15rem;
    opacity: .9;
    max-width: 620px;
    margin: 0 auto;
}

@media (max-width: 768px) {
    .page-header { padding: 30px 0 40px; }
    .page-header h1 { font-size: 2.1rem; }
    .page-header p { font-size: 1rem; padding: 0 20px; }
}

/* ── Top navigation ──────────────────────────────────────────────────────────
   Sits above .header-content inside the hero, so it inherits the hero's dark
   gradient rather than needing its own band. */
.site-nav {
    max-width: 1400px;
    margin: 0 auto 30px;
    padding: 0 20px;
    position: relative;
    z-index: 2;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    flex-wrap: wrap;
}

.site-nav-brand {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    color: white;
    text-decoration: none;
    font-size: 1.5rem;
    font-weight: 700;
}

.site-nav-brand img {
    width: 48px;
    height: 48px;
    border-radius: 12px;
    object-fit: cover;
}

.site-nav-links {
    display: flex;
    align-items: center;
    gap: 28px;
}

.site-nav-links a {
    color: rgba(255, 255, 255, .88);
    text-decoration: none;
    font-weight: 600;
    font-size: 1rem;
    transition: color .2s ease;
}

.site-nav-links a:hover { color: var(--gold-primary); }

.site-nav-links a.site-nav-cta {
    border: 2px solid var(--gold-primary);
    color: var(--gold-primary);
    border-radius: 30px;
    padding: 9px 22px;
}

.site-nav-links a.site-nav-cta:hover {
    background: var(--gold-primary);
    color: var(--dark-blue);
}

@media (max-width: 768px) {
    .site-nav { justify-content: center; gap: 14px; margin-bottom: 18px; }
    .site-nav-brand { font-size: 1.25rem; }
    .site-nav-brand img { width: 38px; height: 38px; }
    .site-nav-links { gap: 18px; flex-wrap: wrap; justify-content: center; }
    .site-nav-links a { font-size: .95rem; }
    .site-nav-links a.site-nav-cta { padding: 7px 16px; }
}

.site-nav-links a.site-nav-current {
    color: var(--gold-primary);
}

/* The page header holds the nav full-width, then centers its own text. */
.page-header > .site-nav { text-align: left; }
