:root {
    --bg-primary: #050505;
    --bg-secondary: #0A0A0C;
    --text-heading: rgba(255, 255, 255, 0.92);
    --text-body: rgba(255, 255, 255, 0.60);
    --text-muted: rgba(255, 255, 255, 0.35);

    --accent-primary: #005FFF;
    --accent-secondary: #00D4FF;
    --cta-gradient: linear-gradient(135deg, #005FFF, #00D4FF);
    --wa-green: #25D366;

    --nav-height: 80px;
}

html {
    scroll-behavior: smooth;
    box-sizing: border-box;
}

*, *::before, *::after {
    box-sizing: inherit;
    margin: 0;
    padding: 0;
}

body {
    background-color: var(--bg-primary);
    color: var(--text-body);
    font-family: 'Inter', sans-serif;
    line-height: 1.75;
    font-size: 16px;
    font-weight: 400;
    overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
    color: var(--text-heading);
    margin: 0;
}

a {
    text-decoration: none;
    color: inherit;
    transition: all 0.3s cubic-bezier(0.22, 1, 0.36, 1);
}

img, video {
    max-width: 100%;
    display: block;
}

/* Base Form Inputs */
input, textarea, button {
    font-family: inherit;
}

/* Animations */
.reveal {
    opacity: 0;
    transform: translateY(28px);
    transition: opacity 0.7s cubic-bezier(0.22, 1, 0.36, 1), transform 0.7s cubic-bezier(0.22, 1, 0.36, 1);
}

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

/* Typography specifics */
.text-overline {
    font-size: 12px;
    color: var(--accent-secondary);
    letter-spacing: 3px;
    text-transform: uppercase;
    font-weight: 600;
}

.text-micro {
    font-size: 13px;
    font-weight: 400;
    color: var(--text-muted);
}

/* Navbar */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: var(--nav-height);
    z-index: 1000;
    background: transparent;
    transition: all 0.35s cubic-bezier(0.22, 1, 0.36, 1);
}

.navbar.scrolled {
    background: rgba(5, 5, 5, 0.45);
    backdrop-filter: blur(24px);
    -webkit-backdrop-filter: blur(24px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.04);
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 100%;
    padding: 0 40px;
    max-width: 1440px;
    margin: 0 auto;
}

.nav-brand {
    display: flex;
    align-items: center;
    padding: 0;
}

.nav-logo {
    width: 220px;
    height: 160px;
    margin-top: 40px;
    object-fit: contain;
    filter: drop-shadow(0 6px 14px rgba(0, 0, 0, 0.45));
}

@media (max-width: 768px) {
    .nav-logo {
        width: 110px;
        height: 74px;
    }
}

.nav-links {
    display: flex;
    gap: 40px;
}

.nav-links a {
    font-size: 15px;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.65);
    position: relative;
    padding-bottom: 4px;
}

.nav-links a:hover {
    color: #fff;
}

.nav-links a.active {
    color: #fff;
}

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

.nav-right {
    display: flex;
    align-items: center;
}

.btn-pill-gradient {
    background: var(--cta-gradient);
    color: #fff;
    font-weight: 600;
    font-size: 15px;
    padding: 12px 28px;
    border-radius: 999px;
    border: none;
    cursor: pointer;
    display: inline-block;
    transition: all 0.3s cubic-bezier(0.22, 1, 0.36, 1);
}

.btn-pill-gradient:hover {
    box-shadow: 0 0 20px rgba(0, 95, 255, 0.4);
    color: #fff;
}

/* Hamburger for mobile */
.hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
    z-index: 1001;
}

.hamburger span {
    display: block;
    width: 24px;
    height: 2px;
    background: #fff;
    transition: 0.3s;
}

.mobile-drawer {
    position: fixed;
    top: 0;
    right: -100%;
    width: 280px;
    height: 100vh;
    background: var(--bg-secondary);
    z-index: 999;
    transition: right 0.4s cubic-bezier(0.22, 1, 0.36, 1);
    display: flex;
    flex-direction: column;
    padding: 100px 40px;
    gap: 30px;
    border-left: 1px solid rgba(255,255,255,0.07);
}

.mobile-drawer.open {
    right: 0;
}

.mobile-drawer a {
    color: var(--text-heading);
    font-size: 20px;
    font-weight: 600;
}

/* CTA & WhatsApp Float */
.whatsapp-float {
    position: fixed;
    bottom: 24px;
    right: 24px;
    width: 56px;
    height: 56px;
    background-color: var(--wa-green);
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    color: #fff;
    z-index: 9999;
    box-shadow: 0 4px 20px rgba(37, 211, 102, 0.45);
    transition: all 0.3s cubic-bezier(0.22, 1, 0.36, 1);
}

.whatsapp-float:hover {
    transform: scale(1.10);
    box-shadow: 0 6px 25px rgba(37, 211, 102, 0.6);
}

/* Footer Section */
.footer {
    background: var(--bg-secondary);
    border-top: 1px solid rgba(255, 255, 255, 0.06);
    padding: 64px 40px 40px;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 40px;
    max-width: 1440px;
    margin: 0 auto;
}

.footer-brand {
    font-size: 20px;
    font-weight: 700;
    color: #fff;
    margin-bottom: 4px;
    display: inline-block;
}

.footer-tagline {
    font-size: 14px;
    color: var(--text-muted);
}

.social-row {
    display: flex;
    gap: 20px;
    margin-top: 20px;
}

.social-row a {
    color: #fff;
}

.social-row a:nth-child(1):hover { color: var(--accent-primary); }
.social-row a:nth-child(2):hover { color: #E1306C; }
.social-row a:nth-child(3):hover { color: var(--wa-green); }

.footer-mini-map-link {
    display: inline-block;
    margin-top: 18px;
    width: min(320px, 100%);
}

.footer-mini-map {
    border-radius: 12px;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.12);
    box-shadow: 0 14px 24px rgba(0, 0, 0, 0.28);
}

.footer-mini-map iframe {
    display: block;
    width: 100%;
    height: 160px;
    border: 0;
}

.footer-eyebrow {
    font-size: 11px;
    color: var(--accent-secondary);
    letter-spacing: 2px;
    text-transform: uppercase;
    font-weight: 600;
    margin-bottom: 24px;
}

.footer-links {
    display: flex;
    flex-direction: column;
    gap: 12px;
    font-size: 14px;
    color: rgba(255, 255, 255, 0.55);
}

.footer-links a:hover {
    color: #fff;
}

.footer-bottom {
    max-width: 1440px;
    margin: 40px auto 0;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    padding-top: 24px;
    text-align: center;
}

.footer-bottom p {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.25);
}

/* Input Fields Utility */
.form-group {
    margin-bottom: 32px;
}

.form-group label {
    display: block;
    font-size: 14px;
    color: rgba(255, 255, 255, 0.85);
    font-weight: 500;
    margin-bottom: 10px;
}

.form-input {
    width: 100%;
    background: rgba(0, 0, 0, 0.4);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 12px;
    color: #fff;
    font-size: 16px;
    padding: 18px 22px;
    transition: all 0.3s cubic-bezier(0.22, 1, 0.36, 1);
    outline: none;
    box-shadow: inset 0 2px 4px rgba(0, 0, 0, 0.1);
}

.form-input::placeholder {
    color: rgba(255, 255, 255, 0.30);
}

.form-input:focus {
    background: rgba(0, 0, 0, 0.5);
    border-color: var(--accent-secondary);
    box-shadow: 0 0 0 4px rgba(0, 212, 255, 0.15), inset 0 2px 4px rgba(0, 0, 0, 0.1);
}

/* Mobile Breakpoints */
@media (max-width: 768px) {
    .nav-links {
        display: none;
    }

    .hamburger {
        display: flex;
        margin-left: 20px;
    }

    .nav-container {
        padding: 0 20px;
    }

    .whatsapp-float {
        width: 48px;
        height: 48px;
        bottom: 16px;
        right: 16px;
    }

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

/* Hero Section */
.hero {
    position: relative;
    height: 100vh;
    overflow: hidden;
}

.hero-video {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 0;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to right, rgba(5, 5, 5, 0.88) 40%, rgba(5, 5, 5, 0.15) 100%);
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding-left: 9vw;
    max-width: 800px;
}

.hero h1 {
    font-size: clamp(48px, 6vw, 80px);
    font-weight: 800;
    letter-spacing: -2px;
    color: var(--text-heading);
    margin: 0;
    position: relative;
    z-index: 3;
}

.hero-title {
    line-height: 0.98;
}

.hero-title-static,
.hero-title-typing {
    display: block;
}

.hero-title-typing {
    color: #83b5ff;
    min-height: 1.1em;
    text-shadow: 0 0 18px rgba(131, 181, 255, 0.2);
}

.hero-title-typing::after {
    content: '';
    display: inline-block;
    width: 2px;
    height: 0.9em;
    margin-left: 6px;
    vertical-align: baseline;
    background: rgba(255, 255, 255, 0.8);
    animation: caretBlink 0.9s steps(1, end) infinite;
}

@keyframes caretBlink {
    0%, 50% { opacity: 1; }
    51%, 100% { opacity: 0; }
}

.hero-sub {
    font-size: clamp(22px, 2.5vw, 32px);
    font-weight: 600;
    color: rgba(255, 255, 255, 0.85);
    margin: 12px 0 8px;
    position: relative;
    z-index: 3;
}

.hero-tagline {
    font-size: 18px;
    color: rgba(255, 255, 255, 0.55);
    margin: 0;
    position: relative;
    z-index: 3;
}

.hero-glow {
    position: absolute;
    top: 50%;
    left: 20%;
    width: 600px;
    height: 600px;
    transform: translate(-50%, -50%);
    background: radial-gradient(ellipse at center, rgba(0, 95, 255, 0.10), transparent 60%);
    z-index: 1;
    animation: pulseGlow 3s cubic-bezier(0.4, 0, 0.6, 1) infinite alternate;
    pointer-events: none;
}

@keyframes pulseGlow {
    from { opacity: 0.6; }
    to { opacity: 1.0; }
}

.scroll-indicator {
    position: absolute;
    bottom: 32px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 2;
    animation: bounce 2s infinite, fadeOutOnScroll linear;
    animation-timeline: scroll(root);
}

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

@keyframes fadeOutOnScroll {
    0% { opacity: 1; }
    5% { opacity: 0; }
    100% { opacity: 0; }
}

/* Split Panels Section */
.split-panels {
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-template-rows: minmax(60vh, auto) auto;
    gap: 0;
}

.panel-left {
    position: relative;
    grid-column: 1 / 2;
    grid-row: 1 / 2;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
}

.panel-right-stack {
    grid-column: 2 / 3;
    grid-row: 1 / 2;
    display: flex;
    flex-direction: column;
}

.panel-bottom-left {
    grid-column: 1 / 2;
    grid-row: 2 / 3;
}

.panel-cta {
    grid-column: 2 / 3;
    grid-row: 2 / 3;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 100px 60px;
}

.panel-bg {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    z-index: 0;
}

.panel-dark-overlay-bottom {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(5, 5, 5, 0.90) 0%, rgba(5, 5, 5, 0.20) 60%);
    z-index: 1;
}

.bg-primary { background-color: var(--bg-primary); }
.bg-secondary { background-color: var(--bg-secondary); }

.panel-split {
    display: flex;
    flex: 1;
    min-height: 45vh;
}

.panel-split .split-text {
    flex: 0 0 45%;
    padding: 64px 40px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.panel-split .split-img {
    flex: 0 0 55%;
    background-size: cover;
    background-position: center;
}

.split-text h2 {
    font-size: 40px;
    font-weight: 700;
    line-height: 1.1;
    margin-bottom: 24px;
}

.panel-bottom-left .split-text h2 {
    font-size: 44px;
}

.spaced-paragraphs p {
    margin-bottom: 12px;
}

.spaced-paragraphs p:last-child {
    margin-bottom: 0;
}

.cta-content {
    max-width: 500px;
}

.cta-content h2 {
    font-size: 56px;
    font-weight: 800;
    line-height: 1.05;
    margin-bottom: 20px;
}

.cta-sub {
    font-size: 18px;
    margin-bottom: 32px;
}

.cta-actions {
    display: flex;
    align-items: center;
    gap: 24px;
}

.btn-link-secondary {
    color: var(--accent-secondary);
    font-size: 14px;
    font-weight: 600;
    position: relative;
    padding-bottom: 2px;
}

.btn-link-secondary::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 1px;
    background-color: var(--accent-secondary);
    transition: width 0.3s;
}

.btn-link-secondary:hover::after {
    width: 100%;
}

.mt-24 {
    margin-top: 24px;
}

@media (max-width: 1024px) {
    .split-panels {
        grid-template-columns: 1fr;
        grid-template-rows: auto;
    }

    .panel-left, .panel-right-stack, .panel-bottom-left, .panel-cta {
        grid-column: 1 / -1;
        grid-row: auto;
    }

    .panel-split {
        flex-direction: column !important;
    }

    .panel-split .split-text, .panel-split .split-img {
        flex: 1 1 auto;
        min-height: 300px;
    }
}

/* Secondary Pages Shared */
.page-hero {
    position: relative;
    min-height: 50vh;
    background-color: var(--bg-secondary);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    overflow: hidden;
    padding: calc(var(--nav-height) + 40px) 40px 64px;
}

.hero-50 { min-height: 50vh; }
.hero-40 { min-height: 40vh; }
.hero-35 { min-height: 35vh; }
.hero-25 { min-height: 25vh; }
.d-flex { display: flex; }
.align-center { align-items: center; }
.justify-center { justify-content: center; }

.page-hero-overlay {
    position: absolute;
    inset: 0;
    pointer-events: none;
    z-index: 1;
}

.page-hero-overlay.dark {
    background: rgba(10, 10, 12, 0.7);
}

.page-hero-content {
    position: relative;
    z-index: 2;
    max-width: 800px;
}

.page-hero h1 {
    font-size: clamp(40px, 5vw, 64px);
    font-weight: 800;
    letter-spacing: -1px;
    margin: 16px 0;
}

.page-hero-sub {
    font-size: clamp(18px, 2vw, 20px);
    color: rgba(255, 255, 255, 0.55);
}

.animated-underline {
    width: 60px;
    height: 2px;
    background-color: var(--accent-primary);
    margin: 32px auto 0;
    animation: slideInFromLeft 1s ease-out forwards;
}

@keyframes slideInFromLeft {
    0% { transform: scaleX(0); opacity: 0; }
    100% { transform: scaleX(1); opacity: 1; }
}

.section-padding { padding: 120px 40px; }
.pt-0 { padding-top: 0; }
.container { max-width: 1200px; margin: 0 auto; }
.container-large { max-width: 1440px; }
.text-center { text-align: center; }
.mx-auto { margin-left: auto; margin-right: auto; }
.mb-32 { margin-bottom: 32px; }
.mb-64 { margin-bottom: 64px; }
.mt-64 { margin-top: 64px; }
.full-width { width: 100%; display: block; text-align: center; }

/* Grid Utilities */
.grid-2 {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

/* About Page */
.highlight-quote {
    font-size: 20px;
    font-style: italic;
    color: var(--text-heading);
    border-left: 3px solid var(--accent-primary);
    padding-left: 20px;
    margin: 32px 0 0;
}

.story-text p {
    margin-top: 24px;
    font-size: 17px;
    color: rgba(255, 255, 255, 0.65);
}

.story-img img {
    border-radius: 4px;
    width: 100%;
}

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

.stat-card {
    background: var(--bg-secondary);
    border: 1px solid rgba(255, 255, 255, 0.06);
    padding: 48px;
    text-align: center;
    border-radius: 8px;
}

.stat-count {
    font-size: 64px;
    font-weight: 800;
    background: var(--cta-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 8px;
    line-height: 1;
}

.stat-label {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.55);
}

.section-title {
    font-size: 40px;
    font-weight: 700;
    letter-spacing: -1px;
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 24px;
}

.value-card {
    background: var(--bg-secondary);
    border: 1px solid rgba(255, 255, 255, 0.06);
    padding: 40px;
    border-radius: 8px;
    transition: all 0.3s;
}

.value-card:hover {
    border-color: rgba(0, 95, 255, 0.3);
}

.value-icon {
    width: 48px;
    height: 48px;
    background: rgba(0, 95, 255, 0.1);
    color: var(--accent-primary);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 24px;
}

.value-card h3 {
    font-size: 20px;
    margin-bottom: 12px;
}

.value-card p {
    font-size: 15px;
    color: rgba(255, 255, 255, 0.55);
}

/* Services Page */
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
    gap: 1px;
    background-color: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.service-card {
    background: var(--bg-secondary);
    display: flex;
    flex-direction: column;
    overflow: hidden;
    position: relative;
    transition: all 0.3s cubic-bezier(0.22, 1, 0.36, 1);
}

.service-img {
    position: relative;
    padding-top: 56.25%;
    overflow: hidden;
}

.service-img img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s cubic-bezier(0.22, 1, 0.36, 1);
}

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

.service-content {
    padding: 24px 24px 20px;
    flex-grow: 1;
}

.service-content h3 {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 8px;
}

.service-content p {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.55);
    margin-bottom: 16px;
}

.service-price {
    font-size: 18px;
    font-weight: 700;
    color: var(--accent-secondary);
}

.service-cta {
    display: block;
    text-align: center;
    padding: 16px;
    border-top: 1px solid rgba(255, 255, 255, 0.06);
    color: var(--accent-primary);
    font-weight: 600;
    font-size: 14px;
    background: transparent;
    transition: all 0.3s;
}

.service-card:hover .service-cta {
    background-color: var(--accent-primary);
    color: #fff;
    border-top-color: var(--accent-primary);
}

.empty-state {
    padding: 80px 0;
}

/* Contact Page */
.contact-left {
    background: linear-gradient(145deg, rgba(20, 20, 22, 0.8), rgba(10, 10, 12, 0.9));
    padding: 48px;
    border-radius: 16px;
    border: 1px solid rgba(255,255,255,0.06);
    box-shadow: 0 24px 48px rgba(0, 0, 0, 0.4);
}

.form-submit-btn {
    font-size: 16px;
    padding: 16px 32px;
    border-radius: 12px;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 700;
    margin-top: 8px;
}

.btn-wa-large {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    background-color: var(--wa-green);
    color: #fff;
    font-size: 16px;
    font-weight: 600;
    padding: 18px;
    border-radius: 999px;
    transition: all 0.3s;
}

.btn-wa-large:hover {
    box-shadow: 0 4px 20px rgba(37, 211, 102, 0.3);
    color: #fff;
}

.divider {
    height: 1px;
    background: rgba(255, 255, 255, 0.1);
    margin: 32px 0;
}

.contact-rows {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.contact-row {
    display: flex;
    align-items: center;
    gap: 16px;
    font-size: 15px;
    color: rgba(255, 255, 255, 0.8);
}

.contact-row:hover {
    color: #fff;
}

.c-icon {
    width: 40px;
    height: 40px;
    background: rgba(255,255,255,0.05);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.text-accent-primary { color: var(--accent-primary); }
.text-ig { color: #E1306C; }

.location-map-card {
    margin-top: 28px;
    background: linear-gradient(145deg, rgba(20, 20, 22, 0.8), rgba(10, 10, 12, 0.9));
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 14px;
    padding: 18px;
}

.location-map-card h3 {
    font-size: 18px;
    margin-bottom: 12px;
}

.map-embed-wrap {
    overflow: hidden;
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.map-embed-wrap iframe {
    display: block;
    width: 100%;
    height: 240px;
    border: 0;
}

.map-link {
    margin-top: 12px;
    display: inline-block;
    color: var(--accent-secondary);
    font-size: 14px;
    font-weight: 600;
}

.map-link:hover {
    color: #fff;
}

/* Franchise Page */
.franchise-card {
    padding: 36px;
}

.franchise-card:hover {
    border-color: rgba(0, 95, 255, 0.3);
    box-shadow: inset 0 0 20px rgba(0, 95, 255, 0.05);
}

.timeline-container {
    position: relative;
    max-width: 800px;
    margin: 40px auto 0;
}

.timeline-line {
    position: absolute;
    top: 24px;
    left: 10%;
    right: 10%;
    height: 2px;
    background-image: linear-gradient(to right, transparent, var(--accent-primary) 20%, var(--accent-primary) 80%, transparent);
    z-index: 1;
}

.timeline-steps {
    display: flex;
    justify-content: space-between;
    position: relative;
    z-index: 2;
}

.timeline-step {
    display: flex;
    flex-direction: column;
    align-items: center;
    flex: 1;
    text-align: center;
    padding: 0 10px;
}

.step-circle {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: var(--bg-primary);
    border: 2px solid var(--accent-primary);
    color: #fff;
    font-weight: 700;
    font-size: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 16px;
    box-shadow: 0 0 15px rgba(0, 95, 255, 0.2);
}

.step-title {
    font-size: 15px;
    font-weight: 500;
    color: rgba(255,255,255,0.8);
}

/* Privacy Policy */
.content-container {
    max-width: 760px;
    margin: 0 auto;
}

.privacy-content h2 {
    font-size: 24px;
    color: #fff;
    margin: 40px 0 16px;
}

.privacy-content h2:first-child {
    margin-top: 0;
}

.privacy-content p {
    font-size: 16px;
    color: rgba(255, 255, 255, 0.60);
    margin-bottom: 24px;
}

/* Breakpoints for inner pages */
@media (max-width: 768px) {
    .grid-2, .stats-grid, .values-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .timeline-line {
        top: 0;
        bottom: 0;
        left: 24px;
        width: 2px;
        height: 100%;
        right: auto;
        background-image: linear-gradient(to bottom, transparent, var(--accent-primary) 20%, var(--accent-primary) 80%, transparent);
    }

    .timeline-steps {
        flex-direction: column;
        gap: 40px;
    }

    .timeline-step {
        flex-direction: row;
        width: 100%;
        text-align: left;
    }

    .step-circle {
        margin-bottom: 0;
        margin-right: 24px;
        flex-shrink: 0;
    }

    .contact-left, .franchise-card {
        padding: 32px 24px;
    }

    .hero-overlay {
        background: linear-gradient(to right, rgba(5, 5, 5, 0.95) 20%, rgba(5, 5, 5, 0.45) 100%);
    }

    .hero-content {
        padding-left: 24px;
        padding-right: 24px;
    }
}
