/* ============================================================
   KMSoft Landing Page – Nature Tech téma
   Szín rendszer: zöld #7BBA40 + sötét zöld-szürke #323D37
   ============================================================ */

:root {
    --color-primary:       #7BBA40;
    --color-primary-dark:  #5a9a1f;
    --color-secondary:     #323D37;
    --color-accent:        #8BC53F;
    --color-bg:            #f8faf6;
    --color-surface:       #ffffff;
    --color-surface-alt:   #f0f4ed;
    --color-text:          #1a1f1c;
    --color-text-muted:    #5c6860;
    --color-border:        rgba(50, 61, 55, 0.12);
    --color-success:       #28ca41;
    --color-warning:       #f0a500;
    --color-error:         #e74c3c;
    --shadow-sm:           0 2px 8px rgba(50,61,55,0.08);
    --shadow-md:           0 4px 20px rgba(50,61,55,0.10);
    --shadow-lg:           0 8px 40px rgba(50,61,55,0.15);
    --gradient-primary:    linear-gradient(135deg, #7BBA40 0%, #5a9a1f 100%);
    --gradient-dark:       linear-gradient(135deg, #323D37 0%, #1a1f1c 100%);
    --radius-sm:           6px;
    --radius-md:           10px;
    --radius-lg:           16px;
    --radius-xl:           24px;
}

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

html { scroll-behavior: smooth; }

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    font-size: 16px;
    line-height: 1.6;
    color: var(--color-text);
    background: var(--color-bg);
    -webkit-font-smoothing: antialiased;
}

a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }

/* ============================================================
   TOPBAR NOTICE
   ============================================================ */
.topbar-notice {
    background: var(--gradient-dark);
    color: rgba(255,255,255,0.9);
    text-align: center;
    font-size: 0.82rem;
    padding: 8px 1rem;
    letter-spacing: 0.01em;
}
.topbar-notice a {
    color: var(--color-primary);
    font-weight: 600;
    text-decoration: underline;
}

/* ============================================================
   NAVIGÁCIÓ
   ============================================================ */
.main-nav {
    position: sticky;
    top: 0;
    z-index: 100;
    background: rgba(255,255,255,0.97);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid var(--color-border);
    box-shadow: var(--shadow-sm);
}
.nav-inner {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
    height: 64px;
    display: flex;
    align-items: center;
    gap: 2rem;
}
.nav-logo {
    display: flex;
    align-items: center;
    gap: 0.6rem;
    flex-shrink: 0;
}
.nav-logo img {
    height: 36px;
    width: auto;
}
.nav-logo-text {
    font-size: 1.15rem;
    font-weight: 800;
    color: var(--color-secondary);
    letter-spacing: -0.02em;
}
.nav-logo-text span { color: var(--color-primary); }

.nav-menu {
    display: flex;
    align-items: center;
    gap: 0.25rem;
    list-style: none;
    flex: 1;
}
.nav-menu a {
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--color-text-muted);
    padding: 6px 12px;
    border-radius: var(--radius-sm);
    transition: all .15s;
}
.nav-menu a:hover { background: var(--color-surface-alt); color: var(--color-text); }

.nav-actions {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}
.nav-login {
    font-size: 0.88rem;
    font-weight: 600;
    color: var(--color-secondary);
    padding: 8px 16px;
    border: 1px solid var(--color-border);
    border-radius: var(--radius-sm);
    transition: all .15s;
}
.nav-login:hover { background: var(--color-surface-alt); }
.nav-cta {
    font-size: 0.88rem;
    font-weight: 700;
    color: white;
    padding: 8px 18px;
    background: var(--gradient-primary);
    border-radius: var(--radius-sm);
    transition: all .15s;
    box-shadow: 0 2px 8px rgba(123,186,64,0.3);
}
.nav-cta:hover { background: var(--color-primary-dark); transform: translateY(-1px); }

.nav-hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 4px;
}
.nav-hamburger span {
    width: 22px; height: 2px;
    background: var(--color-secondary);
    border-radius: 2px;
    display: block;
    transition: all .2s;
}

/* ============================================================
   HERO
   ============================================================ */
.hero {
    background: var(--color-surface);
    padding: 5rem 2rem 4rem;
    text-align: center;
    position: relative;
    overflow: hidden;
}
.hero::before {
    content: '';
    position: absolute;
    top: -200px; left: 50%;
    transform: translateX(-50%);
    width: 900px; height: 600px;
    background: radial-gradient(ellipse at center, rgba(123,186,64,0.08) 0%, transparent 70%);
    pointer-events: none;
}
.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    background: rgba(123,186,64,0.12);
    color: var(--color-primary);
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    padding: 4px 14px;
    border-radius: 20px;
    margin-bottom: 1.5rem;
    border: 1px solid rgba(123,186,64,0.25);
}
.hero-badge svg { width: 13px; height: 13px; }
.hero h1 {
    font-size: clamp(2.2rem, 5vw, 3.5rem);
    font-weight: 900;
    line-height: 1.1;
    letter-spacing: -0.03em;
    color: var(--color-secondary);
    max-width: 800px;
    margin: 0 auto 1.25rem;
}
.hero h1 .highlight { color: var(--color-primary); }
.hero-desc {
    font-size: 1.1rem;
    color: var(--color-text-muted);
    max-width: 560px;
    margin: 0 auto 2.5rem;
    line-height: 1.7;
}
.hero-actions {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 3.5rem;
}
.btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.95rem;
    font-weight: 700;
    padding: 12px 28px;
    border-radius: var(--radius-md);
    transition: all .2s;
    cursor: pointer;
    border: none;
    text-decoration: none;
}
.btn svg { width: 17px; height: 17px; }
.btn-primary {
    background: var(--gradient-primary);
    color: white;
    box-shadow: 0 4px 16px rgba(123,186,64,0.35);
}
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 6px 24px rgba(123,186,64,0.4); }
.btn-outline {
    background: transparent;
    color: var(--color-secondary);
    border: 2px solid var(--color-border);
}
.btn-outline:hover { border-color: var(--color-secondary); background: var(--color-surface-alt); }
.btn-sm { font-size: 0.85rem; padding: 8px 18px; }

.hero-stats {
    display: flex;
    gap: 3rem;
    justify-content: center;
    flex-wrap: wrap;
}
.stat-item { text-align: center; }
.stat-value {
    font-size: 2rem;
    font-weight: 900;
    color: var(--color-primary);
    line-height: 1;
}
.stat-label {
    font-size: 0.8rem;
    color: var(--color-text-muted);
    margin-top: 3px;
    text-transform: uppercase;
    letter-spacing: 0.04em;
}

/* ============================================================
   TERMÉKEK – FŐ SZEKCIÓ
   ============================================================ */
.section {
    padding: 5rem 2rem;
}
.section-inner {
    max-width: 1200px;
    margin: 0 auto;
}
.section-header {
    text-align: center;
    margin-bottom: 3rem;
}
.section-badge {
    display: inline-block;
    background: rgba(123,186,64,0.1);
    color: var(--color-primary);
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    padding: 4px 12px;
    border-radius: 20px;
    margin-bottom: 0.75rem;
}
.section-header h2 {
    font-size: clamp(1.6rem, 3vw, 2.4rem);
    font-weight: 800;
    color: var(--color-secondary);
    letter-spacing: -0.02em;
    margin-bottom: 0.75rem;
}
.section-header p {
    font-size: 1rem;
    color: var(--color-text-muted);
    max-width: 520px;
    margin: 0 auto;
}

.bg-surface { background: var(--color-surface); }
.bg-alt     { background: var(--color-bg); }

/* ============================================================
   TERMÉK KÁRTYÁK
   ============================================================ */
.products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(340px, 1fr));
    gap: 1.5rem;
}

.product-card {
    background: var(--color-surface);
    border: 1px solid var(--color-border);
    border-radius: var(--radius-lg);
    padding: 2rem;
    display: flex;
    flex-direction: column;
    gap: 1rem;
    transition: all .2s;
    position: relative;
    overflow: hidden;
}
.product-card:hover { box-shadow: var(--shadow-md); transform: translateY(-2px); }
.product-card.featured {
    border: 2px solid var(--color-primary);
    box-shadow: var(--shadow-md);
}
.product-card.coming-soon {
    opacity: 0.75;
}
.product-card.coming-soon:hover { transform: none; box-shadow: none; }

.product-card-ribbon {
    position: absolute;
    top: 0; right: 0;
    background: var(--gradient-primary);
    color: white;
    font-size: 0.7rem;
    font-weight: 800;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    padding: 4px 14px;
    border-radius: 0 var(--radius-lg) 0 var(--radius-md);
}
.product-card-ribbon.warning {
    background: linear-gradient(135deg, #f0a500, #d4890a);
}
.product-card-ribbon.muted {
    background: linear-gradient(135deg, #8a9b91, #5c6860);
}

.product-icon {
    width: 52px; height: 52px;
    border-radius: var(--radius-md);
    background: rgba(123,186,64,0.1);
    color: var(--color-primary);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}
.product-icon svg { width: 26px; height: 26px; }
.product-icon.blue   { background: rgba(52,152,219,0.1); color: #3498db; }
.product-icon.orange { background: rgba(240,165,0,0.1);  color: var(--color-warning); }
.product-icon.purple { background: rgba(155,89,182,0.1); color: #9b59b6; }
.product-icon.muted  { background: rgba(50,61,55,0.07);  color: var(--color-text-muted); }

.product-header {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
}
.product-title-group { flex: 1; }
.product-name {
    font-size: 1.15rem;
    font-weight: 800;
    color: var(--color-secondary);
    letter-spacing: -0.01em;
}
.product-subtitle {
    font-size: 0.8rem;
    color: var(--color-text-muted);
    margin-top: 2px;
}

.status-pill {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    font-size: 0.72rem;
    font-weight: 700;
    padding: 3px 10px;
    border-radius: 12px;
    white-space: nowrap;
}
.status-pill svg { width: 11px; height: 11px; }
.status-pill.live    { background: rgba(40,202,65,0.15); color: #1ea03a; }
.status-pill.wip     { background: rgba(240,165,0,0.15);  color: #b37a00; }
.status-pill.planned { background: rgba(50,61,55,0.1);    color: var(--color-text-muted); }

.product-desc {
    font-size: 0.88rem;
    color: var(--color-text-muted);
    line-height: 1.6;
}
.product-features {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 5px;
    font-size: 0.83rem;
    color: var(--color-text-muted);
}
.product-features li {
    display: flex;
    align-items: flex-start;
    gap: 6px;
}
.product-features li svg {
    width: 14px; height: 14px;
    color: var(--color-primary);
    flex-shrink: 0;
    margin-top: 2px;
}
.product-features li.muted svg { color: var(--color-text-muted); }

.product-actions { margin-top: auto; display: flex; gap: 0.75rem; align-items: center; flex-wrap: wrap; }

.product-notify {
    display: flex;
    gap: 0.5rem;
    align-items: center;
    flex: 1;
}
.product-notify input {
    flex: 1;
    min-width: 0;
    font-size: 0.83rem;
    padding: 8px 12px;
    border: 1px solid var(--color-border);
    border-radius: var(--radius-sm);
    background: var(--color-surface-alt);
    color: var(--color-text);
    outline: none;
    transition: border .15s;
}
.product-notify input:focus { border-color: var(--color-primary); }
.product-notify input::placeholder { color: var(--color-text-muted); }
.product-notify .btn-sm {
    background: var(--color-surface-alt);
    color: var(--color-secondary);
    border: 1px solid var(--color-border);
    padding: 8px 14px;
    font-size: 0.8rem;
    font-weight: 700;
    cursor: pointer;
    border-radius: var(--radius-sm);
    white-space: nowrap;
    transition: all .15s;
}
.product-notify .btn-sm:hover { background: var(--color-primary); color: white; border-color: var(--color-primary); }

/* ============================================================
   MUNKANYILVÁNTARTÓ – RÉSZLETEK
   ============================================================ */
.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
    gap: 1.25rem;
}
.feature-card {
    background: var(--color-bg);
    border: 1px solid var(--color-border);
    border-radius: var(--radius-md);
    padding: 1.5rem;
    transition: all .2s;
}
.feature-card:hover { box-shadow: var(--shadow-sm); border-color: rgba(123,186,64,0.35); }
.feature-icon {
    width: 40px; height: 40px;
    background: rgba(123,186,64,0.1);
    color: var(--color-primary);
    border-radius: var(--radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 0.85rem;
}
.feature-icon svg { width: 20px; height: 20px; }
.feature-card h3 {
    font-size: 0.95rem;
    font-weight: 700;
    color: var(--color-secondary);
    margin-bottom: 0.4rem;
}
.feature-card p {
    font-size: 0.83rem;
    color: var(--color-text-muted);
    line-height: 1.5;
}

/* ============================================================
   APP PREVIEW MOCKUP
   ============================================================ */
.app-mockup {
    max-width: 900px;
    margin: 3rem auto 0;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    border: 1px solid var(--color-border);
}
.mockup-bar {
    background: var(--color-secondary);
    padding: 12px 16px;
    display: flex;
    align-items: center;
    gap: 8px;
}
.mockup-dot {
    width: 11px; height: 11px;
    border-radius: 50%;
    background: rgba(255,255,255,0.25);
}
.mockup-dot:first-child { background: #e74c3c; }
.mockup-dot:nth-child(2) { background: #f0a500; }
.mockup-dot:nth-child(3) { background: #28ca41; }
.mockup-url {
    flex: 1;
    background: rgba(255,255,255,0.1);
    border-radius: 6px;
    padding: 4px 10px;
    font-size: 0.75rem;
    color: rgba(255,255,255,0.6);
    font-family: 'JetBrains Mono', monospace;
}
.mockup-body {
    background: var(--color-bg);
    display: flex;
    height: 320px;
}
.mockup-sidebar {
    width: 180px;
    background: var(--color-surface-alt);
    border-right: 1px solid var(--color-border);
    padding: 1rem 0;
    flex-shrink: 0;
}
.mockup-nav-item {
    font-size: 0.78rem;
    padding: 7px 16px;
    color: var(--color-text-muted);
    display: flex;
    align-items: center;
    gap: 8px;
}
.mockup-nav-item.active {
    background: var(--color-primary);
    color: white;
}
.mockup-nav-dot {
    width: 8px; height: 8px;
    border-radius: 50%;
    background: currentColor;
    opacity: 0.5;
    flex-shrink: 0;
}
.mockup-nav-item.active .mockup-nav-dot { opacity: 1; }
.mockup-main {
    flex: 1;
    padding: 1.25rem;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    overflow: hidden;
}
.mockup-topbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.mockup-title { font-size: 0.9rem; font-weight: 700; color: var(--color-secondary); }
.mockup-btn {
    background: var(--color-primary);
    color: white;
    font-size: 0.72rem;
    font-weight: 700;
    padding: 5px 12px;
    border-radius: 5px;
}
.mockup-stats {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 8px;
}
.mockup-stat {
    background: var(--color-surface);
    border: 1px solid var(--color-border);
    border-radius: 8px;
    padding: 10px;
}
.mockup-stat-val { font-size: 1.1rem; font-weight: 800; color: var(--color-primary); }
.mockup-stat-lbl { font-size: 0.65rem; color: var(--color-text-muted); }
.mockup-rows { display: flex; flex-direction: column; gap: 5px; flex: 1; }
.mockup-row {
    background: var(--color-surface);
    border: 1px solid var(--color-border);
    border-radius: 6px;
    padding: 8px 12px;
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.73rem;
}
.mockup-badge {
    font-size: 0.63rem;
    font-weight: 700;
    padding: 2px 7px;
    border-radius: 4px;
    background: rgba(123,186,64,0.15);
    color: var(--color-primary);
    white-space: nowrap;
}
.mockup-badge.orange { background: rgba(240,165,0,0.15); color: var(--color-warning); }
.mockup-badge.blue   { background: rgba(52,152,219,0.15); color: #3498db; }
.mockup-row-name { flex: 1; color: var(--color-text); font-weight: 500; }
.mockup-row-sub  { color: var(--color-text-muted); }

/* ============================================================
   ÁRAZÁS
   ============================================================ */
.pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
    gap: 1.25rem;
    max-width: 1000px;
    margin: 0 auto;
}
.pricing-card {
    background: var(--color-surface);
    border: 1px solid var(--color-border);
    border-radius: var(--radius-lg);
    padding: 2rem 1.5rem;
    display: flex;
    flex-direction: column;
    gap: 1rem;
    transition: all .2s;
}
.pricing-card:hover { box-shadow: var(--shadow-md); }
.pricing-card.featured {
    border: 2px solid var(--color-primary);
    box-shadow: var(--shadow-md);
    position: relative;
}
.pricing-featured-badge {
    position: absolute;
    top: -1px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--gradient-primary);
    color: white;
    font-size: 0.7rem;
    font-weight: 800;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    padding: 3px 14px;
    border-radius: 0 0 10px 10px;
}
.pricing-name {
    font-size: 1rem;
    font-weight: 800;
    color: var(--color-secondary);
}
.pricing-desc { font-size: 0.82rem; color: var(--color-text-muted); }
.pricing-price {
    display: flex;
    align-items: baseline;
    gap: 4px;
}
.price-amount {
    font-size: 2rem;
    font-weight: 900;
    color: var(--color-secondary);
    letter-spacing: -0.03em;
}
.price-period { font-size: 0.82rem; color: var(--color-text-muted); }
.pricing-free { font-size: 1.5rem; font-weight: 800; color: var(--color-primary); }
.pricing-divider { border: none; border-top: 1px solid var(--color-border); }
.pricing-features {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 7px;
    flex: 1;
}
.pricing-features li {
    font-size: 0.83rem;
    color: var(--color-text-muted);
    display: flex;
    gap: 7px;
    align-items: flex-start;
}
.pricing-features li svg {
    width: 14px; height: 14px;
    color: var(--color-primary);
    flex-shrink: 0;
    margin-top: 2px;
}
.pricing-features li.no svg { color: #ccc; }
.pricing-note {
    font-size: 0.78rem;
    color: var(--color-text-muted);
    text-align: center;
    background: var(--color-surface-alt);
    border-radius: var(--radius-sm);
    padding: 10px;
    margin-top: 1rem;
}
.pricing-note strong { color: var(--color-primary); }

/* ============================================================
   CTA SÁV
   ============================================================ */
.cta-section {
    background: var(--gradient-dark);
    padding: 5rem 2rem;
    text-align: center;
}
.cta-section h2 {
    font-size: clamp(1.8rem, 3.5vw, 2.8rem);
    font-weight: 900;
    color: white;
    letter-spacing: -0.02em;
    margin-bottom: 1rem;
}
.cta-section p {
    font-size: 1rem;
    color: rgba(255,255,255,0.7);
    max-width: 480px;
    margin: 0 auto 2rem;
}
.btn-white {
    background: white;
    color: var(--color-secondary);
    font-weight: 800;
}
.btn-white:hover { background: var(--color-surface-alt); transform: translateY(-2px); }
.btn-ghost {
    background: rgba(255,255,255,0.1);
    color: white;
    border: 1px solid rgba(255,255,255,0.2);
}
.btn-ghost:hover { background: rgba(255,255,255,0.18); }

/* ============================================================
   LÁBLÉC
   ============================================================ */
.main-footer {
    background: var(--color-secondary);
    color: white;
    padding: 3rem 2rem 1.5rem;
}
.footer-inner {
    max-width: 1200px;
    margin: 0 auto;
}
.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 3rem;
    padding-bottom: 2rem;
    border-bottom: 1px solid rgba(255,255,255,0.1);
    margin-bottom: 1.5rem;
}
.footer-brand-logo {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 0.75rem;
}
.footer-brand-logo img { height: 32px; filter: brightness(0) invert(1); }
.footer-brand-name { font-size: 1.1rem; font-weight: 800; color: white; }
.footer-brand-desc { font-size: 0.82rem; color: rgba(255,255,255,0.55); line-height: 1.6; }
.footer-col h4 {
    font-size: 0.75rem;
    font-weight: 700;
    color: var(--color-primary);
    text-transform: uppercase;
    letter-spacing: 0.06em;
    margin-bottom: 1rem;
}
.footer-col ul { list-style: none; display: flex; flex-direction: column; gap: 8px; }
.footer-col a {
    font-size: 0.85rem;
    color: rgba(255,255,255,0.6);
    transition: color .15s;
}
.footer-col a:hover { color: var(--color-primary); }
.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 1rem;
    flex-wrap: wrap;
}
.footer-bottom p { font-size: 0.78rem; color: rgba(255,255,255,0.4); }
.footer-bottom a { color: rgba(255,255,255,0.5); }
.footer-bottom a:hover { color: var(--color-primary); }

/* ============================================================
   RESZPONZÍV
   ============================================================ */
@media (max-width: 900px) {
    .footer-grid { grid-template-columns: 1fr 1fr; gap: 2rem; }
    .mockup-stats { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
    .nav-menu, .nav-login { display: none; }
    .nav-hamburger { display: flex; }
    .nav-inner { padding: 0 1rem; }

    .nav-menu.open {
        display: flex;
        flex-direction: column;
        position: absolute;
        top: 64px; left: 0; right: 0;
        background: var(--color-surface);
        border-bottom: 1px solid var(--color-border);
        box-shadow: var(--shadow-md);
        padding: 1rem;
        gap: 0.25rem;
    }
    .nav-menu.open a { display: block; }

    .hero { padding: 3rem 1rem 2.5rem; }
    .hero-stats { gap: 1.5rem; }
    .products-grid { grid-template-columns: 1fr; }
    .features-grid { grid-template-columns: 1fr 1fr; }
    .pricing-grid { grid-template-columns: 1fr 1fr; }
    .mockup-sidebar { width: 120px; }
    .mockup-stats { grid-template-columns: repeat(2,1fr); }
}

@media (max-width: 520px) {
    .features-grid { grid-template-columns: 1fr; }
    .pricing-grid { grid-template-columns: 1fr; }
    .footer-grid { grid-template-columns: 1fr; gap: 1.5rem; }
    .hero-actions { flex-direction: column; align-items: center; }
    .cta-section .hero-actions { flex-direction: row; justify-content: center; }
    .mockup-body { display: none; }
}

/* Scrollbar */
::-webkit-scrollbar { width: 8px; }
::-webkit-scrollbar-track { background: var(--color-bg); }
::-webkit-scrollbar-thumb { background: var(--color-primary); border-radius: 4px; }
::selection { background: var(--color-primary); color: white; }
