/* ============================================================
   FIDUCIVE TECH — Website Stylesheet
   Brand Colors: Navy #12294A | Orange #E84821 | White #FFFFFF
   ============================================================ */

/* ---------- Custom Cursor ---------- */
body { cursor: none; }
a, button, [role="button"], input, textarea, select, label { cursor: none; }

.cursor-dot {
  position: fixed;
  top: 0; left: 0;
  width: 8px; height: 8px;
  background: #E84821;
  border-radius: 50%;
  pointer-events: none;
  z-index: 99999;
  transform: translate(-50%, -50%);
  transition: width 0.2s, height 0.2s, background 0.2s, opacity 0.2s;
  will-change: transform;
}
.cursor-ring {
  position: fixed;
  top: 0; left: 0;
  width: 36px; height: 36px;
  border: 2px solid rgba(232, 72, 33, 0.6);
  border-radius: 50%;
  pointer-events: none;
  z-index: 99998;
  transform: translate(-50%, -50%);
  transition: width 0.3s ease, height 0.3s ease, border-color 0.3s, opacity 0.3s;
  will-change: transform;
}
.cursor-trail {
  position: fixed;
  top: 0; left: 0;
  width: 60px; height: 60px;
  border: 1px solid rgba(232, 72, 33, 0.2);
  border-radius: 50%;
  pointer-events: none;
  z-index: 99997;
  transform: translate(-50%, -50%);
  will-change: transform;
}

/* Hover states */
body.cursor--hover .cursor-dot  { width: 12px; height: 12px; background: #fff; }
body.cursor--hover .cursor-ring { width: 52px; height: 52px; border-color: #E84821; }
body.cursor--hover .cursor-trail{ width: 80px; height: 80px; border-color: rgba(232,72,33,0.15); }

/* Click state */
body.cursor--click .cursor-dot  { width: 6px; height: 6px; }
body.cursor--click .cursor-ring { width: 24px; height: 24px; border-color: #fff; }

/* Click ripple */
.cursor-ripple {
  position: fixed;
  width: 10px; height: 10px;
  border: 2px solid #E84821;
  border-radius: 50%;
  pointer-events: none;
  z-index: 99996;
  transform: translate(-50%, -50%) scale(1);
  animation: ripple-out 0.55s ease-out forwards;
}
@keyframes ripple-out {
  to { transform: translate(-50%, -50%) scale(7); opacity: 0; }
}

/* Hide custom cursor on touch devices */
@media (hover: none) {
  body { cursor: auto; }
  .cursor-dot, .cursor-ring, .cursor-trail { display: none; }
}

/* ---------- Preloader ---------- */
.preloader {
  position: fixed;
  inset: 0;
  z-index: 9999;
  background: #12294A;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: opacity 0.5s ease, visibility 0.5s ease;
}
.preloader.hidden {
  opacity: 0;
  visibility: hidden;
}
.preloader__inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 28px;
}
.preloader__logo {
  width: 90px;
  height: 90px;
  object-fit: contain;
  animation: preloader-pulse 1.2s ease-in-out infinite;
  filter: drop-shadow(0 0 18px rgba(232, 72, 33, 0.55));
}
@keyframes preloader-pulse {
  0%, 100% { transform: scale(1);   opacity: 1; }
  50%       { transform: scale(1.12); opacity: 0.75; }
}
.preloader__bar {
  width: 140px;
  height: 3px;
  background: rgba(255, 255, 255, 0.15);
  border-radius: 2px;
  overflow: hidden;
}
.preloader__fill {
  height: 100%;
  width: 0%;
  background: #E84821;
  border-radius: 2px;
  animation: preloader-bar 1.8s ease forwards;
}
@keyframes preloader-bar {
  0%   { width: 0%; }
  60%  { width: 75%; }
  100% { width: 100%; }
}

/* ---------- CSS Variables ---------- */
:root {
  --navy:       #12294A;
  --navy-dark:  #0b1e38;
  --navy-mid:   #1a3560;
  --orange:     #E84821;
  --orange-lt:  #f05a37;
  --white:      #ffffff;
  --off-white:  #f7f8fc;
  --light-gray: #eef0f5;
  --mid-gray:   #7a8799;
  --text:       #1e2a3a;
  --text-muted: #5a6a7e;

  --font:       'Inter', system-ui, -apple-system, sans-serif;
  --radius:     12px;
  --radius-sm:  8px;
  --radius-lg:  20px;
  --shadow:     0 4px 24px rgba(18, 41, 74, 0.12);
  --shadow-lg:  0 12px 48px rgba(18, 41, 74, 0.2);
  --transition: 0.25s ease;
}

/* ---------- Reset & Base ---------- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: var(--font);
  color: var(--text);
  background: var(--white);
  line-height: 1.65;
  overflow-x: hidden;
}
img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
input, select, textarea, button { font-family: inherit; }

/* ---------- Utility ---------- */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}
.text-accent { color: var(--orange); }
.section { padding: 96px 0; }
.section--dark  { background: var(--navy); }
.section--light { background: var(--off-white); }

.section-header { text-align: center; margin-bottom: 56px; }
.section-label {
  display: inline-block;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--orange);
  background: rgba(232, 72, 33, 0.1);
  padding: 4px 14px;
  border-radius: 50px;
  margin-bottom: 14px;
}
.section-label--light {
  color: var(--orange);
  background: rgba(232, 72, 33, 0.18);
}
.section-title {
  font-size: clamp(1.8rem, 3vw, 2.6rem);
  font-weight: 800;
  color: var(--navy);
  line-height: 1.2;
  margin-bottom: 16px;
}
.section-title--light { color: var(--white); }
.section-sub {
  max-width: 560px;
  margin: 0 auto;
  color: var(--text-muted);
  font-size: 1.05rem;
}
.section-sub--light { color: rgba(255,255,255,0.7); }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 28px;
  border-radius: var(--radius-sm);
  font-weight: 600;
  font-size: 0.95rem;
  cursor: pointer;
  transition: all var(--transition);
  border: 2px solid transparent;
  white-space: nowrap;
}
.btn--primary {
  background: var(--orange);
  color: var(--white);
  border-color: var(--orange);
}
.btn--primary:hover {
  background: var(--orange-lt);
  border-color: var(--orange-lt);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(232, 72, 33, 0.35);
}
.btn--outline {
  background: transparent;
  color: var(--white);
  border-color: rgba(255,255,255,0.5);
}
.btn--outline:hover {
  border-color: var(--white);
  background: rgba(255,255,255,0.1);
}
.btn--full { width: 100%; justify-content: center; }

/* ============================================================
   HEADER
   ============================================================ */
.header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  background: rgba(255,255,255,0.96);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--light-gray);
  transition: box-shadow var(--transition);
}
.header.scrolled { box-shadow: var(--shadow); }
.header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
}
.header__logo img { height: 44px; width: auto; }

.nav__list {
  display: flex;
  align-items: center;
  gap: 8px;
}
.nav__link {
  padding: 8px 16px;
  border-radius: var(--radius-sm);
  font-weight: 500;
  font-size: 0.92rem;
  color: var(--text);
  transition: color var(--transition), background var(--transition);
}
.nav__link:hover { color: var(--orange); background: rgba(232, 72, 33, 0.06); }
.nav__link--cta {
  background: var(--orange);
  color: var(--white) !important;
  font-weight: 600;
}
.nav__link--cta:hover {
  background: var(--orange-lt);
  transform: translateY(-1px);
}

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}
.hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--navy);
  border-radius: 2px;
  transition: all 0.3s;
}
.hamburger.active span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.active span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.hamburger.active span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ============================================================
   HERO
   ============================================================ */
.hero {
  min-height: 100vh;
  background: linear-gradient(135deg, var(--navy-dark) 0%, var(--navy) 50%, var(--navy-mid) 100%);
  display: flex;
  align-items: center;
  padding-top: 72px;
  position: relative;
  overflow: hidden;
}
.hero__bg-shapes { position: absolute; inset: 0; pointer-events: none; }
.shape {
  position: absolute;
  border-radius: 50%;
  opacity: 0.06;
  background: var(--orange);
}
.shape--1 { width: 600px; height: 600px; top: -200px; right: -200px; }
.shape--2 { width: 300px; height: 300px; bottom: 50px; left: -100px; }
.shape--3 { width: 150px; height: 150px; top: 40%; right: 20%; background: var(--white); }

.hero__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
  padding: 80px 24px;
}
.hero__badge {
  display: inline-block;
  background: rgba(232, 72, 33, 0.2);
  color: #ff8c6d;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 6px 16px;
  border-radius: 50px;
  border: 1px solid rgba(232, 72, 33, 0.3);
  margin-bottom: 24px;
}
.hero__title {
  font-size: clamp(2rem, 4vw, 3.4rem);
  font-weight: 800;
  color: var(--white);
  line-height: 1.15;
  margin-bottom: 20px;
}
.hero__sub {
  color: rgba(255,255,255,0.7);
  font-size: 1.1rem;
  max-width: 500px;
  margin-bottom: 36px;
}
.hero__actions { display: flex; gap: 16px; flex-wrap: wrap; }

/* Hero visual */
.hero__visual {
  position: relative;
  height: 440px;
}
.hero__card {
  position: absolute;
  background: rgba(255,255,255,0.1);
  backdrop-filter: blur(12px);
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: var(--radius);
  padding: 20px 24px;
  color: var(--white);
  display: flex;
  flex-direction: column;
  gap: 4px;
  min-width: 130px;
}
.hero__card strong { font-size: 1.5rem; font-weight: 800; }
.hero__card span { font-size: 0.82rem; opacity: 0.75; }
.hero__card-icon { font-size: 1.4rem; margin-bottom: 4px; }
.hero__card--1 { top: 20px; left: 10px; animation: float 4s ease-in-out infinite; }
.hero__card--2 { top: 20px; right: 10px; animation: float 4s ease-in-out infinite 1s; }
.hero__card--3 { bottom: 100px; left: 50%; transform: translateX(-50%); animation: float 4s ease-in-out infinite 2s; }

.hero__mockup {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 280px;
}
.mockup__screen {
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: var(--radius);
  padding: 20px;
  backdrop-filter: blur(8px);
}
.mockup__bar {
  height: 8px;
  background: var(--orange);
  border-radius: 4px;
  margin-bottom: 16px;
  width: 60%;
}
.mockup__line {
  height: 10px;
  background: rgba(255,255,255,0.2);
  border-radius: 4px;
  margin-bottom: 10px;
}
.mockup__line--wide { width: 90%; }
.mockup__line--short { width: 50%; }

/* Scroll indicator */
.hero__scroll {
  position: absolute;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  color: rgba(255,255,255,0.5);
  font-size: 0.75rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}
.scroll-arrow {
  width: 24px;
  height: 24px;
  border-right: 2px solid rgba(255,255,255,0.4);
  border-bottom: 2px solid rgba(255,255,255,0.4);
  transform: rotate(45deg);
  animation: bounce 2s infinite;
  margin-top: -8px;
}

@keyframes float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-10px); }
}
@keyframes bounce {
  0%, 100% { transform: rotate(45deg) translateY(0); }
  50% { transform: rotate(45deg) translateY(6px); }
}

/* ============================================================
   ABOUT
   ============================================================ */
.about__inner {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 72px;
  align-items: center;
}
.about__img-wrap { position: relative; }
.about__img-block--main {
  background: var(--off-white);
  border-radius: var(--radius-lg);
  padding: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: var(--shadow);
}
.about__logo-large { max-width: 280px; margin: 0 auto; }
.about__stat-pill {
  position: absolute;
  background: var(--white);
  border-radius: 50px;
  padding: 10px 20px;
  box-shadow: var(--shadow);
  font-size: 0.88rem;
  font-weight: 700;
  color: var(--navy);
  white-space: nowrap;
}
.about__stat-pill strong { color: var(--orange); margin-right: 4px; }
.about__stat-pill--1 { bottom: -16px; left: 20px; }
.about__stat-pill--2 { top: -16px; right: 10px; }

.about__text-col .section-label { margin-bottom: 10px; }
.about__text-col .section-title { text-align: left; margin-bottom: 16px; }
.about__lead {
  font-size: 1.05rem;
  color: var(--text);
  margin-bottom: 16px;
  line-height: 1.7;
}
.about__text-col p {
  color: var(--text-muted);
  margin-bottom: 28px;
}

.about__pillars { margin-bottom: 36px; display: flex; flex-direction: column; gap: 16px; }
.about__pillars li {
  display: flex;
  align-items: flex-start;
  gap: 14px;
}
.pillar-icon {
  flex-shrink: 0;
  width: 32px;
  height: 32px;
  background: rgba(232, 72, 33, 0.1);
  color: var(--orange);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.9rem;
  margin-top: 2px;
}
.about__pillars li div { display: flex; flex-direction: column; gap: 2px; }
.about__pillars li strong { font-size: 0.95rem; color: var(--navy); }
.about__pillars li span { font-size: 0.88rem; color: var(--text-muted); }

/* ============================================================
   SERVICES
   ============================================================ */
.services__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.service-card {
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--radius);
  padding: 36px 28px;
  color: var(--white);
  position: relative;
  transition: all var(--transition);
}
.service-card:hover {
  background: rgba(255,255,255,0.1);
  border-color: rgba(255,255,255,0.2);
  transform: translateY(-4px);
  box-shadow: 0 16px 48px rgba(0,0,0,0.3);
}
.service-card--featured {
  background: var(--orange);
  border-color: var(--orange);
  background: linear-gradient(135deg, var(--orange), var(--orange-lt));
}
.service-card--featured:hover {
  background: linear-gradient(135deg, var(--orange-lt), #f06a4a);
  border-color: var(--orange-lt);
}
.service-card__badge {
  position: absolute;
  top: -12px;
  left: 24px;
  background: var(--white);
  color: var(--orange);
  font-size: 0.72rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  padding: 4px 12px;
  border-radius: 50px;
}
.service-card__icon {
  width: 52px;
  height: 52px;
  background: rgba(255,255,255,0.1);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  margin-bottom: 20px;
}
.service-card__icon svg { width: 28px; height: 28px; }
.service-card__title {
  font-size: 1.05rem;
  font-weight: 700;
  margin-bottom: 12px;
  color: var(--white);
}
.service-card__desc {
  font-size: 0.88rem;
  line-height: 1.65;
  color: rgba(255,255,255,0.72);
  margin-bottom: 16px;
}
.service-card__tag {
  display: inline-block;
  font-size: 0.72rem;
  font-weight: 600;
  color: rgba(255,255,255,0.55);
  border: 1px solid rgba(255,255,255,0.2);
  padding: 4px 10px;
  border-radius: 50px;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}
.service-card--spotlight {
  border-color: var(--orange);
  box-shadow: 0 0 0 1px var(--orange), 0 8px 32px rgba(232,72,33,0.35);
  position: relative;
  overflow: visible;
}
.service-card--spotlight::before {
  content: '';
  position: absolute;
  inset: -3px;
  border-radius: calc(var(--radius) + 3px);
  border: 2px solid var(--orange);
  opacity: 0.4;
  animation: spotlight-ring 2s ease-in-out infinite;
  pointer-events: none;
}
@keyframes spotlight-ring {
  0%, 100% { opacity: 0.4; transform: scale(1); }
  50%       { opacity: 0.1; transform: scale(1.03); }
}
.service-card--spotlight:hover {
  box-shadow: 0 0 0 1px var(--orange), 0 16px 48px rgba(232,72,33,0.55);
}
.service-card--spotlight .service-card__title {
  color: var(--orange);
}

.service-card--cta {
  display: flex;
  flex-direction: column;
  justify-content: center;
  text-align: center;
  border: 2px dashed rgba(255,255,255,0.2);
  gap: 12px;
}
.service-card--cta h3 { font-size: 1.1rem; font-weight: 700; color: var(--white); }
.service-card--cta p { font-size: 0.88rem; color: rgba(255,255,255,0.65); }

/* ============================================================
   PARTNERS
   ============================================================ */
.partners__grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
  gap: 16px;
  margin-bottom: 24px;
}
.partner-badge {
  background: var(--white);
  border: 1.5px solid var(--light-gray);
  border-radius: var(--radius-sm);
  padding: 16px 18px;
  display: flex;
  flex-direction: column;
  gap: 2px;
  font-weight: 700;
  font-size: 0.88rem;
  color: var(--navy);
  transition: all var(--transition);
}
.partner-badge:hover {
  border-color: var(--orange);
  box-shadow: 0 4px 16px rgba(232, 72, 33, 0.12);
  transform: translateY(-2px);
}
.partner-badge span {
  font-size: 0.72rem;
  font-weight: 500;
  color: var(--text-muted);
}
.partner-badge small {
  display: block;
  font-size: 0.65rem;
  font-weight: 600;
  color: var(--orange);
  letter-spacing: 0.04em;
  margin-top: 2px;
  text-transform: uppercase;
}
.partners__note {
  text-align: center;
  color: var(--text-muted);
  font-size: 0.88rem;
  padding: 16px;
  background: var(--light-gray);
  border-radius: var(--radius-sm);
}

/* ============================================================
   GLOBAL PRESENCE
   ============================================================ */
.presence__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}
.office-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 36px 28px;
  box-shadow: var(--shadow);
  border: 1.5px solid var(--light-gray);
  transition: all var(--transition);
}
.office-card:hover {
  border-color: var(--orange);
  box-shadow: 0 8px 32px rgba(232, 72, 33, 0.12);
  transform: translateY(-4px);
}
.office-card--hq {
  border-color: var(--orange);
  box-shadow: 0 4px 24px rgba(232, 72, 33, 0.1);
}
.office-card__flag { font-size: 2.4rem; margin-bottom: 16px; }
.office-card h3 { font-size: 1.1rem; font-weight: 700; color: var(--navy); margin-bottom: 12px; }
.office-card__addr {
  font-size: 0.9rem;
  color: var(--text-muted);
  line-height: 1.7;
  margin-bottom: 20px;
}
.office-card__contacts {
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.office-card__contacts a {
  font-size: 0.88rem;
  color: var(--orange);
  font-weight: 500;
  transition: color var(--transition);
}
.office-card__contacts a:hover { color: var(--navy); }

/* ============================================================
   CONTACT
   ============================================================ */
.contact__inner {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 56px;
  align-items: start;
}
.contact__form {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.form-group { display: flex; flex-direction: column; gap: 8px; }
.form-group label {
  font-size: 0.85rem;
  font-weight: 600;
  color: rgba(255,255,255,0.8);
  letter-spacing: 0.03em;
}
.form-group input,
.form-group select,
.form-group textarea {
  background: rgba(255,255,255,0.08);
  border: 1.5px solid rgba(255,255,255,0.15);
  border-radius: var(--radius-sm);
  padding: 12px 16px;
  color: var(--white);
  font-size: 0.92rem;
  transition: border-color var(--transition), background var(--transition);
  outline: none;
}
.form-group input::placeholder,
.form-group textarea::placeholder { color: rgba(255,255,255,0.35); }
.form-group select option { background: var(--navy); color: var(--white); }
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--orange);
  background: rgba(255,255,255,0.12);
}
.form-group textarea { resize: vertical; min-height: 120px; }

.contact__info {
  display: flex;
  flex-direction: column;
  gap: 20px;
  padding-top: 8px;
}
.contact-info-card {
  display: flex;
  gap: 16px;
  align-items: flex-start;
  background: rgba(255,255,255,0.07);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--radius-sm);
  padding: 20px;
}
.ci-icon { font-size: 1.4rem; flex-shrink: 0; margin-top: 2px; }
.contact-info-card div { display: flex; flex-direction: column; gap: 4px; }
.contact-info-card strong {
  font-size: 0.88rem;
  font-weight: 700;
  color: rgba(255,255,255,0.6);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 4px;
}
.contact-info-card a,
.contact-info-card span {
  font-size: 0.92rem;
  color: var(--white);
  transition: color var(--transition);
}
.contact-info-card a:hover { color: var(--orange); }

/* ============================================================
   FOOTER
   ============================================================ */
.footer {
  background: var(--navy-dark);
  color: rgba(255,255,255,0.65);
  padding-top: 64px;
}
.footer__inner {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 48px;
  padding-bottom: 48px;
}
.footer__logo { height: 40px; width: auto; margin-bottom: 16px; }
.footer__brand p { font-size: 0.88rem; line-height: 1.7; }

.footer__links h4,
.footer__contact h4 {
  font-size: 0.82rem;
  font-weight: 700;
  color: rgba(255,255,255,0.9);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 16px;
}
.footer__links ul { display: flex; flex-direction: column; gap: 10px; }
.footer__links a {
  font-size: 0.88rem;
  transition: color var(--transition);
}
.footer__links a:hover { color: var(--orange); }

.footer__contact p { font-size: 0.88rem; margin-bottom: 8px; }
.footer__contact a { transition: color var(--transition); }
.footer__contact a:hover { color: var(--orange); }

.footer__bottom {
  border-top: 1px solid rgba(255,255,255,0.08);
  padding: 20px 0;
  text-align: center;
  font-size: 0.82rem;
}

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

/* ---- Tablet landscape (≤1024px) ---- */
@media (max-width: 1024px) {
  .hero__inner          { grid-template-columns: 1fr; gap: 40px; }
  .hero__visual         { display: none; }
  .about__inner         { grid-template-columns: 1fr; gap: 40px; }
  .about__stat-pill--1,
  .about__stat-pill--2  { position: static; margin-top: 12px; display: inline-block; }
  .about__img-wrap      { display: flex; flex-wrap: wrap; gap: 12px; align-items: center; }
  .services__grid       { grid-template-columns: repeat(2, 1fr); }
  .presence__grid       { grid-template-columns: 1fr 1fr; }
  .contact__inner       { grid-template-columns: 1fr; gap: 40px; }
  .footer__inner        { grid-template-columns: 1fr 1fr; gap: 32px; }
  .partners__grid       { grid-template-columns: repeat(3, 1fr); }
}

/* ---- Tablet portrait (≤768px) ---- */
@media (max-width: 768px) {
  /* Base */
  .section              { padding: 64px 0; }
  .container            { padding: 0 20px; }
  .section-header       { margin-bottom: 40px; }
  .section-title        { font-size: clamp(1.6rem, 5vw, 2rem); }

  /* Header / Nav */
  .header__inner        { height: 64px; }
  .header__logo img     { height: 36px; }
  .nav {
    display: none;
    position: fixed;
    top: 64px;
    left: 0; right: 0;
    background: var(--white);
    border-bottom: 1px solid var(--light-gray);
    box-shadow: var(--shadow);
    padding: 12px 20px 20px;
    z-index: 999;
    max-height: calc(100vh - 64px);
    overflow-y: auto;
  }
  .nav.open             { display: block; }
  .nav__list            { flex-direction: column; align-items: stretch; gap: 4px; }
  .nav__link            { padding: 12px 16px; border-radius: var(--radius-sm); }
  .hamburger            { display: flex; }

  /* Hero */
  .hero                 { min-height: auto; padding-top: 64px; }
  .hero__inner          { padding: 56px 20px 48px; gap: 0; }
  .hero__badge          { font-size: 0.72rem; }
  .hero__sub            { font-size: 0.97rem; }
  .hero__actions        { flex-direction: column; align-items: flex-start; gap: 12px; }
  .hero__actions .btn   { width: 100%; justify-content: center; }
  .hero__scroll         { display: none; }

  /* About */
  .about__inner         { grid-template-columns: 1fr; gap: 36px; }
  .about__img-block--main { padding: 28px; }
  .about__logo-large    { max-width: 200px; }
  .about__stat-pill--1,
  .about__stat-pill--2  { position: static; margin: 8px 0 0; display: inline-block; }
  .about__img-wrap      { display: flex; flex-wrap: wrap; gap: 10px; }

  /* Services */
  .services__grid       { grid-template-columns: 1fr; gap: 20px; }
  .service-card         { padding: 28px 22px; }

  /* Partners */
  .partners__grid       { grid-template-columns: repeat(2, 1fr); gap: 12px; }

  /* Presence / Offices */
  .presence__grid       { grid-template-columns: 1fr; gap: 16px; }
  .office-card          { padding: 24px 20px; }

  /* Contact */
  .contact__inner       { grid-template-columns: 1fr; gap: 36px; }
  .form-row             { grid-template-columns: 1fr; }
  .contact__info        { display: flex; flex-direction: column; gap: 14px; }
  .contact-info-card    { padding: 16px 18px; }

  /* Footer */
  .footer__inner        { grid-template-columns: 1fr; gap: 32px; }
  .footer__brand        { max-width: 100%; }
}

/* ---- Mobile (≤480px) ---- */
@media (max-width: 480px) {
  .container            { padding: 0 16px; }
  .section              { padding: 52px 0; }

  /* Hero */
  .hero__inner          { padding: 48px 16px 40px; }
  .hero__title          { font-size: clamp(1.65rem, 7vw, 2rem); }
  .hero__sub            { font-size: 0.92rem; }
  .hero__badge          { font-size: 0.68rem; padding: 5px 12px; }

  /* Section headers */
  .section-title        { font-size: 1.55rem; }
  .section-sub          { font-size: 0.92rem; }

  /* Services */
  .service-card         { padding: 24px 18px; }
  .service-card__title  { font-size: 1rem; }

  /* Partners */
  .partners__grid       { grid-template-columns: repeat(2, 1fr); gap: 10px; }
  .partner-badge        { padding: 12px 14px; font-size: 0.85rem; }

  /* Presence */
  .office-card          { padding: 20px 16px; }

  /* Contact form */
  .form-group input,
  .form-group select,
  .form-group textarea  { font-size: 0.95rem; padding: 11px 14px; }
  .btn                  { font-size: 0.9rem; padding: 13px 22px; }

  /* Footer */
  .footer__inner        { gap: 28px; }
  .footer__links h4     { font-size: 0.9rem; }
  .footer__bottom       { flex-direction: column; gap: 10px; text-align: center; }
}
