/* ----------------------------------------------------
   MacroMate Recorder — Apple macOS Theme (Bilingual)
   ---------------------------------------------------- */

:root {
    /* DEFAULT: Dark Mode System Variables */
    --color-bg-base: #000000;
    --color-bg-secondary: #161617;
    --color-text-primary: #f5f5f7;
    --color-text-secondary: #a1a1a6;
    --color-text-muted: #86868b;
    --color-primary: #007aff;        /* macOS System Blue */
    --color-primary-glow: rgba(0, 122, 255, 0.35);
    --color-success: #30d158;        /* macOS System Green */
    --color-danger: #ff453a;         /* macOS System Red */
    --color-warning: #ff9f0a;        /* macOS System Orange */
    
    /* Bezel/Mockup colors (remain metallic/dark) */
    --color-macbook-bezel: #1d1d1f;
    --color-macbook-base: #86868b;
    --color-macbook-base-glow: #e8e8ed;

    /* Glassmorphism Specs */
    --glass-bg: rgba(255, 255, 255, 0.05);
    --glass-bg-hover: rgba(255, 255, 255, 0.1);
    --glass-border: rgba(255, 255, 255, 0.12);
    --glass-border-focus: rgba(255, 255, 255, 0.25);
    --glass-blur: blur(20px) saturate(180%);
    --glass-shadow: 0 10px 40px -10px rgba(0, 0, 0, 0.5);
    --macos-shadow: 0 24px 64px -12px rgba(0, 0, 0, 0.65);
    
    /* Font styles */
    --font-sans: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
    
    /* Transitions */
    --transition-fast: 0.15s cubic-bezier(0.16, 1, 0.3, 1);
    --transition-normal: 0.35s cubic-bezier(0.16, 1, 0.3, 1);
    --transition-slow: 0.7s cubic-bezier(0.16, 1, 0.3, 1);
}

/* LIGHT MODE System Variables */
body.light-mode {
    --color-bg-base: #f5f5f7;        /* Apple Light Gray background */
    --color-bg-secondary: #ffffff;
    --color-text-primary: #1d1d1f;   /* Apple dark text */
    --color-text-secondary: #6e6e73;
    --color-text-muted: #86868b;
    --color-primary: #007aff;
    --color-primary-glow: rgba(0, 122, 255, 0.15);
    
    --glass-bg: rgba(255, 255, 255, 0.45);
    --glass-bg-hover: rgba(255, 255, 255, 0.6);
    --glass-border: rgba(0, 0, 0, 0.1);
    --glass-border-focus: rgba(0, 0, 0, 0.2);
    --glass-blur: blur(20px) saturate(190%);
    --glass-shadow: 0 10px 30px -10px rgba(0, 0, 0, 0.1);
    --macos-shadow: 0 20px 48px -8px rgba(0, 0, 0, 0.15);
}

/* ----------------- Bilingual Display Rules ----------------- */
body.lang-en .lang-id { display: none !important; }
body.lang-id .lang-en { display: none !important; }

/* ----------------- Reset & Base Styles ----------------- */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    scroll-behavior: smooth;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

body {
    background-color: var(--color-bg-base);
    color: var(--color-text-primary);
    font-family: var(--font-sans);
    overflow-x: hidden;
    line-height: 1.65;
    transition: background-color var(--transition-normal), color var(--transition-normal);
}

/* ----------------- Subtle Aurora Background ----------------- */
.aurora-background {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: url('assets/macos_aurora_bg.jpg');
    background-size: cover;
    background-position: center;
    filter: brightness(0.4) contrast(1.0) saturate(120%);
    z-index: -3;
    opacity: 0.85;
    transition: opacity var(--transition-normal), filter var(--transition-normal);
}

body.light-mode .aurora-background {
    filter: brightness(0.95) contrast(0.9) saturate(80%);
    opacity: 0.25;
}

.aurora-glow-1, .aurora-glow-2 {
    position: fixed;
    border-radius: 50%;
    filter: blur(100px);
    z-index: -2;
    pointer-events: none;
    transition: opacity var(--transition-normal);
}

.aurora-glow-1 {
    top: -20%;
    left: -10%;
    width: 60vw;
    height: 60vw;
    background: radial-gradient(circle, rgba(0, 122, 255, 0.2) 0%, transparent 70%);
}

.aurora-glow-2 {
    bottom: -15%;
    right: -10%;
    width: 50vw;
    height: 50vw;
    background: radial-gradient(circle, rgba(94, 92, 230, 0.15) 0%, transparent 70%);
}

body.light-mode .aurora-glow-1 {
    background: radial-gradient(circle, rgba(0, 122, 255, 0.1) 0%, transparent 70%);
}

body.light-mode .aurora-glow-2 {
    background: radial-gradient(circle, rgba(94, 92, 230, 0.08) 0%, transparent 70%);
}

/* ----------------- Typography & Layouts ----------------- */
h1, h2, h3, h4 {
    font-weight: 800;
    letter-spacing: -0.025em;
    line-height: 1.2;
}

.gradient-text {
    background: linear-gradient(135deg, #007aff, #5e5ce6 60%, #ff2d55 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

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

.section-container {
    max-width: 1100px;
    margin: 0 auto;
    padding: 7rem 1.5rem;
}

.section-header {
    text-align: center;
    max-width: 680px;
    margin: 0 auto 5rem auto;
}

.section-title {
    font-size: 2.85rem;
    font-weight: 800;
    margin-bottom: 1rem;
    letter-spacing: -0.03em;
}

.section-subtitle {
    font-size: 1.15rem;
    color: var(--color-text-secondary);
    font-weight: 500;
}

/* Utility classes */
.text-green { color: var(--color-success) !important; }
.text-blue { color: var(--color-primary) !important; }
.text-red { color: var(--color-danger) !important; }
.w-full { width: 100%; }

/* ----------------- Floating Glass Navbar ----------------- */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    padding: 1.5rem 2rem;
    z-index: 1000;
    transition: var(--transition-normal);
}

.navbar-container {
    max-width: 1100px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: rgba(10, 10, 10, 0.3);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: 20px;
    padding: 0.75rem 1.5rem;
    transition: var(--transition-normal);
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.08);
}

body.light-mode .navbar-container {
    background: rgba(255, 255, 255, 0.45);
    border-color: rgba(0, 0, 0, 0.05);
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.03);
}

/* Scrolling state nav */
.navbar.scrolled {
    padding: 0.85rem 2rem;
}

.navbar.scrolled .navbar-container {
    background: rgba(10, 10, 10, 0.7);
    backdrop-filter: var(--glass-blur);
    border-color: var(--glass-border);
    box-shadow: var(--glass-shadow);
}

body.light-mode .navbar.scrolled .navbar-container {
    background: rgba(255, 255, 255, 0.75);
    border-color: var(--glass-border);
    box-shadow: var(--glass-shadow);
}

.logo-container {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.app-logo-img {
    width: 32px;
    height: 32px;
    border-radius: 8px;
    object-fit: contain;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
}

.app-icon-glass {
    width: 36px;
    height: 36px;
    background: linear-gradient(135deg, rgba(0, 122, 255, 0.5) 0%, rgba(94, 92, 230, 0.5) 100%);
    border: 1px solid rgba(255, 255, 255, 0.25);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 10px rgba(0, 122, 255, 0.25);
    position: relative;
    overflow: hidden;
}

body.light-mode .app-icon-glass {
    border-color: rgba(255, 255, 255, 0.4);
}

.icon-inner i {
    font-size: 1.35rem;
    color: #fff;
    text-shadow: 0 1px 3px rgba(0,0,0,0.2);
}

.logo-text {
    font-weight: 800;
    font-size: 1.2rem;
    letter-spacing: -0.03em;
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 2rem;
}

.nav-links a {
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--color-text-secondary);
}

.nav-links a:hover {
    color: var(--color-text-primary);
}

.header-right {
    display: flex;
    align-items: center;
    gap: 1.25rem;
}

/* Language Switcher Button (EN / ID) */
.lang-switcher {
    display: flex;
    align-items: center;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 8px;
    padding: 0.25rem 0.5rem;
    font-size: 0.75rem;
    font-weight: 700;
    user-select: none;
}

body.light-mode .lang-switcher {
    background: rgba(0, 0, 0, 0.03);
    border-color: rgba(0, 0, 0, 0.05);
}

.btn-lang {
    background: transparent;
    border: none;
    color: var(--color-text-secondary);
    padding: 0.2rem 0.4rem;
    cursor: pointer;
    border-radius: 4px;
    transition: var(--transition-fast);
}

.btn-lang.active {
    color: var(--color-text-primary);
    background: rgba(255, 255, 255, 0.1);
}

body.light-mode .btn-lang.active {
    background: rgba(0, 0, 0, 0.08);
}

.lang-sep {
    color: rgba(255, 255, 255, 0.15);
    padding: 0 4px;
}

body.light-mode .lang-sep {
    color: rgba(0, 0, 0, 0.1);
}

/* Theme Toggle Button */
.theme-toggle-btn {
    background: transparent;
    border: none;
    color: var(--color-text-secondary);
    font-size: 1.25rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    transition: var(--transition-fast);
}

.theme-toggle-btn:hover {
    color: var(--color-text-primary);
    background: rgba(255, 255, 255, 0.05);
}

body.light-mode .theme-toggle-btn:hover {
    background: rgba(0, 0, 0, 0.03);
}

/* Mobile navbar styling */
.mobile-menu-btn {
    display: none;
    background: transparent;
    border: none;
    color: var(--color-text-primary);
    font-size: 1.5rem;
    cursor: pointer;
}

.mobile-nav-menu {
    display: none;
    position: absolute;
    top: 100%;
    left: 2rem;
    right: 2rem;
    background: rgba(10, 10, 10, 0.95);
    backdrop-filter: var(--glass-blur);
    border: 1px solid var(--glass-border);
    border-radius: 16px;
    padding: 1.5rem;
    flex-direction: column;
    gap: 1.25rem;
    margin-top: 0.5rem;
    box-shadow: var(--glass-shadow);
}

body.light-mode .mobile-nav-menu {
    background: rgba(255, 255, 255, 0.95);
}

.mobile-nav-menu.active {
    display: flex;
}

.mobile-link {
    font-size: 1rem;
    font-weight: 600;
    padding-bottom: 0.5rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

body.light-mode .mobile-link {
    border-bottom-color: rgba(0,0,0,0.05);
}

.mobile-lang-switcher {
    display: flex;
    gap: 1rem;
    margin-top: 0.5rem;
}

/* ----------------- Hero Section ----------------- */
.hero-section {
    padding-top: 10.5rem;
    padding-bottom: 6rem;
    overflow: hidden;
}

.hero-container {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 1.5rem;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3.5rem;
    align-items: center;
}

.hero-content {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.badge-new-release {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(0, 122, 255, 0.12);
    border: 1px solid rgba(0, 122, 255, 0.25);
    padding: 0.35rem 0.85rem;
    border-radius: 999px;
    margin-bottom: 1.5rem;
}

.badge-dot {
    width: 6px;
    height: 6px;
    background-color: var(--color-primary);
    border-radius: 50%;
    box-shadow: 0 0 6px var(--color-primary);
}

.badge-text {
    font-size: 0.72rem;
    font-weight: 750;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    color: var(--color-text-primary);
}

.hero-title {
    font-size: 3.85rem;
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 1.5rem;
    letter-spacing: -0.035em;
}

.hero-description {
    font-size: 1.2rem;
    color: var(--color-text-secondary);
    margin-bottom: 2.5rem;
    max-width: 480px;
    font-weight: 400;
}

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

.btn-primary-glow {
    display: inline-flex;
    align-items: center;
    gap: 0.65rem;
    padding: 0.8rem 1.6rem;
    background: var(--color-primary);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 12px;
    font-weight: 700;
    font-size: 0.95rem;
    color: #fff;
    box-shadow: 0 8px 20px var(--color-primary-glow);
    transition: var(--transition-fast);
}

.btn-primary-glow:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(0, 122, 255, 0.5);
    background: #0066d6;
}

/* Apple Store Badge styling (standard black badge style) */
.apple-store-badge {
    background: #000000;
    color: #ffffff !important;
    border: 1px solid #333;
    border-radius: 10px;
    padding: 0.45rem 1rem;
    display: inline-flex;
    align-items: center;
    gap: 0.6rem;
    height: 44px;
    box-shadow: 0 4px 10px rgba(0,0,0,0.15);
}

.apple-store-badge:hover {
    transform: translateY(-2px);
    background: #111;
    border-color: #444;
}

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

.badge-text-box {
    display: flex;
    flex-direction: column;
    line-height: 1.1;
    text-align: left;
}

.badge-sub {
    font-size: 0.55rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: #a1a1a6;
}

.badge-maintext {
    font-size: 0.95rem;
    font-weight: 700;
}

/* ----------------- High Fidelity MacBook CSS Mockup ----------------- */
.macbook-mockup {
    width: 100%;
    max-width: 560px;
    margin: 0 auto;
    perspective: 1200px;
}

/* MacBook Screen Bezel */
.macbook-screen {
    background: var(--color-macbook-bezel);
    border: 10px solid var(--color-macbook-bezel);
    border-top-width: 12px;
    border-radius: 18px 18px 0 0;
    position: relative;
    width: 100%;
    box-shadow: var(--macos-shadow);
    overflow: hidden;
}

.macbook-screen::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    border: 1.5px solid rgba(255, 255, 255, 0.08);
    border-radius: 8px 8px 0 0;
    pointer-events: none;
    z-index: 10;
}

/* Notch camera */
.macbook-camera {
    width: 45px;
    height: 10px;
    background: var(--color-macbook-bezel);
    border-radius: 0 0 5px 5px;
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    z-index: 20;
}

.macbook-camera::after {
    content: '';
    width: 4px;
    height: 4px;
    background: #0d122b;
    border-radius: 50%;
    position: absolute;
    top: 3px;
    left: 50%;
    transform: translateX(-50%);
    box-shadow: 0 0 2px #0a84ff;
}

/* Screen Display */
.macbook-screen-content {
    background-color: #0b0a1a;
    width: 100%;
    height: 330px;
    position: relative;
    overflow: hidden;
}

/* Display screenshot inside bezel */
.macbook-display-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

/* Keyboard Base */
.macbook-keyboard-base {
    background: linear-gradient(to right, #48484a 0%, #a1a1a6 5%, #d1d1d6 20%, #e5e5ea 50%, #d1d1d6 80%, #a1a1a6 95%, #48484a 100%);
    height: 12px;
    border-radius: 0 0 8px 8px;
    width: 114%;
    margin-left: -7%;
    position: relative;
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.4);
    z-index: 5;
    border-top: 1px solid rgba(255, 255, 255, 0.25);
}

body.light-mode .macbook-keyboard-base {
    background: linear-gradient(to right, #8e8e93 0%, #c7c7cc 5%, #e5e5ea 20%, #f2f2f7 50%, #e5e5ea 80%, #c7c7cc 95%, #8e8e93 100%);
}

.macbook-trackpad {
    width: 90px;
    height: 5px;
    background: rgba(0, 0, 0, 0.15);
    margin: 0 auto;
    border-radius: 0 0 3px 3px;
    border-left: 1px solid rgba(255, 255, 255, 0.15);
    border-right: 1px solid rgba(255, 255, 255, 0.15);
}

.macbook-indent {
    width: 50px;
    height: 3px;
    background: rgba(0, 0, 0, 0.3);
    margin: -5px auto 0 auto;
    border-radius: 0 0 4px 4px;
}

/* ----------------- Social Proof Section ----------------- */
.social-proof-section {
    position: relative;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    background: rgba(0, 0, 0, 0.15);
}

body.light-mode .social-proof-section {
    border-top-color: rgba(0,0,0,0.05);
    background: rgba(255, 255, 255, 0.2);
}

/* Trust Badges Bar Styling */
.text-center {
    text-align: center;
}

.sp-badges-container {
    margin-bottom: 4rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1.25rem;
}

.sp-badges-title {
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--color-text-secondary);
    letter-spacing: -0.01em;
}

.sp-badges-grid {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 1.25rem;
}

.sp-badge-pill {
    display: flex;
    align-items: center;
    gap: 0.65rem;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 12px;
    padding: 0.55rem 1.25rem;
    font-size: 0.9rem;
    font-weight: 700;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    transition: var(--transition-fast);
}

body.light-mode .sp-badge-pill {
    background: rgba(255, 255, 255, 0.85);
    border-color: rgba(0, 0, 0, 0.06);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.02);
    color: var(--color-text-primary);
}

.sp-badge-pill:hover {
    transform: translateY(-2px);
    border-color: rgba(255, 255, 255, 0.15);
    background: rgba(255, 255, 255, 0.08);
}

body.light-mode .sp-badge-pill:hover {
    border-color: rgba(0, 0, 0, 0.1);
    background: rgba(255, 255, 255, 0.95);
}

.sp-badge-pill i {
    font-size: 1.15rem;
}

.social-proof-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.testimonial-card-sp {
    background: var(--glass-bg);
    backdrop-filter: var(--glass-blur);
    border: 1px solid var(--glass-border);
    border-radius: 24px;
    padding: 2.25rem;
    display: flex;
    flex-direction: column;
    transition: transform var(--transition-normal), box-shadow var(--transition-normal), border-color var(--transition-normal);
}

body.light-mode .testimonial-card-sp {
    box-shadow: 0 8px 24px rgba(0,0,0,0.02);
}

.testimonial-card-sp:hover {
    transform: translateY(-5px);
    background: var(--glass-bg-hover);
    border-color: rgba(0, 122, 255, 0.25);
    box-shadow: 0 15px 35px rgba(0, 122, 255, 0.1);
}

body.light-mode .testimonial-card-sp:hover {
    border-color: rgba(0, 122, 255, 0.2);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.05);
}

.sp-user-info {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.25rem;
}

.sp-avatar {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid rgba(255, 255, 255, 0.15);
}

body.light-mode .sp-avatar {
    border-color: rgba(0, 0, 0, 0.05);
}

.sp-user-meta {
    display: flex;
    flex-direction: column;
    line-height: 1.35;
}

.sp-name {
    font-weight: 750;
    font-size: 0.95rem;
    color: var(--color-text-primary);
}

.sp-title {
    font-size: 0.78rem;
    color: var(--color-text-secondary);
}

.sp-stars {
    display: flex;
    gap: 3px;
    margin-bottom: 1rem;
}

.sp-stars i {
    font-size: 0.85rem;
    color: #ffb800; /* Apple Gold star color */
}

.sp-quote {
    font-size: 0.925rem;
    color: var(--color-text-secondary);
    line-height: 1.6;
    font-weight: 500;
}

/* ----------------- Features Section (Grid 2x2 Layout) ----------------- */
.features-section {
    position: relative;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

body.light-mode .features-section {
    border-top-color: rgba(0,0,0,0.05);
}

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

.feature-card {
    background: var(--glass-bg);
    backdrop-filter: var(--glass-blur);
    border: 1px solid var(--glass-border);
    border-radius: 20px;
    padding: 2.5rem;
    display: flex;
    flex-direction: column;
    transition: var(--transition-normal);
    position: relative;
    overflow: hidden;
}

body.light-mode .feature-card {
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.02);
}

.feature-card:hover {
    transform: translateY(-5px);
    background: var(--glass-bg-hover);
    border-color: rgba(0, 122, 255, 0.3);
    box-shadow: 0 12px 30px rgba(0, 122, 255, 0.1);
}

body.light-mode .feature-card:hover {
    border-color: rgba(0, 122, 255, 0.2);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.05);
}

.feature-icon-wrapper {
    width: 52px;
    height: 52px;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    color: var(--color-primary);
    transition: var(--transition-fast);
}

body.light-mode .feature-icon-wrapper {
    background: rgba(0, 0, 0, 0.02);
    border-color: rgba(0, 0, 0, 0.06);
}

.feature-card:hover .feature-icon-wrapper {
    transform: scale(1.05);
}

/* Feature Icon Color Varieties */
.feature-card .feature-icon-wrapper.f-blue {
    color: #007aff;
    background: rgba(0, 122, 255, 0.08);
    border-color: rgba(0, 122, 255, 0.15);
}
.feature-card .feature-icon-wrapper.f-purple {
    color: #af52de;
    background: rgba(175, 82, 222, 0.08);
    border-color: rgba(175, 82, 222, 0.15);
}
.feature-card .feature-icon-wrapper.f-orange {
    color: #ff9500;
    background: rgba(255, 149, 0, 0.08);
    border-color: rgba(255, 149, 0, 0.15);
}
.feature-card .feature-icon-wrapper.f-green {
    color: #34c759;
    background: rgba(52, 199, 89, 0.08);
    border-color: rgba(52, 199, 89, 0.15);
}
.feature-card .feature-icon-wrapper.f-pink {
    color: #ff2d55;
    background: rgba(255, 45, 85, 0.08);
    border-color: rgba(255, 45, 85, 0.15);
}
.feature-card .feature-icon-wrapper.f-cyan {
    color: #32ade6;
    background: rgba(50, 173, 230, 0.08);
    border-color: rgba(50, 173, 230, 0.15);
}

body.light-mode .feature-card .feature-icon-wrapper.f-blue { background: rgba(0, 122, 255, 0.08); }
body.light-mode .feature-card .feature-icon-wrapper.f-purple { background: rgba(175, 82, 222, 0.08); }
body.light-mode .feature-card .feature-icon-wrapper.f-orange { background: rgba(255, 149, 0, 0.08); }
body.light-mode .feature-card .feature-icon-wrapper.f-green { background: rgba(52, 199, 89, 0.08); }
body.light-mode .feature-card .feature-icon-wrapper.f-pink { background: rgba(255, 45, 85, 0.08); }
body.light-mode .feature-card .feature-icon-wrapper.f-cyan { background: rgba(50, 173, 230, 0.08); }

.feature-card:hover .feature-icon-wrapper.f-blue { background: rgba(0, 122, 255, 0.15); }
.feature-card:hover .feature-icon-wrapper.f-purple { background: rgba(175, 82, 222, 0.15); }
.feature-card:hover .feature-icon-wrapper.f-orange { background: rgba(255, 149, 0, 0.15); }
.feature-card:hover .feature-icon-wrapper.f-green { background: rgba(52, 199, 89, 0.15); }
.feature-card:hover .feature-icon-wrapper.f-pink { background: rgba(255, 45, 85, 0.15); }
.feature-card:hover .feature-icon-wrapper.f-cyan { background: rgba(50, 173, 230, 0.15); }

.feature-icon-wrapper i {
    font-size: 1.65rem;
}

.feature-card h3 {
    font-size: 1.35rem;
    margin-bottom: 0.75rem;
    font-weight: 750;
}

.feature-card p {
    font-size: 0.95rem;
    color: var(--color-text-secondary);
    line-height: 1.6;
}

/* ----------------- Metrics Section ----------------- */
.metrics-section {
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    background: rgba(255, 255, 255, 0.01);
    padding: 3rem 0;
}

body.light-mode .metrics-section {
    border-top-color: rgba(0, 0, 0, 0.04);
    background: rgba(0, 0, 0, 0.01);
}

.metrics-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    text-align: center;
}

.metric-item {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    padding: 1.5rem 1rem;
}

.metric-val {
    font-size: 2.85rem;
    font-weight: 800;
    letter-spacing: -0.03em;
    line-height: 1.1;
    color: #007aff;
}

.metric-lbl {
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--color-text-secondary);
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

/* ----------------- How It Works Section ----------------- */
.how-it-works-section {
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    background: rgba(0, 0, 0, 0.1);
}

body.light-mode .how-it-works-section {
    border-top-color: rgba(0, 0, 0, 0.05);
    background: rgba(0, 0, 0, 0.01);
}

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

.step-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 1rem;
    position: relative;
}

.steps-grid .step-item:not(:last-child)::after {
    content: '';
    position: absolute;
    top: 2.5rem;
    right: -2rem;
    width: 3.5rem;
    height: 1px;
    background: rgba(255, 255, 255, 0.1);
    pointer-events: none;
}

body.light-mode .steps-grid .step-item:not(:last-child)::after {
    background: rgba(0, 0, 0, 0.06);
}

.step-icon-circle {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 2rem;
    transition: transform var(--transition-normal);
}

.step-item:hover .step-icon-circle {
    transform: scale(1.08) rotate(3deg);
}

.step-icon-circle i {
    font-size: 2.25rem;
}

.step-icon-circle.s-blue {
    color: #007aff;
    background: rgba(0, 122, 255, 0.1);
    border: 1px solid rgba(0, 122, 255, 0.15);
    box-shadow: 0 8px 24px rgba(0, 122, 255, 0.08);
}
.step-icon-circle.s-purple {
    color: #af52de;
    background: rgba(175, 82, 222, 0.1);
    border: 1px solid rgba(175, 82, 222, 0.15);
    box-shadow: 0 8px 24px rgba(175, 82, 222, 0.08);
}
.step-icon-circle.s-green {
    color: #34c759;
    background: rgba(52, 199, 89, 0.1);
    border: 1px solid rgba(52, 199, 89, 0.15);
    box-shadow: 0 8px 24px rgba(52, 199, 89, 0.08);
}

body.light-mode .step-icon-circle.s-blue { background: rgba(0, 122, 255, 0.08); box-shadow: 0 8px 20px rgba(0, 122, 255, 0.03); }
body.light-mode .step-icon-circle.s-purple { background: rgba(175, 82, 222, 0.08); box-shadow: 0 8px 20px rgba(175, 82, 222, 0.03); }
body.light-mode .step-icon-circle.s-green { background: rgba(52, 199, 89, 0.08); box-shadow: 0 8px 20px rgba(52, 199, 89, 0.03); }

.step-title {
    font-size: 1.45rem;
    font-weight: 750;
    margin-bottom: 0.85rem;
}

.step-desc {
    font-size: 0.95rem;
    color: var(--color-text-secondary);
    line-height: 1.6;
}

/* ----------------- Pricing Section (Single Card Layout) ----------------- */
.pricing-section {
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

body.light-mode .pricing-section {
    border-top-color: rgba(0,0,0,0.05);
}

.pricing-container-single {
    display: flex;
    justify-content: center;
    align-items: center;
}

.pricing-container-single .pricing-card {
    width: 100%;
    max-width: 560px;
    border-radius: 36px;
    padding: 3.5rem 3.5rem 4rem 3.5rem;
    border: 1.5px solid rgba(0, 122, 255, 0.2);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.4);
    background: rgba(10, 10, 12, 0.65);
    position: relative;
    transition: transform var(--transition-normal), box-shadow var(--transition-normal), border-color var(--transition-normal);
}

body.light-mode .pricing-container-single .pricing-card {
    background: #ffffff;
    border-color: rgba(0, 122, 255, 0.25);
    box-shadow: 0 20px 48px rgba(0, 122, 255, 0.05);
}

.pricing-container-single .pricing-card:hover {
    transform: translateY(-8px);
    border-color: rgba(0, 122, 255, 0.45);
    box-shadow: 0 30px 70px rgba(0, 122, 255, 0.25);
}

body.light-mode .pricing-container-single .pricing-card:hover {
    border-color: rgba(0, 122, 255, 0.4);
    box-shadow: 0 30px 60px rgba(0, 122, 255, 0.12);
}

.pricing-container-single .popular-badge {
    position: absolute;
    top: -18px;
    right: 40px;
    background: #007aff;
    color: #ffffff !important;
    padding: 0.5rem 1.6rem;
    font-size: 0.8rem;
    font-weight: 850;
    letter-spacing: 0.05em;
    border-radius: 999px;
    box-shadow: 0 4px 12px rgba(0, 122, 255, 0.3);
}

/* Pricing Header Styles */
.pricing-header h3 {
    font-size: 1.45rem;
    font-weight: 750;
    margin-bottom: 0.5rem;
}

.pricing-desc {
    font-size: 0.95rem;
    color: var(--color-text-secondary);
    line-height: 1.5;
}

/* Price Box large & blue styled */
.price-box {
    margin: 2.25rem 0;
    display: flex;
    align-items: baseline;
    color: #007aff;
    font-weight: 850;
}

.price-currency {
    font-size: 1.5rem;
    margin-right: 2px;
    align-self: flex-start;
}

.price-amount {
    font-size: 3.75rem;
    line-height: 1;
}

.price-cents {
    font-size: 1.65rem;
    align-self: flex-start;
}

.price-period {
    font-size: 0.95rem;
    color: var(--color-text-muted);
    margin-left: 0.5rem;
    font-weight: 500;
}

/* Spacious list spacing */
.pricing-features {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
    margin-bottom: 3.5rem;
}

.pricing-features li {
    font-size: 1.05rem;
    font-weight: 500;
    display: flex;
    align-items: center;
    gap: 1rem;
    color: var(--color-text-secondary);
}

.pricing-features li i {
    font-size: 1.25rem;
    color: #007aff;
}

/* Button & Guarantee Refinements */
.btn-pricing-primary {
    width: 100%;
    padding: 1.05rem;
    border-radius: 999px;
    font-weight: 700;
    font-size: 1.05rem;
    cursor: pointer;
    background: #2f60d6;
    border: none;
    color: #fff;
    box-shadow: 0 6px 18px rgba(47, 96, 214, 0.25);
    transition: transform var(--transition-fast), background-color var(--transition-fast), box-shadow var(--transition-fast);
}

.btn-pricing-primary:hover {
    transform: translateY(-2px);
    background: #1d4ed8;
    box-shadow: 0 10px 24px rgba(29, 78, 216, 0.45);
}

.pricing-guarantee {
    display: block;
    text-align: center;
    font-size: 0.72rem;
    color: var(--color-text-muted);
    margin-top: 1.25rem;
}

/* ----------------- FAQ Section (Collapsible Accordion) ----------------- */
.faq-section {
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

body.light-mode .faq-section {
    border-top-color: rgba(0,0,0,0.05);
}

.faq-accordion-container {
    max-width: 760px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.faq-item {
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    border-radius: 12px;
    overflow: hidden;
    transition: var(--transition-normal);
}

.faq-item:hover {
    border-color: var(--glass-border-focus);
}

.faq-question-btn {
    width: 100%;
    background: transparent;
    border: none;
    padding: 1.25rem 1.5rem;
    text-align: left;
    color: var(--color-text-primary);
    font-size: 1.1rem;
    font-weight: 700;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 1rem;
    user-select: none;
}

.accordion-icon {
    font-size: 1.25rem;
    color: var(--color-text-muted);
    transition: transform var(--transition-normal);
}

/* Collapsible expansion style */
.faq-answer-wrapper {
    max-height: 0;
    overflow: hidden;
    transition: max-height var(--transition-normal) ease-out;
}

.faq-answer-content {
    padding: 0 1.5rem 1.25rem 1.5rem;
    color: var(--color-text-secondary);
    font-size: 0.95rem;
    border-top: 1px solid rgba(255,255,255,0.02);
}

body.light-mode .faq-answer-content {
    border-top-color: rgba(0,0,0,0.02);
}

/* JS toggled active states */
.faq-item.active .accordion-icon {
    transform: rotate(180deg);
}

/* ----------------- Footer Section ----------------- */
.footer {
    background: rgba(5, 5, 5, 0.9);
    backdrop-filter: var(--glass-blur);
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    padding: 4rem 1.5rem 2rem 1.5rem;
    position: relative;
    z-index: 10;
    transition: background-color var(--transition-normal);
}

body.light-mode .footer {
    background: rgba(245, 245, 247, 0.9);
    border-top-color: rgba(0,0,0,0.05);
}

.footer-container {
    max-width: 1100px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    gap: 3rem;
    margin-bottom: 3.5rem;
}

.footer-left {
    max-width: 320px;
}

.footer-left .logo-container {
    margin-bottom: 1rem;
}

.footer-tagline {
    font-size: 0.85rem;
    color: var(--color-text-secondary);
}

.footer-links-group {
    display: flex;
    gap: 4rem;
}

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

.footer-col h4 {
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: var(--color-text-muted);
    margin-bottom: 0.25rem;
}

.footer-col a {
    font-size: 0.85rem;
    color: var(--color-text-secondary);
}

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

.footer-bottom {
    max-width: 1100px;
    margin: 0 auto;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    display: flex;
    align-items: center;
    justify-content: space-between;
}

body.light-mode .footer-bottom {
    border-top-color: rgba(0,0,0,0.05);
}

.copyright-text {
    font-size: 0.8rem;
    color: var(--color-text-muted);
}

/* Footer Language Button Switcher */
.footer-lang-container {
    position: relative;
}

.footer-lang-btn {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 8px;
    color: var(--color-text-secondary);
    padding: 0.4rem 0.8rem;
    font-size: 0.75rem;
    font-weight: 700;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    transition: var(--transition-fast);
}

body.light-mode .footer-lang-btn {
    background: rgba(0, 0, 0, 0.02);
    border-color: rgba(0, 0, 0, 0.05);
}

.footer-lang-btn:hover {
    color: var(--color-text-primary);
    background: rgba(255, 255, 255, 0.1);
}

body.light-mode .footer-lang-btn:hover {
    background: rgba(0, 0, 0, 0.05);
}

/* ----------------- Checkout Modal Multi-Gateway ----------------- */
.checkout-overlay {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.6);
    backdrop-filter: blur(12px);
    z-index: 2000;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 1.5rem;
    opacity: 0;
    pointer-events: none;
    transition: opacity var(--transition-normal);
}

.checkout-overlay.active {
    opacity: 1;
    pointer-events: auto;
}

.checkout-modal-content {
    background: rgba(18, 18, 20, 0.75);
    backdrop-filter: var(--glass-blur);
    border: 1px solid var(--glass-border);
    border-radius: 24px;
    width: 100%;
    max-width: 460px;
    padding: 2.25rem;
    box-shadow: var(--macos-shadow);
    position: relative;
    transform: scale(0.95) translateY(10px);
    transition: transform var(--transition-normal);
}

body.light-mode .checkout-modal-content {
    background: rgba(255, 255, 255, 0.85);
    border-color: rgba(0, 0, 0, 0.08);
    box-shadow: 0 24px 64px -12px rgba(0, 0, 0, 0.15);
}

.checkout-overlay.active .checkout-modal-content {
    transform: scale(1) translateY(0);
}

.modal-close-btn {
    position: absolute;
    top: 1.5rem;
    right: 1.5rem;
    background: transparent;
    border: none;
    color: var(--color-text-secondary);
    font-size: 1.25rem;
    cursor: pointer;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition-fast);
}

.modal-close-btn:hover {
    background: rgba(255, 255, 255, 0.08);
    color: var(--color-text-primary);
}

body.light-mode .modal-close-btn:hover {
    background: rgba(0, 0, 0, 0.04);
}

.modal-header-container {
    margin-bottom: 1.5rem;
}

.modal-header-container h3 {
    font-size: 1.5rem;
    font-weight: 800;
}

/* Product Card */
.checkout-product-card {
    display: flex;
    align-items: center;
    gap: 1.25rem;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 16px;
    padding: 1.25rem;
    margin-bottom: 1.5rem;
}

body.light-mode .checkout-product-card {
    background: rgba(0, 0, 0, 0.02);
    border-color: rgba(0, 0, 0, 0.04);
}

.checkout-logo {
    width: 52px;
    height: 52px;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.2);
}

.checkout-product-details h4 {
    font-size: 1.05rem;
    font-weight: 750;
    line-height: 1.2;
    margin-bottom: 0.25rem;
}

.checkout-product-details p {
    font-size: 0.85rem;
    color: var(--color-text-muted);
}

.gateway-select-label {
    font-size: 0.88rem;
    font-weight: 700;
    color: var(--color-text-secondary);
    margin-bottom: 0.75rem;
}

/* Tabs selection */
.gateway-tabs {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0.85rem;
    margin-bottom: 1.75rem;
}

.gateway-tab-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.65rem;
    padding: 0.85rem;
    border-radius: 12px;
    font-size: 0.925rem;
    font-weight: 700;
    cursor: pointer;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
    color: var(--color-text-secondary);
    transition: var(--transition-fast);
}

body.light-mode .gateway-tab-btn {
    background: rgba(0, 0, 0, 0.02);
    border-color: rgba(0, 0, 0, 0.06);
}

.gateway-tab-btn:hover {
    background: rgba(255, 255, 255, 0.06);
    color: var(--color-text-primary);
}

body.light-mode .gateway-tab-btn:hover {
    background: rgba(0, 0, 0, 0.04);
}

.gateway-tab-btn.active {
    color: #ffffff !important;
    background: #007aff;
    border-color: #007aff;
    box-shadow: 0 4px 15px rgba(0, 122, 255, 0.3);
}

.gateway-tab-btn#tab-midtrans.active {
    background: #ff453a;
    border-color: #ff453a;
    box-shadow: 0 4px 15px rgba(255, 69, 58, 0.3);
}

/* Payment Panel */
.checkout-action-panel {
    display: flex;
    flex-direction: column;
    gap: 1.15rem;
    padding-top: 1.25rem;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

body.light-mode .checkout-action-panel {
    border-top-color: rgba(0,0,0,0.05);
}

.price-due-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 1rem;
    font-weight: 700;
}

.price-due-val {
    font-size: 1.45rem;
    font-weight: 800;
    color: var(--color-text-primary);
}

.btn-checkout-pay {
    width: 100%;
    padding: 1rem;
    border-radius: 999px;
    font-size: 1.05rem;
    font-weight: 700;
    cursor: pointer;
    background: #007aff;
    border: none;
    color: #fff;
    box-shadow: 0 4px 15px rgba(0, 122, 255, 0.35);
    transition: transform var(--transition-fast), background-color var(--transition-fast), box-shadow var(--transition-fast);
}

.btn-checkout-pay:hover {
    transform: translateY(-2px);
    background: #0066d6;
    box-shadow: 0 6px 20px rgba(0, 122, 255, 0.5);
}

.btn-checkout-pay.pay-midtrans {
    background: #ff453a;
    box-shadow: 0 4px 15px rgba(255, 69, 58, 0.35);
}

.btn-checkout-pay.pay-midtrans:hover {
    background: #e03e34;
    box-shadow: 0 6px 20px rgba(255, 69, 58, 0.5);
}

.checkout-guarantee {
    display: block;
    text-align: center;
    font-size: 0.75rem;
    color: var(--color-text-muted);
}

.modal-footer-btns {
    display: flex;
    justify-content: flex-end;
    margin-top: 1.5rem;
    padding-top: 1rem;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

body.light-mode .modal-footer-btns {
    border-top-color: rgba(0,0,0,0.05);
}

.btn-modal-cancel {
    background: transparent;
    border: 1px solid rgba(255, 255, 255, 0.15);
    color: var(--color-text-secondary);
    padding: 0.55rem 1.35rem;
    border-radius: 8px;
    font-size: 0.9rem;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition-fast);
}

body.light-mode .btn-modal-cancel {
    border-color: rgba(0, 0, 0, 0.15);
}

.btn-modal-cancel:hover {
    background: rgba(255, 255, 255, 0.05);
    color: var(--color-text-primary);
}

body.light-mode .btn-modal-cancel:hover {
    background: rgba(0, 0, 0, 0.03);
}

/* ----------------- Scroll Animations ----------------- */
.animate-on-scroll {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.75s cubic-bezier(0.16, 1, 0.3, 1), transform 0.75s cubic-bezier(0.16, 1, 0.3, 1);
}

.animate-on-scroll.appear {
    opacity: 1;
    transform: translateY(0);
}
/* ----------------- AI Product Summary Section ----------------- */
.ai-summary-section {
    padding-top: 1rem;
    padding-bottom: 2rem;
}

.summary-card {
    padding: 2.5rem;
    border-radius: 20px;
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    box-shadow: var(--glass-shadow);
}

.summary-card-title {
    font-size: 1.5rem;
    font-weight: 800;
    margin-bottom: 1.5rem;
    display: flex;
    align-items: center;
    gap: 0.75rem;
    color: var(--color-text-primary);
}

.summary-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    margin-bottom: 1.5rem;
    font-size: 0.95rem;
    color: var(--color-text-secondary);
    line-height: 1.8;
}

.summary-col strong {
    color: var(--color-text-primary);
}

.summary-desc {
    font-size: 0.95rem;
    color: var(--color-text-muted);
    line-height: 1.65;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    padding-top: 1.25rem;
    margin-top: 1rem;
}

/* Penyesuaian garis batas saat user menukar ke Light Mode */
body.light-mode .summary-desc {
    border-top-color: rgba(0, 0, 0, 0.05);
}
/* ----------------- Responsive Breakpoints ----------------- */
@media (max-width: 1024px) {
    .hero-container {
        grid-template-columns: 1fr;
        gap: 4rem;
        text-align: center;
    }
    
    .hero-content {
        align-items: center;
    }
    
    .hero-title {
        font-size: 3.25rem;
    }
    
    .hero-description {
        max-width: 540px;
    }

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

    .metrics-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }

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

    .steps-grid .step-item:not(:last-child)::after {
        display: none;
    }
}

@media (max-width: 768px) {
    .navbar-container {
        padding: 0.6rem 1rem;
    }
    
    .nav-links, .header-right {
        display: none;
    }
    
    .mobile-menu-btn {
        display: block;
    }
    
    .hero-section {
        padding-top: 8.5rem;
    }
    
    .hero-title {
        font-size: 2.5rem;
    }
    
    .hero-buttons {
        flex-direction: column;
        width: 100%;
        gap: 0.75rem;
    }
    
    .hero-buttons a {
        justify-content: center;
        width: 100%;
    }
    
    .features-grid {
        grid-template-columns: 1fr;
    }
    
    .metrics-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .social-proof-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
        .summary-grid {
        grid-template-columns: 1fr;
        gap: 1.25rem;
    }
    
    .footer-container {
        flex-direction: column;
        gap: 2rem;
    }
    
    .footer-links-group {
        flex-direction: column;
        gap: 1.5rem;
    }
    
    .footer-bottom {
        flex-direction: column-reverse;
        gap: 1.5rem;
        text-align: center;
    }
}
