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

:root {
    --primary: #6C5CE7;
    --primary-dark: #5A4BD1;
    --primary-light: #A29BFE;
    --accent: #00CEC9;
    --accent-dark: #00B5B0;
    --bg: #FAFBFF;
    --bg-alt: #F0EDFF;
    --text: #2D3436;
    --text-light: #636E72;
    --text-lighter: #B2BEC3;
    --white: #FFFFFF;
    --border: #E8E4F8;
    --shadow: 0 4px 24px rgba(108, 92, 231, 0.08);
    --shadow-lg: 0 12px 48px rgba(108, 92, 231, 0.12);
    --shadow-card: 0 2px 16px rgba(0, 0, 0, 0.06);
    --radius: 16px;
    --radius-sm: 10px;
    --radius-lg: 24px;
    --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

html {
    scroll-behavior: smooth;
    -webkit-text-size-adjust: 100%;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    color: var(--text);
    background: var(--bg);
    line-height: 1.6;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}

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

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

/* ===== BUTTONS ===== */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 14px 32px;
    font-size: 1rem;
    font-weight: 600;
    font-family: inherit;
    border: none;
    border-radius: 50px;
    cursor: pointer;
    transition: var(--transition);
    background: var(--primary);
    color: var(--white);
    text-align: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
}
.btn::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(255,255,255,0.15), transparent);
    opacity: 0;
    transition: var(--transition);
}
.btn:hover {
    background: var(--primary-dark);
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(108, 92, 231, 0.3);
}
.btn:hover::after { opacity: 1; }
.btn:active { transform: translateY(0); }

.btn--outline {
    background: transparent;
    color: var(--primary);
    border: 2px solid var(--primary);
}
.btn--outline:hover {
    background: var(--primary);
    color: var(--white);
}

.btn--sm { padding: 10px 24px; font-size: 0.9rem; }
.btn--lg { padding: 18px 40px; font-size: 1.05rem; }
.btn--wide { width: 100%; }

.btn--white {
    background: var(--white);
    color: var(--primary);
}
.btn--white:hover {
    background: #f0edff;
    box-shadow: 0 8px 24px rgba(0,0,0,0.15);
}

/* ===== NAV ===== */
.nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: 16px 0;
    transition: var(--transition);
    background: transparent;
}
.nav--scrolled {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(12px);
    padding: 10px 0;
    box-shadow: 0 2px 20px rgba(0,0,0,0.06);
}

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

.nav__logo {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 1.35rem;
    font-weight: 800;
    color: var(--primary);
}
.nav__logo-icon {
    width: 36px;
    height: 36px;
    background: var(--primary);
    color: var(--white);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
    font-weight: 800;
}

.nav__links {
    display: flex;
    gap: 32px;
}
.nav__links a {
    font-size: 0.95rem;
    font-weight: 500;
    color: var(--text-light);
    transition: var(--transition);
    position: relative;
}
.nav__links a::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--primary);
    transition: var(--transition);
}
.nav__links a:hover { color: var(--primary); }
.nav__links a:hover::after { width: 100%; }

.nav__burger {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 4px;
}
.nav__burger span {
    width: 24px;
    height: 2px;
    background: var(--text);
    border-radius: 2px;
    transition: var(--transition);
}

/* Mobile menu */
.mobile-menu {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(255,255,255,0.98);
    backdrop-filter: blur(12px);
    z-index: 999;
    align-items: center;
    justify-content: center;
}
.mobile-menu--open { display: flex; }
.mobile-menu__links {
    text-align: center;
    display: flex;
    flex-direction: column;
    gap: 28px;
}
.mobile-menu__links a {
    font-size: 1.3rem;
    font-weight: 600;
    color: var(--text);
}

/* ===== HERO ===== */
.hero {
    position: relative;
    padding: 140px 0 100px;
    background: linear-gradient(135deg, #6C5CE7 0%, #A29BFE 50%, #74B9FF 100%);
    color: var(--white);
    overflow: hidden;
}
.hero::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 600px;
    height: 600px;
    border-radius: 50%;
    background: rgba(255,255,255,0.05);
}

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

.hero__badge {
    display: inline-block;
    padding: 8px 20px;
    border-radius: 50px;
    background: rgba(255,255,255,0.15);
    backdrop-filter: blur(4px);
    font-size: 0.85rem;
    font-weight: 600;
    margin-bottom: 24px;
    letter-spacing: 0.5px;
}

.hero__title {
    font-size: 2.8rem;
    font-weight: 800;
    line-height: 1.15;
    margin-bottom: 20px;
    letter-spacing: -0.5px;
}

.hero__subtitle {
    font-size: 1.2rem;
    font-weight: 400;
    opacity: 0.9;
    margin-bottom: 36px;
    line-height: 1.5;
}

.hero__actions {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
    margin-bottom: 20px;
}
.hero__actions .btn--outline {
    border-color: rgba(255,255,255,0.5);
    color: var(--white);
}
.hero__actions .btn--outline:hover {
    background: rgba(255,255,255,0.15);
    border-color: var(--white);
}

.hero__trial {
    font-size: 0.9rem;
    opacity: 0.8;
}

/* Phone mockup — dark Telegram style */
.hero__phone {
    width: 300px;
    margin: 0 auto;
    background: #1a1a2e;
    border-radius: 40px;
    padding: 10px;
    box-shadow: 0 24px 80px rgba(0,0,0,0.35);
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    border: 2px solid #2a2a45;
}

/* iPhone Dynamic Island */
.hero__phone-notch {
    background: #1e1e3a;
    border-radius: 30px 30px 0 0;
    padding: 10px 0 0;
    display: flex;
    justify-content: center;
}
.hero__phone-dynamic-island {
    width: 90px;
    height: 24px;
    background: #0e0e1a;
    border-radius: 20px;
    position: relative;
}
.hero__phone-dynamic-island::before {
    content: '';
    position: absolute;
    right: 18px;
    top: 50%;
    transform: translateY(-50%);
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #1a1a2e;
    box-shadow: inset 0 0 2px rgba(255,255,255,0.15);
}

.hero__phone-header {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 8px 14px 8px;
    background: #1e1e3a;
}
.hero__phone-back {
    font-size: 1.4rem;
    color: rgba(255,255,255,0.6);
    line-height: 1;
}
.hero__phone-title {
    display: flex;
    flex-direction: column;
}
.hero__phone-title strong {
    font-size: 0.85rem;
    color: #fff;
}
.hero__phone-title span {
    font-size: 0.65rem;
    color: rgba(255,255,255,0.45);
}

.hero__phone-screen {
    background: #0e0e1a;
    padding: 10px 8px 16px;
    border-radius: 0 0 30px 30px;
    overflow: hidden;
    flex: 1;
    min-height: 0;
}

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

.chat-msg {
    padding: 10px 12px;
    border-radius: 14px;
    font-size: 0.78rem;
    line-height: 1.45;
    max-width: 95%;
    width: fit-content;
    animation: chatFadeIn 0.5s ease both;
}
.chat-msg:nth-child(1) { animation-delay: 0.3s; }
.chat-msg:nth-child(2) { animation-delay: 1.2s; }
.chat-msg:nth-child(3) { animation-delay: 1.6s; }

@keyframes chatFadeIn {
    from { opacity: 0; transform: translateY(8px); }
    to { opacity: 1; transform: translateY(0); }
}

.chat-msg--bot {
    background: #1e1e3a;
    color: #e0e0e0;
    align-self: flex-start;
    border-bottom-left-radius: 4px;
}
.chat-msg--user {
    background: #6C5CE7;
    color: #fff;
    align-self: flex-end;
    border-bottom-right-radius: 4px;
    font-weight: 500;
}

.chat-msg__name {
    display: block;
    font-weight: 700;
    font-size: 0.72rem;
    color: var(--primary-light);
    margin-bottom: 4px;
}

/* Card-style message (new booking) */
.chat-msg--card {
    padding: 14px;
    position: relative;
    max-width: 100%;
    width: 100%;
}
.chat-card__badge {
    display: inline-block;
    background: #E17055;
    color: #fff;
    font-size: 0.6rem;
    font-weight: 800;
    padding: 2px 8px;
    border-radius: 4px;
    margin-bottom: 6px;
    letter-spacing: 0.5px;
}
.chat-card__title {
    font-size: 0.88rem;
    font-weight: 800;
    color: #fff;
    margin-bottom: 8px;
}
.chat-card__row {
    font-size: 0.72rem;
    color: #ccc;
    padding: 2px 0;
    display: flex;
    align-items: center;
    gap: 4px;
}
.chat-card__row strong {
    color: #fff;
}
.chat-card__icon {
    font-size: 0.8rem;
    width: 18px;
    text-align: center;
    flex-shrink: 0;
}
.chat-card__status {
    margin-top: 10px;
    padding-top: 8px;
    border-top: 1px solid rgba(255,255,255,0.08);
    font-size: 0.73rem;
    color: #00B894;
    font-weight: 600;
}

/* Booking list inside chat */
.chat-booking {
    margin-top: 6px;
    padding: 6px 0;
    border-bottom: 1px solid rgba(255,255,255,0.06);
}
.chat-booking:last-child { border-bottom: none; }
.chat-booking__info {
    font-size: 0.74rem;
    color: #fff;
    font-weight: 600;
    margin-bottom: 4px;
    padding: 4px 8px;
    background: rgba(255,255,255,0.06);
    border-radius: 8px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}
.chat-booking__actions {
    display: flex;
    gap: 3px;
    overflow: hidden;
}

/* Chat buttons */
.chat-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 5px;
    margin-top: 8px;
}
.chat-btn {
    padding: 5px 8px;
    border-radius: 8px;
    background: rgba(255,255,255,0.08);
    font-size: 0.64rem;
    font-weight: 600;
    color: #A29BFE;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    min-width: 0;
}
.chat-btn--full {
    width: 100%;
    text-align: center;
    background: rgba(108, 92, 231, 0.15);
}
.chat-btn--green {
    color: #00B894;
    background: rgba(0, 184, 148, 0.1);
    flex: 1;
    text-align: center;
}
.chat-btn--blue {
    color: #74B9FF;
    background: rgba(116, 185, 255, 0.1);
    flex: 1;
    text-align: center;
}
.chat-btn--red {
    color: #E17055;
    background: rgba(225, 112, 85, 0.1);
    flex: 1;
    text-align: center;
}

.hero__wave {
    position: absolute;
    bottom: -1px;
    left: 0;
    right: 0;
}
.hero__wave svg {
    display: block;
    width: 100%;
    height: 80px;
}

/* ===== STATS ===== */
.stats {
    padding: 60px 0;
    background: var(--white);
}
.stats__inner {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 40px;
    text-align: center;
}
.stat__number {
    font-size: 2.8rem;
    font-weight: 800;
    color: var(--primary);
    display: inline;
}
.stat__plus {
    font-size: 2rem;
    font-weight: 700;
    color: var(--primary);
}
.stat__label {
    display: block;
    font-size: 0.95rem;
    color: var(--text-light);
    margin-top: 4px;
}

/* ===== SECTIONS COMMON ===== */
.section-title {
    font-size: 2.2rem;
    font-weight: 800;
    text-align: center;
    margin-bottom: 12px;
    letter-spacing: -0.3px;
}
.section-desc {
    text-align: center;
    color: var(--text-light);
    font-size: 1.1rem;
    margin-bottom: 56px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

/* ===== PROBLEMS ===== */
.problems {
    padding: 100px 0;
    background: var(--white);
}
.problems__grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
    margin-bottom: 64px;
}

.problem-card {
    padding: 36px;
    border-radius: var(--radius);
    background: var(--bg);
    border: 1px solid var(--border);
    transition: var(--transition);
}
.problem-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-card);
    border-color: transparent;
}
.problem-card__icon {
    width: 56px;
    height: 56px;
    border-radius: 14px;
    background: #FFF0F0;
    color: #E17055;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
}
.problem-card h3 {
    font-size: 1.15rem;
    font-weight: 700;
    margin-bottom: 10px;
}
.problem-card p {
    color: var(--text-light);
    font-size: 0.95rem;
    line-height: 1.6;
}

/* Comparison */
.comparison {
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    gap: 32px;
    align-items: center;
    padding: 48px;
    background: var(--bg);
    border-radius: var(--radius-lg);
    border: 1px solid var(--border);
}
.comparison__side {
    padding: 24px;
}
.comparison__label {
    font-weight: 700;
    font-size: 1.1rem;
    margin-bottom: 16px;
    padding-bottom: 12px;
    border-bottom: 2px solid;
}
.comparison__side--before .comparison__label {
    color: #E17055;
    border-color: #E17055;
}
.comparison__side--after .comparison__label {
    color: #00B894;
    border-color: #00B894;
}
.comparison__side li {
    padding: 8px 0;
    padding-left: 24px;
    position: relative;
    font-size: 0.95rem;
    color: var(--text-light);
}
.comparison__side--before li::before {
    content: '✕';
    position: absolute;
    left: 0;
    color: #E17055;
    font-weight: 700;
}
.comparison__side--after li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #00B894;
    font-weight: 700;
}
.comparison__divider {
    color: var(--primary);
    opacity: 0.4;
}

/* ===== FEATURES ===== */
.features {
    padding: 100px 0;
    background: var(--bg);
}
.features__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.feature-card {
    padding: 36px;
    background: var(--white);
    border-radius: var(--radius);
    border: 1px solid var(--border);
    transition: var(--transition);
}
.feature-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-lg);
    border-color: transparent;
}

.feature-card__icon {
    width: 56px;
    height: 56px;
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
}
.feature-card__icon--blue { background: #E8F4FD; color: #0984E3; }
.feature-card__icon--green { background: #E8FDF0; color: #00B894; }
.feature-card__icon--purple { background: #F0EDFF; color: #6C5CE7; }
.feature-card__icon--orange { background: #FFF4E6; color: #E17055; }
.feature-card__icon--pink { background: #FDE8F0; color: #E84393; }
.feature-card__icon--teal { background: #E8FFFE; color: #00CEC9; }

.feature-card h3 {
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 10px;
}
.feature-card p {
    color: var(--text-light);
    font-size: 0.93rem;
    line-height: 1.6;
}

/* ===== HOW IT WORKS ===== */
.how {
    padding: 100px 0;
    background: var(--white);
}

.steps {
    max-width: 640px;
    margin: 0 auto 56px;
    position: relative;
}
.steps::before {
    content: '';
    position: absolute;
    left: 28px;
    top: 0;
    bottom: 0;
    width: 2px;
    background: linear-gradient(to bottom, var(--primary), var(--primary-light));
}

.step {
    display: flex;
    gap: 28px;
    align-items: flex-start;
    margin-bottom: 40px;
    position: relative;
}
.step:last-child { margin-bottom: 0; }

.step__number {
    flex-shrink: 0;
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background: var(--primary);
    color: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.3rem;
    font-weight: 800;
    position: relative;
    z-index: 1;
    box-shadow: 0 4px 16px rgba(108, 92, 231, 0.3);
}

.step__content h3 {
    font-size: 1.15rem;
    font-weight: 700;
    margin-bottom: 6px;
    margin-top: 4px;
}
.step__content p {
    color: var(--text-light);
    font-size: 0.95rem;
    line-height: 1.6;
}

.how__cta {
    text-align: center;
}
.how__note {
    display: block;
    margin-top: 12px;
    font-size: 0.9rem;
    color: var(--text-light);
}

/* ===== PRICING ===== */
.pricing {
    padding: 100px 0;
    background: var(--bg);
}
.pricing__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    align-items: start;
}

.pricing-card {
    padding: 40px 32px;
    background: var(--white);
    border-radius: var(--radius-lg);
    border: 1px solid var(--border);
    text-align: center;
    transition: var(--transition);
    position: relative;
}
.pricing-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-card);
}

.pricing-card--popular {
    border: 2px solid var(--primary);
    box-shadow: var(--shadow-lg);
    transform: scale(1.04);
    padding: 48px 32px;
}
.pricing-card--popular:hover {
    transform: scale(1.04) translateY(-4px);
}

.pricing-card__badge {
    position: absolute;
    top: -14px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--primary);
    color: var(--white);
    padding: 6px 24px;
    border-radius: 50px;
    font-size: 0.82rem;
    font-weight: 700;
}

.pricing-card__header h3 {
    font-size: 1.4rem;
    font-weight: 800;
    margin-bottom: 4px;
}
.pricing-card__desc {
    font-size: 0.9rem;
    color: var(--text-light);
}

.pricing-card__price {
    padding: 24px 0;
}
.pricing-card__amount {
    font-size: 3rem;
    font-weight: 800;
    color: var(--text);
}
.pricing-card__period {
    font-size: 1rem;
    color: var(--text-light);
}

.pricing-card__features {
    text-align: left;
    padding: 0 8px;
    margin-bottom: 28px;
}
.pricing-card__features li {
    padding: 8px 0;
    padding-left: 28px;
    position: relative;
    font-size: 0.93rem;
    color: var(--text-light);
}
.pricing-card__features li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--accent);
    font-weight: 700;
}

/* ===== REVIEWS ===== */
.reviews {
    padding: 100px 0;
    background: var(--white);
}
.reviews__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.review-card {
    padding: 36px;
    background: var(--bg);
    border-radius: var(--radius);
    border: 1px solid var(--border);
    transition: var(--transition);
}
.review-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-card);
}

.review-card__stars {
    color: #FDCB6E;
    font-size: 1.2rem;
    letter-spacing: 2px;
    margin-bottom: 16px;
}

.review-card__text {
    font-size: 0.95rem;
    color: var(--text-light);
    line-height: 1.7;
    margin-bottom: 24px;
    font-style: italic;
}

.review-card__author {
    display: flex;
    align-items: center;
    gap: 12px;
}
.review-card__avatar {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: var(--primary);
    color: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 0.85rem;
}
.review-card__author strong {
    display: block;
    font-size: 0.95rem;
}
.review-card__author span {
    font-size: 0.82rem;
    color: var(--text-lighter);
}

/* ===== FAQ ===== */
.faq {
    padding: 100px 0;
    background: var(--bg);
}
.faq__list {
    max-width: 720px;
    margin: 0 auto;
}

.faq-item {
    margin-bottom: 12px;
    border-radius: var(--radius-sm);
    background: var(--white);
    border: 1px solid var(--border);
    overflow: hidden;
    transition: var(--transition);
}
.faq-item:hover {
    border-color: var(--primary-light);
}

.faq-item__question {
    width: 100%;
    text-align: left;
    padding: 20px 24px;
    font-size: 1rem;
    font-weight: 600;
    font-family: inherit;
    background: none;
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    color: var(--text);
    transition: var(--transition);
}
.faq-item__question:hover {
    color: var(--primary);
}

.faq-item__chevron {
    flex-shrink: 0;
    transition: var(--transition);
}
.faq-item--open .faq-item__chevron {
    transform: rotate(180deg);
}

.faq-item__answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.35s ease, padding 0.35s ease;
}
.faq-item--open .faq-item__answer {
    max-height: 300px;
}
.faq-item__answer p {
    padding: 0 24px 20px;
    color: var(--text-light);
    font-size: 0.95rem;
    line-height: 1.65;
}

/* ===== LEAD FORM ===== */
.lead-form {
    padding: 80px 0;
    background: var(--bg-alt);
}
.lead-form__inner {
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: 48px;
    display: flex;
    gap: 48px;
    align-items: center;
    box-shadow: var(--shadow-lg);
}
.lead-form__text {
    flex: 1;
}
.lead-form__text h2 {
    font-size: 1.8rem;
    font-weight: 800;
    line-height: 1.3;
    margin-bottom: 12px;
    color: var(--text);
}
.lead-form__text p {
    font-size: 1rem;
    color: var(--text-light);
    line-height: 1.6;
}
.lead-form__form {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 12px;
}
.lead-form__fields {
    display: flex;
    flex-direction: column;
    gap: 12px;
}
.lead-form__input {
    width: 100%;
    padding: 14px 18px;
    border: 2px solid var(--border);
    border-radius: var(--radius-sm);
    font-family: inherit;
    font-size: 1rem;
    color: var(--text);
    background: var(--bg);
    transition: border-color var(--transition);
    outline: none;
}
.lead-form__input:focus {
    border-color: var(--primary);
}
.lead-form__input::placeholder {
    color: var(--text-lighter);
}
.lead-form__btn {
    width: 100%;
    justify-content: center;
    border: none;
    cursor: pointer;
    font-family: inherit;
}
.lead-form__note {
    font-size: 0.82rem;
    color: var(--text-lighter);
    text-align: center;
}
@media (max-width: 768px) {
    .lead-form__inner {
        flex-direction: column;
        padding: 32px 24px;
        gap: 28px;
    }
    .lead-form__text h2 {
        font-size: 1.4rem;
    }
}

/* ===== CTA FINAL ===== */
.cta-final {
    padding: 100px 0;
    background: linear-gradient(135deg, #6C5CE7 0%, #A29BFE 50%, #74B9FF 100%);
    color: var(--white);
}
.cta-final__inner {
    text-align: center;
}
.cta-final h2 {
    font-size: 2.4rem;
    font-weight: 800;
    margin-bottom: 16px;
}
.cta-final p {
    font-size: 1.15rem;
    opacity: 0.9;
    margin-bottom: 36px;
    max-width: 540px;
    margin-left: auto;
    margin-right: auto;
}
.cta-final__note {
    display: block;
    margin-top: 16px;
    font-size: 0.9rem;
    opacity: 0.75;
}

/* ===== FOOTER ===== */
.footer {
    padding: 64px 0 0;
    background: #1a1a2e;
    color: rgba(255,255,255,0.7);
}
.footer__inner {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 48px;
    padding-bottom: 48px;
}
.footer__brand .nav__logo {
    color: var(--white);
    margin-bottom: 16px;
}
.footer__brand p {
    font-size: 0.9rem;
    line-height: 1.6;
    max-width: 320px;
}

.footer__links h4 {
    color: var(--white);
    font-size: 0.95rem;
    font-weight: 700;
    margin-bottom: 16px;
}
.footer__links a {
    display: block;
    font-size: 0.9rem;
    padding: 6px 0;
    transition: var(--transition);
}
.footer__links a:hover { color: var(--white); }

.footer__bottom {
    border-top: 1px solid rgba(255,255,255,0.1);
    padding: 20px 0;
}
.footer__bottom p {
    font-size: 0.85rem;
    text-align: center;
    color: rgba(255,255,255,0.4);
}

/* ===== BLOG PREVIEW ===== */
.blog-preview {
    padding: 80px 0;
}
.blog-preview__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin-top: 48px;
}
.blog-card {
    background: #fff;
    border-radius: 20px;
    padding: 28px;
    text-decoration: none;
    color: #1e1e3a;
    box-shadow: 0 2px 16px rgba(0,0,0,0.06);
    transition: transform 0.25s, box-shadow 0.25s;
    display: flex;
    flex-direction: column;
}
.blog-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 32px rgba(0,0,0,0.1);
}
.blog-card__tag {
    display: inline-block;
    background: linear-gradient(135deg, #6c63ff, #48c6ef);
    color: #fff;
    padding: 3px 10px;
    border-radius: 16px;
    font-size: 0.72rem;
    font-weight: 600;
    margin-bottom: 14px;
    width: fit-content;
}
.blog-card__title {
    font-size: 1.1rem;
    font-weight: 700;
    line-height: 1.35;
    margin-bottom: 10px;
}
.blog-card__desc {
    font-size: 0.9rem;
    color: #6b7280;
    line-height: 1.6;
    flex-grow: 1;
}
.blog-card__link {
    display: inline-block;
    margin-top: 18px;
    font-size: 0.88rem;
    font-weight: 600;
    color: #6c63ff;
}
.blog-preview__more {
    text-align: center;
    margin-top: 36px;
}

/* ===== ANIMATIONS ===== */
.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.7s ease, transform 0.7s ease;
}
.reveal--right {
    transform: translateX(30px);
}
.reveal--visible {
    opacity: 1;
    transform: translate(0, 0);
}

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
    .hero__title { font-size: 2.2rem; }
    .features__grid { grid-template-columns: repeat(2, 1fr); }
    .pricing__grid { grid-template-columns: repeat(2, 1fr); }
    .pricing-card--popular { grid-column: span 2; max-width: 420px; margin: 0 auto; }
    .blog-preview__grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 768px) {
    .nav__links, .nav > .container > .btn { display: none; }
    .nav__burger { display: flex; }

    .hero { padding: 120px 0 80px; }
    .hero__inner {
        grid-template-columns: 1fr;
        gap: 48px;
        text-align: center;
    }
    .hero__title { font-size: 2rem; }
    .hero__subtitle { font-size: 1.05rem; }
    .hero__actions { justify-content: center; }
    .hero__phone { width: 270px; border-radius: 34px; }
    .hero__phone-dynamic-island { width: 76px; height: 20px; }
    .chat-card__title { font-size: 0.8rem; }
    .chat-card__row { font-size: 0.68rem; }
    .chat-btn { font-size: 0.58rem; padding: 4px 5px; }

    .stats__inner {
        grid-template-columns: repeat(2, 1fr);
        gap: 32px;
    }
    .stat__number { font-size: 2.2rem; }

    .section-title { font-size: 1.7rem; }
    .section-desc { font-size: 1rem; }

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

    .comparison {
        grid-template-columns: 1fr;
        padding: 32px 24px;
    }
    .comparison__divider {
        transform: rotate(90deg);
        margin: 8px auto;
    }

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

    .pricing__grid { grid-template-columns: 1fr; }
    .pricing-card--popular {
        grid-column: span 1;
        transform: none;
        max-width: none;
    }
    .pricing-card--popular:hover { transform: translateY(-4px); }

    .blog-preview__grid { grid-template-columns: 1fr; }

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

    .footer__inner {
        grid-template-columns: 1fr;
        gap: 32px;
    }

    .cta-final h2 { font-size: 1.8rem; }
}

@media (max-width: 480px) {
    .container { padding: 0 16px; }
    .hero { padding: 110px 0 60px; }
    .hero__title { font-size: 1.7rem; }
    .hero__actions { flex-direction: column; align-items: center; }
    .btn--lg { padding: 16px 32px; font-size: 0.95rem; width: 100%; }

    .problem-card, .feature-card { padding: 28px; }

    .stats__inner { grid-template-columns: 1fr 1fr; gap: 24px; }
    .stat__number { font-size: 2rem; }
}
