:root {
    /* Light Theme Color Palette */
    --bg-color: #F7F7F8;
    --card-bg: #FFFFFF;
    --text-color: #1A202C;
    --text-muted: #5A6477;
    --accent-color: #DAB454; /* Primary Gold for interactive elements */
    --accent-hover: #C09B40;
    --accent-secondary-color: #BC9243; /* Gold/Bronze for static highlights */
    --border-color: #EAEAEA;
}

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

html {
    scroll-behavior: smooth;
}

body {
    background-color: var(--bg-color);
    color: var(--text-color);
    font-family: 'Manrope', sans-serif;
    font-size: 16px;
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    position: relative;
}

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

/* --- Top Navigation --- */
.top-nav {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 10;
    padding: 0;
}
.top-nav .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 1rem;
    padding-bottom: 1rem;
}
.top-nav .logo img {
    height: 50px;
    width: auto;
}
.top-nav .btn {
    padding: 8px 20px;
    font-size: 15px;
}

/* --- Typography --- */
h1, h2, h3, h4 {
    color: var(--text-color);
    letter-spacing: -0.02em;
    font-weight: 800;
}

h2 {
    font-size: clamp(1.8rem, 3.5vw, 2.5rem);
    text-align: center;
    margin-bottom: 3rem;
}

h3 {
    font-size: 1.25rem;
}

h4 {
    font-size: 1.1rem;
}

p {
    color: var(--text-muted);
}

/* --- Links --- */
a {
    color: var(--accent-color);
    text-decoration: none;
    transition: all 0.2s ease;
}
a:hover {
    color: var(--accent-hover);
    text-decoration: underline;
}
p a {
    font-weight: 600;
}

/* --- Hero Section --- */
.hero {
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    position: relative;
    min-height: 100vh;
    min-height: 100svh;
    padding: 6rem 20px 8rem;
    background: linear-gradient(180deg, var(--bg-color) 0%, #EDEEF0 100%);
}
.hero::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 120px;
    height: 4px;
    background: linear-gradient(90deg, transparent, var(--accent-color), transparent);
    border-radius: 2px;
}
.hero-content {
    max-width: 900px;
}

.hero-pretitle {
    font-size: 1.3rem;
    color: var(--text-muted);
    font-weight: 600;
    margin-bottom: 1rem;
}

.hero-headline {
    font-size: clamp(2rem, 5vw, 2.5rem);
    line-height: 1.2;
    font-weight: 800;
    color: var(--text-color);
    margin: 0;
}
.hero-headline strong {
    color: var(--accent-secondary-color);
}

.hero-subheadline {
    font-size: 1.15rem;
    color: var(--text-muted);
    margin: 2rem auto 2.5rem;
    max-width: 60ch;
}

.hero-demo-placeholder {
    margin-top: 3rem;
    padding: 2rem;
    background: var(--card-bg);
    border: 2px dashed var(--border-color);
    border-radius: 12px;
    color: var(--text-muted);
    font-style: italic;
}

.cta-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}
.btn {
    display: inline-block;
    padding: 14px 32px;
    border-radius: 8px;
    text-decoration: none !important;
    font-weight: 700;
    font-size: 1.05rem;
    transition: all 0.2s ease-in-out;
}
.btn:hover {
    text-decoration: none !important;
}
.btn-primary {
    background-color: var(--accent-color);
    color: #FFFFFF !important;
    border: none;
}
.btn-primary:hover {
    background-color: var(--accent-hover);
    color: #FFFFFF !important;
    transform: scale(1.05);
}
.btn-secondary {
    background-color: transparent;
    color: var(--text-color) !important;
    border: 1px solid var(--border-color);
}
.btn-secondary:hover {
    background-color: rgba(0, 0, 0, 0.03);
    border-color: var(--text-color);
    color: var(--text-color) !important;
    transform: scale(1.05);
}

/* --- Sections --- */
.section {
    padding: 3.5rem 0;
}

.section-intro {
    text-align: center;
    max-width: 70ch;
    margin: -1.5rem auto 2rem;
    font-size: 1.1rem;
}

/* Video Section Placeholder */
.video-section {
    padding: 2rem 0 3rem;
    text-align: center;
}
.video-placeholder {
    width: 100%;
    max-width: 900px;
    aspect-ratio: 16 / 9;
    background-color: var(--card-bg);
    border: 2px dashed var(--border-color);
    border-radius: 12px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    margin: 0 auto;
    font-size: 1.5rem;
    color: var(--text-muted);
    font-style: italic;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
    padding: 2rem;
}

/* How It Works Grid */
.how-it-works-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 2rem;
}

@media (max-width: 767px) {
    .how-it-works-grid {
        padding: 0 1rem;
    }
}

.how-it-works-item {
    text-align: center;
}

.how-it-works-image {
    width: 100%;
    aspect-ratio: 1;
    object-fit: cover;
    border-radius: 12px;
    margin-bottom: 1rem;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}

/* How It Works Animations */
.how-it-works-animation {
    width: 100%;
    aspect-ratio: 1;
    border-radius: 12px;
    margin-bottom: 1rem;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
    background: var(--card-bg);
    border: 1px solid var(--border-color);
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.how-it-works-animation svg {
    width: 85%;
    height: 85%;
}

/* Context Animation - Neural Network */
.context-animation .conn {
    stroke: rgba(218, 180, 84, 0.2);
    stroke-width: 1;
    transition: all 0.3s ease;
}
.context-animation .node {
    fill: rgba(218, 180, 84, 0.3);
    transition: all 0.3s ease;
    transform-box: fill-box;
    transform-origin: center;
}
.context-animation .center-bg {
    fill: var(--card-bg);
    stroke: var(--accent-color);
    stroke-width: 2;
    filter: drop-shadow(0 0 8px rgba(218, 180, 84, 0.3));
}
.context-animation .center-core {
    fill: var(--accent-color);
    opacity: 0.7;
}
.context-animation .pulse-ring {
    fill: none;
    stroke: var(--accent-color);
    stroke-width: 1;
    opacity: 0;
    transform-box: fill-box;
    transform-origin: center;
}

@keyframes contextRing {
    0% { transform: scale(1); opacity: 0.6; }
    100% { transform: scale(2.25); opacity: 0; }
}
@keyframes nodeActivate {
    0%, 100% { fill: rgba(218, 180, 84, 0.3); transform: scale(1); filter: none; }
    50% { fill: var(--accent-color); transform: scale(1.6); filter: drop-shadow(0 0 8px rgba(218, 180, 84, 0.5)); }
}
@keyframes connActivate {
    0%, 100% { stroke: rgba(218, 180, 84, 0.2); stroke-width: 1; }
    50% { stroke: var(--accent-color); stroke-width: 2; filter: drop-shadow(0 0 6px rgba(218, 180, 84, 0.4)); }
}

.context-animation .pulse-ring { animation: contextRing 3s ease-out infinite; }
.context-animation .node-0 { animation: nodeActivate 3s ease-in-out infinite 0s; }
.context-animation .node-1 { animation: nodeActivate 3s ease-in-out infinite 0.12s; }
.context-animation .node-2 { animation: nodeActivate 3s ease-in-out infinite 0.24s; }
.context-animation .node-3 { animation: nodeActivate 3s ease-in-out infinite 0.36s; }
.context-animation .node-4 { animation: nodeActivate 3s ease-in-out infinite 0.48s; }
.context-animation .node-5 { animation: nodeActivate 3s ease-in-out infinite 0.6s; }
.context-animation .conn-0 { animation: connActivate 3s ease-in-out infinite 0s; }
.context-animation .conn-1 { animation: connActivate 3s ease-in-out infinite 0.12s; }
.context-animation .conn-2 { animation: connActivate 3s ease-in-out infinite 0.24s; }
.context-animation .conn-3 { animation: connActivate 3s ease-in-out infinite 0.36s; }
.context-animation .conn-4 { animation: connActivate 3s ease-in-out infinite 0.48s; }
.context-animation .conn-5 { animation: connActivate 3s ease-in-out infinite 0.6s; }

/* Search Animation */
.search-animation .doc {
    fill: rgba(218, 180, 84, 0.05);
    stroke: rgba(218, 180, 84, 0.2);
    stroke-width: 1;
}
.search-animation .doc-line {
    fill: rgba(218, 180, 84, 0.25);
}
.search-animation .check {
    fill: var(--accent-color);
    opacity: 0;
    transform-box: fill-box;
    transform-origin: center;
}
.search-animation .check-mark {
    stroke: #fff;
    stroke-width: 2;
    fill: none;
    stroke-linecap: round;
    stroke-linejoin: round;
    opacity: 0;
    transform-box: fill-box;
    transform-origin: center;
}
.search-animation .reject {
    fill: var(--accent-color);
    opacity: 0;
    transform-box: fill-box;
    transform-origin: center;
}
.search-animation .reject-mark {
    stroke: #fff;
    stroke-width: 2;
    fill: none;
    stroke-linecap: round;
    stroke-linejoin: round;
    opacity: 0;
    transform-box: fill-box;
    transform-origin: center;
}
.search-animation .scan-line {
    stroke: var(--accent-color);
    stroke-width: 2;
    filter: drop-shadow(0 0 6px rgba(218, 180, 84, 0.5));
    transform-box: fill-box;
}
@keyframes scanMove {
    0%, 100% { transform: translateY(-5px); }
    45% { transform: translateY(125px); }
    50%, 95% { transform: translateY(125px); }
}
@keyframes docFound {
    0%, 100% { fill: rgba(218, 180, 84, 0.05); stroke: rgba(218, 180, 84, 0.2); }
    35%, 95% { fill: rgba(218, 180, 84, 0.15); stroke: var(--accent-color); stroke-width: 2; filter: drop-shadow(0 0 8px rgba(218, 180, 84, 0.3)); }
}
@keyframes checkAppear {
    0%, 100% { opacity: 0; transform: scale(0); }
    30%, 95% { opacity: 1; transform: scale(1); }
}
@keyframes checkMarkAppear {
    0%, 100% { opacity: 0; }
    30%, 95% { opacity: 1; }
}

.search-animation .scan-line { animation: scanMove 3.5s ease-in-out infinite; }
.search-animation .doc.doc-0 { animation: docFound 3.5s ease-in-out infinite 0.3s; }
.search-animation .doc.doc-1 { animation: docFound 3.5s ease-in-out infinite 0.6s; }
.search-animation .doc.doc-2 { animation: docFound 3.5s ease-in-out infinite 0.9s; }
.search-animation .check.check-0 { animation: checkAppear 3.5s ease-out infinite 0.3s; }
.search-animation .check-mark.check-0 { animation: checkMarkAppear 3.5s ease-out infinite 0.3s; }
.search-animation .reject.reject-1 { animation: checkAppear 3.5s ease-out infinite 0.6s; }
.search-animation .reject.reject-2 { animation: checkAppear 3.5s ease-out infinite 0.9s; }
.search-animation .reject-mark.reject-1 { animation: checkMarkAppear 3.5s ease-out infinite 0.6s; }
.search-animation .reject-mark.reject-2 { animation: checkMarkAppear 3.5s ease-out infinite 0.9s; }

/* Teams Animation */
.teams-animation {
    flex-direction: column;
    padding: 16px;
    gap: 10px;
}
.teams-header {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    width: 100%;
    height: 44px;
    overflow: hidden;
}
.teams-logo {
    height: 88px;
    width: auto;
    object-fit: contain;
}
.teams-chat {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    gap: 8px;
    width: 100%;
    min-height: 120px;
}
.chat-bubble {
    padding: 8px 12px;
    border-radius: 12px;
    font-size: 11px;
    max-width: 80%;
    opacity: 0;
}
.chat-bubble.user-msg {
    align-self: flex-end;
    background: #5059c9;
    color: #fff;
    border-radius: 12px 12px 4px 12px;
    animation: chatSlideUp 4s ease-out infinite;
}
.chat-bubble.ai-msg {
    align-self: flex-start;
    background: rgba(218, 180, 84, 0.1);
    border: 1px solid var(--border-color);
    color: var(--text-color);
    border-radius: 12px 12px 12px 4px;
    animation: chatSlideUp 4s ease-out infinite 2s;
}
.typing-indicator {
    align-self: flex-start;
    background: rgba(218, 180, 84, 0.1);
    padding: 10px 14px;
    border-radius: 12px 12px 12px 4px;
    display: flex;
    gap: 4px;
    opacity: 0;
    animation: typingShow 4s ease-in-out infinite;
}
.typing-indicator span {
    width: 5px;
    height: 5px;
    border-radius: 50%;
    background: var(--accent-color);
    animation: typingDot 1s ease-in-out infinite;
}
.typing-indicator span:nth-child(2) { animation-delay: 0.15s; }
.typing-indicator span:nth-child(3) { animation-delay: 0.3s; }
.teams-input {
    height: 28px;
    background: rgba(218, 180, 84, 0.05);
    border-radius: 14px;
    border: 1px solid var(--border-color);
    display: flex;
    align-items: center;
    padding: 0 12px;
    color: var(--text-muted);
    font-size: 10px;
    width: 100%;
}

@keyframes chatSlideUp {
    0%, 10% { opacity: 0; transform: translateY(8px); }
    15%, 95% { opacity: 1; transform: translateY(0); }
    100% { opacity: 0; }
}
@keyframes typingShow {
    0%, 30% { opacity: 0; }
    35%, 50% { opacity: 1; }
    55%, 100% { opacity: 0; }
}
@keyframes typingDot {
    0%, 60%, 100% { transform: translateY(0); opacity: 0.5; }
    30% { transform: translateY(-4px); opacity: 1; }
}

/* Security Animation */
.security-animation .ring {
    fill: none;
    stroke: rgba(218, 180, 84, 0.15);
    stroke-width: 1;
    stroke-dasharray: 6 4;
}
.security-animation .shield {
    fill: rgba(218, 180, 84, 0.08);
    stroke: var(--accent-color);
    stroke-width: 2;
}
.security-animation .lock rect {
    fill: var(--accent-color);
    opacity: 0.8;
}
.security-animation .lock path {
    stroke: var(--accent-color);
    stroke-width: 2.5;
    fill: none;
    opacity: 0.8;
}
.security-animation .shield-check {
    stroke: var(--accent-color);
    stroke-width: 3;
    fill: none;
    stroke-linecap: round;
    stroke-linejoin: round;
    opacity: 0;
    stroke-dasharray: 30;
    stroke-dashoffset: 30;
}

@keyframes ringActivate {
    0%, 100% { stroke: rgba(218, 180, 84, 0.15); stroke-dasharray: 6 4; stroke-width: 1; }
    40%, 90% { stroke: var(--accent-color); stroke-dasharray: 0; stroke-width: 2; filter: drop-shadow(0 0 6px rgba(218, 180, 84, 0.4)); }
}
@keyframes shieldGlow {
    0%, 100% { fill: rgba(218, 180, 84, 0.08); filter: none; }
    45%, 90% { fill: rgba(218, 180, 84, 0.15); filter: drop-shadow(0 0 12px rgba(218, 180, 84, 0.4)); }
}
@keyframes lockFade {
    0%, 40% { opacity: 0.8; }
    45%, 90% { opacity: 0; }
    95%, 100% { opacity: 0.8; }
}
@keyframes checkDraw {
    0%, 40% { opacity: 0; stroke-dashoffset: 30; }
    45% { opacity: 1; stroke-dashoffset: 30; }
    55%, 90% { opacity: 1; stroke-dashoffset: 0; }
    95%, 100% { opacity: 0; }
}
.security-animation .ring.ring-0 { animation: ringActivate 3.5s ease-in-out infinite 0.5s; }
.security-animation .ring.ring-1 { animation: ringActivate 3.5s ease-in-out infinite 1s; }
.security-animation .ring.ring-2 { animation: ringActivate 3.5s ease-in-out infinite 1.5s; }
.security-animation .shield { animation: shieldGlow 3.5s ease-in-out infinite; }
.security-animation .lock { animation: lockFade 3.5s ease-in-out infinite; }
.security-animation .shield-check { animation: checkDraw 3.5s ease-out infinite; }

.how-it-works-item h3 {
    margin-bottom: 0.5rem;
}

/* Calculator Section */
.calculator-section {
    background-color: var(--card-bg);
    border-radius: 16px;
    padding: 3rem 2rem;
    border: 1px solid var(--border-color);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
}
.calculator {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2.5rem;
    align-items: center;
}
@media (min-width: 992px) {
    .calculator {
        grid-template-columns: 1fr 1fr;
    }
}
.calculator-inputs {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}
.input-group {
    display: flex;
    flex-direction: column;
}
.input-group label {
    display: flex;
    justify-content: space-between;
    margin-bottom: 0.5rem;
    font-weight: 700;
    font-size: 15px;
}
.input-group input[type="range"] {
    -webkit-appearance: none;
    appearance: none;
    width: 100%;
    height: 6px;
    background: #e2e8f0;
    border-radius: 5px;
    outline: none;
}
.input-group input[type="range"]::-webkit-slider-thumb {
    -webkit-appearance: none;
    appearance: none;
    width: 18px;
    height: 18px;
    background: var(--accent-color);
    cursor: pointer;
    border-radius: 50%;
}
.input-group input[type="text"] {
    background: var(--bg-color);
    border: 1px solid var(--border-color);
    color: var(--text-color);
    padding: 10px;
    border-radius: 6px;
    font-size: 1rem;
}
.calculator-result {
    text-align: center;
    padding: 2rem;
    border: 1px dashed var(--border-color);
    border-radius: 12px;
}
.calculator-result h3 {
    font-size: 1.1rem;
    color: var(--text-muted);
    font-weight: 400;
}
.calculator-result #cost-result {
    font-size: clamp(2rem, 4vw, 3rem);
    color: var(--accent-secondary-color);
    margin: 0.5rem 0;
    font-weight: 600;
}
.calculator-result #hours-result {
    font-size: 1.1rem;
    color: var(--text-color);
}
.calculator-cta {
    text-align: center;
    margin-top: 2rem;
    grid-column: 1 / -1;
}

/* Pilot Plan Section - Pillar Style */
.pilot-plan-section {
    background-color: var(--bg-color);
}

.pillar-container {
    display: flex;
    justify-content: center;
    align-items: stretch;
    gap: 20px;
    flex-wrap: wrap;
}

.pillar-card {
    background-color: var(--card-bg);
    padding: 30px;
    border-radius: 12px;
    border: 1px solid var(--border-color);
    flex: 1;
    min-width: 280px;
    max-width: 320px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.04);
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.pillar-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.07);
}

.pillar-number {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--accent-color), var(--accent-secondary-color));
    color: #FFFFFF;
    font-size: 2rem;
    font-weight: 800;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    flex-shrink: 0;
}

.pillar-arrow {
    font-size: 2rem;
    color: var(--accent-color);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.pillar-card h3 {
    color: var(--text-color);
    margin-bottom: 25px;
    font-size: 1.4rem;
    font-weight: 600;
}

.pillar-card ul {
    list-style: none;
    padding: 0;
    margin: 0;
    text-align: left;
    width: 100%;
}

.pillar-card ul li {
    color: var(--text-muted);
    margin-bottom: 12px;
    font-size: 0.95rem;
    position: relative;
    padding-left: 25px;
    line-height: 1.5;
}

.pillar-card ul li:last-child {
    margin-bottom: 0;
}

.pillar-card ul li .icon-check {
    color: var(--accent-color);
    position: absolute;
    left: 0;
    top: 5px;
    width: 14px;
    height: 14px;
    opacity: 0.8;
}

/* Responsive adjustments */
@media (max-width: 992px) {
    .pillar-container {
        gap: 20px;
    }
    .pillar-arrow {
        display: none;
    }
}

@media (max-width: 768px) {
    .pillar-container {
        flex-direction: column;
        gap: 30px;
    }
    .pillar-card {
        flex-basis: auto;
        width: 100%;
        max-width: 500px;
        margin: 0 auto;
    }
    .pillar-arrow {
        display: none;
    }
}

@media (max-width: 576px) {
    .pillar-card {
        padding: 25px;
    }
    .pillar-number {
        width: 50px;
        height: 50px;
        font-size: 1.6rem;
        margin-bottom: 15px;
    }
    .pillar-card h3 {
        font-size: 1.25rem;
        margin-bottom: 20px;
    }
    .pillar-card ul li {
        font-size: 0.9rem;
        padding-left: 22px;
    }
    .pillar-card ul li .icon-check {
        top: 4px;
        width: 12px;
        height: 12px;
    }
}

/* Expansion Section */
.expansion-section {
    background-color: var(--bg-color);
}

.expansion-section .container {
    max-width: 1100px;
}

/* Expansion Cards Grid */
.expansion-cards-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 1.5rem;
    margin-bottom: 3rem;
}

.expansion-card {
    background-color: var(--card-bg);
    padding: 2rem;
    border-radius: 12px;
    border: 1px solid var(--border-color);
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
}

.expansion-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08);
}

.expansion-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--accent-color), var(--accent-secondary-color));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    font-size: 1.8rem;
    color: #FFFFFF;
}

.expansion-card h3 {
    font-size: 1.2rem;
    margin-bottom: 0.75rem;
    color: var(--text-color);
}

.expansion-card p {
    font-size: 0.95rem;
    color: var(--text-muted);
    margin: 0;
}

@media (max-width: 768px) {
    .expansion-cards-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem;
    }

    .expansion-card {
        padding: 1.5rem;
    }

    .expansion-icon {
        width: 50px;
        height: 50px;
        font-size: 1.5rem;
        margin-bottom: 1rem;
    }
}

@media (max-width: 576px) {
    .expansion-cards-grid {
        grid-template-columns: 1fr;
    }
}

/* Carousel Styles */
.carousel-container {
    position: relative;
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 60px;
}

.expansion-section .carousel-container {
    margin-top: -1rem;
}

.carousel-wrapper {
    position: relative;
    width: 100%;
    min-height: 500px;
    display: flex;
    align-items: center;
}

.expansion-section .carousel-wrapper {
    min-height: 400px;
    padding: 1rem 0;
}

.carousel-slide {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    align-items: center;
    position: absolute;
    width: 100%;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.4s ease-in-out;
}

.carousel-slide.active {
    opacity: 1;
    pointer-events: auto;
    position: relative;
}

@media (min-width: 768px) {
    .carousel-slide {
        grid-template-columns: 1.4fr 1fr;
        gap: 2.5rem;
    }
}

.carousel-image img {
    width: 100%;
    aspect-ratio: 4 / 3;
    object-fit: contain;
    padding: 10px;
    background-color: #FFFFFF;
    border-radius: 12px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.07);
    border: 1px solid var(--border-color);
}

.carousel-text h3 {
    margin-bottom: 0.5rem;
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.carousel-text > p {
    margin-bottom: 1.5rem;
}

.carousel-text .questions-list {
    list-style: none;
    padding: 0;
    margin: 0 0 1.5rem 0;
}

.carousel-text .questions-list li {
    position: relative;
    padding-left: 25px;
    margin-bottom: 1rem;
    color: var(--text-color);
    line-height: 1.5;
}

.carousel-text .questions-list li::before {
    content: '✓';
    position: absolute;
    left: 0;
    top: 0;
    color: var(--accent-color);
    font-weight: 800;
    font-size: 1.2rem;
}

.carousel-text .agent-info {
    margin-top: 1.5rem;
    padding-top: 1rem;
    border-top: 1px solid var(--border-color);
    font-size: 0.9rem;
    font-style: italic;
    color: var(--text-muted);
}

.carousel-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: var(--accent-color);
    color: #FFFFFF;
    border: none;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    font-size: 1.5rem;
    cursor: pointer;
    transition: all 0.2s ease;
    z-index: 10;
    display: flex;
    align-items: center;
    justify-content: center;
}

.carousel-btn:hover {
    background: var(--accent-hover);
    transform: translateY(-50%) scale(1.1);
}

.carousel-prev {
    left: 0;
}

.carousel-next {
    right: 0;
}

.carousel-dots {
    display: flex;
    justify-content: center;
    gap: 0.75rem;
    margin-top: 2rem;
}

.dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: var(--border-color);
    cursor: pointer;
    transition: all 0.3s ease;
}

.dot.active {
    background: var(--accent-color);
    width: 32px;
    border-radius: 6px;
}

@media (max-width: 767px) {
    .carousel-container {
        padding: 0 50px;
    }

    .carousel-wrapper {
        min-height: 650px;
    }

    .carousel-btn {
        width: 40px;
        height: 40px;
        font-size: 1.2rem;
    }

    .carousel-prev {
        left: 5px;
    }

    .carousel-next {
        right: 5px;
    }

    .carousel-text .questions-list li {
        padding-left: 30px;
    }

    .carousel-text .agent-info {
        border-top: none;
        padding-top: 0;
        margin-top: 1rem;
    }
}

@media (min-width: 768px) and (max-width: 992px) {
    .carousel-wrapper {
        min-height: 600px;
    }
}

/* Features Section - 3x2 GRID LAYOUT */
.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1.5rem;
}
@media (min-width: 768px) {
    .features-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}
.feature-card {
    background-color: var(--card-bg);
    padding: 2rem;
    border-radius: 12px;
    border: 1px solid var(--border-color);
    text-align: center;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.feature-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.07);
}
.feature-icon {
    width: 48px;
    height: 48px;
    margin-bottom: 1.5rem;
    color: var(--accent-color);
}
.feature-card h3 {
    font-size: 1.15rem;
    margin-bottom: 0.75rem;
}
.feature-card p {
    font-size: 15px;
}

/* Founder Section */
.founder-section {
    background-color: var(--card-bg);
    border-radius: 16px;
    padding: 3rem 2rem;
    border: 1px solid var(--border-color);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
}

.founder-content {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    align-items: center;
}

@media (min-width: 768px) {
    .founder-content {
        grid-template-columns: 340px 1fr;
        gap: 3rem;
    }
}

.founder-image img {
    width: 100%;
    max-width: 340px;
    height: 380px;
    object-fit: cover;
    object-position: center 30%;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    margin: 0 auto;
    display: block;
}

.founder-text h3 {
    margin-bottom: 0.5rem;
}

.founder-section h2 {
    margin-bottom: 1.8rem;
}

.founder-tagline {
    font-size: 1.05rem;
    color: var(--text-muted);
    margin-bottom: 1.5rem;
}

.founder-story {
    margin-bottom: 1.3rem;
}

.founder-highlights {
    list-style: none;
    padding: 0;
    margin: 0;
}

.founder-highlights li {
    position: relative;
    padding-left: 25px;
    margin-bottom: 0.75rem;
    color: var(--text-muted);
}

.founder-highlights li::before {
    content: '•';
    position: absolute;
    left: 0;
    color: var(--accent-color);
    font-weight: 800;
    font-size: 1.5rem;
    line-height: 1;
}

/* Testimonials Section */
.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.testimonial {
    background-color: var(--card-bg);
    padding: 1.5rem;
    border-radius: 12px;
    border: 1px solid var(--border-color);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
}

.testimonial .stars {
    font-size: 1rem;
    margin-bottom: 0.75rem;
}

.testimonial p {
    color: var(--text-color);
    font-style: italic;
    margin-bottom: 0.75rem;
}

.testimonial-author {
    font-size: 0.9rem;
    color: var(--text-muted);
    font-style: normal;
}

.testimonial-highlight {
    background: linear-gradient(135deg, var(--accent-color), var(--accent-secondary-color));
    padding: 2rem;
    border-radius: 12px;
    text-align: center;
}

.testimonial-highlight p {
    color: #FFFFFF;
    font-size: 1.1rem;
    margin-bottom: 0.75rem;
}

.testimonial-highlight .testimonial-author {
    color: rgba(255, 255, 255, 0.9);
}

/* FAQ Section */
.faq-container {
    max-width: 800px;
    margin: 0 auto;
}
.faq-item {
    border-bottom: 1px solid var(--border-color);
}
.faq-item summary {
    padding: 1.25rem 0;
    font-size: 1.1rem;
    font-weight: 700;
    cursor: pointer;
    list-style: none;
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.faq-item summary::-webkit-details-marker {
    display: none;
}
.faq-item summary::after {
    content: '+';
    font-size: 1.8rem;
    color: var(--accent-color);
    transition: transform 0.2s;
}
.faq-item[open] summary::after {
    transform: rotate(45deg);
}
.faq-item div {
    padding-bottom: 1.25rem;
}
.faq-item div p,
.faq-item div ul,
.faq-item div li {
    color: var(--text-muted);
}
.faq-item ul {
    margin: 1rem 0;
    padding-left: 1.5rem;
}
.faq-item li {
    margin-bottom: 0.5rem;
}

/* --- Contact Section --- */
#contact {
    background-color: var(--card-bg);
    border: 1px solid var(--border-color);
    border-radius: 16px;
    padding: 3rem 2rem;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
}
.contact-container {
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
}
.contact-container p {
    margin: 0 auto 1rem;
    color: var(--text-color);
}

/* Contact Method Buttons */
.contact-buttons {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    margin-bottom: 2rem;
    flex-wrap: wrap;
}
.contact-buttons .btn {
    cursor: pointer;
}

/* Modal (Popup) Styles */
.booking-modal {
    display: none;
    position: fixed;
    z-index: 9999;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(5px);
}
.booking-modal.active {
    display: flex;
    align-items: center;
    justify-content: center;
}
.booking-modal-content {
    position: relative;
    background-color: white;
    width: 95%;
    height: 95vh;
    max-width: 1200px;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
}
.booking-modal-close {
    position: absolute;
    top: 10px;
    right: 20px;
    font-size: 40px;
    font-weight: bold;
    color: #666;
    background: white;
    border: none;
    cursor: pointer;
    z-index: 10000;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
    transition: all 0.2s;
}
.booking-modal-close:hover {
    background-color: #f0f0f0;
    transform: scale(1.1);
}
.booking-modal iframe {
    width: 100%;
    height: 100%;
}

/* Form Modal - Smaller and centered */
#form-modal .booking-modal-content {
    width: 90%;
    height: auto;
    max-width: 700px;
    max-height: 90vh;
    padding: 2rem;
    overflow-y: auto;
}
#form-modal iframe {
    display: block;
    margin: 0 auto;
}

/* Mobile adjustments for contact section */
@media (max-width: 767px) {
    .contact-container {
        padding: 0 1rem;
    }
    .contact-buttons {
        flex-direction: column;
        gap: 1rem;
    }
    .contact-buttons .btn {
        width: 100%;
    }

    /* Make FAQ items more spacious on mobile */
    .faq-container {
        padding: 0 1rem;
    }
    .faq-item {
        margin-bottom: 1rem;
        background-color: var(--card-bg);
        border-radius: 8px;
        padding: 0 1rem;
    }
    .faq-item summary {
        padding: 1.5rem 0;
    }

    /* Form modal adjustments for mobile */
    #form-modal .booking-modal-content {
        width: 95%;
        max-height: 85vh;
        padding: 1rem;
    }
}

/* --- Scroll Animation Styles --- */
.fade-in-section {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}
.fade-in-section.is-visible {
    opacity: 1;
    transform: translateY(0);
}

/* Demo Video - floating box between hero and content */
.demo-video-wrapper {
    position: relative;
    z-index: 5;
    margin-top: -6rem;
    padding: 0 20px 3rem;
}

.demo-video {
    max-width: 1400px;
    width: 100%;
    margin: 0 auto;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
    background: var(--card-bg);
}

.demo-video video {
    width: 100%;
    height: auto;
}

.demo-video-desktop {
    display: block;
}

.demo-video-mobile {
    display: none;
}

@media (max-width: 767px) {
    .demo-video-wrapper {
        margin-top: -3rem;
        padding: 0 15px 2rem;
    }
    .demo-video {
        max-width: 100%;
        border-radius: 8px;
    }
    .demo-video-desktop {
        display: none;
    }
    .demo-video-mobile {
        display: block;
    }
}
