/* ===== Variables ===== */
:root {
  --bg: #0e0e12;
  --bg-alt: #14141c;
  --bg-slate: #10141a;
  --bg-warm: #12100e;
  --bg-cool: #13161f;
  --bg-teal: #0f1619;
  --bg-plum: #14121a;
  --bg-card: #1a1a22;
  --bg-card-hover: #22222c;
  --border: rgba(255, 255, 255, 0.08);
  --border-light: rgba(255, 255, 255, 0.12);
  --text: #f4f4f5;
  --text-muted: #a1a1aa;
  --text-dim: #71717a;
  --accent: #ffef3d;
  --accent-dim: rgba(255, 239, 61, 0.16);
  --accent-glow: rgba(255, 239, 61, 0.4);
  --serif: 'Instrument Serif', Georgia, serif;
  --sans: 'DM Sans', system-ui, sans-serif;
  --radius: 12px;
  --radius-lg: 20px;
  --transition: 0.25s cubic-bezier(0.4, 0, 0.2, 1);
  --header-h: 72px;
  --container-max: 1280px;
}

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

html {
  font-size: 125%;
  scroll-behavior: smooth;
  scroll-padding-top: var(--header-h);
}

body {
  font-family: var(--sans);
  font-size: 1rem;
  background:
    radial-gradient(ellipse 90% 60% at 50% -10%, rgba(94, 234, 212, 0.04), transparent 55%),
    var(--bg);
  color: var(--text);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

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

.skip-link {
  position: absolute;
  top: -100%;
  left: 1rem;
  z-index: 9999;
  padding: 0.5rem 1rem;
  background: var(--accent);
  color: var(--bg);
  border-radius: 6px;
  font-weight: 600;
}
.skip-link:focus { top: 1rem; }

.container {
  width: min(var(--container-max), 94vw);
  margin-inline: auto;
}

/* ===== Typography ===== */
.eyebrow {
  display: inline-block;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 1rem;
}

h1, h2, h3 {
  font-weight: 600;
  line-height: 1.15;
  letter-spacing: -0.02em;
}

h1 {
  font-size: clamp(2.2rem, 5vw, 3.5rem);
  margin-bottom: 1.25rem;
}

h1 em {
  font-family: var(--serif);
  font-style: italic;
  font-weight: 400;
  color: var(--accent);
}

h2 {
  font-size: clamp(2rem, 4.2vw, 2.85rem);
  margin-bottom: 1rem;
}

h3 {
  font-size: 1.3rem;
  margin-bottom: 0.5rem;
}

/* ===== Buttons ===== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.75rem 1.5rem;
  font-family: var(--sans);
  font-size: 1rem;
  font-weight: 600;
  border-radius: 100px;
  border: none;
  cursor: pointer;
  transition: var(--transition);
  white-space: nowrap;
}

.btn--primary {
  background: var(--accent);
  color: var(--bg);
}
.btn--primary:hover {
  background: #fff56b;
  box-shadow: 0 0 32px var(--accent-glow);
  transform: translateY(-1px);
}

.btn--sm { padding: 0.55rem 1.1rem; font-size: 0.82rem; }
.btn--lg { padding: 1rem 2rem; font-size: 1rem; }

/* ===== Header ===== */
.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  height: var(--header-h);
  background: rgba(14, 14, 18, 0.82);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--border);
  transition: var(--transition);
}

.header--scrolled {
  background: rgba(14, 14, 18, 0.94);
}

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

.logo {
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.12em;
}

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

.nav a {
  font-size: 0.95rem;
  color: var(--text-muted);
  transition: color var(--transition);
}
.nav a:hover { color: var(--text); }

.header__actions {
  display: flex;
  align-items: center;
  gap: 2rem;
  margin-right: 1rem;
}

.lang-switcher {
  display: flex;
  align-items: center;
  gap: 0.35rem;
}

.lang-switch {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 2rem;
  padding: 0.3rem 0.45rem;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  color: var(--text-dim);
  border: 1px solid var(--border);
  border-radius: 6px;
  transition: color var(--transition), border-color var(--transition), background var(--transition);
}

.lang-switch:hover,
.lang-switch--active {
  color: var(--accent);
  border-color: rgba(255, 239, 61, 0.35);
  background: var(--accent-dim);
}

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

.header__social-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 34px;
  height: 34px;
  color: var(--text-muted);
  transition: color var(--transition), transform var(--transition);
}

.header__social-link:hover {
  color: var(--accent);
  transform: translateY(-1px);
}

.menu-toggle {
  display: none;
  flex-direction: column;
  gap: 6px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}
.menu-toggle span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--text);
  transition: var(--transition);
}

.mobile-nav {
  display: none;
  position: fixed;
  inset: var(--header-h) 0 0 0;
  z-index: 99;
  background: var(--bg);
  padding: 2rem;
  transform: translateY(-100%);
  opacity: 0;
  transition: var(--transition);
  pointer-events: none;
}
.mobile-nav.is-open {
  transform: translateY(0);
  opacity: 1;
  pointer-events: auto;
}
.mobile-nav nav {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}
.mobile-nav a {
  font-size: 1.25rem;
  font-weight: 500;
}

.mobile-nav__social {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem 1.5rem;
  padding-top: 0.5rem;
  border-top: 1px solid var(--border);
}

.mobile-nav__social a {
  font-size: 0.95rem;
  color: var(--text-muted);
}

.mobile-nav__lang {
  display: flex;
  gap: 1rem;
  padding-top: 0.5rem;
  border-top: 1px solid var(--border);
}

.mobile-nav__lang a {
  font-size: 0.95rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  color: var(--text-muted);
}

.mobile-nav__lang a.lang-switch--active,
.mobile-nav__lang a:hover {
  color: var(--accent);
}

/* ===== Hero ===== */
.hero {
  --hero-glow-soft: rgba(94, 234, 212, 0.1);
  padding: calc(var(--header-h) + 4rem) 0 3.5rem;
  background:
    radial-gradient(ellipse 70% 50% at 50% 0%, rgba(94, 234, 212, 0.09), transparent 55%),
    radial-gradient(ellipse 40% 35% at 85% 15%, rgba(255, 239, 61, 0.04), transparent),
    linear-gradient(180deg, #12161c 0%, var(--bg) 100%);
}

.hero__intro {
  max-width: 960px;
  margin-inline: auto;
  text-align: center;
  margin-bottom: 2.75rem;
}

.hero h1 {
  font-size: clamp(2.25rem, 5.5vw, 3.5rem);
  font-weight: 700;
  line-height: 1.25;
  letter-spacing: -0.02em;
  color: #ffffff;
  margin-bottom: 1.25rem;
  text-wrap: balance;
}

.hero h1 em {
  font-family: var(--serif);
  font-style: italic;
  font-weight: 400;
  color: var(--accent);
}

.hero__lead {
  font-family: var(--sans);
  font-size: clamp(1.2rem, 2.5vw, 1.5rem);
  font-weight: 500;
  line-height: 1.55;
  max-width: 720px;
  margin-inline: auto;
  text-wrap: balance;
  color: #ffc933;
  text-shadow: 0 0 28px rgba(255, 201, 51, 0.35);
}

.hero__cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
  max-width: 1240px;
  margin-inline: auto;
}

.hero-card {
  padding: 1.5rem 1.35rem;
  border-radius: var(--radius-lg);
  background: linear-gradient(155deg, rgba(18, 38, 36, 0.92) 0%, rgba(8, 14, 13, 0.96) 100%);
  border: 1px solid rgba(94, 234, 212, 0.28);
  box-shadow:
    0 0 0 1px rgba(94, 234, 212, 0.06) inset,
    0 0 32px var(--hero-glow-soft),
    0 12px 40px rgba(0, 0, 0, 0.35);
  transition: border-color 0.3s ease, box-shadow 0.3s ease, transform 0.3s ease;
}

.hero-card:hover {
  border-color: rgba(94, 234, 212, 0.5);
  box-shadow:
    0 0 0 1px rgba(94, 234, 212, 0.1) inset,
    0 0 48px rgba(94, 234, 212, 0.16),
    0 16px 48px rgba(0, 0, 0, 0.4);
  transform: translateY(-3px);
}

.hero-card__tag {
  display: block;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  color: #5eead4;
  margin-bottom: 0.85rem;
}

.hero-card__title {
  font-size: 1.05rem;
  font-weight: 700;
  line-height: 1.35;
  color: #ffffff;
  margin-bottom: 0.75rem;
}

.hero-card__text {
  font-size: 0.92rem;
  line-height: 1.65;
  color: var(--text-muted);
}

.hero-card__list {
  display: flex;
  flex-direction: column;
  gap: 0.55rem;
}

.hero-card__list li {
  font-size: 0.92rem;
  color: var(--text-muted);
  padding-left: 1.35rem;
  position: relative;
  line-height: 1.45;
}

.hero-card__list li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: #5eead4;
  font-weight: 700;
  font-size: 0.85rem;
}

.hero__cta-bar {
  position: relative;
  margin-top: 2.75rem;
  max-width: 640px;
  margin-inline: auto;
  padding: 2rem 2rem 1.75rem;
  text-align: center;
  border-radius: 24px;
  background:
    linear-gradient(160deg, rgba(22, 28, 34, 0.92) 0%, rgba(10, 12, 16, 0.96) 100%);
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow:
    0 0 0 1px rgba(94, 234, 212, 0.06) inset,
    0 20px 50px rgba(0, 0, 0, 0.35),
    0 0 60px rgba(94, 234, 212, 0.06);
  overflow: hidden;
}

.hero__cta-bar::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 80% 60% at 50% 0%, rgba(255, 239, 61, 0.08), transparent 65%),
    radial-gradient(ellipse 50% 40% at 100% 100%, rgba(94, 234, 212, 0.06), transparent);
  pointer-events: none;
}

.hero__cta-bar > * {
  position: relative;
  z-index: 1;
}

.hero__cta-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.35rem 0.85rem;
  margin-bottom: 1rem;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--accent);
  background: var(--accent-dim);
  border: 1px solid rgba(255, 239, 61, 0.2);
  border-radius: 100px;
}

.hero__cta-eyebrow::before {
  content: '';
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--accent);
  box-shadow: 0 0 8px var(--accent-glow);
}

.hero__cta-text {
  font-size: clamp(1.15rem, 2.5vw, 1.35rem);
  font-weight: 700;
  line-height: 1.35;
  color: #ffffff;
  margin-bottom: 0.5rem;
  letter-spacing: -0.02em;
}

.hero__cta-sub {
  font-size: 0.95rem;
  line-height: 1.55;
  color: var(--text-muted);
  margin-bottom: 1.5rem;
  max-width: 420px;
  margin-inline: auto;
}

.hero__cta-sub__line {
  display: block;
  margin-top: 0.25rem;
}

.hero__cta-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  justify-content: center;
  margin-bottom: 1.5rem;
}

.hero__cta-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.65rem;
  padding: 0.95rem 1.75rem;
  font-family: var(--sans);
  font-size: 1rem;
  font-weight: 700;
  border-radius: 100px;
  border: 1px solid transparent;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease, border-color 0.2s ease;
}

.hero__cta-btn:hover {
  transform: translateY(-2px);
}

.hero__cta-btn__icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2rem;
  height: 2rem;
  border-radius: 50%;
  background: rgba(10, 10, 11, 0.12);
}

.hero__cta-btn--ghost {
  color: #5eead4;
  background: rgba(94, 234, 212, 0.08);
  border-color: rgba(94, 234, 212, 0.35);
}

.hero__cta-btn--ghost:hover {
  background: rgba(94, 234, 212, 0.14);
  border-color: rgba(94, 234, 212, 0.55);
  box-shadow: 0 0 24px rgba(94, 234, 212, 0.12);
}

.hero__cta-btn--primary {
  color: #0a0a0b;
  background: var(--accent);
  border-color: var(--accent);
  box-shadow: 0 4px 24px rgba(255, 239, 61, 0.25);
}

.hero__cta-btn--primary:hover {
  background: #fff56b;
  border-color: #fff56b;
  box-shadow: 0 8px 36px rgba(255, 239, 61, 0.35);
}

.hero__cta-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  justify-content: center;
  padding-top: 1.25rem;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
}

.hero__cta-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  padding: 0.4rem 0.85rem;
  font-size: 0.8rem;
  font-weight: 500;
  color: #d4d4d8;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.07);
  border-radius: 100px;
}

.hero__cta-badge::before {
  content: '✓';
  font-size: 0.7rem;
  font-weight: 700;
  color: #5eead4;
}

.trust-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem 1.5rem;
  margin-top: 1.25rem;
}
.trust-badges span {
  font-size: 0.9rem;
  color: var(--text-dim);
}
.trust-badges--vertical {
  flex-direction: column;
  gap: 0.5rem;
  margin-top: 1.5rem;
}

/* ===== Welcome Video ===== */
.section--video {
  background:
    radial-gradient(ellipse 50% 40% at 50% 0%, var(--accent-dim), transparent),
    var(--bg);
}

.video-player {
  position: relative;
  max-width: 800px;
  margin-inline: auto;
  aspect-ratio: 16 / 9;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
}

.video-player__video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  background: #0d0d0f;
}

.video-player__overlay {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  background: linear-gradient(180deg, rgba(10, 10, 11, 0.2) 0%, rgba(10, 10, 11, 0.65) 100%);
  transition: opacity 0.3s ease;
  cursor: pointer;
}

.video-player.is-playing .video-player__overlay {
  opacity: 0;
  pointer-events: none;
}

.video-player.is-playing:hover .video-player__overlay {
  opacity: 1;
  pointer-events: auto;
  background: linear-gradient(180deg, transparent 60%, rgba(10, 10, 11, 0.8) 100%);
}

.video-player.is-playing .video-player__play {
  transform: scale(0.85);
  opacity: 0;
}

.video-player.is-playing:hover .video-player__play {
  opacity: 1;
  transform: scale(1);
}

.video-player__play {
  width: 72px;
  height: 72px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding-left: 4px;
  background: var(--accent);
  color: var(--bg);
  border: none;
  border-radius: 50%;
  cursor: pointer;
  transition: transform 0.25s ease, box-shadow 0.25s ease, opacity 0.25s ease;
  box-shadow: 0 0 40px var(--accent-glow);
}
.video-player__play:hover {
  transform: scale(1.08);
  box-shadow: 0 0 56px var(--accent-glow);
}

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

.video-player__placeholder {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  padding: 2rem;
  text-align: center;
  background: var(--bg-card);
}

.video-player__placeholder-icon {
  width: 64px;
  height: 64px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--accent-dim);
  color: var(--accent);
  border-radius: 50%;
}

.video-player__placeholder-title {
  font-size: 1rem;
  font-weight: 600;
}

.video-player__placeholder-text {
  font-size: 0.85rem;
  color: var(--text-muted);
  max-width: 320px;
  line-height: 1.6;
}
.video-player__placeholder-text strong {
  color: var(--accent);
  font-weight: 600;
}

.video-player.has-error .video-player__video,
.video-player.has-error .video-player__overlay {
  display: none;
}

/* ===== Marquee Strip ===== */
.marquee-strip {
  position: relative;
  overflow: hidden;
  padding: 3rem 0;
  margin: 0.5rem 0;
  background:
    radial-gradient(ellipse 80% 80% at 50% 50%, rgba(255, 239, 61, 0.03), transparent),
    linear-gradient(180deg, var(--bg) 0%, #13161c 48%, var(--bg-alt) 100%);
}

.marquee-strip__row {
  width: 108%;
  margin-left: -4%;
  overflow: hidden;
  padding: 0.75rem 0;
}

.marquee-strip__row--top {
  background: #16161e;
  color: #f4f4f5;
  transform: rotate(-2deg);
  position: relative;
  z-index: 2;
  margin-bottom: -0.5rem;
  border-block: 2px solid rgba(255, 255, 255, 0.08);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.06),
    0 8px 32px rgba(0, 0, 0, 0.35);
}

.marquee-strip__row--top::before {
  content: '';
  position: absolute;
  inset: 0;
  background: repeating-linear-gradient(
    90deg,
    transparent,
    transparent 12px,
    rgba(255, 239, 61, 0.04) 12px,
    rgba(255, 239, 61, 0.04) 13px
  );
  pointer-events: none;
}

.marquee-strip__row--bottom {
  background: var(--accent);
  color: #0a0a0b;
  transform: rotate(2deg);
  position: relative;
  z-index: 1;
  border-block: 3px solid #0a0a0b;
  box-shadow: 0 10px 36px rgba(255, 239, 61, 0.15);
}

.marquee-strip__row--bottom::after {
  content: '';
  position: absolute;
  inset: 0;
  background: repeating-linear-gradient(
    -45deg,
    transparent,
    transparent 8px,
    rgba(0, 0, 0, 0.04) 8px,
    rgba(0, 0, 0, 0.04) 9px
  );
  pointer-events: none;
}

.marquee-strip__track {
  display: flex;
  width: max-content;
  animation: marquee-strip-l 48s linear infinite;
}

.marquee-strip__track--reverse {
  animation: marquee-strip-r 48s linear infinite;
}

.marquee-strip__content {
  display: flex;
  align-items: center;
  gap: 3rem;
  padding-right: 3rem;
  flex-shrink: 0;
}

.marquee-strip__content span {
  display: inline-flex;
  align-items: center;
  gap: 1.25rem;
  font-size: clamp(0.95rem, 2.2vw, 1.35rem);
  font-weight: 500;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  white-space: nowrap;
}

.marquee-strip__content strong {
  font-weight: 800;
  letter-spacing: 0.02em;
}

.marquee-strip__row--top .marquee-strip__content strong {
  color: var(--accent);
}

.marquee-strip__dot {
  display: inline-block;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: currentColor;
  flex-shrink: 0;
  opacity: 0.55;
}

.marquee-strip__row--bottom .marquee-strip__dot {
  width: 8px;
  height: 8px;
  background: #0a0a0b;
  opacity: 1;
  box-shadow: 0 0 0 2px rgba(0, 0, 0, 0.15);
}

@keyframes marquee-strip-l {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

@keyframes marquee-strip-r {
  from { transform: translateX(-50%); }
  to { transform: translateX(0); }
}

@media (prefers-reduced-motion: reduce) {
  .marquee-strip__track {
    animation: none;
    width: 100%;
    justify-content: center;
    flex-wrap: wrap;
  }

  .marquee-strip__content[aria-hidden="true"] {
    display: none;
  }

  .marquee-strip__row--top,
  .marquee-strip__row--bottom {
    transform: none;
    width: 100%;
    margin-left: 0;
  }
}

/* ===== Sections ===== */
.section {
  position: relative;
  padding: 5rem 0;
  background: var(--bg);
}

.section + .section::before,
.section + .section--cta::before,
.marquee-strip + .section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: min(720px, 88%);
  height: 1px;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(255, 255, 255, 0.06) 20%,
    rgba(255, 239, 61, 0.14) 50%,
    rgba(255, 255, 255, 0.06) 80%,
    transparent
  );
  pointer-events: none;
}

#surec.section--dark {
  background:
    radial-gradient(ellipse 60% 70% at 0% 0%, rgba(94, 234, 212, 0.07), transparent 58%),
    linear-gradient(180deg, #161b26 0%, var(--bg-cool) 45%, #111318 100%);
}

#hizmetler {
  padding: 4rem 0;
  background:
    radial-gradient(ellipse 50% 55% at 100% 8%, rgba(255, 239, 61, 0.07), transparent 58%),
    radial-gradient(rgba(255, 255, 255, 0.028) 1px, transparent 1px),
    linear-gradient(180deg, #101014 0%, var(--bg) 55%, #121218 100%);
  background-size: auto, 28px 28px, auto;
}

#hizmetler .container {
  position: relative;
  z-index: 1;
}

#hizmetler .section__header {
  margin-bottom: 2rem;
}

#hizmetler .section__header h2 {
  font-size: clamp(1.65rem, 3.4vw, 2.35rem);
}

#hizmetler .section__header p {
  font-size: 1rem;
}

.section--alt:has(.infra-grid) {
  background:
    radial-gradient(ellipse 55% 65% at 100% 85%, rgba(255, 201, 51, 0.05), transparent 55%),
    linear-gradient(180deg, #161310 0%, var(--bg-warm) 50%, #10100e 100%);
}

#referanslar {
  background:
    radial-gradient(ellipse 45% 55% at 8% 45%, rgba(94, 234, 212, 0.06), transparent 58%),
    radial-gradient(ellipse 40% 50% at 92% 60%, rgba(255, 239, 61, 0.04), transparent),
    linear-gradient(180deg, var(--bg-teal) 0%, #12141c 55%, var(--bg-slate) 100%);
}

.section--dark:has(.fit-grid) {
  background:
    radial-gradient(ellipse 45% 60% at 0% 50%, rgba(34, 197, 94, 0.05), transparent 55%),
    radial-gradient(ellipse 45% 60% at 100% 50%, rgba(248, 113, 113, 0.04), transparent 55%),
    linear-gradient(180deg, #141018 0%, #101014 50%, var(--bg-plum) 100%);
}

#sss {
  background:
    radial-gradient(ellipse 70% 45% at 50% 100%, rgba(255, 239, 61, 0.06), transparent 58%),
    linear-gradient(180deg, var(--bg) 0%, #0f0f13 100%);
}

.section--dark:not(#surec):not(:has(.fit-grid)) {
  background:
    radial-gradient(ellipse 55% 80% at 0% 40%, rgba(94, 234, 212, 0.05), transparent 55%),
    linear-gradient(180deg, #151820 0%, #0f1116 100%);
}

.section--alt:not(:has(.infra-grid)):not(:has(.contact-grid)) {
  background:
    radial-gradient(ellipse 50% 60% at 100% 30%, rgba(255, 239, 61, 0.03), transparent),
    linear-gradient(180deg, var(--bg-warm) 0%, var(--bg-alt) 50%, var(--bg) 100%);
}

.section--alt:has(.contact-grid) {
  background:
    radial-gradient(ellipse 50% 60% at 0% 20%, rgba(94, 234, 212, 0.04), transparent 55%),
    linear-gradient(180deg, #131218 0%, var(--bg-plum) 55%, #101014 100%);
}

.section--cta {
  padding: 3.5rem 0;
  background:
    radial-gradient(ellipse 55% 70% at 20% 95%, rgba(255, 239, 61, 0.1), transparent 58%),
    radial-gradient(ellipse 45% 55% at 88% 10%, rgba(94, 234, 212, 0.06), transparent),
    linear-gradient(180deg, #181c24 0%, #13161e 55%, #101218 100%);
}

.section__header {
  max-width: 760px;
  margin-inline: auto;
  margin-bottom: 3rem;
  text-align: center;
}
.section__header p {
  color: var(--text-muted);
  font-size: 1.1rem;
}
.section__note {
  margin-top: 2.5rem;
  font-size: 1rem;
  color: #d4d4d8;
  text-align: center;
}

/* ===== Process ===== */
.process-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.process-step {
  padding: 2rem;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  position: relative;
  transition: var(--transition);
}
.process-step:hover {
  border-color: var(--accent);
  box-shadow: 0 0 40px var(--accent-dim);
}

.process-step__num {
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--text-dim);
  letter-spacing: 0.1em;
}
.process-step__icon {
  display: block;
  font-size: 1.5rem;
  margin: 1rem 0;
  color: var(--accent);
}
.process-step p {
  font-size: 0.95rem;
  color: var(--text-muted);
  margin-top: 0.75rem;
}

/* ===== Service Cards ===== */
.service-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0.9rem;
}

.service-card {
  padding: 1.2rem 1.3rem;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  transition: var(--transition);
}
.service-card:hover {
  border-color: var(--border-light);
  transform: translateY(-2px);
}

.service-card h3 {
  font-size: 1.05rem;
  margin-bottom: 0.3rem;
}

.service-card__tag {
  display: inline-block;
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  color: var(--accent);
  margin-bottom: 0.45rem;
}
.service-card__desc {
  font-size: 0.82rem;
  color: var(--text-dim);
  margin-bottom: 0.65rem;
}
.service-card ul {
  display: flex;
  flex-direction: column;
  gap: 0.2rem;
}
.service-card li {
  font-size: 0.84rem;
  color: var(--text-muted);
  padding-left: 0.85rem;
  position: relative;
}
.service-card li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--accent);
  font-size: 0.75rem;
}

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

.infra-card {
  padding: 2rem;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
}
.infra-card__tag {
  display: block;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  color: var(--accent);
  margin-bottom: 0.75rem;
}
.infra-card p {
  font-size: 0.95rem;
  color: var(--text-muted);
  margin-bottom: 1.25rem;
}

.tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}
.tags span {
  padding: 0.35rem 0.75rem;
  font-size: 0.85rem;
  font-weight: 500;
  background: var(--accent-dim);
  color: var(--accent);
  border-radius: 100px;
}

/* ===== Client Logos Marquee ===== */
.client-logos {
  position: relative;
  overflow: hidden;
  margin-bottom: 4rem;
  padding: 3rem 0;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.03) 0%, rgba(255, 255, 255, 0.01) 100%),
    rgba(12, 14, 18, 0.65);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--radius-lg);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.04);
  mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent);
  -webkit-mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent);
}

.client-logos__track {
  display: flex;
  width: max-content;
  animation: logo-marquee 36s linear infinite;
}

.client-logos__slide {
  display: flex;
  align-items: center;
  gap: 4.5rem;
  padding-right: 4.5rem;
  flex-shrink: 0;
}

.client-logos__item {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  width: 280px;
  height: 130px;
}

.client-logos__item img {
  display: block;
  width: auto;
  height: 100%;
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
  object-position: center;
  opacity: 0.92;
  image-rendering: auto;
}

@keyframes logo-marquee {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

@media (prefers-reduced-motion: reduce) {
  .client-logos__track {
    animation: none;
    flex-wrap: wrap;
    justify-content: center;
    width: 100%;
    gap: 2rem;
    padding: 0 1.5rem;
  }

  .client-logos__slide[aria-hidden="true"] {
    display: none;
  }

  .client-logos__slide {
    flex-wrap: wrap;
    justify-content: center;
    gap: 2rem;
    padding-right: 0;
  }
}

.section__header--sub {
  margin-bottom: 2.5rem;
}

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

.testimonial {
  padding: 1.75rem;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.testimonial__tag {
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  color: var(--accent);
}
.testimonial p {
  font-size: 1rem;
  color: var(--text-muted);
  flex: 1;
  font-style: italic;
}
.testimonial footer {
  display: flex;
  flex-direction: column;
  gap: 0.15rem;
  padding-top: 0.75rem;
  border-top: 1px solid var(--border);
}
.testimonial strong { font-size: 0.95rem; }
.testimonial footer span {
  font-size: 0.85rem;
  color: var(--text-dim);
}

/* ===== Fit Check ===== */
.fit-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.25rem;
}

.fit-card {
  padding: 2rem 1.75rem;
  border-radius: 24px;
  border: 1px solid transparent;
}

.fit-card--yes {
  background: linear-gradient(145deg, rgba(6, 28, 20, 0.95) 0%, rgba(4, 14, 10, 0.98) 55%, rgba(3, 10, 8, 1) 100%);
  border-color: rgba(34, 197, 94, 0.32);
  box-shadow:
    0 0 0 1px rgba(34, 197, 94, 0.06) inset,
    0 0 32px rgba(34, 197, 94, 0.1),
    0 16px 40px rgba(0, 0, 0, 0.35);
}

.fit-card--no {
  background: linear-gradient(145deg, rgba(28, 8, 8, 0.95) 0%, rgba(18, 5, 5, 0.98) 55%, rgba(12, 4, 4, 1) 100%);
  border-color: rgba(248, 113, 113, 0.32);
  box-shadow:
    0 0 0 1px rgba(248, 113, 113, 0.06) inset,
    0 0 32px rgba(248, 113, 113, 0.1),
    0 16px 40px rgba(0, 0, 0, 0.35);
}

.fit-card__top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 1rem;
}

.fit-card__label {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.fit-card__dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  flex-shrink: 0;
}

.fit-card--yes .fit-card__label { color: #4ade80; }
.fit-card--yes .fit-card__dot { background: #22c55e; box-shadow: 0 0 8px rgba(34, 197, 94, 0.6); }

.fit-card--no .fit-card__label { color: #fca5a5; }
.fit-card--no .fit-card__dot { background: #f87171; box-shadow: 0 0 8px rgba(248, 113, 113, 0.6); }

.fit-card__badge {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 26px;
  height: 26px;
  border-radius: 50%;
  font-size: 0.8rem;
  font-weight: 700;
}

.fit-card--yes .fit-card__badge {
  color: #22c55e;
  background: rgba(34, 197, 94, 0.12);
  border: 1px solid rgba(34, 197, 94, 0.25);
}

.fit-card--no .fit-card__badge {
  color: #f87171;
  background: rgba(248, 113, 113, 0.12);
  border: 1px solid rgba(248, 113, 113, 0.25);
}

.fit-card h3 {
  font-size: 1.15rem;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 1.25rem;
  line-height: 1.35;
}

.fit-card ul {
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
}

.fit-card li {
  font-size: 0.95rem;
  color: #d4d4d8;
  padding-left: 1.35rem;
  position: relative;
  line-height: 1.5;
}

.fit-card--yes li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: #22c55e;
  font-size: 0.8rem;
  font-weight: 700;
}

.fit-card--no li::before {
  content: '—';
  position: absolute;
  left: 0;
  color: #f87171;
  font-size: 0.85rem;
  font-weight: 700;
}

/* ===== Calendly-style Booking Widget ===== */
.container--booking {
  display: flex;
  justify-content: center;
}

.cal-widget {
  --cal-blue: #006bff;
  --cal-blue-light: #e8f2ff;
  --cal-blue-hover: #0055cc;
  --cal-text: #1a1a2e;
  --cal-muted: #666;
  --cal-border: #e8e8e8;
  --cal-bg: #fff;

  display: grid;
  grid-template-columns: 240px 1fr;
  width: min(780px, 100%);
  min-height: 420px;
  background: var(--cal-bg);
  border-radius: 12px;
  box-shadow: 0 8px 40px rgba(0, 0, 0, 0.35);
  overflow: hidden;
  color: var(--cal-text);
  font-family: var(--sans);
}

.cal-widget__sidebar {
  padding: 1.75rem 1.5rem;
  border-right: 1px solid var(--cal-border);
  display: flex;
  flex-direction: column;
}

.cal-widget__org {
  font-size: 0.8rem;
  color: var(--cal-muted);
  margin-bottom: 0.75rem;
}

.cal-widget__title {
  font-size: 1.15rem;
  font-weight: 700;
  line-height: 1.35;
  color: var(--cal-text);
  margin-bottom: 1.25rem;
}

.cal-widget__meta {
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
}
.cal-widget__meta li {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.85rem;
  color: var(--cal-muted);
}
.cal-widget__meta svg {
  flex-shrink: 0;
  color: var(--cal-muted);
}

.cal-widget__summary {
  margin-top: auto;
  padding-top: 1.25rem;
  font-size: 0.82rem;
  color: var(--cal-muted);
  line-height: 1.5;
  border-top: 1px solid var(--cal-border);
}

.cal-widget__main {
  padding: 1.5rem 1.75rem;
  position: relative;
  overflow-y: auto;
}

.cal-step__title {
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--cal-text);
  margin-bottom: 1.25rem;
}

.cal-step__subtitle {
  font-size: 0.85rem;
  color: var(--cal-muted);
  margin: -0.75rem 0 1.25rem;
}

.cal-back {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  margin-bottom: 0.75rem;
  background: none;
  border: none;
  border-radius: 50%;
  color: var(--cal-muted);
  cursor: pointer;
  transition: background 0.2s;
}
.cal-back:hover {
  background: #f5f5f5;
  color: var(--cal-text);
}

/* Calendar */
.cal-calendar__header {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  margin-bottom: 1rem;
}

.cal-calendar__month {
  font-weight: 600;
  font-size: 0.95rem;
  min-width: 140px;
  text-align: center;
  color: var(--cal-text);
}

.cal-calendar__nav {
  width: 32px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: none;
  border: none;
  border-radius: 50%;
  color: var(--cal-muted);
  cursor: pointer;
  transition: background 0.2s;
}
.cal-calendar__nav:hover {
  background: #f5f5f5;
  color: var(--cal-text);
}

.cal-calendar__weekdays {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  margin-bottom: 0.5rem;
}
.cal-calendar__weekdays span {
  text-align: center;
  font-size: 0.65rem;
  font-weight: 600;
  color: #999;
  letter-spacing: 0.02em;
}

.cal-calendar__days {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 2px;
}

.cal-day {
  width: 36px;
  height: 36px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.85rem;
  font-family: var(--sans);
  border: none;
  border-radius: 50%;
  background: none;
  color: var(--cal-muted);
  cursor: default;
  transition: background 0.15s, color 0.15s;
}
.cal-day--empty {
  visibility: hidden;
}
.cal-day--disabled {
  color: #ccc;
  cursor: not-allowed;
}
.cal-day--available {
  color: var(--cal-blue);
  font-weight: 600;
  cursor: pointer;
  background: var(--cal-blue-light);
}
.cal-day--available:hover {
  background: var(--cal-blue);
  color: #fff;
}
.cal-day--selected {
  background: var(--cal-blue) !important;
  color: #fff !important;
}

/* Timezone */
.cal-timezone {
  margin-top: 1.5rem;
  padding-top: 1rem;
  border-top: 1px solid var(--cal-border);
}
.cal-timezone__label {
  display: block;
  font-size: 0.72rem;
  font-weight: 600;
  color: var(--cal-muted);
  margin-bottom: 0.35rem;
}
.cal-timezone__value {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.82rem;
  color: var(--cal-text);
}
.cal-timezone__value svg {
  color: var(--cal-muted);
}

/* Time slots */
.cal-times {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  max-height: 280px;
  overflow-y: auto;
  padding-right: 4px;
}

.time-slot {
  width: 100%;
  padding: 0.7rem 1rem;
  font-family: var(--sans);
  font-size: 0.9rem;
  font-weight: 600;
  text-align: center;
  color: var(--cal-blue);
  background: #fff;
  border: 1px solid var(--cal-blue);
  border-radius: 6px;
  cursor: pointer;
  transition: background 0.15s, color 0.15s;
}
.time-slot:hover:not(:disabled) {
  background: var(--cal-blue);
  color: #fff;
}
.time-slot:disabled {
  opacity: 0.35;
  cursor: not-allowed;
}

/* Form */
.cal-form {
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
}

.cal-form__group label {
  display: block;
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--cal-text);
  margin-bottom: 0.35rem;
}

.cal-form__group input {
  width: 100%;
  padding: 0.65rem 0.85rem;
  font-family: var(--sans);
  font-size: 0.9rem;
  border: 1px solid var(--cal-border);
  border-radius: 6px;
  color: var(--cal-text);
  transition: border-color 0.2s, box-shadow 0.2s;
}
.cal-form__group input:focus {
  outline: none;
  border-color: var(--cal-blue);
  box-shadow: 0 0 0 3px var(--cal-blue-light);
}
.cal-form__group input::placeholder {
  color: #aaa;
}

.cal-btn {
  width: 100%;
  padding: 0.75rem 1rem;
  margin-top: 0.25rem;
  font-family: var(--sans);
  font-size: 0.9rem;
  font-weight: 600;
  color: #fff;
  background: var(--cal-blue);
  border: none;
  border-radius: 6px;
  cursor: pointer;
  transition: background 0.2s;
}
.cal-btn:hover {
  background: var(--cal-blue-hover);
}
.cal-btn:disabled {
  opacity: 0.5;
  cursor: not-allowed;
}
.cal-btn--outline {
  background: #fff;
  color: var(--cal-blue);
  border: 1px solid var(--cal-blue);
}
.cal-btn--outline:hover {
  background: var(--cal-blue-light);
}

.cal-form__error {
  font-size: 0.8rem;
  color: #e53e3e;
  text-align: center;
}

.honeypot {
  position: absolute;
  left: -9999px;
  opacity: 0;
  height: 0;
  width: 0;
}

/* Success */
.cal-step--success {
  text-align: center;
  padding-top: 2rem;
}
.cal-success__icon {
  width: 52px;
  height: 52px;
  margin: 0 auto 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #e6f9ee;
  color: #22a06b;
  font-size: 1.5rem;
  font-weight: 700;
  border-radius: 50%;
}
.cal-success__detail {
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--cal-text);
  margin-bottom: 0.5rem;
}
.cal-success__note {
  font-size: 0.85rem;
  color: var(--cal-muted);
  margin-bottom: 1.25rem;
}

/* ===== Contact ===== */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  max-width: 960px;
  margin-inline: auto;
}

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

.contact-block h3 {
  margin-bottom: 0.75rem;
}

.contact-block p {
  color: var(--text-muted);
  font-size: 1rem;
  margin-bottom: 1rem;
}

.contact-details {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  margin-bottom: 1.75rem;
}

.contact-details__item {
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
}

.contact-details__label {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-dim);
}

.contact-link {
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--accent);
  transition: opacity var(--transition), color var(--transition);
}

.contact-link:hover {
  opacity: 0.85;
  color: #fff56b;
}

.contact-social {
  display: flex;
  gap: 0.75rem;
}

.contact-social__link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border-radius: 12px;
  color: #f4f4f5;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid var(--border);
  transition: transform var(--transition), border-color var(--transition), background var(--transition), color var(--transition);
}

.contact-social__link:hover {
  transform: translateY(-2px);
  color: var(--accent);
  border-color: rgba(255, 239, 61, 0.35);
  background: var(--accent-dim);
}

.contact-notes {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
}

.contact-notes li {
  font-size: 0.85rem;
  color: var(--text-dim);
}

/* ===== FAQ ===== */
.faq-list {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  max-width: 900px;
  margin-inline: auto;
}

.faq-item {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  transition: var(--transition);
}
.faq-item[open] {
  border-color: var(--border-light);
}

.faq-item summary {
  padding: 1.25rem 1.5rem;
  font-weight: 600;
  font-size: 1.05rem;
  cursor: pointer;
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: color var(--transition);
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after {
  content: '+';
  font-size: 1.25rem;
  font-weight: 400;
  color: var(--text-dim);
  transition: transform var(--transition);
}
.faq-item[open] summary::after {
  transform: rotate(45deg);
}
.faq-item summary:hover { color: var(--accent); }

.faq-item p {
  padding: 0 1.5rem 1.25rem;
  font-size: 0.98rem;
  color: var(--text-muted);
  line-height: 1.7;
}

/* ===== Floating CTA ===== */
.float-cta {
  position: fixed;
  right: 1.25rem;
  bottom: 1.25rem;
  z-index: 110;
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  padding: 0.55rem 0.9rem 0.55rem 0.65rem;
  max-width: calc(100vw - 2rem);
  color: #0a0a0b;
  background: var(--accent);
  border: 1px solid var(--accent);
  border-radius: 100px;
  box-shadow:
    0 6px 24px rgba(0, 0, 0, 0.32),
    0 0 18px rgba(255, 239, 61, 0.18);
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
  transition:
    opacity 0.3s ease,
    visibility 0.3s ease,
    transform 0.3s ease,
    box-shadow 0.2s ease,
    background 0.2s ease;
}

.float-cta--hidden {
  opacity: 0;
  visibility: hidden;
  transform: translateY(12px);
  pointer-events: none;
}

.float-cta:hover {
  background: #fff56b;
  box-shadow:
    0 12px 40px rgba(0, 0, 0, 0.4),
    0 0 32px rgba(255, 239, 61, 0.35);
  transform: translateY(-2px);
}

.float-cta__icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 1.65rem;
  height: 1.65rem;
  flex-shrink: 0;
  border-radius: 50%;
  background: rgba(10, 10, 11, 0.1);
}

.float-cta__text {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0.1rem;
  line-height: 1.2;
  min-width: 0;
}

.float-cta__text strong {
  font-size: 0.74rem;
  font-weight: 700;
  letter-spacing: -0.01em;
  white-space: nowrap;
}

.float-cta__text small {
  font-size: 0.62rem;
  font-weight: 500;
  color: rgba(10, 10, 11, 0.65);
  white-space: nowrap;
}

/* ===== Footer ===== */
.footer {
  padding: 3rem 0;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  background:
    radial-gradient(ellipse 60% 80% at 50% 0%, rgba(94, 234, 212, 0.03), transparent),
    linear-gradient(180deg, #121218 0%, #09090c 100%);
}
.footer__inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.5rem;
  text-align: center;
}
.footer__brand p {
  font-size: 0.85rem;
  color: var(--text-dim);
  margin-top: 0.35rem;
}
.footer__links {
  display: flex;
  gap: 2rem;
}
.footer__links a {
  font-size: 0.85rem;
  color: var(--text-muted);
  transition: color var(--transition);
}
.footer__links a:hover { color: var(--text); }
.footer__copy {
  font-size: 0.78rem;
  color: var(--text-dim);
}

/* ===== Responsive ===== */
@media (max-width: 1024px) {
  .hero__cards {
    grid-template-columns: 1fr;
    max-width: 520px;
  }

  .hero__cta-actions {
    flex-direction: column;
    align-items: stretch;
  }

  .hero__cta-btn {
    width: 100%;
  }

  .process-grid,
  .infra-grid,
  .testimonial-grid {
    grid-template-columns: repeat(2, 1fr);
  }

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

@media (max-width: 768px) {
  :root {
    --header-h: 60px;
  }

  html {
    font-size: 100%;
    scroll-padding-top: calc(var(--header-h) + env(safe-area-inset-top, 0px));
  }

  .container {
    width: 100%;
    max-width: var(--container-max);
    padding-inline: clamp(1rem, 4.5vw, 1.5rem);
  }

  .nav { display: none; }

  .header {
    height: calc(var(--header-h) + env(safe-area-inset-top, 0px));
    padding-top: env(safe-area-inset-top, 0px);
  }

  .header__social,
  .header__cta {
    display: none;
  }

  .header__actions {
    display: flex;
    gap: 0.6rem;
    margin-right: 0.5rem;
  }

  .logo {
    font-size: 0.72rem;
    letter-spacing: 0.1em;
  }

  .menu-toggle {
    display: flex;
    padding: 10px;
    margin-right: -6px;
  }

  .mobile-nav {
    display: block;
    top: calc(var(--header-h) + env(safe-area-inset-top, 0px));
    padding: 1.5rem clamp(1rem, 4.5vw, 1.5rem);
    padding-bottom: calc(1.5rem + env(safe-area-inset-bottom, 0px));
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
  }

  .mobile-nav a {
    font-size: 1.1rem;
  }

  .mobile-nav nav .btn {
    width: 100%;
    margin-top: 0.5rem;
  }

  .hero {
    padding: calc(var(--header-h) + env(safe-area-inset-top, 0px) + 2rem) 0 2.5rem;
  }

  .hero__intro {
    margin-bottom: 2rem;
  }

  .hero h1 {
    font-size: clamp(1.55rem, 6.5vw, 2.25rem);
    line-height: 1.25;
  }

  .hero__lead {
    font-size: clamp(1rem, 4vw, 1.2rem);
    line-height: 1.55;
  }

  .hero__cards {
    max-width: 100%;
    gap: 1rem;
  }

  .hero-card {
    padding: 1.25rem 1.15rem;
  }

  .hero__cta-bar {
    margin-top: 2rem;
    padding: 1.5rem 1.25rem 1.35rem;
    border-radius: 18px;
  }

  .hero__cta-text {
    font-size: 1.05rem;
  }

  .hero__cta-sub {
    font-size: 0.88rem;
  }

  .hero__cta-badges {
    gap: 0.4rem;
  }

  .hero__cta-badge {
    font-size: 0.72rem;
    padding: 0.35rem 0.7rem;
  }

  .marquee-strip {
    padding: 2rem 0;
  }

  .marquee-strip__content span {
    font-size: clamp(0.8rem, 3.5vw, 1rem);
  }

  .section {
    padding: 3rem 0;
  }

  .section__header {
    margin-bottom: 2rem;
  }

  .section__header h2 {
    font-size: clamp(1.45rem, 5.5vw, 2rem);
  }

  .section__header p {
    font-size: 0.95rem;
  }

  .process-grid,
  .service-grid,
  .infra-grid,
  .testimonial-grid,
  .fit-grid,
  .contact-grid {
    grid-template-columns: 1fr;
  }

  .service-card,
  .process-step,
  .infra-card,
  .testimonial,
  .fit-card,
  .contact-block {
    padding: 1.35rem 1.25rem;
  }

  .client-logos {
    padding: 2rem 0;
    margin-bottom: 3rem;
  }

  .client-logos__slide {
    gap: 3rem;
    padding-right: 3rem;
  }

  .client-logos__item {
    width: 200px;
    height: 96px;
  }

  .faq-item summary {
    font-size: 0.95rem;
    padding: 1rem 1.15rem;
  }

  .faq-item p {
    padding: 0 1.15rem 1rem;
    font-size: 0.9rem;
  }

  .footer {
    padding: 2.5rem 0 calc(2.5rem + env(safe-area-inset-bottom, 0px));
  }

  .footer__links {
    flex-wrap: wrap;
    justify-content: center;
    gap: 1rem 1.5rem;
  }

  .footer__copy {
    font-size: 0.72rem;
    line-height: 1.6;
    padding-inline: 0.5rem;
  }

  .float-cta {
    right: max(0.85rem, env(safe-area-inset-right, 0px));
    bottom: max(0.85rem, env(safe-area-inset-bottom, 0px));
    padding: 0.5rem 0.75rem 0.5rem 0.55rem;
    gap: 0.4rem;
  }

  .float-cta__text strong {
    font-size: 0.68rem;
  }

  .float-cta__text small {
    font-size: 0.56rem;
  }

  .container--booking {
    padding-inline: 0;
  }

  .cal-widget {
    width: 100%;
    border-radius: 10px;
    box-shadow: 0 4px 24px rgba(0, 0, 0, 0.35);
  }
}

@media (max-width: 600px) {
  .cal-widget {
    grid-template-columns: 1fr;
    min-height: auto;
  }

  .cal-widget__sidebar {
    border-right: none;
    border-bottom: 1px solid var(--cal-border);
    padding: 1.15rem 1rem 0.9rem;
  }

  .cal-widget__title {
    font-size: 0.95rem;
    margin-bottom: 0.65rem;
  }

  .cal-widget__meta {
    flex-direction: row;
    flex-wrap: wrap;
    gap: 0.5rem 1rem;
  }

  .cal-widget__summary {
    margin-top: 0.85rem;
    padding-top: 0.65rem;
  }

  .cal-widget__main {
    padding: 1rem;
  }

  .cal-day {
    width: auto;
    max-width: 42px;
    height: 38px;
    font-size: 0.78rem;
  }

  .cal-calendar__weekdays span {
    font-size: 0.58rem;
  }

  .cal-times {
    max-height: 220px;
  }

  .time-slot {
    padding: 0.65rem 0.85rem;
    font-size: 0.85rem;
  }

  .section--cta {
    padding: 2.5rem 0;
  }
}

@media (max-width: 480px) {
  .container {
    padding-inline: 1rem;
  }

  .hero h1 {
    font-size: 1.45rem;
  }

  .hero__cta-bar {
    padding: 1.25rem 1rem;
  }

  .hero__cta-btn {
    font-size: 0.9rem;
    padding: 0.85rem 1.15rem;
  }

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

  .cal-widget__meta {
    flex-direction: column;
    align-items: flex-start;
    gap: 0.4rem;
  }

  .float-cta__text {
    display: none;
  }

  .float-cta {
    width: 44px;
    height: 44px;
    padding: 0;
    justify-content: center;
    border-radius: 50%;
  }

  .float-cta__icon {
    width: auto;
    height: auto;
    background: none;
  }

  .video-player__play {
    width: 60px;
    height: 60px;
  }

  .video-player__hint {
    font-size: 0.78rem;
  }
}

@media (max-width: 360px) {
  .hero h1 {
    font-size: 1.3rem;
  }

  .cal-day {
    max-width: 36px;
    height: 34px;
    font-size: 0.72rem;
  }
}
