/* ==========================================================================
   DESIGN SYSTEM & CONSTANTS
   ========================================================================== */
:root {
    /* Color Palette */
    --bg-dark: #0A0A0B;
    --bg-surface: #131315;
    --bg-surface-elevated: #1D1D20;
    
    --primary: #e94c1e;
    --primary-glow: rgba(233, 76, 30, 0.15);
    --secondary: #ff7a45;
    --secondary-glow: rgba(255, 122, 69, 0.1);
    --accent: #ff9e75;
    --accent-glow: rgba(255, 158, 117, 0.1);
    
    --success: #10b981;
    --success-glow: rgba(16, 185, 129, 0.15);
    
    --text-primary: #f8fafc;
    --text-secondary: #94a3b8;
    --text-muted: #64748b;
    
    /* Gradients */
    --gradient-primary: linear-gradient(135deg, #e94c1e 0%, #ff7a45 100%);
    --gradient-surface: linear-gradient(145deg, rgba(19, 19, 21, 0.9) 0%, rgba(10, 10, 11, 0.9) 100%);
    --gradient-text: linear-gradient(135deg, #f8fafc 40%, #ff9e75 100%);
    --gradient-accent: linear-gradient(135deg, #ff7a45 0%, #e94c1e 100%);
    
    /* Typography */
    --font-primary: 'Manrope', system-ui, -apple-system, sans-serif;
    --font-heading: 'Unbounded', sans-serif;
    
    /* Layout */
    --container-max-width: 1200px;
    --border-radius-sm: 8px;
    --border-radius-md: 16px;
    --border-radius-lg: 24px;
    --border-glass: 1px solid rgba(255, 255, 255, 0.05);
    
    /* Shadows & Glows */
    --shadow-premium: 0 20px 40px -15px rgba(0, 0, 0, 0.7);
    --glow-orange: 0 0 30px rgba(233, 76, 30, 0.12);
}

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

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

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

.container {
    width: 100%;
    max-width: var(--container-max-width);
    margin: 0 auto;
    padding: 0 24px;
}

/* Section Helpers & Glows */
section {
    position: relative;
    overflow-x: clip;
    overflow-y: visible;
}

.section-glow {
    position: absolute;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(233, 76, 30, 0.04) 0%, transparent 70%);
    filter: blur(120px);
    pointer-events: none;
    z-index: 0;
}

.section-glow-left {
    left: -15%;
    top: 50%;
    transform: translateY(-50%);
}

.section-glow-right {
    right: -15%;
    top: 50%;
    transform: translateY(-50%);
}

.section-glow-center {
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
}

/* Scrollbar Style */
::-webkit-scrollbar {
    width: 10px;
}
::-webkit-scrollbar-track {
    background: var(--bg-dark);
}
::-webkit-scrollbar-thumb {
    background: var(--bg-surface-elevated);
    border-radius: var(--border-radius-sm);
    border: 2px solid var(--bg-dark);
}
::-webkit-scrollbar-thumb:hover {
    background: var(--primary);
}

/* ==========================================================================
   TYPOGRAPHY & UTILITIES
   ========================================================================== */
h1, h2, h3, h4 {
    font-family: var(--font-heading);
    font-weight: 800;
    letter-spacing: -0.03em;
    line-height: 1.3;
}

.gradient-text {
    background: linear-gradient(135deg, #e94c1e 0%, #ff9e75 60%, #ff7a45 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.price-highlight {
    background: linear-gradient(135deg, #e94c1e 0%, #ff9e75 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-weight: 800;
    position: relative;
    text-shadow: 0 0 20px rgba(233, 76, 30, 0.3);
}

/* ==========================================================================
   BUTTONS
   ========================================================================== */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    font-family: var(--font-heading);
    font-weight: 600;
    text-decoration: none;
    padding: 12px 24px;
    border-radius: var(--border-radius-sm);
    transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
    cursor: pointer;
    border: none;
}

.btn-primary {
    background: var(--gradient-primary);
    color: var(--bg-dark);
    box-shadow: 0 4px 20px rgba(0, 229, 255, 0.25);
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.btn-primary::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #ff7a45 0%, #e94c1e 100%);
    opacity: 0;
    z-index: -1;
    transition: opacity 0.4s ease;
}

.btn-primary:hover {
    box-shadow: 0 6px 24px var(--primary-glow);
    transform: translateY(-2px);
    color: #ffffff;
}

.btn-primary:hover::before {
    opacity: 1;
}

.btn-secondary {
    background: rgba(255, 255, 255, 0.03);
    color: var(--text-primary);
    border: var(--border-glass);
    backdrop-filter: blur(10px);
}

.btn-secondary:hover {
    background: rgba(255, 255, 255, 0.08);
    border-color: var(--text-secondary);
    transform: translateY(-2px);
}

.btn-lg {
    padding: 16px 32px;
    font-size: 1.125rem;
    border-radius: var(--border-radius-md);
}

.btn-block {
    display: flex;
    width: 100%;
}

/* ==========================================================================
   HEADER / NAVIGATION
   ========================================================================== */
.header {
    position: fixed;
    top: 24px;
    left: 50%;
    transform: translateX(-50%);
    width: calc(100% - 48px);
    max-width: var(--container-max-width);
    z-index: 1000;
    background: rgba(19, 19, 21, 0.75);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 100px;
    transition: all 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.header.scrolled {
    top: 12px;
    background: rgba(10, 10, 11, 0.9);
    border-color: rgba(233, 76, 30, 0.15);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.5), 0 0 30px rgba(233, 76, 30, 0.05);
}

.header-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 70px;
    padding: 0 28px;
}

.logo {
    display: flex;
    align-items: center;
    text-decoration: none;
    position: relative;
    gap: 6px;
}

.logo-img {
    height: 48px;
    width: auto;
    display: block;
}

.logo-img-footer {
    height: 54px;
    width: auto;
    display: block;
}

.nav-menu {
    display: flex;
    align-items: center;
    gap: 16px;
}

.nav-link {
    color: var(--text-secondary);
    text-decoration: none;
    font-size: 0.9rem;
    font-weight: 500;
    transition: all 0.3s ease;
    padding: 8px 16px;
    border-radius: 50px;
    white-space: nowrap;
}

.nav-link:hover {
    color: var(--primary);
    background: rgba(233, 76, 30, 0.05);
}

.header-actions {
    display: flex;
    align-items: center;
    gap: 16px;
}

.burger-menu {
    display: none;
    flex-direction: column;
    justify-content: space-between;
    width: 24px;
    height: 18px;
    background: transparent;
    border: none;
    cursor: pointer;
    z-index: 1001;
}

.burger-menu span {
    width: 100%;
    height: 2px;
    background-color: var(--text-primary);
    transition: all 0.3s ease;
}

/* ==========================================================================
   HERO SECTION
   ========================================================================== */
.hero {
    position: relative;
    padding: 160px 0 100px 0;
}

.hero-bg-glow {
    position: absolute;
    top: -10%;
    right: -10%;
    width: 60%;
    height: 80%;
    background: radial-gradient(circle, rgba(233, 76, 30, 0.08) 0%, rgba(255, 122, 69, 0.02) 50%, transparent 100%);
    pointer-events: none;
}

.hero-container {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 48px;
    align-items: center;
}

.badge-premium {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(255, 255, 255, 0.03);
    border: var(--border-glass);
    padding: 8px 16px;
    border-radius: 50px;
    margin-bottom: 24px;
    backdrop-filter: blur(10px);
}

.badge-text {
    font-size: 0.85rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--text-secondary);
}

.hero-title {
    font-size: 4.25rem;
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 24px;
    color: var(--text-primary);
}

.hero-description {
    font-size: 1.2rem;
    color: var(--text-secondary);
    margin-bottom: 40px;
    max-width: 600px;
}

.hero-scroll-btn {
    display: none;
}

.hero-cta {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 48px;
}

.hero-stats {
    display: flex;
    align-items: center;
    gap: 32px;
}

.stat-item {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.stat-num {
    font-family: var(--font-heading);
    font-size: 2rem;
    font-weight: 800;
    color: var(--primary);
    text-shadow: 0 0 15px var(--primary-glow);
}

.stat-label {
    font-size: 0.85rem;
    color: var(--text-secondary);
    max-width: 140px;
    line-height: 1.3;
}

.stat-item-separator {
    width: 1px;
    height: 40px;
    background: rgba(255, 255, 255, 0.08);
}

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

.hero-image-wrapper {
    position: relative;
    width: 100%;
    max-width: 500px;
    border-radius: var(--border-radius-lg);
    overflow: visible;
}

.hero-image {
    width: 100%;
    border-radius: var(--border-radius-lg);
    box-shadow: var(--shadow-premium), var(--glow-orange);
    border: var(--border-glass);
    display: block;
}



/* App Download Badges */
.app-badges {
    display: flex;
    gap: 16px;
    margin-top: 24px;
    flex-wrap: wrap;
}

.app-btn {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    background: var(--bg-surface);
    border: var(--border-glass);
    padding: 12px 24px;
    border-radius: var(--border-radius-md);
    color: var(--text-primary);
    text-decoration: none;
    transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
}

.app-btn:hover {
    background: var(--bg-surface-elevated);
    border-color: var(--primary);
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(233, 76, 30, 0.1);
}

.app-btn svg {
    color: var(--text-primary);
    flex-shrink: 0;
}

.app-btn-text {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    line-height: 1.2;
}

.app-btn-text span {
    font-size: 0.65rem;
    color: var(--text-secondary);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 2px;
}

.app-btn-text strong {
    font-family: var(--font-heading);
    font-size: 0.95rem;
    font-weight: 700;
}

.widget-icon {
    width: 40px;
    height: 40px;
    background: rgba(0, 229, 255, 0.1);
    border-radius: var(--border-radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
}

.secure-icon {
    background: rgba(16, 185, 129, 0.1);
}

.widget-content {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.widget-title {
    font-size: 0.85rem;
    font-weight: 700;
    color: var(--text-primary);
}

.widget-desc {
    font-size: 0.75rem;
    color: var(--text-secondary);
}

/* ==========================================================================
   COMMON SECTION STYLES
   ========================================================================== */
section {
    padding: 70px 0;
    position: relative;
}

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

.section-subtitle {
    font-family: var(--font-heading);
    font-size: 0.85rem;
    font-weight: 700;
    color: var(--primary);
    text-transform: uppercase;
    letter-spacing: 2px;
    display: block;
    margin-bottom: 12px;
}

.section-title {
    font-size: 3rem;
    font-weight: 800;
    margin-bottom: 20px;
}

.section-description {
    font-size: 1.1rem;
    color: var(--text-secondary);
}

/* ==========================================================================
   HOW IT WORKS SECTION
   ========================================================================== */
.steps-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
}

.step-card {
    background: var(--gradient-surface);
    border: var(--border-glass);
    border-radius: var(--border-radius-lg);
    padding: 48px 32px;
    position: relative;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
}

.step-card:hover {
    border-color: var(--primary);
    box-shadow: 0 15px 35px -10px rgba(233, 76, 30, 0.15);
    transform: translateY(-8px);
}

.step-num-bg {
    position: absolute;
    top: -10px;
    right: -10px;
    font-family: var(--font-heading);
    font-size: 8rem;
    font-weight: 900;
    color: rgba(255, 255, 255, 0.02);
    line-height: 1;
    pointer-events: none;
    user-select: none;
    transition: color 0.4s ease;
}

.step-card:hover .step-num-bg {
    color: rgba(233, 76, 30, 0.04);
}

.step-icon-box {
    width: 64px;
    height: 64px;
    background: linear-gradient(135deg, rgba(233, 76, 30, 0.05) 0%, rgba(255, 122, 69, 0.05) 100%);
    border: var(--border-glass);
    border-radius: var(--border-radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 32px;
    color: var(--primary);
    transition: all 0.4s ease;
}

.step-card:hover .step-icon-box {
    background: var(--gradient-primary);
    color: var(--bg-dark);
    box-shadow: 0 0 20px var(--primary-glow);
}

.step-title {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 16px;
}

.step-desc {
    color: var(--text-secondary);
    font-size: 1.05rem;
}

/* ==========================================================================
   BENEFITS SECTION
   ========================================================================== */
.benefits {
    padding: 100px 0;
    position: relative;
}

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

.benefit-card {
    background: var(--gradient-surface);
    border: var(--border-glass);
    border-radius: var(--border-radius-lg);
    padding: 40px 32px;
    transition: all 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    position: relative;
    overflow: hidden;
}

.benefit-card:hover {
    border-color: var(--primary);
    box-shadow: 0 15px 35px -10px rgba(233, 76, 30, 0.15);
    transform: translateY(-8px);
}

.benefit-icon {
    width: 64px;
    height: 64px;
    background: linear-gradient(135deg, rgba(233, 76, 30, 0.05) 0%, rgba(255, 122, 69, 0.05) 100%);
    border: var(--border-glass);
    border-radius: var(--border-radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 28px;
    color: var(--primary);
    transition: all 0.4s ease;
}

.benefit-card:hover .benefit-icon {
    background: var(--gradient-primary);
    color: var(--bg-dark);
    box-shadow: 0 0 20px rgba(233, 76, 30, 0.4);
}

.benefit-title {
    font-size: 1.35rem;
    font-weight: 700;
    margin-bottom: 16px;
    line-height: 1.4;
}

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

/* ==========================================================================
   TRANSPORT SECTION
   ========================================================================== */
.transport-section {
    padding: 100px 0;
    position: relative;
}

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

.transport-card {
    grid-column: span 2;
}

.transport-card:nth-child(4) {
    grid-column: 2 / span 2;
}

.transport-card:nth-child(5) {
    grid-column: 4 / span 2;
}

.transport-card {
    background: var(--gradient-surface);
    border: var(--border-glass);
    border-radius: var(--border-radius-lg);
    padding: 32px 24px;
    transition: all 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    height: 100%;
}

.transport-card:hover {
    border-color: var(--primary);
    box-shadow: 0 15px 30px -10px rgba(233, 76, 30, 0.15);
    transform: translateY(-6px);
}

.transport-icon-box {
    margin-bottom: 24px;
    width: 100%;
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.transport-img {
    height: 100%;
    width: auto;
    max-width: 100%;
    object-fit: contain;
    display: block;
    transition: transform 0.4s ease, filter 0.4s ease;
    filter: drop-shadow(0 4px 10px rgba(0, 0, 0, 0.4)) grayscale(0.2);
}

.transport-card:hover .transport-img {
    transform: scale(1.06) translateY(-4px);
    filter: drop-shadow(0 12px 20px rgba(233, 76, 30, 0.2)) grayscale(0);
}

.transport-weight {
    font-family: var(--font-heading);
    font-size: 1.15rem;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 8px;
}

.transport-class {
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 12px;
}

.transport-desc {
    color: var(--text-secondary);
    font-size: 0.98rem;
    line-height: 1.5;
    margin-top: auto;
}

/* ==========================================================================
   PAYMENT METHODS SECTION
   ========================================================================== */
.payment-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
}

.payment-card {
    background: var(--gradient-surface);
    border: var(--border-glass);
    border-radius: var(--border-radius-lg);
    padding: 48px 32px;
    display: flex;
    flex-direction: column;
    position: relative;
    transition: all 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
}

.payment-card:hover {
    transform: translateY(-8px);
    border-color: rgba(255, 255, 255, 0.1);
}

.payment-icon-wrapper {
    width: 80px;
    height: 80px;
    background: rgba(255, 255, 255, 0.02);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 32px;
    color: var(--primary);
    border: var(--border-glass);
}

.payment-title {
    font-size: 1.6rem;
    font-weight: 700;
    margin-bottom: 16px;
}

.payment-desc {
    color: var(--text-secondary);
    font-size: 1.05rem;
    margin-bottom: 24px;
    flex-grow: 1;
}

.payment-bullets {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 12px;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    padding-top: 24px;
}

.payment-bullets li {
    font-size: 0.875rem;
    color: var(--text-primary);
    display: flex;
    align-items: center;
    gap: 10px;
}

.payment-bullets li::before {
    content: '';
    display: block;
    width: 6px;
    height: 6px;
    background: var(--primary);
    border-radius: 50%;
}

/* Featured / Safe Deal Style */
.payment-card-featured {
    border-color: var(--secondary);
    box-shadow: 0 10px 30px rgba(233, 76, 30, 0.05);
    background: linear-gradient(145deg, rgba(29, 29, 32, 0.95) 0%, rgba(19, 19, 21, 0.95) 100%);
}

.payment-card-featured:hover {
    border-color: var(--primary);
    box-shadow: 0 15px 40px rgba(233, 76, 30, 0.12);
}

.payment-card-featured .payment-icon-wrapper {
    background: rgba(233, 76, 30, 0.08);
    color: var(--primary);
    border-color: rgba(233, 76, 30, 0.15);
}

.featured-badge {
    position: absolute;
    top: 24px;
    right: 24px;
    background: var(--success);
    color: #ffffff;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    padding: 6px 12px;
    border-radius: 50px;
}

/* ==========================================================================
   CALCULATOR SECTION
   ========================================================================== */
/* .calculator styles */

.calculator-glow {
    position: absolute;
    bottom: -10%;
    left: -10%;
    width: 50%;
    height: 80%;
    background: radial-gradient(circle, rgba(233, 76, 30, 0.08) 0%, transparent 80%);
    pointer-events: none;
}

.calculator-container {
    display: grid;
    grid-template-columns: 0.9fr 1.1fr;
    gap: 64px;
    align-items: center;
}

.calculator-text-side {
    display: flex;
    flex-direction: column;
}

.calculator-features {
    display: flex;
    flex-direction: column;
    gap: 16px;
    margin-top: 32px;
}

.calc-feat-item {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 1rem;
    color: var(--text-primary);
}

/* Widget Card */
.calculator-widget {
    background: var(--gradient-surface);
    border: var(--border-glass);
    border-radius: var(--border-radius-lg);
    padding: 40px;
    box-shadow: var(--shadow-premium);
    position: relative;
    border-color: rgba(255, 255, 255, 0.08);
}

.calculator-widget::before {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: var(--border-radius-lg);
    padding: 1px;
    background: var(--gradient-primary);
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    pointer-events: none;
    opacity: 0.3;
    transition: opacity 0.3s ease;
}

.calculator-widget:hover::before {
    opacity: 0.6;
}

.widget-heading {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 32px;
    text-align: center;
}

.range-container {
    margin-bottom: 40px;
}

.range-labels {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 16px;
}

.range-labels span:first-child {
    font-size: 0.95rem;
    color: var(--text-secondary);
}

.range-value {
    font-family: var(--font-heading);
    font-size: 1.6rem;
    font-weight: 800;
    color: var(--primary);
}

/* Premium Slider Design */
.premium-slider {
    -webkit-appearance: none;
    width: 100%;
    height: 8px;
    border-radius: 4px;
    background: var(--bg-surface-elevated);
    outline: none;
    margin: 15px 0;
}

.premium-slider::-webkit-slider-thumb {
    -webkit-appearance: none;
    appearance: none;
    width: 24px;
    height: 24px;
    border-radius: 50%;
    background: var(--primary);
    cursor: pointer;
    box-shadow: 0 0 10px var(--primary);
    transition: transform 0.2s ease, background-color 0.2s ease;
}

.premium-slider::-webkit-slider-thumb:hover {
    transform: scale(1.2);
    background: #ffffff;
}

.premium-slider::-moz-range-thumb {
    width: 24px;
    height: 24px;
    border-radius: 50%;
    background: var(--primary);
    cursor: pointer;
    border: none;
    box-shadow: 0 0 10px var(--primary);
    transition: transform 0.2s ease, background-color 0.2s ease;
}

.premium-slider::-moz-range-thumb:hover {
    transform: scale(1.2);
    background: #ffffff;
}

.range-min-max {
    display: flex;
    justify-content: space-between;
    font-size: 0.75rem;
    color: var(--text-muted);
}

/* Comparison */
.comparison-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-bottom: 32px;
}

.comparison-card {
    padding: 20px;
    border-radius: var(--border-radius-md);
    display: flex;
    flex-direction: column;
    gap: 8px;
    border: var(--border-glass);
}

.comp-broker {
    background: rgba(255, 255, 255, 0.02);
}

.comp-gruzlog {
    background: rgba(233, 76, 30, 0.04);
    border-color: rgba(233, 76, 30, 0.2);
}

.comp-label {
    font-size: 0.8rem;
    color: var(--text-secondary);
}

.comp-price {
    font-family: var(--font-heading);
    font-size: 1.3rem;
    font-weight: 700;
}

.comp-broker .comp-price {
    color: var(--text-muted);
    text-decoration: line-through;
}

.comp-gruzlog .comp-price {
    color: var(--primary);
}

/* Savings Box */
.savings-container {
    background: rgba(16, 185, 129, 0.05);
    border: 1px solid rgba(16, 185, 129, 0.2);
    padding: 24px;
    border-radius: var(--border-radius-md);
    text-align: center;
    margin-bottom: 32px;
}

.savings-label {
    font-size: 0.9rem;
    color: var(--text-secondary);
    display: block;
    margin-bottom: 8px;
}

.savings-amount {
    font-family: var(--font-heading);
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--success);
    text-shadow: 0 0 20px rgba(16, 185, 129, 0.2);
}

/* ==========================================================================
   FAQ SECTION
   ========================================================================== */
.faq-list {
    max-width: 800px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.faq-item {
    background: var(--gradient-surface);
    border: var(--border-glass);
    border-radius: var(--border-radius-md);
    overflow: hidden;
    transition: all 0.3s ease;
}

.faq-item:hover {
    border-color: rgba(255, 255, 255, 0.1);
}

.faq-question {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 24px;
    background: transparent;
    border: none;
    color: var(--text-primary);
    font-family: var(--font-heading);
    font-size: 1.15rem;
    font-weight: 600;
    text-align: left;
    cursor: pointer;
}

.faq-icon {
    position: relative;
    width: 20px;
    height: 20px;
    flex-shrink: 0;
}

.faq-icon::before, .faq-icon::after {
    content: '';
    position: absolute;
    background: var(--primary);
    transition: transform 0.3s ease;
}

.faq-icon::before {
    top: 9px;
    left: 0;
    width: 20px;
    height: 2px;
}

.faq-icon::after {
    top: 0;
    left: 9px;
    width: 2px;
    height: 20px;
}

/* Open State */
.faq-item.active {
    border-color: rgba(233, 76, 30, 0.3);
    background: rgba(19, 19, 21, 0.95);
}

.faq-item.active .faq-icon::after {
    transform: rotate(90deg);
    opacity: 0;
}

.faq-item.active .faq-icon::before {
    transform: rotate(180deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
    padding: 0 24px;
}

.faq-answer p {
    color: var(--text-secondary);
    padding-bottom: 24px;
    font-size: 0.95rem;
    line-height: 1.6;
}

.faq-more {
    text-align: center;
    margin-top: 48px;
    padding: 32px;
    background: rgba(255, 255, 255, 0.02);
    border: var(--border-glass);
    border-radius: var(--border-radius-lg);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 16px;
    max-width: 650px;
    margin-left: auto;
    margin-right: auto;
}

.faq-more-text {
    color: var(--text-secondary);
    font-size: 1.05rem;
    font-weight: 500;
}

.faq-more-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

/* ==========================================================================
   BOTTOM CTA SECTION
   ========================================================================== */
.cta-banner {
    position: relative;
    padding: 80px 0;
    text-align: center;
}

.cta-bg-glow {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 80%;
    height: 80%;
    background: radial-gradient(circle, rgba(233, 76, 30, 0.05) 0%, rgba(255, 122, 69, 0.02) 60%, transparent 100%);
    pointer-events: none;
}

.cta-container {
    max-width: 800px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
    background: linear-gradient(135deg, rgba(20, 27, 52, 0.6) 0%, rgba(12, 17, 34, 0.6) 100%);
    border: var(--border-glass);
    border-radius: var(--border-radius-lg);
    padding: 64px 40px;
    backdrop-filter: blur(20px);
}

.cta-title {
    font-size: 2.75rem;
    font-weight: 800;
    margin-bottom: 20px;
}

.cta-desc {
    font-size: 1.15rem;
    color: var(--text-secondary);
    margin-bottom: 40px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.cta-buttons {
    display: flex;
    justify-content: center;
    margin-bottom: 24px;
}

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

/* ==========================================================================
   FOOTER
   ========================================================================== */
.footer {
    background-color: #03050c;
    border-top: var(--border-glass);
    padding: 80px 0 40px 0;
}

.footer-container {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1.2fr;
    gap: 64px;
    margin-bottom: 60px;
}

.footer-brand {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.footer-logo {
    text-decoration: none;
}

.footer-tagline {
    color: var(--text-secondary);
    font-size: 0.95rem;
    max-width: 320px;
}

.footer-links-group {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.footer-links-title {
    font-size: 1rem;
    font-weight: 600;
    color: var(--text-primary);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 8px;
}

.footer-link {
    color: var(--text-secondary);
    text-decoration: none;
    font-size: 0.9rem;
    transition: color 0.3s ease;
}

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

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

/* Footer Bottom */
.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    padding-top: 40px;
    font-size: 0.85rem;
    color: var(--text-muted);
}

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

.footer-legal a {
    color: var(--text-muted);
    text-decoration: none;
    transition: color 0.3s ease;
}

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

/* ==========================================================================
   SCROLL REVEAL & ENTRANCE ANIMATIONS
   ========================================================================== */
.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s ease, transform 0.8s cubic-bezier(0.25, 0.8, 0.25, 1);
}

.reveal.revealed {
    opacity: 1;
    transform: translateY(0);
}

/* Animations */
@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

@keyframes slideUp {
    from {
        opacity: 0;
        transform: translateY(40px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

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

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

.animate-fade-in {
    animation: fadeIn 1s ease forwards;
}

.animate-slide-up {
    animation: slideUp 0.8s cubic-bezier(0.25, 0.8, 0.25, 1) forwards;
}

.animate-float {
    animation: float 6s ease-in-out infinite;
}

.animate-pulse {
    animation: pulse 2s infinite ease-in-out;
}

.delay-1 { animation-delay: 0.2s; }
.delay-2 { animation-delay: 0.4s; }
.delay-3 { animation-delay: 0.6s; }

/* ==========================================================================
   RESPONSIVE DESIGN (MEDIA QUERIES)
   ========================================================================== */
@media (max-width: 1024px) {
    html {
        font-size: 15px;
    }
    
    section {
        padding: 50px 0;
    }
    
    .hero-container {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 60px;
    }
    
    .hero-content {
        display: flex;
        flex-direction: column;
        align-items: center;
    }
    
    .hero-cta {
        justify-content: center;
    }
    
    .hero-stats {
        justify-content: center;
    }
    
    .hero-visual {
        max-width: 500px;
        margin: 0 auto;
    }
    
    .steps-grid, .payment-grid, .benefits-grid {
        grid-template-columns: 1fr;
        gap: 24px;
        max-width: 600px;
        margin: 0 auto;
    }
    
    .calculator-container {
        grid-template-columns: 1fr;
        gap: 48px;
    }
    
    .calculator-text-side {
        align-items: center;
        text-align: center;
    }
    
    .calculator-features {
        align-items: flex-start;
    }
    
    .footer-container {
        grid-template-columns: 1.2fr 0.8fr 1fr;
        gap: 32px;
    }

    .transport-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
    
    .transport-card {
        grid-column: span 1 !important;
    }
    
    .transport-card:nth-child(5) {
        grid-column: span 2 !important;
    }
}

@media (max-width: 1024px) {
    .header-container {
        justify-content: center;
    }
    
    .burger-menu, .nav-menu, .header-actions {
        display: none !important;
    }
}

@media (max-width: 768px) {
    section {
        padding: 40px 0;
    }
    
    .section-title {
        font-size: 1.85rem;
    }
    
    .section-description {
        font-size: 1rem;
    }
    
    .range-labels {
        flex-direction: column;
        gap: 8px;
        text-align: center;
    }
    
    .range-value {
        font-size: 1.35rem;
    }
    
    .faq-question {
        padding: 16px 20px;
        font-size: 1rem;
    }
    
    .faq-answer {
        padding: 0 20px;
    }
    
    .hero {
        padding-top: 130px !important;
        padding-bottom: 50px !important;
    }

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

    .hero-container {
        gap: 20px !important;
    }
    .hero-description {
        margin-bottom: 24px !important;
        font-size: 1.05rem !important;
        line-height: 1.5 !important;
    }

    .hero-scroll-btn {
        display: flex !important;
        align-items: center;
        gap: 8px;
        margin: 12px auto 0 auto !important;
        padding: 10px 20px !important;
        background: rgba(255, 255, 255, 0.02) !important;
        border: 1px solid rgba(255, 255, 255, 0.05) !important;
        border-radius: 50px !important;
        color: var(--text-secondary) !important;
        font-size: 0.9rem !important;
        font-weight: 600 !important;
        text-decoration: none !important;
        width: fit-content !important;
        box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2) !important;
        transition: all 0.3s ease !important;
    }

    .hero-scroll-btn svg {
        stroke: var(--primary) !important;
        animation: bounce-arrow 2s infinite ease-in-out !important;
    }

    .hero-cta,
    .hero-stats {
        display: none !important;
    }

    .hero-visual {
        display: none !important;
    }
    
    .transport-grid {
        display: flex !important;
        flex-direction: row !important;
        overflow-x: auto !important;
        scroll-snap-type: x mandatory !important;
        gap: 16px !important;
        padding: 10px 24px 24px 24px !important;
        margin: 0 -24px !important;
        max-width: none !important;
        width: calc(100% + 48px) !important;
        -webkit-overflow-scrolling: touch;
        scrollbar-width: none;
    }
    
    .transport-grid::-webkit-scrollbar {
        display: none;
    }
    
    .transport-card,
    .transport-card:nth-child(4),
    .transport-card:nth-child(5) {
        flex: 0 0 280px !important;
        scroll-snap-align: center !important;
        grid-column: auto !important;
        height: auto !important;
    }

    .payment-grid {
        display: flex !important;
        flex-direction: row !important;
        overflow-x: auto !important;
        scroll-snap-type: x mandatory !important;
        gap: 16px !important;
        padding: 10px 24px 24px 24px !important;
        margin: 0 -24px !important;
        max-width: none !important;
        width: calc(100% + 48px) !important;
        -webkit-overflow-scrolling: touch;
        scrollbar-width: none;
    }
    
    .payment-grid::-webkit-scrollbar {
        display: none;
    }
    
    .payment-card {
        flex: 0 0 280px !important;
        scroll-snap-align: center !important;
        height: auto !important;
        padding: 30px 24px !important;
    }
    
    .payment-card:nth-child(1) {
        order: 2 !important;
    }
    
    .payment-card:nth-child(2) {
        order: 3 !important;
    }
    
    .payment-card:nth-child(3) {
        order: 1 !important;
    }
    
    .app-badges {
        justify-content: center;
    }
    
    .footer-container {
        grid-template-columns: 1fr;
        gap: 40px;
        text-align: center;
    }
    
    .footer-brand {
        align-items: center;
    }
    
    .footer-bottom {
        flex-direction: column;
        gap: 20px;
        text-align: center;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 1.85rem;
    }
    
    .hero-cta {
        flex-direction: column;
        width: 100%;
    }
    
    .hero-cta .btn {
        width: 100%;
    }
    
    .calculator-widget {
        padding: 24px;
    }
    
    .comparison-grid {
        grid-template-columns: 1fr;
    }
    
    .savings-amount {
        font-size: 2rem;
    }

    .faq-more {
        margin-top: 32px;
        padding: 24px 20px;
        gap: 12px;
    }
    
    .faq-more-text {
        font-size: 0.95rem;
    }
}

/* Sticky CTA for Mobile */
.mobile-sticky-cta {
    display: none;
}

@media (max-width: 768px) {
    .mobile-sticky-cta {
        display: flex;
        position: fixed;
        bottom: 24px;
        left: 0;
        width: 100%;
        justify-content: center;
        padding: 0 20px;
        z-index: 2000;
        pointer-events: none;
    }
    
    .btn-sticky {
        pointer-events: auto;
        width: 100%;
        max-width: 340px;
        justify-content: center;
        box-shadow: 0 10px 30px rgba(233, 76, 30, 0.4), 0 0 0 1px rgba(255, 255, 255, 0.1) inset;
        font-weight: 700;
        padding: 16px 24px;
        border-radius: 50px;
        text-shadow: 0 1px 2px rgba(0, 0, 0, 0.2);
        animation: float 6s ease-in-out infinite;
    }
}

@keyframes bounce-arrow {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(4px);
    }
}
