@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800;900&family=Syne:wght@700;800&display=swap');

:root {
    --primary: #6c3bff;
    --primary-light: #f0ebff;
    --primary-glow: rgba(108, 59, 255, 0.25);
    --accent: #ff5c8a;
    --accent2: #00d4aa;
    --dark: #0a0b14;
    --dark2: #0f1022;
    --dark3: #161830;
    --text-main: #1a1d2e;
    --text-muted: #6b7280;
    --text-light: #9ca3af;
    --bg-light: #f8f7ff;
    --white: #ffffff;
    --border: #e8e5f5;
    --border-dark: rgba(255, 255, 255, 0.08);
    --radius-sm: 8px;
    --radius-md: 14px;
    --radius-lg: 20px;
    --radius-xl: 32px;
    --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.06);
    --shadow-md: 0 8px 30px rgba(0, 0, 0, 0.1);
    --shadow-lg: 0 24px 60px rgba(0, 0, 0, 0.12);
    --shadow-glow: 0 20px 60px rgba(108, 59, 255, 0.3);
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --font-main: 'Inter', sans-serif;
    --font-display: 'Syne', sans-serif;
    --container: 1240px;
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-main);
    color: var(--text-main);
    background: var(--white);
    line-height: 1.7;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition);
}

ul {
    list-style: none;
}

img {
    max-width: 100%;
    display: block;
}

.container {
    max-width: var(--container);
    margin: 0 auto;
    padding: 0 32px;
}

section {
    padding: 90px 0;
}

.bg-light {
    background: var(--bg-light);
}

.bg-dark {
    background: var(--dark);
}

/* ═══════════════════════════════════════════
   BUTTONS
   ═══════════════════════════════════════════ */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 15px 32px;
    border-radius: var(--radius-md);
    font-weight: 700;
    font-size: 0.95rem;
    cursor: pointer;
    border: none;
    letter-spacing: -0.01em;
    transition: var(--transition);
    white-space: nowrap;
}

.btn-primary {
    background: var(--primary);
    color: var(--white);
    box-shadow: 0 8px 24px rgba(108, 59, 255, 0.35);
}

.btn-primary:hover {
    background: #5830e0;
    transform: translateY(-2px);
    box-shadow: 0 16px 40px rgba(108, 59, 255, 0.45);
}

.btn-outline {
    background: transparent;
    border: 2px solid var(--text-main);
    color: var(--text-main);
}

.btn-outline:hover {
    background: var(--text-main);
    color: var(--white);
    transform: translateY(-2px);
}

.btn-outline-white {
    background: transparent;
    border: 2px solid rgba(255, 255, 255, 0.3);
    color: var(--white);
}

.btn-outline-white:hover {
    background: var(--white);
    color: var(--dark);
    border-color: var(--white);
}

.btn-sm {
    padding: 10px 22px;
    font-size: 0.875rem;
}

/* ═══════════════════════════════════════════
   PAGE HERO BANNER (for inner pages)
   ═══════════════════════════════════════════ */
.page-hero {
    background: var(--dark);
    padding: 140px 0 80px;
    position: relative;
    overflow: hidden;
}

.page-hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse 60% 60% at 50% 0%, rgba(108, 59, 255, 0.3) 0%, transparent 70%);
}

.page-hero .geo-grid {
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(255, 255, 255, 0.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, 0.03) 1px, transparent 1px);
    background-size: 60px 60px;
}

.page-hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
}

.page-hero-content .badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(108, 59, 255, 0.2);
    border: 1px solid rgba(108, 59, 255, 0.4);
    color: #a78bfa;
    padding: 7px 18px;
    border-radius: 100px;
    font-size: 0.8rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    margin-bottom: 28px;
}

.page-hero-content h1 {
    font-family: var(--font-display);
    font-size: clamp(2.5rem, 5vw, 4rem);
    color: var(--white);
    margin-bottom: 20px;
    letter-spacing: -0.02em;
}

.page-hero-content h1 span {
    color: #a78bfa;
}

.page-hero-content p {
    font-size: 1.15rem;
    color: rgba(255, 255, 255, 0.6);
    max-width: 600px;
    margin: 0 auto;
}

/* ═══════════════════════════════════════════
   SECTION HEAD
   ═══════════════════════════════════════════ */
.section-head {
    text-align: center;
    margin-bottom: 56px;
}

.section-head .tag {
    display: inline-block;
    background: var(--primary-light);
    color: var(--primary);
    padding: 6px 16px;
    border-radius: 100px;
    font-size: 0.78rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-bottom: 18px;
}

.section-head h2 {
    font-family: var(--font-display);
    font-size: clamp(2rem, 4vw, 3.2rem);
    letter-spacing: -0.03em;
    margin-bottom: 18px;
    color: var(--text-main);
}

.section-head p {
    font-size: 1.1rem;
    color: var(--text-muted);
    max-width: 560px;
    margin: 0 auto;
}

/* ═══════════════════════════════════════════
   HEADER
   ═══════════════════════════════════════════ */
.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    height: 84px;
    display: flex;
    align-items: center;
    transition: var(--transition);
}

.header.transparent {
    background: transparent;
}

.header.scrolled {
    height: 68px;
    background: rgba(255, 255, 255, 0.92);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    box-shadow: 0 1px 0 var(--border), 0 8px 32px rgba(0, 0, 0, 0.06);
}

.header.dark-header {
    background: var(--dark);
}

.header.dark-header.scrolled {
    background: rgba(10, 11, 20, 0.95);
    backdrop-filter: blur(20px);
}

.nav-wrap {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
}

.logo {
    display: flex;
    align-items: center;
    gap: 10px;
    font-family: var(--font-display);
    font-size: 1.4rem;
    font-weight: 800;
    color: var(--text-main);
    letter-spacing: -0.02em;
}

.logo .logo-icon {
    width: 38px;
    height: 38px;
    background: var(--primary);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 14px rgba(108, 59, 255, 0.4);
}

.logo .logo-icon svg {
    width: 20px;
    height: 20px;
}

.logo span {
    color: var(--primary);
}

.dark-header .logo {
    color: var(--white);
}

.dark-header .logo span {
    color: #a78bfa;
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 36px;
}

.nav-item {
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--text-muted);
}

.nav-item:hover {
    color: var(--primary);
}

.nav-item.active {
    color: var(--primary);
}

.dark-header .nav-item {
    color: rgba(255, 255, 255, 0.7);
}

.dark-header .nav-item:hover {
    color: var(--white);
}

.hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
    padding: 8px;
    background: none;
    border: none;
}

.hamburger span {
    width: 26px;
    height: 2px;
    background: var(--text-main);
    border-radius: 4px;
    transition: var(--transition);
    display: block;
}

.dark-header .hamburger span {
    background: var(--white);
}

/* ═══════════════════════════════════════════
   DRAWER
   ═══════════════════════════════════════════ */
.drawer-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.6);
    z-index: 2000;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition);
    backdrop-filter: blur(4px);
}

.drawer {
    position: fixed;
    top: 0;
    right: -420px;
    width: 380px;
    height: 100%;
    background: var(--white);
    z-index: 2100;
    padding: 50px 36px;
    transition: right 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    display: flex;
    flex-direction: column;
    overflow-y: auto;
}

.drawer.active {
    right: 0;
}

.drawer-overlay.active {
    opacity: 1;
    visibility: visible;
}

.drawer-close {
    position: absolute;
    top: 20px;
    right: 24px;
    width: 38px;
    height: 38px;
    background: var(--bg-light);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.4rem;
    cursor: pointer;
    color: var(--text-muted);
}

.drawer-close:hover {
    background: var(--primary);
    color: white;
}

.drawer-nav {
    display: flex;
    flex-direction: column;
    gap: 4px;
    margin-top: 36px;
}

.drawer-nav a {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--text-main);
    padding: 12px 16px;
    border-radius: var(--radius-sm);
}

.drawer-nav a:hover {
    background: var(--bg-light);
    color: var(--primary);
}

.drawer-cta {
    margin-top: auto;
    padding-top: 30px;
}

/* ═══════════════════════════════════════════
   INDEX — HERO
   ═══════════════════════════════════════════ */
.hero {
    min-height: 100vh;
    background: var(--dark);
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 130px 0 80px;
    position: relative;
    overflow: hidden;
}

.hero-geo {
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(255, 255, 255, 0.025) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, 0.025) 1px, transparent 1px);
    background-size: 70px 70px;
    pointer-events: none;
}

.hero-glow-1 {
    position: absolute;
    width: 700px;
    height: 700px;
    background: radial-gradient(circle, rgba(108, 59, 255, 0.35) 0%, transparent 70%);
    top: -200px;
    left: -200px;
    pointer-events: none;
}

.hero-glow-2 {
    position: absolute;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(255, 92, 138, 0.2) 0%, transparent 70%);
    bottom: -100px;
    right: -100px;
    pointer-events: none;
}

.hero-wrap {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
    position: relative;
    z-index: 2;
}

.hero-content {
    max-width: 580px;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: rgba(108, 59, 255, 0.15);
    border: 1px solid rgba(108, 59, 255, 0.35);
    padding: 8px 20px;
    border-radius: 100px;
    font-size: 0.82rem;
    font-weight: 700;
    color: #c4b5fd;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    margin-bottom: 30px;
}

.hero-badge .dot {
    width: 7px;
    height: 7px;
    background: var(--accent2);
    border-radius: 50%;
    animation: blink 2s infinite;
}

@keyframes blink {

    0%,
    100% {
        opacity: 1;
    }

    50% {
        opacity: 0.3;
    }
}

.hero h1 {
    font-family: var(--font-display);
    font-size: clamp(2.8rem, 5vw, 4.5rem);
    color: var(--white);
    line-height: 1.1;
    letter-spacing: -0.03em;
    margin-bottom: 26px;
}

.hero h1 .highlight {
    background: linear-gradient(135deg, #a78bfa, #f472b6);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero p {
    font-size: 1.15rem;
    color: rgba(255, 255, 255, 0.55);
    margin-bottom: 40px;
    line-height: 1.8;
}

.hero-btns {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
}

.hero-stats {
    display: flex;
    gap: 36px;
    margin-top: 50px;
    padding-top: 50px;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.stat-item {
    display: flex;
    flex-direction: column;
}

.stat-num {
    font-family: var(--font-display);
    font-size: 2rem;
    font-weight: 800;
    color: var(--white);
    line-height: 1;
}

.stat-label {
    font-size: 0.82rem;
    color: rgba(255, 255, 255, 0.4);
    margin-top: 6px;
    font-weight: 500;
}

.hero-visual {
    position: relative;
}

.hero-mockup-frame {
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: var(--radius-xl);
    padding: 16px;
    position: relative;
    backdrop-filter: blur(10px);
}

.hero-mockup-frame::before {
    content: '● ● ●';
    font-size: 14px;
    color: rgba(255, 255, 255, 0.25);
    letter-spacing: 6px;
    display: block;
    margin-bottom: 14px;
    padding-left: 6px;
}

.hero-mockup-frame img {
    border-radius: 14px;
    width: 100%;
}

.hero-float-card {
    position: absolute;
    background: var(--white);
    border-radius: var(--radius-md);
    padding: 14px 20px;
    box-shadow: var(--shadow-lg);
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 0.85rem;
    font-weight: 700;
    color: var(--text-main);
    animation: float 4s ease-in-out infinite;
}

.hero-float-card.card-1 {
    bottom: -20px;
    left: -30px;
    animation-delay: 0s;
}

.hero-float-card.card-2 {
    top: -20px;
    right: -30px;
    animation-delay: 2s;
}

.hero-float-card .card-icon {
    width: 36px;
    height: 36px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
}

.card-icon.green {
    background: #d1fae5;
}

.card-icon.purple {
    background: var(--primary-light);
}

@keyframes float {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-8px);
    }
}

/* ═══════════════════════════════════════════
   MARQUEE LOGOS
   ═══════════════════════════════════════════ */
.marquee-section {
    padding: 40px 0;
    background: var(--bg-light);
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
    overflow: hidden;
}

.marquee-label {
    text-align: center;
    font-size: 0.82rem;
    font-weight: 700;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 0.12em;
    margin-bottom: 24px;
}

.marquee-track {
    display: flex;
    gap: 60px;
    animation: marquee 20s linear infinite;
    width: max-content;
}

.marquee-track .tag-pill {
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: 100px;
    padding: 8px 24px;
    font-size: 0.9rem;
    font-weight: 700;
    color: var(--text-muted);
    white-space: nowrap;
    box-shadow: var(--shadow-sm);
    display: flex;
    align-items: center;
    gap: 8px;
}

@keyframes marquee {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-50%);
    }
}

/* ═══════════════════════════════════════════
   FEATURES
   ═══════════════════════════════════════════ */
.features-bento {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-template-rows: auto auto;
    gap: 20px;
}

.bento-card {
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: var(--radius-xl);
    padding: 40px;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.bento-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--primary), var(--accent));
    opacity: 0;
    transition: var(--transition);
}

.bento-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-lg);
    border-color: transparent;
}

.bento-card:hover::before {
    opacity: 1;
}

.bento-card.wide {
    grid-column: span 2;
}

.bento-card.dark-card {
    background: var(--dark);
    border-color: transparent;
    color: white;
}

.bento-icon {
    width: 56px;
    height: 56px;
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    margin-bottom: 24px;
    background: var(--primary-light);
    color: var(--primary);
}

.dark-card .bento-icon {
    background: rgba(108, 59, 255, 0.2);
    color: #a78bfa;
}

.bento-card h3 {
    font-family: var(--font-display);
    font-size: 1.35rem;
    margin-bottom: 12px;
}

.dark-card h3 {
    color: var(--white);
}

.bento-card p {
    color: var(--text-muted);
    font-size: 0.95rem;
    line-height: 1.7;
}

.dark-card p {
    color: rgba(255, 255, 255, 0.5);
}

/* ═══════════════════════════════════════════
   HOW IT WORKS
   ═══════════════════════════════════════════ */
.steps-wrap {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    position: relative;
}

.steps-wrap::before {
    content: '';
    position: absolute;
    top: 42px;
    left: 16%;
    right: 16%;
    height: 2px;
    background: linear-gradient(90deg, var(--primary), var(--accent));
    z-index: 0;
}

.step-item {
    text-align: center;
    position: relative;
    z-index: 1;
}

.step-num {
    width: 84px;
    height: 84px;
    background: var(--primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-display);
    font-size: 1.8rem;
    font-weight: 800;
    color: white;
    margin: 0 auto 28px;
    box-shadow: 0 12px 30px rgba(108, 59, 255, 0.35);
}

.step-item h3 {
    font-size: 1.25rem;
    font-weight: 800;
    margin-bottom: 12px;
}

.step-item p {
    color: var(--text-muted);
    font-size: 0.95rem;
}

/* ═══════════════════════════════════════════
   TESTIMONIALS
   ═══════════════════════════════════════════ */
.testimonials {
    background: var(--dark);
}

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

.testi-item {
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: var(--radius-xl);
    padding: 36px;
    transition: var(--transition);
}

.testi-item:hover {
    background: rgba(108, 59, 255, 0.1);
    border-color: rgba(108, 59, 255, 0.3);
    transform: translateY(-4px);
}

.testi-stars {
    color: #fbbf24;
    font-size: 1rem;
    margin-bottom: 20px;
    letter-spacing: 2px;
}

.testi-text {
    font-size: 1.05rem;
    color: rgba(255, 255, 255, 0.75);
    line-height: 1.8;
    margin-bottom: 28px;
    font-style: italic;
}

.testi-user {
    display: flex;
    align-items: center;
    gap: 14px;
}

.t-avatar {
    width: 46px;
    height: 46px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--primary), var(--accent));
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 800;
    font-size: 0.9rem;
    flex-shrink: 0;
}

.t-info strong {
    display: block;
    color: var(--white);
    font-size: 0.95rem;
}

.t-info span {
    font-size: 0.82rem;
    color: rgba(255, 255, 255, 0.4);
}

/* ═══════════════════════════════════════════
   CTA BAND
   ═══════════════════════════════════════════ */
.cta-band {
    background: linear-gradient(135deg, var(--primary) 0%, #9b59fa 50%, var(--accent) 100%);
    padding: 72px 0;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.cta-band::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(255, 255, 255, 0.05) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, 0.05) 1px, transparent 1px);
    background-size: 50px 50px;
}

.cta-band-content {
    position: relative;
    z-index: 1;
}

.cta-band h2 {
    font-family: var(--font-display);
    font-size: clamp(2rem, 4vw, 3.2rem);
    color: white;
    margin-bottom: 16px;
    letter-spacing: -0.02em;
}

.cta-band p {
    color: rgba(255, 255, 255, 0.75);
    font-size: 1.1rem;
    margin-bottom: 36px;
}

.cta-band-btns {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
}

/* ═══════════════════════════════════════════
   BLOG GRID
   ═══════════════════════════════════════════ */
.blog-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
}

.blog-card {
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: var(--radius-xl);
    overflow: hidden;
    transition: var(--transition);
}

.blog-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-lg);
    border-color: transparent;
}

.blog-img {
    height: 220px;
    background: linear-gradient(135deg, var(--primary-light), #fce7f3);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 4rem;
    overflow: hidden;
    position: relative;
}

.blog-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.blog-cat {
    position: absolute;
    top: 16px;
    left: 16px;
    background: var(--primary);
    color: white;
    padding: 4px 14px;
    border-radius: 100px;
    font-size: 0.75rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.06em;
}

.blog-body {
    padding: 28px;
}

.blog-meta {
    display: flex;
    gap: 16px;
    font-size: 0.8rem;
    color: var(--text-muted);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    margin-bottom: 14px;
}

.blog-card h3 {
    font-size: 1.2rem;
    font-weight: 800;
    margin-bottom: 12px;
    line-height: 1.4;
    color: var(--text-main);
}

.blog-card p {
    color: var(--text-muted);
    font-size: 0.9rem;
    margin-bottom: 20px;
}

.blog-link {
    color: var(--primary);
    font-weight: 700;
    font-size: 0.9rem;
    display: flex;
    align-items: center;
    gap: 6px;
}

.blog-link:hover {
    gap: 10px;
}

/* ═══════════════════════════════════════════
   PRICING
   ═══════════════════════════════════════════ */
.pricing-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    max-width: 1100px;
    margin: 0 auto;
    align-items: stretch;
}

.price-card {
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: var(--radius-xl);
    padding: 44px 38px;
    position: relative;
    transition: var(--transition);
}

.price-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-lg);
}

.price-card.popular {
    background: var(--dark);
    border-color: var(--primary);
    box-shadow: 0 0 0 1px var(--primary), var(--shadow-glow);
}

.popular-badge {
    position: absolute;
    top: -14px;
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(90deg, var(--primary), var(--accent));
    color: white;
    padding: 6px 20px;
    border-radius: 100px;
    font-size: 0.75rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    white-space: nowrap;
}

.price-name {
    font-size: 1rem;
    font-weight: 700;
    margin-bottom: 8px;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 0.08em;
}

.popular .price-name {
    color: rgba(255, 255, 255, 0.5);
}

.price-value {
    font-family: var(--font-display);
    font-size: 3.5rem;
    font-weight: 800;
    margin-bottom: 6px;
    line-height: 1;
}

.popular .price-value {
    color: var(--white);
}

.price-period {
    font-size: 0.9rem;
    color: var(--text-muted);
    margin-bottom: 32px;
}

.popular .price-period {
    color: rgba(255, 255, 255, 0.4);
}

.price-divider {
    height: 1px;
    background: var(--border);
    margin-bottom: 28px;
}

.popular .price-divider {
    background: rgba(255, 255, 255, 0.1);
}

.price-features {
    margin-bottom: 36px;
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.price-features li {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 0.92rem;
    color: var(--text-muted);
    font-weight: 500;
}

.popular .price-features li {
    color: rgba(255, 255, 255, 0.65);
}

.check-icon {
    width: 22px;
    height: 22px;
    background: #d1fae5;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #059669;
    font-size: 0.75rem;
    flex-shrink: 0;
    font-weight: 900;
}

.popular .check-icon {
    background: rgba(108, 59, 255, 0.3);
    color: #a78bfa;
}

.pricing-toggle {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
    margin-bottom: 48px;
    font-weight: 600;
    color: var(--text-muted);
}

.switch {
    width: 56px;
    height: 28px;
    background: var(--border);
    border-radius: 100px;
    position: relative;
    cursor: pointer;
    transition: var(--transition);
}

.switch::after {
    content: '';
    position: absolute;
    top: 3px;
    left: 3px;
    width: 22px;
    height: 22px;
    background: white;
    border-radius: 50%;
    transition: var(--transition);
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.15);
}

.switch.active {
    background: var(--primary);
}

.switch.active::after {
    left: 31px;
}

/* ═══════════════════════════════════════════
   ABOUT PAGE
   ═══════════════════════════════════════════ */
.about-split {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.about-tag {
    display: inline-block;
    background: var(--primary-light);
    color: var(--primary);
    padding: 6px 16px;
    border-radius: 100px;
    font-size: 0.78rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-bottom: 20px;
}

.about-split h2 {
    font-family: var(--font-display);
    font-size: clamp(1.8rem, 3vw, 2.8rem);
    letter-spacing: -0.03em;
    margin-bottom: 20px;
}

.about-split p {
    color: var(--text-muted);
    font-size: 1.05rem;
    margin-bottom: 16px;
    line-height: 1.8;
}

.stat-boxes {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
    margin-top: 32px;
}

.stat-box {
    background: var(--bg-light);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 24px;
}

.stat-box .num {
    font-family: var(--font-display);
    font-size: 2.2rem;
    font-weight: 800;
    color: var(--primary);
}

.stat-box .lbl {
    font-size: 0.85rem;
    color: var(--text-muted);
    font-weight: 600;
    margin-top: 4px;
}

.about-img-wrap {
    position: relative;
}

.about-img-wrap img {
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-lg);
    width: 100%;
}

.about-img-badge {
    position: absolute;
    bottom: 24px;
    left: -24px;
    background: white;
    border-radius: var(--radius-md);
    padding: 16px 22px;
    box-shadow: var(--shadow-lg);
    display: flex;
    align-items: center;
    gap: 12px;
    font-weight: 700;
    font-size: 0.9rem;
}

.about-img-badge .big {
    font-family: var(--font-display);
    font-size: 1.8rem;
    color: var(--primary);
}

/* ═══════════════════════════════════════════
   TEAM / VALUES
   ═══════════════════════════════════════════ */
.values-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

.value-card {
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 32px 28px;
    transition: var(--transition);
}

.value-card:hover {
    border-color: var(--primary);
    transform: translateY(-4px);
}

.value-icon {
    font-size: 2.2rem;
    margin-bottom: 16px;
}

.value-card h4 {
    font-size: 1.05rem;
    font-weight: 800;
    margin-bottom: 8px;
}

.value-card p {
    font-size: 0.88rem;
    color: var(--text-muted);
}

/* ═══════════════════════════════════════════
   HELP CENTER / FAQ
   ═══════════════════════════════════════════ */
.help-cards {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.help-card {
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: var(--radius-xl);
    padding: 40px;
    text-align: center;
    transition: var(--transition);
}

.help-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-lg);
    border-color: var(--primary);
}

.help-card-icon {
    width: 70px;
    height: 70px;
    margin: 0 auto 22px;
    background: var(--primary-light);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
}

.help-card h3 {
    font-size: 1.2rem;
    font-weight: 800;
    margin-bottom: 12px;
}

.help-card p {
    color: var(--text-muted);
    font-size: 0.95rem;
    margin-bottom: 28px;
}

.faq-list {
    max-width: 800px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.faq-item {
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: var(--radius-md);
    overflow: hidden;
}

.faq-q {
    padding: 22px 28px;
    font-weight: 700;
    font-size: 1rem;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 16px;
    color: var(--text-main);
    transition: var(--transition);
}

.faq-q:hover {
    color: var(--primary);
}

.faq-q .faq-arrow {
    flex-shrink: 0;
    font-size: 1.2rem;
    transition: transform 0.3s;
}

.faq-item.open .faq-q {
    color: var(--primary);
}

.faq-item.open .faq-arrow {
    transform: rotate(180deg);
}

.faq-a {
    padding: 0 28px;
    max-height: 0;
    overflow: hidden;
    transition: all 0.35s ease;
}

.faq-item.open .faq-a {
    max-height: 500px;
    padding: 0 28px 22px;
}

.faq-a p {
    color: var(--text-muted);
    font-size: 0.95rem;
    line-height: 1.8;
}

/* Contact Form */
.contact-wrap {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: start;
}

.contact-info h3 {
    font-family: var(--font-display);
    font-size: 2rem;
    margin-bottom: 16px;
}

.contact-info p {
    color: var(--text-muted);
    margin-bottom: 32px;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 20px;
}

.contact-icon {
    width: 46px;
    height: 46px;
    background: var(--primary-light);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    color: var(--primary);
    flex-shrink: 0;
}

.contact-item span {
    font-weight: 600;
    font-size: 0.95rem;
}

.contact-item small {
    display: block;
    color: var(--text-muted);
    font-size: 0.82rem;
}

.contact-form-box {
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: var(--radius-xl);
    padding: 44px;
    box-shadow: var(--shadow-md);
}

.form-group {
    margin-bottom: 22px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 700;
    font-size: 0.85rem;
    color: var(--text-main);
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.form-input {
    width: 100%;
    padding: 14px 18px;
    border: 1.5px solid var(--border);
    border-radius: var(--radius-md);
    font-family: inherit;
    font-size: 0.95rem;
    color: var(--text-main);
    background: var(--bg-light);
    outline: none;
    transition: var(--transition);
}

.form-input:focus {
    border-color: var(--primary);
    background: white;
    box-shadow: 0 0 0 4px var(--primary-glow);
}

textarea.form-input {
    resize: vertical;
    min-height: 130px;
}

/* ═══════════════════════════════════════════
   USER GUIDE
   ═══════════════════════════════════════════ */
.guide-wrap {
    display: grid;
    grid-template-columns: 260px 1fr;
    gap: 60px;
    align-items: start;
    padding: 60px 0;
}

.guide-sidebar {
    position: sticky;
    top: 110px;
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: var(--radius-xl);
    padding: 28px;
}

.guide-sidebar-title {
    font-size: 0.78rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--text-muted);
    margin-bottom: 16px;
}

.guide-sidebar a {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px 14px;
    border-radius: var(--radius-sm);
    font-weight: 600;
    font-size: 0.88rem;
    color: var(--text-muted);
    margin-bottom: 4px;
}

.guide-sidebar a:hover {
    background: var(--bg-light);
    color: var(--primary);
}

.guide-sidebar a.active {
    background: var(--primary-light);
    color: var(--primary);
}

.guide-sidebar a .dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: currentColor;
    flex-shrink: 0;
}

.guide-main section {
    margin-bottom: 70px;
    scroll-margin-top: 110px;
}

.guide-main h2 {
    font-family: var(--font-display);
    font-size: 2rem;
    margin-bottom: 20px;
    letter-spacing: -0.02em;
}

.guide-main p {
    color: var(--text-muted);
    font-size: 1rem;
    margin-bottom: 20px;
    line-height: 1.8;
}

.guide-main h3 {
    font-size: 1.2rem;
    font-weight: 800;
    margin: 32px 0 14px;
    color: var(--text-main);
}

.guide-main ul li {
    color: var(--text-muted);
    margin-bottom: 10px;
    padding-left: 20px;
    position: relative;
    font-size: 0.95rem;
}

.guide-main ul li::before {
    content: '→';
    position: absolute;
    left: 0;
    color: var(--primary);
}

.guide-table {
    width: 100%;
    border-collapse: collapse;
    margin: 20px 0;
    font-size: 0.92rem;
}

.guide-table th,
.guide-table td {
    padding: 14px 18px;
    border: 1px solid var(--border);
    text-align: left;
}

.guide-table th {
    background: var(--primary-light);
    font-weight: 800;
    color: var(--primary);
}

.guide-table tr:hover td {
    background: var(--bg-light);
}

.tip-box {
    background: var(--primary-light);
    border-left: 4px solid var(--primary);
    border-radius: 0 var(--radius-md) var(--radius-md) 0;
    padding: 20px 24px;
    margin: 20px 0;
}

.tip-box strong {
    color: var(--primary);
    display: block;
    margin-bottom: 6px;
}

.tip-box p {
    margin: 0;
    font-size: 0.92rem;
}

.warn-box {
    background: #fff7ed;
    border-left: 4px solid #f59e0b;
    border-radius: 0 var(--radius-md) var(--radius-md) 0;
    padding: 20px 24px;
    margin: 20px 0;
}

.warn-box strong {
    color: #d97706;
    display: block;
    margin-bottom: 6px;
}

.warn-box p {
    margin: 0;
    color: var(--text-muted);
    font-size: 0.92rem;
}

/* ═══════════════════════════════════════════
   PRIVACY
   ═══════════════════════════════════════════ */
.privacy-content {
    max-width: 800px;
    margin: 0 auto;
    padding: 60px 0;
}

.privacy-content h2 {
    font-family: var(--font-display);
    font-size: 1.6rem;
    margin: 48px 0 16px;
}

.privacy-content h2:first-child {
    margin-top: 0;
}

.privacy-content p {
    color: var(--text-muted);
    font-size: 0.97rem;
    line-height: 1.9;
    margin-bottom: 16px;
}

.privacy-content ul li {
    color: var(--text-muted);
    font-size: 0.97rem;
    padding-left: 20px;
    position: relative;
    margin-bottom: 8px;
}

.privacy-content ul li::before {
    content: '•';
    position: absolute;
    left: 0;
    color: var(--primary);
}

/* ═══════════════════════════════════════════
   DOWNLOAD
   ═══════════════════════════════════════════ */
.download-hero-wrap {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    padding: 60px 0;
}

.download-info h2 {
    font-family: var(--font-display);
    font-size: 2.5rem;
    letter-spacing: -0.03em;
    margin-bottom: 20px;
    color: white;
}

.download-info p {
    color: rgba(255, 255, 255, 0.6);
    margin-bottom: 32px;
    font-size: 1.05rem;
}

.dl-features {
    display: flex;
    flex-direction: column;
    gap: 14px;
    margin-bottom: 36px;
}

.dl-feature {
    display: flex;
    align-items: center;
    gap: 14px;
    color: rgba(255, 255, 255, 0.75);
    font-size: 0.95rem;
    font-weight: 600;
}

.dl-feature-icon {
    width: 36px;
    height: 36px;
    background: rgba(108, 59, 255, 0.25);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
    flex-shrink: 0;
}

.download-box {
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: var(--radius-xl);
    padding: 44px;
    backdrop-filter: blur(10px);
}

.download-box h3 {
    font-family: var(--font-display);
    font-size: 1.6rem;
    margin-bottom: 8px;
    color: white;
}

.download-box p {
    color: rgba(255, 255, 255, 0.5);
    font-size: 0.9rem;
    margin-bottom: 28px;
}

.version-info {
    display: flex;
    gap: 20px;
    margin-bottom: 28px;
}

.v-tag {
    background: rgba(108, 59, 255, 0.2);
    border: 1px solid rgba(108, 59, 255, 0.3);
    padding: 6px 14px;
    border-radius: 100px;
    font-size: 0.8rem;
    font-weight: 700;
    color: #a78bfa;
}

.req-list {
    margin-top: 28px;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    padding-top: 20px;
}

.req-list h4 {
    font-size: 0.8rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: rgba(255, 255, 255, 0.4);
    margin-bottom: 12px;
}

.req-list li {
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.5);
    padding: 4px 0;
}

/* ═══════════════════════════════════════════
   FOOTER
   ═══════════════════════════════════════════ */
.footer {
    background: var(--dark2);
    padding-top: 70px;
    position: relative;
    overflow: hidden;
}

.footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(108, 59, 255, 0.5), transparent);
}

.footer-top {
    display: grid;
    grid-template-columns: 2.2fr 1fr 1fr 1fr;
    gap: 48px;
    padding-bottom: 56px;
    border-bottom: 1px solid var(--border-dark);
}

.footer-main .logo {
    font-size: 1.35rem;
    color: white;
    margin-bottom: 18px;
    display: flex;
}

.footer-main .logo span {
    color: #a78bfa;
}

.footer-desc {
    color: rgba(255, 255, 255, 0.35);
    font-size: 0.9rem;
    line-height: 1.8;
    max-width: 300px;
    margin-bottom: 28px;
}

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

.social-link {
    width: 40px;
    height: 40px;
    border: 1px solid var(--border-dark);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(255, 255, 255, 0.4);
    transition: var(--transition);
}

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

.footer-col h5 {
    font-size: 0.82rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: rgba(255, 255, 255, 0.35);
    margin-bottom: 22px;
}

.footer-col ul li {
    margin-bottom: 12px;
}

.footer-col ul li a {
    color: rgba(255, 255, 255, 0.5);
    font-size: 0.9rem;
}

.footer-col ul li a:hover {
    color: white;
    padding-left: 4px;
}

.footer-bottom {
    padding: 24px 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 12px;
}

.footer-bottom p {
    color: rgba(255, 255, 255, 0.25);
    font-size: 0.85rem;
}

.footer-bottom-links {
    display: flex;
    gap: 24px;
}

.footer-bottom-links a {
    color: rgba(255, 255, 255, 0.3);
    font-size: 0.85rem;
}

.footer-bottom-links a:hover {
    color: white;
}

/* ═══════════════════════════════════════════
   RESPONSIVE — TABLET (≤1100px)
   ═══════════════════════════════════════════ */
@media (max-width: 1100px) {
    .container {
        padding: 0 24px;
    }

    section {
        padding: 72px 0;
    }

    .page-hero {
        padding: 120px 0 64px;
    }

    .hero {
        padding: 110px 0 70px;
    }

    .hero-wrap {
        grid-template-columns: 1fr;
        gap: 48px;
    }

    .hero-content {
        max-width: 100%;
        text-align: center;
    }

    .hero-btns {
        justify-content: center;
    }

    .hero-stats {
        justify-content: center;
    }

    .hero-visual {
        max-width: 560px;
        margin: 0 auto;
    }

    .section-head {
        margin-bottom: 44px;
    }

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

    .bento-card.wide {
        grid-column: span 1;
    }

    .bento-card {
        padding: 28px;
    }

    .about-split {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .values-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .testi-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .blog-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .pricing-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .help-cards {
        grid-template-columns: repeat(2, 1fr);
    }

    .contact-wrap {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .footer-top {
        grid-template-columns: 1fr 1fr;
        gap: 36px;
        padding-bottom: 44px;
    }

    .guide-wrap {
        grid-template-columns: 1fr;
    }

    .guide-sidebar {
        position: static;
    }

    .download-hero-wrap {
        grid-template-columns: 1fr;
    }

    .steps-wrap {
        gap: 20px;
    }

    .steps-wrap::before {
        display: none;
    }

    .cta-band {
        padding: 60px 0;
    }

    .footer {
        padding-top: 56px;
    }
}

/* ═══════════════════════════════════════════
   RESPONSIVE — MOBILE (≤768px)
   ═══════════════════════════════════════════ */
@media (max-width: 768px) {
    .container {
        padding: 0 18px;
    }

    .nav-links {
        display: none;
    }

    .hamburger {
        display: flex;
    }

    section {
        padding: 56px 0;
    }

    .page-hero {
        padding: 100px 0 52px;
    }

    .page-hero-content h1 {
        font-size: clamp(1.8rem, 6vw, 2.6rem);
    }

    .page-hero-content p {
        font-size: 0.95rem;
    }

    .hero {
        padding: 96px 0 56px;
    }

    .hero h1 {
        font-size: clamp(2rem, 7vw, 3rem);
    }

    .hero p {
        font-size: 0.97rem;
    }

    .hero-btns {
        flex-direction: column;
        align-items: center;
        gap: 12px;
    }

    .hero-btns .btn {
        width: 100%;
        max-width: 300px;
        justify-content: center;
    }

    .hero-stats {
        gap: 24px;
        margin-top: 36px;
        padding-top: 36px;
        flex-wrap: wrap;
    }

    .stat-num {
        font-size: 1.6rem;
    }

    .hero-float-card {
        display: none;
    }

    .about-img-badge {
        display: none;
    }

    .section-head {
        margin-bottom: 36px;
    }

    .section-head h2 {
        font-size: clamp(1.5rem, 5vw, 2rem);
    }

    .section-head p {
        font-size: 0.92rem;
    }

    .features-bento {
        grid-template-columns: 1fr;
        gap: 14px;
    }

    .bento-card {
        padding: 24px;
    }

    .bento-icon {
        width: 46px;
        height: 46px;
        font-size: 1.2rem;
        margin-bottom: 16px;
    }

    .bento-card h3 {
        font-size: 1.1rem;
    }

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

    .testi-item {
        padding: 24px;
    }

    .testi-text {
        font-size: 0.95rem;
    }

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

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

    .price-card {
        padding: 32px 24px;
    }

    .price-value {
        font-size: 2.8rem;
    }

    .help-cards {
        grid-template-columns: 1fr;
    }

    .help-card {
        padding: 28px 22px;
    }

    .steps-wrap {
        grid-template-columns: 1fr;
        gap: 24px;
    }

    .step-num {
        width: 62px;
        height: 62px;
        font-size: 1.4rem;
        margin-bottom: 18px;
    }

    .step-item h3 {
        font-size: 1.05rem;
    }

    .values-grid {
        grid-template-columns: 1fr 1fr;
        gap: 14px;
    }

    .value-card {
        padding: 22px 18px;
    }

    .footer-top {
        grid-template-columns: 1fr;
        gap: 28px;
        padding-bottom: 36px;
    }

    .footer {
        padding-top: 44px;
    }

    .footer-bottom {
        flex-direction: column;
        text-align: center;
        gap: 8px;
    }

    .drawer {
        width: 100%;
        right: -100%;
    }

    .stat-boxes {
        grid-template-columns: 1fr 1fr;
    }

    .about-split {
        gap: 32px;
    }

    .about-split h2 {
        font-size: 1.6rem;
    }

    .contact-form-box {
        padding: 26px 20px;
    }

    .contact-wrap {
        gap: 28px;
    }

    .cta-band {
        padding: 48px 0;
    }

    .cta-band h2 {
        font-size: clamp(1.5rem, 5vw, 2rem);
    }

    .cta-band p {
        font-size: 0.92rem;
    }

    .cta-band-btns {
        flex-direction: column;
        align-items: center;
        gap: 12px;
    }

    .cta-band-btns .btn {
        width: 100%;
        max-width: 280px;
        text-align: center;
        justify-content: center;
    }

    .marquee-section {
        padding: 28px 0;
    }

    .download-box {
        padding: 28px 20px;
    }

    .guide-main h2 {
        font-size: 1.5rem;
    }

    .privacy-content {
        padding: 36px 0;
    }
}

/* ═══════════════════════════════════════════
   RESPONSIVE — SMALL MOBILE (≤480px)
   ═══════════════════════════════════════════ */
@media (max-width: 480px) {
    .container {
        padding: 0 14px;
    }

    section {
        padding: 44px 0;
    }

    .page-hero {
        padding: 88px 0 44px;
    }

    .hero {
        padding: 84px 0 44px;
    }

    .hero h1 {
        font-size: clamp(1.7rem, 8vw, 2.4rem);
    }

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

    .stat-boxes {
        grid-template-columns: 1fr;
    }

    .logo {
        font-size: 0.9rem
    }

    .logo .logo-icon {
        width: 32px;
        height: 32px;
    }

    .footer-bottom-links {
        gap: 14px;
    }

    .testi-item {
        padding: 20px;
    }

    .bento-card {
        padding: 20px;
    }

    .price-card {
        padding: 28px 20px;
    }

    .section-head h2 {
        font-size: clamp(1.4rem, 6vw, 1.8rem);
    }

    .cta-band {
        padding: 40px 0;
    }
}