/* ============================================
   AAVATECH — Main Stylesheet
   ============================================ */

/* --- Font Face --- */
@font-face {
  font-family: 'Glacial Indifference';
  src: url('../assets/fonts/GlacialIndifference-Regular.woff2') format('woff2'),
       url('../assets/fonts/GlacialIndifference-Regular.woff') format('woff');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Glacial Indifference';
  src: url('../assets/fonts/GlacialIndifference-Bold.woff2') format('woff2'),
       url('../assets/fonts/GlacialIndifference-Bold.woff') format('woff');
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Glacial Indifference';
  src: url('../assets/fonts/GlacialIndifference-Italic.woff2') format('woff2'),
       url('../assets/fonts/GlacialIndifference-Italic.woff') format('woff');
  font-weight: 400;
  font-style: italic;
  font-display: swap;
}

/* --- CSS Variables --- */
:root {
  --primary: #043844;
  --primary-mid: #285A63;
  --primary-light: #82A9AF;
  --coral: #E5906A;
  --coral-dark: #c97550;
  --beige: #D3C7BE;
  --black: #111111;
  --bg-light: #F7F8FA;
  --bg-dark: #021C22;
  --text-primary: #111111;
  --text-secondary: #6B7280;
  --text-on-dark: #FFFFFF;
  --text-on-dark-muted: rgba(255,255,255,0.7);
  --white: #FFFFFF;
  --font-main: 'Glacial Indifference', 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  --radius: 12px;
  --radius-sm: 8px;
  --transition: 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  --transition-slow: 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

/* --- Reset --- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: var(--font-main);
  color: var(--text-primary);
  background: var(--white);
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
img, video { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
ul, ol { list-style: none; }
button { font-family: var(--font-main); cursor: pointer; border: none; }
input, textarea, select { font-family: var(--font-main); }

/* --- Typography --- */
h1 { font-size: clamp(2.2rem, 5vw, 3.5rem); font-weight: 700; line-height: 1.15; letter-spacing: 0.02em; }
h2 { font-size: clamp(1.6rem, 3.5vw, 2.25rem); font-weight: 700; line-height: 1.2; letter-spacing: 0.02em; }
h3 { font-size: clamp(1.2rem, 2.5vw, 1.5rem); font-weight: 700; line-height: 1.3; }
h4 { font-size: 1.125rem; font-weight: 700; line-height: 1.4; }
p { margin-bottom: 1rem; color: var(--text-secondary); }

/* --- Layout --- */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}
.section {
  padding: 100px 0;
}
.section--dark {
  background: var(--primary);
  color: var(--text-on-dark);
}
.section--light {
  background: var(--bg-light);
}
.section__header {
  text-align: center;
  max-width: 640px;
  margin: 0 auto 60px;
}
.section__header h2 { margin-bottom: 16px; }
.section__header p { font-size: 1.1rem; }

/* --- Buttons --- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 32px;
  border-radius: var(--radius);
  font-size: 1rem;
  font-weight: 700;
  transition: all var(--transition);
  position: relative;
  overflow: hidden;
}
.btn::after {
  content: '';
  position: absolute;
  top: 0; left: -100%;
  width: 100%; height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
  transition: left 0.5s;
}
.btn:hover::after { left: 100%; }
.btn:hover { transform: translateY(-2px) scale(1.02); }
.btn:active { transform: translateY(0) scale(0.98); }

.btn--primary {
  background: var(--coral);
  color: var(--white);
  box-shadow: 0 4px 20px rgba(229,144,106,0.3);
}
.btn--primary:hover {
  background: var(--coral-dark);
  box-shadow: 0 6px 30px rgba(229,144,106,0.45);
}
.btn--outline {
  background: transparent;
  color: var(--white);
  border: 1.5px solid rgba(255,255,255,0.4);
}
.btn--outline:hover {
  border-color: var(--white);
  background: rgba(255,255,255,0.08);
}
.btn--outline-dark {
  background: transparent;
  color: var(--primary);
  border: 1.5px solid var(--primary);
}
.btn--outline-dark:hover {
  background: var(--primary);
  color: var(--white);
}

/* --- Intro / Logo Loading --- */
.intro-screen {
  position: fixed;
  top: 0; left: 0;
  width: 100%; height: 100%;
  background: var(--primary);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  z-index: 10000;
  transition: transform 0.8s cubic-bezier(0.77, 0, 0.175, 1);
}
.intro-screen.hide {
  transform: translateY(-100%);
}
.intro-screen svg {
  width: 120px;
  height: 120px;
  opacity: 0;
  transform: scale(0.8);
  transition: all 0.8s ease-out;
}
.intro-screen svg.visible {
  opacity: 1;
  transform: scale(1);
}
.intro-screen .intro-text {
  color: var(--white);
  font-size: 2rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  opacity: 0;
  transform: translateY(10px);
  transition: all 0.6s ease-out 0.8s;
}
.intro-screen .intro-text.visible {
  opacity: 1;
  transform: translateY(0);
}
.intro-shimmer {
  position: absolute;
  top: 0; left: -100%;
  width: 100%; height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.15), transparent);
  animation: shimmerIntro 1s ease-out 1.2s forwards;
}
@keyframes shimmerIntro { to { left: 100%; } }

/* --- Header / Navigation --- */
.header {
  position: fixed;
  top: 0; left: 0;
  width: 100%;
  z-index: 1000;
  padding: 20px 0;
  transition: all var(--transition);
}
.header.scrolled {
  padding: 12px 0;
  background: rgba(4,56,68,0.92);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  box-shadow: 0 2px 30px rgba(0,0,0,0.15);
}
.header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.header__logo {
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--white);
  font-weight: 700;
  font-size: 1.25rem;
  letter-spacing: 0.08em;
}
.header__logo svg { width: 36px; height: 36px; }
.header__nav { display: flex; align-items: center; gap: 32px; }
.header__nav a {
  color: var(--text-on-dark-muted);
  font-size: 0.95rem;
  font-weight: 400;
  transition: color var(--transition);
  position: relative;
}
.header__nav a:hover,
.header__nav a.active { color: var(--white); }
.header__nav a::after {
  content: '';
  position: absolute;
  bottom: -4px; left: 0;
  width: 0; height: 2px;
  background: var(--coral);
  transition: width var(--transition);
}
.header__nav a:hover::after { width: 100%; }

/* Services dropdown */
.nav-dropdown { position: relative; }
.nav-dropdown-toggle { cursor: pointer; display: flex; align-items: center; gap: 4px; }
.nav-dropdown-toggle svg { width: 12px; height: 12px; transition: transform var(--transition); }
.nav-dropdown-menu {
  position: absolute;
  top: calc(100% + 16px);
  left: 50%;
  transform: translateX(-50%) translateY(8px);
  min-width: 520px;
  background: var(--white);
  border-radius: var(--radius);
  box-shadow: 0 20px 60px rgba(0,0,0,0.15);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: all var(--transition);
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4px;
  padding: 12px;
}
.nav-dropdown:hover .nav-dropdown-menu,
.nav-dropdown.open .nav-dropdown-menu {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: translateX(-50%) translateY(0);
}
.nav-dropdown:hover .nav-dropdown-toggle svg,
.nav-dropdown.open .nav-dropdown-toggle svg { transform: rotate(180deg); }
.nav-dropdown-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 14px;
  border-radius: var(--radius-sm);
  transition: background var(--transition);
}
.nav-dropdown-item:hover { background: var(--bg-light); }
.nav-dropdown-icon {
  width: 40px; height: 40px;
  border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.nav-dropdown-item h4 {
  font-size: 0.9rem;
  color: var(--text-primary);
  margin-bottom: 2px;
}
.nav-dropdown-item p {
  font-size: 0.78rem;
  color: var(--text-secondary);
  margin: 0;
  line-height: 1.4;
}

.header__actions { display: flex; align-items: center; gap: 16px; }
.header__lang,
.lang-toggle {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  font-size: 0.85rem;
}
.lang-toggle span {
  color: var(--text-on-dark-muted);
  cursor: pointer;
  padding: 3px 8px;
  border-radius: 4px;
  transition: all var(--transition);
  font-weight: 400;
}
.lang-toggle span:hover { color: var(--white); }
.lang-toggle span.active {
  color: var(--white);
  background: rgba(255,255,255,0.15);
  font-weight: 700;
}
.lang-toggle .lang-sep {
  color: var(--text-on-dark-muted);
  cursor: default;
  padding: 0;
  background: none;
}
/* Mobile nav lang toggle */
.mobile-nav .lang-toggle span {
  color: var(--text-on-dark-muted);
}
.mobile-nav .lang-toggle span.active {
  color: var(--coral);
  background: rgba(229,144,106,0.1);
}
.header__cta {
  padding: 10px 22px;
  font-size: 0.9rem;
}

/* Mobile nav */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  z-index: 1001;
  background: none;
  padding: 4px;
}
.hamburger span {
  width: 24px; height: 2px;
  background: var(--white);
  transition: all var(--transition);
  border-radius: 2px;
}
.hamburger.active span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.hamburger.active span:nth-child(2) { opacity: 0; }
.hamburger.active span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

.mobile-nav {
  display: none;
  position: fixed;
  top: 0; right: -100%;
  width: 300px; height: 100vh;
  background: var(--primary);
  padding: 100px 40px 40px;
  transition: right var(--transition-slow);
  z-index: 999;
  flex-direction: column;
  gap: 24px;
}
.mobile-nav.open { right: 0; }
.mobile-nav a {
  color: var(--text-on-dark-muted);
  font-size: 1.15rem;
  transition: color var(--transition);
}
.mobile-nav a:hover { color: var(--coral); }
.mobile-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.5);
  z-index: 998;
  opacity: 0;
  transition: opacity var(--transition);
}
.mobile-overlay.show { opacity: 1; }

/* --- Hero --- */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--primary);
  overflow: hidden;
}
.hero__canvas {
  position: absolute;
  inset: 0;
  z-index: 1;
}
.hero__video {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.hero__video video {
  width: 100%; height: 100%;
  object-fit: cover;
}
.hero__video::after {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(4,56,68,0.75);
}
.hero__content {
  position: relative;
  z-index: 2;
  text-align: center;
  max-width: 800px;
  padding: 0 24px;
}
.hero__title {
  color: var(--white);
  margin-bottom: 20px;
  font-size: clamp(2.4rem, 6vw, 3.8rem);
}
.hero__subtitle {
  color: var(--text-on-dark-muted);
  font-size: clamp(1rem, 2vw, 1.2rem);
  margin-bottom: 40px;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.7;
}
.hero__btns { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }
.hero__scroll {
  position: absolute;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  animation: scrollBounce 2s infinite;
}
.hero__scroll svg { width: 28px; height: 28px; stroke: rgba(255,255,255,0.5); }
@keyframes scrollBounce {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50% { transform: translateX(-50%) translateY(8px); }
}

/* --- Trust Bar --- */
.trust-bar {
  padding: 32px 0;
  background: var(--white);
  border-bottom: 1px solid rgba(0,0,0,0.06);
  overflow: hidden;
}
.trust-bar__label {
  text-align: center;
  font-size: 0.8rem;
  color: var(--text-secondary);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 20px;
}
.trust-bar__track {
  display: flex;
  align-items: center;
  gap: 48px;
  animation: marquee 20s linear infinite;
  width: max-content;
}
.trust-bar__item {
  font-size: 1rem;
  font-weight: 700;
  color: var(--primary-light);
  white-space: nowrap;
  padding: 8px 20px;
  border: 1px solid rgba(130,169,175,0.3);
  border-radius: var(--radius-sm);
  letter-spacing: 0.05em;
}
@keyframes marquee {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* --- Service Cards --- */
.services-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}
.service-card {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  background: var(--white);
  border: 1px solid rgba(0,0,0,0.06);
  padding: 32px;
  transition: all var(--transition);
  display: flex;
  flex-direction: column;
}
.service-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 48px rgba(0,0,0,0.08);
  border-color: transparent;
}
.service-card__video {
  position: absolute;
  inset: 0;
  z-index: 0;
  opacity: 0.25;
  transition: opacity var(--transition-slow);
}
.service-card:hover .service-card__video { opacity: 0.35; }
.service-card__video video {
  width: 100%; height: 100%;
  object-fit: cover;
}
.service-card__video::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(255,255,255,0.6) 0%, rgba(255,255,255,0.85) 100%);
}
.service-card__icon {
  width: 56px; height: 56px;
  border-radius: 14px;
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 20px;
  position: relative;
  z-index: 1;
}
.service-card__icon svg { width: 28px; height: 28px; }
.service-card h3 {
  margin-bottom: 12px;
  position: relative; z-index: 1;
}
.service-card p {
  font-size: 0.95rem;
  line-height: 1.6;
  margin-bottom: 16px;
  position: relative; z-index: 1;
  flex: 1;
}
.service-card__tags {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-bottom: 20px;
  position: relative; z-index: 1;
}
.service-card__tag {
  font-size: 0.78rem;
  padding: 4px 12px;
  border-radius: 20px;
  border: 1px solid rgba(0,0,0,0.1);
  color: var(--text-secondary);
}
.service-card__link {
  font-weight: 700;
  font-size: 0.95rem;
  color: var(--coral);
  display: inline-flex;
  align-items: center;
  gap: 6px;
  position: relative; z-index: 1;
  transition: gap var(--transition);
}
.service-card:hover .service-card__link { gap: 10px; }

/* --- Metrics --- */
.metrics {
  position: relative;
  overflow: hidden;
}
.metrics__bg-pattern {
  position: absolute;
  inset: 0;
  opacity: 0.03;
  background-image: 
    linear-gradient(rgba(130,169,175,0.3) 1px, transparent 1px),
    linear-gradient(90deg, rgba(130,169,175,0.3) 1px, transparent 1px);
  background-size: 60px 60px;
}
.metrics-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
  position: relative;
  z-index: 1;
  text-align: center;
}
.metric__number {
  font-size: clamp(2.5rem, 5vw, 3.5rem);
  font-weight: 700;
  color: var(--white);
  line-height: 1;
  margin-bottom: 8px;
  text-shadow: 0 0 40px rgba(229,144,106,0.3);
}
.metric__label {
  font-size: 0.95rem;
  color: var(--text-on-dark-muted);
}

/* --- CTA Band --- */
.cta-band {
  position: relative;
  padding: 80px 0;
  background: linear-gradient(135deg, var(--primary) 0%, var(--bg-dark) 100%);
  text-align: center;
  overflow: hidden;
}
.cta-band__bg {
  position: absolute;
  inset: 0;
  opacity: 0.04;
  background-image:
    radial-gradient(circle at 20% 50%, var(--coral) 0%, transparent 50%),
    radial-gradient(circle at 80% 50%, var(--primary-light) 0%, transparent 50%);
}
.cta-band h2 {
  color: var(--white);
  margin-bottom: 12px;
  position: relative; z-index: 1;
}
.cta-band p {
  color: var(--text-on-dark-muted);
  font-size: 1.1rem;
  margin-bottom: 32px;
  position: relative; z-index: 1;
}
.cta-band .btn { position: relative; z-index: 1; }

/* --- Footer --- */
.footer {
  background: var(--bg-dark);
  color: var(--text-on-dark-muted);
  padding: 64px 0 32px;
}
.footer__grid {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr 1fr;
  gap: 40px;
  margin-bottom: 48px;
}
.footer__brand p {
  color: var(--text-on-dark-muted);
  font-size: 0.9rem;
  margin-bottom: 20px;
  line-height: 1.6;
}
.footer__social {
  display: flex;
  gap: 12px;
}
.footer__social a {
  width: 36px; height: 36px;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,0.15);
  display: flex; align-items: center; justify-content: center;
  transition: all var(--transition);
}
.footer__social a:hover {
  background: var(--coral);
  border-color: var(--coral);
  color: var(--white);
}
.footer__social a svg { width: 16px; height: 16px; }
.footer__col h4 {
  color: var(--white);
  font-size: 0.9rem;
  margin-bottom: 20px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}
.footer__col a {
  display: block;
  font-size: 0.9rem;
  margin-bottom: 12px;
  transition: color var(--transition);
}
.footer__col a:hover { color: var(--coral); }
.footer__bottom {
  border-top: 1px solid rgba(255,255,255,0.08);
  padding-top: 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.8rem;
}

/* --- Scroll Reveal --- */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity var(--transition-slow), transform var(--transition-slow);
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}
.reveal-delay-1 { transition-delay: 0.15s; }
.reveal-delay-2 { transition-delay: 0.3s; }
.reveal-delay-3 { transition-delay: 0.45s; }
.reveal-delay-4 { transition-delay: 0.6s; }

/* --- Custom Cursor (desktop only) --- */
.cursor {
  width: 40px; height: 40px;
  border-radius: 50%;
  background: rgba(229,144,106,0.12);
  position: fixed;
  pointer-events: none;
  z-index: 9999;
  transition: width 0.3s, height 0.3s, background 0.3s;
  transform: translate(-50%, -50%);
  display: none;
}
.cursor.active {
  width: 56px; height: 56px;
  background: rgba(229,144,106,0.2);
}
@media (pointer: fine) {
  .cursor { display: block; }
}

/* --- Page Hero (subpages) --- */
.page-hero {
  position: relative;
  min-height: 40vh;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--primary);
  text-align: center;
  padding: 120px 24px 60px;
  overflow: hidden;
}
.page-hero h1 { color: var(--white); margin-bottom: 16px; }
.page-hero p { color: var(--text-on-dark-muted); font-size: 1.15rem; max-width: 560px; margin: 0 auto; }
.page-hero__pattern {
  position: absolute;
  inset: 0;
  opacity: 0.04;
  background-image:
    linear-gradient(rgba(130,169,175,0.3) 1px, transparent 1px),
    linear-gradient(90deg, rgba(130,169,175,0.3) 1px, transparent 1px);
  background-size: 50px 50px;
}

/* --- Service Detail Page --- */
.svc-blocks { display: grid; grid-template-columns: repeat(2, 1fr); gap: 24px; }
.svc-block {
  padding: 32px;
  border-radius: var(--radius);
  border: 1px solid rgba(0,0,0,0.06);
  transition: all var(--transition);
}
.svc-block:hover { box-shadow: 0 8px 32px rgba(0,0,0,0.06); transform: translateY(-2px); }
.svc-block__icon {
  width: 48px; height: 48px;
  border-radius: 12px;
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 16px;
}
.svc-block h4 { margin-bottom: 8px; }
.svc-block p { font-size: 0.92rem; margin: 0; }

/* Steps / Process */
.steps { display: flex; gap: 0; align-items: stretch; margin: 48px 0; }
.step {
  flex: 1;
  text-align: center;
  padding: 32px 24px;
  position: relative;
}
.step::after {
  content: '';
  position: absolute;
  top: 40px; right: -24px;
  width: 48px; height: 2px;
  background: var(--coral);
}
.step:last-child::after { display: none; }
.step__number {
  width: 48px; height: 48px;
  border-radius: 50%;
  background: var(--coral);
  color: var(--white);
  font-weight: 700;
  font-size: 1.2rem;
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 16px;
}
.step h4 { margin-bottom: 8px; }
.step p { font-size: 0.88rem; margin: 0; }

/* FAQ Accordion */
.faq { max-width: 720px; margin: 0 auto; }
.faq-item {
  border-bottom: 1px solid rgba(0,0,0,0.08);
}
.faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 0;
  cursor: pointer;
  font-weight: 700;
  font-size: 1.05rem;
  transition: color var(--transition);
}
.faq-question:hover { color: var(--coral); }
.faq-question svg {
  width: 20px; height: 20px;
  transition: transform var(--transition);
  flex-shrink: 0;
}
.faq-item.open .faq-question svg { transform: rotate(45deg); }
.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease, padding 0.4s ease;
  padding: 0;
}
.faq-item.open .faq-answer {
  max-height: 300px;
  padding-bottom: 20px;
}
.faq-answer p { margin: 0; font-size: 0.95rem; }

/* --- Contact Page --- */
.contact-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 48px;
  align-items: start;
}
.form-group { margin-bottom: 20px; }
.form-group label {
  display: block;
  font-size: 0.9rem;
  font-weight: 700;
  margin-bottom: 6px;
  color: var(--text-primary);
}
.form-group input,
.form-group textarea,
.form-group select {
  width: 100%;
  padding: 12px 16px;
  border: 1px solid rgba(0,0,0,0.12);
  border-radius: var(--radius-sm);
  font-size: 1rem;
  transition: border-color var(--transition);
  background: var(--white);
}
.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
  outline: none;
  border-color: var(--coral);
  box-shadow: 0 0 0 3px rgba(229,144,106,0.12);
}
.form-group textarea { min-height: 120px; resize: vertical; }

.contact-info {
  padding: 32px;
  background: var(--bg-light);
  border-radius: var(--radius);
}
.contact-whatsapp {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 16px 24px;
  background: #25D366;
  color: var(--white);
  border-radius: var(--radius-sm);
  font-weight: 700;
  margin-bottom: 24px;
  transition: all var(--transition);
}
.contact-whatsapp:hover { background: #1fba59; transform: translateY(-2px); }
.contact-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin-bottom: 16px;
  font-size: 0.95rem;
}
.contact-item svg { width: 20px; height: 20px; flex-shrink: 0; margin-top: 2px; color: var(--coral); }

/* --- About Page --- */
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
}
.about-text h3 { margin-bottom: 16px; }
.about-text p { font-size: 1rem; }

.map-section { text-align: center; }

.team-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}
.team-card { text-align: center; }
.team-card__avatar {
  width: 100px; height: 100px;
  border-radius: 50%;
  background: var(--beige);
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 12px;
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--primary);
}
.team-card h4 { font-size: 1rem; margin-bottom: 4px; }
.team-card p { font-size: 0.85rem; margin: 0; }

/* ============================================
   RESPONSIVE
   ============================================ */
@media (max-width: 1024px) {
  .services-grid { grid-template-columns: 1fr 1fr; }
  .footer__grid { grid-template-columns: 1fr 1fr; gap: 32px; }
  .svc-blocks { grid-template-columns: 1fr; }
}

@media (max-width: 768px) {
  .header__nav,
  .header__actions .header__cta,
  .header__lang { display: none; }
  .hamburger { display: flex; }
  .mobile-nav { display: flex; }
  
  .hero { min-height: 90vh; }
  .hero__title { font-size: clamp(1.8rem, 8vw, 2.8rem); }
  .hero__btns { flex-direction: column; align-items: center; }
  
  .services-grid { grid-template-columns: 1fr; }
  .metrics-grid { grid-template-columns: repeat(2, 1fr); gap: 24px; }
  
  .footer__grid { grid-template-columns: 1fr; gap: 32px; }
  .footer__bottom { flex-direction: column; gap: 8px; text-align: center; }
  
  .contact-grid { grid-template-columns: 1fr; }
  .about-grid { grid-template-columns: 1fr; }
  .team-grid { grid-template-columns: repeat(2, 1fr); }
  .steps { flex-direction: column; }
  .step::after { display: none; }
  
  .nav-dropdown-menu { display: none !important; }
  
  .cursor { display: none !important; }
  
  .section { padding: 64px 0; }
}

@media (max-width: 480px) {
  .container { padding: 0 16px; }
  .metrics-grid { grid-template-columns: 1fr 1fr; }
  .team-grid { grid-template-columns: 1fr 1fr; }
  .btn { padding: 12px 24px; font-size: 0.9rem; }
}

/* --- Reduced Motion --- */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
  .reveal { opacity: 1; transform: none; }
  .trust-bar__track { animation: none; }
}
