/* ============================================
   HOME PAGE - COMPLETE STYLES
   Using SpaceGrotesk Font Family
   Primary: #0F5C73 | Secondary: #45E688
   ============================================ */

/* ===== ROOT VARIABLES ===== */
:root {
    --primary: #0F5C73;
    --primary-dark: #0A4556;
    --primary-light: #1A7A94;
    --secondary: #45E688;
    --secondary-dark: #2ECC71;
    --secondary-light: #6AEEA0;
    --dark: #0A0A1A;
    --dark-card: #14142D;
    --dark-card-hover: #1C1C3D;
    --text-white: #FFFFFF;
    --text-muted: rgba(255, 255, 255, 0.6);
    --text-muted-2: rgba(255, 255, 255, 0.4);
    --border-color: rgba(255, 255, 255, 0.06);
    --shadow: 0 20px 60px rgba(15, 92, 115, 0.25);
    --shadow-hover: 0 30px 80px rgba(15, 92, 115, 0.35);
    --radius: 24px;
    --radius-sm: 12px;
    --radius-lg: 32px;
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

/* ===== FONT IMPORTS ===== */
@font-face {
    font-family: 'SpaceGrotesk-Light';
    src: url('/fonts/SpaceGrotesk-Light.ttf') format('truetype');
    font-weight: 300;
    font-style: normal;
}

@font-face {
    font-family: 'SpaceGrotesk-Regular';
    src: url('/fonts/SpaceGrotesk-Regular.ttf') format('truetype');
    font-weight: 400;
    font-style: normal;
}

@font-face {
    font-family: 'SpaceGrotesk-Medium';
    src: url('/fonts/SpaceGrotesk-Medium.ttf') format('truetype');
    font-weight: 500;
    font-style: normal;
}

@font-face {
    font-family: 'SpaceGrotesk-SemiBold';
    src: url('/fonts/SpaceGrotesk-SemiBold.ttf') format('truetype');
    font-weight: 600;
    font-style: normal;
}

@font-face {
    font-family: 'SpaceGrotesk-Bold';
    src: url('/fonts/SpaceGrotesk-Bold.ttf') format('truetype');
    font-weight: 700;
    font-style: normal;
}

/* ===== RESET & BASE ===== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'SpaceGrotesk-Regular', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    background: var(--dark);
    color: var(--text-white);
    line-height: 1.6;
    overflow-x: hidden;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

/* ============================================
   HEADER STYLES
   ============================================ */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: 16px 0;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    background: transparent;
}

.header.scrolled {
    background: rgba(10, 10, 26, 0.92);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--border-color);
    padding: 10px 0;
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.3);
}

.header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
}

/* Logo */
.header-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
    flex-shrink: 0;
}

.logo-icon {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    color: #fff;
    box-shadow: 0 4px 15px rgba(15, 92, 115, 0.4);
}
.logo-icon img{
  border-radius: 12px;
}
.logo-text {
    font-family: 'SpaceGrotesk-Bold';
    font-size: 20px;
    color: var(--text-white);
    letter-spacing: -0.5px;
}

/* Navigation */
.header-nav {
    display: flex;
    align-items: center;
}

.nav-list {
    display: flex;
    align-items: center;
    gap: 32px;
    list-style: none;
    margin: 0;
    padding: 0;
}

.nav-list a {
    font-family: 'SpaceGrotesk-Medium';
    color: var(--text-muted);
    text-decoration: none;
    font-size: 15px;
    transition: var(--transition);
    position: relative;
}

.nav-list a::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    transition: width 0.3s ease;
}

.nav-list a:hover {
    color: var(--text-white);
}

.nav-list a:hover::after {
    width: 100%;
}

/* Header Actions */
.header-actions {
    display: flex;
    align-items: center;
    gap: 12px;
    flex-shrink: 0;
}

.btn-login {
    font-family: 'SpaceGrotesk-SemiBold';
    padding: 8px 20px;
    color: var(--text-muted);
    text-decoration: none;
    font-size: 14px;
    border-radius: 8px;
    transition: var(--transition);
}

.btn-login:hover {
    color: var(--text-white);
    background: rgba(255, 255, 255, 0.06);
}

.btn-signup {
    font-family: 'SpaceGrotesk-SemiBold';
    padding: 8px 24px;
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    color: var(--text-white);
    text-decoration: none;
    font-size: 14px;
    border-radius: 8px;
    transition: var(--transition);
    box-shadow: 0 4px 15px rgba(15, 92, 115, 0.4);
}

.btn-signup:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(15, 92, 115, 0.5);
}

/* Mobile Toggle */
.mobile-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 4px;
    z-index: 1001;
}

.mobile-toggle span {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--text-white);
    border-radius: 2px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

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

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

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

/* Mobile Menu */
/* Mobile Menu - FIX */
.mobile-menu {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    width: 100%;
    height: 100vh;
    height: 100dvh; /* For mobile browsers */
    min-height: 100vh;
    min-height: 100dvh;
    background: rgba(10, 10, 26, 0.98);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    padding: 80px 24px 40px;
    flex-direction: column;
    align-items: center;
    justify-content: space-between;
    opacity: 0;
    visibility: hidden;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 9999;
    overflow-y: auto;
    overflow-x: hidden;
}

.mobile-menu.open {
    opacity: 1;
    visibility: visible;
    display: flex;
}

/* Also ensure the body doesn't scroll when menu is open */
body.menu-open {
    overflow: hidden;
    position: fixed;
    width: 100%;
}

.mobile-nav {
    width: 100%;
    max-width: 400px;
}

.mobile-nav-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.mobile-nav-list a {
    display: block;
    padding: 16px 20px;
    font-family: 'SpaceGrotesk-SemiBold';
    color: var(--text-muted);
    text-decoration: none;
    font-size: 18px;
    border-radius: 12px;
    transition: var(--transition);
    text-align: center;
}

.mobile-nav-list a:hover {
    background: rgba(15, 92, 115, 0.08);
    color: var(--text-white);
}

.mobile-actions {
    display: flex;
    flex-direction: column;
    gap: 12px;
    width: 100%;
    max-width: 400px;
}

.btn-login-mobile {
    font-family: 'SpaceGrotesk-SemiBold';
    padding: 14px;
    color: var(--text-muted);
    text-decoration: none;
    font-size: 16px;
    border-radius: 12px;
    border: 1px solid var(--border-color);
    text-align: center;
    transition: var(--transition);
}

.btn-login-mobile:hover {
    background: rgba(255, 255, 255, 0.05);
    color: var(--text-white);
}

.btn-signup-mobile {
    font-family: 'SpaceGrotesk-SemiBold';
    padding: 14px;
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    color: var(--text-white);
    text-decoration: none;
    font-size: 16px;
    border-radius: 12px;
    text-align: center;
    transition: var(--transition);
    box-shadow: 0 4px 20px rgba(15, 92, 115, 0.4);
}

.btn-signup-mobile:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(15, 92, 115, 0.5);
}

/* ============================================
   HERO SECTION
   ============================================ */
.hero-section {
    padding: 120px 0 60px;
    position: relative;
    overflow: hidden;
    background: radial-gradient(ellipse at 20% 50%, rgba(15, 92, 115, 0.15) 0%, transparent 60%),
                radial-gradient(ellipse at 80% 50%, rgba(69, 230, 136, 0.08) 0%, transparent 60%);
}

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

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

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 8px 20px;
    background: rgba(15, 92, 115, 0.15);
    border: 1px solid rgba(15, 92, 115, 0.25);
    border-radius: 100px;
    font-family: 'SpaceGrotesk-Medium';
    font-size: 14px;
    color: var(--secondary);
    margin-bottom: 24px;
}

.pulse-dot {
    width: 8px;
    height: 8px;
    background: var(--secondary);
    border-radius: 50%;
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% { transform: scale(1); opacity: 1; }
    50% { transform: scale(1.5); opacity: 0.5; }
    100% { transform: scale(1); opacity: 1; }
}

.hero-title {
    font-family: 'SpaceGrotesk-Bold';
    font-size: 56px;
    line-height: 1.1;
    margin-bottom: 20px;
    letter-spacing: -0.02em;
}

.gradient-text {
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-description {
    font-family: 'SpaceGrotesk-Regular';
    font-size: 18px;
    color: var(--text-muted);
    max-width: 480px;
    margin-bottom: 32px;
    line-height: 1.7;
}

.hero-actions {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
    margin-bottom: 40px;
}

.btn-primary {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 14px 32px;
    font-family: 'SpaceGrotesk-SemiBold';
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    color: var(--text-white);
    border: none;
    border-radius: var(--radius-sm);
    font-size: 16px;
    text-decoration: none;
    cursor: pointer;
    transition: var(--transition);
    box-shadow: 0 4px 20px rgba(15, 92, 115, 0.4);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(15, 92, 115, 0.5);
}

.btn-secondary {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 14px 32px;
    font-family: 'SpaceGrotesk-SemiBold';
    background: rgba(255, 255, 255, 0.06);
    color: var(--text-white);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-sm);
    font-size: 16px;
    text-decoration: none;
    cursor: pointer;
    transition: var(--transition);
}

.btn-secondary:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.15);
}

.hero-trust {
    display: flex;
    align-items: center;
    gap: 20px;
}

.trust-avatars {
    display: flex;
    align-items: center;
}

.trust-avatars img {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: 2px solid var(--dark);
    margin-right: -10px;
    object-fit: cover;
}

.trust-avatars img:last-child {
    margin-right: 0;
}

.trust-count {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(15, 92, 115, 0.2);
    border: 2px solid var(--dark);
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'SpaceGrotesk-Bold';
    font-size: 12px;
    color: var(--text-white);
    margin-left: -10px;
}

.trust-text p {
    font-family: 'SpaceGrotesk-Medium';
    font-size: 14px;
    color: var(--text-muted);
    margin-bottom: 2px;
}

.trust-stars {
    font-family: 'SpaceGrotesk-Medium';
    color: #FBBF24;
    font-size: 14px;
}

.trust-stars i {
    margin-right: 2px;
}

/* Hero Visual */
.hero-visual {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
}

.hero-phone {
    width: 320px;
    height: 640px;
    background: var(--dark-card);
    border-radius: 40px;
    padding: 12px;
    border: 1px solid var(--border-color);
    box-shadow: var(--shadow);
}

.phone-screen {
    width: 100%;
    height: 100%;
    background: radial-gradient(ellipse at 50% 20%, rgba(15, 92, 115, 0.1), transparent);
    border-radius: 32px;
    padding: 16px;
    display: flex;
    flex-direction: column;
}

.phone-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-bottom: 16px;
    border-bottom: 1px solid var(--border-color);
    font-family: 'SpaceGrotesk-Medium';
    font-size: 12px;
    color: var(--text-muted);
}

.phone-icons {
    display: flex;
    gap: 6px;
}

.phone-content {
    flex: 1;
    padding-top: 16px;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.phone-balance {
    background: rgba(15, 92, 115, 0.1);
    border: 1px solid rgba(15, 92, 115, 0.15);
    border-radius: var(--radius-sm);
    padding: 16px;
    text-align: center;
}

.phone-balance span {
    font-family: 'SpaceGrotesk-Medium';
    font-size: 12px;
    color: var(--text-muted);
    display: block;
    margin-bottom: 4px;
}

.phone-balance h3 {
    font-family: 'SpaceGrotesk-Bold';
    font-size: 28px;
    color: var(--text-white);
}

.phone-services {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 8px;
}

.service-icon {
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-sm);
    padding: 12px 0;
    text-align: center;
    font-size: 22px;
    color: var(--text-muted);
    transition: var(--transition);
}

.service-icon:hover {
    background: rgba(15, 92, 115, 0.08);
    border-color: rgba(15, 92, 115, 0.2);
    color: var(--text-white);
}

.phone-transaction {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.tx-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 12px;
    background: rgba(255, 255, 255, 0.02);
    border-radius: 8px;
    font-family: 'SpaceGrotesk-Medium';
    font-size: 13px;
}

.tx-item span:first-child {
    color: var(--text-muted);
}

.tx-item i {
    margin-right: 6px;
    color: var(--text-muted-2);
}

.tx-amount {
    color: #F87171;
    font-weight: 600;
}

/* Floating Cards */
.floating-card {
    position: absolute;
    padding: 12px 20px;
    background: var(--dark-card);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-sm);
    font-family: 'SpaceGrotesk-SemiBold';
    font-size: 14px;
    animation: float 3s ease-in-out infinite;
    box-shadow: var(--shadow);
    backdrop-filter: blur(10px);
}

.floating-card i {
    margin-right: 8px;
}

.card1 {
    top: 10%;
    right: -10%;
    animation-delay: 0s;
    color: var(--secondary);
}

.card2 {
    bottom: 20%;
    left: -15%;
    animation-delay: 1s;
    color: #60A5FA;
}

.card3 {
    top: 50%;
    right: -5%;
    animation-delay: 2s;
    color: #FBBF24;
}

@keyframes float {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-10px); }
}

/* ============================================
   BRANDS SECTION
   ============================================ */
.brands-section {
    padding: 40px 0;
    border-top: 1px solid var(--border-color);
    border-bottom: 1px solid var(--border-color);
    overflow: hidden;
}

.brands-label {
    text-align: center;
    font-family: 'SpaceGrotesk-Medium';
    color: var(--text-muted);
    font-size: 14px;
    margin-bottom: 24px;
    letter-spacing: 2px;
    text-transform: uppercase;
}

.brands-slider {
    overflow: hidden;
    position: relative;
}

.brands-track {
    display: flex;
    gap: 60px;
    animation: scrollBrands 30s linear infinite;
    width: max-content;
}

.brands-track:hover {
    animation-play-state: paused;
}

@keyframes scrollBrands {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

.brand-item {
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    filter: grayscale(1) brightness(0.5);
    transition: var(--transition);
}

.brand-item:hover {
    filter: grayscale(0) brightness(1);
}

.brand-item img {
    height: 40px;
    width: auto;
    object-fit: contain;
}

/* ============================================
   FEATURES SECTION
   ============================================ */
.features-section {
    padding: 80px 0;
}

.section-header {
    text-align: center;
    max-width: 640px;
    margin: 0 auto 56px;
}

.section-tag {
    display: inline-block;
    padding: 6px 16px;
    background: rgba(15, 92, 115, 0.1);
    color: var(--secondary);
    border-radius: 100px;
    font-family: 'SpaceGrotesk-SemiBold';
    font-size: 13px;
    letter-spacing: 0.5px;
    margin-bottom: 12px;
}

.section-header h2 {
    font-family: 'SpaceGrotesk-Bold';
    font-size: 40px;
    margin-bottom: 12px;
    letter-spacing: -0.02em;
}

.section-header p {
    font-family: 'SpaceGrotesk-Regular';
    font-size: 17px;
    color: var(--text-muted);
}

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

.feature-card {
    padding: 32px 24px;
    background: var(--dark-card);
    border: 1px solid var(--border-color);
    border-radius: var(--radius);
    transition: var(--transition);
}

.feature-card:hover {
    transform: translateY(-4px);
    border-color: rgba(15, 92, 115, 0.3);
    box-shadow: var(--shadow);
}

.feature-icon {
    font-size: 36px;
    color: var(--secondary);
    margin-bottom: 16px;
}

.feature-card h3 {
    font-family: 'SpaceGrotesk-SemiBold';
    font-size: 18px;
    margin-bottom: 8px;
}

.feature-card p {
    font-family: 'SpaceGrotesk-Regular';
    color: var(--text-muted);
    font-size: 14px;
    line-height: 1.7;
}

/* ============================================
   HOW IT WORKS
   ============================================ */
.how-it-works {
    padding: 80px 0;
    background: var(--dark-card);
}

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

.step-card {
    text-align: center;
    padding: 40px 24px;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid var(--border-color);
    border-radius: var(--radius);
    position: relative;
    transition: var(--transition);
}

.step-card:hover {
    border-color: rgba(15, 92, 115, 0.3);
    transform: translateY(-4px);
}

.step-number {
    position: absolute;
    top: -12px;
    right: 20px;
    font-family: 'SpaceGrotesk-Bold';
    font-size: 48px;
    color: rgba(15, 92, 115, 0.1);
}

.step-icon {
    font-size: 48px;
    color: var(--secondary);
    margin-bottom: 16px;
}

.step-card h3 {
    font-family: 'SpaceGrotesk-SemiBold';
    font-size: 20px;
    margin-bottom: 8px;
}

.step-card p {
    font-family: 'SpaceGrotesk-Regular';
    color: var(--text-muted);
    font-size: 14px;
    line-height: 1.7;
}

/* ============================================
   ABOUT SECTION
   ============================================ */
.about-section {
    padding: 80px 0;
}

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

.about-image-wrapper {
    position: relative;
}

.about-image-container {
    position: relative;
    border-radius: var(--radius);
    overflow: hidden;
    border: 1px solid var(--border-color);
}

.about-image-container img {
    width: 100%;
    height: auto;
    display: block;
}

.about-floating-card {
    position: absolute;
    bottom: 24px;
    left: 24px;
    padding: 12px 20px;
    background: var(--dark-card);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-sm);
    display: flex;
    align-items: center;
    gap: 10px;
    font-family: 'SpaceGrotesk-SemiBold';
    color: var(--secondary);
    backdrop-filter: blur(10px);
}

.about-floating-card i {
    font-size: 20px;
}

.about-content h2 {
    font-family: 'SpaceGrotesk-Bold';
    font-size: 36px;
    margin-bottom: 16px;
}

.about-content p {
    font-family: 'SpaceGrotesk-Regular';
    color: var(--text-muted);
    font-size: 16px;
    line-height: 1.7;
    margin-bottom: 24px;
}

.about-features {
    list-style: none;
    padding: 0;
    margin-bottom: 32px;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.about-features li {
    display: flex;
    align-items: center;
    gap: 12px;
    font-family: 'SpaceGrotesk-Medium';
    color: var(--text-muted);
}

.about-features li i {
    color: var(--secondary);
    font-size: 18px;
}

/* ============================================
   STATS SECTION
   ============================================ */
.stats-section {
    padding: 60px 0;
    background: var(--dark-card);
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}

.stat-item {
    text-align: center;
    padding: 24px;
}

.stat-number {
    font-family: 'SpaceGrotesk-Bold';
    font-size: 48px;
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.stat-label {
    display: block;
    font-family: 'SpaceGrotesk-Medium';
    color: var(--text-muted);
    font-size: 14px;
    margin-top: 4px;
}

/* ============================================
   TESTIMONIALS
   ============================================ */
.testimonials-section {
    padding: 80px 0;
}

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

.testimonial-card {
    padding: 28px;
    background: var(--dark-card);
    border: 1px solid var(--border-color);
    border-radius: var(--radius);
    transition: var(--transition);
}

.testimonial-card:hover {
    border-color: rgba(15, 92, 115, 0.2);
}

.testimonial-card.featured {
    border-color: rgba(15, 92, 115, 0.3);
    background: rgba(15, 92, 115, 0.05);
}

.testimonial-rating {
    color: #FBBF24;
    font-size: 14px;
    margin-bottom: 12px;
    letter-spacing: 2px;
}

.testimonial-text {
    font-family: 'SpaceGrotesk-Regular';
    font-size: 15px;
    line-height: 1.7;
    color: var(--text-muted);
    margin-bottom: 20px;
    font-style: italic;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 14px;
}

.testimonial-author img {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid rgba(15, 92, 115, 0.2);
}

.testimonial-author h4 {
    font-family: 'SpaceGrotesk-SemiBold';
    font-size: 15px;
    margin-bottom: 2px;
}

.testimonial-author span {
    font-family: 'SpaceGrotesk-Regular';
    font-size: 13px;
    color: var(--text-muted);
}

/* ============================================
   FAQ SECTION
   ============================================ */
.faq-section {
    padding: 80px 0;
    background: var(--dark-card);
}

.faq-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: start;
}

.faq-header h2 {
    font-family: 'SpaceGrotesk-Bold';
    font-size: 36px;
    margin-bottom: 12px;
}

.faq-header p {
    font-family: 'SpaceGrotesk-Regular';
    color: var(--text-muted);
}

.faq-list {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.faq-item {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-sm);
    overflow: hidden;
    transition: var(--transition);
}

.faq-item:hover {
    border-color: rgba(15, 92, 115, 0.15);
}

.faq-item.active {
    border-color: rgba(15, 92, 115, 0.3);
}

.faq-question {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 18px 20px;
    background: none;
    border: none;
    font-family: 'SpaceGrotesk-Medium';
    color: var(--text-white);
    font-size: 15px;
    cursor: pointer;
    transition: var(--transition);
    text-align: left;
}

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

.faq-icon {
    font-size: 18px;
    color: var(--text-muted);
    transition: var(--transition);
    flex-shrink: 0;
    margin-left: 12px;
}

.faq-item.active .faq-icon {
    color: var(--secondary);
}

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

.faq-item.active .faq-answer {
    max-height: 300px;
}

.faq-answer p {
    padding: 0 20px 18px;
    font-family: 'SpaceGrotesk-Regular';
    color: var(--text-muted);
    font-size: 14px;
    line-height: 1.7;
}

/* ============================================
   CTA SECTION
   ============================================ */
.cta-section {
    padding: 80px 0;
}

.cta-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    padding: 60px 80px;
    background: radial-gradient(ellipse at 30% 50%, rgba(15, 92, 115, 0.1), transparent 70%),
                var(--dark-card);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-lg);
}

.cta-tag {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 6px 16px;
    background: rgba(69, 230, 136, 0.1);
    color: var(--secondary);
    border-radius: 100px;
    font-family: 'SpaceGrotesk-SemiBold';
    font-size: 13px;
    margin-bottom: 12px;
}

.cta-content h2 {
    font-family: 'SpaceGrotesk-Bold';
    font-size: 36px;
    margin-bottom: 12px;
}

.cta-content p {
    font-family: 'SpaceGrotesk-Regular';
    color: var(--text-muted);
    font-size: 16px;
    margin-bottom: 28px;
}

.cta-buttons {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
}

.store-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 12px 24px;
    font-family: 'SpaceGrotesk-SemiBold';
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-sm);
    color: var(--text-white);
    text-decoration: none;
    transition: var(--transition);
}

.store-btn:hover {
    background: rgba(255, 255, 255, 0.1);
    transform: translateY(-2px);
}

.store-btn i {
    font-size: 20px;
}

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

.cta-phone img {
    max-width: 280px;
    height: auto;
    filter: drop-shadow(0 20px 60px rgba(15, 92, 115, 0.3));
}

/* ============================================
   FOOTER
   ============================================ */
.footer {
    background: rgba(10, 10, 26, 0.95);
    border-top: 1px solid var(--border-color);
    padding: 60px 0 20px;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1.5fr;
    gap: 48px;
    padding-bottom: 40px;
    border-bottom: 1px solid var(--border-color);
}

/* Brand */
.footer-brand {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
}

.footer-logo .logo-icon {
    width: 36px;
    height: 36px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    color: #fff;
}

.footer-logo .logo-text {
    font-family: 'SpaceGrotesk-Bold';
    font-size: 18px;
    color: var(--text-white);
    letter-spacing: -0.5px;
}

.footer-description {
    font-family: 'SpaceGrotesk-Regular';
    color: var(--text-muted);
    font-size: 14px;
    line-height: 1.7;
    max-width: 320px;
}

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

.social-link {
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid var(--border-color);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-muted);
    transition: var(--transition);
    text-decoration: none;
}

.social-link:hover {
    background: rgba(15, 92, 115, 0.08);
    border-color: rgba(15, 92, 115, 0.2);
    color: var(--text-white);
    transform: translateY(-2px);
}

/* Footer Links */
.footer-title {
    font-family: 'SpaceGrotesk-SemiBold';
    font-size: 16px;
    color: var(--text-white);
    margin-bottom: 16px;
}

.footer-links ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.footer-links ul li a {
    font-family: 'SpaceGrotesk-Regular';
    color: var(--text-muted);
    text-decoration: none;
    font-size: 14px;
    transition: var(--transition);
}

.footer-links ul li a:hover {
    color: var(--text-white);
    padding-left: 4px;
}

/* Contact */
.contact-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.contact-list li {
    display: flex;
    align-items: center;
    gap: 12px;
    font-family: 'SpaceGrotesk-Regular';
    color: var(--text-muted);
    font-size: 14px;
}

.contact-list li i {
    width: 16px;
    color: var(--text-muted-2);
}

.contact-list li a {
    color: var(--text-muted);
    text-decoration: none;
    transition: var(--transition);
}

.contact-list li a:hover {
    color: var(--text-white);
}

/* Bottom Bar */
.footer-bottom {
    padding-top: 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 12px;
}

.footer-copyright {
    font-family: 'SpaceGrotesk-Medium';
    color: var(--text-muted-2);
    font-size: 13px;
}

.footer-bottom-links {
    display: flex;
    gap: 24px;
}

.footer-bottom-links a {
    font-family: 'SpaceGrotesk-Medium';
    color: var(--text-muted-2);
    text-decoration: none;
    font-size: 13px;
    transition: var(--transition);
}

.footer-bottom-links a:hover {
    color: var(--text-white);
}

/* ============================================
   RESPONSIVE DESIGN
   ============================================ */
@media (max-width: 1024px) {
    .header-nav {
        display: none;
    }

    .header-actions {
        display: none;
    }

    .mobile-toggle {
        display: flex;
    }

    .mobile-menu {
        display: flex;
    }

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

    .hero-description {
        margin-left: auto;
        margin-right: auto;
    }

    .hero-actions {
        justify-content: center;
    }

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

    .hero-visual {
        order: -1;
    }

    .hero-phone {
        width: 260px;
        height: 520px;
    }

    .floating-card {
        display: none;
    }

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

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

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

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

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

    .cta-wrapper {
        grid-template-columns: 1fr;
        text-align: center;
        padding: 40px 24px;
    }

    .cta-buttons {
        justify-content: center;
    }

    .cta-visual {
        order: -1;
    }

    .cta-phone img {
        max-width: 200px;
    }

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

    .footer-brand {
        grid-column: 1 / -1;
    }

    .footer-description {
        max-width: 100%;
    }

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

    .about-features {
        align-items: center;
    }
}

@media (max-width: 768px) {
    .hero-title {
        font-size: 36px;
    }

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

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

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

    .section-header h2 {
        font-size: 28px;
    }

    .hero-phone {
        width: 220px;
        height: 440px;
    }

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

    .brand-item img {
        height: 30px;
    }

    .cta-content h2 {
        font-size: 28px;
    }

    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }

    .store-btn {
        width: 100%;
        justify-content: center;
    }

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

    .footer-brand {
        grid-column: 1;
    }

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

    .footer-bottom-links {
        flex-wrap: wrap;
        justify-content: center;
        gap: 16px;
    }

    .about-content h2 {
        font-size: 28px;
    }

    .about-floating-card {
        bottom: 12px;
        left: 12px;
        padding: 8px 16px;
        font-size: 12px;
    }

    .faq-header h2 {
        font-size: 28px;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 28px;
    }

    .hero-actions {
        flex-direction: column;
        align-items: center;
    }

    .btn-primary, .btn-secondary {
        width: 100%;
        justify-content: center;
    }

    .hero-phone {
        width: 100%;
        height: 90%;
        padding: 8px;
    }

    .phone-screen {
        border-radius: 24px;
        padding: 10px;
    }

    .phone-balance h3 {
        font-size: 20px;
    }

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

    .service-icon {
        padding: 8px 0;
        font-size: 18px;
    }

    .phone-header {
        font-size: 10px;
    }

    .tx-item {
        font-size: 11px;
        padding: 6px 8px;
    }

    .stats-grid {
        grid-template-columns: 1fr 1fr;
        gap: 12px;
    }

    .stat-number {
        font-size: 32px;
    }

    .header {
        padding: 12px 0;
    }

    .logo-text {
        font-size: 16px;
    }

    .logo-icon {
        width: 32px;
        height: 32px;
        font-size: 16px;
    }

    .footer-logo .logo-text {
        font-size: 16px;
    }

    .footer-description {
        font-size: 13px;
    }

    .footer-title {
        font-size: 14px;
    }

    .contact-list li {
        font-size: 13px;
    }

    .footer-copyright {
        font-size: 12px;
    }

    .footer-bottom-links a {
        font-size: 12px;
    }

    .section-header h2 {
        font-size: 24px;
    }

    .cta-content h2 {
        font-size: 24px;
    }

    .cta-wrapper {
        padding: 24px 16px;
    }

    .cta-phone img {
        max-width: 150px;
    }
}


/* Mobile Close Button */
.mobile-close-btn {
    position: absolute;
    top: 20px;
    right: 24px;
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid var(--border-color);
    border-radius: 50%;
    color: var(--text-white);
    font-size: 20px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
    z-index: 10;
}

.mobile-close-btn:hover {
    background: rgba(255, 255, 255, 0.1);
    transform: rotate(90deg);
}

/* ============================================
   PAGE STYLES
   ============================================ */

/* ===== PAGE HERO ===== */
.page-hero-section {
    padding-top: 80px;
    position: relative;
    overflow: hidden;
}

.page-hero-bg {
    position: relative;
    padding: 60px 0 80px;
    background: radial-gradient(ellipse at 30% 50%, rgba(15, 92, 115, 0.15), transparent 70%),
                radial-gradient(ellipse at 70% 50%, rgba(69, 230, 136, 0.08), transparent 60%),
                var(--dark);
    border-bottom: 1px solid var(--border-color);
}

.page-hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-size: 200px, 150px;
    opacity: 0.1;
    pointer-events: none;
}

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

.page-hero-content {
    max-width: 700px;
}

.page-hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 6px 16px;
    background: rgba(69, 230, 136, 0.1);
    border: 1px solid rgba(69, 230, 136, 0.15);
    border-radius: 100px;
    font-family: var(--font-medium);
    font-size: 13px;
    color: var(--secondary);
    margin-bottom: 20px;
}

.page-hero-title {
    font-family: var(--font-bold);
    font-size: 44px;
    line-height: 1.1;
    margin-bottom: 16px;
    color: var(--text-white);
    letter-spacing: -0.02em;
}

.page-hero-title span {
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.page-hero-breadcrumb {
    display: flex;
    align-items: center;
    gap: 10px;
    font-family: var(--font-medium);
    font-size: 14px;
    color: var(--text-muted);
}

.breadcrumb-link {
    display: flex;
    align-items: center;
    gap: 6px;
    color: var(--text-muted);
    text-decoration: none;
    transition: var(--transition);
}

.breadcrumb-link:hover {
    color: var(--secondary);
}

.breadcrumb-link i {
    font-size: 14px;
}

.breadcrumb-separator {
    color: var(--text-muted-2);
    font-size: 12px;
}

.breadcrumb-current {
    color: var(--text-white);
    font-weight: 600;
}

/* ===== PAGE CONTENT ===== */
.page-content-section {
    padding: 60px 0;
}

.page-content-wrapper {
    max-width: 900px;
    margin: 0 auto;
}

.page-content {
    color: var(--text-muted);
    font-family: var(--font-regular);
    font-size: 16px;
    line-height: 1.8;
}

.page-content h1,
.page-content h2,
.page-content h3,
.page-content h4,
.page-content h5,
.page-content h6 {
    color: var(--text-white);
    font-family: var(--font-bold);
    margin-top: 32px;
    margin-bottom: 16px;
}

.page-content h1 { font-size: 32px; }
.page-content h2 { font-size: 28px; }
.page-content h3 { font-size: 24px; }
.page-content h4 { font-size: 20px; }
.page-content h5 { font-size: 18px; }
.page-content h6 { font-size: 16px; }

.page-content p {
    margin-bottom: 16px;
    color: var(--text-muted);
}

.page-content a {
    color: var(--secondary);
    text-decoration: none;
    transition: var(--transition);
}

.page-content a:hover {
    color: var(--secondary-light);
    text-decoration: underline;
}

.page-content ul,
.page-content ol {
    margin: 16px 0;
    padding-left: 24px;
}

.page-content ul li,
.page-content ol li {
    margin-bottom: 8px;
    color: var(--text-muted);
}

.page-content ul li::marker {
    color: var(--secondary);
}

.page-content blockquote {
    margin: 24px 0;
    padding: 20px 24px;
    border-left: 4px solid var(--secondary);
    background: rgba(255, 255, 255, 0.02);
    border-radius: 0 12px 12px 0;
    font-style: italic;
    color: var(--text-muted);
}

.page-content img {
    max-width: 100%;
    height: auto;
    border-radius: var(--radius-sm);
    margin: 20px 0;
}

.page-content table {
    width: 100%;
    border-collapse: collapse;
    margin: 20px 0;
}

.page-content table th,
.page-content table td {
    padding: 12px 16px;
    border: 1px solid var(--border-color);
    text-align: left;
}

.page-content table th {
    background: rgba(255, 255, 255, 0.04);
    color: var(--text-white);
    font-family: var(--font-semi-bold);
}

.page-content table td {
    color: var(--text-muted);
}

/* ===== PAGE CTA ===== */
.page-cta-section {
    padding: 60px 0;
}

.page-cta-wrapper {
    padding: 50px 60px;
    background: radial-gradient(ellipse at 30% 50%, rgba(15, 92, 115, 0.1), transparent 70%),
                var(--dark-card);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-lg);
    text-align: center;
}

.page-cta-tag {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 6px 16px;
    background: rgba(69, 230, 136, 0.1);
    color: var(--secondary);
    border-radius: 100px;
    font-family: var(--font-semi-bold);
    font-size: 13px;
    margin-bottom: 16px;
}

.page-cta-content h2 {
    font-family: var(--font-bold);
    font-size: 32px;
    margin-bottom: 12px;
    color: var(--text-white);
}

.page-cta-content p {
    font-family: var(--font-regular);
    color: var(--text-muted);
    font-size: 16px;
    max-width: 500px;
    margin: 0 auto 28px;
}

.page-cta-buttons {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
}

.page-cta-buttons .btn-primary,
.page-cta-buttons .btn-secondary {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 14px 32px;
    font-family: var(--font-semi-bold);
    font-size: 16px;
    border-radius: var(--radius-sm);
    text-decoration: none;
    transition: var(--transition);
}

.page-cta-buttons .btn-primary {
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    color: var(--text-white);
    box-shadow: 0 4px 20px rgba(15, 92, 115, 0.4);
}

.page-cta-buttons .btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(15, 92, 115, 0.5);
}

.page-cta-buttons .btn-secondary {
    background: rgba(255, 255, 255, 0.06);
    color: var(--text-white);
    border: 1px solid var(--border-color);
}

.page-cta-buttons .btn-secondary:hover {
    background: rgba(255, 255, 255, 0.1);
}

/* ============================================
   RESPONSIVE
   ============================================ */
@media (max-width: 768px) {
    .page-hero-title {
        font-size: 32px;
    }

    .page-hero-bg {
        padding: 40px 0 60px;
    }

    .page-cta-wrapper {
        padding: 30px 20px;
    }

    .page-cta-content h2 {
        font-size: 24px;
    }

    .page-cta-buttons {
        flex-direction: column;
        align-items: center;
    }

    .page-cta-buttons .btn-primary,
    .page-cta-buttons .btn-secondary {
        width: 100%;
        justify-content: center;
    }

    .page-content h1 { font-size: 26px; }
    .page-content h2 { font-size: 22px; }
    .page-content h3 { font-size: 20px; }
    .page-content h4 { font-size: 18px; }
}

@media (max-width: 480px) {
    .page-hero-title {
        font-size: 26px;
    }

    .page-hero-breadcrumb {
        font-size: 12px;
        flex-wrap: wrap;
    }

    .page-content-section {
        padding: 40px 0;
    }
}