/* ===========================
   RESET & VARIABLES
=========================== */
*, *::before, *::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --dark:        #0b1a27;
    --dark-card:   #112035;
    --green:       #22d97a;
    --green-glow:  rgba(34, 217, 122, 0.18);
    --green-border:rgba(34, 217, 122, 0.28);
    --white:       #ffffff;
    --bg-light:    #f4f6f9;
    --bg-alt:      #eef0f4;
    --text-dark:   #111827;
    --text-mid:    #374151;
    --text-muted:  #6b7280;
    --border:      rgba(0, 0, 0, 0.07);
    --radius:      12px;
    --radius-lg:   20px;
    --shadow:      0 4px 24px rgba(0, 0, 0, 0.07);
    --shadow-hover:0 8px 36px rgba(0, 0, 0, 0.12);
    --ease:        0.22s ease;
}

html { scroll-behavior: smooth; }

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', system-ui, 'Helvetica Neue', sans-serif;
    background: var(--white);
    color: var(--text-mid);
    line-height: 1.65;
    -webkit-font-smoothing: antialiased;
}

a { text-decoration: none; color: inherit; }

/* ===========================
   UTILITIES
=========================== */
.container {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 28px;
}

.text-green { color: var(--green); }

/* ===========================
   BUTTONS
=========================== */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    padding: 10px 22px;
    border-radius: 8px;
    font-size: 0.88rem;
    font-weight: 600;
    cursor: pointer;
    border: 2px solid transparent;
    transition: all var(--ease);
    white-space: nowrap;
    line-height: 1;
}

.btn-primary {
    background: var(--green);
    color: var(--dark);
    border-color: var(--green);
}
.btn-primary:hover {
    background: #1bc46b;
    border-color: #1bc46b;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(34, 217, 122, 0.38);
}
.btn-primary:active { transform: translateY(0); }

.btn-ghost {
    background: transparent;
    color: rgba(255, 255, 255, 0.85);
    border-color: rgba(255, 255, 255, 0.35);
}
.btn-ghost:hover {
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(255, 255, 255, 0.6);
    color: var(--white);
}

/* ===========================
   NAVBAR
=========================== */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 200;
    background: rgba(11, 26, 39, 0.94);
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.055);
    transition: box-shadow var(--ease);
}
.navbar.scrolled {
    box-shadow: 0 4px 32px rgba(0, 0, 0, 0.35);
}

.nav-container {
    display: flex;
    align-items: center;
    height: 66px;
    gap: 0;
}

.logo {
    display: flex;
    align-items: center;
    gap: 9px;
    font-weight: 700;
    font-size: 1.05rem;
    color: var(--white);
    flex-shrink: 0;
}
.logo-icon {
    display: flex;
    align-items: center;
    justify-content: center;
}
.logo-text { color: var(--white); }

/* Logo image — no container box, just the image */
.logo-image {
    width: 44px;
    height: 44px;
    object-fit: contain;
    display: block;
}

.nav-links {
    display: flex;
    gap: 20px;
    margin-left: auto;
    margin-right: 20px;
}
.nav-links a {
    font-size: 0.85rem;
    font-weight: 500;
    color: var(--white);
    opacity: 0.82;
    transition: opacity var(--ease), color var(--ease);
    white-space: nowrap;
}
.nav-links a:hover { opacity: 1; color: var(--green); }

.nav-cta {
    padding: 8px 18px;
    font-size: 0.82rem;
    flex-shrink: 0;
}

/* Hamburger */
.hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    margin-left: auto;
    padding: 6px 4px;
}
.hamburger span {
    display: block;
    width: 22px;
    height: 2px;
    background: var(--white);
    border-radius: 2px;
    transition: all var(--ease);
}
.hamburger.open span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.hamburger.open span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.hamburger.open span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

.mobile-menu {
    display: none;
    flex-direction: column;
    padding: 12px 28px 20px;
    gap: 4px;
    border-top: 1px solid rgba(255, 255, 255, 0.06);
}
.mobile-menu a {
    color: var(--white);
    font-size: 0.95rem;
    padding: 10px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    transition: color var(--ease);
    opacity: 0.82;
}
.mobile-menu a:last-child { border-bottom: none; margin-top: 10px; justify-content: center; opacity: 1; }
.mobile-menu a:hover { opacity: 1; color: var(--green); }
.mobile-menu.open { display: flex; }

/* ===========================
   HERO
=========================== */
.hero {
    background: var(--dark);
    padding-top: 130px;
    position: relative;
    overflow: hidden;
}

/* subtle radial glow behind content */
.hero::before {
    content: '';
    position: absolute;
    top: -120px;
    left: -200px;
    width: 800px;
    height: 800px;
    background: radial-gradient(ellipse at center, rgba(34, 217, 122, 0.07) 0%, transparent 65%);
    pointer-events: none;
}

.hero-container {
    display: flex;
    align-items: center;
    gap: 64px;
    padding-bottom: 90px;
    position: relative;
    z-index: 1;
}

.hero-content { flex: 1; min-width: 0; }

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: var(--green-glow);
    border: 1px solid var(--green-border);
    color: var(--green);
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    padding: 5px 13px;
    border-radius: 100px;
    margin-bottom: 22px;
}
.hero-badge-dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--green);
    flex-shrink: 0;
    animation: pulse-dot 2.2s infinite;
}

@keyframes pulse-dot {
    0%, 100% { opacity: 1; transform: scale(1); }
    50%       { opacity: 0.55; transform: scale(0.75); }
}

.hero-title {
    font-size: clamp(2rem, 4.2vw, 3.05rem);
    font-weight: 800;
    color: var(--white);
    line-height: 1.18;
    letter-spacing: -0.025em;
    margin-bottom: 20px;
}

.hero-subtitle {
    font-size: 0.975rem;
    color: rgba(255, 255, 255, 0.58);
    line-height: 1.75;
    max-width: 470px;
    margin-bottom: 34px;
}

.hero-ctas {
    display: flex;
    align-items: center;
    gap: 12px;
    flex-wrap: wrap;
    margin-bottom: 20px;
}

.hero-note {
    font-size: 0.78rem;
    color: rgba(255, 255, 255, 0.32);
}

/* App mockup card */
.hero-visual { flex-shrink: 0; }

.app-mockup {
    width: 232px;
    height: 232px;
    position: relative;
    border-radius: 36px;
    background: linear-gradient(160deg, #122533 0%, #0b2738 60%);
    border: 1px solid rgba(34, 217, 122, 0.10);
    box-shadow:
        0 18px 50px rgba(3, 12, 20, 0.7),
        inset 0 6px 20px rgba(0,0,0,0.45),
        inset 0 1px 0 rgba(255,255,255,0.02);
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.app-mockup-glow {
    position: absolute;
    top: -28px;
    left: -28px;
    width: 180px;
    height: 180px;
    filter: blur(18px);
    background: radial-gradient(circle at 20% 20%, rgba(34,217,122,0.26) 0%, transparent 55%);
    pointer-events: none;
}

.app-mockup-inner {
    text-align: center;
    position: relative;
    z-index: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    padding: 18px 12px;
}

/* App mockup logo */
.app-mockup-image {
    width: 120px;
    height: 120px;
    object-fit: contain;
    display: block;
    margin: 0 auto;
    transform: translateY(-4px);
}

.app-mockup .mockup-name {
    font-size: 1.02rem;
    font-weight: 800;
    color: var(--white);
    margin-top: 6px;
}
.app-mockup .mockup-tag {
    font-size: 0.72rem;
    font-weight: 800;
    color: var(--green);
    letter-spacing: 0.14em;
}

/* Wave divider */
.hero-wave {
    line-height: 0;
    position: relative;
    z-index: 1;
}
.hero-wave svg {
    display: block;
    width: 100%;
    height: 80px;
}

/* ===========================
   SECTION SHARED STYLES
=========================== */
.section-header {
    text-align: center;
    margin-bottom: 56px;
}
.section-label {
    display: inline-block;
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 0.14em;
    color: var(--green);
    margin-bottom: 14px;
}
.section-header h2 {
    font-size: clamp(1.65rem, 3vw, 2.3rem);
    font-weight: 800;
    color: var(--text-dark);
    letter-spacing: -0.025em;
    margin-bottom: 12px;
}
.section-header p {
    font-size: 0.93rem;
    color: var(--text-muted);
    max-width: 460px;
    margin: 0 auto;
}
.section-header-light h2 { color: var(--white); }
.section-header-light p  { color: rgba(255,255,255,0.45); }

/* ===========================
   FEATURES
=========================== */
.features {
    background: var(--bg-light);
    padding: 88px 0;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 18px;
}

.feature-card {
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 28px 26px;
    transition: transform var(--ease), box-shadow var(--ease), border-color var(--ease);
}
.feature-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-hover);
    border-color: rgba(34, 217, 122, 0.25);
}

.feature-icon {
    width: 46px;
    height: 46px;
    background: rgba(34, 217, 122, 0.1);
    border-radius: 11px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 18px;
}

.feature-card h3 {
    font-size: 0.93rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 8px;
}
.feature-card p {
    font-size: 0.83rem;
    color: var(--text-muted);
    line-height: 1.65;
}

/* ===========================
   HOW IT WORKS
=========================== */
.how-it-works {
    background: var(--white);
    padding: 88px 0;
}

.steps-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 18px;
}

.step-card {
    background: var(--bg-light);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 32px 28px;
    position: relative;
    overflow: hidden;
    transition: transform var(--ease), box-shadow var(--ease), border-color var(--ease);
}
/* green top accent that slides in on hover */
.step-card::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--green), rgba(34,217,122,0.15));
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.32s ease;
}
.step-card:hover::before { transform: scaleX(1); }
.step-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-hover);
    border-color: rgba(34,217,122,0.22);
}

.step-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 22px;
}
.step-badge {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: rgba(34, 217, 122, 0.12);
    border: 2px solid rgba(34, 217, 122, 0.3);
    color: var(--green);
    font-size: 0.88rem;
    font-weight: 800;
    letter-spacing: -0.02em;
    flex-shrink: 0;
}
.step-icon {
    width: 44px;
    height: 44px;
    background: var(--white);
    border-radius: 11px;
    border: 1px solid var(--border);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    transition: border-color var(--ease);
}
.step-card:hover .step-icon { border-color: rgba(34,217,122,0.3); }

.step-card h3 {
    font-size: 0.98rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 10px;
}
.step-card p {
    font-size: 0.85rem;
    color: var(--text-muted);
    line-height: 1.65;
}

/* ===========================
   BENEFITS
=========================== */
.benefits {
    background: var(--dark);
    padding: 88px 0;
    position: relative;
    overflow: hidden;
}
.benefits::before {
    content: '';
    position: absolute;
    bottom: -160px;
    right: -160px;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(34,217,122,0.06) 0%, transparent 65%);
    pointer-events: none;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 16px;
    position: relative;
    z-index: 1;
}

.stat-card {
    background: rgba(255, 255, 255, 0.055);
    border: 1px solid rgba(255, 255, 255, 0.09);
    border-radius: var(--radius);
    padding: 34px 20px;
    text-align: center;
    transition: background var(--ease), border-color var(--ease);
}
.stat-card:hover {
    background: rgba(255,255,255,0.08);
    border-color: rgba(34,217,122,0.25);
}

.stat-number {
    display: block;
    font-size: clamp(1.9rem, 3vw, 2.35rem);
    font-weight: 900;
    color: var(--green);
    letter-spacing: -0.03em;
    margin-bottom: 8px;
    line-height: 1;
}
.stat-card p {
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.5);
    line-height: 1.45;
}

/* ===========================
   CTA
=========================== */
.cta-section {
    background: var(--bg-light);
    padding: 88px 0;
}

.cta-card {
    background: var(--dark);
    border-radius: var(--radius-lg);
    padding: 68px 48px;
    text-align: center;
    max-width: 620px;
    margin: 0 auto;
    position: relative;
    overflow: hidden;
    border: 1px solid rgba(255,255,255,0.06);
    box-shadow: 0 20px 60px rgba(0,0,0,0.22);
}

.cta-glow {
    position: absolute;
    top: -100px;
    right: -100px;
    width: 320px;
    height: 320px;
    background: radial-gradient(circle, rgba(34,217,122,0.1) 0%, transparent 65%);
    pointer-events: none;
}
.cta-glow::after {
    content: '';
    position: absolute;
    bottom: -80px;
    left: -80px;
    width: 240px;
    height: 240px;
    background: radial-gradient(circle, rgba(34,217,122,0.06) 0%, transparent 65%);
}

.cta-card h2 {
    font-size: clamp(1.55rem, 3vw, 2.05rem);
    font-weight: 800;
    color: var(--white);
    letter-spacing: -0.025em;
    margin-bottom: 14px;
    position: relative;
    z-index: 1;
}
.cta-card p {
    font-size: 0.93rem;
    color: rgba(255, 255, 255, 0.5);
    margin-bottom: 34px;
    position: relative;
    z-index: 1;
}
.cta-btn {
    position: relative;
    z-index: 1;
    padding: 12px 28px;
    font-size: 0.93rem;
}

/* ===========================
   DASHBOARD PREVIEW (hero)
=========================== */
.dashboard-preview {
    width: 420px;
    background: #0e1e2c;
    border-radius: 14px;
    border: 1px solid rgba(255,255,255,0.08);
    overflow: hidden;
    box-shadow: 0 24px 80px rgba(0,0,0,0.65), 0 0 0 1px rgba(255,255,255,0.03);
    font-size: 0.74rem;
    flex-shrink: 0;
}

/* browser chrome */
.dp-bar {
    background: #0a1520;
    padding: 9px 14px;
    display: flex;
    align-items: center;
    gap: 12px;
    border-bottom: 1px solid rgba(255,255,255,0.06);
}
.dp-dots { display: flex; gap: 6px; }
.dp-dots span {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: rgba(255,255,255,0.12);
}
.dp-dots span:nth-child(1) { background: #ff5f57; }
.dp-dots span:nth-child(2) { background: #febc2e; }
.dp-dots span:nth-child(3) { background: #28c840; }
.dp-url {
    flex: 1;
    background: rgba(255,255,255,0.05);
    border-radius: 6px;
    padding: 4px 10px;
    color: rgba(255,255,255,0.3);
    font-size: 0.67rem;
    text-align: center;
}

.dp-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 12px 14px 8px;
    border-bottom: 1px solid rgba(255,255,255,0.05);
}
.dp-title { font-size: 0.82rem; font-weight: 700; color: var(--white); }
.dp-date  { font-size: 0.67rem; color: rgba(255,255,255,0.32); }

.dp-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 8px;
    padding: 10px 14px;
    border-bottom: 1px solid rgba(255,255,255,0.05);
}
.dp-stat {
    background: rgba(255,255,255,0.045);
    border-radius: 8px;
    padding: 9px 8px;
    text-align: center;
}
.dp-stat-n {
    display: block;
    font-size: 1.05rem;
    font-weight: 800;
    color: var(--white);
    line-height: 1;
}
.dp-green { color: var(--green); }
.dp-stat-l {
    display: block;
    font-size: 0.61rem;
    color: rgba(255,255,255,0.35);
    margin-top: 4px;
}

.dp-grid-label {
    padding: 9px 14px 3px;
    font-size: 0.63rem;
    font-weight: 700;
    color: rgba(255,255,255,0.3);
    text-transform: uppercase;
    letter-spacing: 0.08em;
}
.dp-grid { padding: 0 14px 12px; }
.dp-grid-head {
    display: grid;
    grid-template-columns: 26px repeat(5, 1fr);
    gap: 4px;
    margin-bottom: 5px;
}
.dp-grid-head span {
    font-size: 0.58rem;
    color: rgba(255,255,255,0.25);
    text-align: center;
}
.dp-row {
    display: grid;
    grid-template-columns: 26px repeat(5, 1fr);
    gap: 4px;
    margin-bottom: 5px;
    align-items: center;
}
.dp-rowlabel {
    font-size: 0.63rem;
    font-weight: 700;
    color: rgba(255,255,255,0.4);
}
.dp-slot {
    padding: 5px 2px;
    border-radius: 5px;
    font-size: 0.56rem;
    text-align: center;
    font-weight: 600;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}
.dp-slot--taken {
    background: rgba(34, 217, 122, 0.16);
    color: #22d97a;
    border: 1px solid rgba(34, 217, 122, 0.22);
}
.dp-slot--free {
    background: rgba(255,255,255,0.03);
    color: rgba(255,255,255,0.2);
    border: 1px dashed rgba(255,255,255,0.09);
}

.dp-footer-bar {
    display: flex;
    align-items: center;
    gap: 7px;
    padding: 8px 14px;
    border-top: 1px solid rgba(255,255,255,0.05);
    background: rgba(0,0,0,0.15);
}
.dp-logo { width: 22px; height: 22px; object-fit: contain; }
.dp-footer-bar span { font-size: 0.68rem; font-weight: 700; color: rgba(255,255,255,0.45); }

/* ===========================
   PRICING
=========================== */
.pricing {
    background: var(--white);
    padding: 88px 0;
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
    max-width: 780px;
    margin: 0 auto;
}

.price-card {
    background: var(--bg-light);
    border: 2px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 36px 32px;
    position: relative;
    transition: transform var(--ease), box-shadow var(--ease);
}
.price-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-hover); }

.price-card--pro {
    background: var(--dark);
    border-color: var(--green);
    box-shadow: 0 0 0 1px rgba(34,217,122,0.08), var(--shadow-hover);
}
.price-card--pro:hover { box-shadow: 0 0 0 1px rgba(34,217,122,0.15), 0 16px 50px rgba(0,0,0,0.3); }

.price-badge {
    position: absolute;
    top: -13px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--green);
    color: var(--dark);
    font-size: 0.68rem;
    font-weight: 800;
    letter-spacing: 0.06em;
    padding: 4px 14px;
    border-radius: 100px;
    white-space: nowrap;
}

.price-name {
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    color: var(--text-muted);
    text-transform: uppercase;
    margin-bottom: 14px;
}
.price-card--pro .price-name { color: rgba(255,255,255,0.45); }

.price-amount { display: flex; align-items: flex-end; gap: 2px; margin-bottom: 4px; }
.price-currency {
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--text-dark);
    line-height: 1.7;
}
.price-card--pro .price-currency { color: var(--white); }
.price-number {
    font-size: 3.2rem;
    font-weight: 900;
    color: var(--text-dark);
    line-height: 1;
    letter-spacing: -0.04em;
}
.price-card--pro .price-number { color: var(--white); }

.price-period { font-size: 0.8rem; color: var(--text-muted); margin-bottom: 10px; }
.price-card--pro .price-period { color: rgba(255,255,255,0.38); }

.price-desc {
    font-size: 0.83rem;
    color: var(--text-muted);
    margin-bottom: 24px;
    padding-bottom: 24px;
    border-bottom: 1px solid var(--border);
    line-height: 1.55;
}
.price-card--pro .price-desc {
    color: rgba(255,255,255,0.42);
    border-bottom-color: rgba(255,255,255,0.08);
}

.price-features {
    list-style: none;
    margin-bottom: 28px;
    display: flex;
    flex-direction: column;
    gap: 12px;
}
.price-features li {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.85rem;
    color: var(--text-mid);
}
.price-card--pro .price-features li { color: rgba(255,255,255,0.78); }
.price-features li.disabled {
    opacity: 0.42;
    text-decoration: line-through;
    text-decoration-color: rgba(0,0,0,0.25);
}

.price-check {
    width: 20px;
    height: 20px;
    border-radius: 50%;
    background: rgba(34,217,122,0.14);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    color: var(--green);
}
.price-features li.disabled .price-check {
    background: rgba(0,0,0,0.06);
    color: var(--text-muted);
}

.price-cta {
    width: 100%;
    justify-content: center;
    padding: 13px;
    font-size: 0.9rem;
    border-radius: var(--radius);
}
/* override for basic card */
.price-card:not(.price-card--pro) .price-cta {
    background: transparent;
    color: var(--text-dark);
    border-color: rgba(0,0,0,0.18);
}
.price-card:not(.price-card--pro) .price-cta:hover {
    background: var(--bg-alt);
    border-color: var(--text-mid);
    box-shadow: none;
    transform: translateY(-1px);
}

.pricing-note {
    text-align: center;
    font-size: 0.78rem;
    color: var(--text-muted);
    margin-top: 28px;
}

/* ===========================
   BILLING TOGGLE
=========================== */
.billing-toggle {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    margin-bottom: 40px;
}
.billing-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 9px 22px;
    border-radius: 100px;
    font-size: 0.87rem;
    font-weight: 600;
    cursor: pointer;
    border: 2px solid var(--border);
    background: transparent;
    color: var(--text-muted);
    transition: all var(--ease);
}
.billing-btn:hover { border-color: var(--text-mid); color: var(--text-dark); }
.billing-btn--active {
    background: var(--dark);
    color: var(--white);
    border-color: var(--dark);
}
.billing-save-badge {
    background: var(--green);
    color: var(--dark);
    font-size: 0.66rem;
    font-weight: 800;
    padding: 2px 9px;
    border-radius: 100px;
    letter-spacing: 0.02em;
}

.price-saving {
    display: none;
    font-size: 0.8rem;
    color: var(--green);
    font-weight: 600;
    margin-bottom: 16px;
    padding: 6px 12px;
    background: rgba(34, 217, 122, 0.08);
    border-radius: 7px;
    border: 1px solid rgba(34, 217, 122, 0.2);
}
.price-card--pro .price-saving {
    background: rgba(34, 217, 122, 0.13);
    border-color: rgba(34, 217, 122, 0.28);
}

/* ===========================
   FAQ
=========================== */
.faq { background: var(--bg-light); padding: 88px 0; }

.faq-list {
    max-width: 720px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.faq-item {
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    overflow: hidden;
    transition: border-color var(--ease), box-shadow var(--ease);
}
details.faq-item[open] {
    border-color: rgba(34,217,122,0.3);
    box-shadow: 0 4px 20px rgba(34,217,122,0.07);
}

/* summary — remove native triangle marker */
.faq-question {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    padding: 18px 22px;
    cursor: pointer;
    user-select: none;
    list-style: none;
}
.faq-question::-webkit-details-marker { display: none; }
.faq-question::marker { display: none; }
.faq-question span:first-child {
    font-size: 0.93rem;
    font-weight: 600;
    color: var(--text-dark);
    line-height: 1.4;
}

.faq-icon {
    width: 30px;
    height: 30px;
    border-radius: 50%;
    background: var(--bg-light);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    transition: background var(--ease), transform var(--ease);
    color: var(--text-muted);
    pointer-events: none;
}
details[open].faq-item .faq-icon {
    background: var(--green);
    transform: rotate(45deg);
    color: var(--dark);
}

.faq-answer {
    padding: 0 22px;
}
.faq-answer p {
    font-size: 0.88rem;
    color: var(--text-muted);
    line-height: 1.72;
    padding-bottom: 20px;
}
/* slide-in animation when details opens */
details[open] .faq-answer {
    animation: faqOpen 0.28s ease;
}
@keyframes faqOpen {
    from { opacity: 0; transform: translateY(-6px); }
    to   { opacity: 1; transform: translateY(0); }
}

/* ===========================
   FOOTER
=========================== */
.footer {
    background: var(--dark);
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    padding: 40px 0 24px;
}
/* logo image size in footer */
.footer .logo-image { width: 36px; height: 36px; }

.footer-top {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 24px;
    padding-bottom: 28px;
    border-bottom: 1px solid rgba(255,255,255,0.06);
    margin-bottom: 20px;
}

.footer-brand { display: flex; flex-direction: column; gap: 10px; }
.footer-tagline { font-size: 0.8rem; color: rgba(255,255,255,0.3); }

.footer-social { display: flex; gap: 10px; align-items: center; }

.social-link {
    width: 36px;
    height: 36px;
    border-radius: 9px;
    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(255,255,255,0.08);
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(255,255,255,0.45);
    transition: background var(--ease), border-color var(--ease), color var(--ease), transform var(--ease);
}
.social-link:hover { transform: translateY(-3px); }

.social-link.whatsapp:hover  { background: rgba(37,211,102,0.14); border-color: rgba(37,211,102,0.35); color: #25d366; }
.social-link.instagram:hover { background: rgba(228,64,95,0.12);  border-color: rgba(228,64,95,0.3);   color: #e4405f; }
.social-link.facebook:hover  { background: rgba(24,119,242,0.12); border-color: rgba(24,119,242,0.3);  color: #1877f2; }
.social-link.tiktok:hover    { background: rgba(255,255,255,0.08);border-color: rgba(255,255,255,0.2); color: var(--white); }

.footer-bottom {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
}
.footer-copy { font-size: 0.76rem; color: rgba(255,255,255,0.28); }
.footer-links { display: flex; gap: 20px; }
.footer-links a { font-size: 0.76rem; color: rgba(255,255,255,0.28); transition: color var(--ease); }
.footer-links a:hover { color: rgba(255,255,255,0.6); }

/* ===========================
   WHATSAPP FLOAT
=========================== */
.whatsapp-float {
    position: fixed;
    bottom: 28px;
    right: 28px;
    z-index: 300;
    width: 58px;
    height: 58px;
    border-radius: 50%;
    background: #25d366;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    box-shadow: 0 6px 28px rgba(37,211,102,0.48);
    transition: transform var(--ease), box-shadow var(--ease);
}
.whatsapp-float:hover {
    transform: scale(1.1) translateY(-2px);
    box-shadow: 0 12px 36px rgba(37,211,102,0.55);
}
.whatsapp-float::before {
    content: '';
    position: absolute;
    inset: -5px;
    border-radius: 50%;
    border: 2px solid rgba(37,211,102,0.35);
    animation: wa-ring 2.8s infinite;
}
@keyframes wa-ring {
    0%   { transform: scale(1); opacity: 0.7; }
    100% { transform: scale(1.55); opacity: 0; }
}

/* ===========================
   SCROLL ANIMATIONS
=========================== */
/* Visible by default. JS adds .will-animate only to below-fold elements. */
.fade-in { }

.fade-in.will-animate {
    opacity: 0;
    transform: translateY(22px);
    transition: opacity 0.55s ease, transform 0.55s ease;
}
.fade-in.will-animate.visible {
    opacity: 1;
    transform: translateY(0);
}

/* stagger — only applies when will-animate is set */
.features-grid .fade-in.will-animate:nth-child(2),
.steps-grid   .fade-in.will-animate:nth-child(2),
.stats-grid   .fade-in.will-animate:nth-child(2),
.pricing-grid .fade-in.will-animate:nth-child(2) { transition-delay: 0.09s; }

.features-grid .fade-in.will-animate:nth-child(3),
.steps-grid   .fade-in.will-animate:nth-child(3),
.stats-grid   .fade-in.will-animate:nth-child(3) { transition-delay: 0.18s; }

.features-grid .fade-in.will-animate:nth-child(4),
.stats-grid   .fade-in.will-animate:nth-child(4) { transition-delay: 0.27s; }

.features-grid .fade-in.will-animate:nth-child(5) { transition-delay: 0.36s; }
.features-grid .fade-in.will-animate:nth-child(6) { transition-delay: 0.45s; }

/* ===========================
   RESPONSIVE
=========================== */
@media (max-width: 1100px) {
    .dashboard-preview { width: 360px; }
}

@media (max-width: 900px) {
    .features-grid { grid-template-columns: repeat(2, 1fr); }
    .stats-grid    { grid-template-columns: repeat(2, 1fr); }
    .pricing-grid  { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
    .nav-links, .nav-cta { display: none; }
    .hamburger { display: flex; }

    .hero { padding-top: 100px; }
    .hero-container {
        flex-direction: column;
        gap: 36px;
        padding-bottom: 60px;
        text-align: center;
    }
    .hero-subtitle { margin-left: auto; margin-right: auto; }
    .hero-ctas     { justify-content: center; }

    .dashboard-preview { width: 100%; max-width: 420px; margin: 0 auto; }

    .section-header { margin-bottom: 40px; }

    .features-grid,
    .steps-grid { grid-template-columns: 1fr; }

    .pricing-grid { grid-template-columns: 1fr; max-width: 460px; }

    .cta-card { padding: 44px 28px; }

    .footer-top    { flex-direction: column; gap: 20px; }
    .footer-bottom { flex-direction: column; text-align: center; gap: 12px; }
    .footer-links  { justify-content: center; }

    .whatsapp-float { bottom: 20px; right: 20px; width: 52px; height: 52px; }
}

@media (max-width: 480px) {
    .container { padding: 0 18px; }
    .stats-grid { grid-template-columns: repeat(2, 1fr); }
    .hero-ctas { flex-direction: column; align-items: center; }
    .price-card { padding: 28px 22px; }
}
