/* =====================================================
   GSM Serviços - Landing Page Styles v2
   Visual, moderna, com muito mais vida!
   ===================================================== */

/* CSS Variables */
:root {
    /* Colors */
    --primary: #ED2120;
    --primary-dark: #c91b1a;
    --primary-light: #FFE5E5;
    --primary-rgb: 237, 33, 32;
    --white: #FFFFFF;
    --black: #1A1A1A;
    --gray-50: #FAFAFA;
    --gray-100: #F5F5F5;
    --gray-200: #E0E0E0;
    --gray-400: #9E9E9E;
    --gray-600: #666666;
    --gray-800: #424242;
    --green: #22C55E;
    --blue: #3B82F6;
    --orange: #F59E0B;

    /* Typography */
    --font-family: 'Poppins', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;

    /* Spacing */
    --space-xs: 4px;
    --space-sm: 8px;
    --space-md: 16px;
    --space-lg: 24px;
    --space-xl: 32px;
    --space-2xl: 48px;
    --space-3xl: 64px;
    --space-4xl: 96px;

    /* Border Radius */
    --radius-sm: 8px;
    --radius-md: 12px;
    --radius-lg: 16px;
    --radius-xl: 24px;
    --radius-2xl: 32px;
    --radius-full: 9999px;

    /* Shadows */
    --shadow-sm: 0 1px 2px rgba(0, 0, 0, 0.05);
    --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
    --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
    --shadow-xl: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
    --shadow-2xl: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
    --shadow-glow: 0 0 40px rgba(237, 33, 32, 0.3);

    /* Transitions */
    --transition-fast: 150ms ease;
    --transition-base: 300ms ease;
    --transition-slow: 500ms ease;

    /* Header */
    --header-height: 80px;
}

/* Reset & Base */
*, *::before, *::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    scroll-padding-top: var(--header-height);
}

body {
    font-family: var(--font-family);
    font-size: 16px;
    line-height: 1.6;
    color: var(--black);
    background-color: var(--white);
    overflow-x: hidden;
}

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

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

ul {
    list-style: none;
}

/* Container */
.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 var(--space-lg);
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-weight: 800;
    line-height: 1.2;
    color: var(--black);
    letter-spacing: -0.02em;
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: var(--space-sm);
    padding: var(--space-md) var(--space-xl);
    font-family: var(--font-family);
    font-size: 1rem;
    font-weight: 700;
    border-radius: var(--radius-lg);
    border: none;
    cursor: pointer;
    transition: all var(--transition-base);
}

.btn i {
    width: 20px;
    height: 20px;
}

.btn-primary {
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    color: var(--white);
    box-shadow: 0 4px 15px rgba(237, 33, 32, 0.3);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 25px rgba(237, 33, 32, 0.4);
}

.btn-glow {
    animation: pulse-glow 2s infinite;
}

@keyframes pulse-glow {
    0%, 100% { box-shadow: 0 4px 15px rgba(237, 33, 32, 0.3); }
    50% { box-shadow: 0 4px 30px rgba(237, 33, 32, 0.5); }
}

.btn-glass {
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
    color: var(--white);
    border: 1px solid rgba(255, 255, 255, 0.3);
}

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

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

.btn-outline:hover {
    background-color: var(--primary);
    color: var(--white);
}

.btn-lg {
    padding: var(--space-md) var(--space-xl);
    font-size: 1.1rem;
}

.btn-full {
    width: 100%;
}

/* Section Styles */
.section-header {
    text-align: center;
    max-width: 700px;
    margin: 0 auto var(--space-3xl);
}

.section-badge {
    display: inline-block;
    padding: var(--space-xs) var(--space-md);
    background: linear-gradient(135deg, var(--primary-light) 0%, rgba(237, 33, 32, 0.15) 100%);
    color: var(--primary);
    font-size: 0.875rem;
    font-weight: 600;
    border-radius: var(--radius-full);
    margin-bottom: var(--space-md);
}

.section-title {
    font-size: clamp(2rem, 5vw, 3rem);
    font-weight: 800;
    margin-bottom: var(--space-md);
    letter-spacing: -0.02em;
}

.section-subtitle {
    font-size: 1.125rem;
    color: var(--gray-600);
}

/* =====================================================
   HEADER
   ===================================================== */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    height: var(--header-height);
    background-color: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    z-index: 1000;
    transition: all var(--transition-base);
}

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

.nav {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: var(--header-height);
}

.logo {
    display: flex;
    align-items: center;
    gap: var(--space-sm);
}

.logo-img {
    width: 44px;
    height: 44px;
    border-radius: var(--radius-sm);
    object-fit: contain;
}

.logo-text {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--gray-600);
}

.logo-highlight {
    color: var(--primary);
}

.nav-links {
    display: flex;
    align-items: center;
    gap: var(--space-xl);
}

.nav-links a {
    font-weight: 500;
    color: var(--gray-600);
    position: relative;
}

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

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

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

.nav-cta {
    padding: var(--space-sm) var(--space-lg);
}

.mobile-menu-btn {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: var(--space-sm);
    color: var(--black);
}

.mobile-menu-btn i {
    width: 24px;
    height: 24px;
}

/* Mobile Menu */
.mobile-menu {
    position: fixed;
    top: 0;
    right: -100%;
    width: 100%;
    max-width: 320px;
    height: 100vh;
    background-color: var(--white);
    z-index: 1001;
    padding: var(--space-xl);
    transition: right var(--transition-base);
    box-shadow: var(--shadow-xl);
}

.mobile-menu.active {
    right: 0;
}

.mobile-menu-close {
    position: absolute;
    top: var(--space-lg);
    right: var(--space-lg);
    background: none;
    border: none;
    cursor: pointer;
    padding: var(--space-sm);
    color: var(--black);
}

.mobile-menu-close i {
    width: 24px;
    height: 24px;
}

.mobile-nav-links {
    margin-top: var(--space-3xl);
    display: flex;
    flex-direction: column;
    gap: var(--space-lg);
}

.mobile-nav-links a {
    font-size: 1.125rem;
    font-weight: 500;
    color: var(--gray-600);
    padding: var(--space-sm) 0;
}

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

.mobile-nav-links .btn {
    margin-top: var(--space-md);
    width: 100%;
}

/* =====================================================
   HERO SECTION
   ===================================================== */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding: calc(var(--header-height) + var(--space-2xl)) 0 0;
    overflow: hidden;
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: -1;
}

.hero-image-grid {
    position: absolute;
    top: 0;
    right: 0;
    width: 60%;
    height: 100%;
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-template-rows: 1fr 1fr;
    gap: 4px;
}

.hero-bg-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(
        90deg,
        rgba(255, 255, 255, 1) 0%,
        rgba(255, 255, 255, 1) 35%,
        rgba(255, 255, 255, 0.95) 50%,
        rgba(255, 255, 255, 0.7) 70%,
        rgba(237, 33, 32, 0.3) 100%
    );
}

.hero-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-3xl);
    align-items: center;
    position: relative;
    z-index: 1;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: var(--space-sm);
    padding: var(--space-sm) var(--space-md);
    background: linear-gradient(135deg, var(--green) 0%, #16A34A 100%);
    color: var(--white);
    font-size: 0.875rem;
    font-weight: 600;
    border-radius: var(--radius-full);
    margin-bottom: var(--space-lg);
}

.hero-badge i {
    width: 16px;
    height: 16px;
}

.hero-title {
    font-size: clamp(2.5rem, 6vw, 3.75rem);
    margin-bottom: var(--space-lg);
    line-height: 1.1;
}

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

.hero-subtitle {
    font-size: 1.25rem;
    color: var(--gray-600);
    margin-bottom: var(--space-xl);
    max-width: 500px;
}

.hero-cta {
    display: flex;
    flex-wrap: wrap;
    gap: var(--space-md);
    margin-bottom: var(--space-2xl);
}

/* Trust Section */
.hero-trust {
    display: flex;
    align-items: center;
    gap: var(--space-lg);
}

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

.trust-avatar {
    width: 40px;
    height: 40px;
    border-radius: var(--radius-full);
    border: 3px solid var(--white);
    margin-left: -12px;
    object-fit: cover;
}

.trust-avatar:first-child {
    margin-left: 0;
}

.trust-more {
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    color: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.75rem;
    font-weight: 700;
}

.trust-text {
    display: flex;
    flex-direction: column;
    gap: var(--space-xs);
}

.trust-stars {
    display: flex;
    gap: 2px;
}

.trust-stars i,
.star-filled {
    width: 16px;
    height: 16px;
    fill: #FFB800;
    color: #FFB800;
}

.trust-text span {
    font-size: 0.875rem;
    color: var(--gray-600);
}

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

.phone-showcase {
    position: relative;
    width: 320px;
    height: 650px;
}

.phone-mockup {
    position: relative;
    width: 280px;
    height: 580px;
    background: linear-gradient(180deg, #1A1A1A 0%, #2D2D2D 100%);
    border-radius: 44px;
    padding: 8px;
    box-shadow: var(--shadow-2xl);
    margin: 0 auto;
}

.phone-notch {
    position: absolute;
    top: 12px;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 28px;
    background-color: #1A1A1A;
    border-radius: 20px;
    z-index: 10;
}

.phone-screen {
    width: 100%;
    height: 100%;
    background-color: var(--white);
    border-radius: 36px;
    overflow: hidden;
    position: relative;
}

.screen-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.3;
}

.app-ui-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    padding: 50px 16px 16px;
    display: flex;
    flex-direction: column;
    gap: var(--space-md);
}

.app-header-ui {
    display: flex;
    align-items: center;
    gap: var(--space-sm);
    padding: var(--space-sm);
    background: rgba(255, 255, 255, 0.95);
    border-radius: var(--radius-lg);
}

.app-logo-small {
    width: 32px;
    height: 32px;
    border-radius: var(--radius-sm);
}

.app-header-ui span {
    font-weight: 600;
    font-size: 0.9rem;
}

.app-search-ui {
    display: flex;
    align-items: center;
    gap: var(--space-sm);
    padding: var(--space-md);
    background: rgba(255, 255, 255, 0.95);
    border-radius: var(--radius-lg);
    color: var(--gray-400);
    font-size: 0.875rem;
}

.app-search-ui i {
    width: 18px;
    height: 18px;
    color: var(--primary);
}

.app-cards-ui {
    display: flex;
    gap: var(--space-sm);
}

.mini-card {
    flex: 1;
    background: rgba(255, 255, 255, 0.95);
    border-radius: var(--radius-md);
    overflow: hidden;
}

.mini-card img {
    width: 100%;
    height: 80px;
    object-fit: cover;
}

.mini-card span {
    display: block;
    padding: var(--space-sm);
    font-size: 0.75rem;
    font-weight: 600;
    text-align: center;
}

/* Floating Notifications */
.floating-notification {
    position: absolute;
    display: flex;
    align-items: center;
    gap: var(--space-md);
    padding: var(--space-md);
    background-color: var(--white);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-xl);
    min-width: 200px;
}

.notif-icon {
    width: 40px;
    height: 40px;
    border-radius: var(--radius-full);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.notif-icon i {
    width: 20px;
    height: 20px;
    color: var(--white);
}

.notif-icon.green {
    background: linear-gradient(135deg, var(--green) 0%, #16A34A 100%);
}

.notif-icon.blue {
    background: linear-gradient(135deg, var(--blue) 0%, #2563EB 100%);
}

.notif-icon.orange {
    background: linear-gradient(135deg, var(--orange) 0%, #D97706 100%);
}

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

.notif-content strong {
    font-size: 0.875rem;
    font-weight: 600;
}

.notif-content span {
    font-size: 0.75rem;
    color: var(--gray-600);
}

.notif-1 {
    top: 10%;
    left: -30px;
}

.notif-2 {
    top: 45%;
    right: -40px;
}

.notif-3 {
    bottom: 20%;
    left: -20px;
}

/* Float Animations */
.animate-float {
    animation: float 4s ease-in-out infinite;
}

.animate-float-delayed {
    animation: float 4s ease-in-out infinite;
    animation-delay: 2s;
}

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

/* Hero Wave */
.hero-wave {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    line-height: 0;
}

.hero-wave svg {
    width: 100%;
    height: 80px;
}

/* =====================================================
   STATS BAR
   ===================================================== */
.stats-bar {
    padding: var(--space-3xl) 0;
    background: var(--white);
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: var(--space-xl);
}

.stat-item {
    display: flex;
    align-items: center;
    gap: var(--space-md);
    padding: var(--space-lg);
    background: var(--gray-50);
    border-radius: var(--radius-xl);
    transition: all var(--transition-base);
}

.stat-item:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.stat-icon {
    width: 56px;
    height: 56px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--primary-light) 0%, rgba(237, 33, 32, 0.2) 100%);
    border-radius: var(--radius-lg);
}

.stat-icon i {
    width: 28px;
    height: 28px;
    color: var(--primary);
}

.stat-info {
    display: flex;
    flex-direction: column;
}

.stat-number {
    font-size: 1.75rem;
    font-weight: 700;
    color: var(--primary);
}

.stat-number::after {
    content: '+';
}

.stat-number:not([data-count])::after {
    content: '';
}

.stat-label {
    font-size: 0.875rem;
    color: var(--gray-600);
}

/* =====================================================
   SERVICES SECTION
   ===================================================== */
.services {
    padding: var(--space-4xl) 0;
    background: var(--gray-50);
}

/* Featured Services */
.services-featured {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: var(--space-lg);
    margin-bottom: var(--space-3xl);
}

.service-featured-card {
    background: var(--white);
    border-radius: var(--radius-xl);
    overflow: hidden;
    transition: all var(--transition-base);
    box-shadow: var(--shadow-sm);
}

.service-featured-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-xl);
}

.service-image {
    position: relative;
    height: 200px;
    overflow: hidden;
}

.service-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform var(--transition-slow);
}

.service-featured-card:hover .service-image img {
    transform: scale(1.1);
}

.service-image-overlay {
    position: absolute;
    top: var(--space-md);
    left: var(--space-md);
}

.service-tag {
    display: inline-block;
    padding: var(--space-xs) var(--space-sm);
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    color: var(--white);
    font-size: 0.75rem;
    font-weight: 600;
    border-radius: var(--radius-full);
}

.service-info {
    padding: var(--space-lg);
}

.service-info h3 {
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: var(--space-sm);
}

.service-info p {
    font-size: 0.9rem;
    color: var(--gray-600);
    margin-bottom: var(--space-md);
}

.service-meta {
    display: flex;
    align-items: center;
    gap: var(--space-md);
    font-size: 0.8rem;
    color: var(--gray-600);
}

.service-meta span {
    display: flex;
    align-items: center;
    gap: var(--space-xs);
}

.service-meta i {
    width: 14px;
    height: 14px;
    color: var(--primary);
}

/* Services Grid Title */
.services-grid-title {
    text-align: center;
    margin-bottom: var(--space-xl);
}

.services-grid-title h3 {
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--gray-800);
}

/* Services Grid */
.services-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: var(--space-md);
}

.service-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    overflow: hidden;
    transition: all var(--transition-base);
    box-shadow: var(--shadow-sm);
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.service-card-image {
    height: 100px;
    overflow: hidden;
}

.service-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform var(--transition-base);
}

.service-card:hover .service-card-image img {
    transform: scale(1.1);
}

.service-card-content {
    padding: var(--space-md);
    text-align: center;
}

.service-card-content i {
    width: 24px;
    height: 24px;
    color: var(--primary);
    margin-bottom: var(--space-xs);
}

.service-card-content h4 {
    font-size: 0.9rem;
    font-weight: 700;
}

.service-card-content.only-icon {
    padding: var(--space-xl) var(--space-md);
    background: linear-gradient(135deg, var(--gray-50) 0%, var(--gray-100) 100%);
}

.service-card-content.only-icon i {
    width: 32px;
    height: 32px;
    margin-bottom: var(--space-sm);
}

/* =====================================================
   HOW IT WORKS SECTION
   ===================================================== */
.how-it-works {
    padding: var(--space-4xl) 0;
    background: var(--white);
}

.steps-container {
    display: grid;
    grid-template-columns: 0.8fr 1.2fr;
    gap: var(--space-3xl);
    align-items: center;
}

/* Steps Visual */
.step-phone {
    position: relative;
    border-radius: var(--radius-2xl);
    overflow: hidden;
    box-shadow: var(--shadow-2xl);
}

.step-phone-img {
    width: 100%;
    height: 500px;
    object-fit: cover;
}

.step-phone-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to top, rgba(0,0,0,0.7) 0%, transparent 50%);
    display: flex;
    align-items: flex-end;
    justify-content: center;
    padding: var(--space-xl);
    gap: var(--space-md);
}

.step-indicator {
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.2);
    border: 2px solid rgba(255, 255, 255, 0.5);
    border-radius: var(--radius-full);
    color: var(--white);
    font-weight: 700;
    transition: all var(--transition-base);
}

.step-indicator.active {
    background: var(--primary);
    border-color: var(--primary);
    transform: scale(1.1);
}

/* Steps List */
.steps-list {
    display: flex;
    flex-direction: column;
    gap: var(--space-lg);
}

.step-item {
    display: flex;
    align-items: center;
    gap: var(--space-lg);
    padding: var(--space-lg);
    background: var(--gray-50);
    border-radius: var(--radius-xl);
    transition: all var(--transition-base);
    border: 2px solid transparent;
}

.step-item:hover {
    background: var(--white);
    border-color: var(--primary);
    box-shadow: var(--shadow-lg);
}

.step-number {
    width: 48px;
    height: 48px;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    color: var(--white);
    font-size: 1.25rem;
    font-weight: 700;
    border-radius: var(--radius-full);
}

.step-content {
    flex: 1;
}

.step-icon {
    display: none;
}

.step-content h3 {
    font-size: 1.1rem;
    margin-bottom: var(--space-xs);
}

.step-content p {
    font-size: 0.9rem;
    color: var(--gray-600);
}

.step-image {
    width: 120px;
    height: 80px;
    border-radius: var(--radius-md);
    overflow: hidden;
    flex-shrink: 0;
}

.step-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* =====================================================
   BENEFITS SECTION
   ===================================================== */
.benefits {
    padding: var(--space-4xl) 0;
    background: var(--gray-50);
}

.benefits-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-3xl);
    align-items: center;
}

/* Benefits Images */
.benefits-image-grid {
    position: relative;
    height: 600px;
}

.benefit-img-card {
    position: absolute;
    border-radius: var(--radius-xl);
    overflow: hidden;
    box-shadow: var(--shadow-xl);
}

.benefit-img-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.benefit-img-card.card-1 {
    width: 280px;
    height: 350px;
    top: 0;
    left: 0;
    z-index: 3;
}

.benefit-img-card.card-2 {
    width: 250px;
    height: 200px;
    top: 100px;
    right: 0;
    z-index: 2;
}

.benefit-img-card.card-3 {
    width: 220px;
    height: 180px;
    bottom: 50px;
    left: 60px;
    z-index: 1;
}

.img-card-badge {
    position: absolute;
    bottom: var(--space-md);
    left: var(--space-md);
    display: flex;
    align-items: center;
    gap: var(--space-xs);
    padding: var(--space-sm) var(--space-md);
    background: var(--white);
    border-radius: var(--radius-full);
    font-size: 0.8rem;
    font-weight: 600;
    box-shadow: var(--shadow-md);
}

.img-card-badge i {
    width: 16px;
    height: 16px;
    color: var(--primary);
}

.img-card-badge.success i {
    color: var(--green);
}

/* Benefits Content */
.benefits-content .section-badge,
.benefits-content .section-title,
.benefits-content .section-subtitle {
    text-align: left;
}

.benefits-content .section-title {
    margin-bottom: var(--space-md);
}

.benefits-content .section-subtitle {
    margin-bottom: var(--space-xl);
}

.benefits-list {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-lg);
}

.benefit-item {
    display: flex;
    gap: var(--space-md);
}

.benefit-icon {
    flex-shrink: 0;
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--primary-light) 0%, rgba(237, 33, 32, 0.15) 100%);
    border-radius: var(--radius-md);
}

.benefit-icon i {
    width: 24px;
    height: 24px;
    color: var(--primary);
}

.benefit-text h4 {
    font-size: 1rem;
    margin-bottom: var(--space-xs);
}

.benefit-text p {
    font-size: 0.85rem;
    color: var(--gray-600);
}

/* =====================================================
   TESTIMONIALS SECTION
   ===================================================== */
.testimonials {
    padding: var(--space-4xl) 0;
    background: var(--white);
}

.testimonials-slider {
    overflow: hidden;
}

.testimonials-track {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: var(--space-lg);
}

.testimonial-card {
    background: var(--gray-50);
    padding: var(--space-xl);
    border-radius: var(--radius-xl);
    transition: all var(--transition-base);
}

.testimonial-card:hover {
    background: var(--white);
    box-shadow: var(--shadow-xl);
    transform: translateY(-5px);
}

.testimonial-header {
    display: flex;
    align-items: center;
    gap: var(--space-md);
    margin-bottom: var(--space-lg);
    flex-wrap: wrap;
}

.testimonial-avatar {
    width: 56px;
    height: 56px;
    border-radius: var(--radius-full);
    object-fit: cover;
}

.testimonial-author {
    flex: 1;
    min-width: 120px;
}

.author-name {
    display: block;
    font-weight: 600;
    font-size: 1rem;
}

.author-service {
    display: block;
    font-size: 0.8rem;
    color: var(--gray-600);
}

.testimonial-stars {
    display: flex;
    gap: 2px;
}

.testimonial-stars i {
    width: 16px;
    height: 16px;
    fill: #FFB800;
    color: #FFB800;
}

.testimonial-text {
    font-size: 0.95rem;
    color: var(--gray-600);
    line-height: 1.7;
    margin-bottom: var(--space-lg);
}

.testimonial-service-img {
    height: 120px;
    border-radius: var(--radius-md);
    overflow: hidden;
}

.testimonial-service-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* =====================================================
   FAQ SECTION
   ===================================================== */
.faq {
    padding: var(--space-4xl) 0;
    background: var(--gray-50);
}

.faq-list {
    max-width: 800px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: var(--space-md);
}

.faq-item {
    background: var(--white);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: all var(--transition-base);
}

.faq-item:hover {
    box-shadow: var(--shadow-md);
}

.faq-question {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: var(--space-lg) var(--space-xl);
    background: none;
    border: none;
    text-align: left;
    font-family: var(--font-family);
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--black);
    cursor: pointer;
    transition: all var(--transition-base);
}

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

.faq-question i {
    width: 24px;
    height: 24px;
    color: var(--primary);
    transition: transform var(--transition-base);
    flex-shrink: 0;
}

.faq-item.active .faq-question i {
    transform: rotate(180deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height var(--transition-base), padding var(--transition-base);
    padding: 0 var(--space-xl);
}

.faq-item.active .faq-answer {
    max-height: 500px;
    padding: 0 var(--space-xl) var(--space-lg);
}

.faq-answer p {
    color: var(--gray-600);
    line-height: 1.7;
    font-size: 1rem;
}

/* =====================================================
   DOWNLOAD SECTION
   ===================================================== */
.download {
    position: relative;
    padding: var(--space-4xl) 0;
    text-align: center;
    overflow: hidden;
}

.download-background {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: -1;
}

.download-bg-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.download-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(237, 33, 32, 0.95) 0%, rgba(153, 27, 27, 0.95) 100%);
}

.download-content {
    position: relative;
    z-index: 1;
    color: var(--white);
}

.download-badge {
    display: inline-flex;
    align-items: center;
    gap: var(--space-sm);
    padding: var(--space-sm) var(--space-md);
    background: rgba(255, 255, 255, 0.2);
    border-radius: var(--radius-full);
    font-size: 0.875rem;
    font-weight: 600;
    margin-bottom: var(--space-lg);
}

.download-badge i {
    width: 18px;
    height: 18px;
}

.download-title {
    font-size: clamp(2rem, 5vw, 3rem);
    margin-bottom: var(--space-md);
    color: var(--white);
}

.download-subtitle {
    font-size: 1.25rem;
    opacity: 0.9;
    max-width: 600px;
    margin: 0 auto var(--space-xl);
}

.download-buttons {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: var(--space-md);
    margin-bottom: var(--space-xl);
}

.store-button {
    display: flex;
    align-items: center;
    gap: var(--space-md);
    padding: var(--space-md) var(--space-xl);
    background-color: var(--black);
    color: var(--white);
    border-radius: var(--radius-lg);
    transition: all var(--transition-base);
}

.store-button:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-xl);
}

.store-icon svg {
    width: 28px;
    height: 28px;
}

.store-text {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.store-label {
    font-size: 0.75rem;
    opacity: 0.8;
}

.store-name {
    font-size: 1.125rem;
    font-weight: 600;
}

.download-features {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: var(--space-xl);
}

.download-features span {
    display: flex;
    align-items: center;
    gap: var(--space-sm);
    font-size: 1rem;
    opacity: 0.9;
}

.download-features i {
    width: 20px;
    height: 20px;
}

/* =====================================================
   FOOTER
   ===================================================== */
.footer {
    background-color: var(--black);
    color: var(--white);
    padding: var(--space-3xl) 0 var(--space-xl);
}

.footer-top {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: var(--space-3xl);
    margin-bottom: var(--space-2xl);
    padding-bottom: var(--space-2xl);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-brand .logo {
    margin-bottom: var(--space-md);
}

.footer-brand .logo-text {
    color: var(--white);
}

.footer-description {
    color: var(--gray-400);
    margin-bottom: var(--space-lg);
    max-width: 300px;
    font-size: 0.95rem;
}

.footer-social {
    display: flex;
    gap: var(--space-sm);
}

.footer-social a {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: var(--radius-full);
    transition: all var(--transition-base);
}

.footer-social a:hover {
    background-color: var(--primary);
    transform: translateY(-3px);
}

.footer-social i {
    width: 20px;
    height: 20px;
}

.footer-links-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: var(--space-xl);
}

.footer-column h4 {
    color: var(--white);
    font-size: 1rem;
    margin-bottom: var(--space-lg);
}

.footer-column ul {
    display: flex;
    flex-direction: column;
    gap: var(--space-sm);
}

.footer-column a {
    color: var(--gray-400);
    font-size: 0.9rem;
    transition: all var(--transition-fast);
}

.footer-column a:hover {
    color: var(--primary);
    padding-left: 5px;
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: var(--gray-400);
    font-size: 0.875rem;
}

.footer-made {
    display: flex;
    align-items: center;
    gap: var(--space-xs);
}

.heart-icon {
    width: 16px;
    height: 16px;
    color: var(--primary);
    fill: var(--primary);
}

/* =====================================================
   BACK TO TOP BUTTON
   ===================================================== */
.back-to-top {
    position: fixed;
    bottom: var(--space-xl);
    right: var(--space-xl);
    width: 52px;
    height: 52px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    color: var(--white);
    border: none;
    border-radius: var(--radius-full);
    cursor: pointer;
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px);
    transition: all var(--transition-base);
    box-shadow: var(--shadow-lg);
    z-index: 999;
}

.back-to-top.visible {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.back-to-top:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-glow);
}

.back-to-top i {
    width: 24px;
    height: 24px;
}

/* =====================================================
   ANIMATIONS
   ===================================================== */
.animate-on-scroll {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.animate-on-scroll.visible {
    opacity: 1;
    transform: translateY(0);
}

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

/* Large Tablets */
@media (max-width: 1200px) {
    .services-featured {
        grid-template-columns: repeat(2, 1fr);
    }

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

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

/* Tablets */
@media (max-width: 1024px) {
    .hero-content {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .hero-image-grid {
        width: 100%;
        opacity: 0.3;
    }

    .hero-overlay {
        background: linear-gradient(
            180deg,
            rgba(255, 255, 255, 0.95) 0%,
            rgba(255, 255, 255, 0.9) 50%,
            rgba(255, 255, 255, 0.8) 100%
        );
    }

    .hero-subtitle {
        margin: 0 auto var(--space-xl);
    }

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

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

    .hero-visual {
        display: none;
    }

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

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

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

    .steps-visual {
        display: none;
    }

    .benefits-layout {
        grid-template-columns: 1fr;
    }

    .benefits-images {
        order: 1;
    }

    .benefits-content {
        order: 0;
    }

    .benefits-content .section-badge,
    .benefits-content .section-title,
    .benefits-content .section-subtitle {
        text-align: center;
    }

    .benefits-list {
        grid-template-columns: 1fr;
    }

    .benefits-image-grid {
        height: 400px;
        display: flex;
        justify-content: center;
    }

    .benefit-img-card.card-1 {
        position: relative;
        width: 100%;
        max-width: 400px;
        height: 300px;
    }

    .benefit-img-card.card-2,
    .benefit-img-card.card-3 {
        display: none;
    }


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

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

/* Mobile */
@media (max-width: 768px) {
    :root {
        --header-height: 70px;
    }

    .nav-links {
        display: none;
    }

    .nav-cta {
        display: none;
    }

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

    .hero {
        min-height: auto;
        padding: calc(var(--header-height) + var(--space-2xl)) 0 0;
    }

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

    .hero-subtitle {
        font-size: 1.1rem;
    }

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

    .hero-cta .btn {
        width: 100%;
        max-width: 300px;
    }

    .hero-trust {
        flex-direction: column;
        gap: var(--space-md);
    }

    .stats-grid {
        grid-template-columns: 1fr 1fr;
        gap: var(--space-md);
    }

    .stat-item {
        flex-direction: column;
        text-align: center;
        padding: var(--space-md);
    }

    .services-featured {
        grid-template-columns: 1fr;
    }

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

    .step-item {
        flex-direction: column;
        text-align: center;
    }

    .step-image {
        display: none;
    }

    .benefit-item {
        flex-direction: column;
        text-align: center;
    }

    .benefit-icon {
        margin: 0 auto;
    }

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


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

    .store-button {
        width: 100%;
        max-width: 280px;
        justify-content: center;
    }

    .download-features {
        flex-direction: column;
        gap: var(--space-md);
    }

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

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

    .footer-brand .logo {
        justify-content: center;
    }

    .footer-description {
        margin: 0 auto var(--space-lg);
    }

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

    .footer-bottom {
        flex-direction: column;
        gap: var(--space-md);
        text-align: center;
    }
}

/* Small Mobile */
@media (max-width: 480px) {
    .container {
        padding: 0 var(--space-md);
    }

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

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

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

    .service-card {
        display: flex;
        flex-direction: row;
        align-items: center;
    }

    .service-card-image {
        width: 80px;
        height: 80px;
        flex-shrink: 0;
    }

    .service-card-content {
        text-align: left;
        display: flex;
        align-items: center;
        gap: var(--space-sm);
    }

    .service-card-content i {
        margin: 0;
    }

    .service-card-content.only-icon {
        padding: var(--space-md);
    }

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