/* Srishasara PowerTech Solutions — Premium Futuristic Theme */

:root {
  --bg-deep: #ffffff;
  --bg-primary: #f4f7ff;
  --bg-card: rgba(255, 255, 255, 0.78);
  --bg-card-hover: rgba(255, 255, 255, 0.98);
  --navy: #eef2ff;
  --electric: #2563eb;
  --electric-bright: #3b82f6;
  --cyan: #00bcd4;
  --cyan-dim: rgba(0, 188, 212, 0.35);
  --neon-glow: 0 0 20px rgba(0, 188, 212, 0.25), 0 0 60px rgba(37, 99, 235, 0.18);
  --text: #0b1220;
  --text-muted: #425466;
  --metallic: #475569;
  --border: rgba(0, 188, 212, 0.22);
  --border-hover: rgba(0, 188, 212, 0.55);
  --gradient-hero: linear-gradient(135deg, rgba(37, 99, 235, 0.25) 0%, rgba(0, 229, 255, 0.08) 50%, transparent 100%);
  --font-heading: 'Inter', sans-serif;
  --font-body: 'IBM Plex Sans', sans-serif;
  --header-h: 190px;
  --header-total-h: 190px;
  --radius: 12px;
  --radius-lg: 20px;
  --transition: 0.35s cubic-bezier(0.4, 0, 0.2, 1);
  --container: min(1200px, 92vw);
}

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

html {
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--header-total-h) + 0.5rem);
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: var(--font-body);
  background: var(--bg-deep);
  color: var(--text);
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  padding-left: env(safe-area-inset-left);
  padding-right: env(safe-area-inset-right);
}

body::before {
  content: '';
  position: fixed;
  inset: 0;
  background:
    radial-gradient(ellipse 80% 50% at 50% -20%, rgba(37, 99, 235, 0.2), transparent),
    radial-gradient(ellipse 60% 40% at 100% 50%, rgba(0, 229, 255, 0.1), transparent);
  pointer-events: none;
  z-index: 0;
}

img { max-width: 100%; height: auto; display: block; }
a { color: var(--cyan); text-decoration: none; transition: color var(--transition); }
a:hover { color: var(--text); }
ul { list-style: none; }

.container {
  width: var(--container);
  margin-inline: auto;
  position: relative;
  z-index: 1;
}

.gradient-text {
  background: linear-gradient(90deg, var(--electric-bright), var(--cyan));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.9rem 1.75rem;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 0.95rem;
  border-radius: var(--radius);
  border: none;
  cursor: pointer;
  transition: transform var(--transition), box-shadow var(--transition), background var(--transition);
}

.btn--primary {
  background: linear-gradient(135deg, var(--electric), #1d4ed8);
  color: #fff;
  box-shadow: 0 4px 24px rgba(37, 99, 235, 0.4);
}

.btn--primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 32px rgba(37, 99, 235, 0.55), 0 0 20px rgba(0, 229, 255, 0.2);
  color: #fff;
}

.btn--outline {
  background: transparent;
  color: var(--text);
  border: 1px solid var(--border-hover);
}

.btn--outline:hover {
  background: rgba(0, 229, 255, 0.08);
  border-color: var(--cyan);
  color: var(--cyan);
}

.btn--whatsapp {
  background: linear-gradient(135deg, #25d366, #128c7e);
  color: #fff;
}

.btn--whatsapp:hover { transform: translateY(-2px); color: #fff; box-shadow: 0 8px 28px rgba(37, 211, 102, 0.35); }

.btn--sm { padding: 0.55rem 1.1rem; font-size: 0.85rem; }
.btn--full { width: 100%; }

/* Header */
.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  width: 100%;
  height: auto;
  min-height: var(--header-h);
  background: transparent;
  backdrop-filter: none;
  border-bottom: none;
  transition: background var(--transition), backdrop-filter var(--transition), box-shadow var(--transition), border-color var(--transition);
}

.header.scrolled {
  background: rgba(255, 255, 255, 0.88);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(2, 6, 23, 0.08);
  box-shadow: 0 16px 45px rgba(2, 6, 23, 0.10);
}

.header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
}

.logo {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  color: var(--text);
}

.logo:hover { color: var(--text); }

.header .logo {
  gap: 0;
  flex-shrink: 0;
}

.logo--animated {
  position: relative;
  display: inline-flex;
  align-items: center;
  overflow: visible;
  text-decoration: none;
}

.logo__brand-img {
  position: relative;
  z-index: 2;
  display: block;
  height: 180px;
  width: auto;
  max-width: min(600px, 64vw);
  object-fit: contain;
  transform-origin: left center;
  will-change: transform, opacity, filter;
  transition: transform 0.35s ease, filter 0.35s ease;
}

.logo__glow-ring {
  position: absolute;
  left: 16px;
  top: 50%;
  width: 140px;
  height: 140px;
  transform: translateY(-50%);
  border-radius: 12px;
  background: radial-gradient(circle, rgba(0, 229, 255, 0.22), transparent 70%);
  opacity: 0;
  z-index: 0;
  animation: logo-glow-pulse 3s ease-in-out 1s infinite;
}

.logo__shine {
  position: absolute;
  inset: 0;
  z-index: 3;
  background: linear-gradient(
    105deg,
    transparent 35%,
    rgba(255, 255, 255, 0.45) 50%,
    transparent 65%
  );
  transform: translateX(-130%);
  pointer-events: none;
  mix-blend-mode: screen;
  animation: logo-shine-sweep 4.5s ease-in-out 1.4s infinite;
}

.logo--animated:hover .logo__brand-img {
  transform: scale(1.03);
  filter: drop-shadow(0 0 14px rgba(0, 229, 255, 0.35));
}

.logo--animated.logo--entered .logo__glow-ring {
  opacity: 1;
}

@keyframes logo-glow-pulse {
  0%, 100% { opacity: 0.35; transform: translateY(-50%) scale(1); }
  50% { opacity: 0.75; transform: translateY(-50%) scale(1.08); }
}

@keyframes logo-shine-sweep {
  0%, 72%, 100% { transform: translateX(-130%); opacity: 0; }
  10% { opacity: 1; }
  38% { transform: translateX(130%); opacity: 0; }
}

@media (prefers-reduced-motion: reduce) {
  .logo__glow-ring,
  .logo__shine { animation: none; }
  .logo--animated:hover .logo__brand-img { transform: none; }
}


.logo__text {
  display: flex;
  flex-direction: column;
  line-height: 1.2;
}

.logo__text strong {
  font-family: var(--font-heading);
  font-size: 0.95rem;
  letter-spacing: 0.05em;
}

.logo__text small {
  font-size: 0.65rem;
  color: var(--text-muted);
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.nav__list {
  display: flex;
  gap: 2rem;
}

.nav__link {
  color: var(--text-muted);
  font-size: 0.9rem;
  font-weight: 500;
  position: relative;
  padding: 0.25rem 0;
}

.nav__link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--electric), var(--cyan));
  transition: width var(--transition);
  box-shadow: var(--neon-glow);
}

.nav__link:hover,
.nav__link.active { color: var(--text); }

.nav__link:hover::after,
.nav__link.active::after { width: 100%; }

.header-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 0.5rem;
  padding: 0.5rem 1rem;
  margin-bottom: 0.35rem;
  background: linear-gradient(135deg, #0f4fe0, #04c4ff);
  color: #fff;
}

.header-top__contact {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}

.header-top__pill {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  padding: 0.4rem 0.8rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.18);
  color: #fff;
  font-size: 0.8rem;
  font-weight: 700;
  text-decoration: none;
}

.header-top__pill:hover {
  background: rgba(255, 255, 255, 0.28);
}

.header-top__pill span {
  display: inline-flex;
  width: 20px;
  height: 20px;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: rgba(0, 0, 0, 0.12);
}

.header-top__social {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.header-top__social-link {
  width: 30px;
  height: 30px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.18);
  color: #fff;
  font-size: 0.8rem;
  font-weight: 700;
  text-decoration: none;
  transition: background var(--transition), transform var(--transition);
}

.header-top__social-link:hover {
  background: rgba(0, 0, 0, 0.18);
  transform: translateY(-1px);
}

.header__cta { margin-left: 1rem; }

.hamburger {
  display: none;
  flex-direction: column;
  gap: 6px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
  z-index: 1001;
}

.hamburger span {
  display: block;
  width: 26px;
  height: 2px;
  background: var(--cyan);
  transition: transform var(--transition), opacity var(--transition);
  box-shadow: 0 0 6px var(--cyan-dim);
}

.hamburger.active span:nth-child(1) { transform: translateY(8px) rotate(45deg); }
.hamburger.active span:nth-child(2) { opacity: 0; }
.hamburger.active span:nth-child(3) { transform: translateY(-8px) rotate(-45deg); }

/* Hero */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: calc(var(--header-total-h) + 1.5rem) 0 4rem;
  overflow: hidden;
}

/* Auto-scrolling background slides */
.hero__bg-slider {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero__bg-slide {
  position: absolute;
  inset: 0;
  z-index: 0;
  opacity: 0;
  transform: scale(1.05);
  transition: opacity 1s ease, transform 5s ease;
  pointer-events: none;
}

.hero__bg-slide__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  filter: grayscale(12%) contrast(0.95) saturate(0.92);
}

.hero__bg-slide.is-active {
  opacity: 1;
  z-index: 1;
  transform: scale(1);
}

.hero__overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(105deg, rgba(4, 8, 14, 0.88) 0%, rgba(4, 8, 14, 0.65) 50%, rgba(4, 8, 14, 0.75) 100%),
    linear-gradient(to top, rgba(4, 8, 14, 0.85), transparent 40%);
  pointer-events: none;
}

.hero__grid {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  opacity: 0.35;
  z-index: 2;
}

.hero__particles {
  position: absolute;
  inset: 0;
  z-index: 2;
  pointer-events: none;
}

.hero__particle {
  position: absolute;
  width: 4px;
  height: 4px;
  background: var(--cyan);
  border-radius: 50%;
  box-shadow: 0 0 10px var(--cyan);
  opacity: 0.6;
}

.hero__glow {
  position: absolute;
  border-radius: 50%;
  filter: blur(100px);
  z-index: 2;
  pointer-events: none;
}

.hero__glow--1 {
  width: 500px;
  height: 500px;
  top: -10%;
  right: -5%;
  background: rgba(37, 99, 235, 0.25);
}

.hero__glow--2 {
  width: 400px;
  height: 400px;
  bottom: 10%;
  left: -10%;
  background: rgba(0, 229, 255, 0.12);
}

.hero__content {
  position: relative;
  z-index: 5;
  width: 100%;
  max-width: 640px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 1.5rem;
  padding: 1.75rem 2rem;
  border-radius: 16px;
  background: linear-gradient(135deg, rgba(2, 6, 14, 0.82), rgba(4, 10, 22, 0.68));
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.35);
}

.hero__badge {
  display: inline-block;
  max-width: 100%;
  padding: 0.45rem 1rem;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--cyan);
  border: 1px solid var(--border);
  border-radius: 100px;
  margin: 0;
  background: rgba(0, 229, 255, 0.08);
  line-height: 1.4;
  word-break: break-word;
}

.hero__title {
  font-family: var(--font-heading);
  font-size: clamp(2rem, 5vw, 3.25rem);
  font-weight: 700;
  line-height: 1.3;
  margin: 0;
  letter-spacing: 0.02em;
  color: #f8fbff;
  text-shadow: 0 8px 28px rgba(0, 0, 0, 0.32);
}

.hero__title .line {
  display: block;
  margin-bottom: 0.35rem;
}

.hero__title .line:last-child {
  margin-bottom: 0;
}

.hero__subtitle {
  font-size: 1.05rem;
  color: rgba(240, 244, 252, 0.88);
  max-width: 520px;
  margin: 0;
  line-height: 1.65;
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin: 0;
  width: 100%;
}

.hero__actions .btn {
  min-height: 44px;
}

.hero__stats {
  display: flex;
  gap: 2rem;
  flex-wrap: wrap;
  width: 100%;
}

.stat-pill {
  text-align: left;
}

.stat-pill strong {
  display: block;
  font-family: var(--font-heading);
  font-size: 1.5rem;
  color: var(--cyan);
}

.stat-pill span {
  font-size: 0.8rem;
  color: var(--text-muted);
}

.scroll-indicator {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  color: var(--text-muted);
  font-size: 0.7rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  z-index: 5;
}

.scroll-indicator__line {
  width: 1px;
  height: 48px;
  background: linear-gradient(to bottom, var(--cyan), transparent);
  animation: scroll-line 2s ease-in-out infinite;
}

@keyframes scroll-line {
  0%, 100% { transform: scaleY(0.3); opacity: 0.5; }
  50% { transform: scaleY(1); opacity: 1; }
}

/* Sections */
.section {
  padding: 6rem 0;
  position: relative;
}

.section__grid-bg {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(0, 229, 255, 0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(0, 229, 255, 0.03) 1px, transparent 1px);
  background-size: 60px 60px;
  mask-image: linear-gradient(to bottom, transparent, black 20%, black 80%, transparent);
  pointer-events: none;
}

.section__header {
  text-align: center;
  max-width: 640px;
  margin: 0 auto 3.5rem;
}

/* Clients marquee */
.clients-marquee-wrap { margin: 2rem 0 3rem; }
.clients-marquee {
  overflow: hidden;
  width: 100%;
  background: transparent;
  padding: 0.5rem 0;
}
.clients-track {
  display: flex;
  gap: 1.25rem;
  align-items: center;
  white-space: nowrap;
  animation: marquee 18s linear infinite;
}
.client-item {
  flex: 0 0 auto;
  padding: 0.6rem 1rem;
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.04);
  color: var(--text);
  font-weight: 600;
  border-radius: 8px;
  box-shadow: 0 6px 18px rgba(0,0,0,0.25);
  min-width: 160px;
  text-align: center;
}

@keyframes marquee {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

.clients-marquee:hover .clients-track { animation-play-state: paused; }

/* Full-width Clients band (logo style) */
.clients-band {
  width: 100%;
  background: linear-gradient(180deg, rgba(244,247,255,1), rgba(255,255,255,1));
  padding: 2rem 0.5rem;
  box-shadow: inset 0 1px 0 rgba(0,0,0,0.03);
}
.clients-band__inner {
  max-width: var(--container);
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  align-items: center;
}
.clients-band__label {
  color: rgba(2, 6, 23, 0.45);
  letter-spacing: 0.6em;
  font-size: 0.75rem;
  text-transform: uppercase;
}
.clients-band__track {
  display: flex;
  gap: 2.25rem;
  align-items: center;
  width: 100%;
  justify-content: center;
  flex-wrap: nowrap;
  overflow: hidden;
  position: relative;
}
.client-logo {
  color: rgba(2, 6, 23, 0.75);
  font-weight: 800;
  font-size: 1.25rem;
  white-space: nowrap;
  opacity: 0.85;
  padding: 0.2rem 0.6rem;
}

/* Scroll effect: move track left continuously */
.clients-band__track::before { content: ''; position: absolute; inset: 0; pointer-events: none; }
.clients-band__track { animation: clients-scroll 24s linear infinite; }
@keyframes clients-scroll { 0% { transform: translateX(0); } 100% { transform: translateX(-30%); } }

@media (max-width: 768px) {
  .clients-band__track { animation: none; justify-content: center; gap: 1rem; }
  .client-logo { font-size: 1rem; }
}

.section__label {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--cyan);
  margin-bottom: 0.75rem;
}

.section__title {
  font-family: var(--font-heading);
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  font-weight: 700;
  margin-bottom: 1rem;
  letter-spacing: 0.03em;
}

.section__desc {
  color: var(--text-muted);
}

.section__cta {
  text-align: center;
  margin-top: 3rem;
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}

/* Project cards (home) */
.projects-preview {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 1.5rem;
  margin-bottom: 4rem;
}

.project-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: transform var(--transition), border-color var(--transition), box-shadow var(--transition);
}

.project-card:hover {
  transform: translateY(-8px);
  border-color: var(--border-hover);
  box-shadow: var(--neon-glow);
}

.project-card__media {
  position: relative;
  aspect-ratio: 16/10;
  overflow: hidden;
}

.project-card__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.project-card:hover .project-card__media img { transform: scale(1.08); }

.project-card__tag {
  position: absolute;
  top: 1rem;
  left: 1rem;
  padding: 0.35rem 0.85rem;
  font-size: 0.7rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  background: rgba(3, 5, 8, 0.8);
  border: 1px solid var(--cyan-dim);
  border-radius: 100px;
  color: var(--cyan);
}

.project-card__body {
  padding: 1.5rem;
}

.project-card__body h3 {
  font-family: var(--font-heading);
  font-size: 1.1rem;
  margin-bottom: 0.5rem;
}

.project-card__body p {
  font-size: 0.9rem;
  color: var(--text-muted);
  margin-bottom: 1rem;
}

.link-arrow {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--cyan);
}

/* Counters */
.counters {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  padding: 2.5rem;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  margin-bottom: 2rem;
}

.counters--page { margin-bottom: 4rem; }

.counter-item {
  text-align: center;
}

.counter-item__num {
  display: block;
  font-family: var(--font-heading);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 700;
  color: var(--cyan);
  text-shadow: 0 0 30px rgba(0, 229, 255, 0.4);
}

.counter-item__label {
  font-size: 0.85rem;
  color: var(--text-muted);
}

/* About split */
.about-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
  margin-bottom: 5rem;
}

.about-split__visual {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius-lg);
}

.about-split__visual img {
  border-radius: var(--radius-lg);
  border: 1px solid var(--border);
}

.about-split__badge {
  position: absolute;
  bottom: -1rem;
  right: -1rem;
  padding: 1.25rem 1.5rem;
  background: var(--bg-card);
  border: 1px solid var(--border-hover);
  border-radius: var(--radius);
  box-shadow: var(--neon-glow);
  text-align: center;
}

.about-split__badge-num {
  display: block;
  font-family: var(--font-heading);
  font-size: 2rem;
  color: var(--cyan);
}

.about-split__mission {
  font-size: 1.1rem;
  margin-bottom: 1.5rem;
  color: var(--text);
}

.feature-list { margin: 2rem 0; }

.feature-list__item {
  display: flex;
  gap: 1rem;
  padding: 1rem 0;
  border-bottom: 1px solid var(--border);
}

.feature-list__icon {
  flex-shrink: 0;
  display: block;
  width: 44px;
  height: 44px;
  border-radius: var(--radius);
  background-color: rgba(0, 229, 255, 0.08);
  background-repeat: no-repeat;
  background-position: center;
  background-size: 22px 22px;
  border: 1px solid var(--border);
  font-size: 0;
  line-height: 0;
  overflow: hidden;
  text-indent: -9999px;
}

.feature-list__icon--bolt {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%2300e5ff' stroke-width='1.5'%3E%3Cpath d='M13 2 3 14h8l-1 8 10-12h-8l1-8z'/%3E%3C/svg%3E");
}

.feature-list__icon--tool {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%2300e5ff' stroke-width='1.5'%3E%3Cpath d='M14.7 6.3a4 4 0 0 0-5.4 5.4l-6.2 6.2a2 2 0 1 0 2.8 2.8l6.2-6.2a4 4 0 0 0 5.4-5.4L16 4l-1.3 2.3z'/%3E%3C/svg%3E");
}

.feature-list__icon--shield {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%2300e5ff' stroke-width='1.5'%3E%3Cpath d='M12 22s8-4 8-10V5l-8-3-8 3v7c0 6 8 10 8 10z'/%3E%3C/svg%3E");
}

.feature-list__item strong {
  display: block;
  margin-bottom: 0.25rem;
}

.feature-list__item p {
  font-size: 0.9rem;
  color: var(--text-muted);
}

/* Testimonials */
.testimonials-wrap { padding-top: 2rem; }

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.5rem;
}

.testimonial-card {
  padding: 2rem;
  background: rgba(255, 255, 255, 0.04);
  backdrop-filter: blur(12px);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  transition: border-color var(--transition), transform var(--transition);
}

.testimonial-card:hover {
  border-color: var(--border-hover);
  transform: translateY(-4px);
}

.testimonial-card__stars {
  color: #fbbf24;
  font-size: 0.9rem;
  margin-bottom: 1rem;
  letter-spacing: 2px;
}

.testimonial-card p {
  font-size: 0.95rem;
  color: var(--text-muted);
  margin-bottom: 1.5rem;
  font-style: italic;
}

.testimonial-card footer {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.testimonial-card__avatar {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid var(--cyan-dim);
}

.testimonial-card cite {
  display: block;
  font-style: normal;
  font-weight: 600;
  font-size: 0.9rem;
}

.testimonial-card footer span {
  font-size: 0.8rem;
  color: var(--metallic);
}

/* Contact */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 3rem;
  align-items: start;
}

.contact-details { margin: 2rem 0; }

.contact-details li {
  display: flex;
  gap: 1rem;
  padding: 1rem 0;
  border-bottom: 1px solid var(--border);
}

.contact-details__icon {
  flex-shrink: 0;
  display: block;
  width: 40px;
  height: 40px;
  border-radius: var(--radius);
  background-color: rgba(0, 229, 255, 0.08);
  background-repeat: no-repeat;
  background-position: center;
  background-size: 20px 20px;
  border: 1px solid var(--border);
  font-size: 0;
  line-height: 0;
  overflow: hidden;
  text-indent: -9999px;
}

.contact-details__icon--phone {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%2300e5ff' stroke-width='1.5'%3E%3Cpath d='M22 16.92v3a2 2 0 0 1-2.18 2 19.8 19.8 0 0 1-8.63-3.07 19.5 19.5 0 0 1-6-6 19.8 19.8 0 0 1-3.07-8.67A2 2 0 0 1 4.11 2h3a2 2 0 0 1 2 1.72c.1.6.3 1.2.7 2.81a2 2 0 0 1-.45 2.11L8.09 9.91a16 16 0 0 0 6 6l1.27-1.27a2 2 0 0 1 2.11-.45c.9.34 1.85.57 2.81.7A2 2 0 0 1 22 16.92z'/%3E%3C/svg%3E");
}

.contact-details__icon--email {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%2300e5ff' stroke-width='1.5'%3E%3Cpath d='M4 4h16a2 2 0 0 1 2 2v12a2 2 0 0 1-2 2H4a2 2 0 0 1-2-2V6a2 2 0 0 1 2-2z'/%3E%3Cpath d='m22 6-10 7L2 6'/%3E%3C/svg%3E");
}

.contact-details__icon--location {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%2300e5ff' stroke-width='1.5'%3E%3Cpath d='M21 10c0 7-9 13-9 13S3 17 3 10a9 9 0 0 1 18 0z'/%3E%3Ccircle cx='12' cy='10' r='3'/%3E%3C/svg%3E");
}

.contact-details__icon--clock {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%2300e5ff' stroke-width='1.5'%3E%3Ccircle cx='12' cy='12' r='10'/%3E%3Cpath d='M12 6v6l4 2'/%3E%3C/svg%3E");
}

.contact-details strong {
  display: block;
  font-size: 0.8rem;
  color: var(--text-muted);
  margin-bottom: 0.2rem;
}

.contact-quick-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
}

.contact-form {
  padding: 2rem;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
}

.form-group { margin-bottom: 1.25rem; }

.form-group label {
  display: block;
  font-size: 0.8rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
  color: var(--text-muted);
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 0.85rem 1rem;
  background: rgba(3, 5, 8, 0.6);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  color: var(--text);
  font-family: var(--font-body);
  font-size: 0.95rem;
  transition: border-color var(--transition), box-shadow var(--transition);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--cyan);
  box-shadow: 0 0 0 3px rgba(0, 229, 255, 0.15);
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

.map-placeholder {
  margin-top: 3rem;
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--border);
}

.map-placeholder__inner iframe { display: block; filter: grayscale(0.4) contrast(1.1); }

/* Service cards */
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.5rem;
}

.services-grid--page { margin-bottom: 3rem; }

.service-card {
  position: relative;
  padding: 2rem;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: transform 0.4s ease, border-color var(--transition);
  transform-style: preserve-3d;
  perspective: 1000px;
}

.service-card--wide {
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 0.5rem 2rem;
  align-items: center;
}

.service-card--wide .service-card__icon {
  grid-column: 1;
  grid-row: 1 / span 3;
  margin-bottom: 0;
  align-self: start;
}

.service-card--wide h3 {
  grid-column: 2;
  grid-row: 1;
  margin-bottom: 0;
}

.service-card--wide p {
  grid-column: 2;
  grid-row: 2;
  margin-bottom: 0;
}

.service-card--wide .service-card__list {
  grid-column: 2;
  grid-row: 3;
  margin-bottom: 0;
}

.service-card--wide .btn,
.service-card--wide .service-card__link {
  grid-column: 3;
  grid-row: 1 / span 3;
  align-self: center;
  white-space: nowrap;
}

.service-card__glow {
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at var(--mx, 50%) var(--my, 50%), rgba(0, 229, 255, 0.12), transparent 60%);
  opacity: 0;
  transition: opacity var(--transition);
  pointer-events: none;
}

.service-card:hover .service-card__glow { opacity: 1; }

.service-card:hover {
  border-color: var(--border-hover);
  box-shadow: var(--neon-glow);
}

.service-card__icon {
  width: 56px;
  height: 56px;
  color: var(--cyan);
  margin-bottom: 1.25rem;
}

.service-card__icon svg { width: 100%; height: 100%; }

.service-card h3 {
  font-family: var(--font-heading);
  font-size: 1.1rem;
  margin-bottom: 0.75rem;
}

.service-card p {
  font-size: 0.9rem;
  color: var(--text-muted);
  margin-bottom: 1rem;
}

.service-card__list {
  font-size: 0.85rem;
  color: var(--metallic);
  margin-bottom: 1.25rem;
}

.service-card__list li {
  padding: 0.25rem 0;
  padding-left: 1rem;
  position: relative;
}

.service-card__list li::before {
  content: '›';
  position: absolute;
  left: 0;
  color: var(--cyan);
}

.service-card__list--inline {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
}

.service-card__list--inline li { padding-left: 0; }
.service-card__list--inline li::before { display: none; }

.service-card__link {
  font-weight: 600;
  font-size: 0.9rem;
}

/* Welcome Section */
.section--welcome {
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.96) 0%, rgba(244, 247, 255, 0.96) 100%);
}

.welcome-services {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem;
  margin-top: 3rem;
}

.welcome-service-card {
  position: relative;
  padding: 2.5rem;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  background: rgba(255, 255, 255, 0.68);
  backdrop-filter: blur(10px);
  transition: all var(--transition);
  z-index: 1;
}

.welcome-service-card:hover {
  border-color: var(--cyan);
  background: rgba(255, 255, 255, 0.9);
  transform: translateY(-4px);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.08);
}

.welcome-service-card__icon {
  width: 56px;
  height: 56px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: var(--radius);
  background: rgba(0, 229, 255, 0.08);
  color: var(--cyan);
  margin-bottom: 1.5rem;
}

.welcome-service-card__icon svg {
  width: 28px;
  height: 28px;
}

.welcome-service-card h3 {
  font-family: var(--font-heading);
  font-size: 1.25rem;
  font-weight: 600;
  margin-bottom: 1rem;
  color: var(--text);
}

.welcome-service-card p {
  font-size: 0.95rem;
  color: var(--text-muted);
  margin-bottom: 1.75rem;
  line-height: 1.6;
}

.welcome-service-card__features {
  list-style: none;
  padding: 0;
  margin: 1.5rem 0;
  display: flex;
  flex-direction: column;
  gap: 0.7rem;
}

.welcome-service-card__features li {
  font-size: 0.9rem;
  color: var(--text-muted);
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.welcome-service-card__features li::before {
  content: '✓';
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: rgba(0, 229, 255, 0.15);
  color: var(--cyan);
  font-size: 0.75rem;
  font-weight: 700;
  flex-shrink: 0;
}

.welcome-service-card__link {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-weight: 600;
  color: var(--cyan);
  font-size: 0.95rem;
  margin-top: 1rem;
  transition: all var(--transition);
}

.welcome-service-card__link:hover {
  gap: 0.75rem;
  color: var(--text);
}

/* Page hero (inner pages) */
.page-hero {
  position: relative;
  padding: calc(var(--header-total-h) + 4rem) 0 4rem;
  text-align: center;
  overflow: hidden;
}

.page-hero--short { padding-bottom: 3rem; }

.page-hero__bg {
  position: absolute;
  inset: 0;
  background:
    var(--gradient-hero),
    linear-gradient(180deg, var(--bg-primary) 0%, var(--bg-deep) 100%);
}

.page-hero__bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(0, 229, 255, 0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(0, 229, 255, 0.04) 1px, transparent 1px);
  background-size: 40px 40px;
}

.page-hero__title {
  font-family: var(--font-heading);
  font-size: clamp(2rem, 4vw, 3rem);
  margin-bottom: 1rem;
}

.page-hero__desc {
  color: var(--text-muted);
  max-width: 560px;
  margin: 0 auto;
}

/* Projects gallery */
.projects-gallery {
  display: grid;
  gap: 2.5rem;
}

.gallery-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: border-color var(--transition), box-shadow var(--transition);
}

.gallery-card:hover {
  border-color: var(--border-hover);
  box-shadow: var(--neon-glow);
}

.gallery-card__images {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2px;
}

.gallery-card__images.single {
  grid-template-columns: 1fr;
}

.gallery-card__images.single img {
  width: 100%;
  height: 320px;
  object-fit: cover;
}

.gallery-card__img {
  position: relative;
  overflow: hidden;
  aspect-ratio: 4/3;
}

.gallery-card__img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.gallery-card:hover .gallery-card__img img { transform: scale(1.06); }

.gallery-card__img span {
  position: absolute;
  top: 0.75rem;
  left: 0.75rem;
  padding: 0.25rem 0.6rem;
  font-size: 0.65rem;
  font-weight: 700;
  text-transform: uppercase;
  background: rgba(0, 0, 0, 0.7);
  border-radius: 4px;
}

.gallery-card__img--after span { background: rgba(0, 229, 255, 0.2); color: var(--cyan); }

.gallery-card__info {
  padding: 1.75rem;
}

.gallery-card__tag {
  font-size: 0.7rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--cyan);
}

.gallery-card__info h3 {
  font-family: var(--font-heading);
  margin: 0.5rem 0;
}

.gallery-card__info p {
  color: var(--text-muted);
  font-size: 0.9rem;
}

/* Why / Timeline */
.why-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 1.5rem;
}

.why-card {
  padding: 2rem;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  transition: transform var(--transition), border-color var(--transition);
}

.why-card:hover {
  transform: translateY(-4px);
  border-color: var(--border-hover);
}

.why-card__num {
  font-family: var(--font-heading);
  font-size: 2rem;
  color: var(--cyan);
  opacity: 0.5;
  display: block;
  margin-bottom: 0.75rem;
}

.timeline {
  position: relative;
  padding-left: 2rem;
  border-left: 2px solid var(--border);
  max-width: 600px;
  margin: 0 auto;
}

.timeline__item {
  position: relative;
  padding-bottom: 2.5rem;
}

.timeline__item::before {
  content: '';
  position: absolute;
  left: -2rem;
  top: 0.35rem;
  width: 12px;
  height: 12px;
  margin-left: -7px;
  background: var(--cyan);
  border-radius: 50%;
  box-shadow: 0 0 12px var(--cyan);
}

.timeline__year {
  font-family: var(--font-heading);
  color: var(--cyan);
  font-size: 1.1rem;
  display: block;
  margin-bottom: 0.35rem;
}

.industries {
  text-align: center;
  padding: 3rem;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  margin-bottom: 2rem;
}

.industries h3 {
  font-family: var(--font-heading);
  margin-bottom: 1.5rem;
}

.industries__tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  justify-content: center;
}

.industries__tags span {
  padding: 0.5rem 1.25rem;
  border: 1px solid var(--border);
  border-radius: 100px;
  font-size: 0.85rem;
  color: var(--text-muted);
  transition: border-color var(--transition), color var(--transition);
}

.industries__tags span:hover {
  border-color: var(--cyan);
  color: var(--cyan);
}

.cta-banner {
  text-align: center;
  padding: 3rem;
  background: linear-gradient(135deg, rgba(37, 99, 235, 0.15), rgba(0, 229, 255, 0.08));
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
}

.cta-banner h2 {
  font-family: var(--font-heading);
  margin-bottom: 0.75rem;
}

.cta-banner p {
  color: var(--text-muted);
  margin-bottom: 1.5rem;
}

.cta-banner__actions {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}

/* Footer */
.footer {
  position: relative;
  padding: 4rem 0 2rem;
  background: var(--bg-primary);
  border-top: 1px solid var(--border);
  margin-top: 2rem;
}

.footer__glow {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--cyan), var(--electric), transparent);
  box-shadow: 0 0 20px var(--cyan-dim);
}

.footer__grid {
  display: grid;
  grid-template-columns: 2fr repeat(3, 1fr);
  gap: 2.5rem;
  margin-bottom: 3rem;
}

.footer__brand p {
  font-size: 0.9rem;
  color: var(--text-muted);
  margin: 1rem 0;
  max-width: 280px;
}

.logo--footer {
  display: inline-flex;
  align-items: center;
}

.logo__brand-img--footer {
  display: block;
  height: 110px;
  width: auto;
  max-width: min(420px, 92vw);
  object-fit: contain;
}

.footer__bottom-logo {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1rem;
}

.footer__social {
  display: flex;
  gap: 0.75rem;
}

.footer__social a {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  color: var(--text-muted);
  font-weight: 700;
  font-size: 0.85rem;
}

.footer__social a:hover {
  border-color: var(--cyan);
  color: var(--cyan);
}

.footer__col {
  min-width: 0;
}

.footer__col h4 {
  font-family: var(--font-heading);
  font-size: 0.85rem;
  letter-spacing: 0.1em;
  margin-bottom: 1rem;
  color: var(--text);
}

.footer__col ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer__col li {
  margin-bottom: 0.5rem;
  line-height: 1.5;
  color: var(--text-muted);
  font-size: 0.9rem;
}

.footer__col a {
  color: var(--text-muted);
  font-size: 0.9rem;
  word-break: break-word;
}

.footer__bottom {
  padding-top: 2rem;
  border-top: 1px solid var(--border);
  text-align: center;
  font-size: 0.85rem;
  color: var(--metallic);
}

/* FAB */
.fab {
  position: fixed;
  z-index: 999;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.4);
  transition: transform var(--transition), box-shadow var(--transition);
}

.fab:hover { transform: scale(1.08); color: #fff; }

.fab--whatsapp {
  bottom: 2rem;
  right: 2rem;
  background: linear-gradient(135deg, #25d366, #128c7e);
  font-weight: 700;
  font-size: 1.25rem;
}

.fab--call {
  bottom: 2rem;
  right: 5.5rem;
  background: linear-gradient(135deg, var(--electric), #1d4ed8);
  font-weight: 700;
}

.page-home .fab--call,
.page-contact .fab--call { display: flex; }

body:not(.page-home):not(.page-contact) .fab--call { display: none; }

/* Cursor glow */
.cursor-glow {
  position: fixed;
  width: 400px;
  height: 400px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(0, 229, 255, 0.06), transparent 70%);
  pointer-events: none;
  z-index: 0;
  transform: translate(-50%, -50%);
  opacity: 0;
  transition: opacity 0.3s;
}

body:hover .cursor-glow { opacity: 1; }

/* GSAP reveal helpers */
.reveal-up,
.reveal-left,
.reveal-right {
  will-change: transform, opacity;
}

/* Form success */
.form-success {
  padding: 1rem;
  background: rgba(37, 211, 102, 0.15);
  border: 1px solid rgba(37, 211, 102, 0.4);
  border-radius: var(--radius);
  color: #4ade80;
  text-align: center;
  margin-top: 1rem;
}

/* ===== RESPONSIVE MEDIA QUERIES ===== */

/* Extra Large Desktop (1200px+) - Default styles */

/* Large Desktop (1024px - 1199px) */
@media (max-width: 1024px) {
  :root { --header-h: 155px; --header-total-h: 155px; }

  .hero { padding: calc(var(--header-total-h) + 1.5rem) 0 3rem; }
  .hero__title { font-size: clamp(1.75rem, 4vw, 2.75rem); }
  .hero__content { max-width: 100%; }

  .logo__brand-img {
    height: 132px;
    max-width: min(500px, 60vw);
  }
  
  .about-split { grid-template-columns: 1fr; gap: 2.5rem; }
  .about-split__badge { bottom: -0.5rem; right: -0.5rem; }
  
  .contact-grid { grid-template-columns: 1fr; gap: 2rem; }
  .footer__grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 2rem;
  }
  .footer__brand { grid-column: 1 / -1; }
  
  .service-card--wide {
    grid-template-columns: 1fr;
    gap: 1rem;
    text-align: left;
  }

  .service-card--wide .service-card__icon,
  .service-card--wide h3,
  .service-card--wide p,
  .service-card--wide .service-card__list,
  .service-card--wide .btn,
  .service-card--wide .service-card__link {
    grid-column: 1;
    grid-row: auto;
    align-self: auto;
  }

  .service-card--wide .service-card__icon {
    margin-bottom: 0.5rem;
  }

  .service-card--wide .btn,
  .service-card--wide .service-card__link {
    width: 100%;
    white-space: normal;
  }
  
  .projects-preview { grid-template-columns: repeat(2, 1fr); gap: 1.25rem; }
  .counters { gap: 1.5rem; }
}

/* Tablet (768px - 1023px) */
@media (max-width: 1023px) {
  :root { --header-h: 130px; --header-total-h: 130px; }

  .hamburger { display: flex; }
  .header__cta { display: none; }

  .header__inner {
    gap: 0.75rem;
    padding-block: 0.35rem;
  }

  .logo__brand-img {
    height: 108px;
    max-width: min(400px, 54vw);
  }

  .logo__glow-ring {
    left: 10px;
    width: 88px;
    height: 88px;
  }

  .logo__shine {
    left: 8px;
    width: 104px;
    top: 6px;
    bottom: 6px;
  }

  .header-top {
    padding: 0.45rem 0.85rem;
  }

  .header-top__pill {
    font-size: 0.72rem;
    padding: 0.35rem 0.65rem;
  }

  .header-top__pill[href^="mailto"] {
    max-width: 220px;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
  }
  
  .container { width: min(95vw, 1000px); }
  
  .hero {
    padding: calc(var(--header-total-h) + 1rem) 1rem 2.5rem;
    min-height: auto;
    align-items: flex-start;
  }

  .hero .container {
    width: min(96vw, 1000px);
  }

  .hero__content {
    gap: 1.15rem;
    padding: 1.35rem 1.5rem;
    border-radius: 14px;
  }

  .hero__title { font-size: clamp(1.5rem, 5vw, 2.5rem); }
  .hero__subtitle { font-size: 0.95rem; }
  .hero__stats {
    gap: 1.25rem;
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
  .stat-pill { text-align: center; }
  .stat-pill strong { font-size: 1.25rem; }
  
  .section { padding: 4rem 1rem; }
  .section__header { margin: 0 auto 2.5rem; }
  .section__title { font-size: clamp(1.5rem, 3.5vw, 2.25rem); }
  
  .projects-preview { grid-template-columns: repeat(2, 1fr); gap: 1.25rem; }
  .project-card__media { aspect-ratio: 16/12; }
  .project-card__body { padding: 1.25rem; }
  
  .counters { grid-template-columns: repeat(3, 1fr); gap: 1rem; padding: 1.75rem; }
  .counter-item__num { font-size: clamp(1.5rem, 3vw, 2.5rem); }
  .counter-item__label { font-size: 0.75rem; }
  
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  
  .testimonials-grid { grid-template-columns: repeat(2, 1fr); gap: 1.25rem; }
  .testimonial-card { padding: 1.5rem; }
  
  .nav {
    position: fixed;
    top: 0;
    right: 0;
    width: min(280px, 85vw);
    height: 75vh;
    background: rgba(255, 255, 255, 0.94);
    backdrop-filter: blur(24px);
    padding: calc(var(--header-h) + 1.5rem) 1.25rem 2rem;
    transform: translateX(100%);
    transition: transform var(--transition);
    border-left: 1px solid rgba(2, 6, 23, 0.08);
    overflow-y: auto;
  }

  .nav.open { transform: translateX(0); }
  .nav__list { flex-direction: column; gap: 1rem; }
  .nav__link { font-size: 0.95rem; }
  .form-row { grid-template-columns: 1fr; gap: 0.75rem; }
  .gallery-card__images { grid-template-columns: 1fr; }
  .gallery-card__images.single img { height: 280px; }
  .gallery-card__info { padding: 1.5rem; }
  
  .footer__grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 1.5rem;
  }
  .footer__brand { grid-column: 1 / -1; }
  
  .fab--call { right: 1.5rem; bottom: 5rem; }
  .fab--whatsapp { right: 1.5rem; bottom: 1.5rem; }
  
  .welcome-services { grid-template-columns: 1fr; gap: 1.5rem; }
  .welcome-service-card { padding: 2rem; }
  
  .page-hero { padding: calc(var(--header-total-h) + 2.5rem) 1rem 2.5rem; }
  .page-hero__title { font-size: clamp(1.5rem, 3.5vw, 2.5rem); }
}

/* Small Tablet / Large Mobile (640px - 767px) */
@media (max-width: 767px) {
  :root {
    --header-h: 110px;
    --header-total-h: 110px;
    --container: min(94vw, 800px);
  }

  .logo__brand-img {
    height: 84px;
    max-width: min(300px, 50vw);
  }

  .logo__glow-ring {
    left: 8px;
    width: 68px;
    height: 68px;
  }

  .logo__shine {
    left: 6px;
    width: 80px;
  }

  .header-top {
    justify-content: center;
    padding: 0.4rem 0.75rem;
  }

  .header-top__contact {
    width: 100%;
    justify-content: center;
  }

  .header-top__pill[href^="mailto"] {
    display: none;
  }

  .header-top__social {
    width: 100%;
    justify-content: center;
  }

  .header__inner {
    padding-inline: 0.75rem;
  }

  .header .logo__text { display: none; }

  .hero {
    padding: calc(var(--header-total-h) + 0.75rem) 0.75rem 2rem;
    min-height: auto;
  }

  .hero .container {
    width: 100%;
    padding-inline: 0.75rem;
  }

  .hero__content {
    gap: 1rem;
    padding: 1.1rem 1.15rem;
    border-radius: 12px;
  }

  .hero__title { font-size: clamp(1.35rem, 6vw, 2rem); }
  .hero__subtitle { font-size: 0.9rem; max-width: 100%; }
  .hero__badge {
    padding: 0.35rem 0.85rem;
    font-size: 0.68rem;
    letter-spacing: 0.08em;
  }

  .hero__actions {
    flex-direction: column;
    gap: 0.65rem;
  }

  .hero__actions .btn {
    width: 100%;
    padding: 0.85rem 1.25rem;
    font-size: 0.9rem;
  }

  .hero__stats {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 0.65rem;
  }

  .stat-pill { text-align: center; }
  .stat-pill strong { font-size: 1.05rem; }
  .stat-pill span { font-size: 0.72rem; }
  
  .scroll-indicator { display: none; }
  
  .section { padding: 3rem 1rem; }
  .section__header { margin: 0 auto 2rem; }
  .section__label { font-size: 0.7rem; }
  .section__title { font-size: clamp(1.25rem, 2.8vw, 2rem); }
  .section__desc { font-size: 0.9rem; }
  
  .projects-preview { grid-template-columns: 1fr; gap: 1rem; }
  .projects-gallery { gap: 1.75rem; }
  .project-card { border-radius: 8px; }
  .project-card__media { aspect-ratio: 16/12; }
  .project-card__tag { padding: 0.3rem 0.7rem; font-size: 0.65rem; }
  .project-card__body { padding: 1rem; }
  .project-card__body h3 { font-size: 1rem; margin-bottom: 0.4rem; }
  .project-card__body p { font-size: 0.85rem; }
  
  .counters {
    grid-template-columns: 1fr;
    gap: 1rem;
    padding: 1.5rem;
    margin-bottom: 1.5rem;
  }
  
  .counter-item__num { font-size: clamp(1.25rem, 2.5vw, 2rem); }
  .counter-item__label { font-size: 0.7rem; }
  
  .about-split { gap: 1.5rem; }
  .about-split__badge { bottom: 0; right: 0; padding: 1rem; font-size: 0.9rem; }
  .about-split__badge-num { font-size: 1.5rem; }
  .about-split__mission { font-size: 1rem; margin-bottom: 1.25rem; }
  
  .feature-list__item { padding: 0.75rem 0; gap: 0.75rem; }
  .feature-list__icon { width: 36px; height: 36px; background-size: 18px 18px; }
  .feature-list__item strong { font-size: 0.9rem; }
  .feature-list__item p { font-size: 0.85rem; }
  
  .services-grid { grid-template-columns: 1fr; gap: 1rem; }
  .service-card { padding: 1.5rem; }
  .service-card__icon { width: 44px; height: 44px; margin-bottom: 1rem; }
  .service-card h3 { font-size: 1rem; }
  .service-card p { font-size: 0.85rem; }
  .service-card__list { font-size: 0.8rem; }
  
  .service-card--wide {
    grid-template-columns: 1fr;
    gap: 1rem;
    text-align: left;
  }

  .service-card--wide .service-card__icon,
  .service-card--wide h3,
  .service-card--wide p,
  .service-card--wide .service-card__list,
  .service-card--wide .btn,
  .service-card--wide .service-card__link {
    grid-column: 1;
    grid-row: auto;
    align-self: auto;
  }

  .service-card--wide .btn,
  .service-card--wide .service-card__link {
    width: 100%;
    white-space: normal;
  }
  
  .testimonials-grid { grid-template-columns: 1fr; gap: 1rem; }
  .testimonial-card { padding: 1.25rem; }
  .testimonial-card p { font-size: 0.9rem; }
  .testimonial-card__avatar { width: 40px; height: 40px; }
  .testimonial-card cite { font-size: 0.85rem; }
  
  .contact-grid { gap: 1.5rem; }
  .contact-details li { padding: 0.75rem 0; gap: 0.75rem; }
  .contact-details__icon { width: 36px; height: 36px; background-size: 18px 18px; }
  .contact-details strong { font-size: 0.75rem; }
  
  .contact-form { padding: 1.5rem; }
  .form-group { margin-bottom: 1rem; }
  .form-group label { font-size: 0.75rem; margin-bottom: 0.4rem; }
  .form-group input,
  .form-group select,
  .form-group textarea {
    padding: 0.75rem 0.875rem;
    font-size: 16px;
  }
  
  .btn {
    padding: 0.75rem 1.5rem;
    font-size: 0.9rem;
    gap: 0.4rem;
    min-height: 44px;
  }
  
  .btn--sm { padding: 0.5rem 1rem; font-size: 0.8rem; }
  .btn--full { width: 100%; }
  
  .footer { padding: 3rem 1rem 1.5rem; }
  .footer__grid { grid-template-columns: 1fr; gap: 1.5rem; }
  .footer__brand { grid-column: auto; }
  .footer__brand p { max-width: 100%; font-size: 0.85rem; }
  .footer__col h4 { font-size: 0.8rem; margin-bottom: 0.75rem; }
  .footer__col li { margin-bottom: 0.4rem; }
  .footer__col a { font-size: 0.85rem; }
  .footer__bottom { font-size: 0.8rem; padding-top: 1.5rem; }
  
  .why-grid { grid-template-columns: 1fr; gap: 1rem; }
  .why-card { padding: 1.5rem; }
  
  .timeline { max-width: 100%; }
  .timeline__year { font-size: 1rem; }
  
  .industries { padding: 2rem 1rem; margin-bottom: 1.5rem; }
  .industries h3 { margin-bottom: 1rem; font-size: 1.1rem; }
  .industries__tags { gap: 0.5rem; }
  .industries__tags span { padding: 0.4rem 1rem; font-size: 0.8rem; }
  
  .cta-banner { padding: 2rem 1rem; }
  .cta-banner h2 { font-size: 1.1rem; margin-bottom: 0.5rem; }
  .cta-banner p { font-size: 0.9rem; margin-bottom: 1.25rem; }
  .cta-banner__actions { gap: 0.75rem; }
  
  .why-card__num { font-size: 1.5rem; }
  
  .page-hero {
    padding: calc(var(--header-total-h) + 1.5rem) 1rem 2rem;
  }
  
  .page-hero__title { font-size: clamp(1.25rem, 2.8vw, 2rem); }
  .page-hero__desc { font-size: 0.9rem; }
  
  .gallery-card__images { grid-template-columns: 1fr; }
  .gallery-card__images.single img { height: 240px; }
  .gallery-card { border-radius: 8px; }
  .gallery-card__info { padding: 1rem; }
  .gallery-card__tag { font-size: 0.65rem; }
  .gallery-card__info h3 { font-size: 0.95rem; margin: 0.35rem 0; }
  .gallery-card__info p { font-size: 0.85rem; }
  
  .fab {
    width: 50px;
    height: 50px;
    font-size: 1.1rem;
  }
  
  .fab--whatsapp { bottom: 1.25rem; right: 1.25rem; }
  .fab--call { bottom: 5rem; right: 1.25rem; }
}

/* Mobile (480px - 639px) */
@media (max-width: 639px) {
  :root {
    --header-h: 98px;
    --header-total-h: 98px;
    --container: min(94vw, 700px);
  }

  .header {
    min-height: var(--header-h);
  }

  .header__inner {
    padding: 0.35rem 0.65rem;
    gap: 0.5rem;
  }

  .logo__brand-img {
    height: 68px;
    max-width: min(250px, 48vw);
  }

  .logo__glow-ring {
    left: 6px;
    width: 54px;
    height: 54px;
  }

  .logo__shine {
    left: 5px;
    width: 64px;
    top: 4px;
    bottom: 4px;
  }

  .header-top {
    padding: 0.35rem 0.6rem;
    gap: 0.35rem;
  }

  .header-top__pill {
    font-size: 0.65rem;
    padding: 0.28rem 0.55rem;
  }

  .header-top__social-link {
    width: 26px;
    height: 26px;
    font-size: 0.7rem;
  }

  .header .logo__text { display: none; }

  .hero {
    padding: calc(var(--header-total-h) + 0.5rem) 0.65rem 1.5rem;
  }

  .hero .container {
    padding-inline: 0.65rem;
  }

  .hero__content {
    gap: 0.85rem;
    padding: 0.95rem 1rem;
    border-radius: 10px;
  }

  .hero__title {
    font-size: clamp(1.2rem, 6.5vw, 1.65rem);
    line-height: 1.25;
  }

  .hero__title .line {
    margin-bottom: 0.2rem;
  }

  .hero__subtitle {
    font-size: 0.84rem;
    line-height: 1.55;
  }

  .hero__badge {
    padding: 0.28rem 0.65rem;
    font-size: 0.62rem;
    letter-spacing: 0.06em;
  }

  .hero__actions {
    flex-direction: column;
    gap: 0.5rem;
  }

  .hero__actions .btn {
    width: 100%;
    padding: 0.75rem 1.1rem;
    font-size: 0.85rem;
  }

  .hero__stats {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 0.5rem;
  }

  .stat-pill { text-align: center; }
  .stat-pill strong { font-size: 0.95rem; }
  .stat-pill span { font-size: 0.65rem; }
  
  .section { padding: 2.5rem 1rem; }
  .section__header { margin: 0 auto 1.75rem; }
  .section__label { font-size: 0.65rem; }
  .section__title { font-size: clamp(1.1rem, 2.3vw, 1.75rem); }
  .section__desc { font-size: 0.85rem; }
  .section__cta { gap: 0.5rem; margin-top: 2rem; }
  
  .projects-preview { grid-template-columns: 1fr; gap: 0.75rem; }
  .project-card { border-radius: 8px; }
  .project-card__media { aspect-ratio: 16/14; }
  .project-card__tag { padding: 0.25rem 0.6rem; font-size: 0.6rem; top: 0.75rem; left: 0.75rem; }
  .project-card__body { padding: 0.875rem; }
  .project-card__body h3 { font-size: 0.95rem; margin-bottom: 0.3rem; }
  .project-card__body p { font-size: 0.8rem; margin-bottom: 0.75rem; }
  
  .counters { grid-template-columns: 1fr; gap: 0.75rem; padding: 1.25rem; margin-bottom: 1.25rem; }
  .counter-item { text-align: center; }
  .counter-item__num { font-size: clamp(1rem, 2vw, 1.5rem); }
  .counter-item__label { font-size: 0.65rem; }
  
  .about-split { gap: 1.25rem; }
  .about-split__badge { bottom: -0.5rem; right: -0.5rem; padding: 0.75rem; font-size: 0.8rem; }
  .about-split__badge-num { font-size: 1.25rem; }
  .about-split__mission { font-size: 0.9rem; margin-bottom: 1rem; }
  
  .feature-list { margin: 1.5rem 0; }
  .feature-list__item { padding: 0.5rem 0; gap: 0.5rem; font-size: 0.85rem; }
  .feature-list__icon { width: 32px; height: 32px; background-size: 16px 16px; }
  .feature-list__item strong { font-size: 0.85rem; }
  .feature-list__item p { font-size: 0.8rem; }
  
  .services-grid { grid-template-columns: 1fr; gap: 0.75rem; }
  .service-card {
    padding: 1.25rem;
    border-radius: 8px;
  }
  
  .service-card__icon { width: 36px; height: 36px; margin-bottom: 0.75rem; }
  .service-card h3 { font-size: 0.95rem; margin-bottom: 0.5rem; }
  .service-card p { font-size: 0.8rem; margin-bottom: 0.75rem; }
  .service-card__list { font-size: 0.75rem; }
  
  .service-card--wide { gap: 0.75rem; }
  
  .testimonials-grid { grid-template-columns: 1fr; gap: 0.75rem; }
  .testimonial-card { padding: 1rem; }
  .testimonial-card__stars { font-size: 0.85rem; margin-bottom: 0.75rem; }
  .testimonial-card p { font-size: 0.85rem; margin-bottom: 1rem; }
  .testimonial-card footer { gap: 0.75rem; }
  .testimonial-card__avatar { width: 36px; height: 36px; }
  .testimonial-card cite { font-size: 0.8rem; }
  .testimonial-card footer span { font-size: 0.7rem; }
  
  .contact-grid { gap: 1.25rem; }
  .contact-details { margin: 1.5rem 0; }
  .contact-details li { padding: 0.5rem 0; gap: 0.5rem; font-size: 0.85rem; }
  .contact-details__icon { width: 32px; height: 32px; background-size: 16px 16px; }
  .contact-details strong { font-size: 0.7rem; }
  
  .contact-form { padding: 1.25rem; border-radius: 8px; }
  .form-group { margin-bottom: 0.85rem; }
  .form-group label { font-size: 0.7rem; margin-bottom: 0.35rem; }
  .form-group input,
  .form-group select,
  .form-group textarea {
    padding: 0.7rem 0.75rem;
    font-size: 16px;
    border-radius: 6px;
  }
  
  .btn {
    padding: 0.7rem 1.25rem;
    font-size: 0.85rem;
    gap: 0.3rem;
    border-radius: 6px;
    min-height: 44px;
  }
  
  .btn--sm { padding: 0.45rem 0.9rem; font-size: 0.75rem; }
  
  .footer { padding: 2.5rem 1rem 1rem; }
  .footer__grid { grid-template-columns: 1fr; gap: 1.25rem; }
  .footer__brand p { font-size: 0.8rem; margin: 0.75rem 0; }

  .logo__brand-img--footer {
    height: 88px;
    max-width: min(340px, 88vw);
  }
  .footer__col h4 { font-size: 0.75rem; margin-bottom: 0.6rem; }
  .footer__col li { margin-bottom: 0.3rem; }
  .footer__col a { font-size: 0.8rem; }
  .footer__bottom { font-size: 0.75rem; padding-top: 1.25rem; }
  
  .why-card { padding: 1.25rem; border-radius: 8px; }
  .why-card__num { font-size: 1.25rem; margin-bottom: 0.5rem; }
  
  .timeline { padding-left: 1.5rem; }
  .timeline__item { padding-bottom: 2rem; }
  .timeline__item::before { left: -1.75rem; }
  .timeline__year { font-size: 1rem; }
  
  .industries {
    padding: 1.5rem;
    margin-bottom: 1.25rem;
    border-radius: 8px;
  }
  
  .industries h3 { margin-bottom: 0.75rem; font-size: 1rem; }
  .industries__tags { gap: 0.4rem; }
  .industries__tags span { padding: 0.35rem 0.85rem; font-size: 0.75rem; }
  
  .cta-banner {
    padding: 1.5rem;
    border-radius: 8px;
  }
  
  .cta-banner h2 { font-size: 1rem; margin-bottom: 0.4rem; }
  .cta-banner p { font-size: 0.85rem; margin-bottom: 1rem; }
  .cta-banner__actions { gap: 0.5rem; }
  
  .page-hero {
    padding: calc(var(--header-total-h) + 1rem) 1rem 1.5rem;
  }
  
  .page-hero--short { padding-bottom: 1.5rem; }
  .page-hero__title { font-size: clamp(1.1rem, 2.3vw, 1.75rem); }
  .page-hero__desc { font-size: 0.85rem; }
  
  .gallery-card { border-radius: 8px; }
  .gallery-card__images { grid-template-columns: 1fr; }
  .gallery-card__images.single img { height: 200px; }
  .gallery-card__info { padding: 0.875rem; }
  .gallery-card__tag { font-size: 0.6rem; }
  .gallery-card__info h3 { font-size: 0.9rem; margin: 0.25rem 0; }
  .gallery-card__info p { font-size: 0.8rem; }
  
  .fab {
    width: 48px;
    height: 48px;
    font-size: 1rem;
  }
  
  .fab--whatsapp { bottom: 1rem; right: 1rem; }
  .fab--call { bottom: 4.5rem; right: 1rem; }
  
  .welcome-services { gap: 1rem; margin-top: 2rem; }
  .welcome-service-card { padding: 1.5rem; }
  .welcome-service-card h3 { font-size: 1.1rem; margin-bottom: 0.75rem; }
  .welcome-service-card p { font-size: 0.9rem; margin-bottom: 1.25rem; }
  .welcome-service-card__features { gap: 0.5rem; }
  .welcome-service-card__features li { font-size: 0.85rem; }
  
  .clients-band__track { animation: none !important; justify-content: center; gap: 1rem; }
  .client-logo { font-size: 0.95rem; padding: 0.15rem 0.5rem; }
}

/* Extra Small Mobile (320px - 479px) */
@media (max-width: 479px) {
  :root {
    --header-h: 88px;
    --header-total-h: 88px;
    --container: min(95vw, 600px);
  }

  .header {
    min-height: var(--header-h);
  }

  .header__inner {
    padding: 0.3rem 0.55rem;
    gap: 0.35rem;
  }

  .logo__brand-img {
    height: 58px;
    max-width: min(220px, 46vw);
  }

  .logo__glow-ring {
    left: 5px;
    width: 46px;
    height: 46px;
  }

  .logo__shine {
    left: 4px;
    width: 54px;
    top: 3px;
    bottom: 3px;
  }

  .header-top__pill span {
    width: 16px;
    height: 16px;
  }

  .header .logo__text { display: none; }

  .nav {
    width: min(280px, 88vw);
    padding: calc(var(--header-h) + 1rem) 1rem 1.5rem;
  }

  .nav__list { gap: 0.85rem; }
  .nav__link { font-size: 0.9rem; }

  .hamburger {
    padding: 6px;
  }

  .hamburger span { width: 22px; }

  .hero {
    padding: calc(var(--header-total-h) + 0.35rem) 0.5rem 1rem;
  }

  .hero .container {
    padding-inline: 0.5rem;
  }

  .hero__content {
    gap: 0.7rem;
    padding: 0.8rem 0.85rem;
    border-radius: 8px;
  }

  .hero__title {
    font-size: clamp(1.05rem, 7vw, 1.4rem);
    line-height: 1.3;
  }

  .hero__title .line {
    display: block;
    margin-bottom: 0.15rem;
  }

  .hero__subtitle {
    font-size: 0.78rem;
    line-height: 1.5;
  }

  .hero__badge {
    padding: 0.22rem 0.55rem;
    font-size: 0.58rem;
    letter-spacing: 0.05em;
  }

  .hero__actions {
    flex-direction: column;
    gap: 0.4rem;
  }

  .hero__actions .btn {
    width: 100%;
    padding: 0.65rem 1rem;
    font-size: 0.8rem;
  }

  .hero__stats {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 0.35rem;
  }

  .stat-pill {
    text-align: center;
    padding: 0;
  }

  .stat-pill strong { font-size: 0.85rem; }
  .stat-pill span { font-size: 0.6rem; }
  
  .section { padding: 2rem 0.75rem; }
  .section__header { margin: 0 auto 1.5rem; }
  .section__label { font-size: 0.6rem; }
  .section__title { font-size: clamp(1rem, 2vw, 1.5rem); }
  .section__desc { font-size: 0.8rem; }
  .section__cta { gap: 0.4rem; margin-top: 1.5rem; }
  
  .projects-preview { grid-template-columns: 1fr; gap: 0.5rem; }
  .project-card { border-radius: 6px; }
  .project-card__media { aspect-ratio: 16/16; }
  .project-card__tag { padding: 0.2rem 0.5rem; font-size: 0.55rem; top: 0.5rem; left: 0.5rem; }
  .project-card__body { padding: 0.75rem; }
  .project-card__body h3 { font-size: 0.9rem; margin-bottom: 0.2rem; }
  .project-card__body p { font-size: 0.75rem; margin-bottom: 0.5rem; }
  .link-arrow { font-size: 0.8rem; }
  
  .counters { grid-template-columns: 1fr; gap: 0.5rem; padding: 1rem; margin-bottom: 1rem; }
  .counter-item__num { font-size: clamp(0.9rem, 1.8vw, 1.25rem); }
  .counter-item__label { font-size: 0.6rem; }
  
  .about-split { gap: 1rem; }
  .about-split__badge { display: none; }
  .about-split__mission { font-size: 0.85rem; margin-bottom: 0.75rem; line-height: 1.5; }
  
  .feature-list { margin: 1rem 0; }
  .feature-list__item { padding: 0.4rem 0; gap: 0.4rem; border: none; }
  .feature-list__icon { width: 28px; height: 28px; background-size: 14px 14px; }
  .feature-list__item strong { font-size: 0.8rem; margin-bottom: 0.15rem; }
  .feature-list__item p { font-size: 0.75rem; }
  
  .services-grid { grid-template-columns: 1fr; gap: 0.5rem; }
  .service-card {
    padding: 1rem;
    border-radius: 6px;
  }
  
  .service-card__icon { width: 32px; height: 32px; margin-bottom: 0.5rem; }
  .service-card h3 { font-size: 0.9rem; margin-bottom: 0.35rem; }
  .service-card p { font-size: 0.75rem; margin-bottom: 0.5rem; }
  .service-card__list { font-size: 0.7rem; }
  
  .testimonials-grid { grid-template-columns: 1fr; gap: 0.5rem; }
  .testimonial-card { padding: 0.875rem; }
  .testimonial-card__stars { font-size: 0.8rem; margin-bottom: 0.5rem; }
  .testimonial-card p { font-size: 0.8rem; margin-bottom: 0.75rem; line-height: 1.4; }
  .testimonial-card footer { gap: 0.5rem; }
  .testimonial-card__avatar { width: 32px; height: 32px; }
  .testimonial-card cite { font-size: 0.75rem; }
  .testimonial-card footer span { font-size: 0.65rem; }
  
  .contact-grid { gap: 1rem; }
  .contact-details { margin: 1rem 0; }
  .contact-details li { padding: 0.4rem 0; gap: 0.4rem; font-size: 0.8rem; }
  .contact-details__icon { width: 28px; height: 28px; background-size: 14px 14px; }
  .contact-details strong { font-size: 0.65rem; }
  
  .contact-form { padding: 1rem; border-radius: 6px; }
  .form-group { margin-bottom: 0.7rem; }
  .form-group label { font-size: 0.65rem; margin-bottom: 0.3rem; }
  .form-group input,
  .form-group select,
  .form-group textarea {
    padding: 0.65rem 0.7rem;
    font-size: 16px;
    border-radius: 5px;
  }
  
  .btn {
    padding: 0.65rem 1.1rem;
    font-size: 0.8rem;
    gap: 0.25rem;
    border-radius: 5px;
    min-height: 40px;
  }
  
  .btn--sm { padding: 0.4rem 0.8rem; font-size: 0.7rem; }
  
  .footer { padding: 2rem 0.75rem 0.75rem; }
  .footer__grid { grid-template-columns: 1fr; gap: 1rem; }
  .footer__brand p { font-size: 0.75rem; margin: 0.5rem 0; }
  .footer__col h4 { font-size: 0.7rem; margin-bottom: 0.5rem; }
  .footer__col li { margin-bottom: 0.2rem; }
  .footer__col a { font-size: 0.75rem; }
  .footer__bottom { font-size: 0.7rem; padding-top: 1rem; }
  
  .why-card { padding: 1rem; border-radius: 6px; }
  .why-card__num { font-size: 1.1rem; margin-bottom: 0.35rem; }
  
  .timeline { padding-left: 1.25rem; }
  .timeline__item { padding-bottom: 1.5rem; }
  .timeline__item::before { left: -1.5rem; }
  .timeline__year { font-size: 0.95rem; }
  
  .industries {
    padding: 1.25rem 0.75rem;
    margin-bottom: 1rem;
    border-radius: 6px;
  }
  
  .industries h3 { margin-bottom: 0.6rem; font-size: 0.95rem; }
  .industries__tags { gap: 0.3rem; }
  .industries__tags span { padding: 0.3rem 0.7rem; font-size: 0.7rem; }
  
  .cta-banner {
    padding: 1.25rem 0.75rem;
    border-radius: 6px;
  }
  
  .cta-banner h2 { font-size: 0.95rem; margin-bottom: 0.3rem; }
  .cta-banner p { font-size: 0.8rem; margin-bottom: 0.75rem; }
  .cta-banner__actions { gap: 0.4rem; }
  
  .page-hero {
    padding: calc(var(--header-total-h) + 0.75rem) 0.75rem 1.25rem;
  }
  
  .page-hero--short { padding-bottom: 1.25rem; }
  .page-hero__title { font-size: clamp(1rem, 2vw, 1.5rem); }
  .page-hero__desc { font-size: 0.8rem; }
  
  .gallery-card { border-radius: 6px; }
  .gallery-card__images { grid-template-columns: 1fr; }
  .gallery-card__images.single img { height: 160px; }
  .gallery-card__info { padding: 0.75rem; }
  .gallery-card__tag { font-size: 0.55rem; }
  .gallery-card__info h3 { font-size: 0.85rem; margin: 0.2rem 0; }
  .gallery-card__info p { font-size: 0.75rem; }
  
  .fab {
    width: 44px;
    height: 44px;
    font-size: 0.95rem;
    bottom: 0.75rem;
    right: 0.75rem;
  }
  
  .fab--whatsapp { bottom: 0.75rem; right: 0.75rem; }
  .fab--call { bottom: 4rem; right: 0.75rem; }
  
  .welcome-services { gap: 0.75rem; margin-top: 1.5rem; }
  .welcome-service-card { padding: 1.25rem; }
  .welcome-service-card h3 { font-size: 1rem; margin-bottom: 0.6rem; }
  .welcome-service-card p { font-size: 0.85rem; margin-bottom: 1rem; }
  .welcome-service-card__icon { width: 48px; height: 48px; margin-bottom: 1rem; }
  .welcome-service-card__icon svg { width: 24px; height: 24px; }
  .welcome-service-card__features { gap: 0.4rem; }
  .welcome-service-card__features li { font-size: 0.8rem; }
  
  .clients-band { padding: 1.5rem 0.5rem; }
  .clients-band__track { animation: none !important; gap: 0.75rem; }
  .client-logo { font-size: 0.9rem; padding: 0.1rem 0.4rem; }
}
