/* Global Styles */
:root {
    --bg-color: #ffffff;
    --bg-alt: #f8f9fa;
    /* Slightly cooler grey/white */
    --text-color: #2c3e50;
    /* Softer than pure black */
    --secondary-text: #596b7d;
    --accent-color: #1a1a1a;
    --primary-color: #2c3e50;
    --button-bg: #2c3e50;
    --button-text: #ffffff;

    --font-heading: 'Cinzel', serif;
    --font-body: 'Inter', sans-serif;

    --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.04);
    --shadow-md: 0 8px 24px rgba(0, 0, 0, 0.06);
    --shadow-hover: 0 12px 32px rgba(0, 0, 0, 0.08);

    --radius-sm: 8px;
    --radius-md: 16px;
    --radius-pill: 50px;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: var(--font-body);
    background-color: var(--bg-color);
    color: var(--text-color);
    line-height: 1.7;
    -webkit-font-smoothing: antialiased;
}

h1,
h2,
h3 {
    font-family: var(--font-heading);
    color: var(--primary-color);
    margin-bottom: 1.5rem;
    line-height: 1.25;
}

h1 {
    font-size: 3rem;
    font-weight: 600;
    letter-spacing: -0.02em;
}

h2 {
    font-size: 2.25rem;
    text-align: center;
    margin-bottom: 2.5rem;
    font-weight: 500;
}

h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    font-weight: 600;
}

p {
    margin-bottom: 1.5rem;
    color: var(--secondary-text);
    font-size: 1.1rem;
    font-weight: 300;
}

ul {
    list-style-type: none;
    padding-left: 0;
}

a {
    text-decoration: none;
    color: inherit;
    transition: all 0.3s ease;
}

/* Utilities */
.container {
    max-width: 900px;
    margin: 0 auto;
    padding: 0 2rem;
    text-align: center;
}

section {
    padding: 7rem 0;
}

/* Hero Section */
.hero-section {
    padding: 10rem 0 8rem;
    background: radial-gradient(circle at 50% 0%, #fcfcfc 0%, #ffffff 100%);
    text-align: center;
}

.hero-section .subheadline {
    font-size: 1.25rem;
    color: var(--secondary-text);
    max-width: 640px;
    margin: 0 auto 3rem;
    font-weight: 300;
    line-height: 1.6;
}

.hero-image-container {
    margin-bottom: 3.5rem;
    perspective: 1000px;
}


.hero-image {
    width: 100%;
    max-width: 220px;
    height: auto;
}

/* Final CTA Section Enhancements */
.final-cta-section {
    padding: 8rem 0;
    background: radial-gradient(circle at center, #f8f9fa 0%, #e9ecef 100%);
    position: relative;
}

.final-offer {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 4rem;
    margin-top: 4rem;
    background: white;
    padding: 4rem;
    border-radius: var(--radius-md);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.08);
    /* Deeper shadow */
    border: 1px solid rgba(0, 0, 0, 0.02);
    position: relative;
    overflow: hidden;
}

/* Gold Accent Line at top */
.final-offer::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, #d4af37, #f1c40f, #d4af37);
}

.final-offer-image {
    width: 210px;
    /* Maintained size */
    border-radius: 4px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
    transform: perspective(1000px) rotateY(-5deg);
    transition: transform 0.3s ease;
}

.final-offer-image:hover {
    transform: perspective(1000px) rotateY(0deg) scale(1.02);
}

.price-wrapper {
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.price-label {
    font-size: 0.9rem;
    font-weight: 700;
    color: #d4af37;
    /* Gold color */
    text-transform: uppercase;
    letter-spacing: 0.2em;
    margin-bottom: 0.5rem;
    display: block;
}

.price-value {
    font-family: var(--font-heading);
    font-size: 4.5rem;
    color: var(--primary-color);
    font-weight: 500;
    line-height: 1;
    margin-bottom: 1.5rem;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
}

.price-currency {
    font-size: 2.5rem;
    vertical-align: text-top;
    margin-right: 4px;
    color: var(--secondary-text);
}

/* Offer Checklist */
.offer-features {
    margin: 1.5rem 0 2rem;
    text-align: left;
}

.offer-features li {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 0.8rem;
    color: var(--text-color);
    font-size: 1rem;
    padding-left: 0;
}

.offer-features li::before {
    display: none;
}

.benefit-icon {
    color: #27ae60;
    width: 18px;
    height: 18px;
}

.secure-badge {
    margin-top: 1rem;
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.8rem;
    color: #888;
}

.padlock-icon {
    width: 14px;
    height: 14px;
}

@media (min-width: 768px) {
    .final-offer {
        flex-direction: row;
        justify-content: center;
        text-align: left;
        padding: 5rem;
        gap: 5rem;
    }

    .price-wrapper {
        text-align: left;
        align-items: flex-start;
        padding-left: 3rem;
        border-left: 1px solid #eee;
    }
}

/* CTA Button Primary Style */
.cta-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 1.25rem 3.5rem;
    /* Larger touch target */
    background-color: var(--button-bg);
    color: var(--button-text);
    font-family: var(--font-body);
    font-weight: 600;
    font-size: 1.1rem;
    border: 2px solid var(--button-bg);
    border-radius: var(--radius-pill);
    transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
    box-shadow: 0 4px 15px rgba(44, 62, 80, 0.25);
    cursor: pointer;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-top: 1.5rem;
    text-decoration: none;
    /* Ensure no underline */
}

.cta-button:hover {
    background-color: transparent;
    color: var(--button-bg);
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(44, 62, 80, 0.2);
}

/* Context Section */
.context-section {
    background-color: var(--bg-alt);
}

.context-section .text-content {
    font-size: 1.35rem;
    max-width: 720px;
    margin: 0 auto;
    font-family: var(--font-heading);
    color: var(--text-color);
    line-height: 1.6;
}

/* Solution Section */
.solution-section {
    background-color: var(--bg-color);
}

/* Feature Grid & Card Styling */
.feature-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    max-width: 1000px;
    margin: 3rem auto 0;
}

.feature-card {
    background: #ffffff;
    padding: 2.5rem;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-sm);
    transition: all 0.3s ease;
    text-align: center;
    border: 1px solid #f0f0f0;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.feature-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-hover);
    border-color: rgba(44, 62, 80, 0.1);
}

.icon-wrapper {
    width: 64px;
    height: 64px;
    background-color: var(--bg-alt);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    color: var(--primary-color);
    transition: background-color 0.3s ease;
}

.feature-card:hover .icon-wrapper {
    background-color: var(--primary-color);
    color: white;
}

.feature-card h3 {
    font-size: 1.25rem;
    margin-bottom: 0.75rem;
}

.feature-card p {
    font-size: 1rem;
    margin-bottom: 0;
    line-height: 1.6;
}

/* Feature List (Legacy Override) */
.feature-list {
    display: none;
}

/* General Section Icons */
.section-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 80px;
    height: 80px;
    background-color: white;
    border-radius: 50%;
    margin-bottom: 2rem;
    box-shadow: var(--shadow-sm);
    color: var(--primary-color);
}

/* Audience Section Revamp */
.audience-section {
    background-color: var(--bg-alt);
    /* Light grey background for contrast */
}

.audience-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    max-width: 1000px;
    margin: 0 auto;
}

@media (min-width: 768px) {
    .audience-grid {
        grid-template-columns: 1fr 1fr;
        gap: 3rem;
    }
}

.audience-column {
    background: #ffffff;
    padding: 3rem;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-sm);
    text-align: left;
    transition: transform 0.3s ease;
    border-top: 4px solid transparent;
    /* default */
}

.audience-column:first-child {
    border-top-color: #27ae60;
    /* Green highlight for 'For' */
}

.audience-column:last-child {
    border-top-color: #c0392b;
    /* Red highlight for 'Not For' */
}

.audience-column:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
}

.audience-column h3 {
    text-align: center;
    margin-bottom: 2rem;
    font-size: 1.35rem;
}

.audience-column li {
    padding-left: 0;
    margin-bottom: 1.25rem;
    display: flex;
    align-items: flex-start;
    gap: 12px;
    font-size: 1.05rem;
    line-height: 1.5;
}

/* Testimonial Section - Conveyor Belt Style */
.testimonial-section {
    background-color: var(--bg-color);
    /* overflow: hidden; Removed to ensure scrollbar is reachable */
}

.testimonial-grid {
    display: flex;
    gap: 2rem;
    overflow-x: auto;
    padding: 1rem 1rem 3rem 1rem;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    width: 100%;
    max-width: 1200px;
    margin: 3rem auto 0;
    /* Hide Scrollbar visually but allow scroll */
    scrollbar-width: none;
    -ms-overflow-style: none;

    /* Drag Cursors */
    cursor: grab;
    user-select: none;
    /* Prevent text selection while dragging */
}

.testimonial-grid.active {
    cursor: grabbing;
    cursor: -webkit-grabbing;
    transform: scale(1);
    /* Force repaint sometimes helps */
}

.testimonial-grid::-webkit-scrollbar {
    display: block;
    height: 8px;
    /* Visible scrollbar */
}

.testimonial-grid::-webkit-scrollbar-track {
    background: #f1f1f1;
    border-radius: 4px;
}

.testimonial-grid::-webkit-scrollbar-thumb {
    background: #ccc;
    border-radius: 4px;
}

.testimonial-grid::-webkit-scrollbar-thumb:hover {
    background: #bbb;
}

.testimonial-card {
    flex: 0 0 350px;
    /* Fixed width for cards */
    scroll-snap-align: center;
    background: var(--bg-alt);
    padding: 2.5rem;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-sm);
    position: relative;
    border: 1px solid rgba(0, 0, 0, 0.03);
    transition: transform 0.3s ease;
}

.testimonial-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
}

@media (max-width: 600px) {
    .testimonial-card {
        flex: 0 0 280px;
        /* Slightly smaller on mobile */
    }
}


.testimonial-text {
    font-size: 1.05rem;
    font-style: italic;
    color: var(--text-color);
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.author-avatar {
    width: 48px;
    height: 48px;
    background-color: #ddd;
    border-radius: 50%;
    overflow: hidden;
}

.author-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.author-info h4 {
    font-family: var(--font-body);
    font-size: 1rem;
    font-weight: 600;
    margin: 0;
    color: var(--primary-color);
}

.author-info span {
    font-size: 0.85rem;
    color: var(--secondary-text);
}

.quote-icon {
    position: absolute;
    top: 1.5rem;
    right: 2rem;
    font-size: 4rem;
    line-height: 1;
    color: rgba(0, 0, 0, 0.05);
    font-family: serif;
}

/* Navigation */
html {
    scroll-behavior: smooth;
    scroll-padding-top: 80px;
    /* Offset for fixed header */
}

.main-nav {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background-color: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    z-index: 1000;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    padding: 1rem 0;
    transition: all 0.3s ease;
}

.nav-container {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 2rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.nav-logo {
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 1.25rem;
    color: var(--primary-color);
    letter-spacing: -0.02em;
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 2rem;
}

.nav-links a {
    font-size: 0.95rem;
    font-weight: 500;
    color: var(--secondary-text);
}

.nav-links a:hover {
    color: var(--primary-color);
}

.nav-links .nav-cta {
    background-color: var(--primary-color);
    color: white;
    padding: 0.6rem 1.2rem;
    border-radius: var(--radius-pill);
    font-size: 0.9rem;
    transition: transform 0.2s ease, background-color 0.2s ease;
}

.nav-links .nav-cta:hover {
    transform: translateY(-2px);
    background-color: #1a252f;
    color: white;
}

@media (max-width: 768px) {
    .nav-links {
        display: none;
        /* Hide for mobile for now to keep it clean, or use a simple overflow */
    }

    .nav-container {
        justify-content: center;
    }
}