:root {
  /* Light theme - White background with cyan/teal accents */
  --bg-body: #ffffff;           /* Pure white background */
  --bg-card: #f8fafc;          /* Light gray for cards */
  --bg-soft: #f1f5f9;          /* Soft surfaces */
  --primary: #00b4d8;           /* Bright cyan/teal primary */
  --primary-soft: rgba(0, 180, 216, 0.1);
  --accent: #22c55e;            /* Green accent */
  --text-main: #0f172a;         /* Dark slate text */
  --text-muted: #64748b;        /* Medium gray muted text */
  --border-subtle: #e2e8f0;     /* Light gray border */
  --radius-lg: 20px;
  --radius-xl: 26px;
  --shadow-soft: 0 22px 50px rgba(0, 0, 0, 0.08);
  --shadow-glow: 0 0 40px rgba(0, 180, 216, 0.2);
  --container-width: min(1180px, 100% - 48px);
  --font-heading: "Space Grotesk", system-ui, sans-serif;
}

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

html,
body {
  height: 100%;
  scroll-behavior: smooth;
}

body {
  font-family: "Inter", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI",
    sans-serif;
  background: linear-gradient(to bottom, #ffffff 0, #f8fafc 100%);
  color: var(--text-main);
  line-height: 1.6;
}

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

img {
  max-width: 100%;
  display: block;
}

.container {
  width: var(--container-width);
  margin-inline: auto;
}

/* ========== Header ========== */
.header {
  position: sticky;
  top: 0;
  z-index: 100;
  backdrop-filter: blur(20px) saturate(180%);
  background: rgba(255, 255, 255, 0.85);
  border-bottom: 1px solid rgba(226, 232, 240, 0.6);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.04);
  transition: all 0.3s ease;
}

.header.scrolled {
  background: rgba(255, 255, 255, 0.98);
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.08);
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 0;
  gap: 32px;
}

.logo {
  display: flex;
  align-items: center;
  gap: 12px;
  transition: transform 0.3s ease;
}

.logo:hover {
  transform: translateY(-1px);
}

.logo-badge {
  width: 42px;
  height: 42px;
  border-radius: 12px;
  background: linear-gradient(135deg, #00b4d8 0%, #0077b6 100%);
  box-shadow: 0 4px 12px rgba(0, 180, 216, 0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: "Space Grotesk", system-ui;
  font-weight: 700;
  font-size: 20px;
  color: #ffffff;
  position: relative;
  overflow: hidden;
}

.logo-badge::before {
  content: "";
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: linear-gradient(45deg, transparent, rgba(255, 255, 255, 0.2), transparent);
  transform: rotate(45deg);
  animation: shine 3s infinite;
}

@keyframes shine {
  0% { transform: translateX(-100%) translateY(-100%) rotate(45deg); }
  100% { transform: translateX(100%) translateY(100%) rotate(45deg); }
}

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

.logo-text span:first-child {
  font-family: "Space Grotesk", system-ui;
  font-weight: 700;
  letter-spacing: 0.05em;
  font-size: 15px;
  color: var(--text-main);
  line-height: 1.2;
}

.logo-text span:last-child {
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.08em;
  color: var(--text-muted);
  text-transform: uppercase;
}

.nav-links {
  display: flex;
  gap: 8px;
  font-size: 15px;
  font-weight: 500;
}

.nav-links a {
  position: relative;
  padding: 10px 16px;
  color: var(--text-muted);
  border-radius: 10px;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  overflow: hidden;
}

.nav-links a::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, rgba(0, 180, 216, 0.08), rgba(255, 107, 53, 0.05));
  opacity: 0;
  transition: opacity 0.3s ease;
  border-radius: 10px;
}

.nav-links a::after {
  content: "";
  position: absolute;
  bottom: 8px;
  left: 50%;
  transform: translateX(-50%);
  width: 0;
  height: 2px;
  background: linear-gradient(90deg, #00b4d8, #ff6b35);
  border-radius: 2px;
  transition: width 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.nav-links a:hover {
  color: var(--text-main);
}

.nav-links a:hover::before {
  opacity: 1;
}

.nav-links a:hover::after {
  width: calc(100% - 32px);
}

.nav-links a:active {
  transform: scale(0.98);
}

.nav-cta {
  display: flex;
  align-items: center;
  gap: 12px;
}

.btn {
  border-radius: 12px;
  padding: 12px 24px;
  font-size: 14px;
  font-weight: 600;
  border: none;
  cursor: pointer;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  display: inline-flex;
  align-items: center;
  gap: 8px;
  position: relative;
  overflow: hidden;
  white-space: nowrap;
}

.btn::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 0;
  height: 0;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.2);
  transform: translate(-50%, -50%);
  transition: width 0.6s, height 0.6s;
}

.btn:hover::before {
  width: 300px;
  height: 300px;
}

.btn-outline {
  border: 2px solid rgba(226, 232, 240, 0.8);
  background: rgba(248, 250, 252, 0.6);
  color: var(--text-main);
  backdrop-filter: blur(10px);
}

.btn-outline:hover {
  border-color: rgba(0, 180, 216, 0.4);
  background: rgba(255, 255, 255, 1);
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(0, 180, 216, 0.15);
}

.btn-primary {
  background: linear-gradient(135deg, #00b4d8 0%, #0077b6 100%);
  color: #ffffff;
  box-shadow: 0 4px 15px rgba(0, 180, 216, 0.3);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 30px rgba(0, 180, 216, 0.4);
  background: linear-gradient(135deg, #00c4e8 0%, #0088c6 100%);
}

.btn-primary:active {
  transform: translateY(0);
}

/* Mobile nav toggle */
.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: rgba(248, 250, 252, 0.8);
  border: 2px solid rgba(226, 232, 240, 0.8);
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.3s ease;
  position: relative;
}

.nav-toggle:hover {
  background: rgba(255, 255, 255, 1);
  border-color: rgba(0, 180, 216, 0.3);
  transform: scale(1.05);
}

.nav-toggle.active {
  background: linear-gradient(135deg, rgba(0, 180, 216, 0.1), rgba(255, 107, 53, 0.05));
  border-color: rgba(0, 180, 216, 0.4);
}

.nav-toggle span {
  width: 20px;
  height: 2px;
  background: var(--text-main);
  border-radius: 2px;
  position: relative;
  display: block;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.nav-toggle span::before,
.nav-toggle span::after {
  content: "";
  position: absolute;
  left: 0;
  width: 20px;
  height: 2px;
  background: var(--text-main);
  border-radius: 2px;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.nav-toggle span::before {
  top: -6px;
}

.nav-toggle span::after {
  top: 6px;
}

.nav-toggle.active span {
  background: transparent;
}

.nav-toggle.active span::before {
  top: 0;
  transform: rotate(45deg);
}

.nav-toggle.active span::after {
  top: 0;
  transform: rotate(-45deg);
}

/* Mobile menu open state */
.nav-links.nav-open,
.nav-cta.nav-open {
  display: flex;
  flex-direction: column;
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  background: rgba(255, 255, 255, 0.98);
  backdrop-filter: blur(20px);
  padding: 24px;
  border-top: 1px solid rgba(226, 232, 240, 0.8);
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1);
  gap: 8px;
  animation: slideDown 0.3s ease;
}

@keyframes slideDown {
  from {
    opacity: 0;
    transform: translateY(-10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.nav-links.nav-open a {
  padding: 14px 20px;
  border-radius: 12px;
  width: 100%;
  text-align: left;
}

.nav-cta.nav-open {
  margin-top: 12px;
  padding-top: 12px;
  border-top: 1px solid rgba(226, 232, 240, 0.8);
}

.nav-cta.nav-open .btn {
  width: 100%;
  justify-content: center;
}

/* ========== Hero ========== */
main {
  padding-block: 32px 48px;
}

.hero {
  display: grid;
  gap: 46px;
  align-items: center;
  grid-template-columns: minmax(0, 1.35fr) minmax(0, 1.1fr);
  padding-top: 64px;
  padding-bottom: 64px;
}

.hero-kicker {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 4px 10px 4px 4px;
  border-radius: 999px;
  background: rgba(248, 250, 252, 0.95);
  border: 1px solid rgba(75, 85, 99, 0.65);
  font-size: 11px;
  color: var(--text-muted);
  margin-bottom: 16px;
}

.pulse-dot {
  width: 22px;
  height: 22px;
  border-radius: 999px;
  background: radial-gradient(circle at 30% 20%, #00b4d8, #0077b6);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 0 25px rgba(0, 180, 216, 0.4);
}

.pulse-dot span {
  width: 8px;
  height: 8px;
  border-radius: 999px;
  background: #ffffff;
}

.hero-heading {
  font-family: "Space Grotesk", system-ui;
  font-size: clamp(2.4rem, 4vw, 3.1rem);
  line-height: 1.02;
  letter-spacing: -0.04em;
  margin-bottom: 14px;
}

.hero-heading span.highlight {
  background: linear-gradient(120deg, #00b4d8, #0077b6, #ff6b35);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-subtitle {
  font-size: 15px;
  max-width: 460px;
  color: var(--text-muted);
  margin-bottom: 22px;
}

.hero-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 24px;
}

.chip {
  font-size: 11px;
  padding: 4px 10px;
  border-radius: 999px;
  border: 1px solid rgba(226, 232, 240, 0.8);
  background: rgba(248, 250, 252, 0.9);
  color: var(--text-main);
}

.hero-actions {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 22px;
  flex-wrap: wrap;
}

.hero-note {
  font-size: 11px;
  color: var(--text-muted);
}

.hero-metrics {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  margin-top: 10px;
}

.metric {
  min-width: 110px;
}

.metric h4 {
  font-size: 18px;
  font-weight: 600;
}

.metric p {
  font-size: 11px;
  color: var(--text-muted);
}

/* Hero Right */
.hero-visual {
  position: relative;
  min-height: 400px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 24px;
}

.hero-image-wrapper {
  position: relative;
  width: 100%;
  max-width: 500px;
  height: 300px;
  border-radius: 24px;
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
  border: 2px solid rgba(226, 232, 240, 0.8);
}

.hero-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.hero-image-wrapper:hover .hero-image {
  transform: scale(1.05);
}

.hero-image-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(0, 180, 216, 0.1), rgba(34, 197, 94, 0.05));
  pointer-events: none;
}

.hero-card {
  position: relative;
  border-radius: 24px;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.95), rgba(248, 250, 252, 0.9));
  border: 2px solid rgba(226, 232, 240, 0.8);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1), 0 0 0 1px rgba(0, 180, 216, 0.1);
  padding: 28px;
  overflow: hidden;
  isolation: isolate;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  backdrop-filter: blur(20px);
}

.hero-card::before {
  content: "";
  position: absolute;
  top: -50%;
  right: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle, rgba(0, 180, 216, 0.1), transparent 70%);
  animation: rotate 20s linear infinite;
  pointer-events: none;
}

@keyframes rotate {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
  }
}

.hero-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.12), 0 0 0 1px rgba(0, 180, 216, 0.2);
  border-color: rgba(0, 180, 216, 0.3);
}

.hero-card-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.3fr) minmax(0, 1fr);
  gap: 20px;
  align-items: start;
  position: relative;
  z-index: 1;
}

.hero-card-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 16px;
  font-size: 12px;
  color: var(--text-muted);
  font-weight: 500;
}

.hero-card-header span.label {
  padding: 6px 12px;
  border-radius: 50px;
  background: linear-gradient(135deg, rgba(0, 180, 216, 0.1), rgba(255, 107, 53, 0.05));
  border: 1px solid rgba(0, 180, 216, 0.2);
  font-size: 11px;
  color: var(--text-main);
  font-weight: 600;
}

.hero-card-title {
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 10px;
  color: var(--text-main);
  line-height: 1.3;
}

.hero-card-subtitle {
  font-size: 13px;
  color: var(--text-muted);
  margin-bottom: 16px;
  font-weight: 500;
}

.hero-card-list {
  list-style: none;
  font-size: 13px;
  color: var(--text-main);
  display: grid;
  gap: 10px;
  margin-bottom: 16px;
}

.hero-card-list li {
  display: flex;
  align-items: center;
  padding: 8px 0;
  position: relative;
  padding-left: 24px;
}

.hero-card-list li::before {
  content: "✓";
  position: absolute;
  left: 0;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: linear-gradient(135deg, #00b4d8, #0077b6);
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 10px;
  font-weight: 700;
  margin-right: 8px;
}

.hero-card-footer {
  font-size: 12px;
  color: var(--text-muted);
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 16px;
  padding-top: 16px;
  border-top: 1px solid rgba(226, 232, 240, 0.8);
}

.badge-soft {
  padding: 6px 12px;
  border-radius: 50px;
  background: linear-gradient(135deg, rgba(0, 180, 216, 0.1), rgba(255, 107, 53, 0.05));
  border: 1px solid rgba(0, 180, 216, 0.2);
  font-size: 11px;
  font-weight: 600;
  color: var(--primary);
}

.hero-card-stats {
  border-radius: 16px;
  background: linear-gradient(135deg, rgba(248, 250, 252, 0.8), rgba(255, 255, 255, 0.6));
  border: 1px solid rgba(226, 232, 240, 0.8);
  padding: 16px;
  font-size: 11px;
  display: grid;
  gap: 12px;
  backdrop-filter: blur(10px);
}

.stat-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 10px 12px;
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.8);
  transition: all 0.2s ease;
}

.stat-row:hover {
  background: rgba(255, 255, 255, 1);
  transform: translateX(4px);
}

.stat-row strong {
  color: var(--primary);
  font-weight: 700;
  font-size: 12px;
}

.pill {
  padding: 4px 10px;
  border-radius: 50px;
  background: linear-gradient(135deg, rgba(0, 180, 216, 0.15), rgba(0, 180, 216, 0.05));
  color: var(--primary);
  font-size: 10px;
  font-weight: 600;
  border: 1px solid rgba(0, 180, 216, 0.2);
}

.hero-orbit {
  position: absolute;
  inset: -20px;
  pointer-events: none;
  opacity: 0.6;
  z-index: 0;
}

.hero-orbit::before {
  content: "";
  position: absolute;
  inset: 20px;
  border-radius: 50%;
  border: 2px dashed rgba(0, 180, 216, 0.3);
  animation: orbit-rotate 20s linear infinite;
}

@keyframes orbit-rotate {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
  }
}

.hero-floating-tag {
  position: absolute;
  right: 8%;
  bottom: -16px;
  transform: translateY(-50%);
  border-radius: 50px;
  padding: 10px 18px;
  font-size: 12px;
  font-weight: 600;
  background: linear-gradient(135deg, #ffffff, #f8fafc);
  border: 2px solid rgba(0, 180, 216, 0.3);
  box-shadow: 0 12px 40px rgba(0, 180, 216, 0.2);
  color: var(--text-main);
  z-index: 10;
  animation: float 3s ease-in-out infinite;
}

@keyframes float {
  0%, 100% {
    transform: translateY(-50%) translateX(0);
  }
  50% {
    transform: translateY(-50%) translateX(8px);
  }
}

.hero-floating-tag strong {
  color: var(--primary);
}

/* ========== Trusted by ========== */
.trusted {
  margin-top: 64px;
  margin-bottom: 64px;
  opacity: 0.95;
}

.trusted-inner {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  align-items: center;
  justify-content: space-between;
  border-radius: var(--radius-lg);
  border: 1px solid rgba(226, 232, 240, 0.8);
  padding: 12px 18px;
  background: radial-gradient(
      circle at left,
      rgba(0, 180, 216, 0.15),
      transparent 55%
    ),
    rgba(255, 255, 255, 0.95);
}

.trusted-label {
  font-size: 11px;
  color: var(--text-muted);
}

.trusted-logos {
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
  justify-content: flex-end;
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  color: var(--text-main);
}

.trusted-pill {
  padding: 4px 10px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.9);
  border: 1px solid rgba(55, 65, 81, 0.9);
}

/* ========== Our Clients ========== */
.clients-section {
  margin-top: 64px;
  margin-bottom: 64px;
  padding: 64px 0;
  position: relative;
  overflow: hidden;
}

.clients-header {
  text-align: center;
  margin-bottom: 48px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.clients-header .section-kicker {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 12px;
  display: block;
}

.clients-header .section-title {
  font-family: var(--font-heading);
  font-size: clamp(32px, 4.5vw, 48px);
  margin-bottom: 16px;
  line-height: 1.2;
  font-weight: 700;
  color: var(--text-main);
}

.clients-header .section-subtitle {
  font-size: 16px;
  color: var(--text-muted);
  line-height: 1.6;
  font-weight: 400;
  max-width: 600px;
  margin: 0 auto;
}

.clients-slider-wrapper {
  position: relative;
  overflow: hidden;
  margin: 0 auto;
  max-width: 100%;
}

.clients-slider-wrapper::before,
.clients-slider-wrapper::after {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  width: 120px;
  z-index: 2;
  pointer-events: none;
}

.clients-slider-wrapper::before {
  left: 0;
  background: linear-gradient(to right, var(--bg-body), transparent);
}

.clients-slider-wrapper::after {
  right: 0;
  background: linear-gradient(to left, var(--bg-body), transparent);
}

.clients-slider {
  display: flex;
  gap: 64px;
  align-items: center;
  animation: slideClients 40s linear infinite;
  will-change: transform;
  width: fit-content;
}

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

@keyframes slideClients {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(calc(-50% - 32px));
  }
}

.client-logo-item {
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 180px;
  height: 80px;
  padding: 20px 32px;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  opacity: 0.5;
  filter: grayscale(100%) brightness(0.8);
  cursor: default;
}

.client-logo-item:hover {
  opacity: 1;
  filter: grayscale(0%) brightness(1);
  transform: scale(1.05);
}

.client-logo-text {
  font-size: 18px;
  font-weight: 600;
  color: var(--text-main);
  font-family: var(--font-heading);
  letter-spacing: -0.01em;
  white-space: nowrap;
  transition: color 0.3s ease;
}

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

/* Duplicate logos for seamless loop */
.clients-slider .client-logo-item:nth-child(n+9) {
  /* Second set of logos */
}

@media (max-width: 768px) {
  .clients-section {
    padding: 48px 0;
  }

  .clients-header {
    margin-bottom: 40px;
  }

  .clients-slider {
    gap: 48px;
  }

  .client-logo-item {
    width: 140px;
    height: 60px;
    padding: 16px 24px;
  }

  .client-logo-text {
    font-size: 16px;
  }

  .clients-slider-wrapper::before,
  .clients-slider-wrapper::after {
    width: 60px;
  }
}

/* ========== Sections Generic ========== */
section {
  padding-top: 0;
}

/* Portfolio section spacing */
section#portfolio {
  margin-top: 72px;
  margin-bottom: 72px;
  padding: 64px 0;
}

.section-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 18px;
  margin-bottom: 24px;
}

.section-kicker {
  font-size: 11px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 6px;
}

.section-title {
  font-family: "Space Grotesk", system-ui;
  font-size: clamp(36px, 5.5vw, 56px);
  font-weight: 600;
  letter-spacing: -0.02em;
  line-height: 1.15;
}

.section-subtitle {
  font-size: 13px;
  color: var(--text-muted);
  max-width: 360px;
}

/* ========== Section Separator ========== */
.section-separator {
  width: 100%;
  max-width: var(--container-width);
  margin: 0 auto;
  padding: 24px 0;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  /* Decorative dots on sides */
  background-image: 
    radial-gradient(circle, rgba(15, 23, 42, 0.3) 1.5px, transparent 1.5px),
    radial-gradient(circle, rgba(15, 23, 42, 0.3) 1.5px, transparent 1.5px);
  background-position: 
    calc(50% - 28px) center,
    calc(50% + 28px) center;
  background-repeat: no-repeat;
  background-size: 3px 3px;
}

/* Main horizontal line */
.section-separator::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(
    90deg,
    transparent 0%,
    rgba(156, 163, 175, 0.2) 20%,
    rgba(156, 163, 175, 0.3) 40%,
    rgba(156, 163, 175, 0.3) 60%,
    rgba(156, 163, 175, 0.2) 80%,
    transparent 100%
  );
  transform: translateY(-50%);
  z-index: 1;
}

/* Center diamond shape */
.section-separator::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) rotate(45deg);
  width: 8px;
  height: 8px;
  background: var(--text-main);
  opacity: 0.4;
  z-index: 2;
}

/* Separator Style 2: Hollow Diamond */
.section-separator-2 {
  width: 100%;
  max-width: var(--container-width);
  margin: 0 auto;
  padding: 24px 0;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}

.section-separator-2::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(
    90deg,
    transparent 0%,
    rgba(156, 163, 175, 0.2) 20%,
    rgba(156, 163, 175, 0.3) 40%,
    rgba(156, 163, 175, 0.3) 60%,
    rgba(156, 163, 175, 0.2) 80%,
    transparent 100%
  );
  transform: translateY(-50%);
  z-index: 1;
}

.section-separator-2::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) rotate(45deg);
  width: 10px;
  height: 10px;
  border: 1.5px solid var(--text-main);
  opacity: 0.35;
  z-index: 2;
  background: transparent;
}

/* Separator Style 3: Circle with Dots */
.section-separator-3 {
  width: 100%;
  max-width: var(--container-width);
  margin: 0 auto;
  padding: 24px 0;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  background-image: 
    radial-gradient(circle, rgba(15, 23, 42, 0.3) 1.5px, transparent 1.5px),
    radial-gradient(circle, rgba(15, 23, 42, 0.3) 1.5px, transparent 1.5px);
  background-position: 
    calc(50% - 28px) center,
    calc(50% + 28px) center;
  background-repeat: no-repeat;
  background-size: 3px 3px;
}

.section-separator-3::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(
    90deg,
    transparent 0%,
    rgba(156, 163, 175, 0.2) 20%,
    rgba(156, 163, 175, 0.3) 40%,
    rgba(156, 163, 175, 0.3) 60%,
    rgba(156, 163, 175, 0.2) 80%,
    transparent 100%
  );
  transform: translateY(-50%);
  z-index: 1;
}

.section-separator-3::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--text-main);
  opacity: 0.4;
  z-index: 2;
}

/* Separator Style 4: Double Line with Diamond */
.section-separator-4 {
  width: 100%;
  max-width: var(--container-width);
  margin: 0 auto;
  padding: 24px 0;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}

.section-separator-4::before {
  content: "";
  position: absolute;
  top: calc(50% - 3px);
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(
    90deg,
    transparent 0%,
    rgba(156, 163, 175, 0.2) 20%,
    rgba(156, 163, 175, 0.3) 40%,
    rgba(156, 163, 175, 0.3) 60%,
    rgba(156, 163, 175, 0.2) 80%,
    transparent 100%
  );
  transform: translateY(-50%);
  z-index: 1;
}

.section-separator-4::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) rotate(45deg);
  width: 8px;
  height: 8px;
  background: var(--text-main);
  opacity: 0.35;
  z-index: 2;
  box-shadow: 
    0 -4px 0 0 rgba(156, 163, 175, 0.3),
    0 4px 0 0 rgba(156, 163, 175, 0.3);
}

/* Separator Style 5: Triple Lines with Large Diamond */
.section-separator-5 {
  width: 100%;
  max-width: var(--container-width);
  margin: 0 auto;
  padding: 24px 0;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}

.section-separator-5::before {
  content: "";
  position: absolute;
  top: calc(50% - 4px);
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(
    90deg,
    transparent 0%,
    rgba(156, 163, 175, 0.2) 20%,
    rgba(156, 163, 175, 0.3) 40%,
    rgba(156, 163, 175, 0.3) 60%,
    rgba(156, 163, 175, 0.2) 80%,
    transparent 100%
  );
  transform: translateY(-50%);
  z-index: 1;
}

.section-separator-5::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) rotate(45deg);
  width: 12px;
  height: 12px;
  background: var(--text-main);
  opacity: 0.3;
  z-index: 2;
  box-shadow: 
    0 -5px 0 0 rgba(156, 163, 175, 0.25),
    0 5px 0 0 rgba(156, 163, 175, 0.25);
}

/* Separator Style 6: Dotted Pattern with Hollow Diamond */
.section-separator-6 {
  width: 100%;
  max-width: var(--container-width);
  margin: 0 auto;
  padding: 24px 0;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}

.section-separator-6::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 0;
  right: 0;
  height: 1px;
  background-image: repeating-linear-gradient(
    90deg,
    transparent,
    transparent 6px,
    rgba(156, 163, 175, 0.3) 6px,
    rgba(156, 163, 175, 0.3) 8px
  );
  transform: translateY(-50%);
  z-index: 1;
}

.section-separator-6::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) rotate(45deg);
  width: 10px;
  height: 10px;
  border: 1.5px solid var(--text-main);
  opacity: 0.35;
  z-index: 2;
  background: transparent;
}

/* Separator Style 7: Simple Faded Line */
.section-separator-7 {
  width: 100%;
  max-width: var(--container-width);
  margin: 0 auto;
  padding: 24px 0;
  position: relative;
}

.section-separator-7::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(
    90deg,
    transparent 0%,
    rgba(156, 163, 175, 0.15) 30%,
    rgba(156, 163, 175, 0.4) 50%,
    rgba(156, 163, 175, 0.15) 70%,
    transparent 100%
  );
  transform: translateY(-50%);
}

/* Separator Style 8: Circle-Diamond-Circle Pattern */
.section-separator-8 {
  width: 100%;
  max-width: var(--container-width);
  margin: 0 auto;
  padding: 24px 0;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  background-image: 
    radial-gradient(circle, rgba(15, 23, 42, 0.3) 2px, transparent 2px),
    radial-gradient(circle, rgba(15, 23, 42, 0.3) 2px, transparent 2px);
  background-position: 
    calc(50% - 20px) center,
    calc(50% + 20px) center;
  background-repeat: no-repeat;
  background-size: 4px 4px;
}

.section-separator-8::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(
    90deg,
    transparent 0%,
    rgba(156, 163, 175, 0.2) 20%,
    rgba(156, 163, 175, 0.3) 40%,
    rgba(156, 163, 175, 0.3) 60%,
    rgba(156, 163, 175, 0.2) 80%,
    transparent 100%
  );
  transform: translateY(-50%);
  z-index: 1;
}

.section-separator-8::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) rotate(45deg);
  width: 8px;
  height: 8px;
  background: var(--text-main);
  opacity: 0.4;
  z-index: 2;
}

/* Responsive separator */
@media (max-width: 768px) {
  .section-separator,
  .section-separator-2,
  .section-separator-3,
  .section-separator-4,
  .section-separator-5,
  .section-separator-6,
  .section-separator-7,
  .section-separator-8 {
    padding: 20px 0;
  }

  .section-separator::before,
  .section-separator-2::before,
  .section-separator-3::before,
  .section-separator-4::before,
  .section-separator-5::before,
  .section-separator-6::before,
  .section-separator-7::before,
  .section-separator-8::before {
    height: 0.5px;
  }

  .section-separator::after,
  .section-separator-2::after,
  .section-separator-3::after,
  .section-separator-4::after,
  .section-separator-5::after,
  .section-separator-6::after,
  .section-separator-8::after {
    width: 6px;
    height: 6px;
  }

  .section-separator-2::after,
  .section-separator-6::after {
    width: 8px;
    height: 8px;
  }

  .section-separator-5::after {
    width: 10px;
    height: 10px;
  }
}

/* Alternative: Curved Wave Separator */
.section-separator-wave {
  width: 100%;
  max-width: var(--container-width);
  margin: 0 auto;
  padding: 28px 0;
  position: relative;
  overflow: hidden;
}

.section-separator-wave svg {
  width: 100%;
  height: 24px;
  display: block;
}

.section-separator-wave path {
  stroke: url(#separatorGradient);
  stroke-width: 1.5;
  fill: none;
  filter: drop-shadow(0 0 4px rgba(79, 70, 229, 0.2));
}

/* Alternative: Faded Divider */
.section-separator-faded {
  width: 100%;
  max-width: var(--container-width);
  margin: 0 auto;
  padding: 20px 0;
  position: relative;
}

.section-separator-faded::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(
    90deg,
    transparent 0%,
    rgba(156, 163, 175, 0.2) 30%,
    rgba(156, 163, 175, 0.4) 50%,
    rgba(156, 163, 175, 0.2) 70%,
    transparent 100%
  );
  transform: translateY(-50%);
}

/* Alternative: Dotted Gradient */
.section-separator-dotted {
  width: 100%;
  max-width: var(--container-width);
  margin: 0 auto;
  padding: 24px 0;
  position: relative;
}

.section-separator-dotted::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 0;
  right: 0;
  height: 1px;
  background-image: linear-gradient(
    90deg,
    transparent 0%,
    rgba(79, 70, 229, 0.3) 20%,
    rgba(99, 102, 241, 0.4) 50%,
    rgba(34, 197, 94, 0.3) 80%,
    transparent 100%
  );
  background-size: 200% 100%;
  background-position: 0 0;
  background-repeat: repeat-x;
  transform: translateY(-50%);
  opacity: 0.6;
  mask-image: repeating-linear-gradient(
    90deg,
    transparent,
    transparent 8px,
    black 8px,
    black 12px
  );
  -webkit-mask-image: repeating-linear-gradient(
    90deg,
    transparent,
    transparent 8px,
    black 8px,
    black 12px
  );
}

/* ========== Services ========== */
.services-section {
  margin-top: 72px;
  margin-bottom: 72px;
  padding: 64px 0;
  position: relative;
  overflow: hidden;
}

.services-section::before {
  content: "";
  position: absolute;
  top: 0;
  left: -300px;
  width: 800px;
  height: 800px;
  background: radial-gradient(circle, rgba(0, 180, 216, 0.06), transparent 70%);
  border-radius: 50%;
  pointer-events: none;
  z-index: 0;
}

.services-section::after {
  content: "";
  position: absolute;
  bottom: -200px;
  right: -200px;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(34, 197, 94, 0.05), transparent 70%);
  border-radius: 50%;
  pointer-events: none;
  z-index: 0;
}

.services-header {
  text-align: left;
  margin-bottom: 64px;
  max-width: 700px;
}

.services-header .section-kicker {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 16px;
  display: block;
}

.services-header .section-title {
  font-family: var(--font-heading);
  font-size: clamp(36px, 5vw, 56px);
  margin-bottom: 20px;
  line-height: 1.2;
  font-weight: 700;
  color: var(--text-main);
}

.services-header .section-subtitle {
  font-size: 18px;
  color: var(--text-muted);
  line-height: 1.7;
  font-weight: 400;
}

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

/* Asymmetric Grid Layout */
.services-grid-asymmetric {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-template-rows: auto auto;
  gap: 24px;
  max-width: 1180px;
  margin: 0 auto;
}

.service-card {
  position: relative;
  border-radius: 26px;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.95), rgba(248, 250, 252, 0.8));
  backdrop-filter: blur(20px) saturate(180%);
  border: 2px solid transparent;
  background-clip: padding-box;
  overflow: hidden;
  transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
  opacity: 0;
  transform: translateY(40px) scale(0.95);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.04);
  display: flex;
  flex-direction: column;
}

.service-image-wrapper {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 180px;
  overflow: hidden;
  z-index: 0;
}

.service-card-small .service-image-wrapper {
  height: 140px;
}

.service-image-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
  filter: grayscale(30%) brightness(0.95);
}

.service-card:hover .service-image-wrapper img {
  transform: scale(1.1);
  filter: grayscale(0%) brightness(1);
}

.service-image-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(0, 0, 0, 0.1), rgba(0, 0, 0, 0.3));
  z-index: 1;
  transition: opacity 0.4s ease;
}

.service-card:hover .service-image-overlay {
  opacity: 0.6;
}

.service-card.visible {
  opacity: 1;
  transform: translateY(0) scale(1);
}

.service-card::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 26px;
  padding: 2px;
  background: linear-gradient(135deg, rgba(0, 180, 216, 0.4), rgba(34, 197, 94, 0.3));
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  mask-composite: exclude;
  opacity: 0.6;
  transition: opacity 0.5s ease;
  z-index: -1;
}

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

.service-card::after {
  content: "";
  position: absolute;
  top: -50%;
  right: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle, rgba(0, 180, 216, 0.1), transparent 70%);
  opacity: 0;
  transition: opacity 0.5s ease;
  pointer-events: none;
}

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

.service-card-large {
  grid-column: span 1;
  grid-row: span 1;
  padding: 0 40px 48px;
  min-height: 420px;
}

.service-card-small {
  grid-column: span 1;
  padding: 0 32px 36px;
  min-height: 320px;
}

.service-card-inner {
  display: flex;
  flex-direction: column;
  gap: 24px;
  height: 100%;
  position: relative;
  z-index: 2;
  padding-top: 200px;
}

.service-card-small .service-card-inner {
  padding-top: 160px;
}

.service-icon-wrapper {
  display: flex;
  align-items: flex-start;
}

.service-icon-badge {
  width: 64px;
  height: 64px;
  border-radius: 18px;
  background: linear-gradient(135deg, rgba(0, 180, 216, 0.15), rgba(34, 197, 94, 0.1));
  border: 2px solid rgba(0, 180, 216, 0.25);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary);
  box-shadow: 0 8px 24px rgba(0, 180, 216, 0.15);
  position: relative;
  overflow: hidden;
}

.service-icon-badge::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.1), transparent);
  opacity: 0;
  transition: opacity 0.3s ease;
}

.service-card:hover .service-icon-badge::before {
  opacity: 1;
}

.service-card-small .service-icon-badge {
  width: 56px;
  height: 56px;
  border-radius: 16px;
}

.service-icon-badge svg {
  width: 24px;
  height: 24px;
  stroke-width: 2;
}

.service-card-small .service-icon-badge svg {
  width: 20px;
  height: 20px;
}

.service-title {
  font-family: "Space Grotesk", system-ui;
  font-size: 24px;
  font-weight: 700;
  color: var(--text-main);
  line-height: 1.3;
  letter-spacing: -0.02em;
  margin: 0;
}

.service-card-small .service-title {
  font-size: 20px;
}

.service-desc {
  font-size: 16px;
  line-height: 1.7;
  color: var(--text-muted);
  font-weight: 400;
  flex: 1;
}

.service-card-small .service-desc {
  font-size: 15px;
}

.service-tech-list {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: auto;
  padding-top: 20px;
  border-top: 1px solid rgba(226, 232, 240, 0.1);
}

.tech-item {
  padding: 8px 16px;
  border-radius: 12px;
  font-size: 13px;
  font-weight: 500;
  background: rgba(255, 255, 255, 0.9);
  border: 1px solid rgba(0, 180, 216, 0.2);
  color: var(--text-main);
  backdrop-filter: blur(10px);
  transition: all 0.3s ease;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.03);
}

.service-card:hover .tech-item {
  background: rgba(255, 255, 255, 1);
  border-color: rgba(0, 180, 216, 0.4);
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(0, 180, 216, 0.1);
}

.service-card:hover {
  transform: scale(1.015) translateY(-8px);
  box-shadow: 0 32px 80px rgba(0, 180, 216, 0.2), 0 0 0 1px rgba(0, 180, 216, 0.1);
}

/* ========== Testimonials ========== */
.testimonials-section {
  margin-top: 72px;
  margin-bottom: 72px;
  padding: 64px 0;
  position: relative;
  overflow: hidden;
}

.testimonials-section::before {
  content: "";
  position: absolute;
  top: -200px;
  right: -200px;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(0, 180, 216, 0.08), transparent 70%);
  border-radius: 50%;
  pointer-events: none;
  z-index: 0;
}

.testimonials-section::after {
  content: "";
  position: absolute;
  bottom: -150px;
  left: -150px;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(34, 197, 94, 0.06), transparent 70%);
  border-radius: 50%;
  pointer-events: none;
  z-index: 0;
}

.testimonials-header {
  text-align: left;
  margin-bottom: 64px;
  max-width: 700px;
}

.testimonials-header .section-kicker {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 16px;
  display: block;
}

.testimonials-header .section-title {
  font-family: var(--font-heading);
  font-size: clamp(36px, 5vw, 56px);
  margin-bottom: 20px;
  line-height: 1.2;
  font-weight: 700;
  color: var(--text-main);
}

.testimonials-header .section-subtitle {
  font-size: 18px;
  color: var(--text-muted);
  line-height: 1.7;
  font-weight: 400;
}

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

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 24px;
  max-width: 1180px;
  margin: 0 auto;
  position: relative;
}

.testimonial-card {
  padding: 0;
  display: flex;
  flex-direction: column;
  transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  background: rgba(255, 255, 255, 0.95);
  border-radius: 24px;
  overflow: hidden;
  opacity: 0;
  transform: translateY(40px) scale(0.95);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.08);
  border: 1px solid rgba(226, 232, 240, 0.6);
}

.testimonial-card.visible {
  opacity: 1;
  transform: translateY(0) scale(1);
}

.testimonial-card-featured {
  transform: scale(1.05);
  z-index: 2;
  box-shadow: 0 16px 48px rgba(0, 0, 0, 0.12);
  border-color: rgba(0, 180, 216, 0.3);
}

.testimonial-card-featured.visible {
  transform: scale(1.05);
}

.testimonial-card:first-child {
  border-top-right-radius: 0;
}

.testimonial-card:last-child {
  border-top-left-radius: 0;
}

.testimonial-image-wrapper {
  position: relative;
  width: 100%;
  height: 200px;
  overflow: hidden;
}

.testimonial-card-featured .testimonial-image-wrapper {
  height: 240px;
}

.testimonial-image-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
  filter: grayscale(20%) brightness(0.9);
}

.testimonial-card:hover .testimonial-image-wrapper img {
  transform: scale(1.15);
  filter: grayscale(0%) brightness(1);
}

.testimonial-image-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(0, 0, 0, 0.2), rgba(0, 0, 0, 0.5));
  z-index: 1;
  transition: opacity 0.4s ease;
}

.testimonial-card:hover .testimonial-image-overlay {
  opacity: 0.3;
}

.testimonial-content {
  padding: 32px;
  display: flex;
  flex-direction: column;
  gap: 24px;
  flex: 1;
}

.testimonial-card-featured .testimonial-content {
  padding: 40px;
}

.testimonial-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
  border-color: rgba(0, 180, 216, 0.4);
}

.testimonial-card-featured:hover {
  transform: translateY(-8px) scale(1.05);
}

.testimonial-quote-wrapper {
  position: relative;
  flex: 1;
  z-index: 1;
  margin-top: 8px;
}

.testimonial-quote-icon {
  position: absolute;
  top: -20px;
  left: -8px;
  font-size: 120px;
  font-family: "Space Grotesk", system-ui;
  font-weight: 700;
  background: linear-gradient(135deg, rgba(0, 180, 216, 0.12), rgba(34, 197, 94, 0.08));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1;
  z-index: 0;
  opacity: 0.6;
}

.testimonial-quote {
  font-size: 20px;
  line-height: 1.7;
  color: var(--text-main);
  position: relative;
  z-index: 1;
  font-weight: 400;
  margin-top: 24px;
  letter-spacing: -0.01em;
}

.testimonial-card:nth-child(2) .testimonial-quote {
  font-size: 22px;
}

.testimonial-author {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: auto;
  position: relative;
  z-index: 1;
  padding-top: 20px;
  border-top: 1px solid rgba(226, 232, 240, 0.5);
}


.testimonial-author-info {
  display: flex;
  flex-direction: column;
  gap: 6px;
  flex: 1;
}

.testimonial-author-name {
  font-size: 18px;
  font-weight: 700;
  color: var(--text-main);
  line-height: 1.3;
  letter-spacing: -0.02em;
}

.testimonial-author-role {
  font-size: 14px;
  color: var(--text-muted);
  font-weight: 500;
  letter-spacing: 0.01em;
}

.testimonial-rating {
  display: flex;
  align-items: center;
  gap: 6px;
  z-index: 2;
}

.rating-value {
  font-size: 14px;
  font-weight: 700;
  color: var(--primary);
  background: linear-gradient(135deg, rgba(0, 180, 216, 0.1), rgba(34, 197, 94, 0.1));
  padding: 8px 16px;
  border-radius: 12px;
  border: 1px solid rgba(0, 180, 216, 0.2);
}

/* ========== Modern Testimonials Design ========== */
.testimonials-grid-modern {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  max-width: 1180px;
  margin: 0 auto;
}

.testimonial-card-modern {
  padding: 40px;
  background: #ffffff;
  border: 1px solid rgba(226, 232, 240, 0.8);
  border-radius: 16px;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  opacity: 0;
  transform: translateY(20px);
  display: flex;
  flex-direction: column;
  gap: 32px;
}

.testimonial-card-modern.visible {
  opacity: 1;
  transform: translateY(0);
}

.testimonial-card-modern:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.08);
  border-color: rgba(0, 180, 216, 0.3);
}

.testimonial-quote-modern {
  flex: 1;
}

.testimonial-quote-modern p {
  font-size: 17px;
  line-height: 1.75;
  color: var(--text-main);
  font-weight: 400;
  margin: 0;
}

.testimonial-author-modern {
  display: flex;
  align-items: center;
  gap: 16px;
  padding-top: 24px;
  border-top: 1px solid rgba(226, 232, 240, 0.6);
}

.author-initials {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  background: linear-gradient(135deg, rgba(0, 180, 216, 0.1), rgba(34, 197, 94, 0.1));
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-heading);
  font-size: 16px;
  font-weight: 600;
  color: var(--primary);
  flex-shrink: 0;
}

.author-details {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.author-details strong {
  font-size: 16px;
  font-weight: 600;
  color: var(--text-main);
  line-height: 1.4;
}

.author-details span {
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.5;
}

/* ========== Modern Services Design ========== */
.services-grid-modern {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  max-width: 1180px;
  margin: 0 auto;
}

.service-card-modern {
  padding: 40px;
  background: #ffffff;
  border: 1px solid rgba(226, 232, 240, 0.8);
  border-radius: 16px;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  opacity: 0;
  transform: translateY(20px);
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.service-card-modern.visible {
  opacity: 1;
  transform: translateY(0);
}

.service-card-modern:hover {
  transform: translateY(-6px);
  box-shadow: 0 16px 48px rgba(0, 0, 0, 0.1);
  border-color: rgba(0, 180, 216, 0.4);
}

.service-icon-modern {
  width: 56px;
  height: 56px;
  border-radius: 14px;
  background: linear-gradient(135deg, rgba(0, 180, 216, 0.08), rgba(34, 197, 94, 0.05));
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary);
  transition: all 0.3s ease;
}

.service-card-modern:hover .service-icon-modern {
  background: linear-gradient(135deg, rgba(0, 180, 216, 0.15), rgba(34, 197, 94, 0.1));
  transform: scale(1.05);
}

.service-icon-modern svg {
  stroke-width: 1.5;
}

.service-title-modern {
  font-family: var(--font-heading);
  font-size: 22px;
  font-weight: 600;
  color: var(--text-main);
  line-height: 1.3;
  margin: 0;
  letter-spacing: -0.01em;
}

.service-desc-modern {
  font-size: 15px;
  line-height: 1.7;
  color: var(--text-muted);
  font-weight: 400;
  margin: 0;
}

.service-tech-modern {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 8px;
  padding-top: 20px;
  border-top: 1px solid rgba(226, 232, 240, 0.5);
}

.service-tech-modern span {
  font-size: 12px;
  font-weight: 500;
  color: var(--text-muted);
  padding: 4px 0;
  position: relative;
}

.service-tech-modern span:not(:last-child)::after {
  content: "·";
  margin-left: 8px;
  color: var(--text-muted);
  opacity: 0.5;
}

/* ========== Portfolio ========== */
.portfolio-section {
  margin-top: 72px;
  margin-bottom: 72px;
  padding: 64px 0;
  position: relative;
}

.portfolio-header {
  text-align: left;
  margin-bottom: 64px;
  max-width: 700px;
}

.portfolio-header .section-kicker {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 16px;
  display: block;
}

.portfolio-header .section-title {
  font-family: var(--font-heading);
  font-size: clamp(36px, 5vw, 56px);
  margin-bottom: 20px;
  line-height: 1.2;
  font-weight: 700;
  color: var(--text-main);
}

.portfolio-header .section-subtitle {
  font-size: 18px;
  color: var(--text-muted);
  line-height: 1.7;
  font-weight: 400;
}

.portfolio-masonry {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 24px;
  grid-auto-rows: minmax(200px, auto);
}

.project-card {
  position: relative;
  border-radius: 28px;
  overflow: hidden;
  background: #ffffff;
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.08);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  cursor: pointer;
  opacity: 0;
  transform: translateY(30px);
}

.project-card:hover {
  transform: translateY(-12px);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
}

.project-link {
  display: block;
  width: 100%;
  height: 100%;
  text-decoration: none;
  color: inherit;
}

/* Featured Card - Large */
.project-featured {
  grid-column: span 7;
  grid-row: span 2;
  min-height: 580px;
}

/* Medium Cards */
.project-medium {
  grid-column: span 5;
  grid-row: span 2;
  min-height: 580px;
}

/* Small Cards */
.project-small {
  grid-column: span 4;
  grid-row: span 1;
  min-height: 280px;
}

.project-image-wrapper {
  position: relative;
  width: 100%;
  height: 100%;
  overflow: hidden;
}

.project-image-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.project-card:hover .project-image-wrapper img {
  transform: scale(1.1);
}

.project-gradient-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(0, 0, 0, 0) 0%,
    rgba(0, 0, 0, 0.3) 50%,
    rgba(0, 0, 0, 0.85) 100%
  );
  transition: opacity 0.4s ease;
}

.project-card:hover .project-gradient-overlay {
  background: linear-gradient(
    to bottom,
    rgba(0, 0, 0, 0) 0%,
    rgba(0, 0, 0, 0.5) 50%,
    rgba(0, 0, 0, 0.95) 100%
  );
}

.project-content-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 32px;
  color: #ffffff;
  z-index: 2;
  transform: translateY(8px);
  transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.project-card:hover .project-content-overlay {
  transform: translateY(0);
}

.project-badge {
  display: inline-block;
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: rgba(255, 255, 255, 0.9);
  padding: 6px 14px;
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(10px);
  margin-bottom: 16px;
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.project-title {
  font-family: var(--font-heading);
  font-size: 28px;
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 12px;
  color: #ffffff;
  text-shadow: 0 2px 12px rgba(0, 0, 0, 0.3);
}

.project-small .project-title {
  font-size: 22px;
}

.project-desc {
  font-size: 15px;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 20px;
  text-shadow: 0 1px 8px rgba(0, 0, 0, 0.2);
}

.project-small .project-desc {
  font-size: 13px;
  margin-bottom: 16px;
}

.project-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
  padding-top: 16px;
  border-top: 1px solid rgba(255, 255, 255, 0.15);
}

.project-tech {
  font-size: 12px;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.85);
  padding: 4px 12px;
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(8px);
}

.project-stat {
  font-size: 12px;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.95);
}

/* Responsive Design */
@media (max-width: 1024px) {
  .portfolio-masonry {
    grid-template-columns: repeat(6, 1fr);
    gap: 20px;
  }

  .project-featured {
    grid-column: span 6;
    grid-row: span 2;
    min-height: 500px;
  }

  .project-medium {
    grid-column: span 3;
    grid-row: span 2;
    min-height: 500px;
  }

  .project-small {
    grid-column: span 3;
    grid-row: span 1;
    min-height: 260px;
  }

  .project-title {
    font-size: 24px;
  }

  .project-small .project-title {
    font-size: 20px;
  }
}

@media (max-width: 768px) {
  .portfolio-masonry {
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
  }

  .project-featured,
  .project-medium,
  .project-small {
    grid-column: span 2;
    grid-row: span 1;
    min-height: 320px;
  }

  .project-content-overlay {
    padding: 24px;
  }

  .project-title {
    font-size: 20px;
  }

  .project-desc {
    font-size: 13px;
  }

  .project-footer {
    flex-direction: column;
    align-items: flex-start;
    gap: 8px;
  }
}

@media (max-width: 480px) {
  .portfolio-masonry {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .project-featured,
  .project-medium,
  .project-small {
    grid-column: span 1;
    min-height: 360px;
  }

  .project-content-overlay {
    padding: 20px;
  }

  .project-title {
    font-size: 18px;
  }
}

/* ========== About ========== */
/* ========== About Section ========== */
.about-section {
  margin-top: 72px;
  margin-bottom: 72px;
  padding: 64px 0;
}

.about-header {
  text-align: center;
  max-width: 700px;
  margin: 0 auto 60px;
}

.about-content-wrapper {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 60px;
  align-items: start;
}

.about-main {
  display: flex;
  flex-direction: column;
  gap: 40px;
}

.about-intro {
  margin-bottom: 8px;
}

.about-text-large {
  font-size: 18px;
  line-height: 1.7;
  color: var(--text-main);
  font-weight: 400;
}

.about-features {
  display: grid;
  gap: 24px;
}

.about-feature-item {
  display: flex;
  gap: 20px;
  align-items: flex-start;
  padding: 24px;
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.6);
  border: 1px solid rgba(226, 232, 240, 0.8);
  transition: all 0.3s ease;
}

.about-feature-item:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.08);
  border-color: rgba(0, 180, 216, 0.3);
  background: rgba(255, 255, 255, 0.9);
}

.feature-icon {
  flex-shrink: 0;
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 14px;
  background: linear-gradient(135deg, rgba(0, 180, 216, 0.1), rgba(34, 197, 94, 0.1));
  color: var(--primary);
}

.feature-content {
  flex: 1;
}

.feature-title {
  font-family: var(--font-heading);
  font-size: 16px;
  font-weight: 600;
  margin-bottom: 6px;
  color: var(--text-main);
}

.feature-desc {
  font-size: 14px;
  line-height: 1.6;
  color: var(--text-muted);
}

.about-stats {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}

.stat-card {
  padding: 32px 24px;
  border-radius: 24px;
  background: linear-gradient(135deg, rgba(0, 180, 216, 0.05), rgba(34, 197, 94, 0.05));
  border: 1px solid rgba(0, 180, 216, 0.15);
  transition: all 0.3s ease;
}

.stat-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 16px 40px rgba(0, 180, 216, 0.15);
  border-color: rgba(0, 180, 216, 0.3);
}

.stat-card-wide {
  grid-column: span 2;
}

.stat-value {
  font-family: var(--font-heading);
  font-size: 42px;
  font-weight: 700;
  line-height: 1;
  margin-bottom: 12px;
  background: linear-gradient(135deg, var(--primary), var(--accent));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.stat-label {
  font-size: 13px;
  font-weight: 600;
  color: var(--text-main);
  margin-bottom: 16px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.stat-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 12px;
}

.stat-tag {
  display: inline-block;
  padding: 6px 14px;
  border-radius: 16px;
  font-size: 12px;
  font-weight: 500;
  background: rgba(255, 255, 255, 0.8);
  border: 1px solid rgba(0, 180, 216, 0.2);
  color: var(--text-main);
}

/* Responsive About Section */
@media (max-width: 1024px) {
  .about-content-wrapper {
    grid-template-columns: 1fr;
    gap: 50px;
  }

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

  .stat-card-wide {
    grid-column: span 2;
  }
}

@media (max-width: 768px) {
  .about-section {
    padding: 48px 0;
  }

  .about-header {
    margin-bottom: 40px;
  }

  .about-text-large {
    font-size: 16px;
  }

  .about-feature-item {
    padding: 20px;
    gap: 16px;
  }

  .feature-icon {
    width: 44px;
    height: 44px;
  }

  .stat-card {
    padding: 24px 20px;
  }

  .stat-value {
    font-size: 36px;
  }

  .about-stats {
    gap: 16px;
  }

  .process-section {
    padding: 80px 0;
    margin-top: 80px;
  }

  .process-header {
    margin-bottom: 48px;
  }

  .roadmap-step {
    gap: 24px;
  }

  .roadmap-milestone {
    width: 64px;
    height: 64px;
  }

  .milestone-icon {
    width: 56px;
    height: 56px;
  }

  .roadmap-content {
    padding: 20px 24px;
  }

  .roadmap-title {
    font-size: 20px;
  }

  .roadmap-desc {
    font-size: 14px;
  }

  .roadmap-connector {
    height: 40px;
  }
}

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

  .stat-card-wide {
    grid-column: span 1;
  }

  .stat-value {
    font-size: 32px;
  }

  .about-feature-item {
    flex-direction: column;
    text-align: center;
  }

  .feature-icon {
    margin: 0 auto;
  }

  .process-section {
    padding: 60px 0;
    margin-top: 60px;
  }

  .roadmap-step {
    gap: 20px;
    flex-direction: column;
    align-items: flex-start;
  }

  .roadmap-milestone {
    width: 56px;
    height: 56px;
    align-self: flex-start;
  }

  .milestone-icon {
    width: 48px;
    height: 48px;
  }

  .milestone-number {
    width: 24px;
    height: 24px;
    font-size: 10px;
  }

  .roadmap-content {
    width: 100%;
    padding: 20px;
    margin-top: 0;
    margin-left: 0;
  }

  .roadmap-title {
    font-size: 18px;
  }

  .roadmap-desc {
    font-size: 14px;
  }

  .roadmap-connector {
    margin-left: 27px;
    height: 32px;
  }

  .tech-stack-section {
    padding: 60px 0;
    margin-top: 60px;
  }

  .tech-stack-header {
    margin-bottom: 48px;
  }

  .tech-stack-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }

  .tech-category-card {
    padding: 24px 20px;
  }

  .tech-category-title {
    font-size: 18px;
  }

  .tech-pill {
    font-size: 12px;
    padding: 6px 14px;
  }
}

@media (max-width: 480px) {
  .tech-stack-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .tech-category-card {
    padding: 24px;
  }

  .partners-section {
    padding: 80px 0;
    margin-top: 80px;
  }

  .partners-header {
    margin-bottom: 48px;
  }

  .partners-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
  }

  .partner-logo-card {
    padding: 24px 20px;
    min-height: 120px;
  }

  .cta-banner {
    margin-top: 80px;
  }

  .cta-banner-inner {
    padding: 48px 40px;
  }

  .cta-banner-title {
    font-size: clamp(28px, 4vw, 40px);
  }

  .cta-banner-subtitle {
    font-size: 16px;
  }

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

  .btn-cta-primary,
  .btn-cta-secondary {
    width: 100%;
    justify-content: center;
  }
}

@media (max-width: 480px) {
  .partners-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
  }

  .partner-logo-card {
    padding: 20px 16px;
    min-height: 100px;
  }

  .cta-banner-inner {
    padding: 40px 24px;
    border-radius: 24px;
  }

  .cta-banner-title {
    font-size: 28px;
  }

  .cta-banner-subtitle {
    font-size: 15px;
  }
}

/* ========== Process / How We Work ========== */
.process-section {
  margin-top: 72px;
  margin-bottom: 72px;
  padding: 64px 0;
  position: relative;
  background-image: url('https://images.unsplash.com/photo-1522071820081-009f0129c71c?w=1920&h=1000&fit=crop&q=80');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.process-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.97), rgba(248, 250, 252, 0.94));
  z-index: 0;
}

.process-section .container {
  position: relative;
  z-index: 1;
}

.process-header {
  text-align: left;
  margin-bottom: 72px;
  max-width: 700px;
}

.process-header .section-kicker {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 16px;
  display: block;
}

.process-header .section-title {
  font-family: var(--font-heading);
  font-size: clamp(36px, 5vw, 56px);
  margin-bottom: 20px;
  line-height: 1.2;
  font-weight: 700;
  color: var(--text-main);
}

.process-header .section-subtitle {
  font-size: 18px;
  color: var(--text-muted);
  line-height: 1.7;
  font-weight: 400;
}

.process-roadmap {
  max-width: 1180px;
  margin: 0 auto;
  position: relative;
}

.roadmap-track {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 0;
}

.roadmap-step {
  display: flex;
  align-items: flex-start;
  gap: 32px;
  position: relative;
  opacity: 0;
  transform: translateX(-30px);
  transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.roadmap-step.visible {
  opacity: 1;
  transform: translateX(0);
}

.roadmap-milestone {
  position: relative;
  flex-shrink: 0;
  width: 80px;
  height: 80px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  z-index: 2;
}

.milestone-icon {
  width: 64px;
  height: 64px;
  border-radius: 16px;
  background: linear-gradient(135deg, rgba(0, 180, 216, 0.1), rgba(34, 197, 94, 0.08));
  border: 2px solid rgba(0, 180, 216, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary);
  transition: all 0.3s ease;
  position: relative;
}

.roadmap-step:hover .milestone-icon {
  background: linear-gradient(135deg, rgba(0, 180, 216, 0.15), rgba(34, 197, 94, 0.12));
  border-color: rgba(0, 180, 216, 0.4);
  transform: scale(1.05);
  box-shadow: 0 8px 24px rgba(0, 180, 216, 0.2);
}

.milestone-icon svg {
  stroke-width: 2;
}

.milestone-number {
  position: absolute;
  top: -8px;
  right: -8px;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: linear-gradient(135deg, rgba(0, 180, 216, 0.9), rgba(34, 197, 94, 0.8));
  color: #ffffff;
  font-family: var(--font-heading);
  font-size: 11px;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 12px rgba(0, 180, 216, 0.3);
}

.roadmap-content {
  flex: 1;
  padding: 24px 32px;
  background: #ffffff;
  border: 1px solid rgba(226, 232, 240, 0.8);
  border-radius: 16px;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  margin-top: 8px;
}

.roadmap-step:hover .roadmap-content {
  transform: translateX(8px);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.08);
  border-color: rgba(0, 180, 216, 0.3);
}

.roadmap-title {
  font-family: var(--font-heading);
  font-size: 22px;
  font-weight: 600;
  color: var(--text-main);
  margin-bottom: 12px;
  line-height: 1.3;
}

.roadmap-desc {
  font-size: 15px;
  line-height: 1.7;
  color: var(--text-muted);
  font-weight: 400;
  margin: 0;
}

.roadmap-connector {
  width: 2px;
  height: 60px;
  background: linear-gradient(180deg, rgba(0, 180, 216, 0.3), rgba(34, 197, 94, 0.2));
  margin-left: 39px;
  margin-top: -2px;
  margin-bottom: -2px;
  position: relative;
  z-index: 1;
}

.roadmap-connector::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: linear-gradient(135deg, rgba(0, 180, 216, 0.6), rgba(34, 197, 94, 0.5));
  box-shadow: 0 0 0 4px rgba(255, 255, 255, 1);
}

/* ========== Technology Stack ========== */
.tech-stack-section {
  margin-top: 72px;
  margin-bottom: 72px;
  padding: 64px 0;
  position: relative;
}

.tech-stack-header {
  text-align: left;
  margin-bottom: 72px;
  max-width: 700px;
}

.tech-stack-header .section-kicker {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 16px;
  display: block;
}

.tech-stack-header .section-title {
  font-family: var(--font-heading);
  font-size: clamp(36px, 5vw, 56px);
  margin-bottom: 20px;
  line-height: 1.2;
  font-weight: 700;
  color: var(--text-main);
}

.tech-stack-header .section-subtitle {
  font-size: 18px;
  color: var(--text-muted);
  line-height: 1.7;
  font-weight: 400;
}

.tech-stack-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 24px;
  max-width: 1180px;
  margin: 0 auto;
}

.tech-category-card {
  padding: 32px;
  background: rgba(255, 255, 255, 0.95);
  border: 1px solid rgba(226, 232, 240, 0.8);
  border-radius: 24px;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  opacity: 0;
  transform: translateY(20px);
  position: relative;
  overflow: hidden;
  backdrop-filter: blur(8px);
}

.tech-category-card::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 24px;
  padding: 1.5px;
  background: linear-gradient(135deg, rgba(0, 180, 216, 0.3), rgba(34, 197, 94, 0.2));
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  mask-composite: exclude;
  opacity: 0;
  transition: opacity 0.4s ease;
  z-index: -1;
}

.tech-category-card:hover::before {
  opacity: 1;
}

.tech-category-card.visible {
  opacity: 1;
  transform: translateY(0);
}

.tech-category-card:hover {
  transform: translateY(-6px) scale(1.015);
  box-shadow: 0 20px 60px rgba(0, 180, 216, 0.15);
  border-color: rgba(0, 180, 216, 0.4);
}

.tech-category-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 24px;
}

.tech-category-title {
  font-family: var(--font-heading);
  font-size: 20px;
  font-weight: 600;
  color: var(--text-main);
  margin: 0;
  line-height: 1.3;
}

.tech-category-icon {
  width: 40px;
  height: 40px;
  border-radius: 12px;
  background: linear-gradient(135deg, rgba(0, 180, 216, 0.1), rgba(34, 197, 94, 0.08));
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary);
  transition: all 0.3s ease;
  flex-shrink: 0;
}

.tech-category-card:hover .tech-category-icon {
  background: linear-gradient(135deg, rgba(0, 180, 216, 0.15), rgba(34, 197, 94, 0.12));
  transform: scale(1.1) rotate(5deg);
}

.tech-category-icon svg {
  stroke-width: 2;
}

.tech-list {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.tech-pill {
  display: inline-flex;
  align-items: center;
  padding: 8px 16px;
  font-size: 13px;
  font-weight: 500;
  color: var(--text-main);
  background: rgba(255, 255, 255, 0.8);
  border: 1px solid rgba(226, 232, 240, 0.8);
  border-radius: 20px;
  transition: all 0.3s ease;
  line-height: 1.4;
}

.tech-category-card:hover .tech-pill {
  background: rgba(255, 255, 255, 1);
  border-color: rgba(0, 180, 216, 0.2);
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(0, 180, 216, 0.1);
}

/* ========== Partners & Integrations ========== */
.partners-section {
  margin-top: 72px;
  margin-bottom: 72px;
  padding: 64px 0;
  position: relative;
  background-image: url('https://images.unsplash.com/photo-1451187580459-43490279c0fa?w=1920&h=800&fit=crop&q=80');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.partners-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.98), rgba(248, 250, 252, 0.95));
  z-index: 0;
}

.partners-section .container {
  position: relative;
  z-index: 1;
}

.partners-header {
  text-align: left;
  margin-bottom: 64px;
  max-width: 700px;
}

.partners-header .section-kicker {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 16px;
  display: block;
}

.partners-header .section-title {
  font-family: var(--font-heading);
  font-size: clamp(36px, 5vw, 56px);
  margin-bottom: 20px;
  line-height: 1.2;
  font-weight: 700;
  color: var(--text-main);
}

.partners-header .section-subtitle {
  font-size: 18px;
  color: var(--text-muted);
  line-height: 1.7;
  font-weight: 400;
}

.partners-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
  gap: 24px;
  max-width: 1180px;
  margin: 0 auto;
}

.partner-logo-card {
  padding: 32px 24px;
  background: rgba(255, 255, 255, 0.95);
  border: 1px solid rgba(226, 232, 240, 0.8);
  border-radius: 24px;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  opacity: 0;
  transform: translateY(20px);
  position: relative;
  overflow: hidden;
  backdrop-filter: blur(8px);
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 140px;
}

.partner-logo-card::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 24px;
  padding: 1.5px;
  background: linear-gradient(135deg, rgba(0, 180, 216, 0.3), rgba(34, 197, 94, 0.2));
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  mask-composite: exclude;
  opacity: 0;
  transition: opacity 0.4s ease;
  z-index: -1;
}

.partner-logo-card:hover::before {
  opacity: 1;
}

.partner-logo-card.visible {
  opacity: 1;
  transform: translateY(0);
}

.partner-logo-card:hover {
  transform: translateY(-4px) scale(1.02);
  box-shadow: 0 16px 48px rgba(0, 180, 216, 0.15);
  border-color: rgba(0, 180, 216, 0.4);
}

.partner-logo {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  color: var(--text-main);
  transition: all 0.3s ease;
}

.partner-logo svg {
  stroke-width: 1.5;
  transition: all 0.3s ease;
}

.partner-logo-card:hover .partner-logo svg {
  transform: scale(1.1);
  color: var(--primary);
}

.partner-name {
  font-size: 13px;
  font-weight: 600;
  color: var(--text-muted);
  text-align: center;
  transition: color 0.3s ease;
}

.partner-logo-card:hover .partner-name {
  color: var(--text-main);
}

/* ========== CTA Banner ========== */
.cta-banner {
  margin-top: 72px;
  margin-bottom: 72px;
  padding: 0;
  position: relative;
}

.cta-banner-inner {
  padding: 64px 56px;
  background-image: url('https://images.unsplash.com/photo-1522071820081-009f0129c71c?w=1920&h=600&fit=crop&q=80');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  border: 1.5px solid rgba(226, 232, 240, 0.8);
  background-clip: padding-box;
  border-radius: 28px;
  position: relative;
  overflow: hidden;
  box-shadow: 0 20px 80px rgba(0, 0, 0, 0.08);
}

.cta-banner-inner::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(0, 180, 216, 0.85), rgba(34, 197, 94, 0.75));
  z-index: 0;
}

.cta-banner-inner::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 28px;
  padding: 1.5px;
  background: linear-gradient(135deg, rgba(79, 70, 229, 0.4), rgba(34, 197, 94, 0.3));
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  mask-composite: exclude;
  z-index: -1;
}

.cta-banner-inner::after {
  content: "";
  position: absolute;
  top: -50%;
  right: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle, rgba(0, 180, 216, 0.08), transparent 70%);
  opacity: 0.6;
  pointer-events: none;
  z-index: 0;
}

.cta-banner-content {
  position: relative;
  z-index: 2;
  margin-bottom: 32px;
}

.cta-banner-title {
  font-family: var(--font-heading);
  font-size: clamp(32px, 5vw, 48px);
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 16px;
  line-height: 1.2;
}

.cta-banner-subtitle {
  font-size: 18px;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.9);
  font-weight: 400;
  max-width: 600px;
}

.cta-banner-actions {
  position: relative;
  z-index: 2;
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  align-items: center;
}

.btn-cta-primary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 16px 32px;
  font-family: var(--font-heading);
  font-size: 16px;
  font-weight: 600;
  color: #ffffff;
  background: linear-gradient(135deg, rgba(79, 70, 229, 0.9), rgba(0, 180, 216, 0.9));
  border-radius: 50px;
  text-decoration: none;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: 0 8px 24px rgba(79, 70, 229, 0.3);
  position: relative;
  overflow: hidden;
}

.btn-cta-primary::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(79, 70, 229, 1), rgba(0, 180, 216, 1));
  opacity: 0;
  transition: opacity 0.3s ease;
}

.btn-cta-primary:hover::before {
  opacity: 1;
}

.btn-cta-primary span,
.btn-cta-primary {
  position: relative;
  z-index: 1;
}

.btn-cta-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 32px rgba(79, 70, 229, 0.4);
}

.btn-cta-secondary {
  display: inline-flex;
  align-items: center;
  padding: 16px 32px;
  font-family: var(--font-heading);
  font-size: 16px;
  font-weight: 600;
  color: var(--text-main);
  background: rgba(255, 255, 255, 0.9);
  border: 1px solid rgba(226, 232, 240, 0.8);
  border-radius: 50px;
  text-decoration: none;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  backdrop-filter: blur(10px);
}

.btn-cta-secondary:hover {
  background: #ffffff;
  border-color: rgba(0, 180, 216, 0.3);
  transform: translateY(-2px);
  color: var(--text-main);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
}

/* ========== CTA ========== */
.cta {
  margin-top: 72px;
  margin-bottom: 72px;
}

.cta-inner {
  border-radius: 26px;
  border: 1px solid rgba(0, 180, 216, 0.3);
  background: linear-gradient(135deg, rgba(0, 180, 216, 0.08), rgba(255, 107, 53, 0.06)),
    #ffffff;
  padding: 22px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  box-shadow: var(--shadow-soft);
}

.cta-title {
  font-family: "Space Grotesk", system-ui;
  font-size: 18px;
  margin-bottom: 4px;
}

.cta-text {
  font-size: 13px;
  color: var(--text-main);
}

.cta-hint {
  font-size: 11px;
  color: var(--text-muted);
  margin-top: 4px;
}

/* ========== Case Study Page ========== */
.case-study-hero {
  margin-top: 40px;
  margin-bottom: 100px;
  opacity: 1;
}

.case-study-hero.fade-in {
  opacity: 1;
}

.case-study-section {
  margin-bottom: 120px;
  opacity: 1;
}

.case-study-section.fade-in {
  opacity: 1;
}

.back-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--text-muted);
  text-decoration: none;
  font-size: 14px;
  font-weight: 500;
  margin-bottom: 32px;
  transition: color 0.2s ease;
}

.back-link:hover {
  color: var(--primary);
}

.case-study-header {
  margin-bottom: 48px;
}

.case-study-badge {
  display: inline-block;
  padding: 8px 16px;
  border-radius: 20px;
  background: linear-gradient(135deg, rgba(0, 180, 216, 0.1), rgba(34, 197, 94, 0.1));
  border: 1px solid rgba(0, 180, 216, 0.2);
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--primary);
  margin-bottom: 24px;
}

.case-study-title {
  font-family: var(--font-heading);
  font-size: clamp(36px, 5vw, 64px);
  font-weight: 700;
  line-height: 1.1;
  margin-bottom: 24px;
  color: var(--text-main);
}

.case-study-subtitle {
  font-size: 20px;
  line-height: 1.7;
  color: var(--text-muted);
  max-width: 800px;
  margin-bottom: 40px;
}

.case-study-meta {
  display: flex;
  gap: 48px;
  flex-wrap: wrap;
}

.meta-item {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.meta-label {
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--text-muted);
}

.meta-value {
  font-size: 18px;
  font-weight: 600;
  color: var(--text-main);
}

.case-study-hero-image {
  border-radius: 28px;
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1);
  margin-top: 48px;
}

.case-study-hero-image img {
  width: 100%;
  height: auto;
  display: block;
}

.case-study-section {
  margin-bottom: 120px;
}

.case-study-section-header {
  display: flex;
  align-items: center;
  gap: 24px;
  margin-bottom: 48px;
}

.section-number {
  font-family: var(--font-heading);
  font-size: 72px;
  font-weight: 700;
  background: linear-gradient(135deg, var(--primary), var(--accent));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1;
  opacity: 0.2;
}

.case-study-section-title {
  font-family: var(--font-heading);
  font-size: clamp(32px, 4vw, 48px);
  font-weight: 700;
  color: var(--text-main);
}

.case-study-content {
  max-width: 1180px;
}

/* Problem Section */
.problem-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 32px;
}

.problem-item {
  padding: 32px;
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.6);
  border: 1px solid rgba(226, 232, 240, 0.8);
  transition: all 0.3s ease;
}

.problem-item:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.08);
  border-color: rgba(0, 180, 216, 0.3);
}

.problem-icon {
  width: 64px;
  height: 64px;
  border-radius: 16px;
  background: linear-gradient(135deg, rgba(0, 180, 216, 0.1), rgba(34, 197, 94, 0.1));
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary);
  margin-bottom: 20px;
}

.problem-item h3 {
  font-family: var(--font-heading);
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 12px;
  color: var(--text-main);
}

.problem-item p {
  font-size: 15px;
  line-height: 1.7;
  color: var(--text-muted);
}

/* Solution Section */
.solution-content {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 60px;
  align-items: start;
}

.solution-intro {
  font-size: 20px;
  line-height: 1.8;
  color: var(--text-main);
  margin-bottom: 40px;
  font-weight: 400;
}

.solution-features {
  display: flex;
  flex-direction: column;
  gap: 32px;
}

.solution-feature h3 {
  font-family: var(--font-heading);
  font-size: 22px;
  font-weight: 600;
  margin-bottom: 12px;
  color: var(--text-main);
}

.solution-feature p {
  font-size: 16px;
  line-height: 1.7;
  color: var(--text-muted);
}

.solution-image {
  border-radius: 24px;
  overflow: hidden;
  box-shadow: 0 16px 48px rgba(0, 0, 0, 0.1);
  position: sticky;
  top: 100px;
}

.solution-image img {
  width: 100%;
  height: auto;
  display: block;
}

/* Screens Section */
.screens-gallery {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}

.screen-item {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.screen-image {
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease;
}

.screen-item:hover .screen-image {
  transform: translateY(-8px);
}

.screen-image img {
  width: 100%;
  height: auto;
  display: block;
}

.screen-caption h4 {
  font-family: var(--font-heading);
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 8px;
  color: var(--text-main);
}

.screen-caption p {
  font-size: 14px;
  line-height: 1.6;
  color: var(--text-muted);
}

/* Results Section */
.results-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.result-card {
  padding: 40px 32px;
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.6);
  border: 1px solid rgba(226, 232, 240, 0.8);
  text-align: center;
  transition: all 0.3s ease;
}

.result-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.1);
  border-color: rgba(0, 180, 216, 0.3);
}

.result-card-highlight {
  background: linear-gradient(135deg, rgba(0, 180, 216, 0.05), rgba(34, 197, 94, 0.05));
  border-color: rgba(0, 180, 216, 0.3);
}

.result-value {
  font-family: var(--font-heading);
  font-size: 48px;
  font-weight: 700;
  background: linear-gradient(135deg, var(--primary), var(--accent));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 12px;
  line-height: 1;
}

.result-label {
  font-size: 16px;
  font-weight: 600;
  color: var(--text-main);
  margin-bottom: 8px;
}

.result-card p {
  font-size: 14px;
  line-height: 1.6;
  color: var(--text-muted);
}

/* Technologies Section */
.technologies-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 40px;
}

.tech-category h3 {
  font-family: var(--font-heading);
  font-size: 24px;
  font-weight: 600;
  margin-bottom: 20px;
  color: var(--text-main);
}

.tech-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.tech-tag {
  padding: 10px 20px;
  border-radius: 20px;
  font-size: 14px;
  font-weight: 500;
  background: rgba(255, 255, 255, 0.8);
  border: 1px solid rgba(0, 180, 216, 0.2);
  color: var(--text-main);
  transition: all 0.3s ease;
}

.tech-tag:hover {
  background: linear-gradient(135deg, rgba(0, 180, 216, 0.1), rgba(34, 197, 94, 0.1));
  border-color: rgba(0, 180, 216, 0.4);
  transform: translateY(-2px);
}

/* Case Study Testimonial */
.case-study-testimonial {
  padding: 60px;
  border-radius: 28px;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.8), rgba(248, 250, 252, 0.6));
  border: 1px solid rgba(226, 232, 240, 0.8);
  box-shadow: 0 16px 48px rgba(0, 0, 0, 0.08);
}

.testimonial-quote-large {
  position: relative;
  margin-bottom: 40px;
}

.quote-icon {
  font-family: var(--font-heading);
  font-size: 120px;
  font-weight: 700;
  background: linear-gradient(135deg, rgba(0, 180, 216, 0.12), rgba(34, 197, 94, 0.08));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1;
  position: absolute;
  top: -40px;
  left: -20px;
  opacity: 0.6;
  z-index: 0;
}

.testimonial-quote-large p {
  font-size: 24px;
  line-height: 1.8;
  color: var(--text-main);
  position: relative;
  z-index: 1;
  font-weight: 400;
  padding-left: 40px;
}

.testimonial-author-large {
  display: flex;
  align-items: center;
  gap: 24px;
}

.author-avatar-large {
  width: 80px;
  height: 80px;
  border-radius: 20px;
  overflow: hidden;
  flex-shrink: 0;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
}

.author-avatar-large img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.author-info-large {
  flex: 1;
}

.author-info-large strong {
  display: block;
  font-size: 20px;
  font-weight: 700;
  color: var(--text-main);
  margin-bottom: 6px;
}

.author-info-large span {
  font-size: 15px;
  color: var(--text-muted);
}

.testimonial-rating-large {
  padding: 12px 24px;
  border-radius: 24px;
  background: linear-gradient(135deg, rgba(0, 180, 216, 0.1), rgba(34, 197, 94, 0.1));
  border: 1px solid rgba(0, 180, 216, 0.2);
}

.testimonial-rating-large span {
  font-size: 18px;
  font-weight: 700;
  color: var(--primary);
}

/* Before/After Section */
.before-after-container {
  margin-top: 40px;
}

.before-after-item {
  background: rgba(255, 255, 255, 0.6);
  border-radius: 28px;
  padding: 40px;
  border: 1px solid rgba(226, 232, 240, 0.8);
}

.comparison-header {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  margin-bottom: 32px;
  padding-bottom: 20px;
  border-bottom: 2px solid rgba(226, 232, 240, 0.8);
}

.comparison-header h3 {
  font-family: var(--font-heading);
  font-size: 28px;
  font-weight: 700;
  color: var(--text-main);
}

.comparison-header h3:first-child {
  color: #ef4444;
}

.comparison-header h3:last-child {
  color: var(--accent);
}

.comparison-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
}

.comparison-before,
.comparison-after {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.comparison-before img,
.comparison-after img {
  width: 100%;
  border-radius: 20px;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
}

.comparison-text h4 {
  font-family: var(--font-heading);
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 16px;
  color: var(--text-main);
}

.comparison-text ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.comparison-text li {
  font-size: 15px;
  line-height: 1.7;
  color: var(--text-muted);
  padding-left: 24px;
  position: relative;
}

.comparison-text li::before {
  content: "•";
  position: absolute;
  left: 0;
  color: var(--primary);
  font-weight: 700;
  font-size: 20px;
}

.comparison-after .comparison-text li::before {
  color: var(--accent);
}

/* Case Study CTA */
.case-study-cta {
  margin-top: 100px;
  margin-bottom: 80px;
}

.case-study-cta .cta-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 40px;
  padding: 60px;
  border-radius: 28px;
  background: linear-gradient(135deg, rgba(0, 180, 216, 0.05), rgba(34, 197, 94, 0.05));
  border: 1px solid rgba(0, 180, 216, 0.2);
}

.case-study-cta .cta-title {
  font-family: var(--font-heading);
  font-size: clamp(28px, 4vw, 40px);
  font-weight: 700;
  margin-bottom: 16px;
  color: var(--text-main);
}

.case-study-cta .cta-text {
  font-size: 18px;
  line-height: 1.7;
  color: var(--text-muted);
}

.case-study-cta .cta-inner > div:last-child {
  display: flex;
  flex-direction: column;
  gap: 16px;
  align-items: flex-end;
}

/* Responsive Case Study */
@media (max-width: 1024px) {
  .solution-content {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .solution-image {
    position: static;
  }

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

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

  .technologies-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  .case-study-hero {
    margin-bottom: 60px;
  }

  .case-study-section {
    margin-bottom: 80px;
  }

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

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

  .results-grid {
    grid-template-columns: 1fr;
  }

  .comparison-content {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .comparison-header {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .case-study-testimonial {
    padding: 40px 32px;
  }

  .testimonial-quote-large p {
    font-size: 20px;
    padding-left: 0;
  }

  .quote-icon {
    display: none;
  }

  .case-study-cta .cta-inner {
    flex-direction: column;
    align-items: flex-start;
    padding: 40px;
  }

  .case-study-cta .cta-inner > div:last-child {
    width: 100%;
    align-items: stretch;
  }
}

@media (max-width: 480px) {
  .case-study-title {
    font-size: 32px;
  }

  .case-study-subtitle {
    font-size: 18px;
  }

  .case-study-meta {
    flex-direction: column;
    gap: 24px;
  }

  .section-number {
    font-size: 48px;
  }

  .case-study-section-title {
    font-size: 28px;
  }

  .result-value {
    font-size: 36px;
  }

  .testimonial-author-large {
    flex-direction: column;
    align-items: flex-start;
  }
}

/* ========== Footer ========== */
.footer {
  margin-top: 100px;
  padding: 80px 0 40px;
  background: linear-gradient(to bottom, #ffffff 0%, #f8fafc 100%);
  border-top: 1px solid rgba(226, 232, 240, 0.6);
  position: relative;
}

.footer::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(to right, transparent, rgba(0, 180, 216, 0.3), transparent);
}

.footer-top {
  display: grid;
  grid-template-columns: 1.3fr 1.7fr;
  gap: 60px;
  margin-bottom: 50px;
}

.footer-brand {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.footer-logo {
  display: flex;
  align-items: center;
  gap: 12px;
}

.footer-tagline {
  font-size: 15px;
  line-height: 1.7;
  color: var(--text-muted);
  max-width: 320px;
  margin-top: 4px;
}

.footer-social {
  display: flex;
  gap: 12px;
  margin-top: 8px;
}

.social-link {
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.8);
  border: 1px solid rgba(226, 232, 240, 0.8);
  color: var(--text-main);
  transition: all 0.3s ease;
}

.social-link:hover {
  background: linear-gradient(135deg, rgba(0, 180, 216, 0.1), rgba(34, 197, 94, 0.1));
  border-color: rgba(0, 180, 216, 0.3);
  color: var(--primary);
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(0, 180, 216, 0.15);
}

.footer-nav {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
}

.footer-nav-column {
  display: flex;
  flex-direction: column;
}

.footer-heading {
  font-family: var(--font-heading);
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--text-main);
  margin-bottom: 20px;
}

.footer-links {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.footer-links a,
.footer-links span {
  font-size: 14px;
  color: var(--text-muted);
  transition: color 0.2s ease;
  display: inline-block;
}

.footer-links a:hover {
  color: var(--primary);
  transform: translateX(4px);
}

.footer-email {
  font-weight: 500;
  color: var(--text-main);
}

.footer-email:hover {
  color: var(--primary);
}

.footer-info {
  color: var(--text-muted);
  font-size: 13px;
}

.footer-divider {
  height: 1px;
  background: linear-gradient(to right, transparent, rgba(226, 232, 240, 0.8), transparent);
  margin: 40px 0 30px;
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 20px;
}

.footer-copyright {
  font-size: 13px;
  color: var(--text-muted);
  margin: 0;
}

.footer-meta {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 13px;
}

.footer-link {
  color: var(--text-muted);
  text-decoration: none;
  transition: color 0.2s ease;
}

.footer-link:hover {
  color: var(--primary);
}

.footer-separator {
  color: var(--text-muted);
  opacity: 0.5;
}

/* Responsive Footer */
@media (max-width: 1024px) {
  .footer-top {
    grid-template-columns: 1fr;
    gap: 50px;
  }

  .footer-nav {
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
  }

  .footer-tagline {
    max-width: 100%;
  }
}

@media (max-width: 768px) {
  .footer {
    margin-top: 64px;
    padding: 48px 0 30px;
  }

  .footer-top {
    gap: 40px;
    margin-bottom: 40px;
  }

  .footer-nav {
    grid-template-columns: repeat(2, 1fr);
    gap: 32px;
  }

  .footer-bottom {
    flex-direction: column;
    align-items: flex-start;
    gap: 16px;
  }

  .footer-meta {
    flex-wrap: wrap;
  }
}

@media (max-width: 480px) {
  .footer {
    padding: 50px 0 30px;
  }

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

  .footer-social {
    gap: 10px;
  }

  .social-link {
    width: 40px;
    height: 40px;
  }

  .footer-bottom {
    text-align: left;
  }
}

/* ========== Back to Top Button ========== */
.back-to-top {
  position: fixed;
  bottom: 32px;
  right: 32px;
  width: 48px;
  height: 48px;
  border-radius: 12px;
  background: linear-gradient(135deg, rgba(0, 180, 216, 0.95), rgba(0, 119, 182, 0.95));
  border: 1px solid rgba(255, 255, 255, 0.1);
  color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  opacity: 0;
  visibility: hidden;
  transform: translateY(20px);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  z-index: 999;
  box-shadow: 0 8px 24px rgba(0, 180, 216, 0.3);
  backdrop-filter: blur(10px);
}

.back-to-top.visible {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.back-to-top:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 32px rgba(0, 180, 216, 0.4);
  background: linear-gradient(135deg, rgba(0, 196, 232, 0.95), rgba(0, 136, 200, 0.95));
}

.back-to-top:active {
  transform: translateY(-2px);
}

.back-to-top svg {
  width: 20px;
  height: 20px;
  stroke-width: 2.5;
  transition: transform 0.3s ease;
}

.back-to-top:hover svg {
  transform: translateY(-2px);
}

@media (max-width: 768px) {
  .back-to-top {
    bottom: 24px;
    right: 24px;
    width: 44px;
    height: 44px;
  }

  .back-to-top svg {
    width: 18px;
    height: 18px;
  }
}

/* ========== Animations (simple JS-powered fade) ========== */
.fade-in {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}

.delay-1 {
  transition-delay: 0.15s;
}

/* ========== Responsive ========== */
@media (max-width: 960px) {
  .hero {
    grid-template-columns: minmax(0, 1fr);
    gap: 40px;
  }
  .hero-visual {
    order: -1;
    min-height: 300px;
  }
  .hero-metrics {
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
    padding: 24px;
  }
  .metric:not(:last-child)::after {
    display: none;
  }
  .services-section {
    padding: 80px 0;
  }
  
  .services-grid-asymmetric {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }
  
  .service-card-large {
    grid-column: span 1;
    padding: 0 32px 40px;
    min-height: 380px;
  }
  
  .service-card-small {
    padding: 0 28px 32px;
    min-height: 300px;
  }

  .service-card-inner {
    padding-top: 180px;
  }

  .service-card-small .service-card-inner {
    padding-top: 150px;
  }

  .service-image-wrapper {
    height: 160px;
  }

  .service-card-small .service-image-wrapper {
    height: 130px;
  }
  
  .service-title {
    font-size: 22px;
  }
  
  .service-card-small .service-title {
    font-size: 18px;
  }
  
  .testimonials-header {
    text-align: center;
    max-width: 100%;
    margin-bottom: 56px;
  }
  
  .testimonials-grid-modern {
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
  }

  .testimonial-card-modern {
    padding: 32px;
  }

  .services-grid-modern {
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
  }

  .service-card-modern {
    padding: 32px;
  }
  .cta-inner {
    flex-direction: column;
    align-items: flex-start;
  }
}

@media (max-width: 720px) {
  .nav-links,
  .nav-cta {
    display: none;
  }
  .nav-toggle {
    display: inline-flex;
  }
  
  .nav {
    padding: 16px 0;
  }
  
  .logo-badge {
    width: 38px;
    height: 38px;
    font-size: 18px;
  }
  
  .logo-text span:first-child {
    font-size: 14px;
  }
  
  .logo-text span:last-child {
    font-size: 10px;
  }

  main {
    padding-block: 26px 46px;
  }

  .hero {
    gap: 30px;
  }

  .services-section {
    padding: 48px 0;
    margin-top: 64px;
  }
  
  .services-grid-asymmetric {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  
  .service-card-large,
  .service-card-small {
    grid-column: span 1;
    padding: 0 28px 36px;
    min-height: 360px;
  }

  .service-card-inner {
    padding-top: 180px;
  }

  .service-image-wrapper {
    height: 160px;
  }

  .service-card-small .service-image-wrapper {
    height: 140px;
  }
  
  .service-title {
    font-size: 20px;
  }
  
  .service-card-small .service-title {
    font-size: 18px;
  }
  
  .service-desc {
    font-size: 15px;
  }
  
  .service-card-small .service-desc {
    font-size: 14px;
  }
  
  .testimonials-header {
    margin-bottom: 48px;
  }
  
  .testimonials-grid-modern {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .testimonial-card-modern {
    padding: 28px;
  }

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

  .service-card-modern {
    padding: 28px;
  }

  .service-title-modern {
    font-size: 20px;
  }
  
  .testimonial-quote {
    font-size: 18px;
  }
  
  .testimonial-card:nth-child(2) .testimonial-quote {
    font-size: 18px;
  }
  
  .testimonial-rating {
    top: 40px;
    right: 28px;
  }

  .trusted-inner {
    flex-direction: column;
    align-items: flex-start;
  }

  .section-header {
    flex-direction: column;
    align-items: flex-start;
  }

}

