/* =====================================================
   GSC - Global Solution Consulting
   Premium Dark Mode Design System
   ===================================================== */

:root {
  --bg-base: #0F172A;
  --bg-elevated: #1E293B;
  --bg-elevated-2: #1F2937;

  --gold: #C8A96A;
  --gold-light: #E5D3A1;
  --gold-dim: rgba(200, 169, 106, 0.15);
  --blue-muted: #3B82F6;

  --text-primary: #E5E7EB;
  --text-secondary: #9CA3AF;
  --text-tertiary: #6B7280;

  --border: rgba(229, 231, 235, 0.08);
  --border-strong: rgba(200, 169, 106, 0.25);

  --serif: 'Cormorant Garamond', Georgia, serif;
  --sans: 'Inter', -apple-system, sans-serif;

  --shadow-soft: 0 10px 40px rgba(0, 0, 0, 0.3);
  --shadow-strong: 0 20px 60px rgba(0, 0, 0, 0.5);

  --t-fast: 0.2s ease;
  --t-base: 0.35s cubic-bezier(0.4, 0, 0.2, 1);
  --t-slow: 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html {
  scroll-behavior: smooth;
  background: var(--bg-base);
}
body {
  font-family: var(--sans);
  background: var(--bg-base);
  color: var(--text-primary);
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  font-weight: 400;
}
body::before {
  content: '';
  position: fixed;
  inset: 0;
  background:
    radial-gradient(ellipse 80% 50% at 20% 0%, rgba(200, 169, 106, 0.08), transparent 60%),
    radial-gradient(ellipse 60% 40% at 80% 100%, rgba(59, 130, 246, 0.05), transparent 60%);
  pointer-events: none;
  z-index: 0;
}
main, nav, footer { position: relative; z-index: 1; }

h1, h2, h3, h4 {
  font-family: var(--serif);
  font-weight: 500;
  letter-spacing: -0.01em;
  line-height: 1.15;
}
a { color: inherit; text-decoration: none; transition: color var(--t-fast); }

/* NAVIGATION */
nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  padding: 1.25rem 3rem;
  background: rgba(15, 23, 42, 0.75);
  backdrop-filter: blur(20px) saturate(1.5);
  -webkit-backdrop-filter: blur(20px) saturate(1.5);
  border-bottom: 1px solid var(--border);
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: padding var(--t-base);
}
nav.scrolled { padding: 0.85rem 3rem; }
.logo { display: flex; align-items: center; }
.logo img {
  height: 44px;
  width: auto;
  filter: brightness(0) invert(1);
  transition: opacity var(--t-base);
}
.logo:hover img { opacity: 0.85; }
.nav-right { display: flex; align-items: center; gap: 2.5rem; }
.nav-links { display: flex; gap: 2.25rem; list-style: none; }
.nav-links a {
  color: var(--text-primary);
  font-size: 0.82rem;
  font-weight: 400;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  position: relative;
  padding: 0.5rem 0;
}
.nav-links a::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0;
  width: 0; height: 1px;
  background: var(--gold);
  transition: width var(--t-base);
}
.nav-links a:hover { color: var(--gold); }
.nav-links a:hover::after { width: 100%; }
.lang-switcher {
  display: flex;
  gap: 0.25rem;
  padding: 0.35rem;
  border: 1px solid var(--border-strong);
}
.lang-btn {
  background: transparent;
  border: none;
  color: var(--text-secondary);
  font-family: var(--sans);
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  padding: 0.35rem 0.6rem;
  cursor: pointer;
  transition: all var(--t-fast);
  text-transform: uppercase;
}
.lang-btn:hover { color: var(--gold); }
.lang-btn.active { background: var(--gold-dim); color: var(--gold); }
.nav-toggle {
  display: none;
  background: none;
  border: none;
  color: var(--text-primary);
  font-size: 1.5rem;
  cursor: pointer;
}

/* BUTTONS */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.85rem;
  padding: 1.1rem 2.25rem;
  font-family: var(--sans);
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  border: none;
  cursor: pointer;
  transition: all var(--t-base);
}
.btn-primary { background: var(--gold); color: var(--bg-base); }
.btn-primary:hover {
  background: var(--gold-light);
  transform: translateY(-2px);
  box-shadow: 0 12px 30px rgba(200, 169, 106, 0.25);
}
.btn-outline {
  background: transparent;
  color: var(--text-primary);
  border: 1px solid var(--border-strong);
}
.btn-outline:hover { border-color: var(--gold); color: var(--gold); }

/* HERO */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: 9rem 3rem 5rem;
  position: relative;
  overflow: hidden;
}
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(200, 169, 106, 0.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(200, 169, 106, 0.025) 1px, transparent 1px);
  background-size: 80px 80px;
  -webkit-mask-image: radial-gradient(ellipse at center, black 30%, transparent 80%);
  mask-image: radial-gradient(ellipse at center, black 30%, transparent 80%);
  pointer-events: none;
}
.hero-content {
  max-width: 1320px;
  margin: 0 auto;
  width: 100%;
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 5rem;
  align-items: center;
  position: relative;
}
.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 1rem;
  font-size: 0.72rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 2rem;
  font-weight: 500;
}
.hero-eyebrow::before { content: ''; width: 50px; height: 1px; background: var(--gold); }
.hero h1 {
  font-size: clamp(2.75rem, 6vw, 5.5rem);
  font-weight: 400;
  line-height: 1.02;
  letter-spacing: -0.025em;
  margin-bottom: 2rem;
  color: var(--text-primary);
}
.hero h1 em { font-style: italic; color: var(--gold); font-weight: 300; }
.hero p.lead {
  font-size: 1.1rem;
  color: var(--text-secondary);
  max-width: 560px;
  margin-bottom: 3rem;
  line-height: 1.75;
}
.hero-cta { display: flex; gap: 1rem; flex-wrap: wrap; }
.hero-card {
  background: linear-gradient(160deg, rgba(30, 41, 59, 0.6), rgba(15, 23, 42, 0.4));
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid var(--border-strong);
  padding: 3rem 2.5rem;
  position: relative;
  box-shadow: var(--shadow-soft);
}
.hero-card::before {
  content: '';
  position: absolute;
  top: -1px; left: -1px;
  width: 40px; height: 40px;
  border-top: 1px solid var(--gold);
  border-left: 1px solid var(--gold);
}
.hero-card::after {
  content: '';
  position: absolute;
  bottom: -1px; right: -1px;
  width: 40px; height: 40px;
  border-bottom: 1px solid var(--gold);
  border-right: 1px solid var(--gold);
}
.hero-card-label {
  font-size: 0.7rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1.5rem;
}
.hero-card h3 { font-size: 1.5rem; margin-bottom: 2rem; color: var(--text-primary); }
.hero-stats { display: grid; grid-template-columns: 1fr 1fr; gap: 1.75rem; }
.hero-stat { border-top: 1px solid var(--border); padding-top: 1rem; }
.hero-stat .num {
  font-family: var(--serif);
  font-size: 2.25rem;
  color: var(--text-primary);
  font-weight: 500;
  line-height: 1;
}
.hero-stat .label {
  font-size: 0.7rem;
  color: var(--text-tertiary);
  text-transform: uppercase;
  letter-spacing: 0.12em;
  margin-top: 0.5rem;
}

/* SECTION COMMONS */
section { padding: 8rem 3rem; position: relative; }
.container { max-width: 1320px; margin: 0 auto; }
.section-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 1rem;
  font-size: 0.7rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1.75rem;
  font-weight: 600;
}
.section-eyebrow::before { content: ''; width: 40px; height: 1px; background: var(--gold); }
.section-title {
  font-size: clamp(2rem, 4.5vw, 3.75rem);
  font-weight: 400;
  line-height: 1.1;
  letter-spacing: -0.02em;
  margin-bottom: 1.75rem;
  max-width: 850px;
  color: var(--text-primary);
}
.section-title em { font-style: italic; color: var(--gold); font-weight: 300; }
.section-intro {
  font-size: 1.05rem;
  color: var(--text-secondary);
  max-width: 700px;
  margin-bottom: 4.5rem;
  line-height: 1.8;
}

/* ABOUT */
.about-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 5rem; align-items: start; }
.about-text p { margin-bottom: 1.4rem; color: var(--text-secondary); font-size: 1rem; line-height: 1.85; }
.about-text p:first-child { font-size: 1.15rem; color: var(--text-primary); }
.about-values { display: grid; grid-template-columns: 1fr 1fr; gap: 1.5rem; }
.value {
  padding: 2rem 1.75rem;
  background: var(--bg-elevated);
  border: 1px solid var(--border);
  border-left: 2px solid var(--gold);
  transition: all var(--t-base);
}
.value:hover {
  transform: translateY(-4px);
  background: var(--bg-elevated-2);
  border-left-color: var(--gold-light);
  box-shadow: var(--shadow-soft);
}
.value h4 { font-size: 1.2rem; color: var(--text-primary); margin-bottom: 0.6rem; }
.value p { font-size: 0.85rem; color: var(--text-secondary); line-height: 1.65; }

/* SERVICES */
.services-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.75rem; }
.service {
  padding: 3rem 2.25rem;
  background: linear-gradient(165deg, var(--bg-elevated) 0%, rgba(31, 41, 55, 0.4) 100%);
  border: 1px solid var(--border);
  transition: all var(--t-base);
  position: relative;
  overflow: hidden;
}
.service::before {
  content: '';
  position: absolute;
  top: 0; left: 0;
  width: 0; height: 1px;
  background: linear-gradient(90deg, var(--gold), transparent);
  transition: width var(--t-slow);
}
.service:hover::before { width: 100%; }
.service:hover {
  border-color: var(--border-strong);
  transform: translateY(-6px);
  box-shadow: var(--shadow-soft);
}
.service-icon {
  width: 52px; height: 52px;
  border: 1px solid var(--gold);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 2rem;
  color: var(--gold);
  transition: all var(--t-base);
}
.service:hover .service-icon { background: var(--gold-dim); }
.service h3 { font-size: 1.4rem; margin-bottom: 1rem; color: var(--text-primary); line-height: 1.25; }
.service p { font-size: 0.93rem; color: var(--text-secondary); line-height: 1.75; }

/* PROCESS */
.process-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
  position: relative;
}
.process-grid::before {
  content: '';
  position: absolute;
  top: 30px;
  left: 5%;
  right: 5%;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--border-strong), transparent);
}
.process-step { text-align: center; position: relative; }
.process-num {
  width: 60px; height: 60px;
  border: 1px solid var(--gold);
  background: var(--bg-base);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--serif);
  font-size: 1.4rem;
  color: var(--gold);
  margin: 0 auto 1.75rem;
  font-style: italic;
  position: relative;
  z-index: 1;
}
.process-step h4 { font-size: 1.2rem; color: var(--text-primary); margin-bottom: 0.75rem; }
.process-step p { font-size: 0.88rem; color: var(--text-secondary); line-height: 1.65; padding: 0 0.5rem; }

/* WHY US */
.why-us {
  background: linear-gradient(180deg, transparent, rgba(200, 169, 106, 0.02), transparent);
}
.why-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 2rem; }
.why-card {
  padding: 2.5rem 2rem;
  border: 1px solid var(--border);
  background: var(--bg-elevated);
  transition: all var(--t-base);
}
.why-card:hover { border-color: var(--border-strong); transform: translateY(-4px); }
.why-card .num {
  font-family: var(--serif);
  font-size: 2.5rem;
  color: var(--gold);
  font-weight: 400;
  display: block;
  margin-bottom: 0.5rem;
}
.why-card h4 { font-size: 1.15rem; color: var(--text-primary); margin-bottom: 0.75rem; }
.why-card p { font-size: 0.9rem; color: var(--text-secondary); line-height: 1.65; }

/* TEAM */
.team-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.75rem; }
.team-row-bottom {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem;
  max-width: 66.66%;
  margin: 2rem auto 0;
}
.team-card {
  background: linear-gradient(165deg, var(--bg-elevated), rgba(31, 41, 55, 0.3));
  border: 1px solid var(--border);
  padding: 2.5rem 2rem;
  text-align: center;
  transition: all var(--t-base);
  position: relative;
  overflow: hidden;
}
.team-card::after {
  content: '';
  position: absolute;
  bottom: 0; left: 50%;
  width: 0; height: 2px;
  background: var(--gold);
  transform: translateX(-50%);
  transition: width var(--t-base);
}
.team-card:hover::after { width: 60%; }
.team-card:hover {
  transform: translateY(-6px);
  border-color: var(--border-strong);
  box-shadow: var(--shadow-soft);
}
.team-photo {
  width: 130px;
  height: 130px;
  border-radius: 50%;
  margin: 0 auto 1.75rem;
  background: var(--bg-elevated-2);
  border: 1px solid var(--border-strong);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--serif);
  font-size: 2.5rem;
  color: var(--gold);
  font-style: italic;
  overflow: hidden;
}
.team-photo img { width: 100%; height: 100%; object-fit: cover; }
.team-card h4 { font-size: 1.3rem; color: var(--text-primary); margin-bottom: 0.4rem; }
.team-role {
  font-size: 0.72rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.4rem;
  font-weight: 500;
}
.team-exp {
  font-size: 0.78rem;
  color: var(--text-tertiary);
  font-style: italic;
  margin-bottom: 1rem;
}
.team-bio {
  font-size: 0.86rem;
  color: var(--text-secondary);
  line-height: 1.65;
  padding-top: 1rem;
  border-top: 1px solid var(--border);
}

/* TESTIMONIALS */
.testimonials-slider { position: relative; overflow: hidden; }
.testimonials-track {
  display: flex;
  gap: 2rem;
  transition: transform var(--t-slow);
}
.testimonial {
  flex: 0 0 calc((100% - 4rem) / 3);
  background: var(--bg-elevated);
  border: 1px solid var(--border);
  padding: 2.75rem 2.25rem;
  position: relative;
  transition: all var(--t-base);
}
.testimonial::before {
  content: '"';
  position: absolute;
  top: 1rem;
  left: 1.5rem;
  font-family: var(--serif);
  font-size: 5rem;
  color: var(--gold);
  opacity: 0.25;
  line-height: 1;
}
.testimonial.featured {
  border-color: var(--border-strong);
  background: linear-gradient(165deg, var(--bg-elevated-2), var(--bg-elevated));
  box-shadow: var(--shadow-soft);
}
.testimonial-text {
  font-family: var(--serif);
  font-size: 1.1rem;
  font-style: italic;
  color: var(--text-primary);
  line-height: 1.6;
  margin: 1.5rem 0 2rem;
  font-weight: 400;
  position: relative;
  z-index: 1;
}
.testimonial-author { border-top: 1px solid var(--border); padding-top: 1.25rem; }
.testimonial-name { font-size: 0.95rem; color: var(--text-primary); font-weight: 500; margin-bottom: 0.2rem; }
.testimonial-company { font-size: 0.78rem; color: var(--gold); letter-spacing: 0.05em; }
.slider-controls { display: flex; justify-content: center; gap: 0.75rem; margin-top: 3rem; }
.slider-btn {
  width: 48px; height: 48px;
  border: 1px solid var(--border-strong);
  background: transparent;
  color: var(--text-primary);
  cursor: pointer;
  transition: all var(--t-base);
  display: flex;
  align-items: center;
  justify-content: center;
}
.slider-btn:hover {
  background: var(--gold-dim);
  border-color: var(--gold);
  color: var(--gold);
}

/* NEWS / EVENTS */
.news-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 4rem; }
.news-block-title {
  font-size: 1.5rem;
  color: var(--text-primary);
  margin-bottom: 2rem;
  display: flex;
  align-items: center;
  gap: 0.85rem;
}
.news-block-title svg { color: var(--gold); }
.announcements-list { display: flex; flex-direction: column; gap: 1.25rem; }
.announcement {
  padding: 1.75rem;
  background: var(--bg-elevated);
  border: 1px solid var(--border);
  border-left: 2px solid var(--border);
  transition: all var(--t-base);
  cursor: pointer;
}
.announcement:hover { border-left-color: var(--gold); transform: translateX(4px); }
.announcement.featured {
  background: linear-gradient(135deg, var(--bg-elevated-2), var(--bg-elevated));
  border-left: 2px solid var(--gold);
}
.announcement-date {
  font-size: 0.72rem;
  letter-spacing: 0.12em;
  color: var(--gold);
  text-transform: uppercase;
  margin-bottom: 0.5rem;
  font-weight: 500;
}
.announcement h4 { font-size: 1.1rem; color: var(--text-primary); margin-bottom: 0.5rem; }
.announcement p { font-size: 0.86rem; color: var(--text-secondary); line-height: 1.6; }
.calendar-list { display: flex; flex-direction: column; gap: 1.25rem; }
.event {
  display: grid;
  grid-template-columns: 80px 1fr;
  gap: 1.5rem;
  padding: 1.75rem;
  background: var(--bg-elevated);
  border: 1px solid var(--border);
  transition: all var(--t-base);
}
.event:hover { border-color: var(--border-strong); transform: translateY(-2px); }
.event-date { text-align: center; border-right: 1px solid var(--border); padding-right: 1.5rem; }
.event-day {
  font-family: var(--serif);
  font-size: 2rem;
  color: var(--gold);
  line-height: 1;
  font-weight: 500;
}
.event-month {
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--text-secondary);
  margin-top: 0.4rem;
}
.event-content h4 { font-size: 1.08rem; color: var(--text-primary); margin-bottom: 0.4rem; }
.event-meta {
  font-size: 0.75rem;
  color: var(--text-tertiary);
  margin-bottom: 0.6rem;
  display: flex;
  gap: 1rem;
}
.event-content p {
  font-size: 0.84rem;
  color: var(--text-secondary);
  line-height: 1.55;
  margin-bottom: 0.85rem;
}
.event-cta {
  font-size: 0.7rem;
  color: var(--gold);
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

/* PARTNERS */
.partners-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.5rem; }
.partner {
  padding: 2rem 1.5rem;
  background: var(--bg-elevated);
  border: 1px solid var(--border);
  text-align: center;
  transition: all var(--t-base);
}
.partner:hover {
  border-color: var(--border-strong);
  background: var(--bg-elevated-2);
  transform: translateY(-3px);
}
.partner-logo {
  width: 60px; height: 60px;
  margin: 0 auto 1.25rem;
  border: 1px solid var(--border-strong);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold);
  font-family: var(--serif);
  font-size: 1.4rem;
  font-style: italic;
  border-radius: 50%;
}
.partner h4 { font-size: 1rem; color: var(--text-primary); margin-bottom: 0.4rem; }
.partner p { font-size: 0.78rem; color: var(--text-tertiary); line-height: 1.5; }

/* APPLY FORM */
.apply-grid { display: grid; grid-template-columns: 1fr 1.4fr; gap: 5rem; align-items: start; }
.apply-info h3 { font-size: 1.3rem; color: var(--text-primary); margin-bottom: 1rem; margin-top: 2rem; }
.apply-info h3:first-child { margin-top: 0; }
.apply-info p { font-size: 0.95rem; color: var(--text-secondary); margin-bottom: 1rem; line-height: 1.7; }
form.contact-form {
  background: var(--bg-elevated);
  padding: 3rem;
  border: 1px solid var(--border);
  box-shadow: var(--shadow-soft);
}
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1.25rem; margin-bottom: 1.25rem; }
.form-group { margin-bottom: 1.25rem; }
label {
  display: block;
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--text-secondary);
  margin-bottom: 0.6rem;
  font-weight: 500;
}
input, select, textarea {
  width: 100%;
  padding: 0.95rem 1rem;
  border: 1px solid var(--border);
  background: var(--bg-base);
  font-family: var(--sans);
  font-size: 0.93rem;
  color: var(--text-primary);
  transition: all var(--t-base);
}
input::placeholder, textarea::placeholder { color: var(--text-tertiary); }
input:focus, select:focus, textarea:focus {
  outline: none;
  border-color: var(--gold);
  background: var(--bg-elevated-2);
}
textarea { resize: vertical; min-height: 130px; }
select { cursor: pointer; }
.checkbox-group {
  display: flex;
  align-items: flex-start;
  gap: 0.85rem;
  margin: 1.5rem 0;
  padding: 1.1rem;
  background: var(--bg-base);
  border-left: 2px solid var(--gold);
}
.checkbox-group input[type="checkbox"] {
  width: auto;
  margin-top: 4px;
  accent-color: var(--gold);
}
.checkbox-group label {
  font-size: 0.78rem;
  text-transform: none;
  letter-spacing: 0;
  color: var(--text-secondary);
  font-weight: 400;
  line-height: 1.6;
  margin-bottom: 0;
}
.checkbox-group label a { color: var(--gold); text-decoration: underline; cursor: pointer; }
form.contact-form .btn-primary {
  width: 100%;
  justify-content: center;
  padding: 1.2rem;
  margin-top: 0.5rem;
}

/* CONTACT */
.contact-grid { display: grid; grid-template-columns: 1fr 1.2fr; gap: 4rem; align-items: start; }
.contact-info { display: grid; gap: 1.25rem; }
.contact-item {
  display: flex;
  gap: 1.25rem;
  padding: 1.5rem;
  background: var(--bg-elevated);
  border: 1px solid var(--border);
  transition: all var(--t-base);
}
.contact-item:hover { border-color: var(--border-strong); }
.contact-icon {
  width: 44px; height: 44px;
  flex-shrink: 0;
  border: 1px solid var(--gold);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold);
}
.contact-item h5 {
  font-family: var(--sans);
  font-size: 0.68rem;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--gold);
  margin-bottom: 0.4rem;
  font-weight: 600;
}
.contact-item p, .contact-item a { color: var(--text-primary); font-size: 0.95rem; line-height: 1.55; }
.contact-item a:hover { color: var(--gold-light); }
.map-container {
  width: 100%;
  min-height: 480px;
  border: 1px solid var(--border-strong);
  overflow: hidden;
}
.map-container iframe {
  width: 100%;
  height: 100%;
  min-height: 480px;
  border: none;
  filter: invert(0.92) hue-rotate(180deg) saturate(0.7);
}
.socials { display: flex; gap: 0.75rem; margin-top: 0.5rem; }
.socials a {
  width: 42px; height: 42px;
  border: 1px solid var(--border-strong);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold);
  transition: all var(--t-base);
}
.socials a:hover {
  background: var(--gold);
  color: var(--bg-base);
  transform: translateY(-3px);
}

/* FOOTER */
footer {
  background: #0A1020;
  color: var(--text-secondary);
  padding: 4rem 3rem 2rem;
  border-top: 1px solid var(--border);
}
.footer-content {
  max-width: 1320px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 3rem;
  margin-bottom: 3rem;
}
.footer-col h5 {
  font-family: var(--serif);
  color: var(--gold);
  font-size: 1.1rem;
  margin-bottom: 1.25rem;
  font-weight: 500;
}
.footer-col p, .footer-col a {
  font-size: 0.85rem;
  color: var(--text-tertiary);
  line-height: 1.7;
  display: block;
  margin-bottom: 0.5rem;
}
.footer-col a:hover { color: var(--gold); }
.footer-logo img {
  height: 56px;
  width: auto;
  filter: brightness(0) invert(1);
  margin-bottom: 1.25rem;
  opacity: 0.9;
}
.footer-bottom {
  max-width: 1320px;
  margin: 0 auto;
  padding-top: 2rem;
  border-top: 1px solid var(--border);
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
  font-size: 0.78rem;
  color: var(--text-tertiary);
}

/* WHATSAPP */
.whatsapp-btn {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  width: 62px;
  height: 62px;
  background: #25D366;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  box-shadow: 0 8px 30px rgba(37, 211, 102, 0.35);
  z-index: 999;
  transition: all var(--t-base);
  animation: pulse 2.5s infinite;
}
@keyframes pulse {
  0%, 100% { box-shadow: 0 8px 30px rgba(37, 211, 102, 0.35); }
  50% { box-shadow: 0 8px 30px rgba(37, 211, 102, 0.6), 0 0 0 12px rgba(37, 211, 102, 0.08); }
}
.whatsapp-btn:hover { transform: scale(1.08); }
.whatsapp-btn svg { width: 30px; height: 30px; }
.whatsapp-tooltip {
  position: absolute;
  right: 78px;
  top: 50%;
  transform: translateY(-50%) translateX(10px);
  background: var(--bg-elevated);
  color: var(--text-primary);
  padding: 0.85rem 1.25rem;
  font-size: 0.85rem;
  white-space: nowrap;
  border: 1px solid var(--border-strong);
  opacity: 0;
  pointer-events: none;
  transition: all var(--t-base);
  box-shadow: var(--shadow-soft);
}
.whatsapp-btn:hover .whatsapp-tooltip {
  opacity: 1;
  transform: translateY(-50%) translateX(0);
}
.whatsapp-tooltip::after {
  content: '';
  position: absolute;
  right: -6px; top: 50%;
  transform: translateY(-50%) rotate(45deg);
  width: 10px; height: 10px;
  background: var(--bg-elevated);
  border-right: 1px solid var(--border-strong);
  border-top: 1px solid var(--border-strong);
}

/* MODAL */
.modal {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(5, 10, 20, 0.85);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  z-index: 2000;
  align-items: center;
  justify-content: center;
  padding: 2rem;
}
.modal.active { display: flex; animation: fadeIn 0.3s ease; }
@keyframes fadeIn { from { opacity: 0; } to { opacity: 1; } }
.modal-content {
  background: var(--bg-elevated);
  max-width: 720px;
  max-height: 85vh;
  overflow-y: auto;
  padding: 3rem;
  position: relative;
  border: 1px solid var(--border-strong);
  border-top: 3px solid var(--gold);
  box-shadow: var(--shadow-strong);
  animation: slideUp 0.4s ease;
}
@keyframes slideUp {
  from { opacity: 0; transform: translateY(20px); }
  to { opacity: 1; transform: translateY(0); }
}
.modal-close {
  position: absolute;
  top: 1.25rem;
  right: 1.5rem;
  background: none;
  border: none;
  font-size: 1.75rem;
  color: var(--text-secondary);
  cursor: pointer;
  line-height: 1;
  transition: color var(--t-fast);
}
.modal-close:hover { color: var(--gold); }
.modal-content h2 { color: var(--text-primary); font-size: 1.85rem; margin-bottom: 1.5rem; }
.modal-content h3 {
  color: var(--gold);
  font-size: 1.05rem;
  margin: 1.5rem 0 0.5rem;
  font-family: var(--sans);
  font-weight: 600;
  letter-spacing: 0.02em;
}
.modal-content p { font-size: 0.9rem; color: var(--text-secondary); line-height: 1.7; margin-bottom: 0.75rem; }

.modal-success .modal-content { text-align: center; max-width: 480px; padding: 3.5rem 3rem; }
.success-icon {
  width: 80px; height: 80px;
  margin: 0 auto 1.5rem;
  border: 1px solid var(--gold);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold);
  background: var(--gold-dim);
}
.success-icon svg { width: 40px; height: 40px; }
.modal-success h2 { font-size: 1.6rem; margin-bottom: 0.85rem; }
.modal-success p { font-size: 1rem; color: var(--text-secondary); margin-bottom: 0; }

/* COOKIE BANNER */
.cookie-banner {
  position: fixed;
  bottom: 1.5rem;
  left: 1.5rem;
  right: 1.5rem;
  max-width: 540px;
  background: var(--bg-elevated);
  border: 1px solid var(--border-strong);
  padding: 1.75rem;
  z-index: 1500;
  box-shadow: var(--shadow-strong);
  transform: translateY(150%);
  transition: transform var(--t-slow);
  border-top: 2px solid var(--gold);
}
.cookie-banner.show { transform: translateY(0); }
.cookie-banner h4 {
  font-size: 1.1rem;
  color: var(--text-primary);
  margin-bottom: 0.6rem;
  display: flex;
  align-items: center;
  gap: 0.6rem;
}
.cookie-banner p { font-size: 0.84rem; color: var(--text-secondary); line-height: 1.6; margin-bottom: 1.25rem; }
.cookie-banner p a { color: var(--gold); text-decoration: underline; }
.cookie-actions { display: flex; gap: 0.6rem; flex-wrap: wrap; }
.cookie-actions button {
  padding: 0.7rem 1.25rem;
  font-size: 0.7rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  border: none;
  cursor: pointer;
  font-family: var(--sans);
  font-weight: 500;
  transition: all var(--t-base);
}
.cookie-actions .btn-accept {
  background: var(--gold);
  color: var(--bg-base);
  flex: 1;
  min-width: 110px;
}
.cookie-actions .btn-accept:hover { background: var(--gold-light); }
.cookie-actions .btn-reject,
.cookie-actions .btn-customize {
  background: transparent;
  color: var(--text-primary);
  border: 1px solid var(--border-strong);
}
.cookie-actions .btn-reject:hover,
.cookie-actions .btn-customize:hover {
  border-color: var(--gold);
  color: var(--gold);
}

/* LEGAL PAGES */
.legal-page { padding: 10rem 3rem 6rem; min-height: 100vh; }
.legal-container { max-width: 880px; margin: 0 auto; }
.legal-page h1 { font-size: clamp(2rem, 4vw, 3rem); color: var(--text-primary); margin-bottom: 0.75rem; }
.legal-page .subtitle {
  color: var(--gold);
  font-size: 0.85rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  margin-bottom: 3rem;
  display: block;
}
.legal-page h2 { font-size: 1.5rem; color: var(--text-primary); margin: 2.5rem 0 1rem; }
.legal-page h3 {
  font-size: 1.1rem;
  color: var(--gold);
  margin: 1.75rem 0 0.75rem;
  font-family: var(--sans);
  font-weight: 600;
}
.legal-page p { color: var(--text-secondary); line-height: 1.85; margin-bottom: 1rem; font-size: 0.94rem; }
.legal-page ul { color: var(--text-secondary); line-height: 1.85; margin-bottom: 1.25rem; padding-left: 1.5rem; }
.legal-page ul li { margin-bottom: 0.4rem; font-size: 0.94rem; }
.legal-page a { color: var(--gold); text-decoration: underline; }
.legal-back {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--gold);
  font-size: 0.78rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 2rem;
}
.legal-back:hover { color: var(--gold-light); }

/* RESPONSIVE */
@media (max-width: 1100px) {
  .services-grid, .why-grid { grid-template-columns: repeat(2, 1fr); }
  .team-grid { grid-template-columns: repeat(2, 1fr); }
  .team-row-bottom { max-width: 100%; grid-template-columns: repeat(2, 1fr); }
  .partners-grid { grid-template-columns: repeat(2, 1fr); }
  .process-grid { grid-template-columns: repeat(2, 1fr); gap: 3rem; }
  .process-grid::before { display: none; }
  .footer-content { grid-template-columns: 1fr 1fr; }
  .testimonial { flex: 0 0 calc((100% - 2rem) / 2); }
}

@media (max-width: 768px) {
  nav { padding: 1rem 1.5rem; }
  nav.scrolled { padding: 0.85rem 1.5rem; }
  .nav-right { gap: 1rem; }
  .nav-links {
    display: none;
    position: absolute;
    top: 100%;
    left: 0; right: 0;
    background: var(--bg-elevated);
    flex-direction: column;
    padding: 1.5rem;
    gap: 1.25rem;
    border-top: 1px solid var(--border);
  }
  .nav-links.active { display: flex; }
  .nav-toggle { display: block; }

  section { padding: 5rem 1.5rem; }
  .hero { padding: 8rem 1.5rem 4rem; }

  .hero-content,
  .about-grid,
  .apply-grid,
  .contact-grid,
  .news-grid {
    grid-template-columns: 1fr;
    gap: 3rem;
  }

  .services-grid,
  .why-grid,
  .team-grid,
  .partners-grid,
  .process-grid {
    grid-template-columns: 1fr;
  }
  .team-row-bottom { grid-template-columns: 1fr; max-width: 100%; }
  .about-values { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .footer-content { grid-template-columns: 1fr; gap: 2rem; }
  .footer-bottom { flex-direction: column; text-align: center; }
  .testimonial { flex: 0 0 100%; }
  .event { grid-template-columns: 70px 1fr; gap: 1rem; }
  form.contact-form { padding: 2rem 1.5rem; }
  .modal-content { padding: 2rem 1.5rem; }
  .cookie-banner { left: 1rem; right: 1rem; bottom: 1rem; padding: 1.5rem; }
  .legal-page { padding: 7rem 1.5rem 4rem; }
}

/* ========== INSIGHTS / NEWS ========== */
.insights {
  border-top: 1px solid var(--border);
}
.insights-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}
.insight-card {
  background: var(--surface);
  border: 1px solid var(--border);
  transition: all 0.5s var(--ease);
  display: flex;
  flex-direction: column;
  cursor: pointer;
}
.insight-card:hover {
  background: var(--surface-2);
  border-color: rgba(200, 169, 106, 0.25);
  transform: translateY(-5px);
}
.insight-cover {
  aspect-ratio: 16/10;
  background: linear-gradient(135deg, var(--surface-2), var(--surface-3));
  position: relative;
  overflow: hidden;
  border-bottom: 1px solid var(--border);
}
.insight-cover::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 30% 30%, rgba(200, 169, 106, 0.18), transparent 60%),
    radial-gradient(circle at 70% 70%, rgba(96, 165, 250, 0.08), transparent 60%);
}
.insight-cover-icon {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--serif);
  font-size: 4rem;
  font-style: italic;
  color: rgba(200, 169, 106, 0.35);
}
.insight-body {
  padding: 2rem 2rem 2.25rem;
  display: flex;
  flex-direction: column;
  flex: 1;
}
.insight-meta {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 1rem;
  font-size: 0.7rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  font-weight: 600;
}
.insight-type {
  color: var(--gold);
  padding: 0.3rem 0.65rem;
  border: 1px solid rgba(200, 169, 106, 0.3);
}
.insight-date { color: var(--text-dim); }
.insight-card h3 {
  font-family: var(--serif);
  font-size: 1.35rem;
  font-weight: 500;
  line-height: 1.3;
  margin-bottom: 0.85rem;
  color: var(--text);
}
.insight-card p {
  font-size: 0.9rem;
  color: var(--text-mute);
  line-height: 1.7;
  margin-bottom: 1.5rem;
  flex: 1;
}
.insight-card .read-link {
  font-size: 0.72rem;
  color: var(--gold);
  letter-spacing: 0.12em;
  text-transform: uppercase;
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  transition: gap 0.3s;
}
.insight-card:hover .read-link { gap: 0.85rem; }

/* ========== COOKIE SETTINGS MODAL ========== */
.cookie-settings .modal-content { max-width: 600px; }
.cookie-category {
  padding: 1.5rem;
  background: var(--bg-soft, #0f172a);
  border: 1px solid var(--border);
  margin-bottom: 1rem;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 1.5rem;
}
.cookie-category-info { flex: 1; }
.cookie-category h4 {
  font-family: var(--serif);
  font-size: 1.1rem;
  color: var(--text);
  margin-bottom: 0.4rem;
  font-weight: 500;
}
.cookie-category p {
  font-size: 0.85rem;
  color: var(--text-mute);
  line-height: 1.6;
  margin-bottom: 0;
}
.cookie-category .badge {
  display: inline-block;
  font-size: 0.62rem;
  padding: 0.2rem 0.5rem;
  background: rgba(200, 169, 106, 0.1);
  color: var(--gold);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  font-weight: 600;
  border: 1px solid rgba(200, 169, 106, 0.2);
  margin-top: 0.5rem;
}
.toggle {
  position: relative;
  width: 44px;
  height: 24px;
  flex-shrink: 0;
}
.toggle input {
  opacity: 0;
  width: 0;
  height: 0;
  position: absolute;
}
.toggle .slider {
  position: absolute;
  inset: 0;
  background: #374151;
  border: 1px solid rgba(229, 231, 235, 0.14);
  cursor: pointer;
  border-radius: 24px;
  transition: 0.3s;
}
.toggle .slider::before {
  content: '';
  position: absolute;
  height: 16px;
  width: 16px;
  left: 3px;
  top: 3px;
  background: var(--text-mute);
  border-radius: 50%;
  transition: 0.3s;
}
.toggle input:checked + .slider {
  background: var(--gold);
  border-color: var(--gold);
}
.toggle input:checked + .slider::before {
  background: var(--bg, #0b1120);
  transform: translateX(20px);
}
.toggle input:disabled + .slider {
  opacity: 0.6;
  cursor: not-allowed;
}
.cookie-modal-actions {
  display: flex;
  gap: 0.75rem;
  margin-top: 1.5rem;
  flex-wrap: wrap;
}
.cookie-modal-actions .btn { flex: 1; min-width: 140px; }

@media (max-width: 1024px) {
  .insights-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 768px) {
  .insights-grid { grid-template-columns: 1fr; }
  .cookie-category { flex-direction: column; }
}
