/* ============================================================
   VOXPRESENTER — LANDING PAGE
   ============================================================ */

:root {
    --bg:          #F7F2E9;
    --card:        #EDE8DF;
    --card-hover:  #E4DCCF;
    --text:        #1A1410;
    --text-sec:    #7A6F65;
    --accent:      #C04535;
    --accent-h:    #A33A2C;
    --accent-soft: #F5E3DF;
    --divider:     #DDD4C4;

    --dark-bg:     #130E09;
    --dark-card:   #1E1510;
    --dark-text:   #F2EDE4;
    --dark-sec:    #A09085;

    --font-head: 'Outfit', sans-serif;
    --font-body: 'Inter', sans-serif;
    --radius: 20px;
}

/* RESET */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html  { scroll-behavior: smooth; }
body  { background: var(--bg); color: var(--text); font-family: var(--font-body); line-height: 1.65; overflow-x: hidden; }
img   { max-width: 100%; height: auto; display: block; }
a     { text-decoration: none; color: inherit; }
h1, h2, h3, .brand { font-family: var(--font-head); }

.container { max-width: 1180px; margin: 0 auto; padding: 0 2rem; }

/* ── SECTION HELPERS ──────────────────────────────────────── */
.section-label {
    font-family: var(--font-head);
    font-weight: 700;
    font-size: 0.75rem;
    letter-spacing: 0.14em;
    color: var(--accent);
    text-transform: uppercase;
    margin-bottom: 1rem;
}
.section-title {
    font-family: var(--font-head);
    font-weight: 900;
    font-size: clamp(2rem, 4vw, 3rem);
    line-height: 1.12;
    margin-bottom: 3.5rem;
}

/* ── NAVBAR ───────────────────────────────────────────────── */
.navbar {
    position: sticky; top: 0; z-index: 100;
    padding: 1.1rem 0;
    background: rgba(247, 242, 233, 0.9);
    backdrop-filter: blur(14px);
    border-bottom: 1px solid var(--divider);
    transition: box-shadow 0.3s;
}
.navbar.scrolled { box-shadow: 0 4px 28px rgba(0,0,0,0.07); }
.nav-content { display: flex; justify-content: space-between; align-items: center; }
.brand {
    font-size: 1.35rem; font-weight: 800;
    color: var(--accent);
    display: flex; align-items: center; gap: 0.6rem;
}
.logo { width: 34px; height: 34px; border-radius: 9px; }
.nav-links { display: flex; align-items: center; gap: 1.25rem; }
.lang-toggle {
    background: var(--card);
    border: 1px solid var(--divider);
    border-radius: 8px;
    padding: 0.35rem 0.7rem;
    font-size: 1.1rem;
    cursor: pointer;
    transition: background 0.2s;
    line-height: 1;
}
.lang-toggle:hover { background: var(--card-hover); }

/* ── BUTTONS ──────────────────────────────────────────────── */
.btn {
    display: inline-flex; align-items: center; gap: 0.5rem;
    padding: 0.8rem 1.75rem;
    border-radius: 50px;
    font-family: var(--font-head); font-weight: 700; font-size: 0.95rem;
    cursor: pointer; border: none;
    transition: all 0.25s ease;
}
.btn-large { padding: 1rem 2.25rem; font-size: 1.05rem; }

.btn-primary {
    background: var(--accent); color: #fff;
    box-shadow: 0 4px 16px rgba(192,69,53,0.3);
}
.btn-primary:hover { background: var(--accent-h); transform: translateY(-2px); box-shadow: 0 8px 24px rgba(192,69,53,0.4); }

.btn-dark {
    background: var(--dark-bg); color: var(--dark-text);
    box-shadow: 0 4px 16px rgba(0,0,0,0.3);
}
.btn-dark:hover { background: #261E18; transform: translateY(-2px); box-shadow: 0 8px 28px rgba(0,0,0,0.4); }

.btn-light {
    background: #fff; color: var(--accent);
    box-shadow: 0 4px 16px rgba(0,0,0,0.12);
}
.btn-light:hover { transform: translateY(-2px); box-shadow: 0 8px 28px rgba(0,0,0,0.2); }

/* ── HERO ─────────────────────────────────────────────────── */
.hero {
    background: var(--dark-bg);
    color: var(--dark-text);
    padding: 7rem 0 6rem;
    overflow: hidden;
    position: relative;
}
.hero::before {
    content: '';
    position: absolute; top: -15%; right: -8%;
    width: 700px; height: 700px;
    background: radial-gradient(ellipse, rgba(192,69,53,0.14) 0%, transparent 68%);
    pointer-events: none;
}
.hero-inner {
    display: flex; align-items: center;
    justify-content: space-between; gap: 4rem;
    animation: fadeUp 0.7s ease both;
}
@keyframes fadeUp {
    from { opacity: 0; transform: translateY(28px); }
    to   { opacity: 1; transform: translateY(0); }
}

.hero-text { flex: 1; max-width: 560px; }

.hero-badge {
    display: inline-block;
    background: rgba(192,69,53,0.15);
    border: 1px solid rgba(192,69,53,0.3);
    color: #E88070;
    padding: 0.4rem 1rem;
    border-radius: 50px;
    font-family: var(--font-head); font-weight: 600; font-size: 0.85rem;
    margin-bottom: 1.5rem;
}

.hero h1 {
    font-family: var(--font-head); font-weight: 900;
    font-size: clamp(2.8rem, 5.5vw, 5rem);
    line-height: 1.05;
    margin-bottom: 1.5rem;
    color: var(--dark-text);
}
.hero-line1 { color: #ffffff; }
.highlight { color: var(--accent); }

.hero .subtitle {
    font-size: 1.15rem;
    color: var(--dark-sec);
    max-width: 480px;
    margin-bottom: 2.5rem;
    line-height: 1.7;
}
.hero-actions { display: flex; gap: 1rem; flex-wrap: wrap; }

.hero-visual { flex-shrink: 0; }
.hero-phone-wrap {
    position: relative;
    display: flex; align-items: center; justify-content: center;
}
.hero-phone-wrap::before {
    content: '';
    position: absolute;
    bottom: -40px; left: 50%; transform: translateX(-50%);
    width: 260px; height: 80px;
    background: radial-gradient(ellipse, rgba(192,69,53,0.28) 0%, transparent 70%);
    animation: glow-pulse 4s ease-in-out infinite;
    z-index: 0;
}
@keyframes glow-pulse {
    0%, 100% { opacity: 0.6; transform: translateX(-50%) scale(1); }
    50%       { opacity: 1;   transform: translateX(-50%) scale(1.06); }
}
.hero-phone-img {
    height: 480px;
    width: auto;
    border-radius: 38px;
    border: 8px solid #1A1410;
    position: relative; z-index: 1;
    box-shadow: 0 40px 80px rgba(0,0,0,0.45), 0 0 0 1px rgba(255,255,255,0.06);
    animation: float 6s ease-in-out infinite;
}
@keyframes float {
    0%, 100% { transform: translateY(0); }
    50%       { transform: translateY(-13px); }
}

/* ── HOW IT WORKS ─────────────────────────────────────────── */
.how-section { padding: 7rem 0; background: var(--bg); }
.how-section .section-label,
.how-section .section-title { text-align: center; }

.steps {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 0;
    position: relative;
}
/* Connecting line between step numbers */
.steps::before {
    content: '';
    position: absolute;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--divider) 20%, var(--divider) 80%, transparent);
    top: 2.1rem;        /* center of step-num */
    left: calc(100% / 6);
    right: calc(100% / 6);
}

.step { padding: 0 2rem 0; text-align: center; }
.step-num {
    font-family: var(--font-head); font-weight: 900;
    font-size: 2.8rem;
    -webkit-text-stroke: 2px var(--accent);
    color: transparent;
    line-height: 1;
    margin-bottom: 1.25rem;
    position: relative;
}
.step h3 { font-family: var(--font-head); font-weight: 800; font-size: 1.2rem; margin-bottom: 0.75rem; }
.step p  { color: var(--text-sec); font-size: 0.97rem; max-width: 230px; margin: 0 auto; }

/* ── FEATURES ─────────────────────────────────────────────── */
.features { padding: 7rem 0; background: var(--card); }
.features .section-label,
.features .section-title { text-align: center; }

.feature-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1.5rem;
}
.feature-card {
    background: var(--bg);
    border: 1px solid var(--divider);
    border-radius: var(--radius);
    padding: 2.5rem;
    transition: transform 0.3s, box-shadow 0.3s;
}
.feature-card:hover { transform: translateY(-5px); box-shadow: 0 16px 48px rgba(0,0,0,0.08); }

.feat-icon {
    width: 52px; height: 52px;
    background: var(--accent-soft);
    border-radius: 14px;
    display: flex; align-items: center; justify-content: center;
    color: var(--accent);
    margin-bottom: 1.5rem;
}
.feature-card h3 { font-family: var(--font-head); font-weight: 800; font-size: 1.2rem; margin-bottom: 0.75rem; }
.feature-card p  { color: var(--text-sec); line-height: 1.65; }

/* ── MAC COMPANION ────────────────────────────────────────── */
.companion { background: var(--dark-bg); padding: 7rem 0; color: var(--dark-text); }
.split-section { display: flex; align-items: center; gap: 5rem; }
.split-text { flex: 1; }
.split-image { flex: 1; display: flex; justify-content: center; }

.companion-label { color: #E88070; }

.companion h2 {
    font-family: var(--font-head); font-weight: 900;
    font-size: clamp(2rem, 3.5vw, 2.7rem);
    line-height: 1.15; margin-bottom: 1.25rem;
}
.companion p { font-size: 1.05rem; color: var(--dark-sec); margin-bottom: 2rem; line-height: 1.7; }

.mac-features { list-style: none; display: flex; flex-direction: column; gap: 0.8rem; }
.mac-features li {
    font-family: var(--font-head); font-weight: 600;
    font-size: 0.97rem; color: var(--dark-text);
    padding-left: 1.5rem; position: relative;
}
.mac-features li::before { content: '✓'; position: absolute; left: 0; color: var(--accent); font-weight: 900; }

/* CSS Mac mockup */
.mac-mockup { display: flex; flex-direction: column; align-items: center; }
.mac-screen {
    width: 360px; aspect-ratio: 16/10;
    background: #0C0806;
    border: 2px solid #352820;
    border-radius: 12px 12px 0 0;
    overflow: hidden; padding: 1.25rem;
}
.mac-screen-inner {
    height: 100%; background: #1A1208;
    border-radius: 8px; padding: 1.5rem;
    display: flex; flex-direction: column; justify-content: center; gap: 0.9rem;
    position: relative;
}
.slide-line { height: 8px; border-radius: 4px; background: #3D3025; }
.slide-line.sl-wide   { width: 75%; }
.slide-line.sl-medium { width: 55%; }
.slide-line.sl-short  { width: 35%; }
.slide-highlight {
    height: 8px; width: 50%; border-radius: 4px;
    background: var(--accent);
    animation: slide-glow 2.4s ease-in-out infinite;
}
@keyframes slide-glow { 0%, 100% { opacity: 0.55; } 50% { opacity: 1; } }

.mac-status {
    display: flex; align-items: center; gap: 0.5rem;
    margin-top: 0.5rem;
    font-size: 0.72rem; font-family: var(--font-head); font-weight: 600; color: #4CAF50;
}
.status-dot {
    width: 8px; height: 8px; border-radius: 50%; background: #4CAF50;
    animation: blink 2s infinite;
}
@keyframes blink { 0%, 100% { opacity: 1; } 50% { opacity: 0.25; } }

.mac-chin { width: 360px; height: 18px; background: #1A1410; border: 2px solid #352820; border-top: none; border-radius: 0 0 4px 4px; }
.mac-foot { width: 110px; height: 9px; background: #262014; border-radius: 0 0 6px 6px; }

/* ── SCREENSHOTS ──────────────────────────────────────────── */
.screenshots-section { padding: 7rem 0; background: var(--bg); }
.screenshots-section .section-label,
.screenshots-section .section-title { text-align: center; }

.screenshots-grid {
    display: flex;
    justify-content: center;
    align-items: flex-start;
    gap: 3rem;
    flex-wrap: wrap;
}

.screenshot-item {
    display: flex; flex-direction: column; align-items: center; gap: 1.25rem;
    max-width: 240px;
}
.screenshot-item:first-child { margin-top: 0; }
.screenshot-item:nth-child(2) { margin-top: 2.5rem; }

.phone-wrap {
    border-radius: 38px;
    border: 8px solid #1A1410;
    box-shadow: 0 10px 0 #0C0806, 0 24px 64px rgba(0,0,0,0.22);
    overflow: hidden;
    background: #000;
    transition: transform 0.4s ease, box-shadow 0.4s ease;
}
.phone-wrap:hover {
    transform: translateY(-8px) scale(1.02);
    box-shadow: 0 10px 0 #0C0806, 0 36px 80px rgba(0,0,0,0.3);
}
.phone-wrap img {
    display: block;
    width: 220px;
    height: auto;
}

.screenshot-item p {
    font-family: var(--font-head);
    font-weight: 700;
    font-size: 0.9rem;
    color: var(--text-sec);
    text-align: center;
    letter-spacing: 0.01em;
}

/* ── CTA / DOWNLOAD ───────────────────────────────────────── */
.cta-section {
    background: linear-gradient(140deg, #C04535 0%, #8B2F22 100%);
    padding: 7rem 0; color: #fff;
}
.cta-inner { display: flex; align-items: center; gap: 4rem; justify-content: center; }
.cta-app-icon { width: 140px; height: 140px; border-radius: 32px; box-shadow: 0 24px 60px rgba(0,0,0,0.35); flex-shrink: 0; }
.cta-text { max-width: 500px; }
.cta-text h2 { font-family: var(--font-head); font-weight: 900; font-size: clamp(1.8rem, 3.5vw, 2.6rem); margin-bottom: 0.75rem; }
.cta-text p  { font-size: 1.05rem; opacity: 0.8; margin-bottom: 2rem; }

/* ── FOOTER ───────────────────────────────────────────────── */
.footer { background: var(--dark-bg); padding: 2.5rem 0; border-top: 1px solid #2A1E14; }
.footer-inner { display: flex; align-items: center; justify-content: space-between; gap: 2rem; }
.footer-brand { display: flex; align-items: center; gap: 0.6rem; font-family: var(--font-head); font-weight: 800; font-size: 1.1rem; color: var(--dark-text); }
.footer-logo { width: 28px; height: 28px; border-radius: 7px; }
.footer-links { display: flex; gap: 2rem; }
.footer-links a { color: var(--dark-sec); font-size: 0.9rem; transition: color 0.2s; }
.footer-links a:hover { color: var(--dark-text); }
.copyright { font-size: 0.85rem; color: var(--dark-sec); }

/* ── RESPONSIVE ───────────────────────────────────────────── */
@media (max-width: 900px) {
    .hero-inner  { flex-direction: column; text-align: center; }
    .hero .subtitle { margin: 0 auto 2.5rem; }
    .hero-actions { justify-content: center; }
    .hero-phone-img { height: 360px; width: auto; }

    .steps { grid-template-columns: 1fr; gap: 2.5rem; }
    .steps::before { display: none; }
    .step { padding: 0; }

    .split-section { flex-direction: column-reverse; gap: 3rem; }
    .mac-screen { width: 100%; max-width: 340px; }
    .mac-chin   { width: 100%; max-width: 340px; }

    .cta-inner  { flex-direction: column; text-align: center; gap: 2.5rem; }
    .footer-inner { flex-direction: column; text-align: center; gap: 1.5rem; }
    .footer-links { justify-content: center; }
}

@media (max-width: 600px) {
    .container { padding: 0 1.25rem; }
    .hero, .how-section, .features, .companion, .cta-section { padding: 5rem 0; }
    .section-title { margin-bottom: 2.5rem; }
    .feature-grid { grid-template-columns: 1fr; }
    .nav-links { gap: 0.75rem; }
    .btn-large { padding: 0.9rem 1.75rem; font-size: 1rem; }
}

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

html {
    scroll-behavior: smooth;
}

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

h1, h2, h3, h4, h5, h6, .brand {
    font-family: var(--font-head);
    font-weight: 800;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

.navbar {
    padding: 1.5rem 0;
    position: sticky;
    top: 0;
    background: rgba(246, 241, 232, 0.85);
    backdrop-filter: blur(10px);
    z-index: 100;
    border-bottom: 1px solid var(--divider);
}

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

.brand {
    font-size: 1.5rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--accent);
}

.logo {
    width: 32px;
    height: 32px;
    border-radius: 8px;
}

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

.lang-toggle {
    background: none;
    border: none;
    font-family: var(--font-head);
    font-weight: 600;
    color: var(--text-sec);
    cursor: pointer;
    transition: color 0.3s;
}

.lang-toggle:hover {
    color: var(--text);
}

.btn {
    display: inline-block;
    padding: 0.75rem 1.5rem;
    border-radius: 50px;
    text-decoration: none;
    font-family: var(--font-head);
    font-weight: 600;
    transition: all 0.3s ease;
    cursor: pointer;
    border: none;
}

.btn-primary {
    background-color: var(--accent);
    color: #fff;
    box-shadow: 0 4px 15px rgba(185, 68, 53, 0.3);
}

.btn-primary:hover {
    background-color: #9c382b;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(185, 68, 53, 0.4);
}

.btn-large {
    padding: 1rem 2.5rem;
    font-size: 1.1rem;
}

/* HERO */
.hero {
    padding: 6rem 0 4rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.hero h1 {
    font-size: clamp(2.5rem, 5vw, 4.5rem);
    line-height: 1.1;
    margin-bottom: 1.5rem;
    color: var(--text);
}

.highlight {
    color: var(--accent);
}

.subtitle {
    font-size: 1.25rem;
    color: var(--text-sec);
    max-width: 600px;
    margin: 0 auto 2.5rem;
}

.hero-image-wrapper {
    margin-top: 4rem;
    width: 100%;
    display: flex;
    justify-content: center;
}

.mockup-frame {
    width: 300px;
    height: 600px;
    background: var(--card);
    border: 12px solid var(--text);
    border-radius: 40px;
    display: flex;
    justify-content: center;
    align-items: center;
    box-shadow: 0 20px 40px rgba(0,0,0,0.1);
    position: relative;
    overflow: hidden;
}

.mockup-img {
    width: 150px;
    opacity: 0.9;
    border-radius: 30px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

/* SECTION FEATURES */
.features {
    padding: 6rem 0;
}

.section-title {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 4rem;
}

.feature-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.glass {
    background: var(--card);
    border: 1px solid var(--divider);
    padding: 2.5rem;
    border-radius: 24px;
    transition: transform 0.3s ease;
}

.glass:hover {
    transform: translateY(-5px);
    background: var(--card-strong);
}

.glass h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: var(--accent);
}

.glass p {
    color: var(--text-sec);
}

/* COMPANION */
.bg-card {
    background: var(--card);
    padding: 6rem 0;
}

.split-section {
    display: flex;
    align-items: center;
    gap: 4rem;
}

.split-text {
    flex: 1;
}

.split-text h2 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
}

.split-text p {
    font-size: 1.1rem;
    color: var(--text-sec);
    margin-bottom: 2rem;
}

.split-image {
    flex: 1;
    display: flex;
    justify-content: center;
}

.mockup-mac {
    width: 100%;
    max-width: 500px;
    aspect-ratio: 16/10;
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-head);
    font-weight: 800;
    font-size: 1.5rem;
    color: var(--text-sec);
    background: var(--bg);
    border: 8px solid var(--text);
    box-shadow: 0 20px 40px rgba(0,0,0,0.1);
}

/* CTA */
.cta-section {
    padding: 8rem 0;
}

.cta-section h2 {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.cta-section p {
    font-size: 1.2rem;
    color: var(--text-sec);
    margin-bottom: 2.5rem;
}

.text-center {
    text-align: center;
}

/* FOOTER */
.footer {
    background: var(--text);
    color: var(--bg);
    padding: 3rem 0;
}

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

.footer-brand {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-family: var(--font-head);
    font-weight: 800;
    font-size: 1.5rem;
}

.footer-logo {
    width: 24px;
    height: 24px;
    border-radius: 6px;
}

.copyright {
    color: var(--text-sec);
}

@media (max-width: 768px) {
    .split-section {
        flex-direction: column;
    }
    .hero h1 {
        font-size: 2.5rem;
    }
}
