:root {
    --primary-navy: #0A1F44;
    --primary-light: #1A365D;
    --solar-yellow: #FFC107;
    --solar-yellow-hover: #FFB300;
    --text-dark: #1F2937;
    --text-light: #6B7280;
    --bg-light: #F9FAFB;
    --bg-white: #FFFFFF;
    --border-color: #E5E7EB;
    --success-green: #10B981;
    --error-red: #EF4444;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', sans-serif;
    color: var(--text-dark);
    line-height: 1.6;
    background-color: var(--bg-light);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: 'Montserrat', sans-serif;
    line-height: 1.2;
    color: var(--primary-navy);
    letter-spacing: -0.5px;
}

a {
    text-decoration: none;
    color: inherit;
}

.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Buttons */
.btn {
    display: inline-block;
    background-color: var(--solar-yellow);
    color: var(--primary-navy);
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    padding: 16px 32px;
    border-radius: 8px;
    text-align: center;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    font-size: 1.1rem;
    box-shadow: 0 4px 6px rgba(255, 193, 7, 0.3);
}

.btn:hover {
    background-color: var(--solar-yellow-hover);
    transform: translateY(-2px);
    box-shadow: 0 6px 12px rgba(255, 193, 7, 0.4);
}

.btn-small {
    padding: 10px 20px;
    font-size: 0.95rem;
}

/* Navigation */
.navbar {
    background-color: var(--bg-white);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    position: sticky;
    top: 0;
    z-index: 100;
    padding: 15px 0;
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-family: 'Montserrat', sans-serif;
    font-weight: 800;
    font-size: 1.5rem;
    color: var(--primary-navy);
    display: flex;
    align-items: center;
    gap: 8px;
    letter-spacing: -0.5px;
    text-transform: uppercase;
}

.logo span {
    color: var(--solar-yellow);
}

.nav-right {
    display: flex;
    align-items: center;
    gap: 24px;
}

.nav-phone {
    font-weight: 600;
    color: var(--primary-navy);
    display: flex;
    align-items: center;
    gap: 6px;
}

/* Enhanced Hero Section with Image */
.hero {
    background-color: var(--primary-navy);
    /* Updated to a vibrant, aesthetically pleasing modern solar home */
    background-image: url('../images/resources/nsw-home-page.avif');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    color: var(--bg-white);
    padding: 120px 0 100px;
    /* Increased padding to show more of the image */
    text-align: center;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    /* Significantly reduced the opacity of the navy overlay so the image is visible! */
    background:
        radial-gradient(circle at 80% 20%, rgba(255, 193, 7, 0.3) 0%, transparent 50%),
        linear-gradient(135deg, rgba(10, 31, 68, 0.6) 0%, rgba(5, 16, 36, 0.8) 100%);
    z-index: 1;
}

.hero .container {
    position: relative;
    z-index: 2;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 193, 7, 0.4);
    padding: 8px 20px;
    border-radius: 50px;
    font-family: 'Montserrat', sans-serif;
    font-size: 0.8rem;
    font-weight: 700;
    color: var(--solar-yellow);
    margin-bottom: 24px;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.hero h1 {
    color: var(--bg-white);
    font-size: 3.75rem;
    font-weight: 800;
    max-width: 950px;
    margin: 0 auto 24px;
    letter-spacing: -1px;
    text-shadow: 0 4px 20px rgba(0, 0, 0, 0.4);
    line-height: 1.15;
}

/* Vibrant Text Pop Effects (SaaS Style) */
.text-pop {
    background: linear-gradient(100deg, #FFE53B 0%, #FF9800 50%, #FF4B2B 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    color: transparent;
    display: inline-block;
    filter: drop-shadow(0 4px 15px rgba(255, 152, 0, 0.4));
}

.hero p {
    font-size: 1.25rem;
    max-width: 800px;
    margin: 0 auto 40px;
    color: #E2E8F0;
    line-height: 1.7;
}

.hero p strong {
    color: var(--solar-yellow);
    font-weight: 700;
}

/* Premium Floating Trust Bar */
.trust-bar {
    background-color: transparent;
    padding: 0;
    margin-top: -50px;
    position: relative;
    z-index: 10;
}

.trust-container {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 24px;
    /* Slightly wider gap to beautifully frame the pipes */
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    padding: 24px 32px;
    border-radius: 16px;
    box-shadow: 0 20px 40px rgba(10, 31, 68, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.8);
}

.trust-badge {
    display: flex;
    align-items: center;
    gap: 12px;
    font-weight: 700;
    font-size: 0.95rem;
    color: var(--primary-navy);
    background: transparent;
    padding: 0;
    border-radius: 0;
    flex: 1;
    min-width: max-content;
    justify-content: center;
    border: none;
    /* Removed the old full-height right border */
    position: relative;
}

/* New Centered Pipe Separators */
.trust-badge:not(:last-child)::after {
    content: '';
    position: absolute;
    right: -12px;
    /* Position exactly half-way in the 24px gap */
    top: 50%;
    transform: translate(50%, -50%);
    /* Perfect centering */
    width: 2px;
    height: 18px;
    /* Shorter height looks like a classic pipe */
    background-color: #CBD5E1;
    border-radius: 2px;
}

.trust-badge:last-child {
    border-right: none;
}

/* Urgency Strip */
.urgency-strip {
    background-color: #FFF3CD;
    color: #856404;
    text-align: center;
    padding: 12px 20px;
    font-weight: 600;
    font-size: 1.05rem;
    border-bottom: 2px solid #FFEEBA;
}

/* Form Section */
.form-section {
    padding: 80px 0;
    background-color: var(--bg-light);
}

.form-card {
    background: var(--bg-white);
    max-width: 600px;
    margin: 0 auto;
    padding: 40px;
    border-radius: 12px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
    border-top: 5px solid var(--solar-yellow);
}

.form-header {
    text-align: center;
    margin-bottom: 30px;
}

.form-header h2 {
    font-size: 2rem;
    margin-bottom: 10px;
}

.form-header p {
    color: var(--text-light);
    font-size: 1.05rem;
}

.form-group {
    margin-bottom: 20px;
}

.form-control {
    width: 100%;
    padding: 15px;
    border: 1px solid var(--border-color);
    border-radius: 6px;
    font-family: 'Inter', sans-serif;
    font-size: 1rem;
    transition: border-color 0.3s;
}

.form-control:focus {
    outline: none;
    border-color: var(--primary-navy);
    box-shadow: 0 0 0 3px rgba(10, 31, 68, 0.1);
}

.submit-btn {
    width: 100%;
    font-size: 1.2rem;
    padding: 18px;
    margin-top: 10px;
}

.secure-text {
    text-align: center;
    font-size: 0.85rem;
    color: var(--text-light);
    margin-top: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 5px;
}

/* Cinematic Brand Video Section */
.video-section {
    padding: 100px 0;
    background-color: var(--bg-white);
    text-align: center;
    position: relative;
}

.video-header h2 {
    font-size: 2.75rem;
    margin-bottom: 16px;
    font-weight: 800;
    letter-spacing: -0.5px;
}

.video-header p {
    color: var(--text-light);
    font-size: 1.15rem;
    max-width: 600px;
    margin: 0 auto 48px;
    line-height: 1.6;
}

/* Video Facade Container */
.video-container {
    max-width: 1000px;
    margin: 0 auto;
    border-radius: 24px;
    overflow: hidden;
    position: relative;
    box-shadow: 0 25px 50px -12px rgba(10, 31, 68, 0.25);
    aspect-ratio: 16 / 9;
    background-color: #000;
    background-image: url('https://img.youtube.com/vi/uHoQTwKi3b4/maxresdefault.jpg');
    background-size: cover;
    background-position: center;
    border: 1px solid rgba(10, 31, 68, 0.05);
    transition: transform 0.4s ease, box-shadow 0.4s ease;
    cursor: pointer;
}

.video-container::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(10, 31, 68, 0.2);
    transition: background 0.3s ease;
    z-index: 1;
}

.video-container:hover::after {
    background: rgba(10, 31, 68, 0.4);
}

.video-container:hover {
    transform: translateY(-8px);
    box-shadow: 0 30px 60px -15px rgba(10, 31, 68, 0.3);
}

.video-container iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: none;
    z-index: 5;
}

/* Re-added Premium Play Button */
.play-button {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 90px;
    height: 90px;
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 2px solid rgba(255, 255, 255, 0.6);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    z-index: 2;
}

.play-button::before {
    content: '';
    position: absolute;
    top: -15px;
    left: -15px;
    right: -15px;
    bottom: -15px;
    border-radius: 50%;
    border: 1px solid rgba(255, 255, 255, 0.4);
    animation: pulse-ring 2s cubic-bezier(0.215, 0.61, 0.355, 1) infinite;
}

@keyframes pulse-ring {
    0% {
        transform: scale(0.8);
        opacity: 1;
    }

    100% {
        transform: scale(1.5);
        opacity: 0;
    }
}

.video-container:hover .play-button {
    background: var(--solar-yellow);
    border-color: var(--solar-yellow);
    transform: translate(-50%, -50%) scale(1.1);
}

.play-icon {
    width: 34px;
    height: 34px;
    fill: var(--bg-white);
    margin-left: 6px;
    transition: fill 0.3s ease;
}

.video-container:hover .play-icon {
    fill: var(--primary-navy);
}

/* AI Insight Section (Gemini Powered) - Minimal & Premium */
.ai-section {
    padding: 120px 0;
    background-color: #F8FAFC;
    position: relative;
    overflow: hidden;
    border-top: 1px solid #E2E8F0;
}

.ai-card {
    background: var(--bg-white);
    border: 1px solid rgba(10, 31, 68, 0.04);
    border-radius: 24px;
    padding: 60px;
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
    box-shadow: 0 20px 50px -10px rgba(10, 31, 68, 0.08);
    position: relative;
    z-index: 2;
}

.ai-card h2 {
    color: var(--primary-navy);
    font-size: 2.5rem;
    margin-bottom: 16px;
    font-weight: 800;
    letter-spacing: -0.5px;
}

.ai-card h2 span {
    color: var(--solar-yellow);
}

.emoji-pop {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-right: 12px;
    vertical-align: middle;
    transform: translateY(-4px);
    color: var(--solar-yellow);
}

.emoji-pop svg {
    width: 38px;
    height: 38px;
}

.ai-card p.ai-desc {
    color: var(--text-light);
    font-size: 1.15rem;
    margin-bottom: 40px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.6;
}

.ai-input-group {
    display: flex;
    gap: 16px;
    margin-bottom: 32px;
    justify-content: center;
}

.ai-input {
    padding: 18px 24px;
    border-radius: 12px;
    border: 2px solid transparent;
    background: #F1F5F9;
    color: var(--text-dark);
    font-size: 1.05rem;
    font-family: 'Inter', sans-serif;
    width: 100%;
    max-width: 260px;
    transition: all 0.3s;
}

.ai-input::placeholder {
    color: #94A3B8;
    font-weight: 500;
}

.ai-input:focus {
    outline: none;
    border-color: var(--solar-yellow);
    background: var(--bg-white);
    box-shadow: 0 4px 12px rgba(255, 193, 7, 0.15);
}

.ai-btn-custom {
    width: 100%;
    max-width: 340px;
    padding: 18px 32px;
    font-size: 1.15rem;
    letter-spacing: 0.5px;
}

.ai-result {
    margin-top: 40px;
    padding: 32px;
    background: #F8FAFC;
    border-radius: 16px;
    border: 1px solid #E2E8F0;
    border-left: 5px solid var(--solar-yellow);
    text-align: left;
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--primary-navy);
    display: none;
    white-space: pre-wrap;
    animation: fadeIn 0.5s ease-out forwards;
    box-shadow: 0 10px 30px -10px rgba(10, 31, 68, 0.05);
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(10px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.ai-loading {
    display: none;
    flex-direction: column;
    align-items: center;
    gap: 16px;
    margin-top: 40px;
}

.ai-loading p {
    color: var(--text-light);
    font-size: 0.95rem;
    font-weight: 600;
    margin: 0;
    animation: pulseText 1.5s infinite;
}

@keyframes pulseText {
    0% {
        opacity: 0.6;
    }

    50% {
        opacity: 1;
    }

    100% {
        opacity: 0.6;
    }
}

.ai-disclaimer {
    margin-top: 24px;
    font-size: 0.85rem;
    color: #94A3B8;
    line-height: 1.6;
    font-style: italic;
    padding-top: 20px;
    border-top: 1px solid #F1F5F9;
}

.ai-disclaimer a {
    color: var(--primary-navy);
    font-weight: 600;
    text-decoration: underline;
    transition: color 0.3s ease;
}

.ai-disclaimer a:hover {
    color: var(--solar-yellow-hover);
}

.spinner {
    width: 44px;
    height: 44px;
    border: 3px solid #E2E8F0;
    border-top-color: var(--solar-yellow);
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

@keyframes spin {
    100% {
        transform: rotate(360deg);
    }
}

@media (max-width: 768px) {
    .ai-input-group {
        flex-direction: column;
        align-items: center;
    }

    .ai-input {
        max-width: 100%;
    }

    .ai-card {
        padding: 40px 24px;
    }

    .ai-card h2 {
        font-size: 2rem;
    }

    .ai-btn-custom {
        max-width: 100%;
    }
}

/* How It Works - Upgraded Premium Design */
.how-it-works {
    padding: 100px 0;
    background-color: #F8FAFC;
    position: relative;
    overflow: hidden;
}

.section-title {
    text-align: center;
    font-size: 2.25rem;
    margin-bottom: 50px;
    font-weight: 700;
    letter-spacing: -0.5px;
}

.steps-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    position: relative;
}

/* Connecting Timeline Line */
.steps-grid::before {
    content: '';
    position: absolute;
    top: 45px;
    /* Aligns with middle of the 90px icon wrap */
    left: 16.66%;
    /* Starts from the center of the first column */
    right: 16.66%;
    /* Ends at the center of the last column */
    height: 0;
    border-top: 2px dashed #CBD5E1;
    z-index: 0;
}

.step-card {
    text-align: center;
    padding: 50px 40px;
    background: var(--bg-white);
    border-radius: 24px;
    border: 1px solid rgba(10, 31, 68, 0.04);
    box-shadow: 0 15px 35px rgba(10, 31, 68, 0.04);
    position: relative;
    z-index: 1;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.step-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 25px 50px rgba(10, 31, 68, 0.08);
    border-color: rgba(255, 193, 7, 0.3);
}

.step-icon-wrap {
    width: 90px;
    height: 90px;
    margin: 0 auto 35px;
    background: linear-gradient(135deg, rgba(255, 193, 7, 0.25) 0%, rgba(255, 193, 7, 0.05) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    transition: transform 0.4s ease;
}

.step-card:hover .step-icon-wrap {
    transform: scale(1.08) rotate(5deg);
}

.step-icon-inner {
    width: 64px;
    height: 64px;
    background: var(--bg-white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-navy);
    box-shadow: 0 8px 16px rgba(10, 31, 68, 0.06);
    transition: all 0.4s ease;
}

.step-card:hover .step-icon-inner {
    background: var(--primary-navy);
    color: var(--solar-yellow);
}

.step-icon-inner svg {
    width: 28px;
    height: 28px;
}

.step-number {
    position: absolute;
    top: -4px;
    right: -4px;
    width: 32px;
    height: 32px;
    background: var(--primary-navy);
    color: var(--solar-yellow);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    font-size: 0.9rem;
    border: 3px solid var(--bg-white);
    box-shadow: 0 4px 8px rgba(10, 31, 68, 0.15);
    z-index: 2;
}

.step-card h3 {
    font-size: 1.2rem;
    margin-bottom: 12px;
    font-weight: 600;
    letter-spacing: -0.3px;
}

.step-card p {
    color: var(--text-light);
    font-size: 1.05rem;
    line-height: 1.7;
}

/* World-Class UI/UX Testimonials - Split Layout */
.testimonials {
    padding: 120px 0;
    background-color: #F8FAFC;
    border-top: 1px solid #E2E8F0;
    position: relative;
    overflow: hidden;
}

.test-container {
    display: grid;
    grid-template-columns: 1fr 1.6fr;
    gap: 60px;
    align-items: start;
}

.test-left {
    position: sticky;
    top: 120px;
}

.test-left h2 {
    font-size: 3rem;
    font-weight: 800;
    line-height: 1.15;
    margin-bottom: 24px;
    color: var(--primary-navy);
    letter-spacing: -1px;
}

.test-left p {
    font-size: 1.15rem;
    color: var(--text-light);
    line-height: 1.6;
    margin-bottom: 40px;
    max-width: 400px;
}

.rating-block {
    display: flex;
    align-items: center;
    gap: 20px;
    background: var(--bg-white);
    padding: 24px;
    border-radius: 16px;
    box-shadow: 0 10px 30px rgba(10, 31, 68, 0.05);
    border: 1px solid #E2E8F0;
    max-width: 400px;
}

.rating-score {
    font-family: 'Montserrat', sans-serif;
    font-size: 3.5rem;
    font-weight: 800;
    color: var(--primary-navy);
    line-height: 1;
    letter-spacing: -2px;
}

.rating-stars-text {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.rating-stars-text .stars {
    display: flex;
    gap: 4px;
}

.rating-stars-text .stars svg {
    width: 22px;
    height: 22px;
    fill: #F59E0B;
}

.rating-stars-text p {
    margin: 0;
    font-size: 0.95rem;
    color: var(--text-light);
    line-height: 1.4;
}

.rating-stars-text p strong {
    color: var(--primary-navy);
    font-weight: 700;
}

.test-right {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
}

/* Create a beautiful masonry stagger */
.test-right .test-card:nth-child(even) {
    margin-top: 40px;
}

.test-card {
    background: var(--bg-white);
    padding: 36px;
    border-radius: 20px;
    box-shadow: 0 10px 40px -10px rgba(0, 0, 0, 0.08);
    border: 1px solid rgba(10, 31, 68, 0.04);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    display: flex;
    flex-direction: column;
}

.test-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 50px -10px rgba(0, 0, 0, 0.12);
    border-color: rgba(255, 193, 7, 0.3);
}

.test-stars {
    display: flex;
    gap: 4px;
    margin-bottom: 20px;
}

.test-stars svg {
    width: 18px;
    height: 18px;
    fill: #F59E0B;
}

.test-body {
    font-size: 1.05rem;
    line-height: 1.7;
    color: var(--text-dark);
    margin-bottom: 30px;
    font-weight: 500;
    flex-grow: 1;
}

.test-footer {
    display: flex;
    align-items: center;
    gap: 16px;
    border-top: 1px solid #F1F5F9;
    padding-top: 20px;
}

.test-avatar {
    width: 46px;
    height: 46px;
    background: linear-gradient(135deg, var(--primary-light) 0%, var(--primary-navy) 100%);
    color: var(--bg-white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    font-size: 1.2rem;
    flex-shrink: 0;
    box-shadow: 0 4px 10px rgba(10, 31, 68, 0.15);
}

.test-author-info {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.test-name {
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    font-size: 1.05rem;
    color: var(--primary-navy);
    display: flex;
    align-items: center;
    gap: 6px;
}

.verified-icon {
    width: 16px;
    height: 16px;
    fill: #10B981;
}

.test-meta {
    font-size: 0.85rem;
    color: #64748B;
    font-weight: 500;
}

/* Why Zip Solar - Premium Upgrade */
.why-us {
    padding: 120px 0;
    background-color: #F8FAFC;
}

.reasons-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
}

.reason-card {
    display: flex;
    gap: 24px;
    background: var(--bg-white);
    padding: 40px;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(10, 31, 68, 0.04);
    border: 1px solid rgba(10, 31, 68, 0.05);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.reason-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(10, 31, 68, 0.08);
    border-color: rgba(255, 193, 7, 0.3);
}

.reason-icon-wrap {
    width: 76px;
    height: 76px;
    background: linear-gradient(135deg, rgba(255, 193, 7, 0.2) 0%, rgba(255, 193, 7, 0.05) 100%);
    border-radius: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    color: var(--solar-yellow-hover);
    transition: all 0.4s ease;
}

.reason-card:hover .reason-icon-wrap {
    transform: scale(1.08) rotate(5deg);
    background: var(--solar-yellow);
    color: var(--primary-navy);
    box-shadow: 0 10px 20px rgba(255, 193, 7, 0.3);
}

.reason-icon-wrap svg {
    width: 32px;
    height: 32px;
}

.reason-content h3 {
    font-size: 1.35rem;
    margin-bottom: 12px;
    font-weight: 700;
    letter-spacing: -0.3px;
}

.reason-content p {
    color: var(--text-light);
    line-height: 1.7;
    font-size: 1.05rem;
}

/* SaaS-Style Comparison Table */
.comparison {
    padding: 120px 0;
    background-color: var(--bg-white);
}

.table-wrapper {
    overflow-x: auto;
    box-shadow: 0 20px 40px rgba(10, 31, 68, 0.06);
    border-radius: 20px;
    border: 1px solid #E2E8F0;
}

table {
    width: 100%;
    border-collapse: separate;
    border-spacing: 0;
    background: var(--bg-white);
}

th,
td {
    padding: 24px 30px;
    text-align: left;
    border-bottom: 1px solid #F1F5F9;
}

th {
    font-family: 'Montserrat', sans-serif;
    font-size: 1.1rem;
    background-color: var(--bg-white);
    color: var(--text-light);
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 700;
}

th:nth-child(2),
td:nth-child(2) {
    background-color: rgba(255, 193, 7, 0.04);
}

th:nth-child(2) {
    background-color: var(--solar-yellow);
    color: var(--primary-navy);
    border-top: none;
    font-size: 1.25rem;
    text-align: center;
    border-top-left-radius: 20px;
    border-top-right-radius: 20px;
}

td:nth-child(2) {
    text-align: center;
    font-weight: 700;
    color: var(--primary-navy);
    border-left: 2px solid var(--solar-yellow);
    border-right: 2px solid var(--solar-yellow);
}

tr:last-child td {
    border-bottom: none;
}

tr:last-child td:nth-child(2) {
    border-bottom: 2px solid var(--solar-yellow);
    border-bottom-left-radius: 20px;
    border-bottom-right-radius: 20px;
}

td {
    font-size: 1.05rem;
    color: var(--text-dark);
}

.check {
    color: #10B981;
    font-weight: 700;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    justify-content: center;
}

.cross {
    color: #94A3B8;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

/* Premium Split-Layout FAQ */
.faq-section {
    padding: 120px 0;
    background-color: var(--bg-white);
    border-top: 1px solid #E2E8F0;
    position: relative;
}

.faq-container {
    display: grid;
    grid-template-columns: 1fr 1.6fr;
    gap: 60px;
    align-items: start;
}

.faq-left {
    position: sticky;
    top: 120px;
}

.faq-left h2 {
    font-size: 3rem;
    font-weight: 800;
    line-height: 1.15;
    margin-bottom: 24px;
    color: var(--primary-navy);
    letter-spacing: -1px;
}

.faq-left p {
    font-size: 1.15rem;
    color: var(--text-light);
    line-height: 1.6;
    margin-bottom: 40px;
    max-width: 400px;
}

.faq-support-card {
    background: #F8FAFC;
    padding: 32px;
    border-radius: 16px;
    border: 1px solid #E2E8F0;
    display: flex;
    flex-direction: column;
    gap: 16px;
    max-width: 400px;
    box-shadow: 0 10px 30px rgba(10, 31, 68, 0.03);
}

.faq-support-card .icon-wrap {
    width: 48px;
    height: 48px;
    background: rgba(255, 193, 7, 0.15);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--solar-yellow-hover);
}

.faq-support-card .icon-wrap svg {
    width: 24px;
    height: 24px;
}

.faq-support-card h4 {
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--primary-navy);
    margin: 0;
}

.faq-support-card p {
    font-size: 0.95rem;
    color: var(--text-light);
    margin: 0 0 8px 0;
}

.faq-support-card a {
    display: inline-flex;
    align-items: center;
    font-weight: 700;
    color: var(--primary-navy);
    font-size: 1.25rem;
    transition: color 0.3s;
}

.faq-support-card a:hover {
    color: var(--solar-yellow-hover);
}

.faq-right {
    display: flex;
    flex-direction: column;
    gap: 48px;
}

.faq-category-title {
    font-family: 'Montserrat', sans-serif;
    font-size: 0.85rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: #64748B;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    gap: 12px;
}

.faq-category-title::before {
    content: '';
    display: block;
    width: 32px;
    height: 2px;
    background: var(--solar-yellow);
}

.faq-item {
    background: var(--bg-white);
    border: 1px solid #E2E8F0;
    border-radius: 16px;
    margin-bottom: 16px;
    overflow: hidden;
    transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.02);
}

.faq-item:hover {
    border-color: #CBD5E1;
    box-shadow: 0 10px 25px -5px rgba(10, 31, 68, 0.08);
    transform: translateY(-2px);
}

.faq-item.active {
    border-color: rgba(255, 193, 7, 0.4);
    box-shadow: 0 15px 35px -5px rgba(10, 31, 68, 0.08);
    transform: translateY(0);
}

.faq-question {
    width: 100%;
    text-align: left;
    padding: 24px 30px;
    background: none;
    border: none;
    font-family: 'Montserrat', sans-serif;
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--primary-navy);
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
}

.faq-icon {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: #F8FAFC;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-navy);
    flex-shrink: 0;
    border: 1px solid #E2E8F0;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.faq-item:hover .faq-icon {
    background: var(--solar-yellow);
    border-color: var(--solar-yellow);
}

.faq-item.active .faq-icon {
    background: var(--primary-navy);
    border-color: var(--primary-navy);
    color: var(--bg-white);
    transform: rotate(180deg);
}

.faq-icon svg {
    width: 18px;
    height: 18px;
    transition: transform 0.3s;
}

.faq-item.active .faq-icon .plus {
    display: none;
}

.faq-item:not(.active) .faq-icon .minus {
    display: none;
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease-out;
}

.faq-answer-inner {
    padding: 0 30px 30px;
    color: var(--text-light);
    line-height: 1.7;
    font-size: 1.05rem;
    border-top: 1px solid transparent;
    /* Prevents margin collapse */
}

/* Minimal Bottom CTA */
.bottom-cta {
    padding: 60px 0 80px;
    background-color: var(--bg-light);
}

.bottom-cta-card {
    background: var(--bg-white);
    border: 1px solid #E2E8F0;
    border-radius: 24px;
    padding: 60px 40px;
    text-align: center;
    box-shadow: 0 15px 35px -10px rgba(10, 31, 68, 0.05);
    max-width: 900px;
    margin: 0 auto;
    position: relative;
    overflow: hidden;
}

/* Subtle top accent line for the card */
.bottom-cta-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--solar-yellow);
}

.bottom-cta h2 {
    color: var(--primary-navy);
    font-size: 2.75rem;
    margin-bottom: 16px;
    font-weight: 800;
    letter-spacing: -0.5px;
}

.bottom-cta p {
    font-size: 1.15rem;
    margin-bottom: 32px;
    color: var(--text-light);
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

/* Footer */
.footer {
    background-color: #051024;
    color: #9CA3AF;
    padding: 60px 0 30px;
    font-size: 0.95rem;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr;
    /* Adjusted for 2 columns */
    gap: 60px;
    /* Increased gap for better spacing */
    margin-bottom: 40px;
}

.footer-col h4 {
    color: var(--bg-white);
    font-size: 1.2rem;
    margin-bottom: 20px;
}

.footer-logo {
    font-family: 'Montserrat', sans-serif;
    font-weight: 800;
    font-size: 1.8rem;
    color: var(--bg-white);
    margin-bottom: 15px;
    display: inline-block;
    letter-spacing: -0.5px;
    text-transform: uppercase;
}

.footer-logo span {
    color: var(--solar-yellow);
}

.footer-links {
    list-style: none;
}

.footer-links li {
    margin-bottom: 12px;
}

.footer-links a {
    transition: color 0.3s;
}

.footer-links a:hover {
    color: var(--solar-yellow);
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 30px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
}

.accreditations {
    display: flex;
    gap: 15px;
    font-size: 0.85rem;
    color: #D1D5DB;
}


.error {
    font-size: 12px;
    color: red;
    padding-left: 5px;
    padding-top: 5px;
    font-weight: 700;
}


/* Responsive Design */
@media (max-width: 992px) {
    .hero h1 {
        font-size: 2.8rem;
    }

    .steps-grid,
    .reasons-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .steps-grid::before {
        display: none;
    }

    .step-icon-wrap {
        box-shadow: none;
    }

    /* Responsive Testimonials Updates */
    .test-container {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .test-left {
        position: relative;
        top: 0;
        text-align: center;
    }

    .test-left h2 {
        font-size: 2.5rem;
    }

    .test-left p {
        max-width: 100%;
        margin: 0 auto 30px;
    }

    .rating-block {
        margin: 0 auto;
        justify-content: center;
    }

    .test-right .test-card:nth-child(even) {
        margin-top: 0;
    }

    /* Responsive FAQ Updates */
    .faq-container {
        grid-template-columns: 1fr;
        gap: 50px;
    }

    .faq-left {
        position: relative;
        top: 0;
        text-align: center;
    }

    .faq-left h2 {
        font-size: 2.5rem;
    }

    .faq-left p {
        max-width: 100%;
        margin: 0 auto 30px;
    }

    .faq-support-card {
        align-items: center;
        text-align: center;
        margin: 0 auto;
    }

    .faq-category-title {
        justify-content: center;
    }

    .faq-category-title::before {
        display: none;
    }
}

@media (max-width: 768px) {
    .nav-phone span {
        display: none;
    }

    /* Hide text, keep icon if added */
    .hero {
        padding: 60px 0 50px;
    }

    .hero h1 {
        font-size: 2.2rem;
    }

    .hero p {
        font-size: 1.1rem;
    }

    .trust-container {
        flex-direction: column;
        gap: 0;
        padding: 10px 24px;
    }

    .trust-badge {
        width: 100%;
        border-right: none;
        border-bottom: 1px solid #E2E8F0;
        padding: 16px 0;
        justify-content: flex-start;
    }

    .trust-badge:not(:last-child)::after {
        display: none;
    }

    /* Hide the desktop pipes on mobile */
    .trust-badge:last-child {
        border-bottom: none;
    }

    .video-section {
        padding: 60px 0;
    }

    .video-header h2 {
        font-size: 2rem;
    }

    .play-button {
        width: 60px;
        height: 60px;
    }

    .play-icon {
        width: 24px;
        height: 24px;
        margin-left: 4px;
    }

    .form-section {
        padding: 50px 0;
    }

    .form-card {
        padding: 30px 20px;
    }

    .form-header h2 {
        font-size: 1.7rem;
    }

    .steps-grid,
    .reasons-grid {
        grid-template-columns: 1fr;
    }

    .test-right {
        grid-template-columns: 1fr;
    }

    .section-title {
        font-size: 2rem;
    }

    .faq-question {
        padding: 20px;
        font-size: 1.05rem;
    }

    .faq-answer-inner {
        padding: 0 20px 20px;
        font-size: 1rem;
    }

    .bottom-cta {
        padding: 40px 0 60px;
    }

    .bottom-cta-card {
        padding: 40px 20px;
    }

    .bottom-cta h2 {
        font-size: 2rem;
    }

    .table-wrapper {
        margin: 0 -20px;
        border-radius: 0;
    }

    th,
    td {
        padding: 12px 10px;
        font-size: 0.95rem;
    }

    .footer-grid {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .footer-bottom {
        flex-direction: column;
        text-align: center;
        justify-content: center;
    }

    .accreditations {
        flex-wrap: wrap;
        justify-content: center;
    }
}