/* ==========================================================================
   Khadaan Urlan - Premium Stylesheet
   ========================================================================== */
:root {
    --color-bg: #ffffff;
    --color-bg-light: #fbfbfb;
    --color-bg-dark: #0f1520;
    --color-text: #2a2a2a;
    --color-text-light: #f5f5f5;
    --color-gold: #b88a44;
    --color-gold-light: #dfbf7f;
    --color-gold-dark: #8f6a32;
    --color-accent: #2a3f58;
    --pattern-url: url('../images/pattern_bg.webp');
    
    --font-heading: 'Cormorant Garamond', serif;
    --font-body: 'Montserrat', sans-serif;
    
    --transition: all 0.4s cubic-bezier(0.25, 1, 0.5, 1);
    --transition-slow: all 0.8s cubic-bezier(0.25, 1, 0.5, 1);
    
    --shadow-sm: 0 4px 15px rgba(0, 0, 0, 0.03);
    --shadow-md: 0 15px 40px rgba(0, 0, 0, 0.08);
    --shadow-lg: 0 30px 60px rgba(197, 160, 89, 0.15);
    
    --glass-bg: rgba(255, 255, 255, 0.6);
    --glass-border: rgba(255, 255, 255, 0.8);
}

/* ==========================================================================
   Reset & Base
   ========================================================================== */
* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; font-size: 16px; overflow-x: hidden; }
body {
    font-family: var(--font-body); color: var(--color-text); background-color: var(--color-bg);
    line-height: 1.8; overflow-x: hidden; letter-spacing: 0.3px;
    -webkit-font-smoothing: antialiased;
    background: linear-gradient(180deg, #f6f7fb 0%, #ffffff 32%);
}
h1, h2, h3, h4, h5, h6 { font-family: var(--font-heading); font-weight: 600; line-height: 1.3; margin-bottom: 1rem; }
a { text-decoration: none; color: inherit; transition: var(--transition); cursor: pointer; }
ul { list-style: none; }
img { max-width: 100%; height: auto; display: block; }

/* ==========================================================================
   Custom Cursor & Preloader
   ========================================================================== */
.custom-cursor {
    width: 20px; height: 20px; border: 2px solid var(--color-gold); border-radius: 50%;
    position: fixed; pointer-events: none; z-index: 9999;
    transform: translate(-50%, -50%); transition: width 0.3s, height 0.3s, background-color 0.3s;
    mix-blend-mode: difference;
}
.custom-cursor.hover { width: 40px; height: 40px; background-color: rgba(197, 160, 89, 0.3); }

#preloader {
    position: fixed; top: 0; left: 0; width: 100%; height: 100%;
    background: var(--color-bg-dark); z-index: 10000;
    display: flex; flex-direction: column; justify-content: center; align-items: center;
    transition: opacity 0.8s ease, visibility 0.8s;
}
#preloader .loader-logo { font-family: var(--font-heading); font-size: 2.5rem; color: var(--color-gold); letter-spacing: 5px; text-transform: uppercase; margin-bottom: 2rem; animation: pulse 2s infinite alternate; }
.loader-line { width: 100px; height: 2px; background: rgba(255,255,255,0.1); position: relative; overflow: hidden; }
.loader-line::after { content: ''; position: absolute; left: -100%; top: 0; width: 100%; height: 100%; background: var(--color-gold); animation: loadLine 1.5s infinite ease-in-out; }
@keyframes loadLine { 0% { left: -100%; } 100% { left: 100%; } }
@keyframes pulse { 0% { opacity: 0.5; } 100% { opacity: 1; } }

/* ==========================================================================
   Utilities & Layout
   ========================================================================== */
.container { width: 90%; max-width: 1200px; margin: 0 auto; position: relative; z-index: 2; }
.section { padding: 8rem 0; position: relative; }
.text-center { text-align: center; }
.gold-text { color: var(--color-gold); }
.bg-light { background-color: var(--color-bg-light); }
.pattern-lite {
    background-image:
        linear-gradient(rgba(255, 255, 255, 0.9), rgba(255, 255, 255, 0.9)),
        var(--pattern-url);
    background-repeat: repeat;
    background-size: auto, 220px 220px;
    background-position: center;
}
.bg-dark { background-color: var(--color-bg-dark); color: var(--color-text-light); }
.mt-md { margin-top: 2rem; }
.mt-lg { margin-top: 4rem; }
.mb-md { margin-bottom: 1.5rem; }
.mb-lg { margin-bottom: 2.5rem; }

.sub-heading { display: block; font-size: 0.85rem; text-transform: uppercase; letter-spacing: 4px; color: var(--color-gold); margin-bottom: 1rem; font-weight: 600; }
.section-header h2 { font-size: 3rem; margin-bottom: 1.5rem; }
.decorative-icon { width: 50px; height: 1px; background-color: var(--color-gold); margin: 0 auto; position: relative; }
.decorative-icon::before, .decorative-icon::after { content: ''; position: absolute; top: -4px; width: 8px; height: 8px; border: 1px solid var(--color-gold); transform: rotate(45deg); }
.decorative-icon::before { left: -15px; } .decorative-icon::after { right: -15px; }

.grid { display: grid; gap: 3rem; }
.grid-2 { grid-template-columns: repeat(auto-fit, minmax(320px, 1fr)); }
.grid-3 { grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); }
.grid-4 { grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); }

/* ==========================================================================
   Buttons
   ========================================================================== */
.btn {
    display: inline-block; padding: 1.2rem 3rem; font-size: 0.85rem; text-transform: uppercase;
    letter-spacing: 3px; border: none; font-weight: 500; font-family: var(--font-body);
    position: relative; overflow: hidden; transition: var(--transition); z-index: 1; cursor: pointer;
}
.btn-primary { background-color: var(--color-text); color: var(--color-bg); }
.btn-primary::before { content: ''; position: absolute; top: 0; left: 0; width: 0; height: 100%; background-color: var(--color-gold); z-index: -1; transition: var(--transition); }
.btn-primary:hover::before { width: 100%; }
.btn-primary:hover { color: #fff; box-shadow: 0 10px 20px rgba(197, 160, 89, 0.3); }

/* ==========================================================================
   Navbar & Mobile Menu
   ========================================================================== */
.navbar { position: fixed; top: 0; left: 0; width: 100%; background-color: rgba(255, 255, 255, 0.12); z-index: 1000; padding: 1.5rem 0; border-bottom: 1px solid rgba(255,255,255,0.12); transition: var(--transition); }
.navbar.scrolled { padding: 0.8rem 0; background-color: rgba(255, 255, 255, 0.95); box-shadow: var(--shadow-sm); border-bottom: 1px solid rgba(0,0,0,0.05); }
.nav-container { display: flex; justify-content: space-between; align-items: center; width: 90%; max-width: 1400px; margin: 0 auto; }
.logo-text { font-family: var(--font-heading); font-size: 1.8rem; font-weight: 700; color: #fff; letter-spacing: 2px; transition: var(--transition); display: inline-flex; align-items: center; gap: 0.7rem; }
.brand-logo { width: 40px; height: 40px; border-radius: 50%; object-fit: cover; border: 1px solid rgba(255, 255, 255, 0.65); box-shadow: 0 4px 14px rgba(0, 0, 0, 0.25); }
.brand-name { line-height: 1; }
.navbar.scrolled .logo-text { color: var(--color-text); }
.logo-text span { color: var(--color-gold); }

.nav-links { display: none; }
@media (min-width: 992px) {
    .nav-links { display: flex; gap: 2.5rem; font-size: 0.85rem; font-weight: 500; text-transform: uppercase; letter-spacing: 1px; }
    .nav-links a { color: rgba(255,255,255,0.9); position: relative; }
    .navbar.scrolled .nav-links a { color: var(--color-text); }
    .nav-links a::after { content: ''; position: absolute; bottom: -5px; left: 0; width: 0; height: 1px; background-color: var(--color-gold); transition: width 0.3s ease; }
    .nav-links a:hover { color: var(--color-gold); }
    .nav-links a:hover::after { width: 100%; }
}

.lang-toggle button { background: none; border: none; color: rgba(255,255,255,0.5); font-weight: 600; transition: var(--transition); }
.navbar.scrolled .lang-toggle button { color: #aaa; }
.lang-toggle button.active, .lang-toggle button:hover { color: var(--color-gold); }
.lang-toggle span { color: rgba(255,255,255,0.3); margin: 0 0.5rem; }
.navbar.scrolled .lang-toggle span { color: #ddd; }

/* Mobile Menu Button */
.mobile-menu-btn { display: block; background: none; border: none; width: 30px; height: 20px; position: relative; z-index: 1001; }
.mobile-menu-btn span { display: block; width: 100%; height: 2px; background: #fff; position: absolute; transition: var(--transition); }
.navbar.scrolled .mobile-menu-btn span { background: var(--color-text); }
.mobile-menu-btn span:nth-child(1) { top: 0; }
.mobile-menu-btn span:nth-child(2) { top: 9px; }
.mobile-menu-btn span:nth-child(3) { top: 18px; }
.mobile-menu-btn.active span:nth-child(1) { top: 9px; transform: rotate(45deg); background: var(--color-text); }
.mobile-menu-btn.active span:nth-child(2) { opacity: 0; }
.mobile-menu-btn.active span:nth-child(3) { top: 9px; transform: rotate(-45deg); background: var(--color-text); }
@media (min-width: 992px) { .mobile-menu-btn { display: none; } }

/* Mobile Drawer */
.mobile-drawer { position: fixed; top: 0; right: -100%; width: min(300px, 85vw); height: 100vh; background: #fff; z-index: 1000; box-shadow: -10px 0 30px rgba(0,0,0,0.1); transition: right 0.5s cubic-bezier(0.25, 1, 0.5, 1); display: flex; flex-direction: column; justify-content: center; padding: 2rem; }
.mobile-drawer.open { right: 0; }
.mobile-drawer a { display: block; font-size: 1.2rem; margin-bottom: 1.5rem; font-family: var(--font-heading); color: var(--color-text); text-transform: uppercase; }
.drawer-overlay { position: fixed; top: 0; left: 0; width: 100%; height: 100vh; background: rgba(0,0,0,0.5); z-index: 999; opacity: 0; visibility: hidden; transition: var(--transition); }
.drawer-overlay.open { opacity: 1; visibility: visible; }

/* ==========================================================================
   Hero Section & Particles
   ========================================================================== */
.hero { height: 100vh; display: flex; align-items: center; justify-content: center; position: relative; overflow: hidden; background-color: var(--color-bg-dark); }
.hero-bg { position: absolute; top: 0; left: 0; width: 100%; height: 100%; background: url('../images/1_real.webp') center/cover; opacity: 0.5; animation: kenBurns 20s infinite alternate linear; }
@keyframes kenBurns { 0% { transform: scale(1); } 100% { transform: scale(1.1); } }
#particles-js { position: absolute; top: 0; left: 0; width: 100%; height: 100%; z-index: 1; }
.hero-overlay { position: absolute; top: 0; left: 0; width: 100%; height: 100%; background: radial-gradient(circle at 50% 35%, rgba(43, 63, 89, 0.3) 0%, rgba(12, 19, 33, 0.93) 68%); z-index: 1; }

.hero-content { position: relative; z-index: 2; text-align: center; max-width: 900px; color: #fff; }
.hero .title { font-size: clamp(3rem, 6vw, 6rem); font-weight: 400; margin-bottom: 1rem; line-height: 1.1; }
.hero .title span { font-style: italic; color: var(--color-gold); }
.hero .tagline { font-size: 1.2rem; color: #ddd; margin-bottom: 3rem; font-weight: 300; letter-spacing: 1px; min-height: 30px; }
.hero-icons { display: flex; justify-content: center; flex-wrap: wrap; gap: 0.6rem; margin: -1.4rem 0 1.6rem; }
.hero-icons span { display: inline-flex; align-items: center; padding: 0.38rem 0.72rem; border: 1px solid rgba(223, 191, 127, 0.45); border-radius: 999px; font-size: 0.72rem; color: #efe6d3; background: rgba(16, 25, 40, 0.35); }

.scroll-indicator { position: absolute; bottom: 40px; left: 50%; transform: translateX(-50%); z-index: 2; color: #fff; font-size: 0.8rem; letter-spacing: 2px; text-transform: uppercase; display: flex; flex-direction: column; align-items: center; gap: 10px; animation: bounce 2s infinite; }
.scroll-indicator::after { content: ''; width: 1px; height: 30px; background: var(--color-gold); }
@keyframes bounce { 0%, 20%, 50%, 80%, 100% { transform: translateY(0) translateX(-50%); } 40% { transform: translateY(-15px) translateX(-50%); } 60% { transform: translateY(-7px) translateX(-50%); } }

/* ==========================================================================
   Stats Counter Section
   ========================================================================== */
.stats-section { background: var(--color-gold); padding: 4rem 0; color: #fff; position: relative; }
.stats-section .stat-item p { color: rgba(255, 255, 255, 0.92); }
.stats-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 2rem; text-align: center; }
.stat-item h3 { font-size: 3.5rem; margin-bottom: 0.5rem; font-family: var(--font-body); font-weight: 300; }
.stat-item p { font-size: 0.9rem; text-transform: uppercase; letter-spacing: 2px; font-weight: 500; }
@media (max-width: 768px) { .stats-grid { grid-template-columns: repeat(2, 1fr); } }

/* ==========================================================================
   Process Timeline
   ========================================================================== */
.process-timeline { position: relative; max-width: 800px; margin: 4rem auto 0; }
.process-timeline::before { content: ''; position: absolute; top: 0; left: 50px; height: 100%; width: 2px; background: rgba(197, 160, 89, 0.3); }
.process-step { display: flex; align-items: flex-start; margin-bottom: 4rem; position: relative; }
.step-number { width: 100px; height: 100px; background: #fff; border: 2px solid var(--color-gold); border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 2rem; font-family: var(--font-heading); color: var(--color-gold); z-index: 2; flex-shrink: 0; box-shadow: var(--shadow-md); transition: var(--transition); }
.process-step:hover .step-number { background: var(--color-gold); color: #fff; transform: scale(1.1); }
.step-content { padding-left: 3rem; padding-top: 1rem; }
.step-content h3 { font-size: 1.8rem; margin-bottom: 1rem; }
.step-content p { color: #666; }

/* ==========================================================================
   Team Section
   ========================================================================== */
.team-card { position: relative; overflow: hidden; border-radius: 4px; box-shadow: var(--shadow-sm); group: hover; }
.team-img { width: 100%; aspect-ratio: 3/4; object-fit: cover; transition: transform 0.6s ease; }
.team-card:hover .team-img { transform: scale(1.05); }
.team-info { position: absolute; bottom: -10px; left: 0; width: 100%; padding: 2rem; background: linear-gradient(to top, rgba(0,0,0,0.9), transparent); color: #fff; transform: translateY(20px); opacity: 0; transition: var(--transition); }
.team-card:hover .team-info { transform: translateY(0); opacity: 1; bottom: 0; }
.team-info h4 { font-size: 1.5rem; margin-bottom: 0.2rem; }
.team-info p { color: var(--color-gold); font-size: 0.9rem; text-transform: uppercase; letter-spacing: 1px; margin-bottom: 1rem; }
.team-social { display: flex; gap: 1rem; }
.team-social a { color: #fff; font-size: 1.2rem; }
.team-social a:hover { color: var(--color-gold); }

/* ==========================================================================
   Products / Masonry Gallery
   ========================================================================== */
.gallery-filters { display: flex; justify-content: center; gap: 1.5rem; margin-bottom: 3rem; flex-wrap: wrap; }
.filter-btn { background: none; border: none; font-size: 0.9rem; text-transform: uppercase; letter-spacing: 2px; color: #888; font-family: var(--font-body); padding-bottom: 5px; border-bottom: 2px solid transparent; transition: var(--transition); }
.filter-btn.active, .filter-btn:hover { color: var(--color-text); border-bottom-color: var(--color-gold); }

.masonry-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 1.2rem; align-items: stretch; }
.masonry-item { border-radius: 10px; overflow: hidden; position: relative; cursor: pointer; min-height: 220px; background: #ececec; }
.masonry-item img { width: 100%; height: 100%; object-fit: cover; aspect-ratio: 4 / 5; transition: transform 0.6s ease; }
.masonry-item:hover img { transform: scale(1.08); }
.masonry-overlay { position: absolute; inset: 0; background: rgba(0,0,0,0.5); display: flex; flex-direction: column; justify-content: center; align-items: center; opacity: 0; transition: var(--transition); color: #fff; text-align: center; padding: 2rem; }
.masonry-item:hover .masonry-overlay { opacity: 1; }
.masonry-overlay h4 { font-size: 1.5rem; transform: translateY(-20px); transition: transform 0.4s ease; }
.masonry-item:hover .masonry-overlay h4 { transform: translateY(0); }
.zoom-icon { width: 50px; height: 50px; border-radius: 50%; background: var(--color-gold); display: flex; justify-content: center; align-items: center; margin-top: 1rem; transform: translateY(20px); transition: transform 0.4s ease 0.1s; }
.masonry-item:hover .zoom-icon { transform: translateY(0); }

/* ==========================================================================
   Pricing Section
   ========================================================================== */
.pricing-card { background: #fff; padding: 4rem 3rem; border-radius: 4px; box-shadow: var(--shadow-md); text-align: center; transition: var(--transition); border: 1px solid #eee; position: relative; overflow: hidden; }
.pricing-card:hover { transform: translateY(-15px); box-shadow: var(--shadow-lg); border-color: var(--color-gold-light); }
.pricing-card.popular { background: var(--color-bg-dark); color: #fff; transform: scale(1.05); border: none; }
.pricing-card.popular:hover { transform: scale(1.05) translateY(-10px); }
.popular-badge { position: absolute; top: 20px; right: -35px; background: var(--color-gold); color: #fff; padding: 5px 40px; transform: rotate(45deg); font-size: 0.8rem; font-weight: 600; letter-spacing: 1px; text-transform: uppercase; }

.pricing-icon { font-size: 3rem; color: var(--color-gold); margin-bottom: 1.5rem; }
.pricing-card h3 { font-size: 1.8rem; margin-bottom: 1rem; }
.price { font-size: 2.5rem; font-family: var(--font-heading); color: var(--color-gold); margin-bottom: 2rem; }
.price span { font-size: 1rem; color: #888; font-family: var(--font-body); }
.pricing-list { margin-bottom: 3rem; text-align: left; }
.pricing-list li { margin-bottom: 1rem; padding-left: 1.5rem; position: relative; color: #666; }
.pricing-card.popular .pricing-list li { color: #ccc; }
.pricing-list li::before { content: '✓'; position: absolute; left: 0; color: var(--color-gold); font-weight: bold; }
.pricing-card .btn { width: 100%; }

/* ==========================================================================
   Testimonials Carousel
   ========================================================================== */
.testimonial-wrap { max-width: 900px; margin: 2rem auto 0; text-align: center; position: relative; background: linear-gradient(170deg, rgba(255, 255, 255, 0.94) 0%, rgba(248, 249, 253, 0.94) 100%); border: 1px solid rgba(184, 138, 68, 0.16); border-radius: 14px; padding: 1.2rem; box-shadow: var(--shadow-sm); }
.quote-icon { font-size: 4rem; color: rgba(197, 160, 89, 0.2); font-family: var(--font-heading); margin-bottom: -20px; line-height: 1; }
.testimonial-slider { overflow: hidden; }
.testimonial-track { display: flex; transition: transform 0.5s ease; }
.testimonial-slide { min-width: 100%; padding: 2rem; }
.testimonial-text { font-size: 1.5rem; font-family: var(--font-heading); font-style: italic; color: #444; margin-bottom: 2rem; line-height: 1.6; }
.client-info h5 { font-family: var(--font-body); font-size: 1.1rem; margin-bottom: 0.2rem; }
.client-info p { color: var(--color-gold); font-size: 0.9rem; text-transform: uppercase; letter-spacing: 1px; }
.testimonial-meta { margin-top: 1rem; display: flex; justify-content: center; gap: 1rem; flex-wrap: wrap; color: #617086; font-size: 0.78rem; letter-spacing: 0.03em; }
.slider-dots { display: flex; justify-content: center; gap: 10px; margin-top: 2rem; }
.dot { width: 10px; height: 10px; border-radius: 50%; background: #ddd; cursor: pointer; transition: var(--transition); }
.dot.active { background: var(--color-gold); transform: scale(1.3); }

/* ==========================================================================
   FAQ Accordion
   ========================================================================== */
.faq-container { max-width: 800px; margin: 0 auto; }
.faq-item { border-bottom: 1px solid #eee; margin-bottom: 1rem; }
.faq-question { padding: 1.5rem 0; display: flex; justify-content: space-between; align-items: center; cursor: pointer; font-family: var(--font-heading); font-size: 1.4rem; font-weight: 600; color: var(--color-text); transition: var(--transition); }
.faq-question:hover, .faq-item.active .faq-question { color: var(--color-gold); }
.faq-toggle { width: 30px; height: 30px; border-radius: 50%; background: #f9f9f9; display: flex; justify-content: center; align-items: center; position: relative; transition: var(--transition); }
.faq-toggle::before, .faq-toggle::after { content: ''; position: absolute; background: #888; transition: var(--transition); }
.faq-toggle::before { width: 12px; height: 2px; }
.faq-toggle::after { width: 2px; height: 12px; }
.faq-item.active .faq-toggle { background: var(--color-gold); }
.faq-item.active .faq-toggle::before, .faq-item.active .faq-toggle::after { background: #fff; }
.faq-item.active .faq-toggle::after { transform: rotate(90deg); opacity: 0; }
.faq-answer { max-height: 0; overflow: hidden; transition: max-height 0.5s ease; }
.faq-answer p { padding-bottom: 1.5rem; color: #666; }

/* ==========================================================================
   Cards & Glassmorphism
   ========================================================================== */
.card { background: linear-gradient(170deg, rgba(255, 255, 255, 0.96) 0%, rgba(248, 250, 255, 0.92) 100%); border: 1px solid rgba(184, 138, 68, 0.12); padding: 4rem; border-radius: 12px; box-shadow: var(--shadow-sm); transition: var(--transition); height: 100%; }
.card:hover { box-shadow: var(--shadow-lg); transform: translateY(-10px); background: rgba(255, 255, 255, 0.9); }
.card-icon { width: 60px; height: 60px; border-radius: 50%; background-color: #f0f0f0; display: flex; align-items: center; justify-content: center; font-size: 1.5rem; margin-bottom: 2rem; color: #888; transition: var(--transition); }
.card:hover .card-icon { background-color: var(--color-gold); color: #fff; transform: rotate(360deg); }
.card-icon.gold { background-color: rgba(197, 160, 89, 0.1); color: var(--color-gold); }
.solution-card.highlight { border-top: 3px solid var(--color-gold); background: rgba(255, 255, 255, 0.9); }

/* ==========================================================================
   Contact & Footer
   ========================================================================== */
.contact-wrapper { background: #fff; border-radius: 12px; box-shadow: var(--shadow-lg); overflow: hidden; border: 1px solid rgba(184, 138, 68, 0.12); }
.contact-info-box { background: linear-gradient(160deg, #101826 0%, #1d2b40 100%); color: #fff; padding: 4rem; }
.contact-form-box { padding: 4rem; }
.form-group { margin-bottom: 1.5rem; position: relative; }
.form-group input, .form-group textarea { width: 100%; padding: 1rem 0; border: none; border-bottom: 1px solid #ddd; background: transparent; font-family: var(--font-body); font-size: 1rem; transition: var(--transition); color: var(--color-text); }
.form-group label { position: absolute; top: 1rem; left: 0; color: #888; font-size: 1rem; transition: var(--transition); pointer-events: none; }
.form-group input:focus ~ label, .form-group input:valid ~ label, .form-group textarea:focus ~ label, .form-group textarea:valid ~ label { top: -10px; font-size: 0.8rem; color: var(--color-gold); }
.form-group input:focus, .form-group textarea:focus { outline: none; border-bottom-color: var(--color-gold); }

.site-footer { background: #0a0a0a; color: #888; padding: 4rem 0 2rem; }
.footer-logo { font-family: var(--font-heading); font-size: 2rem; color: #fff; margin-bottom: 1.5rem; }
.footer-logo span { color: var(--color-gold); }
.footer-links { display: flex; gap: 1.5rem; margin-bottom: 2rem; }
.footer-links a:hover { color: var(--color-gold); }
.footer-bottom { border-top: 1px solid rgba(255,255,255,0.1); padding-top: 2rem; margin-top: 2rem; display: flex; justify-content: space-between; align-items: center; font-size: 0.9rem; }

/* ==========================================================================
   Animations & Reveals
   ========================================================================== */
.reveal { opacity: 0; transform: translateY(20px); transition: all 0.38s ease-out; }
.reveal.active { opacity: 1; transform: translateY(0); }
.reveal-left { opacity: 0; transform: translateX(-20px); transition: all 0.38s ease-out; }
.reveal-left.active { opacity: 1; transform: translateX(0); }
.reveal-right { opacity: 0; transform: translateX(20px); transition: all 0.38s ease-out; }
.reveal-right.active { opacity: 1; transform: translateX(0); }

/* Lightbox */
.lightbox { position: fixed; inset: 0; background: rgba(0,0,0,0.9); z-index: 10000; display: flex; justify-content: center; align-items: center; opacity: 0; visibility: hidden; transition: var(--transition); }
.lightbox.active { opacity: 1; visibility: visible; }
.lightbox-content { max-width: 90%; max-height: 90vh; transform: scale(0.9); transition: var(--transition); }
.lightbox.active .lightbox-content { transform: scale(1); }
.lightbox-close { position: absolute; top: 30px; right: 30px; color: #fff; font-size: 2rem; background: none; border: none; cursor: pointer; }

/* Intro screen and audio controls */
.intro-screen {
    position: fixed;
    inset: 0;
    z-index: 12000;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 1rem;
    transition: opacity 0.5s ease, visibility 0.5s ease;
}
.intro-screen.hidden { opacity: 0; visibility: hidden; pointer-events: none; }
.intro-backdrop {
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 50% 20%, rgba(184, 138, 68, 0.28) 0%, rgba(10, 14, 22, 0.95) 58%), url('../images/pattern_bg.webp') center / cover;
    filter: saturate(1.1);
}
.intro-content {
    position: relative;
    width: min(680px, 100%);
    text-align: center;
    color: #fff;
    padding: 2rem 1.2rem;
    border-radius: 16px;
    background: rgba(10, 14, 22, 0.52);
    border: 1px solid rgba(223, 191, 127, 0.4);
    box-shadow: 0 24px 70px rgba(0, 0, 0, 0.45);
    animation: introFloat 4s ease-in-out infinite;
}
@keyframes introFloat { 0%,100% { transform: translateY(0); } 50% { transform: translateY(-8px); } }
.intro-logo {
    width: 90px;
    height: 90px;
    object-fit: cover;
    border-radius: 50%;
    margin: 0 auto 1rem;
    border: 2px solid rgba(223, 191, 127, 0.85);
}
.intro-kicker {
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: #d9bc86;
    font-size: 0.75rem;
    margin-bottom: 0.8rem;
}
.intro-content h2 { font-size: clamp(1.5rem, 4vw, 2.3rem); margin-bottom: 0.7rem; }
.intro-description { color: rgba(255, 255, 255, 0.86); max-width: 560px; margin: 0 auto 1.4rem; line-height: 1.65; }
.intro-btn { min-width: 220px; }

.audio-toggle {
    position: fixed;
    left: 20px;
    bottom: 20px;
    z-index: 11000;
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: rgba(16, 25, 40, 0.6);
    backdrop-filter: blur(8px);
    border: 1px solid rgba(223, 191, 127, 0.4);
    color: var(--color-gold-light);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.25);
    transition: var(--transition);
}
.audio-toggle:hover {
    background: rgba(16, 25, 40, 0.85);
    transform: scale(1.05);
    color: var(--color-gold);
}
.audio-toggle.muted .icon-sound-on { display: none; }
.audio-toggle.muted .icon-sound-off { display: block !important; }

/* Premium motion and compact scale */

/* Mobile and tablet polish */
@media (max-width: 991px) {
    html { font-size: 15px; }
    .section { padding: 4rem 0; }
    .section-header h2 { font-size: 1.85rem; margin-bottom: 0.9rem; }
    .sub-heading { letter-spacing: 2px; }
    .hero { min-height: 100svh; height: 100svh; }
    .hero-content { max-width: 90%; padding: 0 15px; }
    .hero .title { font-size: clamp(2.4rem, 10vw, 3.5rem); margin-bottom: 1.2rem; line-height: 1.15; font-weight: 500; }
    .hero .tagline { font-size: 1.05rem; margin-bottom: 2.5rem; line-height: 1.5; color: rgba(255, 255, 255, 0.95); font-weight: 300; }
    .hero-icons { display: none; }
    .hero .btn { padding: 1.1rem 2.2rem; border-radius: 30px; }
    .scroll-indicator { bottom: 24px; font-size: 0.72rem; }
    .process-timeline::before { left: 34px; }
    .process-step { margin-bottom: 2rem; }
    .step-number { width: 62px; height: 62px; font-size: 1.35rem; }
    .step-content { padding-left: 1.3rem; padding-top: 0.2rem; }
    .step-content h3 { font-size: 1.16rem; margin-bottom: 0.4rem; }
    .step-content p { font-size: 0.9rem; line-height: 1.6; }
    .card, .pricing-card, .contact-info-box, .contact-form-box { padding: 1.25rem; border-radius: 10px; }
    #features .grid-3 { grid-template-columns: 1fr; gap: 0.8rem; }
    #features .card {
        display: grid;
        grid-template-columns: 42px 1fr;
        align-items: start;
        column-gap: 0.7rem;
        row-gap: 0.25rem;
        padding: 0.9rem;
    }
    #features .card-icon {
        width: 42px;
        height: 42px;
        margin-bottom: 0;
        font-size: 1rem;
        grid-row: 1 / span 2;
    }
    #features .card h3 {
        margin-bottom: 0.2rem;
        font-size: 1rem;
        line-height: 1.3;
    }
    #features .card p {
        margin: 0;
        font-size: 0.84rem;
        line-height: 1.55;
        color: #5c6777;
    }
    .pricing-card h3 { font-size: 1.35rem; }
    .price { font-size: 2rem; margin-bottom: 1rem; }
    .pricing-list { margin-bottom: 1.2rem; }
    .pricing-list li { font-size: 0.9rem; margin-bottom: 0.55rem; }
    .pricing-card.popular, .pricing-card.popular:hover { transform: none; }
    .masonry-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 0.5rem; }
    .masonry-item { min-height: auto; border-radius: 8px; }
    .masonry-item img { aspect-ratio: 1 / 1; border-radius: 8px; }
    .masonry-overlay { padding: 0.3rem; }
    .masonry-overlay h4 { font-size: 0.72rem; line-height: 1.25; }
    .zoom-icon { width: 28px; height: 28px; margin-top: 0.4rem; font-size: 0.8rem; }
    #testimonials { background: linear-gradient(180deg, #fbfcff 0%, #f3f6fc 100%); }
    .testimonial-wrap { margin-top: 1rem; border-radius: 12px; padding: 0.7rem; }
    .quote-icon { font-size: 2.6rem; margin-bottom: -10px; }
    .testimonial-slide { padding: 1.1rem 0.9rem; }
    .testimonial-text { font-size: 1.02rem; line-height: 1.65; margin-bottom: 1rem; }
    .testimonial-meta { font-size: 0.7rem; gap: 0.6rem; }
    .client-info h5 { font-size: 0.95rem; }
    .client-info p { font-size: 0.72rem; }

    #faq { background: linear-gradient(180deg, #f8f8f8 0%, #fdfdfd 100%); }
    #faq .faq-item {
        border: 1px solid #eae6dc;
        border-radius: 10px;
        padding: 0 0.7rem;
        background: #fff;
        margin-bottom: 0.7rem;
    }
    #faq .faq-question { font-size: 0.98rem; }
    #faq .faq-answer p { font-size: 0.86rem; line-height: 1.55; }

    #competitors, #financials { background: #f9fbff; }
    #business-model, #investment { background: #fcfaf6; }
    #competitors .card, #business-model .card, #investment .card {
        border-left: 3px solid rgba(184, 138, 68, 0.58);
    }
    #financials .stats-grid { gap: 0.65rem; }
    #financials .stat-item {
        background: #fff;
        border: 1px solid #ece6d9;
        border-radius: 10px;
        padding: 0.85rem 0.5rem;
    }
    .faq-question { padding: 1rem 0; }
    .footer-bottom { flex-direction: column; gap: 0.8rem; text-align: center; }
    .intro-content { padding: 1.3rem 1rem; }
    .intro-logo { width: 74px; height: 74px; }
    .team-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 0.5rem; }
    .team-card { border-radius: 8px; }
    .team-img { aspect-ratio: 1 / 1; }
    .team-info { opacity: 1; transform: translateY(0); bottom: 0; padding: 0.45rem; background: linear-gradient(to top, rgba(0,0,0,0.82), rgba(0,0,0,0.18)); }
    .team-info h4 { font-size: 0.78rem; margin-bottom: 0.05rem; line-height: 1.2; }
    .team-info p { display: none; }
    .team-social { gap: 0.4rem; }
    .team-social a { font-size: 0.72rem; }
}

/* Patterned sections (desktop/tablet only for speed) */
#testimonials,
#faq,
#business-model,
#investment {
    background-image:
        linear-gradient(rgba(250, 251, 254, 0.9), rgba(250, 251, 254, 0.9)),
        var(--pattern-url);
    background-repeat: repeat;
    background-size: auto, 230px 230px;
    background-position: center;
}

/* ==========================================================================
   Contact Section
   ========================================================================== */
.contact-section { position: relative; overflow: hidden; padding: 6rem 0; }
.contact-bg { position: absolute; inset: 0; background: url('../images/16_real.webp') center/cover; z-index: 0; }
.contact-overlay { position: absolute; inset: 0; background: linear-gradient(to top, rgba(10, 14, 22, 0.98), rgba(20, 30, 45, 0.85)); z-index: 1; }
.contact-info-compact { display: flex; flex-direction: column; gap: 1.5rem; max-width: 500px; margin: 0 auto; background: rgba(255,255,255,0.05); backdrop-filter: blur(12px); padding: 2.5rem; border-radius: 16px; border: 1px solid rgba(223, 191, 127, 0.2); text-align: left; }
.contact-item { display: flex; align-items: flex-start; gap: 1.5rem; }
.contact-item .contact-icon { font-size: 2rem; margin-bottom: 0; line-height: 1; }
.contact-item .contact-text strong { display: block; color: var(--color-gold); font-size: 1.1rem; margin-bottom: 0.3rem; }
.contact-item .contact-text p, .contact-item .contact-text a { color: #ddd; margin: 0; line-height: 1.5; text-decoration: none; font-size: 1rem; }
.contact-item .contact-social { display: flex; flex-direction: column; gap: 0.3rem; }
.contact-item .contact-social a:hover { color: var(--color-gold); }
.footer-inner { text-align: center; margin-top: 5rem; padding-top: 2rem; border-top: 1px solid rgba(255,255,255,0.1); position: relative; z-index: 2; }
.footer-inner .footer-logo { margin-bottom: 1rem; color: #fff; font-family: var(--font-heading); font-size: 1.5rem; letter-spacing: 2px; font-weight: 700; }
.footer-inner .footer-logo span { color: var(--color-gold); }
.footer-inner p { color: #888; font-size: 0.9rem; }

@media (max-width: 640px) {
    #testimonials,
    #faq,
    #business-model,
    #investment {
        background-image: none;
    }
}

@media (max-width: 640px) {
    .container, .nav-container { width: 92%; }
    .logo-text { font-size: 1rem; gap: 0.45rem; }
    .brand-logo { width: 32px; height: 32px; }
    .lang-toggle { display: flex; align-items: center; font-size: 0.9rem; }
    .stats-grid { grid-template-columns: 1fr 1fr; gap: 0.8rem; }
    .stat-item h3 { font-size: 1.65rem; }
    .stat-item p { font-size: 0.7rem; letter-spacing: 1px; }
    .faq-question { font-size: 1.1rem; gap: 0.75rem; }
    .mobile-drawer a { font-size: 1.02rem; margin-bottom: 1rem; }
    .audio-toggle { left: 16px; bottom: 16px; width: 44px; height: 44px; }
    .intro-content h2 { font-size: 1.35rem; }
    .intro-description { font-size: 0.88rem; margin-bottom: 1.1rem; }
    .intro-btn { width: 100%; min-width: auto; padding: 0.9rem 1.2rem; letter-spacing: 2px; }
    .masonry-overlay h4 { font-size: 0.64rem; }
    .zoom-icon { display: none; }
    .team-info h4 { font-size: 0.7rem; }
    #features .card { padding: 0.78rem; }
    #features .card h3 { font-size: 0.92rem; }
    #features .card p { font-size: 0.78rem; }
    .pricing-card { padding: 1.5rem; }
    .pricing-card h3 { font-size: 1.15rem; }
    .price { font-size: 1.5rem; margin-bottom: 0.8rem; }
    .price span { font-size: 0.85rem; }
    .pricing-list li { font-size: 0.82rem; margin-bottom: 0.4rem; }

    .hero { min-height: 100svh; height: auto; padding: 6rem 0 3rem; }
    .hero .title { font-size: 2.2rem; margin-bottom: 0.5rem; }
    .hero .tagline { font-size: 0.9rem; margin-bottom: 1.5rem; min-height: auto; }
    .hero-icons { margin: 0 0 1.5rem; }
    .hero-icons span { padding: 0.3rem 0.6rem; font-size: 0.65rem; }
    .philosophy-section { padding: 4rem 0; }
    .philosophy-grid { margin-top: 1.5rem; gap: 1rem; }
    .philosophy-card { padding: 1.2rem; }
    .philosophy-card .card-icon { font-size: 1.8rem; margin-bottom: 0.5rem; }
    .philosophy-card h3 { font-size: 1.15rem; margin-bottom: 0.5rem; }
    .philosophy-card p { font-size: 0.85rem; line-height: 1.5; }
    
    .contact-section { padding: 4rem 0; }
    .contact-info-compact { padding: 1.5rem; gap: 1.5rem; margin-top: 1.5rem; }
    .contact-item { gap: 1rem; }
    .contact-item .contact-icon { font-size: 1.8rem; }
    .contact-item .contact-text strong { font-size: 1rem; }
    .contact-item .contact-text p, .contact-item .contact-text a { font-size: 0.9rem; }
    .footer-inner { margin-top: 3rem; padding-top: 1.5rem; }
}

@media (hover: none), (pointer: coarse) {
    .custom-cursor { display: none !important; }
}

@media (prefers-reduced-motion: reduce) {
    *, *::before, *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
        scroll-behavior: auto !important;
    }
}


/* ==========================================================================
   Philosophy Section
   ========================================================================== */
.philosophy-section {
    position: relative;
    padding: 8rem 0;
    color: #fff;
    overflow: hidden;
}
.philosophy-bg {
    position: absolute;
    inset: 0;
    background: url('../images/2_real.webp') center/cover fixed;
    z-index: 0;
}
.philosophy-bg::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(10, 14, 22, 0.95) 0%, rgba(20, 30, 45, 0.85) 100%);
}
.philosophy-content {
    position: relative;
    z-index: 2;
    text-align: center;
}
.philosophy-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 3rem;
    margin-top: 4rem;
    text-align: left;
}
.philosophy-card {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(12px);
    border: 1px solid rgba(223, 191, 127, 0.2);
    padding: 4rem;
    border-radius: 16px;
    transition: var(--transition);
}
.philosophy-card:hover {
    transform: translateY(-10px);
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(223, 191, 127, 0.5);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}
.philosophy-card .card-icon {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    background: none;
    width: auto;
    height: auto;
    display: inline-block;
    color: #fff;
}
.philosophy-card .card-icon.gold {
    color: var(--color-gold);
}
.philosophy-card h3 {
    font-size: 1.8rem;
    margin-bottom: 1.2rem;
    color: var(--color-gold-light);
}
.philosophy-card p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.85);
}
.philosophy-card.solution {
    border-top: 4px solid var(--color-gold);
    background: linear-gradient(180deg, rgba(184, 138, 68, 0.1) 0%, rgba(255, 255, 255, 0.03) 100%);
}
.philosophy-card.solution strong {
    color: var(--color-gold-light);
    font-weight: 600;
}

@media (max-width: 991px) {
    .philosophy-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        margin-top: 2.5rem;
    }
    .philosophy-card {
        padding: 2rem;
    }
    .philosophy-card h3 {
        font-size: 1.4rem;
    }
    .philosophy-card p {
        font-size: 0.95rem;
    }
}
