:root {
    --bg: #f5f0eb;
    --bg-warm: #f2ead8;
    --bg-cream: #fbf6ee;
    --text: #64554a;
    --text-secondary: #6b6b6b;
    --coral: #c04e2e;
    --coral-dark: #a8442a;
    --coral-pressed: #a8341f;
    --accent: #c4a882;
    --card-bg: rgb(100 85 74 / 0.05);
    --card-border: rgb(100 85 74 / 0.1);
    --shadow: 0 8px 22px rgb(192 78 46 / 0.1);
    --shadow-lg: 0 16px 32px rgb(192 78 46 / 0.18);
    --radius-sm: 12px;
    --radius-md: 20px;
    --radius-lg: 28px;
    --radius-pill: 999px;
    --font: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
    --font-display: "Helvetica Neue", Helvetica, Arial, sans-serif;
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font);
    background: var(--bg);
    background-image: linear-gradient(180deg, var(--bg-cream) 0%, var(--bg-warm) 100%);
    color: var(--text);
    line-height: 1.55;
    overflow-x: hidden;
    min-height: 100vh;
}

a {
    color: inherit;
    text-decoration: none;
}

img {
    max-width: 100%;
    display: block;
}

.navbar {
    position: fixed;
    top: 16px;
    left: 50%;
    transform: translateX(-50%);
    width: calc(100% - 32px);
    max-width: 1200px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 10px 14px;
    background: rgb(255 255 255 / 0.28);
    backdrop-filter: blur(25px) saturate(160%);
    border: 1px solid rgb(255 255 255 / 0.5);
    border-radius: var(--radius-pill);
    box-shadow: var(--shadow);
    z-index: 1000;
    transition: background 0.2s ease, box-shadow 0.2s ease;
}

.navbar.scrolled {
    background: rgb(255 255 255 / 0.55);
    box-shadow: var(--shadow-lg);
}

.logo {
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 600;
    font-size: 0.95rem;
}

.logo-mark {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 32px;
    height: 32px;
    background: var(--coral);
    color: var(--bg);
    border-radius: 50%;
    font-weight: 700;
    font-size: 1.05rem;
}

.logo-text {
    opacity: 0.92;
}

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

.nav-link {
    padding: 8px 16px;
    border-radius: var(--radius-pill);
    font-weight: 500;
    font-size: 0.9rem;
    transition: background 0.2s ease;
}

.nav-link:hover {
    background: rgb(100 85 74 / 0.08);
}

.nav-cta {
    padding: 10px 18px;
    background: var(--coral);
    color: #fff;
    border-radius: var(--radius-pill);
    font-weight: 600;
    font-size: 0.9rem;
    box-shadow: inset 0 1px 0 rgb(255 255 255 / 0.25), 0 8px 22px rgb(192 78 46 / 0.18);
    transition: transform 0.2s ease, background 0.2s ease;
}

.nav-cta:hover {
    background: var(--coral-dark);
    transform: translateY(-1px);
}

.hero {
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: center;
    gap: 40px;
    min-height: 100vh;
    padding: 140px 24px 80px;
    max-width: 1200px;
    margin: 0 auto;
}

.hero-content {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.hero-title {
    font-family: var(--font-display);
    font-size: clamp(3rem, 8vw, 6rem);
    font-weight: 700;
    line-height: 0.98;
    letter-spacing: -0.03em;
    color: var(--text);
}

.hero-subtitle {
    font-size: clamp(1.1rem, 2vw, 1.35rem);
    max-width: 380px;
    color: var(--text);
    opacity: 0.9;
}

.hero-cta {
    display: inline-flex;
    align-self: flex-start;
    padding: 16px 32px;
    background: var(--coral);
    color: #fff;
    border-radius: var(--radius-pill);
    font-weight: 600;
    font-size: 1rem;
    box-shadow: inset 0 1px 0 rgb(255 255 255 / 0.25), 0 8px 22px rgb(192 78 46 / 0.18);
    transition: transform 0.2s ease, background 0.2s ease;
}

.hero-cta:hover {
    background: var(--coral-dark);
    transform: translateY(-2px);
}

.hero-visual {
    display: flex;
    justify-content: center;
    align-items: center;
}

.phone-frame {
    position: relative;
    width: 100%;
    max-width: 360px;
    border-radius: 36px;
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    background: #fff;
    aspect-ratio: 9/16;
}

.phone-frame img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.social-proof {
    text-align: center;
    padding: 60px 24px;
    max-width: 900px;
    margin: 0 auto;
}

.stats {
    display: inline-flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 20px;
    font-size: 0.95rem;
    font-weight: 500;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    color: var(--text);
}

.stat-divider {
    width: 4px;
    height: 4px;
    border-radius: 50%;
    background: var(--text);
    opacity: 0.4;
}

.press-line {
    color: var(--text-secondary);
    font-size: 0.95rem;
    opacity: 0.8;
}

.section-header {
    text-align: center;
    margin-bottom: 56px;
    padding: 0 24px;
}

.section-label {
    display: block;
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--text);
    opacity: 0.6;
    margin-bottom: 14px;
}

.section-header h2 {
    font-family: var(--font-display);
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 700;
    letter-spacing: -0.02em;
    color: var(--text);
    margin-bottom: 16px;
}

.section-intro {
    max-width: 680px;
    margin: 0 auto;
    color: var(--text-secondary);
    font-size: 1.05rem;
}

.features {
    padding: 100px 24px;
    max-width: 1200px;
    margin: 0 auto;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 20px;
}

.feature-card {
    padding: 28px;
    background: var(--card-bg);
    border: 1px solid var(--card-border);
    border-radius: var(--radius-lg);
    transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.feature-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow);
}

.feature-tag {
    display: inline-block;
    padding: 8px 16px;
    background: rgb(192 78 46 / 0.1);
    color: var(--coral);
    border-radius: var(--radius-pill);
    font-weight: 600;
    font-size: 0.85rem;
    margin-bottom: 16px;
}

.feature-card p {
    color: var(--text);
    opacity: 0.85;
    font-size: 0.98rem;
}

.gallery {
    padding: 100px 24px;
    max-width: 1200px;
    margin: 0 auto;
}

.gallery-list {
    display: flex;
    flex-direction: column;
    gap: 80px;
}

.gallery-item {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    align-items: center;
    gap: 48px;
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 0.7s ease, transform 0.7s ease;
}

.gallery-item.visible {
    opacity: 1;
    transform: translateY(0);
}

.gallery-item-reverse {
    grid-template-columns: 0.9fr 1.1fr;
}

.gallery-item-reverse .gallery-media {
    order: 2;
}

.gallery-item-reverse .gallery-text {
    order: 1;
}

.gallery-media {
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    background: #fff;
    aspect-ratio: 16/9;
}

.gallery-media-portrait {
    aspect-ratio: 9/16;
    max-width: 280px;
    margin: 0 auto;
}

.gallery-media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.gallery-text h3 {
    font-family: var(--font-display);
    font-size: clamp(1.6rem, 3vw, 2.2rem);
    font-weight: 700;
    letter-spacing: -0.02em;
    color: var(--text);
    margin-bottom: 18px;
    line-height: 1.15;
}

.gallery-text p {
    color: var(--text-secondary);
    font-size: 1.05rem;
    margin-bottom: 24px;
    line-height: 1.65;
}

.gallery-cta {
    display: inline-flex;
    padding: 12px 24px;
    background: var(--coral);
    color: #fff;
    border-radius: var(--radius-pill);
    font-weight: 600;
    font-size: 0.95rem;
    transition: background 0.2s ease, transform 0.2s ease;
}

.gallery-cta:hover {
    background: var(--coral-dark);
    transform: translateY(-2px);
}

.pricing {
    padding: 100px 24px;
    max-width: 1100px;
    margin: 0 auto;
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    align-items: stretch;
}

.pricing-card {
    position: relative;
    padding: 36px 28px;
    background: var(--card-bg);
    border: 1px solid var(--card-border);
    border-radius: var(--radius-lg);
    display: flex;
    flex-direction: column;
    transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.pricing-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow);
}

.pricing-popular {
    background: #fff;
    border-color: var(--coral);
    box-shadow: var(--shadow-lg);
    transform: scale(1.03);
}

.pricing-popular:hover {
    transform: scale(1.03) translateY(-4px);
}

.popular-badge {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    padding: 6px 16px;
    background: var(--coral);
    color: #fff;
    border-radius: var(--radius-pill);
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.04em;
    text-transform: uppercase;
}

.pricing-card h3 {
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 12px;
}

.price {
    font-size: 2.4rem;
    font-weight: 700;
    margin-bottom: 24px;
    color: var(--text);
}

.price span {
    font-size: 1rem;
    font-weight: 500;
    opacity: 0.6;
}

.pricing-card ul {
    list-style: none;
    margin-bottom: 32px;
    flex-grow: 1;
}

.pricing-card li {
    padding: 10px 0;
    border-bottom: 1px solid var(--card-border);
    font-size: 0.95rem;
    color: var(--text);
    opacity: 0.9;
}

.pricing-btn {
    display: block;
    text-align: center;
    padding: 14px 20px;
    border: 1.5px solid var(--card-border);
    border-radius: var(--radius-pill);
    font-weight: 600;
    transition: background 0.2s ease, color 0.2s ease, transform 0.2s ease;
}

.pricing-btn:hover {
    background: var(--text);
    color: var(--bg);
    transform: translateY(-2px);
}

.pricing-btn-primary {
    background: var(--coral);
    color: #fff;
    border-color: var(--coral);
}

.pricing-btn-primary:hover {
    background: var(--coral-dark);
}

.faq {
    padding: 100px 24px;
    max-width: 800px;
    margin: 0 auto;
}

.faq-list {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.faq-item {
    background: var(--card-bg);
    border: 1px solid var(--card-border);
    border-radius: var(--radius-md);
    overflow: hidden;
}

.faq-question {
    width: 100%;
    padding: 22px 24px;
    background: transparent;
    border: none;
    text-align: left;
    font-size: 1.05rem;
    font-weight: 600;
    color: var(--text);
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: background 0.2s ease;
}

.faq-question:hover {
    background: rgb(100 85 74 / 0.04);
}

.faq-question::after {
    content: "+";
    font-size: 1.4rem;
    font-weight: 400;
    color: var(--coral);
    transition: transform 0.25s ease;
}

.faq-item.open .faq-question::after {
    transform: rotate(45deg);
}

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

.faq-item.open .faq-answer {
    max-height: 300px;
}

.faq-answer p {
    padding: 0 24px 22px;
    color: var(--text-secondary);
    line-height: 1.65;
}

.footer {
    padding: 80px 24px 40px;
    background: var(--bg);
    border-top: 1px solid var(--card-border);
    text-align: center;
}

.footer-brand {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 32px;
}

.footer-logo-text {
    font-size: 2rem;
    font-weight: 700;
    color: var(--coral);
    letter-spacing: -0.03em;
}

.footer-links,
.footer-social {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 20px;
    margin-bottom: 20px;
}

.footer-links a,
.footer-social a {
    font-size: 0.95rem;
    color: var(--text);
    opacity: 0.85;
    transition: opacity 0.2s ease, color 0.2s ease;
}

.footer-links a:hover,
.footer-social a:hover {
    opacity: 1;
    color: var(--coral);
}

.footer-languages {
    display: flex;
    justify-content: center;
    gap: 16px;
    margin: 24px 0;
}

.footer-languages a {
    font-size: 0.9rem;
    color: var(--text-secondary);
    text-decoration: underline;
    text-underline-offset: 3px;
    transition: color 0.2s ease;
}

.footer-languages a:hover {
    color: var(--coral);
}

.footer-disclaimer,
.footer-copyright {
    font-size: 0.82rem;
    color: var(--text-secondary);
    opacity: 0.7;
    margin-top: 16px;
}

@media (max-width: 900px) {
    .hero {
        grid-template-columns: 1fr;
        text-align: center;
        padding-top: 120px;
    }

    .hero-content {
        align-items: center;
    }

    .hero-subtitle {
        max-width: 480px;
    }

    .phone-frame {
        max-width: 280px;
    }

    .gallery-item,
    .gallery-item-reverse {
        grid-template-columns: 1fr;
        gap: 28px;
    }

    .gallery-item-reverse .gallery-media,
    .gallery-item-reverse .gallery-text {
        order: unset;
    }

    .pricing-grid {
        grid-template-columns: 1fr;
        max-width: 420px;
        margin: 0 auto;
    }

    .pricing-popular {
        transform: scale(1);
    }

    .pricing-popular:hover {
        transform: translateY(-4px);
    }
}

@media (max-width: 600px) {
    .navbar {
        top: 10px;
        width: calc(100% - 20px);
        padding: 8px 10px;
    }

    .logo-text {
        display: none;
    }

    .nav-link {
        padding: 6px 12px;
        font-size: 0.85rem;
    }

    .nav-cta {
        padding: 8px 14px;
        font-size: 0.85rem;
    }

    .stats {
        flex-direction: column;
        gap: 8px;
    }

    .stat-divider {
        display: none;
    }

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