/* Thanshi Technologies — Skyraan-inspired layout */

:root {
  --bg: #ffffff;
  --bg-gray: #f4f7fb;
  --bg-dark: #0f172a;
  --text: #1e293b;
  --text-muted: #64748b;
  --accent: #2563eb;
  --accent-dark: #1d4ed8;
  --accent-soft: #eff6ff;
  --topbar: #0f2744;
  --border: #e2e8f0;
  --radius: 8px;
  --font: "Plus Jakarta Sans", system-ui, sans-serif;
  --topbar-h: 42px;
  --nav-h: 76px;
  --header-total: calc(var(--topbar-h) + var(--nav-h));
  --shadow: 0 4px 24px rgba(15, 23, 42, 0.08);
  --transition: 0.3s ease;
}

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

html {
  scroll-behavior: smooth;
  scroll-padding-top: var(--header-total);
}

body {
  font-family: var(--font);
  color: var(--text);
  background: var(--bg);
  line-height: 1.6;
  overflow-x: hidden;
}

.container { width: min(1200px, 92vw); margin-inline: auto; }
.center { text-align: center; }

/* Top bar */
.topbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1001;
  height: var(--topbar-h);
  background: var(--topbar);
  color: #fff;
  font-size: 0.8rem;
}

.topbar-inner {
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
}

.topbar-email {
  color: #fff;
  text-decoration: none;
  font-weight: 500;
  white-space: nowrap;
  flex-shrink: 0;
}
.topbar-email:hover { color: #e2e8f0; text-decoration: underline; }

.topbar-right {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 1.25rem;
  flex-wrap: wrap;
  min-width: 0;
}

.topbar-btn {
  background: var(--accent);
  color: #fff;
  padding: 0.45rem 1.15rem;
  border-radius: 999px;
  text-decoration: none;
  font-weight: 700;
  font-size: 0.78rem;
  white-space: nowrap;
  flex-shrink: 0;
  transition: background var(--transition), transform 0.2s ease;
}
.topbar-btn:hover {
  background: var(--accent-dark);
  transform: translateY(-1px);
}

.topbar-phone {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  color: #fff;
  text-decoration: underline;
  text-underline-offset: 3px;
  font-weight: 500;
  white-space: nowrap;
}
.topbar-phone:hover { color: #e2e8f0; }
.topbar-phone svg { flex-shrink: 0; opacity: 0.95; }

.topbar-social {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  padding-left: 0.25rem;
}

.topbar-social .social-icon {
  width: 22px;
  height: 22px;
  border: none;
  border-radius: 0;
  color: #fff;
  background: transparent;
  padding: 0;
}

.topbar-social .social-icon svg {
  width: 18px;
  height: 18px;
}

.topbar-social .social-icon:hover {
  color: #93c5fd;
  background: transparent;
  transform: none;
  border: none;
}

.social-icon,
.topbar-social a,
.footer-social a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.28);
  color: #cbd5e1;
  text-decoration: none;
  transition: color 0.25s ease, background 0.25s ease, border-color 0.25s ease, transform 0.2s ease;
}

.social-icon svg,
.topbar-social svg,
.footer-social svg {
  width: 14px;
  height: 14px;
  display: block;
}

.social-icon:hover,
.topbar-social a:hover,
.footer-social a:hover {
  color: #fff;
  background: var(--accent);
  border-color: var(--accent);
  transform: translateY(-1px);
}

/* Header */
.header {
  position: fixed;
  top: var(--topbar-h);
  left: 0;
  right: 0;
  z-index: 1000;
  height: var(--nav-h);
  background: #fff;
  border-bottom: 1px solid var(--border);
  transition: box-shadow var(--transition);
}

.header.scrolled { box-shadow: var(--shadow); }

.nav {
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.nav-end {
  display: flex;
  align-items: center;
  gap: 1.25rem;
  margin-left: auto;
}

.logo-img { height: 42px; width: auto; }

.nav-links {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  list-style: none;
}

.nav-links > li > a,
.nav-drop-btn {
  color: var(--text);
  text-decoration: none;
  font-size: 0.9rem;
  font-weight: 600;
  background: none;
  border: none;
  cursor: pointer;
  font-family: var(--font);
}

.nav-links a:hover, .nav-drop-btn:hover { color: var(--accent); }
.nav-links a.active,
.nav-links .btn.active { color: var(--accent); }
.nav-links .btn.btn-primary.active {
  color: #fff;
  background: var(--accent-dark);
}

/* About page */
.page-about main { padding-top: 0; }

.page-hero {
  margin-top: var(--header-total);
  position: relative;
  height: 280px;
  overflow: hidden;
}

.page-hero img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.page-hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(15, 39, 68, 0.9), rgba(15, 39, 68, 0.6));
}

.page-hero-content {
  position: absolute;
  inset: 0;
  z-index: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  color: #fff;
}

.breadcrumb {
  font-size: 0.85rem;
  margin-bottom: 0.75rem;
  opacity: 0.9;
}

.breadcrumb a {
  color: #93c5fd;
  text-decoration: none;
}

.breadcrumb span { margin: 0 0.35rem; opacity: 0.6; }

.page-hero-content h1 {
  font-size: clamp(2rem, 5vw, 3rem);
  font-weight: 800;
  color: #fff;
  margin-bottom: 0.35rem;
}

.page-hero-content > p {
  font-size: 1rem;
  opacity: 0.85;
}

.about-why {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
}

.about-divider {
  border: none;
  border-top: 1px solid var(--border);
  margin: 1.25rem 0;
}

.about-tagline {
  color: var(--text-muted);
  font-size: 0.95rem;
}

/* Execute projects slider */
.execute-slider {
  position: relative;
  max-width: 960px;
  margin: 0 auto;
}

.exec-viewport {
  overflow: hidden;
  border-radius: var(--radius);
  border: 1px solid var(--border);
  background: #fff;
  box-shadow: var(--shadow);
}

.exec-track {
  display: flex;
  transition: transform 0.5s ease;
}

.exec-slide {
  flex: 0 0 100%;
  min-width: 100%;
}

.exec-slide.active { }

.exec-grid {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 0;
  min-height: 320px;
}

.exec-visual {
  min-height: 280px;
  background-size: cover;
  background-position: center;
}

.exec-v1 { background-image: linear-gradient(135deg, #dbeafe, #60a5fa); }
.exec-v2 { background-image: linear-gradient(135deg, #e0e7ff, #818cf8); }
.exec-v3 { background-image: linear-gradient(135deg, #ccfbf1, #2dd4bf); }

.exec-content {
  padding: 2.5rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.exec-num {
  font-size: 3rem;
  font-weight: 800;
  color: #dbeafe;
  -webkit-text-stroke: 1px var(--accent);
  line-height: 1;
  margin-bottom: 0.75rem;
}

.exec-content h3 {
  font-size: 1.35rem;
  margin-bottom: 0.75rem;
  color: var(--accent);
}

.exec-content p {
  color: var(--text-muted);
  font-size: 0.95rem;
  line-height: 1.7;
}

.exec-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 44px;
  height: 44px;
  border: 1px solid var(--border);
  border-radius: 50%;
  background: #fff;
  cursor: pointer;
  z-index: 2;
  font-size: 1.5rem;
  box-shadow: var(--shadow);
}

.exec-arrow:hover { background: var(--accent); color: #fff; border-color: var(--accent); }
.exec-prev { left: -1.25rem; }
.exec-next { right: -1.25rem; }

.exec-dots {
  display: flex;
  justify-content: center;
  gap: 0.5rem;
  margin-top: 1.25rem;
}

.exec-dots button {
  width: 8px;
  height: 8px;
  border: none;
  border-radius: 50%;
  background: #cbd5e1;
  cursor: pointer;
  padding: 0;
}

.exec-dots button.active {
  background: var(--accent);
  width: 24px;
  border-radius: 999px;
}

/* 7-step process timeline */
.process-timeline {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.25rem;
}

.process-item {
  display: flex;
  gap: 1.25rem;
  padding: 1.5rem;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--radius);
}

.process-badge {
  flex-shrink: 0;
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  font-size: 0.9rem;
  background: var(--accent);
  color: #fff;
  border-radius: 50%;
}

.process-item h4 {
  font-size: 1rem;
  color: #fff;
  margin-bottom: 0.35rem;
}

.process-item p {
  font-size: 0.85rem;
  color: #94a3b8;
}

/* Blog grid */
.blog-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
}

.blog-card {
  display: flex;
  gap: 1rem;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: transform var(--transition);
}

.blog-card:hover { transform: translateY(-4px); }

.blog-thumb {
  flex-shrink: 0;
  width: 140px;
  background-size: cover;
  background-position: center;
}

.b1 { background: linear-gradient(135deg, #dbeafe, #3b82f6); }
.b2 { background: linear-gradient(135deg, #e0e7ff, #6366f1); }
.b3 { background: linear-gradient(135deg, #d1fae5, #10b981); }
.b4 { background: linear-gradient(135deg, #fef3c7, #f59e0b); }

.blog-body {
  padding: 1.25rem 1.25rem 1.25rem 0;
}

.blog-body h4 {
  font-size: 0.95rem;
  margin-bottom: 0.35rem;
  line-height: 1.4;
}

.blog-body p {
  font-size: 0.8rem;
  color: var(--text-muted);
  margin-bottom: 0.5rem;
}

.blog-body time {
  font-size: 0.75rem;
  color: var(--accent);
  font-weight: 600;
}

/* Mega menu */
.has-dropdown { position: relative; }

.mega-menu {
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%) translateY(8px);
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
  min-width: 720px;
  padding: 1.5rem;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity var(--transition), transform var(--transition), visibility var(--transition);
}

.has-dropdown:hover .mega-menu,
.has-dropdown.open .mega-menu {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: translateX(-50%) translateY(0);
}

.mega-col h4 {
  font-size: 0.8rem;
  color: var(--accent);
  margin-bottom: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.mega-col a {
  display: block;
  font-size: 0.85rem;
  color: var(--text-muted);
  text-decoration: none;
  padding: 0.35rem 0;
}
.mega-col a:hover { color: var(--accent); }

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
}
.nav-toggle span {
  width: 24px;
  height: 2px;
  background: var(--text);
  transition: var(--transition);
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.7rem 1.5rem;
  font-family: var(--font);
  font-size: 0.9rem;
  font-weight: 600;
  text-decoration: none;
  border-radius: var(--radius);
  border: none;
  cursor: pointer;
  transition: var(--transition);
}

.btn-sm { padding: 0.45rem 1rem; font-size: 0.85rem; }
.btn-lg { padding: 0.9rem 1.75rem; font-size: 1rem; }
.btn-primary { background: var(--accent); color: #fff; }
.btn-primary:hover { background: var(--accent-dark); }
.btn-ghost { background: transparent; border: 1px solid var(--border); color: var(--text); }
.btn-ghost:hover { border-color: var(--accent); color: var(--accent); }

/* Hero banner slider */
.hero-banner {
  margin-top: var(--header-total);
  position: relative;
  height: min(88vh, 720px);
  min-height: 520px;
  overflow: hidden;
  background: var(--topbar);
}

.hero-slides { position: relative; height: 100%; }

.hero-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  visibility: hidden;
  z-index: 0;
  transition: opacity 1s ease, visibility 1s ease;
}

.hero-slide.active {
  opacity: 1;
  visibility: visible;
  z-index: 1;
}

.hero-media {
  position: absolute;
  inset: 0;
  overflow: hidden;
}

.hero-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1);
}

.hero-slide.active img {
  transform: scale(1.08);
  transition: transform 8s ease-out;
  will-change: transform;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(105deg, rgba(15, 39, 68, 0.92) 0%, rgba(15, 39, 68, 0.72) 45%, rgba(15, 39, 68, 0.35) 100%),
    linear-gradient(0deg, rgba(15, 23, 42, 0.55) 0%, transparent 40%);
}

.hero-content {
  position: absolute;
  inset: 0;
  z-index: 2;
  display: flex;
  flex-direction: column;
  justify-content: center;
  max-width: 640px;
  color: #fff;
  padding-bottom: 4rem;
}

.hero-content > * {
  opacity: 0;
  transform: translateY(28px);
  animation: none;
}

.hero-slide:not(.active) .hero-content > * {
  opacity: 0;
  transform: translateY(28px);
}

.hero-slide.active .hero-content > * {
  animation: heroContentIn 0.85s cubic-bezier(0.22, 1, 0.36, 1) forwards;
}

.hero-slide.active .hero-badge { animation-delay: 0.06s; }
.hero-slide.active .hero-content h1 { animation-delay: 0.14s; }
.hero-slide.active .hero-content > p { animation-delay: 0.24s; }
.hero-slide.active .hero-cta-group { animation-delay: 0.34s; }
.hero-slide.active .hero-trust { animation-delay: 0.44s; }

@keyframes heroContentIn {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.hero-badge {
  display: inline-block;
  width: fit-content;
  padding: 0.4rem 0.9rem;
  margin-bottom: 1rem;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: #fff;
  background: rgba(37, 99, 235, 0.85);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 4px;
}

.hero-cta-group {
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem;
  margin-bottom: 1.25rem;
}

.btn-hero-outline {
  background: transparent;
  color: #fff;
  border: 2px solid rgba(255, 255, 255, 0.75);
}

.btn-hero-outline:hover {
  background: #fff;
  color: var(--topbar);
  border-color: #fff;
}

.hero-trust {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem 1.25rem;
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.85);
}

.hero-trust li {
  display: flex;
  align-items: center;
  gap: 0.4rem;
}

.hero-trust li::before {
  content: "";
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #60a5fa;
  flex-shrink: 0;
}

.hero-content h1 {
  font-size: clamp(1.85rem, 4.5vw, 3rem);
  font-weight: 800;
  color: #fff;
  margin-bottom: 1rem;
  line-height: 1.15;
  text-shadow: 0 2px 24px rgba(0, 0, 0, 0.2);
}

.hero-content p {
  font-size: clamp(1rem, 2vw, 1.12rem);
  color: rgba(255, 255, 255, 0.92);
  margin-bottom: 1.75rem;
  max-width: 540px;
  line-height: 1.65;
}

.hero-controls {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 5;
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 1.5rem;
  padding: 0 2rem 2rem;
  pointer-events: none;
}

.hero-controls > * { pointer-events: auto; }

.hero-counter {
  display: flex;
  align-items: baseline;
  gap: 0.15rem;
  font-weight: 700;
  color: #fff;
  min-width: 4rem;
}

.hero-counter-current {
  font-size: 1.75rem;
  line-height: 1;
}

.hero-counter-sep,
.hero-counter-total {
  font-size: 0.95rem;
  color: rgba(255, 255, 255, 0.5);
}

.hero-dots {
  display: flex;
  align-items: center;
  gap: 0.55rem;
  flex: 1;
  justify-content: center;
  max-width: 280px;
}

.hero-dots button {
  width: 36px;
  height: 4px;
  border: none;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.35);
  cursor: pointer;
  padding: 0;
  transition: background 0.3s ease, width 0.35s ease;
}

.hero-dots button:hover {
  background: rgba(255, 255, 255, 0.65);
}

.hero-dots button.active {
  background: #fff;
  width: 52px;
}

.hero-progress {
  flex: 1;
  max-width: 200px;
  height: 3px;
  background: rgba(255, 255, 255, 0.2);
  border-radius: 999px;
  overflow: hidden;
}

.hero-progress-bar {
  display: block;
  height: 100%;
  width: 0;
  background: linear-gradient(90deg, var(--accent), #60a5fa);
  border-radius: inherit;
}

.hero-progress-bar.is-running {
  animation: heroProgressFill var(--hero-interval, 6s) linear forwards;
}

@keyframes heroProgressFill {
  from { width: 0%; }
  to { width: 100%; }
}

.hero-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 6;
  width: 52px;
  height: 52px;
  border: 1px solid rgba(255, 255, 255, 0.25);
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(8px);
  cursor: pointer;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.25s ease, border-color 0.25s ease, transform 0.2s ease;
}

.hero-nav svg {
  width: 22px;
  height: 22px;
}

.hero-nav:hover {
  background: var(--accent);
  border-color: var(--accent);
  transform: translateY(-50%) scale(1.05);
}

.hero-prev { left: 1.5rem; }
.hero-next { right: 1.5rem; }

.scroll-hint {
  position: absolute;
  bottom: 2rem;
  right: 2rem;
  z-index: 5;
  color: rgba(255, 255, 255, 0.55);
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.25em;
  text-decoration: none;
  writing-mode: vertical-rl;
  transition: color 0.25s ease;
}

.scroll-hint:hover { color: #fff; }

@media (prefers-reduced-motion: reduce) {
  .hero-slide,
  .hero-slide img,
  .hero-content > *,
  .hero-progress-bar {
    transition: none !important;
    animation: none !important;
  }
  .hero-slide.active img { transform: none; }
  .hero-slide.active .hero-content > * {
    opacity: 1;
    transform: none;
  }
}

/* Trust bar */
.trust-bar {
  background: #fff;
  border-bottom: 1px solid var(--border);
  padding: 1.35rem 0;
}

.trust-bar-inner {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
  text-align: center;
}

.trust-stat strong {
  display: block;
  font-size: 1.65rem;
  font-weight: 800;
  color: var(--accent);
  line-height: 1.2;
}

.trust-stat span {
  font-size: 0.82rem;
  color: var(--text-muted);
  font-weight: 500;
}

/* Sections */
.section { padding: 5rem 0; }
.section-gray { background: var(--bg-gray); }
.section-dark { background: var(--bg-dark); color: #fff; }
.section-dark h2, .section-dark h4 { color: #fff; }
.section-dark p { color: #94a3b8; }

.section-label {
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--accent);
  margin-bottom: 0.5rem;
}

.section-head { margin-bottom: 2.5rem; }
.section-head h2 { font-size: clamp(1.5rem, 3vw, 2.25rem); font-weight: 800; }
.section-desc { color: var(--text-muted); margin-top: 0.5rem; }

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

.about-img-wrap {
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
}

.about-img-wrap img { width: 100%; height: 360px; object-fit: cover; display: block; }

.about-text h2 { font-size: 1.75rem; margin-bottom: 1rem; }
.about-text .lead { font-size: 1.1rem; font-weight: 600; margin-bottom: 1rem; }
.about-text p { color: var(--text-muted); margin-bottom: 1rem; }

.about-points {
  list-style: none;
  margin: 1.25rem 0 1.5rem;
}

.about-points li {
  position: relative;
  padding-left: 1.35rem;
  margin-bottom: 0.6rem;
  color: var(--text);
  font-size: 0.95rem;
  font-weight: 500;
}

.about-points li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.55em;
  width: 8px;
  height: 8px;
  border-radius: 2px;
  background: var(--accent);
}

.about-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}

/* Value grid */
.value-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.25rem;
}

.value-card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.75rem 1.5rem;
  transition: box-shadow var(--transition), border-color var(--transition);
}

.value-card:hover {
  border-color: var(--accent);
  box-shadow: var(--shadow);
}

.value-icon {
  display: block;
  font-size: 1.75rem;
  font-weight: 800;
  color: var(--accent-soft);
  -webkit-text-stroke: 1px var(--accent);
  margin-bottom: 0.75rem;
  line-height: 1;
}

.value-card h3 {
  font-size: 1.05rem;
  margin-bottom: 0.5rem;
}

.value-card p {
  font-size: 0.9rem;
  color: var(--text-muted);
  line-height: 1.55;
}

/* Service blocks */
.service-blocks {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem;
}

.service-block {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 2rem;
  display: flex;
  flex-direction: column;
  transition: box-shadow var(--transition), transform 0.25s ease;
}

.service-block:hover {
  box-shadow: var(--shadow);
  transform: translateY(-3px);
}

.service-tag {
  display: inline-block;
  font-size: 0.68rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--accent);
  background: var(--accent-soft);
  padding: 0.25rem 0.6rem;
  border-radius: 4px;
  margin-bottom: 0.75rem;
  width: fit-content;
}

.service-block h3 {
  font-size: 1.15rem;
  margin-bottom: 0.65rem;
  color: var(--text);
}

.service-intro {
  font-size: 0.9rem;
  color: var(--text-muted);
  margin-bottom: 1rem;
  line-height: 1.55;
}

.service-list { list-style: none; flex: 1; margin-bottom: 1.25rem; }
.service-list li {
  position: relative;
  padding: 0.45rem 0 0.45rem 1.25rem;
  font-size: 0.92rem;
  color: var(--text);
  border-bottom: 1px solid var(--border);
}
.service-list li:last-child { border-bottom: none; }
.service-list li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--accent);
  font-weight: 700;
  font-size: 0.8rem;
}

.service-link {
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--accent);
  text-decoration: none;
}

.service-link:hover { text-decoration: underline; }

/* SDLC */
.sdlc-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
}

.sdlc-card {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--radius);
  padding: 1.5rem;
}

.sdlc-num {
  font-size: 2rem;
  font-weight: 800;
  color: var(--accent);
  opacity: 0.8;
  display: block;
  margin-bottom: 0.5rem;
}

.sdlc-card h4 { font-size: 1rem; margin-bottom: 0.5rem; }
.sdlc-card p { font-size: 0.85rem; }

/* Tech marquee */
.tech-marquee {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.75rem;
}

.tech-marquee span {
  padding: 0.6rem 1.25rem;
  background: var(--bg-gray);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--text-muted);
}

/* Consult banner */
.consult-banner {
  background: linear-gradient(135deg, var(--accent) 0%, #0ea5e9 100%);
  padding: 3.5rem 0;
  color: #fff;
}

.consult-inner {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
}

.consult-label {
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  opacity: 0.9;
  margin-bottom: 0.35rem;
}

.consult-inner h2 { font-size: clamp(1.35rem, 3vw, 1.75rem); color: #fff; margin-bottom: 0.5rem; }
.consult-inner p { opacity: 0.95; max-width: 560px; line-height: 1.6; }
.consult-inner .btn { background: #fff; color: var(--accent); }
.consult-inner .btn:hover { background: #f1f5f9; }

/* Highlight slider */
.highlight-slider { position: relative; max-width: 900px; margin: 0 auto; }

.hl-viewport { overflow: hidden; border-radius: var(--radius); }

.hl-track {
  display: flex;
  transition: transform 0.5s ease;
}

.hl-slide {
  flex: 0 0 100%;
  min-width: 100%;
  padding: 2rem;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  text-align: center;
}

.hl-num {
  font-size: 3rem;
  font-weight: 800;
  color: var(--accent-soft);
  color: #dbeafe;
  -webkit-text-stroke: 1px var(--accent);
  display: block;
  margin-bottom: 1rem;
}

.hl-img {
  height: 120px;
  border-radius: var(--radius);
  margin-bottom: 1.25rem;
  background-size: cover;
  background-position: center;
}
.hl-img-1 { background-image: linear-gradient(135deg, #dbeafe, #93c5fd); }
.hl-img-2 { background-image: linear-gradient(135deg, #e0e7ff, #a5b4fc); }
.hl-img-3 { background-image: linear-gradient(135deg, #ccfbf1, #5eead4); }
.hl-img-4 { background-image: linear-gradient(135deg, #fef3c7, #fcd34d); }

.hl-slide h3 { font-size: 1.25rem; margin-bottom: 0.5rem; }
.hl-slide p { color: var(--text-muted); max-width: 480px; margin: 0 auto; }

.hl-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 40px;
  height: 40px;
  border: 1px solid var(--border);
  border-radius: 50%;
  background: #fff;
  cursor: pointer;
  z-index: 2;
  font-size: 1.25rem;
}
.hl-arrow:hover { background: var(--accent); color: #fff; border-color: var(--accent); }
.hl-prev { left: -0.5rem; }
.hl-next { right: -0.5rem; }

.hl-dots {
  display: flex;
  justify-content: center;
  gap: 0.5rem;
  margin-top: 1.25rem;
}
.hl-dots button {
  width: 8px;
  height: 8px;
  border: none;
  border-radius: 50%;
  background: #cbd5e1;
  cursor: pointer;
  padding: 0;
}
.hl-dots button.active { background: var(--accent); width: 24px; border-radius: 999px; }

/* Excellence grid */
.excellence-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 1rem;
}

.excellence-grid article {
  text-align: center;
  padding: 1.5rem 1rem;
  background: var(--bg-gray);
  border-radius: var(--radius);
  border: 1px solid var(--border);
}

.excellence-grid .exc-num {
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--accent);
  display: block;
  margin-bottom: 0.65rem;
  line-height: 1;
}

.excellence-grid h4 { font-size: 0.95rem; margin-bottom: 0.4rem; }
.excellence-grid p { font-size: 0.85rem; color: var(--text-muted); }
.excellence-grid h4 { font-size: 0.95rem; margin-bottom: 0.35rem; }
.excellence-grid p { font-size: 0.8rem; color: var(--text-muted); }

/* Portfolio — Skyraan showcase style */
.section-portfolio {
  background: #f8fbff;
  padding: 5rem 0;
}

.portfolio-hero {
  text-align: center;
  max-width: 720px;
  margin: 0 auto 2rem;
}

.portfolio-hero h2 {
  font-size: clamp(1.75rem, 4vw, 2.35rem);
  font-weight: 800;
  margin-bottom: 0.75rem;
  color: var(--text);
}

.portfolio-lead {
  font-size: 1.05rem;
  color: var(--text-muted);
  line-height: 1.6;
}

.portfolio-tabs {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-bottom: 1.25rem;
}

.port-tab {
  padding: 0.75rem 1.6rem;
  border: none;
  background: #e8f2fc;
  border-radius: 6px;
  font-family: var(--font);
  font-size: 0.9rem;
  font-weight: 700;
  color: #5b8fd4;
  cursor: pointer;
  transition: background 0.25s ease, color 0.25s ease;
}

.port-tab:hover {
  background: #d6e8fa;
  color: #3b7bc8;
}

.port-tab.active {
  background: #5b9fd9;
  color: #fff;
}

.portfolio-note {
  text-align: center;
  font-size: 0.95rem;
  color: #64748b;
  max-width: 720px;
  margin: 0 auto 2.5rem;
  line-height: 1.55;
}

.portfolio-showcase-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem;
}

.portfolio-showcase {
  transition: opacity 0.35s ease;
}

.portfolio-showcase.is-hidden {
  display: none;
}

.showcase-card {
  position: relative;
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: stretch;
  min-height: 340px;
  padding: 2rem 1.75rem;
  background: #fff;
  border: 1px solid #b8d9f5;
  border-radius: 10px;
  text-decoration: none;
  overflow: hidden;
  transition: box-shadow 0.3s ease, border-color 0.3s ease;
}

.showcase-card:hover {
  border-color: #7eb8ea;
  box-shadow: 0 16px 40px rgba(37, 99, 235, 0.12);
}

.showcase-deco {
  position: absolute;
  pointer-events: none;
  z-index: 0;
}

.deco-plus {
  top: 10px;
  right: 10px;
  width: 72px;
  height: 72px;
  opacity: 0.45;
  background-image: radial-gradient(#93c5fd 1.5px, transparent 1.5px);
  background-size: 11px 11px;
}

.deco-wave {
  left: -20px;
  bottom: -20px;
  width: 140px;
  height: 140px;
  opacity: 0.35;
  border-radius: 50%;
  border: 2px solid #bfdbfe;
  box-shadow:
    0 0 0 8px rgba(191, 219, 254, 0.4),
    0 0 0 18px rgba(191, 219, 254, 0.25),
    0 0 0 30px rgba(191, 219, 254, 0.12);
}

.showcase-text {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  padding-right: 0.5rem;
}

.showcase-text h3 {
  font-size: clamp(1.2rem, 2.2vw, 1.55rem);
  font-weight: 700;
  color: #3b82c4;
  margin: 0 0 0.85rem;
  line-height: 1.3;
}

.showcase-text p {
  font-size: 0.92rem;
  color: #6ba3d9;
  line-height: 1.65;
  margin: 0;
  max-width: 280px;
}

.showcase-visual {
  position: relative;
  z-index: 2;
  min-height: 260px;
}

.showcase-web {
  display: flex;
  align-items: flex-end;
  justify-content: center;
}

.phone-mock,
.web-mock {
  display: block;
  background-color: #dbeafe;
  background-size: cover;
  background-position: center top;
  background-repeat: no-repeat;
}

.phone-mock {
  position: absolute;
  width: 38%;
  max-width: 130px;
  aspect-ratio: 9 / 19;
  border-radius: 22px;
  border: 3px solid #1e293b;
  box-shadow: 0 14px 36px rgba(37, 99, 235, 0.22);
}

.phone-back {
  right: 30%;
  bottom: 6%;
  transform: rotate(-8deg);
  z-index: 1;
}

.phone-front {
  right: 4%;
  bottom: 2%;
  transform: rotate(5deg);
  z-index: 2;
}

.web-mock {
  width: 92%;
  max-width: 280px;
  aspect-ratio: 16 / 10;
  border-radius: 10px 10px 4px 4px;
  border: 3px solid #1e293b;
  border-bottom-width: 10px;
  box-shadow: 0 16px 36px rgba(37, 99, 235, 0.2);
}

/* Phone & web screenshots */
.shot-1 { background-image: url("https://images.unsplash.com/photo-1516321497487-e288fb19713f?auto=format&fit=crop&w=400&q=80"); }
.shot-2 { background-image: url("https://images.unsplash.com/photo-1523275535780-e5990eac2ca0?auto=format&fit=crop&w=400&q=80"); }
.shot-3 { background-image: url("https://images.unsplash.com/photo-1571019614242-c5c5dee9f50e?auto=format&fit=crop&w=400&q=80"); }
.shot-4 { background-image: url("https://images.unsplash.com/photo-1434494878577-86c23bcb06b9?auto=format&fit=crop&w=400&q=80"); }
.shot-5 { background-image: url("https://images.unsplash.com/photo-1584433148482-42f1720e623d?auto=format&fit=crop&w=400&q=80"); }
.shot-6 { background-image: url("https://images.unsplash.com/photo-1576091160550-2173dba999ef?auto=format&fit=crop&w=400&q=80"); }
.shot-7 { background-image: url("https://images.unsplash.com/photo-1546410531-03b6ca598bb4?auto=format&fit=crop&w=400&q=80"); }
.shot-8 { background-image: url("https://images.unsplash.com/photo-1512941937669-90a1b58e7e9c?auto=format&fit=crop&w=400&q=80"); }
.shot-9 { background-image: url("https://images.unsplash.com/photo-1503676260728-1c00da094a0b?auto=format&fit=crop&w=400&q=80"); }
.shot-10 { background-image: url("https://images.unsplash.com/photo-1481627834876-b7833e8f5570?auto=format&fit=crop&w=400&q=80"); }
.shot-11 { background-image: url("https://images.unsplash.com/photo-1606326608606-aa0b545b9c96?auto=format&fit=crop&w=400&q=80"); }
.shot-12 { background-image: url("https://images.unsplash.com/photo-1516321318423-f06f85e504b3?auto=format&fit=crop&w=400&q=80"); }
.shot-13 { background-image: url("https://images.unsplash.com/photo-1559526324-593bc073d938?auto=format&fit=crop&w=400&q=80"); }
.shot-14 { background-image: url("https://images.unsplash.com/photo-1551650972-87deedd944c3?auto=format&fit=crop&w=400&q=80"); }
.shot-15 { background-image: url("https://images.unsplash.com/photo-1563986768609-322da13575f3?auto=format&fit=crop&w=400&q=80"); }
.shot-16 { background-image: url("https://images.unsplash.com/photo-1554224311-beee415c846f?auto=format&fit=crop&w=400&q=80"); }
.shot-w1 { background-image: url("https://images.unsplash.com/photo-1460925895917-afdab827c52f?auto=format&fit=crop&w=800&q=80"); }
.shot-w2 { background-image: url("https://images.unsplash.com/photo-1556740758-90d374eca2f7?auto=format&fit=crop&w=800&q=80"); }
.shot-w3 { background-image: url("https://images.unsplash.com/photo-1551288049-bebda4e38f71?auto=format&fit=crop&w=800&q=80"); }
.shot-w4 { background-image: url("https://images.unsplash.com/photo-1560518883-ce09059eeffa?auto=format&fit=crop&w=800&q=80"); }
.shot-w5 { background-image: url("https://images.unsplash.com/photo-1522202176988-66273c2fd55f?auto=format&fit=crop&w=800&q=80"); }
.shot-w6 { background-image: url("https://images.unsplash.com/photo-1576091160399-112ba8d25d1d?auto=format&fit=crop&w=800&q=80"); }

.portfolio-cta {
  text-align: center;
  margin-top: 3rem;
}

/* Testimonials */
.testimonial-slider {
  position: relative;
  max-width: 700px;
  margin: 0 auto;
}

.t-viewport { overflow: hidden; }

.t-track {
  display: flex;
  transition: transform 0.5s ease;
}

.t-slide {
  flex: 0 0 100%;
  min-width: 100%;
  padding: 2.5rem;
  background: var(--bg-gray);
  border-radius: var(--radius);
  border: 1px solid var(--border);
  text-align: center;
  margin: 0;
}

.t-slide .stars { color: #f59e0b; font-size: 1.25rem; margin-bottom: 1rem; }
.t-slide p { font-size: 1.15rem; font-style: italic; margin-bottom: 1.25rem; line-height: 1.7; }
.t-slide footer { font-size: 0.9rem; color: var(--text-muted); }

.t-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 40px;
  height: 40px;
  border: 1px solid var(--border);
  border-radius: 50%;
  background: #fff;
  cursor: pointer;
  z-index: 2;
}
.t-prev { left: -1rem; }
.t-next { right: -1rem; }

.t-dots {
  display: flex;
  justify-content: center;
  gap: 0.5rem;
  margin-top: 1.25rem;
}
.t-dots button {
  width: 8px;
  height: 8px;
  border: none;
  border-radius: 50%;
  background: #cbd5e1;
  cursor: pointer;
  padding: 0;
}
.t-dots button.active { background: var(--accent); width: 24px; border-radius: 999px; }

/* Contact form */
.section-contact { background: var(--bg-gray); }

.contact-layout {
  display: grid;
  grid-template-columns: 1fr 1.15fr;
  gap: 3rem;
  align-items: start;
}

.contact-info h2 {
  font-size: clamp(1.5rem, 3vw, 2rem);
  margin-bottom: 0.75rem;
}

.contact-info .section-desc {
  text-align: left;
  margin-bottom: 1.5rem;
}

.contact-benefits {
  list-style: none;
  margin-bottom: 2rem;
}

.contact-benefits li {
  padding: 0.65rem 0;
  border-bottom: 1px solid var(--border);
  font-size: 0.92rem;
  color: var(--text-muted);
}

.contact-benefits li strong {
  display: block;
  color: var(--text);
  font-size: 0.95rem;
  margin-bottom: 0.15rem;
}

.contact-direct {
  padding: 1.25rem;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius);
}

.contact-direct p { margin-bottom: 0.5rem; font-size: 0.9rem; }
.contact-direct a {
  display: block;
  color: var(--accent);
  font-weight: 600;
  text-decoration: none;
  margin-bottom: 0.35rem;
}
.contact-direct a:hover { text-decoration: underline; }

.reach-form {
  background: #fff;
  padding: 2.5rem;
  border-radius: var(--radius);
  border: 1px solid var(--border);
  box-shadow: var(--shadow);
}

.services-cta { margin-top: 2rem; }

.float-cta {
  position: fixed;
  bottom: 5.5rem;
  right: 1.25rem;
  z-index: 999;
  padding: 0.75rem 1.25rem;
  background: var(--accent);
  color: #fff;
  font-weight: 700;
  font-size: 0.85rem;
  text-decoration: none;
  border-radius: 999px;
  box-shadow: 0 8px 24px rgba(37, 99, 235, 0.45);
  transition: transform 0.2s ease, background 0.2s ease;
}

.float-cta:hover {
  background: var(--accent-dark);
  transform: translateY(-2px);
}

.footer-cta .btn {
  background: #fff;
  color: var(--accent);
}

.footer-cta .btn:hover,
.footer-cta-btn:hover {
  background: #f1f5f9;
}


.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
  margin-bottom: 1.5rem;
}

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

.form-field input,
.form-field textarea,
.form-field select {
  width: 100%;
  padding: 0.75rem 1rem;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  font-family: var(--font);
  font-size: 0.95rem;
  background: #fff;
}

.form-field select {
  cursor: pointer;
  appearance: none;
  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='%2364748b' stroke-width='2'%3E%3Cpath d='M6 9l6 6 6-6'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 1rem center;
  padding-right: 2.5rem;
}

.form-field.full { grid-column: 1 / -1; }

.service-checks {
  border: none;
  margin-bottom: 1.5rem;
}

.service-checks legend {
  font-weight: 700;
  font-size: 0.95rem;
  margin-bottom: 0.75rem;
}

.service-checks label {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 0.5rem;
  font-size: 0.9rem;
  cursor: pointer;
}

.form-disclaimer { font-size: 0.8rem; color: var(--text-muted); margin-bottom: 1rem; }
.form-note { margin-top: 1rem; text-align: center; font-size: 0.9rem; }
.form-note.success { color: #16a34a; }
.form-note.error { color: #dc2626; }

/* Footer */
.site-footer { background: var(--bg-dark); color: #94a3b8; }

.footer-cta {
  padding: 3.5rem 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-cta-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  max-width: 720px;
  margin-inline: auto;
}

.footer-cta h3 {
  color: #fff;
  font-size: clamp(1.25rem, 3vw, 1.5rem);
  font-weight: 800;
  margin: 0 0 1rem;
  width: 100%;
  text-align: center;
  line-height: 1.35;
}

.footer-cta p {
  color: #94a3b8;
  font-size: 1rem;
  line-height: 1.65;
  margin: 0 auto 1.75rem;
  max-width: 580px;
  width: 100%;
  text-align: center;
}

.footer-cta-btn {
  display: inline-block;
  margin: 0 auto 2rem;
  text-align: center;
}

.footer-cta .footer-social {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 0.75rem;
  width: 100%;
  margin: 0;
  padding: 0;
  list-style: none;
}

.footer-cta .footer-social .social-icon {
  margin: 0;
  flex-shrink: 0;
}

.footer-social {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 0.65rem;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr 1fr 1.2fr;
  gap: 2rem;
  padding: 3rem 0;
}

.footer-grid h4 { color: #fff; font-size: 0.95rem; margin-bottom: 1rem; }
.footer-grid a {
  display: block;
  color: #94a3b8;
  text-decoration: none;
  font-size: 0.9rem;
  margin-bottom: 0.4rem;
}
.footer-grid a:hover { color: #fff; }
.footer-logo { height: 44px; margin-bottom: 0.5rem; }
.footer-address { font-size: 0.85rem; line-height: 1.5; }

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding: 1.25rem 0;
}

.footer-bottom .container {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 0.5rem;
  font-size: 0.8rem;
}

.footer-bottom a { color: #94a3b8; text-decoration: none; }

/* Scroll top */
.scroll-top {
  position: fixed;
  bottom: 1.5rem;
  right: 1.5rem;
  width: 44px;
  height: 44px;
  border: none;
  border-radius: 50%;
  background: var(--accent);
  color: #fff;
  font-size: 1.25rem;
  cursor: pointer;
  opacity: 0;
  visibility: hidden;
  transition: var(--transition);
  z-index: 99;
  box-shadow: var(--shadow);
}

.scroll-top.visible { opacity: 1; visibility: visible; }

/* Reveal */
.reveal {
    /* opacity: 0; */
  transform: translateY(20px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
.reveal.visible { opacity: 1; transform: translateY(0); }

/* Responsive */
@media (max-width: 1024px) {
  .mega-menu { min-width: 90vw; grid-template-columns: repeat(2, 1fr); left: 0; transform: translateX(0) translateY(8px); }
  .has-dropdown:hover .mega-menu, .has-dropdown.open .mega-menu { transform: translateX(0) translateY(0); }
  .trust-bar-inner { grid-template-columns: repeat(2, 1fr); }
  .value-grid { grid-template-columns: repeat(2, 1fr); }
  .contact-layout { grid-template-columns: 1fr; gap: 2rem; }
  .sdlc-grid { grid-template-columns: repeat(2, 1fr); }
  .excellence-grid { grid-template-columns: repeat(3, 1fr); }
  .portfolio-showcase-grid { gap: 1.5rem; }
  .showcase-card { min-height: 300px; padding: 1.5rem; }
  .footer-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
  .about-why { grid-template-columns: 1fr; }
  .exec-grid { grid-template-columns: 1fr; }
  .exec-visual { min-height: 180px; }
  .exec-prev { left: 0.25rem; }
  .exec-next { right: 0.25rem; }
  .process-timeline { grid-template-columns: 1fr; }
  .blog-grid { grid-template-columns: 1fr; }
  .blog-card { flex-direction: column; }
  .blog-thumb { width: 100%; height: 140px; }
  .blog-body { padding: 1rem; }

  .topbar-inner {
    justify-content: space-between;
    font-size: 0.72rem;
    gap: 0.5rem;
  }

  .topbar-email {
    max-width: 48vw;
    overflow: hidden;
    text-overflow: ellipsis;
  }

  .topbar-right { gap: 0.65rem; }
  .topbar-phone,
  .topbar-social { display: none; }
  .topbar-btn { padding: 0.4rem 0.85rem; }

  .nav-toggle { display: flex; }

  .nav-links {
    position: fixed;
    top: var(--header-total);
    left: 0;
    right: 0;
    flex-direction: column;
    align-items: stretch;
    background: #fff;
    padding: 1.5rem;
    gap: 0;
    border-bottom: 1px solid var(--border);
    max-height: calc(100vh - var(--header-total));
    overflow-y: auto;
    transform: translateY(-120%);
    opacity: 0;
    pointer-events: none;
    transition: var(--transition);
  }

  .nav-links.open { transform: translateY(0); opacity: 1; pointer-events: auto; }
  .nav-links > li { width: 100%; border-bottom: 1px solid var(--border); padding: 0.75rem 0; }
  .nav-drop-btn { width: 100%; text-align: left; }

  .mega-menu {
    position: static;
    transform: none;
    min-width: 100%;
    box-shadow: none;
    border: none;
    padding: 0.5rem 0 0 1rem;
    display: none;
    opacity: 1;
    visibility: visible;
  }
  .has-dropdown.open .mega-menu { display: grid; }

  .about-split { grid-template-columns: 1fr; }
  .service-blocks { grid-template-columns: 1fr; }
  .sdlc-grid { grid-template-columns: 1fr; }
  .excellence-grid { grid-template-columns: 1fr 1fr; }
  .portfolio-showcase-grid { grid-template-columns: 1fr; }
  .showcase-card {
    grid-template-columns: 1fr;
    min-height: auto;
    padding: 1.5rem 1.25rem 1.75rem;
  }
  .showcase-visual { min-height: 220px; margin-top: 0.5rem; }
  .phone-mock { max-width: 110px; }
  .showcase-text p { max-width: none; }
  .portfolio-tabs { gap: 0.5rem; }
  .port-tab { padding: 0.6rem 1rem; font-size: 0.8rem; }
  .form-grid { grid-template-columns: 1fr; }
  .consult-inner { flex-direction: column; text-align: center; }
  .hero-banner {
    min-height: 460px;
    height: min(75vh, 560px);
  }

  .hero-controls {
    padding: 0 1rem 1.25rem;
    flex-wrap: wrap;
    gap: 0.75rem;
  }

  .hero-progress { display: none; }

  .hero-dots {
    order: 3;
    width: 100%;
    max-width: none;
    justify-content: center;
  }

  .hero-nav {
    width: 42px;
    height: 42px;
  }

  .hero-nav svg { width: 18px; height: 18px; }
  .hero-prev { left: 0.75rem; }
  .hero-next { right: 0.75rem; }

  .scroll-hint { display: none; }

  .hero-cta-group { flex-direction: column; align-items: flex-start; }
  .hero-trust { flex-direction: column; gap: 0.4rem; }

  .trust-bar-inner { grid-template-columns: 1fr 1fr; gap: 1rem; }
  .value-grid { grid-template-columns: 1fr; }
  .float-cta { bottom: 5rem; right: 0.75rem; font-size: 0.8rem; padding: 0.65rem 1rem; }
  .slide-num { font-size: 2.5rem; }
}

@media (max-width: 480px) {
  .excellence-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
}
