/* ============================================
   AUREA CAPITAL LUSITANA
   Palette: Ivoire Bancaire (Fond Clair)
   ============================================ */

*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-font-smoothing: antialiased; -moz-osx-font-smoothing: grayscale; }
body {
  font-family: "Inter", "Helvetica Neue", Arial, sans-serif;
  font-size: 16px; font-weight: 400; line-height: 1.7;
  color: #4A5568; background-color: #FEFDFB; overflow-x: hidden;
}
img { max-width: 100%; height: auto; display: block; }
a { text-decoration: none; color: inherit; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }
ul, ol { list-style: none; }
input, textarea, select { font-family: inherit; font-size: inherit; }

/* === VARIABLES === */
:root {
  --slate-950: #1A202C;
  --slate-900: #2C3E50;
  --slate-800: #3D4F5F;
  --slate-700: #4A5568;
  --slate-600: #5A6B7D;
  --gold-600: #B08D4B;
  --gold-500: #C9A96E;
  --gold-400: #D4BC94;
  --gold-300: #E8D5B8;
  --ivory-50: #FEFDFB;
  --ivory-100: #F5F1EB;
  --ivory-200: #E8E2D8;
  --ivory-300: #D9D2C5;
  --text-primary: #2C3E50;
  --text-secondary: #4A5568;
  --text-muted: #8C9AAF;
  --success: #047857;
  --error: #DC2626;
  --white: #FFFFFF;
  --border: #E8E2D8;
  --glass-bg: rgba(44, 62, 80, 0.55);
  --glass-border: rgba(201, 169, 110, 0.18);
  --glass-blur: 16px;
  --shadow-sm: 0 1px 3px rgba(26,32,44,0.04);
  --shadow-md: 0 4px 20px rgba(26,32,44,0.06);
  --shadow-lg: 0 12px 48px rgba(26,32,44,0.08);
  --shadow-xl: 0 24px 72px rgba(26,32,44,0.10);
  --shadow-gold: 0 4px 24px rgba(201,169,110,0.18);
  --shadow-btn: 0 6px 24px rgba(44,62,80,0.25);
  --font-display: "Playfair Display", Georgia, serif;
  --font-body: "Inter", "Helvetica Neue", Arial, sans-serif;
  --ease-smooth: cubic-bezier(0.25, 0.1, 0.25, 1);
  --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
  --ease-spring: cubic-bezier(0.34, 1.56, 0.64, 1);
  --container: 1240px;
  --radius-sm: 6px;
  --radius-md: 12px;
  --radius-lg: 20px;
}

/* === TYPOGRAPHY === */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-display); font-weight: 600; line-height: 1.15;
  color: var(--text-primary); letter-spacing: -0.02em;
}
h1 { font-size: 42px; }
h2 { font-size: 34px; }
h3 { font-size: 24px; font-weight: 500; }
h4 { font-size: 18px; font-weight: 600; }
p { color: var(--text-secondary); line-height: 1.8; font-size: 15px; }

.section-label, .section-label.light-bg {
  display: inline-flex; align-items: center; gap: 10px;
  font-family: var(--font-body); font-size: 12px; font-weight: 600;
  text-transform: uppercase; letter-spacing: 0.12em;
  color: var(--gold-500); margin-bottom: 20px;
}
.section-label::before, .section-label.light-bg::before { content: ''; display: block; width: 28px; height: 1.5px; background: var(--gold-500); }
.section-label.dark-bg { color: var(--gold-500); }
.section-label.dark-bg::before { background: var(--gold-500); }

/* === LAYOUT === */
.container { max-width: var(--container); margin: 0 auto; padding: 0 24px; }
.section-padding, .section-pad { padding: 90px 0; }
.grid-2 { display: grid; grid-template-columns: 1fr; gap: 28px; }
.grid-3 { display: grid; grid-template-columns: 1fr; gap: 28px; }
.grid-4 { display: grid; grid-template-columns: 1fr; gap: 24px; }

/* === BUTTONS === */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 10px;
  padding: 16px 36px; border-radius: var(--radius-sm);
  font-family: var(--font-body); font-size: 14px; font-weight: 600;
  letter-spacing: 0.02em; cursor: pointer;
  transition: all 0.35s var(--ease-out); white-space: nowrap;
  position: relative; overflow: hidden;
}
.btn::after {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(105deg, transparent 30%, rgba(255,255,255,0.15) 50%, transparent 70%);
  transform: translateX(-100%); transition: transform 0.6s var(--ease-out);
}
.btn:hover::after { transform: translateX(100%); }

.btn-primary {
  background: linear-gradient(135deg, var(--slate-900), var(--slate-800));
  color: var(--white); box-shadow: var(--shadow-btn);
}
.btn-primary:hover { transform: translateY(-3px); box-shadow: 0 10px 32px rgba(44,62,80,0.32); }

.btn-gold {
  background: linear-gradient(135deg, var(--gold-500), var(--gold-400));
  color: var(--slate-950); box-shadow: var(--shadow-gold);
}
.btn-gold:hover { transform: translateY(-3px); box-shadow: 0 10px 32px rgba(201,169,110,0.35); }

.btn-outline {
  background: transparent; border: 1.5px solid rgba(255,255,255,0.35);
  color: var(--white);
}
.btn-outline:hover { border-color: var(--gold-400); background: rgba(255,255,255,0.06); box-shadow: 0 0 20px rgba(201,169,110,0.1); }
.btn-full { width: 100%; }

/* === CARDS === */
.card, .benefit-card {
  background: var(--white); border-radius: var(--radius-md);
  border: 1px solid var(--border); padding: 36px 28px;
  box-shadow: var(--shadow-sm);
  transition: all 0.45s var(--ease-out); position: relative;
}
.card::before, .benefit-card::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0; height: 3px;
  background: linear-gradient(90deg, var(--gold-500), var(--gold-300), var(--gold-500));
  opacity: 0; transition: opacity 0.4s var(--ease-out);
  border-radius: var(--radius-md) var(--radius-md) 0 0;
}
.card:hover, .benefit-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-xl); border-color: transparent; }
.card:hover::before, .benefit-card:hover::before { opacity: 1; }

.card-dark, .value-card {
  background: var(--glass-bg); backdrop-filter: blur(var(--glass-blur));
  -webkit-backdrop-filter: blur(var(--glass-blur));
  border: 1px solid var(--glass-border); border-radius: var(--radius-md);
  padding: 36px 28px; color: var(--white); position: relative; overflow: hidden;
}
.card-dark::before, .value-card::before {
  content: ''; position: absolute; top: -50%; right: -50%;
  width: 200px; height: 200px; border-radius: 50%;
  background: radial-gradient(circle, rgba(201,169,110,0.08), transparent 70%);
  pointer-events: none;
}
.card-dark h3, .card-dark h4, .value-card h3, .value-card h4 { color: var(--white); }
.card-dark p, .value-card p { color: rgba(255,255,255,0.72); }
.gold-accent-top, .gold-top { border-top: 3px solid var(--gold-500); }

/* === TRUST ICON === */
.trust-icon {
  width: 56px; height: 56px; border-radius: 50%;
  background: linear-gradient(135deg, rgba(201,169,110,0.12), rgba(201,169,110,0.06));
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0; border: 1px solid rgba(201,169,110,0.15);
  transition: all 0.3s var(--ease-out);
}
.trust-icon svg { width: 22px; height: 22px; color: var(--gold-500); }

/* === FORM === */
.form-group { margin-bottom: 22px; position: relative; }
.form-label { display: block; font-size: 13px; font-weight: 500; color: var(--text-primary); margin-bottom: 8px; }
.form-label .required, .form-label .req { color: var(--error); font-weight: 600; }
.form-input, .form-select, .form-textarea {
  width: 100%; height: 54px; padding: 14px 18px;
  border: 1.5px solid var(--border); border-radius: var(--radius-sm);
  background: var(--white); color: var(--text-primary); font-size: 14px;
  transition: all 0.3s var(--ease-out);
}
.form-input:focus, .form-select:focus, .form-textarea:focus {
  outline: none; border-color: var(--slate-900);
  box-shadow: 0 0 0 4px rgba(44,62,80,0.08), 0 2px 8px rgba(44,62,80,0.06);
}
.form-input.valid, .form-select.valid, .form-textarea.valid { border-color: var(--success); }
.form-input.invalid, .form-select.invalid, .form-textarea.invalid { border-color: var(--error); }
.form-textarea { height: auto; min-height: 130px; resize: vertical; }
.form-select { appearance: none; cursor: pointer;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='14' height='9' viewBox='0 0 14 9'%3E%3Cpath fill='%234A5568' d='M1 1l6 6 6-6' stroke='%234A5568' stroke-width='1.5' fill='none' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat; background-position: right 16px center; padding-right: 42px;
}
.form-error { font-size: 12px; color: var(--error); margin-top: 6px; display: none; font-weight: 500; }
.form-error.visible, .form-error.show { display: block; }

.checkbox-group { display: flex; align-items: flex-start; gap: 12px; }
.checkbox-group input[type="checkbox"] { width: 20px; height: 20px; accent-color: var(--slate-900); margin-top: 2px; flex-shrink: 0; cursor: pointer; }
.checkbox-group label { font-size: 13px; color: var(--text-secondary); line-height: 1.6; }
.checkbox-group label a { color: var(--slate-900); text-decoration: underline; }

/* === TOP BAR === */
.topbar { background: var(--slate-950); height: 40px; display: none; align-items: center; border-bottom: 1px solid rgba(201,169,110,0.1); }
.topbar-inner { display: flex; justify-content: space-between; align-items: center; height: 100%; }
.topbar-left, .topbar-right { display: flex; align-items: center; gap: 28px; }
.topbar a, .topbar span { font-size: 12px; color: var(--gold-400); display: flex; align-items: center; gap: 6px; letter-spacing: 0.02em; transition: color 0.3s; }
.topbar a:hover { color: var(--white); }
.topbar svg { width: 13px; height: 13px; opacity: 0.8; }

/* === HEADER === */
.header { position: fixed; top: 0; left: 0; right: 0; height: 64px; z-index: 1000; transition: all 0.4s var(--ease-out); }
.header.scrolled { background: rgba(254,253,251,0.95); backdrop-filter: blur(20px); -webkit-backdrop-filter: blur(20px); box-shadow: 0 1px 0 var(--border); }
.header.scrolled .nav-link { color: var(--text-primary); }
.header.scrolled .nav-link:hover, .header.scrolled .nav-link.active { color: var(--slate-900); }
.header.scrolled .menu-toggle span { background: var(--text-primary); }
.header.scrolled .header-cta.btn-primary { background: linear-gradient(135deg, var(--slate-900), var(--slate-800)); }
.header-inner { display: flex; align-items: center; justify-content: space-between; height: 100%; }
.logo img { height: 44px; width: auto; transition: transform 0.3s; }
.logo:hover img { transform: scale(1.03); }

.nav-desktop { display: none; }
.nav-list { display: flex; align-items: center; gap: 36px; }
.nav-link { font-size: 14px; font-weight: 500; color: rgba(255,255,255,0.78); position: relative; padding: 6px 0; letter-spacing: 0.01em; transition: color 0.3s var(--ease-out); }
.nav-link::after { content: ''; position: absolute; bottom: 0; left: 0; width: 100%; height: 2px; background: linear-gradient(90deg, var(--gold-500), var(--gold-300)); transform: scaleX(0); transform-origin: left; transition: transform 0.35s var(--ease-out); }
.nav-link:hover, .nav-link.active { color: var(--white); }
.nav-link:hover::after, .nav-link.active::after { transform: scaleX(1); }

.header-cta { display: none; padding: 12px 28px; font-size: 13px; }
.menu-toggle { display: flex; flex-direction: column; gap: 5px; padding: 10px; z-index: 1001; background: none; border: none; }
.menu-toggle span { display: block; width: 24px; height: 2px; background: var(--white); border-radius: 1px; transition: all 0.3s var(--ease-out); }
.header.scrolled .menu-toggle span { background: var(--text-primary); }
.menu-toggle.active span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.menu-toggle.active span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.menu-toggle.active span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

.mobile-nav { position: fixed; inset: 0; background: linear-gradient(180deg, var(--slate-900) 0%, var(--slate-950) 100%); z-index: 999; display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 8px; opacity: 0; pointer-events: none; transition: opacity 0.4s var(--ease-out); }
.mobile-nav.active { opacity: 1; pointer-events: all; }
.mobile-nav a { font-family: var(--font-display); font-size: 32px; font-weight: 500; color: var(--white); padding: 10px 24px; transition: all 0.3s var(--ease-out); opacity: 0; transform: translateY(20px); }
.mobile-nav.active a { opacity: 1; transform: translateY(0); }
.mobile-nav.active a:nth-child(1) { transition-delay: 0.08s; }
.mobile-nav.active a:nth-child(2) { transition-delay: 0.14s; }
.mobile-nav.active a:nth-child(3) { transition-delay: 0.20s; }
.mobile-nav.active a:nth-child(4) { transition-delay: 0.26s; }
.mobile-nav.active a:nth-child(5) { transition-delay: 0.32s; }
.mobile-nav.active a:nth-child(6) { transition-delay: 0.38s; }
.mobile-nav a:hover { color: var(--gold-400); }

/* === HERO === */
.hero { position: relative; min-height: 100vh; min-height: 100dvh; display: flex; align-items: flex-end; overflow: hidden; padding-top: calc(64px + 20px); padding-bottom: 80px; }
.hero-bg { position: absolute; inset: 0; z-index: 0; }
.hero-bg img { width: 100%; height: 100%; object-fit: cover; transform: scale(1.05); transition: transform 8s ease-out; }
.hero:hover .hero-bg img { transform: scale(1.0); }
.hero-overlay { position: absolute; inset: 0; z-index: 1; background: linear-gradient(180deg, rgba(26,32,44,0.35) 0%, rgba(44,62,80,0.15) 40%, rgba(44,62,80,0.30) 70%, rgba(26,32,44,0.85) 100%); }
.hero-content { position: relative; z-index: 2; max-width: 720px; }
.hero-label { display: inline-flex; align-items: center; gap: 10px; font-size: 12px; font-weight: 600; text-transform: uppercase; letter-spacing: 0.14em; color: var(--gold-400); margin-bottom: 24px; }
.hero-label::before { content: ''; display: block; width: 32px; height: 1.5px; background: var(--gold-500); }
.hero-title { font-family: var(--font-display); font-size: 38px; font-weight: 500; color: var(--white); line-height: 1.12; letter-spacing: -0.025em; margin-bottom: 20px; text-wrap: balance; }
.hero-subtitle { font-size: 16px; color: rgba(255,255,255,0.78); max-width: 520px; line-height: 1.75; margin-bottom: 36px; }
.hero-ctas { display: flex; flex-direction: column; gap: 12px; margin-bottom: 48px; }
.hero-trust { display: flex; flex-direction: column; gap: 14px; padding-top: 32px; border-top: 1px solid rgba(201,169,110,0.25); }
.trust-item { display: flex; align-items: center; gap: 10px; font-size: 13px; color: rgba(255,255,255,0.70); }
.trust-item svg { width: 16px; height: 16px; color: var(--gold-400); }
.hero-trust .separator, .trust-sep { display: none; width: 1px; height: 18px; background: rgba(255,255,255,0.15); }

/* === BENEFITS === */
.benefits { background: var(--ivory-50); position: relative; }
.benefits::before { content: ''; position: absolute; top: 0; left: 50%; transform: translateX(-50%); width: 120px; height: 3px; background: linear-gradient(90deg, transparent, var(--gold-500), transparent); }
.benefit-card { text-align: center; padding: 40px 24px; }
.benefit-card .trust-icon { margin: 0 auto 20px; }
.benefit-card h4 { font-family: var(--font-display); font-size: 20px; font-weight: 500; margin-bottom: 12px; color: var(--text-primary); }
.benefit-card p { font-size: 14px; }

/* === SERVICES === */
.services { background: var(--ivory-100); position: relative; }
.services::before { content: ''; position: absolute; top: 0; left: 50%; transform: translateX(-50%); width: 120px; height: 3px; background: linear-gradient(90deg, transparent, var(--gold-500), transparent); }
.service-card { background: var(--white); border-radius: var(--radius-md); overflow: hidden; box-shadow: var(--shadow-sm); transition: all 0.5s var(--ease-out); position: relative; }
.service-card:hover { transform: translateY(-8px); box-shadow: var(--shadow-xl); }
.service-card-img { width: 100%; height: 220px; object-fit: cover; transition: transform 0.6s var(--ease-out); }
.service-card:hover .service-card-img { transform: scale(1.05); }
.service-card-body { padding: 30px 28px; position: relative; }
.service-card-body::before { content: ''; position: absolute; top: 0; left: 28px; right: 28px; height: 2px; background: linear-gradient(90deg, var(--gold-500), var(--gold-300), transparent 80%); }
.service-card-icon { width: 48px; height: 48px; border-radius: 50%; background: linear-gradient(135deg, rgba(44,62,80,0.08), rgba(44,62,80,0.03)); display: flex; align-items: center; justify-content: center; margin-bottom: 16px; }
.service-card-icon svg { width: 22px; height: 22px; color: var(--slate-900); }
.service-card h3 { font-family: var(--font-display); font-size: 22px; font-weight: 500; margin-bottom: 10px; }
.service-card p { font-size: 14px; margin-bottom: 16px; }
.service-card ul { margin-bottom: 16px; }
.service-card ul li { display: flex; align-items: flex-start; gap: 10px; font-size: 13px; color: var(--text-secondary); margin-bottom: 8px; }
.service-card ul li svg { width: 18px; height: 18px; color: var(--success); flex-shrink: 0; margin-top: 1px; }
.service-card-link, .service-link { display: inline-flex; align-items: center; gap: 6px; font-size: 14px; font-weight: 600; color: var(--slate-900); position: relative; }
.service-card-link::after, .service-link::after { content: ''; position: absolute; bottom: -2px; left: 0; width: 100%; height: 1.5px; background: var(--slate-900); transform: scaleX(0); transform-origin: left; transition: transform 0.35s var(--ease-out); }
.service-card-link:hover::after, .service-link:hover::after { transform: scaleX(1); }

/* === PROCESS === */
.process { background: linear-gradient(180deg, var(--slate-900) 0%, var(--slate-800) 100%); position: relative; overflow: hidden; }
.process::before { content: ''; position: absolute; top: -200px; right: -200px; width: 500px; height: 500px; border-radius: 50%; background: radial-gradient(circle, rgba(201,169,110,0.06), transparent 60%); pointer-events: none; }
.process::after { content: ''; position: absolute; bottom: -150px; left: -150px; width: 400px; height: 400px; border-radius: 50%; background: radial-gradient(circle, rgba(201,169,110,0.04), transparent 60%); pointer-events: none; }
.process-header { text-align: center; margin-bottom: 60px; position: relative; z-index: 1; }
.process-header h2 { color: var(--white); }
.process-header p { color: rgba(255,255,255,0.60); max-width: 500px; margin: 12px auto 0; }
.process-timeline { display: grid; grid-template-columns: 1fr; gap: 36px; position: relative; z-index: 1; }
.process-timeline::before { content: ''; position: absolute; left: 27px; top: 0; bottom: 0; width: 1.5px; background: linear-gradient(180deg, var(--gold-500), rgba(201,169,110,0.2), transparent); }
.process-step { position: relative; padding-left: 68px; }
.process-step-num { position: absolute; left: 0; top: 0; width: 56px; height: 56px; border-radius: 50%; background: linear-gradient(135deg, var(--slate-800), var(--slate-700)); border: 2px solid var(--gold-500); display: flex; align-items: center; justify-content: center; font-family: var(--font-display); font-size: 20px; font-weight: 600; color: var(--gold-500); z-index: 2; box-shadow: 0 0 20px rgba(201,169,110,0.15); }
.process-step h4 { font-family: var(--font-display); font-size: 20px; font-weight: 500; color: var(--white); margin-bottom: 8px; }
.process-step p { font-size: 14px; color: rgba(255,255,255,0.65); }

/* === WHY US === */
.why-us { background: var(--ivory-50); position: relative; }
.why-us-grid, .why-grid { display: grid; grid-template-columns: 1fr; gap: 48px; align-items: center; }
.why-us-image, .why-img { border-radius: var(--radius-md); overflow: hidden; box-shadow: var(--shadow-xl); position: relative; min-height: 320px; }
.why-us-image::after, .why-img::after { content: ''; position: absolute; inset: 0; border: 1px solid rgba(201,169,110,0.15); border-radius: var(--radius-md); pointer-events: none; z-index: 1; }
.why-us-image img, .why-img img { width: 100%; height: 320px; object-fit: cover; transition: transform 0.6s var(--ease-out); display: block; }
@media (min-width: 1024px) {
  .why-us-image img, .why-img img { height: 100%; min-height: 420px; }
}
.why-us-image:hover img, .why-img:hover img { transform: scale(1.03); }
.why-content h2, .why-us-content h2 { margin-bottom: 16px; }
.why-content > p, .why-us-content > p { margin-bottom: 28px; }
ul.why-list li, ul.why-us-list li { display: flex !important; align-items: flex-start; gap: 14px; margin-bottom: 18px; font-size: 15px; color: var(--text-primary); }
ul.why-list li > svg, ul.why-us-list li > svg { width: 22px !important; height: 22px !important; min-width: 22px; color: var(--success); flex-shrink: 0; margin-top: 1px; display: inline-block; }

/* === TESTIMONIALS === */
.testimonials-stats, .testimonials { background: linear-gradient(180deg, var(--slate-900) 0%, var(--slate-950) 100%); position: relative; overflow: hidden; }
.testimonials-stats::before, .testimonials::before { content: ''; position: absolute; top: 50%; left: 50%; transform: translate(-50%, -50%); width: 800px; height: 800px; border-radius: 50%; background: radial-gradient(circle, rgba(201,169,110,0.04), transparent 60%); pointer-events: none; }
.stats-row { display: grid; grid-template-columns: 1fr; gap: 40px; text-align: center; margin-bottom: 64px; padding-bottom: 56px; position: relative; z-index: 1; border-bottom: 1px solid rgba(255,255,255,0.06); }
.stat-num, .stat-number { font-family: var(--font-display); font-size: 44px; font-weight: 600; background: linear-gradient(135deg, var(--gold-400), var(--gold-500)); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; margin-bottom: 8px; }
.stat-label { font-size: 13px; color: rgba(255,255,255,0.50); text-transform: uppercase; letter-spacing: 0.1em; }

/* Slider */
.slider-container, .slider-box { position: relative; z-index: 1; }
.slide { display: none; }
.slide.active { display: block; animation: fadeSlide 0.5s var(--ease-out); }
@keyframes fadeSlide { from { opacity: 0; transform: translateY(12px); } to { opacity: 1; transform: translateY(0); } }
.testimonial-slide { text-align: center; max-width: 700px; margin: 0 auto; }
.testimonial-quote, .quote-text { font-family: var(--font-display); font-size: 20px; font-style: italic; color: rgba(255,255,255,0.88); line-height: 1.55; margin-bottom: 24px; }
.testimonial-author, .quote-author { font-size: 14px; color: var(--gold-400); font-weight: 600; }
.slider-nav { display: flex; align-items: center; justify-content: center; gap: 20px; margin-top: 40px; }
.slider-arrow { width: 44px; height: 44px; border-radius: 50%; border: 1.5px solid rgba(255,255,255,0.15); display: flex; align-items: center; justify-content: center; color: var(--white); transition: all 0.3s var(--ease-out); }
.slider-arrow:hover { border-color: var(--gold-500); background: rgba(201,169,110,0.1); box-shadow: 0 0 16px rgba(201,169,110,0.15); }
.slider-dots { display: flex; gap: 10px; }
.slider-dot { width: 10px; height: 10px; border-radius: 50%; background: rgba(255,255,255,0.2); cursor: pointer; transition: all 0.3s var(--ease-out); border: none; }
.slider-dot.active { background: var(--gold-500); transform: scale(1.2); box-shadow: 0 0 10px rgba(201,169,110,0.4); }

/* === FAQ === */
.faq-short, .faq-section { background: var(--ivory-50); position: relative; }
.faq-short::before, .faq-section::before { content: ''; position: absolute; top: 0; left: 50%; transform: translateX(-50%); width: 120px; height: 3px; background: linear-gradient(90deg, transparent, var(--gold-500), transparent); }
.faq-container, .faq-wrap { max-width: 800px; margin: 0 auto; }
.accordion-item, .acc-item { border-bottom: 1px solid var(--border); }
.accordion-trigger, .acc-trigger { width: 100%; display: flex; justify-content: space-between; align-items: center; padding: 22px 0; text-align: left; font-family: var(--font-display); font-size: 17px; font-weight: 500; color: var(--text-primary); transition: color 0.3s; background: none; border: none; }
.accordion-trigger:hover, .acc-trigger:hover { color: var(--slate-900); }
.accordion-trigger svg, .acc-trigger svg { width: 18px; height: 18px; color: var(--gold-500); transition: transform 0.35s var(--ease-out); flex-shrink: 0; margin-left: 16px; }
.accordion-item.open .accordion-trigger svg, .acc-item.open .acc-trigger svg { transform: rotate(180deg); }
.accordion-content, .acc-body { max-height: 0; overflow: hidden; transition: max-height 0.4s var(--ease-out); }
.accordion-item.open .accordion-content, .acc-item.open .acc-body { max-height: 500px; }
.accordion-content-inner, .acc-inner { padding-bottom: 22px; color: var(--text-secondary); font-size: 14px; line-height: 1.75; }
.faq-link { text-align: center; margin-top: 32px; }

/* === CTA === */
.cta-final { background: linear-gradient(135deg, var(--slate-800) 0%, var(--slate-900) 50%, var(--slate-950) 100%); position: relative; overflow: hidden; }
.cta-final::before { content: ''; position: absolute; top: -100px; left: 50%; transform: translateX(-50%); width: 600px; height: 600px; border-radius: 50%; background: radial-gradient(circle, rgba(201,169,110,0.06), transparent 55%); pointer-events: none; }
.cta-final .container { position: relative; z-index: 1; text-align: center; }
.cta-final h2 { color: var(--white); font-size: 30px; margin-bottom: 28px; }
.cta-final .btn-gold { margin-bottom: 28px; font-size: 16px; padding: 18px 44px; }
.cta-trust { display: flex; flex-wrap: wrap; justify-content: center; gap: 8px 24px; }
.cta-trust span { font-size: 13px; color: rgba(255,255,255,0.55); }
.cta-trust .dot { color: var(--gold-500); font-size: 16px; line-height: 1; }

/* === FOOTER === */
.footer { background: linear-gradient(180deg, var(--slate-950) 0%, #141C28 100%); padding: 72px 0 0; color: var(--white); position: relative; }
.footer::before { content: ''; position: absolute; top: 0; left: 50%; transform: translateX(-50%); width: 200px; height: 2px; background: linear-gradient(90deg, transparent, var(--gold-500), transparent); }
.footer-grid { display: grid; grid-template-columns: 1fr; gap: 44px; padding-bottom: 48px; position: relative; z-index: 1; }
.footer-col h4 { font-family: var(--font-body); font-size: 13px; font-weight: 600; text-transform: uppercase; letter-spacing: 0.1em; color: var(--gold-400); margin-bottom: 20px; }
.footer-col p, .footer-col a { font-size: 14px; color: rgba(255,255,255,0.60); line-height: 1.9; display: block; transition: color 0.3s; }
.footer-col a:hover { color: var(--gold-400); }
.footer-contact-item, .f-contact { display: flex; align-items: flex-start; gap: 12px; margin-bottom: 14px; }
.footer-contact-item svg, .f-contact svg { width: 15px; height: 15px; color: var(--gold-500); margin-top: 5px; flex-shrink: 0; }
.footer-bottom { border-top: 1px solid rgba(255,255,255,0.06); padding: 24px 0; display: flex; flex-direction: column; align-items: center; gap: 12px; text-align: center; }
.footer-bottom p { font-size: 12px; color: rgba(255,255,255,0.35); }
.footer-bottom-links, .f-links { display: flex; gap: 20px; flex-wrap: wrap; justify-content: center; }
.footer-bottom-links a, .f-links a { font-size: 12px; color: rgba(255,255,255,0.40); transition: color 0.3s; }
.footer-bottom-links a:hover, .f-links a:hover { color: var(--gold-400); }

/* === COOKIE BANNER === */
.cookie-banner { position: fixed; bottom: 0; left: 0; right: 0; z-index: 9999; background: linear-gradient(180deg, var(--slate-900), var(--slate-950)); border-top: 2px solid var(--gold-500); padding: 24px; transform: translateY(100%); transition: transform 0.4s var(--ease-out); }
.cookie-banner.visible, .cookie-banner.show { transform: translateY(0); }
.cookie-inner { max-width: var(--container); margin: 0 auto; display: flex; flex-direction: column; gap: 16px; align-items: center; text-align: center; }
.cookie-inner p { font-size: 13px; color: rgba(255,255,255,0.70); }
.cookie-inner a { color: var(--gold-400); text-decoration: underline; }
.cookie-buttons, .cookie-btns { display: flex; gap: 12px; flex-wrap: wrap; justify-content: center; }
.cookie-btn-refuse, .cookie-refuse { padding: 10px 24px; border: 1px solid rgba(255,255,255,0.25); border-radius: var(--radius-sm); color: rgba(255,255,255,0.70); font-size: 13px; font-weight: 500; background: none; cursor: pointer; transition: all 0.3s; }
.cookie-btn-refuse:hover, .cookie-refuse:hover { border-color: var(--white); color: var(--white); }
.cookie-btn-accept, .cookie-accept { padding: 10px 24px; background: linear-gradient(135deg, var(--gold-500), var(--gold-400)); border-radius: var(--radius-sm); color: var(--slate-950); font-size: 13px; font-weight: 600; cursor: pointer; border: none; transition: all 0.3s; }
.cookie-btn-accept:hover, .cookie-accept:hover { box-shadow: 0 4px 16px rgba(201,169,110,0.3); }

/* === SCROLLBAR === */
::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: var(--ivory-50); }
::-webkit-scrollbar-thumb { background: var(--slate-700); border-radius: 3px; }
::-webkit-scrollbar-thumb:hover { background: var(--slate-800); }

/* === SCROLL REVEAL === */
.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); }

/* === PAGE HEADER === */
.page-header { background: linear-gradient(180deg, var(--slate-900) 0%, var(--slate-800) 100%); padding: calc(64px + 40px) 0 64px; text-align: center; position: relative; overflow: hidden; }
.page-header::before { content: ''; position: absolute; top: -100px; right: -100px; width: 400px; height: 400px; border-radius: 50%; background: radial-gradient(circle, rgba(201,169,110,0.05), transparent 60%); }
.page-header h1 { color: var(--white); font-size: 34px; margin-bottom: 12px; position: relative; z-index: 1; }
.page-header p { color: rgba(255,255,255,0.65); max-width: 560px; margin: 0 auto; font-size: 15px; position: relative; z-index: 1; }

/* === SERVICE DETAIL === */
.service-detail, .srv-detail { background: var(--ivory-50); }
.service-detail-card, .srv-card { background: var(--white); border-radius: var(--radius-md); padding: 36px; margin-bottom: 28px; box-shadow: var(--shadow-md); position: relative; border: 1px solid var(--border); }
.service-detail-card::before, .srv-card::before { content: ''; position: absolute; top: 0; left: 36px; width: 60px; height: 3px; background: linear-gradient(90deg, var(--gold-500), var(--gold-300)); }
.service-detail-card h3, .srv-card h3 { font-family: var(--font-display); font-size: 24px; margin-bottom: 14px; display: flex; align-items: center; gap: 14px; }
.service-detail-card h3 .icon, .srv-card h3 .icon { width: 44px; height: 44px; border-radius: 50%; background: linear-gradient(135deg, rgba(44,62,80,0.08), rgba(44,62,80,0.03)); display: flex; align-items: center; justify-content: center; }
.service-detail-card h3 .icon svg, .srv-card h3 .icon svg { width: 20px; height: 20px; color: var(--slate-900); }
.service-features-grid, .srv-feat-grid { display: grid; grid-template-columns: 1fr; gap: 20px; margin-top: 24px; }
.service-feature, .srv-feat { display: flex; align-items: flex-start; gap: 14px; }
.service-feature svg, .srv-feat svg { width: 22px; height: 22px; color: var(--success); flex-shrink: 0; margin-top: 2px; }
.service-feature h4, .srv-feat h4 { font-size: 15px; font-weight: 600; margin-bottom: 4px; color: var(--text-primary); }
.service-feature p, .srv-feat p { font-size: 13px; }
.info-table { width: 100%; border-collapse: collapse; margin-top: 24px; border-radius: var(--radius-sm); overflow: hidden; }
.info-table th, .info-table td { padding: 14px 18px; text-align: left; font-size: 14px; border-bottom: 1px solid var(--border); }
.info-table th { background: linear-gradient(135deg, var(--slate-800), var(--slate-700)); color: var(--white); font-weight: 600; }
.info-table td { color: var(--text-secondary); background: var(--white); }
.info-table tr:last-child td { border-bottom: none; }

/* === FORM PAGE === */
.form-page { background: var(--ivory-50); }
.form-layout { display: grid; grid-template-columns: 1fr; gap: 28px; padding: 32px 0 72px; }
.form-main { background: var(--white); border-radius: var(--radius-md); padding: 36px; box-shadow: var(--shadow-md); border: 1px solid var(--border); }
.form-main h2 { font-size: 24px; margin-bottom: 8px; }
.form-main > p { margin-bottom: 32px; }
.form-row { display: grid; grid-template-columns: 1fr; gap: 0 20px; }
.form-sidebar { display: none; }
.sidebar-sticky { position: sticky; top: 120px; }
.sidebar-card { background: var(--white); border-radius: var(--radius-md); padding: 28px; box-shadow: var(--shadow-md); border: 1px solid var(--border); margin-bottom: 16px; }
.sidebar-security, .sidebar-secure { display: flex; align-items: center; gap: 16px; padding: 20px; background: linear-gradient(135deg, rgba(4,120,87,0.06), rgba(4,120,87,0.02)); border-radius: var(--radius-sm); border: 1px solid rgba(4,120,87,0.12); margin-bottom: 16px; }
.sidebar-security svg, .sidebar-secure svg { width: 32px; height: 32px; color: var(--success); flex-shrink: 0; }
.sidebar-security h4, .sidebar-secure h4 { font-size: 14px; font-weight: 600; color: var(--text-primary); margin-bottom: 2px; }
.sidebar-security p, .sidebar-secure p { font-size: 12px; }
.sidebar-steps h4 { font-size: 12px; font-weight: 600; text-transform: uppercase; letter-spacing: 0.1em; color: var(--gold-500); margin-bottom: 20px; }
.sidebar-step, .s-step { display: flex; align-items: flex-start; gap: 16px; margin-bottom: 20px; }
.step-num, .s-step-num { width: 36px; height: 36px; border-radius: 50%; background: linear-gradient(135deg, var(--slate-900), var(--slate-800)); display: flex; align-items: center; justify-content: center; font-size: 14px; font-weight: 600; color: var(--white); flex-shrink: 0; box-shadow: 0 2px 8px rgba(44,62,80,0.2); }
.step-content h5, .s-step h5 { font-size: 15px; font-weight: 600; margin-bottom: 3px; color: var(--text-primary); }
.step-content p, .s-step p { font-size: 13px; }
.form-status { padding: 16px; border-radius: var(--radius-sm); margin-bottom: 24px; font-size: 14px; display: none; }
.form-status.err, .form-status.error { display: block; background: rgba(220,38,38,0.06); border: 1px solid rgba(220,38,38,0.15); color: var(--error); }
.form-status.ok, .form-status.success { display: block; background: rgba(4,120,87,0.06); border: 1px solid rgba(4,120,87,0.15); color: var(--success); }

/* === ABOUT === */
.about-story { background: var(--ivory-50); }
.about-story-grid, .about-grid { display: grid; grid-template-columns: 1fr; gap: 44px; align-items: center; }
.about-story-image, .about-img { border-radius: var(--radius-md); overflow: hidden; box-shadow: var(--shadow-xl); position: relative; }
.about-story-image::after, .about-img::after { content: ''; position: absolute; inset: 0; border: 1px solid rgba(201,169,110,0.12); border-radius: var(--radius-md); pointer-events: none; }
.about-story-image img, .about-img img { width: 100%; height: 100%; object-fit: cover; }
.values { background: linear-gradient(180deg, var(--slate-900) 0%, var(--slate-800) 100%); position: relative; overflow: hidden; }
.values::before { content: ''; position: absolute; top: -100px; right: -100px; width: 400px; height: 400px; border-radius: 50%; background: radial-gradient(circle, rgba(201,169,110,0.05), transparent 60%); }
.values h2 { color: var(--white); text-align: center; margin-bottom: 52px; position: relative; z-index: 1; }
.team { background: var(--ivory-50); position: relative; }
.team-grid { display: grid; grid-template-columns: 1fr; gap: 28px; }
.team-card { background: var(--white); border-radius: var(--radius-md); overflow: hidden; box-shadow: var(--shadow-md); transition: all 0.45s var(--ease-out); border: 1px solid var(--border); }
.team-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-xl); }
.team-card img { width: 100%; height: 300px; object-fit: cover; object-position: top; transition: transform 0.5s; }
.team-card:hover img { transform: scale(1.03); }
.team-card-body, .team-body { padding: 24px; text-align: center; }
.team-card-body h4, .team-body h4 { font-family: var(--font-display); font-size: 20px; font-weight: 500; margin-bottom: 4px; }
.team-card-body .role, .team-body .role { font-size: 14px; color: var(--gold-500); font-weight: 500; }
.team-card-body p, .team-body p { font-size: 13px; margin-top: 10px; }

/* === CONTACT === */
.contact-page { background: var(--ivory-50); }
.contact-info-grid { display: grid; grid-template-columns: 1fr; gap: 16px; margin-bottom: 48px; }
.contact-info-card { background: var(--white); border-radius: var(--radius-md); padding: 28px; box-shadow: var(--shadow-sm); text-align: center; border: 1px solid var(--border); transition: all 0.4s var(--ease-out); }
.contact-info-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); border-color: transparent; }
.contact-info-card .trust-icon { margin: 0 auto 16px; }
.contact-info-card h4 { font-size: 15px; font-weight: 600; margin-bottom: 8px; color: var(--text-primary); }
.contact-info-card p, .contact-info-card a { font-size: 14px; color: var(--text-secondary); line-height: 1.7; }
.contact-info-card a:hover { color: var(--slate-900); }
.contact-form-section { display: grid; grid-template-columns: 1fr; gap: 36px; }
.contact-form { background: var(--white); border-radius: var(--radius-md); padding: 36px; box-shadow: var(--shadow-md); border: 1px solid var(--border); }
.contact-form h2 { font-size: 24px; margin-bottom: 8px; }
.contact-form > p { margin-bottom: 32px; }
.map-container, .map-box { border-radius: var(--radius-md); overflow: hidden; box-shadow: var(--shadow-md); border: 1px solid var(--border); height: 380px; }
.map-container iframe, .map-box iframe { width: 100%; height: 100%; border: none; }

/* === FAQ PAGE === */
.faq-page { background: var(--ivory-50); }
.faq-tabs { display: flex; flex-wrap: wrap; gap: 8px; margin-bottom: 44px; justify-content: center; }
.faq-tab { padding: 10px 22px; border-radius: var(--radius-sm); font-size: 13px; font-weight: 500; color: var(--text-secondary); background: var(--white); border: 1px solid var(--border); transition: all 0.3s var(--ease-out); cursor: pointer; }
.faq-tab:hover { color: var(--slate-900); border-color: var(--slate-900); }
.faq-tab.active { background: linear-gradient(135deg, var(--slate-900), var(--slate-800)); color: var(--white); border-color: var(--slate-900); box-shadow: 0 4px 12px rgba(44,62,80,0.2); }
.faq-category, .faq-cat { display: none; }
.faq-category.active, .faq-cat.active { display: block; }
.faq-category h3, .faq-cat h3 { font-size: 22px; margin-bottom: 24px; color: var(--text-primary); }

/* === LEGAL & PRIVACY === */
.legal-page { background: var(--ivory-50); padding-bottom: 80px; }
.legal-content { max-width: 900px; margin: 0 auto; background: var(--white); border-radius: var(--radius-md); padding: 44px 36px; box-shadow: var(--shadow-md); border: 1px solid var(--border); }
.legal-content h2 { font-size: 22px; margin: 40px 0 16px; padding-bottom: 12px; border-bottom: 2px solid var(--ivory-200); color: var(--slate-900); }
.legal-content h2:first-child { margin-top: 0; }
.legal-content h3 { font-size: 17px; margin: 24px 0 12px; color: var(--slate-800); }
.legal-content p { margin-bottom: 16px; font-size: 14px; }
.legal-content ul { list-style: disc; padding-left: 24px; margin-bottom: 16px; }
.legal-content ul li { margin-bottom: 8px; font-size: 14px; color: var(--text-secondary); }
.toc { background: linear-gradient(135deg, var(--ivory-50), var(--ivory-100)); border-radius: var(--radius-md); padding: 28px; margin-bottom: 40px; border: 1px solid var(--border); }
.toc h3 { font-size: 15px; margin-bottom: 16px; color: var(--text-primary); margin-top: 0; border: none; padding: 0; }
.toc ul { list-style: none; padding: 0; }
.toc li { margin-bottom: 8px; }
.toc a { color: var(--slate-900); font-size: 13px; font-weight: 500; transition: color 0.3s; }
.toc a:hover { color: var(--gold-500); }

/* === MERCI === */
.merci-page { background: linear-gradient(180deg, var(--slate-900) 0%, var(--slate-950) 100%); min-height: 100vh; min-height: 100dvh; display: flex; align-items: center; justify-content: center; padding: 120px 24px 64px; text-align: center; }
.merci-wrap { max-width: 620px; }
.merci-icon { width: 84px; height: 84px; border-radius: 50%; background: linear-gradient(135deg, rgba(4,120,87,0.15), rgba(4,120,87,0.05)); border: 2px solid rgba(4,120,87,0.3); display: flex; align-items: center; justify-content: center; margin: 0 auto 32px; }
.merci-icon svg { width: 40px; height: 40px; color: var(--success); }
.merci-title { font-family: var(--font-display); font-size: 36px; font-weight: 500; color: var(--white); margin-bottom: 16px; }
.merci-subtitle { font-size: 16px; color: rgba(255,255,255,0.65); margin-bottom: 44px; }
.merci-steps { display: grid; grid-template-columns: 1fr; gap: 16px; margin-bottom: 44px; }
.merci-step, .m-step { background: var(--glass-bg); backdrop-filter: blur(var(--glass-blur)); -webkit-backdrop-filter: blur(var(--glass-blur)); border: 1px solid var(--glass-border); border-radius: var(--radius-md); padding: 28px; text-align: center; }
.merci-step-num, .m-step-num { width: 44px; height: 44px; border-radius: 50%; background: linear-gradient(135deg, var(--gold-500), var(--gold-400)); display: flex; align-items: center; justify-content: center; font-family: var(--font-display); font-size: 16px; font-weight: 600; color: var(--slate-950); margin: 0 auto 14px; box-shadow: 0 2px 12px rgba(201,169,110,0.25); }
.merci-step h4, .m-step h4 { font-size: 16px; font-weight: 600; color: var(--white); margin-bottom: 6px; }
.merci-step p, .m-step p { font-size: 13px; color: rgba(255,255,255,0.65); }
.merci-contact { padding-top: 32px; border-top: 1px solid rgba(255,255,255,0.08); }
.merci-contact p { font-size: 14px; color: rgba(255,255,255,0.55); margin-bottom: 10px; }
.merci-contact a { color: var(--gold-400); font-weight: 500; font-size: 15px; transition: color 0.3s; }
.merci-contact a:hover { color: var(--gold-300); }

.merci-animate, .merci-anim { opacity: 0; transform: translateY(24px); animation: mIn 0.7s var(--ease-out) forwards; }
.merci-animate:nth-child(1), .merci-anim:nth-child(1) { animation-delay: 0.15s; }
.merci-animate:nth-child(2), .merci-anim:nth-child(2) { animation-delay: 0.3s; }
.merci-animate:nth-child(3), .merci-anim:nth-child(3) { animation-delay: 0.45s; }
.merci-animate:nth-child(4), .merci-anim:nth-child(4) { animation-delay: 0.6s; }
.merci-animate:nth-child(5), .merci-anim:nth-child(5) { animation-delay: 0.75s; }
.merci-animate:nth-child(6), .merci-anim:nth-child(6) { animation-delay: 0.9s; }
@keyframes mIn { to { opacity: 1; transform: translateY(0); } }

/* === 404 === */
.page-404 { background: linear-gradient(180deg, var(--slate-900) 0%, var(--slate-950) 100%); min-height: 100vh; min-height: 100dvh; display: flex; align-items: center; justify-content: center; text-align: center; padding: 120px 24px 64px; }
.p404-num, .page-404-num { font-family: var(--font-display); font-size: 130px; font-weight: 700; background: linear-gradient(135deg, var(--gold-400), var(--gold-500), var(--gold-600)); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; line-height: 1; margin-bottom: 16px; opacity: 0; animation: sIn 0.6s var(--ease-out) 0.15s forwards; }
.page-404 h1 { color: var(--white); font-size: 28px; margin-bottom: 12px; opacity: 0; animation: fIn 0.6s var(--ease-out) 0.35s forwards; }
.page-404 p { color: rgba(255,255,255,0.55); margin-bottom: 36px; opacity: 0; animation: fIn 0.6s var(--ease-out) 0.55s forwards; }
.page-404 .btn-primary { opacity: 0; animation: fIn 0.6s var(--ease-out) 0.75s forwards; }
@keyframes sIn { from { opacity: 0; transform: scale(0.6); } to { opacity: 1; transform: scale(1); } }
@keyframes fIn { from { opacity: 0; transform: translateY(20px); } to { opacity: 1; transform: translateY(0); } }

/* === RESPONSIVE === */
@media (min-width: 640px) {
  .container { padding: 0 32px; }
  .grid-2 { grid-template-columns: repeat(2, 1fr); }
  .hero-title { font-size: 48px; }
  .hero-ctas { flex-direction: row; }
  .hero-trust { flex-direction: row; gap: 32px; }
  .trust-sep, .hero-trust .separator { display: block; }
  .stats-row { grid-template-columns: repeat(3, 1fr); }
  .stat-num, .stat-number { font-size: 48px; }
  .quote-text, .testimonial-quote { font-size: 22px; }
  .footer-grid { grid-template-columns: repeat(2, 1fr); }
  .srv-feat-grid, .service-features-grid { grid-template-columns: repeat(2, 1fr); }
  .contact-info-grid { grid-template-columns: repeat(2, 1fr); }
  .form-row { grid-template-columns: repeat(2, 1fr); }
  .merci-steps { grid-template-columns: repeat(3, 1fr); }
  .merci-title { font-size: 44px; }
  .team-grid { grid-template-columns: repeat(3, 1fr); }
  .cta-final h2 { font-size: 36px; }
  .page-header h1 { font-size: 44px; }
}

@media (min-width: 1024px) {
  .container { padding: 0 48px; }
  .section-padding, .section-pad { padding: 110px 0; }
  .topbar { display: flex; }
  .header { top: 40px; height: 72px; }
  .header.scrolled { top: 0; }
  .nav-desktop { display: flex; }
  .header-cta { display: inline-flex; }
  .menu-toggle { display: none; }
  .grid-3 { grid-template-columns: repeat(3, 1fr); }
  .grid-4 { grid-template-columns: repeat(4, 1fr); }
  .hero { align-items: center; padding-top: calc(40px + 72px + 32px); padding-bottom: 0; }
  .hero-content { text-align: left; max-width: 680px; }
  .hero-title { font-size: 60px; }
  .hero-subtitle { font-size: 17px; max-width: 500px; margin-left: 0; margin-right: 0; }
  .process-timeline { grid-template-columns: repeat(4, 1fr); gap: 32px; }
  .process-timeline::before { display: none; }
  .process-step { padding-left: 0; padding-top: 76px; text-align: center; }
  .process-step-num { left: 50%; transform: translateX(-50%); }
  .why-grid, .why-us-grid { grid-template-columns: 45% 55%; gap: 64px; }
  .about-grid, .about-story-grid { grid-template-columns: 1fr 1fr; gap: 64px; }
  .footer-grid { grid-template-columns: 2fr 1fr 1fr 1.5fr; }
  .footer-bottom { flex-direction: row; justify-content: space-between; }
  .form-layout { grid-template-columns: 1fr 300px; gap: 36px; }
  .form-sidebar { display: block; }
  .contact-info-grid { grid-template-columns: repeat(4, 1fr); }
  .contact-form-section { grid-template-columns: 1fr 1fr; }
  .map-box, .map-container { height: auto; min-height: 520px; }
  .cookie-inner { flex-direction: row; text-align: left; justify-content: space-between; }
  .page-header { padding: calc(40px + 72px + 48px) 0 80px; }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation-duration: 0.01ms !important; transition-duration: 0.01ms !important; }
  .reveal { opacity: 1; transform: none; }
  html { scroll-behavior: auto; }
  .hero-bg img { transform: none; }
}
