/* ================================================================
   CDG Consultancy V2 — Komis-inspired
   Brand: Deep Purple #2c2053 / Warm Gold #eed18d
   Dark-first design, circular hero, alternating sections
   ================================================================ */

:root {
  --c-dark:         #2c2053;
  --c-dark-deep:    #281e4d;
  --c-dark-raised:  #372860;
  --c-dark-border:  rgba(238, 209, 141, 0.13);
  --c-accent:       #eed18d;
  --c-accent-hover: #f6e09e;
  --c-light:        #FFFDF9;
  --c-light-raised: #F0EDE7;
  --c-white:        #FFFFFF;
  --c-text:         #1A1A1A;
  --c-dim:          rgba(255, 255, 255, 0.48);
  --c-dim-light:    rgba(26, 26, 26, 1);

  --font-h: 'DM Sans', sans-serif;
  --font-b: 'Source Sans Pro', sans-serif;

  --ease:    cubic-bezier(0.25, 0.46, 0.45, 0.94);
  --spring:  cubic-bezier(0.34, 1.56, 0.64, 1);

  --max: 1200px;
  --pad: 3rem;
}

/* ===================== RESET ===================== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; font-size: 125%; zoom: 0.75; }

body {
  font-family: var(--font-b);
  background: var(--c-dark);
  color: var(--c-white);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

img  { max-width: 100%; height: auto; display: block; }
a    { text-decoration: none; color: inherit; }
ul   { list-style: none; }

/* ===================== NAV ===================== */
.nav {
  position: fixed;
  inset-inline: 0;
  top: 0;
  z-index: 1000;
  background: var(--c-dark);
  padding: 1.25rem var(--pad);
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px solid transparent;
  transition: border-color 0.4s var(--ease);
}

.nav.scrolled {
  border-bottom-color: var(--c-dark-border);
}

.nav-logo { height: 3.25rem; width: auto; }

.nav-right {
  display: flex;
  align-items: center;
  gap: 2rem;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 2rem;
}

.nav-links a {
  font-family: var(--font-h);
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--c-dim);
  position: relative;
  transition: color 0.25s var(--ease);
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -3px; left: 0;
  width: 0; height: 1px;
  background: var(--c-accent);
  transition: width 0.3s var(--ease);
}

.nav-links a:hover,
.nav-links a.active        { color: var(--c-accent); }
.nav-links a:hover::after,
.nav-links a.active::after { width: 100%; }
.nav-links a:focus-visible { outline: 2px solid var(--c-accent); outline-offset: 4px; border-radius: 2px; }

/* Hamburger */
.nav-hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}
.nav-hamburger span {
  display: block;
  width: 22px;
  height: 1.5px;
  background: var(--c-dim);
  transition: transform 0.3s var(--ease), opacity 0.3s ease, background 0.25s ease;
}
.nav-hamburger:hover span { background: var(--c-accent); }
.nav-hamburger.open span:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
.nav-hamburger.open span:nth-child(2) { opacity: 0; }
.nav-hamburger.open span:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }
.nav-hamburger:focus-visible { outline: 2px solid var(--c-accent); border-radius: 2px; }

/* Mobile overlay */
.nav-mobile {
  display: none;
  position: fixed;
  inset: 0;
  background: var(--c-dark);
  z-index: 999;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 2.5rem;
}
.nav-mobile.open { display: flex; }
.nav-mobile a {
  font-family: var(--font-h);
  font-size: 2.25rem;
  font-weight: 700;
  letter-spacing: -0.02em;
  color: var(--c-white);
  transition: color 0.25s var(--ease);
}
.nav-mobile a:hover { color: var(--c-accent); }

/* ===================== HERO CANVAS MESH ===================== */
#hero-canvas {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
  pointer-events: none;
}

/* ===================== GLOBE CANVAS ===================== */
#globe-canvas {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 132%;
  aspect-ratio: 1 / 1;
  transform: translate(-50%, -50%);
  pointer-events: none;
  z-index: -1;
}

/* ===================== HERO ===================== */
.hero {
  min-height: 100vh;
  background: var(--c-dark);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
  padding: 8rem var(--pad) 6rem;
}

/* Grain */
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
  opacity: 0.035;
  pointer-events: none;
}

/* Radial gradient */
.hero::after {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 70% 60% at 50% 40%, rgba(238,209,141,0.06) 0%, transparent 65%),
    radial-gradient(ellipse 40% 40% at 80% 80%, rgba(238,209,141,0.03) 0%, transparent 60%);
  pointer-events: none;
}

/* The circle */
.hero-circle {
  position: relative;
  z-index: 1;
  width: min(860px, 92vw);
  aspect-ratio: 1;
  border-radius: 50%;
  border: none;
  background: var(--c-dark);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 1.25rem;
  padding: 5rem;
  text-align: center;
  opacity: 0;
  transform: scale(0.92);
  animation: circleIn 1.1s var(--ease) 0.2s forwards;
}

/* Darker backdrop disc, sized to match the globe's footprint */
.hero-circle::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 132%;
  aspect-ratio: 1 / 1;
  transform: translate(-50%, -50%);
  border-radius: 50%;
  background: var(--c-dark-deep);
  z-index: -2;
}


.hero-title-v2 {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.25em;
  flex-wrap: wrap;
  row-gap: 0.1em;
}

.hero-word {
  opacity: 0;
  transform: translateY(14px);
  display: inline-block;
  animation: fadeUp 1.2s var(--ease) forwards;
}
.hero-word:nth-child(1) { animation-delay: 0.6s; }
.hero-word:nth-child(2) { animation-delay: 1.4s; }
.hero-word:nth-child(3) { animation-delay: 2.2s; flex-basis: 100%; text-align: center; }

.hero-brand-logo {
  height: clamp(2.6rem, 6vw, 5.2rem);
  width: auto;
  flex-shrink: 0;
}

.hero-brand-word {
  font-family: var(--font-h);
  font-size: clamp(2.6rem, 6vw, 5.2rem);
  font-weight: 700;
  letter-spacing: -0.03em;
  color: var(--c-white);
  line-height: 1;
}

.hero-slogan {
  font-family: var(--font-h);
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  font-weight: 700;
  letter-spacing: -0.02em;
  color: var(--c-accent);
  line-height: 1.15;
  display: flex;
  gap: 0.35em;
  flex-wrap: wrap;
  justify-content: center;
  margin-top: 1.25rem;
}

.slogan-word {
  opacity: 0;
  transform: translateY(14px);
  display: inline-block;
  animation: fadeUp 1.1s var(--ease) forwards;
}
.slogan-word:nth-child(1) { animation-delay: 2.8s; }
.slogan-word:nth-child(2) { animation-delay: 3.6s; color: var(--c-white); }
.slogan-word:nth-child(3) { animation-delay: 4.4s; }

.hero-subtitle {
  font-family: var(--font-b);
  font-size: 0.8rem;
  font-weight: 300;
  letter-spacing: 0.06em;
  color: var(--c-dim);
  text-transform: uppercase;
  opacity: 0;
  animation: fadeUp 0.7s var(--ease) 1.1s forwards;
}

.hero-ctas-v2 {
  display: flex;
  gap: 0.75rem;
  flex-wrap: wrap;
  justify-content: center;
  margin-top: 4.5rem;
  opacity: 0;
  animation: fadeUp 1.6s var(--ease) 3.4s forwards;
}

.hero-scroll {
  position: absolute;
  bottom: 2.5rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  color: var(--c-dim);
  font-family: var(--font-h);
  font-size: 0.6rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  opacity: 0;
  animation: fadeUp 0.7s ease 1.6s forwards;
  z-index: 1;
}
.hero-scroll-line {
  width: 1px;
  height: 32px;
  background: linear-gradient(to bottom, rgba(238,209,141,0.45), transparent);
  animation: scrollPulse 2.2s ease-in-out infinite;
}

/* ===================== BUTTONS ===================== */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-family: var(--font-h);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 0.85rem 2rem;
  border-radius: 2px;
  cursor: pointer;
  border: 1.5px solid transparent;
  transition: transform  0.28s var(--spring),
              box-shadow 0.28s ease,
              background 0.25s ease,
              color      0.25s ease,
              border-color 0.25s ease;
}
.btn:focus-visible { outline: 2px solid var(--c-accent); outline-offset: 3px; }
.btn:active { transform: scale(0.97) !important; }

.btn-accent {
  background: var(--c-accent);
  color: var(--c-dark);
  border-color: var(--c-accent);
  box-shadow: 0 0 18px rgba(238,209,141,0.35), 0 4px 14px rgba(238,209,141,0.20);
}
.btn-accent:hover {
  background: var(--c-accent-hover);
  border-color: var(--c-accent-hover);
  transform: translateY(-2px);
  box-shadow: 0 0 32px rgba(238,209,141,0.65), 0 8px 24px rgba(238,209,141,0.40);
}

.btn-outline-light {
  background: transparent;
  color: var(--c-white);
  border-color: rgba(255,255,255,0.28);
}
.btn-outline-light:hover {
  border-color: var(--c-accent);
  color: var(--c-accent);
  transform: translateY(-2px);
}

.btn-outline-dark {
  background: transparent;
  color: var(--c-text);
  border-color: rgba(26,26,26,0.25);
}
.btn-outline-dark:hover {
  border-color: var(--c-dark);
  background: var(--c-dark);
  color: var(--c-white);
  transform: translateY(-2px);
}

.btn-link {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-family: var(--font-h);
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  color: var(--c-dark);
  text-decoration: none;
  border-bottom: 1.5px solid var(--c-dark);
  padding-bottom: 2px;
  transition: color 0.25s ease, border-color 0.25s ease;
}
.btn-link:hover { color: rgba(44,32,83,0.6); border-color: rgba(44,32,83,0.4); }
.btn-link:focus-visible { outline: 2px solid var(--c-dark); outline-offset: 4px; }

.btn-link-light {
  color: var(--c-white);
  border-color: rgba(255,255,255,0.5);
}
.btn-link-light:hover { color: var(--c-accent); border-color: var(--c-accent); }

/* ===================== ABOUT — Light ===================== */
.about {
  background: var(--c-light);
  padding: 8rem var(--pad);
}

.about-inner {
  max-width: var(--max);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 6rem;
  align-items: start;
}

.about-left {
  position: sticky;
  top: 8rem;
}

.section-tag {
  font-family: var(--font-h);
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--c-dim-light);
  margin-bottom: 1.5rem;
}

.about .section-tag { font-size: 0.8rem; }

.about-heading {
  font-family: var(--font-h);
  font-size: clamp(2.2rem, 5vw, 3.75rem);
  font-weight: 700;
  letter-spacing: -0.03em;
  color: var(--c-dark);
  line-height: 1.06;
  margin-bottom: 2.5rem;
}

.about-right {
  padding-top: 0.5rem;
}

.about-text {
  font-size: 1rem;
  font-weight: 300;
  line-height: 1.85;
  color: var(--c-dim-light);
  margin-bottom: 1.5rem;
  text-align: justify;
}

.about-mission {
  margin-top: 2rem;
}
.about-mission .about-text {
  margin-bottom: 0;
}

.about-actions {
  margin-top: 2.5rem;
  display: flex;
  gap: 1.5rem;
  align-items: center;
}

/* ===================== WHY US — Light ===================== */
.why {
  background: var(--c-light);
  padding: 0 var(--pad) 8rem;
  border-top: 1px solid rgba(44,32,83,0.07);
}

.why-inner {
  max-width: var(--max);
  margin: 0 auto;
}

.why-header {
  padding: 4rem 0 3rem;
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  border-bottom: 1px solid rgba(44,32,83,0.1);
}

.why-header-title {
  font-family: var(--font-h);
  font-size: clamp(1.6rem, 3.5vw, 2.5rem);
  font-weight: 700;
  letter-spacing: -0.03em;
  color: var(--c-dark);
  line-height: 1.08;
}

.why-list {
  display: flex;
  flex-direction: column;
}

.why-item {
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: start;
  gap: 2rem;
  padding: 2rem 0;
  border-bottom: 1px solid rgba(44,32,83,0.07);
  transition: background 0.2s ease;
}

.why-item-text strong {
  display: block;
  font-family: var(--font-h);
  font-size: 1.05rem;
  font-weight: 700;
  letter-spacing: -0.015em;
  color: var(--c-dark);
  margin-bottom: 0.5rem;
}

.why-item-text p {
  font-size: 1rem;
  font-weight: 300;
  line-height: 1.75;
  color: var(--c-dim-light);
  max-width: 640px;
}

.why-item-icon {
  flex-shrink: 0;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: 1px solid rgba(238,209,141,0.35);
  background: rgba(238,209,141,0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 0.25rem;
  transition: border-color 0.25s ease, background 0.25s ease;
}
.why-item:hover .why-item-icon {
  border-color: var(--c-accent);
  background: var(--c-accent);
}
.why-item-icon svg {
  width: 14px; height: 14px;
  stroke: var(--c-accent);
  fill: none;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
  transition: stroke 0.25s ease;
}
.why-item:hover .why-item-icon svg { stroke: var(--c-dark); }

/* ===================== STATS — Dark ===================== */
.stats {
  background: var(--c-dark);
  padding: 5rem var(--pad);
  position: relative;
  overflow: hidden;
}
.stats::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(238,209,141,0.04) 0%, transparent 50%);
}
.stats-inner {
  max-width: var(--max);
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  position: relative;
}

.stats-item {
  text-align: center;
  padding: 1rem 2rem;
  position: relative;
}
.stats-item:not(:last-child)::after {
  content: '';
  position: absolute;
  right: 0; top: 15%;
  height: 70%; width: 1px;
  background: var(--c-dark-border);
}

/* Stagger reveals */
.stats-item:nth-child(1).reveal { transition-delay: 0s;   }
.stats-item:nth-child(2).reveal { transition-delay: 0.1s; }
.stats-item:nth-child(3).reveal { transition-delay: 0.2s; }

.stats-number {
  font-family: var(--font-h);
  font-size: clamp(1.8rem, 3.5vw, 3rem);
  font-weight: 700;
  color: var(--c-accent);
  letter-spacing: -0.03em;
  line-height: 1;
  margin-bottom: 0.6rem;
}
.stats-label {
  font-family: var(--font-b);
  font-size: 0.8rem;
  font-weight: 300;
  color: var(--c-dim);
  line-height: 1.4;
}

/* ===================== SERVICES — Light ===================== */
.services {
  background: #F4F2EE;
  padding: 8rem var(--pad);
}
.services-inner {
  max-width: var(--max);
  margin: 0 auto;
}

.services-header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  margin-bottom: 4rem;
  padding-bottom: 2rem;
  border-bottom: 1px solid rgba(44,32,83,0.1);
}

.services-title {
  font-family: var(--font-h);
  font-size: clamp(1.6rem, 3.5vw, 2.5rem);
  font-weight: 700;
  letter-spacing: -0.03em;
  color: var(--c-dark);
  line-height: 1.08;
}

.services-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
  background: transparent;
}

.service-card {
  background: var(--c-dark);
  padding: 1.75rem;
  position: relative;
  border-radius: 3px;
  border: 1px solid rgba(238,209,141,0.18);
  transition: transform  0.3s var(--ease),
              box-shadow 0.3s ease,
              border-color 0.3s ease;
}
.service-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 40px rgba(0,0,0,0.25);
  border-color: rgba(238,209,141,0.45);
}

.service-card:nth-child(1).reveal { transition-delay: 0s;    }
.service-card:nth-child(2).reveal { transition-delay: 0.08s; }
.service-card:nth-child(3).reveal { transition-delay: 0.14s; }
.service-card:nth-child(4).reveal { transition-delay: 0.2s;  }

.service-num {
  display: none;
  margin-bottom: 1.5rem;
  opacity: 0.8;
}

.service-icon {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 1px solid rgba(238,209,141,0.35);
  box-shadow: 0 0 18px rgba(238,209,141,0.30);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.5rem;
  transition: border-color 0.25s ease, background 0.25s ease;
}
.service-card:hover .service-icon {
  border-color: var(--c-accent);
  background: rgba(238,209,141,0.1);
}
.service-icon svg {
  width: 18px; height: 18px;
  stroke: var(--c-accent);
  fill: none;
  stroke-width: 1.5;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.service-title {
  font-family: var(--font-h);
  font-size: 1.1rem;
  font-weight: 700;
  letter-spacing: -0.02em;
  color: var(--c-accent);
  margin-bottom: 0.875rem;
  line-height: 1.2;
}

.service-text {
  font-size: 1rem;
  font-weight: 300;
  line-height: 1.8;
  color: var(--c-white);
  text-align: justify;
}

/* ===================== CLIENTS — Light ===================== */
.clients {
  background: var(--c-light);
  padding: 8rem var(--pad);
}
.clients-inner {
  max-width: var(--max);
  margin: 0 auto;
}

.clients-header {
  margin-bottom: 4rem;
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  padding-bottom: 2rem;
  border-bottom: 1px solid rgba(44,32,83,0.08);
}

.clients-title {
  font-family: var(--font-h);
  font-size: clamp(1.6rem, 3.5vw, 2.5rem);
  font-weight: 700;
  letter-spacing: -0.03em;
  color: var(--c-dark);
  line-height: 1.08;
}

.clients-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1rem;
}

.client-card {
  flex: 1 1 calc((100% - 2rem) / 3);
  max-width: calc((100% - 2rem) / 3);
  background: var(--c-dark);
  padding: 1.75rem;
  border-radius: 3px;
  border: 1px solid rgba(238,209,141,0.18);
  transition: transform  0.3s var(--ease),
              box-shadow 0.3s ease,
              border-color 0.3s ease;
}
.client-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 40px rgba(0,0,0,0.25);
  border-color: rgba(238,209,141,0.45);
}

.client-card:nth-child(1).reveal { transition-delay: 0s;    }
.client-card:nth-child(2).reveal { transition-delay: 0.07s; }
.client-card:nth-child(3).reveal { transition-delay: 0.14s; }
.client-card:nth-child(4).reveal { transition-delay: 0.07s; }
.client-card:nth-child(5).reveal { transition-delay: 0.14s; }
.client-card:nth-child(6).reveal { transition-delay: 0.21s; }

.client-icon {
  width: 44px; height: 44px;
  border-radius: 50%;
  border: 1px solid rgba(238,209,141,0.35);
  box-shadow: 0 0 18px rgba(238,209,141,0.30);
  background: transparent;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1rem;
  transition: border-color 0.25s ease, background 0.25s ease;
}
.client-card:hover .client-icon {
  border-color: var(--c-accent);
  background: rgba(238,209,141,0.1);
}
.client-icon svg {
  width: 18px; height: 18px;
  stroke: var(--c-accent);
  fill: none;
  stroke-width: 1.5;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.client-title {
  font-family: var(--font-h);
  font-size: 1.15rem;
  font-weight: 700;
  letter-spacing: -0.01em;
  color: var(--c-accent);
  margin-bottom: 0.5rem;
}
.client-text {
  font-size: 1rem;
  font-weight: 300;
  line-height: 1.75;
  color: var(--c-white);
  text-align: left;
}

/* ===================== CONTACT — Dark ===================== */
.contact {
  background: var(--c-dark);
  padding: 8rem var(--pad);
  border-top: 1px solid var(--c-dark-border);
  position: relative;
  overflow: hidden;
}
.contact::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
  opacity: 0.022;
  pointer-events: none;
}

.contact-inner {
  max-width: var(--max);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 5fr 7fr;
  gap: 6rem;
  position: relative;
  z-index: 1;
}

.contact-form-wrap.reveal { transition-delay: 0.18s; }

.contact-tag { color: var(--c-dim); }

.contact-heading {
  font-family: var(--font-h);
  font-size: clamp(2rem, 4.5vw, 3.5rem);
  font-weight: 700;
  letter-spacing: -0.03em;
  color: var(--c-white);
  line-height: 1.06;
  margin-bottom: 2.5rem;
}

.contact-details {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  margin-bottom: 2rem;
}
.contact-detail {
  display: flex;
  align-items: flex-start;
  gap: 0.875rem;
}
.contact-detail-icon {
  flex-shrink: 0;
  width: 32px; height: 32px;
  border-radius: 50%;
  background: rgba(238,209,141,0.1);
  display: flex;
  align-items: center;
  justify-content: center;
}
.contact-detail-icon svg {
  width: 14px; height: 14px;
  stroke: var(--c-accent);
  fill: none;
  stroke-width: 1.5;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.contact-detail-text {
  font-size: 0.875rem;
  font-weight: 400;
  color: rgba(255,255,255,0.7);
  line-height: 1.5;
}
.contact-detail-text strong {
  display: block;
  font-family: var(--font-h);
  font-size: 0.62rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--c-dim);
  margin-bottom: 0.18rem;
}
.contact-detail-text a { color: rgba(255,255,255,0.7); transition: color 0.2s ease; }
.contact-detail-text a:hover { color: var(--c-accent); }

.contact-availability {
  padding: 1rem 1.25rem;
  background: rgba(238,209,141,0.07);
  border-left: 2px solid rgba(238,209,141,0.45);
}
.contact-availability p {
  font-size: 0.83rem;
  font-weight: 300;
  line-height: 1.65;
  color: var(--c-dim);
}

/* Form */
.contact-form {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 3px;
  padding: 2.25rem;
}
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.form-group { margin-bottom: 1.1rem; }
.form-label {
  display: block;
  font-family: var(--font-h);
  font-size: 0.62rem;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--c-dim);
  margin-bottom: 0.45rem;
}
.form-input, .form-select, .form-textarea {
  width: 100%;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 2px;
  padding: 0.8rem 0.9rem;
  font-family: var(--font-b);
  font-size: 0.875rem;
  font-weight: 300;
  color: var(--c-white);
  outline: none;
  -webkit-appearance: none;
  transition: border-color 0.25s ease, background 0.25s ease, box-shadow 0.25s ease;
}
.form-input::placeholder, .form-textarea::placeholder { color: rgba(255,255,255,0.2); }
.form-input:focus, .form-select:focus, .form-textarea:focus {
  border-color: rgba(238,209,141,0.55);
  background: rgba(255,255,255,0.08);
  box-shadow: 0 0 0 3px rgba(238,209,141,0.09);
}
.form-select { cursor: pointer; color: rgba(255,255,255,0.55); }
.form-select option { background: #2c2053; color: var(--c-white); }
.form-textarea { resize: vertical; min-height: 105px; }
.form-input.error, .form-select.error, .form-textarea.error {
  border-color: rgba(255,100,100,0.55);
}
.form-error {
  display: none;
  font-size: 0.7rem;
  color: rgba(255,130,130,0.9);
  margin-top: 0.3rem;
}
.form-error.show { display: block; }

.form-submit-error {
  display: none;
  font-size: 0.8rem;
  color: rgba(255,130,130,0.9);
  text-align: center;
  margin-top: 1rem;
  line-height: 1.6;
}
.form-submit-error a { color: var(--c-accent); }
.form-submit-error.show { display: block; }

.form-botcheck { display: none; }

.btn-submit {
  width: 100%;
  justify-content: center;
  margin-top: 0.5rem;
  font-size: 0.85rem;
  padding: 1rem;
}

.form-success { display: none; text-align: center; padding: 3rem 2rem; }
.form-success.show { display: block; }
.form-success h3 {
  font-family: var(--font-h);
  font-size: 1.25rem;
  font-weight: 700;
  letter-spacing: -0.02em;
  color: var(--c-accent);
  margin-bottom: 0.875rem;
}
.form-success p {
  font-size: 0.875rem;
  font-weight: 300;
  color: var(--c-dim);
  line-height: 1.7;
}

/* ===================== FOOTER — Dark multi-col ===================== */
.footer {
  background: var(--c-dark);
  border-top: 1px solid var(--c-dark-border);
  padding: 5rem var(--pad) 2.5rem;
}
.footer-main {
  max-width: var(--max);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  padding-bottom: 4rem;
  border-bottom: 1px solid var(--c-dark-border);
  margin-bottom: 2rem;
}
.footer-brand-logo {
  height: 36px;
  width: auto;
  margin-bottom: 1.5rem;
}
.footer-address {
  font-size: 0.82rem;
  font-weight: 300;
  line-height: 1.8;
  color: var(--c-dim);
}
.footer-address a { color: var(--c-dim); transition: color 0.2s ease; }
.footer-address a:hover { color: var(--c-accent); }

.footer-col-title {
  font-family: var(--font-h);
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.35);
  margin-bottom: 1.25rem;
}

.footer-cta-link {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  font-family: var(--font-h);
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--c-white);
  margin-bottom: 1rem;
  border-bottom: 1px solid rgba(255,255,255,0.2);
  padding-bottom: 1rem;
  transition: color 0.25s ease, border-color 0.25s ease;
}
.footer-cta-link:hover { color: var(--c-accent); border-color: var(--c-accent); }
.footer-cta-link svg {
  width: 14px; height: 14px;
  stroke: currentColor;
  fill: none;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.footer-nav-links { display: flex; flex-direction: column; gap: 0.75rem; }
.footer-nav-links a {
  font-size: 0.85rem;
  font-weight: 300;
  color: var(--c-dim);
  transition: color 0.2s ease;
}
.footer-nav-links a:hover { color: var(--c-accent); }

.footer-slogan {
  font-family: var(--font-h);
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: -0.01em;
  color: var(--c-accent);
  margin-bottom: 0.75rem;
}
.footer-tagline {
  font-size: 0.78rem;
  font-weight: 300;
  color: var(--c-dim);
  line-height: 1.5;
}

.footer-bottom {
  max-width: var(--max);
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 0.75rem;
}
.footer-copy {
  font-size: 0.75rem;
  font-weight: 300;
  color: rgba(255,255,255,0.25);
}

/* ===================== SCROLL REVEAL ===================== */
.reveal {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity  0.72s var(--ease),
              transform 0.72s var(--ease);
}
.reveal.visible { opacity: 1; transform: translateY(0); }

/* ===================== KEYFRAMES ===================== */
@keyframes circleIn {
  to { opacity: 1; transform: scale(1); }
}
@keyframes fadeUp {
  to { opacity: 1; transform: translateY(0); }
}
@keyframes scrollPulse {
  0%, 100% { transform: scaleY(1);   opacity: 1;   }
  50%       { transform: scaleY(0.5); opacity: 0.3; }
}

/* ===================== RESPONSIVE ===================== */
@media (max-width: 1024px) {
  .about-inner      { grid-template-columns: 1fr; gap: 3rem; }
  .about-left       { position: static; }
  .contact-inner    { grid-template-columns: 1fr; gap: 3.5rem; }
  .footer-main      { grid-template-columns: 1fr 1fr; gap: 2.5rem; }
}

@media (max-width: 768px) {
  :root { --pad: 1.5rem; }

  .nav-links  { display: none; }
  .nav-hamburger { display: flex; }

  .hero { padding: 7rem var(--pad) 5rem; }

  .why-header { flex-direction: column; gap: 1.5rem; }
  .why-item   { grid-template-columns: 1fr; }
  .why-item-icon { display: none; }

  .stats-inner     { grid-template-columns: 1fr; }
  .stats-item:not(:last-child)::after { display: none; }
  .stats-item:not(:last-child) {
    border-bottom: 1px solid var(--c-dark-border);
    padding-bottom: 1.5rem;
    margin-bottom: 1.5rem;
  }

  .services-header  { flex-direction: column; gap: 1.5rem; }
  .services-grid    { grid-template-columns: 1fr; }

  .clients-header   { flex-direction: column; gap: 1.5rem; align-items: flex-start; }
  .client-card      { flex-basis: 100%; max-width: 100%; }

  .contact-form     { padding: 1.5rem; }
  .form-row         { grid-template-columns: 1fr; }

  .footer-main      { grid-template-columns: 1fr; gap: 2.5rem; }
  .footer-bottom    { flex-direction: column; text-align: center; }
}

@media (max-width: 480px) {
  .hero-circle {
    border-radius: 28px;
    aspect-ratio: auto;
    padding: 6.25rem 1.75rem 2rem;
    width: min(440px, 90vw);
    background: none;
  }
  .hero-circle::before {
    background: none;
  }
  .hero-ctas-v2 {
    flex-direction: column;
    align-items: center;
    margin-top: 2.5rem;
  }
  .hero-ctas-v2 .btn { width: 100%; justify-content: center; }
}
