/* =========================================
   1. CSS VARIABLES & THEME
   ========================================= */
:root {
  --c-black: #0A0A0A; --c-pure-black: #000000; --c-white: #FAFAFA; --c-pure-white: #FFFFFF;
  --c-gold: #C9A962; --c-gold-light: #D4BA7A; --c-gold-dim: #8A7445; --c-gold-deep: #6B5A38;
  --c-green: #0D5C43; --c-green-light: #14785A; --c-green-dark: #063D2C; --c-green-muted: #0A4A36;
  --c-cream: #F5EDE0; --c-cream-light: #FAF7F2; --c-cream-dark: #E8DDD0; --c-cream-muted: #DED4C5;
  --c-gray-100: #F5F5F4; --c-gray-200: #E5E5E3; --c-gray-300: #D4D4D2; --c-gray-400: #A3A3A1;
  --c-gray-500: #8B7D75; --c-gray-600: #525251; --c-gray-700: #3D3D3C; --c-gray-800: #262625; --c-gray-900: #171716;
  
  --bg-body: var(--c-black);
  --bg-body-secondary: #0D0D0D;
  --bg-card: #262626;
  --bg-card-hover: #161616;
  
  --text-main: var(--c-white);
  --text-muted: #9A9A98;
  --text-subtle: #6B6B69;
  --text-inverse: var(--c-black);
  
  --accent-gold: var(--c-gold);
  --accent-gold-hover: var(--c-gold-light);
  --accent-gold-dim: var(--c-gold-dim);
  
  --whatsapp-green: var(--c-green);
  --whatsapp-green-hover: var(--c-green-light);
  
  --light-bg: var(--c-cream);
  --light-bg-secondary: var(--c-cream-dark);
  --light-text: var(--c-green);
  --light-text-muted: #2D5C4A;
  --light-accent: var(--c-gold-dim);
  
  --overlay-color: rgba(10,10,10,0.75);
  --overlay-gradient-start: rgba(10,10,10,0.92);
  --overlay-gradient-mid: rgba(10,10,10,0.6);
  
  --glass-border: rgba(255,255,255,0.15);
  --glass-border-hover: rgba(255,255,255,0.3);
  --glass-bg: rgba(255,255,255,0.05);
  --glass-bg-hover: rgba(255,255,255,0.08);
  
  --shadow-sm: 0 2px 8px rgba(0,0,0,0.3);
  --shadow-md: 0 8px 30px rgba(0,0,0,0.4);
  --shadow-lg: 0 20px 60px rgba(0,0,0,0.5);
  --shadow-gold: 0 0 20px rgba(201,169,98,0.15);
  
  --radius: 0.5rem;
  --ease-out: cubic-bezier(0.19,1,0.22,1);
  --ease-expo: cubic-bezier(0.16,1,0.3,1);
  --diagram-color: #FFFFFF;
  --logo-filter: invert(1) brightness(2);

  --f-light: 'Gilroy-Light', sans-serif;
  --f-bold: 'Gilroy-Bold', sans-serif;
  --f-regular: 'Gilroy-Semibold', sans-serif;
  --f-medium: 'Gilroy-Medium', sans-serif;
}

@media (prefers-color-scheme: light) {
  :root {
    --bg-body: var(--c-pure-white);
    --bg-body-secondary: var(--c-cream-light);
    --bg-card: var(--c-cream);
    --bg-card-hover: var(--c-cream-dark);
    --text-main: var(--c-green);
    --text-muted: #4A6B5E;
    --text-subtle: #7A9189;
    --text-inverse: var(--c-pure-white);
    --accent-gold: var(--c-gold-dim);
    --accent-gold-hover: var(--c-gold);
    --accent-gold-dim: var(--c-gold-deep);
    --glass-border: rgba(13,92,67,0.2);
    --glass-border-hover: rgba(13,92,67,0.4);
    --glass-bg: rgba(13,92,67,0.04);
    --glass-bg-hover: rgba(13,92,67,0.08);
    --shadow-sm: 0 2px 8px rgba(13,92,67,0.08);
    --shadow-md: 0 8px 30px rgba(13,92,67,0.12);
    --shadow-lg: 0 20px 60px rgba(13,92,67,0.15);
    --shadow-gold: 0 0 20px rgba(138,116,69,0.2);
    --diagram-color: #000000;
  }
}

/* =========================================
   2. FONTS & RESET
   ========================================= */
@font-face { font-family: 'Gilroy-Light'; src: url('../fonts/Gilroy-Light.ttf') format('truetype'); font-weight: 300; font-display: swap; }
@font-face { font-family: 'Gilroy-Bold'; src: url('../fonts/Gilroy-Bold.ttf') format('truetype'); font-weight: 700; font-display: swap; }
@font-face { font-family: 'Gilroy-Regular'; src: url('../fonts/Gilroy-SemiBold.ttf') format('truetype'); font-weight: 400; font-display: swap; }
@font-face { font-family: 'Gilroy-Medium'; src: url('../fonts/Gilroy-SemiBold.ttf') format('truetype'); font-weight: 500; font-display: swap; }

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
body { background-color: var(--bg-body); color: var(--text-main); font-family: var(--f-light); font-weight: 300; overflow-x: hidden; letter-spacing: -0.01em; -webkit-font-smoothing: antialiased; transition: background-color 0.5s ease, color 0.5s ease; }
a, button { text-decoration: none; color: inherit; cursor: auto; outline: none; border: none; background: transparent; }
ul { list-style: none; }
img, video { max-width: 100%; display: block; filter: sepia(0.08) contrast(1.03); transition: transform 1.2s var(--ease-out); }

.hidden { display: none; }
.text-center { text-align: center; }
.text-inline { display: inline-block; }
.pe-none { pointer-events: none; }

/* Lenis Scrolling */
.lenis.lenis-smooth [data-lenis-prevent] { overscroll-behavior: contain; }
.lenis.lenis-stopped { overflow: hidden; }
html.lenis, html.lenis body { height: auto; }

/* =========================================
   3. TYPOGRAPHY & REVEALS
   ========================================= */
.micro-label { font-family: var(--f-medium); font-size: 0.65rem; text-transform: uppercase; letter-spacing: 0.25em; color: var(--accent-gold); display: block; margin-bottom: 1.5rem; opacity: 0.95; }
.micro-label--lg { font-size: 0.75rem; }
.micro-label--sm { font-size: 0.55rem; }
.micro-label--xs { font-size: 0.6rem; }
.micro-label--accent-dim { color: var(--light-accent); }

.section-title, h1, h2, h3, h4, h5, h6, .grid-card-title, .product-name, .experience-text, .faq-question { font-family: var(--f-light) !important; font-weight: 300 !important; letter-spacing: -0.02em; }
.section-title { font-size: clamp(2.8rem, 5vw, 4.5rem); line-height: 1.2; color: var(--text-main); margin-bottom: 2rem; }
.text-body, p { font-family: var(--f-light); color: var(--text-muted); line-height: 1.6; font-size: 0.95rem; opacity: 0.9; }

/* GSAP Reveal Wrappers */
.char-reveal-wrapper, .reveal-overflow { overflow: hidden; display: block; }
.char-reveal, .reveal-inner { display: inline-block; transform: translateY(110%); will-change: transform; }

/* =========================================
   4. CURSOR, PRELOADER, NOISE
   ========================================= */
.cursor-dot, .cursor-circle { position: fixed; top: 0; left: 0; pointer-events: none; z-index: 9999; transform: translate(-50%, -50%); }
.cursor-dot { width: 6px; height: 6px; background: var(--accent-gold); border-radius: 50%; box-shadow: var(--shadow-gold); z-index: 9999; }
.cursor-circle { width: 40px; height: 40px; border: 1px solid var(--glass-border); border-radius: 50%; z-index: 9998; transition: width 0.3s var(--ease-out), height 0.3s var(--ease-out), background 0.3s, backdrop-filter 0.3s; display: flex; align-items: center; justify-content: center; }
.cursor-text { font-size: 0.6rem; text-transform: uppercase; letter-spacing: 0.1em; opacity: 0; color: var(--text-inverse); font-weight: 600; }
body.hovering .cursor-circle { width: 70px; height: 70px; border-color: var(--glass-border-hover); background: var(--glass-bg); backdrop-filter: blur(2px); }
body.drag-cursor .cursor-circle { width: 90px; height: 90px; background: var(--accent-gold); border-color: transparent; }
body.drag-cursor .cursor-text { opacity: 1; }
body.drag-cursor .cursor-dot { opacity: 0; }

#preloader { position: fixed; inset: 0; background: var(--c-pure-black); z-index: 10000; display: flex; align-items: center; justify-content: center; }
.preloader-logo svg { height: 80px; width: auto; color: var(--c-gold); }
.noise-overlay { position: fixed; top: 0; left: 0; width: 100%; height: 100%; pointer-events: none; z-index: 9000; opacity: 0.025; 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"); }

/* =========================================
   5. BUTTONS & UI ELEMENTS
   ========================================= */
.btn-glass { position: relative; display: inline-flex; align-items: center; justify-content: space-between; gap: 24px; padding: 6px 6px 6px 28px; min-height: 36px; border: 1px solid var(--glass-border); background: var(--glass-bg); backdrop-filter: blur(10px); color: var(--text-main); text-transform: uppercase; font-size: 0.7rem; letter-spacing: 0.15em; font-weight: 300; font-family: var(--f-bold); overflow: hidden; transition: all 0.4s var(--ease-out); cursor: none; }
.btn-glass:hover { border-color: var(--accent-gold); box-shadow: var(--shadow-gold); background: var(--glass-bg-hover); }
.btn-glass.btn-dark { border-color: var(--glass-border); background: var(--glass-bg); color: var(--text-main); }
.btn-glass.btn-dark .btn-circle { background: var(--text-main); color: var(--bg-body); }
.btn-glass.btn-dark:hover { border-color: var(--accent-gold); background: rgba(0,0,0,0.05); }
.btn-glass.force-light-on-dark { border-color: rgba(255,255,255,0.25) !important; color: #FFFFFF !important; background: rgba(255,255,255,0.05) !important; }
.btn-glass.force-light-on-dark .btn-circle { background: #FFFFFF !important; color: #000000 !important; }
.btn-glass.force-light-on-dark:hover { border-color: #FFFFFF !important; background: rgba(255,255,255,0.15) !important; }
.btn-pill { border-radius: 50px; }
.btn-rect { border-radius: 12px; }
.btn-circle { width: 40px; height: 40px; border-radius: 50%; background: var(--text-main); display: flex; align-items: center; justify-content: center; color: var(--bg-body); flex-shrink: 0; transition: transform 0.4s ease, background 0.4s ease, color 0.4s ease; }
.btn-circle--green { background: var(--c-green) !important; color: white !important; }
.btn-circle--white { background: #FFFFFF !important; color: #000000 !important; }
.btn-circle--wa { background: var(--whatsapp-green) !important; color: var(--c-pure-white) !important; }
.btn-reverse { padding: 6px 28px 6px 6px; flex-direction: row-reverse; }
.btn-menu-trigger { padding: 0; width: 56px; height: 56px; justify-content: center; gap: 0; border-radius: 12%; border: 1px solid rgba(255,255,255,0.18); background: rgba(255,255,255,0.06); backdrop-filter: blur(12px); -webkit-backdrop-filter: blur(12px); transition: all 0.4s var(--ease-out); }
.btn-menu-trigger:hover { border-color: rgba(255,255,255,0.35); background: rgba(255,255,255,0.1); transform: scale(1.05); }
.btn-primary-solid { background: rgba(255,255,255,0.15) !important; color: #FFFFFF !important; border: 1px solid rgba(255,255,255,0.4) !important; padding: 8px 8px 8px 32px !important; border-radius: 50px !important; font-weight: 600 !important; backdrop-filter: blur(12px) !important; -webkit-backdrop-filter: blur(12px) !important; }
.btn-primary-solid .btn-circle { background: #FFFFFF !important; color: #000000 !important; }

/* =========================================
   6. HEADER & MENU OVERLAY
   ========================================= */
.header-main { position: absolute; top: 0; width: 100%; padding: 15px 2%; display: flex; justify-content: space-between; align-items: center; z-index: 50; }
.header-actions { display: flex; gap: 15px; align-items: center; color: var(--c-pure-white); }
.logo-nav { letter-spacing: 0.15em; font-size: 1rem; color: var(--text-main); }
.logo-container { display: flex; align-items: center; gap: 15px; }
.logo { display: flex; align-items: center; justify-content: center; gap: 10px; }
.logo svg { height: 32px; width: auto; color: var(--c-pure-white) !important; transition: transform 0.3s ease; }
.logo:hover svg { transform: scale(1.05); }
.luxury-tag { font-size: 9px; letter-spacing: 3px; text-transform: uppercase; color: #ffffff; font-weight: 600; font-family: var(--f-medium); opacity: 0.9; }

.menu-overlay { position: fixed; top: 0; right: 0; width: 420px; max-width: 85vw; height: 100vh; background: var(--bg-body); z-index: 9980; display: flex; flex-direction: column; justify-content: flex-start; align-items: flex-start; padding: 100px 50px 50px 50px; transform: translateX(100%); opacity: 1; visibility: hidden; pointer-events: none; box-shadow: -10px 0 60px rgba(0,0,0,0.3); border-left: 1px solid var(--glass-border); transition: transform 0.5s var(--ease-out), visibility 0s 0.5s; }
.menu-overlay.open { transform: translateX(0); visibility: visible; pointer-events: auto; transition: transform 0.5s var(--ease-out), visibility 0s 0s; }
.menu-close-btn { position: absolute; top: 30px; right: 30px; width: 50px; height: 50px; border: 1px solid var(--glass-border); border-radius: 50%; background: var(--glass-bg); backdrop-filter: blur(10px); display: flex; align-items: center; justify-content: center; color: var(--text-main); cursor: pointer; transition: all 0.3s ease; z-index: 10; }
.menu-close-btn:hover { border-color: var(--accent-gold); color: var(--accent-gold); background: var(--glass-bg-hover); }
.menu-nav { text-align: left; margin-bottom: 40px; width: 100%; }
.menu-link { display: block; font-family: var(--f-bold) !important; font-size: clamp(1rem, 2.5vw, 1.5rem); color: #ffffff; line-height: 1.3; overflow: hidden; margin-bottom: 15px; cursor: none; }
.menu-link span { display: block; transform: translateX(50px); opacity: 0; transition: transform 0.4s ease, opacity 0.4s ease, color 0.3s; color: #ffffff; }
.menu-overlay.open .menu-link span { transform: translateX(0); opacity: 1; }
.menu-link:hover span { color: var(--accent-gold); }
.menu-link:nth-child(1) span { transition-delay: 0.1s; }
.menu-link:nth-child(2) span { transition-delay: 0.15s; }
.menu-link:nth-child(3) span { transition-delay: 0.2s; }
.menu-link:nth-child(4) span { transition-delay: 0.25s; }
.menu-cta-wrapper { margin-top: 30px; width: 100%; opacity: 0; transform: translateY(20px); transition: opacity 0.4s ease 0.3s, transform 0.4s ease 0.3s; }
.menu-overlay.open .menu-cta-wrapper { opacity: 1; transform: translateY(0); }
.social-row { display: flex; gap: 20px; margin-top: auto; padding-top: 40px; }
.social-icon { width: 48px; height: 48px; border: 1px solid var(--glass-border); border-radius: 50%; display: flex; align-items: center; justify-content: center; color: var(--text-main); transition: all 0.3s ease; }
.social-icon:hover { border-color: var(--accent-gold); color: var(--accent-gold); background: var(--glass-bg); }
.menu-backdrop { position: fixed; inset: 0; background: rgba(0,0,0,0.5); z-index: 9970; opacity: 0; visibility: hidden; transition: opacity 0.5s ease, visibility 0s 0.5s; }
.menu-backdrop.open { opacity: 1; visibility: visible; transition: opacity 0.5s ease, visibility 0s 0s; }

@media (prefers-color-scheme: light) {
  .menu-overlay { background: rgba(245,237,224,0.99); }
  .menu-link span { color: var(--c-gold) !important; }
}

/* =========================================
   7. SECTIONS: HERO, HOMEPAGE
   ========================================= */
.hero { position: relative; height: 100vh; width: 100%; overflow: hidden; background: var(--c-pure-black); }
.hero-video { position: absolute; inset: 0; width: 100%; height: 120%; top: -10%; object-fit: cover; }
.hero-ui { position: absolute; z-index: 10; bottom: 0; left: 0; width: 100%; height: 100%; display: flex; flex-direction: column; justify-content: flex-end; padding: 0 2% 5% 2%; }
.hero-h1 { font-family: var(--f-light) !important; font-size: clamp(2.25rem, 2.25rem, 2.25rem) !important; line-height: 1.1; letter-spacing: 0.01em; margin-bottom: 0.1rem; color: var(--c-pure-white); padding-bottom: 0.1em; }
.hero-description { font-family: var(--f-light); font-size: clamp(0.875rem, 0.875rem, 0.875rem); color: var(--c-gray-300); line-height: 1.6; max-width: 350px; margin-top: 10px; margin-bottom: 30px; opacity: 0.9; }
.hero-cta-wrapper { display: flex; align-items: center; gap: 30px; margin-top: 20px; }
.hero-overlay { position: absolute; inset: 0; background: linear-gradient(to bottom, rgba(10,10,10,0.1) 0%, rgba(10,10,10,0.6) 70%, rgba(10,10,10,0.9) 100%); z-index: 1; }

.sh-wrapper { margin-bottom: 40px; text-align: left; padding-bottom: 40px; }
.sh-wrapper--centered { text-align: center; margin-bottom: 80px; }
.sh-wrapper--mb60 { margin-bottom: 60px; }
.sh-wrapper--green-border { border-bottom-color: rgba(13,92,67,0.2); }
.sh-wrapper--process { max-width: 1400px; margin-left: auto; margin-right: auto; margin-bottom: 60px; }
.sh-wrapper--partner { padding-bottom: 25px; position: relative; z-index: 10; }
.sh-title { font-family: var(--f-bold) !important; font-weight: 400 !important; font-size: clamp(1.875rem, 1.875rem, 1.875rem); line-height: 1.1; color: var(--text-main); margin: 0 0 1.5rem 0; letter-spacing: -0.03em; }
.sh-title--light { font-family: var(--f-light) !important; }
.sh-title--bold { font-family: var(--f-bold) !important; font-weight: 400; }
.sh-title--fw200 { font-weight: 400 !important; font-size: clamp(1.875rem, 1.875rem, 1.875rem); }
.sh-desc { font-family: var(--f-light) !important; font-size: clamp(1rem, 1.1vw, 1.15rem); line-height: 1.6; color: var(--text-muted); max-width: 700px; margin-top: 0; opacity: 0.9; }
.sh-desc--centered { margin-left: auto; margin-right: auto; }

/* Projects Section */
.works-section { padding: 140px 5%; background: var(--bg-body); }
.works-intro { margin-bottom: 100px; padding-bottom: 40px; border-bottom: 1px solid var(--glass-border); }
.project-card { position: sticky; top: 10vh; height: 85vh; width: 100%; margin-bottom: 10vh; border-radius: 4px; overflow: hidden; box-shadow: var(--shadow-lg); display: flex; align-items: flex-end; transition: border-color 0.4s ease; }
.project-card:hover { border-color: var(--glass-border-hover); }
.project-card img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.card-details { position: relative; z-index: 2; padding: 40px; width: 100%; background: linear-gradient(to top, var(--overlay-gradient-start) 0%, var(--overlay-color) 50%, transparent 100%); display: flex; justify-content: space-between; align-items: flex-end; }
.project-card-title-inline { font-size: 2.2rem; margin-bottom: 15px; color: var(--c-pure-white); }
.project-card-desc { color: var(--c-gray-200); }

/* Horizontal Services */
.services-new-wrapper { background-color: var(--bg-body); padding: 100px 5%; color: var(--text-main); position: relative; z-index: 10; overflow: hidden; }
.services-container { max-width: 1400px; margin: 0 auto; }
.services-tag-row { display: flex !important; justify-content: flex-end !important; width: 100%; margin: 20px 0; position: relative; z-index: 20; }
.services-tag-text { font-family: var(--f-bold) !important; font-size: clamp(1.5rem, 1.5rem, 1.5rem) !important; line-height: 1; color: var(--text-main); text-transform: none; opacity: 1; white-space: nowrap; }
.services-horizontal-track { display: flex; gap: 25px; width: max-content; overflow: visible; padding: 10px 0 30px 0; }
.services-horizontal-track::-webkit-scrollbar { display: none; }
.services-horizontal-track .service-row { flex: 0 0 700px; height: 320px; display: flex !important; flex-direction: row !important; align-items: stretch; background: var(--bg-card); border: 1px solid rgba(13,92,67,0.08); border-radius: 4px; padding: 0; margin-bottom: 0 !important; scroll-snap-align: start; overflow: hidden; }
.services-horizontal-track .visual-col { flex: 0 0 40% !important; max-width: 40%; height: 100% !important; margin: 0 !important; position: relative; overflow: hidden; }
.services-horizontal-track .img-mask { height: 100%; border-top-left-radius: 160px !important; border-bottom-right-radius: 20px !important; border-top-right-radius: 20px !important; border-bottom-left-radius: 0px !important; transition: border-radius 0.6s var(--ease-out) !important; width: 100%; overflow: hidden; position: relative; box-shadow: var(--shadow-md); }
.services-horizontal-track .img-mask img { height: 100%; width: 100%; object-fit: cover; }
.services-horizontal-track .info-col { flex: 0 0 55% !important; padding: 30px; display: flex; flex-direction: column; justify-content: center; text-align: left !important; align-items: flex-start !important; }
.services-horizontal-track .info-col h2 { font-size: 1.5rem !important; margin-bottom: 10px; color: var(--text-main) !important; }
.services-horizontal-track .info-col p { font-size: 0.85rem !important; line-height: 1.5; margin-bottom: 20px; }
.num-tag { font-family: var(--f-medium); font-size: 0.75rem; font-weight: 500; letter-spacing: 0.2em; text-transform: uppercase; color: var(--light-accent); margin-bottom: 20px; display: flex; align-items: center; gap: 15px; }
.num-tag::after { content: ''; height: 1px; width: 40px; background-color: var(--light-accent); opacity: 0.5; }

/* Partner Ticker */
.partner-ticker-section { padding: 100px 0 80px 0; background: var(--bg-body); overflow: hidden; position: relative; z-index: 2; }
.ticker-track-container { display: flex; overflow: hidden; width: 100%; }
.ticker-track { display: flex; align-items: center; gap: 80px; animation: tickerScroll 30s linear infinite; width: max-content; padding-left: 100px; will-change: transform; }
.ticker-logo { height: 100px; width: auto; filter: invert(1) grayscale(100%) opacity(0.5); transition: all 0.4s ease; }
.ticker-logo:hover { opacity: 1; filter: grayscale(0%); transform: scale(1.05); }
.ticker-track-container:hover .ticker-track { animation-play-state: paused; }

/* Process Section */
.process-interactive-section { padding: 100px 5%; background: var(--bg-body) !important; }
.process-header { max-width: 1400px; margin: 0 auto 60px auto; text-align: left; }
.process-content-grid { max-width: 1400px; margin: 0 auto; display: grid; grid-template-columns: 1.1fr 0.9fr; gap: 60px; align-items: stretch; }
.process-visual-frame { height: 550px; border-radius: 4px; overflow: hidden; box-shadow: var(--shadow-md); }
.process-visual-frame img { width: 100%; height: 100%; object-fit: cover; }
.process-steps-accordion { display: flex; flex-direction: column; justify-content: space-between; height: 100%; }
.step-card { border-top: 1px solid rgba(13,92,67,0.1); padding: 30px 0; cursor: default; transition: all 0.4s var(--ease-out); }
.step-card:last-child { border-bottom: 1px solid rgba(13,92,67,0.1); }
.step-card-header { display: flex; align-items: center; gap: 20px; }
.step-card-header h3 { font-family: var(--f-light); font-size: 1.5rem; color: var(--text-main); opacity: 1; transition: opacity 0.4s ease; }
.step-card-content { max-height: 200px; opacity: 1; margin-top: 10px; transition: all 0.5s var(--ease-out); padding-left: 55px; }
.step-card-content p { font-family: var(--f-light); font-size: 1.05rem !important; color: var(--text-main); max-width: 480px; line-height: 1.6; }
.step-idx { font-family: var(--f-medium); font-size: 0.7rem; letter-spacing: 0.2em; color: var(--light-accent); }
.process-cta-center { margin-top: 80px; display: flex; justify-content: center; }

/* Experience Slider */
.experience-full-image { position: relative; width: 100%; height: 100vh; overflow: hidden; display: flex; flex-direction: column; background: var(--bg-body); }
.experience-slider-container { position: relative; width: 100%; flex-grow: 1; overflow: hidden; }
.experience-slide { position: absolute; inset: 0; width: 100%; height: 100%; opacity: 0; transition: opacity 1.2s ease-in-out; }
.experience-slide.active { opacity: 1; }
.experience-slide img { width: 100%; height: 100%; object-fit: cover; filter: brightness(0.7); }
.experience-overlay { position: absolute; inset: 0; background: radial-gradient(circle at 80% 80%, rgba(0,0,0,0.4) 0%, transparent 60%); z-index: 2; }
.experience-content { position: absolute; bottom: 8%; right: 5%; z-index: 10; max-width: 800px; pointer-events: none; }
.experience-text { font-size: clamp(1.8rem, 3.5vw, 3rem); line-height: 1.1; color: var(--c-pure-white); text-align: right; pointer-events: auto; }
.experience-dots { position: relative; height: 80px; display: flex; align-items: center; justify-content: center; gap: 12px; z-index: 15; background: var(--bg-body); }
.exp-dot { width: 8px; height: 8px; border-radius: 50%; background: var(--c-gray-700); cursor: pointer; transition: all 0.4s ease; }
.exp-dot.active { background: var(--accent-gold); width: 30px; border-radius: 4px; }

/* Architecture Section */
.architecture-section { background: var(--bg-body); color: var(--text-main); position: relative; overflow: hidden; --padding-side: 5vw; }
.pin-container { height: 100vh; width: 100%; position: relative; overflow: hidden; display: flex; flex-direction: column; }
.arch-fixed-header { flex-shrink: 0; padding: 12vh var(--padding-side) 0 var(--padding-side); z-index: 2; width: 100%; }
.content-layer { flex: 1; display: flex; align-items: stretch; overflow: hidden; padding-top: 2vh; }
.horizontal-track { display: flex; gap: 4vw; padding: 0 var(--padding-side); align-items: stretch; will-change: transform; }
.feature-column { flex: 0 0 28vw; min-width: 300px; display: flex; flex-direction: column; opacity: 0.4; transform: scale(0.98); transition: opacity 0.4s ease, transform 0.4s ease; }
.feature-column:hover { opacity: 1 !important; }
.feature-column h3 { font-size: 1.6rem; color: var(--text-main); margin-bottom: 15px; line-height: 1.2; }
.feature-column p { font-size: 0.95rem; line-height: 1.7; color: var(--text-muted); flex-grow: 1; }
.progress-container { position: absolute; bottom: 3vh; left: var(--padding-side); right: var(--padding-side); height: 2px; background: rgba(13,92,67,0.1); border-radius: 1px; z-index: 10; }
.progress-bar { height: 100%; width: 0%; background: var(--light-accent); border-radius: 1px; transition: width 0.1s linear; }
.arch-link-wrapper { position: absolute; bottom: 8vh; left: var(--padding-side); z-index: 10; }
.text-link-arrow { font-family: var(--f-medium); font-size: 0.85rem; color: var(--accent-gold); text-transform: uppercase; letter-spacing: 0.15em; margin-top: 20px; display: inline-flex; align-items: center; gap: 10px; transition: all 0.3s ease; cursor: pointer; border-bottom: 1px solid transparent; }
.text-link-arrow:hover { gap: 15px; opacity: 0.8; border-color: var(--accent-gold); }

/* FAQ Section */
.faq-section-executive { padding: 140px 5%; background: var(--bg-body); position: relative; }
.faq-wrapper { max-width: 900px; margin: 0 auto; }
.faq-title-group { margin-bottom: 60px; text-align: center; }
.faq-item { border-bottom: 1px solid var(--glass-border); padding: 30px 0; opacity: 1; transform: translateY(0); transition: opacity 0.6s ease, transform 0.6s ease; }
.faq-item.animate-in { opacity: 0; transform: translateY(20px); }
.faq-question { width: 100%; background: none; border: none; color: var(--text-main); display: flex; justify-content: space-between; align-items: center; text-align: left; cursor: none; font-size: 1.4rem; padding: 0; transition: color 0.3s ease; }
.faq-question:hover { color: var(--accent-gold); }
.faq-icon { position: relative; width: 24px; height: 24px; transition: transform 0.4s var(--ease-out); flex-shrink: 0; margin-left: 20px; }
.faq-icon::before, .faq-icon::after { content: ''; position: absolute; background: var(--accent-gold); top: 50%; left: 50%; transform: translate(-50%,-50%); transition: all 0.4s ease; }
.faq-icon::before { width: 100%; height: 1px; }
.faq-icon::after { width: 1px; height: 100%; }
.faq-item.active .faq-icon { transform: rotate(45deg); }
.faq-item.active .faq-icon::after { transform: translate(-50%,-50%) rotate(90deg); }
.faq-answer { max-height: 0; overflow: hidden; transition: max-height 0.5s var(--ease-out), opacity 0.4s; opacity: 0; }
.faq-item.active .faq-answer { max-height: 500px; opacity: 1; padding-top: 25px; }
.faq-answer-content { color: var(--text-muted); font-size: 1rem; line-height: 1.8; max-width: 90%; }

/* Final CTA */
.final-cta { position: relative; min-height: 90vh; display: flex; align-items: center; justify-content: center; text-align: center; overflow: visible; }
.cta-bg { position: absolute; inset: 0; width: 100%; height: 100%; }
.cta-bg img { width: 100%; height: 120%; object-fit: cover; top: -15%; position: absolute; filter: brightness(0.4) contrast(1.1); }
.cta-content { position: relative; z-index: 2; max-width: 800px; padding: 20px; }
.cta-title-large { font-size: 3.5rem; font-family: var(--f-bold) !important; color: var(--c-pure-white); line-height: 1; }
.cta-subtext { margin-bottom: 40px; margin-top: 20px; color: var(--c-gray-300); display: inline-block; }
.cta-group { display: flex; gap: 20px; justify-content: center; align-items: center; flex-wrap: wrap; position: relative; z-index: 10; }

.dropdown-wrapper { position: relative; display: inline-block; }
.dropdown-menu { position: absolute; bottom: 120%; left: 50%; transform: translateX(-50%) translateY(10px); width: auto; min-width: 200px; max-width: 90vw; background: rgba(10,10,10,0.95); border: 1px solid var(--glass-border); backdrop-filter: blur(12px); -webkit-backdrop-filter: blur(12px); border-radius: 12px; padding: 8px; opacity: 0; visibility: hidden; transition: all 0.3s var(--ease-out); box-shadow: 0 10px 40px rgba(0,0,0,0.5); z-index: 9999; display: flex; flex-direction: column; gap: 0; }
.dropdown-item { display: flex; align-items: center; justify-content: space-between; padding: 12px 16px; color: var(--c-gray-300); text-decoration: none; font-size: 0.85rem; border-radius: 8px; transition: all 0.2s ease; border: 1px solid transparent; white-space: nowrap; cursor: pointer; }
.dropdown-item:hover { background: rgba(255,255,255,0.08); color: var(--c-pure-white); border-color: var(--glass-border); }
.dropdown-item svg { opacity: 0.6; transition: opacity 0.2s, color 0.2s; }
.dropdown-item:hover svg { opacity: 1; color: var(--accent-gold); }
.dropdown-wrapper:hover .dropdown-menu, .dropdown-wrapper.open .dropdown-menu { opacity: 1; visibility: visible; transform: translateX(-50%) translateY(0); }

/* =========================================
   8. FOOTER
   ========================================= */
footer { background: var(--bg-body-secondary); padding: 80px 5%; color: var(--c-gray-500); font-size: 0.95rem; position: relative; bottom: 0; left: 0; width: 100%; z-index: 1; }
.footer-flex { display: grid; grid-template-columns: 1.5fr 1fr 1fr; gap: 60px; max-width: 1200px; margin: 0 auto; }
.footer-col-brand { display: flex; flex-direction: column; justify-content: space-between; }
.footer-brand-title { font-family: var(--f-bold) !important; font-size: 2.5rem; color: var(--c-pure-white); margin-bottom: 20px; letter-spacing: -0.02em; line-height: 1; }
.footer-brand-desc { font-family: var(--f-light); color: var(--c-gray-400); line-height: 1.8; max-width: 350px; margin-bottom: 30px; }
.footer-social-row { display: flex; gap: 20px; align-items: center; }
.footer-social-link { color: var(--c-pure-white); transition: color 0.3s; }
.footer-social-link:hover { color: var(--accent-gold); }
.footer-heading { font-family: var(--f-bold) !important; font-weight: 500; font-size: 0.95rem; letter-spacing: 0.02em; color: var(--accent-gold); margin-bottom: 15px; }
.footer-list { color: var(--c-gray-400); font-family: var(--f-light); font-weight: 500; }
.footer-list li { margin-bottom: 8px; }
.footer-link { transition: color 0.3s; }
.footer-link:hover { color: var(--c-pure-white); }
.footer-link--wa:hover { color: var(--whatsapp-green); }
.footer-contact { color: var(--c-gray-400); }
.footer-bottom { margin-top: 80px; padding-top: 30px; border-top: 1px solid rgba(255,255,255,0.08); display: flex; justify-content: space-between; color: var(--c-gray-500); font-size: 0.85rem; }

@media (prefers-color-scheme: light) {
  .footer-brand-title { color: var(--accent-gold) !important; }
}

/* =========================================
   9. ANIMATIONS & KEYFRAMES
   ========================================= */
@keyframes tickerScroll { 0% { transform: translateX(0); } 100% { transform: translateX(-50%); } }
@keyframes hintArrow { 0%, 100% { transform: translateX(0); opacity: 0.5; } 50% { transform: translateX(5px); opacity: 1; } }

.swipe-hint { display: none; }

/* =========================================
   10. MEDIA QUERIES (RESPONSIVE)
   ========================================= */
@media (min-width: 1025px) {
  .services-horizontal-track .service-row { opacity: 1 !important; transform: none !important; }
  .services-horizontal-track .img-mask img { opacity: 1 !important; transform: scale(1) !important; }
}

@media (max-width: 1024px) {
  .cursor-dot, .cursor-circle { display: none; }
  body, a, button { cursor: auto; }
  .hero-ui { justify-content: flex-end; padding: 0 5% 8% 5%; }
  .hero-cta-wrapper { flex-direction: column; align-items: flex-start; gap: 20px; }
  
  .services-new-wrapper, .architecture-section { height: auto !important; min-height: 0 !important; padding: 80px 5% !important; overflow: visible !important; }
  .services-new-wrapper .pin-spacer, .architecture-section .pin-spacer { height: auto !important; min-height: 0 !important; padding: 0 !important; }
  
  .services-horizontal-track { display: flex !important; overflow-x: auto !important; scroll-snap-type: x mandatory !important; -webkit-overflow-scrolling: touch; scrollbar-width: none; width: 100% !important; transform: none !important; padding: 10px 0 30px 0 !important; }
  .services-horizontal-track .service-row { scroll-snap-align: center !important; flex: 0 0 85vw !important; flex-direction: column !important; height: auto !important; min-height: 420px; }
  .services-horizontal-track .visual-col { flex: 0 0 200px !important; width: 100% !important; }
  .services-horizontal-track .info-col { flex: 1 !important; padding: 25px !important; text-align: left !important; align-items: flex-start !important; }
  
  .pin-container { height: auto !important; min-height: 0 !important; overflow: visible !important; flex-direction: column !important; }
  .arch-fixed-header { padding: 0 0 30px 0 !important; }
  .content-layer { flex-direction: column !important; padding: 0 !important; overflow: visible !important; }
  #architecture-track, .horizontal-track { display: flex !important; flex-direction: column !important; transform: none !important; width: 100% !important; gap: 40px !important; padding: 0 !important; }
  .feature-column { flex: none !important; width: 100% !important; min-width: unset !important; opacity: 1 !important; transform: none !important; }
  .progress-container { display: none; }
  .arch-link-wrapper { position: relative !important; bottom: auto !important; left: auto !important; margin-top: 40px; margin-bottom: 20px; padding-left: 0; }
  
  .process-content-grid { display: flex !important; flex-direction: column !important; grid-template-columns: 1fr !important; }
  .process-visual-frame { order: 1; height: 350px; }
  .process-steps-accordion { order: 2; height: auto; gap: 10px; }
  .process-cta-center { order: 3; }
  
  .footer-flex { grid-template-columns: 1fr !important; text-align: center !important; gap: 40px !important; }
  .footer-col-brand { align-items: center; }
  .footer-brand-desc { margin-left: auto; margin-right: auto; }
  .footer-social-row { justify-content: center; }
  .footer-bottom { flex-direction: column; align-items: center; gap: 15px; text-align: center; }
  
  .cta-group { flex-direction: column; align-items: center; width: 100%; }
  .cta-group > *, .cta-group .dropdown-wrapper { width: 100%; max-width: 350px; }
  .cta-group .btn-glass { width: 100%; justify-content: space-between; }
  
  .swipe-hint { display: flex; align-items: center; gap: 8px; font-family: var(--f-medium); font-size: 11px !important; text-transform: uppercase; letter-spacing: 0.15em; color: var(--accent-gold); opacity: 0.7; margin-top: 8px; justify-content: flex-end; width: 100%; }
  .swipe-hint span { display: inline-block; animation: hintArrow 2s infinite ease-in-out; font-size: 14px; }
}

@media (max-width: 768px) {
  .hero-h1 { font-size: clamp(2rem, 8vw, 3rem); margin-bottom: 0.2rem; }
  .section-title { font-size: clamp(2rem, 7vw, 3rem); }
  .micro-label { font-size: 0.6rem; margin-bottom: 1rem; }
  
  .works-section { padding: 100px 5%; }
  .works-intro { margin-bottom: 60px; }
  .project-card { height: 70vh; top: 5vh; margin-bottom: 5vh; }
  .card-details { padding: 30px; flex-direction: column; align-items: flex-start; gap: 20px; }
  .card-details h3 { font-size: 1.6rem !important; }
  
  .process-interactive-section { padding: 100px 5%; }
  .final-cta { min-height: 60vh; }
  .cta-content h2 { font-size: 2.8rem !important; }
  
  .menu-overlay { width: 100%; max-width: 100vw; padding: 90px 30px 30px 30px; }
  .menu-link { font-size: clamp(1.8rem, 7vw, 2.5rem); margin-bottom: 10px; }
  
  footer { padding: 60px 5%; }
  
  .experience-full-image { height: auto !important; padding-top: 40px; }
  .experience-slider-container { width: 500px !important; height: 500px !important; max-width: 100vw; max-height: 120vw; margin: 0 auto; border-radius: 4px; overflow: hidden; position: relative; }
  .experience-content { position: absolute !important; bottom: 25px !important; right: 25px !important; left: auto !important; transform: none !important; width: auto !important; max-width: 80%; padding: 0 !important; z-index: 10; justify-content: center; align-items: center; padding: 0 5% 10% !important; }
  .experience-text { text-align: right !important; font-size: 1.5rem !important; line-height: 1.1; text-align: center; }
  .experience-dots { height: 50px !important; }
  
  .partner-ticker-section { padding: 40px 0; }
  .ticker-track { gap: 60px; padding-left: 60px; }
  .ticker-logo { height: 60px; }
}

@media (max-width: 480px) {
  .hero { height: 100svh; }
  header { padding: 25px 4% !important; }
  .project-card { height: 65vh; }
  .services-new-wrapper h2 { font-size: 1.8rem; }
  .btn-glass { font-size: 0.65rem; padding: 5px 5px 5px 20px; min-height: 48px; gap: 16px; }
  .btn-circle { width: 36px; height: 36px; }
  .cta-group { flex-direction: column; width: 100%; gap: 15px; }
}
/* =========================================
   MISSING SERVICE PAGE CSS (Lighting, Audio, etc.)
   ========================================= */
.tabs-row, .audio-tabs-footer, .hero-dashboard-footer { display:flex; gap:12px; justify-content:center; width:100%; position:absolute; bottom:3px; left:0; z-index:10; padding:0 5%; flex-wrap:wrap; }
.audio-tabs-footer, .hero-dashboard-footer { gap:30px; bottom:50px; }
.glass-tab { background:rgba(255,252,240,0.15); backdrop-filter:blur(25px); -webkit-backdrop-filter:blur(25px); border:1px solid rgba(255,255,255,0.1); border-radius:14px; padding:8px 18px; display:flex; align-items:center; gap:12px; min-height:58px; transition:all 0.3s ease; cursor:default; }
.glass-tab:hover { border-color:rgba(255,255,255,0.3); background:rgba(255,255,255,0.2); transform:translateY(-2px); }
.control-panel { background:rgba(255,255,255,0.04); backdrop-filter:blur(40px); -webkit-backdrop-filter:blur(40px); border:1px solid rgba(255,255,255,0.1); border-radius:16px; padding:10px 22px; display:flex; align-items:center; gap:15px; width:420px; max-width:100%; transition:all 0.6s var(--ease-expo); cursor:default; min-height:58px; overflow:hidden; }
.control-panel:hover { background:rgba(255,255,255,0.08); border-color:rgba(255,255,255,0.2); transform:translateY(-4px); box-shadow:0 30px 60px rgba(0,0,0,0.5); }
.icon-box { width:36px; height:36px; border-radius:10px; display:flex; align-items:center; justify-content:center; flex-shrink:0; }
.icon-circle { width:36px; height:36px; flex-shrink:0; background:rgba(255,255,255,0.03); border-radius:50%; display:flex; align-items:center; justify-content:center; }
.panel-info, .tab-info { display:flex; flex-direction:column; flex-grow:1; justify-content:center; text-align:left; color:#FFFFFF !important; }
.panel-label, .tab-label { font-family:var(--f-medium); font-size:9px; text-transform:uppercase; letter-spacing:2px; color:rgba(255,255,255,0.4); margin-bottom:4px; }
.tab-label { font-size:9px; color:rgba(255,255,255,0.6); margin-bottom:1px; letter-spacing:1px; }
.panel-title { font-family:var(--f-regular); font-size:14px; font-weight:500; letter-spacing:0.3px; color:white; white-space:nowrap; overflow:hidden; text-overflow:ellipsis; }
.tab-status { font-size:13px; }
.bg-green { background:rgba(34,197,94,0.2); color:#4ade80; }
.bg-yellow { background:rgba(234,179,8,0.2); color:#facc15; }
.bg-orange { background:rgba(249,115,22,0.2); color:#fb923c; }
.tab-controls { display:flex; gap:12px; margin-left:10px; color:rgba(255,255,255,0.7); font-size:14px; }
.color-group { display:flex; gap:6px; margin-top:5px; }
.c-dot { width:10px; height:10px; border-radius:50%; border:1px solid rgba(255,255,255,0.2); }
.c-dot.active { border:1.5px solid white; box-shadow:0 0 5px rgba(255,255,255,0.5); }
.weather-strip { display:flex; gap:15px; }
.w-icon { width:20px; height:20px; opacity:0.8; filter:invert(1); }
.w-icon:hover { opacity:1; transform:scale(1.1); transition:transform 0.2s; }

.service-grid-section, .zigzag-section, .products-section, .usp-section { padding:120px 5%; background:var(--bg-body); }
.service-grid { display:grid; grid-template-columns:1fr 1fr 1fr; grid-template-rows:400px; gap:20px; max-width:1600px; margin:0 auto; }
.grid-card { position:relative; overflow:hidden; background:var(--bg-card); border-radius:4px; border:1px solid var(--glass-border); display:flex; flex-direction:column; transition:border-color 0.4s ease; }
.grid-card:hover { border-color:var(--glass-border-hover); }
.grid-card.img-card { clip-path:inset(0); }
.grid-card-content { position:absolute; inset:0; display:flex; flex-direction:column; justify-content:flex-end; padding:40px; background:linear-gradient(to top,var(--overlay-gradient-start) 0%,transparent 70%); z-index:2; }
.grid-card-title { font-size:2.2rem; color:var(--c-pure-white); margin-bottom:15px; line-height:1.1; }
.grid-card-text { color:var(--c-gray-300); font-size:0.95rem; line-height:1.6; }

.zigzag-section { background:linear-gradient(to bottom,var(--bg-body),var(--bg-body-secondary)); }
.zz-row { display:grid; grid-template-columns:1fr 1fr; gap:80px; align-items:center; max-width:1300px; margin:0 auto 140px; }
.zz-row.reverse { direction:rtl; }
.zz-row.reverse > * { direction:ltr; }
.zz-content h2 { font-family:var(--f-bold)!important; font-size:3rem; margin-bottom:1.5rem; line-height:1.1; color:var(--text-main); font-weight:100!important; letter-spacing:-0.02em!important; }
.zz-content p { color:var(--text-muted); font-size:1.05rem; margin-bottom:2rem; max-width:450px; line-height:1.8; }
.zz-image { border-radius:4px; overflow:hidden; box-shadow:var(--shadow-md); height:400px; position:relative; }
.zz-image img { width:100%; height:120%; top:-10%; position:absolute; object-fit:cover; filter:contrast(1.03); }

.lighting-products-section { background:var(--bg-body)!important; padding:40px 2% 60px 2%!important; }
.lighting-products-section .products-header { text-align:center!important; margin-bottom:80px!important; display:flex!important; flex-direction:column!important; align-items:center!important; }
.lighting-products-section .products-header h2 { font-family:var(--f-bold)!important; font-size:clamp(3rem,6vw,4.5rem)!important; text-transform:lowercase!important; color:var(--text-main)!important; font-weight:300!important; letter-spacing:-0.04em!important; margin:0!important; line-height:1.2!important; }
.lighting-products-section .products-grid { display:flex!important; justify-content:center!important; align-items:flex-end!important; gap:50px!important; max-width:1200px!important; margin:0 auto!important; padding:20px 0 40px 0!important; overflow-x:auto!important; scrollbar-width:none!important; }
.lighting-products-section .products-grid::-webkit-scrollbar { display:none; }
.lighting-products-section .product-card { flex:0 0 150px!important; width:140px!important; background:transparent!important; border:none!important; text-align:center!important; transition:transform 0.4s var(--ease-out)!important; }
.lighting-products-section .product-img-container { display:flex!important; align-items:flex-end!important; justify-content:center!important; width:150px!important; height:280px!important; margin-bottom:20px!important; }
.lighting-products-section .product-image { width:100%!important; height:100%!important; object-fit:contain!important; filter:drop-shadow(0 15px 25px rgba(0,0,0,0.8))!important; transition:transform 0.5s var(--ease-out),filter 0.5s ease!important; }
.lighting-products-section .product-card:hover .product-image { transform:translateY(-10px) scale(1.05)!important; filter:drop-shadow(0 20px 35px rgba(201,169,98,0.2))!important; }
.lighting-products-section .product-info { padding:0!important; opacity:0.5!important; transition:opacity 0.3s ease!important; }
.lighting-products-section .product-card:hover .product-info { opacity:1!important; }
.lighting-products-section .product-name { font-family:var(--f-light)!important; font-size:0.7rem!important; color:var(--text-main)!important; text-transform:lowercase!important; letter-spacing:0.05em!important; }

.usp-section { min-height:80vh; display:flex; flex-direction:column; align-items:center; justify-content:center; text-align:center; padding:100px 5%; background:var(--bg-body); }
.usp-content { max-width:700px; margin-bottom:60px; }
.usp-content h2 { font-family:var(--f-bold)!important; font-size:3.5rem; margin-bottom:1.5rem; line-height:1.1; color:var(--text-main); font-weight:100!important; }
.usp-showcase { max-width:400px; margin:0 auto; border-radius:4px; overflow:hidden; opacity:0.85; }

/* Responsive adjustments for service pages */
@media (max-width: 1024px){
  .service-row .btn-circle svg, .project-card .btn-circle svg, .grid-card .btn-circle svg {transform: rotate(90deg);}
  .control-panel{width:100%!important;padding:10px 15px!important;gap:12px!important;justify-content:flex-start!important}
  .panel-info{min-width:0}
}
@media (max-width: 768px){
  .service-grid{grid-template-columns:1fr}
  .grid-card{min-height:300px}
  .grid-card-title{font-size:1.6rem}
  .zz-row{grid-template-columns:1fr;gap:40px}
  .zz-row.reverse{direction:ltr}
  .zz-content h2{font-size:2rem}
  .zz-image{height:300px}
  .usp-content h2{font-size:2.5rem}
  .lighting-products-section .product-card{width:170px!important;min-width:170px!important}
  .lighting-products-section .product-img-container{width:170px!important;height:170px!important}
  .lighting-products-section .product-image{width:160px!important;height:160px!important;max-width:80px!important;max-height:80px!important}
  .weather-strip { width: 100% !important; justify-content: flex-start !important; gap: 35px !important; }
  .service-hero .tabs-row .glass-tab:nth-child(2),.service-hero .tabs-row .glass-tab:nth-child(4){display:none!important}
  .lighting-products-section .products-grid{justify-content:flex-start!important;flex-wrap:nowrap!important;overflow-x:auto!important;-webkit-overflow-scrolling:touch;scroll-snap-type:x proximity;padding:20px 5%!important}
}
@media (max-width: 480px){
  .control-panel{padding:8px 12px!important}
  .panel-title{font-size:12px!important}
  .grid-card{min-height:260px}
  .grid-card-content{padding:25px}
  .grid-card-title{font-size:1.4rem}
  .lighting-products-section .product-card{width:70px!important;min-width:70px!important;height:140px!important}
  .lighting-products-section .product-img-container{width:70px!important;height:70px!important}
  .lighting-products-section .product-image{width:60px!important;height:60px!important;max-width:60px!important;max-height:60px!important}
  .lighting-products-section .product-info{padding:6px 4px!important}
  .lighting-products-section .product-name{font-size:0.55rem!important}
}

/* =========================================
   11. SERVICE PAGE STRUCTURAL CSS (Nav, Hero, Discover, CTA)
   ========================================= */

/* Service Navigation */
.service-nav-bar { position: fixed; top: 0; width: 100%; transition: background 0.4s ease, backdrop-filter 0.4s ease; padding: 25px 5%; display: flex; justify-content: space-between; align-items: center; z-index: 100; background: linear-gradient(to bottom, var(--overlay-gradient-start), transparent); pointer-events: none; }
.service-nav-bar > * { pointer-events: auto; }
.service-nav-bar::before { content: ""; position: absolute; top: calc(-1 * env(safe-area-inset-top)); left: 0; width: 100%; height: calc(100% + env(safe-area-inset-top)); background: linear-gradient(to bottom, var(--overlay-gradient-start), transparent); z-index: -1; pointer-events: none; }
.btn-close-service { display: inline-flex; background: rgba(255,255,255,0.1); backdrop-filter: blur(10px); -webkit-backdrop-filter: blur(10px); padding: 8px 16px; border-radius: 50px; border: 1px solid rgba(255,255,255,0.1); align-items: center; gap: 10px; font-size: 0.75rem; text-transform: uppercase; letter-spacing: 0.15em; color: #FFFFFF !important; transition: color 0.3s; }
.btn-close-service:hover { color: var(--accent-gold); background: rgba(255,255,255,0.2); border-color: var(--accent-gold); }

/* Service Hero */
.service-hero, .audio-hero, .security-hero { position: relative; min-height: 85vh; width: 100%; overflow: hidden; background: var(--c-pure-black); display: flex; align-items: center; justify-content: center; text-align: center; padding: 120px 5% 80px; }
.audio-hero, .security-hero, .about-hero { min-height: 100vh; }
.service-hero-image-wrapper { position: absolute; inset: 0; width: 100%; height: 100%; overflow: hidden; }
.service-hero-image, .audio-hero-image, .security-hero-bg { position: absolute; inset: 0; width: 100%; height: 120%; object-fit: cover; opacity: 1; filter: contrast(1.1) brightness(0.9) saturate(0.8); top: -10%; }
.service-hero-image { animation: slowZoom 20s ease-in-out infinite alternate; }
@keyframes slowZoom { 0% { transform: scale(1); } 100% { transform: scale(1.05); } }
.service-hero-content, .audio-hero-content, .security-hero-content { position: relative; z-index: 2; max-width: 900px; padding: 0 20px; }
.service-hero-title, .audio-hero-title, .security-hero-title, .solar-hero-title { font-family: var(--f-bold) !important; font-size: clamp(3rem, 6vw, 4.5rem) !important; font-weight: 400 !important; line-height: 1.05; margin-bottom: 1.5rem; color: var(--c-pure-white); text-shadow: 0 2px 10px rgba(0,0,0,0.3); }
.service-hero-subtitle, .audio-hero-subtitle, .security-hero-subtitle, .solar-hero-subtitle { font-family: var(--f-light); font-size: 1.08rem !important; line-height: 1.7; color: var(--c-gray-300); max-width: 700px; margin: 0 auto; font-weight: 300; opacity: 0.9; }

/* Discover Section */
.discover-section { padding: 100px 5%; display: flex; flex-direction: column; align-items: center; background: var(--bg-body); border-top: 1px solid var(--glass-border); }
.discover-line { width: 1px; height: 60px; background: var(--c-gray-700); margin-bottom: 40px; }
.discover-title { font-family: var(--f-bold) !important; font-weight: 400 !important; font-size: clamp(1.8rem, 4vw, 3rem); color: var(--text-main); margin-bottom: 40px; }
.discover-nav { display: flex; flex-wrap: wrap; justify-content: center; gap: 12px; font-size: 1rem; font-weight: 300; }
.nav-link { color: var(--accent-gold); transition: color 0.3s ease, text-shadow 0.3s ease; padding: 0 10px; font-family: var(--f-medium); }
.nav-link:hover { color: var(--accent-gold-hover); text-shadow: var(--shadow-gold); }

/* Service CTA Section */
.service-cta { padding: 100px 5%; background: var(--bg-body); text-align: center; }
.service-cta-content { max-width: 800px; margin: 0 auto; }
.service-cta-title { font-size: clamp(2.5rem, 4vw, 3.5rem); color: var(--text-main); margin-bottom: 1.5rem; line-height: 1.1; font-family: var(--f-bold) !important; font-weight: 400 !important; }
.service-cta-text { color: var(--text-muted); margin-bottom: 40px; font-size: 1.1rem; }

/* Mobile Overrides for New Sections */
@media (max-width: 1024px) {
  .service-hero, .audio-hero, .security-hero { display: flex !important; flex-direction: column !important; align-items: center !important; justify-content: center !important; height: auto !important; min-height: 100vh !important; padding: 120px 6% 80px !important; text-align: center !important; }
  .service-hero-image-wrapper, .audio-hero-image, .security-hero-bg { position: absolute !important; inset: 0 !important; width: 100% !important; height: 100% !important; z-index: 0 !important; }
  .service-hero-content, .audio-hero-content, .security-hero-content { position: relative !important; z-index: 5 !important; max-width: 100% !important; padding: 0 !important; margin-bottom: 20px !important; }
}
@media (max-width: 768px) {
  .discover-section { padding: 60px 5%; }
  .discover-title { font-size: 1.5rem; }
  .discover-nav { gap: 8px; }
  .nav-link { font-size: 0.9rem; }
  .service-cta { padding: 80px 5%; }
  .service-cta-title { font-size: clamp(2rem, 6vw, 3rem); }
}

/* =========================================
   12. AUDIO & TV PAGE SPECIFIC CSS
   ========================================= */

/* Hero Waveform & Specifics */
.audio-hero-content { transform: translateY(-30px) !important; }
.audio-hero-subtitle { max-width: 550px; line-height: 1.6; margin-top: 15px; }
.waveform-line { position: absolute; bottom: 20%; left: 0; width: 100%; height: 2px; background: linear-gradient(90deg, transparent, var(--accent-gold), transparent); opacity: 0.25; }

/* Audio Tab Icons & Animation */
.audio-icon-svg { stroke: var(--accent-gold); stroke-width: 1.5; fill: none; }
.bars { display: flex; gap: 3px; align-items: flex-end; height: 16px; }
.b { width: 2px; background: var(--accent-gold); border-radius: 1px; animation: move 1s ease-in-out infinite alternate; }
.b:nth-child(2) { animation-delay: 0.2s; height: 100%; }
.b:nth-child(3) { animation-delay: 0.4s; height: 60%; }
@keyframes move { from { height: 20%; } to { height: 100%; } }

/* Horizontal Gallery */
.audio-gallery-section { padding: 160px 0 120px 0; background: var(--bg-body); }
.audio-gallery-header { text-align: center; padding: 0 5%; margin-bottom: 60px; }
.audio-gallery-scroll { display: flex; gap: 30px; padding: 0 0 0 5%; overflow-x: auto; cursor: grab; -webkit-overflow-scrolling: touch; scrollbar-width: none; -ms-overflow-style: none; }
.audio-gallery-scroll::-webkit-scrollbar { display: none; }
.audio-gallery-scroll::after {content: ''; flex: 0 0 5vw; width: 5vw;}
.audio-gallery-item { flex: 0 0 auto; width: min(70vw, 500px); height: 400px; border-radius: 4px; overflow: hidden; position: relative; border: 1px solid var(--glass-border); transition: border-color 0.4s ease; }
.audio-gallery-item:hover { border-color: var(--glass-border-hover); }
.audio-gallery-item img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.6s ease; }
.audio-gallery-item:hover img { transform: scale(1.05); }
.audio-gallery-caption { position: absolute; bottom: 0; left: 0; right: 0; padding: 30px; background: linear-gradient(to top, var(--overlay-gradient-start), transparent); z-index: 2; }
.audio-gallery-caption h3 { font-size: 1.5rem; color: var(--c-pure-white); margin-bottom: 8px; }
.audio-gallery-caption p { color: var(--c-gray-300); font-size: 0.9rem; }

/* Statement Section */
.audio-statement { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; padding: 160px 5%; background: var(--bg-body-secondary); align-items: center; }
.audio-statement-text h2 { font-size: clamp(2.5rem, 4vw, 3.5rem); color: var(--text-main); margin-bottom: 1.5rem; line-height: 1.1; font-family: var(--f-bold) !important; font-weight: 100 !important; letter-spacing: -0.02em !important; }
.audio-statement-text p { color: var(--text-muted); font-size: 1.1rem; line-height: 1.8; max-width: 450px; }
.audio-statement-visual { border-radius: 4px; overflow: hidden; box-shadow: var(--shadow-md); height: 400px; position: relative; }
.audio-statement-visual img { width: 100%; height: 120%; top: -10%; position: absolute; object-fit: cover; filter: contrast(1.03); }

/* Specs Grid */
.audio-specs-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 60px; padding: 120px 5%; background: var(--bg-body); max-width: 1200px; margin: 0 auto; border-bottom: 1px solid var(--glass-border); }
.audio-spec-item { text-align: center; }
.audio-spec-value { font-family: var(--f-light) !important; font-size: 3.5rem; color: var(--accent-gold); line-height: 1; margin-bottom: 10px; letter-spacing: -0.05em; }
.audio-spec-label { font-family: var(--f-medium); font-size: 0.7rem; text-transform: uppercase; letter-spacing: 0.2em; color: var(--text-muted); }

/* Audio Media Queries */
@media (max-width: 1024px) {
  .audio-tabs-footer { gap: 12px !important; margin-top: 40px !important; position: relative !important; bottom: auto !important; display: flex !important; flex-direction: column !important; align-items: center !important; width: 100% !important; padding: 0 !important; z-index: 10 !important; }
  .audio-statement { padding: 100px 6% !important; gap: 50px !important; }
  .audio-specs-grid { padding: 80px 5% !important; gap: 60px !important; }
}
@media (max-width: 768px) {
  .audio-statement { grid-template-columns: 1fr; gap: 60px; }
  .audio-specs-grid { grid-template-columns: 1fr; gap: 40px; }
  .audio-gallery-item { width: 85vw; height: 300px; }
  .audio-gallery-section { padding: 80px 0; }
}
@media (max-width: 480px) {
  .audio-gallery-item { width: 90vw; height: 260px; }
  .audio-gallery-caption { padding: 20px; }
  .audio-gallery-caption h3 { font-size: 1.2rem; }
}

/* =========================================
   13. SECURITY PAGE SPECIFIC CSS
   ========================================= */
/* Security Hero Tabs Override */
.security-hero .tabs-row { 
  position: absolute; 
  bottom: 60px; 
  left: 0; 
  width: 100%; 
  display: flex; 
  justify-content: center; 
  gap: 30px; 
  z-index: 10; 
  padding: 0 5%; 
}

@media (max-width: 1024px) {
  .security-hero .tabs-row {
    position: relative !important;
    bottom: auto !important;
    display: flex !important;
    flex-direction: column !important;
    align-items: center !important;
    gap: 15px !important;
    margin-top: 30px !important;
  }
}
/* Quad Security Grid */
.security-quad-section { padding: 120px 5%; background: var(--bg-body); }
.security-quad-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; max-width: 1600px; margin: 0 auto; }
.security-quad-item { position: relative; height: 350px; overflow: hidden; border-radius: 4px; border: 1px solid var(--glass-border); transition: border-color 0.4s ease; }
.security-quad-item:hover { border-color: var(--glass-border-hover); }
.security-quad-item img { width: 100%; height: 100%; object-fit: cover; filter: saturate(0.3) contrast(1.1); transition: all 0.6s ease; }
.security-quad-item:hover img { filter: saturate(1) contrast(1.03); transform: scale(1.05); }

/* Quad Grid Labels & Status */
.security-quad-label { position: absolute; top: 20px; left: 20px; font-family: var(--f-medium); font-size: 0.65rem; letter-spacing: 0.15em; color: var(--accent-gold); text-transform: uppercase; background: rgba(0,0,0,0.6); padding: 6px 12px; border-radius: 4px; }
.security-quad-status { position: absolute; top: 20px; right: 20px; width: 8px; height: 8px; background: var(--whatsapp-green); border-radius: 50%; animation: pulse 2s infinite; }
@keyframes pulse { 0%, 100% { opacity: 1; } 50% { opacity: 0.5; } }

/* Quad Grid Info */
.security-quad-info { position: absolute; bottom: 0; left: 0; right: 0; padding: 30px; background: linear-gradient(to top, var(--overlay-gradient-start), transparent); }
.security-quad-info h4 { font-size: 1.4rem; color: var(--c-pure-white); margin-bottom: 5px; }
.security-quad-info p { color: var(--c-gray-200); font-size: 0.85rem; }

/* Security Focus Section */
.security-focus { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; padding: 160px 5%; background: var(--bg-body-secondary); align-items: center; }
.security-focus-content h2 { font-size: clamp(2.5rem, 4vw, 3.5rem); color: var(--text-main); margin-bottom: 1.5rem; line-height: 1.1; font-family: var(--f-bold) !important; font-weight: 100 !important; letter-spacing: -0.02em !important; }
.security-focus-content p { color: var(--text-muted); font-size: 1.1rem; line-height: 1.8; max-width: 450px; }
.security-focus-image { border-radius: 4px; overflow: hidden; box-shadow: var(--shadow-md); height: 400px; position: relative; }
.security-focus-image img { width: 100%; height: 120%; top: -10%; position: absolute; object-fit: cover; filter: contrast(1.03); }

/* Security Features List */
.security-features { padding: 120px 5%; background: var(--bg-body); }
.security-features-list { max-width: 800px; margin: 0 auto; }
.security-feature-item { display: flex; gap: 40px; align-items: flex-start; padding: 40px 0; border-bottom: 1px solid var(--glass-border); }
.security-feature-num { font-size: 2rem; color: var(--accent-gold-dim); line-height: 1; font-family: var(--f-light) !important; }
.security-feature-text h4 { font-size: 1.5rem; color: var(--text-main); margin-bottom: 10px; }
.security-feature-text p { color: var(--text-muted); font-size: 1rem; line-height: 1.7; }

/* Security Media Queries */
@media (max-width: 768px) {
  .security-quad-grid { grid-template-columns: 1fr; }
  .security-quad-item { height: 280px; }
  .security-focus { grid-template-columns: 1fr; gap: 60px; }
  .security-feature-item { flex-direction: column; text-align: center; gap: 20px; align-items: center; }
  .security-feature-num { margin: 0 auto; }
}
@media (max-width: 480px) {
  .security-quad-item { height: 240px; }
  .security-quad-info { padding: 20px; }
  .security-quad-info h4 { font-size: 1.2rem; }
}

/* =========================================
   14. SOLAR & ENERGY PAGE SPECIFIC CSS
   ========================================= */

/* Solar Hero (Split Screen) */
.solar-hero { display: grid; grid-template-columns: 1fr 1fr; min-height: 90vh; }
.solar-hero-left { display: flex; flex-direction: column; justify-content: center; padding: 100px 8%; background: var(--bg-body); }
.solar-hero-right { position: relative; overflow: hidden; }
.solar-hero-right img { width: 100%; height: 100%; object-fit: cover; filter: contrast(1.05); }
.solar-gradient-divider { position: absolute; left: 0; top: 0; bottom: 0; width: 150px; background: linear-gradient(to right, var(--bg-body) 0%, transparent 100%); z-index: 1; }

/* Solar Hero Tabs Override */
.solar-hero-left .tabs-row { position: relative; bottom: auto; left: auto; width: auto; padding: 0; margin-top: 40px; justify-content: flex-start; gap: 15px; }
.solar-hero-left .glass-tab { flex: 0 1 auto; min-width: 200px; }

/* Stats Section */
.solar-stats { display: flex; justify-content: center; gap: 80px; border-top: 1px solid var(--glass-border); border-bottom: 1px solid var(--glass-border); padding: 120px 5%; background: var(--bg-body); }
.solar-stat { text-align: center; }
.solar-stat-value { font-family: var(--f-light) !important; font-size: 3rem; color: var(--accent-gold); line-height: 1; margin-bottom: 10px; }
.solar-stat-label { font-family: var(--f-medium); font-size: 0.7rem; text-transform: uppercase; letter-spacing: 0.2em; color: var(--text-muted); }

/* Dual Panels (Day/Night) */
.solar-dual { display: grid; grid-template-columns: 1fr 1fr; min-height: 80vh; }
.solar-dual-panel { position: relative; display: flex; flex-direction: column; justify-content: center; padding: 100px 8%; }
.solar-dual-panel.dark { background: var(--bg-body); }
.solar-dual-panel.light { background: var(--light-bg); color: var(--light-text); }
.solar-dual-panel.light .micro-label { color: var(--light-accent); }
.solar-dual-panel h2 { font-size: clamp(2rem, 3vw, 3rem); line-height: 1.15; margin-bottom: 1.5rem; font-family: var(--f-bold) !important; font-weight: 100 !important; }
.solar-dual-panel.dark h2 { color: var(--text-main); }
.solar-dual-panel.light h2 { color: var(--light-text); }
.solar-dual-panel p { font-size: 1.05rem; line-height: 1.8; max-width: 400px; }
.solar-dual-panel.dark p { color: var(--text-muted); }
.solar-dual-panel.light p { color: var(--light-text-muted); opacity: 0.9; }

/* Flow Diagram */
.solar-flow { padding: 160px 5%; background: var(--bg-body); text-align: center; }
.solar-flow-header { max-width: 600px; margin: 0 auto 100px; }
.solar-flow-header h2 { font-size: clamp(2.5rem, 4vw, 3.5rem); color: var(--text-main); margin-bottom: 1.5rem; line-height: 1.1; font-family: var(--f-bold) !important; font-weight: 100 !important; }
.solar-flow-header p { color: var(--text-muted); font-size: 1.1rem; line-height: 1.8; }
.diagram-wrapper { width: 100%; max-width: 850px; margin: 60px auto 0; position: relative; overflow-x: auto; -webkit-overflow-scrolling: touch; padding-bottom: 20px; }
.diagram-wrapper svg { width: 100%; height: auto; }
.stroke-white { stroke: var(--diagram-color); stroke-width: 1.5; fill: none; stroke-linecap: round; stroke-linejoin: round; transition: stroke 0.5s ease; }
.stroke-grey { stroke: var(--text-muted); stroke-width: 1; fill: none; stroke-linecap: round; stroke-linejoin: round; }
.flow-path { stroke: var(--diagram-color); stroke-width: 1.5; fill: none; opacity: 0.2; }
.icon-solid { fill: var(--diagram-color); opacity: 0.92; }

/* Image Break */
.solar-image-break { position: relative; width: 100%; height: 60vh; overflow: hidden; margin-top: 0; }
.solar-image-break img { width: 100%; height: 130%; top: -15%; position: absolute; object-fit: cover; filter: contrast(1.03); }
.solar-image-break-overlay { position: absolute; inset: 0; background: linear-gradient(to bottom, var(--bg-body) 0%, transparent 20%, transparent 80%, var(--bg-body) 100%); }

/* Solar Media Queries */
@media (max-width: 1024px) {
  .solar-hero { grid-template-columns: 1fr !important; min-height: auto !important; }
  .solar-hero-left { order: 1; padding: 100px 5% 40px; }
  .solar-hero-left .tabs-row { justify-content: center; flex-direction: column; align-items: center; width: 100%; }
  .solar-hero-left .glass-tab { width: 100%; max-width: 300px; }
  .solar-hero-right { order: 2; min-height: 50vh; }
  .solar-gradient-divider { display: none; }
}
@media (max-width: 768px) {
  .solar-hero-left { padding: 80px 5%; }
  .solar-stat-value { font-size: 2.5rem; }
  .solar-stats { flex-direction: column; gap: 40px; }
  .solar-dual { grid-template-columns: 1fr; }
  .solar-dual-panel { padding: 60px 5%; }
}
@media (prefers-color-scheme: light) {
  .solar-hero-left .solar-hero-title { color: var(--text-main) !important; text-shadow: none !important; }
  .solar-hero-left .solar-hero-subtitle { color: var(--text-muted) !important; }
  .solar-hero-left .glass-tab { background: var(--glass-bg) !important; border-color: var(--glass-border) !important; box-shadow: var(--shadow-sm) !important; }
  .solar-hero-left .glass-tab:hover { background: var(--glass-bg-hover) !important; border-color: var(--accent-gold) !important; }
  .solar-hero-left .tab-info, .solar-hero-left .tab-status { color: var(--text-main) !important; }
  .solar-hero-left .tab-label { color: var(--text-muted) !important; }
}
/* =========================================
   15. ABOUT PAGE SPECIFIC CSS
   ========================================= */

/* Resilience / Belief Section */
.resilience-section { padding: 120px 5%; background: var(--bg-body); }
.resilience-container { max-width: 1200px; margin: 0 auto; }
.resilience-header { text-align: right; margin-left: auto; max-width: 800px; margin-bottom: 60px; }
.resilience-header h2 { font-family: var(--f-bold) !important; font-size: clamp(2.5rem, 5vw, 4rem); color: var(--text-main); margin-bottom: 20px; line-height: 1.1; }
.resilience-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 50px 40px; border-top: 1px solid var(--glass-border); border-bottom: 1px solid var(--glass-border); padding: 60px 0; margin-bottom: 60px; }
.resilience-item { display: flex; flex-direction: column; align-items: flex-start; gap: 10px; }
.resilience-item .num { font-family: var(--f-bold); color: var(--accent-gold); font-size: 1.2rem; }
.resilience-item .text { font-family: var(--f-medium); color: var(--text-main); font-size: 1.2rem; }
.resilience-footer { text-align: left; margin-right: auto; max-width: 800px; }

/* About Process (Light Mode) */
.about-process { padding: 100px 5%; background: var(--light-bg); color: var(--light-text); }
.about-process h2 { color: var(--light-text); margin-bottom: 60px; font-family: var(--f-bold) !important; font-size: clamp(2.8rem, 5vw, 4.5rem); line-height: 1.2; font-weight: 100 !important; letter-spacing: -0.02em; }
.about-process-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); gap: 40px; border-top: 1px solid rgba(13, 92, 67, 0.2); padding-top: 40px; }
.about-process-item h4 { font-size: 1.5rem; margin: 15px 0; color: var(--light-text); font-family: var(--f-light); font-weight: 300; }
.about-process-item p { font-size: 0.95rem; color: var(--light-text-muted); line-height: 1.6; }

/* Team Executive Section */
.team-section-executive { padding: 140px 5%; background: var(--light-bg); color: var(--light-text); overflow: hidden; }
.team-header-executive { display: flex; justify-content: space-between; align-items: flex-end; max-width: 1400px; margin: 0 auto 80px; flex-wrap: wrap; gap: 40px; }
.team-title-group { flex: 1; }
.team-title-group .micro-label { color: var(--light-accent); margin-bottom: 15px; }
.team-title-group h2 { font-size: clamp(2.5rem, 4vw, 3.5rem); line-height: 1.1; color: var(--light-text); margin: 0; font-family: var(--f-bold) !important; font-weight: 100 !important; }
.team-header-description { max-width: 400px; color: var(--light-text-muted); font-size: 0.95rem; line-height: 1.6; margin-left: 60px; }

.team-group-hero { width: 100%; height: 500px; position: relative; overflow: hidden; margin-bottom: 100px; background: var(--c-pure-black); border-radius: 4px; border: 1px solid rgba(13, 92, 67, 0.2); }
.team-group-hero img { width: 100%; height: 120%; top: -10%; position: absolute; object-fit: cover; filter: brightness(0.7) contrast(1.1); transition: transform 2s var(--ease-out); }
.team-group-hero:hover img { transform: scale(1.03); }
.team-hero-overlay { position: absolute; bottom: 40px; left: 40px; max-width: 400px; z-index: 2; }
.team-hero-overlay h3 { font-size: 1.8rem; margin-bottom: 10px; color: var(--c-pure-white); font-family: var(--f-light); font-weight: 300; }
.team-hero-overlay p { color: var(--c-gray-300); font-size: 0.9rem; }

.executive-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 40px; margin-bottom: 120px; }
.executive-card { position: relative; cursor: default; display: flex; flex-direction: column; align-items: center; text-align: center; }
.executive-image-wrapper { width: 160px; height: 160px; border-radius: 50%; overflow: hidden; background: var(--bg-card); margin-bottom: 24px; position: relative; border: 1px solid rgba(13, 92, 67, 0.2); }
.executive-image-wrapper::after { content: ''; position: absolute; inset: 0; background: var(--light-accent); transform: translateY(100%); transition: transform 0.6s var(--ease-out); mix-blend-mode: overlay; opacity: 0; }
.executive-card:hover .executive-image-wrapper::after { transform: translateY(0); opacity: 0.3; }
.executive-card img { width: 100%; height: 100%; object-fit: cover; filter: grayscale(0); transition: filter 0.6s var(--ease-out), transform 0.8s var(--ease-out); }
.executive-info h4 { font-size: 1.5rem; margin-bottom: 5px; letter-spacing: 0.5px; color: var(--light-text); font-family: var(--f-light); font-weight: 300; }
.executive-role { color: var(--light-accent); text-transform: uppercase; font-size: 0.75rem; letter-spacing: 0.15em; font-weight: 500; font-family: var(--f-medium); }
.executive-divider { width: 30px; height: 1px; background: var(--light-accent); margin: 16px auto; opacity: 0.5; transition: width 0.4s var(--ease-out); }
.executive-card:hover .executive-divider { width: 100%; opacity: 1; }

.team-quote-block { max-width: 800px; margin: 0 auto 100px auto; padding-left: 30px; border-left: 2px solid var(--accent-gold); }
.team-quote-block p { font-family: var(--f-bold); font-size: clamp(1.2rem, 3vw, 1.5rem); line-height: 1.4; color: var(--light-text); font-style: italic; margin-bottom: 20px; font-weight: 100; }
.team-quote-block span { font-family: var(--f-medium); font-size: 0.85rem; color: var(--accent-gold); letter-spacing: 0.15em; text-transform: uppercase; }

/* About Media Queries */
@media (max-width: 1024px) { 
  .executive-grid { grid-template-columns: repeat(2, 1fr); gap: 30px; } 
  .team-header-executive { flex-direction: column; align-items: flex-start; } 
  .team-header-description { margin-left: 0; margin-top: 30px; max-width: 100%; } 
  .team-group-hero { height: 400px; margin-bottom: 80px; } 
  .team-hero-overlay { left: 30px; bottom: 30px; max-width: 300px; } 
}
@media (max-width: 768px) { 
  .resilience-grid { grid-template-columns: 1fr; gap: 30px; }
  .executive-grid { grid-template-columns: 1fr; gap: 50px; } 
  .team-group-hero { height: 350px; margin-bottom: 60px; } 
  .team-hero-overlay { left: 20px; bottom: 20px; } 
  .team-hero-overlay h3 { font-size: 1.5rem; } 
}
@media (max-width: 480px) { 
  .team-group-hero { height: 300px; } 
  .team-hero-overlay { left: 15px; bottom: 15px; max-width: 250px; } 
  .team-hero-overlay h3 { font-size: 1.3rem; } 
  .executive-info h4 { font-size: 1.3rem; } 
}

/* =========================================
   16. PACKAGES & FORM SPECIFIC CSS
   ========================================= */

.package-page-wrapper { padding: 160px 5% 100px; background: var(--bg-body); color: var(--text-main); min-height: 80vh; display: flex; flex-direction: column; justify-content: center; }
.package-container { max-width: 900px; margin: 0 auto; width: 100%; }

/* View Toggling */
.package-view { display: none; opacity: 0; transition: opacity 0.4s ease; }
.package-view.active { display: block; opacity: 1; }

/* Header & Features */
.package-header { margin-bottom: 60px; }
.package-header h1 { font-family: var(--f-bold) !important; font-weight: 100 !important; font-size: clamp(3rem, 6vw, 4.5rem); line-height: 1.1; margin-bottom: 20px; color: var(--text-main); letter-spacing: -0.02em; }
.package-header p { font-family: var(--f-light); font-size: 1.1rem; line-height: 1.6; color: var(--text-muted); max-width: 600px; }

.package-features-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); gap: 24px; margin-bottom: 80px; padding-bottom: 80px; border-bottom: 1px solid var(--glass-border); }
.package-feature-item { display: flex; align-items: flex-start; gap: 15px; }
.package-feature-item svg { flex-shrink: 0; margin-top: 2px; stroke: var(--accent-gold); }
.package-feature-item span { font-family: var(--f-light); font-size: 1.05rem; color: var(--text-muted); line-height: 1.5; }

/* Forms */
.download-title { font-family: var(--f-bold) !important; font-weight: 100 !important; font-size: clamp(2rem, 4vw, 2.8rem); margin-bottom: 40px; color: var(--text-main); letter-spacing: -0.02em; }
.package-form { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; margin-bottom: 30px; }
.form-group.full-width { grid-column: 1 / -1; }

.package-form label { display: block; font-family: var(--f-medium); font-size: 0.75rem; text-transform: uppercase; color: var(--text-muted); letter-spacing: 0.15em; margin-bottom: 10px; }
.package-form input, .package-form select { width: 100%; padding: 16px 20px; background: var(--bg-card); border: 1px solid var(--glass-border); border-radius: 4px; color: var(--text-main); font-family: var(--f-light); font-size: 1rem; transition: all 0.4s var(--ease-out); box-sizing: border-box; }
.package-form input:focus, .package-form select:focus { outline: none; border-color: var(--accent-gold); background: var(--bg-card-hover); box-shadow: var(--shadow-gold); }
.package-form input::placeholder { color: var(--text-subtle); }
.package-form select { appearance: none; background-image: url("data:image/svg+xml,%3Csvg width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='%238B7D75' stroke-width='2'%3E%3Cpolyline points='6 9 12 15 18 9'%3E%3C/polyline%3E%3C/svg%3E"); background-repeat: no-repeat; background-position: right 20px center; background-size: 12px; padding-right: 40px; }

.form-error { font-family: var(--f-medium); font-size: 0.75rem; color: #ff6b6b; margin-top: 8px; min-height: 16px; display: none; }
.form-disclaimer { grid-column: 1 / -1; font-family: var(--f-light); font-size: 0.8rem; color: var(--text-muted); text-align: center; margin-top: 20px; padding-top: 20px; border-top: 1px solid var(--glass-border); line-height: 1.5; }

.btn-submit { grid-column: 1 / -1; padding: 16px 24px; background: rgba(255,255,255,0.1); border: 1px solid var(--glass-border); border-radius: 50px; color: #FFFFFF; font-family: var(--f-medium); font-size: 0.85rem; font-weight: 600; text-transform: uppercase; letter-spacing: 0.15em; cursor: pointer; transition: all 0.4s var(--ease-out); backdrop-filter: blur(12px); -webkit-backdrop-filter: blur(12px); display: flex; justify-content: center; align-items: center; margin-top: 10px; }
.btn-submit:hover:not(:disabled) { background: rgba(255,255,255,0.2); border-color: var(--accent-gold); box-shadow: var(--shadow-gold); }
.btn-submit:disabled { opacity: 0.5; cursor: not-allowed; }

/* Success States */
.form-success { display: none; text-align: center; padding: 60px 20px; background: rgba(255,255,255,0.02); border: 1px solid var(--glass-border); border-radius: 8px; }
.form-success.active { display: block; }
.success-icon-wrapper { width: 80px; height: 80px; margin: 0 auto 24px; border-radius: 50%; background: rgba(34,197,94,0.1); border: 2px solid rgba(34,197,94,0.3); display: flex; align-items: center; justify-content: center; color: #4ade80; }
.success-icon-wrapper svg { width: 32px; height: 32px; }
.form-success h4 { font-family: var(--f-bold) !important; font-weight: 100 !important; font-size: 1.8rem; color: var(--c-pure-white); margin-bottom: 15px; margin-top: 0; }
.form-success p { font-family: var(--f-light); font-size: 1rem; color: var(--c-gray-300); margin: 0; }

@media (max-width: 768px) {
  .package-page-wrapper { padding: 120px 5% 80px; }
  .package-form { grid-template-columns: 1fr; gap: 20px; }
  .form-group.full-width { grid-column: 1; }
  .btn-submit, .form-disclaimer { grid-column: 1; }
}

/* Light Mode Overrides for Form & Button */
@media (prefers-color-scheme: light) {
  .btn-submit { 
    background: var(--c-green) !important; 
    border-color: var(--c-green) !important; 
    color: var(--c-pure-white) !important; 
    box-shadow: var(--shadow-sm);
  }
  .btn-submit:hover:not(:disabled) { 
    background: var(--c-green-light) !important; 
    border-color: var(--c-green-light) !important; 
    box-shadow: var(--shadow-md);
  }
  /* Ensures the success message text is also readable in light mode */
  .form-success h4 { color: var(--text-main) !important; }
  .form-success p { color: var(--text-muted) !important; }
}

/* Services horizontal track — image fix */
.services-horizontal-track .visual-col {
  flex: 0 0 45% !important;
  max-width: 45% !important;
  height: 100% !important;
  position: relative;
  overflow: hidden;
}

.services-horizontal-track .img-mask {
  position: relative;
  width: 100%;
  height: 100%;
  overflow: hidden;
}

.services-horizontal-track .img-mask img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 1 !important;
  transform: scale(1) !important;
}

@media (max-width: 1024px) {

  .services-horizontal-track .info-col .btn-glass {
    width: auto;
    justify-content: flex-start;
    padding: 6px 6px 6px 6px;
    min-height: 48px;
    gap: 12px;
    cursor: auto;
    flex-direction: row-reverse;
  }

  .services-horizontal-track .info-col .btn-glass.btn-reverse {
    flex-direction: row-reverse;
    padding: 6px 6px 6px 6px;
  }

  .services-horizontal-track .info-col .btn-circle {
    width: 36px;
    height: 36px;
    flex-shrink: 0;
  }

  .services-horizontal-track .info-col .btn-circle svg {
    transform: none !important;
  }
}

@media (max-width: 1024px) {

  .services-horizontal-track .service-row {
    flex: 0 0 85vw !important;
    flex-direction: column !important;
    height: auto !important;
    min-height: 480px !important;
    scroll-snap-align: center !important;
    overflow: hidden !important;
  }

  .services-horizontal-track .visual-col {
    flex: 0 0 220px !important;
    width: 100% !important;
    max-width: 100% !important;
    height: 220px !important;
    position: relative !important;
    overflow: hidden !important;
  }

  .services-horizontal-track .img-mask {
    width: 100% !important;
    height: 100% !important;
    position: relative !important;
    overflow: hidden !important;
    border-top-left-radius: 20px !important;
    border-top-right-radius: 20px !important;
    border-bottom-left-radius: 0 !important;
    border-bottom-right-radius: 0 !important;
  }

  .services-horizontal-track .img-mask img {
    position: absolute !important;
    inset: 0 !important;
    width: 100% !important;
    height: 100% !important;
    object-fit: cover !important;
    opacity: 1 !important;
    transform: scale(1) !important;
  }

  .services-horizontal-track .info-col {
    flex: 1 !important;
    width: 100% !important;
    max-width: 100% !important;
    padding: 25px !important;
    text-align: left !important;
    align-items: flex-start !important;
    display: flex !important;
    flex-direction: column !important;
    justify-content: center !important;
  }
}