/* =============================================
   BESKED - Website Stylesheet
   ============================================= */

/* --- RESET & BASE --- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
    --green: #22c55e;
    --green-dark: #16a34a;
    --green-light: #dcfce7;
    --blue: #3b82f6;
    --blue-light: #dbeafe;
    --purple: #a855f7;
    --purple-light: #f3e8ff;
    --orange: #f59e0b;
    --orange-light: #fef3c7;
    --red: #ef4444;
    --red-light: #fee2e2;
    --teal: #14b8a6;
    --teal-light: #ccfbf1;
    --pink: #ec4899;
    --pink-light: #fce7f3;
    --cyan: #06b6d4;

    --dark: #0f172a;
    --dark-2: #1e293b;
    --dark-3: #334155;
    --gray-50: #f8fafc;
    --gray-100: #f1f5f9;
    --gray-200: #e2e8f0;
    --gray-300: #cbd5e1;
    --gray-400: #94a3b8;
    --gray-500: #64748b;
    --gray-600: #475569;
    --gray-700: #334155;
    --gray-800: #1e293b;
    --gray-900: #0f172a;

    --font: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    --radius: 12px;
    --radius-lg: 20px;
    --radius-full: 9999px;
    --shadow: 0 1px 3px rgba(0,0,0,.08), 0 1px 2px rgba(0,0,0,.06);
    --shadow-md: 0 4px 6px -1px rgba(0,0,0,.08), 0 2px 4px -2px rgba(0,0,0,.06);
    --shadow-lg: 0 10px 15px -3px rgba(0,0,0,.08), 0 4px 6px -4px rgba(0,0,0,.06);
    --shadow-xl: 0 20px 25px -5px rgba(0,0,0,.08), 0 8px 10px -6px rgba(0,0,0,.06);

    --transition: .2s ease;

    /* --- SEMANTIC THEME ALIASES (light defaults; overridden in theme.css) --- */
    --bg: #ffffff;
    --bg-elevated: var(--gray-50);
    --bg-inverse: var(--dark);
    --bg-inverse-2: var(--dark-2);
    --bg-inverse-3: var(--dark-3);
    --surface-card: #ffffff;
    --surface-glass: rgba(255,255,255,.85);
    --border: var(--gray-200);
    --border-strong: var(--gray-300);
    --text: var(--gray-800);
    --text-strong: var(--gray-900);
    --text-muted: var(--gray-500);
    --text-subtle: var(--gray-400);
    --text-on-inverse: #ffffff;
    --text-on-inverse-muted: var(--gray-400);
    --code-bg: var(--gray-900);
    --code-text: #e2e8f0;
    --logo-light-display: none;
    --logo-dark-display: block;
    --hero-trust-light: rgba(255,255,255,.5);
}

html { scroll-behavior: smooth; scroll-padding-top: 80px; }
body {
    font-family: var(--font);
    color: var(--text);
    line-height: 1.6;
    background: var(--bg);
    -webkit-font-smoothing: antialiased;
    overflow-x: hidden;
    transition: background-color .3s ease, color .3s ease;
}
img { max-width: 100%; height: auto; display: block; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }
button { border: none; background: none; cursor: pointer; font-family: inherit; }

/* --- CONTAINER --- */
.container { max-width: 1200px; margin: 0 auto; padding: 0 24px; }
.container--sm { max-width: 800px; }

/* --- TYPOGRAPHY --- */
.text-gradient {
    background: linear-gradient(135deg, var(--green) 0%, var(--teal) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}
.text-red { color: var(--red); }

/* --- BUTTONS --- */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-weight: 600;
    font-size: 15px;
    padding: 12px 24px;
    border-radius: var(--radius);
    transition: all var(--transition);
    white-space: nowrap;
    cursor: pointer;
    border: 2px solid transparent;
}
.btn--primary {
    background: var(--green);
    color: #fff;
    border-color: var(--green);
}
.btn--primary:hover { background: var(--green-dark); border-color: var(--green-dark); transform: translateY(-1px); box-shadow: 0 4px 12px rgba(34,197,94,.35); }
.btn--outline {
    border-color: var(--border-strong);
    color: var(--text);
    background: var(--surface-card);
}
.btn--outline:hover { border-color: var(--green); color: var(--green); }
.btn--ghost { color: var(--text-muted); }
.btn--ghost:hover { color: var(--green); }
.btn--white { background: #fff; color: var(--dark); border-color: #fff; }
.btn--white:hover { background: var(--gray-100); transform: translateY(-1px); box-shadow: 0 4px 12px rgba(255,255,255,.25); }
.btn--lg { padding: 16px 32px; font-size: 16px; border-radius: var(--radius-lg); }
.btn--block { width: 100%; justify-content: center; }

/* --- NAVBAR --- */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: var(--surface-glass);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-bottom: 1px solid var(--border);
    transition: all .3s;
}
.navbar--scrolled { box-shadow: var(--shadow-md); }
.navbar__inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 72px;
}
.navbar__logo-img { height: 32px; width: auto; }
.navbar__links {
    display: flex;
    gap: 32px;
}
.navbar__links a {
    font-size: 14px;
    font-weight: 500;
    color: var(--text-muted);
    transition: color var(--transition);
}
.navbar__links a:hover { color: var(--green); }
.navbar__actions { display: flex; align-items: center; gap: 12px; }
.navbar__burger { display: none; width: 32px; height: 32px; flex-direction: column; justify-content: center; gap: 5px; }
.navbar__burger span { display: block; width: 100%; height: 2px; background: var(--text); border-radius: 2px; transition: all .3s; }
.navbar__logo-img--dark { display: var(--logo-dark-display); }
.navbar__logo-img--light { display: var(--logo-light-display); }

/* --- THEME TOGGLE --- */
.theme-toggle {
    width: 40px;
    height: 40px;
    border-radius: var(--radius-full);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: var(--text-muted);
    background: transparent;
    transition: all var(--transition);
    flex-shrink: 0;
}
.theme-toggle:hover { color: var(--green); background: var(--bg-elevated); }
.theme-toggle__sun, .theme-toggle__moon { width: 20px; height: 20px; }
.theme-toggle__moon { display: none; }
[data-theme="dark"] .theme-toggle__sun { display: none; }
[data-theme="dark"] .theme-toggle__moon { display: block; }
.mobile-menu .theme-toggle { width: 100%; height: 48px; border-radius: var(--radius); border: 1px solid var(--border); justify-content: center; gap: 8px; font-weight: 600; font-size: 14px; }
.mobile-menu .theme-toggle__label { display: inline; }
.theme-toggle__label { display: none; }

/* --- MOBILE MENU --- */
.mobile-menu {
    position: fixed;
    top: 72px;
    left: 0;
    right: 0;
    bottom: 0;
    background: var(--bg);
    z-index: 1100;
    padding: 24px;
    display: none;
    flex-direction: column;
}
.mobile-menu--open { display: flex; }
.mobile-menu__links { flex: 1; }
.mobile-menu__links li { border-bottom: 1px solid var(--border); }
.mobile-menu__links a { display: block; padding: 16px 0; font-size: 17px; font-weight: 500; color: var(--text); }
.mobile-menu__actions { display: flex; flex-direction: column; gap: 12px; padding-top: 24px; }

/* --- SECTIONS --- */
.section { padding: 100px 0; }
.section--dark { background: var(--bg-inverse); }
.section--light { background: var(--bg-elevated); }
.section--cta {
    background: linear-gradient(135deg, var(--bg-inverse) 0%, #1a3a2a 50%, var(--bg-inverse) 100%);
    padding: 120px 0;
    text-align: center;
}
.section__badge { text-align: center; margin-bottom: 16px; }
.section__title {
    text-align: center;
    font-size: clamp(28px, 4vw, 48px);
    font-weight: 800;
    line-height: 1.15;
    margin-bottom: 16px;
    letter-spacing: -0.02em;
}
.section__title--light { color: var(--text-on-inverse); }
.section__subtitle {
    text-align: center;
    font-size: 18px;
    color: var(--text-muted);
    max-width: 640px;
    margin: 0 auto 48px;
    line-height: 1.7;
}
.section__subtitle--light { color: var(--text-on-inverse-muted); }

/* --- BADGES --- */
.badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 6px 16px;
    border-radius: var(--radius-full);
    font-size: 13px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: .05em;
}
.badge--green { background: var(--green-light); color: var(--green-dark); }
.badge--red { background: var(--red-light); color: var(--red); }
.badge--blue { background: var(--blue-light); color: var(--blue); }
.badge--orange { background: var(--orange-light); color: var(--orange); }
.badge--cyan { background: rgba(6,182,212,.15); color: var(--cyan); }
.badge__dot { width: 8px; height: 8px; border-radius: 50%; background: var(--green); animation: pulse 2s infinite; }

@keyframes pulse {
    0%, 100% { opacity: 1; }
    50% { opacity: .4; }
}

/* --- HERO --- */
.hero {
    padding: 140px 0 80px;
    text-align: center;
    overflow: hidden;
}
.hero__badge { margin-bottom: 24px; }
.hero__title {
    font-size: clamp(32px, 5vw, 64px);
    font-weight: 900;
    line-height: 1.1;
    letter-spacing: -0.03em;
    margin-bottom: 24px;
}
.hero__subtitle {
    font-size: 18px;
    color: var(--text-muted);
    max-width: 640px;
    margin: 0 auto 32px;
    line-height: 1.7;
}
.hero__cta {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
    flex-wrap: wrap;
    margin-bottom: 16px;
}
.hero__trust {
    font-size: 13px;
    color: var(--text-subtle);
    text-transform: uppercase;
    letter-spacing: .05em;
    font-weight: 500;
}
.hero__trust--light { color: var(--hero-trust-light); }

/* Hero Visual */
.hero__visual {
    position: relative;
    max-width: 500px;
    margin: 60px auto 0;
}
.phone-mockup {
    background: linear-gradient(145deg, #075e54 0%, #128c7e 100%);
    border-radius: 32px;
    padding: 20px;
    box-shadow: 0 25px 50px rgba(0,0,0,.15);
    position: relative;
}
.phone-mockup__header {
    display: flex;
    align-items: center;
    gap: 12px;
    padding-bottom: 16px;
    border-bottom: 1px solid rgba(255,255,255,.1);
    margin-bottom: 16px;
}
.phone-mockup__avatar {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(255,255,255,.2);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-weight: 700;
    font-size: 18px;
}
.phone-mockup__name { color: #fff; font-weight: 600; font-size: 15px; }
.phone-mockup__status { color: rgba(255,255,255,.6); font-size: 12px; }
.phone-mockup__chat { display: flex; flex-direction: column; gap: 8px; }

.chat-bubble {
    max-width: 85%;
    padding: 10px 14px;
    border-radius: 12px;
    font-size: 14px;
    line-height: 1.5;
    position: relative;
}
.chat-bubble--incoming {
    background: #1e3a34;
    color: #e8e8e8;
    align-self: flex-start;
    border-bottom-left-radius: 4px;
}
.chat-bubble--outgoing {
    background: #005c4b;
    color: #e8e8e8;
    align-self: flex-end;
    border-bottom-right-radius: 4px;
}
.chat-bubble__time {
    display: block;
    text-align: right;
    font-size: 11px;
    color: rgba(255,255,255,.4);
    margin-top: 4px;
}

/* Floating Stats */
.hero__stats-float { display: none; }

.stat-card {
    background: var(--surface-card);
    border-radius: var(--radius);
    padding: 16px 20px;
    box-shadow: var(--shadow-lg);
    display: flex;
    align-items: center;
    gap: 12px;
    position: absolute;
    animation: float 6s ease-in-out infinite;
}
.stat-card--1 { top: 20%; left: -120px; animation-delay: 0s; }
.stat-card--2 { top: 50%; right: -130px; animation-delay: 2s; }
.stat-card--3 { bottom: 10%; left: -100px; animation-delay: 4s; }
.stat-card__icon { font-size: 24px; }
.stat-card__value { font-size: 20px; font-weight: 800; color: var(--text-strong); }
.stat-card__label { font-size: 12px; color: var(--text-muted); }

@keyframes float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-10px); }
}

/* --- COMPARISON --- */
.comparison {
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    gap: 24px;
    align-items: center;
    max-width: 900px;
    margin: 0 auto;
}
.comparison__card {
    border-radius: var(--radius-lg);
    padding: 32px;
}
.comparison__card--bad { background: rgba(239,68,68,.08); border: 1px solid rgba(239,68,68,.2); }
.comparison__card--good { background: rgba(34,197,94,.08); border: 1px solid rgba(34,197,94,.2); }
.comparison__header {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 16px;
    font-weight: 700;
    margin-bottom: 20px;
    padding-bottom: 16px;
    border-bottom: 1px solid rgba(255,255,255,.1);
}
.comparison__header--bad { color: var(--red); }
.comparison__header--good { color: var(--green); }
.comparison__list { display: flex; flex-direction: column; gap: 12px; }
.comparison__list li {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    font-size: 14px;
    color: var(--text-on-inverse-muted);
    line-height: 1.5;
}
.comparison__list li svg { flex-shrink: 0; margin-top: 2px; }
.comparison__vs {
    font-size: 14px;
    font-weight: 800;
    color: var(--text-subtle);
    background: var(--bg-inverse-2);
    width: 48px;
    height: 48px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* --- FEATURES GRID --- */
.features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}
.feature-card {
    background: var(--surface-card);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 32px;
    transition: all .3s;
}
.feature-card:hover { border-color: var(--green); transform: translateY(-4px); box-shadow: var(--shadow-lg); }
.feature-card__icon {
    width: 48px;
    height: 48px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
}
.feature-card__icon--green { background: var(--green-light); color: var(--green); }
.feature-card__icon--blue { background: var(--blue-light); color: var(--blue); }
.feature-card__icon--purple { background: var(--purple-light); color: var(--purple); }
.feature-card__icon--orange { background: var(--orange-light); color: var(--orange); }
.feature-card__icon--teal { background: var(--teal-light); color: var(--teal); }
.feature-card__icon--pink { background: var(--pink-light); color: var(--pink); }
.feature-card__icon svg { stroke: currentColor; }
.feature-card__title { font-size: 18px; font-weight: 700; margin-bottom: 8px; color: var(--text-strong); }
.feature-card__text { font-size: 14px; color: var(--text-muted); line-height: 1.6; }

/* --- SECURITY GRID --- */
.security-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    margin-bottom: 60px;
}
.security-card {
    background: var(--bg-inverse-2);
    border: 1px solid var(--bg-inverse-3);
    border-radius: var(--radius-lg);
    padding: 28px;
    position: relative;
    transition: all .3s;
}
.security-card:hover { border-color: var(--green); transform: translateY(-4px); }
.security-card__icon { margin-bottom: 16px; }
.security-card__badge {
    position: absolute;
    top: 16px;
    right: 16px;
    font-size: 10px;
    font-weight: 700;
    padding: 3px 8px;
    border-radius: var(--radius-full);
    background: rgba(34,197,94,.15);
    color: var(--green);
    letter-spacing: .05em;
}
.security-card__title { color: var(--text-on-inverse); font-size: 16px; font-weight: 700; margin-bottom: 8px; }
.security-card__text { font-size: 13px; color: var(--text-on-inverse-muted); line-height: 1.6; }

.security-stats {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
    text-align: center;
}
.security-stat__value {
    font-size: 40px;
    font-weight: 900;
    background: linear-gradient(135deg, var(--green) 0%, var(--teal) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}
.security-stat__label { font-size: 14px; color: var(--text-on-inverse-muted); margin-top: 4px; }

/* --- STEPS --- */
.steps {
    display: flex;
    align-items: flex-start;
    justify-content: center;
    gap: 0;
    max-width: 900px;
    margin: 0 auto 48px;
}
.step {
    text-align: center;
    flex: 1;
    padding: 0 24px;
}
.step__number {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background: var(--green);
    color: #fff;
    font-size: 22px;
    font-weight: 800;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    box-shadow: 0 4px 12px rgba(34,197,94,.3);
}
.step__title { font-size: 18px; font-weight: 700; margin-bottom: 8px; color: var(--text-strong); }
.step__text { font-size: 14px; color: var(--text-muted); line-height: 1.6; }
.step__connector {
    width: 60px;
    height: 2px;
    background: var(--border);
    margin-top: 28px;
    flex-shrink: 0;
}
.steps__cta { text-align: center; }

/* --- WORDPRESS SECTION --- */
.wp-features {
    display: flex;
    flex-direction: column;
    gap: 48px;
}
.wp-tabs {
    display: flex;
    gap: 8px;
    margin-bottom: 24px;
    flex-wrap: wrap;
}
.wp-tab {
    padding: 10px 20px;
    border-radius: var(--radius-full);
    font-size: 14px;
    font-weight: 600;
    color: var(--text-muted);
    border: 1px solid var(--border);
    background: var(--surface-card);
    transition: all var(--transition);
}
.wp-tab:not(.wp-tab--active):hover { border-color: var(--green); color: var(--green); }
.wp-tab--active { background: var(--green); color: #fff; border-color: var(--green); }
.wp-tab--active:hover { background: var(--green-dark); border-color: var(--green-dark); color: #fff; }
.wp-tab-content { display: none; }
.wp-tab-content--active { display: block; }
.wp-tab-content__inner {
    background: var(--surface-card);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 32px;
}
.wp-tab-content__inner h3 { font-size: 20px; font-weight: 700; margin-bottom: 8px; color: var(--text-strong); }
.wp-tab-content__inner > p { color: var(--text-muted); font-size: 14px; margin-bottom: 20px; }
.wp-check-list { display: grid; grid-template-columns: max-content max-content; column-gap: 48px; row-gap: 10px; justify-content: start; }
.wp-check-list li {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
    color: var(--text);
}
.wp-check-list li::before {
    content: '';
    width: 18px;
    height: 18px;
    border-radius: 50%;
    background: var(--green-light);
    flex-shrink: 0;
    background-image: url("data:image/svg+xml,%3Csvg width='10' height='10' viewBox='0 0 24 24' fill='none' stroke='%2322c55e' stroke-width='3' xmlns='http://www.w3.org/2000/svg'%3E%3Cpolyline points='20 6 9 17 4 12'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: center;
    background-size: 10px;
}

.wp-feature-extra__title {
    text-align: center;
    font-size: 13px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: .12em;
    color: var(--text-subtle);
    margin-bottom: 20px;
}
.wp-feature-extra__grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 14px;
}
.wp-extra-card {
    background: var(--surface-card);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 20px;
    transition: all .3s;
    display: flex;
    flex-direction: column;
    gap: 6px;
}
.wp-extra-card:hover { border-color: var(--green); transform: translateY(-3px); box-shadow: var(--shadow-lg); }
.wp-extra-card__icon {
    font-size: 22px;
    margin-bottom: 4px;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 10px;
    background: var(--green-light);
}
.wp-extra-card h4 { font-size: 15px; font-weight: 700; color: var(--text-strong); line-height: 1.3; }
.wp-extra-card p { font-size: 13px; color: var(--text-muted); line-height: 1.5; margin: 0; }

/* --- NO LIMITS --- */
.nolimits-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}
.nolimit-card {
    text-align: center;
    padding: 32px 24px;
    background: var(--surface-card);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    transition: all .3s;
}
.nolimit-card:hover { border-color: var(--green); transform: translateY(-4px); box-shadow: var(--shadow-lg); }
.nolimit-card__icon { margin-bottom: 16px; display: flex; justify-content: center; }
.nolimit-card h3 { font-size: 16px; font-weight: 700; margin-bottom: 8px; color: var(--text-strong); }
.nolimit-card p { font-size: 14px; color: var(--text-muted); line-height: 1.6; }

/* --- PRICING --- */
.pricing-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    align-items: start;
}
.pricing-card {
    background: var(--surface-card);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 32px;
    transition: all .3s;
    position: relative;
}
.pricing-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-xl); }
.pricing-card--popular {
    background: var(--green);
    border-color: var(--green);
    color: #fff;
    transform: scale(1.05);
    z-index: 2;
}
.pricing-card--popular:hover { transform: scale(1.05) translateY(-4px); }
.pricing-card__badge {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--bg-inverse);
    color: var(--text-on-inverse);
    font-size: 12px;
    font-weight: 700;
    padding: 4px 16px;
    border-radius: var(--radius-full);
    white-space: nowrap;
}
.pricing-card__header { margin-bottom: 24px; }
.pricing-card__name { font-size: 22px; font-weight: 800; color: var(--text-strong); }
.pricing-card__desc { font-size: 14px; color: var(--text-muted); margin-top: 4px; }
.pricing-card--popular .pricing-card__desc { color: rgba(255,255,255,.7); }
.pricing-card__price { margin-bottom: 8px; }
.pricing-card__old {
    font-size: 16px;
    color: var(--text-subtle);
    text-decoration: line-through;
}
.pricing-card--popular .pricing-card__old { color: rgba(255,255,255,.5); }
.pricing-card__current { display: flex; align-items: baseline; gap: 2px; }
.pricing-card__currency { font-size: 24px; font-weight: 700; }
.pricing-card__amount { font-size: 48px; font-weight: 900; line-height: 1; }
.pricing-card__period { font-size: 16px; color: var(--text-muted); }
.pricing-card--popular .pricing-card__period { color: rgba(255,255,255,.7); }
.pricing-card__lock {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 13px;
    font-weight: 600;
    color: var(--green);
    margin-bottom: 24px;
}
.pricing-card--popular .pricing-card__lock { color: rgba(255,255,255,.9); }
.pricing-card__features {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-bottom: 28px;
}
.pricing-card__features li {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 14px;
}
.pricing-card--popular .pricing-card__features li svg { stroke: rgba(255,255,255,.9); }
.pricing-card--popular .btn--primary { background: #fff; color: var(--green); border-color: #fff; }
.pricing-card--popular .btn--primary:hover { background: var(--gray-100); }

/* --- FAQ --- */
.faq-list { display: flex; flex-direction: column; gap: 12px; }
.faq-item {
    background: var(--surface-card);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    overflow: hidden;
    transition: all .3s;
}
.faq-item:hover { border-color: var(--green); }
.faq-item__question {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 20px 24px;
    font-size: 16px;
    font-weight: 600;
    text-align: left;
    color: var(--text);
    transition: color var(--transition);
}
.faq-item__question:hover { color: var(--green); }
.faq-item__chevron { transition: transform .3s; flex-shrink: 0; color: var(--text-subtle); }
.faq-item--open .faq-item__chevron { transform: rotate(180deg); color: var(--green); }
.faq-item__answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height .4s ease;
}
.faq-item--open .faq-item__answer { max-height: 400px; }
.faq-item__answer p {
    padding: 0 24px 20px;
    font-size: 14px;
    color: var(--text-muted);
    line-height: 1.7;
}

/* --- CTA --- */
.cta-buttons { text-align: center; margin-bottom: 20px; }

/* --- FOOTER --- */
.footer {
    background: var(--bg-inverse);
    padding: 64px 0 32px;
}
.footer__top {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 64px;
    padding-bottom: 40px;
    border-bottom: 1px solid var(--bg-inverse-3);
}
.footer__logo { height: 28px; margin-bottom: 16px; }
.footer__tagline { font-size: 14px; color: var(--text-on-inverse-muted); line-height: 1.6; max-width: 280px; }
.footer__links { display: grid; grid-template-columns: repeat(3, 1fr); gap: 32px; }
.footer__col h4 { color: var(--text-on-inverse); font-size: 14px; font-weight: 700; margin-bottom: 16px; }
.footer__col li { margin-bottom: 10px; }
.footer__col a { font-size: 14px; color: var(--text-on-inverse-muted); transition: color var(--transition); cursor: pointer; }
.footer__col a:hover { color: var(--green); }
.footer__bottom { padding-top: 32px; text-align: center; }
.footer__bottom p { font-size: 13px; color: var(--text-on-inverse-muted); }
.footer__bottom p + p { margin-top: 6px; font-size: 12px; opacity: .8; }

/* --- WHATSAPP FLOAT --- */
.whatsapp-float {
    position: fixed;
    bottom: 24px;
    right: 24px;
    width: 56px;
    height: 56px;
    background: #25d366;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 12px rgba(37,211,102,.4);
    z-index: 100;
    transition: all .3s;
}
.whatsapp-float:hover { transform: scale(1.1); box-shadow: 0 6px 20px rgba(37,211,102,.5); }

/* --- ANIMATIONS --- */
[data-aos] { opacity: 0; transform: translateY(20px); transition: all .6s ease; }
[data-aos].aos-animate { opacity: 1; transform: translateY(0); }

/* =============================================
   RESPONSIVE
   ============================================= */
@media (max-width: 1024px) {
    .features-grid { grid-template-columns: repeat(2, 1fr); }
    .security-grid { grid-template-columns: repeat(2, 1fr); }
    .security-stats { grid-template-columns: repeat(2, 1fr); gap: 32px; }
    .pricing-grid { grid-template-columns: repeat(2, 1fr); }
    .pricing-card--popular { transform: scale(1); }
    .pricing-card--popular:hover { transform: translateY(-4px); }
    .nolimits-grid { grid-template-columns: repeat(2, 1fr); }
    .wp-feature-extra__grid { grid-template-columns: repeat(3, 1fr); }
}

@media (max-width: 768px) {
    .navbar__links, .navbar__actions { display: none; }
    .navbar__burger { display: flex; }

    .hero { padding: 120px 0 60px; }
    .hero__title { font-size: clamp(28px, 7vw, 40px); }
    .hero__subtitle { font-size: 16px; }

    .section { padding: 64px 0; }
    .section--cta { padding: 80px 0; }

    .comparison { grid-template-columns: 1fr; gap: 16px; }
    .comparison__vs { margin: 0 auto; }

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

    .steps { flex-direction: column; align-items: center; }
    .step { padding: 0; }
    .step__connector { width: 2px; height: 40px; }

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

    .wp-check-list { grid-template-columns: 1fr; }
    .wp-feature-extra__grid { grid-template-columns: 1fr; }
    .wp-tabs { gap: 6px; }
    .wp-tab { padding: 8px 14px; font-size: 13px; }

    .footer__top { grid-template-columns: 1fr; gap: 40px; }
    .footer__links { grid-template-columns: repeat(3, 1fr); gap: 20px; }

    .hero__stats-float { display: none; }
    .hero__visual { max-width: 360px; }
}

@media (max-width: 480px) {
    .hero__cta { flex-direction: column; }
    .hero__cta .btn { width: 100%; justify-content: center; }
    .footer__links { grid-template-columns: 1fr 1fr; }
    .security-stats { grid-template-columns: repeat(2, 1fr); }
}

@media (min-width: 1024px) {
    .hero__stats-float { display: block; }
}
