        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }
        body, html {
            width: 100%;
            height: 100%;
            font-family: 'Plus Jakarta Sans', sans-serif;
            -webkit-font-smoothing: antialiased;
            -moz-osx-font-smoothing: grayscale;
        }
        h1, h2, h3 {
            font-family: 'Plus Jakarta Sans', sans-serif;
        }
        ::-webkit-scrollbar {
            width: 10px;
            height: 10px;
        }
        ::-webkit-scrollbar-track {
            background: #F0EBE1; 
            border-radius: 0;
        }
        ::-webkit-scrollbar-thumb {
            background: #C8A97E; 
            border-radius: 0;
        }
        ::-webkit-scrollbar-thumb:hover {
            background: #1A2B3C; 
        }
        html {
            scrollbar-width: thin;
            scrollbar-color: #C8A97E #F0EBE1;
        }
        .hiro-zone-wrapper {
            position: relative;
            width: 100%;
            min-height: 100vh;
            overflow: hidden;
            background-color: #030303;
            --bg-main: #FAFAFA;         
            --bg-secondary: #F0EBE1;    
            --bg-card: #FFFFFF;         
            --text-dark: #1A2B3C;       
            --accent-gold: #C8A97E;     
            --accent-warm: #D98C70;     
            --shadow-soft: 0 10px 40px rgba(26, 43, 60, 0.05); 
            --shadow-hover: 0 15px 50px rgba(200, 169, 126, 0.15); 
            --radius-soft: 12px;        
            --transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
            --text-light: #FFFFFF;
            --text-muted: rgba(255, 255, 255, 0.75);
            --container-width: 1400px;
            --container-gap: 4rem;
        }
        .hiro-bg-container {
            position: absolute;
            inset: -5%;
            width: 110%;
            height: 110%;
            z-index: 1;
        }
        .hiro-bg-image {
            width: 100%;
            height: 100%;
            background-image: url('../images/hiro-g1.PNG');
            background-size: cover;
            background-position: center;
            will-change: transform, filter;
        }
        .hiro-bg-vignette {
            position: absolute;
            inset: 0;
            z-index: 2;
            background: linear-gradient(to bottom, rgba(3,3,3,0.3) 0%, transparent 30%, rgba(3,3,3,0.9) 100%),
                        radial-gradient(circle at center, transparent 30%, rgba(0,0,0,0.6) 100%);
            pointer-events: none;
        }
        .hiro-noise-overlay {
            position: absolute;
            inset: 0;
            z-index: 3;
            opacity: 0.04;
            pointer-events: none;
            background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noiseFilter'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.65' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noiseFilter)'/%3E%3C/svg%3E");
        }
        .hiro-navbar-wrapper {
            position: absolute; 
            top: 2rem;
            left: 50%;
            transform: translateX(-50%);
            z-index: 100;
            width: calc(100% - var(--container-gap) * 2);
            max-width: var(--container-width);
            will-change: transform, opacity;
        }
        .hiro-navbar {
            display: flex;
            align-items: center;
            justify-content: space-between;
            width: 100%;
            padding: 0.75rem 0.75rem 0.75rem 2rem; 
            background: transparent;
            backdrop-filter: none;
            -webkit-backdrop-filter: none;
            border: none;
            border-radius: 0;
            box-shadow: none;
            transition: var(--transition);
        }
        .hiro-nav-left { display: flex; flex-direction: column; gap: 0; align-items: center; justify-content: center; }
        .hiro-nav-brand { display: flex; flex-direction: column; align-items: center; text-decoration: none; padding: 5px 0; }
        .hiro-brand-logo { 
            height: 60px; 
            width: auto; 
            object-fit: contain; 
            mix-blend-mode: lighten;
            filter: drop-shadow(0 0 15px rgba(255, 255, 255, 0.5)); 
            transform: scale(1.4);
            transform-origin: center center;
        }
        .hiro-nav-slogan { font-size: 0.55rem; font-weight: 500; color: var(--text-muted); letter-spacing: 0.04em; margin-top: 2px; text-align: center; }
        .hiro-nav-links { display: none; gap: 3rem; position: absolute; left: 50%; transform: translateX(-50%); }
        .hiro-nav-link { position: relative; font-size: 0.85rem; font-weight: 700; color: var(--text-light); text-decoration: none; opacity: 0.7; text-transform: uppercase; letter-spacing: 0.05em; padding: 0.5rem 0; transition: var(--transition); }
        .hiro-nav-link::after { content: ''; position: absolute; bottom: 0; left: 0; width: 100%; height: 2px; background: var(--accent-gold); transform: scaleX(0); transform-origin: right; transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1); }
        .hiro-nav-link:hover, .hiro-nav-link.hiro-active { opacity: 1; color: var(--accent-gold); text-shadow: 0 0 10px rgba(200, 169, 126, 0.5); }
        .hiro-nav-link:hover::after, .hiro-nav-link.hiro-active::after { transform: scaleX(1); transform-origin: left; }
        .hiro-nav-right { display: flex; align-items: center; gap: 1.5rem; }
        .hiro-nav-langs { display: none; gap: 0.75rem; font-size: 0.75rem; font-weight: 700; }
        .hiro-nav-lang { color: var(--text-muted); text-decoration: none; transition: var(--transition); }
        .hiro-nav-lang:hover, .hiro-nav-lang.hiro-active { color: var(--text-light); font-weight: 800; }
        .hiro-nav-btn {
            position: relative; overflow: hidden;
            display: flex; align-items: center; gap: 0.5rem; padding: 1rem 2rem; border-radius: 100px;
            background: var(--accent-gold); color: var(--text-dark); font-weight: 800;
            font-size: 0.9rem; text-transform: uppercase; letter-spacing: 0.05em; cursor: pointer; border: none;
            box-shadow: 0 0 20px rgba(200, 169, 126, 0.15); transition: var(--transition);
        }
        .hiro-nav-btn::before {
            content: ''; position: absolute; top: 0; left: -100%; width: 50%; height: 100%;
            background: linear-gradient(90deg, transparent, rgba(255,255,255,0.5), transparent);
            transform: skewX(-20deg); transition: 0.5s;
        }
        .hiro-nav-btn:hover { transform: scale(1.05); box-shadow: var(--shadow-hover); background: #DBC39E; }
        .hiro-nav-btn:hover::before { left: 150%; }
        .hiro-hamburger { display: block; width: 28px; height: 18px; position: relative; background: none; border: none; cursor: pointer; z-index: 101; }
        .hiro-hamburger span { display: block; position: absolute; height: 2px; width: 100%; background: var(--text-light); border-radius: 2px; left: 0; transform-origin: center; }
        .hiro-hamburger span:nth-child(1) { top: 0px; }
        .hiro-hamburger span:nth-child(2) { top: 6px; }
        .hiro-hamburger span:nth-child(3) { top: 12px; }
        .hiro-mobile-menu {
            position: fixed; inset: 0; width: 100%; height: 100vh;
            background: rgba(10, 10, 12, 0.98);
            backdrop-filter: blur(30px); -webkit-backdrop-filter: blur(30px);
            z-index: 90; display: flex; flex-direction: column; justify-content: center; align-items: center; visibility: hidden; 
        }
        .hiro-mobile-nav-links { display: flex; flex-direction: column; gap: 2rem; text-align: center; margin-bottom: 4rem; }
        .hiro-mobile-link { font-size: 1.8rem; font-weight: 700; color: var(--text-light); text-decoration: none; text-transform: uppercase; letter-spacing: 0.05em; }
        .hiro-mobile-langs { display: flex; gap: 2rem; font-size: 1rem; font-weight: 600; }
        .hiro-mobile-lang { color: var(--text-muted); text-decoration: none; transition: var(--transition); }
        .hiro-mobile-lang.hiro-active { color: var(--text-light); font-weight: 800; border-bottom: 1px solid var(--accent-gold); }
        .hiro-hero-bounds {
            position: absolute; top: 150px; bottom: 40px; left: 50%; transform: translateX(-50%);
            width: calc(100% - var(--container-gap) * 2); max-width: var(--container-width);
            display: flex; align-items: center; justify-content: space-between; z-index: 10; pointer-events: none; 
        }
        .hiro-hero-content { max-width: 850px; padding-left: 2rem; pointer-events: auto; display: flex; flex-direction: column; }
        .hiro-mask { overflow: visible; display: block; padding-bottom: 0.3rem; }
        .hiro-tech-badge {
            display: inline-flex; align-items: center; gap: 0.75rem; padding: 0.5rem 1.2rem;
            background: rgba(255, 255, 255, 0.05); backdrop-filter: blur(10px); border: 1px solid rgba(255, 255, 255, 0.2);
            border-radius: 100px; font-size: 0.75rem; color: #FFFFFF;
            margin-bottom: 2rem; text-transform: uppercase; letter-spacing: 0.1em; transform-origin: left center;
            font-weight: 800; text-shadow: 0 0 10px rgba(255, 255, 255, 0.3);
        }
        .hiro-pulse-dot {
            width: 8px; height: 8px; background-color: var(--accent-gold); border-radius: 50%;
            box-shadow: 0 0 15px var(--accent-gold), 0 0 30px var(--accent-gold); animation: hiro-blink 2s infinite;
        }
        @keyframes hiro-blink { 0%, 100% { opacity: 1; transform: scale(1); } 50% { opacity: 0.5; transform: scale(0.8); } }
        .hiro-headline {
            font-size: clamp(3.2rem, 5vw, 5.8rem);
            line-height: 1.05; font-weight: 600; letter-spacing: -0.04em;
            color: #FFFFFF; margin-bottom: 1.8rem;
            text-shadow: 0 0 40px rgba(255, 255, 255, 0.25); 
        }
        .hiro-headline span { 
            background: linear-gradient(90deg, #FFFFFF 0%, #FFF4E0 40%, var(--accent-gold) 100%);
            -webkit-background-clip: text;
            background-clip: text; 
            -webkit-text-fill-color: transparent;
            font-weight: 800;
            font-style: italic;
            padding-right: 0.2em;
            filter: drop-shadow(0 0 20px rgba(200, 169, 126, 0.5));
        }
        .hiro-description {
            font-size: 1.2rem; line-height: 1.6; color: #FFFFFF; opacity: 0.95; 
            font-weight: 500; max-width: 620px; margin-bottom: 3.5rem; letter-spacing: 0.01em;
            text-shadow: 0 2px 10px rgba(0, 0, 0, 0.8); 
        }
        .hiro-description .hiro-highlight {
            color: var(--accent-warm); 
            font-weight: 800; 
            text-shadow: 0 0 20px rgba(217, 140, 112, 0.6);
            opacity: 1;
        }
        .hiro-headline .hiro-text-highlight {
            color: #FFA940 !important;
            font-weight: 900;
            text-shadow: none;
            background: none !important;
            -webkit-background-clip: unset !important;
            background-clip: unset !important;
            -webkit-text-fill-color: #FFA940 !important;
            font-style: normal !important;
        }
        .hiro-hero-actions { display: flex; align-items: center; gap: 2.5rem; }
        .hiro-btn-hero-primary {
            position: relative; overflow: hidden; padding: 1.2rem 3.5rem;
            background: var(--accent-gold); color: var(--text-dark); border-radius: 100px;
            font-weight: 800; font-size: 1rem; text-decoration: none; letter-spacing: -0.02em;
            transition: var(--transition); display: inline-block; z-index: 1;
            box-shadow: 0 0 20px rgba(200, 169, 126, 0.15);
        }
        .hiro-btn-hero-primary::before {
            content: ''; position: absolute; top: 0; left: -100%; width: 50%; height: 100%;
            background: linear-gradient(90deg, transparent, rgba(255,255,255,0.5), transparent);
            transform: skewX(-20deg); transition: 0.6s cubic-bezier(0.16, 1, 0.3, 1); z-index: -1;
        }
        .hiro-btn-hero-primary:hover { 
            background: #DBC39E;
            box-shadow: 0 0 30px rgba(200, 169, 126, 0.4);
            color: #fff;
        }
        .hiro-btn-hero-primary:hover::before { left: 150%; }
        .hiro-btn-hero-secondary {
            position: relative; color: var(--text-light); font-weight: 600; font-size: 1rem; text-decoration: none;
            display: flex; align-items: center; gap: 0.5rem; opacity: 0.85; transition: var(--transition); padding: 0.5rem 0;
            text-shadow: 0 0 10px rgba(255, 255, 255, 0.2);
        }
        .hiro-btn-hero-secondary .hiro-arrow { transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1); }
        .hiro-btn-hero-secondary::after {
            content: ''; position: absolute; bottom: 0; left: 0; width: 0%; height: 2px;
            background: var(--accent-gold); transition: width 0.4s cubic-bezier(0.16, 1, 0.3, 1);
        }
        .hiro-btn-hero-secondary:hover { opacity: 1; color: var(--accent-gold); text-shadow: 0 0 15px rgba(200, 169, 126, 0.5); }
        .hiro-btn-hero-secondary:hover .hiro-arrow { transform: translateX(8px); }
        .hiro-btn-hero-secondary:hover::after { width: 100%; }
        .hiro-orb-wrapper { position: relative; width: 180px; height: 180px; display: flex; align-items: center; justify-content: center; pointer-events: auto; }
        .hiro-magnetic-orb {
            position: relative; width: 100px; height: 100px; border-radius: 50%; background: rgba(255, 255, 255, 0.02);
            backdrop-filter: blur(25px); border: 1px solid rgba(255, 255, 255, 0.15); box-shadow: inset 0 0 20px rgba(255,255,255,0.05), 0 20px 40px rgba(0,0,0,0.5);
            display: flex; align-items: center; justify-content: center; cursor: pointer; z-index: 2; transition: border-color 0.4s ease;
        }
        .hiro-magnetic-orb:hover { border-color: var(--accent-gold); box-shadow: 0 0 20px rgba(200, 169, 126, 0.2); }
        .hiro-orb-text { font-size: 0.75rem; color: var(--text-light); pointer-events: none; font-weight: 700; letter-spacing: 0.1em; }
        .hiro-rotating-text { position: absolute; top: 0; left: 0; width: 100%; height: 100%; animation: hiro-rotate 20s linear infinite; pointer-events: none; z-index: 1; }
        .hiro-rotating-text svg { width: 100%; height: 100%; }
        .hiro-rotating-text text { font-size: 11px; fill: rgba(255,255,255,0.5); letter-spacing: 0.25em; text-transform: uppercase; font-weight: 600; }
        @keyframes hiro-rotate { from { transform: rotate(0deg); } to { transform: rotate(360deg); } }
        .hiro-curtain-wrapper { position: fixed; inset: 0; z-index: 9999; pointer-events: none; display: flex; flex-direction: column; }
        .hiro-curtain-panel { width: 100%; height: 100%; background-color: #030303; transform-origin: top; }
        @media (max-height: 850px) and (min-width: 769px) {
            .hiro-hero-bounds { top: 120px; bottom: 20px; }
            .hiro-headline { font-size: clamp(2.8rem, 4vw, 4.5rem); margin-bottom: 1.2rem; }
            .hiro-description { margin-bottom: 2rem; font-size: 1.1rem; }
            .hiro-tech-badge { margin-bottom: 1.5rem; }
        }
        @media (max-width: 1200px) {
            .hiro-hero-content { padding-left: 1.5rem; } 
            .hiro-zone-wrapper { --container-gap: 2rem; }
        }
        @media (max-width: 1024px) {
            .hiro-orb-wrapper { width: 140px; height: 140px; }
            .hiro-magnetic-orb { width: 80px; height: 80px; }
            .hiro-headline { font-size: 3.5rem; }
        }
        @media (max-width: 768px) {
            .hiro-zone-wrapper { --container-gap: 1.25rem; }
            .hiro-navbar-wrapper { top: 1rem; width: calc(100% - var(--container-gap) * 2); display: block; }
            .hiro-navbar { padding: 0.5rem 1.25rem; border-radius: 20px; background: rgba(15, 15, 17, 0.4); backdrop-filter: blur(24px) saturate(180%); -webkit-backdrop-filter: blur(24px) saturate(180%); border: 1px solid rgba(255, 255, 255, 0.06); box-shadow: 0 30px 60px rgba(0,0,0,0.5), inset 0 1px 0 rgba(255,255,255,0.08); }
            .hiro-nav-slogan { display: block; font-size: 0.4rem; margin-top: -2px; }
            .hiro-brand-logo { height: 44px; transform: none; }
            .hiro-nav-right { gap: 0.5rem; }
            .hiro-nav-btn { padding: 0.7rem 1.2rem; font-size: 0.75rem; }
            .hiro-hamburger { width: 24px; height: 14px; margin-left: 0.5rem; }
            .hiro-hero-bounds { top: 75px; bottom: 0; height: calc(100svh - 75px); justify-content: center; align-items: center; }
            .hiro-hero-content { width: 100%; height: 100%; padding: 2rem 1.5rem; display: flex; flex-direction: column; align-items: center; justify-content: flex-start; padding-top: 12vh; text-align: center; }
            .hiro-mask { display: flex; justify-content: center; align-items: center; width: 100%; padding-bottom: 0.2rem; }
            .hiro-anim-text { width: 100%; text-align: center; }
            .hiro-headline .hiro-mask { display: inline; padding-bottom: 0; }
            .hiro-headline .hiro-anim-text { display: inline; }
            .hiro-tech-badge { font-size: 0.7rem; padding: 0.5rem 1.1rem; margin-bottom: 1.2rem; transform-origin: center center; }
            .hiro-headline { font-size: clamp(2.5rem, 9vw, 3.6rem); line-height: 1.1; margin-bottom: 1.2rem; width: 100%; text-align: center; }
            .hiro-description { font-size: 1.05rem; line-height: 1.5; margin-bottom: 1.5rem; padding: 0; max-width: 100%; text-align: center; }
            .hiro-hero-actions { flex-direction: column; align-items: center; gap: 1rem; width: 100%; max-width: 340px; }
            .hiro-btn-hero-primary { width: 100%; text-align: center; padding: 1.1rem 0; font-size: 1rem; }
            .hiro-btn-hero-secondary { width: 100%; justify-content: center; padding: 1.1rem 0; font-size: 1rem; border: 1px solid rgba(255,255,255,0.1); border-radius: 100px; background: rgba(255,255,255,0.02); }
            .hiro-btn-hero-secondary::after { display: none; }
            .hiro-orb-wrapper { display: none; }
            .hiro-curtain-wrapper { display: none !important; }
        }
        @media (max-width: 400px) {
            .hiro-brand-logo { height: 50px; }
            .hiro-nav-slogan { font-size: 0.35rem; }
            .hiro-nav-btn { padding: 0.6rem 0.9rem; font-size: 0.7rem; }
            .hiro-hero-content { padding: 1.5rem 1rem; }
            .hiro-tech-badge { font-size: 0.65rem; padding: 0.45rem 1rem; margin-bottom: 1rem; }
            .hiro-headline { font-size: clamp(2.1rem, 8.5vw, 3rem); line-height: 1.12; margin-bottom: 1rem; }
            .hiro-description { font-size: 0.9rem; line-height: 1.5; margin-bottom: 1.2rem; }
            .hiro-btn-hero-primary, .hiro-btn-hero-secondary { padding: 1rem 0; font-size: 0.9rem; }
        }
        @media (max-height: 700px) and (max-width: 768px) {
            .hiro-hero-bounds { height: auto; min-height: calc(100svh - 75px); padding: 1rem 0; }
            .hiro-tech-badge { margin-bottom: 0.8rem; font-size: 0.6rem; }
            .hiro-headline { font-size: clamp(1.8rem, 7vw, 2.2rem); margin-bottom: 0.8rem; }
            .hiro-description { margin-bottom: 1rem; font-size: 0.85rem; }
            .hiro-hero-actions { gap: 0.6rem; }
        }
        .versionbir-wrapper {
            position: relative;
            width: 100%;
            min-height: 100vh;
            overflow: hidden;
            background-color: #FAFAFA;
            --bg-main: #FAFAFA;
            --bg-secondary: #F0EBE1;
            --bg-card: #FFFFFF;
            --text-dark: #1A2B3C;
            --text-light: #FFFFFF;
            --text-muted: rgba(255, 255, 255, 0.8);
            --text-muted-dark: rgba(26, 43, 60, 0.6);
            --accent-gold: #C8A97E;
            --accent-warm: #D98C70;
            --shadow-soft: 0 10px 40px rgba(26, 43, 60, 0.05);
            --shadow-hover: 0 15px 50px rgba(200, 169, 126, 0.15);
            --radius-soft: 12px;
            --transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
            --container-width: 1400px;
            --container-gap: 4rem;
        }
        .versionbir-noise-overlay {
            position: absolute; top: 0; left: 0; width: 100%; height: 100%;
            pointer-events: none; z-index: 9999; opacity: 0;
            background-image: none;
            transform: translateZ(0); 
        }
        .versionbir-dummy-section { 
            height: 100vh; display: flex; flex-direction: column; 
            justify-content: center; align-items: center; 
            background: #FAFAFA; z-index: 10; position: relative;
        }
        .versionbir-qrst-premium-wrapper {
            background-color: #FAFAFA;
            width: 100%; position: relative;
        }
        .versionbir-qrst-scene {
            height: 100vh; width: 100%;
            display: flex; justify-content: center; align-items: center;
            position: relative; overflow: hidden;
            perspective: 1500px; 
            transform-style: preserve-3d;
        }
        .versionbir-qrst-container {
            width: 100%; max-width: var(--container-width); padding: 0 5vw;
            position: absolute; top: 50%; left: 50%;
            transform: translate(-50%, -50%);
            display: flex; flex-direction: column; align-items: center;
            will-change: transform, opacity;
            transform-style: preserve-3d;
        }
        .versionbir-qrst-part-1 { z-index: 2; text-align: center; }
        .versionbir-qrst-light-text {
            font-size: clamp(1.5rem, 2.5vw, 2.5rem);
            font-weight: 400; color: var(--text-muted-dark);
            margin-bottom: 1.5rem; letter-spacing: -0.02em;
        }
        .versionbir-qrst-light-text i { font-style: normal; color: var(--text-dark); font-weight: 600; }
        .versionbir-qrst-bold-text {
            font-size: clamp(2.5rem, 5vw, 6rem);
            font-weight: 700; color: var(--text-dark);
            letter-spacing: -0.04em; line-height: 1.05;
        }
        .versionbir-word { display: inline-block; white-space: pre; transform-style: preserve-3d; }
        .versionbir-char { display: inline-block; transform-style: preserve-3d; backface-visibility: hidden; }
        .versionbir-qrst-part-2 { z-index: 1; text-align: center; opacity: 0; pointer-events: none; }
        .versionbir-qrst-part-2-inner { transform-style: preserve-3d; will-change: transform; }
        .versionbir-qrst-subtitle {
            font-size: 0.85rem; font-weight: 700; color: var(--accent-gold);
            text-transform: uppercase; letter-spacing: 0.4em; margin-bottom: 2.5rem;
        }
        .versionbir-qrst-arch-title {
            font-size: clamp(2rem, 6.5vw, 8.5rem);
            font-weight: 800; color: var(--text-dark);
            letter-spacing: -0.05em; line-height: 0.9;
            position: relative;
            white-space: nowrap; 
        }
        .versionbir-qrst-premium-fill {
            display: inline-block;
            background: linear-gradient(
                110deg, 
                var(--text-dark) 20%, 
                var(--accent-gold) 40%, 
                #ffffff 50%,   
                var(--accent-gold) 60%, 
                var(--text-dark) 80%
            );
            background-size: 200% auto;
            color: transparent;
            -webkit-background-clip: text;
            background-clip: text;
            background-position: 200% center; 
            will-change: background-position;
        }
        .versionbir-qrst-glow {
            position: absolute; top: 50%; left: 50%;
            width: 60vw; height: 60vw;
            background: transparent;
            transform: translate(-50%, -50%);
            z-index: 0; opacity: 0; pointer-events: none;
        }
        .versionbir-scroll-indicator {
            font-size: 0.75rem; font-weight: 600; letter-spacing: 0.1em; text-transform: uppercase;
            color: var(--text-muted-dark); opacity: 0.7;
        }
        .versionbir-qrst-mobile-axis { display: none; }
        .versionbir-qrst-mobile-glow-2 { display: none; }
        @media (max-width: 768px) {
            .versionbir-wrapper {
                padding: 0;
                min-height: 78vh;
            }
            .versionbir-dummy-section {
                display: none;
            }
            .versionbir-qrst-scene {
                height: 78vh;
                min-height: 78vh;
                padding: 0;
                position: relative;
                overflow: hidden; 
            }
            .versionbir-qrst-mobile-axis {
                display: block;
                position: absolute;
                top: 20%; 
                bottom: 20%; 
                left: 50%;
                width: 1px;
                background: linear-gradient(to bottom, rgba(200,169,126,0), rgba(200,169,126,0.4), rgba(200,169,126,0));
                transform: translateX(-50%);
                transform-origin: top;
                z-index: 1;
            }
            .versionbir-qrst-container {
                position: absolute;
                left: 50%;
                transform: translateX(-50%);
                width: 100%;
                padding: 0 5vw;
                box-sizing: border-box;
                display: flex;
                flex-direction: column;
                align-items: center;
                text-align: center;
                z-index: 2;
            }
            .versionbir-qrst-part-1 { top: 8vh; opacity: 1; }
            .versionbir-qrst-part-2 { bottom: 2vh; opacity: 1; pointer-events: auto; }
            .versionbir-qrst-light-text { 
                font-size: clamp(1.35rem, 5vw, 1.7rem); 
                margin-bottom: 1.5rem; 
                text-wrap: balance;
                line-height: 1.4;
            }
            .versionbir-qrst-bold-text { 
                font-size: clamp(1.85rem, 6.5vw, 2.3rem); 
                line-height: 1.3; 
                text-wrap: balance;
                font-weight: 800;
            }
            .versionbir-qrst-subtitle {
                font-size: 0.8rem;
                margin-bottom: 1.2rem;
                letter-spacing: 0.3em;
            }
            .versionbir-qrst-arch-title {
                white-space: normal; 
                font-size: clamp(2.8rem, 12vw, 4rem); 
                line-height: 1.1;
                margin-top: 0;
                text-wrap: balance;
            }
            .versionbir-qrst-glow { 
                display: block; 
                width: 140vw; 
                height: 140vw; 
                top: 30%;
                left: 50%;
                transform: translate(-50%, -50%);
                background: transparent;
                opacity: 0;
            }
            .versionbir-qrst-mobile-glow-2 {
                display: block;
                position: absolute;
                width: 120vw;
                height: 120vw;
                bottom: -20%;
                left: 50%;
                transform: translateX(-50%);
                background: transparent;
                z-index: 0;
                pointer-events: none;
            }
        }
        .versioniki-wrapper {
            position: relative;
            width: 100%;
            min-height: 100vh;
            overflow: hidden;
            background-color: #0A0A0A;
            display: flex;
            flex-direction: column;
            align-items: center;
            padding: 80px 20px;
            --bg-main: #FAFAFA;
            --bg-secondary: #F0EBE1;
            --bg-card: #FFFFFF;
            --text-dark: #1A2B3C;
            --text-light: #FFFFFF;
            --text-muted: rgba(255, 255, 255, 0.8);
            --text-muted-dark: rgba(26, 43, 60, 0.6);
            --accent-gold: #C8A97E;
            --accent-warm: #D98C70;
            --shadow-soft: 0 10px 40px rgba(26, 43, 60, 0.05);
            --shadow-hover: 0 15px 50px rgba(200, 169, 126, 0.15);
            --radius-soft: 12px;
            --transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
            --container-width: 1400px;
            --container-gap: 4rem;
            --card-border: rgba(255, 255, 255, 0.8);
        }
        .versioniki-wellness-section {
          width: 100%;
          max-width: 1200px;
          position: relative;
          z-index: 1;
        }
        .versioniki-section-header { text-align: center; margin-bottom: 60px; }
        .versioniki-title {
          font-family: 'Plus Jakarta Sans', sans-serif; font-size: 3.5rem; font-weight: 700;
          letter-spacing: -1.5px; color: #FFFFFF; line-height: 1.15;
          margin-bottom: 16px;
        }
        .versioniki-label {
          font-size: 0.95rem; font-weight: 500; color: rgba(255, 255, 255, 0.5);
          letter-spacing: 0.02em; text-transform: none; display: block;
        }
        .versioniki-icons-container {
          display: flex;
          justify-content: center;
          align-items: flex-start;
          gap: 80px;
          width: 100%;
          max-width: 1000px;
          margin: 0 auto 60px auto;
        }
        .versioniki-icon-item {
          display: flex;
          flex-direction: column;
          align-items: center;
          text-align: center;
          flex: 1;
          max-width: 280px;
        }
        .versioniki-icon-wrapper {
          width: 140px;
          height: 140px;
          display: flex;
          align-items: center;
          justify-content: center;
          margin-bottom: 28px;
        }
        .versioniki-icon-img {
          width: 100%;
          height: 100%;
          object-fit: contain;
        }
        .versioniki-icon-text {
          font-size: 1.05rem;
          color: rgba(255, 255, 255, 0.85);
          line-height: 1.5;
          font-weight: 600;
        }
        .versioniki-card-wrapper {
          position: absolute; width: 380px; cursor: grab;
          will-change: transform;
        }
        .versioniki-card-wrapper:active { cursor: grabbing; }
        @keyframes versioniki-floatInSpace {
          0%, 100% { transform: translateY(0px); }
          50% { transform: translateY(-16px); }
        }
        .versioniki-float-container {
          width: 100%;
          height: 100%;
          will-change: transform;
          animation: versioniki-floatInSpace 5s ease-in-out infinite;
        }
        #versioniki-card-left .versioniki-float-container { animation-duration: 4.8s; animation-delay: 0s; }
        #versioniki-card-center .versioniki-float-container { animation-duration: 5.5s; animation-delay: -2s; }
        #versioniki-card-right .versioniki-float-container { animation-duration: 4.5s; animation-delay: -1s; }
        .versioniki-card {
          position: relative; 
          background: rgba(255, 255, 255, 0.85);
          backdrop-filter: blur(40px) saturate(150%);
          -webkit-backdrop-filter: blur(40px) saturate(150%);
          border-radius: var(--radius-soft); padding: 24px;
          box-shadow: var(--shadow-soft), inset 0 0 0 1px var(--card-border), inset 0 2px 4px rgba(255,255,255,0.8);
          transform-style: preserve-3d; display: flex; flex-direction: column;
          gap: 32px; overflow: hidden;
          transition: box-shadow var(--transition), transform var(--transition);
        }
        .versioniki-card:hover { 
            box-shadow: var(--shadow-hover), inset 0 0 0 1px #fff; 
        }
        .versioniki-card::before {
          content: ""; position: absolute; top: 0; left: 0; right: 0; bottom: 0;
          background: radial-gradient(
            circle at var(--x, 50%) var(--y, 50%), 
            rgba(255, 255, 255, 0.9) 0%, 
            rgba(255, 255, 255, 0) 60%
          );
          opacity: 0; mix-blend-mode: overlay; transition: opacity 0.4s ease;
          pointer-events: none; z-index: 5;
        }
        .versioniki-card:hover::before { opacity: 1; }
        .versioniki-card::after {
          content: ""; position: absolute; top: 0; left: 0; width: 100%; height: 100%;
          background-image: url('data:image/svg+xml;utf8,%3Csvg viewBox="0 0 200 200" xmlns="http://www.w3.org/2000/svg"%3E%3Cfilter id="noiseFilter"%3E%3CfeTurbulence type="fractalNoise" baseFrequency="0.8" numOctaves="3" stitchTiles="stitch"/%3E%3C/filter%3E%3Crect width="100%25" height="100%25" filter="url(%23noiseFilter)"/%3E%3C/svg%3E');
          opacity: 0.03; pointer-events: none; z-index: 1;
        }
        .versioniki-card-inner { position: relative; z-index: 10; transform-style: preserve-3d; display: flex; flex-direction: column; height: 100%; }
        .versioniki-card-visuals {
          position: relative; width: 100%; height: 240px;
          transform: translateZ(50px); border-radius: 8px; overflow: hidden;
          box-shadow: 0 12px 32px rgba(26, 43, 60, 0.1); margin-bottom: 32px;
        }
        .versioniki-placeholder-image-large {
          width: 100%; height: 100%; background-size: cover; background-position: center;
          transition: transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
        }
        .versioniki-card:hover .versioniki-placeholder-image-large { transform: scale(1.08); }
        .versioniki-kaslar-image { background-image: url('https://images.unsplash.com/photo-1544367567-0f2fcb009e0b?q=80&w=800&auto=format&fit=crop'); }
        .versioniki-omurga-image { background-image: url('https://images.unsplash.com/photo-1512428559087-560fa5ceab42?q=80&w=800&auto=format&fit=crop'); }
        .versioniki-sinir-image { background-image: url('https://images.unsplash.com/photo-1559757175-5700dde675bc?q=80&w=800&auto=format&fit=crop'); }
        .versioniki-badge {
          display: none;
        }
        .versioniki-dot {
          width: 6px; height: 6px; border-radius: 50%;
        }
        @keyframes pulse-gold { to { box-shadow: 0 0 0 8px rgba(200, 169, 126, 0); } }
        @keyframes pulse-dark { to { box-shadow: 0 0 0 8px rgba(26, 43, 60, 0); } }
        @keyframes pulse-warm { to { box-shadow: 0 0 0 8px rgba(217, 140, 112, 0); } }
        .versioniki-card-content { transform: translateZ(40px); padding: 0 12px; display: flex; flex-direction: column; gap: 16px; }
        .versioniki-card-content {
          text-align: center;
          padding: 16px 0;
        }
        .versioniki-card-desc { 
            font-size: 1.05rem; color: var(--text-dark); line-height: 1.5; font-weight: 600;
            text-align: center;
        }
        .versioniki-footer-line { width: 2px; height: 36px; background: linear-gradient(to bottom, var(--accent-gold), transparent); }
        .versioniki-footer-text h4 { font-size: 0.95rem; font-weight: 700; margin-bottom: 4px; color: #FFFFFF; }
        .versioniki-footer-text p { font-size: 0.85rem; color: rgba(255, 255, 255, 0.5); font-weight: 500; }
        .versioniki-bottom-content {
          margin-top: 60px;
          text-align: center;
          display: flex;
          flex-direction: column;
          align-items: center;
          gap: 16px;
        }
        .versioniki-bottom-text {
          font-size: 1.05rem;
          color: rgba(255, 255, 255, 0.7);
          line-height: 1.6;
          font-weight: 500;
          max-width: 700px;
        }
        .versioniki-cta-btn {
          margin-top: 24px;
          padding: 16px 40px;
          background: var(--accent-gold);
          color: #0A0A0A;
          border: none;
          border-radius: 100px;
          font-size: 1rem;
          font-weight: 800;
          text-transform: none;
          cursor: pointer;
          transition: var(--transition);
          box-shadow: 0 0 20px rgba(200, 169, 126, 0.15);
        }
        .versioniki-cta-btn:hover {
          background: #DBC39E;
          transform: scale(1.05);
          box-shadow: 0 15px 50px rgba(200, 169, 126, 0.25);
        }
        @media (max-width: 1024px) {
          .versioniki-wrapper { padding: 30px 20px; min-height: unset; }
          .versioniki-section-header { margin-bottom: 60px; }
          .versioniki-title { font-size: 2.8rem; line-height: 1.2; margin-bottom: 20px; text-align: center; }
          .versioniki-label { font-size: 1rem; text-align: center; }
          .versioniki-icons-container { 
            flex-direction: column;
            gap: 16px;
            margin-bottom: 40px;
            padding: 0 20px;
            align-items: stretch;
          }
          .versioniki-icon-item {
            max-width: none;
            display: flex;
            flex-direction: row;
            align-items: center;
            text-align: left;
            gap: 20px;
            padding: 20px 24px;
            background: rgba(255, 255, 255, 0.04);
            border: 1px solid rgba(255, 255, 255, 0.08);
            border-radius: 16px;
          }
          .versioniki-icon-wrapper {
            width: 68px;
            height: 68px;
            margin-bottom: 0;
            flex-shrink: 0;
          }
          .versioniki-icon-img {
            width: 100%;
            height: 100%;
          }
          .versioniki-icon-text {
            font-size: 0.95rem;
            line-height: 1.45;
            text-align: left;
            max-width: none;
            font-weight: 600;
          }
          .versioniki-icon-text br {
            display: none;
          }
          .versioniki-bottom-content { margin-top: 60px; gap: 20px; padding: 0 30px; }
          .versioniki-bottom-text { font-size: 1.05rem; line-height: 1.65; text-align: center; max-width: 100%; }
          .versioniki-cta-btn { padding: 16px 40px; font-size: 1.05rem; width: 100%; max-width: 360px; margin-top: 15px; }
        }
        .-versiyonuc-wrapper {
            position: relative;
            width: 100%;
            overflow: hidden;
            --bg-main: #FAFAFA;
            --bg-secondary: #F0EBE1;
            --bg-card: #FFFFFF;
            --text-dark: #1A2B3C;
            --text-light: #FFFFFF;
            --text-muted: rgba(255, 255, 255, 0.8);
            --accent-gold: #C8A97E;
            --accent-warm: #D98C70;
            --shadow-soft: 0 10px 40px rgba(26, 43, 60, 0.05);
            --shadow-hover: 0 15px 50px rgba(200, 169, 126, 0.15);
            --radius-soft: 12px;
            --transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
            --container-width: 1400px;
            --container-gap: 4rem;
        }
        .-versiyonuc-content-container {
            min-height: 100vh;
            display: flex;
            flex-direction: column;
            justify-content: center;
            align-items: center;
            background-color: var(--bg-main);
            padding: 120px 60px;
            text-align: center;
        }
        .-versiyonuc-header {
            margin-bottom: 80px;
            max-width: 900px;
        }
        .-versiyonuc-main-title {
            font-size: 48px;
            font-weight: 700;
            color: var(--text-dark);
            letter-spacing: 2px;
            text-transform: uppercase;
            margin-bottom: 40px;
            line-height: 1.2;
        }
        .-versiyonuc-quote {
            font-size: 24px;
            font-weight: 600;
            color: var(--text-dark);
            line-height: 1.4;
        }
        .-versiyonuc-list {
            margin-bottom: 80px;
            display: flex;
            flex-direction: column;
            gap: 12px;
            max-width: 800px;
        }
        .-versiyonuc-item {
            font-size: 20px;
            font-weight: 400;
            color: var(--text-dark);
            line-height: 1.5;
        }
        .-versiyonuc-conclusion {
            display: flex;
            flex-direction: column;
            gap: 16px;
            max-width: 850px;
        }
        .-versiyonuc-highlight {
            font-size: 32px;
            font-weight: 700;
            line-height: 1.5;
            background: linear-gradient(90deg, var(--text-dark) 20%, var(--accent-gold) 80%);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            position: relative;
        }
        @media (max-width: 1024px) {
            .-versiyonuc-content-container {
                padding: 80px 30px;
            }
            .-versiyonuc-header {
                margin-bottom: 70px;
            }
            .-versiyonuc-label {
                font-size: 0.85rem;
                margin-bottom: 28px;
                letter-spacing: 3px;
            }
            .-versiyonuc-title {
                font-size: 3rem;
                line-height: 1.2;
                letter-spacing: -1.5px;
            }
            .-versiyonuc-list {
                margin-bottom: 70px;
                gap: 32px;
            }
            .-versiyonuc-item {
                font-size: 1.5rem;
                line-height: 1.5;
                font-weight: 500;
            }
            .-versiyonuc-conclusion {
                gap: 24px;
            }
            .-versiyonuc-text {
                font-size: 1.35rem;
                line-height: 1.7;
                font-weight: 500;
            }
        }
        @media (max-width: 768px) {
            .versioniki-wrapper {
                padding-bottom: 30px;
            }
            .-versiyonuc-wrapper {
                min-height: unset;
            }
            .-versiyonuc-content-container {
                padding: 30px 25px 30px;
            }
            .-versiyonuc-header {
                margin-bottom: 50px;
            }
            .-versiyonuc-main-title {
                font-size: 36px;
                margin-bottom: 28px;
            }
            .-versiyonuc-quote {
                font-size: 20px;
            }
            .-versiyonuc-list {
                margin-bottom: 60px;
                gap: 10px;
            }
            .-versiyonuc-item {
                font-size: 18px;
                line-height: 1.5;
            }
            .-versiyonuc-conclusion {
                gap: 14px;
            }
            .-versiyonuc-highlight {
                font-size: 26px;
                line-height: 1.5;
            }
        }
        @media (max-width: 400px) {
            .-versiyonuc-content-container {
                padding: 60px 25px;
            }
            .-versiyonuc-main-title {
                font-size: 28px;
                margin-bottom: 24px;
            }
            .-versiyonuc-quote {
                font-size: 18px;
            }
            .-versiyonuc-list {
                gap: 18px;
            }
            .-versiyonuc-item {
                font-size: 16px;
                line-height: 1.5;
            }
            .-versiyonuc-highlight {
                font-size: 22px;
                line-height: 1.5;
            }
        }
        .-ucbir-wrapper {
            position: relative;
            width: 100%;
            min-height: 100vh;
            overflow: hidden;
            --bg-main: #FAFAFA;
            --bg-secondary: #F0EBE1;
            --bg-card: #FFFFFF;
            --text-dark: #1A2B3C;
            --text-light: #FFFFFF;
            --text-muted: rgba(255, 255, 255, 0.8);
            --text-muted-dark: rgba(26, 43, 60, 0.6);
            --accent-gold: #C8A97E;
            --accent-warm: #D98C70;
            --shadow-soft: 0 10px 40px rgba(26, 43, 60, 0.05);
            --shadow-hover: 0 15px 50px rgba(200, 169, 126, 0.15);
            --radius-soft: 12px;
            --transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
            --container-width: 1400px;
            --container-gap: 4rem;
        }
        .ucbir-section-wrapper {
            background-color: var(--bg-main);
            position: relative;
            width: 100%;
            min-height: 100vh;
            display: flex;
            flex-direction: column;
            justify-content: center;
            align-items: center;
            padding: 100px 3vw;
        }
        .ucbir-header {
            text-align: center;
            margin-bottom: 70px;
            opacity: 1;
        }
        .ucbir-title {
            font-size: 4.2rem;
            font-weight: 700;
            line-height: 1.15;
            letter-spacing: -2px;
            color: var(--text-dark);
            margin-bottom: 20px;
        }
        .ucbir-subtitle {
            display: block;
            font-size: 1rem;
            text-transform: none;
            letter-spacing: 0.02em;
            color: var(--text-muted-dark);
            font-weight: 500;
        }
        .ucbir-title i {
            font-style: italic;
            font-weight: 300;
            color: var(--accent-gold);
        }
        .ucbir-slider-container {
            position: relative;
            width: 100%;
            max-width: 1000px;
            display: flex;
            align-items: center;
            gap: 40px;
            margin: 0 auto;
        }
        .ucbir-slider-wrapper {
            flex: 1;
            overflow: hidden;
            border-radius: 16px;
        }
        .ucbir-slider-track {
            display: flex;
            transition: transform 0.5s cubic-bezier(0.16, 1, 0.3, 1);
        }
        .ucbir-slide {
            min-width: 100%;
            position: relative;
            aspect-ratio: 16/10;
            border-radius: 16px;
            overflow: hidden;
        }
        .ucbir-slide-img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            display: block;
            transform: translateZ(0);
            backface-visibility: hidden;
        }
        .ucbir-slide-title {
            position: absolute;
            bottom: 0;
            left: 0;
            right: 0;
            padding: 32px;
            background: linear-gradient(to top, rgba(0,0,0,0.85) 0%, transparent 100%);
            color: var(--text-light);
            font-size: 2rem;
            font-weight: 700;
            text-align: center;
        }
        .ucbir-slider-arrow {
            width: 56px;
            height: 56px;
            border-radius: 50%;
            background: var(--accent-gold);
            border: none;
            cursor: pointer;
            display: flex;
            align-items: center;
            justify-content: center;
            transition: var(--transition);
            flex-shrink: 0;
        }
        .ucbir-slider-arrow svg {
            width: 24px;
            height: 24px;
            color: var(--text-dark);
        }
        .ucbir-slider-arrow:hover {
            background: #DBC39E;
            transform: scale(1.1);
        }
        .ucbir-slider-dots {
            display: flex;
            justify-content: center;
            gap: 12px;
            margin-top: 40px;
        }
        .ucbir-dot {
            width: 12px;
            height: 12px;
            border-radius: 50%;
            background: rgba(26, 43, 60, 0.2);
            border: none;
            cursor: pointer;
            transition: var(--transition);
        }
        .ucbir-dot-active,
        .ucbir-dot:hover {
            background: var(--accent-gold);
            transform: scale(1.2);
        }
        .ucbir-card-wrapper {
            position: relative;
            width: 100%;
            height: 560px;
            visibility: hidden;
            cursor: pointer;
        }
        .ucbir-card-inner {
            position: relative;
            width: 100%;
            height: 100%;
            transform-style: preserve-3d;
            will-change: transform;
        }
        .ucbir-card-front,
        .ucbir-card-back {
            position: absolute;
            width: 100%;
            height: 100%;
            backface-visibility: hidden;
            border-radius: var(--radius-soft);
            overflow: hidden;
        }
        .ucbir-card-back {
            background-color: var(--text-dark);
            transform: rotateY(180deg);
            display: flex;
            align-items: center;
            justify-content: center;
            border: 1px solid rgba(255, 255, 255, 0.05);
            box-shadow: var(--shadow-soft);
        }
        .ucbir-card-back-brand {
            font-size: 2.5rem;
            font-style: italic;
            font-weight: 300;
            color: var(--accent-gold);
            letter-spacing: 0.05em;
        }
        .ucbir-card-front {
            display: flex;
            flex-direction: column;
            justify-content: flex-end;
            padding: 45px 35px;
            box-shadow: var(--shadow-soft);
            border: 1px solid rgba(255, 255, 255, 0.1);
            transition: var(--transition);
        }
        .ucbir-card-bg {
            position: absolute;
            top: 0; left: 0; width: 100%; height: 100%;
            background-size: cover;
            background-position: center;
            z-index: 1;
            transition: transform 1.2s cubic-bezier(0.19, 1, 0.22, 1);
        }
        .ucbir-card-overlay {
            position: absolute;
            top: 0; left: 0; width: 100%; height: 100%;
            background: linear-gradient(to top, rgba(26, 43, 60, 0.95) 0%, rgba(26, 43, 60, 0.4) 50%, rgba(26, 43, 60, 0.1) 100%);
            z-index: 2;
        }
        .ucbir-card-number {
            position: absolute;
            top: 30px;
            right: 30px;
            font-size: 2.2rem;
            font-style: italic;
            font-weight: 300;
            color: var(--text-light);
            opacity: 0.3;
            z-index: 3;
            line-height: 1;
        }
        .ucbir-card-content {
            position: relative;
            z-index: 3;
        }
        .ucbir-category-tag {
            font-size: 0.65rem;
            text-transform: uppercase;
            letter-spacing: 0.25em;
            color: var(--accent-gold);
            margin-bottom: 16px;
            font-weight: 600;
            display: block;
        }
        .ucbir-card-front h3 {
            font-size: 2rem;
            font-weight: 500;
            line-height: 1.15;
            margin-bottom: 20px;
            color: var(--text-light);
        }
        .ucbir-divider {
            width: 40px;
            height: 1px;
            background-color: var(--accent-gold);
            margin-bottom: 20px;
            opacity: 0.6;
            transition: var(--transition);
        }
        .ucbir-card-front p {
            font-size: 1rem;
            line-height: 1.6;
            font-weight: 300;
            color: var(--text-muted);
        }
        .ucbir-card-wrapper:hover .ucbir-card-bg { transform: scale(1.08); }
        .ucbir-card-wrapper:hover .ucbir-card-front { box-shadow: var(--shadow-hover); }
        .ucbir-card-wrapper:hover .ucbir-divider { width: 60px; background-color: var(--accent-warm); }
        @media (max-width: 1200px) {
            .ucbir-card-wrapper { height: 500px; }
            .ucbir-card-front { padding: 35px 25px; }
            .ucbir-card-front h3 { font-size: 1.6rem; }
        }
        @media (max-width: 992px) {
            .ucbir-slider-container { gap: 20px; }
            .ucbir-slider-arrow { width: 48px; height: 48px; }
            .ucbir-slider-arrow svg { width: 20px; height: 20px; }
            .ucbir-slide-title { font-size: 1.8rem; padding: 28px; }
        }
        @media (max-width: 768px) {
            .-ucbir-wrapper {
                min-height: unset;
            }
            .ucbir-section-wrapper { 
                padding: 30px 20px 30px; 
                min-height: unset;
                display: flex;
                flex-direction: column;
                justify-content: center;
            }
            .ucbir-header {
                margin-bottom: 50px;
                text-align: center;
            }
            .ucbir-title { 
                font-size: 2.4rem; 
                line-height: 1.2;
                margin-bottom: 16px;
            }
            .ucbir-subtitle { 
                font-size: 0.95rem; 
                line-height: 1.5;
            }
            .ucbir-slider-container { 
                position: relative;
                display: block;
                max-width: 100%;
            }
            .ucbir-slider-wrapper {
                width: 100%;
                max-width: 100%;
                margin-bottom: 20px;
            }
            .ucbir-slide {
                aspect-ratio: 16/11;
            }
            .ucbir-slide-title { 
                font-size: 1.6rem; 
                padding: 28px;
                text-align: center;
            }
            .ucbir-arrow-prev,
            .ucbir-arrow-next {
                position: absolute;
                top: calc(50% - 30px);
                transform: translateY(-50%);
                z-index: 10;
            }
            .ucbir-arrow-prev {
                left: 10px;
            }
            .ucbir-arrow-next {
                right: 10px;
            }
            .ucbir-slider-arrow {
                width: 44px;
                height: 44px;
                background: rgba(200, 169, 126, 0.9);
            }
            .ucbir-slider-arrow svg {
                width: 20px;
                height: 20px;
            }
            .ucbir-slider-dots {
                display: flex;
                justify-content: center;
                margin-top: 16px;
            }
        }
        @media (max-width: 480px) {
            .ucbir-section-wrapper { padding: 30px 15px; }
            .ucbir-title { 
                font-size: 2rem; 
                line-height: 1.25;
            }
            .ucbir-subtitle {
                font-size: 0.9rem;
            }
            .ucbir-slide-title { 
                font-size: 1.4rem; 
                padding: 24px 20px; 
            }
            .ucbir-arrow-prev {
                left: 5px;
            }
            .ucbir-arrow-next {
                right: 5px;
            }
            .ucbir-slider-arrow {
                width: 40px;
                height: 40px;
            }
        }
        .dorduncu-wrapper {
            position: relative;
            width: 100%;
            min-height: 100vh;
            --bg-main: #0A0A0A;
            --bg-secondary: #141414;
            --bg-card: #141414;
            --text-dark: #FFFFFF;
            --text-light: #FFFFFF;
            --text-gray: rgba(255, 255, 255, 0.55);
            --accent: #C8A97E;
            --accent-warm: #D98C70;
            --shadow-soft: 0 10px 40px rgba(0, 0, 0, 0.2);
            --shadow-hover: 0 15px 50px rgba(200, 169, 126, 0.2);
            --radius-soft: 12px;
            --transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
            --font-main: 'Plus Jakarta Sans', sans-serif;
        }
        .dorduncu-grid-section {
            padding: 0;
            background: var(--bg-main);
            position: relative;
            z-index: 30;
            overflow: hidden;
        }
        .dorduncu-grid-header { text-align: center; padding: clamp(8rem, 15vh, 12rem) 5vw clamp(4rem, 8vh, 6rem); background: #FAFAFA; }
        .dorduncu-grid-header h2 { font-size: clamp(2rem, 3.5vw, 3.2rem); font-weight: 500; letter-spacing: -0.04em; color: rgba(26, 43, 60, 0.55); line-height: 1.35; }
        .dorduncu-grid-header h2 .dorduncu-mask-wrap { display: inline; overflow: visible; padding: 0; margin: 0; }
        .dorduncu-grid-header h2 .dorduncu-mask-text { display: inline; transform: none; }
        .dorduncu-grid-header h2 span { color: #1A2B3C; font-weight: 800; }
        .dorduncu-carousel {
            position: relative;
            width: 100%;
            display: flex;
            flex-direction: column;
            align-items: center;
            padding: clamp(4rem, 8vh, 6rem) 0 clamp(6rem, 10vh, 8rem);
        }
        .dorduncu-carousel-stage {
            position: relative;
            width: 100%;
            height: 560px;
            display: flex;
            align-items: center;
            justify-content: center;
            perspective: 1200px;
        }
        .dorduncu-carousel-card {
            position: absolute;
            width: clamp(300px, 38vw, 480px);
            display: flex;
            flex-direction: column;
            align-items: center;
            cursor: pointer;
            will-change: transform, opacity;
        }
        .dorduncu-card-visual {
            width: 100%;
            height: clamp(220px, 28vw, 340px);
            display: flex;
            align-items: center;
            justify-content: center;
            position: relative;
        }
        .dorduncu-card-visual img {
            max-width: 100%;
            max-height: 100%;
            object-fit: contain;
            filter: drop-shadow(0 40px 50px rgba(0, 0, 0, 0.3));
            transition: filter 0.6s ease;
        }
        .dorduncu-carousel-card.dorduncu-active .dorduncu-card-visual img {
            filter: drop-shadow(0 50px 70px rgba(0, 0, 0, 0.4));
        }
        .dorduncu-card-meta {
            text-align: center;
            margin-top: clamp(1.5rem, 3vh, 2.5rem);
            opacity: 0;
            transform: translateY(10px);
            transition: opacity 0.5s ease 0.15s, transform 0.5s ease 0.15s;
        }
        .dorduncu-carousel-card.dorduncu-active .dorduncu-card-meta {
            opacity: 1;
            transform: translateY(0);
        }
        .dorduncu-card-label {
            display: block;
            font-size: 0.7rem;
            font-weight: 600;
            letter-spacing: 0.15em;
            color: var(--accent);
            margin-bottom: 0.6rem;
        }
        .dorduncu-card-meta h4 {
            font-size: clamp(1.4rem, 2vw, 1.8rem);
            font-weight: 700;
            color: var(--text-dark);
            letter-spacing: -0.03em;
            line-height: 1.2;
            margin-bottom: 0.3rem;
        }
        .dorduncu-card-meta p {
            font-size: clamp(0.9rem, 1.1vw, 1.05rem);
            color: var(--text-gray);
            font-weight: 500;
        }
        .dorduncu-card-badge {
            display: inline-block;
            background: var(--accent);
            color: #0A0A0A;
            font-size: 0.65rem;
            font-weight: 700;
            padding: 4px 12px;
            border-radius: 20px;
            letter-spacing: 0.08em;
            text-transform: uppercase;
            margin-bottom: 0.8rem;
        }
        .dorduncu-carousel-nav {
            display: flex;
            align-items: center;
            gap: clamp(1.5rem, 3vw, 2.5rem);
            margin-top: clamp(2rem, 4vh, 3rem);
        }
        .dorduncu-nav-arrow {
            width: 52px;
            height: 52px;
            border-radius: 50%;
            border: 1px solid rgba(255, 255, 255, 0.15);
            background: transparent;
            cursor: pointer;
            display: flex;
            align-items: center;
            justify-content: center;
            color: var(--text-dark);
            transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
        }
        .dorduncu-nav-arrow:hover {
            background: var(--accent);
            color: #0A0A0A;
            border-color: var(--accent);
            transform: scale(1.08);
        }
        .dorduncu-nav-arrow svg {
            width: 20px;
            height: 20px;
        }
        .dorduncu-nav-indicator {
            display: flex;
            align-items: center;
            gap: 12px;
            font-size: 0.85rem;
            font-weight: 600;
            letter-spacing: 0.05em;
            color: var(--text-dark);
        }
        .dorduncu-nav-current {
            font-size: 1.1rem;
            font-weight: 700;
            color: var(--accent);
            min-width: 1.5em;
            text-align: right;
        }
        .dorduncu-nav-line {
            width: 40px;
            height: 1px;
            background: rgba(255, 255, 255, 0.15);
            position: relative;
            overflow: hidden;
        }
        .dorduncu-nav-line::after {
            content: '';
            position: absolute;
            top: 0; left: 0;
            height: 100%;
            width: var(--progress, 25%);
            background: var(--accent);
            transition: width 0.5s cubic-bezier(0.16, 1, 0.3, 1);
        }
        .dorduncu-nav-total {
            min-width: 1.5em;
            color: rgba(255, 255, 255, 0.3);
        }
        @media (max-width: 1024px) {
            .dorduncu-grid-header { padding: clamp(5rem, 8vh, 7rem) 5vw clamp(3rem, 5vh, 4rem); }
            .dorduncu-carousel-stage { height: 480px; }
        }
        @media (max-width: 600px) {
            .dorduncu-carousel-stage { height: 420px; }
            .dorduncu-carousel-card { width: 260px; }
            .dorduncu-card-visual { height: 200px; }
            .dorduncu-nav-arrow { width: 44px; height: 44px; }
        }
.-besinci-wrapper {
    position: relative; width: 100%; min-height: 100vh; overflow: hidden;
    --bg-main: #FFFFFF;
    --bg-secondary: #F5F5F5;
    --bg-card: #FFFFFF;
    --text-dark: #1A2B3C;
    --text-light: #FFFFFF;
    --text-muted: rgba(26, 43, 60, 0.6);
    --accent-gold: #C8A97E;     
    --accent-warm: #D98C70;     
    --shadow-soft: 0 10px 40px rgba(26, 43, 60, 0.05);     
    --shadow-hover: 0 15px 50px rgba(200, 169, 126, 0.15); 
    --radius-soft: 12px;        
    --transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1); 
    --container-width: 1400px;
    --container-gap: 4rem;
}
.besinci-wrapper {
    position: relative;
    width: 100%;
    min-height: 100vh;
    display: block;
    background-color: var(--bg-main);
    color: var(--text-dark);
}
.besinci-grain-overlay {
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    pointer-events: none;
    z-index: 9999;
    opacity: 0.02;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noiseFilter'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.8' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noiseFilter)'/%3E%3C/svg%3E");
    mix-blend-mode: multiply; 
}
.besinci-ambient-light {
    position: absolute;
    top: 0; left: 50%;
    width: 80vw; height: 80vw;
    max-width: 1000px; max-height: 1000px;
    background: radial-gradient(circle, rgba(26, 43, 60, 0.08) 0%, transparent 70%); 
    transform: translate(-50%, -30%);
    border-radius: 50%;
    filter: blur(80px);
    pointer-events: none;
    z-index: 0;
    will-change: transform;
}
.besinci-experience-section {
    position: relative;
    min-height: 100vh;
    padding: var(--container-gap) clamp(1.5rem, 5vw, 4rem);
    display: flex;
    flex-direction: column;
    align-items: center;
    overflow: hidden;
    z-index: 1;
}
.besinci-container {
    width: 100%;
    max-width: var(--container-width);
    margin: 0 auto;
    position: relative;
    z-index: 2;
}
.besinci-content-header {
    text-align: center;
    margin-bottom: clamp(2rem, 5vw, 4rem);
}
.besinci-label {
    font-size: clamp(0.75rem, 1.2vw, 0.875rem);
    text-transform: uppercase;
    letter-spacing: 0.2em;
    color: var(--accent-gold);
    margin-bottom: 2rem;
    display: inline-block;
    font-weight: 600;
}
.besinci-data-highlight {
    font-size: clamp(8rem, 20vw, 22rem);
    font-weight: 300;
    line-height: 0.85;
    letter-spacing: -0.04em;
    margin-bottom: 2rem;
    color: var(--text-dark);
    will-change: transform, opacity, filter; 
}
.besinci-description {
    font-size: clamp(1.25rem, 3vw, 2.25rem);
    font-weight: 400;
    max-width: 800px;
    margin: 0 auto 1.5rem;
    color: var(--text-dark);
    letter-spacing: -0.01em;
    line-height: 1.5;
}
.besinci-footnote {
    font-size: clamp(0.7rem, 1vw, 0.875rem);
    color: var(--text-muted);
    font-weight: 400;
    font-style: italic;
}
.besinci-video-grid-wrapper {
    margin-top: var(--container-gap);
    width: 100%;
    position: relative;
}
.besinci-swipe-hint {
    display: none;
    align-items: center;
    justify-content: flex-end;
    gap: 0.5rem;
    margin-bottom: 1rem;
    color: var(--text-muted);
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 0.05em;
    text-transform: uppercase;
}
.besinci-swipe-hint svg {
    width: 16px; height: 16px;
    animation: besinci-swipe-bounce 1.5s infinite ease-in-out;
}
@keyframes besinci-swipe-bounce {
    0%, 100% { transform: translateX(0); }
    50% { transform: translateX(4px); }
}
.besinci-video-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: clamp(1rem, 2vw, 2rem);
    width: 100%;
}
@media (max-width: 900px) {
    .besinci-swipe-hint { display: flex; }
    .besinci-video-grid {
        display: flex;
        overflow-x: auto;
        scroll-snap-type: x mandatory;
        -webkit-overflow-scrolling: touch;
        scrollbar-width: none;
        padding: 0 1rem 1.5rem;
        gap: 1rem;
    }
    .besinci-video-grid::-webkit-scrollbar { display: none; }
    .besinci-video-card {
        min-width: 75vw;
        max-width: 75vw;
        scroll-snap-align: center;
        aspect-ratio: 9 / 12;
    }
}
@media (max-width: 768px) {
    .-besinci-wrapper {
        min-height: unset;
    }
    .besinci-experience-section {
        min-height: unset;
        padding: 2.5rem 1rem;
    }
}
@media (max-width: 480px) {
    .besinci-video-card {
        min-width: 80vw;
        max-width: 80vw;
        aspect-ratio: 9 / 13;
    }
    .besinci-play-btn {
        width: 52px;
        height: 52px;
    }
}
.besinci-video-card {
    position: relative;
    aspect-ratio: 3 / 4;
    border-radius: var(--radius-soft);
    overflow: hidden;
    background: #1A2B3C;
    cursor: pointer;
    border: 1px solid var(--bg-secondary);
    box-shadow: var(--shadow-soft);
    transform: translateZ(0); 
    transition: var(--transition);
}
.besinci-video-card:hover {
    box-shadow: var(--shadow-hover);
    border-color: var(--accent-gold);
}
.besinci-video-thumb {
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    object-fit: cover;
    opacity: 1; 
    transition: transform 1.2s cubic-bezier(0.16, 1, 0.3, 1), opacity 1.2s cubic-bezier(0.16, 1, 0.3, 1);
    will-change: transform;
}
.besinci-video-card:hover .besinci-video-thumb {
    transform: scale(1.05);
    opacity: 1;
}
.besinci-video-overlay {
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    background: linear-gradient(to top, rgba(26,43,60,0.8) 0%, rgba(26,43,60,0) 60%);
    transition: opacity 0.6s ease;
}
.besinci-video-card:hover .besinci-video-overlay {
    opacity: 0.9;
}
.besinci-video-ui {
    position: absolute;
    bottom: 0; left: 0; width: 100%;
    padding: 1.5rem;
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    z-index: 2;
}
.besinci-play-btn {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(255, 255, 255, 0.4);
    transition: var(--transition);
}
.besinci-play-btn svg {
    width: 16px; height: 16px;
    fill: var(--text-light);
    transform: translateX(1px); 
    transition: var(--transition);
}
.besinci-video-card:hover .besinci-play-btn {
    background: var(--accent-gold);
    border-color: var(--accent-gold);
    transform: scale(1.1);
}
.besinci-video-card:hover .besinci-play-btn svg {
    fill: var(--text-light);
}
.besinci-duration-tag {
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--text-light);
    padding: 0.4rem 0.8rem;
    background: rgba(26, 43, 60, 0.4);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    transform: translateY(0);
    transition: var(--transition);
}
.besinci-video-card:hover .besinci-duration-tag {
    background: var(--text-dark);
    border-color: var(--text-dark);
    transform: translateY(-4px);
}
.besinci-cta-section {
    margin-top: var(--container-gap);
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
}
.besinci-cta-text {
    font-size: clamp(1.5rem, 2.5vw, 2rem);
    font-weight: 500;
    margin-bottom: 2.5rem;
    color: var(--text-dark);
}
.besinci-btn-premium {
    position: relative;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 1.25rem 2.5rem;
    border-radius: 100px;
    background: var(--bg-card);
    color: var(--text-dark); 
    font-size: 1rem;
    font-weight: 600;
    text-decoration: none;
    cursor: pointer;
    border: 1px solid var(--accent-gold); 
    box-shadow: var(--shadow-soft);
    overflow: hidden;
    will-change: transform;
    transition: var(--transition);
}
.besinci-btn-premium::before {
    content: '';
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    background: var(--accent-gold);
    border-radius: inherit;
    transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    transform: scaleX(0);
    transform-origin: right;
    z-index: 0;
}
.besinci-btn-premium:hover {
    color: var(--text-light);
    border-color: var(--text-dark);
    box-shadow: var(--shadow-hover);
}
.besinci-btn-premium:hover::before {
    transform: scaleX(1);
    transform-origin: left;
    background: var(--text-dark);
}
.besinci-btn-content {
    position: relative;
    z-index: 2;
    display: flex;
    align-items: center;
    gap: 0.75rem;
    will-change: transform;
}
.besinci-btn-icon {
    display: flex;
    align-items: center;
    transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}
.besinci-btn-premium:hover .besinci-btn-icon {
    transform: translateX(4px);
}
.besinci-gsap-reveal {
    opacity: 0;
    visibility: hidden;
}
.besinci-lightbox {
    position: fixed;
    top: 0; left: 0;
    width: 100%; height: 100%;
    z-index: 99999;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(0, 0, 0, 0.92);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.4s ease, visibility 0.4s ease;
}
.besinci-lightbox.besinci-lightbox-open {
    opacity: 1;
    visibility: visible;
}
.besinci-lightbox-close {
    position: absolute;
    top: clamp(16px, 3vw, 32px);
    right: clamp(16px, 3vw, 32px);
    width: 48px;
    height: 48px;
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.06);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    z-index: 10;
    transition: all 0.3s ease;
}
.besinci-lightbox-close:hover {
    background: #fff;
    color: #000;
    border-color: #fff;
    transform: rotate(90deg);
}
.besinci-lightbox-close svg {
    width: 20px;
    height: 20px;
}
.besinci-lightbox-body {
    width: 90vw;
    max-width: 960px;
    aspect-ratio: 9 / 16;
    max-height: 85vh;
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    transform: scale(0.9) translateY(30px);
    transition: transform 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}
.besinci-lightbox.besinci-lightbox-open .besinci-lightbox-body {
    transform: scale(1) translateY(0);
}
.besinci-lightbox-video {
    width: 100%;
    height: 100%;
    object-fit: contain;
    background: #000;
    border-radius: 12px;
}
        @media (prefers-reduced-motion: reduce) {
            * {
                animation: none !important;
                transition: none !important;
            }
            .besinci-gsap-reveal {
                opacity: 1 !important;
                visibility: visible !important;
                transform: none !important;
                filter: none !important;
            }
            .besinci-ambient-light, .besinci-grain-overlay { display: none; }
        }
.-altıncı-wrapper {
    position: relative; width: 100%; min-height: 100vh; overflow: hidden;
    --bg-main: #FAFAFA;         
    --bg-secondary: #F0EBE1;    
    --bg-card: #FFFFFF;         
    --text-dark: #1A2B3C;       
    --text-light: #FFFFFF;      
    --text-muted: rgba(255, 255, 255, 0.8); 
    --text-muted-dark: rgba(26, 43, 60, 0.6);
    --accent-gold: #C8A97E;     
    --accent-warm: #D98C70;     
    --shadow-soft: 0 10px 40px rgba(26, 43, 60, 0.05);     
    --shadow-hover: 0 15px 50px rgba(200, 169, 126, 0.15); 
    --radius-soft: 12px;        
    --transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1); 
    --container-width: 1400px;
    --container-gap: 4rem;
}
.altıncı-faq-wrapper {
    position: relative;
    min-height: 100vh;
    width: 100vw;
    max-width: 100%;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: clamp(4rem, 10vw, 8rem) 0;
    background-color: var(--bg-main);
}
.altıncı-faq-wrapper::before {
    content: "";
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    background-image: radial-gradient(rgba(26, 43, 60, 0.04) 1px, transparent 1px);
    background-size: 32px 32px;
    pointer-events: none;
    z-index: 0;
}
.altıncı-bg-typography {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: clamp(10rem, 25vw, 35rem);
    font-weight: 800;
    line-height: 0.8;
    color: rgba(26, 43, 60, 0.02);
    white-space: nowrap;
    pointer-events: none;
    z-index: 0;
    user-select: none;
    will-change: transform;
    letter-spacing: -0.05em;
}
.altıncı-faq-container {
    position: relative;
    z-index: 2;
    width: 100%;
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 clamp(1.5rem, 4vw, 4rem);
    display: grid;
    grid-template-columns: 400px 1fr;
    gap: var(--container-gap);
    align-items: start;
}
.altıncı-faq-header {
    position: sticky;
    top: clamp(4rem, 10vw, 6rem);
    display: flex;
    flex-direction: column;
}
.altıncı-section-title {
    font-size: clamp(3rem, 4.5vw, 4.5rem);
    font-weight: 700;
    line-height: 1.05;
    letter-spacing: -0.03em;
    color: var(--text-dark);
}
.altıncı-section-subtitle {
    margin-top: 1rem;
    font-size: 1.125rem;
    color: var(--text-muted-dark);
    font-weight: 400;
    max-width: 300px;
    line-height: 1.6;
}
.altıncı-faq-list {
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
}
.altıncı-faq-item {
    position: relative;
    background: var(--bg-card);
    border-radius: var(--radius-soft);
    box-shadow: var(--shadow-soft);
    overflow: hidden;
    border: 1px solid rgba(26, 43, 60, 0.03);
    transition: var(--transition);
}
.altıncı-faq-item::before {
    content: "";
    position: absolute;
    top: var(--altıncı-y, -100px);
    left: var(--altıncı-x, -100px);
    width: 600px;
    height: 600px;
    background: radial-gradient(circle closest-side, rgba(200, 169, 126, 0.08), transparent);
    transform: translate(-50%, -50%);
    opacity: 0;
    transition: opacity 0.4s ease;
    pointer-events: none;
    z-index: 0;
}
.altıncı-faq-item:hover {
    box-shadow: var(--shadow-hover);
    transform: translateY(-2px);
    border-color: rgba(200, 169, 126, 0.2);
}
.altıncı-faq-item:hover::before {
    opacity: 1;
}
.altıncı-faq-question {
    position: relative;
    z-index: 1;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: clamp(1.5rem, 3vw, 2.5rem);
    background: none;
    border: none;
    cursor: pointer;
    text-align: left;
    outline: none;
}
.altıncı-faq-question-content {
    display: flex;
    align-items: center;
    gap: clamp(1rem, 2vw, 2rem);
}
.altıncı-faq-number {
    font-size: clamp(1rem, 1.25vw, 1.125rem);
    font-weight: 700;
    color: var(--accent-gold);
    letter-spacing: 0.05em;
}
.altıncı-faq-text {
    font-size: clamp(1.25rem, 2vw, 1.5rem);
    font-weight: 600;
    color: var(--text-dark);
    transition: color 0.4s ease;
}
.altıncı-faq-item.altıncı-is-active .altıncı-faq-text {
    color: var(--accent-warm);
}
.altıncı-faq-icon {
    width: 36px;
    height: 36px;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(26, 43, 60, 0.1);
    border-radius: 50%;
    transition: var(--transition);
    background-color: var(--bg-main);
}
.altıncı-faq-item:hover .altıncı-faq-icon {
    border-color: var(--accent-gold);
    background-color: var(--bg-card);
}
.altıncı-faq-item.altıncı-is-active .altıncı-faq-icon {
    border-color: var(--accent-warm);
    background-color: var(--accent-warm);
}
.altıncı-icon-line {
    position: absolute;
    background: var(--text-dark);
    transition: var(--transition);
}
.altıncı-faq-item:hover .altıncı-icon-line {
    background: var(--accent-gold);
}
.altıncı-faq-item.altıncı-is-active .altıncı-icon-line {
    background: var(--bg-card);
}
.altıncı-icon-line.altıncı-h { width: 14px; height: 1.5px; }
.altıncı-icon-line.altıncı-v { width: 1.5px; height: 14px; }
.altıncı-faq-item.altıncı-is-active .altıncı-icon-line.altıncı-v {
    transform: rotate(90deg) scaleY(0);
}
.altıncı-faq-item.altıncı-is-active .altıncı-icon-line.altıncı-h {
    transform: rotate(180deg);
}
.altıncı-faq-answer-wrapper {
    position: relative;
    z-index: 1;
    height: 0;
    overflow: hidden;
}
.altıncı-faq-answer-inner {
    padding: 0 clamp(1.5rem, 3vw, 2.5rem) clamp(1.5rem, 3vw, 2.5rem) clamp(3.25rem, 5vw, 4.8rem);
    opacity: 0;
    transform: translateY(-10px);
    transition: var(--transition);
}
.altıncı-faq-item.altıncı-is-active .altıncı-faq-answer-inner {
    opacity: 1;
    transform: translateY(0);
}
.altıncı-faq-answer-text {
    font-size: 1.05rem;
    font-weight: 400;
    line-height: 1.7;
    color: var(--text-muted-dark);
    max-width: 650px;
}
.altıncı-gsap-reveal {
    opacity: 0;
    visibility: hidden;
}
@media (prefers-reduced-motion: reduce) {
    * { transition: none !important; animation: none !important; }
    .altıncı-gsap-reveal { opacity: 1 !important; visibility: visible !important; }
    .altıncı-faq-item::before, .altıncı-bg-typography { display: none; }
}
@media (max-width: 1024px) {
    .altıncı-faq-wrapper {
        padding: 4rem 0;
    }
    .altıncı-faq-container {
        grid-template-columns: 1fr;
        gap: 3rem;
        padding: 0 1.25rem; 
    }
    .altıncı-faq-header {
        position: relative;
        top: 0;
        text-align: center;
        align-items: center;
    }
    .altıncı-section-title {
        font-size: 2.5rem;
    }
    .altıncı-desktop-br {
        display: none; 
    }
    .altıncı-faq-question {
        padding: 1.25rem;
        align-items: flex-start;
    }
    .altıncı-faq-question-content {
        gap: 0.75rem;
        align-items: flex-start;
    }
    .altıncı-faq-number {
        margin-top: 0.2rem; 
        flex-shrink: 0;
    }
    .altıncı-faq-text {
        font-size: 1.125rem;
        line-height: 1.4;
    }
    .altıncı-faq-icon {
        width: 32px;
        height: 32px;
        flex-shrink: 0;
    }
    .altıncı-faq-answer-inner {
        padding: 0 1.25rem 1.25rem 3.1rem;
    }
        .altıncı-faq-answer-text {
            font-size: 0.95rem;
        }
    }
.-yedinci-wrapper {
    position: relative; width: 100%; min-height: 100vh; overflow: hidden;
    --bg-main: #000000;         
    --bg-secondary: #000000;    
    --bg-card: rgba(255, 255, 255, 0.04);         
    --text-dark: #FFFFFF;       
    --text-light: #FFFFFF;      
    --text-muted-dark: rgba(255, 255, 255, 0.5); 
    --accent-gold: #C8A97E;     
    --accent-warm: #D98C70;     
    --shadow-soft: 0 10px 40px rgba(0, 0, 0, 0.3);     
    --shadow-hover: 0 15px 50px rgba(200, 169, 126, 0.2); 
    --radius-soft: 12px;        
    --transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1); 
    --container-width: 1400px;
    --container-gap: 4rem;
    --font-main: 'Plus Jakarta Sans', sans-serif;
    --font-sign: 'Mrs Saint Delafield', cursive;
}
.yedinci-hero-section {
    position: relative;
    width: 100%;
    min-height: 90vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: clamp(3rem, 6vw, 6rem) clamp(1.5rem, 4vw, 4rem);
    background-color: var(--bg-main);
    overflow: hidden;
}
.yedinci-bg-watermark {
    position: absolute;
    top: 50%;
    left: 5%;
    transform: translateY(-50%);
    font-family: var(--font-main);
    font-size: clamp(10rem, 18vw, 24rem);
    font-weight: 800;
    color: rgba(255, 255, 255, 0.02);
    z-index: 0;
    pointer-events: none;
    white-space: nowrap;
    letter-spacing: -0.05em;
}
.yedinci-container-grid {
    position: relative;
    max-width: var(--container-width);
    width: 100%;
    display: grid;
    grid-template-columns: 42% 1fr;
    gap: var(--container-gap);
    align-items: center;
    z-index: 1;
}
.yedinci-visual-side {
    position: relative;
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    height: auto;
    min-height: 600px;
}
.yedinci-float-wrapper {
    position: relative;
    width: 100%;
    max-width: 420px;
    display: flex;
    justify-content: center;
    z-index: 2;
}
.yedinci-floating-man {
    width: 100%;
    height: auto;
    display: block;
    filter: brightness(1.05) contrast(1.05);
}
.yedinci-signature {
    position: absolute;
    bottom: 40px;
    left: -40px;
    font-family: var(--font-sign);
    font-size: clamp(4rem, 6vw, 6rem);
    color: var(--accent-gold);
    transform: rotate(-6deg);
    pointer-events: none;
    text-shadow: 2px 2px 20px rgba(0, 0, 0, 0.6);
    z-index: 3;
}
.yedinci-floor-shadow {
    position: absolute;
    bottom: 10px;
    left: 50%;
    transform: translateX(-50%);
    width: 250px;
    height: 15px;
    background: radial-gradient(ellipse at center, rgba(200, 169, 126, 0.1) 0%, transparent 70%);
    border-radius: 50%;
    z-index: 1;
}
.yedinci-content-side {
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding-left: clamp(1rem, 3vw, 3rem);
}
.yedinci-main-title {
    font-size: clamp(2.8rem, 5vw, 4.2rem);
    font-weight: 800;
    color: var(--accent-gold);
    line-height: 1.05;
    letter-spacing: -0.03em;
    margin-bottom: 0.4rem;
}
.yedinci-role-title {
    font-size: 1rem;
    font-weight: 400;
    color: rgba(200, 169, 126, 0.6);
    margin-bottom: 2.5rem;
    letter-spacing: 0.02em;
}
.yedinci-hero-quote {
    font-size: clamp(1.4rem, 2.5vw, 1.75rem);
    font-weight: 600;
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.45;
    margin: 0 0 1.5rem 0;
    padding: 0;
    border: none;
    letter-spacing: -0.01em;
}
.yedinci-description {
    font-size: 1.05rem;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.45);
    max-width: 90%;
    margin-bottom: 2.5rem;
}
.yedinci-divider {
    width: 60px;
    height: 1px;
    background: rgba(200, 169, 126, 0.25);
    margin-bottom: 2rem;
}
.yedinci-credentials {
    list-style: none;
    padding: 0;
    margin: 0 0 2.5rem 0;
    display: flex;
    flex-direction: column;
    gap: 0.6rem;
}
.yedinci-credentials li {
    font-size: 0.9rem;
    color: var(--accent-warm);
    font-weight: 500;
    letter-spacing: 0.03em;
}
.yedinci-cta-wrapper { 
    display: flex; 
    align-items: flex-start; 
    flex-direction: column;
    gap: 0.75rem; 
}
.yedinci-cta-footnote {
    font-size: 0.8rem;
    color: rgba(200, 169, 126, 0.4);
    font-weight: 400;
    letter-spacing: 0.01em;
}
.yedinci-btn-modern {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 1rem 2.25rem;
    background-color: var(--accent-gold);
    color: #0A0A0C;
    font-family: var(--font-main);
    font-size: 0.875rem;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    text-decoration: none;
    border: none;
    border-radius: var(--radius-soft);
    cursor: pointer;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}
.yedinci-btn-modern::before {
    content: '';
    position: absolute;
    top: 0; left: -100%;
    width: 100%; height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.25), transparent);
    transition: left 0.6s ease;
}
.yedinci-btn-modern:hover {
    background-color: #d4b68a;
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(200, 169, 126, 0.3);
}
.yedinci-btn-modern:hover::before { left: 100%; }
@media (max-width: 1024px) {
    .yedinci-hero-section {
        padding: 4rem 1.5rem;
        min-height: 100vh;
        display: flex;
        flex-direction: column;
        justify-content: center;
    }
    .yedinci-bg-watermark {
        font-size: 24vw;
        top: 15%;
        left: 50%;
        transform: translateX(-50%);
        opacity: 0.3;
        letter-spacing: 0;
    }
    .yedinci-container-grid {
        grid-template-columns: 1fr;
        gap: 3rem; 
    }
    .yedinci-visual-side { 
        min-height: auto; 
    }
    .yedinci-float-wrapper {
        max-width: 220px;
        margin: 0 auto;
    }
    .yedinci-floor-shadow {
        width: 180px;
        bottom: -15px;
    }
    .yedinci-content-side {
        align-items: center;
        text-align: center;
        padding-top: 1rem;
        padding-left: 0;
    }
    .yedinci-main-title {
        font-size: 2.6rem;
        margin-bottom: 0.3rem;
    }
    .yedinci-role-title { font-size: 0.9rem; margin-bottom: 2rem; }
    .yedinci-hero-quote {
        font-size: 1.25rem;
        margin-bottom: 1.25rem;
    }
    .yedinci-description {
        font-size: 0.95rem;
        line-height: 1.6;
        max-width: 100%;
        margin-bottom: 2rem;
    }
    .yedinci-divider {
        margin: 0 auto 1.5rem auto;
    }
    .yedinci-credentials {
        align-items: center;
        margin-bottom: 2rem;
    }
    .yedinci-cta-wrapper {
        align-items: center;
        width: 100%;
    }
    .yedinci-btn-modern {
        width: 100%;
        max-width: 320px;
        padding: 1rem;
    }
    .yedinci-cta-footnote {
        text-align: center;
    }
}
.-sekizinci-wrapper {
    position: relative;
    width: 100%;
    min-height: 100vh;
    overflow: hidden;
    --bg-main: #FAFAFA;         
    --bg-secondary: #F0EBE1;    
    --bg-card: #FFFFFF;         
    --text-dark: #1A2B3C;       
    --text-light: #FFFFFF;      
    --text-muted-dark: rgba(26, 43, 60, 0.6); 
    --accent-gold: #C8A97E;     
    --accent-warm: #D98C70;     
    --shadow-soft: 0 10px 40px rgba(26, 43, 60, 0.05);     
    --shadow-hover: 0 15px 50px rgba(200, 169, 126, 0.15); 
    --radius-soft: 12px;        
    --transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1); 
    --sekizinci-section-padding: clamp(4rem, 10vw, 8rem);
}
.sekizinci-contact-section {
    width: 100%;
    padding: var(--sekizinci-section-padding) 4vw;
    display: flex;
    flex-direction: column;
    align-items: center;
    background-color: var(--bg-main);
    position: relative;
}
.sekizinci-section-header {
    width: 100%;
    max-width: 1400px;
    margin-bottom: clamp(2.5rem, 4vw, 4rem);
    display: flex;
    flex-direction: column;
    gap: 1rem;
}
.sekizinci-header-label {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    font-weight: 700;
    color: var(--text-muted-dark);
}
.sekizinci-label-dot {
    width: 8px;
    height: 8px;
    background-color: var(--accent-gold);
    border-radius: 50%;
}
.sekizinci-header-title {
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 800;
    letter-spacing: -0.03em;
    color: var(--text-dark);
    text-transform: uppercase;
    line-height: 1.1;
}
.sekizinci-map-module {
    position: relative;
    width: 100%;
    max-width: 1400px;
    height: clamp(650px, 75vh, 850px);
    border-radius: clamp(20px, 4vw, 32px);
    background-color: #e5e3df; 
    overflow: hidden; 
    box-shadow: var(--shadow-soft);
}
.sekizinci-google-map {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: none;
    pointer-events: none !important; 
    user-select: none;
    filter: sepia(0.1) contrast(1.05) hue-rotate(-5deg);
}
.sekizinci-floating-card {
    position: absolute;
    top: 50%;
    left: clamp(1.5rem, 4vw, 4rem);
    transform: translateY(-50%);
    z-index: 10;
    display: flex;
    flex-direction: row;
    width: clamp(340px, 62%, 780px);
    max-width: 780px; 
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.65) 0%, rgba(255, 255, 255, 0.25) 100%);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.6); 
    box-shadow: 0 40px 80px rgba(0, 0, 0, 0.08), inset 0 0 20px rgba(255, 255, 255, 0.4);
    border-radius: 24px;
    pointer-events: auto;
    will-change: transform, opacity;
    transition: var(--transition);
}
.sekizinci-floating-card:hover {
    box-shadow: 0 50px 90px rgba(200, 169, 126, 0.15), inset 0 0 20px rgba(255, 255, 255, 0.5);
}
.sekizinci-card-image-col {
    flex: 0 0 42%;
    position: relative;
    padding: 1.25rem; 
}
.sekizinci-card-image-col img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: var(--radius-soft);
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    transition: transform 1.5s cubic-bezier(0.19, 1, 0.22, 1);
}
.sekizinci-floating-card:hover .sekizinci-card-image-col img {
    transform: scale(1.03);
}
.sekizinci-card-content-col {
    flex: 1;
    padding: 2.5rem 3rem 2.5rem 1.5rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
}
.sekizinci-card-tabs {
    display: flex;
    gap: 2rem;
    border-bottom: 2px solid rgba(26, 43, 60, 0.08);
    padding-bottom: 1rem;
    margin-bottom: 2rem;
}
.sekizinci-tab-item {
    font-size: 0.95rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    color: var(--text-dark);
    text-transform: uppercase;
    position: relative;
}
.sekizinci-tab-item::after {
    content: '';
    position: absolute;
    bottom: -1.15rem;
    left: 0;
    width: 100%;
    height: 2px;
    background-color: var(--accent-gold);
}
.sekizinci-contact-info-row {
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
    margin-bottom: 2rem;
}
.sekizinci-info-item {
    display: flex;
    align-items: center;
    gap: 16px;
    font-size: 1rem;
    color: var(--text-dark);
    font-weight: 600;
}
.sekizinci-info-item svg {
    width: 20px;
    height: 20px;
    stroke: var(--accent-gold);
    stroke-width: 2;
    fill: none;
}
.sekizinci-address-box {
    margin-bottom: 2.5rem;
}
.sekizinci-address-text {
    font-size: 1rem;
    line-height: 1.7;
    font-weight: 500;
    color: var(--text-dark); 
    background: rgba(255, 255, 255, 0.45);
    backdrop-filter: blur(8px);
    padding: 1.25rem 1.5rem;
    border-radius: var(--radius-soft);
    border-left: 4px solid var(--accent-gold);
}
.sekizinci-card-buttons {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}
.sekizinci-btn-box {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 1rem 1.5rem;
    border-radius: var(--radius-soft);
    font-size: 0.85rem;
    font-weight: 700;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    text-decoration: none;
    transition: var(--transition);
    background: rgba(255, 255, 255, 0.6); 
    border: 1px solid rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(8px);
    color: var(--text-dark);
    flex: 1;
    white-space: nowrap;
}
.sekizinci-btn-box:hover {
    background: var(--text-dark);
    color: var(--text-light);
    border-color: var(--text-dark);
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(0,0,0,0.15);
}
.sekizinci-btn-box svg {
    width: 18px;
    height: 18px;
    fill: none;
    stroke: currentColor;
    stroke-width: 2;
    transition: transform 0.4s ease;
}
.sekizinci-btn-box:hover svg {
    transform: translateX(4px) translateY(-4px);
}
.sekizinci-quarest-marker {
    position: absolute;
    top: 50%;
    left: 85%; 
    transform: translate(-50%, -50%);
    z-index: 20;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    cursor: pointer;
    pointer-events: auto;
    width: 120px;
    height: 120px;
}
.sekizinci-marker-ripple {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100%;
    height: 100%;
    border-radius: 50%;
    border: 1px solid rgba(200, 169, 126, 0.8);
    background-color: transparent;
    animation: sekizinci-radar-pulse 1.5s infinite cubic-bezier(0.215, 0.61, 0.355, 1);
    pointer-events: none;
}
.sekizinci-marker-mid-ring {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 86px;
    height: 86px;
    border-radius: 50%;
    background-color: rgba(200, 169, 126, 0.15); 
    pointer-events: none;
    transition: var(--transition);
}
.sekizinci-marker-core {
    position: relative;
    width: 64px;
    height: 64px;
    background-color: var(--text-dark); 
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 10px 25px rgba(26, 43, 60, 0.4);
    transition: var(--transition);
    z-index: 2;
}
.sekizinci-marker-text {
    color: var(--accent-gold);
    font-size: 0.65rem;
    font-weight: 800;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    font-family: 'Plus Jakarta Sans', sans-serif;
    transition: transform 0.4s ease;
}
.sekizinci-marker-tooltip {
    position: absolute;
    bottom: 100%; 
    left: 50%;
    transform: translateX(-50%) translateY(10px);
    background: var(--text-dark);
    color: var(--text-light);
    padding: 8px 16px;
    border-radius: 8px;
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    white-space: nowrap;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: var(--transition);
    z-index: 25;
    box-shadow: var(--shadow-soft);
}
@keyframes sekizinci-radar-pulse {
    0% { transform: translate(-50%, -50%) scale(0.7); opacity: 1; }
    100% { transform: translate(-50%, -50%) scale(2.0); opacity: 0; } 
}
.sekizinci-quarest-marker:hover .sekizinci-marker-core {
    transform: scale(1.1);
    background-color: var(--accent-gold);
}
.sekizinci-quarest-marker:hover .sekizinci-marker-text {
    color: var(--text-light);
    transform: scale(1.05);
}
.sekizinci-quarest-marker:hover .sekizinci-marker-mid-ring {
    transform: translate(-50%, -50%) scale(1.15);
    background-color: rgba(26, 43, 60, 0.1); 
}
.sekizinci-quarest-marker:hover .sekizinci-marker-tooltip {
    opacity: 1;
    visibility: visible;
    transform: translateX(-50%) translateY(-8px); 
}
@media (max-width: 1024px) {
    .sekizinci-floating-card { width: 70%; }
    .sekizinci-quarest-marker { left: 88%; }
}
@media (max-width: 850px) {
    .sekizinci-google-map { display: none !important; }
    .sekizinci-quarest-marker { display: none !important; }
    .sekizinci-contact-section {
        padding: 4rem 1.5rem;
    }
    .sekizinci-section-header {
        align-items: center;
        text-align: center;
        margin-bottom: 2rem;
    }
    .sekizinci-header-title {
        font-size: 2.5rem;
    }
    .sekizinci-map-module { 
        height: auto; 
        background-color: transparent;
        box-shadow: none; 
        border-radius: 0;
        overflow: visible;
        display: flex;
        justify-content: center;
        align-items: center;
    }
    .sekizinci-floating-card {
        position: relative;
        top: auto;
        left: auto;
        transform: none;
        width: 100%;
        max-width: 480px; 
        flex-direction: column;
        margin: 0 auto; 
        background: var(--bg-card);
        backdrop-filter: none;
        -webkit-backdrop-filter: none;
    }
    .sekizinci-card-image-col {
        flex: none;
        height: 250px;
        padding: 1rem 1rem 0 1rem;
    }
    .sekizinci-card-content-col {
        padding: 1.5rem 2rem 2.5rem 2rem;
        align-items: center; 
    }
    .sekizinci-card-tabs {
        justify-content: center; 
        width: 100%;
    }
    .sekizinci-contact-info-row {
        width: 100%;
    }
    .sekizinci-address-box {
        width: 100%;
    }
    .sekizinci-address-text {
        background: var(--bg-secondary);
        backdrop-filter: none;
    }
    .sekizinci-card-buttons { 
        flex-direction: column; 
        width: 100%;
        gap: 0.8rem;
    }
}
.quarest-footer {
    background-color: #000000;
    color: #ffffff;
    padding: 6rem 4vw 2rem 4vw;
    position: relative;
    overflow: hidden;
    font-family: var(--font-main);
    z-index: 10;
}
.q-footer-top {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 4rem;
    max-width: 1400px;
    margin: 0 auto 6rem auto;
}
.q-footer-col {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}
.q-footer-label {
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    color: rgba(255, 255, 255, 0.3);
    margin-bottom: 0.5rem;
    font-weight: 600;
}
.q-footer-text, .q-footer-link {
    font-size: 1.1rem;
    line-height: 1.5;
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    transition: color 0.4s ease, transform 0.4s ease;
    width: fit-content;
}
.q-footer-link {
    position: relative;
}
.q-footer-link::after {
    content: '';
    position: absolute;
    width: 100%;
    transform: scaleX(0);
    height: 1px;
    bottom: 0;
    left: 0;
    background-color: var(--accent-gold);
    transform-origin: bottom right;
    transition: transform 0.4s cubic-bezier(0.86, 0, 0.07, 1);
}
.q-footer-link:hover {
    color: var(--accent-gold);
}
.q-footer-link:hover::after {
    transform: scaleX(1);
    transform-origin: bottom left;
}
.q-footer-big-brand {
    font-size: 16vw;
    font-weight: 800;
    letter-spacing: -0.04em;
    line-height: 0.75;
    text-align: center;
    color: #ffffff;
    margin-bottom: 3rem;
    white-space: nowrap;
}
.q-footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1400px;
    margin: 0 auto;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}
.q-footer-copy {
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.4);
}
.q-footer-scroll-top {
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.8);
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    transition: color 0.3s ease;
}
.q-footer-scroll-top:hover {
    color: var(--accent-gold);
}
.q-footer-scroll-top svg {
    width: 16px;
    height: 16px;
    fill: none;
    stroke: currentColor;
    stroke-width: 2;
    transition: transform 0.3s ease;
}
.q-footer-scroll-top:hover svg {
    transform: translateY(-3px);
}
@media (max-width: 900px) {
    .quarest-footer {
        padding: 5rem 2rem 2rem 2rem;
    }
    .q-footer-top {
        grid-template-columns: 1fr;
        gap: 3.5rem;
        margin-bottom: 4rem;
        text-align: center;
    }
    .q-footer-col {
        align-items: center;
    }
    .q-footer-link::after {
        transform-origin: center;
    }
    .q-footer-link:hover::after {
        transform-origin: center;
    }
    .q-footer-big-brand {
        font-size: 18vw;
        margin-bottom: 2.5rem;
    }
    .q-footer-bottom {
        flex-direction: column;
        gap: 1.5rem;
        text-align: center;
        padding-top: 2rem;
    }
    .q-footer-scroll-top {
        justify-content: center;
    }
}
.-revize-wrapper {
    position: relative;
    width: 100%;
    min-height: auto;
    overflow: hidden;
    padding: 0 20px 40px 20px;
    background: #ffffff;
    --revize-primary-accent: #d4af37;
    --revize-text-light: #ffffff;
    --revize-text-muted: #a1a1a6;
    --revize-bg-page: #ffffff;
    --revize-bg-slider: #000000;
    --revize-transition-smooth: 1.2s cubic-bezier(0.19, 1, 0.22, 1);
}
.revize-intro-block {
    max-width: 800px;
    margin: 0 auto;
    padding: clamp(8rem, 15vh, 12rem) 20px clamp(5rem, 10vh, 8rem) 20px;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
}
.revize-intro-kicker {
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: rgba(26, 43, 60, 0.4);
    margin-bottom: 2rem;
}
.revize-intro-title {
    font-size: clamp(2.8rem, 5.5vw, 4.5rem);
    font-weight: 700;
    letter-spacing: -0.03em;
    line-height: 1.15;
    color: #1A2B3C;
    margin-bottom: clamp(2.5rem, 5vh, 4rem);
}
.revize-intro-title sup {
    font-size: 0.3em;
    vertical-align: super;
    font-weight: 400;
    letter-spacing: 0;
    opacity: 0.5;
}
.revize-intro-desc {
    font-size: clamp(1.1rem, 1.6vw, 1.25rem);
    font-weight: 400;
    line-height: 1.75;
    color: rgba(26, 43, 60, 0.55);
    margin-bottom: 1.25rem;
}
.revize-intro-desc strong {
    color: #1A2B3C;
    font-weight: 600;
}
.revize-intro-desc--strong {
    font-weight: 700;
    color: #1A2B3C;
    margin-bottom: 0;
}
.revize-intro-footnote {
    font-size: 0.8rem;
    font-weight: 400;
    color: rgba(26, 43, 60, 0.3);
    margin-top: clamp(1.25rem, 2.5vh, 2rem);
    letter-spacing: 0.01em;
}
.revize-intro-layers-callout {
    font-size: clamp(1.05rem, 2.2vw, 1.35rem);
    font-weight: 800;
    line-height: 1.45;
    color: #1A2B3C;
    letter-spacing: -0.02em;
    margin: clamp(1.25rem, 2.5vh, 2rem) 0 0;
    max-width: 36rem;
}
.revize-slider-container {
    max-width: 1600px;
    margin: 0 auto;
    position: relative;
    background: var(--revize-bg-slider);
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 40px 80px rgba(0,0,0,0.3);
}
.revize-slider-wrapper {
    position: relative;
    width: 100%;
    height: 800px;
    overflow: hidden;
}
.revize-slide-backgrounds {
    position: absolute;
    top: 0; left: 0;
    width: 100%; height: 100%;
    z-index: 1;
}
.revize-slide-background {
    position: absolute;
    top: 0; left: 0;
    width: 100%; height: 100%;
    opacity: 0;
    transform: scale(1.05);
    transition: opacity 1.2s ease, transform 3s ease-out;
    background-size: contain;
    background-repeat: no-repeat;
    background-position: right 10% center;
}
.revize-slide-background.revize-active {
    opacity: 1;
    transform: scale(1);
}
.revize-slides-container {
    position: relative;
    width: 100%; height: 100%;
    z-index: 2;
}
.revize-slide {
    position: absolute;
    top: 0; left: 0;
    width: 100%; height: 100%;
    opacity: 0;
    visibility: hidden;
    display: flex;
    align-items: center;
    padding: 80px 100px 160px 100px;
    transition: opacity 0.3s ease, visibility 0.3s ease;
}
.revize-slide.revize-active {
    opacity: 1;
    visibility: visible;
}
.revize-slide-content {
    max-width: 520px;
    position: relative;
}
.revize-slide-content > * {
    opacity: 0;
    transform: translateY(30px);
    transition: var(--revize-transition-smooth);
}
.revize-slide.revize-active .revize-slide-title { transition-delay: 0.1s; opacity: 1; transform: translateY(0); }
.revize-slide.revize-active .revize-slide-subtitle { transition-delay: 0.2s; opacity: 1; transform: translateY(0); }
.revize-slide.revize-active .revize-slide-description { transition-delay: 0.3s; opacity: 1; transform: translateY(0); }
.revize-slide.revize-active .revize-slide-note { transition-delay: 0.4s; opacity: 1; transform: translateY(0); }
.revize-slide-title {
    font-family: 'Playfair Display', serif;
    font-size: 56px;
    font-weight: 700;
    line-height: 1.1;
    margin-bottom: 20px;
    color: #ffffff;
    letter-spacing: -1px;
}
.revize-slide-subtitle {
    font-family: 'Inter', sans-serif;
    font-size: 20px;
    font-weight: 400;
    margin-bottom: 30px;
    color: var(--revize-primary-accent);
    text-transform: uppercase;
    letter-spacing: 3px;
}
.revize-slide-description {
    font-size: 16px;
    line-height: 1.8;
    color: var(--revize-text-muted);
    font-weight: 300;
    margin-bottom: 15px;
    max-height: 250px;
    overflow-y: auto;
    padding-right: 15px;
}
.revize-slide-description::-webkit-scrollbar { width: 3px; }
.revize-slide-description::-webkit-scrollbar-track { background: rgba(255, 255, 255, 0.06); border-radius: 0; }
.revize-slide-description::-webkit-scrollbar-thumb { background: rgba(255, 255, 255, 0.15); border-radius: 0; }
.revize-slide-description::-webkit-scrollbar-thumb:hover { background: var(--revize-primary-accent); }
.revize-slide-description { scrollbar-width: thin; scrollbar-color: rgba(255, 255, 255, 0.15) rgba(255, 255, 255, 0.06); }
.revize-slide-note {
    font-size: 13px;
    line-height: 1.6;
    color: #ffffff;
    padding: 20px;
    background: rgba(255,255,255,0.05);
    border-left: 3px solid var(--revize-primary-accent);
    border-radius: 0 8px 8px 0;
    margin-top: 25px;
    font-style: italic;
}
.revize-slide-note strong {
    color: var(--revize-primary-accent);
    font-size: 14px;
    font-weight: 600;
    font-style: normal;
    display: block;
    margin-bottom: 5px;
}
.revize-slider-controls {
    position: absolute;
    bottom: 60px;
    right: 100px;
    display: flex;
    align-items: center;
    gap: 20px;
    z-index: 10;
}
.revize-arrow {
    width: 60px;
    height: 60px;
    background: transparent;
    border: 1px solid rgba(255,255,255,0.2);
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.4s ease;
    color: #ffffff;
}
.revize-arrow:hover {
    background: #ffffff;
    color: #000000;
    border-color: #ffffff;
    transform: scale(1.05);
}
.revize-arrow svg {
    width: 24px;
    height: 24px;
    stroke: currentColor;
    fill: none;
    stroke-width: 1.5;
    transition: transform 0.3s ease;
}
.revize-arrow-prev:hover svg { transform: translateX(-3px); }
.revize-arrow-next:hover svg { transform: translateX(3px); }
.revize-model-disclaimer {
    position: absolute;
    bottom: 130px;
    left: 100px;
    z-index: 10;
    font-size: 0.8rem;
    font-weight: 500;
    color: #C8A96E;
    background: rgba(200, 169, 110, 0.1);
    border: 1px solid rgba(200, 169, 110, 0.3);
    border-radius: 6px;
    padding: 0.4rem 0.9rem;
    letter-spacing: 0.02em;
    backdrop-filter: blur(6px);
    -webkit-backdrop-filter: blur(6px);
    transition: opacity 0.4s ease;
}
.revize-slider-pagination {
    position: absolute;
    bottom: 80px;
    left: 100px;
    display: flex;
    align-items: center;
    gap: 20px;
    z-index: 10;
}
.revize-slide-counter {
    font-family: 'Playfair Display', serif;
    font-size: 18px;
    color: #ffffff;
    letter-spacing: 2px;
    display: flex;
    align-items: center;
    gap: 10px;
}
.revize-slide-counter .revize-current { font-size: 24px; color: var(--revize-primary-accent); font-weight: 700; }
.revize-slide-counter .revize-total { color: rgba(255,255,255,0.4); }
.revize-progress-bar-container { display: flex; gap: 10px; }
.revize-progress-line {
    width: 40px;
    height: 2px;
    background: rgba(255,255,255,0.2);
    cursor: pointer;
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}
.revize-progress-line::after {
    content: '';
    position: absolute;
    top: 0; left: 0;
    width: 0%; height: 100%;
    background: var(--revize-primary-accent);
    transition: width 0.6s cubic-bezier(0.19, 1, 0.22, 1);
}
.revize-progress-line.revize-active::after { width: 100%; }
.revize-progress-line:hover { background: rgba(255,255,255,0.5); }
@media (max-width: 1024px) {
    .revize-slider-wrapper { height: 700px; }
    .revize-slide-title { font-size: 44px; }
    .revize-slide { padding: 60px 50px 140px 50px; }
    .revize-slide-background { background-size: 80%; background-position: right 5% center; }
}
@media (max-width: 768px) {
    .-revize-wrapper {
        padding: 0;
        background: #ffffff;
    }
    .revize-intro-block {
        padding: clamp(2rem, 4vh, 3rem) 20px clamp(2.5rem, 5vh, 4rem) 20px;
    }
    .revize-slider-container {
        border-radius: 0;
        height: 100dvh;
        max-height: 100dvh;
        box-shadow: none;
    }
    .revize-slider-wrapper {
        height: 100dvh;
        min-height: 100dvh;
    }
    .revize-slide-background {
        height: 45dvh !important;
        top: 0 !important;
        left: 0 !important;
        width: 100% !important;
        background-size: 95% auto !important;
        background-position: center bottom !important;
        background-repeat: no-repeat !important;
    }
    .revize-slide {
        padding: 45dvh 20px 110px 20px !important;
        align-items: center !important;
        text-align: center !important;
        flex-direction: column !important;
        justify-content: flex-start !important;
    }
    .revize-slide-content {
        max-width: 100% !important;
        margin-top: 0 !important;
        height: 100%;
        display: flex;
        flex-direction: column;
        align-items: center !important;
        width: 100%;
        min-height: 0;
    }
    .revize-slide-title {
        font-size: 32px !important;
        margin-bottom: 8px !important;
        text-align: center !important;
    }
    .revize-slide-subtitle {
        font-size: 14px !important;
        margin-bottom: 12px !important;
        letter-spacing: 1.5px !important;
        text-align: center !important;
    }
    .revize-slide-description {
        font-size: 14px !important;
        line-height: 1.6 !important;
        max-height: none !important;
        flex: 1 1 auto;
        overflow-y: auto !important;
        margin-bottom: 16px !important;
        padding-right: 0 !important;
        text-align: center !important;
    }
    .revize-slide-note {
        font-size: 12px !important;
        padding: 12px 16px !important;
        margin-top: 0 !important;
        margin-bottom: 0 !important;
        flex-shrink: 0;
        width: 100%;
        text-align: center !important;
        border-left: none !important;
        border-top: 3px solid var(--revize-primary-accent) !important;
        border-radius: 8px !important;
    }
    .revize-slider-pagination {
        bottom: 25px !important;
        left: 50% !important;
        transform: translateX(-50%) !important;
        gap: 8px !important;
        width: auto !important;
        justify-content: center !important;
        flex-direction: column !important;
        z-index: 11 !important;
    }
    .revize-slider-controls {
        bottom: 30px !important;
        left: 0 !important;
        right: 0 !important;
        width: 100% !important;
        justify-content: space-between !important;
        padding: 0 15px !important;
        gap: 0 !important;
        z-index: 10 !important;
    }
    .revize-arrow { width: 44px !important; height: 44px !important; background: rgba(0,0,0,0.4) !important; }
    .revize-arrow svg { width: 20px !important; height: 20px !important; }
    .revize-slide-counter { font-size: 14px !important; gap: 4px !important; justify-content: center !important; }
    .revize-slide-counter .revize-current { font-size: 20px !important; }
    .revize-progress-bar-container { gap: 6px !important; flex-wrap: wrap; justify-content: center !important; }
    .revize-progress-line { width: 18px !important; }
    .revize-model-disclaimer {
        bottom: 85px !important;
        left: 50% !important;
        transform: translateX(-50%);
        font-size: 0.6rem;
        padding: 0.3rem 0.7rem;
        z-index: 11 !important;
        white-space: nowrap;
    }
}
.randevu-wrapper {
    position: relative;
    width: 100%;
    min-height: 100vh;
    overflow: hidden;
    font-family: 'Plus Jakarta Sans', sans-serif;
    color: #1A2B3C;
    box-sizing: border-box;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #FFFFFF;
}
.randevu-wrapper *, .randevu-wrapper *::before, .randevu-wrapper *::after {
    box-sizing: inherit;
}
.randevu-trigger-section {
    background-color: #FAFAFA;
    padding: 4rem 1.25rem;
    text-align: center;
    border-radius: 1.5rem;
    max-width: 37.5rem;
    width: 100%;
    margin: 3rem auto;
    border: 1px solid rgba(26, 43, 60, 0.08);
    box-shadow: 0 0.625rem 2.5rem rgba(26, 43, 60, 0.06);
}
.randevu-trigger-title {
    font-size: 1.75rem;
    font-weight: 600;
    margin-bottom: 0.75rem;
    letter-spacing: -0.03em;
    color: #1A2B3C;
}
.randevu-trigger-desc {
    font-size: 0.9375rem;
    color: rgba(26, 43, 60, 0.55);
    margin-bottom: 1.875rem;
    font-weight: 400;
}
.randevu-btn-primary {
    background: linear-gradient(135deg, #C8A97E 0%, #D98C70 100%);
    color: #ffffff;
    border: none;
    padding: 1rem 2.25rem;
    font-size: 1rem;
    font-weight: 600;
    border-radius: 3.125rem;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    font-family: inherit;
    box-shadow: 0 0.625rem 1.875rem -0.625rem rgba(200, 169, 126, 0.6);
}
.randevu-btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 0.9375rem 2.5rem -0.625rem rgba(200, 169, 126, 0.75);
    background: linear-gradient(135deg, #d4b78a 0%, #e0967a 100%);
}
.randevu-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(26, 43, 60, 0.55);
    backdrop-filter: blur(0.5rem);
    -webkit-backdrop-filter: blur(0.5rem);
    z-index: 9999;
    opacity: 0;
    visibility: hidden;
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 1.25rem;
}
.randevu-overlay.randevu-active {
    opacity: 1;
    visibility: visible;
}
.randevu-modal-container {
    background: #FFFFFF;
    width: 100%;
    max-width: 36.25rem;
    max-height: calc(100dvh - 2.5rem);
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
    border-radius: 1.5rem;
    position: relative;
    transform: translateY(1.875rem) scale(0.98);
    opacity: 0;
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    border: 1px solid rgba(26, 43, 60, 0.08);
    box-shadow: 0 2rem 4rem rgba(26, 43, 60, 0.15);
}
.randevu-overlay.randevu-active .randevu-modal-container {
    transform: translateY(0) scale(1);
    opacity: 1;
}
.randevu-close-btn {
    position: absolute;
    top: 1.5rem;
    right: 1.5rem;
    background: transparent;
    border: none;
    color: rgba(26, 43, 60, 0.35);
    font-size: 1.75rem;
    cursor: pointer;
    z-index: 10;
    line-height: 1;
    transition: color 0.3s;
}
.randevu-close-btn:hover {
    color: #1A2B3C;
}
.randevu-progress-bar {
    height: 4px;
    background: #F0EBE1;
    width: 100%;
    position: absolute;
    top: 0;
    left: 0;
}
.randevu-progress-fill {
    height: 100%;
    background: linear-gradient(90deg, #C8A97E, #D98C70);
    width: 25%;
    transition: width 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}
.randevu-step-container {
    padding: 3.125rem 2.5rem 2.5rem;
}
.randevu-step {
    display: none;
    animation: randevuFadeIn 0.5s forwards;
}
.randevu-step.randevu-active {
    display: block;
}
@keyframes randevuFadeIn {
    from { opacity: 0; transform: translateX(1.25rem); }
    to   { opacity: 1; transform: translateX(0); }
}
.randevu-step-title {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 1.875rem;
    line-height: 1.3;
    color: #1A2B3C;
}
.randevu-step-subtitle {
    font-size: 0.875rem;
    color: rgba(26, 43, 60, 0.55);
    margin-bottom: 1.875rem;
    line-height: 1.6;
}
.randevu-options-grid {
    display: grid;
    gap: 0.75rem;
}
.randevu-option-label {
    display: flex;
    align-items: center;
    padding: 1.125rem 1.25rem;
    background: #FAFAFA;
    border: 1px solid rgba(26, 43, 60, 0.1);
    border-radius: 1rem;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}
.randevu-option-label:hover {
    border-color: #C8A97E;
    background: rgba(200, 169, 126, 0.05);
}
.randevu-option-input {
    display: none;
}
.randevu-option-text {
    font-size: 0.9375rem;
    font-weight: 400;
    color: rgba(26, 43, 60, 0.75);
    transition: color 0.3s ease;
    z-index: 2;
}
.randevu-option-input:checked + .randevu-option-label {
    border-color: #C8A97E;
    background: rgba(200, 169, 126, 0.1);
}
.randevu-option-input:checked + .randevu-option-label .randevu-option-text {
    color: #1A2B3C;
    font-weight: 600;
}
.randevu-option-indicator {
    width: 0.625rem;
    height: 0.625rem;
    border-radius: 50%;
    background: transparent;
    margin-left: auto;
    transition: all 0.3s ease;
    z-index: 2;
    border: 2px solid rgba(26, 43, 60, 0.25);
}
.randevu-option-input:checked + .randevu-option-label .randevu-option-indicator {
    background: #C8A97E;
    border-color: #C8A97E;
    box-shadow: 0 0 0.625rem rgba(200, 169, 126, 0.5);
}
.randevu-form-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
}
.randevu-form-group {
    display: flex;
    flex-direction: column;
}
.randevu-form-group.randevu-full-width {
    grid-column: span 2;
}
.randevu-input-label {
    display: block;
    font-size: 0.8125rem;
    font-weight: 500;
    color: rgba(26, 43, 60, 0.6);
    margin-bottom: 0.375rem;
    letter-spacing: 0.01em;
}
.randevu-input {
    background: #FAFAFA;
    border: 1px solid rgba(26, 43, 60, 0.12);
    padding: 1rem;
    border-radius: 0.75rem;
    color: #1A2B3C;
    font-family: inherit;
    font-size: 0.9375rem;
    transition: all 0.3s ease;
    outline: none;
}
.randevu-input::placeholder {
    color: rgba(26, 43, 60, 0.4);
}
.randevu-input:focus {
    border-color: #C8A97E;
    background: #FFFFFF;
    box-shadow: 0 0 0 3px rgba(200, 169, 126, 0.18);
}
.randevu-modal-footer {
    margin-top: 2.5rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.randevu-btn-secondary {
    background: transparent;
    color: rgba(26, 43, 60, 0.45);
    border: none;
    font-size: 0.9375rem;
    cursor: pointer;
    padding: 0.625rem 0;
    transition: color 0.3s ease;
    display: flex;
    align-items: center;
    gap: 0.375rem;
    font-family: inherit;
}
.randevu-btn-secondary:hover {
    color: #1A2B3C;
}
.randevu-btn-next {
    background: #1A2B3C;
    color: #ffffff;
    border: none;
    padding: 0.875rem 1.75rem;
    font-size: 0.9375rem;
    font-weight: 600;
    border-radius: 3.125rem;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-left: auto;
    font-family: inherit;
}
.randevu-btn-next:hover:not(:disabled) {
    background: #243650;
    transform: translateY(-1px);
    box-shadow: 0 0.5rem 1.5rem rgba(26, 43, 60, 0.2);
}
.randevu-btn-next:disabled {
    opacity: 0.35;
    cursor: not-allowed;
    transform: none;
    box-shadow: none;
}
.randevu-btn-submit {
    background: linear-gradient(135deg, #C8A97E 0%, #D98C70 100%);
    color: #ffffff;
    border: none;
    padding: 0.875rem 2rem;
    font-size: 0.9375rem;
    font-weight: 600;
    border-radius: 3.125rem;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 0.375rem 1.25rem rgba(200, 169, 126, 0.45);
    margin-left: auto;
    font-family: inherit;
}
.randevu-btn-submit:hover {
    background: linear-gradient(135deg, #d4b78a 0%, #e0967a 100%);
    box-shadow: 0 0.5rem 1.5625rem rgba(200, 169, 126, 0.6);
    transform: translateY(-1px);
}
@media (max-width: 48em) {
    .randevu-wrapper {
        min-height: unset;
        padding: 2rem 0;
    }
    .randevu-trigger-section {
        margin: 0 1rem;
        padding: 3rem 1.5rem;
    }
    .randevu-trigger-title {
        font-size: 1.5rem;
    }
    .randevu-modal-container {
        max-height: calc(100dvh - 2rem);
        overflow-y: auto;
        -webkit-overflow-scrolling: touch;
    }
    .randevu-step-container {
        padding: 3rem 2rem 2rem;
    }
    .randevu-step-title {
        font-size: 1.25rem;
    }
}
@media (max-width: 37.5em) {
    .randevu-overlay {
        align-items: flex-end;
        padding: 0;
    }
    .randevu-modal-container {
        max-width: 100%;
        width: 100%;
        border-radius: 1.25rem 1.25rem 0 0;
        max-height: calc(100dvh - 3rem);
        overflow-y: auto;
        -webkit-overflow-scrolling: touch;
        transform: translateY(100%);
    }
    .randevu-overlay.randevu-active .randevu-modal-container {
        transform: translateY(0);
    }
    .randevu-wrapper {
        min-height: unset;
        padding: 1.5rem 0;
    }
    .randevu-trigger-section {
        margin: 0 1rem;
        padding: 2.5rem 1.25rem;
        border-radius: 1.25rem;
    }
    .randevu-trigger-title {
        font-size: 1.375rem;
    }
    .randevu-trigger-desc {
        font-size: 0.875rem;
    }
    .randevu-btn-primary {
        width: 100%;
        padding: 1rem;
    }
    .randevu-step-container {
        padding: 2.75rem 1.25rem 1.5rem;
    }
    .randevu-step-title {
        font-size: 1.125rem;
        margin-bottom: 1.25rem;
    }
    .randevu-step-subtitle {
        font-size: 0.8125rem;
        margin-bottom: 1.25rem;
    }
    .randevu-option-label {
        padding: 1rem;
        min-height: 3.25rem;
    }
    .randevu-option-text {
        font-size: 0.875rem;
    }
    .randevu-form-grid {
        grid-template-columns: 1fr;
        gap: 0.75rem;
    }
    .randevu-form-group.randevu-full-width {
        grid-column: span 1;
    }
    .randevu-input {
        font-size: 1rem;
        padding: 0.9375rem 0.875rem;
    }
    .randevu-modal-footer {
        flex-wrap: wrap;
        gap: 0.75rem;
        margin-top: 1.75rem;
    }
    .randevu-btn-next,
    .randevu-btn-submit {
        width: 100%;
        margin-left: 0;
        text-align: center;
        justify-content: center;
        padding: 1rem;
        font-size: 1rem;
    }
    .randevu-btn-secondary {
        font-size: 0.875rem;
        order: 2;
    }
    .randevu-close-btn {
        top: 1rem;
        right: 1rem;
        padding: 0.5rem;
        font-size: 1.5rem;
    }
}
@media (max-width: 22.5em) {
    .randevu-trigger-title {
        font-size: 1.25rem;
    }
    .randevu-step-title {
        font-size: 1.0625rem;
    }
    .randevu-step-container {
        padding: 2.5rem 1rem 1.25rem;
    }
}
