:root {
    /* Apple-inspired Light Palette */
    --primary: #137A63;
    --primary-hover: #0F6350;
    --secondary: #2c2c2e;
    --bg-main: #ffffff;
    --bg-alt: #f5f5f7;
    --bg-card: #ffffff;
    --text-main: #1d1d1f;
    --text-muted: #86868b;
    --border-color: #d2d2d7;
    --success: #34c759;
    
    /* Shadows & Glass */
    --nav-bg: rgba(255, 255, 255, 0.8);
    --glass-shadow: 0 4px 24px rgba(0, 0, 0, 0.06);
    --card-shadow: 0 10px 30px rgba(0, 0, 0, 0.04);
    
    /* Typography */
    --font-sans: 'Inter', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
    --font-heading: 'Inter', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

body {
    font-family: var(--font-sans);
    background-color: var(--bg-main);
    color: var(--text-main);
    line-height: 1.5;
    overflow-x: hidden;
}

h1, h2, h3, h4 {
    font-family: var(--font-heading);
    letter-spacing: -0.015em;
    font-weight: 700;
}

a {
    color: var(--primary);
    text-decoration: none;
}

/* Layout Utilities */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
    position: relative;
    z-index: 10;
}

.center {
    text-align: center;
}

.mx-auto {
    margin-left: auto;
    margin-right: auto;
}

.grid {
    display: grid;
    gap: 2rem;
}

/* Clean Cards */
.glass {
    background: var(--bg-card);
    border-radius: 20px;
    box-shadow: var(--card-shadow);
    border: 1px solid rgba(0, 0, 0, 0.02);
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 0.8rem 1.6rem;
    border-radius: 980px;
    font-weight: 500;
    font-family: var(--font-sans);
    transition: all 0.2s ease;
    cursor: pointer;
    border: none;
    text-align: center;
    font-size: 1rem;
}

.btn-primary {
    background: var(--primary);
    color: white;
}

.btn-primary:hover {
    background: var(--primary-hover);
    color: white;
}

.btn-secondary {
    background: transparent;
    color: var(--text-main);
    border: 1px solid var(--border-color);
}

.btn-secondary:hover {
    background: var(--bg-alt);
    border-color: var(--text-muted);
    color: var(--text-main);
}

.btn-lg {
    padding: 1rem 2rem;
    font-size: 1.1rem;
}

.btn-wrapper {
    position: relative;
    display: inline-block;
}

/* Navbar */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 100;
    background: var(--nav-bg);
    backdrop-filter: saturate(180%) blur(20px);
    -webkit-backdrop-filter: saturate(180%) blur(20px);
    border-bottom: 1px solid rgba(0,0,0,0.05);
    padding: 1rem 0;
}

.nav-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    display: flex;
    align-items: center;
    gap: 0;
}

.logo-img {
    height: 48px;
    width: auto;
    display: block;
}

.nav-links {
    display: flex;
    gap: 2.5rem;
    align-items: center;
}

.nav-links a:not(.btn) {
    color: var(--text-main);
    font-weight: 400;
    font-size: 0.95rem;
    opacity: 0.8;
    transition: opacity 0.2s ease;
}

.nav-links a:not(.btn):hover {
    opacity: 1;
}

/* Mobile Menu Button */
.mobile-menu-btn {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
    z-index: 101;
}

.mobile-menu-btn span {
    display: block;
    width: 25px;
    height: 2px;
    background-color: var(--text-main);
    margin: 6px 0;
    transition: all 0.3s ease;
    border-radius: 2px;
}

.mobile-menu-btn.open span:nth-child(1) {
    transform: translateY(8px) rotate(45deg);
}
.mobile-menu-btn.open span:nth-child(2) {
    opacity: 0;
}
.mobile-menu-btn.open span:nth-child(3) {
    transform: translateY(-8px) rotate(-45deg);
}


/* Sections General */
.section {
    padding: 8rem 0;
    position: relative;
}

.section-header {
    margin-bottom: 4rem;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.section-header h2 {
    font-size: 3.5rem;
    margin-bottom: 1rem;
    letter-spacing: -0.02em;
}

.section-header p {
    font-size: 1.4rem;
    color: var(--text-muted);
    font-weight: 400;
}

/* Hero Section */
.hero {
    padding: 12rem 0 6rem;
    background: var(--bg-alt);
    text-align: center;
    overflow: hidden;
}

.badge {
    display: inline-block;
    padding: 0.4rem 1rem;
    background: rgba(0, 102, 204, 0.1);
    color: var(--primary);
    border-radius: 999px;
    font-size: 0.85rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    letter-spacing: 0.5px;
}

.hero-title {
    font-size: 4.5rem;
    font-weight: 700;
    letter-spacing: -0.03em;
    margin-bottom: 1.5rem;
    color: var(--text-main);
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.1;
}

.hero-subtitle {
    font-size: 1.5rem;
    color: var(--text-muted);
    margin-bottom: 3rem;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
    font-weight: 400;
}

.hero-actions {
    display: flex;
    gap: 1rem;
    justify-content: center;
    margin-bottom: 5rem;
}

.browser-mockup {
    background: var(--bg-card);
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0,0,0,0.08);
    max-width: 1000px;
    margin: 0 auto;
    border: 1px solid var(--border-color);
}

.browser-header {
    background: var(--bg-alt);
    padding: 12px 16px;
    display: flex;
    gap: 8px;
    border-bottom: 1px solid var(--border-color);
}

.dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
}
.dot.red { background: #ff5f56; }
.dot.yellow { background: #ffbd2e; }
.dot.green { background: #27c93f; }

.demo-recording {
    width: 100%;
    display: block;
}

/* Focus Quote */
.focus-quote {
    text-align: center;
    padding: 8rem 2rem;
    background: var(--bg-main);
}

.focus-quote h2 {
    font-size: 3rem;
    max-width: 900px;
    margin: 0 auto 1.5rem;
    line-height: 1.2;
    font-weight: 600;
}

.focus-quote p {
    font-size: 1.5rem;
    color: var(--text-muted);
    max-width: 700px;
    margin: 0 auto;
    font-weight: 400;
}

/* Comparison */
.comparison {
    background: var(--bg-alt);
}

.comparison-grid {
    grid-template-columns: 1fr 1fr;
}

.card {
    background: var(--bg-card);
    border-radius: 24px;
    padding: 3.5rem;
    border: 1px solid rgba(0,0,0,0.04);
    box-shadow: var(--card-shadow);
}

.card h3 {
    font-size: 2rem;
    margin-bottom: 2.5rem;
    color: var(--text-main);
}

.check-list {
    list-style: none;
}

.check-list li {
    margin-bottom: 1.5rem;
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    font-size: 1.15rem;
    color: var(--secondary);
    line-height: 1.5;
}

.check-list li::before {
    content: '';
    display: block;
    width: 24px;
    height: 24px;
    flex-shrink: 0;
    background-size: contain;
    background-repeat: no-repeat;
    margin-top: 2px;
}

/* Light theme icons */
.check-list.error li::before {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%2386868b' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Ccircle cx='12' cy='12' r='10'%3E%3C/circle%3E%3Cline x1='12' y1='8' x2='12' y2='12'%3E%3C/line%3E%3Cline x1='12' y1='16' x2='12.01' y2='16'%3E%3C/line%3E%3C/svg%3E");
}

.check-list.success li::before {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%2334c759' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M22 11.08V12a10 10 0 1 1-5.93-9.14'%3E%3C/path%3E%3Cpolyline points='22 4 12 14.01 9 11.01'%3E%3C/polyline%3E%3C/svg%3E");
}

/* Human Centric Image Section */
.image-wrapper img {
    box-shadow: var(--card-shadow);
}

/* Features */
.features {
    background: var(--bg-main);
}

.feature-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 3rem 2rem;
}

.feature-card {
    padding: 2.5rem;
    background: transparent;
    border: none;
    box-shadow: none;
}

.feature-icon {
    width: 56px;
    height: 56px;
    background: var(--bg-alt);
    border-radius: 14px;
    margin-bottom: 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
}

.feature-icon::before {
    content: '';
    width: 28px;
    height: 28px;
    display: block;
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
}

/* Black icons for light theme */
.icon-dashboard::before { background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%231d1d1f' stroke-width='2'%3E%3Crect x='3' y='3' width='7' height='9' rx='1'/%3E%3Crect x='14' y='3' width='7' height='5' rx='1'/%3E%3Crect x='14' y='12' width='7' height='9' rx='1'/%3E%3Crect x='3' y='16' width='7' height='5' rx='1'/%3E%3C/svg%3E"); }
.icon-calendar::before { background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%231d1d1f' stroke-width='2'%3E%3Crect x='3' y='4' width='18' height='18' rx='2' ry='2'/%3E%3Cline x1='16' y1='2' x2='16' y2='6'/%3E%3Cline x1='8' y1='2' x2='8' y2='6'/%3E%3Cline x1='3' y1='10' x2='21' y2='10'/%3E%3C/svg%3E"); }
.icon-route::before { background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%231d1d1f' stroke-width='2'%3E%3Ccircle cx='5' cy='19' r='3'/%3E%3Ccircle cx='19' cy='5' r='3'/%3E%3Cpath d='M8 19h8.5a3.5 3.5 0 0 0 3.5-3.5V8'/%3E%3C/svg%3E"); }
.icon-package::before { background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%231d1d1f' stroke-width='2'%3E%3Cpath d='M21 16V8a2 2 0 0 0-1-1.73l-7-4a2 2 0 0 0-2 0l-7 4A2 2 0 0 0 3 8v8a2 2 0 0 0 1 1.73l7 4a2 2 0 0 0 2 0l7-4A2 2 0 0 0 21 16z'/%3E%3Cpolyline points='3.27 6.96 12 12.01 20.73 6.96'/%3E%3Cline x1='12' y1='22.08' x2='12' y2='12'/%3E%3C/svg%3E"); }
.icon-settings::before { background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%231d1d1f' stroke-width='2'%3E%3Ccircle cx='12' cy='12' r='3'/%3E%3Cpath d='M19.4 15a1.65 1.65 0 0 0 .33 1.82l.06.06a2 2 0 0 1 0 2.83 2 2 0 0 1-2.83 0l-.06-.06a1.65 1.65 0 0 0-1.82-.33 1.65 1.65 0 0 0-1 1.51V21a2 2 0 0 1-2 2 2 2 0 0 1-2-2v-.09A1.65 1.65 0 0 0 9 19.4a1.65 1.65 0 0 0-1.82.33l-.06.06a2 2 0 0 1-2.83 0 2 2 0 0 1 0-2.83l.06-.06a1.65 1.65 0 0 0 .33-1.82 1.65 1.65 0 0 0-1.51-1H3a2 2 0 0 1-2-2 2 2 0 0 1 2-2h.09A1.65 1.65 0 0 0 4.6 9a1.65 1.65 0 0 0-.33-1.82l-.06-.06a2 2 0 0 1 0-2.83 2 2 0 0 1 2.83 0l.06.06a1.65 1.65 0 0 0 1.82.33H9a1.65 1.65 0 0 0 1-1.51V3a2 2 0 0 1 2-2 2 2 0 0 1 2 2v.09a1.65 1.65 0 0 0 1 1.51 1.65 1.65 0 0 0 1.82-.33l.06-.06a2 2 0 0 1 2.83 0 2 2 0 0 1 0 2.83l-.06.06a1.65 1.65 0 0 0-.33 1.82V9a1.65 1.65 0 0 0 1.51 1H21a2 2 0 0 1 2 2 2 2 0 0 1-2 2h-.09a1.65 1.65 0 0 0-1.51 1z'/%3E%3C/svg%3E"); }
.icon-sync::before { background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%231d1d1f' stroke-width='2'%3E%3Cpath d='M21 2v6h-6'/%3E%3Cpath d='M3 12a9 9 0 0 1 15-6.7L21 8'/%3E%3Cpath d='M3 22v-6h6'/%3E%3Cpath d='M21 12a9 9 0 0 1-15 6.7L3 16'/%3E%3C/svg%3E"); }

.feature-title {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: var(--text-main);
}

.feature-card p {
    color: var(--text-muted);
    font-size: 1.05rem;
}

/* Pricing */
.pricing {
    background: var(--bg-alt);
}

.pricing-card {
    max-width: 600px;
    padding: 3.5rem;
    position: relative;
    overflow: hidden;
}

.pricing-badge {
    position: absolute;
    top: 2rem;
    right: 2rem;
    background: var(--bg-alt);
    color: var(--primary);
    padding: 0.5rem 1rem;
    border-radius: 999px;
    font-weight: 600;
    font-size: 0.85rem;
}

.pricing-header h3 {
    font-size: 2rem;
    margin-bottom: 2rem;
}

.pricing-tiers {
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
    margin-bottom: 2.5rem;
}

.tier {
    display: flex;
    justify-content: space-between;
    padding: 1.2rem;
    background: var(--bg-main);
    border-radius: 12px;
    border: 1px solid var(--border-color);
}

.tier-range {
    font-weight: 500;
    color: var(--secondary);
}

.tier-price {
    font-weight: 700;
    color: var(--text-main);
}

.pricing-footer {
    padding-top: 2rem;
    border-top: 1px solid var(--border-color);
    font-size: 0.95rem;
    color: var(--text-muted);
}

.vat-info {
    margin-top: 0.5rem;
    font-size: 0.85rem;
    opacity: 0.8;
}

/* Trust Box */
.trust-box {
    margin-top: 4rem;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    text-align: left;
}

.trust-item {
    display: flex;
    gap: 1rem;
    align-items: flex-start;
}

.trust-icon {
    width: 24px;
    height: 24px;
    flex-shrink: 0;
    color: var(--primary);
}

.trust-text h4 {
    font-size: 1.1rem;
    margin-bottom: 0.4rem;
    color: var(--text-main);
}

.trust-text p {
    font-size: 0.95rem;
    color: var(--text-muted);
    line-height: 1.5;
}

.trial-badge {
    position: absolute;
    top: -12px;
    right: -12px;
    background: #ff2d55;
    color: white;
    font-size: 0.75rem;
    font-weight: 700;
    padding: 0.3rem 0.8rem;
    border-radius: 999px;
    text-transform: uppercase;
    transform: rotate(5deg);
    box-shadow: 0 4px 10px rgba(255, 45, 85, 0.3);
    pointer-events: none;
}

/* Footer CTA */
.footer {
    padding: 6rem 0 3rem;
    background: var(--bg-main);
    border-top: 1px solid var(--border-color);
}

.cta-box {
    text-align: center;
    padding: 5rem 2rem;
    margin-bottom: 6rem;
    background: var(--bg-alt);
    border: none;
    box-shadow: none;
}

.cta-box h2 {
    font-size: 3rem;
    margin-bottom: 1.5rem;
}

.cta-box p {
    font-size: 1.3rem;
    color: var(--secondary);
    max-width: 600px;
    margin: 0 auto 2.5rem;
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 2rem;
}

.footer-links {
    display: flex;
    gap: 2rem;
}

.footer-links a {
    color: var(--text-muted);
    font-size: 0.9rem;
    transition: color 0.2s ease;
}

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

.copyright {
    color: var(--text-muted);
    font-size: 0.9rem;
}

/* Responsive */
@media (max-width: 992px) {
    .section-header h2 { font-size: 2.5rem; }
    .hero-title { font-size: 3.5rem; }
    
    .comparison-grid {
        grid-template-columns: 1fr;
    }
    
    .feature-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .hero { padding: 8rem 0 4rem; }
    .hero-title { font-size: 2.5rem; }
    
    .feature-grid {
        grid-template-columns: 1fr;
    }
    
    .card, .pricing-card {
        padding: 2rem 1.5rem;
    }
    
    .pricing-calculator {
        padding: 1.5rem 1rem;
    }

    .slider-container {
        gap: 0.8rem;
    }
    
    .result-price {
        font-size: 2.5rem;
    }
    
    .pricing-table-wrapper {
        padding: 1.5rem 1rem;
    }
    
    .mobile-menu-btn {
        display: block;
    }

    
    .nav-links {
        position: fixed;
        top: 0;
        right: -100%;
        width: 100%;
        height: 100vh;
        background: var(--bg-main);
        flex-direction: column;
        justify-content: center;
        align-items: center;
        transition: right 0.3s ease;
        z-index: 99;
        padding: 2rem;
        box-shadow: -10px 0 30px rgba(0,0,0,0.1);
    }
    
    .nav-links.active {
        right: 0;
    }

    .nav-links a.btn {
        width: 100%;
        max-width: 300px;
    }
    
    .footer-bottom {
        flex-direction: column;
        gap: 1.5rem;
        text-align: center;
    }
}

/* Pricing Calculator */
.pricing-calculator {
    margin-bottom: 2.5rem;
    padding: 2rem;
    background: var(--bg-main);
    border-radius: 16px;
    border: 1px solid var(--border-color);
}

.calculator-input {
    margin-bottom: 2rem;
}

.calculator-input label {
    display: block;
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: var(--secondary);
}

.slider-container {
    display: flex;
    align-items: center;
    gap: 1.5rem;
}

#clients-slider {
    flex-grow: 1;
    -webkit-appearance: none;
    appearance: none;
    height: 8px;
    background: var(--border-color);
    border-radius: 4px;
    outline: none;
}

#clients-slider::-webkit-slider-thumb {
    -webkit-appearance: none;
    appearance: none;
    width: 24px;
    height: 24px;
    border-radius: 50%;
    background: var(--bg-main);
    border: 3px solid var(--primary);
    cursor: pointer;
    box-shadow: 0 2px 6px rgba(0,0,0,0.15);
    transition: transform 0.1s;
}

#clients-slider::-webkit-slider-thumb:hover {
    transform: scale(1.1);
}

#clients-slider::-moz-range-thumb {
    width: 20px;
    height: 20px;
    border-radius: 50%;
    background: var(--bg-main);
    border: 3px solid var(--primary);
    cursor: pointer;
    box-shadow: 0 2px 6px rgba(0,0,0,0.15);
}

#clients-input {
    width: 90px;
    padding: 0.6rem;
    font-size: 1.1rem;
    font-weight: 600;
    text-align: center;
    border: 1px solid var(--border-color);
    border-radius: 8px;
    outline: none;
    font-family: var(--font-sans);
    color: var(--text-main);
}

#clients-input:focus {
    border-color: var(--primary);
}

.calculator-result {
    text-align: center;
    padding-top: 1.5rem;
    border-top: 1px solid var(--border-color);
}

.result-label {
    display: block;
    font-size: 1rem;
    color: var(--text-muted);
    margin-bottom: 0.5rem;
}

.result-price {
    font-size: 3.5rem;
    font-weight: 700;
    color: var(--text-main);
    line-height: 1;
}

#calculated-price {
    font-family: var(--font-heading);
    letter-spacing: -0.02em;
}

/* Pricing Split Layout */
.pricing-split {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2.5rem;
    align-items: start;
    margin-bottom: 2.5rem;
}

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

.result-api-volume {
    margin-top: 1rem;
    color: var(--text-muted);
    font-size: 0.95rem;
}

.result-api-volume strong {
    color: var(--text-main);
    font-weight: 700;
}

/* Tiny Table */
.pricing-table-wrapper {
    background: var(--bg-main);
    border-radius: 16px;
    padding: 2rem;
    border: 1px solid var(--border-color);
    box-shadow: var(--card-shadow);
}

.pricing-table-wrapper h4 {
    margin-bottom: 1.5rem;
    font-size: 1.1rem;
    color: var(--secondary);
}

.pricing-tiny-table {
    width: 100%;
    border-collapse: collapse;
    font-size: 0.9rem;
}

.pricing-tiny-table th,
.pricing-tiny-table td {
    padding: 0.6rem 0;
    text-align: left;
    border-bottom: 1px solid var(--border-color);
}

.pricing-tiny-table th {
    font-weight: 600;
    color: var(--text-muted);
    font-size: 0.85rem;
}

.pricing-tiny-table td {
    color: var(--text-main);
}

.pricing-tiny-table tr:last-child td {
    border-bottom: none;
}

.fair-flex-note {
    background: rgba(19, 122, 99, 0.06);
    color: var(--text-main);
    padding: 1rem 1.2rem;
    border-radius: 8px;
    margin-bottom: 1.5rem;
    font-size: 0.95rem;
    text-align: left;
    border-left: 4px solid var(--primary);
    line-height: 1.5;
}

.fair-flex-note strong {
    color: var(--primary);
}

/* Quote Grid */
.quote-grid {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 2.5rem;
    max-width: 1000px;
    margin: 0 auto;
}

@media (max-width: 768px) {
    .quote-grid {
        flex-direction: column;
        gap: 1.5rem;
    }
    .quote-arrow svg {
        transform: rotate(90deg);
    }
}

.quote-card {
    background: var(--bg-card);
    padding: 2.5rem;
    border-radius: 20px;
    flex: 1;
    text-align: left;
    box-shadow: var(--card-shadow);
    border: 1px solid var(--border-color);
}

.quote-card.new-way {
    border-color: rgba(52, 199, 89, 0.4);
    background: rgba(52, 199, 89, 0.03);
}

.quote-label {
    font-size: 0.9rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--text-muted);
    margin-bottom: 1rem;
}

.quote-label.highlight {
    color: var(--success);
}

.focus-quote .quote-text {
    font-size: 1.35rem;
    font-style: italic;
    color: var(--text-main);
    line-height: 1.5;
    font-weight: 500;
    margin: 0;
}

.quote-arrow {
    color: var(--border-color);
    flex-shrink: 0;
}

/* Contact Form */
.contact-form .form-group {
    margin-bottom: 1.5rem;
}

.contact-form label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 600;
    color: var(--secondary);
    font-size: 0.95rem;
}

.form-control {
    width: 100%;
    padding: 0.8rem 1rem;
    border: 1px solid var(--border-color);
    border-radius: 8px;
    font-family: var(--font-sans);
    font-size: 1rem;
    color: var(--text-main);
    background: var(--bg-main);
    transition: all 0.2s ease;
}

.form-control:focus {
    outline: none;
    border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(19, 122, 99, 0.1);
}

/* Checkbox Styles */
.checkbox-group {
    margin-bottom: 2rem;
}

.contact-form .checkbox-label {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    font-size: 0.9rem;
    color: var(--text-muted);
    line-height: 1.5;
    cursor: pointer;
    font-weight: 400;
}

.contact-form .checkbox-label input[type="checkbox"] {
    margin-top: 3px;
    width: 20px;
    height: 20px;
    accent-color: var(--primary);
    cursor: pointer;
    flex-shrink: 0;
}

/* Carousel */
.carousel-container {
    position: relative;
    width: 100%;
    overflow: hidden;
    border-radius: 16px;
    background: var(--bg-main);
}

.carousel-track {
    display: flex;
    transition: transform 0.5s ease-in-out;
    width: 100%;
    height: 100%;
}

.carousel-slide {
    min-width: 100%;
    height: auto;
    object-fit: contain;
    display: block;
    border-radius: 16px;
    background: white; /* Fallback for transparency */
}

.carousel-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255, 255, 255, 0.85);
    color: var(--text-main);
    border: none;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    font-size: 1.4rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.2s ease;
    z-index: 10;
    box-shadow: 0 4px 12px rgba(0,0,0,0.15);
}

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

.prev-btn { left: 1rem; }
.next-btn { right: 1rem; }

.carousel-progress {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: rgba(0,0,0,0.1);
    z-index: 10;
}

.carousel-progress-bar {
    height: 100%;
    width: 0%;
    background: var(--primary);
    transition: width 0.5s ease-in-out;
}
