/* ══════════════════════════════════════════════════════════════
   Baltic Service — adbsnow.com
   Network & Security Systems Integrator
   ══════════════════════════════════════════════════════════════ */

/* ── Reset & Variables ─────────────────────────────────────── */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }

:root {
  --gold: #fecc32;
  --gold-light: #fff8e1;
  --gold-dark: #d4a80e;
  --dark: #111;
  --dark-90: rgba(17, 17, 17, 0.92);
  --gray-50: #f8f8f8;
  --gray-100: #f0f0f0;
  --gray-200: #e0e0e0;
  --gray-400: #999;
  --gray-600: #666;
  --gray-800: #333;
  --white: #fff;
  --radius: 12px;
  --radius-lg: 18px;
  --radius-sm: 8px;
  --shadow: 0 4px 24px rgba(0,0,0,0.08);
  --shadow-lg: 0 12px 48px rgba(0,0,0,0.12);
  --transition: 0.3s ease;
  --font-heading: 'Sora', sans-serif;
  --font-body: 'DM Sans', 'Segoe UI', sans-serif;
  --container: 1200px;
}

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.65;
  color: var(--gray-800);
  background: var(--white);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

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

.container {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 24px;
}

.gold { color: var(--gold); }
.light { color: var(--white); }

/* ── Typography ────────────────────────────────────────────── */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  font-weight: 600;
  line-height: 1.2;
  color: var(--dark);
}

.section-header { text-align: center; margin-bottom: 56px; }
.section-label {
  display: inline-block;
  font-family: var(--font-heading);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: #111;
  margin-bottom: 12px;
  padding: 6px 16px;
  border: 1px solid #111;
  border-radius: 100px;
}
.section-title {
  font-size: clamp(28px, 4vw, 42px);
  margin-bottom: 16px;
}
.section-title.light { color: var(--white); }
.section-sub {
  font-size: 17px;
  color: var(--gray-600);
  max-width: 640px;
  margin: 0 auto;
}
.section-sub.light { color: rgba(255,255,255,0.75); }

/* ── Buttons ───────────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-heading);
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.03em;
  padding: 11px 28px;
  border: 1.5px solid transparent;
  border-radius: 6px;
  cursor: pointer;
  transition: var(--transition);
  text-decoration: none;
  white-space: nowrap;
}
.btn-primary {
  background: var(--dark);
  color: var(--white);
  border-color: var(--dark);
}
.btn-primary:hover {
  background: var(--gray-800);
  border-color: var(--gray-800);
  transform: translateY(-1px);
  box-shadow: 0 6px 20px rgba(0,0,0,0.15);
}
.btn-gold {
  background: var(--gold);
  color: var(--dark);
  border-color: var(--gold);
}
.btn-gold:hover {
  background: var(--gold-dark);
  border-color: var(--gold-dark);
  transform: translateY(-1px);
  box-shadow: 0 6px 20px rgba(254,204,50,0.25);
}
.btn-outline {
  background: transparent;
  color: var(--white);
  border-color: rgba(255,255,255,0.35);
}
.btn-outline:hover {
  border-color: var(--white);
  background: rgba(255,255,255,0.08);
}
.btn-sm { padding: 8px 20px; font-size: 12px; }
.btn-lg { padding: 14px 34px; font-size: 14px; }
.btn-block { width: 100%; }

/* ── Header ────────────────────────────────────────────────── */
.header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  padding: 16px 0;
  transition: var(--transition);
  background: transparent;
}
.header.scrolled {
  background: rgba(17,17,17,0.95);
  backdrop-filter: blur(12px);
  padding: 10px 0;
  box-shadow: 0 2px 20px rgba(0,0,0,0.3);
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}
.logo-img { height: 36px; width: auto; }
.nav { display: flex; gap: 4px; }
.nav-link {
  font-family: var(--font-heading);
  font-size: 13px;
  font-weight: 500;
  color: rgba(255,255,255,0.8);
  padding: 8px 14px;
  border-radius: var(--radius-sm);
  transition: var(--transition);
}
.nav-link:hover { color: var(--gold); background: rgba(255,255,255,0.06); }
.nav-link--has-dropdown {
  display: inline-flex;
  align-items: center;
  gap: 4px;
}
.dropdown-chevron {
  transition: transform 0.2s ease;
  opacity: 0.6;
}

/* Dropdown Container */
.nav-dropdown {
  position: relative;
}
.dropdown-menu {
  position: absolute;
  top: calc(100% + 12px);
  left: 50%;
  transform: translateX(-50%);
  width: 320px;
  background: var(--white);
  border-radius: var(--radius);
  box-shadow: 0 20px 60px rgba(0,0,0,0.2), 0 0 0 1px rgba(0,0,0,0.05);
  padding: 8px;
  opacity: 0;
  visibility: hidden;
  transform: translateX(-50%) translateY(8px);
  transition: opacity 0.2s ease, transform 0.2s ease, visibility 0.2s ease;
  z-index: 1001;
}
.dropdown-menu::before {
  content: '';
  position: absolute;
  top: -8px;
  left: 50%;
  transform: translateX(-50%);
  width: 14px;
  height: 14px;
  background: var(--white);
  border-radius: 3px;
  transform: translateX(-50%) rotate(45deg);
  box-shadow: -1px -1px 0 rgba(0,0,0,0.05);
}
.nav-dropdown:hover .dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateX(-50%) translateY(0);
}
.nav-dropdown:hover .dropdown-chevron {
  transform: rotate(180deg);
  opacity: 1;
}

/* Dropdown Items */
.dropdown-item {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 12px 14px;
  border-radius: var(--radius-sm);
  transition: var(--transition);
  text-decoration: none;
  color: var(--dark);
}
.dropdown-item:hover {
  background: var(--gold-light);
}
.dropdown-item svg {
  width: 22px;
  height: 22px;
  flex-shrink: 0;
  color: var(--gold-dark);
}
.dropdown-item div {
  display: flex;
  flex-direction: column;
}
.dropdown-item strong {
  font-family: var(--font-heading);
  font-size: 13px;
  font-weight: 600;
  color: var(--dark);
  line-height: 1.3;
}
.dropdown-item span {
  font-size: 11px;
  color: var(--gray-400);
  line-height: 1.3;
}

.header-right { display: flex; align-items: center; gap: 16px; }
.header-phone {
  font-family: var(--font-heading);
  font-size: 14px;
  font-weight: 600;
  color: var(--white);
  transition: var(--transition);
}
.header-phone:hover { color: var(--gold); }
.header-login {
  font-family: var(--font-heading);
  font-size: 12px;
  font-weight: 400;
  color: rgba(255,255,255,0.5);
  border: 1px solid rgba(255,255,255,0.25);
  border-radius: 6px;
  padding: 6px 14px;
  transition: var(--transition);
  letter-spacing: 0.02em;
}
.header-login:hover { color: var(--white); border-color: rgba(255,255,255,0.5); }

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

/* ── Hero ──────────────────────────────────────────────────── */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 120px 0 40px;
}
.hero-bg {
  position: absolute;
  inset: 0;
  z-index: -1;
}
.hero-bg-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(0,0,0,0.82) 0%,
    rgba(0,0,0,0.6) 50%,
    rgba(0,0,0,0.45) 100%
  );
}
.hero-content {
  max-width: 720px;
  padding: 40px 0;
}
.hero-badge {
  display: inline-block;
  font-family: var(--font-heading);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--gold);
  background: rgba(254,204,50,0.1);
  border: 1px solid rgba(254,204,50,0.3);
  padding: 8px 20px;
  border-radius: 100px;
  margin-bottom: 24px;
}
.hero-h1 {
  font-size: clamp(36px, 5vw, 60px);
  font-weight: 700;
  color: var(--white);
  margin-bottom: 20px;
  line-height: 1.1;
}
.hero-sub {
  font-size: 18px;
  color: rgba(255,255,255,0.8);
  line-height: 1.7;
  margin-bottom: 32px;
  max-width: 600px;
}
.hero-cta { display: flex; gap: 16px; margin-bottom: 16px; flex-wrap: wrap; }
.hero-note {
  font-size: 13px;
  color: rgba(255,255,255,0.5);
}

/* Trust Bar */
.trust-bar {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--radius-lg);
  backdrop-filter: blur(16px);
  margin-top: 48px;
  overflow: hidden;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
}
.trust-item {
  text-align: center;
  padding: 36px 24px;
  background: rgba(255,255,255,0.03);
}
.trust-item:not(:last-child) {
  border-right: 1px solid rgba(255,255,255,0.08);
}
.trust-num {
  font-family: var(--font-heading);
  font-size: 36px;
  font-weight: 700;
  color: var(--gold);
  margin-bottom: 6px;
}
.trust-label {
  font-size: 13px;
  color: rgba(255,255,255,0.6);
  text-transform: uppercase;
  letter-spacing: 1px;
}

/* ── Services Grid ─────────────────────────────────────────── */
.services { padding: 100px 0; background: var(--white); }
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.service-card {
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: var(--white);
  border: 1px solid var(--gray-200);
  transition: var(--transition);
}
.service-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
  border-color: var(--gold);
}
.service-card-img {
  height: 200px;
  overflow: hidden;
}
.service-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}
.service-card:hover .service-card-img img {
  transform: scale(1.05);
}
.service-card-body { padding: 28px; }
.service-icon {
  width: 44px;
  height: 44px;
  background: var(--gold-light);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
}
.service-icon svg { width: 22px; height: 22px; color: var(--gold-dark); }
.service-card-body h3 {
  font-size: 18px;
  margin-bottom: 10px;
}
.service-card-body p {
  font-size: 14px;
  color: var(--gray-600);
  margin-bottom: 14px;
  line-height: 1.6;
}
.service-link {
  font-family: var(--font-heading);
  font-size: 13px;
  font-weight: 600;
  color: var(--gold-dark);
  transition: var(--transition);
}
.service-link:hover { color: var(--dark); }

/* ── Detail Sections ───────────────────────────────────────── */
.detail-section { padding: 80px 0; }
.detail-section--alt { background: var(--gray-50); }
.detail-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}
.detail-grid--reverse .detail-content { order: 2; }
.detail-grid--reverse .detail-images { order: 1; }
.detail-lead {
  font-size: 17px;
  color: var(--gray-600);
  margin-bottom: 24px;
  line-height: 1.7;
}
.feature-list {
  margin-bottom: 32px;
}
.feature-list li {
  position: relative;
  padding-left: 28px;
  margin-bottom: 12px;
  font-size: 15px;
  color: var(--gray-800);
}
.feature-list li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 7px;
  width: 16px;
  height: 16px;
  background: var(--gold);
  border-radius: 4px;
  mask: url("data:image/svg+xml,%3Csvg viewBox='0 0 24 24' fill='currentColor' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M9 12l2 2 4-4m6 2a9 9 0 11-18 0 9 9 0 0118 0z'/%3E%3C/svg%3E");
  -webkit-mask: url("data:image/svg+xml,%3Csvg viewBox='0 0 24 24' fill='currentColor' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M9 12l2 2 4-4m6 2a9 9 0 11-18 0 9 9 0 0118 0z'/%3E%3C/svg%3E");
  mask-size: contain;
  -webkit-mask-size: contain;
}
.detail-img-main {
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
}

/* ── Solutions Banner ──────────────────────────────────────── */
.solutions-banner {
  padding: 100px 0;
  background: var(--dark);
  position: relative;
}
.solutions-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}
.solution-item {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: var(--radius-lg);
  padding: 0;
  overflow: hidden;
  transition: var(--transition);
}
.solution-item:hover {
  border-color: var(--gold);
  transform: translateY(-4px);
  box-shadow: 0 12px 40px rgba(0,0,0,0.3);
}
.solution-item img {
  width: 100%;
  height: 180px;
  object-fit: cover;
}
.solution-item h4 {
  font-size: 16px;
  color: var(--white);
  padding: 20px 24px 8px;
}
.solution-item p {
  font-size: 14px;
  color: rgba(255,255,255,0.6);
  padding: 0 24px 16px;
  line-height: 1.6;
}
.solution-item .service-link {
  display: inline-block;
  font-size: 12px;
  font-weight: 500;
  color: var(--gold);
  padding: 0 24px 24px;
  letter-spacing: 0.03em;
}
.solution-item .service-link:hover {
  color: var(--white);
}

/* ── Why Section ───────────────────────────────────────────── */
.why-section { padding: 100px 0; background: var(--white); }
.why-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
}
.why-card {
  text-align: center;
  padding: 40px 24px;
  border-radius: var(--radius-lg);
  border: 1px solid var(--gray-200);
  transition: var(--transition);
}
.why-card:hover {
  border-color: var(--gold);
  box-shadow: var(--shadow);
  transform: translateY(-2px);
}
.why-icon {
  width: 56px;
  height: 56px;
  background: var(--gold-light);
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
}
.why-icon svg { width: 26px; height: 26px; color: var(--gold-dark); }
.why-card h4 {
  font-size: 16px;
  margin-bottom: 10px;
}
.why-card p {
  font-size: 14px;
  color: var(--gray-600);
  line-height: 1.6;
}

/* ── Industries ────────────────────────────────────────────── */
.industries { padding: 100px 0; background: var(--gray-50); }
.industry-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}
.industry-card {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  aspect-ratio: 3/4;
  cursor: pointer;
  display: block;
  text-decoration: none;
}
.industry-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}
.industry-card:hover img { transform: scale(1.08); }
.industry-card-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.8) 0%, transparent 60%);
  display: flex;
  align-items: flex-end;
  padding: 24px 20px;
}
.industry-card-overlay h4 {
  color: var(--white);
  font-size: 15px;
  font-weight: 600;
  line-height: 1.3;
}

/* ── Partners ──────────────────────────────────────────────── */
.partners { padding: 80px 0; background: var(--white); }
.partner-logos {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 56px;
  flex-wrap: wrap;
}
.partner-logo {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  opacity: 0.5;
  transition: var(--transition);
  filter: grayscale(100%);
}
.partner-logo:hover {
  opacity: 1;
  filter: grayscale(0%);
}
.partner-logo img {
  height: 48px;
  width: auto;
  object-fit: contain;
}
.partner-logo span {
  font-family: var(--font-heading);
  font-size: 12px;
  font-weight: 600;
  color: var(--gray-400);
  text-transform: uppercase;
  letter-spacing: 1px;
}

/* ── Reviews ───────────────────────────────────────────────── */
.reviews { padding: 100px 0; background: var(--gray-50); }
.review-stars-big {
  font-size: 32px;
  color: var(--gold);
  margin-bottom: 4px;
}
.reviews-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.review-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 32px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  border: 1px solid var(--gray-200);
  transition: var(--transition);
}
.review-card:hover {
  box-shadow: var(--shadow);
  border-color: var(--gold);
}
.review-stars {
  color: var(--gold);
  font-size: 18px;
  margin-bottom: 16px;
}
.review-text {
  font-size: 15px;
  color: var(--gray-600);
  line-height: 1.7;
  margin-bottom: 24px;
  flex-grow: 1;
}
.reviewer { display: flex; align-items: center; gap: 12px; }
.reviewer-avatar {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: var(--gold-light);
  color: var(--gold-dark);
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.reviewer-name {
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 14px;
  color: var(--dark);
}
.reviewer-role {
  font-size: 12px;
  color: var(--gray-400);
}

/* ── Experience Center ─────────────────────────────────────── */
.experience { padding: 100px 0; background: var(--white); }
.experience-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  align-items: center;
}
.experience-content p {
  color: var(--gray-600);
  margin-bottom: 16px;
  line-height: 1.7;
}
.experience-address {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 600;
  color: var(--dark);
  margin: 24px 0;
  padding: 16px 20px;
  background: var(--gold-light);
  border-radius: var(--radius-sm);
}
.experience-address svg { flex-shrink: 0; color: var(--gold-dark); }
.experience-video {
  position: relative;
  padding-top: 56.25%;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}
.experience-video iframe {
  position: absolute;
  top: 0; left: 0;
  width: 100%;
  height: 100%;
}

/* ── Contact Section ───────────────────────────────────────── */
.contact {
  padding: 100px 0;
  background: var(--dark);
  position: relative;
}
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: start;
}
.contact-info p.light {
  color: rgba(255,255,255,0.7);
  margin-bottom: 32px;
  line-height: 1.7;
}
.contact-details { margin-bottom: 32px; }
.contact-item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  margin-bottom: 20px;
}
.contact-item svg { color: var(--gold); flex-shrink: 0; margin-top: 2px; }
.contact-label {
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--gray-400);
  margin-bottom: 2px;
}
.contact-item a {
  color: var(--white);
  font-weight: 500;
  transition: var(--transition);
}
.contact-item a:hover { color: var(--gold); }
.contact-service-area {
  color: rgba(255,255,255,0.5);
  font-size: 13px;
  padding-top: 24px;
  border-top: 1px solid rgba(255,255,255,0.1);
}
.contact-service-area strong { color: rgba(255,255,255,0.7); }

/* Contact Form */
.contact-form-wrap {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 40px;
  box-shadow: 0 20px 60px rgba(0,0,0,0.2);
}
.contact-form h3 {
  font-size: 22px;
  margin-bottom: 24px;
}
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  margin-bottom: 12px;
}
.contact-form input,
.contact-form select,
.contact-form textarea {
  width: 100%;
  padding: 14px 16px;
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-sm);
  font-family: var(--font-body);
  font-size: 14px;
  color: var(--dark);
  margin-bottom: 12px;
  transition: var(--transition);
  background: var(--white);
  appearance: none;
}
.contact-form select {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='%23999' stroke-width='2'%3E%3Cpath d='M6 9l6 6 6-6'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 16px center;
  padding-right: 40px;
}
.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
  outline: none;
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(254,204,50,0.15);
}
.contact-form textarea { resize: vertical; min-height: 80px; }
.form-note {
  text-align: center;
  font-size: 12px;
  color: var(--gray-400);
  margin-top: 12px;
}

/* ── Footer ────────────────────────────────────────────────── */
.footer {
  background: #0a0a0a;
  padding: 64px 0 0;
  color: rgba(255,255,255,0.6);
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 40px;
  padding-bottom: 48px;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
.footer-logo { height: 32px; margin-bottom: 16px; }
.footer-brand p {
  font-size: 14px;
  line-height: 1.6;
  margin-bottom: 20px;
}
.footer-partner-badge { height: 56px; }
.footer-heading {
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--gold);
  margin-bottom: 20px;
}
.footer-link {
  display: block;
  font-size: 14px;
  color: rgba(255,255,255,0.55);
  margin-bottom: 10px;
  transition: var(--transition);
}
.footer-link:hover { color: var(--gold); }
.footer-address {
  font-size: 14px;
  line-height: 1.6;
  margin-top: 16px;
  color: rgba(255,255,255,0.4);
}
.footer-bottom {
  display: flex;
  justify-content: space-between;
  padding: 24px 0;
  font-size: 12px;
  color: rgba(255,255,255,0.3);
}

/* ── Animations ────────────────────────────────────────────── */
.fade-in {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}

/* Stagger children */
.services-grid .fade-in:nth-child(2) { transition-delay: 0.08s; }
.services-grid .fade-in:nth-child(3) { transition-delay: 0.16s; }
.services-grid .fade-in:nth-child(4) { transition-delay: 0.24s; }
.services-grid .fade-in:nth-child(5) { transition-delay: 0.32s; }
.services-grid .fade-in:nth-child(6) { transition-delay: 0.4s; }

.solutions-grid .fade-in:nth-child(2) { transition-delay: 0.08s; }
.solutions-grid .fade-in:nth-child(3) { transition-delay: 0.16s; }
.solutions-grid .fade-in:nth-child(4) { transition-delay: 0.24s; }
.solutions-grid .fade-in:nth-child(5) { transition-delay: 0.32s; }
.solutions-grid .fade-in:nth-child(6) { transition-delay: 0.4s; }

.why-grid .fade-in:nth-child(2) { transition-delay: 0.08s; }
.why-grid .fade-in:nth-child(3) { transition-delay: 0.16s; }
.why-grid .fade-in:nth-child(4) { transition-delay: 0.24s; }

.industry-grid .fade-in:nth-child(2) { transition-delay: 0.06s; }
.industry-grid .fade-in:nth-child(3) { transition-delay: 0.12s; }
.industry-grid .fade-in:nth-child(4) { transition-delay: 0.18s; }
.industry-grid .fade-in:nth-child(5) { transition-delay: 0.24s; }
.industry-grid .fade-in:nth-child(6) { transition-delay: 0.3s; }
.industry-grid .fade-in:nth-child(7) { transition-delay: 0.36s; }
.industry-grid .fade-in:nth-child(8) { transition-delay: 0.42s; }

.reviews-grid .fade-in:nth-child(2) { transition-delay: 0.08s; }
.reviews-grid .fade-in:nth-child(3) { transition-delay: 0.16s; }

/* ── Page Hero (subpages) ──────────────────────────────────── */
.page-hero {
  position: relative;
  padding: 160px 0 80px;
}
.page-hero--compact { padding: 140px 0 60px; }
.page-hero-bg {
  position: absolute;
  inset: 0;
  z-index: -1;
}
.page-hero-content {
  max-width: 680px;
}

/* ── Page CTA Banner ───────────────────────────────────────── */
.page-cta {
  padding: 80px 0;
  background: var(--dark);
}
.page-cta-inner {
  text-align: center;
  max-width: 640px;
  margin: 0 auto;
}
.page-cta-inner p {
  color: rgba(255,255,255,0.7);
  margin-bottom: 32px;
  line-height: 1.7;
}

/* ── Stats Section (about page) ────────────────────────────── */
.stats-section {
  padding: 64px 0;
  background: var(--dark);
}
.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
  text-align: center;
}
.stat-num {
  font-family: var(--font-heading);
  font-size: 40px;
  font-weight: 700;
  color: var(--gold);
  margin-bottom: 4px;
}
.stat-label {
  font-size: 13px;
  color: rgba(255,255,255,0.6);
  text-transform: uppercase;
  letter-spacing: 1px;
}

/* ── Contact Page (light bg variant) ──────────────────────── */
.contact-page {
  padding: 80px 0;
  background: var(--white);
}
.contact-page .contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: start;
}
.contact-label-dark {
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--gray-400);
  margin-bottom: 2px;
}
.contact-form-wrap--page {
  box-shadow: var(--shadow-lg);
  border: 1px solid var(--gray-200);
}

/* ══════════════════════════════════════════════════════════════
   RESPONSIVE
   ══════════════════════════════════════════════════════════════ */

@media (max-width: 1024px) {
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .solutions-grid { grid-template-columns: repeat(2, 1fr); }
  .why-grid { grid-template-columns: repeat(2, 1fr); }
  .industry-grid { grid-template-columns: repeat(3, 1fr); }
  .footer-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 1024px) {
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .contact-page .contact-grid { grid-template-columns: 1fr; gap: 40px; }
}

@media (max-width: 860px) {
  .nav {
    position: fixed;
    top: 0; right: -100%;
    width: 280px;
    height: 100vh;
    background: var(--dark);
    flex-direction: column;
    padding: 80px 32px 32px;
    gap: 8px;
    transition: right 0.3s ease;
    z-index: 999;
  }
  .nav.open { right: 0; }
  .nav-link {
    font-size: 16px;
    padding: 12px 0;
    border-bottom: 1px solid rgba(255,255,255,0.06);
  }
  .nav-toggle { display: flex; }
  .header-phone { display: none; }
  .header-login { display: none; }
  .header .btn-sm { display: none; }

  /* Mobile dropdown: stack inline */
  .nav-dropdown { width: 100%; }
  .nav-link--has-dropdown { width: 100%; justify-content: space-between; }
  .dropdown-menu {
    position: static;
    width: 100%;
    transform: none;
    opacity: 1;
    visibility: visible;
    box-shadow: none;
    background: rgba(255,255,255,0.04);
    border-radius: var(--radius-sm);
    padding: 4px 0;
    margin: 4px 0 8px;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
  }
  .dropdown-menu::before { display: none; }
  .nav-dropdown.open .dropdown-menu {
    max-height: 500px;
  }
  .nav-dropdown.open .dropdown-chevron {
    transform: rotate(180deg);
  }
  .dropdown-item {
    color: rgba(255,255,255,0.8);
    padding: 10px 16px;
  }
  .dropdown-item:hover { background: rgba(255,255,255,0.06); }
  .dropdown-item svg { color: var(--gold); }
  .dropdown-item strong { color: var(--white); font-size: 13px; }
  .dropdown-item span { color: rgba(255,255,255,0.4); }

  .detail-grid,
  .detail-grid--reverse { grid-template-columns: 1fr; gap: 40px; }
  .detail-grid--reverse .detail-content { order: 1; }
  .detail-grid--reverse .detail-images { order: 2; }

  .experience-grid { grid-template-columns: 1fr; gap: 40px; }
  .contact-grid { grid-template-columns: 1fr; gap: 40px; }
  .reviews-grid { grid-template-columns: 1fr; }
  .industry-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 640px) {
  .container { padding: 0 16px; }

  /* Hero */
  .hero { padding: 90px 0 28px; min-height: auto; }
  .hero-content { padding: 16px 0; }
  .hero-h1 { font-size: 28px; margin-bottom: 14px; }
  .hero-sub { font-size: 15px; margin-bottom: 24px; line-height: 1.6; }
  .hero-badge { font-size: 11px; padding: 6px 14px; margin-bottom: 16px; }
  .hero-cta { gap: 10px; }
  .hero-note { font-size: 12px; }

  /* Trust bar */
  .trust-bar { grid-template-columns: repeat(2, 1fr); margin-top: 28px; max-width: 100%; }
  .trust-item { padding: 24px 16px; }
  .trust-item:nth-child(2) { border-right: none; }
  .trust-item:nth-child(1),
  .trust-item:nth-child(2) { border-bottom: 1px solid rgba(255,255,255,0.08); }
  .trust-num { font-size: 28px; }
  .trust-label { font-size: 11px; letter-spacing: 0.5px; }

  /* Sections — tighter padding */
  .services, .detail-section, .solutions-banner, .why-section,
  .industries, .reviews, .experience, .contact, .contact-page,
  .page-cta, .stats-section { padding: 48px 0; }
  .page-hero { padding: 100px 0 40px; }
  .page-hero-content { max-width: 100%; }

  /* Section headers */
  .section-header { margin-bottom: 32px; }
  .section-title { font-size: 24px; margin-bottom: 12px; }
  .section-sub { font-size: 14px; line-height: 1.6; }
  .section-label { font-size: 10px; padding: 5px 12px; letter-spacing: 1.5px; }

  /* Service cards */
  .services-grid { grid-template-columns: 1fr; gap: 16px; }
  .service-card-img { height: 160px; }
  .service-card-body { padding: 20px; }
  .service-card-body h3 { font-size: 16px; }
  .service-card-body p { font-size: 13px; margin-bottom: 10px; }

  /* Solutions */
  .solutions-grid { grid-template-columns: 1fr; gap: 16px; }
  .solution-item img { height: 140px; }
  .solution-item h4 { font-size: 15px; padding: 16px 20px 6px; }
  .solution-item p { font-size: 13px; padding: 0 20px 12px; }

  /* Why cards */
  .why-grid { grid-template-columns: 1fr; gap: 14px; }
  .why-card { padding: 28px 20px; text-align: left; }
  .why-icon { margin: 0 0 14px; }
  .why-card h4 { font-size: 15px; }
  .why-card p { font-size: 13px; }

  /* Industries */
  .industry-grid { grid-template-columns: repeat(2, 1fr); gap: 12px; }
  .industry-card { aspect-ratio: 1/1; }
  .industry-card-overlay { padding: 16px 14px; }
  .industry-card-overlay h4 { font-size: 13px; }

  /* Detail grids */
  .detail-lead { font-size: 15px; margin-bottom: 18px; }
  .feature-list li { font-size: 14px; padding-left: 24px; margin-bottom: 10px; }
  .feature-list li::before { width: 14px; height: 14px; top: 5px; }

  /* Reviews */
  .reviews-grid { grid-template-columns: 1fr; gap: 14px; }
  .review-card { padding: 24px 20px; }
  .review-text { font-size: 14px; margin-bottom: 18px; }
  .review-stars-big { font-size: 24px; }

  /* Stats */
  .stats-grid { grid-template-columns: repeat(2, 1fr); gap: 16px; }
  .stat-num { font-size: 28px; }
  .stat-label { font-size: 12px; }

  /* Contact / Forms */
  .form-row { grid-template-columns: 1fr; gap: 0; }
  .contact-form-wrap { padding: 24px 20px; }
  .contact-form h3 { font-size: 18px; margin-bottom: 18px; }
  .contact-form input,
  .contact-form select,
  .contact-form textarea { padding: 12px 14px; font-size: 14px; }

  /* CTA Banner */
  .page-cta-inner { padding: 0 8px; }
  .page-cta-inner p { font-size: 14px; margin-bottom: 24px; }

  /* Footer */
  .footer { padding: 48px 0 0; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 28px; padding-bottom: 32px; }
  .footer-brand { grid-column: 1 / -1; }
  .footer-logo { height: 28px; }
  .footer-partner-badge { height: 44px; }
  .footer-heading { font-size: 10px; margin-bottom: 14px; }
  .footer-link { font-size: 13px; margin-bottom: 8px; }
  .footer-bottom { flex-direction: column; gap: 6px; text-align: center; padding: 18px 0; font-size: 11px; }

  /* Partners */
  .partner-logos { gap: 24px; }
  .partner-logo img { height: 32px; }

  /* Buttons */
  .btn { font-size: 12px; padding: 10px 22px; }
  .btn-lg { padding: 12px 26px; font-size: 13px; }
  .btn-sm { padding: 7px 16px; font-size: 11px; }
}

@media (max-width: 420px) {
  .container { padding: 0 14px; }
  .hero-h1 { font-size: 24px; }
  .hero-sub { font-size: 14px; }
  .hero-cta { flex-direction: column; }
  .hero-cta .btn { width: 100%; }

  .industry-grid { grid-template-columns: 1fr; }
  .industry-card { aspect-ratio: 16/9; }

  .service-card-img { height: 140px; }
  .service-card-body { padding: 18px 16px; }

  .footer-grid { grid-template-columns: 1fr; gap: 24px; }

  .section-title { font-size: 22px; }
  .page-hero { padding: 90px 0 32px; }

  .stats-grid { gap: 12px; }
  .stat-num { font-size: 24px; }

  .why-card { padding: 22px 16px; }
  .review-card { padding: 20px 16px; }
  .contact-form-wrap { padding: 20px 16px; }
}
