/* ==========================================================================
   Files In Cloud — Cloud Storage SaaS Landing Page
   ========================================================================== */

/* ============ ROOT VARS ============ */
:root {
    /* Brand blues — slightly deeper / more electric than v1 */
    --c-primary: #2C5BE0;
    --c-primary-dark: #1F47B8;
    --c-primary-light: #5C8AFF;
    --c-primary-soft: #EAF0FF;
    --c-primary-tint: #F4F7FE;

    /* Indigo accent for italic words & gradient ends */
    --c-indigo: #5847E8;
    --c-indigo-light: #7B4CFF;

    /* Supporting */
    --c-teal: #19C2B0;
    --c-orange: #F26A1C;
    --c-pink: #E84B6D;

    /* Dark palette */
    --c-navy: #0A1432;
    --c-navy-2: #131F4A;
    --c-navy-3: #1F2A55;

    /* Text */
    --c-text: #0A1432;
    --c-text-soft: #4A5577;
    --c-text-muted: #8390AE;

    /* Surface */
    --c-surface: #FFFFFF;
    --c-surface-2: #F8FAFF;
    --c-border: #E5EBF5;
    --c-border-soft: #EEF2FA;

    /* Gradients */
    --grad-primary: linear-gradient(135deg, #2C5BE0 0%, #5847E8 100%);
    --grad-primary-soft: linear-gradient(135deg, #EAF0FF 0%, #F0EDFF 100%);
    --grad-dark: linear-gradient(160deg, #1f2130 0%, #2b2c50 50%, #2c2a4c 100% 100%);
    /* --grad-dark: linear-gradient(180deg, #0A1432 0%, #131F4A 100%); */
    --grad-featured: linear-gradient(155deg, #1F47B8 0%, #2C5BE0 40%, #5847E8 100%);

    /* Typography */
    --font-display: "Bricolage Grotesque", "Plus Jakarta Sans", system-ui, sans-serif;
    --font-body: "DM Sans", system-ui, -apple-system, sans-serif;

    /* Spacing & radius */
    --r-sm: 8px;
    --r-md: 12px;
    --r-lg: 18px;
    --r-xl: 24px;
    --r-2xl: 32px;

    /* Shadows */
    --shadow-sm: 0 1px 2px rgba(10, 20, 50, 0.06);
    --shadow-md: 0 4px 14px rgba(10, 20, 50, 0.07);
    --shadow-lg: 0 12px 36px rgba(10, 20, 50, 0.10);
    --shadow-xl: 0 24px 64px rgba(10, 20, 50, 0.16);
    --shadow-glow: 0 20px 60px rgba(44, 91, 224, 0.32);

    /* Header height */
    --header-h: 72px;
}

/* ============ BASE ============ */
* { box-sizing: border-box; }
html { scroll-behavior: smooth; scroll-padding-top: 80px; }
body {
    font-family: var(--font-body);
    color: var(--c-text);
    background: var(--c-surface);
    line-height: 1.55;
    font-size: 16px;
    font-weight: 400;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-display);
    color: var(--c-text);
    font-weight: 700;
    letter-spacing: -0.02em;
    margin: 0;
}

a { color: inherit; text-decoration: none; transition: color .18s ease, opacity .18s ease; }
a:hover { color: var(--c-primary); }

img { max-width: 100%; display: block; }
.container-fluid{
    max-width: 1500px;
}
/* ====================================================================
   ITALIC ACCENT — Bricolage Grotesque's stylish italic for highlight words
   ==================================================================== */
.ital-accent {
    font-weight: 700;
    background: var(--grad-primary);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    font-style: normal;
}
.ital-accent-light {
    font-style: italic;
    font-weight: 700;
    background: linear-gradient(135deg, #7AA0FF, #B5A6FF);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    font-style: normal;
}

/* ============================ HEADER ============================ */
.site-header {
    position: sticky;
    top: 0;
    z-index: 1000;
    background: rgba(255,255,255,0.86);
    backdrop-filter: saturate(180%) blur(14px);
    -webkit-backdrop-filter: saturate(180%) blur(14px);
    border-bottom: 1px solid transparent;
    transition: border-color .25s ease, background .25s ease, box-shadow .25s ease;
    padding: 14px 0;
}
.site-header.scrolled {
    border-bottom-color: var(--c-border);
    box-shadow: 0 1px 3px rgba(10,20,50,0.04);
}

.brand { max-width: 90px; color: var(--c-text); font-weight: 800; font-family: var(--font-display); font-size: 22px; letter-spacing: -0.02em; }
.brand-mark { width: 34px; height: 34px; display: inline-block; }
.brand-mark svg { width: 100%; height: 100%; }
.brand-name { color: var(--c-text); }
.brand:hover { color: var(--c-text); }

.nav-links { list-style: none; padding: 0; }
.nav-links .nav-link {
    padding: 8px 20px;
    border-radius: 10px;
    font-weight: 500;
    color: var(--c-text-soft);
    font-size: 16px;
}
.nav-links .nav-link:hover { color: var(--c-text); background: var(--c-primary-tint); }
.nav-links .nav-link.active { color: var(--c-primary); background: var(--c-primary-soft); font-weight: 600; }

.link-muted { color: var(--c-text); font-weight: 500; font-size: 15px; }
.link-muted:hover { color: var(--c-primary); }

.btn-primary-pill {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 11px 22px;
    background: var(--c-text);
    color: white;
    border-radius: 100px;
    font-weight: 600;
    font-size: 14.5px;
    transition: all .2s ease;
    box-shadow: 0 4px 14px rgba(10,20,50,0.18);
}
.btn-primary-pill:hover { background: var(--c-primary); color: white; transform: translateY(-1px); box-shadow: 0 6px 18px rgba(44,91,224,0.32); }
.btn-primary-pill i { font-size: 16px; transition: transform .2s ease; }
.btn-primary-pill:hover i { transform: translateX(3px); }

.btn-mobile-toggle {
    border: 1px solid var(--c-border);
    background: white;
    width: 42px; height: 42px;
    border-radius: 10px;
    display: flex; align-items: center; justify-content: center;
    font-size: 22px;
    color: var(--c-text);
}
.mobile-menu {
    display: none;
    flex-direction: column;
    padding: 16px 0 6px;
    border-top: 1px solid var(--c-border);
    margin-top: 14px;
}
.mobile-menu.open { display: flex; }
.mobile-link {
    padding: 10px 0;
    font-weight: 600;
    color: var(--c-text);
    border-bottom: 1px solid var(--c-border-soft);
}
.mobile-link:last-child { border-bottom: none; }

/* ============================ HERO (Saasnova-inspired) ============================ */
.hero {
    position: relative;
    padding: 80px 0 40px;
    background: linear-gradient(180deg, #EAF0FF 0%, #F4F7FE 50%, #FFFFFF 100%);
    overflow: hidden;
}

.hero-bg { position: absolute; inset: 0; pointer-events: none; }
.hero-blob {
    position: absolute;
    border-radius: 50%;
    filter: blur(70px);
    opacity: 0.55;
}
.hero-blob-1 { top: -40px; left: -80px; width: 360px; height: 360px; background: radial-gradient(circle, #5C8AFF, transparent 70%); }
.hero-blob-2 { top: 60px; right: -80px; width: 380px; height: 380px; background: radial-gradient(circle, #7B4CFF, transparent 70%); opacity: 0.35; }
.hero-blob-3 { top: 280px; left: 38%; width: 280px; height: 280px; background: radial-gradient(circle, #19C2B0, transparent 70%); opacity: 0.18; }
.hero-grid {
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(44,91,224,0.06) 1px, transparent 1px),
        linear-gradient(90deg, rgba(44,91,224,0.06) 1px, transparent 1px);
    background-size: 60px 60px;
    mask-image: radial-gradient(ellipse at center top, black 30%, transparent 80%);
    -webkit-mask-image: radial-gradient(ellipse at center top, black 30%, transparent 80%);
}

.hero-inner { position: relative; padding-bottom: 32px; }

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: white;
    padding: 7px 16px 7px 12px;
    border-radius: 100px;
    color: var(--c-text);
    font-weight: 500;
    font-size: 13.5px;
    border: 1px solid var(--c-border);
    box-shadow: var(--shadow-sm);
    margin-bottom: 28px;
    transition: all .25s ease;
}
.hero-badge:hover { color: var(--c-text); transform: translateY(-1px); box-shadow: var(--shadow-md); }
.hero-badge-dot {
    width: 7px; height: 7px;
    border-radius: 50%;
    background: var(--c-teal);
    box-shadow: 0 0 0 4px rgba(25,194,176,0.18);
    animation: pulseDot 2s infinite;
}
.hero-badge i { font-size: 14px; color: var(--c-primary); }
@keyframes pulseDot { 0%,100% { box-shadow: 0 0 0 4px rgba(25,194,176,0.18); } 50% { box-shadow: 0 0 0 8px rgba(25,194,176,0.08); } }

.hero-title {
    font-size: clamp(30px, 5.4vw, 68px);
    line-height: 1.04;
    font-weight: 700;
    letter-spacing: -0.035em;
    margin-bottom: 22px;
}

.hero-sub {
    font-size: clamp(15px, 1.3vw, 18px);
    color: var(--c-text-soft);
    max-width: 640px;
    margin: 0 auto 36px;
    line-height: 1.6;
}

.hero-cta-row {
    display: flex;
    justify-content: center;
    gap: 14px;
    flex-wrap: wrap;
    margin-bottom: 40px;
}
.btn-hero-primary {
    display: inline-flex; align-items: center; gap: 10px;
    padding: 12px 30px;
    background: var(--grad-primary);
    color: white;
    border-radius: 14px;
    font-weight: 600;
    font-size: 16px;
    box-shadow: 0 12px 28px rgba(44,91,224,0.32);
    transition: all .25s ease;
    border: none;
}
.btn-hero-primary:hover { color: white; transform: translateY(-2px); box-shadow: 0 18px 36px rgba(44,91,224,0.42); }
.btn-hero-primary i { transition: transform .2s ease; }
.btn-hero-primary:hover i { transform: translateX(4px); }

.btn-hero-secondary {
    display: inline-flex; align-items: center; gap: 10px;
    padding: 12px 26px 12px 20px;
    background: white;
    color: var(--c-text);
    border-radius: 14px;
    font-weight: 600;
    font-size: 16px;
    border: 1px solid var(--c-border);
    box-shadow: var(--shadow-sm);
    transition: all .25s ease;
}
.btn-hero-secondary:hover { color: var(--c-text); border-color: var(--c-primary); transform: translateY(-2px); }
.play-circle {
    width: 32px; height: 32px;
    border-radius: 50%;
    background: var(--c-primary-soft);
    display: inline-flex; align-items: center; justify-content: center;
    color: var(--c-primary);
    font-size: 13px;
}

.hero-trust {
    display: inline-flex;
    align-items: center;
    gap: 14px;
    background: white;
    padding: 8px 23px;
    border-radius: 100px;
    border: 1px solid var(--c-border);
    box-shadow: var(--shadow-sm);
}
.trust-avatars { display: flex; }
.t-avatar {
    width: 32px; height: 32px;
    border-radius: 50%;
    color: white;
    font-weight: 700;
    font-size: 11px;
    display: flex; align-items: center; justify-content: center;
    border: 2px solid white;
    margin-left: -10px;
    font-family: var(--font-body);
}
.t-avatar:first-child { margin-left: 0; }
.trust-text { text-align: left; font-size: 12.5px; line-height: 1.3; }
.trust-stars { color: #F5A623; font-size: 12px; display: flex; align-items: center; gap: 2px; }
.trust-stars strong { margin-left: 4px; color: var(--c-text); font-size: 13.5px; }
.trust-label { color: var(--c-text-soft); font-size: 12px; margin-top: 2px; }
.trust-label strong { color: var(--c-text); }

/* Hero visual / mockup */
.hero-visual {
    position: relative;
    margin-top: 32px;
    padding-bottom: 0;
}
.hero-mockup-wrap {
    position: relative;
    max-width: 1180px;
    margin: 0 auto;
}
/* .hero-mockup {
    width: 100%;
    height: auto;
    display: block;
    border-radius: var(--r-xl);
    box-shadow: 0 30px 80px rgba(10,20,50,0.18), 0 8px 24px rgba(10,20,50,0.08);
    transform: translateZ(0);
    animation: heroFloat 8s ease-in-out infinite;
} */
@keyframes heroFloat {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-6px); }
}

.float-card {
    position: absolute;
    z-index: 2;
    animation: floatCard 6s ease-in-out infinite;
}
.float-card img { width: 100%; height: auto; display: block; }
.float-card-uploads {
    left: -30px;
    top: 22%;
    width: 240px;
    animation-delay: -2s;
}
.float-card-encryption {
    right: -20px;
    top: 8%;
    width: 220px;
    animation-delay: -4s;
}
@keyframes floatCard {
    0%, 100% { transform: translateY(0) rotate(-1deg); }
    50% { transform: translateY(-10px) rotate(1deg); }
}
.hero-footnote{
    margin: 0;
    font-size: 15px;
    color: var(--c-text-soft);
}
.hero-footnote span{
    color: var(--c-indigo-light);
}
.hero-imgs-right, .hero-imgs-left{
    position: relative;
    min-height: 290px;
}
.hero-imgs-right img, .hero-imgs-left img{
    border-style: solid;
    border-width: 1px 1px 1px 1px;
    border-color: #F6F6F6;
    border-radius: 10px 10px 10px 10px;
    box-shadow: 0px 0px 10px 5px rgba(0, 0, 0, 0.04);
}
.hero-imgs-right .img1, .hero-imgs-right .img2, .hero-imgs-left .img1, .hero-imgs-left .img2{
    position: absolute;
    max-width: 100%;
}
.hero-imgs-right .img1{
    top: 0;
    right: -50px;
    -moz-transform: rotate(4deg);
    -webkit-transform: rotate(4deg);
    -o-transform: rotate(4deg);
    -ms-transform: rotate(4deg);
    transform: rotate(4deg);
}
.hero-imgs-right .img2{
    right: -50px;
    bottom: 0;
    -moz-transform: rotate(-2deg);
    -webkit-transform: rotate(-2deg);
    -o-transform: rotate(-2deg);
    -ms-transform: rotate(-2deg);
    transform: rotate(-2deg);
}
.hero-imgs-left .img1{
    top: 0;
    left: -50px;
    -moz-transform: rotate(-4deg);
    -webkit-transform: rotate(-4deg);
    -o-transform: rotate(-4deg);
    -ms-transform: rotate(-4deg);
    transform: rotate(-4deg);
}
.hero-imgs-left .img2{
    left: -50px;
    bottom: 0;
    -moz-transform: rotate(2deg);
    -webkit-transform: rotate(2deg);
    -o-transform: rotate(2deg);
    -ms-transform: rotate(2deg);
    transform: rotate(2deg);
}
/* ============================ TRUSTED STRIP ============================ */
.trusted-strip {
    padding: 64px 0 56px;
    background: white;
    border-bottom: 1px solid var(--c-border-soft);
}
.trusted-label {
    text-align: center;
    color: var(--c-text-muted);
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.16em;
    margin-bottom: 28px;
}
.logo-row {
    display: flex;
    align-items: center;
    justify-content: space-around;
    flex-wrap: wrap;
    gap: 28px;
}
.logo-item {
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--c-text-muted);
    font-weight: 700;
    font-size: 17px;
    font-family: var(--font-display);
    letter-spacing: -0.01em;
    opacity: 0.75;
    transition: opacity .2s ease, color .2s ease;
}
.logo-item:hover { opacity: 1; color: var(--c-text); }
.logo-item svg { width: 22px; height: 22px; }

/* ============================ SECTION HEAD (shared) ============================ */
.section-head {
    text-align: center;
    margin: 0 auto 56px;
}
.section-pill {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 7px 16px;
    background: var(--c-primary-soft);
    color: var(--c-primary);
    border-radius: 100px;
    font-weight: 600;
    font-size: 13px;
    margin-bottom: 20px;
}
.section-pill i { font-size: 14px; }
.section-title {
    font-size: clamp(30px, 4vw, 50px);
    line-height: 1.08;
    font-weight: 700;
    letter-spacing: -0.03em;
    margin-bottom: 18px;
}
.section-sub {
    color: var(--c-text-soft);
    font-size: 16.5px;
    line-height: 1.6;
    margin: 0;
}

/* ============================ FEATURES (Aivory-inspired) ============================ */
.features {
    padding: 80px 0;
    background: white;
    position: relative;
}

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

.f-card {
    background: linear-gradient(180deg, #EAF0FF 0%, #F4F7FE 50%, #FFFFFF 100%);
    border: 1px solid var(--c-border);
    border-radius: var(--r-xl);
    padding: 32px 28px 0;
    transition: all .3s ease;
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}
.f-card img{
    border-style: solid;
    border-width: 1px 1px 1px 1px;
    border-color: #F6F6F6;
    border-radius: 10px 10px 10px 10px;
    box-shadow: 0px 0px 10px 5px rgba(0, 0, 0, 0.04);
    margin-top: 30px;
}
.f-card::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, var(--c-primary-soft), transparent 60%);
    opacity: 0;
    transition: opacity .35s ease;
    pointer-events: none;
}
.f-card:hover {
    transform: translateY(-4px);
    border-color: var(--c-primary-light);
    box-shadow: var(--shadow-lg);
}
.f-card:hover::before { opacity: 0.5; }
.f-card > * { position: relative; z-index: 1; }

.f-icon {
    width: 52px;
    height: 52px;
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--c-indigo-light);
    border: 1px solid var(--c-indigo-light);
    font-size: 24px;
    margin-bottom: 22px;
    box-shadow: 0 8px 20px rgba(10, 20, 50, 0.10);
}
.f-icon-blue { background: linear-gradient(135deg, #3B72FF, #2C5BE0); }
.f-icon-purple { background: linear-gradient(135deg, #7B4CFF, #5847E8); }
.f-icon-teal { background: linear-gradient(135deg, #2DD4BF, #19C2B0); box-shadow: 0 8px 20px rgba(25,194,176,0.30); }
.f-icon-orange { background: linear-gradient(135deg, #FF8A3D, #F26A1C); box-shadow: 0 8px 20px rgba(242,106,28,0.30); }
.f-icon-pink { background: linear-gradient(135deg, #FF5C7C, #E84B6D); box-shadow: 0 8px 20px rgba(232,75,109,0.30); }

.f-title {
    font-size: 21px;
    font-weight: 700;
    margin-bottom: 10px;
    letter-spacing: -0.015em;
}
.f-desc {
    color: var(--c-text-soft);
    font-size: 16px;
    line-height: 1.6;
    margin: 0;
}

/* Featured dark card */
.f-card-featured {
    background: var(--grad-featured);
    color: white;
    border: none;
    grid-column: span 1;
    padding: 36px 32px;
    overflow: hidden;
    box-shadow: 0 20px 50px rgba(44,91,224,0.32);
}
.f-card-featured::before { display: none; }
.f-card-featured:hover {
    transform: translateY(-4px);
    box-shadow: 0 28px 64px rgba(44,91,224,0.45);
    border-color: transparent;
}

.f-feat-glow {
    position: absolute;
    top: -60px; right: -80px;
    width: 240px; height: 240px;
    background: radial-gradient(circle, rgba(255,255,255,0.20), transparent 70%);
    border-radius: 50%;
    pointer-events: none;
}
.f-feat-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 7px 14px;
    background: rgba(255,255,255,0.16);
    border: 1px solid rgba(255,255,255,0.22);
    border-radius: 100px;
    font-size: 12.5px;
    font-weight: 600;
    margin-bottom: 22px;
    color: white;
    backdrop-filter: blur(8px);
}
.f-feat-badge i { color: #FFD166; }

.f-feat-title {
    color: white;
    font-size: 22px;
    line-height: 1.18;
    margin-bottom: 12px;
}
.f-feat-desc {
    color: rgba(255,255,255,0.78);
    font-size: 14.5px;
    line-height: 1.6;
    margin: 0 0 22px;
}
.f-feat-link {
    color: white;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-weight: 600;
    font-size: 14px;
    padding: 9px 16px;
    background: rgba(255,255,255,0.14);
    border: 1px solid rgba(255,255,255,0.20);
    border-radius: 10px;
    backdrop-filter: blur(8px);
    transition: all .2s ease;
}
.f-feat-link:hover { color: white; background: rgba(255,255,255,0.22); transform: translateX(2px); }
.f-feat-link i { transition: transform .2s ease; }
.f-feat-link:hover i { transform: translateX(3px); }

.f-feat-orbit {
    position: absolute;
    bottom: 20px; right: 22px;
    display: flex;
    gap: 6px;
}
.orbit-dot {
    width: 6px; height: 6px;
    border-radius: 50%;
    background: rgba(255,255,255,0.5);
    animation: orbitPulse 1.6s infinite;
}
.orbit-dot:nth-child(2) { animation-delay: 0.2s; }
.orbit-dot:nth-child(3) { animation-delay: 0.4s; }
@keyframes orbitPulse {
    0%, 100% { transform: scale(1); opacity: 0.4; }
    50% { transform: scale(1.4); opacity: 1; }
}

/* ============================ HOW IT WORKS (Saasnova-inspired) ============================ */
.how {
    position: relative;
    padding: 80px 0;
    background: var(--grad-dark);
    color: white;
}
.how-bg { position: absolute; inset: 0; pointer-events: none; }
.how-glow {
    position: absolute;
    top: -100px;
    left: 40%;
    width: 600px; height: 600px;
    background: radial-gradient(circle, rgba(88,71,232,0.28), transparent 70%);
    border-radius: 50%;
    filter: blur(80px);
}
.how-grid {
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(255,255,255,0.04) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255,255,255,0.04) 1px, transparent 1px);
    background-size: 60px 60px;
    mask-image: radial-gradient(ellipse at center, black 30%, transparent 75%);
    -webkit-mask-image: radial-gradient(ellipse at center, black 30%, transparent 75%);
}

.how .container { position: relative; z-index: 1; }

.how-left {
    position: sticky;
    top: 100px;
}
.how-pill {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 7px 16px;
    background: rgba(255,255,255,0.08);
    border: 1px solid rgba(255,255,255,0.12);
    color: white;
    border-radius: 100px;
    font-weight: 600;
    font-size: 13px;
    margin-bottom: 22px;
    backdrop-filter: blur(8px);
}
.how-pill i { color: #FFD166; }

.how-title {
    color: white;
    font-size: clamp(34px, 4.4vw, 56px);
    line-height: 1.08;
    letter-spacing: -0.03em;
    margin-bottom: 20px;
}
.how-sub {
    color: rgba(255,255,255,0.72);
    font-size: 16.5px;
    line-height: 1.65;
    margin-bottom: 30px;
}

.how-bullets {
    list-style: none;
    padding: 0;
    margin: 0 0 36px;
}
.how-bullets li {
    color: rgba(255,255,255,0.85);
    padding: 7px 0;
    font-size: 14.5px;
    display: flex;
    align-items: center;
    gap: 10px;
}
.how-bullets li i { color: var(--c-teal); font-size: 18px; }

.btn-how-cta {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 14px 28px;
    background: white;
    color: var(--c-text);
    border-radius: 12px;
    font-weight: 600;
    font-size: 15px;
    transition: all .25s ease;
    box-shadow: 0 8px 24px rgba(0,0,0,0.14);
}
.btn-how-cta:hover { color: var(--c-text); transform: translateY(-2px); box-shadow: 0 12px 32px rgba(0,0,0,0.22); }
.btn-how-cta i { transition: transform .2s ease; }
.btn-how-cta:hover i { transform: translateX(3px); }

.btn-how-cta-light {
    background: var(--c-primary);
    color: white;
    box-shadow: 0 8px 24px rgba(44,91,224,0.32);
}
.btn-how-cta-light:hover { color: white; box-shadow: 0 12px 32px rgba(44,91,224,0.42); }

/* Step cards */
.how-steps {
    display: flex;
    flex-direction: column;
    gap: 20px;
}
.step-card {
    background: rgba(255,255,255,0.04);
    border: 1px solid rgba(255,255,255,0.10);
    border-radius: var(--r-xl);
    padding: 24px;
    transition: all .3s ease;
    backdrop-filter: blur(10px);
}
.step-card:hover {
    background: rgba(255,255,255,0.07);
    border-color: rgba(255,255,255,0.20);
    transform: translateX(4px);
}

.step-card-head {
    display: flex;
    align-items: flex-start;
    gap: 18px;
    margin-bottom: 18px;
}
.step-num {
    font-family: var(--font-display);
    font-size: 16px;
    font-weight: 700;
    color: var(--c-primary-light);
    background: rgba(44, 91, 224, 0.16);
    border: 1px solid rgba(92, 138, 255, 0.25);
    border-radius: 10px;
    padding: 10.56px 12px;
    flex-shrink: 0;
    letter-spacing: 0.04em;
}
.step-title {
    color: white;
    font-size: 19px;
    font-weight: 700;
    margin-bottom: 6px;
    letter-spacing: -0.015em;
}
.step-desc {
    color: rgba(255,255,255,0.65);
    margin: 0;
}
.step-img {
    border-radius: var(--r-md);
    overflow: hidden;
    background: white;
    box-shadow: 0 12px 32px rgba(0,0,0,0.20), inset 0 0 0 1px rgba(255,255,255,0.10);
}
.step-img img { width: 100%; height: auto; display: block; }

/* Stats strip */
.how-stats {
    margin-top: 64px;
    background: rgba(255,255,255,0.04);
    border: 1px solid rgba(255,255,255,0.10);
    border-radius: var(--r-xl);
    padding: 32px 24px;
    display: grid;
    grid-template-columns: 1fr auto 1fr auto 1fr auto 1fr;
    align-items: center;
    gap: 20px;
    backdrop-filter: blur(10px);
}
.stat-cell { text-align: center; }
.stat-num {
    font-family: var(--font-display);
    font-size: clamp(28px, 3.5vw, 44px);
    font-weight: 700;
    color: white;
    letter-spacing: -0.025em;
    line-height: 1;
    margin-bottom: 8px;
}
.stat-label {
    color: rgba(255,255,255,0.65);
    font-size: 13px;
    font-weight: 500;
}
.stat-divider {
    width: 1px;
    height: 50px;
    background: rgba(255,255,255,0.14);
}

/* ======================= BENEFITS ======================== */
.section {
    padding: 5rem 0;
}
.benefits-visual {
    position: relative;
    border-radius: var(--r-xl);
    overflow: visible;
  }
  .bv-main {
    width: 100%;
    height: 540px;
    object-fit: cover;
    border-radius: var(--r-xl);
    box-shadow: var(--shadow-lg);
  }
  
  .bv-card {
    position: absolute;
    background: #fff;
    border-radius: var(--r-md);
    padding: 0.95rem 1.2rem;
    display: flex;
    align-items: center;
    gap: 12px;
    box-shadow: var(--shadow-lg);
    border: 1px solid var(--ink-100);
  }
  .bv-card-1 { top: 40px; left: -30px; }
  .bv-card-2 { bottom: 50px; right: -30px; }
  
  .bvc-icon {
    width: 44px; height: 44px;
    border-radius: 12px;
    display: flex; align-items: center; justify-content: center;
    color: #fff;
    font-size: 1.15rem;
  }
  .bvc-num { font-weight: 800; font-size: 1.2rem; color: var(--ink-900); line-height: 1; }
  .bvc-title { font-weight: 700; font-size: 0.95rem; color: var(--ink-900); }
  .bvc-label { font-size: 0.78rem; color: var(--ink-400); margin-top: 2px; }
  
  .benefit-list {
    list-style: none;
    padding: 0;
    margin: 1.5rem 0 1.75rem;
  }
  .benefit-list li {
    display: flex;
    gap: 1rem;
    align-items: start;
    margin-bottom: 2.45rem;
  }
  .benefit-list h5 {
    font-size: 1.35rem;
    margin-bottom: 0.25rem;
    font-weight: 700;
  }
  .benefit-list p {
    margin: 0;
    /* font-size: 0.92rem; */
  }
  .b-icon {
    /* width: 110px; */
    flex: 0 0 5rem;
    height: 5rem;
    /* min-width: 30px; */
    border-radius: 50%;
    background: var(--grad-primary);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.5rem;
    /* margin-top: 4px; */
    /* box-shadow: 0 4px 10px rgba(37, 99, 235, 0.3); */
  }
  .ic-blue {
    background: linear-gradient(135deg, #3b82f6, #2563eb);
}
  .ic-green {
    background: linear-gradient(135deg, #10b981, #059669);
}

/* ============================ TESTIMONIAL (blend) ============================ */
.testimonial-section {
    padding: 100px 0;
    background: var(--c-surface-2);
    background-image: radial-gradient(ellipse at top, rgba(44,91,224,0.05), transparent 60%);
}
.testimonial-card {
    max-width: 880px;
    margin: 0 auto;
    background: white;
    border-radius: var(--r-2xl);
    padding: 56px 56px 44px;
    box-shadow: var(--shadow-lg);
    position: relative;
    border: 1px solid var(--c-border);
}
.quote-mark {
    position: absolute;
    top: 16px; left: 40px;
    font-family: var(--font-display);
    font-style: italic;
    font-size: 120px;
    line-height: 1;
    background: var(--grad-primary);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    opacity: 0.5;
}
.quote-text {
    font-family: var(--font-display);
    font-size: clamp(20px, 2vw, 26px);
    line-height: 1.45;
    color: var(--c-text);
    font-weight: 500;
    letter-spacing: -0.015em;
    margin-bottom: 36px;
    position: relative;
    z-index: 1;
}
.quote-author {
    display: flex;
    align-items: center;
    gap: 16px;
}
.author-avatar {
    width: 52px; height: 52px;
    border-radius: 50%;
    color: white;
    font-weight: 700;
    font-size: 16px;
    display: flex; align-items: center; justify-content: center;
    font-family: var(--font-body);
}
.author-name {
    font-family: var(--font-display);
    font-weight: 700;
    font-size: 16px;
    color: var(--c-text);
}
.author-role {
    color: var(--c-text-soft);
    font-size: 13.5px;
}
.author-rating {
    margin-left: auto;
    color: #F5A623;
    font-size: 14px;
    display: flex;
    gap: 2px;
}

/* ============================ PRICING (Nexify-inspired) ============================ */
.pricing {
    padding: 80px 0;
    background: white;
    position: relative;
}

.pricing-toggle {
    display: inline-flex;
    background: var(--c-surface-2);
    border: 1px solid var(--c-border);
    border-radius: 100px;
    padding: 5px;
    margin-top: 28px;
}
.toggle-btn {
    border: none;
    background: transparent;
    padding: 10px 22px;
    border-radius: 100px;
    font-weight: 600;
    font-size: 14px;
    cursor: pointer;
    color: var(--c-text-soft);
    transition: all .25s ease;
    font-family: var(--font-body);
    display: inline-flex;
    align-items: center;
    gap: 8px;
}
.toggle-btn.active {
    background: var(--grad-primary);
    color: white;
    box-shadow: 0 6px 18px rgba(44,91,224,0.30);
}
.save-badge {
    background: rgba(25,194,176,0.18);
    color: var(--c-teal);
    padding: 2px 8px;
    border-radius: 100px;
    font-size: 10.5px;
    font-weight: 700;
}
.toggle-btn.active .save-badge {
    background: rgba(255,255,255,0.22);
    color: white;
}

.pricing-grid {
    margin-top: 56px;
}

.price-card {
    background: white;
    border: 1px solid var(--c-border);
    border-radius: var(--r-xl);
    padding: 38px 32px;
    position: relative;
    transition: all .3s ease;
    display: flex;
    flex-direction: column;
    margin-bottom: 25px;
}
.price-card:hover {
    transform: translateY(-4px);
    border-color: var(--c-primary-light);
    box-shadow: var(--shadow-lg);
}

.price-head { margin-bottom: 22px; }
.price-name {
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 6px;
    letter-spacing: -0.02em;
}
.price-desc {
    color: var(--c-text-soft);
    font-size: 14px;
    margin: 0;
}

.price-amount {
    display: flex;
    align-items: baseline;
    gap: 6px;
    margin-bottom: 24px;
    padding-bottom: 22px;
    border-bottom: 1px dashed var(--c-border);
}
.price-currency {
    font-family: var(--font-display);
    font-size: 22px;
    font-weight: 700;
    color: var(--c-text-soft);
    align-self: flex-start;
    margin-top: 10px;
}
.price-num {
    font-family: var(--font-display);
    font-size: 56px;
    font-weight: 700;
    color: var(--c-text);
    letter-spacing: -0.04em;
    line-height: 1;
}
.price-period {
    color: var(--c-text-muted);
    font-size: 15px;
    font-weight: 500;
}

.price-features {
    list-style: none;
    padding: 0;
    margin: 0 0 28px;
    flex: 1;
}
.price-features li {
    padding: 9px 0;
    color: var(--c-text);
    font-size: 14.5px;
    display: flex;
    align-items: center;
    gap: 10px;
    line-height: 1.4;
}
.price-features li i {
    color: var(--c-primary);
    font-size: 17px;
    flex-shrink: 0;
}

.price-btn {
    display: block;
    text-align: center;
    padding: 14px 24px;
    background: var(--c-surface-2);
    color: var(--c-text);
    border: 1px solid var(--c-border);
    border-radius: 12px;
    font-weight: 600;
    font-size: 15px;
    transition: all .25s ease;
}
.price-btn:hover {
    background: var(--c-primary);
    border-color: var(--c-primary);
    color: white;
    transform: translateY(-1px);
}

/* Featured (middle) — Nexify-style dark gradient */
.price-card-featured {
    background: var(--grad-featured);
    color: white;
    border: none;
    transform: scale(1.04);
    box-shadow: 0 24px 56px rgba(44,91,224,0.35);
    z-index: 2;
    overflow: hidden;
}
.price-card-featured:hover {
    transform: scale(1.04) translateY(-4px);
    box-shadow: 0 32px 72px rgba(44,91,224,0.45);
    border-color: transparent;
}
.featured-glow {
    position: absolute;
    top: -60px; right: -80px;
    width: 240px; height: 240px;
    background: radial-gradient(circle, rgba(255,255,255,0.20), transparent 70%);
    border-radius: 50%;
    pointer-events: none;
}
.best-badge {
    position: absolute;
    top: 24px; right: 24px;
    background: #FFD166;
    color: #5A3A00;
    padding: 6px 12px;
    border-radius: 100px;
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 0.04em;
}
.price-card-featured .price-name { color: white; }
.price-card-featured .price-desc { color: rgba(255,255,255,0.75); }
.price-card-featured .price-currency { color: rgba(255,255,255,0.7); }
.price-card-featured .price-num { color: white; }
.price-card-featured .price-period { color: rgba(255,255,255,0.6); }
.price-card-featured .price-amount { border-bottom-color: rgba(255,255,255,0.18); }
.price-card-featured .price-features li { color: rgba(255,255,255,0.92); }
.price-card-featured .price-features li i { color: white; }
.price-btn-featured {
    background: white;
    color: var(--c-primary);
    border: none;
    font-weight: 700;
}
.price-btn-featured:hover {
    background: white;
    color: var(--c-primary-dark);
    transform: translateY(-1px);
    box-shadow: 0 10px 24px rgba(0,0,0,0.18);
}

/* ============================ FAQ ============================ */
.faq {
    padding: 80px 0;
    background: var(--c-surface-2);
}
.faq-side {
    position: sticky;
    top: 100px;
}
.faq-side .section-pill { margin-bottom: 18px; }
.faq-side .section-title { text-align: left; font-size: clamp(28px, 3.4vw, 40px); }
.faq-side .section-sub { text-align: left; }

.faq-support-card {
    background: white;
    border: 1px solid var(--c-border);
    border-radius: var(--r-xl);
    padding: 28px;
    box-shadow: var(--shadow-md);
}
.faq-avatars {
    display: flex;
    margin-bottom: 16px;
}
.faq-support-card h4 {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 8px;
    color: var(--c-text);
}
.faq-support-card p {
    color: var(--c-text-soft);
    font-size: 14.5px;
    line-height: 1.55;
    margin-bottom: 18px;
}

.faq-list {
    display: flex;
    flex-direction: column;
    gap: 12px;
}
.faq-item {
    background: white;
    border: 1px solid var(--c-border);
    border-radius: var(--r-md);
    overflow: hidden;
    transition: all .25s ease;
}
.faq-item[open] {
    border-color: var(--c-primary);
    box-shadow: 0 8px 24px rgba(44,91,224,0.12);
}
.faq-item summary {
    list-style: none;
    cursor: pointer;
    padding: 20px 22px;
    font-weight: 600;
    color: var(--c-text);
    font-size: 16px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-icon {
    width: 26px; height: 26px;
    border-radius: 8px;
    background: var(--c-primary-soft);
    color: var(--c-primary);
    display: flex; align-items: center; justify-content: center;
    font-size: 14px;
    transition: transform .25s ease, background .25s ease;
    flex-shrink: 0;
}
.faq-item[open] .faq-icon {
    background: var(--c-primary);
    color: white;
    transform: rotate(45deg);
}
.faq-body {
    padding: 0 22px 22px;
    color: var(--c-text-soft);
    font-size: 14.5px;
    line-height: 1.65;
}

/* ============================ CTA SECTION ============================ */
.cta-section {
    padding: 80px 0 110px;
    background: white;
}
.cta-wrap {
    position: relative;
    background: var(--grad-featured);
    border-radius: var(--r-2xl);
    padding: 70px 64px;
    overflow: hidden;
    color: white;
    box-shadow: 0 24px 64px rgba(44,91,224,0.32);
}
.cta-bg-glow {
    position: absolute;
    top: -80px; right: -100px;
    width: 360px; height: 360px;
    background: radial-gradient(circle, rgba(123,76,255,0.40), transparent 70%);
    border-radius: 50%;
    pointer-events: none;
}
.cta-grid-pattern {
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(255,255,255,0.1) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255,255,255,0.1) 1px, transparent 1px);
    background-size: 50px 50px;
    pointer-events: none;
    opacity: 0.6;
}
.cta-wrap > .row { position: relative; z-index: 1; }

.cta-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(255,255,255,0.14);
    border: 1px solid rgba(255,255,255,0.18);
    color: white;
    padding: 7px 16px;
    border-radius: 100px;
    font-weight: 600;
    font-size: 13px;
    margin-bottom: 22px;
    backdrop-filter: blur(8px);
}
.cta-badge i { color: #FFD166; }

.cta-title {
    color: white;
    font-size: clamp(32px, 4.2vw, 52px);
    line-height: 1.08;
    letter-spacing: -0.03em;
    margin-bottom: 18px;
}
.cta-sub {
    color: rgba(255,255,255,0.78);
    font-size: 16.5px;
    line-height: 1.6;
    margin-bottom: 30px;
}

.cta-buttons {
    display: flex;
    gap: 14px;
    flex-wrap: wrap;
    margin-bottom: 26px;
}
.btn-cta-primary {
    display: inline-flex; align-items: center; gap: 10px;
    background: white;
    color: var(--c-primary);
    padding: 15px 28px;
    border-radius: 12px;
    font-weight: 700;
    font-size: 15px;
    transition: all .25s ease;
    box-shadow: 0 8px 20px rgba(0,0,0,0.18);
}
.btn-cta-primary:hover { color: var(--c-primary-dark); transform: translateY(-2px); box-shadow: 0 14px 30px rgba(0,0,0,0.26); }
.btn-cta-primary i { transition: transform .2s ease; }
.btn-cta-primary:hover i { transform: translateX(3px); }

.btn-cta-secondary {
    display: inline-flex; align-items: center; gap: 10px;
    background: rgba(255,255,255,0.14);
    color: white;
    padding: 15px 28px;
    border-radius: 12px;
    font-weight: 600;
    font-size: 15px;
    border: 1px solid rgba(255,255,255,0.20);
    backdrop-filter: blur(8px);
    transition: all .25s ease;
}
.btn-cta-secondary:hover { color: white; background: rgba(255,255,255,0.22); transform: translateY(-2px); }

.cta-bullets {
    display: flex;
    gap: 24px;
    flex-wrap: wrap;
    color: rgba(255,255,255,0.85);
    font-size: 14px;
}
.cta-bullets span { display: flex; align-items: center; gap: 8px; }
.cta-bullets i { color: var(--c-teal); }

.cta-visual { display: flex; align-items: center; justify-content: center; }
.cta-visual svg { width: 100%; max-width: 380px; animation: heroFloat 6s ease-in-out infinite; }

/* ============================ FOOTER ============================ */
.site-footer {
    background: var(--c-navy);
    color: rgba(255,255,255,0.78);
    padding: 80px 0 22px;
    position: relative;
    overflow: hidden;
}
.site-footer::before {
    content: "";
    position: absolute;
    top: 0; left: 30%;
    width: 600px; height: 200px;
    background: radial-gradient(ellipse, rgba(44,91,224,0.20), transparent 70%);
    filter: blur(60px);
    pointer-events: none;
}
.site-footer > .container { position: relative; z-index: 1; }

.brand-footer .brand-name { color: white; }
.footer-tagline {
    color: rgba(255,255,255,0.65);
    line-height: 1.6;
    margin: 16px 0 24px;
    max-width: 300px;
}

.newsletter label {
    display: block;
    color: white;
    font-weight: 600;
    font-size: 13.5px;
    margin-bottom: 10px;
}
.newsletter-form {
    display: flex;
    background: rgba(255,255,255,0.06);
    border: 1px solid rgba(255,255,255,0.10);
    border-radius: 100px;
    padding: 4px 4px 4px 18px;
    max-width: 340px;
    transition: border-color .2s ease;
}
.newsletter-form:focus-within { border-color: var(--c-primary-light); }
.newsletter-form input {
    flex: 1;
    background: transparent;
    border: none;
    outline: none;
    color: white;
    font-size: 14px;
    padding: 8px 0;
    font-family: var(--font-body);
}
.newsletter-form input::placeholder { color: rgba(255,255,255,0.45); }
.newsletter-form button {
    border: none;
    width: 36px; height: 36px;
    border-radius: 50%;
    background: var(--c-primary);
    color: white;
    cursor: pointer;
    transition: background .2s ease, transform .2s ease;
}
.newsletter-form button:hover { background: var(--c-primary-dark); transform: scale(1.05); }

.footer-h {
    color: white;
    font-family: var(--font-display);
    font-weight: 600;
    font-size: 15px;
    text-transform: uppercase;
    margin-bottom: 18px;
}
.footer-links, .footer-contact {
    list-style: none;
    padding: 0;
    margin: 0;
}
.footer-links li, .footer-contact li { margin-bottom: 11px; }
.footer-links a, .footer-contact a {
    color: rgba(255,255,255,0.65);
    font-size: 14.5px;
}
.footer-links a:hover, .footer-contact a:hover { color: white; }
.footer-contact li {
    color: rgba(255,255,255,0.65);
    font-size: 0.92rem;
    display: flex;
    align-items: flex-start;
    gap: 0.6rem;
  }
  .footer-contact i {
    color: var(--c-indigo-light);
    margin-top: 0.2rem;
    flex-shrink: 0;
  }
.footer-bottom {
    margin-top: 56px;
    padding-top: 20px;
    border-top: 1px solid rgba(255,255,255,0.10);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
    flex-wrap: wrap;
}
.footer-bottom p { margin: 0; color: rgba(255,255,255,0.50); font-size: 15px; }
.footer-socials { display: flex; gap: 10px; }
.footer-socials a {
    width: 36px; height: 36px;
    border-radius: 10px;
    background: rgba(255,255,255,0.06);
    border: 1px solid rgba(255,255,255,0.10);
    display: flex; align-items: center; justify-content: center;
    color: rgba(255,255,255,0.65);
    font-size: 14px;
    transition: all .2s ease;
}
.footer-socials a:hover { color: white; background: var(--c-primary); border-color: var(--c-primary); transform: translateY(-2px); }

/* ============================ REVEAL ANIMATIONS ============================ */
.reveal {
    opacity: 0;
    transform: translateY(28px);
    transition: opacity .7s cubic-bezier(.16,1,.3,1), transform .7s cubic-bezier(.16,1,.3,1);
}
.reveal.visible {
    opacity: 1;
    transform: translateY(0);
}

/* General Pages */

  .page-title {
    background: var(--c-border-soft);
    background-size: cover;
    padding: 80px 0;
  }
  .page-title h1 {
    text-align: center;
    font-family: var(--font-display);
    font-size: clamp(2rem, 3.6vw, 3.2rem);
    line-height: 1.05;
    font-weight: 600;
    letter-spacing: -0.025em;
  }
  .order-summary {
    padding: 27px !important;
    border-radius: 16px;
    background: var(--dark-text);
    border: 1px solid #d1d1d1;
  }
  
  .checkout_area select {
    padding: 12px;
    border-radius: 5px;
    box-shadow: none;
    outline: none;
    appearance: auto;
    width: 100%;
    border: var(--bs-border-width) solid var(--bs-border-color);
    margin-bottom: 15px;
    min-height: 50px;
  }
  .checkout_area .form-control {
    padding: 12px 15px;
    margin-bottom: 15px;
    border-radius: 5px;
    border: var(--bs-border-width) solid var(--bs-border-color);
    box-shadow: none;
    outline: none;
  }
  
  .contact_info_section .contact_info_box {
    background: var(--grad4);
    background-color: var(--e-global-color-primary);
    border-radius: 20px;
    padding: 30px;
    margin-bottom: 30px;
    border: var(--bs-border-width) solid var(--bs-border-color);
    display: flex;
  }

/* ============================ RESPONSIVE ============================ */
@media (min-width: 992px){
    .footer-links.ql {
        column-count: 2;
    }
}
@media (max-width: 1199px) {
    .features-grid { grid-template-columns: repeat(2, 1fr); }
    .price-card-featured { transform: none; }
    .price-card-featured:hover { transform: translateY(-4px); }

    .how-stats { grid-template-columns: 1fr 1fr; gap: 24px; }
    .how-stats .stat-divider { display: none; }

    .float-card-uploads { left: 0; width: 200px; }
    .float-card-encryption { right: 0; width: 180px; }
}

@media (max-width: 991px) {
    .hero { padding: 56px 0 0; }
    .hero-title { font-size: clamp(30px, 7vw, 48px); }
    .features { padding: 80px 0; }
    .how { padding: 80px 0; }
    .pricing { padding: 80px 0; }
    .faq { padding: 80px 0; }
    .testimonial-section { padding: 70px 0; }
    .testimonial-card { padding: 40px 30px 30px; }
    .quote-mark { font-size: 80px; top: 8px; left: 20px; }

    .how-left { position: static; margin-bottom: 32px; }
    .faq-side { position: static; margin-bottom: 24px; }

    .cta-wrap { padding: 50px 36px; }
    .cta-bullets { gap: 14px 20px; }
}

@media (max-width: 767px) {
    .features-grid { grid-template-columns: 1fr; }
    .hero-cta-row .btn-hero-primary,
    .hero-cta-row .btn-hero-secondary { width: 100%; justify-content: center; }
    .hero-trust { padding: 8px 16px 8px 12px; gap: 10px; }
    .float-card { display: none; }
    .hero-mockup-wrap { padding: 0 4px; }

    .step-card { padding: 18px; }
    .step-card-head { gap: 14px; }

    .pricing-toggle { width: 100%; justify-content: center; }
    .price-card { padding: 30px 26px; }
    .price-num { font-size: 46px; }

    .cta-wrap { padding: 40px 26px; }
    .cta-buttons .btn-cta-primary,
    .cta-buttons .btn-cta-secondary { width: 100%; justify-content: center; }

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

@media (max-width: 575px) {
    .hero-title { font-size: 32px; }
    .section-title { font-size: 26px; }
    .how-title { font-size: 30px; }
    .cta-title { font-size: 28px; }
    .testimonial-card { padding: 30px 22px 22px; }
    .quote-text { font-size: 17px; }
    .logo-row { gap: 16px 24px; }
    .logo-item { font-size: 14px; }
}
