:root {
    --primary: #9e7fff;
    --primary-hover: #7c58cc;
    --secondary: #ec4899;
    --dark-bg: #19102d;
    --card-bg: #2d2445;
    --text-main: #f8fafc;
    --text-muted: #94a3b8;
    --gradient: linear-gradient(135deg, #9e7fff 0%, #7c58cc 100%);
    --font-heading: 'Outfit', sans-serif;
    --font-body: 'Inter', sans-serif;
    --container-width: 1200px;
    --radius: 16px;
    --shadow: 0 10px 40px -10px rgba(0, 0, 0, 0.5);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-body);
    background-color: var(--dark-bg);
    color: var(--text-main);
    line-height: 1.6;
    overflow-x: hidden;
}

a {
    text-decoration: none;
    color: inherit;
    transition: 0.3s;
}

ul {
    list-style: none;
}

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

/* Utilities */
.container {
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 20px;
}


.btn {
    display: inline-block;
    padding: 12px 32px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    transition: transform 0.2s, box-shadow 0.2s;
}

.btn-primary {
    background: var(--gradient);
    color: white;
    box-shadow: 0 4px 15px rgba(139, 92, 246, 0.4);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(139, 92, 246, 0.6);
}

.section-padding {
    padding: 80px 0;
}

.text-center {
    text-align: center;
}

.text-muted {
    color: var(--text-muted);
}

.mb-2 {
    margin-bottom: 2rem;
}

.mb-4 {
    margin-bottom: 4rem;
}

.mt-4 {
    margin-top: 40px;
}

/* Section Title Style with Underline */
.section-title {
    font-family: var(--font-heading);
    font-size: 2.5rem;
    margin-bottom: 20px;
    position: relative;
    padding-bottom: 15px;
    display: inline-block;
    /* Ensures underline matches text width context or centers properly */
}

.section-title::after {
    content: '';
    position: absolute;
    left: 50%;
    bottom: 0;
    transform: translateX(-50%);
    width: 60px;
    height: 5px;
    background: var(--primary);
    border-radius: 10px;
}

/* Navbar */
.navbar {
    padding: 20px 0;
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
    background: transparent;
    transition: background 0.3s, padding 0.3s;
}

.navbar.scrolled {
    background: rgba(25, 16, 45, 1);
    /* Dark background on scroll */
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    padding: 15px 0;
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-weight: 700;
    background: var(--gradient);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.nav-links {
    display: flex;
    gap: 30px;
}

.nav-links a {
    color: var(--text-muted);
    font-weight: 500;
}

.nav-links a:hover {
    color: white;
}

/* Hero Section */
.hero {
    padding-top: 160px;
    padding-bottom: 80px;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: -20%;
    left: -10%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(139, 92, 246, 0.3) 0%, rgba(0, 0, 0, 0) 70%);
    z-index: -1;
}

.hero::after {
    content: '';
    position: absolute;
    bottom: -10%;
    right: -10%;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(236, 72, 153, 0.2) 0%, rgba(0, 0, 0, 0) 70%);
    z-index: -1;
}

.hero-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: center;
    gap: 50px;
}

.hero-content h1 {
    font-family: var(--font-heading);
    font-size: 4rem;
    line-height: 1.1;
    margin-bottom: 20px;
}

.hero-content h1 span {
    background: var(--gradient);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.hero-content p {
    font-size: 1.25rem;
    color: var(--text-muted);
    margin-bottom: 30px;
    max-width: 500px;
}

.hero-image {
    position: relative;
    display: flex;
    justify-content: center;
}

.hero-phones-container {
    position: relative;
    width: 100%;
    max-width: 550px;
    height: auto;
    min-height: 500px;
    margin: 0 auto;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 20px;
    /* Space between phones */
    /* Decorative glowing backdrop */
    background: radial-gradient(circle at center, rgba(139, 92, 246, 0.15) 0%, rgba(0, 0, 0, 0) 70%);
}

.hero-phone {
    width: 45%;
    max-width: 240px;
    border-radius: 20px;
    border: 8px solid var(--dark-bg);
    /* Darker border matching typical bezel */
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
    overflow: hidden;
    position: relative;
    /* relative positioning for flex layout */
    z-index: 2;
    background: black;
    transition: transform 0.4s ease;
}

.hero-phone img {
    width: 100%;
    height: auto;
    display: block;
}

.phone-1 {
    /* Left phone - slightly higher */
    margin-top: -40px;
    filter: none;
    /* Remove previous blur/brightness filters */
    opacity: 1;
    transform: none;
    /* Remove rotation */
}

.phone-2 {
    /* Right phone - slightly lower */
    margin-top: 40px;
    transform: none;
    /* Remove rotation */
}

/* Hover effect: Subtle lift */
.hero-phones-container:hover .phone-1 {
    transform: translateY(-10px);
}

.hero-phones-container:hover .phone-2 {
    transform: translateY(-10px);
}

/* Floating Elements Animation in Hero */
.floater {
    position: absolute;
    background: var(--card-bg);
    padding: 15px;
    border-radius: 12px;
    box-shadow: var(--shadow);
    display: flex;
    align-items: center;
    gap: 10px;
    animation: float 6s ease-in-out infinite;
    z-index: 3;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.floater img {
    width: 40px;
    height: 40px;
    border-radius: 50%;
}

.floater-1 {
    top: 30%;
    left: -10%;
    right: auto;
    /* Clear previous right */
    animation-delay: 0s;
}

.floater-2 {
    bottom: 30%;
    right: -10%;
    left: auto;
    /* Clear previous left */
    animation-delay: 2s;
}

@keyframes float {

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

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



/* Features */
.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.feature-card {
    background: var(--card-bg);
    padding: 30px;
    border-radius: var(--radius);
    border: 1px solid rgba(255, 255, 255, 0.05);
    transition: 0.3s;
}

.feature-card:hover {
    background: rgba(255, 255, 255, 0.05);
    transform: translateY(-5px);
}

.feature-icon {
    width: 60px;
    height: 60px;
    background: rgba(139, 92, 246, 0.1);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: var(--primary);
    margin-bottom: 20px;
}

.feature-card h3 {
    font-family: var(--font-heading);
    font-size: 1.25rem;
    margin-bottom: 10px;
}

.feature-card p {
    color: var(--text-muted);
}

/* About / Why Choose */
.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.about-image {
    position: relative;
}

.about-image img {
    border-radius: var(--radius);
    box-shadow: var(--shadow);
}

.about-list {
    margin-top: 30px;
}

.about-list li {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 20px;
    font-size: 1.1rem;
}

.check-icon {
    color: var(--secondary);
    font-size: 1.2rem;
}

/* Testimonials (Optional) */
/* Testimonials */
.testimonial-card {
    background: var(--card-bg);
    /* Keeping dark theme but matching layout */
    padding: 30px;
    border-radius: var(--radius);
    text-align: left;
    /* Changed from center to left */
    border: 1px solid rgba(255, 255, 255, 0.05);
    /* Subtle border */
    display: flex;
    flex-direction: column;
    gap: 15px;
    transition: transform 0.3s;
}

.testimonial-card:hover {
    transform: translateY(-5px);
    background: #253248;
    /* Slightly lighter on hover */
}

/* Header: Avatar + Name */
.testi-header {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 5px;
}

.profile-circle {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    color: white;
    font-size: 1.1rem;
    font-family: var(--font-heading);
}

.user-name {
    font-weight: 700;
    font-size: 1.1rem;
    color: white;
    font-family: var(--font-heading);
}

.user-role {
    font-size: 0.85rem;
    color: var(--text-muted);
}

/* Stars */
.stars {
    color: #fbbf24;
    display: flex;
    gap: 2px;
    font-size: 1.1rem;
}

/* Text */
.testi-text {
    color: #cbd5e1;
    /* Lighter than muted for readability */
    font-size: 0.95rem;
    line-height: 1.6;
}

/* FAQ */
.faq-item {
    background: var(--card-bg);
    border-radius: 12px;
    margin-bottom: 15px;
    overflow: hidden;
    transition: background 0.3s ease, transform 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.faq-item:hover {
    background: rgba(255, 255, 255, 0.05);
    transform: translateX(5px);
}

details.faq-item[open] {
    background: rgba(158, 127, 255, 0.08);
    border-color: rgba(158, 127, 255, 0.2);
}

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

.faq-answer {
    padding: 0 20px 20px;
    color: var(--text-muted);
    font-size: 0.95rem;
    display: none;
    /* Simple toggle needed or use details/summary */
}

/* Use details/summary for pure HTML toggle */
details.faq-item summary {
    list-style: none;
    padding: 20px;
    font-weight: 600;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

details.faq-item summary::-webkit-details-marker {
    display: none;
}

details.faq-item[open] summary {
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

details.faq-item p {
    padding: 20px;
    color: var(--text-muted);
    margin: 0;
}

details.faq-item summary::after {
    content: '+';
    font-size: 1.5rem;
    color: var(--primary);
    transition: transform 0.3s ease;
}

details.faq-item[open] summary::after {
    content: '-';
    transform: rotate(180deg);
}

/* Footer */
/* CTA Section Refinement */
.cta-section {
    padding: 100px 0;
    overflow: hidden;
    position: relative;
}

.cta-card {
    background: linear-gradient(135deg, rgba(158, 127, 255, 0.15) 0%, rgba(15, 23, 42, 0.4) 100%);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(158, 127, 255, 0.3);
    border-radius: 40px;
    padding: 80px 40px;
    position: relative;
    overflow: hidden;
    box-shadow: 0 40px 100px -20px rgba(0, 0, 0, 0.5);
}

.cta-glow {
    position: absolute;
    width: 300px;
    height: 300px;
    background: var(--primary);
    filter: blur(120px);
    opacity: 0.3;
    z-index: 0;
    pointer-events: none;
}

.cta-glow-1 {
    top: -150px;
    left: -150px;
}

.cta-glow-2 {
    bottom: -150px;
    right: -150px;
}

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

@media (max-width: 768px) {
    .cta-card {
        padding: 50px 20px;
        border-radius: 30px;
    }
}

/* Business Section Premium Styles */
.biz-card {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(158, 127, 255, 0.1);
    border-radius: 32px;
    padding: 60px;
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 60px;
    align-items: center;
    position: relative;
    overflow: hidden;
}

.biz-feature {
    display: flex;
    gap: 24px;
    margin-bottom: 32px;
    transition: transform 0.3s;
}

.biz-feature:hover {
    transform: translateX(10px);
}

.biz-icon {
    width: 56px;
    height: 56px;
    border-radius: 16px;
    background: linear-gradient(135deg, rgba(158, 127, 255, 0.2) 0%, rgba(158, 127, 255, 0.05) 100%);
    border: 1px solid rgba(158, 127, 255, 0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.4rem;
    color: var(--primary);
    flex-shrink: 0;
}

.biz-phone-stack {
    position: relative;
    height: 500px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.biz-phone {
    width: 220px;
    aspect-ratio: 9/19.5;
    border-radius: 36px;
    border: 6px solid #1a1a1a;
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.8);
    position: absolute;
    transition: transform 0.5s ease;
    overflow: hidden;
    background: #000;
}

.biz-phone-1 {
    transform: translateX(-50px) translateY(20px) rotate(-8deg);
    z-index: 1;
}

.biz-phone-2 {
    transform: translateX(50px) translateY(-20px) rotate(8deg);
    z-index: 2;
}

@media (max-width: 1024px) {
    .biz-card {
        grid-template-columns: 1fr;
        padding: 40px 20px;
        text-align: center;
    }

    .biz-feature {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }

    /* .biz-phone-stack {
        height: 400px;
    } */
}

footer {
    background: #0b0f19;
    padding: 60px 0 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1.5fr;
    gap: 40px;
    margin-bottom: 40px;
}

.footer-brand p {
    color: var(--text-muted);
    margin-top: 15px;
    max-width: 300px;
}

.footer-col h4 {
    color: white;
    margin-bottom: 20px;
    font-family: var(--font-heading);
}

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

.footer-col a {
    color: var(--text-muted);
}

.footer-col a:hover {
    color: var(--primary);
}

.copyright {
    text-align: center;
    color: #475569;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

/* ========================================
   RESPONSIVE DESIGN
   ======================================== */

/* Mobile Menu Toggle Button */
.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 5px;
}

.mobile-menu-toggle span {
    width: 25px;
    height: 3px;
    background: white;
    border-radius: 3px;
    transition: all 0.3s ease;
}

.mobile-menu-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 7px);
}

.mobile-menu-toggle.active span:nth-child(2) {
    opacity: 0;
}

.mobile-menu-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -7px);
}

.nav-actions {
    display: flex;
    align-items: center;
    gap: 20px;
}

/* ========================================
   LARGE DESKTOP: 1200px - 1399px
   ======================================== */
@media (max-width: 1399px) and (min-width: 1200px) {
    .container {
        max-width: 1140px;
    }

    .hero-content h1 {
        font-size: 3.5rem;
    }

    .section-title {
        font-size: 2.3rem;
    }

    .cta-title {
        font-size: 3rem;
    }
}

/* ========================================
   DESKTOP: 992px - 1199px
   ======================================== */
@media (max-width: 1199px) and (min-width: 992px) {
    .container {
        max-width: 960px;
    }

    .hero-content h1 {
        font-size: 3.2rem;
    }

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

    .section-title {
        font-size: 2.2rem;
    }

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

    .biz-card {
        gap: 30px;
    }

    .cta-title {
        font-size: 2.8rem;
    }
}

/* ========================================
   TABLET: 768px - 991px
   ======================================== */
@media (max-width: 991px) and (min-width: 768px) {
    .container {
        max-width: 720px;
    }

    .hero-grid {
        grid-template-columns: 1fr;
        gap: 40px;
        text-align: center;
    }

    .hero-content h1 {
        font-size: 3rem;
    }

    .hero-content p {
        font-size: 1.1rem;
        margin: 0 auto 30px;
    }

    .hero-phones-container {
        max-width: 450px;
    }

    .section-title {
        font-size: 2rem;
    }

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

    .biz-card {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .biz-phone-stack {
        justify-content: center;
    }

    .about-grid {
        grid-template-columns: 1fr;
        gap: 10px;
        text-align: center;
    }

    .about-title {
        font-size: 2.2rem;
    }

    .about-title br {
        display: none;
    }

    .cta-title {
        font-size: 2.2rem !important;
    }

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

/* ========================================
   MOBILE: Max 767px
   ======================================== */
@media (max-width: 767px) {
    .mb-4 {
        margin-bottom: 15px;
    }

    .container {
        padding: 0 20px;
    }

    /* Navigation */
    .nav-container {
        position: relative;
    }

    .navbar {
        padding: 15px 0;
    }

    .nav-logo {
        height: 45px;
    }

    .nav-links {
        position: fixed;
        top: 80px;
        left: -100%;
        width: 100%;
        background: var(--darker-bg);
        flex-direction: column;
        padding: 20px;
        gap: 0px;
        transition: left 0.3s ease;
        z-index: 999;
        border-top: 1px solid rgba(255, 255, 255, 0.1);
        z-index: 1;
        background-color: rgba(25, 16, 45, 1);
    }

    .nav-links.active {
        left: 0;
    }

    .nav-links a {
        font-size: 1.1rem;
        padding: 10px 0;
        border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    }

    .nav-links a:last-child {
        border-bottom: 0;
    }

    .nav-actions .btn {
        display: none;
    }

    .mobile-menu-toggle {
        display: flex;
    }

    /* Hero Section */
    .hero {
        padding-top: 120px;
        padding-bottom: 30px;
    }

    .hero-grid {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 30px;
    }

    .hero-content h1 {
        font-size: 2.2rem;
        line-height: 1.2;
    }

    .hero-content p {
        font-size: 1rem;
        margin: 0 auto 25px;
    }

    .hero-phones-container {
        min-height: 350px;
        max-width: 400px;
    }

    .hero-phone {
        max-width: 180px;
        border: 5px solid rgba(255, 255, 255, 0.1);
        border-radius: 20px;
    }

    .floater {
        display: none;
    }

    /* Store Buttons */
    .store-btns {
        flex-direction: column;
        gap: 12px;
        width: auto;
        display: inline-flex !important;
    }

    .store-btn {
        width: auto;
        display: inline-flex !important;
        justify-content: center;
        padding: 12px 20px;
    }

    .store-btn i {
        font-size: 1.2rem !important;
    }

    .store-btn-text small {
        font-size: 0.6rem;
    }

    .store-btn-text span {
        font-size: 0.9rem;
    }

    /* Trust Section */
    .trust-section {
        justify-content: center;
        margin-top: 30px;
    }

    /* Section Padding */
    .section-padding {
        padding: 40px 0;
    }

    /* Section Titles */
    .section-title {
        font-size: 1.5rem;
    }

    .section-title br {
        display: none;
    }

    /* Features Grid */
    .features-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .feature-card {
        padding: 15px;
    }

    .feature-icon {
        width: 50px;
        height: 50px;
        font-size: 1.5rem;
    }

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

    .feature-card p {
        font-size: 0.9rem;
    }

    /* Business Section */
    .section-header-centered {
        margin-bottom: 15px !important;
    }

    .biz-card {
        grid-template-columns: 1fr;
        padding: 30px 20px;
        gap: 30px;
    }

    .biz-feature {
        flex-direction: column;
        text-align: center;
        gap: 15px;
    }

    .biz-icon {
        width: 50px;
        height: 50px;
        font-size: 1.5rem;
    }

    .biz-feature-content h3 {
        font-size: 1.1rem;
    }

    .biz-phone-stack {
        gap: 15px;
        height: 300px;
    }

    .biz-phone {
        max-width: 120px;
        border-radius: 20px;
    }

    /* About Section */
    .about-grid {
        grid-template-columns: 1fr;
        gap: 30px;
        text-align: center;
    }

    .about-title {
        font-size: 1.5rem !important;
    }

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

    .about-phones {
        height: 300px !important;
        min-height: 300px !important;
        max-width: 300px !important;
    }

    .about-list {
        text-align: left;
    }

    .about-list li {
        font-size: 0.9rem;
    }

    /* FAQ Section */
    .faq-item {
        padding: 0px;
    }

    .faq-question {
        font-size: 1rem;
    }

    .faq-answer {
        font-size: 0.9rem;
    }

    /* CTA Section */
    .cta-section {
        padding: 0 0 40px 0;
    }

    .cta-card {
        padding: 30px 15px;
    }

    .cta-title {
        font-size: 1.5rem !important;
    }

    .cta-text {
        font-size: 0.9rem !important;
    }

    /* Footer */
    footer {
        padding: 40px 0 15px;
    }

    .footer-grid {
        grid-template-columns: 1fr;
        gap: 30px;
        text-align: center;
    }

    footer .logo {
        text-align: center;
        display: flex;
        justify-content: center;
    }

    .footer-brand {
        margin-bottom: 20px;
    }

    .footer-brand p {
        max-width: 100%;
    }

    .footer-socials {
        justify-content: center;
    }

    .footer-col h4 {
        font-size: 1rem;
    }

    .footer-col ul li a {
        font-size: 0.9rem;
    }

    .copyright {
        font-size: 0.85rem;
        padding-top: 15px;
    }

    /* Badge */
    .badge {
        font-size: 0.7rem;
        padding: 5px 15px;
    }

    /* Buttons */
    .btn-large {
        padding: 12px 30px !important;
        font-size: 0.95rem;
    }

    .btn-scale {
        padding: 12px 25px !important;
    }
}

/* ========================================
   COMPONENT STYLES
   ======================================== */

.nav-logo {
    height: 55px;
}

/* --- STORE BUTTONS --- */
.store-btns {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
}

.store-btn {
    padding: 12px 28px;
    border-radius: 100px;
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 700;
    transition: transform 0.3s;
    color: white;
    box-shadow: none !important;
    /* Default for primary */
}

.store-btn i {
    font-size: 1.4rem !important;
}

.store-btn:hover {
    transform: scale(1.05);
}

.store-btn-white {
    background: #ffffff !important;
    color: #000000 !important;
}

.store-btn-white * {
    color: #000000 !important;
}

.store-btn-text {
    text-align: left;
    line-height: 1.1;
}

.store-btn-text small {
    display: block;
    font-size: 0.65rem;
    text-transform: uppercase;
}

.store-btn-text span {
    font-size: 1rem;
}

/* --- TRUST SECTION --- */
.trust-section {
    margin-top: 40px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.user-avatars {
    display: flex;
}

.user-avatar {
    width: 30px;
    height: 30px;
    border-radius: 50%;
    border: 2px solid var(--dark-bg);
    object-fit: cover;
}

.user-avatar:not(:first-child) {
    margin-left: -10px;
}

.trust-text {
    color: var(--text-muted);
    font-size: 0.9rem;
}

/* --- OVERLAYS & BADGES --- */
.badge {
    display: inline-block;
    padding: 6px 20px;
    border-radius: 100px;
    background: rgba(158, 127, 255, 0.1);
    border: 1px solid var(--primary);
    color: var(--primary);
    font-size: 0.8rem;
    font-weight: 700;
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.section-header-centered {
    text-align: center;
    margin-bottom: 60px;
    display: flex;
    flex-direction: column;
    align-items: center;
}

/* --- BUSINESS SECTION REFINEMENTS --- */
.biz-glow-bg {
    background: radial-gradient(circle at top right, rgba(158, 127, 255, 0.05) 0%, transparent 70%);
}

.biz-card-glow {
    position: absolute;
    width: 400px;
    height: 400px;
    background: var(--primary);
    filter: blur(150px);
    opacity: 0.05;
    top: -100px;
    right: -100px;
    pointer-events: none;
}

.biz-feature-content h3 {
    color: white;
    font-size: 1.3rem;
    margin-bottom: 8px;
}

.biz-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    object-position: top;
}

/* --- FAQ & ABOUT --- */
.faq-wrap {
    max-width: 800px;
    margin: 0 auto;
}

.about-glow-bg {
    background: linear-gradient(to bottom, var(--dark-bg), #0e081a);
}

.btn-large {
    padding: 15px 40px !important;
    border-radius: 100px;
}

.floater-icon {
    font-size: 1.5rem;
}

.floater-icon-secondary {
    color: var(--secondary);
}

.floater-icon-success {
    color: #10b981;
}

.floater-title {
    font-weight: 700;
    font-size: 0.9rem;
}

.floater-content p {
    font-size: 0.7rem;
    color: var(--text-muted);
    margin: 0;
}

.about-phones {
    width: 100%;
    height: 400px;
    transform: scale(0.9);
}

.border-thin {
    border-width: 4px !important;
}

.about-title {
    font-family: var(--font-heading);
    font-size: 2.5rem;
    margin-bottom: 20px;
}

.about-text {
    color: var(--text-muted);
    margin-bottom: 20px;
}

.cta-title {
    font-size: 3rem;
    margin-bottom: 20px;
}

.cta-text {
    color: var(--text-muted);
    max-width: 600px;
    margin: 0 auto 40px;
    font-size: 1.2rem;
    line-height: 1.6;
}

.store-btns-center {
    justify-content: center;
    gap: 20px;
}

.btn-scale {
    padding: 15px 35px !important;
    transform: scale(1.05);
}

.btn-scale:hover {
    transform: scale(1.1) !important;
}

.ml-2 {
    margin-left: 8px;
}

.footer-contact-wrap {
    margin-top: 25px;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.footer-contact-item {
    display: flex;
    align-items: center;
    gap: 12px;
    color: var(--text-muted);
}

.footer-contact-icon {
    font-size: 1.5rem;
    color: var(--primary);
}

.bg-purple {
    background: #8b5cf6;
}

.bg-pink {
    background: #ec4899;
}

.bg-green {
    background: #10b981;
}

.footer-contact-text {
    font-size: 1.1rem;
}

.footer-socials {
    display: flex;
    gap: 12px;
    margin-top: 20px;
}

.social-icon {
    width: 38px;
    height: 38px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(158, 127, 255, 0.1);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-muted);
    font-size: 1.1rem;
    transition: all 0.3s ease;
}

.social-icon:hover {
    background: var(--primary);
    color: white !important;
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(158, 127, 255, 0.3);
}

@media (min-width: 576px) and (max-width: 767px) {
    .store-btns {
        flex-direction: row;
    }

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

    .about-title br {
        display: none;
    }

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

@media (min-width: 768px) and (max-width: 991px) {
    .store-btns {
        justify-content: center;
    }

    .trust-section {
        justify-content: center;
    }

    .floater-1 {
        left: 0;
    }

    .floater-2 {
        right: 0;
    }

    .floater-content p {
        text-align: left;
    }

    .hero {
        padding-bottom: 50px;
    }

    .section-padding {
        padding: 50px 0;
    }

    .mb-4,
    .section-header-centered {
        margin-bottom: 20px;
    }

    .biz-phone {
        width: 165px;
        border-radius: 15px;
    }

    .cta-section {
        padding: 50px 0;
    }

    .cta-card {
        padding: 50px;
    }
}

@media (max-width:991px) {
    section {
        scroll-margin-top: 40px;
    }
}