/* ================================================================
   YASHALLO — eSIM Website Styles
   Inspired by Saily.com — Modern, Creative, Gradient-heavy design
   ================================================================ */

/* ============ CSS VARIABLES ============ */
:root {
    /* Colors */
    --color-primary: #FF6B35;
    --color-primary-light: #FFB347;
    --color-secondary: #1a1a2e;
    --color-accent-green: #00C49A;
    --color-accent-purple: #7C3AED;
    --color-accent-blue: #3B82F6;
    --color-accent-pink: #EC4899;
    --color-accent-teal: #14B8A6;

    --color-bg: #FAFBFF;
    --color-bg-dark: #0F0F23;
    --color-bg-card: #FFFFFF;
    --color-text: #1a1a2e;
    --color-text-secondary: #64748B;
    --color-text-light: #94A3B8;
    --color-border: #E2E8F0;

    /* Gradients */
    --gradient-primary: linear-gradient(135deg, #FF6B35, #FFB347);
    --gradient-hero: linear-gradient(135deg, #1a1a2e 0%, #2d1b69 40%, #44107A 70%, #FF6B35 100%);
    --gradient-destinations: linear-gradient(135deg, #1a1a2e, #2d1b69, #44107A);
    --gradient-text: linear-gradient(135deg, #FF6B35, #FFB347, #FF6B35);
    --gradient-cta: linear-gradient(135deg, #1a1a2e, #2d1b69);
    --gradient-glass: linear-gradient(135deg, rgba(255, 255, 255, 0.1), rgba(255, 255, 255, 0.05));

    /* Typography */
    --font-family: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, sans-serif;

    /* Spacing */
    --section-padding: 120px;
    --container-width: 1200px;

    /* Borders */
    --radius-sm: 8px;
    --radius-md: 12px;
    --radius-lg: 20px;
    --radius-xl: 28px;
    --radius-full: 9999px;

    /* Shadows */
    --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.06);
    --shadow-md: 0 4px 20px rgba(0, 0, 0, 0.08);
    --shadow-lg: 0 8px 40px rgba(0, 0, 0, 0.12);
    --shadow-xl: 0 20px 60px rgba(0, 0, 0, 0.15);
    --shadow-glow: 0 0 40px rgba(255, 107, 53, 0.3);

    /* Transitions */
    --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-slow: 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

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

html {
    scroll-behavior: smooth;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

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

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

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

ul {
    list-style: none;
}

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

/* ============ UTILITY CLASSES ============ */
.gradient-text {
    background: var(--gradient-text);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.gradient-text-light {
    background: linear-gradient(135deg, #FFB347, #FF6B35);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* ============ SECTION HEADER ============ */
.section-tag {
    display: inline-block;
    padding: 6px 16px;
    background: rgba(255, 107, 53, 0.1);
    color: var(--color-primary);
    font-size: 0.85rem;
    font-weight: 600;
    border-radius: var(--radius-full);
    margin-bottom: 16px;
    letter-spacing: 0.5px;
}

.section-tag--light {
    background: rgba(255, 255, 255, 0.15);
    color: rgba(255, 255, 255, 0.9);
}

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

.section-title {
    font-size: clamp(2rem, 4vw, 2.8rem);
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 16px;
    letter-spacing: -0.5px;
}

.section-title--light {
    color: white;
}

.section-desc {
    font-size: 1.1rem;
    color: var(--color-text-secondary);
    line-height: 1.7;
}

.section-desc--light {
    color: rgba(255, 255, 255, 0.7);
}

/* ============ BUTTONS ============ */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-family: var(--font-family);
    font-weight: 600;
    border: none;
    cursor: pointer;
    border-radius: var(--radius-full);
    transition: var(--transition);
    text-decoration: none;
    white-space: nowrap;
}

.btn--sm {
    padding: 10px 24px;
    font-size: 0.875rem;
}

.btn--lg {
    padding: 16px 32px;
    font-size: 1rem;
}

.btn--full {
    width: 100%;
    justify-content: center;
    padding: 14px 24px;
    font-size: 0.95rem;
}

.btn--primary {
    background: var(--gradient-primary);
    color: white;
    box-shadow: 0 4px 15px rgba(255, 107, 53, 0.4);
}

.btn--primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 25px rgba(255, 107, 53, 0.5);
}

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

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

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

.btn--outline:hover {
    background: var(--gradient-primary);
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(255, 107, 53, 0.3);
}

.btn--white {
    background: white;
    color: var(--color-secondary);
    box-shadow: var(--shadow-md);
}

.btn--white:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

/* ============ NAVBAR ============ */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: 16px 0;
    transition: var(--transition);
}

.navbar.scrolled {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--color-border);
    padding: 10px 0;
    box-shadow: var(--shadow-sm);
}

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

.navbar__logo {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 1.35rem;
    font-weight: 800;
    color: white;
    letter-spacing: -0.5px;
}

.navbar.scrolled .navbar__logo {
    color: var(--color-secondary);
}

.navbar__menu {
    display: flex;
    gap: 36px;
}

.navbar__menu a {
    font-size: 0.925rem;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.8);
    position: relative;
}

.navbar__menu a::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--gradient-primary);
    border-radius: 2px;
    transition: var(--transition);
}

.navbar__menu a:hover {
    color: white;
}

.navbar__menu a:hover::after {
    width: 100%;
}

.navbar.scrolled .navbar__menu a {
    color: var(--color-text-secondary);
}

.navbar.scrolled .navbar__menu a:hover {
    color: var(--color-primary);
}

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

.navbar__burger {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 4px;
}

.navbar__burger span {
    display: block;
    width: 24px;
    height: 2px;
    background: white;
    border-radius: 2px;
    transition: var(--transition);
}

.navbar.scrolled .navbar__burger span {
    background: var(--color-secondary);
}

/* ============ HERO ============ */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    background: var(--gradient-hero);
    padding: 120px 0 80px;
    overflow: hidden;
}

.hero__bg {
    position: absolute;
    inset: 0;
    overflow: hidden;
    pointer-events: none;
}

.hero__blob {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    opacity: 0.4;
}

.hero__blob--1 {
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, #FF6B35 0%, transparent 70%);
    top: -200px;
    right: -100px;
    animation: blobFloat 8s ease-in-out infinite;
}

.hero__blob--2 {
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, #7C3AED 0%, transparent 70%);
    bottom: -100px;
    left: -100px;
    animation: blobFloat 10s ease-in-out infinite reverse;
}

.hero__blob--3 {
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, #00C49A 0%, transparent 70%);
    top: 50%;
    left: 30%;
    animation: blobFloat 12s ease-in-out infinite;
}

@keyframes blobFloat {

    0%,
    100% {
        transform: translate(0, 0) scale(1);
    }

    33% {
        transform: translate(30px, -30px) scale(1.05);
    }

    66% {
        transform: translate(-20px, 20px) scale(0.95);
    }
}

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

.hero__badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 20px;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: var(--radius-full);
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 24px;
    animation: badgePulse 3s ease-in-out infinite;
}

.hero__badge-dot {
    width: 8px;
    height: 8px;
    background: var(--color-accent-green);
    border-radius: 50%;
    animation: dotPulse 2s ease-in-out infinite;
}

@keyframes dotPulse {

    0%,
    100% {
        opacity: 1;
        transform: scale(1);
    }

    50% {
        opacity: 0.5;
        transform: scale(0.8);
    }
}

@keyframes badgePulse {

    0%,
    100% {
        box-shadow: 0 0 0 0 rgba(255, 107, 53, 0.2);
    }

    50% {
        box-shadow: 0 0 0 8px rgba(255, 107, 53, 0);
    }
}

.hero__title {
    font-size: clamp(2.5rem, 5vw, 3.8rem);
    font-weight: 800;
    color: white;
    line-height: 1.1;
    margin-bottom: 24px;
    letter-spacing: -1px;
}

.hero__subtitle {
    font-size: 1.15rem;
    color: rgba(255, 255, 255, 0.75);
    line-height: 1.7;
    margin-bottom: 36px;
    max-width: 520px;
}

.hero__subtitle strong {
    color: white;
}

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

.hero__trust {
    display: flex;
    align-items: center;
    gap: 14px;
}

.hero__trust-avatars {
    display: flex;
}

.hero__trust-avatars img {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    border: 2px solid rgba(255, 255, 255, 0.3);
    margin-left: -10px;
    object-fit: cover;
}

.hero__trust-avatars img:first-child {
    margin-left: 0;
}

.hero__trust p {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.875rem;
}

.hero__trust p strong {
    color: white;
}

/* Hero Phone Visual */
.hero__visual {
    position: relative;
    display: flex;
    justify-content: center;
}

.hero__phone {
    position: relative;
    width: 280px;
    height: 560px;
    background: #1a1a2e;
    border-radius: 40px;
    padding: 8px;
    box-shadow:
        0 0 0 2px rgba(255, 255, 255, 0.1),
        0 20px 60px rgba(0, 0, 0, 0.5),
        inset 0 0 0 1px rgba(255, 255, 255, 0.05);
    transform: perspective(1000px) rotateY(-5deg) rotateX(2deg);
    animation: phoneFloat 6s ease-in-out infinite;
}

@keyframes phoneFloat {

    0%,
    100% {
        transform: perspective(1000px) rotateY(-5deg) rotateX(2deg) translateY(0);
    }

    50% {
        transform: perspective(1000px) rotateY(-5deg) rotateX(2deg) translateY(-10px);
    }
}

.hero__phone-screen {
    width: 100%;
    height: 100%;
    background: linear-gradient(180deg, #f8f9ff, #eef0ff);
    border-radius: 34px;
    overflow: hidden;
    position: relative;
}

/* Phone UI */
.phone-ui {
    height: 100%;
    display: flex;
    flex-direction: column;
}

.phone-ui__status {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 12px 20px 8px;
    font-size: 12px;
    font-weight: 600;
    color: var(--color-secondary);
}

.phone-ui__notch {
    width: 80px;
    height: 24px;
    background: #1a1a2e;
    border-radius: 0 0 16px 16px;
}

.phone-ui__icons {
    display: flex;
    gap: 4px;
}

.phone-ui__icons svg {
    fill: var(--color-secondary);
}

.phone-ui__header {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 12px 20px;
    font-weight: 700;
    font-size: 18px;
    color: var(--color-secondary);
}

.phone-ui__logo-small {
    width: 32px;
    height: 32px;
    background: var(--gradient-primary);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: 800;
    font-size: 16px;
}

.phone-ui__card {
    margin: 6px 16px;
    padding: 14px 16px;
    background: white;
    border-radius: 16px;
    display: flex;
    align-items: center;
    gap: 12px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
    transition: var(--transition);
    position: relative;
}

.phone-ui__card--active {
    background: linear-gradient(135deg, rgba(255, 107, 53, 0.05), rgba(255, 179, 71, 0.05));
    border: 1.5px solid rgba(255, 107, 53, 0.2);
}

.phone-ui__flag {
    font-size: 28px;
    line-height: 1;
}

.phone-ui__plan-info {
    flex: 1;
}

.phone-ui__plan-info strong {
    display: block;
    font-size: 13px;
    color: var(--color-secondary);
}

.phone-ui__plan-info span {
    font-size: 11px;
    color: var(--color-text-secondary);
}

.phone-ui__plan-price {
    font-weight: 700;
    font-size: 13px;
    color: var(--color-primary);
}

.phone-ui__status-pill {
    position: absolute;
    top: -6px;
    right: 16px;
    background: var(--color-accent-green);
    color: white;
    font-size: 10px;
    font-weight: 600;
    padding: 2px 10px;
    border-radius: var(--radius-full);
}

.phone-ui__bottom-bar {
    margin-top: auto;
    display: flex;
    justify-content: space-around;
    padding: 12px 16px;
    background: white;
    border-top: 1px solid #f0f0f5;
}

.phone-ui__tab {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 4px;
    font-size: 10px;
    color: var(--color-text-light);
}

.phone-ui__tab--active {
    color: var(--color-primary);
}

.phone-ui__tab svg {
    width: 20px;
    height: 20px;
}

/* Floating cards */
.hero__float {
    position: absolute;
    z-index: 2;
    animation: floatCard 4s ease-in-out infinite;
}

.hero__float--1 {
    top: 60px;
    right: -30px;
    animation-delay: 0s;
}

.hero__float--2 {
    bottom: 140px;
    left: -40px;
    animation-delay: 1.5s;
}

.hero__float--3 {
    top: 200px;
    left: -60px;
    animation-delay: 3s;
}

@keyframes floatCard {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-12px);
    }
}

.float-card {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 10px 18px;
    background: rgba(255, 255, 255, 0.95);
    border-radius: var(--radius-full);
    box-shadow: var(--shadow-lg);
    font-size: 0.8rem;
    font-weight: 600;
    color: var(--color-secondary);
    white-space: nowrap;
    backdrop-filter: blur(10px);
}

.float-card--orange {
    background: linear-gradient(135deg, rgba(255, 107, 53, 0.1), rgba(255, 179, 71, 0.1));
    border: 1px solid rgba(255, 107, 53, 0.2);
}

.float-card--purple {
    background: linear-gradient(135deg, rgba(124, 58, 237, 0.1), rgba(167, 139, 250, 0.1));
    border: 1px solid rgba(124, 58, 237, 0.2);
}

/* Hero Wave */
.hero__wave {
    position: absolute;
    bottom: -1px;
    left: 0;
    right: 0;
    pointer-events: none;
}

.hero__wave svg {
    display: block;
    width: 100%;
    height: 80px;
}

/* ============ PARTNERS ============ */
.partners {
    padding: 60px 0;
    background: var(--color-bg);
}

.partners__label {
    text-align: center;
    font-size: 0.85rem;
    color: var(--color-text-light);
    text-transform: uppercase;
    letter-spacing: 2px;
    font-weight: 600;
    margin-bottom: 32px;
}

.partners__grid {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 48px;
    flex-wrap: wrap;
}

.partners__item {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--color-text-secondary);
    transition: var(--transition);
}

.partners__item:hover {
    color: var(--color-text);
    transform: translateY(-2px);
}

.partners__icon {
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: var(--radius-md);
    background: var(--color-bg);
    box-shadow: var(--shadow-sm);
}

/* ============ FEATURES ============ */
.features {
    padding: var(--section-padding) 0;
    background: var(--color-bg);
}

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

.feature-card {
    background: var(--color-bg-card);
    border-radius: var(--radius-lg);
    padding: 36px 32px;
    border: 1px solid var(--color-border);
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: var(--gradient-primary);
    opacity: 0;
    transition: var(--transition);
}

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

.feature-card:hover::before {
    opacity: 1;
}

.feature-card__icon {
    width: 56px;
    height: 56px;
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    transition: var(--transition);
}

.feature-card__icon--orange {
    background: rgba(255, 107, 53, 0.1);
    color: var(--color-primary);
}

.feature-card__icon--green {
    background: rgba(0, 196, 154, 0.1);
    color: var(--color-accent-green);
}

.feature-card__icon--purple {
    background: rgba(124, 58, 237, 0.1);
    color: var(--color-accent-purple);
}

.feature-card__icon--blue {
    background: rgba(59, 130, 246, 0.1);
    color: var(--color-accent-blue);
}

.feature-card__icon--pink {
    background: rgba(236, 72, 153, 0.1);
    color: var(--color-accent-pink);
}

.feature-card__icon--teal {
    background: rgba(20, 184, 166, 0.1);
    color: var(--color-accent-teal);
}

.feature-card:hover .feature-card__icon {
    transform: scale(1.1);
}

.feature-card__title {
    font-size: 1.15rem;
    font-weight: 700;
    margin-bottom: 10px;
    color: var(--color-secondary);
}

.feature-card__desc {
    font-size: 0.925rem;
    color: var(--color-text-secondary);
    line-height: 1.65;
}

/* ============ DESTINATIONS ============ */
.destinations {
    position: relative;
    padding: var(--section-padding) 0;
    overflow: hidden;
}

.destinations__bg {
    position: absolute;
    inset: 0;
    background: var(--gradient-destinations);
    z-index: 0;
}

.destinations__bg::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse at 20% 80%, rgba(255, 107, 53, 0.15) 0%, transparent 50%),
        radial-gradient(ellipse at 80% 20%, rgba(124, 58, 237, 0.15) 0%, transparent 50%);
}

.destinations .container {
    position: relative;
    z-index: 1;
}

.destinations__tabs {
    display: flex;
    justify-content: center;
    gap: 12px;
    margin-bottom: 48px;
    flex-wrap: wrap;
}

.dest-tab {
    padding: 10px 24px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    background: rgba(255, 255, 255, 0.08);
    color: rgba(255, 255, 255, 0.7);
    border-radius: var(--radius-full);
    font-family: var(--font-family);
    font-size: 0.9rem;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
    backdrop-filter: blur(10px);
}

.dest-tab:hover {
    background: rgba(255, 255, 255, 0.15);
    color: white;
}

.dest-tab--active {
    background: white;
    color: var(--color-secondary);
    border-color: white;
}

.dest-tab--active:hover {
    background: white;
    color: var(--color-secondary);
}

.destinations__grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 16px;
    margin-bottom: 48px;
}

.dest-card {
    background: rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: var(--radius-lg);
    padding: 20px;
    display: flex;
    align-items: center;
    gap: 14px;
    cursor: pointer;
    transition: var(--transition);
}

.dest-card:hover {
    background: rgba(255, 255, 255, 0.15);
    transform: translateY(-4px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.2);
}

.dest-card__flag {
    font-size: 2rem;
    line-height: 1;
}

.dest-card__info {
    flex: 1;
}

.dest-card__info h4 {
    font-size: 0.95rem;
    font-weight: 700;
    color: white;
    margin-bottom: 2px;
}

.dest-card__info p {
    font-size: 0.75rem;
    color: rgba(255, 255, 255, 0.5);
}

.dest-card__price {
    font-size: 1rem;
    font-weight: 700;
    color: var(--color-primary-light);
    white-space: nowrap;
}

.dest-card__price small {
    font-size: 0.7rem;
    font-weight: 500;
    opacity: 0.8;
}

.destinations__local-currency {
    text-align: center;
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.875rem;
    margin-bottom: 24px;
    font-weight: 500;
}

.destinations__cta {
    text-align: center;
}

/* ============ HOW IT WORKS ============ */
.how-it-works {
    padding: var(--section-padding) 0;
    background: var(--color-bg);
}

.steps {
    display: flex;
    align-items: flex-start;
    justify-content: center;
    gap: 0;
}

.step {
    text-align: center;
    max-width: 300px;
    padding: 20px;
}

.step__number {
    width: 48px;
    height: 48px;
    background: var(--gradient-primary);
    color: white;
    font-size: 1.25rem;
    font-weight: 800;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 24px;
    box-shadow: 0 4px 15px rgba(255, 107, 53, 0.3);
}

.step__illustration {
    width: 180px;
    height: 180px;
    margin: 0 auto 24px;
}

.step__svg {
    width: 100%;
    height: 100%;
}

.step__title {
    font-size: 1.15rem;
    font-weight: 700;
    margin-bottom: 10px;
    color: var(--color-secondary);
}

.step__desc {
    font-size: 0.925rem;
    color: var(--color-text-secondary);
    line-height: 1.65;
}

.step__connector {
    display: flex;
    align-items: center;
    padding-top: 140px;
}

/* ============ PRICING ============ */
.pricing {
    padding: var(--section-padding) 0;
    background: linear-gradient(180deg, var(--color-bg) 0%, #f0f2ff 100%);
}

.pricing__local-note {
    display: inline-block;
    margin-top: 12px;
    padding: 8px 20px;
    background: rgba(255, 107, 53, 0.08);
    border: 1px solid rgba(255, 107, 53, 0.15);
    border-radius: var(--radius-full);
    font-size: 0.85rem;
    font-weight: 500;
    color: var(--color-primary);
}

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

.pricing-card {
    background: var(--color-bg-card);
    border-radius: var(--radius-xl);
    padding: 40px 32px;
    border: 1px solid var(--color-border);
    transition: var(--transition);
    position: relative;
    display: flex;
    flex-direction: column;
}

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

.pricing-card--popular {
    background: var(--color-secondary);
    border-color: transparent;
    color: white;
    transform: scale(1.05);
    box-shadow: var(--shadow-xl);
}

.pricing-card--popular:hover {
    transform: scale(1.05) translateY(-6px);
}

.pricing-card__badge {
    position: absolute;
    top: -14px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--gradient-primary);
    color: white;
    padding: 6px 20px;
    border-radius: var(--radius-full);
    font-size: 0.8rem;
    font-weight: 700;
    white-space: nowrap;
    box-shadow: 0 4px 12px rgba(255, 107, 53, 0.3);
}

.pricing-card__header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 24px;
}

.pricing-card__label {
    font-size: 1rem;
    font-weight: 700;
    color: var(--color-text-secondary);
}

.pricing-card--popular .pricing-card__label {
    color: rgba(255, 255, 255, 0.7);
}

.pricing-card__icon {
    font-size: 2rem;
}

.pricing-card__price {
    margin-bottom: 32px;
}

.pricing-card__amount {
    font-size: 2.8rem;
    font-weight: 800;
    color: var(--color-secondary);
    line-height: 1;
}

.pricing-card--popular .pricing-card__amount {
    color: white;
}

.pricing-card__currency {
    font-size: 1rem;
    font-weight: 600;
    color: var(--color-text-secondary);
    margin-left: 4px;
}

.pricing-card--popular .pricing-card__currency {
    color: rgba(255, 255, 255, 0.6);
}

.pricing-card__features {
    flex: 1;
    margin-bottom: 32px;
}

.pricing-card__features li {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px 0;
    border-bottom: 1px solid var(--color-border);
    font-size: 0.925rem;
    color: var(--color-text-secondary);
}

.pricing-card--popular .pricing-card__features li {
    color: rgba(255, 255, 255, 0.75);
    border-color: rgba(255, 255, 255, 0.1);
}

.pricing-card__features li:last-child {
    border-bottom: none;
}

.pricing-card--popular .btn--primary {
    background: white;
    color: var(--color-secondary);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.pricing-card--popular .btn--primary:hover {
    box-shadow: 0 6px 25px rgba(0, 0, 0, 0.3);
}

/* ============ TESTIMONIALS ============ */
.testimonials {
    padding: var(--section-padding) 0;
    background: var(--color-bg);
}

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

.testimonial-card {
    background: var(--color-bg-card);
    border-radius: var(--radius-lg);
    padding: 36px 32px;
    border: 1px solid var(--color-border);
    transition: var(--transition);
}

.testimonial-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
}

.testimonial-card__stars {
    font-size: 1rem;
    margin-bottom: 16px;
    letter-spacing: 2px;
}

.testimonial-card__text {
    font-size: 0.95rem;
    line-height: 1.7;
    color: var(--color-text-secondary);
    margin-bottom: 24px;
    font-style: italic;
}

.testimonial-card__author {
    display: flex;
    align-items: center;
    gap: 12px;
}

.testimonial-card__author img {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    object-fit: cover;
}

.testimonial-card__author strong {
    display: block;
    font-size: 0.9rem;
    color: var(--color-secondary);
}

.testimonial-card__author span {
    font-size: 0.8rem;
    color: var(--color-text-light);
}

/* ============ CTA SECTION ============ */
.cta-section {
    position: relative;
    padding: var(--section-padding) 0;
    overflow: hidden;
}

.cta-section__bg {
    position: absolute;
    inset: 0;
    background: var(--gradient-cta);
}

.cta-section__blob {
    position: absolute;
    border-radius: 50%;
    filter: blur(100px);
}

.cta-section__blob--1 {
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(255, 107, 53, 0.25) 0%, transparent 70%);
    top: -200px;
    left: -100px;
}

.cta-section__blob--2 {
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(124, 58, 237, 0.2) 0%, transparent 70%);
    bottom: -100px;
    right: -100px;
}

.cta-section__inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    position: relative;
    z-index: 1;
}

.cta-section__title {
    font-size: clamp(2rem, 4vw, 2.8rem);
    font-weight: 800;
    color: white;
    line-height: 1.2;
    margin-bottom: 20px;
}

.cta-section__desc {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.7;
    margin-bottom: 36px;
}

.cta-section__desc strong {
    color: var(--color-primary-light);
}

.cta-section__buttons {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
    margin-bottom: 36px;
}

.store-btn {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 14px 24px;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: var(--radius-md);
    color: white;
    transition: var(--transition);
    backdrop-filter: blur(10px);
}

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

.store-btn small {
    display: block;
    font-size: 0.7rem;
    opacity: 0.7;
    font-weight: 400;
}

.store-btn strong {
    display: block;
    font-size: 1rem;
    font-weight: 700;
}

.cta-section__qr {
    display: flex;
    align-items: center;
    gap: 16px;
}

.qr-code {
    padding: 8px;
    background: white;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-md);
}

.cta-section__qr span {
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.6);
}

/* CTA Phone */
.cta-section__visual {
    display: flex;
    justify-content: center;
}

.cta-phone {
    width: 260px;
    height: 520px;
    background: #1a1a2e;
    border-radius: 40px;
    padding: 8px;
    box-shadow:
        0 0 0 2px rgba(255, 255, 255, 0.1),
        0 20px 60px rgba(0, 0, 0, 0.4);
    animation: ctaPhoneFloat 5s ease-in-out infinite;
}

@keyframes ctaPhoneFloat {

    0%,
    100% {
        transform: translateY(0) rotate(-2deg);
    }

    50% {
        transform: translateY(-15px) rotate(-2deg);
    }
}

.cta-phone__screen {
    width: 100%;
    height: 100%;
    background: linear-gradient(160deg, #1a1a2e, #2d1b69);
    border-radius: 34px;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}

.cta-phone__content {
    text-align: center;
    padding: 24px;
    position: relative;
    width: 100%;
}

.cta-phone__notch {
    position: absolute;
    top: -30px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 24px;
    background: #1a1a2e;
    border-radius: 0 0 16px 16px;
}

.cta-phone__welcome {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 16px;
}

.cta-phone__welcome h3 {
    font-size: 1.4rem;
    font-weight: 800;
    color: white;
    line-height: 1.3;
}

.cta-phone__welcome p {
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.6);
    line-height: 1.5;
}

.cta-phone__btn {
    display: inline-block;
    padding: 12px 32px;
    background: var(--gradient-primary);
    color: white;
    border-radius: var(--radius-full);
    font-weight: 700;
    font-size: 0.9rem;
    margin-top: 8px;
    box-shadow: 0 4px 15px rgba(255, 107, 53, 0.4);
}

/* ============ FAQ ============ */
.faq {
    padding: var(--section-padding) 0;
    background: var(--color-bg);
}

.faq__list {
    max-width: 720px;
    margin: 0 auto;
}

.faq-item {
    border: 1px solid var(--color-border);
    border-radius: var(--radius-lg);
    margin-bottom: 12px;
    background: var(--color-bg-card);
    overflow: hidden;
    transition: var(--transition);
}

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

.faq-item__question {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 20px 24px;
    background: none;
    border: none;
    cursor: pointer;
    font-family: var(--font-family);
    font-size: 1rem;
    font-weight: 600;
    color: var(--color-secondary);
    text-align: left;
    transition: var(--transition);
}

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

.faq-item__icon {
    transition: var(--transition);
    flex-shrink: 0;
    color: var(--color-text-light);
}

.faq-item.active .faq-item__icon {
    transform: rotate(180deg);
    color: var(--color-primary);
}

.faq-item__answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease, padding 0.4s ease;
}

.faq-item.active .faq-item__answer {
    max-height: 300px;
}

.faq-item__answer p {
    padding: 0 24px 20px;
    font-size: 0.925rem;
    color: var(--color-text-secondary);
    line-height: 1.7;
}

/* ============ FOOTER ============ */
.footer {
    background: var(--color-secondary);
    padding: 80px 0 0;
    color: rgba(255, 255, 255, 0.7);
}

.footer__top {
    display: grid;
    grid-template-columns: 1.2fr 2fr;
    gap: 60px;
    padding-bottom: 60px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.footer__brand p {
    font-size: 0.9rem;
    line-height: 1.7;
    margin-bottom: 24px;
    max-width: 280px;
}

.footer__logo {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 1.25rem;
    font-weight: 800;
    color: white;
    margin-bottom: 16px;
}

.footer__socials {
    display: flex;
    gap: 14px;
}

.footer__socials a {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.08);
    border-radius: var(--radius-sm);
    color: rgba(255, 255, 255, 0.6);
    transition: var(--transition);
}

.footer__socials a:hover {
    background: var(--color-primary);
    color: white;
    transform: translateY(-2px);
}

.footer__links {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 40px;
}

.footer__col h4 {
    font-size: 0.9rem;
    font-weight: 700;
    color: white;
    margin-bottom: 20px;
}

.footer__col ul li {
    margin-bottom: 12px;
}

.footer__col a {
    font-size: 0.875rem;
    color: rgba(255, 255, 255, 0.5);
    transition: var(--transition);
}

.footer__col a:hover {
    color: var(--color-primary-light);
    padding-left: 4px;
}

.footer__bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 24px 0;
}

.footer__bottom p {
    font-size: 0.825rem;
    color: rgba(255, 255, 255, 0.4);
}

.footer__lang {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 0.825rem;
    color: rgba(255, 255, 255, 0.5);
}

/* ============ ANIMATIONS ============ */
[data-animate] {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

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

[data-animate].animated {
    opacity: 1;
    transform: translate(0);
}

/* ============ SCROLLBAR ============ */
::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: var(--color-bg);
}

::-webkit-scrollbar-thumb {
    background: var(--color-border);
    border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
    background: var(--color-text-light);
}

/* ============ RESPONSIVE ============ */
@media (max-width: 1024px) {
    :root {
        --section-padding: 80px;
    }

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

    .hero__subtitle {
        max-width: 100%;
    }

    .hero__ctas {
        justify-content: center;
    }

    .hero__trust {
        justify-content: center;
    }

    .hero__visual {
        display: none;
    }

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

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

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

    .step__connector {
        padding-top: 0;
        transform: rotate(90deg);
        margin: -10px 0;
    }

    .pricing__grid {
        grid-template-columns: 1fr;
        max-width: 420px;
        margin: 0 auto;
    }

    .pricing-card--popular {
        transform: none;
    }

    .pricing-card--popular:hover {
        transform: translateY(-6px);
    }

    .testimonials__grid {
        grid-template-columns: 1fr;
        max-width: 500px;
        margin: 0 auto;
    }

    .cta-section__inner {
        grid-template-columns: 1fr;
        text-align: center;
    }

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

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

    .cta-section__visual {
        display: none;
    }

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

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

@media (max-width: 768px) {
    :root {
        --section-padding: 64px;
    }

    .navbar__menu {
        position: fixed;
        top: 0;
        right: -100%;
        width: 280px;
        height: 100vh;
        background: white;
        flex-direction: column;
        padding: 80px 32px 32px;
        gap: 0;
        box-shadow: -10px 0 30px rgba(0, 0, 0, 0.1);
        transition: var(--transition);
        z-index: 999;
    }

    .navbar__menu.open {
        right: 0;
    }

    .navbar__menu a {
        color: var(--color-text) !important;
        padding: 16px 0;
        border-bottom: 1px solid var(--color-border);
        display: block;
        font-size: 1.1rem;
    }

    .navbar__burger {
        display: flex;
    }

    .navbar__actions .btn {
        display: none;
    }

    .hero {
        padding: 100px 0 60px;
        min-height: auto;
    }

    .hero__title {
        font-size: 2.2rem;
    }

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

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

    .destinations__tabs {
        gap: 8px;
    }

    .dest-tab {
        padding: 8px 16px;
        font-size: 0.8rem;
    }

    .footer__links {
        grid-template-columns: 1fr 1fr;
        gap: 24px;
    }

    .footer__bottom {
        flex-direction: column;
        gap: 12px;
        text-align: center;
    }

    .partners__grid {
        gap: 24px;
    }

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

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

@media (max-width: 480px) {
    .hero__badge {
        font-size: 0.75rem;
        padding: 6px 14px;
    }

    .hero__title {
        font-size: 1.8rem;
    }

    .hero__subtitle {
        font-size: 1rem;
    }

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

    .pricing-card {
        padding: 32px 24px;
    }

    .step__illustration {
        width: 140px;
        height: 140px;
    }
}

/* ============ SELECTION COLOR ============ */
::selection {
    background: rgba(255, 107, 53, 0.2);
    color: var(--color-secondary);
}