@import url('https://fonts.googleapis.com/css2?family=Google+Sans+Flex:opsz,wght@6..144,1..1000&display=swap');

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: "Google Sans Flex", sans-serif;
}

:root {
    --primary-color: #ff8432;
    --border-radius: 12px;
    --border: 1.5px solid #e2e8f0;
    --border-color: #e2e8f0;
    --box-shadow: 0 4px 24px rgba(0, 0, 0, 0.07);
    --box-shadow-card: 0 2px 12px rgba(0, 0, 0, 0.05);
    --sidebar-width: 270px;
    --bg-primary: #ffffff;
    --bg-secondary: #f8fafc;
    --bg-hero: #080d18;
    --bg-section: #f8fafc;
    --bg-dark: #080d18;
    --text-primary: #0f172a;
    --text-secondary: #64748b;
    --heading-color: #0f172a;
    --text-muted: #64748b;
    --text-on-dark: #ffffff;
}

[data-theme="dark"] {
    --bg-primary: #0f172a;
    --bg-secondary: #1e293b;
    --bg-hero: #020617;
    --bg-section: #1e293b;
    --bg-dark: #020617;
    --text-primary: #f1f5f9;
    --text-secondary: #94a3b8;
    --heading-color: #f1f5f9;
    --text-muted: #94a3b8;
    --border-color: #1e293b;
    --border: 1.5px solid var(--border-color);
    --box-shadow: 0 4px 24px rgba(0, 0, 0, 0.35);
    --box-shadow-card: 0 2px 12px rgba(0, 0, 0, 0.25);
}

/* ─── Base ─── */
.container {
    max-width: 1080px;
    width: 90%;
    margin: 0 auto;
}

a {
    text-decoration: none;
    color: inherit;
}

body {
    background-color: var(--bg-secondary);
    overflow-x: hidden;
}

/* ─── Header ─── */
.header {
    width: 100%;
    background-color: rgba(255, 255, 255, 0.94);
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
    position: sticky;
    top: 0;
    z-index: 1000;
    border-bottom: 1px solid rgba(0, 0, 0, 0.06);
    transition: box-shadow 0.3s ease;
}

[data-theme="dark"] .header {
    background-color: rgba(15, 23, 42, 0.95);
    border-bottom-color: rgba(255, 255, 255, 0.06);
}

.header-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 15px 0;
}

.logo { width: 130px; }

.logo-text {
    font-size: 20px;
    font-weight: 800;
    color: var(--primary-color);
    letter-spacing: -0.5px;
}

.logo-light { display: inline-block; }
.logo-dark  { display: none; }
[data-theme="dark"] .logo-light { display: none; }
[data-theme="dark"] .logo-dark  { display: inline-block; }

.header-link {
    display: flex;
    align-items: center;
    gap: 36px;
    list-style: none;
}

.header-link a {
    font-size: 14px;
    font-weight: 500;
    color: var(--text-secondary);
    transition: color 0.2s ease;
}

.header-link a:hover { color: var(--text-primary); }

.header-actions {
    display: flex;
    align-items: center;
    gap: 12px;
}

/* ─── Mobile Menu ─── */
.mobile-menu-toggle {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
    color: var(--text-primary);
    font-size: 24px;
    border-radius: 8px;
    transition: background 0.2s ease, transform 0.2s ease;
}

.mobile-menu-toggle:hover {
    background: var(--bg-secondary);
    transform: scale(1.05);
}

.mobile-menu {
    position: absolute;
    top: 100%;
    left: 0;
    max-height: 0;
    width: 100%;
    padding: 0;
    background-color: var(--bg-primary);
    border-top: 1px solid transparent;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    opacity: 0;
    transform: translateY(-8px);
    transition: max-height 0.4s ease, padding 0.4s ease, opacity 0.3s ease, transform 0.3s ease, border-color 0.3s ease;
    z-index: 999;
}

.mobile-menu-list {
    padding: 0 5%;
    list-style: none;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 0;
}

.mobile-menu.active {
    max-height: 500px;
    padding: 12px 0;
    opacity: 1;
    transform: translateY(0);
    border-top-color: var(--border-color);
}

.mobile-menu-item {
    border-bottom: 1px solid var(--border-color);
    opacity: 0;
    transform: translateX(-16px);
    transition: opacity 0.3s ease, transform 0.3s ease;
}

.mobile-menu.active .mobile-menu-item { opacity: 1; transform: translateX(0); }
.mobile-menu.active .mobile-menu-item:nth-child(1) { transition-delay: 0.05s; }
.mobile-menu.active .mobile-menu-item:nth-child(2) { transition-delay: 0.1s; }
.mobile-menu.active .mobile-menu-item:nth-child(3) { transition-delay: 0.15s; }
.mobile-menu.active .mobile-menu-item:nth-child(4) { transition-delay: 0.2s; }
.mobile-menu.active .mobile-menu-item:nth-child(5) { transition-delay: 0.25s; }

.mobile-menu-item:last-child { border-bottom: none; }

.mobile-menu-item a {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 15px 20px;
    font-size: 15px;
    font-weight: 500;
    color: var(--text-primary);
    text-decoration: none;
    transition: color 0.2s ease;
}

.mobile-menu-item a:hover { color: var(--primary-color); }
.mobile-menu-item a i { font-size: 18px; color: var(--primary-color); transition: transform 0.2s ease; }

/* ─── Buttons ─── */
.btn {
    height: 42px;
    padding: 0 20px;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    border: 1.5px solid transparent;
    border-radius: 10px;
    transition: all 0.2s ease;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--text-primary);
    white-space: nowrap;
}

.btn i { font-size: 17px; }

.btn-primary {
    background: var(--primary-color);
    color: #fff;
    border-color: var(--primary-color);
}

.btn-primary:hover {
    opacity: 0.92;
    transform: translateY(-1px);
    box-shadow: 0 6px 18px rgba(0, 0, 0, 0.15);
}

.btn-secondary {
    background: var(--bg-primary);
    color: var(--text-primary);
    border-color: var(--border-color);
}

.btn-secondary:hover {
    border-color: var(--primary-color);
    color: var(--primary-color);
    transform: translateY(-1px);
}

/* ─── Hero ─── */
.hero {
    background: #ffffff;
    background-image:
        radial-gradient(ellipse at 10% 30%, rgba(255, 132, 50, 0.10) 0%, transparent 55%),
        radial-gradient(ellipse at 88% 10%, rgba(99, 102, 241, 0.09) 0%, transparent 50%),
        radial-gradient(ellipse at 55% 90%, rgba(139, 92, 246, 0.07) 0%, transparent 50%);
    padding: 120px 0 100px;
    width: 100%;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image: radial-gradient(circle, rgba(99, 102, 241, 0.045) 1px, transparent 1px);
    background-size: 32px 32px;
    pointer-events: none;
}

.hero::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 100px;
    background: linear-gradient(to bottom, transparent, #ffffff);
    pointer-events: none;
}

[data-theme="dark"] .hero { background: #020617; background-image: radial-gradient(ellipse at 15% 40%, rgba(255,132,50,0.14) 0%, transparent 55%), radial-gradient(ellipse at 85% 15%, rgba(99,102,241,0.12) 0%, transparent 50%), radial-gradient(ellipse at 60% 85%, rgba(139,92,246,0.08) 0%, transparent 50%); }
[data-theme="dark"] .hero::before { background-image: radial-gradient(circle, rgba(255,255,255,0.035) 1px, transparent 1px); }
[data-theme="dark"] .hero::after { background: linear-gradient(to bottom, transparent, #020617); }

.hero .container {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    position: relative;
    z-index: 1;
}

.hero-content { z-index: 2; }

.hero-tags {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 4px 6px;
    gap: 6px;
    margin-bottom: 28px;
    background: rgba(99, 102, 241, 0.05);
    border: 1px solid rgba(99, 102, 241, 0.15);
    border-radius: 100px;
    backdrop-filter: blur(8px);
    color: var(--text-secondary);
}

[data-theme="dark"] .hero-tags { background: rgba(255,255,255,0.06); border-color: rgba(255,255,255,0.12); color: rgba(255,255,255,0.8); }

.hero-tag {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    border-radius: 100px;
    padding: 6px 14px;
    font-size: 13px;
    font-weight: 500;
    color: var(--text-secondary);
    transition: all 0.2s ease;
}

[data-theme="dark"] .hero-tag { color: rgba(255,255,255,0.75); }

.hero-tag:hover { transform: translateY(-1px); }

.hero-tag-new {
    background: var(--primary-color);
    color: #fff;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.5px;
    text-transform: uppercase;
}

.hero-title {
    font-size: 68px;
    font-weight: 800;
    color: var(--heading-color);
    line-height: 1.08;
    margin: 0 0 24px;
    letter-spacing: -0.03em;
}

[data-theme="dark"] .hero-title { color: #ffffff; }

.hero-description {
    font-size: 19px;
    color: var(--text-secondary);
    line-height: 1.7;
    margin: 0 auto 44px;
    max-width: 600px;
}

[data-theme="dark"] .hero-description { color: rgba(255,255,255,0.6); }

.hero-buttons {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 14px;
    flex-wrap: wrap;
}

.btn-hero-primary {
    background: var(--primary-color);
    color: #fff;
    border: 1.5px solid var(--primary-color);
    height: 52px;
    padding: 0 28px;
    font-size: 15px;
    font-weight: 600;
    border-radius: 12px;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    cursor: pointer;
    transition: all 0.2s ease;
    box-shadow: 0 8px 24px rgba(255, 132, 50, 0.35);
}

.btn-hero-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 32px rgba(255, 132, 50, 0.45);
    opacity: 0.95;
}

.btn-hero-secondary {
    background: rgba(99, 102, 241, 0.06);
    color: var(--text-primary);
    border: 1.5px solid rgba(99, 102, 241, 0.22);
    height: 52px;
    padding: 0 28px;
    font-size: 15px;
    font-weight: 600;
    border-radius: 12px;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    cursor: pointer;
    transition: all 0.2s ease;
    backdrop-filter: blur(4px);
}

.btn-hero-secondary:hover {
    background: rgba(99, 102, 241, 0.11);
    border-color: rgba(99, 102, 241, 0.4);
    transform: translateY(-2px);
}

[data-theme="dark"] .btn-hero-secondary { background: rgba(255,255,255,0.07); color: #fff; border-color: rgba(255,255,255,0.2); }
[data-theme="dark"] .btn-hero-secondary:hover { background: rgba(255,255,255,0.13); border-color: rgba(255,255,255,0.35); }

.btn-hero-primary i, .btn-hero-secondary i {
    font-size: 18px;
    transition: transform 0.2s ease;
}

.btn-hero-primary:hover i, .btn-hero-secondary:hover i {
    transform: translateX(3px);
}

.hero-image-wrapper {
    width: 100%;
    max-width: 1100px;
    margin: 60px auto 0;
    position: relative;
    z-index: 1;
}

.hero-image {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 20px;
    box-shadow:
        0 0 0 1px rgba(255, 255, 255, 0.07),
        0 32px 80px rgba(0, 0, 0, 0.55);
    animation: floatUpDown 4s ease-in-out infinite;
}

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

.h-full { height: 100%; }

/* ─── Stats ─── */
.stats {
    padding: 64px 0;
    background: var(--bg-primary);
    border-bottom: var(--border);
}

.stats-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
}

.stats-card {
    flex: 1;
    display: flex;
    align-items: center;
    gap: 16px;
}

.stats-icon {
    width: 54px;
    height: 54px;
    background: rgba(255, 132, 50, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 14px;
    border: 1.5px solid rgba(255, 132, 50, 0.18);
    flex-shrink: 0;
}

.stats-icon i {
    font-size: 22px;
    color: var(--primary-color);
}

.stats-text { display: flex; flex-direction: column; gap: 3px; }

.stats-text h3 {
    color: var(--heading-color);
    font-size: 22px;
    font-weight: 800;
    letter-spacing: -0.5px;
}

.stats-text p {
    white-space: nowrap;
    font-size: 13px;
    color: var(--text-muted);
    font-weight: 500;
}

/* ─── Section Header ─── */
.section-header {
    text-align: center;
    max-width: 640px;
    margin: 0 auto 52px;
}

.section-header .subtitle {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    border-radius: 100px;
    padding: 5px 16px;
    border: 1.5px solid var(--border-color);
    font-size: 13px;
    font-weight: 600;
    margin-bottom: 20px;
    color: var(--primary-color);
    background: rgba(255, 132, 50, 0.06);
}

.section-header .title {
    font-size: 42px;
    font-weight: 800;
    margin-bottom: 16px;
    color: var(--heading-color);
    letter-spacing: -0.025em;
    line-height: 1.15;
}

.section-header .desc {
    color: var(--text-muted);
    font-size: 16px;
    line-height: 1.7;
}

/* ─── About ─── */
.about-section {
    width: 100%;
    padding: 100px 0;
    background: var(--bg-primary);
}

.about-wrapper {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 80px;
    align-items: center;
}

.about-left { display: flex; flex-direction: column; gap: 0; }

.about-item {
    padding: 22px 0;
    cursor: pointer;
    transition: all 0.3s ease;
    opacity: 0.45;
}

.about-item.active { opacity: 1; }
.about-item.active .about-title { color: var(--primary-color); }
.about-item:hover { opacity: 1; }

.about-title {
    font-size: 17px;
    font-weight: 700;
    color: var(--heading-color);
    margin-bottom: 0;
    transition: color 0.3s ease;
}

.about-desc {
    font-size: 15px;
    color: var(--text-muted);
    line-height: 1.65;
    margin: 0;
    max-height: 0;
    overflow: hidden;
    opacity: 0;
    transition: max-height 0.35s ease, opacity 0.35s ease, margin 0.35s ease;
}

.about-item.active .about-desc {
    max-height: 200px;
    opacity: 1;
    margin-top: 10px;
}

.about-divider {
    width: 100%;
    height: 1px;
    background: var(--border-color);
    margin: 0;
}

.about-right {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.about-image-wrapper {
    width: 100%;
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    background: linear-gradient(160deg, #eef2ff 0%, #1e1b4b 100%);
    padding: 40px;
}

[data-theme="dark"] .about-image-wrapper {
    background: linear-gradient(160deg, #1e1b4b 0%, #020617 100%);
}

.about-image {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 12px;
    object-fit: contain;
    transition: opacity 0.3s ease;
}

.about-image.fade-out { opacity: 0; }
.about-image.fade-in  { opacity: 1; }

/* ─── Features ─── */
.features {
    padding: 100px 0;
    width: 100%;
    background: var(--bg-section);
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.features-card {
    padding: 22px;
    background: var(--bg-primary);
    border: 1.5px solid var(--border-color);
    border-radius: 16px;
    display: flex;
    align-items: center;
    gap: 16px;
    transition: all 0.25s ease;
}

.features-card:hover {
    border-color: var(--primary-color);
    box-shadow: 0 8px 28px rgba(0, 0, 0, 0.08);
    transform: translateY(-3px);
}

.feature-icon {
    width: 52px;
    height: 52px;
    background: rgba(255, 132, 50, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 14px;
    flex-shrink: 0;
    border: 1.5px solid rgba(255, 132, 50, 0.15);
}

.feature-icon i {
    font-size: 22px;
    color: var(--primary-color);
}

.feature-text { display: flex; flex-direction: column; gap: 4px; flex: 1; }

.feature-text h3 {
    color: var(--heading-color);
    font-size: 16px;
    font-weight: 700;
}

.feature-text p {
    font-size: 13px;
    color: var(--text-muted);
    line-height: 1.55;
}

/* ─── Automation ─── */
.automation-section {
    padding: 100px 0;
    width: 100%;
    background: var(--bg-primary);
}

.automation-cards-container {
    position: relative;
    height: 2000px;
}

.automation-card {
    position: sticky;
    top: 100px;
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 60px;
    align-items: center;
    padding: 40px;
    border-radius: 28px;
    margin-bottom: 30px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    width: 100%;
}

.automation-card:nth-child(1) { background: linear-gradient(135deg, #eff6ff 0%, #dbeafe 100%); }
.automation-card:nth-child(2) { background: linear-gradient(135deg, #fff7ed 0%, #fed7aa 100%); }
.automation-card:nth-child(3) { background: linear-gradient(135deg, #f0fdf4 0%, #bbf7d0 100%); }
.automation-card:nth-child(4) { background: linear-gradient(135deg, #fdf4ff 0%, #e9d5ff 100%); }
.automation-card:nth-child(5) { background: linear-gradient(135deg, #fff1f2 0%, #fecdd3 100%); }

[data-theme="dark"] .automation-card:nth-child(1) { background: linear-gradient(135deg, #1e3a5f 0%, #1e40af 100%); }
[data-theme="dark"] .automation-card:nth-child(2) { background: linear-gradient(135deg, #451a03 0%, #9a3412 100%); }
[data-theme="dark"] .automation-card:nth-child(3) { background: linear-gradient(135deg, #052e16 0%, #166534 100%); }
[data-theme="dark"] .automation-card:nth-child(4) { background: linear-gradient(135deg, #2e1065 0%, #6d28d9 100%); }
[data-theme="dark"] .automation-card:nth-child(5) { background: linear-gradient(135deg, #4c0519 0%, #9f1239 100%); }

.automation-card:last-child { margin-bottom: 0; }

.automation-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.12);
}

.automation-left { display: flex; flex-direction: column; gap: 20px; }

.automation-title {
    font-size: 30px;
    font-weight: 700;
    color: var(--heading-color);
    line-height: 1.25;
    margin: 0;
}

.automation-desc {
    font-size: 16px;
    color: var(--text-muted);
    line-height: 1.65;
    margin: 0;
}

.automation-features {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.automation-feature-item {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 15px;
    color: var(--heading-color);
    font-weight: 500;
}

[data-theme="dark"] .automation-title,
[data-theme="dark"] .automation-desc,
[data-theme="dark"] .automation-feature-item { color: #fff; }

.automation-image-wrapper {
    width: 100%;
    position: relative;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
}

.automation-image {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 12px;
    object-fit: contain;
}

/* ─── Integration ─── */
.integration-section {
    width: 100%;
    padding: 100px 0;
    background: var(--bg-section);
}

.integration-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.integration-card {
    padding: 24px;
    background: var(--bg-primary);
    border: 1.5px solid var(--border-color);
    border-radius: 16px;
    color: var(--text-primary);
    transition: all 0.25s ease;
}

.integration-card:hover {
    border-color: var(--primary-color);
    transform: translateY(-3px);
    box-shadow: 0 8px 28px rgba(0, 0, 0, 0.08);
}

.integration-top {
    display: flex;
    align-items: center;
    gap: 14px;
    margin-bottom: 12px;
}

.integration-icon {
    width: 48px;
    height: 48px;
    background: var(--bg-secondary);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 12px;
    border: var(--border);
    flex-shrink: 0;
}

.integration-icon i {
    font-size: 22px;
    color: var(--primary-color);
}

.integration-text p {
    font-size: 14px;
    color: var(--heading-color);
    font-weight: 600;
}

/* ─── Toggle ─── */
.toggle-switch { position: relative; display: inline-block; }
.toggle-switch input { display: none; }

.toggle-label {
    display: block;
    position: relative;
    width: 68px;
    height: 34px;
    border-radius: 34px;
    background-color: var(--primary-color);
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.toggle-label::after {
    content: '';
    position: absolute;
    top: 3px;
    right: 3px;
    width: 28px;
    height: 28px;
    border-radius: 50%;
    background-color: var(--bg-primary);
    transition: transform 0.3s ease;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
}

.toggle-text {
    position: absolute;
    left: 10px;
    top: 50%;
    transform: translateY(-50%);
    color: white;
    font-size: 13px;
    font-weight: 600;
    user-select: none;
    transition: opacity 0.3s ease;
}

.toggle-switch input:not(:checked) + .toggle-label { background-color: #94a3b8; }

.toggle-switch input:not(:checked) + .toggle-label::after {
    transform: translateX(-34px);
}

.toggle-switch input:not(:checked) + .toggle-label .toggle-text { opacity: 0; }

.toggle-switch input:not(:checked) + .toggle-label::before {
    content: 'Off';
    position: absolute;
    right: 10px;
    top: 50%;
    transform: translateY(-50%);
    color: white;
    font-size: 13px;
    font-weight: 600;
    user-select: none;
    transition: opacity 0.3s ease;
}

/* ─── Reviews ─── */
.reviews-section {
    padding: 100px 0;
    width: 100%;
    background: var(--bg-primary);
}

.reviews-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.review-card {
    background: var(--bg-primary);
    border: 1.5px solid var(--border-color);
    border-radius: 20px;
    padding: 32px;
    transition: all 0.25s ease;
    display: flex;
    flex-direction: column;
    gap: 20px;
    position: relative;
    overflow: hidden;
}

.review-card::before {
    content: '\201C';
    position: absolute;
    top: 12px;
    right: 24px;
    font-size: 90px;
    color: var(--primary-color);
    opacity: 0.06;
    font-family: Georgia, serif;
    line-height: 1;
    pointer-events: none;
}

.review-card:hover {
    border-color: var(--primary-color);
    box-shadow: 0 12px 36px rgba(0, 0, 0, 0.08);
    transform: translateY(-4px);
}

.review-rating { display: flex; gap: 3px; margin-bottom: 4px; }
.review-rating i { font-size: 16px; color: #f59e0b; }

.review-text {
    font-size: 15px;
    color: var(--text-muted);
    line-height: 1.75;
    margin: 0;
    flex: 1;
}

.review-author {
    display: flex;
    align-items: center;
    gap: 14px;
    padding-top: 18px;
    border-top: 1px solid var(--border-color);
}

.review-avatar {
    width: 44px;
    height: 44px;
    background: linear-gradient(135deg, var(--primary-color), #6366f1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.review-avatar i { font-size: 22px; color: #fff; }
.review-info { display: flex; flex-direction: column; gap: 2px; }
.review-name { font-size: 15px; font-weight: 700; color: var(--heading-color); margin: 0; }
.review-role { font-size: 13px; color: var(--text-muted); margin: 0; }

@media (max-width: 1024px) {
    .reviews-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
    .reviews-grid { grid-template-columns: 1fr; }
    .review-card { padding: 24px; }
}

/* ─── Steps ─── */
.steps {
    background: var(--bg-section);
    padding: 100px 0;
    color: var(--text-primary);
    position: relative;
    overflow: hidden;
}

.steps::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse at 50% 0%, rgba(255, 132, 50, 0.06) 0%, transparent 60%);
    pointer-events: none;
}

[data-theme="dark"] .steps { background: #080d18; color: #fff; }
[data-theme="dark"] .steps::before { background: radial-gradient(ellipse at 50% 0%, rgba(255,132,50,0.1) 0%, transparent 60%); }

.steps .section-header { position: relative; z-index: 1; }
.steps .section-header .title { color: var(--heading-color); }
[data-theme="dark"] .steps .section-header .title { color: #fff; }
.steps .subtitle { color: var(--text-secondary); }
[data-theme="dark"] .steps .subtitle { background: rgba(255,255,255,0.08); color: rgba(255,255,255,0.75); border-color: rgba(255,255,255,0.12); }
.steps .desc { color: var(--text-secondary); }
[data-theme="dark"] .steps .desc { color: rgba(255,255,255,0.6); }

.steps-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    position: relative;
    z-index: 1;
}

.steps-card {
    padding: 28px 24px;
    background: var(--bg-primary);
    border: 1.5px solid var(--border-color);
    border-radius: 20px;
    transition: all 0.25s ease;
    box-shadow: var(--box-shadow-card);
}

.steps-card:hover {
    border-color: var(--primary-color);
    transform: translateY(-3px);
    box-shadow: 0 8px 28px rgba(255,132,50,0.12);
}

[data-theme="dark"] .steps-card { background: rgba(255,255,255,0.05); border-color: rgba(255,255,255,0.1); box-shadow: none; }
[data-theme="dark"] .steps-card:hover { background: rgba(255,255,255,0.08); border-color: rgba(255,255,255,0.2); box-shadow: none; }

.steps-card h3 {
    color: #fff;
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 10px;
}

.steps-card p {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.6);
    margin-bottom: 16px;
    line-height: 1.65;
}

.step-image img { width: 100%; border-radius: 8px; }

/* ─── FAQ ─── */
.faq {
    padding: 100px 0;
    background: var(--bg-section);
}

.faq-container { display: flex; flex-direction: column; gap: 12px; }

.faq-item {
    background: var(--bg-primary);
    border: 1.5px solid var(--border-color);
    border-radius: 16px;
    padding: 24px;
    box-shadow: 0 1px 4px rgba(0, 0, 0, 0.04);
    transition: all 0.25s ease;
}

.faq-item:hover { box-shadow: 0 4px 16px rgba(0, 0, 0, 0.06); }

.faq-item.active {
    border-color: var(--primary-color);
    box-shadow: 0 4px 20px rgba(255, 132, 50, 0.1);
}

.faq-question {
    display: flex;
    align-items: center;
    justify-content: space-between;
    cursor: pointer;
    gap: 20px;
}

.faq-question h3 {
    font-size: 17px;
    font-weight: 600;
    color: var(--heading-color);
    margin: 0;
    flex: 1;
}

.faq-icon {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: rgba(255, 132, 50, 0.1);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-color);
    font-size: 18px;
    transition: all 0.3s ease;
    flex-shrink: 0;
}

.faq-item.active .faq-icon {
    transform: rotate(180deg);
    background: var(--primary-color);
    color: #fff;
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.35s ease, opacity 0.35s ease, padding 0.35s ease;
    opacity: 0;
    padding-top: 0;
}

.faq-answer.active {
    max-height: 500px;
    opacity: 1;
    padding-top: 16px;
}

.faq-answer p {
    font-size: 15px;
    color: var(--text-muted);
    line-height: 1.7;
    margin: 0;
}

/* ─── CTA ─── */
.cta {
    padding: 100px 0;
    width: 100%;
    background: #ffffff;
    background-image:
        radial-gradient(ellipse at 15% 50%, rgba(255, 132, 50, 0.08) 0%, transparent 55%),
        radial-gradient(ellipse at 85% 50%, rgba(99, 102, 241, 0.07) 0%, transparent 55%);
    color: var(--text-primary);
    position: relative;
    overflow: hidden;
    border-top: var(--border);
}

.cta::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image: radial-gradient(circle, rgba(99,102,241,0.03) 1px, transparent 1px);
    background-size: 32px 32px;
    pointer-events: none;
}

[data-theme="dark"] .cta { background: #020617; background-image: radial-gradient(ellipse at 20% 50%, rgba(255,132,50,0.18) 0%, transparent 55%), radial-gradient(ellipse at 80% 50%, rgba(99,102,241,0.12) 0%, transparent 55%); border-top: none; color: #fff; }
[data-theme="dark"] .cta::before { background: none; }

.cta .container { position: relative; z-index: 1; }
.cta .section-header .title { color: var(--heading-color); }
[data-theme="dark"] .cta .section-header .title { color: #fff; }
.cta .subtitle { color: var(--text-secondary); }
[data-theme="dark"] .cta .subtitle { background: rgba(255,255,255,0.08); color: rgba(255,255,255,0.75); border-color: rgba(255,255,255,0.12); }
.cta .desc { color: var(--text-secondary); }
[data-theme="dark"] .cta .desc { color: rgba(255,255,255,0.65); }

.cta-buttons {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
    margin-top: 44px;
    flex-wrap: wrap;
}

.btn-white {
    background: #fff;
    color: var(--primary-color);
    border: 2px solid #fff;
    height: 52px;
    padding: 0 32px;
    font-size: 15px;
    font-weight: 700;
    border-radius: 12px;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    cursor: pointer;
    transition: all 0.2s ease;
}

.btn-white:hover {
    background: rgba(255, 255, 255, 0.92);
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.2);
    color: var(--primary-color);
}

.btn-outline {
    background: transparent;
    color: var(--text-primary);
    border: 2px solid var(--border-color);
    height: 52px;
    padding: 0 32px;
    font-size: 15px;
    font-weight: 600;
    border-radius: 12px;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    cursor: pointer;
    transition: all 0.2s ease;
}

.btn-outline:hover {
    border-color: var(--primary-color);
    background: rgba(255,132,50,0.05);
    transform: translateY(-2px);
    color: var(--primary-color);
}

[data-theme="dark"] .btn-outline { color: #fff; border-color: rgba(255,255,255,0.3); }
[data-theme="dark"] .btn-outline:hover { border-color: rgba(255,255,255,0.6); background: rgba(255,255,255,0.08); color: #fff; }

/* ─── Footer ─── */
.footer {
    padding: 80px 0 40px;
    width: 100%;
    background: var(--bg-primary);
    border-top: var(--border);
}

.footer-content {
    display: grid;
    grid-template-columns: 1.4fr 2fr;
    gap: 60px;
    margin-bottom: 48px;
}

.footer-brand { display: flex; flex-direction: column; gap: 16px; }

.footer-logo-wrapper {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 4px;
}

.footer-logo { width: 120px; object-fit: contain; }

.footer-brand-name {
    font-size: 18px;
    font-weight: 800;
    color: var(--heading-color);
    letter-spacing: -0.3px;
}

.footer-tagline {
    font-size: 14px;
    color: var(--text-muted);
    line-height: 1.7;
    margin: 0;
    max-width: 280px;
}

.footer-links {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
}

.footer-column-title {
    font-size: 11px;
    font-weight: 700;
    color: var(--text-muted);
    margin-bottom: 16px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.footer-link-list { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: 10px; }

.footer-link-list li a {
    font-size: 14px;
    font-weight: 500;
    color: var(--text-muted);
    text-decoration: none;
    transition: color 0.2s ease;
}

.footer-link-list li a:hover { color: var(--primary-color); }

.footer-bottom {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-top: 28px;
    border-top: var(--border);
    flex-wrap: wrap;
    gap: 16px;
}

.footer-copyright { font-size: 13px; color: var(--text-muted); margin: 0; }

.website-link { color: var(--primary-color); text-decoration: none; transition: opacity 0.2s; }
.website-link:hover { opacity: 0.8; text-decoration: underline; }

.footer-social { display: flex; align-items: center; gap: 10px; }

.social-icon {
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-muted);
    background: var(--bg-secondary);
    border: var(--border);
    border-radius: 10px;
    text-decoration: none;
    transition: all 0.2s ease;
}

.social-icon:hover {
    color: var(--primary-color);
    border-color: var(--primary-color);
    transform: translateY(-2px);
}

.social-icon i { font-size: 17px; }

/* ─── Scroll Animations ─── */
section:not(.hero) {
    opacity: 0;
    transform: translateY(24px);
    transition: opacity 0.7s ease, transform 0.7s ease;
}

section:not(.hero).animate { opacity: 1; transform: translateY(0); }

.section-header {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.7s ease 0.15s, transform 0.7s ease 0.15s;
}

.section-header.animate { opacity: 1; transform: translateY(0); }

.stats-card,
.features-card,
.integration-card,
.steps-card,
.faq-item,
.automation-card,
.review-card {
    opacity: 0;
    transform: translateY(24px);
    transition: opacity 0.55s ease, transform 0.55s ease;
}

.stats-card.animate,
.features-card.animate,
.integration-card.animate,
.steps-card.animate,
.faq-item.animate,
.automation-card.animate,
.review-card.animate {
    opacity: 1;
    transform: translateY(0);
}

.stats-card:nth-child(1) { transition-delay: 0.05s; }
.stats-card:nth-child(2) { transition-delay: 0.1s; }
.stats-card:nth-child(3) { transition-delay: 0.15s; }
.stats-card:nth-child(4) { transition-delay: 0.2s; }

.features-card:nth-child(1) { transition-delay: 0.05s; }
.features-card:nth-child(2) { transition-delay: 0.1s; }
.features-card:nth-child(3) { transition-delay: 0.15s; }
.features-card:nth-child(4) { transition-delay: 0.2s; }
.features-card:nth-child(5) { transition-delay: 0.25s; }
.features-card:nth-child(6) { transition-delay: 0.3s; }

.integration-card:nth-child(1) { transition-delay: 0.05s; }
.integration-card:nth-child(2) { transition-delay: 0.1s; }
.integration-card:nth-child(3) { transition-delay: 0.15s; }
.integration-card:nth-child(4) { transition-delay: 0.2s; }
.integration-card:nth-child(5) { transition-delay: 0.25s; }
.integration-card:nth-child(6) { transition-delay: 0.3s; }

.steps-card:nth-child(1) { transition-delay: 0.05s; }
.steps-card:nth-child(2) { transition-delay: 0.1s; }
.steps-card:nth-child(3) { transition-delay: 0.15s; }

.review-card:nth-child(1) { transition-delay: 0.05s; }
.review-card:nth-child(2) { transition-delay: 0.1s; }
.review-card:nth-child(3) { transition-delay: 0.15s; }
.review-card:nth-child(4) { transition-delay: 0.2s; }
.review-card:nth-child(5) { transition-delay: 0.25s; }
.review-card:nth-child(6) { transition-delay: 0.3s; }

.faq-item:nth-child(1) { transition-delay: 0.05s; }
.faq-item:nth-child(2) { transition-delay: 0.1s; }
.faq-item:nth-child(3) { transition-delay: 0.15s; }
.faq-item:nth-child(4) { transition-delay: 0.2s; }
.faq-item:nth-child(5) { transition-delay: 0.25s; }

.automation-card:nth-child(1) { transition-delay: 0.05s; }
.automation-card:nth-child(2) { transition-delay: 0.1s; }
.automation-card:nth-child(3) { transition-delay: 0.15s; }
.automation-card:nth-child(4) { transition-delay: 0.2s; }

.cta, .footer {
    opacity: 0;
    transform: translateY(24px);
    transition: opacity 0.7s ease, transform 0.7s ease;
}

.cta.animate, .footer.animate { opacity: 1; transform: translateY(0); }

.hero-tags {
    opacity: 0;
    transform: translateY(16px);
    transition: opacity 0.5s ease, transform 0.5s ease;
    color: var(--text-primary);
}

.hero-title {
    opacity: 0;
    transform: translateY(16px);
    transition: opacity 0.5s ease 0.15s, transform 0.5s ease 0.15s;
    color: var(--text-primary);
}

.hero-description {
    opacity: 0;
    transform: translateY(16px);
    transition: opacity 0.5s ease 0.3s, transform 0.5s ease 0.3s;
}

.hero-buttons {
    opacity: 0;
    transform: translateY(16px);
    transition: opacity 0.5s ease 0.45s, transform 0.5s ease 0.45s;
}

.hero-tags.animate,
.hero-title.animate,
.hero-description.animate,
.hero-buttons.animate {
    opacity: 1;
    transform: translateY(0);
}

/* ─── Legal / Support pages ─── */
.content-page { max-width: 860px; margin: 60px auto; padding: 40px 20px; }

.legal-page .page-title, .support-page .page-title {
    font-size: 2.4rem; margin-bottom: 1rem; color: var(--heading-color);
}

.legal-page .page-date, .support-page .page-intro {
    color: var(--text-muted); margin-bottom: 2rem;
}

.legal-page .page-body, .support-page .page-body {
    line-height: 1.8; color: var(--text-primary);
}

.legal-page .page-body section, .support-page .page-body section { margin-bottom: 2.5rem; }

.legal-page .page-body h2, .support-page .page-body h2 {
    font-size: 1.4rem; margin-bottom: 1rem; color: var(--heading-color);
}

.legal-page .page-body h3, .support-page .page-body h3 {
    font-size: 1.1rem; margin-top: 1rem; margin-bottom: 0.5rem; color: var(--heading-color);
}

.legal-page .page-body ul, .legal-page .page-body ol,
.support-page .page-body ul, .support-page .page-body ol {
    margin-left: 2rem; margin-top: 0.5rem;
}

.legal-page .page-body p, .support-page .page-body p { margin: 0 0 0.5em; }

.legal-page .page-body p.page-contact-detail,
.support-page .page-body p.page-contact-detail { margin-top: 0.5rem; }

.legal-page .page-body a, .support-page .page-body a {
    color: var(--primary-color); text-decoration: none;
}

.legal-page .page-body a:hover, .support-page .page-body a:hover { text-decoration: underline; }

.support-page .contact-box {
    background: var(--bg-section); padding: 1.5rem;
    border-radius: 12px; margin-top: 1rem; border: var(--border);
}

.support-page .contact-box p { margin-bottom: 0.5rem; }
.support-page .contact-box p:last-child { margin-bottom: 0; }

/* ═══════════════════════════════════════════════════════════════
   HOMEPAGE MODERNIZATION
   ═══════════════════════════════════════════════════════════════ */

/* ─── Gradient text utility ─── */
.text-gradient {
    background: linear-gradient(135deg, #ff8432 0%, #6366f1 55%, #ec4899 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* ─── Hero live-dot badge ─── */
.tag-dot {
    display: inline-block;
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: #4ade80;
    flex-shrink: 0;
    animation: tagPulse 2s ease-in-out infinite;
}
@keyframes tagPulse {
    0%, 100% { opacity: 1; transform: scale(1); }
    50%       { opacity: 0.45; transform: scale(1.5); }
}

/* ─── Hero animated orbs ─── */
.hero-bg-orbs {
    position: absolute;
    inset: 0;
    overflow: hidden;
    pointer-events: none;
    z-index: 0;
}
.hero-orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(72px);
    opacity: 0;
    animation: orbReveal 1.4s ease forwards, orbFloat 9s ease-in-out infinite;
}
.hero-orb-1 {
    width: 520px; height: 520px;
    background: radial-gradient(circle, rgba(255,132,50,0.22) 0%, transparent 70%);
    top: -160px; left: -90px;
    animation-delay: 0s, 1.4s;
}
.hero-orb-2 {
    width: 460px; height: 460px;
    background: radial-gradient(circle, rgba(99,102,241,0.18) 0%, transparent 70%);
    top: 60px; right: -80px;
    animation-delay: 0.3s, 1.7s;
    animation-duration: 1.4s, 11s;
}
.hero-orb-3 {
    width: 400px; height: 400px;
    background: radial-gradient(circle, rgba(236,72,153,0.14) 0%, transparent 70%);
    bottom: 20px; left: 38%;
    animation-delay: 0.6s, 2s;
    animation-duration: 1.4s, 13s;
}
[data-theme="dark"] .hero-orb-1 { background: radial-gradient(circle, rgba(255,132,50,0.42) 0%, transparent 70%); }
[data-theme="dark"] .hero-orb-2 { background: radial-gradient(circle, rgba(99,102,241,0.38) 0%, transparent 70%); }
[data-theme="dark"] .hero-orb-3 { background: radial-gradient(circle, rgba(236,72,153,0.28) 0%, transparent 70%); }
@keyframes orbReveal { to { opacity: 1; } }
@keyframes orbFloat {
    0%, 100% { transform: translate(0, 0); }
    33%      { transform: translate(22px, -16px); }
    66%      { transform: translate(-14px, 22px); }
}

/* ─── Hero social proof strip ─── */
.hero-social-proof {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    margin-top: 22px;
    font-size: 13px;
    color: var(--text-secondary);
}
.hero-social-proof strong { color: var(--text-primary); }
.hero-proof-avatars {
    display: flex;
    align-items: center;
}
.hero-proof-avatar {
    width: 30px; height: 30px;
    border-radius: 50%;
    border: 2px solid #ffffff;
    display: flex; align-items: center; justify-content: center;
    font-size: 11px; font-weight: 800; color: #fff;
    margin-left: -8px;
}
.hero-proof-avatars .hero-proof-avatar:first-child { margin-left: 0; }
[data-theme="dark"] .hero-social-proof { color: rgba(255,255,255,0.52); }
[data-theme="dark"] .hero-social-proof strong { color: rgba(255,255,255,0.85); }
[data-theme="dark"] .hero-proof-avatar { border-color: #020617; }

/* ─── Hero visual (CSS dashboard panel) ─── */
.hero-visual {
    width: 100%;
    max-width: 680px;
    margin: 60px auto 0;
    position: relative;
    z-index: 1;
}
.hero-panel {
    background: #ffffff;
    border: 1.5px solid #e8edf5;
    border-radius: 22px;
    overflow: hidden;
    box-shadow:
        0 4px 6px rgba(0,0,0,0.04),
        0 20px 60px rgba(99,102,241,0.10),
        0 40px 80px rgba(0,0,0,0.08);
    animation: floatUpDown 5s ease-in-out infinite;
}
[data-theme="dark"] .hero-panel { background: rgba(255,255,255,0.055); border-color: rgba(255,255,255,0.1); box-shadow: 0 0 0 1px rgba(255,255,255,0.055), 0 40px 80px rgba(0,0,0,0.52), inset 0 1px 0 rgba(255,255,255,0.08); }
.hero-panel-header {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 13px 18px;
    background: #f8fafc;
    border-bottom: 1.5px solid #e8edf5;
}
[data-theme="dark"] .hero-panel-header { background: rgba(255,255,255,0.03); border-color: rgba(255,255,255,0.07); }
.hero-panel-dots { display: flex; gap: 7px; }
.hero-panel-dots span { width: 11px; height: 11px; border-radius: 50%; }
.dot-red    { background: #ff5f57; }
.dot-yellow { background: #febc2e; }
.dot-green  { background: #28c840; }
.hero-panel-title {
    flex: 1;
    text-align: center;
    font-size: 12px;
    color: #94a3b8;
    font-weight: 500;
    letter-spacing: 0.3px;
}
[data-theme="dark"] .hero-panel-title { color: rgba(255,255,255,0.32); }
.hero-panel-body { padding: 6px 0; }
.hero-panel-row {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 13px 20px;
    transition: background 0.2s ease;
}
.hero-panel-row:hover { background: rgba(99,102,241,0.03); }
[data-theme="dark"] .hero-panel-row:hover { background: rgba(255,255,255,0.025); }
.panel-row-icon {
    width: 40px; height: 40px;
    border-radius: 11px;
    display: flex; align-items: center; justify-content: center;
    flex-shrink: 0;
}
.panel-row-icon i { font-size: 19px; }
.panel-row-text {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 3px;
    text-align: left;
}
.panel-row-text strong {
    font-size: 13.5px;
    color: #1e293b;
    font-weight: 600;
    display: block;
}
[data-theme="dark"] .panel-row-text strong { color: rgba(255,255,255,0.88); }
.panel-row-text small {
    font-size: 11.5px;
    color: #94a3b8;
}
[data-theme="dark"] .panel-row-text small { color: rgba(255,255,255,0.36); }
.panel-badge {
    font-size: 10.5px;
    font-weight: 700;
    padding: 4px 11px;
    border-radius: 100px;
    letter-spacing: 0.2px;
    flex-shrink: 0;
}
.panel-badge-green  { background: rgba(16,185,129,0.10); color: #059669; }
.panel-badge-blue   { background: rgba(99,102,241,0.12); color: #6366f1; }
.panel-badge-yellow { background: rgba(245,158,11,0.12); color: #d97706; }
[data-theme="dark"] .panel-badge-green  { background: rgba(40,200,100,0.14); color: #4ade80; }
[data-theme="dark"] .panel-badge-blue   { background: rgba(99,102,241,0.18); color: #a5b4fc; }
[data-theme="dark"] .panel-badge-yellow { background: rgba(251,191,36,0.14); color: #fbbf24; }
.hero-panel-divider {
    height: 1px;
    background: #e8edf5;
    margin: 0 20px;
}
[data-theme="dark"] .hero-panel-divider { background: rgba(255,255,255,0.05); }

/* ─── Floating notification badges ─── */
.hero-float-badge {
    position: absolute;
    border-radius: 100px;
    padding: 9px 16px;
    font-size: 12.5px;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 7px;
    white-space: nowrap;
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    box-shadow: 0 8px 28px rgba(0,0,0,0.38);
    pointer-events: none;
}
.hero-float-badge i { font-size: 15px; }
.hero-float-otp {
    top: -20px; right: 48px;
    color: #059669;
    background: rgba(16,185,129,0.10);
    border: 1px solid rgba(16,185,129,0.22);
    box-shadow: 0 4px 16px rgba(16,185,129,0.12);
    animation: floatBadge1 4s ease-in-out infinite;
}
.hero-float-order {
    bottom: 28px; left: 16px;
    color: #ea580c;
    background: rgba(255,132,50,0.10);
    border: 1px solid rgba(255,132,50,0.22);
    box-shadow: 0 4px 16px rgba(255,132,50,0.12);
    animation: floatBadge2 4.5s ease-in-out infinite 0.9s;
}
[data-theme="dark"] .hero-float-otp { color: #4ade80; background: rgba(16,185,129,0.12); border-color: rgba(16,185,129,0.28); box-shadow: 0 8px 28px rgba(0,0,0,0.38); }
[data-theme="dark"] .hero-float-order { color: #fb923c; background: rgba(255,132,50,0.12); border-color: rgba(255,132,50,0.28); box-shadow: 0 8px 28px rgba(0,0,0,0.38); }
@keyframes floatBadge1 {
    0%, 100% { transform: translateY(0) rotate(-2deg); }
    50%      { transform: translateY(-9px) rotate(1.5deg); }
}
@keyframes floatBadge2 {
    0%, 100% { transform: translateY(0) rotate(1.5deg); }
    50%      { transform: translateY(-8px) rotate(-1.5deg); }
}

/* ─── Marquee strip ─── */
.marquee-strip {
    background: var(--bg-primary);
    border-top: var(--border);
    border-bottom: var(--border);
    overflow: hidden;
    display: flex;
    align-items: stretch;
}
.marquee-label {
    flex-shrink: 0;
    padding: 0 22px;
    font-size: 10px;
    font-weight: 700;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 1.3px;
    white-space: nowrap;
    border-right: var(--border);
    display: flex;
    align-items: center;
    background: var(--bg-section);
}
.marquee-overflow {
    flex: 1;
    overflow: hidden;
    position: relative;
}
.marquee-overflow::before,
.marquee-overflow::after {
    content: '';
    position: absolute;
    top: 0; bottom: 0;
    width: 52px;
    z-index: 2;
    pointer-events: none;
}
.marquee-overflow::before {
    left: 0;
    background: linear-gradient(to right, var(--bg-primary), transparent);
}
.marquee-overflow::after {
    right: 0;
    background: linear-gradient(to left, var(--bg-primary), transparent);
}
.marquee-track {
    display: flex;
    align-items: stretch;
    width: max-content;
    animation: marqueeScroll 30s linear infinite;
}
.marquee-track span {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    font-size: 13px;
    font-weight: 600;
    color: var(--text-muted);
    padding: 13px 26px;
    white-space: nowrap;
    border-right: 1px solid var(--border-color);
    transition: color 0.2s ease, background 0.2s ease;
}
.marquee-track span:hover { color: var(--primary-color); background: rgba(255,132,50,0.04); }
.marquee-track span i { font-size: 16px; }
@keyframes marqueeScroll {
    from { transform: translateX(0); }
    to   { transform: translateX(-50%); }
}
@media (prefers-reduced-motion: reduce) {
    .marquee-track { animation: none; }
    .hero-orb, .hero-panel, .hero-float-badge, .hero-proof-avatar { animation: none; }
}

/* ─── Stats — bordered container + gradient numbers ─── */
.stats .stats-row {
    gap: 0;
    border: var(--border);
    border-radius: 20px;
    overflow: hidden;
    background: var(--bg-primary);
    box-shadow: var(--box-shadow-card);
}
.stats-card {
    padding: 26px 28px;
    border-right: var(--border);
    border-radius: 0;
    /* keep scroll-reveal transitions; add background to the list */
    transition: opacity 0.55s ease, transform 0.55s ease, background 0.2s ease;
}
.stats-card:nth-child(1) { transition-delay: 0.05s; }
.stats-card:nth-child(2) { transition-delay: 0.1s; }
.stats-card:nth-child(3) { transition-delay: 0.15s; }
.stats-card:nth-child(4) { transition-delay: 0.2s; }
.stats-card:last-child { border-right: none; }
.stats-card:hover { background: var(--bg-section); }
.stats-text h3 {
    background: linear-gradient(135deg, var(--primary-color) 0%, #6366f1 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    color: transparent;
}

/* ─── Features — glow hover ─── */
.features-card:hover {
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(255,132,50,0.12), 0 10px 32px rgba(0,0,0,0.09);
    transform: translateY(-3px);
}

/* ─── Integration — colored icon backgrounds ─── */
.integration-card:nth-child(1) .integration-icon { background: rgba(37,211,102,0.1); border-color: rgba(37,211,102,0.22); }
.integration-card:nth-child(1) .integration-icon i { color: #25d366; }
.integration-card:nth-child(2) .integration-icon { background: rgba(236,72,153,0.1); border-color: rgba(236,72,153,0.22); }
.integration-card:nth-child(2) .integration-icon i { color: #ec4899; }
.integration-card:nth-child(3) .integration-icon { background: rgba(99,102,241,0.1); border-color: rgba(99,102,241,0.22); }
.integration-card:nth-child(3) .integration-icon i { color: #6366f1; }
.integration-card:nth-child(4) .integration-icon { background: rgba(29,155,240,0.1); border-color: rgba(29,155,240,0.22); }
.integration-card:nth-child(4) .integration-icon i { color: #1d9bf0; }
.integration-card:nth-child(5) .integration-icon { background: rgba(255,132,50,0.1); border-color: rgba(255,132,50,0.22); }
.integration-card:nth-child(5) .integration-icon i { color: var(--primary-color); }
.integration-card:nth-child(6) .integration-icon { background: rgba(16,185,129,0.1); border-color: rgba(16,185,129,0.22); }
.integration-card:nth-child(6) .integration-icon i { color: #10b981; }
.integration-card:nth-child(7) .integration-icon { background: rgba(245,158,11,0.1); border-color: rgba(245,158,11,0.22); }
.integration-card:nth-child(7) .integration-icon i { color: #f59e0b; }

/* ─── Reviews — initial avatars ─── */
.review-avatar-initial {
    width: 44px; height: 44px;
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    font-size: 14px; font-weight: 800; color: #fff;
    flex-shrink: 0;
    letter-spacing: 0.5px;
}

/* ─── Steps — numbered gradient badges ─── */
.step-number {
    display: inline-flex;
    width: 46px; height: 46px;
    border-radius: 13px;
    background: linear-gradient(135deg, var(--primary-color) 0%, #6366f1 100%);
    align-items: center;
    justify-content: center;
    font-size: 18px;
    font-weight: 800;
    color: #fff;
    margin-bottom: 14px;
    box-shadow: 0 6px 18px rgba(255,132,50,0.38);
    letter-spacing: -0.5px;
}

/* ─── CTA — extra aurora layer ─── */
.cta::after {
    content: '';
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse at 10% 20%, rgba(99,102,241,0.16) 0%, transparent 45%),
        radial-gradient(ellipse at 88% 78%, rgba(236,72,153,0.12) 0%, transparent 45%);
    pointer-events: none;
    z-index: 0;
}

/* ─── Showcase Section ─── */
.showcase-section {
    padding: 100px 0;
    background: var(--bg-primary);
}

.showcase-columns {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin-bottom: 20px;
}

.showcase-col {
    background: var(--bg-primary);
    border: var(--border);
    border-radius: 20px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    transition: box-shadow 0.25s ease, transform 0.25s ease;
}

.showcase-col:hover {
    transform: translateY(-3px);
    box-shadow: var(--box-shadow);
}

.showcase-col-header {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 20px 20px 18px;
    border-bottom: var(--border);
    background: var(--bg-section);
}

.showcase-col-icon {
    width: 48px; height: 48px;
    border-radius: 14px;
    display: flex; align-items: center; justify-content: center;
    flex-shrink: 0;
}
.showcase-col-icon i { font-size: 22px; }

.showcase-col-icon-phone    { background: rgba(99,102,241,0.12); }
.showcase-col-icon-phone i  { color: #6366f1; }
.showcase-col-icon-smm      { background: rgba(236,72,153,0.12); }
.showcase-col-icon-smm i    { color: #ec4899; }
.showcase-col-icon-accounts { background: rgba(16,185,129,0.12); }
.showcase-col-icon-accounts i { color: #10b981; }

.showcase-col-title {
    font-size: 15px;
    font-weight: 700;
    color: var(--heading-color);
    margin: 0 0 2px;
}
.showcase-col-sub {
    font-size: 12px;
    color: var(--text-muted);
    margin: 0;
}

.showcase-list {
    flex: 1;
    display: flex;
    flex-direction: column;
    overflow-y: auto;
    max-height: 344px;
    scrollbar-width: thin;
    scrollbar-color: var(--border-color) transparent;
}

.showcase-item {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 11px 18px;
    text-decoration: none;
    border-bottom: 1px solid var(--border-color);
    transition: background 0.15s ease;
    cursor: pointer;
}
.showcase-item:last-child { border-bottom: none; }
.showcase-item:hover { background: rgba(255,132,50,0.04); }
[data-theme="dark"] .showcase-item:hover { background: rgba(255,132,50,0.07); }

.showcase-item-badge {
    width: 32px; height: 32px;
    border-radius: 9px;
    background: var(--bg-section);
    border: var(--border);
    display: flex; align-items: center; justify-content: center;
    flex-shrink: 0;
}
.showcase-item-badge i { font-size: 15px; color: var(--primary-color); }

.showcase-item-name {
    flex: 1;
    font-size: 13px;
    font-weight: 500;
    color: var(--text-primary);
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    min-width: 0;
}

.showcase-item-price {
    font-size: 12px;
    font-weight: 700;
    color: var(--primary-color);
    white-space: nowrap;
    flex-shrink: 0;
    background: rgba(255,132,50,0.1);
    padding: 2px 8px;
    border-radius: 100px;
}

.showcase-item-lock {
    font-size: 13px;
    color: var(--text-muted);
    opacity: 0.35;
    flex-shrink: 0;
    transition: opacity 0.2s, color 0.2s;
}
.showcase-item:hover .showcase-item-lock {
    opacity: 0.7;
    color: var(--primary-color);
}

.showcase-empty {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 40px 20px;
    color: var(--text-muted);
    font-size: 13px;
    text-align: center;
}
.showcase-empty i { font-size: 30px; opacity: 0.3; margin-bottom: 4px; }

.showcase-view-all {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 7px;
    padding: 13px 18px;
    border-top: var(--border);
    font-size: 13px;
    font-weight: 600;
    color: var(--primary-color);
    text-decoration: none;
    transition: background 0.15s ease;
    background: var(--bg-section);
}
.showcase-view-all:hover { background: rgba(255,132,50,0.07); color: var(--primary-color); }
.showcase-view-all i { font-size: 15px; transition: transform 0.2s ease; }
.showcase-view-all:hover i { transform: translateX(4px); }

.showcase-signup-banner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    padding: 18px 26px;
    background: linear-gradient(135deg, rgba(255,132,50,0.07) 0%, rgba(99,102,241,0.07) 100%);
    border: 1.5px solid rgba(255,132,50,0.22);
    border-radius: 16px;
    flex-wrap: wrap;
}
.showcase-banner-text {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 14px;
    font-weight: 500;
    color: var(--text-primary);
}
.showcase-banner-text i { font-size: 20px; color: var(--primary-color); flex-shrink: 0; }

@media (max-width: 1024px) {
    .showcase-columns { grid-template-columns: 1fr; gap: 16px; }
    .showcase-list { max-height: 240px; }
}
@media (max-width: 640px) {
    .showcase-signup-banner { flex-direction: column; text-align: center; }
    .showcase-banner-text { justify-content: center; }
}

/* ─── Responsive hero panel ─── */
@media (max-width: 640px) {
    .hero-float-otp,
    .hero-float-order { display: none; }
    .hero-panel-row { padding: 10px 14px; }
    .hero-visual { max-width: 100%; }
}
@media (max-width: 480px) {
    .marquee-label { display: none; }
    .stats-card { padding: 18px 16px; }
}
