/* =========================================================
   Web Go Fly · v6 production stylesheet
   Strict mobile-fit · modern red & white · no overflow
   ========================================================= */

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

:root {
    --bg: #fff7f8;
    --bg-soft: #ffffff;
    --surface: #ffffff;
    --surface-2: #fff1f3;
    --line: rgba(225,29,46,0.14);
    --line-strong: rgba(225,29,46,0.30);
    --text: #1a1a1a;
    --muted: #5b5b5b;
    --heading: #0f0f10;
    --red: #e11d2e;
    --red-dark: #b30d20;
    --red-soft: #fff1f3;
    --white: #ffffff;
    --shadow-sm: 0 6px 18px rgba(225,29,46,0.06);
    --shadow: 0 14px 40px rgba(225,29,46,0.08);
    --shadow-lg: 0 22px 60px rgba(225,29,46,0.14);
    --radius-sm: 12px;
    --radius: 18px;
    --radius-lg: 24px;
    --gradient: linear-gradient(135deg, #ff4458 0%, #e11d2e 55%, #a30e20 100%);
    --font: 'Inter', system-ui, -apple-system, sans-serif;
    --font-display: 'Outfit', 'Inter', sans-serif;
}

html[data-bs-theme='dark'] {
    --bg: #0c0c0e;
    --bg-soft: #131316;
    --surface: #181820;
    --surface-2: #221115;
    --line: rgba(255,255,255,0.08);
    --line-strong: rgba(225,29,46,0.45);
    --text: #f1f1f3;
    --muted: #b8b8c0;
    --heading: #ffffff;
    --red-soft: rgba(225,29,46,0.14);
    --shadow-sm: 0 6px 18px rgba(0,0,0,0.4);
    --shadow: 0 14px 40px rgba(0,0,0,0.5);
    --shadow-lg: 0 22px 60px rgba(225,29,46,0.25);
}

html, body {
    width: 100%;
    max-width: 100%;
    overflow-x: hidden;
    -webkit-text-size-adjust: 100%;
}

body {
    margin: 0;
    padding: 0;
    font-family: var(--font);
    color: var(--text);
    background: var(--bg);
    line-height: 1.65;
    min-height: 100vh;
}

img, svg, video, canvas {
    display: block;
    max-width: 100%;
    height: auto;
}

a { color: inherit; text-decoration: none; }
a:hover { color: var(--red); }
p { margin: 0 0 12px; color: var(--muted); }

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-display);
    color: var(--heading);
    margin: 0 0 14px;
    line-height: 1.18;
    letter-spacing: -0.01em;
    overflow-wrap: anywhere;
    word-break: break-word;
}

.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding-left: 16px;
    padding-right: 16px;
}

section { position: relative; padding: 64px 0; }

.eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 6px 12px;
    border-radius: 999px;
    background: var(--red-soft);
    color: var(--red);
    border: 1px solid var(--line-strong);
    font-size: 0.72rem;
    font-weight: 800;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    margin-bottom: 14px;
}

.section-title {
    font-size: clamp(1.55rem, 5.5vw, 2.4rem);
    font-weight: 800;
    line-height: 1.16;
    margin-bottom: 12px;
}

.section-text {
    font-size: 0.98rem;
    color: var(--muted);
}

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

/* ========== BUTTONS ========== */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 12px 20px;
    border-radius: 999px;
    font-weight: 700;
    font-size: 0.94rem;
    border: 1px solid transparent;
    cursor: pointer;
    transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
    white-space: normal;
    text-align: center;
    line-height: 1.2;
    max-width: 100%;
}
.btn-sm { padding: 9px 14px; font-size: 0.86rem; }
.btn-gradient {
    background: var(--gradient);
    color: #fff;
    box-shadow: 0 12px 28px rgba(225,29,46,0.28);
}
.btn-gradient:hover { color: #fff; transform: translateY(-2px); box-shadow: 0 16px 34px rgba(225,29,46,0.36); }
.btn-outline-light {
    background: rgba(255,255,255,0.18);
    color: #fff;
    border-color: rgba(255,255,255,0.6);
}
.btn-outline-light:hover { background: #fff; color: var(--red); }
.btn-outline-theme {
    background: transparent;
    color: var(--heading);
    border: 1px solid var(--line-strong);
}
.btn-outline-theme:hover { background: var(--red); color: #fff; border-color: var(--red); }
.w-100 { width: 100%; }

/* ========== NAVBAR ========== */
.glass-nav {
    background: rgba(255,255,255,0.86);
    border-bottom: 1px solid transparent;
    padding: 10px 0;
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
    transition: padding 0.2s ease, box-shadow 0.2s ease;
}
html[data-bs-theme='dark'] .glass-nav { background: rgba(12,12,14,0.86); }
.glass-nav.scrolled {
    padding: 6px 0;
    box-shadow: 0 8px 26px rgba(0,0,0,0.06);
    border-bottom-color: var(--line);
}
.brand-text {
    font-family: var(--font-display);
    font-size: 1.3rem;
    font-weight: 800;
    color: var(--heading);
}
.navbar-nav .nav-link {
    color: var(--heading);
    padding: 8px 12px !important;
    font-weight: 600;
    font-size: 0.94rem;
}
.navbar-nav .nav-link.active,
.navbar-nav .nav-link:hover { color: var(--red); }
.theme-toggle {
    width: 40px;
    height: 40px;
    display: inline-grid;
    place-items: center;
    border-radius: 50%;
    border: 1px solid var(--line);
    background: var(--surface);
    color: var(--heading);
    cursor: pointer;
}
.theme-toggle .icon-light { display: none; }
html[data-bs-theme='dark'] .theme-toggle .icon-dark { display: none; }
html[data-bs-theme='dark'] .theme-toggle .icon-light { display: inline-block; }
.navbar-toggler-icon {
    width: 22px;
    height: 22px;
    background-image: none;
    border-top: 2px solid var(--heading);
    position: relative;
}
.navbar-toggler-icon::before,
.navbar-toggler-icon::after {
    content: '';
    position: absolute;
    left: 0;
    width: 100%;
    border-top: 2px solid var(--heading);
}
.navbar-toggler-icon::before { top: 6px; }
.navbar-toggler-icon::after { top: 13px; }

/* ========== HERO ========== */
.hero {
    padding: 130px 0 60px;
    background: linear-gradient(180deg, #fff5f6 0%, var(--bg) 100%);
    position: relative;
    overflow: hidden;
}
html[data-bs-theme='dark'] .hero { background: linear-gradient(180deg, #1a0d12 0%, var(--bg) 100%); }
.hero::before {
    content: '';
    position: absolute;
    width: 320px;
    height: 320px;
    background: radial-gradient(circle, rgba(225,29,46,0.18), transparent 70%);
    top: -120px;
    right: -120px;
    pointer-events: none;
}
.hero::after {
    content: '';
    position: absolute;
    width: 260px;
    height: 260px;
    background: radial-gradient(circle, rgba(225,29,46,0.12), transparent 70%);
    bottom: -120px;
    left: -100px;
    pointer-events: none;
}
.hero .container { position: relative; z-index: 2; }
.hero-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 32px;
    align-items: center;
}
.hero-title {
    font-size: clamp(1.9rem, 7.5vw, 3.4rem);
    font-weight: 900;
    line-height: 1.08;
    margin-bottom: 16px;
}
.hero-desc {
    font-size: 1rem;
    color: var(--muted);
    margin-bottom: 22px;
    max-width: 560px;
}
.hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 22px;
}
.hero-actions .btn { flex: 1 1 auto; min-width: 0; }
.hero-badges {
    display: grid;
    grid-template-columns: 1fr;
    gap: 8px;
}
.hero-badge {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px 14px;
    border-radius: 14px;
    background: var(--surface);
    border: 1px solid var(--line);
    box-shadow: var(--shadow-sm);
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--heading);
}
.hero-badge i { color: var(--red); flex: 0 0 auto; }

/* ========== ADS DASHBOARD (animated, no images) ========== */
.ads-dashboard {
    background: var(--surface);
    border: 1px solid var(--line);
    border-radius: var(--radius-lg);
    padding: 18px;
    box-shadow: var(--shadow-lg);
    position: relative;
    overflow: hidden;
}
.ads-dashboard-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
    margin-bottom: 16px;
    flex-wrap: wrap;
}
.ads-dash-title {
    display: flex;
    align-items: center;
    gap: 8px;
    font-weight: 800;
    font-size: 0.95rem;
    color: var(--heading);
}
.live-dot {
    width: 9px;
    height: 9px;
    border-radius: 50%;
    background: #16a34a;
    box-shadow: 0 0 0 0 rgba(22,163,74,0.5);
    animation: livePulse 1.6s ease-in-out infinite;
}
@keyframes livePulse {
    0% { box-shadow: 0 0 0 0 rgba(22,163,74,0.5); }
    100% { box-shadow: 0 0 0 14px rgba(22,163,74,0); }
}
.ads-dash-tag {
    font-size: 0.7rem;
    padding: 4px 10px;
    border-radius: 999px;
    background: var(--red-soft);
    color: var(--red);
    font-weight: 700;
    letter-spacing: 0.06em;
    text-transform: uppercase;
}

/* Ads platform tabs (Google/Meta/Telegram/App) */
.ad-platform-tabs {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 6px;
    margin-bottom: 14px;
    padding: 4px;
    background: var(--surface-2);
    border-radius: 14px;
    border: 1px solid var(--line);
}
.ad-tab {
    padding: 8px 6px;
    border-radius: 10px;
    border: 0;
    background: transparent;
    color: var(--muted);
    font-weight: 700;
    font-size: 0.74rem;
    cursor: pointer;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 4px;
    transition: background 0.2s ease, color 0.2s ease;
}
.ad-tab i { font-size: 1rem; }
.ad-tab.active {
    background: var(--gradient);
    color: #fff;
    box-shadow: 0 6px 16px rgba(225,29,46,0.32);
}
.ad-tab span { font-size: 0.7rem; }

.kpi-row {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 8px;
    margin-bottom: 14px;
}
.kpi {
    padding: 12px;
    border-radius: 14px;
    background: linear-gradient(180deg, var(--surface), var(--surface-2));
    border: 1px solid var(--line);
}
.kpi small {
    display: block;
    color: var(--muted);
    font-size: 0.7rem;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    margin-bottom: 4px;
}
.kpi strong {
    display: block;
    font-size: 1.4rem;
    font-weight: 800;
    color: var(--heading);
    line-height: 1.05;
}
.kpi .kpi-delta {
    font-size: 0.72rem;
    color: #16a34a;
    font-weight: 700;
    display: inline-flex;
    align-items: center;
    gap: 4px;
    margin-top: 4px;
}
.kpi .kpi-delta.down { color: var(--red); }

/* Animated bar chart */
.ad-chart {
    margin-bottom: 14px;
    padding: 14px;
    border-radius: 14px;
    background: linear-gradient(180deg, var(--surface), var(--surface-2));
    border: 1px solid var(--line);
}
.ad-chart-head {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 10px;
    flex-wrap: wrap;
    gap: 6px;
}
.ad-chart-head small {
    color: var(--muted);
    font-size: 0.72rem;
    font-weight: 600;
}
.ad-chart-head strong { font-size: 0.86rem; color: var(--heading); }
.ad-bars {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 6px;
    height: 110px;
}
.ad-bars .bar {
    flex: 1;
    min-width: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 4px;
    height: 100%;
    justify-content: flex-end;
}
.ad-bars .bar .bar-fill {
    width: 100%;
    max-width: 22px;
    background: var(--gradient);
    border-radius: 6px 6px 2px 2px;
    height: 0;
    transition: height 1s cubic-bezier(.2,.8,.2,1);
    box-shadow: 0 4px 10px rgba(225,29,46,0.24);
}
.ad-bars .bar small {
    font-size: 0.66rem;
    color: var(--muted);
    font-weight: 600;
}

/* Line chart (SVG) */
.line-chart {
    width: 100%;
    height: 90px;
    display: block;
}
.line-chart .line-path {
    fill: none;
    stroke: url(#lineGrad);
    stroke-width: 2.5;
    stroke-linecap: round;
    stroke-linejoin: round;
    stroke-dasharray: 800;
    stroke-dashoffset: 800;
    animation: drawLine 2s ease forwards;
}
@keyframes drawLine {
    to { stroke-dashoffset: 0; }
}
.line-chart .line-area {
    fill: url(#areaGrad);
    opacity: 0;
    animation: fadeArea 1.5s ease 0.6s forwards;
}
@keyframes fadeArea {
    to { opacity: 1; }
}
.line-dot {
    fill: var(--red);
    stroke: #fff;
    stroke-width: 2;
    opacity: 0;
    animation: dotPop 0.5s ease forwards;
}

/* Live stat ticker */
.live-ticker {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px 12px;
    border-radius: 12px;
    background: var(--red-soft);
    border: 1px dashed var(--line-strong);
    font-size: 0.84rem;
    color: var(--heading);
    font-weight: 600;
}
.live-ticker .live-dot { flex: 0 0 auto; }
.live-ticker .ticker-text {
    min-width: 0;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

/* ========== SERVICE CARDS ========== */
.services-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 16px;
}
.service-card {
    background: var(--surface);
    border: 1px solid var(--line);
    border-radius: var(--radius);
    padding: 20px;
    box-shadow: var(--shadow-sm);
    transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
    position: relative;
    overflow: hidden;
}
.service-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow);
    border-color: var(--line-strong);
}
.service-icon {
    width: 50px;
    height: 50px;
    display: grid;
    place-items: center;
    border-radius: 14px;
    background: var(--red-soft);
    color: var(--red);
    font-size: 1.25rem;
    margin-bottom: 14px;
}
.service-card h3 {
    font-size: 1.12rem;
    margin-bottom: 8px;
}
.service-card p { font-size: 0.92rem; margin-bottom: 14px; }
.service-card .service-foot {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
    flex-wrap: wrap;
}
.price-tag {
    display: inline-block;
    padding: 7px 12px;
    border-radius: 999px;
    background: var(--red-soft);
    color: var(--red);
    font-weight: 800;
    font-size: 0.84rem;
    white-space: nowrap;
}
.service-feature-list {
    list-style: none;
    padding: 0;
    margin: 0 0 14px;
}
.service-feature-list li {
    position: relative;
    padding-left: 22px;
    margin-bottom: 6px;
    color: var(--muted);
    font-size: 0.9rem;
}
.service-feature-list li::before {
    content: '✓';
    position: absolute;
    left: 0;
    top: 0;
    color: var(--red);
    font-weight: 800;
}

/* ========== PRICING ========== */
.pricing-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 18px;
}
.pricing-card {
    background: var(--surface);
    border: 1px solid var(--line);
    border-radius: var(--radius);
    padding: 24px 20px;
    box-shadow: var(--shadow-sm);
    text-align: center;
    position: relative;
    transition: transform 0.25s ease, box-shadow 0.25s ease;
}
.pricing-card.popular {
    border-color: var(--red);
    box-shadow: var(--shadow);
}
.pricing-card:hover { transform: translateY(-4px); box-shadow: var(--shadow); }
.popular-badge {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--gradient);
    color: #fff;
    padding: 5px 14px;
    border-radius: 999px;
    font-size: 0.7rem;
    font-weight: 800;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    white-space: nowrap;
}
.pricing-card h3 { font-size: 1.1rem; margin-bottom: 6px; }
.pricing-card .price-amount {
    font-family: var(--font-display);
    font-size: clamp(1.8rem, 8vw, 2.4rem);
    font-weight: 800;
    color: var(--heading);
    line-height: 1;
    margin: 8px 0 4px;
}
.pricing-card .price-note {
    font-size: 0.78rem;
    color: var(--muted);
    margin-bottom: 16px;
}
.pricing-card ul {
    text-align: left;
    list-style: none;
    padding: 0;
    margin: 0 0 18px;
}
.pricing-card ul li {
    padding: 7px 0 7px 22px;
    border-bottom: 1px dashed var(--line);
    color: var(--muted);
    font-size: 0.88rem;
    position: relative;
}
.pricing-card ul li:last-child { border-bottom: 0; }
.pricing-card ul li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--red);
    font-weight: 800;
}

/* ========== TRUST / STATS ========== */
.trust-strip {
    background: var(--surface);
    border-top: 1px solid var(--line);
    border-bottom: 1px solid var(--line);
    padding: 28px 0;
}
.trust-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 14px;
}
.trust-item {
    text-align: center;
}
.trust-item strong {
    display: block;
    font-family: var(--font-display);
    font-size: clamp(1.3rem, 5vw, 1.9rem);
    color: var(--red);
    font-weight: 800;
    line-height: 1;
    margin-bottom: 4px;
}
.trust-item small {
    font-size: 0.78rem;
    color: var(--muted);
    font-weight: 600;
}

/* ========== STEPS / PROCESS ========== */
.steps-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 14px;
}
.step-card {
    background: var(--surface);
    border: 1px solid var(--line);
    border-radius: var(--radius);
    padding: 20px;
    display: flex;
    gap: 14px;
    align-items: flex-start;
    box-shadow: var(--shadow-sm);
}
.step-num {
    width: 40px;
    height: 40px;
    flex: 0 0 40px;
    display: grid;
    place-items: center;
    border-radius: 50%;
    background: var(--gradient);
    color: #fff;
    font-weight: 800;
    font-size: 0.95rem;
}
.step-card h4 { font-size: 1rem; margin-bottom: 4px; }
.step-card p { font-size: 0.9rem; margin: 0; }

/* ========== FAQ ========== */
.faq-grid {
    display: grid;
    gap: 12px;
}
.faq-item {
    background: var(--surface);
    border: 1px solid var(--line);
    border-radius: var(--radius);
    padding: 0;
    overflow: hidden;
}
.faq-q {
    width: 100%;
    text-align: left;
    background: transparent;
    border: 0;
    padding: 16px 18px;
    font-weight: 700;
    font-size: 0.96rem;
    color: var(--heading);
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 10px;
    cursor: pointer;
}
.faq-q::after {
    content: '+';
    color: var(--red);
    font-size: 1.3rem;
    transition: transform 0.2s ease;
}
.faq-item.open .faq-q::after { content: '−'; }
.faq-a {
    padding: 0 18px 16px;
    color: var(--muted);
    font-size: 0.92rem;
    display: none;
}
.faq-item.open .faq-a { display: block; }

/* ========== CONTACT ========== */
.contact-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 22px;
}
.contact-card {
    background: var(--surface);
    border: 1px solid var(--line);
    border-radius: var(--radius);
    padding: 22px;
    box-shadow: var(--shadow-sm);
}
.contact-info-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: grid;
    gap: 14px;
}
.contact-info-list li {
    display: flex;
    gap: 12px;
    align-items: flex-start;
    font-size: 0.94rem;
    color: var(--heading);
}
.contact-info-list i {
    width: 36px;
    height: 36px;
    flex: 0 0 36px;
    display: grid;
    place-items: center;
    border-radius: 10px;
    background: var(--red-soft);
    color: var(--red);
}
.contact-info-list small {
    display: block;
    color: var(--muted);
    font-size: 0.78rem;
    margin-bottom: 2px;
}
.contact-info-list a { word-break: break-all; }

.form-control,
.form-select {
    display: block;
    width: 100%;
    padding: 12px 14px;
    border-radius: 12px;
    border: 1px solid var(--line-strong);
    background: var(--surface);
    color: var(--heading);
    font-size: 0.95rem;
    font-family: inherit;
    outline: none;
    transition: border-color 0.2s ease, box-shadow 0.2s ease;
}
.form-control:focus,
.form-select:focus {
    border-color: var(--red);
    box-shadow: 0 0 0 4px rgba(225,29,46,0.1);
}
.form-select option { background: var(--bg-soft); color: var(--heading); }
textarea.form-control { min-height: 130px; resize: vertical; }
.form-row { display: grid; gap: 12px; margin-bottom: 12px; }

/* ========== CTA STRIP ========== */
.cta-strip { padding: 30px 0; }
.cta-card {
    background: var(--gradient);
    color: #fff;
    border-radius: var(--radius-lg);
    padding: 26px 22px;
    display: grid;
    gap: 16px;
    box-shadow: var(--shadow-lg);
    position: relative;
    overflow: hidden;
}
.cta-card::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at top right, rgba(255,255,255,0.18), transparent 60%);
    pointer-events: none;
}
.cta-title { color: #fff; font-size: clamp(1.2rem, 5vw, 1.6rem); margin-bottom: 4px; }
.cta-text { color: rgba(255,255,255,0.92); margin: 0; }
.cta-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}
.cta-actions .btn { flex: 1 1 auto; }
.cta-actions .btn-gradient {
    background: #fff;
    color: var(--red);
    box-shadow: none;
}
.cta-actions .btn-gradient:hover { background: rgba(255,255,255,0.92); color: var(--red); }

/* ========== FOOTER ========== */
.site-footer {
    background: var(--bg-soft);
    border-top: 1px solid var(--line);
    padding: 50px 0 22px;
}
.footer-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 30px;
    margin-bottom: 28px;
}
.footer-brand { font-size: 1.4rem; }
.footer-text { color: var(--muted); font-size: 0.92rem; }
.footer-col h6 {
    font-size: 0.92rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-bottom: 14px;
    color: var(--heading);
}
.footer-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: grid;
    gap: 8px;
}
.footer-list a { color: var(--muted); font-size: 0.92rem; }
.footer-list a:hover { color: var(--red); }
.footer-contact {
    display: grid;
    gap: 8px;
    margin-top: 14px;
    font-size: 0.9rem;
    color: var(--muted);
}
.footer-contact i { color: var(--red); }
.footer-bottom {
    border-top: 1px solid var(--line);
    padding-top: 18px;
    color: var(--muted);
    font-size: 0.86rem;
    text-align: center;
}

/* ========== FLOATING WHATSAPP ========== */
.float-whatsapp {
    position: fixed;
    right: 14px;
    bottom: 14px;
    width: 54px;
    height: 54px;
    border-radius: 50%;
    background: #25d366;
    color: #fff;
    display: grid;
    place-items: center;
    font-size: 1.6rem;
    box-shadow: 0 12px 28px rgba(37,211,102,0.45);
    z-index: 1000;
    animation: floatPulse 2s ease-in-out infinite;
}
.float-whatsapp:hover { color: #fff; }
@keyframes floatPulse {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-4px); }
}

/* ========== ABOUT BLOCKS ========== */
.about-points {
    display: grid;
    gap: 14px;
}
.about-point {
    background: var(--surface);
    border: 1px solid var(--line);
    border-radius: var(--radius);
    padding: 18px;
    display: flex;
    gap: 12px;
    align-items: flex-start;
    box-shadow: var(--shadow-sm);
}
.about-point i {
    width: 42px;
    height: 42px;
    flex: 0 0 42px;
    display: grid;
    place-items: center;
    border-radius: 12px;
    background: var(--red-soft);
    color: var(--red);
    font-size: 1.1rem;
}
.about-point h4 { font-size: 1rem; margin-bottom: 4px; }
.about-point p { margin: 0; font-size: 0.9rem; }

/* ========== BANNER (sub-pages) ========== */
.page-banner {
    padding: 120px 0 50px;
    background: linear-gradient(180deg, #fff5f6 0%, var(--bg) 100%);
    text-align: center;
    position: relative;
    overflow: hidden;
}
html[data-bs-theme='dark'] .page-banner { background: linear-gradient(180deg, #1a0d12 0%, var(--bg) 100%); }
.page-banner h1 {
    font-size: clamp(1.8rem, 7vw, 2.8rem);
    margin-bottom: 10px;
}
.page-banner p { max-width: 580px; margin: 0 auto; }

/* ========== TABLET / DESKTOP ========== */
@media (min-width: 576px) {
    .hero-badges { grid-template-columns: 1fr 1fr; }
    .trust-grid { grid-template-columns: repeat(4, minmax(0, 1fr)); }
    .kpi-row { grid-template-columns: repeat(4, minmax(0, 1fr)); }
}
@media (min-width: 768px) {
    section { padding: 80px 0; }
    .services-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
    .pricing-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
    .steps-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
    .contact-grid { grid-template-columns: 1.1fr 1fr; }
    .cta-card { grid-template-columns: 1.4fr 1fr; align-items: center; }
    .footer-grid { grid-template-columns: 1.4fr 0.9fr 0.9fr 1.1fr; }
}
@media (min-width: 992px) {
    .hero { padding: 150px 0 90px; }
    .hero-grid { grid-template-columns: 1.1fr 1fr; gap: 40px; }
    .hero-title { font-size: 3.2rem; }
    .services-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); }
    .pricing-grid { grid-template-columns: repeat(4, minmax(0, 1fr)); }
    .steps-grid { grid-template-columns: repeat(4, minmax(0, 1fr)); }
    .ads-dashboard { padding: 22px; }
    .ad-bars { height: 140px; }
    .ad-bars .bar .bar-fill { max-width: 28px; }
}

/* Very small phones (320–360) */
@media (max-width: 380px) {
    .container { padding-left: 12px; padding-right: 12px; }
    .hero-title { font-size: 1.7rem; }
    .ad-tab span { display: none; }
    .ad-tab { padding: 8px 4px; }
    .btn { padding: 11px 14px; font-size: 0.88rem; }
    .service-card, .pricing-card, .contact-card, .ads-dashboard { padding: 16px; }
    .kpi strong { font-size: 1.15rem; }
}
