/* ==========================================================================
   PAYOUT BUSINESS — MAIN STYLESHEET (MULTI-PAGE MERCHANT EDITION)
   Brand: PAYOUT BUSINESS
   Aesthetic: Modern Fintech | Clean | Corporate | Reliable
   ========================================================================== */

/* --------------------------------------------------------------------------
   1. ROOT VARIABLES & DESIGN TOKENS
   -------------------------------------------------------------------------- */
:root {
    /* Brand Colors */
    --primary: #3D2B98;
    --primary-light: #533DBE;
    --primary-dark: #2A1C70;
    --primary-subtle: #F0EEFF;
    
    --secondary: #16A9C8;
    --secondary-light: #2FC2E0;
    --secondary-dark: #0E849E;
    --secondary-subtle: #E8F8FB;

    /* Neutrals & Dark Tones */
    --dark: #0E0B1F;
    --dark-surface: #181335;
    --dark-border: rgba(255, 255, 255, 0.12);

    --white: #FFFFFF;
    --light-grey: #F8F9FD;
    --light-grey-alt: #F1F3F9;
    --border: #E5E9F2;
    --border-light: #EEF1F8;

    /* Typography Colors */
    --text-heading: #101828;
    --text-body: #475467;
    --text-muted: #667085;
    --text-inverse: #FFFFFF;
    --text-inverse-muted: #D0D5DD;

    /* Spacing & Radii */
    --radius-sm: 6px;
    --radius-md: 10px;
    --radius-lg: 16px;
    --radius-xl: 24px;
    --radius-full: 9999px;

    /* Shadows */
    --shadow-xs: 0 1px 2px rgba(16, 24, 40, 0.05);
    --shadow-sm: 0 2px 8px rgba(16, 24, 40, 0.06);
    --shadow-md: 0 8px 24px -4px rgba(16, 24, 40, 0.08), 0 2px 6px -2px rgba(16, 24, 40, 0.03);
    --shadow-lg: 0 16px 36px -6px rgba(61, 43, 152, 0.12), 0 6px 16px -4px rgba(16, 24, 40, 0.04);
    --shadow-hover: 0 20px 40px -8px rgba(61, 43, 152, 0.18), 0 8px 20px -6px rgba(22, 169, 200, 0.12);

    /* Fonts */
    --font-main: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;
    --font-mono: 'JetBrains Mono', 'Courier New', monospace;

    /* Transitions */
    --transition-fast: 0.2s ease;
    --transition-normal: 0.3s cubic-bezier(0.16, 1, 0.3, 1);
    --transition-slow: 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}

/* --------------------------------------------------------------------------
   2. RESET & BASE ELEMENTS
   -------------------------------------------------------------------------- */
*, *::before, *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    font-size: 16px;
    scroll-behavior: smooth;
    scroll-padding-top: 80px;
    -webkit-text-size-adjust: 100%;
}

body {
    font-family: var(--font-main);
    font-size: 1rem;
    line-height: 1.65;
    color: var(--text-body);
    background-color: var(--white);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    overflow-x: hidden;
}

img, svg {
    display: block;
    max-width: 100%;
    height: auto;
}

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

ul {
    list-style: none;
}

button {
    font-family: inherit;
    border: none;
    outline: none;
    background: none;
    cursor: pointer;
}

/* Container */
.container {
    width: 100%;
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
    padding-left: 1.5rem;
    padding-right: 1.5rem;
}

/* --------------------------------------------------------------------------
   3. TYPOGRAPHY & COMMON LABELS
   -------------------------------------------------------------------------- */
h1, h2, h3, h4, h5, h6 {
    color: var(--text-heading);
    font-weight: 700;
    line-height: 1.25;
    letter-spacing: -0.02em;
}

.section-label {
    display: inline-block;
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--secondary);
    margin-bottom: 0.875rem;
}

.section-heading {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--text-heading);
    margin-bottom: 1.25rem;
    line-height: 1.2;
}

.section-subtitle {
    font-size: 1.125rem;
    color: var(--text-muted);
    max-width: 680px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.6;
}

.section-header {
    margin-bottom: 3.5rem;
}

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

/* --------------------------------------------------------------------------
   4. BUTTONS
   -------------------------------------------------------------------------- */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 0.875rem 1.875rem;
    font-size: 0.9375rem;
    font-weight: 700;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    border-radius: var(--radius-sm);
    transition: all var(--transition-normal);
    text-decoration: none;
    cursor: pointer;
}

.btn-primary {
    background: var(--white);
    color: var(--primary);
    box-shadow: 0 4px 14px rgba(0, 0, 0, 0.12);
}

.btn-primary:hover {
    background: #F4F3FF;
    color: var(--primary-dark);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.2);
}

.btn-secondary {
    background: rgba(255, 255, 255, 0.12);
    color: var(--white);
    border: 1.5px solid rgba(255, 255, 255, 0.4);
    backdrop-filter: blur(4px);
}

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

.btn-solid-purple {
    background: var(--primary);
    color: var(--white);
    box-shadow: var(--shadow-sm);
}

.btn-solid-purple:hover {
    background: var(--primary-light);
    color: var(--white);
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(61, 43, 152, 0.25);
}

.btn-outline-purple {
    background: transparent;
    color: var(--primary);
    border: 1.5px solid var(--primary);
}

.btn-outline-purple:hover {
    background: var(--primary-subtle);
    color: var(--primary-dark);
}

.btn-cta-primary {
    background: var(--white);
    color: var(--primary);
    font-weight: 800;
    padding: 1rem 2.25rem;
    border-radius: var(--radius-sm);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
}

.btn-cta-primary:hover {
    background: #F4F3FF;
    transform: translateY(-3px);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.25);
}

/* --------------------------------------------------------------------------
   5. HEADER & GLOBAL NAVIGATION
   -------------------------------------------------------------------------- */
.header {
    position: sticky;
    top: 0;
    left: 0;
    width: 100%;
    background-color: var(--white);
    border-bottom: 1px solid var(--border);
    z-index: 1000;
    transition: background-color var(--transition-fast), box-shadow var(--transition-fast);
}

.header.scrolled {
    box-shadow: var(--shadow-sm);
}

.navbar {
    width: 100%;
}

.navbar-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1.5rem;
    height: 76px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.navbar-logo {
    display: flex;
    align-items: center;
}

.brand-logo {
    height: 34px;
    width: auto;
    object-fit: contain;
}

/* Desktop Menu */
.nav-menu {
    display: flex;
    align-items: center;
    gap: 2rem;
}

.nav-link {
    font-size: 0.9375rem;
    font-weight: 700;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    color: var(--text-heading);
    position: relative;
    padding: 0.5rem 0;
    transition: color var(--transition-fast);
}

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

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--primary);
    transition: width var(--transition-normal);
}

.nav-link:hover::after,
.nav-link.active::after {
    width: 100%;
}

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

.nav-btn-cta {
    display: inline-block;
    padding: 0.625rem 1.375rem;
    background: var(--primary);
    color: var(--white);
    font-size: 0.8125rem;
    font-weight: 800;
    letter-spacing: 0.06em;
    border-radius: var(--radius-sm);
    text-transform: uppercase;
    transition: all var(--transition-normal);
}

.nav-btn-cta:hover {
    background: var(--primary-light);
    color: var(--white);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(61, 43, 152, 0.25);
}

/* Hamburger Button */
.hamburger {
    display: none;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 44px;
    height: 44px;
    gap: 5px;
    padding: 8px;
    border-radius: var(--radius-sm);
    cursor: pointer;
    transition: background-color var(--transition-fast);
}

.hamburger:hover {
    background-color: var(--light-grey);
}

.bar {
    width: 22px;
    height: 2.5px;
    background-color: var(--text-heading);
    border-radius: 2px;
    transition: transform var(--transition-normal), opacity var(--transition-normal);
}

/* Hamburger Active / Close Icon Transformation */
.hamburger.active .bar:nth-child(1) {
    transform: translateY(7.5px) rotate(45deg);
}

.hamburger.active .bar:nth-child(2) {
    opacity: 0;
}

.hamburger.active .bar:nth-child(3) {
    transform: translateY(-7.5px) rotate(-45deg);
}

/* Mobile Dropdown Menu */
.mobile-menu {
    display: block;
    max-height: 0;
    overflow: hidden;
    background-color: var(--white);
    border-bottom: 1px solid transparent;
    transition: max-height 0.35s cubic-bezier(0.4, 0, 0.2, 1), border-color var(--transition-fast);
}

.mobile-menu.active {
    max-height: 450px;
    border-color: var(--border);
    box-shadow: var(--shadow-md);
}

.mobile-nav {
    display: flex;
    flex-direction: column;
    padding: 0.75rem 1.5rem 1.5rem;
}

.mobile-nav-link {
    display: block;
    padding: 0.875rem 0.5rem;
    font-size: 0.9375rem;
    font-weight: 700;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    color: var(--text-heading);
    border-bottom: 1px solid var(--border-light);
    transition: color var(--transition-fast), padding-left var(--transition-fast);
}

.mobile-nav-link:last-child {
    border-bottom: none;
}

.mobile-nav-link:hover,
.mobile-nav-link.active {
    color: var(--primary);
    padding-left: 0.75rem;
}

.mobile-nav-link.mobile-cta-link {
    color: var(--primary);
    font-weight: 800;
}

/* --------------------------------------------------------------------------
   6. HERO SECTION
   -------------------------------------------------------------------------- */
.hero {
    position: relative;
    background: linear-gradient(135deg, #2D1E7B 0%, #3D2B98 45%, #198099 100%);
    color: var(--white);
    padding: 6.5rem 0 7.5rem;
    overflow: hidden;
}

.hero-page-header {
    padding: 5rem 0 5.5rem;
}

.hero-bg-overlay {
    position: absolute;
    inset: 0;
    background-image: 
        radial-gradient(circle at 15% 20%, rgba(22, 169, 200, 0.22) 0%, transparent 45%),
        radial-gradient(circle at 85% 80%, rgba(61, 43, 152, 0.35) 0%, transparent 50%),
        linear-gradient(rgba(14, 11, 31, 0.25), rgba(14, 11, 31, 0.35));
    pointer-events: none;
}

.hero-container {
    position: relative;
    z-index: 2;
}

.hero-content {
    max-width: 860px;
    margin: 0 auto;
    text-align: center;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.4rem 1rem;
    background: rgba(255, 255, 255, 0.12);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: var(--radius-full);
    backdrop-filter: blur(8px);
    margin-bottom: 1.75rem;
}

.badge-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background-color: var(--secondary-light);
    box-shadow: 0 0 10px var(--secondary-light);
}

.hero-label {
    font-size: 0.8125rem;
    font-weight: 700;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--white);
}

.hero-title {
    font-size: 3.75rem;
    font-weight: 800;
    line-height: 1.15;
    color: var(--white);
    margin-bottom: 1.5rem;
    letter-spacing: -0.03em;
}

.hero-description {
    font-size: 1.25rem;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.92);
    max-width: 720px;
    margin: 0 auto 2.5rem;
}

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

/* --------------------------------------------------------------------------
   7. TRUST SECTION (PAYMENT NETWORK STRIP)
   -------------------------------------------------------------------------- */
.trust-strip-section {
    background-color: var(--white);
    border-bottom: 1px solid var(--border);
    padding: 2rem 0;
}

.trust-wrapper {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 1.5rem;
}

.trust-label {
    font-size: 0.875rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: var(--text-muted);
}

.trust-badges {
    display: flex;
    align-items: center;
    gap: 2.5rem;
    flex-wrap: wrap;
}

.trust-badge-item {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1.25rem;
    background: var(--light-grey);
    border: 1px solid var(--border);
    border-radius: var(--radius-sm);
    font-size: 0.9375rem;
    font-weight: 800;
    color: var(--text-heading);
    letter-spacing: 0.02em;
}

/* --------------------------------------------------------------------------
   8. CORE FEATURES (6 CARDS GRID)
   -------------------------------------------------------------------------- */
.features-section {
    padding: 6.5rem 0;
    background-color: var(--light-grey);
    border-bottom: 1px solid var(--border-light);
}

.features-grid-6 {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.75rem;
}

.feature-card {
    background-color: var(--white);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 2.25rem 1.75rem;
    box-shadow: var(--shadow-xs);
    transition: transform var(--transition-normal), box-shadow var(--transition-normal), border-color var(--transition-normal);
    display: flex;
    flex-direction: column;
}

.feature-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-lg);
    border-color: rgba(61, 43, 152, 0.25);
}

.feature-icon-box {
    margin-bottom: 1.5rem;
}

.feature-icon-box img {
    width: 48px;
    height: 48px;
}

.feature-title {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--text-heading);
    margin-bottom: 0.75rem;
}

.feature-text {
    font-size: 0.9375rem;
    line-height: 1.6;
    color: var(--text-muted);
}

/* --------------------------------------------------------------------------
   9. APP SHOWCASE & SPLIT SECTIONS
   -------------------------------------------------------------------------- */
.showcase-section {
    padding: 6.5rem 0;
    background-color: var(--white);
}

.showcase-grid {
    display: grid;
    grid-template-columns: 1fr 1.1fr;
    gap: 4rem;
    align-items: center;
}

.showcase-visual {
    display: flex;
    justify-content: center;
}

.showcase-visual img {
    max-width: 380px;
}

.showcase-points {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    margin-top: 2rem;
}

.showcase-point-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
}

.point-icon-bubble {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: var(--primary-subtle);
    color: var(--primary);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 800;
    flex-shrink: 0;
}

.point-title {
    font-size: 1.125rem;
    font-weight: 700;
    color: var(--text-heading);
    margin-bottom: 0.25rem;
}

.point-desc {
    font-size: 0.9375rem;
    color: var(--text-muted);
    line-height: 1.6;
}

/* --------------------------------------------------------------------------
   10. TESTIMONIALS (PLACEHOLDER CARDS)
   -------------------------------------------------------------------------- */
.testimonials-section {
    padding: 6.5rem 0;
    background-color: var(--light-grey);
    border-top: 1px solid var(--border-light);
    border-bottom: 1px solid var(--border-light);
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.75rem;
}

.testimonial-card {
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 2rem 1.75rem;
    box-shadow: var(--shadow-xs);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    transition: transform var(--transition-normal), box-shadow var(--transition-normal);
}

.testimonial-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
}

.testimonial-quote {
    font-size: 1rem;
    line-height: 1.65;
    color: var(--text-body);
    margin-bottom: 1.5rem;
    font-style: italic;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 0.875rem;
}

.author-avatar {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: var(--primary);
    color: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 800;
    font-size: 0.9375rem;
}

.author-name {
    font-size: 1rem;
    font-weight: 700;
    color: var(--text-heading);
}

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

.demo-disclaimer-tag {
    display: inline-block;
    font-size: 0.75rem;
    font-weight: 700;
    color: var(--secondary-dark);
    background: var(--secondary-subtle);
    padding: 0.2rem 0.6rem;
    border-radius: var(--radius-sm);
    margin-top: 1rem;
}

/* --------------------------------------------------------------------------
   11. FEATURES PAGE DEEP-DIVE SECTIONS
   -------------------------------------------------------------------------- */
.feature-block-section {
    padding: 6.5rem 0;
    border-bottom: 1px solid var(--border);
}

.feature-block-section:nth-child(even) {
    background-color: var(--light-grey);
}

.feature-split-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.feature-split-grid.reversed {
    grid-template-columns: 1fr 1fr;
}

.feature-badge-num {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 0.8125rem;
    font-weight: 800;
    color: var(--primary);
    background: var(--primary-subtle);
    padding: 0.35rem 0.85rem;
    border-radius: var(--radius-full);
    margin-bottom: 1.25rem;
    letter-spacing: 0.05em;
}

.disclaimer-callout {
    background: #FFF9E6;
    border: 1px solid #FFE58F;
    border-radius: var(--radius-md);
    padding: 1rem 1.25rem;
    font-size: 0.875rem;
    color: #874D00;
    line-height: 1.5;
    margin: 1.5rem 0;
}

/* --------------------------------------------------------------------------
   12. SOUNDBOX PAGE STYLING
   -------------------------------------------------------------------------- */
.soundbox-hero {
    padding: 6rem 0 6.5rem;
    background: linear-gradient(135deg, #18113E 0%, #2D1E7B 50%, #106275 100%);
}

.soundbox-hero-grid {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 3.5rem;
    align-items: center;
}

.soundbox-hero-content {
    color: var(--white);
}

.soundbox-hero-content .hero-title {
    text-align: left;
}

.soundbox-hero-content .hero-description {
    text-align: left;
    margin-left: 0;
}

.soundbox-hero-content .hero-buttons {
    justify-content: flex-start;
}

.soundbox-pricing-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    max-width: 860px;
    margin: 0 auto;
}

.pricing-card {
    background: var(--white);
    border: 2px solid var(--border);
    border-radius: var(--radius-xl);
    padding: 2.5rem 2rem;
    box-shadow: var(--shadow-sm);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    transition: all var(--transition-normal);
    position: relative;
}

.pricing-card.featured {
    border-color: var(--primary);
    box-shadow: var(--shadow-lg);
}

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

.popular-badge {
    position: absolute;
    top: -14px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--primary);
    color: var(--white);
    font-size: 0.75rem;
    font-weight: 800;
    letter-spacing: 0.08em;
    padding: 0.35rem 1rem;
    border-radius: var(--radius-full);
}

.pricing-plan-name {
    font-size: 1.25rem;
    font-weight: 800;
    color: var(--text-heading);
    margin-bottom: 0.5rem;
    text-transform: uppercase;
}

.pricing-price-box {
    margin: 1.5rem 0;
}

.price-val {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--primary);
    line-height: 1;
}

.price-sub {
    font-size: 0.875rem;
    color: var(--text-muted);
    margin-top: 0.5rem;
}

.pricing-features-list {
    display: flex;
    flex-direction: column;
    gap: 0.875rem;
    margin-bottom: 2rem;
}

.pricing-features-list li {
    display: flex;
    align-items: center;
    gap: 0.625rem;
    font-size: 0.9375rem;
    color: var(--text-body);
}

.check-icon {
    color: #2ECC71;
    font-weight: 800;
}

/* --------------------------------------------------------------------------
   13. PRICING TABLE
   -------------------------------------------------------------------------- */
.pricing-table-container {
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-sm);
    overflow: hidden;
    margin-bottom: 2.5rem;
}

.table-responsive {
    width: 100%;
    overflow-x: auto;
}

.pricing-table {
    width: 100%;
    border-collapse: collapse;
    text-align: left;
}

.pricing-table th,
.pricing-table td {
    padding: 1.25rem 1.75rem;
    border-bottom: 1px solid var(--border);
}

.pricing-table th {
    background: var(--light-grey);
    font-size: 0.875rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: var(--text-heading);
}

.pricing-table td {
    font-size: 0.95rem;
    color: var(--text-body);
}

.pricing-table tr:last-child td {
    border-bottom: none;
}

.pricing-table tr:hover td {
    background-color: #FAFAFF;
}

.rate-badge {
    display: inline-block;
    padding: 0.3rem 0.75rem;
    border-radius: var(--radius-sm);
    background: var(--primary-subtle);
    color: var(--primary);
    font-weight: 700;
    font-size: 0.875rem;
}

/* --------------------------------------------------------------------------
   14. SUPPORT & FAQ ACCORDION
   -------------------------------------------------------------------------- */
.support-cards-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-bottom: 4.5rem;
}

.support-contact-card {
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 2.25rem 1.75rem;
    text-align: center;
    box-shadow: var(--shadow-xs);
    transition: transform var(--transition-normal), box-shadow var(--transition-normal);
}

.support-contact-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
}

.contact-card-icon {
    font-size: 2.25rem;
    margin-bottom: 1rem;
}

.contact-card-title {
    font-size: 1.125rem;
    font-weight: 700;
    color: var(--text-heading);
    margin-bottom: 0.5rem;
}

.contact-card-val {
    font-size: 1.0625rem;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 0.5rem;
}

.contact-card-timing {
    font-size: 0.8125rem;
    color: var(--text-muted);
}

/* FAQ Accordion Component */
.faq-accordion {
    max-width: 840px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.faq-item {
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: var(--radius-md);
    overflow: hidden;
    box-shadow: var(--shadow-xs);
    transition: border-color var(--transition-fast), box-shadow var(--transition-fast);
}

.faq-item.active {
    border-color: var(--primary);
    box-shadow: var(--shadow-sm);
}

.faq-question-btn {
    width: 100%;
    text-align: left;
    padding: 1.35rem 1.75rem;
    font-size: 1.0625rem;
    font-weight: 700;
    color: var(--text-heading);
    background: var(--white);
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    cursor: pointer;
    transition: color var(--transition-fast);
}

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

.faq-icon-toggle {
    width: 28px;
    height: 28px;
    border-radius: 50%;
    background: var(--light-grey);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--primary);
    flex-shrink: 0;
    transition: transform var(--transition-normal), background-color var(--transition-fast);
}

.faq-item.active .faq-icon-toggle {
    transform: rotate(45deg);
    background: var(--primary-subtle);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.35s cubic-bezier(0.4, 0, 0.2, 1);
    background: var(--white);
}

.faq-answer-inner {
    padding: 0 1.75rem 1.5rem;
    font-size: 0.95rem;
    line-height: 1.7;
    color: var(--text-body);
}

/* --------------------------------------------------------------------------
   15. LEGAL PAGES (POLICIES / REDRESSAL)
   -------------------------------------------------------------------------- */
.legal-page-container {
    padding: 5rem 0 6rem;
    background: var(--white);
}

.legal-content-card {
    max-width: 900px;
    margin: 0 auto;
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 3.5rem 3rem;
    box-shadow: var(--shadow-sm);
}

.legal-review-banner {
    background: #FFFBE6;
    border-left: 4px solid #FAAD14;
    padding: 0.875rem 1.25rem;
    border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
    font-size: 0.875rem;
    font-weight: 700;
    color: #D48806;
    margin-bottom: 2.5rem;
}

.legal-body h2 {
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--text-heading);
    margin-top: 2.25rem;
    margin-bottom: 1rem;
    padding-bottom: 0.5rem;
    border-bottom: 1px solid var(--border-light);
}

.legal-body p {
    font-size: 0.95rem;
    line-height: 1.75;
    color: var(--text-body);
    margin-bottom: 1.25rem;
}

.legal-body ul {
    list-style: disc;
    padding-left: 1.5rem;
    margin-bottom: 1.5rem;
}

.legal-body li {
    font-size: 0.95rem;
    line-height: 1.75;
    color: var(--text-body);
    margin-bottom: 0.5rem;
}

.officer-box {
    background: var(--light-grey);
    border: 1px solid var(--border);
    border-radius: var(--radius-md);
    padding: 1.75rem;
    margin: 1.5rem 0;
}

.officer-row {
    display: flex;
    align-items: center;
    padding: 0.5rem 0;
    border-bottom: 1px solid var(--border);
    font-size: 0.9375rem;
}

.officer-row:last-child {
    border-bottom: none;
}

.officer-label {
    width: 140px;
    font-weight: 700;
    color: var(--text-heading);
}

.officer-val {
    color: var(--primary);
    font-weight: 600;
}

/* --------------------------------------------------------------------------
   16. CTA SECTION
   -------------------------------------------------------------------------- */
.cta-section {
    position: relative;
    padding: 6.5rem 0;
    background: linear-gradient(135deg, #3D2B98 0%, #2A1D73 50%, #13778C 100%);
    color: var(--white);
    overflow: hidden;
}

.cta-backdrop {
    position: absolute;
    inset: 0;
    background-image: 
        radial-gradient(circle at 10% 30%, rgba(22, 169, 200, 0.25) 0%, transparent 40%),
        radial-gradient(circle at 90% 70%, rgba(61, 43, 152, 0.3) 0%, transparent 45%);
    pointer-events: none;
}

.cta-container {
    position: relative;
    z-index: 2;
}

.cta-card {
    max-width: 760px;
    margin: 0 auto;
    text-align: center;
}

.cta-label {
    color: var(--secondary-light);
    font-size: 0.8125rem;
}

.cta-heading {
    font-size: 3rem;
    font-weight: 800;
    color: var(--white);
    line-height: 1.18;
    margin-bottom: 1.25rem;
    letter-spacing: -0.02em;
}

.cta-text {
    font-size: 1.1875rem;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.92);
    margin-bottom: 2.5rem;
}

.cta-actions {
    display: flex;
    justify-content: center;
    gap: 1rem;
    flex-wrap: wrap;
}

/* --------------------------------------------------------------------------
   17. FOOTER (UPDATED 4-COLUMN WITH LEGAL LINKS)
   -------------------------------------------------------------------------- */
.footer {
    background-color: var(--dark);
    color: var(--text-inverse-muted);
    padding: 5rem 0 2.5rem;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1.2fr 1fr;
    gap: 2.5rem;
    margin-bottom: 3.5rem;
}

.footer-logo {
    margin-bottom: 1.25rem;
}

.footer-tagline {
    font-size: 0.9375rem;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.65);
    max-width: 320px;
}

.footer-title {
    font-size: 0.875rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--white);
    margin-bottom: 1.25rem;
}

.footer-nav {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.footer-nav a {
    font-size: 0.9375rem;
    color: rgba(255, 255, 255, 0.7);
    transition: color var(--transition-fast), padding-left var(--transition-fast);
}

.footer-nav a:hover {
    color: var(--secondary-light);
    padding-left: 0.25rem;
}

.footer-app-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem 1.25rem;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: var(--radius-sm);
    color: var(--white);
    font-size: 0.8125rem;
    font-weight: 700;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    transition: all var(--transition-normal);
}

.footer-app-btn:hover {
    background: var(--white);
    color: var(--primary);
    transform: translateY(-2px);
}

.footer-bottom {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    font-size: 0.875rem;
    color: rgba(255, 255, 255, 0.5);
    flex-wrap: wrap;
    gap: 1rem;
}

.footer-legal {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    flex-wrap: wrap;
}

.footer-legal a {
    color: rgba(255, 255, 255, 0.5);
    font-size: 0.875rem;
    transition: color var(--transition-fast);
}

.footer-legal a:hover {
    color: var(--white);
}

.legal-divider {
    color: rgba(255, 255, 255, 0.3);
}

/* --------------------------------------------------------------------------
   18. RESPONSIVE DESIGN BREAKPOINTS
   -------------------------------------------------------------------------- */

/* Laptop & Tablet Landscape (1024px – 1199px) */
@media (max-width: 1199px) {
    .features-grid-6 {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }

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

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

    .hero-title {
        font-size: 3.25rem;
    }
}

/* Tablet Portrait & Mobile (Below 768px) */
@media (max-width: 768px) {
    /* Header & Mobile Menu */
    .nav-menu {
        display: none;
    }

    .hamburger {
        display: flex;
    }

    .navbar-container {
        height: 68px;
    }

    /* Hero */
    .hero {
        padding: 4.5rem 0 5.5rem;
    }

    .hero-title {
        font-size: 2.25rem;
    }

    .hero-description {
        font-size: 1.0625rem;
        margin-bottom: 2rem;
    }

    .hero-buttons {
        flex-direction: column;
        width: 100%;
        gap: 0.875rem;
    }

    .hero-buttons .btn {
        width: 100%;
    }

    /* Grids to Single Column */
    .features-grid-6,
    .testimonials-grid,
    .showcase-grid,
    .feature-split-grid,
    .soundbox-hero-grid,
    .soundbox-pricing-grid,
    .support-cards-grid {
        grid-template-columns: 1fr;
        gap: 2.5rem;
    }

    .soundbox-hero-content .hero-title,
    .soundbox-hero-content .hero-description {
        text-align: center;
    }

    .soundbox-hero-content .hero-buttons {
        justify-content: center;
    }

    .section-heading {
        font-size: 1.875rem;
    }

    .cta-heading {
        font-size: 2rem;
    }

    .cta-actions .btn {
        width: 100%;
    }

    .legal-content-card {
        padding: 2.5rem 1.5rem;
    }

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

    .footer-bottom {
        flex-direction: column;
        align-items: flex-start;
        gap: 1rem;
    }
}

/* Small Mobile (Below 480px) */
@media (max-width: 480px) {
    .container {
        padding-left: 1.125rem;
        padding-right: 1.125rem;
    }

    .navbar-container {
        padding-left: 1.125rem;
        padding-right: 1.125rem;
    }

    .brand-logo {
        height: 28px;
    }

    .hero-title {
        font-size: 1.85rem;
    }

    .hero-description {
        font-size: 0.95rem;
    }

    .section-heading {
        font-size: 1.5rem;
    }

    .feature-card {
        padding: 1.75rem 1.25rem;
    }

    .pricing-card {
        padding: 2rem 1.5rem;
    }

    .legal-content-card {
        padding: 2rem 1.125rem;
    }

    .officer-row {
        flex-direction: column;
        align-items: flex-start;
        gap: 0.25rem;
    }

    .officer-label {
        width: auto;
    }
}

/* --------------------------------------------------------------------------
   19. ACCESSIBILITY: REDUCED MOTION
   -------------------------------------------------------------------------- */
@media (prefers-reduced-motion: reduce) {
    *, *::before, *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
        scroll-behavior: auto !important;
    }
}
