/* ==========================================================================
   Premium Base & Variables
   ========================================================================== */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600&family=Outfit:wght@400;600;700;800;900&display=swap');

:root {
    /* Theme Colors (Based on Facade & Signboard) */
    --c-primary: #1D569E; /* Royal Blue from facade */
    --c-primary-hover: #153E75;
    --c-secondary: #FF9F1C; /* Complementary Orange */
    --c-accent: #2EC4B6; /* Accent Cyan */
    
    /* Backgrounds */
    --c-bg: #F8FAFC;
    --c-surface: #FFFFFF;
    --c-surface-dark: #0F172A;
    --c-surface-glass: rgba(255, 255, 255, 0.85);
    --c-surface-glass-dark: rgba(15, 23, 42, 0.85);
    
    /* Text */
    --c-text: #0F172A;
    --c-text-light: #64748B;
    --c-text-white: #F8FAFC;
    --c-text-white-muted: #94A3B8;
    
    /* UI */
    --c-border: #E2E8F0;
    --c-border-dark: rgba(255,255,255,0.1);
    
    /* Typography */
    --f-heading: 'Outfit', sans-serif;
    --f-body: 'Inter', sans-serif;
    
    /* Effects */
    --shadow-sm: 0 4px 6px -1px rgba(0, 0, 0, 0.05);
    --shadow-md: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
    --shadow-lg: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
    --shadow-glow: 0 0 20px rgba(0, 98, 255, 0.4);
    --transition-fast: 0.2s ease;
    --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-slow: 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    --radius-sm: 8px;
    --radius: 16px;
    --radius-lg: 24px;
    --radius-full: 9999px;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    overflow-x: hidden;
}

body {
    font-family: var(--f-body);
    background-color: var(--c-bg);
    color: var(--c-text);
    line-height: 1.6;
    overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--f-heading);
    font-weight: 800;
    line-height: 1.1;
    color: inherit;
}

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

ul {
    list-style: none;
}

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

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

/* ==========================================================================
   Animations & Utilities
   ========================================================================== */
.fade-up {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

.fade-up.visible {
    opacity: 1;
    transform: translateY(0);
}

.delay-100 { transition-delay: 100ms; }
.delay-200 { transition-delay: 200ms; }
.delay-300 { transition-delay: 300ms; }
.delay-400 { transition-delay: 400ms; }

.section-padding {
    padding: 120px 0;
}

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

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

/* ==========================================================================
   Buttons
   ========================================================================== */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    font-family: var(--f-heading);
    font-weight: 700;
    font-size: 1.125rem;
    padding: 18px 32px;
    border-radius: var(--radius-full);
    border: none;
    cursor: pointer;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.btn::after {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background: rgba(255,255,255,0.2);
    z-index: -1;
    transform: scaleX(0);
    transform-origin: right;
    transition: transform 0.4s ease;
    border-radius: var(--radius-full);
}

.btn:hover::after {
    transform: scaleX(1);
    transform-origin: left;
}

.btn-primary {
    background: linear-gradient(135deg, var(--c-primary), #004ecc);
    color: white;
    box-shadow: 0 10px 20px -5px rgba(0, 98, 255, 0.4);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 25px -5px rgba(0, 98, 255, 0.5);
}

.btn-whatsapp {
    background: linear-gradient(135deg, #25D366, #128C7E);
    color: white;
    box-shadow: 0 10px 20px -5px rgba(37, 211, 102, 0.4);
}

.btn-whatsapp:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 25px -5px rgba(37, 211, 102, 0.5);
}

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

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

.btn-outline-white {
    background: transparent;
    color: white;
    border: 2px solid rgba(255,255,255,0.3);
}

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

/* ==========================================================================
   Header
   ========================================================================== */
.site-header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    padding: 24px 0;
    transition: var(--transition-slow);
}

.site-header.scrolled {
    padding: 16px 0;
    background: var(--c-surface-glass);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    box-shadow: var(--shadow-sm);
    border-bottom: 1px solid rgba(255,255,255,0.5);
}

.header-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    display: flex;
    flex-direction: column;
}

.logo-text {
    font-family: var(--f-heading);
    font-size: 2.25rem;
    font-weight: 900;
    color: var(--c-text);
    line-height: 1;
    letter-spacing: -1px;
    transition: var(--transition);
}

.site-header.scrolled .logo-text {
    color: var(--c-primary);
}

.logo-sub {
    font-family: var(--f-body);
    font-size: 0.75rem;
    font-weight: 700;
    color: var(--c-secondary);
    letter-spacing: 3px;
    text-transform: uppercase;
}

.header-contact {
    display: flex;
    align-items: center;
    gap: 32px;
}

.phone-link {
    display: flex;
    align-items: center;
    gap: 12px;
    font-family: var(--f-heading);
    font-weight: 700;
    font-size: 1.25rem;
    color: var(--c-text);
}

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

.phone-link .icon-box {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(0, 98, 255, 0.1);
    color: var(--c-primary);
    display: flex;
    align-items: center;
    justify-content: center;
}

/* ==========================================================================
   Hero Section
   ========================================================================== */
.hero {
    min-height: 100vh;
    padding-top: 120px;
    display: flex;
    align-items: center;
    position: relative;
    background: var(--c-bg);
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 800px;
    height: 800px;
    background: radial-gradient(circle, rgba(55,66,118,0.15) 0%, rgba(255,255,255,0) 70%);
    border-radius: 50%;
    z-index: 0;
}

.hero::after {
    content: '';
    position: absolute;
    bottom: -20%;
    left: -10%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(255,77,0,0.05) 0%, rgba(255,255,255,0) 70%);
    border-radius: 50%;
    z-index: 0;
}

.hero-container {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 64px;
    align-items: center;
}

.hero-content {
    max-width: 600px;
}

.badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 16px;
    background: rgba(0, 98, 255, 0.1);
    border: 1px solid rgba(0, 98, 255, 0.2);
    border-radius: var(--radius-full);
    font-family: var(--f-heading);
    font-weight: 700;
    font-size: 0.875rem;
    color: var(--c-primary);
    margin-bottom: 24px;
}

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

@keyframes pulse {
    0% { box-shadow: 0 0 0 0 rgba(0, 98, 255, 0.4); }
    70% { box-shadow: 0 0 0 10px rgba(0, 98, 255, 0); }
    100% { box-shadow: 0 0 0 0 rgba(0, 98, 255, 0); }
}

.hero h1 {
    font-size: 4.5rem;
    margin-bottom: 24px;
    letter-spacing: -2px;
}

.hero p {
    font-size: 1.25rem;
    color: var(--c-text-light);
    margin-bottom: 40px;
    max-width: 500px;
}

.hero-ctas {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
    margin-bottom: 48px;
}

.hero-trust {
    display: flex;
    align-items: center;
    gap: 24px;
    border-top: 1px solid var(--c-border);
    padding-top: 24px;
}

.trust-item {
    display: flex;
    align-items: center;
    gap: 12px;
}

.trust-icon {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: white;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--c-primary);
    box-shadow: var(--shadow-sm);
}

.trust-text {
    font-family: var(--f-heading);
    font-weight: 700;
    font-size: 0.875rem;
    color: var(--c-text);
    line-height: 1.2;
}

.trust-text span {
    display: block;
    color: var(--c-text-light);
    font-weight: 400;
    font-family: var(--f-body);
}

.hero-image {
    position: relative;
    perspective: 1000px;
}

.ticket-3d {
    background: var(--c-surface);
    border-radius: var(--radius-lg);
    padding: 48px;
    box-shadow: var(--shadow-lg);
    border: 1px solid var(--c-border);
    transform: rotateY(-10deg) rotateX(5deg);
    transition: transform 0.5s ease;
    position: relative;
}

.hero-image:hover .ticket-3d {
    transform: rotateY(0deg) rotateX(0deg);
}

.ticket-3d::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    border-radius: var(--radius-lg);
    box-shadow: inset 0 0 0 1px rgba(255,255,255,0.5);
    pointer-events: none;
}

.ticket-head {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 32px;
    padding-bottom: 24px;
    border-bottom: 2px dashed var(--c-border);
}

.ticket-id {
    font-family: var(--f-heading);
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--c-text);
}

.ticket-status {
    padding: 6px 12px;
    background: rgba(37, 211, 102, 0.1);
    color: #25D366;
    border-radius: var(--radius-full);
    font-weight: 700;
    font-size: 0.875rem;
}

.ticket-body .t-row {
    display: flex;
    justify-content: space-between;
    margin-bottom: 16px;
    font-size: 1.125rem;
}

.t-label {
    color: var(--c-text-light);
}

.t-value {
    font-weight: 700;
    color: var(--c-text);
}

/* ==========================================================================
   Brands Section
   ========================================================================== */
.brands {
    background: var(--c-surface);
    padding: 40px 0;
    border-top: 1px solid var(--c-border);
    border-bottom: 1px solid var(--c-border);
}

.brands-container {
    display: flex;
    align-items: center;
    gap: 48px;
    overflow: hidden;
    position: relative;
}

.brands-title {
    font-family: var(--f-heading);
    font-weight: 800;
    font-size: 1.25rem;
    color: var(--c-text);
    white-space: nowrap;
    position: relative;
    padding-right: 24px;
    background: var(--c-surface);
    z-index: 10;
}

.brands-title::after {
    content: '';
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 2px;
    height: 24px;
    background: var(--c-border);
}

.brands-track {
    display: flex;
    gap: 48px;
    animation: scrollBrands 30s linear infinite;
}

.brands-track span {
    font-family: var(--f-heading);
    font-weight: 800;
    font-size: 1.5rem;
    color: var(--c-text-light);
    opacity: 0.9;
    transition: var(--transition);
    cursor: default;
}

.brands-track span:hover {
    opacity: 1;
    color: var(--c-primary);
}

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

/* ==========================================================================
   Services Section
   ========================================================================== */
.services {
    background: var(--c-bg);
}

.section-header {
    text-align: center;
    margin-bottom: 80px;
    max-width: 700px;
    margin-inline: auto;
}

.section-header h2 {
    font-size: 3.5rem;
    margin-bottom: 24px;
    letter-spacing: -1px;
}

.section-header p {
    font-size: 1.25rem;
    color: var(--c-text-light);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 32px;
}

.service-card {
    background: var(--c-surface);
    border-radius: var(--radius);
    padding: 32px 24px;
    text-align: center;
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--c-border);
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0; height: 4px;
    background: linear-gradient(90deg, var(--c-primary), var(--c-secondary));
    transform: scaleX(0);
    transition: transform 0.4s ease;
    transform-origin: left;
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-lg);
    border-color: transparent;
}

.service-card:hover::before {
    transform: scaleX(1);
}

.service-img-wrapper {
    width: 120px;
    height: 120px;
    margin: 0 auto 24px;
    background: var(--c-bg);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 24px;
    transition: transform 0.4s ease;
}

.service-card:hover .service-img-wrapper {
    transform: scale(1.1);
    background: rgba(0,98,255,0.05);
}

.service-img-wrapper img {
    filter: drop-shadow(0 10px 10px rgba(0,0,0,0.1));
}

.service-card h3 {
    font-size: 1.25rem;
    color: var(--c-text);
}

/* Technician Image (Hero Section) */
.tech-img {
    width: 100%;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
    object-fit: cover;
}

.tech-badge {
    position: absolute;
    bottom: -24px;
    right: -24px;
    background: var(--c-surface);
    padding: 16px 24px;
    border-radius: var(--radius);
    box-shadow: var(--shadow-lg);
    display: flex;
    align-items: center;
    gap: 16px;
    border: 1px solid var(--c-border);
}

.tech-badge .badge-icon {
    width: 48px;
    height: 48px;
    background: rgba(37, 211, 102, 0.1);
    color: #25D366;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.tech-badge .badge-text strong {
    display: block;
    font-family: var(--f-heading);
    font-size: 1.125rem;
    color: var(--c-text);
}

.tech-badge .badge-text span {
    font-size: 0.875rem;
    color: var(--c-text-light);
}

/* ==========================================================================
   How It Works (Timeline)
   ========================================================================== */
.how-it-works {
    background: var(--c-surface-dark);
    color: var(--c-text-white);
    position: relative;
    overflow: hidden;
}

.how-it-works .section-header h2 {
    color: var(--c-text-white);
}

.how-it-works .section-header p {
    color: var(--c-text-white-muted);
}

.timeline {
    position: relative;
    max-width: 1000px;
    margin: 0 auto;
}

.timeline::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 2px;
    height: 100%;
    background: var(--c-border-dark);
}

.timeline-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 64px;
    position: relative;
}

.timeline-item:last-child {
    margin-bottom: 0;
}

.timeline-item:nth-child(even) {
    flex-direction: row-reverse;
}

.timeline-content {
    width: 45%;
    background: rgba(255,255,255,0.03);
    padding: 32px;
    border-radius: var(--radius);
    border: 1px solid var(--c-border-dark);
    backdrop-filter: blur(10px);
    transition: var(--transition);
}

.timeline-content:hover {
    background: rgba(255,255,255,0.08);
    transform: translateY(-5px);
    border-color: rgba(255,255,255,0.2);
}

.timeline-number {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    width: 64px;
    height: 64px;
    background: var(--c-surface-dark);
    border: 4px solid var(--c-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--f-heading);
    font-size: 1.5rem;
    font-weight: 800;
    color: white;
    z-index: 2;
    box-shadow: 0 0 0 10px var(--c-surface-dark);
}

.timeline-content h3 {
    font-size: 1.5rem;
    margin-bottom: 12px;
    color: white;
}

.timeline-content p {
    color: var(--c-text-white-muted);
}

/* ==========================================================================
   Differentials
   ========================================================================== */
.differentials {
    background: var(--c-bg);
}

.diff-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 32px;
}

.diff-card {
    background: var(--c-surface);
    padding: 40px;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--c-border);
    transition: var(--transition);
}

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

.diff-icon {
    width: 64px;
    height: 64px;
    background: rgba(0, 98, 255, 0.1);
    color: var(--c-primary);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    margin-bottom: 24px;
}

.diff-card h3 {
    font-size: 1.5rem;
    margin-bottom: 16px;
}

.diff-card p {
    color: var(--c-text-light);
}

/* ==========================================================================
   FAQ
   ========================================================================== */
.faq {
    background: var(--c-surface);
}

.faq-container {
    max-width: 800px;
    margin: 0 auto;
}

.accordion-item {
    margin-bottom: 16px;
    border: 1px solid var(--c-border);
    border-radius: var(--radius);
    overflow: hidden;
    transition: var(--transition);
}

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

.accordion-header {
    width: 100%;
    padding: 24px;
    background: var(--c-surface);
    border: none;
    text-align: left;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-family: var(--f-heading);
    font-weight: 700;
    font-size: 1.25rem;
    color: var(--c-text);
    cursor: pointer;
    transition: var(--transition);
}

.accordion-header:hover {
    color: var(--c-primary);
}

.accordion-icon {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: var(--c-bg);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--c-text);
    transition: var(--transition);
}

.accordion-item.active .accordion-icon {
    background: var(--c-primary);
    color: white;
    transform: rotate(45deg);
}

.accordion-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    background: var(--c-surface);
}

.accordion-body {
    padding: 0 24px 24px;
    color: var(--c-text-light);
    line-height: 1.7;
}

/* ==========================================================================
   Final CTA
   ========================================================================== */
.final-cta {
    padding: 120px 0;
    position: relative;
    background: linear-gradient(135deg, var(--c-surface-dark) 0%, #1c3541 100%);
    color: white;
    text-align: center;
    overflow: hidden;
}

.final-cta::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 1000px;
    height: 1000px;
    background: radial-gradient(circle, rgba(55,66,118,0.2) 0%, rgba(255,255,255,0) 70%);
    border-radius: 50%;
    z-index: 0;
}

.final-cta-content {
    position: relative;
    z-index: 1;
    max-width: 800px;
    margin: 0 auto;
}

.final-cta h2 {
    font-size: 4rem;
    margin-bottom: 24px;
    letter-spacing: -1px;
}

.final-cta p {
    font-size: 1.5rem;
    color: var(--c-text-white-muted);
    margin-bottom: 48px;
}

/* ==========================================================================
   Footer
   ========================================================================== */
.site-footer {
    background: #090e17;
    color: white;
    padding: 80px 0 0;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 64px;
    margin-bottom: 64px;
}

.footer-logo-area p {
    margin-top: 24px;
    color: var(--c-text-white-muted);
    max-width: 300px;
}

.footer-nav h4 {
    font-size: 1.25rem;
    margin-bottom: 24px;
}

.footer-nav ul li {
    margin-bottom: 16px;
}

.footer-nav ul li a {
    color: var(--c-text-white-muted);
}

.footer-nav ul li a:hover {
    color: var(--c-primary);
    padding-left: 8px;
}

.footer-bottom {
    background: rgba(0,0,0,0.2);
    padding: 24px 0;
    text-align: center;
    color: var(--c-text-white-muted);
    font-size: 0.875rem;
}

/* ==========================================================================
   Floating Actions
   ========================================================================== */
.float-whatsapp {
    position: fixed;
    bottom: 32px;
    right: 32px;
    width: 64px;
    height: 64px;
    background: #25D366;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 10px 25px rgba(37, 211, 102, 0.4);
    z-index: 999;
    transition: transform 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    animation: bounce 2s infinite;
}

.float-whatsapp:hover {
    transform: scale(1.1);
    animation: none;
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% {transform: translateY(0);}
    40% {transform: translateY(-10px);}
    60% {transform: translateY(-5px);}
}

/* ==========================================================================
   Our Store
   ========================================================================== */
.store-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 64px;
    align-items: center;
}
.store-title {
    font-size: 3rem;
    margin-bottom: 24px;
    letter-spacing: -1px;
}
.store-desc {
    font-size: 1.25rem;
    color: var(--c-text-light);
    margin-bottom: 24px;
}
.store-list {
    margin-bottom: 32px;
    list-style: none;
}
.store-list-item {
    margin-bottom: 12px;
    display: flex;
    align-items: center;
    gap: 12px;
    font-weight: 500;
}
.store-img {
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
    width: 100%;
    object-fit: cover;
}

/* Logos */
.header-logo-img {
    height: 75px;
    object-fit: contain;
    max-width: 100%;
}
.footer-logo-img {
    height: 75px;
    object-fit: contain;
    margin-bottom: 16px;
    max-width: 100%;
}

/* ==========================================================================
   Responsive
   ========================================================================== */
@media (max-width: 1024px) {
    .hero-container {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .hero-content {
        margin: 0 auto;
    }
    
    .hero-ctas {
        justify-content: center;
    }
    
    .hero-trust {
        justify-content: center;
    }
    
    .ticket-3d {
        max-width: 500px;
        margin: 0 auto;
        transform: none;
    }
    
    .timeline::before {
        left: 32px;
    }
    
    .timeline-item, .timeline-item:nth-child(even) {
        flex-direction: column;
        align-items: flex-start;
        padding-left: 80px;
    }
    
    .timeline-content {
        width: 100%;
    }
    
    .timeline-number {
        left: 32px;
    }
    
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .store-grid {
        grid-template-columns: 1fr;
        gap: 40px;
        text-align: center;
    }
    .store-list-item {
        justify-content: center;
    }
    
    .tech-badge {
        right: 24px;
        bottom: -24px;
    }
}

@media (max-width: 768px) {
    .header-contact {
        display: none;
    }
    
    .hero h1 {
        font-size: 3.5rem;
    }
    
    .section-header h2 {
        font-size: 2.5rem;
    }
    
    .final-cta h2 {
        font-size: 2.5rem;
    }
    
    .store-title {
        font-size: 2.5rem;
    }
}

@media (max-width: 480px) {
    .hero h1 {
        font-size: 2.5rem;
    }
    
    .hero-ctas {
        flex-direction: column;
    }
    
    .btn {
        width: 100%;
    }
    
    .ticket-3d {
        padding: 24px;
    }
    
    .store-title {
        font-size: 2rem;
    }
}
