/* ============================================================
   SNAP-CAST LANDING PAGE — STYLES
   Playful, vibrant, responsive
   ============================================================ */

/* ---- CSS Custom Properties ---- */
:root {
    --purple: #7c3aed;
    --purple-light: #a78bfa;
    --purple-dark: #5b21b6;
    --pink: #ec4899;
    --pink-light: #f9a8d4;
    --blue: #3b82f6;
    --blue-light: #93c5fd;
    --green: #10b981;
    --orange: #f59e0b;
    --teal: #14b8a6;
    --white: #ffffff;
    --off-white: #f8f5ff;
    --gray-50: #fafafa;
    --gray-100: #f3f4f6;
    --gray-200: #e5e7eb;
    --gray-400: #9ca3af;
    --gray-600: #4b5563;
    --gray-800: #1f2937;
    --gray-900: #111827;

    --gradient-main: linear-gradient(135deg, var(--purple) 0%, var(--pink) 100%);
    --gradient-hero: linear-gradient(135deg, #4c1d95 0%, #7c3aed 40%, #ec4899 100%);
    --gradient-text: linear-gradient(135deg, var(--purple) 0%, var(--pink) 100%);
    --gradient-light: linear-gradient(135deg, var(--purple-light) 0%, var(--pink-light) 100%);

    --shadow-sm: 0 1px 3px rgba(0, 0, 0, 0.08);
    --shadow-md: 0 4px 16px rgba(124, 58, 237, 0.15);
    --shadow-lg: 0 12px 40px rgba(124, 58, 237, 0.2);
    --shadow-xl: 0 20px 60px rgba(124, 58, 237, 0.3);

    --radius-sm: 8px;
    --radius-md: 16px;
    --radius-lg: 24px;
    --radius-xl: 32px;
    --radius-full: 9999px;

    --font: 'Poppins', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);

    --navbar-height: 72px;
    --container-max: 1200px;
    --container-pad: clamp(16px, 4vw, 32px);
}

/* ---- Reset & Base ---- */
*,
*::before,
*::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: var(--font);
    color: var(--gray-800);
    background: var(--white);
    line-height: 1.6;
    overflow-x: hidden;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

a {
    text-decoration: none;
    color: inherit;
}

ul {
    list-style: none;
}

button {
    font-family: var(--font);
    cursor: pointer;
    border: none;
    background: none;
}

/* ---- Utility ---- */
.container {
    width: 100%;
    max-width: var(--container-max);
    margin: 0 auto;
    padding: 0 var(--container-pad);
}

.gradient-text {
    background: var(--gradient-text);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.gradient-text-light {
    background: var(--gradient-light);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* ---- Buttons ---- */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 14px 28px;
    border-radius: var(--radius-full);
    font-size: 0.95rem;
    font-weight: 600;
    transition: var(--transition);
    cursor: pointer;
    white-space: nowrap;
}

.btn-primary {
    background: var(--gradient-main);
    color: var(--white);
    box-shadow: 0 4px 20px rgba(124, 58, 237, 0.4);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(124, 58, 237, 0.5);
}

.btn-primary:active {
    transform: translateY(0);
}

.btn-outline {
    background: transparent;
    color: var(--white);
    border: 2px solid rgba(255, 255, 255, 0.5);
    backdrop-filter: blur(6px);
}

.btn-outline:hover {
    background: rgba(255, 255, 255, 0.15);
    border-color: rgba(255, 255, 255, 0.8);
}

/* ---- Section Common ---- */
.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-badge {
    display: inline-block;
    background: rgba(124, 58, 237, 0.1);
    color: var(--purple);
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    padding: 6px 16px;
    border-radius: var(--radius-full);
    margin-bottom: 12px;
}

.section-badge--light {
    background: rgba(255, 255, 255, 0.15);
    color: rgba(255, 255, 255, 0.9);
}

.section-title {
    font-size: clamp(1.8rem, 4vw, 2.8rem);
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 16px;
    color: var(--gray-900);
}

.section-subtitle {
    font-size: 1.05rem;
    color: var(--gray-600);
    max-width: 580px;
    margin: 0 auto;
    line-height: 1.7;
}

.inline-link {
    color: var(--purple);
    font-weight: 600;
    text-decoration: underline;
    text-underline-offset: 3px;
}

/* ===========================================================
   NAVBAR
   =========================================================== */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    height: var(--navbar-height);
    transition: background var(--transition), box-shadow var(--transition);
}

.navbar.scrolled {
    background: rgba(255, 255, 255, 0.92);
    backdrop-filter: blur(16px);
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.08);
}

.nav-container {
    display: flex;
    align-items: center;
    height: 100%;
    max-width: var(--container-max);
    margin: 0 auto;
    padding: 0 var(--container-pad);
    gap: 32px;
}

.nav-logo {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 1.4rem;
    font-weight: 800;
    color: var(--white);
    transition: color var(--transition);
    flex-shrink: 0;
}

.nav-logo .gradient-text {
    background: linear-gradient(135deg, #fde68a, #fbbf24, #f59e0b);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.navbar.scrolled .nav-logo {
    color: var(--gray-900);
}

.logo-icon {
    font-size: 1.5rem;
}

.logo-accent {
    color: var(--pink);
}

.navbar.scrolled .logo-accent {
    color: var(--pink);
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-left: auto;
}

.nav-link {
    padding: 8px 14px;
    border-radius: var(--radius-full);
    font-size: 0.9rem;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.85);
    transition: var(--transition);
}

.nav-link:hover {
    color: var(--white);
    background: rgba(255, 255, 255, 0.1);
}

.navbar.scrolled .nav-link {
    color: var(--gray-700);
}

.navbar.scrolled .nav-link:hover {
    background: rgba(124, 58, 237, 0.08);
    color: var(--purple);
}

.nav-cta {
    background: var(--white);
    color: var(--purple);
    padding: 10px 22px;
    border-radius: var(--radius-full);
    font-size: 0.85rem;
    font-weight: 700;
    transition: var(--transition);
    box-shadow: var(--shadow-sm);
    flex-shrink: 0;
}

.nav-cta:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

.navbar.scrolled .nav-cta {
    background: var(--gradient-main);
    color: var(--white);
}

.hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    padding: 6px;
    margin-left: auto;
}

.hamburger span {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--white);
    border-radius: 2px;
    transition: var(--transition);
}

.navbar.scrolled .hamburger span {
    background: var(--gray-800);
}

.hamburger.open span:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
}

.hamburger.open span:nth-child(2) {
    opacity: 0;
}

.hamburger.open span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
}

/* ===========================================================
   HERO
   =========================================================== */
.hero {
    position: relative;
    min-height: 100vh;
    background: var(--gradient-hero);
    overflow: hidden;
    display: flex;
    align-items: center;
    padding-top: var(--navbar-height);
}

/* Animated background shapes */
.hero-bg-shapes {
    position: absolute;
    inset: 0;
    pointer-events: none;
}

.shape {
    position: absolute;
    border-radius: 50%;
    filter: blur(70px);
    opacity: 0.35;
    animation: float 8s ease-in-out infinite;
}

.shape-1 {
    width: 500px;
    height: 500px;
    background: #a855f7;
    top: -100px;
    left: -150px;
    animation-duration: 10s;
}

.shape-2 {
    width: 400px;
    height: 400px;
    background: var(--pink);
    top: 30%;
    right: -100px;
    animation-duration: 12s;
    animation-delay: -3s;
}

.shape-3 {
    width: 300px;
    height: 300px;
    background: #60a5fa;
    bottom: 0;
    left: 30%;
    animation-duration: 9s;
    animation-delay: -5s;
}

.shape-4 {
    width: 200px;
    height: 200px;
    background: #fbbf24;
    top: 20%;
    left: 45%;
    animation-duration: 11s;
    animation-delay: -2s;
}

@keyframes float {

    0%,
    100% {
        transform: translateY(0) scale(1);
    }

    50% {
        transform: translateY(-30px) scale(1.05);
    }
}

.hero-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    padding-top: 60px;
    padding-bottom: 100px;
    position: relative;
    z-index: 1;
}

.hero-content {
    color: var(--white);
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(8px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: var(--white);
    font-size: 0.82rem;
    font-weight: 600;
    padding: 8px 16px;
    border-radius: var(--radius-full);
    margin-bottom: 24px;
    animation: slideDown 0.6s ease forwards;
}

.hero-badge i {
    color: #fbbf24;
}

@keyframes slideDown {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.hero-title {
    font-size: clamp(2.2rem, 5vw, 3.8rem);
    font-weight: 900;
    line-height: 1.1;
    margin-bottom: 24px;
    color: var(--white);
    animation: fadeInUp 0.7s 0.1s ease both;
}

.hero-title .gradient-text {
    background: linear-gradient(135deg, #fde68a, #fbbf24, #f59e0b);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-subtitle {
    font-size: 1.05rem;
    color: rgba(255, 255, 255, 0.85);
    max-width: 480px;
    margin-bottom: 36px;
    line-height: 1.75;
    animation: fadeInUp 0.7s 0.2s ease both;
}

.hero-actions {
    display: flex;
    align-items: center;
    gap: 16px;
    flex-wrap: wrap;
    margin-bottom: 48px;
    animation: fadeInUp 0.7s 0.3s ease both;
}

.google-play-btn {
    background: none;
    box-shadow: none;
    padding: 0;
    border-radius: var(--radius-md);
    overflow: hidden;
    transition: transform var(--transition);
}

.google-play-btn:hover {
    transform: translateY(-3px) scale(1.02);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.3);
}

.play-badge-img {
    height: 56px;
    width: auto;
}

.hero-stats {
    display: flex;
    align-items: center;
    gap: 24px;
    animation: fadeInUp 0.7s 0.4s ease both;
}

.stat {
    text-align: center;
}

.stat-number {
    display: block;
    font-size: 1.4rem;
    font-weight: 800;
    color: var(--white);
    line-height: 1;
}

.star-sm {
    font-size: 0.75rem;
}

.stat-label {
    font-size: 0.75rem;
    color: rgba(255, 255, 255, 0.65);
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.stat-divider {
    width: 1px;
    height: 36px;
    background: rgba(255, 255, 255, 0.2);
}

/* Phone mockup */
.hero-phone-wrapper {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    animation: fadeInUp 0.9s 0.2s ease both;
}

.phone-glow {
    position: absolute;
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(251, 191, 36, 0.4) 0%, transparent 70%);
    border-radius: 50%;
    z-index: 0;
}

.phone-mockup {
    position: relative;
    z-index: 1;
}

.phone-frame {
    width: 260px;
    background: #1a1a2e;
    border-radius: 40px;
    padding: 14px 12px;
    box-shadow:
        0 0 0 2px #2d2d44,
        0 0 0 4px #3f3f5c,
        0 40px 80px rgba(0, 0, 0, 0.5),
        inset 0 0 20px rgba(255, 255, 255, 0.03);
    position: relative;
}

.phone-notch {
    width: 80px;
    height: 18px;
    background: #1a1a2e;
    border-radius: 0 0 14px 14px;
    margin: 0 auto 8px;
    position: relative;
    z-index: 2;
}

.phone-notch::before {
    content: '';
    position: absolute;
    width: 10px;
    height: 10px;
    background: #2d2d44;
    border-radius: 50%;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.phone-screen {
    border-radius: 28px;
    overflow: hidden;
    aspect-ratio: 9/19.5;
    background: linear-gradient(160deg, #1e0a3c 0%, #3b0764 50%, #7c1fa2 100%);
    position: relative;
}

.phone-screenshot {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.phone-home-indicator {
    width: 80px;
    height: 4px;
    background: rgba(255, 255, 255, 0.25);
    border-radius: var(--radius-full);
    margin: 10px auto 0;
}

/* Floating badges */
.float-badge {
    position: absolute;
    display: flex;
    align-items: center;
    gap: 8px;
    background: rgba(255, 255, 255, 0.92);
    backdrop-filter: blur(12px);
    border-radius: var(--radius-full);
    padding: 10px 16px;
    font-size: 0.78rem;
    font-weight: 600;
    color: var(--gray-800);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
    animation: floatBadge 3s ease-in-out infinite;
    white-space: nowrap;
}

.float-badge i {
    font-size: 1rem;
}

.float-badge-1 {
    top: 12%;
    left: -30%;
    animation-delay: 0s;
}

.float-badge-1 i {
    color: var(--purple);
}

.float-badge-2 {
    bottom: 28%;
    right: -35%;
    animation-delay: -1s;
}

.float-badge-2 i {
    color: var(--blue);
}

.float-badge-3 {
    bottom: 8%;
    left: -20%;
    animation-delay: -2s;
}

.float-badge-3 i {
    color: var(--pink);
}

@keyframes floatBadge {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-8px);
    }
}

/* Hero wave divider */
.hero-wave {
    position: absolute;
    bottom: -1px;
    left: 0;
    right: 0;
}

.hero-wave svg {
    display: block;
    width: 100%;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* ===========================================================
   FEATURES
   =========================================================== */
.features {
    background: var(--off-white);
    padding: 100px 0;
}

.features-grid {
    display: flex;
    flex-direction: column;
    gap: 80px;
}

.feature-card {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.feature-card--reverse {
    direction: rtl;
}

.feature-card--reverse>* {
    direction: ltr;
}

.feature-visual {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
}

.feature-visual::before {
    content: '';
    position: absolute;
    width: 90%;
    height: 90%;
    border-radius: var(--radius-xl);
    background: linear-gradient(135deg, rgba(124, 58, 237, 0.06), rgba(236, 72, 153, 0.06));
    z-index: 0;
}

.feature-img {
    width: 100%;
    max-width: 360px;
    position: relative;
    z-index: 1;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
    transition: transform var(--transition);
}

.feature-img:hover {
    transform: scale(1.03);
}

.feature-icon {
    width: 56px;
    height: 56px;
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.4rem;
    margin-bottom: 20px;
}

.feature-icon--purple {
    background: rgba(124, 58, 237, 0.12);
    color: var(--purple);
}

.feature-icon--pink {
    background: rgba(236, 72, 153, 0.12);
    color: var(--pink);
}

.feature-icon--blue {
    background: rgba(59, 130, 246, 0.12);
    color: var(--blue);
}

.feature-icon--green {
    background: rgba(16, 185, 129, 0.12);
    color: var(--green);
}

.feature-icon--orange {
    background: rgba(245, 158, 11, 0.12);
    color: var(--orange);
}

.feature-icon--teal {
    background: rgba(20, 184, 166, 0.12);
    color: var(--teal);
}

.feature-title {
    font-size: 1.6rem;
    font-weight: 800;
    color: var(--gray-900);
    margin-bottom: 12px;
    line-height: 1.25;
}

.feature-desc {
    color: var(--gray-600);
    line-height: 1.8;
    margin-bottom: 20px;
    font-size: 0.97rem;
}

.feature-list {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.feature-list li {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--gray-700);
}

.feature-list li i {
    color: var(--green);
    font-size: 0.8rem;
}

/* ===========================================================
   SOCIAL PROOF STRIP
   =========================================================== */
.social-proof {
    background: var(--white);
    padding: 40px 0;
    border-top: 1px solid var(--gray-100);
    border-bottom: 1px solid var(--gray-100);
}

.proof-strip {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 24px;
    flex-wrap: wrap;
}

.proof-item {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--gray-700);
}

.proof-icon {
    color: var(--purple);
    font-size: 1rem;
}

.proof-dot {
    width: 5px;
    height: 5px;
    border-radius: 50%;
    background: var(--gray-300);
}

/* ===========================================================
   FAQ
   =========================================================== */
.faq {
    background: var(--white);
    padding: 100px 0;
}

.faq-container {
    max-width: 780px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.faq-item {
    background: var(--white);
    border: 2px solid var(--gray-100);
    border-radius: var(--radius-lg);
    overflow: hidden;
    transition: border-color var(--transition), box-shadow var(--transition);
}

.faq-item:hover {
    border-color: var(--purple-light);
}

.faq-item.active {
    border-color: var(--purple);
    box-shadow: 0 4px 20px rgba(124, 58, 237, 0.12);
}

.faq-question {
    width: 100%;
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 22px 24px;
    text-align: left;
    background: none;
    cursor: pointer;
    transition: background var(--transition);
}

.faq-question:hover {
    background: rgba(124, 58, 237, 0.03);
}

.faq-num {
    font-size: 0.7rem;
    font-weight: 800;
    color: var(--purple-light);
    letter-spacing: 0.08em;
    flex-shrink: 0;
    min-width: 24px;
}

.faq-item.active .faq-num {
    color: var(--purple);
}

.faq-q-text {
    flex: 1;
    font-size: 1rem;
    font-weight: 600;
    color: var(--gray-800);
    line-height: 1.4;
}

.faq-icon {
    flex-shrink: 0;
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: var(--gray-100);
    color: var(--gray-600);
    font-size: 0.75rem;
    transition: all var(--transition);
}

.faq-item.active .faq-icon {
    background: var(--purple);
    color: var(--white);
    transform: rotate(180deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.45s cubic-bezier(0.4, 0, 0.2, 1);
}

.faq-item.active .faq-answer {
    max-height: 300px;
}

.faq-answer-inner {
    padding: 0 24px 24px 64px;
    border-top: 1px solid var(--gray-100);
    padding-top: 20px;
}

.faq-answer-inner p {
    color: var(--gray-600);
    line-height: 1.8;
    font-size: 0.95rem;
}

/* ===========================================================
   CONTACT
   =========================================================== */
.contact {
    position: relative;
    background: linear-gradient(135deg, #1e0a3c 0%, #3b0764 50%, #4c1d95 100%);
    padding: 100px 0;
    overflow: hidden;
    color: var(--white);
}

.contact-bg-shapes {
    position: absolute;
    inset: 0;
    pointer-events: none;
    overflow: hidden;
}

.c-shape {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    opacity: 0.2;
}

.c-shape-1 {
    width: 450px;
    height: 450px;
    background: var(--pink);
    top: -100px;
    right: -100px;
}

.c-shape-2 {
    width: 350px;
    height: 350px;
    background: var(--blue);
    bottom: -80px;
    left: -80px;
}

.contact-container {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: start;
}

.contact-title {
    color: var(--white);
}

.contact-intro {
    color: rgba(255, 255, 255, 0.75);
    line-height: 1.8;
    font-size: 0.97rem;
    margin-top: 16px;
    margin-bottom: 36px;
}

.contact-cards {
    display: flex;
    flex-direction: column;
    gap: 16px;
    margin-bottom: 40px;
}

.contact-card {
    display: flex;
    align-items: center;
    gap: 16px;
    background: rgba(255, 255, 255, 0.07);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: var(--radius-md);
    padding: 16px 20px;
    transition: background var(--transition);
}

.contact-card:hover {
    background: rgba(255, 255, 255, 0.12);
}

.contact-card-icon {
    width: 44px;
    height: 44px;
    border-radius: var(--radius-sm);
    background: rgba(255, 255, 255, 0.12);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
    flex-shrink: 0;
    color: var(--pink-light);
}

.contact-card-label {
    display: block;
    font-size: 0.72rem;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: rgba(255, 255, 255, 0.5);
    font-weight: 600;
    margin-bottom: 2px;
}

.contact-card-value {
    display: block;
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--white);
}

.contact-phone-preview {
    display: flex;
    justify-content: center;
}

.contact-phone-img {
    max-width: 220px;
    filter: drop-shadow(0 20px 40px rgba(0, 0, 0, 0.4));
}

/* Contact Form */
.contact-form-wrapper {
    background: var(--white);
    border-radius: var(--radius-xl);
    padding: 40px;
    box-shadow: var(--shadow-xl);
}

.form-title {
    font-size: 1.4rem;
    font-weight: 800;
    color: var(--gray-900);
    margin-bottom: 28px;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 6px;
    margin-bottom: 20px;
    position: relative;
}

.form-group label {
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--gray-700);
}

.required {
    color: var(--pink);
}

.form-group input,
.form-group textarea,
.form-group select {
    width: 100%;
    padding: 12px 16px;
    border: 2px solid var(--gray-200);
    border-radius: var(--radius-md);
    font-family: var(--font);
    font-size: 0.9rem;
    color: var(--gray-800);
    background: var(--white);
    transition: border-color var(--transition), box-shadow var(--transition);
    outline: none;
    -webkit-appearance: none;
    appearance: none;
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
    border-color: var(--purple);
    box-shadow: 0 0 0 3px rgba(124, 58, 237, 0.12);
}

.form-group input.error,
.form-group textarea.error {
    border-color: #ef4444;
}

.form-group textarea {
    resize: vertical;
    min-height: 130px;
}

.char-count {
    font-size: 0.75rem;
    color: var(--gray-400);
    text-align: right;
    margin-top: -14px;
}

.field-error {
    font-size: 0.78rem;
    color: #ef4444;
    font-weight: 500;
    min-height: 16px;
}

.btn-submit {
    width: 100%;
    justify-content: center;
    padding: 15px;
    font-size: 1rem;
    margin-top: 8px;
}

.form-success {
    display: flex;
    align-items: center;
    gap: 12px;
    background: rgba(16, 185, 129, 0.1);
    border: 2px solid rgba(16, 185, 129, 0.3);
    border-radius: var(--radius-md);
    padding: 16px 20px;
    margin-top: 16px;
    color: var(--green);
}

.form-success i {
    font-size: 1.4rem;
    flex-shrink: 0;
}

.form-success p {
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--gray-700);
}

/* ===========================================================
   FOOTER
   =========================================================== */
.footer {
    background: var(--gray-900);
    color: rgba(255, 255, 255, 0.7);
    padding: 60px 0 0;
}

.footer-container {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 60px;
    padding-bottom: 48px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.footer-logo {
    margin-bottom: 12px;
}

.footer-logo .nav-logo {
    color: var(--white);
}

.footer-tagline {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.5);
    margin-bottom: 20px;
}

.footer-badge {
    height: 44px;
    width: auto;
}

.footer-links {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
}

.footer-col h4 {
    font-size: 0.85rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--white);
    margin-bottom: 16px;
}

.footer-col ul {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.footer-col li a {
    font-size: 0.88rem;
    color: rgba(255, 255, 255, 0.55);
    transition: color var(--transition);
}

.footer-col li a:hover {
    color: var(--purple-light);
}

.social-links {
    display: flex;
    gap: 12px;
}

.social-link {
    width: 38px;
    height: 38px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: var(--radius-sm);
    background: rgba(255, 255, 255, 0.07);
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.9rem;
    transition: all var(--transition);
}

.social-link:hover {
    background: var(--gradient-main);
    color: var(--white);
    transform: translateY(-3px);
}

.footer-bottom {
    padding: 20px 0;
    text-align: center;
}

.footer-bottom p {
    font-size: 0.82rem;
    color: rgba(255, 255, 255, 0.35);
}

.footer-heart {
    color: var(--pink);
}

/* ===========================================================
   BACK TO TOP
   =========================================================== */
.back-to-top {
    position: fixed;
    bottom: 28px;
    right: 28px;
    width: 46px;
    height: 46px;
    border-radius: 50%;
    background: var(--gradient-main);
    color: var(--white);
    font-size: 0.9rem;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 16px rgba(124, 58, 237, 0.4);
    opacity: 0;
    pointer-events: none;
    transition: opacity var(--transition), transform var(--transition);
    z-index: 999;
}

.back-to-top.visible {
    opacity: 1;
    pointer-events: all;
}

.back-to-top:hover {
    transform: translateY(-4px);
}

/* ===========================================================
   ANIMATIONS (AOS-like fade in)
   =========================================================== */
[data-aos] {
    opacity: 0;
    transform: translateY(24px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

[data-aos].aos-animate {
    opacity: 1;
    transform: translateY(0);
}

[data-aos][data-aos-delay="100"] {
    transition-delay: 0.1s;
}

[data-aos][data-aos-delay="200"] {
    transition-delay: 0.2s;
}

[data-aos][data-aos-delay="300"] {
    transition-delay: 0.3s;
}

[data-aos][data-aos-delay="400"] {
    transition-delay: 0.4s;
}

[data-aos][data-aos-delay="500"] {
    transition-delay: 0.5s;
}

[data-aos="fade-right"] {
    transform: translateX(-24px);
}

[data-aos="fade-right"].aos-animate {
    transform: translateX(0);
}

[data-aos="fade-left"] {
    transform: translateX(24px);
}

[data-aos="fade-left"].aos-animate {
    transform: translateX(0);
}

/* ===========================================================
   RESPONSIVE — TABLET (≤ 900px)
   =========================================================== */
@media (max-width: 900px) {
    .hero-container {
        grid-template-columns: 1fr;
        text-align: center;
        padding-top: 40px;
        padding-bottom: 80px;
        gap: 40px;
    }

    .hero-content {
        order: 1;
    }

    .hero-phone-wrapper {
        order: 2;
    }

    .hero-subtitle {
        margin: 0 auto 36px;
    }

    .hero-actions {
        justify-content: center;
    }

    .hero-stats {
        justify-content: center;
    }

    .hero-badge {
        justify-content: center;
    }

    .float-badge-1 {
        left: -10%;
        top: 5%;
    }

    .float-badge-2 {
        right: -10%;
        bottom: 30%;
    }

    .float-badge-3 {
        left: -5%;
        bottom: 5%;
    }

    .feature-card,
    .feature-card--reverse {
        grid-template-columns: 1fr;
        direction: ltr;
        gap: 32px;
    }

    .feature-img {
        max-width: 300px;
        margin: 0 auto;
    }

    .contact-container {
        grid-template-columns: 1fr;
        gap: 48px;
    }

    .contact-phone-preview {
        display: none;
    }

    .footer-container {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .footer-links {
        grid-template-columns: repeat(3, 1fr);
    }

    .nav-links {
        display: none;
    }

    .nav-cta {
        display: none;
    }

    .hamburger {
        display: flex;
    }

    .nav-links.open {
        display: flex;
        flex-direction: column;
        position: absolute;
        top: var(--navbar-height);
        left: 0;
        right: 0;
        background: rgba(30, 10, 60, 0.97);
        backdrop-filter: blur(16px);
        padding: 20px var(--container-pad);
        gap: 4px;
        box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
    }

    .nav-links.open .nav-link {
        color: rgba(255, 255, 255, 0.9);
    }

    .nav-links.open .nav-link:hover {
        background: rgba(255, 255, 255, 0.1);
        color: var(--white);
    }
}

/* ===========================================================
   RESPONSIVE — MOBILE (≤ 560px)
   =========================================================== */
@media (max-width: 560px) {
    .phone-frame {
        width: 210px;
    }

    .float-badge {
        font-size: 0.7rem;
        padding: 8px 12px;
    }

    .float-badge-1 {
        left: -5%;
    }

    .float-badge-2 {
        right: -5%;
    }

    .float-badge-3 {
        left: 0;
    }

    .contact-form-wrapper {
        padding: 28px 20px;
    }

    .form-row {
        grid-template-columns: 1fr;
    }

    .proof-dot {
        display: none;
    }

    .footer-links {
        grid-template-columns: 1fr 1fr;
    }

    .btn {
        padding: 12px 20px;
        font-size: 0.88rem;
    }
}

/* ===========================================================
   SECTION DIVIDER
   =========================================================== */
.sc-divider {
    border: none;
    border-top: 1px solid var(--gray-100);
    margin: 0;
}

/* ===========================================================
   QUICK FEATURES (4-column icon grid)
   =========================================================== */
.quick-features {
    background: var(--off-white);
    padding: 100px 0;
}

.qf-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}

.qf-box {
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: 32px 24px;
    text-align: center;
    border: 1px solid var(--gray-100);
    transition: box-shadow var(--transition), transform var(--transition);
}

.qf-box:hover {
    box-shadow: var(--shadow-lg);
    transform: translateY(-4px);
}

.qf-ico-wrap {
    position: relative;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
}

.qf-icon {
    width: 64px;
    height: 64px;
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    position: relative;
    z-index: 1;
}

.qf-shape {
    position: absolute;
    inset: -6px;
    border-radius: 50%;
    opacity: 0.15;
    z-index: 0;
}

.qf-icon--purple {
    background: rgba(124, 58, 237, 0.12);
    color: var(--purple);
}

.qf-icon--purple~.qf-shape {
    background: var(--purple);
}

.qf-icon--pink {
    background: rgba(236, 72, 153, 0.12);
    color: var(--pink);
}

.qf-icon--pink~.qf-shape {
    background: var(--pink);
}

.qf-icon--blue {
    background: rgba(59, 130, 246, 0.12);
    color: var(--blue);
}

.qf-icon--blue~.qf-shape {
    background: var(--blue);
}

.qf-icon--teal {
    background: rgba(20, 184, 166, 0.12);
    color: var(--teal);
}

.qf-icon--teal~.qf-shape {
    background: var(--teal);
}

.qf-title {
    font-size: 1.05rem;
    font-weight: 700;
    color: var(--gray-900);
    margin-bottom: 10px;
}

.qf-desc {
    font-size: 0.88rem;
    color: var(--gray-600);
    line-height: 1.7;
    margin: 0;
}

/* ===========================================================
   PRICING CARDS
   =========================================================== */
.pricing-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 28px;
    align-items: stretch;
}

.plan-card {
    position: relative;
    display: flex;
    flex-direction: column;
    gap: 18px;
    background: var(--white);
    border: 1px solid var(--gray-200);
    border-radius: 22px;
    padding: 28px;
    box-shadow: var(--shadow-md);
    transition: transform var(--transition), box-shadow var(--transition), border-color var(--transition);
}

.plan-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-lg);
    border-color: rgba(124, 58, 237, 0.35);
}

.plan-card--featured {
    border-color: rgba(236, 72, 153, 0.45);
    box-shadow: 0 16px 36px rgba(236, 72, 153, 0.22);
}

.plan-ribbon {
    position: absolute;
    top: 14px;
    right: 14px;
    background: linear-gradient(135deg, var(--pink), #f97316);
    color: var(--white);
    font-size: 0.72rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    padding: 6px 10px;
    border-radius: var(--radius-full);
}

.plan-pill {
    display: inline-flex;
    align-items: center;
    width: fit-content;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: var(--purple);
    background: rgba(124, 58, 237, 0.12);
    border-radius: var(--radius-full);
    padding: 6px 12px;
    margin-bottom: 10px;
}

.plan-pill--pro {
    color: var(--pink);
    background: rgba(236, 72, 153, 0.14);
}

.plan-title {
    font-size: 1.6rem;
    line-height: 1.2;
    color: var(--gray-900);
    margin-bottom: 8px;
}

.plan-desc {
    font-size: 0.94rem;
    color: var(--gray-600);
    line-height: 1.7;
}

.plan-price-row {
    display: flex;
    align-items: baseline;
    justify-content: space-between;
    gap: 12px;
    border-top: 1px solid var(--gray-100);
    border-bottom: 1px solid var(--gray-100);
    padding: 14px 0;
}

.plan-price {
    font-size: 1.05rem;
    font-weight: 700;
    color: var(--gray-900);
}

.plan-price-note {
    font-size: 0.82rem;
    color: var(--gray-400);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.08em;
}

.plan-features {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-top: 2px;
    margin-bottom: 6px;
}

.plan-features li {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    color: var(--gray-700);
    font-size: 0.92rem;
    line-height: 1.5;
}

.plan-features li i {
    color: var(--green);
    margin-top: 3px;
    font-size: 0.78rem;
}

.plan-cta {
    width: 100%;
    justify-content: center;
    margin-top: auto;
}

/* ===========================================================
   ALTERNATING CONTENT BLOCKS
   =========================================================== */
.content-block {
    padding: 100px 0;
    background: var(--white);
}

.content-block--alt {
    background: var(--off-white);
}

.cb-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 72px;
    align-items: center;
}

.cb-row--reverse {
    direction: rtl;
}

.cb-row--reverse>* {
    direction: ltr;
}

.cb-img-wrapper {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
}

.cb-img-wrapper::before {
    content: '';
    position: absolute;
    width: 85%;
    height: 85%;
    border-radius: var(--radius-xl);
    background: linear-gradient(135deg, rgba(124, 58, 237, 0.06), rgba(236, 72, 153, 0.06));
}

.cb-img {
    width: 100%;
    max-width: 380px;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
    position: relative;
    z-index: 1;
    transition: transform var(--transition);
}

.cb-img:hover {
    transform: scale(1.02);
}

.cb-title {
    font-size: clamp(1.5rem, 3vw, 2.2rem);
    font-weight: 800;
    color: var(--gray-900);
    line-height: 1.2;
    margin-bottom: 16px;
    margin-top: 12px;
}

.cb-body {
    font-size: 0.97rem;
    color: var(--gray-600);
    line-height: 1.8;
    margin-bottom: 24px;
}

.cb-checklist {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.cb-checklist li {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.92rem;
    font-weight: 500;
    color: var(--gray-700);
}

.cb-checklist li i {
    color: var(--green);
    font-size: 0.8rem;
    flex-shrink: 0;
}

.cb-checklist--dark li {
    color: var(--gray-700);
}

/* ===========================================================
   STATS STRIP
   =========================================================== */
.stats-strip {
    background: var(--gradient-main);
    padding: 64px 0;
}

.stats-inner {
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 60px;
    align-items: center;
}

.stats-left h3 {
    font-size: clamp(1.2rem, 2.5vw, 1.6rem);
    font-weight: 700;
    color: var(--white);
    line-height: 1.4;
    max-width: 460px;
}

.stats-grid {
    display: flex;
    gap: 48px;
}

.stat-block {
    text-align: center;
}

.stat-num {
    font-size: clamp(1.8rem, 3.5vw, 2.6rem);
    font-weight: 900;
    color: var(--white);
    line-height: 1;
    margin-bottom: 6px;
}

.stat-lbl {
    font-size: 0.82rem;
    color: rgba(255, 255, 255, 0.65);
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    margin: 0;
}

.stat-star {
    font-size: 0.85rem;
    color: #fbbf24;
}

/* ===========================================================
   FEATURE SHOWCASE
   =========================================================== */
.features-showcase {
    background: var(--off-white);
    padding: 100px 0;
}

.showcase-cards-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
    margin-bottom: 24px;
}

.showcase-card {
    border-radius: var(--radius-xl);
    padding: 40px 36px 0;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    gap: 0;
    min-height: 320px;
    position: relative;
}

.showcase-card--purple {
    background: linear-gradient(135deg, #f5f0ff 0%, #ede9fe 100%);
    border: 1px solid rgba(124, 58, 237, 0.1);
}

.showcase-card--pink {
    background: linear-gradient(135deg, #fff0f6 0%, #fce7f3 100%);
    border: 1px solid rgba(236, 72, 153, 0.1);
}

.showcase-card-text {
    flex: 1;
}

.showcase-card-text h3 {
    font-size: 1.3rem;
    font-weight: 800;
    color: var(--gray-900);
    margin-bottom: 10px;
    line-height: 1.3;
}

.showcase-card-text p {
    font-size: 0.92rem;
    color: var(--gray-600);
    line-height: 1.75;
    margin-bottom: 24px;
}

.showcase-card-img {
    display: flex;
    justify-content: center;
    margin-top: auto;
}

.showcase-card-img img {
    max-height: 180px;
    width: auto;
    object-fit: contain;
    border-radius: var(--radius-md) var(--radius-md) 0 0;
}

.showcase-wide {
    border-radius: var(--radius-xl);
    background: var(--white);
    border: 1px solid var(--gray-100);
    box-shadow: var(--shadow-sm);
    overflow: hidden;
}

.showcase-wide-inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 48px;
    align-items: center;
    padding: 48px 52px;
}

.showcase-wide-text h3 {
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--gray-900);
    margin-bottom: 14px;
    line-height: 1.25;
}

.showcase-wide-text p {
    font-size: 0.95rem;
    color: var(--gray-600);
    line-height: 1.8;
    margin-bottom: 24px;
}

.showcase-wide-img-col {
    display: flex;
    justify-content: center;
    align-items: center;
}

.showcase-wide-img {
    max-width: 320px;
    width: 100%;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-md);
}

/* ===========================================================
   TESTIMONIALS
   =========================================================== */
.testimonials {
    background: var(--white);
    padding: 100px 0;
}

.testi-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
}

.testi-card {
    background: var(--white);
    border: 2px solid var(--gray-100);
    border-radius: var(--radius-lg);
    padding: 36px 32px;
    transition: box-shadow var(--transition), border-color var(--transition), transform var(--transition);
}

.testi-card:hover {
    border-color: var(--purple-light);
    box-shadow: var(--shadow-lg);
    transform: translateY(-4px);
}

.testi-quote-icon {
    font-size: 2rem;
    color: var(--purple-light);
    margin-bottom: 16px;
    line-height: 1;
}

.testi-heading {
    font-size: 1.05rem;
    font-weight: 700;
    color: var(--gray-900);
    margin-bottom: 12px;
}

.testi-body {
    font-size: 0.92rem;
    color: var(--gray-600);
    line-height: 1.8;
    margin-bottom: 24px;
}

.testi-author {
    display: flex;
    align-items: center;
    gap: 14px;
}

.testi-avatar {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: var(--gradient-main);
    color: var(--white);
    font-size: 0.78rem;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    letter-spacing: 0.03em;
}

.testi-avatar--pink {
    background: linear-gradient(135deg, var(--pink), #fb7185);
}

.testi-avatar--blue {
    background: linear-gradient(135deg, var(--blue), #60a5fa);
}

.testi-avatar--green {
    background: linear-gradient(135deg, var(--green), #34d399);
}

.testi-author-info strong {
    display: block;
    font-size: 0.9rem;
    color: var(--gray-900);
    line-height: 1.3;
}

.testi-author-info span {
    font-size: 0.78rem;
    color: var(--gray-400);
    font-weight: 500;
}

/* ===========================================================
   FAQ MORE CTA
   =========================================================== */
.faq-more-cta {
    margin-top: 48px;
}

.faq-more-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    background: rgba(124, 58, 237, 0.05);
    border: 2px solid rgba(124, 58, 237, 0.12);
    border-radius: var(--radius-lg);
    padding: 28px 36px;
}

.faq-more-text h6 {
    font-size: 1rem;
    font-weight: 700;
    color: var(--gray-900);
    margin-bottom: 4px;
}

.faq-more-text p {
    font-size: 0.88rem;
    color: var(--gray-500);
    margin: 0;
}

/* ===========================================================
   DOWNLOAD CTA BANNER
   =========================================================== */
.download-banner {
    position: relative;
    background: var(--gradient-hero);
    padding: 100px 0;
    overflow: hidden;
}

.dlbanner-bg-shapes {
    position: absolute;
    inset: 0;
    pointer-events: none;
}

.dl-shape {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    opacity: 0.25;
}

.dl-shape-1 {
    width: 500px;
    height: 500px;
    background: var(--pink);
    top: -140px;
    right: -100px;
}

.dl-shape-2 {
    width: 360px;
    height: 360px;
    background: #60a5fa;
    bottom: -100px;
    left: -80px;
}

.dlbanner-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    position: relative;
    z-index: 1;
}

.dlbanner-title {
    font-size: clamp(1.8rem, 3.5vw, 2.6rem);
    font-weight: 900;
    color: var(--white);
    line-height: 1.15;
    margin-bottom: 16px;
}

.dlbanner-desc {
    font-size: 1.02rem;
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.8;
    margin-bottom: 24px;
    max-width: 440px;
}

.dlbanner-rating {
    display: flex;
    align-items: center;
    gap: 6px;
    margin-bottom: 28px;
    color: #fbbf24;
    font-size: 1rem;
}

.dlbanner-rating small {
    color: rgba(255, 255, 255, 0.65);
    font-size: 0.82rem;
    margin-left: 6px;
}

.dlbanner-store-btn {
    display: inline-flex;
}

.dlbanner-img-col {
    display: flex;
    justify-content: center;
    align-items: flex-end;
}

.dlbanner-phone {
    max-height: 380px;
    width: auto;
    filter: drop-shadow(0 24px 48px rgba(0, 0, 0, 0.35));
    animation: floatPhone 5s ease-in-out infinite;
}

@keyframes floatPhone {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-14px);
    }
}

/* ===========================================================
   FOOTER V2 (4-column: brand + 3 link cols + social)
   =========================================================== */
.footer-container-v2 {
    display: grid;
    grid-template-columns: 220px 1fr auto;
    gap: 60px;
    padding-bottom: 48px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.footer-links-v2 {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
}

.footer-connect h4 {
    font-size: 0.85rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--white);
    margin-bottom: 16px;
}

/* ===========================================================
   RESPONSIVE ADDITIONS
   =========================================================== */
@media (max-width: 1100px) {
    .qf-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .pricing-grid {
        grid-template-columns: 1fr;
    }

    .footer-container-v2 {
        grid-template-columns: 1fr 1fr;
    }

    .footer-connect {
        grid-column: 1 / -1;
    }
}

@media (max-width: 900px) {
    .qf-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .cb-row,
    .cb-row--reverse {
        grid-template-columns: 1fr;
        direction: ltr;
        gap: 36px;
    }

    .cb-img {
        max-width: 300px;
        margin: 0 auto;
    }

    .stats-inner {
        grid-template-columns: 1fr;
        gap: 32px;
        text-align: center;
    }

    .stats-left h3 {
        max-width: 100%;
    }

    .stats-grid {
        justify-content: center;
    }

    .showcase-cards-row {
        grid-template-columns: 1fr;
    }

    .showcase-wide-inner {
        grid-template-columns: 1fr;
        padding: 36px 32px;
        gap: 32px;
    }

    .testi-grid {
        grid-template-columns: 1fr;
    }

    .faq-more-inner {
        flex-direction: column;
        align-items: flex-start;
        gap: 20px;
    }

    .dlbanner-row {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .dlbanner-desc {
        max-width: 100%;
        margin-left: auto;
        margin-right: auto;
    }

    .dlbanner-rating {
        justify-content: center;
    }

    .dlbanner-img-col {
        display: none;
    }

    .footer-container-v2 {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .footer-links-v2 {
        grid-template-columns: repeat(3, 1fr);
    }

    .footer-connect {
        grid-column: auto;
    }
}

@media (max-width: 560px) {
    .qf-grid {
        grid-template-columns: 1fr;
    }

    .plan-card {
        padding: 22px 18px;
        border-radius: 18px;
    }

    .plan-title {
        font-size: 1.4rem;
    }

    .plan-ribbon {
        top: 12px;
        right: 12px;
        font-size: 0.68rem;
        padding: 5px 9px;
    }

    .showcase-wide-inner {
        padding: 28px 20px;
    }

    .footer-links-v2 {
        grid-template-columns: 1fr 1fr;
    }
}