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

:root {
  --color-bg: #ffffff;
  --color-text: #000000;
  --color-text-muted: #333333;
  --color-accent: #166af5;
  --color-border: #000000;
  --font-sans: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Helvetica, Arial, sans-serif;
  --radius-btn: 10px;
  --radius-card: 12px;
  --content-max: 1280px;
  --content-padding: 40px;
}

/* Animations */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(24px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

.animate-on-scroll {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}

.animate-on-scroll.is-visible {
  opacity: 1;
  transform: translateY(0);
}

#services,
#why-choose-us,
#about,
#faq,
#contact-form {
  scroll-margin-top: 100px;
}

html {
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-sans);
  background: var(--color-bg);
  color: var(--color-text);
  line-height: 1.5;
  min-height: 100vh;
}

a {
  color: inherit;
  text-decoration: none;
}

/* Header – logo left (with margin), nav center, button right, no line below */
.header {
  padding: 24px 0;
  margin-top: 24px;
}

.header-inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 40px;
  display: flex;
  align-items: center;
  gap: 24px;
  flex-wrap: wrap;
  min-height: 52px;
}

.logo {
  display: flex;
  align-items: center;
  flex-shrink: 0;
  margin-left: 24px;
  line-height: 0;
}

.logo-img {
  height: 36px;
  width: auto;
  display: block;
  object-fit: contain;
  object-position: left center;
  vertical-align: middle;
}

.header-right {
  display: flex;
  align-items: center;
  gap: 24px 32px;
  flex-wrap: wrap;
  flex: 1;
  min-width: 0;
  margin-left: 48px;
}

.nav {
  display: flex;
  align-items: center;
  gap: 28px;
  line-height: 1.2;
}

.nav-link {
  font-size: 0.9375rem;
  font-weight: 400;
  color: var(--color-text);
  display: inline-flex;
  align-items: center;
  gap: 4px;
  transition: color 0.2s;
}

.nav-link:hover {
  color: var(--color-accent);
}

.nav-chevron {
  font-size: 0.5rem;
  opacity: 0.8;
  margin-top: 2px;
}

.header-right .btn {
  border-radius: 9999px;
  padding: 12px 22px;
  flex-shrink: 0;
  margin-left: auto;
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  font-family: var(--font-sans);
  font-weight: 600;
  font-size: 0.9375rem;
  padding: 12px 24px;
  border-radius: var(--radius-btn);
  cursor: pointer;
  transition: background 0.2s, color 0.2s, border-color 0.2s;
  border: 2px solid transparent;
}

.btn-primary {
  background: var(--color-text);
  color: #ffffff;
  border-color: var(--color-text);
}

.btn-primary:hover {
  background: #1a1a1a;
  border-color: #1a1a1a;
  color: #ffffff;
}

.btn-secondary {
  background: var(--color-bg);
  color: var(--color-text);
  border-color: var(--color-border);
}

.btn-secondary:hover {
  background: #f5f5f5;
  border-color: var(--color-text);
}

.btn-arrow {
  font-size: 1.1rem;
  line-height: 1;
  margin-left: 2px;
}

.btn-hero {
  padding: 14px 28px;
  font-size: 1rem;
}

/* Hero */
.hero {
  padding: 72px 0 80px;
}

.hero-content {
  animation: fadeInUp 0.8s ease-out;
}

.hero-visual {
  animation: fadeInUp 0.8s ease-out 0.15s both;
}

.hero-inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 40px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
  min-height: 420px;
}

.hero-content {
  max-width: 580px;
}

.hero-heading {
  font-size: 2.75rem;
  font-weight: 700;
  line-height: 1.15;
  letter-spacing: -0.03em;
  color: var(--color-text);
  margin-bottom: 24px;
}

.hero-accent {
  color: var(--color-accent);
}

.hero-subheading {
  font-size: 1.0625rem;
  font-weight: 400;
  color: var(--color-text-muted);
  line-height: 1.6;
  margin-bottom: 36px;
}

.hero-buttons {
  display: flex;
  flex-direction: column;
  gap: 16px;
  align-items: flex-start;
}

.hero-clients {
  margin-top: 32px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  align-items: flex-start;
}

.hero-clients-avatars {
  display: flex;
  align-items: center;
  gap: 0;
}

.hero-avatar {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--color-accent);
  color: #fff;
  font-size: 0.6875rem;
  font-weight: 600;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-left: -8px;
  border: 2px solid var(--color-bg);
  box-sizing: border-box;
}

.hero-avatar:first-child {
  margin-left: 0;
}

.hero-clients-rating {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
}

.hero-stars {
  color: #eab308;
  font-size: 1rem;
  letter-spacing: 1px;
}

.hero-clients-text {
  font-size: 0.9375rem;
  font-weight: 500;
  color: var(--color-text-muted);
}

.hero-capsule {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 6px 14px;
  background: #dbeafe;
  border-radius: 999px;
  font-size: 0.8125rem;
  font-weight: 600;
  color: var(--color-text);
  margin-bottom: 24px;
}

.hero-capsule-icon {
  color: var(--color-accent);
  font-size: 0.875rem;
}

.hero-capsule-text {
  white-space: nowrap;
  font-size: 0.8125rem;
}

/* Hero visual – align right so image end matches logos & cards below */
.hero-visual {
  display: flex;
  justify-content: flex-end;
  align-items: center;
}

.hero-image-wrap {
  position: relative;
  width: 100%;
  max-width: 480px;
}

.hero-image {
  width: 100%;
  display: block;
  border-radius: var(--radius-card);
  object-fit: cover;
  aspect-ratio: 4 / 3;
}

.hero-card {
  position: absolute;
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 12px 16px;
  border-radius: 12px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
  border: 1px solid rgba(0, 0, 0, 0.06);
}

.hero-card--top-right {
  top: 12%;
  right: -4%;
  background: #ffffff;
  min-width: 140px;
}

.hero-card--bottom-left {
  bottom: 12%;
  left: -4%;
  background: #f8f9fb;
  min-width: 150px;
}

.hero-card-icon {
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border-radius: 50%;
}

.hero-card-icon--star {
  color: var(--color-accent);
  font-size: 1.25rem;
  background: transparent;
}

.hero-card-icon--check {
  background: #22c55e;
  color: #fff;
}

.hero-card-icon--check svg {
  width: 14px;
  height: 14px;
}

.hero-card-text {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.hero-card-title {
  font-size: 0.875rem;
  font-weight: 700;
  color: var(--color-text);
  line-height: 1.2;
}

.hero-card-sub {
  font-size: 0.75rem;
  font-weight: 500;
  color: var(--color-text-muted);
  line-height: 1.2;
}

/* Service Cards – three columns, outline icons */
.services-cards {
  padding: 80px 0 88px;
}

.services-cards-inner {
  width: 100%;
  max-width: var(--content-max);
  margin: 0 auto;
  padding: 0 var(--content-padding);
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0 64px;
  align-items: stretch;
  box-sizing: border-box;
}

.service-card {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  text-align: left;
  padding: 0 0 0 32px;
  border-left: 1px solid rgba(0, 0, 0, 0.1);
}

.service-card:first-child {
  border-left: none;
  padding-left: 0;
}

.service-card-icon {
  display: block;
  color: var(--color-text);
  margin-bottom: 14px;
  line-height: 0;
}

.service-card-icon svg,
.service-card-icon img {
  width: 28px;
  height: 28px;
  display: block;
  object-fit: contain;
}

.service-card-heading {
  font-size: 1.1875rem;
  font-weight: 700;
  color: var(--color-text);
  margin: 0 0 10px;
  letter-spacing: -0.02em;
  line-height: 1.3;
}

.service-card-desc {
  font-size: 1rem;
  font-weight: 400;
  color: var(--color-text-muted);
  line-height: 1.55;
  margin: 0;
}

/* Trust / Social proof – "Backed By The Best" left, logos spread to right edge */
.trust {
  padding: 64px 0 80px;
}

.trust-inner {
  width: 100%;
  max-width: var(--content-max);
  margin: 0 auto;
  padding: 0 var(--content-padding);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 48px;
  flex-wrap: wrap;
  box-sizing: border-box;
}

.trust-heading {
  font-size: 1.125rem;
  font-weight: 700;
  color: var(--color-text);
  letter-spacing: -0.01em;
  margin: 0;
  flex-shrink: 0;
}

.trust-marquee {
  flex: 1;
  min-width: 0;
  overflow: hidden;
  mask-image: linear-gradient(to right, transparent, black 8%, black 92%, transparent);
  -webkit-mask-image: linear-gradient(to right, transparent, black 8%, black 92%, transparent);
}

.trust-track {
  display: flex;
  align-items: center;
  gap: 48px;
  width: max-content;
  animation: trustScroll 40s linear infinite;
}

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

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

.trust-list {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  flex: 1;
  min-width: 0;
  flex-wrap: wrap;
}

.trust-logo {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 28px;
  width: auto;
  min-width: 0;
  background: transparent;
  border-radius: 0;
  flex-shrink: 0;
  overflow: hidden;
}

.trust-logo img {
  height: 28px;
  width: auto;
  max-width: 88px;
  object-fit: contain;
}

.trust-logo--amazon img {
  height: 24px;
  max-width: 68px;
}

.trust-logo--infosys img {
  height: 24px;
  max-width: 76px;
}

/* Stats / facts section */
.stats-section {
  padding: 40px 0;
  background: var(--color-bg);
}

.stats-inner {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px 20px;
  max-width: var(--content-max);
}

.stat-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 10px;
}

.stat-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
}

.stat-icon img {
  width: 28px;
  height: 28px;
  object-fit: contain;
  filter: brightness(0) saturate(100%) invert(28%) sepia(85%) saturate(2500%) hue-rotate(210deg);
}

.stat-value {
  font-size: 1.625rem;
  font-weight: 700;
  color: #1e2833;
  letter-spacing: -0.02em;
  line-height: 1.1;
}

.stat-label {
  font-size: 0.875rem;
  font-weight: 400;
  color: #7a7a7a;
  line-height: 1.3;
}

/* Shared section layout */
.section-inner {
  width: 100%;
  max-width: var(--content-max);
  margin: 0 auto;
  padding: 0 var(--content-padding);
  box-sizing: border-box;
}

.section-heading {
  font-size: 2rem;
  font-weight: 700;
  color: var(--color-text);
  letter-spacing: -0.03em;
  line-height: 1.2;
  margin: 0 0 16px;
}

.section-lead {
  font-size: 1.0625rem;
  font-weight: 400;
  color: var(--color-text-muted);
  line-height: 1.6;
  margin: 0 0 32px;
  max-width: 640px;
}

.section-lead--muted {
  margin-top: 16px;
  font-size: 1rem;
}

.section-inner--narrow {
  max-width: 640px;
  text-align: center;
}

.section-inner--narrow .section-lead {
  max-width: none;
}

/* What You Do */
.what-you-do {
  padding: 80px 0 88px;
  background: #fafbfc;
}

.what-you-do .services-capsule {
  display: inline-block;
  padding: 8px 16px;
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--color-text-muted);
  background: var(--color-bg);
  border: 1px solid rgba(0, 0, 0, 0.12);
  border-radius: 999px;
  margin-bottom: 16px;
}

.what-you-do .services-heading {
  font-size: 2rem;
  font-weight: 700;
  color: var(--color-text);
  letter-spacing: -0.03em;
  line-height: 1.2;
  margin: 0 0 12px;
}

.what-you-do .services-subtitle {
  font-size: 1.0625rem;
  color: var(--color-text-muted);
  line-height: 1.6;
  margin: 0 0 40px;
  max-width: 640px;
}

.what-you-do .services-cards-inner {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 24px;
  margin-top: 0;
}

.what-you-do .service-card {
  padding: 28px 24px;
  background: var(--color-bg);
  border: 1px solid rgba(0, 0, 0, 0.08);
  border-radius: 12px;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.04);
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
  border-left: none;
}

.what-you-do .service-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.08), 0 0 0 1px rgba(22, 106, 245, 0.12);
  border-color: rgba(22, 106, 245, 0.2);
}

.what-you-do .service-card-icon-wrap {
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #dbeafe;
  border-radius: 10px;
  margin-bottom: 18px;
}

.what-you-do .service-card-icon img {
  width: 26px;
  height: 26px;
  object-fit: contain;
  filter: brightness(0) saturate(100%) invert(28%) sepia(85%) saturate(2500%) hue-rotate(210deg);
}

.what-you-do .service-card-list {
  list-style: none;
  margin: 0;
  padding: 0;
  font-size: 0.875rem;
  color: var(--color-text-muted);
  line-height: 1.5;
}

.what-you-do .service-card-list li {
  position: relative;
  padding-left: 24px;
  margin-bottom: 8px;
}

.what-you-do .service-card-list li:last-child {
  margin-bottom: 0;
}

.what-you-do .service-card-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 4px;
  width: 16px;
  height: 16px;
  background: #dbeafe;
  border-radius: 50%;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23166af5' stroke-width='2.5' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='20 6 9 17 4 12'%3E%3C/polyline%3E%3C/svg%3E");
  background-size: 12px 12px;
  background-position: center;
  background-repeat: no-repeat;
}

.what-you-do .section-heading {
  margin-bottom: 12px;
}

.what-you-do .section-lead {
  margin-bottom: 48px;
}

.services-cards-inner--three,
.services-cards-inner--four {
  display: grid;
  width: 100%;
  margin-top: 0;
}

.services-cards-inner--three {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0 48px;
}

.services-cards-inner--four {
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0 48px;
}

.services-cards-inner--three .service-card,
.services-cards-inner--four .service-card {
  padding: 0 0 0 24px;
  border-left: 1px solid rgba(0, 0, 0, 0.1);
}

.services-cards-inner--three .service-card:first-child,
.services-cards-inner--four .service-card:first-child {
  padding-left: 0;
  border-left: none;
}

/* Who You Serve */
.who-you-serve {
  padding: 80px 0;
  background: #fafafa;
}

.section-inner--split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}

.section-inner--reverse {
  direction: rtl;
}

.section-inner--reverse > * {
  direction: ltr;
}

.section-img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: var(--radius-card);
  object-fit: cover;
  background: linear-gradient(145deg, #e8ecf4 0%, #d4dce8 100%);
}

.section-visual {
  min-height: 280px;
  background: linear-gradient(145deg, #e8ecf4 0%, #d4dce8 100%);
  border-radius: var(--radius-card);
}

.who-you-serve .section-inner:last-child {
  padding-top: 48px;
}

.serve-categories {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.serve-cat {
  background: var(--color-bg);
  padding: 24px 20px;
  border-radius: var(--radius-card);
  font-size: 1rem;
  font-weight: 600;
  color: var(--color-text);
  text-align: center;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.06);
  border: 1px solid rgba(0, 0, 0, 0.06);
}

/* About Team */
.about-team {
  padding: 80px 0;
}

/* Why Choose Us */
.why-choose {
  padding: 80px 0;
  background: var(--color-bg);
}

.why-choose-capsule {
  display: inline-block;
  padding: 8px 16px;
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--color-text);
  background: #f0f2f5;
  border-radius: 999px;
  margin-bottom: 16px;
}

.why-choose-heading {
  font-size: 2rem;
  font-weight: 700;
  color: var(--color-text);
  letter-spacing: -0.03em;
  line-height: 1.2;
  margin: 0 0 12px;
  text-align: center;
}

.why-choose-subtitle {
  font-size: 1.0625rem;
  color: var(--color-text-muted);
  line-height: 1.6;
  margin: 0 auto 48px;
  max-width: 560px;
  text-align: center;
}

.why-choose-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 24px;
}

.why-choose-card {
  padding: 28px 24px;
  background: #f5f6f8;
  border-radius: 12px;
  transition: transform 0.25s ease, box-shadow 0.25s ease, background 0.25s ease;
}

.why-choose-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.06);
  background: #f8f9fb;
}

.why-choose-icon {
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--color-accent);
  color: #fff;
  border-radius: 10px;
  margin-bottom: 18px;
}

.why-choose-icon svg {
  width: 24px;
  height: 24px;
  flex-shrink: 0;
}

.why-choose-card-title {
  font-size: 1.125rem;
  font-weight: 700;
  color: var(--color-text);
  margin: 0 0 10px;
  letter-spacing: -0.02em;
  line-height: 1.3;
}

.why-choose-card-desc {
  font-size: 0.9375rem;
  font-weight: 400;
  color: var(--color-text-muted);
  line-height: 1.55;
  margin: 0;
}

.why-list {
  list-style: none;
  margin: 0;
  padding: 0;
  max-width: 560px;
}

.why-list li {
  font-size: 1.0625rem;
  color: var(--color-text-muted);
  line-height: 1.6;
  padding: 12px 0 12px 36px;
  position: relative;
  border-bottom: 1px solid rgba(0, 0, 0, 0.06);
}

.why-list li:last-child {
  border-bottom: none;
}

.why-list li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 8px;
  height: 8px;
  background: var(--color-accent);
  border-radius: 50%;
}

/* Testimonials */
.testimonials-section {
  padding: 80px 0;
  background: #0f172a;
}

.testimonials-section .section-inner {
  max-width: var(--content-max);
}

.testimonials-header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: 40px;
  flex-wrap: wrap;
}

.testimonials-header-text {
  flex: 1;
  min-width: 0;
}

.testimonials-capsule {
  display: inline-block;
  padding: 8px 16px;
  font-size: 0.875rem;
  font-weight: 600;
  color: #e2e8f0;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 999px;
  margin-bottom: 16px;
}

.testimonials-heading {
  font-size: 2rem;
  font-weight: 700;
  color: #fff;
  letter-spacing: -0.03em;
  line-height: 1.2;
  margin: 0 0 8px;
}

.testimonials-subtitle {
  font-size: 1rem;
  color: #94a3b8;
  line-height: 1.5;
  margin: 0;
}

.testimonials-nav {
  display: flex;
  gap: 8px;
  flex-shrink: 0;
}

.testimonials-btn {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.2);
  background: rgba(255, 255, 255, 0.08);
  color: #94a3b8;
  font-size: 1.5rem;
  line-height: 1;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s, color 0.2s, border-color 0.2s;
}

.testimonials-btn:hover {
  background: rgba(255, 255, 255, 0.15);
  color: #fff;
  border-color: rgba(255, 255, 255, 0.3);
}

.testimonials-track-wrap {
  overflow: hidden;
  margin-bottom: 24px;
}

.testimonials-track {
  display: flex;
  gap: 24px;
  transition: transform 0.35s ease;
  width: calc(150% + 12px);
}

.testimonial-card {
  flex: 0 0 calc((100% - 48px) / 3);
  min-width: 0;
  padding: 32px 28px;
  background: #1e293b;
  border-radius: 12px;
  position: relative;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.testimonial-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.2);
}

.testimonial-quote {
  font-size: 3.5rem;
  line-height: 1;
  color: rgba(255, 255, 255, 0.2);
  font-family: Georgia, serif;
  display: block;
  margin-bottom: 8px;
}

.testimonial-text {
  font-size: 1rem;
  color: #e2e8f0;
  line-height: 1.6;
  margin: 0 0 24px;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 16px;
}

.testimonial-avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: #ea580c;
  color: #fff;
  font-size: 0.875rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.testimonial-meta {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.testimonial-name {
  font-size: 1rem;
  font-weight: 600;
  color: #fff;
}

.testimonial-title {
  font-size: 0.875rem;
  color: #94a3b8;
}

.testimonial-stars {
  position: absolute;
  bottom: 28px;
  right: 28px;
  color: #eab308;
  font-size: 1rem;
  letter-spacing: 1px;
}

.testimonials-dots {
  display: flex;
  justify-content: center;
  gap: 10px;
}

.testimonials-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  border: none;
  background: #334155;
  cursor: pointer;
  padding: 0;
  transition: background 0.2s, transform 0.2s;
}

.testimonials-dot:hover {
  background: #475569;
}

.testimonials-dot.is-active {
  background: #ea580c;
}

/* FAQ section */
.faq-section {
  padding: 80px 0;
  background: #f0f7ff;
}

.faq-inner {
  max-width: 720px;
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}

.faq-capsule {
  display: inline-block;
  padding: 8px 16px;
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--color-text-muted);
  background: #e5e5e5;
  border-radius: 999px;
  margin-bottom: 16px;
}

.faq-heading {
  font-size: 2rem;
  font-weight: 700;
  color: var(--color-text);
  letter-spacing: -0.03em;
  line-height: 1.2;
  margin: 0 0 12px;
}

.faq-subtitle {
  font-size: 1.0625rem;
  color: var(--color-text-muted);
  line-height: 1.5;
  margin: 0 0 40px;
}

.faq-list {
  text-align: left;
}

.faq-item {
  background: var(--color-bg);
  border: 1px solid rgba(0, 0, 0, 0.08);
  border-radius: 12px;
  margin-bottom: 12px;
  overflow: hidden;
  transition: box-shadow 0.2s ease;
}

.faq-item:hover {
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.06);
}

.faq-item.is-open .faq-question {
  border-bottom-color: transparent;
}

.faq-question {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 20px 24px;
  font-family: var(--font-sans);
  font-size: 1rem;
  font-weight: 600;
  color: var(--color-text);
  text-align: left;
  background: none;
  border: none;
  border-bottom: 1px solid transparent;
  cursor: pointer;
  transition: border-color 0.2s;
}

.faq-question:hover {
  color: var(--color-accent);
}

.faq-chevron {
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 24px;
  height: 24px;
  color: var(--color-text-muted);
  transition: transform 0.25s ease, color 0.2s ease;
}

.faq-chevron svg {
  width: 20px;
  height: 20px;
}

.faq-question:hover .faq-chevron,
.faq-item.is-open .faq-chevron {
  color: var(--color-accent);
}

.faq-item.is-open .faq-chevron {
  transform: rotate(180deg);
}

.faq-answer {
  overflow: hidden;
}

.faq-answer p {
  margin: 0;
  padding: 20px 24px;
  font-size: 0.9375rem;
  color: var(--color-text-muted);
  line-height: 1.6;
  border-top: 1px solid rgba(0, 0, 0, 0.06);
}

/* Location */
.location {
  padding: 80px 0;
}

.location-address {
  font-size: 1.125rem;
  font-weight: 400;
  color: var(--color-text-muted);
  line-height: 1.7;
  font-style: normal;
  margin: 0;
}

/* Final CTA */
.cta-final {
  padding: 88px 0 100px;
  background: linear-gradient(180deg, #f0f4fc 0%, var(--color-bg) 100%);
}

.cta-final-heading {
  margin-bottom: 16px;
}

.cta-final .section-lead {
  margin-bottom: 32px;
}

.cta-final .btn {
  margin-top: 8px;
}

/* Contact form */
.contact-form-section {
  padding: 80px 0;
  background: var(--color-bg);
}

.section-inner--contact {
  max-width: var(--content-max);
  align-items: center;
  gap: 72px;
}

.contact-form-left {
  flex: 1;
  min-width: 0;
  display: flex;
  flex-direction: column;
  gap: 0;
}

.contact-form-pill {
  display: inline-block;
  padding: 8px 16px;
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--color-accent);
  background: #dbeafe;
  border-radius: 999px;
  margin-bottom: 20px;
  max-width: 140px;
  text-align: center;
  box-sizing: border-box;
}

.contact-form-heading {
  font-size: 2.25rem;
  font-weight: 700;
  color: #1e293b;
  letter-spacing: -0.03em;
  line-height: 1.2;
  margin: 0 0 16px;
}

.contact-form-heading-accent {
  color: var(--color-accent);
}

.contact-form-intro {
  font-size: 1.0625rem;
  color: var(--color-text-muted);
  line-height: 1.6;
  margin: 0 0 32px;
}

.contact-form-details {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.contact-detail-item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
}

.contact-detail-icon {
  width: 44px;
  height: 44px;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #dbeafe;
  color: var(--color-accent);
  border-radius: 10px;
}

.contact-detail-text {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.contact-detail-label {
  font-size: 0.875rem;
  color: var(--color-text-muted);
}

.contact-detail-value {
  font-size: 1rem;
  font-weight: 500;
  color: var(--color-text-muted);
  text-decoration: none;
}

.contact-detail-value:hover {
  color: var(--color-accent);
}

a.contact-detail-value:hover {
  text-decoration: underline;
}

.contact-form-content {
  min-width: 0;
}

.contact-form-image {
  border-radius: var(--radius-card);
  overflow: hidden;
  box-shadow: 0 2px 16px rgba(0, 0, 0, 0.06);
  flex: 1;
  min-height: 200px;
}

.contact-form-img {
  width: 100%;
  height: 100%;
  min-height: 220px;
  max-height: 320px;
  object-fit: cover;
  display: block;
}

.contact-form-content .section-lead {
  margin-bottom: 16px;
}

.contact-form-text {
  font-size: 1rem;
  color: var(--color-text-muted);
  line-height: 1.6;
  margin: 0;
}

.contact-form-wrap {
  flex: 1;
  min-width: 0;
  max-width: 460px;
  display: flex;
  justify-content: flex-end;
}

.contact-form-card {
  width: 100%;
  max-width: 460px;
  background: var(--color-bg);
  padding: 36px 32px;
  border-radius: 16px;
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.08);
  border: 1px solid rgba(0, 0, 0, 0.06);
}

.contact-form-card-title {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--color-text);
  margin: 0 0 8px;
}

.contact-form-card-sub {
  font-size: 0.9375rem;
  color: var(--color-text-muted);
  margin: 0 0 28px;
  line-height: 1.4;
}

.contact-form .form-row--double {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-bottom: 20px;
}

.contact-form .form-group {
  min-width: 0;
}

.btn-contact-submit {
  width: 100%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 16px 24px;
  font-family: var(--font-sans);
  font-size: 1rem;
  font-weight: 600;
  color: #fff;
  background: var(--color-accent);
  border: none;
  border-radius: 10px;
  cursor: pointer;
  transition: background 0.2s;
  margin-top: 8px;
}

.btn-contact-submit:hover {
  background: #0d5ad8;
}

.btn-send-icon {
  font-size: 1rem;
  opacity: 0.9;
}

.contact-form-fields.is-hidden {
  display: none;
}

.contact-form-success {
  text-align: center;
  padding: 32px 24px;
}

.contact-form-success.is-visible {
  animation: fadeIn 0.35s ease-out;
}

.contact-form-success-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: #0d9488;
  color: #fff;
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 20px;
}

.contact-form-success-title {
  font-size: 1.375rem;
  font-weight: 700;
  color: var(--color-text);
  margin: 0 0 10px;
  line-height: 1.3;
}

.contact-form-success-text {
  font-size: 1rem;
  color: var(--color-text-muted);
  line-height: 1.55;
  margin: 0 0 24px;
}

.contact-form-success-again {
  padding: 12px 24px;
  border: 2px solid var(--color-accent);
  color: var(--color-accent);
  background: transparent;
  border-radius: var(--radius-btn);
  font-weight: 600;
  cursor: pointer;
  transition: background 0.2s, color 0.2s;
}

.contact-form-success-again:hover {
  background: var(--color-accent);
  color: #fff;
}

.contact-form {
  width: 100%;
  text-align: left;
}

.form-row {
  margin-bottom: 20px;
}

.form-label {
  display: block;
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--color-text);
  margin-bottom: 6px;
}

.form-input {
  width: 100%;
  padding: 14px 18px;
  font-family: var(--font-sans);
  font-size: 1rem;
  color: var(--color-text);
  background: var(--color-bg);
  border: 1px solid rgba(0, 0, 0, 0.15);
  border-radius: var(--radius-btn);
  transition: border-color 0.2s, box-shadow 0.2s;
}

.form-input:focus {
  outline: none;
  border-color: var(--color-accent);
  box-shadow: 0 0 0 3px rgba(22, 106, 245, 0.15);
}

.form-input::placeholder {
  color: #999;
}

.form-textarea {
  resize: vertical;
  min-height: 100px;
}

.contact-form .btn {
  margin-top: 8px;
}

@media (max-width: 768px) {
  .contact-form-section {
    padding: 56px 0 64px;
  }

  .section-inner--contact {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .contact-form-left {
    order: 1;
  }

  .contact-form-image {
    min-height: 180px;
  }

  .contact-form-img {
    min-height: 200px;
    max-height: 280px;
  }

  .contact-form-wrap {
    max-width: none;
    margin-left: 0;
    order: 2;
  }
}

/* Footer */
.footer {
  padding: 32px 0;
  border-top: 1px solid rgba(0, 0, 0, 0.08);
}

.footer-text {
  font-size: 0.875rem;
  color: var(--color-text-muted);
  margin: 0;
}

@media (max-width: 1024px) {
  .hero-inner {
    grid-template-columns: 1fr;
    gap: 48px;
    text-align: center;
  }

  .hero-content {
    max-width: 100%;
  }

  .hero-buttons {
    align-items: center;
  }

  .hero-heading {
    font-size: 2.25rem;
  }

  .nav {
    display: none;
  }

  .services-cards-inner {
    grid-template-columns: repeat(2, 1fr);
    padding: 0 24px;
    gap: 0 40px;
  }

  .services-cards-inner--three {
    grid-template-columns: repeat(2, 1fr);
    gap: 0 32px;
  }

  .services-cards-inner--four {
    grid-template-columns: repeat(2, 1fr);
    gap: 0 32px;
  }

  .section-inner--split {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .section-inner--reverse {
    direction: ltr;
  }

  .serve-categories {
    grid-template-columns: repeat(2, 1fr);
  }

  .what-you-do .services-cards-inner {
    grid-template-columns: repeat(2, 1fr);
  }

  .stats-inner {
    grid-template-columns: repeat(2, 1fr);
  }

  .why-choose-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .header-inner {
    padding: 0 24px;
  }

  .hero {
    padding: 48px 0 56px;
  }

  .hero-inner {
    padding: 0 24px;
  }

  .hero-heading {
    font-size: 1.875rem;
  }

  .hero-subheading {
    font-size: 1rem;
  }

  .services-cards {
    padding: 56px 0 64px;
  }

  .services-cards-inner {
    grid-template-columns: 1fr;
    padding: 0 24px;
  }

  .services-cards-inner--three,
  .services-cards-inner--four {
    grid-template-columns: 1fr;
    gap: 0;
  }

  .services-cards-inner--three .service-card,
  .services-cards-inner--four .service-card {
    border-left: none;
    padding: 24px 0;
    border-top: 1px solid rgba(0, 0, 0, 0.1);
  }

  .services-cards-inner--three .service-card:first-child,
  .services-cards-inner--four .service-card:first-child {
    border-top: none;
    padding-top: 0;
  }

  .section-inner {
    padding: 0 24px;
  }

  .section-heading {
    font-size: 1.5rem;
  }

  .what-you-do {
    padding: 56px 0 64px;
  }

  .who-you-serve,
  .about-team,
  .why-choose,
  .testimonials-section,
  .faq-section,
  .location {
    padding: 56px 0 64px;
  }

  .what-you-do .services-cards-inner {
    grid-template-columns: 1fr;
  }

  .stats-inner {
    grid-template-columns: 1fr;
  }

  .why-choose-grid {
    grid-template-columns: 1fr;
  }

  .why-choose-heading {
    font-size: 1.5rem;
  }

  .section-inner--contact {
    grid-template-columns: 1fr;
  }

  .contact-form .form-row--double {
    grid-template-columns: 1fr;
  }

  .contact-form-wrap {
    justify-content: stretch;
  }

  .contact-form-card {
    max-width: none;
  }

  .contact-form-heading {
    font-size: 1.75rem;
  }

  .trust-inner {
    flex-direction: column;
    align-items: stretch;
    gap: 24px;
  }

  .serve-categories {
    grid-template-columns: 1fr;
  }

  .cta-final {
    padding: 64px 0 80px;
  }

  .section-inner--narrow {
    text-align: left;
  }

  .service-card {
    border-left: none;
    padding: 24px 0;
    border-top: 1px solid rgba(0, 0, 0, 0.1);
  }

  .service-card:first-child {
    border-top: none;
    padding-top: 0;
  }

  .trust-inner {
    padding: 0 24px;
  }

  .trust {
    padding: 48px 0 64px;
  }

  .hero-card--top-right {
    right: 8px;
    min-width: 120px;
    padding: 10px 12px;
  }

  .hero-card--bottom-left {
    left: 8px;
    min-width: 120px;
    padding: 10px 12px;
  }

  .hero-card-title {
    font-size: 0.8125rem;
  }

  .hero-card-sub {
    font-size: 0.6875rem;
  }

  .hero-image-wrap {
    max-width: 100%;
  }

  .trust-heading {
    font-size: 1rem;
    text-align: center;
  }

  .trust-logo img {
    height: 22px;
  }

  .trust-track {
    gap: 32px;
  }

  .testimonials-heading {
    font-size: 1.5rem;
  }

  .testimonials-header {
    flex-direction: column;
    align-items: stretch;
    gap: 20px;
    margin-bottom: 28px;
  }

  .testimonials-nav {
    justify-content: flex-end;
  }

  .testimonial-card {
    flex: 0 0 calc(100% - 24px);
    min-width: calc(100% - 24px);
    padding: 24px 20px;
  }

  .testimonials-track {
    width: 100%;
  }

  .faq-heading {
    font-size: 1.5rem;
  }

  .faq-question {
    font-size: 0.9375rem;
    text-align: left;
    padding-right: 36px;
  }

  .logo {
    margin-left: 0;
  }

  .header-right {
    margin-left: 0;
  }

  .header-right .btn {
    padding: 10px 18px;
    font-size: 0.875rem;
  }
}
