:root {
    --sage: #8B9B7A;
    --sage-light: #A8B89A;
    --sage-dark: #6B7A5C;
    --forest: #2D3B2D;
    --cream: #F8F6F1;
    --cream-dark: #EBE8E0;
    --terracotta: #C4785A;
    --terracotta-light: #D4927A;
    --charcoal: #2C2C2C;
    --white: #FFFFFF;
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'DM Sans', sans-serif;
    background: var(--cream);
    color: var(--charcoal);
    line-height: 1.6;
    overflow-x: hidden;
}

/* Decorative Elements */
.leaf-pattern {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 0;
    opacity: 0.02;
    background-image: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M30 5c-8 12-5 25 0 30s18 8 30 0c-12-8-25-5-30 0s-8-18 0-30z' fill='%232D3B2D'/%3E%3C/svg%3E");
}

/* Navigation */
nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    padding: 1.5rem 4rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    z-index: 1000;
    background: rgba(248, 246, 241, 0.9);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(139, 155, 122, 0.1);
    transition: all 0.3s ease;
}

.logo {
    display: flex;
    align-items: center;
    text-decoration: none;
}

.logo-image {
    height: 40px;
    width: auto;
}

.nav-links {
    display: flex;
    gap: 2.5rem;
    list-style: none;
}

.nav-links a {
    text-decoration: none;
    color: var(--charcoal);
    font-weight: 500;
    font-size: 0.95rem;
    transition: color 0.3s ease;
    position: relative;
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--terracotta);
    transition: width 0.3s ease;
}

.nav-links a:hover {
    color: var(--terracotta);
}

.nav-links a:hover::after {
    width: 100%;
}

.nav-actions {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.nav-cta {
    background: var(--forest);
    color: var(--white);
    padding: 0.75rem 1.5rem;
    border-radius: 100px;
    text-decoration: none;
    font-weight: 500;
    font-size: 0.9rem;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(45, 59, 45, 0.2);
}

.nav-cta:hover {
    background: var(--sage-dark);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(45, 59, 45, 0.3);
}

/* Language Switcher */
.language-switcher {
    position: relative;
}

.lang-button {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1rem;
    background: transparent;
    border: 1px solid var(--sage);
    border-radius: 50px;
    cursor: pointer;
    font-family: 'DM Sans', sans-serif;
    font-size: 0.9rem;
    color: var(--charcoal);
    transition: all 0.3s ease;
}

.lang-button:hover {
    background: var(--cream-dark);
    border-color: var(--sage-dark);
}

.lang-button i:first-child {
    font-size: 1rem;
}

.lang-button i:last-child {
    font-size: 0.75rem;
    transition: transform 0.3s ease;
}

.language-switcher.active .lang-button i:last-child {
    transform: rotate(180deg);
}

.lang-dropdown {
    position: absolute;
    top: calc(100% + 0.5rem);
    right: 0;
    background: var(--white);
    border: 1px solid var(--sage);
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    min-width: 150px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.3s ease;
    z-index: 1000;
}

.language-switcher.active .lang-dropdown {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.lang-option {
    display: block;
    padding: 0.75rem 1rem;
    color: var(--charcoal);
    text-decoration: none;
    transition: background 0.2s ease;
}

.lang-option:hover {
    background: var(--cream-dark);
}

.lang-option:first-child {
    border-radius: 12px 12px 0 0;
}

.lang-option:last-child {
    border-radius: 0 0 12px 12px;
}

/* Hero Section */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding: 8rem 4rem 4rem;
    position: relative;
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    top: -20%;
    right: -10%;
    width: 70%;
    height: 140%;
    background: radial-gradient(ellipse at center, rgba(139, 155, 122, 0.15) 0%, transparent 70%);
    pointer-events: none;
}

.hero-content {
    max-width: 650px;
    z-index: 1;
    animation: fadeInUp 1s ease;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(40px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: var(--white);
    padding: 0.5rem 1rem;
    border-radius: 100px;
    font-size: 0.85rem;
    font-weight: 500;
    color: var(--sage-dark);
    margin-bottom: 2rem;
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.05);
    animation: fadeInUp 1s ease 0.2s backwards;
}

.badge-dot {
    width: 8px;
    height: 8px;
    background: var(--terracotta);
    border-radius: 50%;
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.5; }
}

.hero h1 {
    font-family: 'Fraunces', serif;
    font-size: clamp(3rem, 6vw, 4.5rem);
    font-weight: 400;
    line-height: 1.1;
    color: var(--forest);
    margin-bottom: 1.5rem;
    animation: fadeInUp 1s ease 0.3s backwards;
}

.hero h1 em {
    font-style: italic;
    color: var(--sage-dark);
}

.hero p {
    font-size: 1.2rem;
    color: var(--charcoal);
    opacity: 0.8;
    margin-bottom: 2.5rem;
    max-width: 500px;
    animation: fadeInUp 1s ease 0.4s backwards;
}

.hero-actions {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    animation: fadeInUp 1s ease 0.5s backwards;
}

.btn-primary {
    background: var(--terracotta);
    color: var(--white);
    padding: 1rem 2rem;
    border-radius: 100px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1rem;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    box-shadow: 0 4px 20px rgba(196, 120, 90, 0.3);
}

.btn-primary:hover {
    background: var(--terracotta-light);
    transform: translateY(-2px);
    box-shadow: 0 6px 25px rgba(196, 120, 90, 0.4);
}

.btn-secondary {
    background: transparent;
    color: var(--forest);
    padding: 1rem 2rem;
    border-radius: 100px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1rem;
    border: 2px solid var(--sage);
    transition: all 0.3s ease;
}

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

.hero-visual {
    position: absolute;
    right: 4rem;
    top: 50%;
    transform: translateY(-50%);
    width: 45%;
    max-width: 600px;
    animation: floatIn 1s ease 0.6s backwards;
}

@keyframes floatIn {
    from {
        opacity: 0;
        transform: translateY(-50%) translateX(60px);
    }
    to {
        opacity: 1;
        transform: translateY(-50%) translateX(0);
    }
}

.hero-card {
    background: var(--white);
    border-radius: 24px;
    padding: 2rem;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.08);
    position: relative;
}

.price-chart {
    height: 200px;
    display: flex;
    align-items: flex-end;
    gap: 8px;
    margin-bottom: 1.5rem;
    padding: 1rem 0;
}

.chart-bar {
    flex: 1;
    background: linear-gradient(180deg, var(--sage-light) 0%, var(--sage) 100%);
    border-radius: 8px 8px 0 0;
    transition: all 0.3s ease;
    position: relative;
}

.chart-bar:hover {
    background: linear-gradient(180deg, var(--terracotta-light) 0%, var(--terracotta) 100%);
}

.chart-bar:nth-child(1) { height: 60%; }
.chart-bar:nth-child(2) { height: 75%; }
.chart-bar:nth-child(3) { height: 55%; }
.chart-bar:nth-child(4) { height: 85%; }
.chart-bar:nth-child(5) { height: 70%; }
.chart-bar:nth-child(6) { height: 45%; }
.chart-bar:nth-child(7) { height: 90%; animation: barPulse 2s infinite; }

@keyframes barPulse {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.8; }
}

.card-product {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem;
    background: var(--cream);
    border-radius: 16px;
}

.product-img {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--sage-light) 0%, var(--sage) 100%);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.product-img svg {
    width: 30px;
    height: 30px;
    fill: var(--white);
}

.product-info h4 {
    font-family: 'Fraunces', serif;
    font-weight: 500;
    color: var(--forest);
    margin-bottom: 0.25rem;
}

.product-price {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.price-current {
    font-weight: 600;
    color: var(--terracotta);
    font-size: 1.1rem;
}

.price-old {
    text-decoration: line-through;
    color: var(--charcoal);
    opacity: 0.4;
    font-size: 0.9rem;
}

.price-drop {
    background: rgba(139, 155, 122, 0.2);
    color: var(--sage-dark);
    padding: 0.2rem 0.5rem;
    border-radius: 6px;
    font-size: 0.75rem;
    font-weight: 600;
}

.floating-alert {
    position: absolute;
    top: -20px;
    right: 20px;
    background: var(--forest);
    color: var(--white);
    padding: 0.75rem 1.25rem;
    border-radius: 12px;
    font-size: 0.85rem;
    font-weight: 500;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    box-shadow: 0 10px 30px rgba(45, 59, 45, 0.3);
    animation: bounce 2s ease-in-out infinite;
}

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

.floating-alert svg {
    width: 16px;
    height: 16px;
    fill: var(--terracotta-light);
}

/* Features Section */
.features {
    padding: 8rem 4rem;
    position: relative;
}

.section-header {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 5rem;
}

.section-label {
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--terracotta);
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 1rem;
}

.section-header h2 {
    font-family: 'Fraunces', serif;
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 400;
    color: var(--forest);
    margin-bottom: 1rem;
}

.section-header p {
    color: var(--charcoal);
    opacity: 0.7;
    font-size: 1.1rem;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.feature-card {
    background: var(--white);
    padding: 2.5rem;
    border-radius: 24px;
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
    text-decoration: none;
    color: inherit;
    display: block;
}

.feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--sage) 0%, var(--terracotta) 100%);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.4s ease;
}

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

.feature-card:hover::before {
    transform: scaleX(1);
}

.feature-icon {
    width: 64px;
    height: 64px;
    background: linear-gradient(135deg, var(--cream) 0%, var(--cream-dark) 100%);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
}

.feature-icon svg {
    width: 32px;
    height: 32px;
    fill: var(--sage-dark);
}

.feature-icon i {
    font-size: 2rem;
    color: var(--sage-dark);
}

.feature-page .feature-icon {
    font-size: 2rem;
}

.feature-card h3 {
    font-family: 'Fraunces', serif;
    font-size: 1.4rem;
    font-weight: 500;
    color: var(--forest);
    margin-bottom: 0.75rem;
}

.feature-card p {
    color: var(--charcoal);
    opacity: 0.7;
    font-size: 0.95rem;
    line-height: 1.7;
}

.feature-status {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    margin-top: 1rem;
    font-size: 0.8rem;
    font-weight: 600;
    padding: 0.4rem 0.8rem;
    border-radius: 100px;
}

.status-live {
    background: rgba(139, 155, 122, 0.15);
    color: var(--sage-dark);
}

.status-coming {
    background: rgba(196, 120, 90, 0.15);
    color: var(--terracotta);
}

/* How It Works */
.how-it-works {
    padding: 8rem 4rem;
    background: var(--forest);
    position: relative;
    overflow: hidden;
}

.how-it-works::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url("data:image/svg+xml,%3Csvg width='100' height='100' viewBox='0 0 100 100' xmlns='http://www.w3.org/2000/svg'%3E%3Ccircle cx='50' cy='50' r='1' fill='%23ffffff' opacity='0.05'/%3E%3C/svg%3E");
    pointer-events: none;
}

.how-it-works .section-header {
    color: var(--white);
}

.how-it-works .section-header h2 {
    color: var(--white);
}

.how-it-works .section-header p {
    color: var(--sage-light);
    opacity: 1;
}

.platforms {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 3rem;
    max-width: 1100px;
    margin: 0 auto;
}

.platform-card {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 24px;
    padding: 2.5rem;
    backdrop-filter: blur(10px);
}

.platform-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 2rem;
}

.platform-icon {
    width: 56px;
    height: 56px;
    background: var(--sage);
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.platform-icon svg {
    width: 28px;
    height: 28px;
    fill: var(--white);
}

.platform-header h3 {
    font-family: 'Fraunces', serif;
    font-size: 1.5rem;
    font-weight: 500;
    color: var(--white);
}

.platform-features {
    list-style: none;
}

.platform-features li {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    color: var(--sage-light);
    padding: 0.75rem 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.platform-features li:last-child {
    border-bottom: none;
}

.platform-features svg {
    width: 20px;
    height: 20px;
    fill: var(--terracotta-light);
    flex-shrink: 0;
    margin-top: 2px;
}

/* AI Section */
.ai-section {
    padding: 8rem 4rem;
    position: relative;
}

.ai-container {
    max-width: 1100px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.ai-visual {
    position: relative;
}

.ai-card {
    background: var(--white);
    border-radius: 24px;
    padding: 2rem;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.08);
}

.ai-chat {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.chat-bubble {
    padding: 1rem 1.25rem;
    border-radius: 16px;
    max-width: 85%;
    font-size: 0.95rem;
    line-height: 1.5;
}

.chat-user {
    background: var(--cream);
    color: var(--charcoal);
    align-self: flex-end;
    border-bottom-right-radius: 4px;
}

.chat-ai {
    background: linear-gradient(135deg, var(--sage) 0%, var(--sage-dark) 100%);
    color: var(--white);
    align-self: flex-start;
    border-bottom-left-radius: 4px;
}

.ai-typing {
    display: flex;
    gap: 4px;
    padding: 1rem;
    align-self: flex-start;
}

.ai-typing span {
    width: 8px;
    height: 8px;
    background: var(--sage);
    border-radius: 50%;
    animation: typing 1.4s infinite;
}

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

@keyframes typing {
    0%, 100% { opacity: 0.3; transform: translateY(0); }
    50% { opacity: 1; transform: translateY(-4px); }
}

.ai-content h2 {
    font-family: 'Fraunces', serif;
    font-size: clamp(2rem, 4vw, 2.8rem);
    font-weight: 400;
    color: var(--forest);
    margin-bottom: 1.5rem;
}

.ai-content h2 em {
    font-style: italic;
    color: var(--terracotta);
}

.ai-content p {
    color: var(--charcoal);
    opacity: 0.8;
    font-size: 1.1rem;
    margin-bottom: 2rem;
    line-height: 1.7;
}

.ai-features {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.ai-feature {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    color: var(--charcoal);
}

.ai-feature svg {
    width: 24px;
    height: 24px;
    fill: var(--sage);
}

/* CTA Section */
.cta-section {
    padding: 8rem 4rem;
    background: linear-gradient(135deg, var(--cream) 0%, var(--cream-dark) 100%);
}

.cta-container {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.cta-container h2 {
    font-family: 'Fraunces', serif;
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 400;
    color: var(--forest);
    margin-bottom: 1rem;
}

.cta-container p {
    color: var(--charcoal);
    opacity: 0.7;
    font-size: 1.1rem;
    margin-bottom: 2.5rem;
}

.cta-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

.btn-chrome {
    background: var(--forest);
    color: var(--white);
    padding: 1rem 2rem;
    border-radius: 100px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1rem;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    box-shadow: 0 4px 20px rgba(45, 59, 45, 0.2);
}

.btn-chrome:hover {
    background: var(--sage-dark);
    transform: translateY(-2px);
}

.btn-chrome svg {
    width: 20px;
    height: 20px;
    fill: currentColor;
}

/* Footer */
footer {
    background: var(--forest);
    padding: 4rem;
    color: var(--sage-light);
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 2rem;
}

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

.footer-logo-image {
    height: 40px;
    width: auto;
    filter: brightness(0) invert(1);
}

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

.footer-links a {
    color: var(--sage-light);
    text-decoration: none;
    font-size: 0.9rem;
    transition: color 0.3s ease;
}

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

.footer-copy {
    font-size: 0.85rem;
    opacity: 0.6;
}

/* Feature Pages */
.feature-page {
    max-width: 1240px;
    margin: 0 auto;
    padding: 0rem 4rem 4rem;
    position: relative;
    z-index: 1;
}

.feature-hero {
    text-align: center;
    margin-bottom: 4rem;
}

.feature-hero h1 {
    font-family: 'Fraunces', serif;
    font-size: 3.5rem;
    color: var(--forest);
    margin-bottom: 1rem;
}

.feature-subtitle {
    font-size: 1.25rem;
    color: var(--charcoal);
    opacity: 0.8;
    max-width: 700px;
    margin: 0 auto 2rem;
}

.hero-cta-button {
    display: inline-block;
    background: var(--terracotta);
    color: var(--white);
    padding: 1rem 2.5rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.05rem;
    transition: all 0.3s ease;
    box-shadow: 0 4px 20px rgba(196, 120, 90, 0.3);
}

.hero-cta-button:hover {
    background: var(--terracotta-light);
    transform: translateY(-2px);
    box-shadow: 0 6px 25px rgba(196, 120, 90, 0.4);
}

.feature-page h2 {
    font-family: 'Fraunces', serif;
    font-size: 2rem;
    color: var(--forest);
    margin-top: 3rem;
    margin-bottom: 1.5rem;
}

.feature-page h3 {
    font-family: 'Fraunces', serif;
    font-size: 1.5rem;
    color: var(--sage-dark);
    margin-top: 2.5rem;
    margin-bottom: 1rem;
}

.feature-page h4 {
    font-family: 'DM Sans', sans-serif;
    font-size: 1.1rem;
    color: var(--charcoal);
    margin-top: 2rem;
    margin-bottom: 0.75rem;
    font-weight: 600;
}

.feature-page p {
    margin-bottom: 1rem;
    line-height: 1.8;
    color: var(--charcoal);
}

.feature-page ul, .feature-page ol {
    margin-bottom: 1.5rem;
    margin-left: 2rem;
    line-height: 1.8;
}

.feature-page li {
    margin-bottom: 0.75rem;
}

.feature-page strong {
    color: var(--forest);
    font-weight: 600;
}

.screenshot-placeholder {
    background: var(--cream-dark);
    border: 2px dashed var(--sage);
    border-radius: 12px;
    padding: 3rem 2rem;
    margin: 2rem 0;
    text-align: center;
    color: var(--charcoal);
    opacity: 0.7;
}

.screenshot-placeholder p {
    margin: 0.5rem 0;
    font-size: 0.9rem;
}

.cta-box {
    background: linear-gradient(135deg, var(--sage) 0%, var(--sage-dark) 100%);
    color: var(--white);
    padding: 3rem;
    border-radius: 16px;
    text-align: center;
    margin: 4rem 0 2rem;
}

.cta-box h3 {
    color: var(--white) !important;
    font-family: 'Fraunces', serif !important;
    font-size: 2rem !important;
    margin-bottom: 1rem !important;
    margin-top: 0 !important;
}

.cta-box p {
    color: var(--white);
    opacity: 0.9;
    margin-bottom: 2rem;
    font-size: 1.1rem;
}

.cta-button {
    display: inline-block;
    background: var(--white);
    color: var(--forest);
    padding: 1rem 2.5rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.05rem;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.cta-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}

/* Technical Details Grid */
.technical-grid {
    display: flex;
    gap: 2rem;
    margin: 2rem 0;
    flex-wrap: nowrap;
}

.technical-card {
    flex: 1;
    background: var(--white);
    padding: 2rem;
    border-radius: 16px;
    border: 1px solid var(--sage);
    min-width: 0;
}

.technical-card h3 {
    font-family: 'Fraunces', serif;
    font-size: 1.5rem;
    color: var(--forest);
    margin-bottom: 1rem;
}

.technical-card p {
    margin-bottom: 1rem;
    color: var(--charcoal);
}

.technical-card ol,
.technical-card ul {
    margin: 0;
    padding-left: 1.5rem;
}

.technical-card li {
    margin-bottom: 0.75rem;
    line-height: 1.7;
    color: var(--charcoal);
}

.technical-card strong {
    color: var(--forest);
    font-weight: 600;
}

/* Coming Soon Badge */
.coming-soon-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: linear-gradient(135deg, var(--terracotta-light) 0%, var(--terracotta) 100%);
    color: var(--white);
    padding: 0.75rem 1.5rem;
    border-radius: 50px;
    font-weight: 600;
    font-size: 0.95rem;
    margin: 1rem 0;
}

.coming-soon-badge i {
    font-size: 1.2rem;
}

/* FAQ Accordion */
.faq-accordion {
    margin: 2rem 0;
}

.faq-item {
    background: var(--white);
    border: 1px solid var(--sage);
    border-radius: 12px;
    margin-bottom: 1rem;
    overflow: hidden;
    transition: box-shadow 0.3s ease;
}

.faq-item:hover {
    box-shadow: 0 4px 12px rgba(139, 155, 122, 0.15);
}

.faq-question {
    width: 100%;
    padding: 1.5rem;
    background: none;
    border: none;
    text-align: left;
    font-family: 'DM Sans', sans-serif;
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--forest);
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: color 0.3s ease;
}

.faq-question:hover {
    color: var(--sage-dark);
}

.faq-icon {
    font-size: 1.5rem;
    color: var(--sage);
    transition: transform 0.3s ease;
    flex-shrink: 0;
    margin-left: 1rem;
}

.faq-item.active .faq-icon {
    transform: rotate(45deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease, padding 0.3s ease;
    padding: 0 1.5rem;
}

.faq-item.active .faq-answer {
    max-height: 500px;
    padding: 0 1.5rem 1.5rem 1.5rem;
}

.faq-answer p {
    color: var(--charcoal);
    line-height: 1.8;
    margin: 0;
}

/* Legal Pages */
.single-page {
    max-width: 1240px;
    margin: 0 auto;
    padding: 8rem 4rem 4rem;
    position: relative;
    z-index: 1;
}

.single-page h1 {
    font-family: 'Fraunces', serif;
    font-size: 3rem;
    color: var(--forest);
    margin-bottom: 1rem;
    text-align: center;
}

.single-page h2 {
    font-family: 'Fraunces', serif;
    font-size: 1.8rem;
    color: var(--forest);
    margin-top: 2.5rem;
    margin-bottom: 1rem;
}

.single-page h3 {
    font-family: 'Fraunces', serif;
    font-size: 1.4rem;
    color: var(--sage-dark);
    margin-top: 2rem;
    margin-bottom: 0.75rem;
}

.single-page p {
    margin-bottom: 1rem;
    line-height: 1.8;
    color: var(--charcoal);
}

.single-page ul, .single-page ol {
    margin-bottom: 1rem;
    margin-left: 2rem;
    line-height: 1.8;
}

.single-page li {
    margin-bottom: 0.5rem;
}

.single-page strong {
    color: var(--forest);
    font-weight: 600;
}

.single-page .last-updated {
    color: var(--charcoal);
    opacity: 0.6;
    margin-bottom: 2rem;
    font-size: 0.95rem;
}

.article-image {
    display: block;
    margin-left: auto;
    margin-right: auto;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

/* Responsive */
@media (max-width: 1024px) {
    .hero-visual {
        display: none;
    }

    .hero-content {
        max-width: 100%;
    }

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

    .ai-container {
        grid-template-columns: 1fr;
    }

    .ai-visual {
        order: -1;
    }
}

/* Mobile Menu Toggle Button */
.mobile-menu-toggle {
    display: none;
    background: none;
    border: none;
    font-size: 1.75rem;
    color: var(--charcoal);
    cursor: pointer;
    padding: 0.5rem;
    transition: color 0.3s ease;
}

.mobile-menu-toggle:hover {
    color: var(--sage-dark);
}

/* Mobile Menu */
.mobile-menu {
    position: fixed;
    top: 0;
    right: -100%;
    width: 280px;
    height: 100vh;
    background: var(--cream);
    box-shadow: -4px 0 20px rgba(0, 0, 0, 0.1);
    transition: right 0.3s ease;
    z-index: 1001;
    overflow-y: auto;
}

.mobile-menu.active {
    right: 0;
}

.mobile-menu-content {
    padding: 6rem 2rem 2rem;
}

.mobile-nav-links {
    list-style: none;
    margin: 0;
    padding: 0;
    margin-bottom: 2rem;
}

.mobile-nav-links li {
    margin-bottom: 0.5rem;
}

.mobile-nav-links a {
    display: block;
    padding: 1rem;
    color: var(--charcoal);
    text-decoration: none;
    font-weight: 500;
    border-radius: 8px;
    transition: all 0.3s ease;
}

.mobile-nav-links a:hover {
    background: var(--cream-dark);
    color: var(--sage-dark);
}

.mobile-menu-actions {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    padding-top: 1rem;
    border-top: 1px solid var(--sage);
}

.mobile-menu-actions .nav-cta {
    text-align: center;
}

.mobile-menu-actions .language-switcher {
    width: 100%;
}

.mobile-menu-actions .lang-button {
    width: 100%;
    justify-content: center;
}

.mobile-menu-actions .lang-dropdown {
    position: relative;
    top: 0.5rem;
    right: auto;
    left: 0;
    width: 100%;
}

@media (max-width: 768px) {
    nav {
        padding: 1rem 1.5rem;
    }

    .nav-links {
        display: none;
    }

    .nav-actions {
        display: none;
    }

    .mobile-menu-toggle {
        display: block;
    }

    .hero {
        padding: 0rem 1.5rem 0rem;
    }

    .features, .how-it-works, .ai-section, .cta-section {
        padding: 4rem 1.5rem;
    }

    .single-page {
        padding: 7rem 1.5rem 3rem;
    }

     .feature-page {
        padding: 1rem 1.5rem 3rem;
    }

    .single-page h1 {
        font-size: 2rem;
    }

    .single-page h2 {
        font-size: 1.5rem;
    }

    .single-page h3 {
        font-size: 1.2rem;
    }

    .feature-hero h1 {
        font-size: 2.5rem;
    }

    .feature-subtitle {
        font-size: 1.1rem;
    }

    .feature-page h2 {
        font-size: 1.6rem;
    }

    .feature-page h3 {
        font-size: 1.3rem;
    }

    .screenshot-placeholder {
        padding: 2rem 1rem;
    }

    .cta-box {
        padding: 2rem 1.5rem;
    }

    .cta-box h3 {
        font-size: 1.5rem;
    }

    footer {
        padding: 2rem 1.5rem;
    }

    .footer-content {
        flex-direction: column;
        text-align: center;
    }

    .footer-links {
        flex-wrap: wrap;
        justify-content: center;
    }

    .technical-grid {
        flex-direction: column;
    }

    .technical-card:last-child {
        margin-top: 1rem;
    }
}
