:root {
    --warm-bg: #FFFBF5;
    --warm-card: #FFFFFF;
    --warm-accent: #F8F1E7;
    --warm-text: #2D2924;
    --warm-text-soft: #6E675F;
    --zoom-blue: #0B5CFF;
    --zoom-blue-hover: #004BD9;
    --warm-border: #E8DED0;
    --warm-shadow: 0 10px 40px rgba(45, 41, 36, 0.05);
    --warm-shadow-hover: 0 20px 50px rgba(45, 41, 36, 0.1);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
}

body {
    background-color: var(--warm-bg);
    color: var(--warm-text);
    line-height: 1.6;
    overflow-x: hidden;
}

.container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 24px;
}

/* Header & Nav */
.header {
    background: rgba(255, 251, 245, 0.8);
    backdrop-filter: blur(20px);
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    border-bottom: 1px solid var(--warm-border);
}

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

.logo {
    display: flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
    font-weight: 800;
    font-size: 20px;
    color: var(--zoom-blue);
}

.nav-links {
    display: flex;
    gap: 32px;
    list-style: none;
}

.nav-links a {
    text-decoration: none;
    color: var(--warm-text);
    font-weight: 600;
    font-size: 15px;
    transition: color 0.3s;
}

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

.nav-actions {
    display: flex;
    align-items: center;
    gap: 16px;
}

/* Buttons */
.btn {
    padding: 10px 24px;
    border-radius: 12px;
    font-weight: 700;
    text-decoration: none;
    transition: all 0.3s;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
}

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

.btn-primary:hover {
    background: var(--zoom-blue-hover);
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(11, 92, 255, 0.2);
}

.btn-outline {
    border: 1px solid var(--warm-border);
    color: var(--warm-text);
}

.btn-outline:hover {
    background: var(--warm-accent);
    border-color: var(--warm-text);
}

/* Hero Section - Original Layout */
.hero {
    padding-top: 180px;
    padding-bottom: 120px;
    text-align: center;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: #FFEFC2;
    color: #855D00;
    padding: 6px 16px;
    border-radius: 100px;
    font-weight: 700;
    font-size: 13px;
    margin-bottom: 32px;
}

.hero-title {
    font-size: 72px;
    font-weight: 800;
    line-height: 1.1;
    letter-spacing: -2px;
    margin-bottom: 24px;
    color: var(--warm-text);
}

.hero-subtitle {
    font-size: 20px;
    color: var(--warm-text-soft);
    max-width: 600px;
    margin: 0 auto 48px;
}

.hero-visual-wrapper {
    margin-top: 80px;
    position: relative;
    padding: 40px;
    background: var(--warm-accent);
    border-radius: 48px;
    border: 1px solid var(--warm-border);
}

.hero-app-ui {
    background: white;
    border-radius: 32px;
    box-shadow: var(--warm-shadow);
    overflow: hidden;
    aspect-ratio: 16/9;
    border: 1px solid var(--warm-border);
}

/* Feature Grid - Bento Style (Creative Sorting) */
.features {
    padding: 100px 0;
}

.feature-grid {
    display: grid;
    grid-template-columns: repeat(12, 1fr);
    grid-template-rows: repeat(2, auto);
    gap: 24px;
}

.feature-card {
    background: var(--warm-card);
    padding: 40px;
    border-radius: 32px;
    border: 1px solid var(--warm-border);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    text-decoration: none;
    color: inherit;
    display: flex;
    flex-direction: column;
}

.feature-card.large {
    grid-column: span 7;
}

.feature-card.medium {
    grid-column: span 5;
}

.feature-card.tall {
    grid-column: span 4;
    grid-row: span 1;
}

.feature-card.wide {
    grid-column: span 8;
}

.feature-card:hover {
    transform: translateY(-8px) scale(1.02);
    box-shadow: var(--warm-shadow-hover);
    border-color: var(--zoom-blue);
    z-index: 2;
}

/* Staggered Content */
.staggered-section {
    display: flex;
    align-items: center;
    gap: 80px;
    margin-bottom: 120px;
}

.staggered-section:nth-child(even) {
    flex-direction: row-reverse;
}

.floating-element {
    animation: float 6s ease-in-out infinite;
}

/* New Modules Support */
.marquee-container {
    overflow: hidden;
    white-space: nowrap;
    position: relative;
    padding: 40px 0;
}

.marquee-content {
    display: inline-block;
    animation: marquee 30s linear infinite;
}

@keyframes marquee {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

.integration-icon {
    width: 80px;
    height: 80px;
    background: white;
    border-radius: 20px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    box-shadow: var(--warm-shadow);
    margin: 0 20px;
    font-size: 32px;
}

.stat-card {
    background: white;
    border-radius: 24px;
    padding: 32px;
    border: 1px solid var(--warm-border);
    text-align: center;
    transition: transform 0.3s;
}

.stat-card:hover {
    transform: scale(1.05);
}

.code-window {
    background: #2D2924;
    border-radius: 16px;
    padding: 24px;
    color: #FFEFC2;
    font-family: 'Courier New', Courier, monospace;
    text-align: left;
    box-shadow: 0 20px 40px rgba(0,0,0,0.2);
}

.code-window .dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    display: inline-block;
    margin-right: 6px;
}

/* Advanced Components */
.testimonial-card {
    background: white;
    border-radius: 24px;
    padding: 40px;
    border: 1px solid var(--warm-border);
    box-shadow: var(--warm-shadow);
    position: relative;
}

.testimonial-card::before {
    content: '"';
    position: absolute;
    top: 20px;
    left: 20px;
    font-size: 80px;
    color: var(--warm-accent);
    line-height: 1;
    font-family: serif;
}

.pricing-tier {
    background: white;
    border-radius: 32px;
    padding: 48px;
    border: 1px solid var(--warm-border);
    transition: all 0.3s;
    display: flex;
    flex-direction: column;
    height: 100%;
}

.pricing-tier.popular {
    border-color: var(--zoom-blue);
    transform: scale(1.05);
    box-shadow: 0 20px 40px rgba(11, 92, 255, 0.1);
}

.faq-item {
    background: white;
    border-radius: 16px;
    margin-bottom: 16px;
    border: 1px solid var(--warm-border);
    overflow: hidden;
}

.faq-question {
    padding: 24px;
    font-weight: 700;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.faq-answer {
    padding: 0 24px 24px;
    color: var(--warm-text-soft);
    font-size: 15px;
}

.cta-section {
    background: linear-gradient(135deg, var(--zoom-blue) 0%, #004BD9 100%);
    border-radius: 48px;
    padding: 100px 60px;
    text-align: center;
    color: white;
    margin: 100px 0;
}

.feature-icon {
    width: 64px;
    height: 64px;
    background: var(--warm-accent);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    margin-bottom: 32px;
}

.feature-card h3 {
    font-size: 24px;
    font-weight: 800;
    margin-bottom: 16px;
}

.feature-card p {
    color: var(--warm-text-soft);
    margin-bottom: 24px;
}

.feature-link {
    color: var(--zoom-blue);
    font-weight: 700;
    font-size: 15px;
    display: flex;
    align-items: center;
    gap: 8px;
}

/* Footer */
.footer {
    background: #2D2924;
    color: white;
    padding: 100px 0 40px;
    margin-top: 100px;
    border-radius: 64px 64px 0 0;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr repeat(4, 1fr);
    gap: 60px;
    margin-bottom: 80px;
}

.footer-col h4 {
    color: white;
    font-size: 16px;
    font-weight: 700;
    margin-bottom: 24px;
}

.footer-links {
    list-style: none;
}

.footer-links li {
    margin-bottom: 12px;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.6);
    text-decoration: none;
    font-size: 14px;
    transition: color 0.3s;
}

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

.footer-bottom {
    padding-top: 40px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 14px;
    color: rgba(255, 255, 255, 0.4);
}

/* Responsive */
@media (max-width: 1024px) {
    .hero-title { font-size: 56px; }
    .feature-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 768px) {
    .hero-title { font-size: 40px; }
    .feature-grid { grid-template-columns: 1fr; }
    .nav-links { display: none; }
    .footer-grid { grid-template-columns: 1fr 1fr; }
}
