/* Verde — Marketing Landing Page (dark + botanical green) */

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

:root {
    --bg-primary: #08130E;
    --bg-secondary: #0E1F17;
    --bg-card: #142A20;
    --bg-card-hover: #1A342A;
    --bg-tinted: rgba(124, 207, 122, 0.08);
    --accent-primary: #7CCF7A;
    --accent-deep: #2F7D4F;
    --accent-bright: #C9E88A;
    --accent-gradient: linear-gradient(135deg, #7CCF7A 0%, #C9E88A 100%);
    --accent-radial: radial-gradient(circle at 50% 0%, #7CCF7A 0%, #2F7D4F 60%, #0E1F17 100%);
    --text-primary: #F3FAF3;
    --text-secondary: #A9C2AE;
    --text-muted: #6B8672;
    --border-subtle: rgba(255, 255, 255, 0.06);
    --border-hover: rgba(124, 207, 122, 0.35);
    --warning-amber: #E0A458;
    --danger-red: #F87171;
    --nav-height: 72px;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    background: var(--bg-primary);
    color: var(--text-primary);
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

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

.gradient-text {
    background: var(--accent-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.text-accent {
    color: var(--accent-primary);
    -webkit-text-fill-color: var(--accent-primary);
}

.mono {
    font-family: 'JetBrains Mono', ui-monospace, SFMono-Regular, Menlo, monospace;
}

/* ===== NAVIGATION ===== */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    height: var(--nav-height);
    z-index: 1000;
    transition: all 0.3s ease;
    background: transparent;
}

.navbar.scrolled {
    background: rgba(8, 19, 14, 0.85);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--border-subtle);
}

.nav-container {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 24px;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.logo-link {
    display: flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
    color: var(--text-primary);
}

.nav-logo {
    width: 32px;
    height: 32px;
    object-fit: contain;
}

.nav-logo-text {
    font-size: 1.1rem;
    font-weight: 700;
    letter-spacing: -0.4px;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 4px;
}

.nav-link {
    color: var(--text-secondary);
    text-decoration: none;
    font-size: 0.92rem;
    font-weight: 500;
    padding: 8px 14px;
    border-radius: 8px;
    transition: all 0.2s ease;
}

.nav-link:hover {
    color: var(--text-primary);
    background: rgba(255, 255, 255, 0.04);
}

.menu-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
}

.menu-toggle span {
    width: 22px;
    height: 2px;
    background: var(--text-primary);
    border-radius: 2px;
    transition: all 0.3s ease;
}

.menu-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.menu-toggle.active span:nth-child(2) {
    opacity: 0;
}

.menu-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
}

/* ===== HERO ===== */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding-top: var(--nav-height);
    position: relative;
    overflow: hidden;
}

.hero-bg-effects {
    position: absolute;
    inset: 0;
    pointer-events: none;
}

.hero-glow {
    position: absolute;
    border-radius: 50%;
    filter: blur(120px);
}

.glow-1 {
    width: 700px;
    height: 700px;
    background: var(--accent-deep);
    top: -260px;
    right: -180px;
    opacity: 0.5;
}

.glow-2 {
    width: 460px;
    height: 460px;
    background: var(--accent-primary);
    bottom: -180px;
    left: -120px;
    opacity: 0.18;
}

.hero > .container {
    display: flex;
    align-items: center;
    gap: 60px;
    position: relative;
    z-index: 1;
}

.hero-content {
    flex: 1;
    animation: fadeInUp 0.8s ease-out;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: var(--bg-tinted);
    border: 1px solid rgba(124, 207, 122, 0.25);
    padding: 8px 18px;
    border-radius: 50px;
    font-size: 0.8rem;
    font-weight: 600;
    color: var(--accent-primary);
    margin-bottom: 28px;
    letter-spacing: 0.3px;
}

.hero-badge .dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--accent-primary);
    box-shadow: 0 0 8px var(--accent-primary);
    animation: pulse 1.6s ease-in-out infinite;
}

.hero-title {
    font-size: 3.6rem;
    font-weight: 800;
    line-height: 1.1;
    letter-spacing: -2px;
    margin-bottom: 22px;
}

.hero-subtitle {
    font-size: 1.1rem;
    line-height: 1.7;
    color: var(--text-secondary);
    max-width: 500px;
    margin-bottom: 36px;
}

.hero-actions {
    display: flex;
    gap: 16px;
    margin-bottom: 36px;
}

/* Store Button */
.store-btn {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 14px 24px;
    background: var(--text-primary);
    color: var(--bg-primary);
    border-radius: 14px;
    text-decoration: none;
    transition: all 0.3s ease;
}

.store-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 30px rgba(124, 207, 122, 0.25);
}

.store-btn-text {
    display: flex;
    flex-direction: column;
}

.store-btn-small {
    font-size: 0.65rem;
    font-weight: 400;
    opacity: 0.85;
    line-height: 1;
}

.store-btn-big {
    font-size: 1.1rem;
    font-weight: 700;
    line-height: 1.2;
}

.store-btn-lg {
    padding: 18px 32px;
}

.store-btn-lg .store-btn-big {
    font-size: 1.25rem;
}

/* Hero Stats */
.hero-stats {
    display: flex;
    align-items: center;
    gap: 24px;
}

.stat {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.stat-number {
    font-size: 1.5rem;
    font-weight: 800;
    background: var(--accent-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.stat-label {
    font-size: 0.78rem;
    color: var(--text-muted);
    font-weight: 500;
}

.stat-divider {
    width: 1px;
    height: 36px;
    background: var(--border-subtle);
}

/* Hero Visual: scanner phone mockup */
.hero-visual {
    flex-shrink: 0;
    animation: fadeInUp 0.8s ease-out 0.2s both;
}

.phone-mockup {
    width: 290px;
    height: 620px;
    background: linear-gradient(180deg, #1F2A28, #0B1614);
    border-radius: 44px;
    padding: 4px;
    box-shadow:
        0 0 0 1px rgba(255, 255, 255, 0.04) inset,
        0 0 0 2px #050C0B,
        0 40px 80px -20px rgba(0, 0, 0, 0.6),
        0 20px 40px -15px rgba(124, 207, 122, 0.18);
    position: relative;
}

.phone-mockup::before {
    content: '';
    position: absolute;
    top: 10px;
    left: 50%;
    transform: translateX(-50%);
    width: 92px;
    height: 24px;
    background: #02080A;
    border-radius: 20px;
    z-index: 3;
}

.phone-screen {
    width: 100%;
    height: 100%;
    background: var(--bg-primary);
    border-radius: 40px;
    overflow: hidden;
    padding: 50px 14px 18px;
    display: flex;
    flex-direction: column;
    gap: 10px;
    position: relative;
}

.mock-status-bar {
    position: absolute;
    top: 14px;
    left: 22px;
    right: 22px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 0.72rem;
    font-weight: 600;
    color: var(--text-primary);
    z-index: 2;
}

.mock-status-icons {
    display: inline-flex;
    align-items: center;
    gap: 5px;
}

.mock-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 4px;
    margin-top: 2px;
}

.mock-header-title {
    font-size: 0.95rem;
    font-weight: 700;
    color: var(--text-primary);
    letter-spacing: -0.2px;
}

.mock-header-meta {
    font-size: 0.65rem;
    color: var(--accent-primary);
    font-weight: 600;
    background: var(--bg-tinted);
    padding: 3px 8px;
    border-radius: 50px;
}

/* Camera viewport */
.mock-viewport {
    position: relative;
    height: 196px;
    border-radius: 16px;
    background:
        radial-gradient(ellipse at 50% 60%, rgba(255, 255, 255, 0.04), transparent 70%),
        linear-gradient(135deg, #0F2723, #061613);
    overflow: hidden;
    border: 1px solid rgba(124, 207, 122, 0.12);
}

.mock-viewport-corners {
    position: absolute;
    inset: 18px;
    pointer-events: none;
}

.mock-viewport-corners::before,
.mock-viewport-corners::after,
.mock-viewport-corners > span::before,
.mock-viewport-corners > span::after {
    content: '';
    position: absolute;
    width: 22px;
    height: 22px;
    border-color: var(--accent-primary);
    border-style: solid;
}

.mock-viewport-corners::before {
    top: 0;
    left: 0;
    border-width: 2px 0 0 2px;
    border-top-left-radius: 4px;
}

.mock-viewport-corners::after {
    top: 0;
    right: 0;
    border-width: 2px 2px 0 0;
    border-top-right-radius: 4px;
}

.mock-viewport-corners > span::before {
    bottom: 0;
    left: 0;
    border-width: 0 0 2px 2px;
    border-bottom-left-radius: 4px;
}

.mock-viewport-corners > span::after {
    bottom: 0;
    right: 0;
    border-width: 0 2px 2px 0;
    border-bottom-right-radius: 4px;
}

.mock-viewport-laser {
    position: absolute;
    left: 28px;
    right: 28px;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--accent-primary), transparent);
    box-shadow: 0 0 10px var(--accent-primary);
    animation: laserSweep 2.4s ease-in-out infinite;
    border-radius: 2px;
}

@keyframes laserSweep {
    0%, 100% { top: 32%; opacity: 0.4; }
    50% { top: 56%; opacity: 1; }
}

.mock-viewport-barcode {
    position: absolute;
    left: 50px;
    right: 50px;
    top: 50%;
    transform: translateY(-50%);
    height: 44px;
    background: repeating-linear-gradient(90deg,
        var(--text-primary) 0 3px,
        transparent 3px 5px,
        var(--text-primary) 5px 6px,
        transparent 6px 9px,
        var(--text-primary) 9px 11px,
        transparent 11px 14px);
    opacity: 0.22;
    border-radius: 4px;
}

.mock-viewport-hint {
    position: absolute;
    left: 30px;
    right: 30px;
    bottom: 26px;
    text-align: center;
    font-size: 0.6rem;
    font-weight: 500;
    color: var(--text-secondary);
    letter-spacing: 0.3px;
}

/* Counter pill */
.mock-counter {
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: var(--bg-card);
    border: 1px solid var(--border-subtle);
    border-radius: 14px;
    padding: 10px 12px;
}

.mock-counter-left {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.mock-counter-label {
    font-size: 0.6rem;
    color: var(--text-muted);
    font-weight: 500;
    letter-spacing: 0.4px;
}

.mock-counter-value {
    font-size: 1.05rem;
    font-weight: 700;
    color: var(--text-primary);
    letter-spacing: -0.2px;
}

.mock-counter-actions {
    display: flex;
    gap: 6px;
}

.mock-pill {
    background: var(--bg-tinted);
    color: var(--accent-primary);
    border-radius: 50px;
    padding: 4px 10px;
    font-size: 0.62rem;
    font-weight: 700;
    letter-spacing: 0.3px;
}

/* Item list rows */
.mock-list {
    background: var(--bg-card);
    border: 1px solid var(--border-subtle);
    border-radius: 14px;
    overflow: hidden;
}

.mock-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 9px 12px;
    border-bottom: 1px solid var(--border-subtle);
}

.mock-row:last-child {
    border-bottom: none;
}

.mock-row-info {
    display: flex;
    flex-direction: column;
    gap: 2px;
    min-width: 0;
}

.mock-row-title {
    font-size: 0.78rem;
    font-weight: 600;
    color: var(--text-primary);
    letter-spacing: -0.1px;
}

.mock-row-code {
    font-size: 0.62rem;
    color: var(--text-muted);
    font-family: 'JetBrains Mono', ui-monospace, monospace;
}

.mock-row-qty {
    display: flex;
    align-items: center;
    gap: 6px;
}

.mock-stepper {
    width: 22px;
    height: 22px;
    border-radius: 6px;
    background: rgba(255, 255, 255, 0.04);
    color: var(--text-secondary);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.85rem;
    font-weight: 600;
    line-height: 1;
}

.mock-qty-value {
    min-width: 22px;
    text-align: center;
    font-size: 0.85rem;
    font-weight: 700;
    color: var(--accent-primary);
    font-family: 'JetBrains Mono', ui-monospace, monospace;
}

.mock-row.bumped .mock-qty-value {
    animation: qtyBump 0.5s ease-out;
}

@keyframes qtyBump {
    0% { transform: scale(1); color: var(--accent-bright); }
    40% { transform: scale(1.25); color: var(--accent-bright); }
    100% { transform: scale(1); color: var(--accent-primary); }
}

@keyframes pulse {
    0%, 100% { opacity: 0.4; transform: scale(0.8); }
    50% { opacity: 1; transform: scale(1.1); }
}

/* ===== SECTION HEADERS ===== */
.section-header {
    text-align: center;
    margin-bottom: 56px;
}

.section-badge {
    display: inline-block;
    background: var(--bg-tinted);
    border: 1px solid rgba(124, 207, 122, 0.2);
    padding: 6px 16px;
    border-radius: 50px;
    font-size: 0.78rem;
    font-weight: 600;
    color: var(--accent-primary);
    margin-bottom: 20px;
    letter-spacing: 0.5px;
    text-transform: uppercase;
}

.section-title {
    font-size: 2.7rem;
    font-weight: 800;
    line-height: 1.15;
    letter-spacing: -1.5px;
    margin-bottom: 16px;
}

.section-subtitle {
    font-size: 1.05rem;
    color: var(--text-secondary);
    max-width: 540px;
    margin: 0 auto;
    line-height: 1.7;
}

/* ===== POSITIONING (Anti-ERP) SECTION ===== */
.positioning {
    padding: 100px 0 60px;
    border-top: 1px solid var(--border-subtle);
}

.positioning-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 18px;
    max-width: 880px;
    margin: 32px auto 0;
}

.positioning-card {
    background: var(--bg-card);
    border: 1px solid var(--border-subtle);
    border-radius: 18px;
    padding: 28px;
}

.positioning-card.is-not {
    border-color: rgba(248, 113, 113, 0.18);
}

.positioning-card.is-this {
    border-color: rgba(124, 207, 122, 0.28);
}

.positioning-card h3 {
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 16px;
    letter-spacing: -0.3px;
    display: flex;
    align-items: center;
    gap: 8px;
    text-transform: uppercase;
    letter-spacing: 0.4px;
    font-size: 0.78rem;
}

.positioning-card.is-not h3 {
    color: var(--danger-red);
}

.positioning-card.is-this h3 {
    color: var(--accent-primary);
}

.positioning-card ul {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.positioning-card li {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    color: var(--text-secondary);
    font-size: 0.95rem;
    line-height: 1.55;
}

.positioning-card li::before {
    content: '';
    flex-shrink: 0;
    width: 16px;
    height: 16px;
    border-radius: 4px;
    margin-top: 2px;
    background: rgba(255, 255, 255, 0.04);
    background-size: 12px 12px;
    background-position: center;
    background-repeat: no-repeat;
}

.positioning-card.is-not li::before {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' stroke='%23F87171' stroke-width='3' stroke-linecap='round' fill='none'%3E%3Cline x1='6' y1='6' x2='18' y2='18'/%3E%3Cline x1='18' y1='6' x2='6' y2='18'/%3E%3C/svg%3E");
}

.positioning-card.is-this li::before {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' stroke='%237CCF7A' stroke-width='3' stroke-linecap='round' stroke-linejoin='round' fill='none'%3E%3Cpolyline points='20 6 9 17 4 12'/%3E%3C/svg%3E");
}

/* ===== FEATURES ===== */
.features {
    padding: 100px 0;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 18px;
}

.feature-card {
    background: var(--bg-card);
    border: 1px solid var(--border-subtle);
    border-radius: 18px;
    padding: 30px 26px;
    transition: all 0.35s ease;
}

.feature-card:hover {
    background: var(--bg-card-hover);
    border-color: var(--border-hover);
    transform: translateY(-4px);
    box-shadow: 0 20px 40px rgba(124, 207, 122, 0.06);
}

.feature-icon {
    width: 48px;
    height: 48px;
    background: var(--bg-tinted);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--accent-primary);
    margin-bottom: 20px;
}

.feature-card h3 {
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 10px;
    letter-spacing: -0.3px;
}

.feature-card p {
    font-size: 0.92rem;
    color: var(--text-secondary);
    line-height: 1.7;
}

/* ===== HOW IT WORKS ===== */
.how-it-works {
    padding: 100px 0;
    background: var(--bg-secondary);
    position: relative;
}

.steps-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 18px;
}

.step-card {
    text-align: center;
    padding: 32px 20px;
    background: var(--bg-card);
    border: 1px solid var(--border-subtle);
    border-radius: 18px;
    transition: all 0.35s ease;
    position: relative;
}

.step-card:hover {
    border-color: var(--border-hover);
    transform: translateY(-4px);
}

.step-number {
    width: 36px;
    height: 36px;
    background: var(--bg-tinted);
    color: var(--accent-primary);
    border: 1px solid rgba(124, 207, 122, 0.3);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 18px;
    font-size: 0.9rem;
    font-weight: 700;
    font-family: 'JetBrains Mono', ui-monospace, monospace;
}

.step-card h3 {
    font-size: 1.05rem;
    font-weight: 700;
    margin-bottom: 10px;
    letter-spacing: -0.3px;
}

.step-card p {
    font-size: 0.88rem;
    color: var(--text-secondary);
    line-height: 1.7;
}

/* ===== CYCLE COUNT (wedge) SECTION ===== */
.cycle-section {
    padding: 100px 0;
}

.cycle-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.cycle-text .section-badge {
    margin-bottom: 16px;
}

.cycle-text h2 {
    font-size: 2.4rem;
    font-weight: 800;
    line-height: 1.15;
    letter-spacing: -1.4px;
    margin-bottom: 20px;
}

.cycle-text p {
    font-size: 1.02rem;
    color: var(--text-secondary);
    line-height: 1.75;
    margin-bottom: 16px;
}

.csv-preview {
    background: #050E0C;
    border: 1px solid var(--border-subtle);
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 30px 60px -20px rgba(0, 0, 0, 0.6);
}

.csv-tab {
    background: var(--bg-card);
    padding: 10px 16px;
    border-bottom: 1px solid var(--border-subtle);
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.8rem;
    font-weight: 600;
    color: var(--text-secondary);
    font-family: 'JetBrains Mono', ui-monospace, monospace;
}

.csv-tab .dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
}

.csv-tab .dot.r { background: #ff5f57; }
.csv-tab .dot.y { background: #ffbd2e; }
.csv-tab .dot.g { background: #28c840; }

.csv-tab .filename {
    margin-left: 8px;
    color: var(--text-primary);
}

.csv-table {
    width: 100%;
    border-collapse: collapse;
    font-size: 0.78rem;
    font-family: 'JetBrains Mono', ui-monospace, monospace;
}

.csv-table th,
.csv-table td {
    padding: 10px 14px;
    text-align: left;
    border-bottom: 1px solid var(--border-subtle);
}

.csv-table th {
    background: rgba(124, 207, 122, 0.05);
    color: var(--accent-primary);
    font-weight: 700;
    font-size: 0.7rem;
    letter-spacing: 0.4px;
    text-transform: uppercase;
}

.csv-table td {
    color: var(--text-secondary);
}

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

.csv-table .variance-pos {
    color: var(--accent-primary);
    font-weight: 700;
}

.csv-table .variance-neg {
    color: var(--danger-red);
    font-weight: 700;
}

/* ===== TRUST ===== */
.trust-section {
    padding: 100px 0;
    background: var(--bg-secondary);
}

.trust-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 18px;
}

.trust-card {
    background: var(--bg-card);
    border: 1px solid var(--border-subtle);
    border-radius: 18px;
    padding: 32px 28px;
    transition: all 0.35s ease;
}

.trust-card:hover {
    border-color: var(--border-hover);
    transform: translateY(-3px);
}

.trust-card-icon {
    width: 48px;
    height: 48px;
    border-radius: 12px;
    background: var(--bg-tinted);
    color: var(--accent-primary);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 18px;
}

.trust-card h3 {
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 8px;
    letter-spacing: -0.3px;
}

.trust-card p {
    font-size: 0.92rem;
    color: var(--text-secondary);
    line-height: 1.7;
}

/* ===== DOWNLOAD ===== */
.download-section {
    padding: 110px 0;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.download-section::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 700px;
    height: 700px;
    background: var(--accent-deep);
    border-radius: 50%;
    filter: blur(180px);
    opacity: 0.18;
    pointer-events: none;
}

.download-content {
    position: relative;
    z-index: 1;
}

.download-content .section-title {
    margin-bottom: 16px;
}

.download-content .section-subtitle {
    margin-bottom: 36px;
}

/* ===== FOOTER ===== */
.footer {
    padding: 56px 0 28px;
    border-top: 1px solid var(--border-subtle);
}

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 36px;
}

.footer-brand {
    display: flex;
    flex-direction: column;
    gap: 12px;
    max-width: 320px;
}

.footer-logo-wrap {
    display: flex;
    align-items: center;
    gap: 10px;
}

.footer-logo-img {
    width: 36px;
    height: 36px;
    object-fit: contain;
}

.footer-brand-name {
    font-size: 1rem;
    font-weight: 700;
}

.footer-tagline {
    font-size: 0.88rem;
    color: var(--text-muted);
    line-height: 1.6;
}

.footer-links-grid {
    display: flex;
    gap: 56px;
}

.footer-column {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.footer-column h4 {
    font-size: 0.78rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.6px;
    color: var(--text-secondary);
    margin-bottom: 4px;
}

.footer-column a {
    color: var(--text-muted);
    text-decoration: none;
    font-size: 0.88rem;
    transition: color 0.2s ease;
}

.footer-column a:hover {
    color: var(--text-primary);
}

.footer-bottom {
    padding-top: 22px;
    border-top: 1px solid var(--border-subtle);
    text-align: center;
}

.footer-bottom p {
    font-size: 0.82rem;
    color: var(--text-muted);
}

/* ===== ANIMATIONS ===== */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

[data-animate] {
    opacity: 0;
    transform: translateY(24px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

[data-animate].visible {
    opacity: 1;
    transform: translateY(0);
}

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
    .hero > .container {
        flex-direction: column;
        text-align: center;
    }

    .hero-subtitle {
        margin-left: auto;
        margin-right: auto;
    }

    .hero-actions {
        justify-content: center;
    }

    .hero-stats {
        justify-content: center;
    }

    .hero-visual {
        display: none;
    }

    .features-grid,
    .trust-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .steps-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .cycle-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }
}

@media (max-width: 768px) {
    .nav-menu {
        display: none;
        position: fixed;
        top: var(--nav-height);
        left: 0;
        right: 0;
        background: rgba(6, 23, 20, 0.98);
        backdrop-filter: blur(20px);
        flex-direction: column;
        padding: 20px;
        border-bottom: 1px solid var(--border-subtle);
    }

    .nav-menu.active {
        display: flex;
    }

    .nav-link {
        padding: 14px 16px;
        font-size: 1rem;
    }

    .menu-toggle {
        display: flex;
    }

    .hero-title {
        font-size: 2.4rem;
    }

    .section-title,
    .cycle-text h2 {
        font-size: 1.95rem;
    }

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

    .footer-content {
        flex-direction: column;
        gap: 32px;
    }

    .footer-links-grid {
        gap: 36px;
    }

    .csv-table {
        font-size: 0.7rem;
    }

    .csv-table th,
    .csv-table td {
        padding: 8px 10px;
    }
}

@media (max-width: 480px) {
    .hero {
        padding-top: 120px;
        padding-bottom: 60px;
        min-height: auto;
    }

    .hero-title {
        font-size: 2rem;
        letter-spacing: -1px;
    }

    .section-title,
    .cycle-text h2 {
        font-size: 1.7rem;
    }

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

/* ===== SUB PAGE ===== */
.page-hero {
    padding: 140px 0 60px;
    text-align: center;
}

.page-content-section {
    padding: 40px 0 80px;
}

.content-wrapper {
    max-width: 800px;
    margin: 0 auto;
    padding: 0 24px;
}

/* FAQ */
.faq-list {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-bottom: 60px;
}

.faq-item {
    background: var(--bg-card);
    border-radius: 16px;
    padding: 22px 24px;
    border: 1px solid var(--border-subtle);
    cursor: pointer;
    transition: all 0.3s ease;
}

.faq-item:hover {
    border-color: var(--border-hover);
}

.faq-question {
    font-size: 1rem;
    font-weight: 600;
    color: var(--text-primary);
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 16px;
}

.faq-toggle {
    font-size: 1.4rem;
    color: var(--accent-primary);
    flex-shrink: 0;
    transition: transform 0.3s ease;
}

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

.faq-answer {
    color: var(--text-secondary);
    line-height: 1.75;
    font-size: 0.92rem;
    max-height: 0;
    overflow: hidden;
    transition: all 0.3s ease;
}

.faq-item.active .faq-answer {
    margin-top: 14px;
    padding-top: 14px;
    border-top: 1px solid var(--border-subtle);
    max-height: 600px;
}

/* Contact form */
.contact-card {
    background: var(--bg-card);
    border: 1px solid var(--border-subtle);
    border-radius: 18px;
    padding: 36px;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 18px;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.form-group label {
    font-size: 0.88rem;
    font-weight: 600;
    color: var(--text-secondary);
}

.form-group input,
.form-group textarea {
    padding: 14px 16px;
    background: var(--bg-primary);
    border: 1px solid var(--border-subtle);
    border-radius: 12px;
    color: var(--text-primary);
    font-size: 0.95rem;
    font-family: inherit;
    outline: none;
    transition: all 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus {
    border-color: var(--accent-primary);
    box-shadow: 0 0 0 3px rgba(124, 207, 122, 0.12);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: var(--text-muted);
}

.form-group textarea {
    min-height: 130px;
    resize: vertical;
}

.submit-btn {
    padding: 14px 28px;
    background: var(--accent-gradient);
    border: none;
    border-radius: 12px;
    color: var(--bg-primary);
    font-size: 0.95rem;
    font-weight: 700;
    font-family: inherit;
    cursor: pointer;
    transition: all 0.3s ease;
    align-self: flex-start;
}

.submit-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 24px rgba(124, 207, 122, 0.3);
}

.contact-direct {
    text-align: center;
    margin-top: 30px;
}

.contact-direct p {
    color: var(--text-secondary);
    font-size: 0.9rem;
}

.contact-direct a {
    color: var(--accent-primary);
    font-weight: 600;
    text-decoration: none;
}

.contact-direct a:hover {
    text-decoration: underline;
}

/* Privacy section */
.privacy-section {
    background: var(--bg-card);
    border: 1px solid var(--border-subtle);
    border-radius: 16px;
    padding: 28px;
    margin-bottom: 16px;
}

.privacy-section h2 {
    font-size: 1.15rem;
    font-weight: 700;
    margin-bottom: 14px;
    color: var(--text-primary);
}

.privacy-section p,
.privacy-section li {
    color: var(--text-secondary);
    line-height: 1.8;
    font-size: 0.94rem;
}

.privacy-section ul {
    margin: 12px 0;
    padding-left: 22px;
}

.privacy-section li {
    margin: 6px 0;
}

.highlight-box {
    background: var(--bg-tinted);
    border-left: 3px solid var(--accent-primary);
    padding: 16px 20px;
    border-radius: 0 10px 10px 0;
    margin: 14px 0;
}

.highlight-box p {
    color: var(--text-primary) !important;
}

.page-footer-links {
    display: flex;
    justify-content: center;
    gap: 16px;
    margin-top: 48px;
    padding-top: 22px;
    border-top: 1px solid var(--border-subtle);
}

.page-footer-links a {
    color: var(--text-muted);
    text-decoration: none;
    font-size: 0.88rem;
}

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

.page-footer-links .divider {
    color: var(--text-muted);
    opacity: 0.4;
}

/* ==========================================================
   Verde-specific components
   ========================================================== */

/* Asset placeholder — every slot waiting on a real image.
   Delete the .is-placeholder class once the asset is dropped in. */
.is-placeholder {
    background:
        repeating-linear-gradient(
            45deg,
            rgba(124, 207, 122, 0.06) 0px,
            rgba(124, 207, 122, 0.06) 10px,
            transparent 10px,
            transparent 20px
        ),
        var(--bg-card);
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: var(--text-muted);
    font-size: 0.78rem;
    font-weight: 600;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    padding: 16px;
}

/* Before / after comparison */
.ba-compare {
    position: relative;
    width: 100%;
    height: 100%;
    overflow: hidden;
    user-select: none;
    touch-action: pan-y;
    cursor: ew-resize;
}

.ba-pane {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.ba-after {
    clip-path: inset(0 0 0 50%);
}

.ba-label {
    position: absolute;
    top: 16px;
    padding: 5px 12px;
    border-radius: 999px;
    background: rgba(2, 8, 10, 0.72);
    backdrop-filter: blur(8px);
    border: 1px solid var(--border-subtle);
    font-size: 0.68rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--text-secondary);
    z-index: 4;
}

.ba-label-before { left: 16px; }
.ba-label-after {
    right: 16px;
    color: var(--accent-primary);
    border-color: var(--border-hover);
}

.ba-handle {
    position: absolute;
    top: 0;
    bottom: 0;
    left: 50%;
    width: 40px;
    transform: translateX(-50%);
    z-index: 5;
    cursor: ew-resize;
    background: none;
    border: none;
    padding: 0;
}

.ba-handle::before {
    content: '';
    position: absolute;
    top: 0;
    bottom: 0;
    left: 50%;
    width: 2px;
    transform: translateX(-50%);
    background: var(--accent-primary);
    box-shadow: 0 0 16px rgba(124, 207, 122, 0.5);
}

.ba-handle::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 38px;
    height: 38px;
    transform: translate(-50%, -50%);
    border-radius: 50%;
    background: var(--accent-primary);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.45);
}

.ba-handle:focus-visible {
    outline: none;
}

.ba-handle:focus-visible::after {
    box-shadow: 0 0 0 4px rgba(124, 207, 122, 0.35), 0 6px 20px rgba(0, 0, 0, 0.45);
}

/* Space-type cards (Garden / Terrace / Room) */
.space-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 20px;
    margin-top: 48px;
}

.space-card {
    background: var(--bg-card);
    border: 1px solid var(--border-subtle);
    border-radius: 18px;
    padding: 28px;
    transition: border-color 0.25s ease, transform 0.25s ease, background 0.25s ease;
}

.space-card:hover {
    border-color: var(--border-hover);
    background: var(--bg-card-hover);
    transform: translateY(-4px);
}

.space-card-tag {
    display: inline-block;
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--accent-primary);
    margin-bottom: 12px;
}

.space-card h3 {
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 10px;
    color: var(--text-primary);
}

.space-card p {
    color: var(--text-secondary);
    line-height: 1.65;
    font-size: 0.95rem;
}

.space-card-note {
    margin-top: 16px;
    padding-top: 16px;
    border-top: 1px solid var(--border-subtle);
    font-size: 0.85rem;
    color: var(--text-muted);
}

/* Edit prompt chips */
.prompt-list {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-top: 28px;
}

.prompt-chip {
    display: flex;
    align-items: center;
    gap: 12px;
    background: var(--bg-card);
    border: 1px solid var(--border-subtle);
    border-radius: 999px;
    padding: 14px 22px;
    color: var(--text-primary);
    font-size: 0.98rem;
    transition: border-color 0.25s ease, transform 0.25s ease;
}

.prompt-chip:hover {
    border-color: var(--border-hover);
    transform: translateX(4px);
}

.prompt-chip-icon {
    flex-shrink: 0;
    color: var(--accent-primary);
    display: flex;
}

/* What you get — deliverable list */
.deliverable-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 18px;
    margin-top: 44px;
}

.deliverable {
    background: var(--bg-card);
    border: 1px solid var(--border-subtle);
    border-radius: 16px;
    padding: 24px;
}

.deliverable-num {
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    color: var(--accent-primary);
    margin-bottom: 14px;
}

.deliverable h3 {
    font-size: 1.05rem;
    font-weight: 700;
    margin-bottom: 8px;
    color: var(--text-primary);
}

.deliverable p {
    font-size: 0.9rem;
    color: var(--text-secondary);
    line-height: 1.6;
}

/* Gallery of design examples */
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 18px;
    margin-top: 44px;
}

.gallery-item {
    aspect-ratio: 4 / 5;
    border-radius: 18px;
    overflow: hidden;
    border: 1px solid var(--border-subtle);
    position: relative;
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.gallery-caption {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    padding: 28px 18px 16px;
    background: linear-gradient(180deg, transparent, rgba(2, 8, 10, 0.85));
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--text-primary);
}

/* Renovation coverage list */
.covers-list {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 36px;
    justify-content: center;
}

.covers-item {
    background: var(--bg-tinted);
    border: 1px solid var(--border-subtle);
    border-radius: 999px;
    padding: 9px 18px;
    font-size: 0.9rem;
    color: var(--text-secondary);
}

/* Pricing / plan honesty block */
.plan-card {
    max-width: 640px;
    margin: 44px auto 0;
    background: var(--bg-card);
    border: 1px solid var(--border-hover);
    border-radius: 22px;
    padding: 36px;
    text-align: left;
}

.plan-card h3 {
    font-size: 1.35rem;
    font-weight: 700;
    margin-bottom: 8px;
    color: var(--text-primary);
}

.plan-card > p {
    color: var(--text-secondary);
    line-height: 1.7;
    margin-bottom: 22px;
}

.plan-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.plan-list li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    color: var(--text-secondary);
    line-height: 1.6;
    font-size: 0.95rem;
}

.plan-list li::before {
    content: '';
    flex-shrink: 0;
    width: 7px;
    height: 7px;
    margin-top: 8px;
    border-radius: 50%;
    background: var(--accent-primary);
}

.plan-footnote {
    margin-top: 22px;
    padding-top: 20px;
    border-top: 1px solid var(--border-subtle);
    font-size: 0.85rem;
    color: var(--text-muted);
    line-height: 1.65;
}

@media (max-width: 768px) {
    .plan-card { padding: 26px; }
    .ba-label { font-size: 0.62rem; }
}

/* Second column of the edits section (pairs with .cycle-text) */
.cycle-visual {
    width: 100%;
}

.cycle-visual .gallery-item {
    aspect-ratio: 3 / 4;
}

@media (max-width: 900px) {
    .cycle-visual { max-width: 420px; margin: 0 auto; }
}

/* Hero before/after frame — replaces the phone mockup, because the
   product's proof is a landscape photograph of a real space. */
.hero-visual {
    flex: 0 0 40%;
    max-width: 420px;
}

.ba-frame {
    position: relative;
    width: 100%;
    aspect-ratio: 4 / 3;
}

/* Portrait frame — the real before/after photography is 3:4. */
.ba-frame-tall {
    aspect-ratio: 3 / 4;
    border-radius: 22px;
    overflow: hidden;
    border: 1px solid var(--border-subtle);
    box-shadow:
        0 40px 80px -24px rgba(0, 0, 0, 0.65),
        0 20px 40px -18px rgba(124, 207, 122, 0.22);
}

/* Brand wordmark in the navbar and footer */
.nav-logo-wordmark {
    height: 30px;
    width: auto;
    display: block;
}

.footer-logo-wordmark {
    height: 34px;
    width: auto;
    display: block;
}

/* The hero visual is the pitch, so it stays on small screens. */
@media (max-width: 968px) {
    .hero > .container {
        flex-direction: column;
    }

    .hero-visual {
        display: block;
        flex: 1 1 auto;
        width: 100%;
        max-width: 520px;
    }
}


/* Two before/after pairs, side by side */
.compare-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 32px;
    margin-top: 48px;
}

.compare-item {
    margin: 0;
}

.compare-item figcaption {
    margin-top: 18px;
    font-size: 0.92rem;
    line-height: 1.6;
    color: var(--text-secondary);
}

@media (max-width: 968px) {
    .hero-visual { max-width: 380px; }
    .compare-grid { gap: 40px; }
}

/* Edits section with no companion image: one centred column, chips in pairs */
.cycle-content-solo {
    grid-template-columns: 1fr;
    max-width: 820px;
    margin: 0 auto;
    text-align: center;
}

.cycle-content-solo .section-subtitle {
    margin-left: auto;
    margin-right: auto;
}

.cycle-content-solo .prompt-list {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 14px;
    margin-top: 36px;
    text-align: left;
}

.cycle-content-solo .prompt-chip:hover {
    transform: translateY(-3px);
}
