/* =========================================
   VARIABLES & DESIGN SYSTEM
   ========================================= */
:root {
    /* Colors - Light Theme Replica */
    --bg-dark: #f5f5f5;
    --bg-card: #ffffff;
    --bg-card-hover: #f0f0f0;

    --primary: #d32f2f;
    /* Red */
    --primary-hover: #b71c1c;
    --secondary: #800000;
    /* Burgundy */
    --accent: #F0DACB;
    /* Sand */

    --text-main: #2b2b2b;
    --text-muted: #6c757d;
    --border-color: rgba(0, 0, 0, 0.08);

    /* Typography */
    --font-main: 'Outfit', sans-serif;

    /* Spacings */
    --space-sm: 0.5rem;
    --space-md: 1rem;
    --space-lg: 2rem;
    --space-xl: 4rem;

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

    /* Transitions */
    --transition-fast: 0.2s ease;
    --transition-normal: 0.3s ease;
    --transition-slow: 0.5s ease;
}

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

html {
    scroll-behavior: smooth;
    overflow-x: hidden;
    width: 100%;
    max-width: 100%;
}

body {
    font-family: var(--font-main);
    background-color: var(--bg-dark);
    color: var(--text-main);
    line-height: 1.6;
    overflow-x: hidden;
    width: 100%;
    max-width: 100%;
    position: relative;
    -webkit-text-size-adjust: 100%;
}

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

ul {
    list-style: none;
}

/* Background Glow Effects */
.glow-bg {
    position: absolute;
    border-radius: 50%;
    filter: blur(120px);
    z-index: -1;
    pointer-events: none;
    opacity: 0.15;
    /* Легша прозорість для світлої теми */
}

.glow-1 {
    top: -10%;
    left: -10%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, var(--secondary) 0%, transparent 70%);
}

.glow-2 {
    top: 30%;
    right: -20%;
    width: 800px;
    height: 800px;
    background: radial-gradient(circle, var(--primary) 0%, transparent 70%);
}

/* Utilities */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1.5rem;
}

.section {
    padding: 6rem 0;
}

.section.pt-0 {
    padding-top: 0;
}

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

.text-left {
    text-align: left;
}

.section-title {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    line-height: 1.2;
}

.section-description {
    color: var(--text-muted);
    font-size: 1.125rem;
    max-width: 600px;
    margin: 0 auto 3rem;
}

.highlight {
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    display: inline-block;
}

/* Glassmorphism Classes (Adapted for Light Theme) */
.glass-card {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-lg);
    padding: 2rem;
    transition: var(--transition-normal);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.04);
}

.glass-panel {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-md);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.03);
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 0.75rem 1.5rem;
    border-radius: var(--radius-full);
    font-weight: 600;
    font-family: var(--font-main);
    font-size: 1rem;
    cursor: pointer;
    transition: var(--transition-normal);
    border: none;
    outline: none;
}

.btn-large {
    padding: 1rem 2.5rem;
    font-size: 1.125rem;
}

.btn-block {
    width: 100%;
    margin-top: 1rem;
}

.btn-primary {
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    color: white;
    box-shadow: 0 4px 20px rgba(211, 47, 47, 0.4);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 25px rgba(211, 47, 47, 0.6);
}

.btn-secondary {
    background: var(--bg-card);
    color: var(--text-main);
    border: 1px solid var(--border-color);
}

.btn-secondary:hover {
    background: var(--bg-card-hover);
    border-color: rgba(255, 255, 255, 0.2);
}

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

.btn-outline:hover {
    background: var(--primary);
    color: white;
    box-shadow: 0 0 15px rgba(211, 47, 47, 0.4);
}

/* =========================================
   NAVIGATION
   ========================================= */
.navbar {
    position: fixed;
    top: 20px;
    left: 50%;
    transform: translateX(-50%);
    width: calc(100% - 2rem);
    max-width: 1200px;
    background: rgba(13, 13, 13, 0.7);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 64px;
    padding: 0.5rem 1.5rem;
    z-index: 100;
    transition: var(--transition-normal);
}

.navbar.scrolled {
    background: rgba(13, 13, 13, 0.85);
    border-color: rgba(255, 255, 255, 0.15);
}

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

.logo {
    display: flex;
    align-items: center;
    gap: 0.2rem;
    font-size: 1.5rem;
    font-weight: 800;
    color: #ffffff;
    text-decoration: none;
    letter-spacing: -0.5px;
}

.nav-links {
    display: flex;
    gap: 1.5rem;
}

.nav-links a {
    color: #ffffff;
    font-weight: 500;
    padding: 8px 12px;
}

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

/* Header Button Ghost Style */
.header-btn-wrapper {
    position: relative;
    display: inline-block;
    z-index: 10;
}

.header-ghost-btn {
    border-radius: 100px;
    padding: 10px 24px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: #ffffff;
    background: transparent;
    font-weight: 500;
}

.header-ghost-btn:hover {
    background: var(--primary);
    border-color: var(--primary);
    color: #ffffff;
    box-shadow: 0 0 15px rgba(211, 47, 47, 0.4);
}

.menu-toggle {
    display: none;
    background: none;
    border: none;
    color: var(--text-main);
    font-size: 1.5rem;
    cursor: pointer;
}

/* Mobile Menu */
.mobile-menu {
    position: fixed;
    top: 0;
    right: -100%;
    width: 300px;
    max-width: 100vw;
    height: 100vh;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    z-index: 200;
    padding: 2rem;
    transition: 0.4s cubic-bezier(0.77, 0, 0.175, 1);
    border-left: 1px solid var(--border-color);
    display: flex;
    flex-direction: column;
    justify-content: center;
}

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

.close-menu {
    position: absolute;
    top: 1.5rem;
    right: 1.5rem;
    background: none;
    border: none;
    color: var(--text-main);
    font-size: 1.5rem;
    cursor: pointer;
}

.mobile-nav-links {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    text-align: center;
}

.mobile-nav-links a {
    font-size: 1.25rem;
    font-weight: 500;
}

.mobile-nav-links .btn {
    margin-top: 1rem;
    width: 100%;
}

/* =========================================
   HERO SECTION
   ========================================= */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding-top: 5rem;
    /* Account for navbar */
    position: relative;
    overflow: hidden;
}

/* Background Videos */
.hero-video-wrapper {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
}

.hero-video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    position: absolute;
    top: 0;
    left: 0;
}

.desktop-video {
    display: block;
}

.mobile-video {
    display: none;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    /* Мінімальна прозорість для максимальної видимості відео */
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(0px);
    -webkit-backdrop-filter: blur(0px);
    z-index: 1;
}

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

.badge {
    display: inline-block;
    padding: 0.5rem 1rem;
    background: rgba(211, 47, 47, 0.1);
    border: 1px solid rgba(211, 47, 47, 0.3);
    color: var(--primary);
    border-radius: var(--radius-full);
    font-size: 0.875rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
}

.hero-title {
    font-size: 4rem;
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 1.5rem;
    letter-spacing: -1px;
    color: #ffffff;
}

.hero-subtitle {
    font-size: 1.25rem;
    color: #ffffff;
    margin-bottom: 2.5rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.6;
}

.hero-actions {
    display: flex;
    gap: 1rem;
    justify-content: center;
    margin-bottom: 4rem;
}

.stats {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem 2.5rem;
    border-radius: var(--radius-full);
    max-width: 700px;
    margin: 0 auto;
}

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

.stat-value {
    font-size: 2rem;
    font-weight: 700;
    color: var(--text-main);
}

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

.stat-divider {
    width: 1px;
    height: 40px;
    background: var(--border-color);
}

/* =========================================
   PARTNERS SECTION (MARQUEE)
   ========================================= */
.partners-section {
    padding: 2rem 0;
    border-top: 1px solid var(--border-color);
    border-bottom: 1px solid var(--border-color);
    background: #ffffff;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    overflow: hidden;
    position: relative;
    z-index: 10;
}

/* Gradient masks for smooth fade effect on edges */
.partners-section::before,
.partners-section::after {
    content: '';
    position: absolute;
    top: 0;
    width: 60px;
    height: 100%;
    z-index: 2;
    pointer-events: none;
}

.partners-section::before {
    left: 0;
    background: linear-gradient(to right, var(--bg-dark), transparent);
}

.partners-section::after {
    right: 0;
    background: linear-gradient(to left, var(--bg-dark), transparent);
}

.marquee-wrapper {
    width: 100%;
    overflow: hidden;
}

.marquee-content {
    display: flex;
    align-items: center;
    gap: 4rem;
    width: max-content;
    animation: scroll 30s linear infinite;
}

.marquee-content:hover {
    animation-play-state: paused;
}

.partner-logo {
    height: 35px;
    width: auto;
    max-width: 150px;
    opacity: 0.6;
    filter: grayscale(100%);
    transition: var(--transition-normal);
}

.partner-logo:hover {
    opacity: 1;
    filter: grayscale(0%);
    transform: scale(1.1);
}

@keyframes scroll {
    to {
        transform: translateX(calc(-50% - 2rem));
    }
}

/* =========================================
   BENEFITS SECTION
   ========================================= */
.cards-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.feature-card {
    transition: transform var(--transition-normal), box-shadow var(--transition-normal), border-color var(--transition-normal);
}

.feature-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    border-color: rgba(211, 47, 47, 0.3);
}

.card-icon {
    width: 60px;
    height: 60px;
    background: rgba(211, 47, 47, 0.1);
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: var(--primary);
    margin-bottom: 1.5rem;
    transition: var(--transition-normal);
}

.feature-card:hover .card-icon {
    background: var(--primary);
    color: white;
    box-shadow: 0 0 15px rgba(211, 47, 47, 0.4);
}

.feature-card h3 {
    font-size: 1.25rem;
    margin-bottom: 1rem;
}

.feature-card p {
    color: var(--text-muted);
}

/* =========================================
   CONDITIONS SECTION
   ========================================= */
.layout-split {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.layout-split.reverse {
    direction: rtl;
}

.layout-split.reverse>* {
    direction: ltr;
}

.check-list li i {
    font-size: 1.25rem;
    color: var(--primary);
    margin-top: 2px;
}

/* Office Images Animation */
.image-side {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
}

.office-images-container {
    position: relative;
    width: 100%;
    max-width: 500px;
    height: 550px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.office-img {
    position: absolute;
    width: 80%;
    height: 100%;
    object-fit: cover;
    border-radius: var(--radius-lg);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.img-back {
    top: 0;
    right: 0;
    width: 65%;
    height: 75%;
    transform: rotate(6deg) scale(0.9);
    z-index: 1;
    filter: brightness(0.7);
}

.img-middle {
    top: 10%;
    right: 15%;
    width: 65%;
    height: 75%;
    transform: rotate(2deg) scale(0.95);
    z-index: 2;
    filter: brightness(0.85);
    border: 4px solid var(--bg-card);
}

.img-front {
    bottom: 0;
    left: 0;
    width: 70%;
    height: 80%;
    transform: rotate(-4deg);
    z-index: 3;
    border: 8px solid var(--bg-card);
}

/* Hover Animations */
/* When container is hovered, spread them out widely */
.office-images-container:hover .img-back {
    transform: rotate(5deg) scale(1) translate(140px, -20px);
    filter: brightness(0.9);
    z-index: 3;
}

.office-images-container:hover .img-middle {
    transform: rotate(-2deg) scale(1) translate(0px, -40px);
    filter: brightness(1);
    z-index: 4;
}

.office-images-container:hover .img-front {
    transform: rotate(-8deg) scale(1) translate(-140px, -10px);
    filter: brightness(0.9);
    z-index: 5;
}

/* Individual hover - bring image to front */
.office-images-container .office-img:hover {
    filter: brightness(1.1);
    z-index: 10 !important;
    transform: scale(1.05) rotate(0deg) !important;
}

.office-badge {
    position: absolute;
    bottom: 20px;
    right: -20px;
    z-index: 4;
    padding: 1rem 1.5rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-weight: 600;
    color: var(--text-main);
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(10px);
    border-radius: var(--radius-full);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    animation: float 3s ease-in-out infinite;
}

@keyframes float {
    0% {
        transform: translateY(0px);
    }

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

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

.check-list li {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    margin-bottom: 1rem;
    font-size: 1.125rem;
    color: var(--text-muted);
}

.check-list i {
    font-size: 1.5rem;
    margin-top: 2px;
}

.text-primary {
    color: var(--primary);
}

.text-accent {
    color: var(--accent);
}

.image-wrapper {
    padding: 1rem;
    border-radius: var(--radius-lg);
}

.image-placeholder {
    width: 100%;
    aspect-ratio: 4/5;
    background: linear-gradient(45deg, #e0e0e0, #f8f9fa);
    border-radius: var(--radius-md);
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: flex-end;
}

/* Background Pattern for placeholder */
.bg-pattern {
    background-image: radial-gradient(var(--border-color) 1px, transparent 1px);
    background-size: 20px 20px;
}

.overlay-text {
    width: 100%;
    padding: 2rem;
    background: linear-gradient(to top, rgba(255, 255, 255, 0.9), transparent);
}

.overlay-text h3 {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
}

.overlay-text p {
    color: var(--text-muted);
}

.reviews-slider-container {
    position: relative;
    max-width: 1150px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    gap: 1rem;
}

/* =========================================
   INSTAGRAM SECTION
   ========================================= */
.instagram-feed {
    /* Background gradient removed to match the rest of the page */
}

.instagram-slider-wrapper {
    position: relative;
    max-width: 1150px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    gap: 1rem;
}

.instagram-slider {
    display: flex;
    overflow-x: auto;
    scroll-behavior: smooth;
    gap: 1.5rem;
    padding: 1rem 0.5rem;
    scrollbar-width: none;
    -ms-overflow-style: none;
    width: 100%;
    scroll-snap-type: x mandatory;
    position: relative;
}

.ig-swipe-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 5;
    /* Invisible, but captures touch to allow scrolling */
}

/* Permit clicking links but allow swiping over empty areas of the post container */
.ig-post {
    position: relative;
    z-index: 10;
    flex: 0 0 calc(33.333% - 1rem);
    min-width: 320px;
    background: var(--bg-card);
    border-radius: var(--radius-md);
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    transition: transform var(--transition-normal);
    display: flex;
    justify-content: center;
    scroll-snap-align: center;
}

.ig-post:hover {
    transform: translateY(-5px);
}

/* Прибираємо зайві відступи навколо iframe від Instagram */
.ig-post iframe.instagram-media {
    margin: 0 !important;
    min-width: 100% !important;
    max-width: 100% !important;
    width: 100% !important;
}



.reviews-slider {
    display: flex;
    overflow-x: auto;
    scroll-behavior: smooth;
    gap: 1.5rem;
    padding: 1.5rem 0.5rem;
    /* Increased vertical padding for shadows */
    scrollbar-width: none;
    /* Firefox */
    -ms-overflow-style: none;
    /* IE and Edge */
    scroll-snap-type: x mandatory;
}

.reviews-slider::-webkit-scrollbar {
    display: none;
    /* Chrome, Safari and Opera */
}

.review-slide {
    flex: 0 0 calc(33.333% - 1rem);
    /* 3 items visible by default */
    min-width: 280px;
    padding: 1rem;
    display: flex;
    justify-content: center;
    align-items: center;
    scroll-snap-align: center;
}

.review-image {
    width: 100%;
    height: auto;
    border-radius: var(--radius-sm);
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.4);
    transition: transform var(--transition-normal);
}

.review-slide:hover .review-image {
    transform: scale(1.03);
}

.slider-btn {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    color: var(--text-main);
    width: 48px;
    height: 48px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    cursor: pointer;
    transition: var(--transition-normal);
    z-index: 10;
    flex-shrink: 0;
}

.slider-btn:hover {
    background: var(--primary);
    color: white;
    border-color: var(--primary);
    box-shadow: 0 4px 15px rgba(211, 47, 47, 0.4);
}

/* =========================================
   CALCULATOR SECTION
   ========================================= */
.calc-wrapper {
    max-width: 900px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
    padding: 3rem;
}

.calc-group {
    margin-bottom: 2rem;
}

.calc-label-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1rem;
}

.calc-label-row label {
    font-size: 1.125rem;
    font-weight: 500;
}

.calc-value-display {
    background: rgba(211, 47, 47, 0.15);
    color: var(--primary);
    padding: 0.25rem 0.75rem;
    border-radius: var(--radius-sm);
    font-weight: 700;
    font-size: 1rem;
    border: 1px solid rgba(211, 47, 47, 0.3);
}

/* Custom Range Slider */
.custom-slider {
    appearance: none;
    -webkit-appearance: none;
    width: 100%;
    height: 8px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 4px;
    outline: none;
    transition: var(--transition-fast);
}

/* Linear gradient for filling slider will be updated via JS */
.custom-slider::-webkit-slider-thumb {
    -webkit-appearance: none;
    appearance: none;
    width: 24px;
    height: 24px;
    border-radius: 50%;
    background: var(--text-main);
    border: 3px solid var(--primary);
    cursor: pointer;
    box-shadow: 0 0 10px rgba(211, 47, 47, 0.5);
    transition: transform 0.1s;
}

.custom-slider::-webkit-slider-thumb:hover {
    transform: scale(1.2);
}

.custom-slider::-moz-range-thumb {
    width: 24px;
    height: 24px;
    border-radius: 50%;
    background: var(--text-main);
    border: 3px solid var(--primary);
    cursor: pointer;
    box-shadow: 0 0 10px rgba(211, 47, 47, 0.5);
    transition: transform 0.1s;
}

/* Toggle Switch */
.toggle-group {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    padding-top: 1rem;
    border-top: 1px solid var(--border-color);
}

.mt-3 {
    margin-top: 1.5rem;
}

.toggle-switch {
    position: relative;
    display: inline-block;
    width: 60px;
    height: 34px;
    flex-shrink: 0;
}

.toggle-switch input {
    opacity: 0;
    width: 0;
    height: 0;
}

.toggle-slider {
    position: absolute;
    cursor: pointer;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(255, 255, 255, 0.1);
    transition: .4s;
    border: 1px solid var(--border-color);
}

.toggle-slider:before {
    position: absolute;
    content: "";
    height: 26px;
    width: 26px;
    left: 3px;
    bottom: 3px;
    background-color: var(--text-muted);
    transition: .4s;
}

input:checked+.toggle-slider {
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    border-color: transparent;
}

input:checked+.toggle-slider:before {
    transform: translateX(26px);
    background-color: white;
}

.toggle-slider.round {
    border-radius: 34px;
}

.toggle-slider.round:before {
    border-radius: 50%;
}

.toggle-label {
    display: flex;
    flex-direction: column;
}

.toggle-title {
    font-size: 1.125rem;
    font-weight: 500;
}

.toggle-desc {
    font-size: 0.875rem;
    color: var(--accent);
}

/* Calculator Result */
.calc-result-box {
    background: #ffffff;
    border-radius: var(--radius-lg);
    padding: 3rem 2rem;
    text-align: center;
    border: 1px solid var(--border-color);
    box-shadow: inset 0 0 30px rgba(211, 47, 47, 0.05);
    position: relative;
    overflow: hidden;
}

.calc-result-box::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(128, 0, 0, 0.1) 0%, transparent 60%);
    z-index: 0;
    pointer-events: none;
}

.result-title {
    color: var(--text-muted);
    font-size: 1.125rem;
    margin-bottom: 1rem;
    position: relative;
    z-index: 1;
}

.result-amount {
    display: flex;
    justify-content: center;
    align-items: baseline;
    gap: 0.5rem;
    margin-bottom: 0.5rem;
    position: relative;
    z-index: 1;
}

.currency {
    font-size: 2.5rem;
    color: var(--primary);
    font-weight: 600;
}

.amount-value {
    font-size: 4rem;
    font-weight: 800;
    line-height: 1;
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    letter-spacing: -2px;
}

.result-period {
    color: var(--text-muted);
    font-size: 0.875rem;
    margin-bottom: 2rem;
    position: relative;
    z-index: 1;
}

/* =========================================
   FAQ SECTION
   ========================================= */
.accordion {
    max-width: 800px;
    margin: 0 auto;
    overflow: hidden;
}

.accordion-item {
    border-bottom: 1px solid var(--border-color);
}

.accordion-item:last-child {
    border-bottom: none;
}

.accordion-header {
    width: 100%;
    text-align: left;
    background: none;
    border: none;
    padding: 1.5rem 2rem;
    font-size: 1.125rem;
    font-weight: 600;
    font-family: var(--font-main);
    color: var(--text-main);
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: var(--transition-fast);
}

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

.accordion-header i {
    transition: transform var(--transition-normal);
}

.accordion-header.active i {
    transform: rotate(180deg);
}

.accordion-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height var(--transition-normal);
}

.accordion-body {
    padding: 0 2rem 1.5rem;
    color: var(--text-muted);
}

/* =========================================
   FORM SECTION
   ========================================= */
.form-side {
    padding: 3rem;
}

.form-title {
    font-size: 2rem;
    margin-bottom: 0.5rem;
}

.form-subtitle {
    color: var(--text-muted);
    margin-bottom: 2.5rem;
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-row {
    display: flex;
    gap: 1rem;
}

.half {
    flex: 1;
}

.form-group label {
    display: block;
    font-size: 0.875rem;
    margin-bottom: 0.5rem;
    color: var(--text-muted);
}

.input-wrapper,
.custom-select-wrapper {
    position: relative;
}

.input-wrapper i.ph,
.input-wrapper span.ph {
    position: absolute;
    left: 1rem;
    top: 50%;
    transform: translateY(-50%);
    color: var(--text-muted);
    font-size: 1.25rem;
}

input[type="text"],
input[type="number"],
select {
    width: 100%;
    background: #ffffff;
    border: 1px solid var(--border-color);
    border-radius: var(--radius-sm);
    padding: 0.875rem 1rem 0.875rem 3rem;
    color: var(--text-main);
    font-family: var(--font-main);
    font-size: 1rem;
    transition: var(--transition-fast);
}

.custom-select {
    appearance: none;
    padding-left: 1rem;
    /* remove icon padding for select since arrow is right */
}

.custom-select-wrapper select {
    padding-left: 1rem;
}

.custom-select-wrapper .select-icon {
    position: absolute;
    right: 1rem;
    top: 50%;
    transform: translateY(-50%);
    pointer-events: none;
    color: var(--text-muted);
}

input:focus,
select:focus {
    outline: none;
    border-color: var(--primary);
    box-shadow: 0 0 0 2px rgba(211, 47, 47, 0.2);
}

::placeholder {
    color: var(--text-muted);
}

/* Contact Info Side */
.contact-methods {
    margin-top: 3rem;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.contact-method {
    display: flex;
    align-items: center;
    padding: 1.5rem;
    gap: 1.5rem;
}

.contact-icon {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: white;
}

.bg-telegram {
    background: #0088cc;
}

.bg-instagram {
    background: #E1306C;
}

.contact-details h4 {
    font-size: 0.875rem;
    color: var(--text-muted);
    margin-bottom: 0.25rem;
}

.contact-details a {
    font-size: 1.25rem;
    font-weight: 600;
}

.contact-details a:hover {
    color: var(--primary);
}

/* Form Status Styles */
.form-status {
    margin-top: 1rem;
    padding: 1rem;
    border-radius: var(--radius-sm);
    text-align: center;
    display: none;
}

.form-status.success {
    display: block;
    background: rgba(0, 245, 212, 0.1);
    color: var(--accent);
    border: 1px solid rgba(0, 245, 212, 0.3);
}

/* =========================================
   FOOTER
   ========================================= */
.footer {
    border-top: 1px solid var(--border-color);
    padding-top: 4rem;
    background: #ffffff;
}

.footer-container {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1.5fr;
    gap: 2rem;
    margin-bottom: 3rem;
}

.footer-brand p {
    color: var(--text-muted);
    margin: 1rem 0;
    max-width: 300px;
}

.social-links {
    display: flex;
    gap: 1rem;
}

.social-links a {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: var(--bg-card);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
    border: 1px solid var(--border-color);
}

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

.footer-links h4 {
    margin-bottom: 1.5rem;
    font-size: 1.125rem;
}

.footer-links ul {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.footer-links a {
    color: var(--text-muted);
}

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

.footer-warning {
    background: rgba(255, 0, 0, 0.05);
    border: 1px dashed rgba(255, 0, 0, 0.2);
    padding: 1.5rem;
    border-radius: var(--radius-md);
}

.age-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: #ff4757;
    font-weight: 700;
    font-size: 1.25rem;
    margin-bottom: 0.5rem;
}

.footer-warning p {
    color: var(--text-muted);
    font-size: 0.875rem;
}

.footer-bottom {
    border-top: 1px solid var(--border-color);
    padding: 1.5rem 0;
    text-align: center;
    color: var(--text-muted);
    font-size: 0.875rem;
}

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

.fade-in-left {
    opacity: 0;
    transform: translateX(-30px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

.fade-in-right {
    opacity: 0;
    transform: translateX(30px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

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

/* =========================================
   MEDIA QUERIES (RESPONSIVE)
   ========================================= */
/* Stories Progress (Mobile Only) */
.stories-progress-wrapper {
    display: none;
    gap: 4px;
    position: absolute;
    top: -20px;
    left: 0;
    width: 100%;
    padding: 0 0.5rem;
    z-index: 10;
}

.story-progress {
    flex: 1;
    height: 3px;
    background: rgba(0, 0, 0, 0.1);
    border-radius: 2px;
    overflow: hidden;
}

.story-progress-fill {
    width: 0%;
    height: 100%;
    background: var(--primary);
    border-radius: 2px;
}

@media (max-width: 1024px) {
    .hero-title {
        font-size: 3rem;
    }

    .layout-split {
        gap: 2rem;
    }
}

@media (max-width: 768px) {

    .desktop-video {
        display: none;
    }

    .mobile-video {
        display: block;
    }

    .nav-links,
    .header-btn-wrapper {
        display: none;
    }

    .nav-container {
        width: 100%;
        justify-content: space-between;
    }

    .menu-toggle {
        display: block;
    }

    .hero {
        padding-top: 8rem;
    }

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

    .hero-actions {
        flex-direction: column;
    }

    .stats {
        flex-direction: column;
        gap: 1.5rem;
        border-radius: var(--radius-lg);
        margin-bottom: 2rem;
    }

    .stat-divider {
        width: 100%;
        height: 1px;
    }

    .layout-split,
    .layout-split.reverse {
        grid-template-columns: 1fr;
    }

    .form-side {
        padding: 2rem 1.5rem;
    }

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

    .footer-warning {
        grid-column: span 2;
    }

    .review-slide {
        flex: 0 0 calc(50% - 1rem);
        /* 2 items visible on tablet */
    }

    .ig-post {
        flex: 0 0 calc(50% - 1rem);
    }

    .slider-btn {
        display: none !important;
    }

    .stories-progress-wrapper {
        display: flex;
    }

    .calc-wrapper {
        grid-template-columns: 1fr;
        padding: 2rem;
        gap: 2rem;
    }
}

@media (max-width: 480px) {
    .section {
        padding: 4rem 0;
    }

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

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

    .form-row {
        flex-direction: column;
    }

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

    .footer-warning {
        grid-column: 1;
    }

    .review-slide {
        flex: 0 0 calc(100% - 2rem);
        min-width: 260px;
        padding: 0;
    }

    .ig-post {
        flex: 0 0 calc(100% - 2rem);
        min-width: 260px;
    }
}