﻿/* ===================== RESET & ROOT ===================== */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
img { max-width: 100%; height: auto; display: block; }
:root {
  --navy: #0E2033; --navy-mid: #1A3A5C; --navy-light: #2A5080;
  --gold: #C4922A; --gold-light: #E5B84A; --gold-pale: #F7EDD8;
  --cream: #F8F5EF; --white: #FFFFFF; --gray-100: #F2EFE9;
  --gray-200: #E0DBD2; --gray-400: #9A9590; --gray-600: #5A5550;
  --dark: #1A1610;
  --font-display: 'Cormorant Garamond', Georgia, serif;
  --font-body: Arial, sans-serif;
  --ease-out: cubic-bezier(0.22, 1, 0.36, 1);
  /* FLUID TYPOGRAPHY */
  --text-xs: clamp(0.625rem, 0.5vw + 0.5rem, 0.6875rem);
  --text-sm: clamp(0.75rem, 0.8vw + 0.6rem, 0.875rem);
  --text-base: clamp(0.875rem, 1vw + 0.75rem, 1rem);
  --text-md: clamp(1.125rem, 1.5vw + 0.875rem, 1.5rem);
  --text-lg: clamp(1.5rem, 2vw + 1rem, 2.5rem);
  --text-xl: clamp(2rem, 3.5vw + 1rem, 3.125rem);
  --text-xxl: clamp(2.5rem, 5vw + 1rem, 4.375rem);
  /* FLUID SPACING */
  --space-xs: clamp(0.5rem, 1vw, 0.75rem);
  --space-sm: clamp(1rem, 2vw, 1.5rem);
  --space-md: clamp(1.5rem, 4vw, 3rem);
  --space-lg: clamp(3rem, 6vw, 5rem);
  --space-xl: clamp(4rem, 8vw, 7.5rem);
}
/* ===================== KEYFRAMES ===================== */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(30px); }
  to   { opacity: 1; transform: translateY(0); }
}
/* ===================== BASE ===================== */
html { scroll-behavior: smooth; font-size: 100%; }
body { font-family: var(--font-body); background: var(--cream); color: var(--dark); overflow-x: hidden; cursor: none; line-height: 1.6; }
a:focus-visible, button:focus-visible, input:focus-visible, select:focus-visible, textarea:focus-visible { outline: 2px solid var(--gold); outline-offset: 4px; }
/* ===================== CUSTOM CURSOR ===================== */
.cursor { position: fixed; top: 0; left: 0; width: 10px; height: 10px; background: var(--gold); border-radius: 50%; pointer-events: none; z-index: 9999; transition: transform 0.15s ease, width 0.3s ease, height 0.3s ease, background 0.3s; transform: translate(-50%, -50%); }
.cursor-ring { position: fixed; top: 0; left: 0; width: 36px; height: 36px; border: 1px solid rgba(196,146,42,0.5); border-radius: 50%; pointer-events: none; z-index: 9998; transition: transform 0.4s var(--ease-out), width 0.4s ease, height 0.4s ease, opacity 0.3s; transform: translate(-50%, -50%); }
@media (hover: none) and (pointer: coarse) { body { cursor: auto; } .cursor, .cursor-ring { display: none !important; } }
body:hover .cursor-ring { opacity: 1; }
.cursor.hover { width: 16px; height: 16px; background: var(--gold-light); }
.cursor-ring.hover { width: 56px; height: 56px; border-color: var(--gold); }
::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: var(--navy); }
::-webkit-scrollbar-thumb { background: var(--gold); border-radius: 3px; }
/* ===================== NAVBAR ===================== */
nav { position: fixed; top: 0; left: 0; right: 0; z-index: 1000; display: flex; align-items: center; justify-content: space-between; padding: var(--space-sm) var(--space-md); transition: all 0.5s var(--ease-out); }
nav.scrolled { background: rgba(14, 32, 51, 0.95); backdrop-filter: blur(20px); padding: var(--space-xs) var(--space-md); border-bottom: 1px solid rgba(196,146,42,0.15); }
.logo-img { height: clamp(60px, 8vh, 90px); width: auto; }
.nav-links { display: flex; align-items: center; gap: clamp(1rem, 2.5em, 2.5rem); list-style: none; }
.nav-links a { font-family: var(--font-body); font-size: var(--text-sm); font-weight: 400; letter-spacing: 2px; text-transform: uppercase; color: rgba(255,255,255,0.75); text-decoration: none; position: relative; transition: color 0.3s; }
.nav-links a::after { content: ''; position: absolute; bottom: -4px; left: 0; right: 100%; height: 1px; background: var(--gold); transition: right 0.3s var(--ease-out); }
.nav-links a:hover { color: var(--white); }
.nav-links a:hover::after { right: 0; }
.nav-cta { border: 1px solid rgba(196,146,42,0.5); padding: 0.6em 1.5em; font-size: var(--text-sm); font-weight: 500; color: var(--gold) !important; transition: all 0.3s !important; }
.nav-cta:hover { background: var(--gold) !important; color: var(--navy) !important; border-color: var(--gold) !important; }
.nav-cta::after { display: none !important; }
.nav-copro-btn { background: var(--gold); color: var(--navy) !important; font-size: var(--text-sm); font-weight: 600; padding: 0.75em 1.5em; border: none; cursor: pointer; transition: background 0.3s; display: inline-flex; align-items: center; gap: 8px; text-decoration: none; }
.nav-copro-btn:hover { background: var(--gold-light); }
.nav-copro-btn::after { display: none !important; }
.hamburger { display: none; flex-direction: column; gap: 5px; cursor: pointer; padding: 10px; background: transparent; border: none; }
.hamburger span { width: 24px; height: 2px; background: var(--white); transition: all 0.3s; }
.hamburger[aria-expanded="true"] span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.hamburger[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }
/* ===================== HERO ===================== */
.hero { min-height: 100vh; min-height: 100dvh; background: var(--navy); position: relative; display: flex; align-items: center; overflow: hidden; padding-top: var(--space-xl); }
.hero-bg { position: absolute; inset: 0; background: radial-gradient(ellipse 80% 60% at 70% 40%, rgba(196,146,42,0.08) 0%, transparent 60%), radial-gradient(ellipse 50% 80% at 20% 80%, rgba(26,58,92,0.6) 0%, transparent 60%); }
.hero-grid { position: absolute; inset: 0; background-image: linear-gradient(rgba(196,146,42,0.04) 1px, transparent 1px), linear-gradient(90deg, rgba(196,146,42,0.04) 1px, transparent 1px); background-size: clamp(40px, 5vw, 80px) clamp(40px, 5vw, 80px); }
.hero-content { position: relative; z-index: 2; padding: 0 var(--space-md); max-width: 900px; width: 100%; }
.hero-eyebrow { display: flex; align-items: center; gap: 16px; margin-bottom: var(--space-sm); opacity: 0; animation: fadeUp 0.8s 0.3s var(--ease-out) forwards; }
.hero-eyebrow::before { content: ''; width: 40px; height: 1px; background: var(--gold); }
.hero-eyebrow span { font-size: var(--text-xs); font-weight: 400; letter-spacing: 4px; text-transform: uppercase; color: var(--gold); }
.hero h1 { font-family: Arial, sans-serif; font-size: var(--text-xxl); text-transform: uppercase; font-weight: 700; line-height: 1.05; color: var(--white); opacity: 0; animation: fadeUp 0.9s 0.5s var(--ease-out) forwards; }
.hero h1 em { font-style: italic; color: var(--gold); font-weight: 700; }
.hero-sub { margin-top: var(--space-md); font-size: var(--text-base); font-weight: 300; line-height: 1.8; color: rgba(255,255,255,0.7); max-width: 35rem; opacity: 0; animation: fadeUp 0.9s 0.7s var(--ease-out) forwards; }
.hero-actions { display: flex; align-items: center; gap: var(--space-md); margin-top: var(--space-lg); flex-wrap: wrap; opacity: 0; animation: fadeUp 0.9s 0.9s var(--ease-out) forwards; }
.btn-primary { display: inline-flex; align-items: center; justify-content: center; gap: 12px; background: var(--gold); color: var(--navy); font-size: var(--text-sm); font-weight: 600; letter-spacing: 2px; text-transform: uppercase; padding: 1rem 2.25rem; text-decoration: none; transition: all 0.3s var(--ease-out); position: relative; overflow: hidden; }
.btn-primary::before { content: ''; position: absolute; inset: 0; background: var(--gold-light); transform: translateX(-100%); transition: transform 0.4s var(--ease-out); }
.btn-primary:focus-visible::before, .btn-primary:hover::before { transform: translateX(0); }
.btn-primary span { position: relative; z-index: 1; }
.btn-secondary { display: inline-flex; align-items: center; justify-content: center; gap: 10px; color: rgba(255,255,255,0.9); font-size: var(--text-sm); font-weight: 400; letter-spacing: 2px; text-transform: uppercase; text-decoration: none; transition: color 0.3s; }
.btn-secondary:focus-visible, .btn-secondary:hover { color: var(--gold); }
.btn-arrow { width: 36px; height: 36px; border: 1px solid rgba(255,255,255,0.3); border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: var(--text-sm); transition: all 0.3s; }
.btn-secondary:focus-visible .btn-arrow, .btn-secondary:hover .btn-arrow { border-color: var(--gold); background: rgba(196,146,42,0.1); }
.hero-scroll { position: absolute; bottom: var(--space-md); left: var(--space-md); display: flex; align-items: center; gap: 16px; opacity: 0; animation: fadeUp 0.9s 1.2s var(--ease-out) forwards; }
.hero-scroll-line { width: 1px; height: clamp(40px, 8vh, 60px); background: linear-gradient(to bottom, transparent, var(--gold)); animation: scrollPulse 2s ease-in-out infinite; }
.hero-scroll span { font-size: var(--text-xs); font-weight: 300; letter-spacing: 3px; text-transform: uppercase; color: rgba(255,255,255,0.6); writing-mode: vertical-rl; }
.hero-numbers { position: absolute; right: var(--space-md); bottom: var(--space-md); display: flex; gap: var(--space-lg); opacity: 0; animation: fadeUp 0.9s 1.1s var(--ease-out) forwards; }
.hero-stat { text-align: center; }
.hero-stat .val { font-family: var(--font-display); font-size: var(--text-xl); font-weight: 300; color: var(--white); line-height: 1; }
.hero-stat .val em { color: var(--gold); font-style: normal; }
.hero-stat .lbl { font-size: var(--text-xs); font-weight: 300; letter-spacing: 2px; text-transform: uppercase; color: rgba(255,255,255,0.6); margin-top: 6px; }
/* ===================== SECTIONS COMMON ===================== */
section { position: relative; }
.section-pad { padding: var(--space-xl) var(--space-md); }
.section-pad-sm { padding: var(--space-lg) var(--space-md); }
.section-label { display: flex; align-items: center; gap: 16px; margin-bottom: var(--space-sm); }
.section-label::before { content: ''; width: 32px; height: 1px; background: var(--gold); }
.section-label span { font-size: var(--text-xs); font-weight: 500; letter-spacing: 4px; text-transform: uppercase; color: var(--gold); }
.section-title { font-family: Arial, sans-serif; font-size: var(--text-xl); text-transform: uppercase; font-weight: 700; line-height: 1.15; color: var(--navy); }
.section-title em { font-style: italic; color: var(--gold); }
.section-title.white { color: var(--white); }
.section-sub { font-size: var(--text-base); font-weight: 300; line-height: 1.8; color: var(--gray-600); max-width: 40rem; margin-top: var(--space-sm); }
.section-sub.white { color: rgba(255,255,255,0.8); }
/* ===================== ABOUT ===================== */
.about { background: var(--white); overflow: hidden; }
.about-inner { display: grid; grid-template-columns: 1fr 1fr; gap: 0; align-items: stretch; }
.about-text { padding: var(--space-xl) var(--space-md); display: flex; flex-direction: column; justify-content: center; }
.about-visual { background: var(--navy); position: relative; overflow: hidden; min-height: 400px; }
.about-visual-bg { position: absolute; inset: 0; background: radial-gradient(ellipse 100% 100% at 80% 20%, rgba(196,146,42,0.12) 0%, transparent 60%), linear-gradient(135deg, var(--navy) 0%, var(--navy-mid) 100%); }
.about-visual-content { position: absolute; inset: 0; display: flex; align-items: center; justify-content: center; padding: var(--space-md); }
.about-quote { font-family: var(--font-display); font-size: var(--text-lg); font-weight: 300; font-style: italic; color: var(--white); line-height: 1.5; text-align: center; }
.about-quote::before { content: '"'; display: block; font-size: calc(var(--text-lg) * 2); line-height: 0.8; color: var(--gold); margin-bottom: var(--space-xs); font-style: normal; }
.about-quote cite { display: block; font-family: var(--font-body); font-size: var(--text-sm); font-weight: 400; letter-spacing: 3px; text-transform: uppercase; color: var(--gold); margin-top: var(--space-md); font-style: normal; }
.about-features { display: grid; grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); gap: var(--space-md); margin-top: var(--space-lg); }
.about-feat-num { font-family: Arial, sans-serif; font-size: var(--text-lg); font-weight: 700; color: var(--gold); line-height: 1; }
.about-feat-title { font-size: var(--text-md); font-weight: 600; color: var(--navy); margin: 8px 0 6px; }
.about-feat-desc { font-size: var(--text-sm); font-weight: 300; line-height: 1.7; color: var(--gray-600); }
/* ===================== POLES ===================== */
.poles { background: var(--cream); }
.poles-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(320px, 1fr)); gap: 2px; margin-top: var(--space-lg); }
.pole-card { background: var(--white); padding: var(--space-lg) var(--space-md); position: relative; overflow: hidden; transition: all 0.5s var(--ease-out); cursor: pointer; }
.pole-card::before { content: ''; position: absolute; top: 0; left: 0; width: 100%; height: 3px; background: var(--gold); transform: scaleX(0); transform-origin: left; transition: transform 0.4s var(--ease-out); }
.pole-card:focus-visible, .pole-card:hover { background: var(--navy); transform: translateY(-4px); }
.pole-card:focus-visible::before, .pole-card:hover::before { transform: scaleX(1); }
.pole-card:hover .pole-num, .pole-card:hover .pole-title, .pole-card:hover .pole-desc, .pole-card:hover .pole-list li { color: rgba(255,255,255,0.9); }
.pole-card:hover .pole-title { color: var(--white); }
.pole-card:hover .pole-icon { border-color: rgba(196,146,42,0.3); color: var(--gold); }
.pole-card:hover .pole-link { color: var(--gold); }
.pole-card:hover .pole-link::after { width: 100%; }
.pole-num { font-family: Arial, sans-serif; font-size: var(--text-xl); font-weight: 700; color: var(--gray-200); line-height: 1; position: absolute; top: var(--space-md); right: var(--space-md); transition: color 0.5s; }
.pole-icon { width: 56px; height: 56px; border: 1px solid var(--gray-200); display: flex; align-items: center; justify-content: center; font-size: var(--text-lg); margin-bottom: var(--space-sm); transition: all 0.3s; }
.pole-icon img { width: clamp(60px, 8vw, 90px); height: clamp(60px, 8vw, 90px); object-fit: contain; }
.pole-title { font-family: Arial, sans-serif; font-size: var(--text-md); font-weight: 700; text-transform: uppercase; color: var(--navy); line-height: 1.25; margin-bottom: 16px; transition: color 0.5s; }
.pole-desc { font-size: var(--text-sm); font-weight: 300; line-height: 1.8; color: var(--gray-600); margin-bottom: var(--space-sm); transition: color 0.5s; }
.pole-list { list-style: none; display: flex; flex-direction: column; gap: 8px; margin-bottom: var(--space-md); }
.pole-list li { font-size: var(--text-sm); font-weight: 400; color: var(--gray-600); display: flex; align-items: flex-start; gap: 10px; transition: color 0.5s; }
.pole-list li::before { content: ''; width: 16px; height: 1px; background: var(--gold); flex-shrink: 0; margin-top: 0.6em; }
.pole-link { font-size: var(--text-xs); font-weight: 500; letter-spacing: 2px; text-transform: uppercase; color: var(--navy-mid); text-decoration: none; position: relative; transition: color 0.3s; display: inline-block; padding-bottom: 4px; }
.pole-link::after { content: ''; position: absolute; bottom: 0; left: 0; width: 0; height: 1px; background: var(--gold); transition: width 0.3s; }
/* ===================== PROCESS ===================== */
.process { background: var(--navy); overflow: hidden; }
.process::before { content: ''; position: absolute; inset: 0; background: radial-gradient(ellipse 60% 80% at 90% 50%, rgba(196,146,42,0.06) 0%, transparent 60%); }
.process-steps { display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); gap: var(--space-md); margin-top: var(--space-lg); position: relative; }
@media(min-width: 1024px) { .process-steps::before { content: ''; position: absolute; top: 28px; left: 10%; right: 10%; height: 1px; background: linear-gradient(90deg, transparent, rgba(196,146,42,0.3), rgba(196,146,42,0.6), rgba(196,146,42,0.3), transparent); } }
.process-step { display: flex; flex-direction: column; align-items: center; text-align: center; position: relative; }
.process-dot { width: 56px; height: 56px; border: 1px solid rgba(196,146,42,0.4); border-radius: 50%; display: flex; align-items: center; justify-content: center; font-family: Arial, sans-serif; font-size: var(--text-md); font-weight: 700; color: var(--gold); background: var(--navy); position: relative; z-index: 1; margin-bottom: var(--space-sm); transition: all 0.3s; }
.process-step:hover .process-dot { background: var(--gold); color: var(--navy); border-color: var(--gold); transform: scale(1.1); }
.process-step-title { font-family: Arial, sans-serif; font-size: var(--text-md); font-weight: 700; color: var(--white); margin-bottom: 10px; }
.process-step-desc { font-size: var(--text-sm); font-weight: 300; line-height: 1.7; color: rgba(255,255,255,0.6); }
/* ===================== SYNDIC ===================== */
.syndic { background: var(--white); overflow: hidden; }
.syndic-inner { display: grid; grid-template-columns: 1fr 1fr; gap: var(--space-xl); align-items: center; }
.syndic-features { display: flex; flex-direction: column; gap: var(--space-md); margin-top: var(--space-lg); }
.syndic-feat { display: flex; gap: var(--space-sm); padding-bottom: var(--space-sm); border-bottom: 1px solid var(--gray-200); }
.syndic-feat:last-child { border: none; padding-bottom: 0; }
.syndic-feat-icon { width: 48px; height: 48px; background: var(--gold-pale); flex-shrink: 0; display: flex; align-items: center; justify-content: center; }
.syndic-feat-icon .material-icons { font-size: var(--text-lg); color: var(--gold); }
.syndic-feat-title { font-size: var(--text-md); font-weight: 600; color: var(--navy); margin-bottom: 4px; }
.syndic-feat-desc { font-size: var(--text-sm); font-weight: 300; line-height: 1.7; color: var(--gray-600); }
.syndic-visual { position: relative; }
.syndic-card { background: var(--navy); padding: var(--space-md); position: relative; overflow: hidden; border-radius: 4px; }
.syndic-card::after { content: ''; position: absolute; bottom: 0; right: 0; width: 200px; height: 200px; background: radial-gradient(circle, rgba(196,146,42,0.1) 0%, transparent 70%); }
.syndic-stat-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(120px, 1fr)); gap: var(--space-sm); margin-top: var(--space-sm); }
.syndic-stat .n { font-family: var(--font-display); font-size: var(--text-xl); font-weight: 300; color: var(--gold); line-height: 1; }
.syndic-stat .l { font-size: var(--text-xs); font-weight: 300; letter-spacing: 1px; color: rgba(255,255,255,0.8); margin-top: 6px; }
.syndic-cta-text { color: rgba(255,255,255,0.7); font-size: var(--text-sm); font-weight: 300; line-height: 1.7; margin-bottom: var(--space-sm); }
.syndic-cta-block { margin-top: var(--space-md); padding-top: var(--space-sm); border-top: 1px solid rgba(255,255,255,0.08); position: relative; z-index: 2; }
/* ===================== WHY HUBIS ===================== */
.why { background: var(--cream); }
.why-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 2px; margin-top: var(--space-lg); }
.why-card { background: var(--white); padding: var(--space-md); transition: transform 0.4s var(--ease-out), box-shadow 0.4s; border-radius: 4px; }
.why-card:hover { transform: translateY(-8px); box-shadow: 0 32px 64px rgba(14,32,51,0.08); z-index: 2; position: relative; }
.why-card-num { font-family: Arial, sans-serif; font-size: var(--text-lg); font-weight: 700; color: var(--gold); letter-spacing: 2px; margin-bottom: var(--space-sm); }
.why-card-title { font-family: var(--font-display); font-size: var(--text-lg); font-weight: 600; color: var(--navy); margin-bottom: var(--space-sm); line-height: 1.25; }
.why-card-desc { font-size: var(--text-sm); font-weight: 300; line-height: 1.8; color: var(--gray-600); }
/* ===================== TESTIMONIALS ===================== */
.testimonials { background: var(--navy); overflow: hidden; position: relative; }
.testimonials::before { content: ''; position: absolute; inset: 0; background: radial-gradient(ellipse 40% 60% at 10% 50%, rgba(196,146,42,0.06) 0%, transparent 60%), radial-gradient(ellipse 40% 60% at 90% 50%, rgba(42,80,128,0.3) 0%, transparent 60%); }
.testi-wrapper { position: relative; max-width: 800px; margin: var(--space-lg) auto 0 0; overflow: hidden; width: 100%; }
.testi-slider { display: flex; transition: transform 0.5s var(--ease-out); width: 100%; }
.testi-slider .testimonial-card { min-width: 100%; width: 100%; flex-shrink: 0; padding: 0 var(--space-xl) var(--space-md) 0; box-sizing: border-box; }
.testimonial-card-inner { background: rgba(255,255,255,0.04); border: 1px solid rgba(196,146,42,0.12); padding: var(--space-md); position: relative; transition: all 0.4s; border-radius: 4px; }
.testimonial-card-inner:hover { background: rgba(255,255,255,0.07); border-color: rgba(196,146,42,0.3); }
.testimonial-card-inner::before { content: '"'; font-family: var(--font-display); font-size: 100px; line-height: 0.7; color: var(--gold); opacity: 0.2; position: absolute; top: var(--space-sm); left: var(--space-sm); }
.testimonial-text { font-family: var(--font-display); font-size: var(--text-md); font-weight: 300; font-style: italic; color: rgba(255,255,255,0.9); line-height: 1.6; margin-bottom: var(--space-md); margin-top: var(--space-sm); position: relative; z-index: 2; }
.testimonial-author { display: flex; align-items: center; gap: 16px; }
.testimonial-avatar { width: 44px; height: 44px; background: linear-gradient(135deg, var(--gold), var(--navy-mid)); border-radius: 50%; display: flex; align-items: center; justify-content: center; font-family: var(--font-display); font-size: var(--text-sm); font-weight: 600; color: var(--white); }
.testimonial-name { font-size: var(--text-sm); font-weight: 600; color: var(--white); letter-spacing: 0.5px; }
.testimonial-role { font-size: var(--text-xs); font-weight: 300; letter-spacing: 1px; color: var(--gold); }
.testi-btn { position: absolute; top: 50%; transform: translateY(-50%); background: transparent; border: 1px solid var(--gold); color: var(--gold); width: 44px; height: 44px; font-size: var(--text-md); border-radius: 50%; cursor: pointer; transition: background 0.2s, color 0.2s; z-index: 10; display: flex; align-items: center; justify-content: center; }
.testi-btn:hover { background: var(--gold); color: #111; }
.testi-prev { left: 10px; }
.testi-next { right: 10px; }
@media(min-width: 1024px) { .testi-prev { left: -60px; } .testi-next { right: -60px; } }
.testi-dots { display: flex; justify-content: flex-start; gap: 8px; margin-top: var(--space-md); }
.testi-dot { width: 8px; height: 8px; border-radius: 50%; background: rgba(255,255,255,0.3); cursor: pointer; transition: background 0.3s; border: none; padding: 0; }
.testi-dot.active { background: var(--gold); }
.testi-dot:focus-visible { outline: 2px solid var(--gold); outline-offset: 2px; }
/* ===================== INSIGHTS ===================== */
.insights { background: var(--white); }
.insights-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 1.5rem; margin-top: var(--space-lg); }
.insight-card { background: var(--cream); overflow: hidden; transition: all 0.4s var(--ease-out); cursor: pointer; display: flex; flex-direction: column; border-radius: 8px; }
.insight-card:hover { transform: translateY(-4px); box-shadow: 0 10px 30px rgba(0,0,0,0.05); }
.insight-card:hover .insight-img-overlay { opacity: 1; }
.insight-img { height: clamp(200px, 30vh, 260px); background: var(--navy); position: relative; overflow: hidden; background-size: cover; background-position: center; border-radius: 8px 8px 0 0; }
.insight-card:nth-child(1) .insight-img { height: clamp(200px, 30vh, 340px); }
.insight-img-pattern { position: absolute; inset: 0; background-image: linear-gradient(rgba(196,146,42,0.06) 1px, transparent 1px), linear-gradient(90deg, rgba(196,146,42,0.06) 1px, transparent 1px); background-size: 40px 40px; }
.insight-img-overlay { position: absolute; inset: 0; background: rgba(196,146,42,0.15); opacity: 0; transition: opacity 0.4s; }
.insight-tag { position: absolute; top: var(--space-sm); left: var(--space-sm); background: var(--gold); color: var(--navy); font-size: var(--text-xs); font-weight: 600; letter-spacing: 2px; text-transform: uppercase; padding: 5px 12px; border-radius: 20px; }
.insight-body { padding: var(--space-sm) var(--space-md); flex: 1; display: flex; flex-direction: column; }
.insight-date { font-size: var(--text-xs); font-weight: 300; letter-spacing: 1px; color: var(--gold); margin-bottom: 8px; }
.insight-title { font-family: var(--font-display); font-size: var(--text-md); font-weight: 600; color: var(--navy); line-height: 1.3; flex: 1; }
.insight-read { font-size: var(--text-xs); font-weight: 500; letter-spacing: 2px; text-transform: uppercase; color: var(--navy-mid); text-decoration: none; display: flex; align-items: center; gap: 8px; margin-top: 16px; transition: color 0.3s; }
.insight-read::after { content: '→'; transition: transform 0.3s; }
.insight-card:hover .insight-read { color: var(--gold); }
.insight-card:hover .insight-read::after { transform: translateX(4px); }
/* ===================== CONTACT ===================== */
.contact { background: var(--navy); overflow: hidden; position: relative; }
.contact::before { content: ''; position: absolute; inset: 0; background: radial-gradient(ellipse 70% 100% at 50% 100%, rgba(196,146,42,0.08) 0%, transparent 60%); }
.contact-inner { display: grid; grid-template-columns: 1fr 1fr; gap: var(--space-xl); align-items: start; position: relative; z-index: 1; }
.contact-info { padding-top: var(--space-sm); }
.contact-details { margin-top: var(--space-lg); display: flex; flex-direction: column; gap: var(--space-md); }
.contact-detail { display: flex; gap: var(--space-sm); align-items: flex-start; }
.contact-detail-icon { width: 40px; height: 40px; border: 1px solid rgba(196,146,42,0.3); border-radius: 50%; flex-shrink: 0; display: flex; align-items: center; justify-content: center; font-size: var(--text-base); color: var(--gold); }
.contact-detail-label { font-size: var(--text-xs); font-weight: 400; letter-spacing: 3px; text-transform: uppercase; color: rgba(255,255,255,0.6); margin-bottom: 4px; }
.contact-detail-value { font-size: var(--text-sm); font-weight: 300; color: var(--white); }
.contact-detail-value a { color: var(--gold); text-decoration: none; transition: color 0.3s; }
.contact-detail-value a:focus-visible, .contact-detail-value a:hover { color: var(--gold-light); text-decoration: underline; }
.contact-form { background: rgba(255,255,255,0.03); border: 1px solid rgba(196,146,42,0.1); padding: var(--space-md); border-radius: 8px; }
.form-group { display: flex; flex-direction: column; gap: 8px; margin-bottom: var(--space-sm); }
.form-label { font-size: var(--text-xs); font-weight: 500; letter-spacing: 2px; text-transform: uppercase; color: rgba(255,255,255,0.7); }
.form-input, .form-select, .form-textarea { background: rgba(255,255,255,0.05); border: 1px solid rgba(255,255,255,0.1); padding: 14px 18px; color: var(--white); font-family: var(--font-body); font-size: var(--text-sm); font-weight: 300; outline: none; transition: border-color 0.3s; width: 100%; -webkit-appearance: none; border-radius: 4px; }
.form-input::placeholder { color: rgba(255,255,255,0.4); }
.form-input:focus, .form-select:focus, .form-textarea:focus { border-color: var(--gold); }
.form-select { color: rgba(255,255,255,0.8); cursor: pointer; }
.form-select option { background: var(--navy); color: var(--white); }
.form-textarea { resize: vertical; min-height: 120px; }
.form-submit { width: 100%; padding: 16px; background: var(--gold); border: none; border-radius: 4px; color: var(--navy); font-family: var(--font-body); font-size: var(--text-sm); font-weight: 600; letter-spacing: 3px; text-transform: uppercase; cursor: pointer; transition: all 0.3s; margin-top: 8px; }
.form-submit:focus-visible, .form-submit:hover { background: var(--gold-light); }
/* ===================== FOOTER ===================== */
footer { background: var(--dark); padding: var(--space-xl) var(--space-md) var(--space-sm); }
.footer-top { display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); gap: var(--space-lg); padding-bottom: var(--space-lg); border-bottom: 1px solid rgba(255,255,255,0.06); }
@media(min-width: 1024px) { .footer-top { grid-template-columns: 2fr 1fr 1fr 1fr; } }
.footer-logo-img { height: clamp(60px, 8vh, 90px); width: auto; display: block; margin-bottom: 12px; }
.footer-logo-sub { font-size: var(--text-xs); font-weight: 300; letter-spacing: 4px; text-transform: uppercase; color: var(--gold); margin-bottom: var(--space-sm); }
.footer-desc { font-size: var(--text-sm); font-weight: 300; line-height: 1.8; color: rgba(255,255,255,0.6); max-width: 280px; }
.footer-social { display: flex; gap: 12px; margin-top: var(--space-md); }
.footer-social a { width: 36px; height: 36px; border: 1px solid rgba(255,255,255,0.1); border-radius: 50%; display: flex; align-items: center; justify-content: center; color: rgba(255,255,255,0.7); font-size: var(--text-sm); text-decoration: none; transition: all 0.3s; }
.footer-social a:focus-visible, .footer-social a:hover { border-color: var(--gold); color: var(--gold); background: rgba(196,146,42,0.08); }
.footer-col h4 { font-size: var(--text-xs); font-weight: 500; letter-spacing: 3px; text-transform: uppercase; color: var(--gold); margin-bottom: var(--space-sm); }
.footer-col ul { list-style: none; display: flex; flex-direction: column; gap: 10px; }
.footer-col ul a { font-size: var(--text-sm); font-weight: 300; color: rgba(255,255,255,0.7); text-decoration: none; transition: color 0.3s; display: inline-block; padding: 2px 0; }
.footer-col ul a:focus-visible, .footer-col ul a:hover { color: var(--white); }
.footer-bottom { display: flex; flex-wrap: wrap; align-items: center; justify-content: space-between; padding-top: var(--space-sm); gap: var(--space-sm); }
.footer-copy { font-size: var(--text-xs); font-weight: 300; color: rgba(255,255,255,0.5); }
.footer-copy span { color: var(--gold); }
.footer-legal { display: flex; flex-wrap: wrap; gap: var(--space-md); }
.footer-legal a { font-size: var(--text-xs); font-weight: 300; letter-spacing: 0.5px; color: rgba(255,255,255,0.5); text-decoration: none; transition: color 0.3s; }
.footer-legal a:focus-visible, .footer-legal a:hover { color: var(--gold); }
/* ===================== REVEAL ANIMATIONS ===================== */
.reveal { opacity: 0; transform: translateY(40px); transition: opacity 0.9s var(--ease-out), transform 0.9s var(--ease-out); }
.reveal.visible { opacity: 1; transform: translateY(0); }
.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }
.reveal-delay-4 { transition-delay: 0.4s; }
@media (prefers-reduced-motion: reduce) { .reveal { opacity: 1; transform: none; transition: none; } .cursor, .cursor-ring { display: none; } }
/* ===================== PROGRESS BAR ===================== */
.progress-bar { position: fixed; top: 0; left: 0; z-index: 9997; height: 3px; background: linear-gradient(90deg, var(--gold), var(--gold-light)); width: 0%; transition: width 0.1s; }
/* ===================== MOBILE NAV ===================== */
.mobile-nav { position: fixed; inset: 0; z-index: 999; background: var(--navy); display: flex; flex-direction: column; align-items: center; justify-content: center; gap: var(--space-md); transform: translateX(100%); transition: transform 0.5s var(--ease-out); }
.mobile-nav.open { transform: translateX(0); }
.mobile-nav a { font-family: var(--font-display); font-size: var(--text-xl); font-weight: 300; color: var(--white); text-decoration: none; transition: color 0.3s; }
.mobile-nav a:hover { color: var(--gold); }
.mobile-copro-btn { background: var(--gold); color: var(--navy); font-family: var(--font-body); font-size: var(--text-xs); font-weight: 600; letter-spacing: 2px; text-transform: uppercase; padding: 10px 20px; border: none; border-radius: 4px; cursor: pointer; margin-top: 10px; transition: background 0.3s; display: inline-block; text-decoration: none; }
.mobile-copro-btn:focus-visible, .mobile-copro-btn:hover { background: var(--gold-light); }
/* ===================== STRUCTURAL MEDIA QUERIES ===================== */
@media (max-width: 1024px) {
  .about-inner, .syndic-inner, .contact-inner { grid-template-columns: 1fr; }
  .syndic-card { margin-top: var(--space-sm); }
  .contact-info { padding-bottom: var(--space-md); }
}
@media (max-width: 768px) {
  nav { padding: var(--space-xs) var(--space-sm); }
  nav.scrolled { padding: 10px var(--space-sm); }
  .nav-links, .nav-cta { display: none; }
  .hamburger { display: flex; }
  .hero-numbers { display: none; }
  .hero-actions { flex-direction: column; align-items: stretch; width: 100%; max-width: 300px; gap: 16px; }
  .btn-primary, .btn-secondary { width: 100%; justify-content: center; }
  .contact-detail { flex-direction: column; gap: 8px; }
  .footer-bottom { flex-direction: column; text-align: center; gap: var(--space-sm); }
  .footer-legal { justify-content: center; width: 100%; }
}

/* ===================== RESPONSIVE FIXES ===================== */

/* Fix 1 — max-width global pour très grands écrans */
.about-inner,
.syndic-inner,
.contact-inner,
.poles-grid,
.why-grid,
.insights-grid,
.footer-top {
  max-width: 1400px;
  margin-left: auto;
  margin-right: auto;
}
.section-pad,
.section-pad-sm {
  padding-left: max(var(--space-md), calc((100vw - 1400px) / 2));
  padding-right: max(var(--space-md), calc((100vw - 1400px) / 2));
}

/* Fix 2 — Hamburger visible aussi sur tablette (769px–1024px) */
@media (max-width: 1024px) {
  .nav-links { display: none; }
  .hamburger { display: flex; }
}

/* Fix 3 — Mobile : cacher hero-scroll + padding hero-content */
@media (max-width: 768px) {
  .hero-scroll { display: none; }
  .hero-content { padding: 0 var(--space-sm); }
  .contact-form { padding: var(--space-sm); }
}

/* Fix 4 — Poles grid adaptée tablette (260px au lieu de 320px) */
.poles-grid {
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
}
.whatsapp-float {
  position: fixed;
  bottom: 30px;
  right: 30px;
  background: #25D366;
  border-radius: 50%;
  width: 65px;
  height: 65px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 6px 25px rgba(37,211,102,0.5);
  z-index: 9999;
  transition: transform 0.3s;
  text-decoration: none;
  color: white;
  font-size: 35px;
}

.whatsapp-float:hover {
  transform: scale(1.1);
}

.whatsapp-badge {
  position: absolute;
  top: -5px;
  right: -5px;
  background: #FF0000;
  color: white;
  border-radius: 50%;
  width: 22px;
  height: 22px;
  font-size: 12px;
  font-weight: bold;
  display: flex;
  align-items: center;
  justify-content: center;
}