/* ===== RESET & VARIABLES ===== */
:root {
    /* Colors */
    --color-black: #000000;
    --color-white: #ffffff;
    --color-bg: #0a0a0c;
    --color-bg-alt: #14141a;
    --color-surface: #1c1c24;
    --color-surface-hover: #26262e;
    --color-border: rgba(255, 255, 255, 0.08);
    --color-primary: #3ecfe0;
    --color-primary-dark: #2aacbd;
    --color-secondary: #7028e4;
    --color-text: #ffffff;
    --color-text-secondary: rgba(255, 255, 255, 0.7);
    --color-text-tertiary: rgba(255, 255, 255, 0.5);
    --color-success: #34d399;
    --color-error: #f87171;
    
    /* Typography */
    --font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
    --font-size-xs: 0.75rem;    /* 12px */
    --font-size-sm: 0.875rem;   /* 14px */
    --font-size-base: 1rem;     /* 16px */
    --font-size-lg: 1.125rem;   /* 18px */
    --font-size-xl: 1.25rem;    /* 20px */
    --font-size-2xl: 1.5rem;    /* 24px */
    --font-size-3xl: 1.875rem;  /* 30px */
    --font-size-4xl: 2.25rem;   /* 36px */
    --font-size-5xl: 3rem;      /* 48px */
    --font-size-6xl: 3.75rem;   /* 60px */
    
    /* Spacing */
    --spacing-xs: 0.25rem;      /* 4px */
    --spacing-sm: 0.5rem;       /* 8px */
    --spacing-md: 1rem;         /* 16px */
    --spacing-lg: 1.5rem;       /* 24px */
    --spacing-xl: 2rem;         /* 32px */
    --spacing-2xl: 3rem;        /* 48px */
    --spacing-3xl: 4rem;        /* 64px */
    --spacing-4xl: 6rem;        /* 96px */
    
    /* Radius */
    --radius-sm: 4px;
    --radius-md: 8px;
    --radius-lg: 12px;
    --radius-xl: 16px;
    --radius-full: 9999px;
    
    /* Shadows */
    --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.2);
    --shadow-md: 0 4px 16px rgba(0, 0, 0, 0.2);
    --shadow-lg: 0 8px 32px rgba(0, 0, 0, 0.2);
    --shadow-xl: 0 16px 64px rgba(0, 0, 0, 0.3);
    
    /* Animations */
    --transition-fast: 0.2s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-medium: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-slow: 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    
    /* Layout */
    --header-height: 80px;
    --container-width: 1280px;
    --container-padding: 1.5rem;
    
    /* Z-index layers */
    --z-negative: -1;
    --z-elevate: 1;
    --z-dropdown: 10;
    --z-sticky: 100;
    --z-fixed: 1000;
    --z-modal: 2000;
    --z-popover: 5000;
    --z-max: 9999;
}

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

html {
    font-size: 100%;
    -webkit-text-size-adjust: 100%;
    scroll-behavior: smooth;
    text-rendering: optimizeLegibility;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

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

img, svg {
    max-width: 100%;
    height: auto;
    vertical-align: middle;
}

button, input, optgroup, select, textarea {
    font-family: inherit;
    font-size: 100%;
    line-height: 1.15;
    margin: 0;
}

button, [role="button"] {
    cursor: pointer;
}

button::-moz-focus-inner, [type="button"]::-moz-focus-inner, [type="reset"]::-moz-focus-inner, [type="submit"]::-moz-focus-inner {
    border-style: none;
    padding: 0;
}

a {
    color: inherit;
    text-decoration: none;
}

ul, ol {
    list-style: none;
}

/* ===== PRELOADER ===== */
.preloader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: var(--color-bg);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: var(--z-max);
    transition: opacity 0.5s ease, visibility 0.5s ease;
}

.preloader.fade-out {
    opacity: 0;
    visibility: hidden;
}

.preloader__content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: var(--spacing-xl);
}

.preloader__logo {
    width: 60px;
    height: 60px;
}

.preloader__logo-path {
    fill: var(--color-primary);
    stroke: var(--color-primary);
    stroke-width: 2;
    stroke-dasharray: 100;
    stroke-dashoffset: 100;
    animation: logoDrawIn 2s forwards cubic-bezier(0.76, 0, 0.24, 1);
}

@keyframes logoDrawIn {
    to {
        stroke-dashoffset: 0;
    }
}

.preloader__bar {
    width: 200px;
    height: 3px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: var(--radius-full);
    overflow: hidden;
}

.preloader__progress {
    height: 100%;
    width: 0;
    background: linear-gradient(90deg, var(--color-primary), var(--color-secondary));
    animation: progressLoad 2s forwards cubic-bezier(0.76, 0, 0.24, 1);
}

@keyframes progressLoad {
    to {
        width: 100%;
    }
}

/* ===== LAYOUT ===== */
.container {
    width: 100%;
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 var(--container-padding);
    position: relative;
}

.container--wide {
    max-width: calc(var(--container-width) + 15%);
}

.section-header {
    text-align: center;
    max-width: 800px;
    margin: 0 auto var(--spacing-3xl);
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.section-title {
    font-size: var(--font-size-3xl);
    font-weight: 800;
    letter-spacing: -0.02em;
    background: linear-gradient(to right, var(--color-white), rgba(255, 255, 255, 0.8));
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.section-subtitle {
    font-size: var(--font-size-lg);
    color: var(--color-text-secondary);
    max-width: 700px;
    margin: 0 auto;
}

.section-link {
    display: flex;
    align-items: center;
    gap: var(--spacing-sm);
    font-size: var(--font-size-sm);
    font-weight: 500;
    color: var(--color-primary);
    transition: gap var(--transition-fast);
}

.section-link:hover {
    gap: var(--spacing-md);
}

/* ===== HEADER & NAVIGATION ===== */
.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: var(--header-height);
    background-color: rgba(10, 10, 12, 0.8);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    z-index: var(--z-fixed);
    transition: background-color var(--transition-medium), transform var(--transition-medium);
    border-bottom: 1px solid var(--color-border);
}

.header.scrolled {
    background-color: rgba(10, 10, 12, 0.95);
}

.header.hidden {
    transform: translateY(-100%);
}

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

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

.logo__mark {
    width: 36px;
    height: 36px;
}

.logo__shape {
    fill: var(--color-primary);
    transition: fill var(--transition-fast);
}

.logo:hover .logo__shape {
    fill: var(--color-white);
}

.logo__text {
    font-family: 'Outfit', sans-serif;
    font-size: var(--font-size-xl);
    font-weight: 800;
    letter-spacing: -0.02em;
    text-transform: uppercase;
}

.logo:hover .logo__text {
    background: linear-gradient(to right, var(--color-primary), var(--color-secondary));
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    transition: all 0.3s ease;
}

.nav {
    margin-left: auto;
    margin-right: var(--spacing-xl);
    display: none;
}

@media (min-width: 992px) {
    .nav {
        display: block;
    }
}

.nav__list {
    display: flex;
    align-items: center;
    gap: var(--spacing-xl);
}

.nav__link {
    font-size: var(--font-size-sm);
    font-weight: 500;
    color: var(--color-text-secondary);
    position: relative;
    padding: var(--spacing-sm) 0;
    transition: color var(--transition-fast);
}

.nav__link::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 100%;
    height: 2px;
    background: linear-gradient(to right, var(--color-primary), var(--color-secondary));
    transform: scaleX(0);
    transform-origin: right;
    transition: transform var(--transition-medium);
}

.nav__link:hover {
    color: var(--color-text);
}

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

.header__actions {
    display: flex;
    align-items: center;
    gap: var(--spacing-md);
}

.menu-toggle {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    width: 28px;
    height: 20px;
    background: transparent;
    border: none;
    padding: 0;
    z-index: var(--z-fixed);
}

@media (min-width: 992px) {
    .menu-toggle {
        display: none;
    }
}

.menu-toggle span {
    width: 100%;
    height: 2px;
    background-color: var(--color-text);
    transition: transform var(--transition-medium), opacity var(--transition-medium);
}

.menu-toggle.active span:nth-child(1) {
    transform: translateY(9px) rotate(45deg);
}

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

.menu-toggle.active span:nth-child(3) {
    transform: translateY(-9px) rotate(-45deg);
}

/* Mobile Menu */
.mobile-menu {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background-color: var(--color-bg);
    z-index: var(--z-modal);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: opacity var(--transition-medium), visibility var(--transition-medium);
}

.mobile-menu.active {
    opacity: 1;
    visibility: visible;
}

.mobile-menu__inner {
    padding: var(--spacing-3xl) var(--spacing-xl);
    width: 100%;
    max-width: 400px;
    text-align: center;
}

.mobile-menu__list {
    display: flex;
    flex-direction: column;
    gap: var(--spacing-xl);
    margin-bottom: var(--spacing-3xl);
}

.mobile-menu__link {
    font-size: var(--font-size-3xl);
    font-weight: 700;
    color: var(--color-text);
    position: relative;
    display: inline-block;
    transition: color var(--transition-fast);
}

.mobile-menu__link::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: -4px;
    width: 100%;
    height: 2px;
    background: linear-gradient(to right, var(--color-primary), var(--color-secondary));
    transform: scaleX(0);
    transition: transform var(--transition-medium);
}

.mobile-menu__link:hover {
    color: var(--color-primary);
}

.mobile-menu__link:hover::after {
    transform: scaleX(1);
}

.mobile-menu__actions {
    display: flex;
    flex-direction: column;
    gap: var(--spacing-md);
}

/* ===== BUTTONS ===== */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: var(--spacing-sm) var(--spacing-lg);
    font-size: var(--font-size-sm);
    font-weight: 600;
    border-radius: var(--radius-md);
    border: none;
    transition: all var(--transition-medium);
    position: relative;
    overflow: hidden;
}

.btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to right, rgba(255, 255, 255, 0.1), rgba(255, 255, 255, 0));
    transform: translateX(-100%) skewX(-15deg);
    transition: transform var(--transition-medium);
}

.btn:hover::before {
    transform: translateX(100%) skewX(-15deg);
}

.btn--primary {
    background: linear-gradient(to right, var(--color-primary), var(--color-secondary));
    color: var(--color-text);
    box-shadow: 0 4px 20px rgba(62, 207, 224, 0.3);
}

.btn--primary:hover {
    box-shadow: 0 8px 30px rgba(62, 207, 224, 0.4);
    transform: translateY(-2px);
}

.btn--primary:active {
    transform: translateY(0);
}

.btn--text {
    background: transparent;
    color: var(--color-text-secondary);
    padding: var(--spacing-sm) var(--spacing-md);
}

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

.btn--text-mobile {
    background: transparent;
    color: var(--color-text-secondary);
    font-size: var(--font-size-lg);
    padding: var(--spacing-sm) var(--spacing-md);
}

.btn--text-mobile:hover {
    color: var(--color-text);
}

.btn--xl {
    padding: var(--spacing-md) var(--spacing-2xl);
    font-size: var(--font-size-lg);
    font-weight: 600;
    border-radius: var(--radius-lg);
}

/* ===== REDESIGNED HERO SECTION ===== */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    overflow: hidden;
    padding: var(--spacing-4xl) 0;
    background-color: var(--color-bg);
}

/* Background elements */
.hero__image-container {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: var(--z-negative);
    background-image: url('https://images.unsplash.com/photo-1534438327276-14e5300c3a48?ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D&auto=format&fit=crop&w=1170&q=80');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.hero__overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(10, 10, 12, 0.85); /* Dark overlay */
    z-index: 1;
}

.hero__gradient {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        radial-gradient(ellipse at top right, rgba(62, 207, 224, 0.2) 0%, transparent 70%),
        radial-gradient(ellipse at bottom left, rgba(112, 40, 228, 0.2) 0%, transparent 70%);
    z-index: 2;
    opacity: 0.8;
}

.hero__grid-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url("data:image/svg+xml,%3Csvg width='30' height='30' viewBox='0 0 30 30' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M0 15 L30 15 M15 0 L15 30' stroke='rgba(255, 255, 255, 0.03)' fill='none'/%3E%3C/svg%3E");
    background-size: 30px 30px;
    z-index: 3;
    opacity: 0.6;
}

/* Content styling */
.hero .container {
    position: relative;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    gap: var(--spacing-4xl);
}

.hero__content {
    flex: 1;
    max-width: 600px;
    animation: fadeIn 1s ease-out;
}

.hero__badge {
    display: inline-flex;
    align-items: center;
    gap: var(--spacing-sm);
    padding: var(--spacing-sm) var(--spacing-lg);
    background: rgba(255, 255, 255, 0.1);
    border-radius: var(--radius-full);
    font-size: var(--font-size-sm);
    font-weight: 500;
    margin-bottom: var(--spacing-xl);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    animation: slideInLeft 0.8s ease-out;
}

.hero__badge-dot {
    width: 8px;
    height: 8px;
    background-color: var(--color-primary);
    border-radius: 50%;
    position: relative;
}

.hero__badge-dot::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    background: var(--color-primary);
    animation: pulse 2s infinite;
}

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

.hero__title {
    font-size: var(--font-size-5xl);
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: var(--spacing-xl);
    letter-spacing: -0.02em;
}

.hero__title-line {
    display: block;
    animation: slideInLeft 0.8s ease-out;
    animation-fill-mode: both;
}

.hero__title-line:nth-child(2) {
    animation-delay: 0.2s;
}

.hero__title-highlight {
    background: linear-gradient(to right, var(--color-primary), var(--color-secondary));
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    position: relative;
    display: inline-block;
}

.hero__title-highlight::after {
    content: '';
    position: absolute;
    bottom: 0.1em;
    left: 0;
    width: 100%;
    height: 0.05em;
    background: linear-gradient(to right, var(--color-primary), var(--color-secondary));
    opacity: 0.5;
    animation: lineReveal 1s ease-out 0.8s forwards;
    transform: scaleX(0);
    transform-origin: left;
}

@keyframes lineReveal {
    to {
        transform: scaleX(1);
    }
}

.hero__subtitle {
    font-size: var(--font-size-xl);
    color: var(--color-text-secondary);
    margin-bottom: var(--spacing-2xl);
    max-width: 90%;
    animation: slideInLeft 0.8s ease-out 0.4s both;
}

.hero__cta {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: var(--spacing-md);
    animation: slideInLeft 0.8s ease-out 0.6s both;
}

.hero__cta-note {
    font-size: var(--font-size-sm);
    color: var(--color-text-tertiary);
}

/* Enhanced Phone and Digital Pass Visualization */
.hero__device-preview {
    position: relative;
    flex: 1;
    max-width: 300px;
    height: 600px;
    display: none;
    z-index: 2;
}

@media (min-width: 992px) {
    .hero__device-preview {
        display: block;
        margin-left: 2rem;
    }
}

/* Modern Phone Frame */
.hero__phone {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 280px;
    height: 560px;
    z-index: 1;
    animation: phoneAppear 1s cubic-bezier(0.215, 0.61, 0.355, 1) 0.4s both;
    perspective: 1000px;
}

@keyframes phoneAppear {
    from {
        opacity: 0;
        transform: translate(-50%, -40%) rotateY(-10deg);
    }
    to {
        opacity: 1;
        transform: translate(-50%, -50%) rotateY(0);
    }
}

.hero__phone-frame {
    width: 100%;
    height: 100%;
    border-radius: 36px;
    background-color: #1a1a1a;
    border: 8px solid #2a2a2a;
    box-shadow: 
        0 50px 100px rgba(0, 0, 0, 0.4),
        0 0 0 1px rgba(255, 255, 255, 0.05) inset;
    overflow: hidden;
    position: relative;
    transform-style: preserve-3d;
    transform: rotateY(-5deg) rotateX(2deg);
    transition: transform 0.5s ease;
}

.hero__phone:hover .hero__phone-frame {
    transform: rotateY(0deg) rotateX(0deg);
}

.hero__phone-highlights {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    border-radius: 30px;
    pointer-events: none;
    z-index: 10;
    background: linear-gradient(
        135deg,
        rgba(255, 255, 255, 0.1) 0%,
        rgba(255, 255, 255, 0) 30%,
        rgba(255, 255, 255, 0) 70%,
        rgba(255, 255, 255, 0.08) 100%
    );
}

.hero__phone-screen {
    width: 100%;
    height: 100%;
    overflow: hidden;
    position: relative;
    background-color: #121212;
}

.hero__phone-notch {
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 120px;
    height: 30px;
    background-color: #1a1a1a;
    border-bottom-left-radius: 16px;
    border-bottom-right-radius: 16px;
    z-index: 12;
    box-shadow: 0 0 0 1px rgba(0, 0, 0, 0.2) inset;
}

.hero__phone-button {
    position: absolute;
    top: 120px;
    right: -8px;
    width: 3px;
    height: 30px;
    background-color: #2a2a2a;
    border-top-right-radius: 2px;
    border-bottom-right-radius: 2px;
    z-index: 10;
}

/* App UI Design */
.app-preview {
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    font-family: var(--font-family);
    color: white;
    padding: 0;
}

.app-preview__header {
    background: linear-gradient(to bottom, rgba(10, 10, 12, 0.8), rgba(10, 10, 12, 0.6));
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    padding-bottom: 10px;
}

.app-preview__status-bar {
    display: flex;
    justify-content: space-between;
    padding: 5px 16px;
    font-size: 12px;
    color: white;
}

.app-preview__icons {
    display: flex;
    gap: 8px;
}

.app-preview__nav {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 10px 16px;
}

.app-preview__logo {
    display: flex;
    align-items: center;
    gap: 6px;
    font-weight: 600;
    font-size: 16px;
}

.app-preview__logo-icon {
    width: 18px;
    height: 18px;
    background: linear-gradient(to right, var(--color-primary), var(--color-secondary));
    border-radius: 4px;
}

.app-preview__menu {
    font-size: 14px;
    opacity: 0.7;
}

.app-preview__content {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 20px 15px;
    background-image: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M54 22c0 1.1-.9 2-2 2h-4v4h-4v-4h-4v8h8v4h-8v4h-4v-4h-8v8h4v4h-4v4h-4v-4h-4v-4h4v-4h4v-8h-8v-4h8v-4h4v4h8v-8h-4v-4h4v-4h4v4h4v4zm-11 0h-8v8h8v-8zm-16 0h-8v8h8v-8zm-16 0h-8v8h8v-8z' fill='rgba(255, 255, 255, 0.02)' fill-rule='evenodd'/%3E%3C/svg%3E");
}

.app-preview__title {
    font-weight: 700;
    font-size: 18px;
    margin-bottom: 20px;
    width: 100%;
    text-align: center;
}

.app-preview__card {
    width: 100%;
    background: rgba(28, 28, 36, 0.8);
    border-radius: 16px;
    padding: 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    margin-bottom: 20px;
    position: relative;
    overflow: hidden;
}

.app-preview__card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    width: 150%;
    height: 20%;
    background: linear-gradient(to right, transparent, rgba(255, 255, 255, 0.1), transparent);
    transform: translateX(-50%) skewY(-5deg);
    animation: shimmer 3s infinite;
}

@keyframes shimmer {
    0% {
        top: -20%;
    }
    100% {
        top: 120%;
    }
}

.auth-loading {
    opacity: 0.7;
    transition: opacity 0.3s ease;
    position: relative;
}

.auth-loading::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(1px);
}

.app-preview__qrcode {
    width: 160px;
    height: 160px;
    background-color: white;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 15px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    position: relative;
    overflow: hidden;
}

.qrcode-box {
    width: 140px;
    height: 140px;
    position: relative;
}

.qrcode-svg {
    width: 100%;
    height: 100%;
    fill: #000;
    animation: qrPulse 3s infinite alternate;
}

@keyframes qrPulse {
    0% {
        opacity: 0.8;
        transform: scale(0.98);
    }
    100% {
        opacity: 1;
        transform: scale(1);
    }
}

.app-preview__user {
    display: flex;
    align-items: center;
    gap: 10px;
    width: 100%;
}

.app-preview__avatar {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: linear-gradient(135deg, #3ecfe0, #7028e4);
    flex-shrink: 0;
}

.app-preview__info {
    display: flex;
    flex-direction: column;
}

.app-preview__name {
    font-weight: 600;
    font-size: 14px;
}

.app-preview__membership {
    font-size: 12px;
    color: var(--color-primary);
}

.app-preview__stats {
    display: flex;
    gap: 20px;
    margin-top: 5px;
}

.app-preview__stat {
    display: flex;
    flex-direction: column;
    align-items: center;
    background: rgba(28, 28, 36, 0.6);
    padding: 10px 20px;
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.stat-value {
    font-weight: 700;
    font-size: 18px;
    color: var(--color-primary);
}

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

/* Enhanced Floating Card */
.hero__card {
    position: absolute;
    bottom: 140px;
    right: -40px;
    width: 200px;
    background: rgba(28, 28, 36, 0.7);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border-radius: var(--radius-lg);
    border: 1px solid rgba(255, 255, 255, 0.1);
    overflow: hidden;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.3);
    z-index: 2;
    animation: cardAppear 1s cubic-bezier(0.215, 0.61, 0.355, 1) 0.8s both, cardFloat 4s ease-in-out infinite alternate;
    transform-origin: center right;
}

@keyframes cardAppear {
    from {
        opacity: 0;
        transform: translateX(30px) rotate(5deg);
    }
    to {
        opacity: 1;
        transform: translateX(0) rotate(0);
    }
}

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

.hero__card-content {
    display: flex;
    align-items: center;
    gap: var(--spacing-md);
    padding: var(--spacing-md);
    height: 100%;
}

.hero__card-icon {
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    background: linear-gradient(135deg, var(--color-primary), var(--color-secondary));
    border-radius: var(--radius-md);
    color: var(--color-white);
    flex-shrink: 0;
    position: relative;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.hero__card-icon::after {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(
        to bottom right,
        rgba(255, 255, 255, 0) 0%,
        rgba(255, 255, 255, 0) 40%,
        rgba(255, 255, 255, 0.4) 50%,
        rgba(255, 255, 255, 0) 60%,
        rgba(255, 255, 255, 0) 100%
    );
    transform: rotate(45deg);
    animation: iconShine 3s infinite;
}

@keyframes iconShine {
    0% { transform: rotate(45deg) translateY(-100%); }
    20%, 100% { transform: rotate(45deg) translateY(100%); }
}

.hero__card-text h3 {
    font-size: var(--font-size-base);
    font-weight: 600;
    margin-bottom: 4px;
}

.hero__card-text p {
    font-size: var(--font-size-xs);
    color: var(--color-text-secondary);
    line-height: 1.4;
}

@media (max-width: 1200px) {
    .hero__device-preview {
        max-width: 260px;
    }
    
    .hero__phone {
        width: 240px;
        height: 480px;
    }
    
    .hero__card {
        right: -30px;
        width: 180px;
    }
}

/* Hero scroll indicator */
.hero__scroll {
    position: absolute;
    bottom: var(--spacing-2xl);
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: var(--spacing-md);
    opacity: 0;
    animation: fadeIn 1s ease-out 1.5s forwards;
}

.hero__scroll-text {
    font-size: var(--font-size-xs);
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--color-text-tertiary);
}

.hero__scroll-line {
    width: 1px;
    height: 60px;
    background: linear-gradient(to bottom, var(--color-text-tertiary), transparent);
    animation: scrollLine 2s infinite;
}

@keyframes scrollLine {
    0% {
        transform: scaleY(0);
        transform-origin: top;
    }
    50% {
        transform: scaleY(1);
        transform-origin: top;
    }
    50.001% {
        transform: scaleY(1);
        transform-origin: bottom;
    }
    100% {
        transform: scaleY(0);
        transform-origin: bottom;
    }
}

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

@keyframes slideInLeft {
    from {
        opacity: 0;
        transform: translateX(-30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes phoneAppear {
    from {
        opacity: 0;
        transform: translate(-50%, -40%);
    }
    to {
        opacity: 1;
        transform: translate(-50%, -50%);
    }
}

@keyframes cardAppear {
    from {
        opacity: 0;
        transform: translateX(30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

/* ===== PREMIUM GYM PREVIEW SECTION ===== */
/* Enhanced Carousel with Native Mobile Scrolling */
.gym-preview {
    padding: var(--spacing-4xl) 0;
    background-color: var(--color-bg-alt);
    position: relative;
    overflow: hidden;
}

.gym-preview__backdrop {
    position: absolute;
    top: -30%;
    right: -20%;
    width: 80%;
    height: 80%;
    background: radial-gradient(circle at center, rgba(62, 207, 224, 0.03) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
    z-index: 0;
}

.section-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: var(--spacing-3xl);
    position: relative;
    z-index: 1;
}

.section-badge {
    display: inline-block;
    padding: 0.25rem 0.75rem;
    background: rgba(62, 207, 224, 0.1);
    border-radius: var(--radius-full);
    color: var(--color-primary);
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 1px;
    margin-bottom: 0.5rem;
    position: absolute;
    top: -1.5rem;
    left: 0;
}

.section-title {
    font-size: var(--font-size-3xl);
    font-weight: 800;
    background: linear-gradient(to right, var(--color-white), rgba(255, 255, 255, 0.8));
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    margin: 0;
    letter-spacing: -0.02em;
}

.section-link {
    display: flex;
    align-items: center;
    gap: var(--spacing-sm);
    font-size: var(--font-size-sm);
    font-weight: 500;
    color: var(--color-primary);
    transition: all 0.3s ease;
}

.section-link:hover {
    gap: var(--spacing-md);
}

.section-link:hover i {
    transform: translateX(4px);
}

.section-link i {
    transition: transform 0.3s ease;
}

/* Mobile-first carousel styles with native scrolling */
.gym-carousel {
    position: relative;
    margin-top: var(--spacing-xl);
    padding-bottom: var(--spacing-3xl);
    width: 100%;
}

/* Add a subtle indicator for mobile users */
.gym-carousel::after {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    height: 100%;
    width: 20px;
    background: linear-gradient(to right, transparent, rgba(20,20,26,0.5));
    pointer-events: none;
    z-index: 2;
    display: none;
}

@media (max-width: 991px) {
    .gym-carousel::after {
        display: block; /* Only show on mobile */
    }
}

.gym-carousel__track {
    display: flex;
    gap: var(--spacing-md);
    padding: var(--spacing-md) var(--spacing-md);
    /* Enable native horizontal scrolling on mobile */
    overflow-x: auto;
    overflow-y: hidden;
    -webkit-overflow-scrolling: touch; /* Smooth scrolling on iOS */
    scroll-snap-type: x mandatory; /* Enable snap points */
    scrollbar-width: none; /* Hide scrollbar on Firefox */
    -ms-overflow-style: none; /* Hide scrollbar on Edge/IE */
}

/* Hide scrollbar on Chrome/Safari */
.gym-carousel__track::-webkit-scrollbar {
    display: none;
}

.gym-carousel__track.dragging {
    scroll-snap-type: none;
}

/* Premium Card Design */
.gym-card {
    flex: 0 0 80%; /* Changed from 85% to show more of next card */
    position: relative;
    perspective: 1000px;
    padding-top: var(--spacing-xs);
    scroll-snap-align: center; /* Snap center of card */
    scroll-snap-stop: always; /* Always stop at snap points */
}

.gym-card__wrapper {
    border-radius: var(--radius-lg);
    overflow: hidden;
    background-color: rgba(28, 28, 36, 0.7);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    transform-style: preserve-3d;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.05);
    transition: transform 0.4s cubic-bezier(0.22, 1, 0.36, 1), 
                box-shadow 0.4s cubic-bezier(0.22, 1, 0.36, 1);
}

.gym-card:hover .gym-card__wrapper {
    transform: translateY(-10px) scale(1.02);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
    border-color: rgba(62, 207, 224, 0.3);
}

.gym-card__image-container {
    position: relative;
    height: 200px;
    overflow: hidden;
}

.gym-card__image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.7s cubic-bezier(0.22, 1, 0.36, 1);
    transform-origin: center;
}

.gym-card:hover .gym-card__image {
    transform: scale(1.08);
}

.gym-card__overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, transparent 60%, rgba(10, 10, 12, 0.8) 100%);
    opacity: 0.7;
    transition: opacity 0.4s ease;
}

.gym-card:hover .gym-card__overlay {
    opacity: 0.5;
}

.gym-card__tag {
    position: absolute;
    top: var(--spacing-md);
    right: var(--spacing-md);
    padding: var(--spacing-xs) var(--spacing-md);
    background-color: var(--color-primary);
    border-radius: var(--radius-full);
    font-size: var(--font-size-xs);
    font-weight: 600;
    text-transform: uppercase;
    color: white;
    z-index: 2;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
}

.gym-card__tag--new {
    background-color: var(--color-secondary);
}

.gym-card__content {
    padding: var(--spacing-lg);
    position: relative;
    z-index: 2;
}

.gym-card__name {
    font-size: var(--font-size-lg);
    font-weight: 700;
    margin-bottom: var(--spacing-sm);
    letter-spacing: -0.01em;
    transition: color 0.3s ease;
}

.gym-card:hover .gym-card__name {
    background: linear-gradient(to right, var(--color-primary), var(--color-secondary));
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.gym-card__location {
    display: flex;
    align-items: center;
    gap: var(--spacing-sm);
    color: var(--color-text-secondary);
    font-size: var(--font-size-sm);
}

.gym-card__location i {
    color: var(--color-primary);
    font-size: 0.8rem;
}

/* Mobile indicator dots */
.carousel-mobile-indicator {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: var(--spacing-sm);
    margin-top: var(--spacing-lg);
}

.indicator-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.2);
    transition: all 0.3s ease;
}

.indicator-dot.active {
    width: 12px;
    height: 12px;
    background: linear-gradient(to right, var(--color-primary), var(--color-secondary));
}

/* Modern Carousel Navigation - default hidden on mobile */
.carousel-navigation {
    display: none;
    align-items: center;
    justify-content: center;
    gap: var(--spacing-lg);
    margin-top: var(--spacing-2xl);
    position: relative;
    z-index: 5;
}

.carousel-button {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background-color: rgba(28, 28, 36, 0.7);
    border: 1px solid rgba(255, 255, 255, 0.05);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: var(--font-size-base);
    color: var(--color-text-secondary);
    cursor: pointer;
    transition: all 0.3s ease;
    backdrop-filter: blur(5px);
    -webkit-backdrop-filter: blur(5px);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.carousel-button:hover {
    color: var(--color-white);
    border-color: var(--color-primary);
    box-shadow: 0 5px 20px rgba(62, 207, 224, 0.3);
    transform: translateY(-3px);
}

.carousel-button:hover i {
    animation: buttonPulse 1s infinite alternate;
}

@keyframes buttonPulse {
    from { transform: translateX(0); }
    to { transform: translateX(2px); }
}

.carousel-button--prev:hover i {
    animation-name: buttonPulsePrev;
}

@keyframes buttonPulsePrev {
    from { transform: translateX(0); }
    to { transform: translateX(-2px); }
}

.carousel-progress {
    flex: 1;
    max-width: 150px;
    height: 4px;
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: var(--radius-full);
    overflow: hidden;
    position: relative;
}

.carousel-progress__bar {
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 33.33%;
    background: linear-gradient(to right, var(--color-primary), var(--color-secondary));
    border-radius: var(--radius-full);
    transition: transform 0.6s cubic-bezier(0.22, 1, 0.36, 1);
}

/* Responsive Media Queries */
@media (min-width: 576px) {
    .gym-card {
        flex: 0 0 calc(50% - var(--spacing-md));
    }
    
    .gym-card__content {
        padding: var(--spacing-md);
    }
    
    .gym-card__name {
        font-size: var(--font-size-base);
    }
    
    .gym-card__location {
        font-size: var(--font-size-xs);
    }
}

@media (min-width: 768px) {
    .gym-card__image-container {
        height: 180px;
    }
    
    .gym-card__content {
        padding: var(--spacing-lg);
    }
    
    .gym-card__name {
        font-size: var(--font-size-lg);
    }
    
    .gym-card__location {
        font-size: var(--font-size-sm);
    }
}

@media (min-width: 992px) {
    .gym-card {
        flex: 0 0 calc(33.333% - (var(--spacing-lg) * 2/3));
    }
    
    /* Desktop-specific styles - enable JS carousel */
    .gym-carousel__track {
        overflow-x: visible;
        scroll-snap-type: none;
        transition: transform 0.6s cubic-bezier(0.22, 1, 0.36, 1);
        will-change: transform;
        transform: translateX(0); /* Reset any transform */
        padding: var(--spacing-md) var(--spacing-xs);
        gap: var(--spacing-lg);
    }
    
    .carousel-navigation {
        display: flex; /* Show carousel controls on desktop */
    }
    
    .carousel-mobile-indicator {
        display: none; /* Hide indicators on desktop */
    }
}

@media (min-width: 1200px) {
    .gym-card {
        flex: 0 0 calc(25% - (var(--spacing-lg) * 3/4));
    }
}

/* Mobile Optimizations */
@media (max-width: 768px) {
    .section-header {
        flex-direction: column;
        align-items: flex-start;
        gap: var(--spacing-sm);
    }
    
    .section-link {
        margin-top: var(--spacing-sm);
    }
}

/* Touch Device Optimization */
@media (hover: none) {
    .gym-card__wrapper {
        border-color: rgba(255, 255, 255, 0.05);
    }
    
    .carousel-button {
        background-color: rgba(28, 28, 36, 0.9);
    }
}


/* ===== ULTRA-PREMIUM HOW IT WORKS SECTION ===== */
.how-it-works {
    position: relative;
    padding: var(--spacing-4xl) 0;
    background-color: var(--color-bg);
    overflow: hidden;
    z-index: 1;
}

/* Sophisticated backdrop elements */
.how-it-works__backdrop {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
}

.backdrop__gradient {
    position: absolute;
    top: -30%;
    right: -10%;
    width: 900px;
    height: 900px;
    background: radial-gradient(circle at center, rgba(62, 207, 224, 0.03) 0%, transparent 70%);
    border-radius: 50%;
    filter: blur(40px);
    opacity: 0.7;
}

.backdrop__grid {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url("data:image/svg+xml,%3Csvg width='40' height='40' viewBox='0 0 40 40' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M0 20h40M20 0v40' stroke='rgba(255,255,255,0.03)' stroke-width='1' fill='none'/%3E%3C/svg%3E");
    opacity: 0.5;
}

.backdrop__shapes {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
}

.backdrop__shape {
    position: absolute;
    opacity: 0.03;
    filter: blur(10px);
}

.backdrop__shape--1 {
    top: 20%;
    left: 5%;
    width: 300px;
    height: 300px;
    background: linear-gradient(135deg, var(--color-primary), transparent);
    border-radius: 30% 70% 70% 30% / 30% 30% 70% 70%;
    animation: floatShape 25s infinite alternate ease-in-out;
}

.backdrop__shape--2 {
    bottom: 15%;
    right: 5%;
    width: 250px;
    height: 250px;
    background: linear-gradient(135deg, var(--color-secondary), transparent);
    border-radius: 62% 38% 82% 18% / 45% 24% 76% 55%;
    animation: floatShape 20s infinite alternate-reverse ease-in-out;
}

@keyframes floatShape {
    0% {
        transform: translate(0, 0) rotate(0deg);
    }
    100% {
        transform: translate(30px, 20px) rotate(5deg);
    }
}

/* Section header styling */
.section-header {
    text-align: center;
    margin-bottom: var(--spacing-3xl);
    position: relative;
}

.section-title {
    font-size: clamp(2.5rem, 5vw, 3.5rem);
    font-weight: 800;
    background: linear-gradient(to right, #ffffff, rgba(255, 255, 255, 0.8));
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    letter-spacing: -0.02em;
    line-height: 1.2;
    position: relative;
    z-index: 1;
    margin: 0 auto;
    max-width: 700px;
}

/* Timeline styling */
.process-timeline {
    position: relative;
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: var(--spacing-lg);
}

.process-timeline__line {
    position: absolute;
    top: 80px;
    left: 0;
    width: 100%;
    height: 2px;
    background: rgba(255, 255, 255, 0.1);
    z-index: 1;
}

.process-timeline__progress {
    position: absolute;
    top: 0;
    left: 0;
    width: 0;
    height: 100%;
    background: linear-gradient(to right, var(--color-primary), var(--color-secondary));
    transition: width 1s cubic-bezier(0.65, 0, 0.35, 1);
    z-index: 2;
}

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

/* Process step styling */
.process-step {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    position: relative;
    max-width: 350px;
}

.step-connector {
    width: 2px;
    height: 40px;
    margin-bottom: 20px;
    background: linear-gradient(to bottom, transparent, rgba(62, 207, 224, 0.3));
}

/* Premium card design */
.step-card {
    width: 100%;
    margin-top: 30px;
    background: rgba(28, 28, 36, 0.4);
    border-radius: 16px;
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.05);
    box-shadow: 
        0 20px 40px rgba(0, 0, 0, 0.2),
        0 0 0 1px rgba(255, 255, 255, 0.05) inset;
    transition: all 0.4s cubic-bezier(0.22, 1, 0.36, 1);
    position: relative;
    overflow: hidden;
}

/* Hover effects */
.step-card:hover {
    transform: translateY(-10px);
    box-shadow: 
        0 30px 60px rgba(0, 0, 0, 0.3),
        0 0 0 1px rgba(62, 207, 224, 0.3) inset;
}

.step-card:hover .step-number {
    color: white;
}

.step-card:hover .pulse-ring {
    opacity: 1;
}

.step-card:hover .step-icon {
    transform: scale(1.1);
}

.step-card:hover .icon-highlight {
    opacity: 1;
}

/* Step indicator */
.step-indicator {
    position: absolute;
    top: 0;
    left: 50%;
    transform: translate(-50%, 30%);
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: rgba(28, 28, 36, 0.8);
    display: flex;
    align-items: center;
    justify-content: center;
    border: 2px solid rgba(255, 255, 255, 0.1);
    z-index: 1;
    transition: all 0.4s cubic-bezier(0.22, 1, 0.36, 1);
    overflow: hidden; /* Add this to contain the pseudo-element */
}

.step-indicator::before {
    content: '';
    position: absolute;
    top: -25%;
    left: -25%;
    width: 150%;
    height: 150%;
    background: linear-gradient(135deg, var(--color-primary), var(--color-secondary));
    opacity: 0;
    transition: opacity 0.4s cubic-bezier(0.22, 1, 0.36, 1);
    z-index: -1;
}

.step-card:hover .step-indicator::before {
    opacity: 1;
}

.step-card:hover .step-indicator {
    background: transparent;
}

.step-number {
    font-size: 1.4rem;
    font-weight: 900;
    background: linear-gradient(to right, var(--color-primary), var(--color-secondary));
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    transition: all 0.4s cubic-bezier(0.22, 1, 0.36, 1);
}

.step-card:hover .step-number {
    background: none;
    -webkit-background-clip: initial;
    background-clip: initial;
    color: white;
}

.pulse-ring {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    background: rgba(62, 207, 224, 0.3);
    opacity: 0;
    z-index: -1;
    animation: pulse 2s cubic-bezier(0.22, 1, 0.36, 1) infinite;
    transition: opacity 0.4s cubic-bezier(0.22, 1, 0.36, 1);
}

@keyframes pulse {
    0% {
        transform: scale(1);
        opacity: 0.2;
    }
    50% {
        opacity: 0.3;
    }
    100% {
        transform: scale(1.8);
        opacity: 0;
    }
}

/* Step content */
.step-content {
    padding: calc(var(--spacing-xl) + 40px) var(--spacing-xl) var(--spacing-xl);
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.step-icon {
    width: 70px;
    height: 70px;
    background: rgba(28, 28, 36, 0.6);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.75rem;
    color: var(--color-primary);
    margin-bottom: var(--spacing-lg);
    margin-top: var(--spacing-lg);
    position: relative;
    transition: all 0.4s cubic-bezier(0.22, 1, 0.36, 1);
    border: 1px solid rgba(62, 207, 224, 0.2);
}

.icon-highlight {
    position: absolute;
    inset: 0;
    border-radius: 20px;
    background: linear-gradient(135deg, 
        rgba(62, 207, 224, 0.1), 
        rgba(112, 40, 228, 0.1));
    opacity: 0.3;
    transition: opacity 0.4s cubic-bezier(0.22, 1, 0.36, 1);
}

.step-icon i {
    position: relative;
    z-index: 1;
}

.step-details {
    width: 100%;
}

.step-title {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: var(--spacing-md);
    color: white;
    position: relative;
    display: inline-block;
}

.step-title::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(to right, var(--color-primary), var(--color-secondary));
    transition: width 0.4s cubic-bezier(0.22, 1, 0.36, 1);
}

.step-card:hover .step-title::after {
    width: 100%;
}

.step-description {
    color: var(--color-text-secondary);
    line-height: 1.6;
    font-size: 1rem;
}

/* Responsive design */
@media (max-width: 992px) {
    .process-timeline__line {
        display: none;
    }
    
    .process-steps {
        flex-direction: column;
        gap: var(--spacing-3xl);
    }
    
    .process-step {
        max-width: 450px;
        margin: 0 auto;
        width: 100%;
    }
    
    .step-connector {
        height: 20px;
    }
    
    .step-card {
        width: 100%;
    }
}

@media (max-width: 576px) {
    .section-title {
        font-size: 2rem;
    }
    
    .step-content {
        padding: calc(var(--spacing-lg) + 25px) var(--spacing-md) var(--spacing-md);
    }
    
    .step-title {
        font-size: 1.25rem;
    }
    
    .step-description {
        font-size: 0.9rem;
    }
    
    .step-icon {
        width: 60px;
        height: 60px;
        font-size: 1.5rem;
    }
}

/* ===== PRICING ===== */
.pricing {
    padding: var(--spacing-4xl) 0;
    background-color: var(--color-bg-alt);
    position: relative;
    overflow: hidden;
}

.pricing-plans {
    display: flex;
    justify-content: center;
    max-width: 550px;
    margin: 0 auto var(--spacing-3xl);
}

.pricing-plan {
    background-color: var(--color-surface);
    border-radius: var(--radius-lg);
    padding: var(--spacing-xl) var(--spacing-2xl);
    border: 1px solid var(--color-primary);
    position: relative;
    transition: transform var(--transition-medium), box-shadow var(--transition-medium);
    width: 100%;
    max-width: 450px;
    box-shadow: var(--shadow-md);
}

.pricing-plan:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
}

.pricing-plan__badge {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(to right, var(--color-primary), var(--color-secondary));
    border-radius: var(--radius-full);
    padding: var(--spacing-xs) var(--spacing-lg);
    font-size: var(--font-size-xs);
    font-weight: 600;
}

.pricing-plan__name {
    font-size: var(--font-size-2xl);
    font-weight: 700;
    text-align: center;
    margin-bottom: var(--spacing-lg);
    margin-top: var(--spacing-md);
    background: linear-gradient(to right, var(--color-primary), var(--color-secondary));
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.pricing-plan__price {
    display: flex;
    align-items: baseline;
    justify-content: center;
    margin-bottom: var(--spacing-xl);
}

.pricing-plan__currency {
    font-size: var(--font-size-xl);
    font-weight: 500;
    margin-right: 2px;
}

.pricing-plan__amount {
    font-size: var(--font-size-4xl);
    font-weight: 800;
    line-height: 1;
}

.pricing-plan__period {
    font-size: var(--font-size-base);
    color: var(--color-text-secondary);
    margin-left: 4px;
}

.pricing-plan__features {
    margin-bottom: var(--spacing-xl);
}

.pricing-plan__features li {
    display: flex;
    align-items: center;
    gap: var(--spacing-sm);
    margin-bottom: var(--spacing-md);
    font-size: var(--font-size-base);
}

.pricing-plan__features li i {
    color: var(--color-success);
    font-size: var(--font-size-base);
    flex-shrink: 0;
}

.pricing-plan__note {
    font-size: var(--font-size-xs);
    color: var(--color-text-secondary);
    text-align: center;
    margin-top: var(--spacing-md);
}

.pricing-guarantee {
    display: flex;
    align-items: center;
    gap: var(--spacing-lg);
    background-color: var(--color-surface);
    border-radius: var(--radius-lg);
    padding: var(--spacing-lg) var(--spacing-xl);
    max-width: 700px;
    margin: 0 auto;
    border: 1px solid var(--color-border);
}

.pricing-guarantee__icon {
    font-size: var(--font-size-2xl);
    color: var(--color-primary);
    flex-shrink: 0;
}

.pricing-guarantee__content h3 {
    font-size: var(--font-size-lg);
    font-weight: 600;
    margin-bottom: var(--spacing-xs);
}

.pricing-guarantee__content p {
    font-size: var(--font-size-sm);
    color: var(--color-text-secondary);
}

@media (max-width: 768px) {
    .pricing-plans {
        max-width: 90%;
    }
    
    .pricing-plan {
        padding: var(--spacing-lg);
    }
    
    .pricing-guarantee {
        flex-direction: column;
        text-align: center;
        padding: var(--spacing-lg);
    }
}

/* ===== ENHANCED CTA SECTION ===== */
.cta {
    padding: var(--spacing-4xl) 0;
    background: linear-gradient(to right, var(--color-primary-dark), var(--color-secondary));
    position: relative;
    overflow: hidden;
    color: white;
}

.cta__background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
}

.cta__waves {
    position: absolute;
    width: 100%;
    height: 100%;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1440 320'%3E%3Cpath fill='rgba(255, 255, 255, 0.05)' fill-opacity='1' d='M0,160L48,144C96,128,192,96,288,106.7C384,117,480,171,576,186.7C672,203,768,181,864,154.7C960,128,1056,96,1152,112C1248,128,1344,192,1392,224L1440,256L1440,320L1392,320C1344,320,1248,320,1152,320C1056,320,960,320,864,320C768,320,672,320,576,320C480,320,384,320,288,320C192,320,96,320,48,320L0,320Z'%3E%3C/path%3E%3C/svg%3E");
    background-size: cover;
    background-position: center;
    opacity: 0.3;
}

.cta__dots {
    position: absolute;
    width: 100%;
    height: 100%;
    background-image: url("data:image/svg+xml,%3Csvg width='20' height='20' viewBox='0 0 20 20' xmlns='http://www.w3.org/2000/svg'%3E%3Ccircle cx='2' cy='2' r='2' fill='rgba(255,255,255,0.15)'/%3E%3C/svg%3E");
    background-size: 30px 30px;
    opacity: 0.4;
}

.cta__content {
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border-radius: var(--radius-lg);
    padding: var(--spacing-3xl) var(--spacing-2xl);
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.2);
}

.cta__title {
    font-size: var(--font-size-4xl);
    font-weight: 800;
    margin-bottom: var(--spacing-lg);
    line-height: 1.2;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
}

.cta__title span {
    position: relative;
    display: inline-block;
}

.cta__title span::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: -5px;
    width: 100%;
    height: 3px;
    background: white;
    border-radius: var(--radius-full);
}

.cta__text {
    font-size: var(--font-size-xl);
    margin-bottom: var(--spacing-2xl);
    opacity: 0.9;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.cta__actions {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: var(--spacing-lg);
}

.btn--cta {
    background: white;
    color: #2d2b55; /* Deep purple instead of aqua */
    font-weight: 700;
    padding: var(--spacing-md) var(--spacing-3xl);
    border-radius: var(--radius-full);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: var(--spacing-md);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.btn--cta:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.3);
}

.btn__text {
    font-size: var(--font-size-lg);
}

.btn__icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 24px;
    height: 24px;
    border-radius: 50%;
    background: #000000; /* Purple instead of aqua */
    color: white;
}

.cta__note {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    gap: var(--spacing-lg);
    font-size: var(--font-size-sm);
    opacity: 0.9;
}

.cta__note i {
    color: #eeb933; /* Gold/yellow instead of aqua green */
    margin-right: 5px;
}

@media (max-width: 768px) {
    .cta__title {
        font-size: var(--font-size-3xl);
    }
    
    .cta__text {
        font-size: var(--font-size-lg);
    }
    
    .cta__content {
        padding: var(--spacing-2xl) var(--spacing-lg);
    }
    
    .cta__note {
        flex-direction: column;
        gap: var(--spacing-sm);
    }
}

/* ===== FOOTER ===== */
.footer {
    background-color: var(--color-bg);
    padding: var(--spacing-3xl) 0 var(--spacing-xl);
    position: relative;
}

.footer__grid {
    display: grid;
    grid-template-columns: 2fr 3fr 2fr;
    gap: var(--spacing-xl);
    padding-bottom: var(--spacing-2xl);
    border-bottom: 1px solid var(--color-border);
    margin-bottom: var(--spacing-xl);
}

@media (max-width: 992px) {
    .footer__grid {
        grid-template-columns: 1fr 1fr;
    }
    
    .footer__brand {
        grid-column: 1 / -1;
        margin-bottom: var(--spacing-xl);
    }
}

@media (max-width: 576px) {
    .footer__grid {
        grid-template-columns: 1fr;
    }
}

.footer__brand {
    display: flex;
    flex-direction: column;
    gap: var(--spacing-md);
}

.logo--footer {
    margin-bottom: var(--spacing-sm);
}

.footer__tagline {
    font-size: var(--font-size-sm);
    color: var(--color-text-secondary);
}

.footer__social {
    display: flex;
    gap: var(--spacing-md);
    margin-top: var(--spacing-sm);
}

.footer__social-link {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background-color: var(--color-surface);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background-color var(--transition-fast), transform var(--transition-fast);
}

.footer__social-link:hover {
    background-color: var(--color-primary);
    transform: translateY(-3px);
}

.footer__nav {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--spacing-xl);
}

@media (max-width: 768px) {
    .footer__nav {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 576px) {
    .footer__nav {
        grid-template-columns: 1fr;
    }
}

.footer__heading {
    font-size: var(--font-size-base);
    font-weight: 600;
    margin-bottom: var(--spacing-lg);
    position: relative;
    display: inline-block;
}

.footer__heading::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: -8px;
    width: 30px;
    height: 2px;
    background: linear-gradient(to right, var(--color-primary), var(--color-secondary));
}

.footer__links {
    display: flex;
    flex-direction: column;
    gap: var(--spacing-md);
}

.footer__links a {
    font-size: var(--font-size-sm);
    color: var(--color-text-secondary);
    transition: color var(--transition-fast), transform var(--transition-fast);
    display: inline-block;
}

.footer__links a:hover {
    color: var(--color-primary);
    transform: translateX(5px);
}

.footer__newsletter p {
    font-size: var(--font-size-sm);
    color: var(--color-text-secondary);
    margin-bottom: var(--spacing-md);
}

.newsletter-form {
    display: flex;
    gap: var(--spacing-sm);
}

.newsletter-form__input {
    flex: 1;
    padding: var(--spacing-sm) var(--spacing-md);
    background-color: var(--color-surface);
    border: 1px solid var(--color-border);
    border-radius: var(--radius-md);
    color: var(--color-text);
    transition: border-color var(--transition-fast);
}

.newsletter-form__input:focus {
    outline: none;
    border-color: var(--color-primary);
}

.newsletter-form__button {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(to right, var(--color-primary), var(--color-secondary));
    border: none;
    border-radius: var(--radius-md);
    color: var(--color-text);
    transition: transform var(--transition-fast);
}

.newsletter-form__button:hover {
    transform: translateX(3px);
}

.footer__bottom {
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.footer__copyright {
    font-size: var(--font-size-sm);
    color: var(--color-text-tertiary);
}

/* ===== ANIMATIONS ===== */
[data-animate] {
    opacity: 0;
    transition: opacity var(--transition-medium), transform var(--transition-medium);
}

[data-animate="fade-up"] {
    transform: translateY(30px);
}

[data-animate="fade-down"] {
    transform: translateY(-30px);
}

[data-animate="fade-left"] {
    transform: translateX(30px);
}

[data-animate="fade-right"] {
    transform: translateX(-30px);
}

[data-animate="scale-up"] {
    transform: scale(0.95);
}

[data-animate="fade-in"] {
    opacity: 0;
}

.animated {
    opacity: 1;
    transform: translate(0) scale(1);
}

/* ===== NOTIFICATION ===== */
.notification-container {
    position: fixed;
    top: 20px;
    right: 20px;
    z-index: var(--z-popover);
    display: flex;
    flex-direction: column;
    gap: 10px;
    max-width: 300px;
}

.notification {
    background-color: var(--color-surface);
    border-radius: var(--radius-md);
    padding: var(--spacing-md);
    display: flex;
    align-items: center;
    gap: var(--spacing-md);
    box-shadow: var(--shadow-lg);
    transform: translateX(120%);
    opacity: 0;
    transition: transform 0.3s ease, opacity 0.3s ease;
}

.notification.active {
    transform: translateX(0);
    opacity: 1;
}

.notification--success {
    border-left: 4px solid var(--color-success);
}

.notification--error {
    border-left: 4px solid var(--color-error);
}

.notification__icon {
    font-size: var(--font-size-lg);
}

.notification--success .notification__icon {
    color: var(--color-success);
}

.notification--error .notification__icon {
    color: var(--color-error);
}

.notification__message {
    flex: 1;
    font-size: var(--font-size-sm);
}

.notification__close {
    background: none;
    border: none;
    color: var(--color-text-secondary);
    cursor: pointer;
    padding: 4px;
    transition: color 0.2s ease;
}

.notification__close:hover {
    color: var(--color-text);
}