/* ============================================================
   DIGITAL DESIGN AGENCY — MAIN STYLESHEET
   ============================================================ */

/* --- Custom Properties ------------------------------------ */
:root {
  --bg-1: #070912;
  --bg-2: #0C0E1F;
  --bg-3: #101228;
  --bg-card: #0F1129;
  --bg-card-hover: #151838;

  --accent: #4F6EF7;
  --accent-light: #8AA0FF;
  --accent-2: #8B5CF6;
  --gradient: linear-gradient(135deg, #4F6EF7 0%, #8B5CF6 100%);
  --gradient-text: linear-gradient(135deg, #8AA0FF 0%, #C084FC 100%);

  --text-1: #F0F0FF;
  --text-2: #A0A0C4;
  --text-3: #60607A;

  --border: rgba(255, 255, 255, 0.07);
  --border-accent: rgba(79, 110, 247, 0.3);

  --radius-sm: 10px;
  --radius: 16px;
  --radius-lg: 24px;

  --shadow: 0 4px 30px rgba(0, 0, 0, 0.4);
  --shadow-lg: 0 20px 60px rgba(0, 0, 0, 0.5);
  --glow: 0 0 40px rgba(79, 110, 247, 0.35);

  --font: 'Inter', system-ui, -apple-system, sans-serif;
  --ease: cubic-bezier(0.4, 0, 0.2, 1);
  --transition: 0.3s var(--ease);

  --nav-height: 72px;
  --container: 1200px;
  --container-sm: 820px;
}

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

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

body {
  background-color: var(--bg-1);
  color: var(--text-1);
  font-family: var(--font);
  line-height: 1.65;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
button { font-family: inherit; cursor: pointer; border: none; background: none; }

/* --- Layout Utilities ------------------------------------- */
.container {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 28px;
}

.container-sm {
  max-width: var(--container-sm);
  margin: 0 auto;
  padding: 0 28px;
}

/* --- Typography Helpers ----------------------------------- */
.gradient-text {
  background: var(--gradient-text);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.section-tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(79, 110, 247, 0.1);
  border: 1px solid rgba(79, 110, 247, 0.22);
  border-radius: 100px;
  padding: 6px 16px;
  font-size: 12px;
  font-weight: 700;
  color: var(--accent-light);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 20px;
}

.section-tag::before {
  content: '';
  width: 6px;
  height: 6px;
  background: var(--accent);
  border-radius: 50%;
  animation: pulse-dot 2.2s ease-in-out infinite;
  box-shadow: 0 0 6px var(--accent);
}

@keyframes pulse-dot {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.4; transform: scale(0.7); }
}

.section-header {
  text-align: center;
  margin-bottom: 64px;
}

.section-title {
  font-size: clamp(30px, 4.5vw, 50px);
  font-weight: 900;
  letter-spacing: -0.035em;
  line-height: 1.1;
  margin-bottom: 16px;
}

.section-sub {
  font-size: 17px;
  color: var(--text-2);
  max-width: 540px;
  margin: 0 auto;
  line-height: 1.75;
}

/* --- Buttons ---------------------------------------------- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 28px;
  border-radius: var(--radius-sm);
  font-size: 15px;
  font-weight: 600;
  letter-spacing: -0.01em;
  transition: var(--transition);
  cursor: pointer;
  white-space: nowrap;
}

.btn-primary {
  background: var(--gradient);
  color: #fff;
  box-shadow: 0 4px 20px rgba(79, 110, 247, 0.35);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 35px rgba(79, 110, 247, 0.55);
}

.btn-secondary {
  background: transparent;
  color: var(--text-1);
  border: 1px solid rgba(255, 255, 255, 0.12);
}

.btn-secondary:hover {
  background: rgba(255, 255, 255, 0.05);
  border-color: var(--accent);
  color: var(--accent-light);
  transform: translateY(-2px);
}

.btn svg {
  width: 17px;
  height: 17px;
  stroke: currentColor;
  fill: none;
  stroke-width: 2;
  transition: transform 0.2s ease;
}

.btn-primary:hover svg,
.btn-secondary:hover svg {
  transform: translateX(3px);
}

/* --- Scroll Reveal ---------------------------------------- */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

.reveal-d1 { transition-delay: 0.08s; }
.reveal-d2 { transition-delay: 0.16s; }
.reveal-d3 { transition-delay: 0.24s; }
.reveal-d4 { transition-delay: 0.32s; }
.reveal-d5 { transition-delay: 0.40s; }
.reveal-d6 { transition-delay: 0.48s; }
.reveal-d7 { transition-delay: 0.56s; }
.reveal-d8 { transition-delay: 0.64s; }

/* ============================================================
   NAVBAR
   ============================================================ */
#navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  height: var(--nav-height);
  display: flex;
  align-items: center;
  transition: background 0.45s ease, box-shadow 0.45s ease;
}

#navbar.scrolled {
  background: rgba(7, 9, 18, 0.88);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  box-shadow: 0 1px 0 var(--border);
}

.nav-inner {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 28px;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 19px;
  font-weight: 800;
  letter-spacing: -0.03em;
  flex-shrink: 0;
}

.nav-logo-mark {
  width: 34px;
  height: 34px;
  background: var(--gradient);
  border-radius: 9px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 0 20px rgba(79, 110, 247, 0.4);
  flex-shrink: 0;
}

.nav-logo-mark svg {
  width: 18px;
  height: 18px;
  fill: white;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 4px;
}

.nav-links a:not(.nav-cta-btn) {
  padding: 8px 13px;
  border-radius: 8px;
  font-size: 14px;
  font-weight: 500;
  color: var(--text-2);
  transition: var(--transition);
}

.nav-links a:not(.nav-cta-btn):hover {
  color: var(--text-1);
  background: rgba(255, 255, 255, 0.06);
}

.nav-cta-btn {
  padding: 9px 20px;
  background: var(--gradient);
  color: #fff;
  border-radius: 9px;
  font-size: 14px;
  font-weight: 600;
  transition: var(--transition);
  box-shadow: 0 3px 14px rgba(79, 110, 247, 0.35);
  margin-left: 8px;
}

.nav-cta-btn:hover {
  transform: translateY(-1px);
  box-shadow: 0 8px 24px rgba(79, 110, 247, 0.5);
}

/* Hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  justify-content: center;
  align-items: flex-end;
  gap: 5px;
  width: 34px;
  height: 34px;
  cursor: pointer;
  border-radius: 7px;
  padding: 4px;
  transition: var(--transition);
  flex-shrink: 0;
}

.hamburger span {
  display: block;
  height: 2px;
  background: var(--text-1);
  border-radius: 2px;
  transition: var(--transition);
  transform-origin: center;
}

.hamburger span:nth-child(1) { width: 22px; }
.hamburger span:nth-child(2) { width: 15px; }
.hamburger span:nth-child(3) { width: 22px; }

.hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); width: 22px; }
.hamburger.open span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); width: 22px; }

/* Mobile Menu */
.mobile-menu {
  position: fixed;
  top: var(--nav-height);
  left: 0;
  right: 0;
  z-index: 999;
  background: rgba(7, 9, 18, 0.97);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  border-bottom: 1px solid var(--border);
  display: flex;
  flex-direction: column;
  gap: 4px;
  max-height: 0;
  overflow: hidden;
  opacity: 0;
  transition: max-height 0.4s var(--ease), opacity 0.3s ease, padding 0.4s var(--ease);
  padding: 0 20px;
  pointer-events: none;
}

.mobile-menu.open {
  max-height: 420px;
  opacity: 1;
  padding: 16px 20px 24px;
  pointer-events: all;
}

.mobile-menu a {
  padding: 13px 16px;
  border-radius: 10px;
  font-size: 16px;
  font-weight: 500;
  color: var(--text-2);
  transition: var(--transition);
}

.mobile-menu a:hover {
  color: var(--text-1);
  background: rgba(255, 255, 255, 0.05);
}

.mobile-menu .mob-cta {
  margin-top: 10px;
  text-align: center;
  background: var(--gradient);
  color: #fff;
  font-weight: 600;
  border-radius: 10px;
  box-shadow: 0 4px 16px rgba(79, 110, 247, 0.3);
}

/* ============================================================
   HERO
   ============================================================ */
#home {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding-top: var(--nav-height);
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.hero-grid-overlay {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(79, 110, 247, 0.045) 1px, transparent 1px),
    linear-gradient(90deg, rgba(79, 110, 247, 0.045) 1px, transparent 1px);
  background-size: 58px 58px;
  mask-image: radial-gradient(ellipse 70% 60% at 50% 40%, black 20%, transparent 80%);
  -webkit-mask-image: radial-gradient(ellipse 70% 60% at 50% 40%, black 20%, transparent 80%);
}

.hero-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(90px);
}

.hero-orb-1 {
  width: 700px;
  height: 700px;
  background: radial-gradient(circle, rgba(79, 110, 247, 0.18), transparent 70%);
  top: -200px;
  right: -150px;
}

.hero-orb-2 {
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(139, 92, 246, 0.14), transparent 70%);
  bottom: -100px;
  left: -150px;
}

.hero-content {
  position: relative;
  z-index: 2;
  padding: 80px 0 120px;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: rgba(79, 110, 247, 0.1);
  border: 1px solid rgba(79, 110, 247, 0.22);
  border-radius: 100px;
  padding: 8px 20px;
  font-size: 13px;
  font-weight: 600;
  color: var(--accent-light);
  letter-spacing: 0.05em;
  margin-bottom: 34px;
  animation: fadeSlideDown 0.8s ease both;
}

.badge-dot {
  width: 7px;
  height: 7px;
  background: #4ADE80;
  border-radius: 50%;
  box-shadow: 0 0 8px rgba(74, 222, 128, 0.7);
  animation: pulse-green 2s ease-in-out infinite;
}

@keyframes pulse-green {
  0%, 100% { transform: scale(1); opacity: 1; }
  50% { transform: scale(0.7); opacity: 0.6; }
}

.hero-title {
  font-size: clamp(54px, 9vw, 100px);
  font-weight: 900;
  line-height: 1;
  letter-spacing: -0.04em;
  margin-bottom: 28px;
  animation: fadeSlideUp 0.8s 0.1s ease both;
}

.hero-title .accent-line {
  display: block;
  background: var(--gradient-text);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-sub {
  font-size: clamp(16px, 2.2vw, 19px);
  color: var(--text-2);
  max-width: 560px;
  line-height: 1.78;
  margin-bottom: 44px;
  animation: fadeSlideUp 0.8s 0.18s ease both;
}

.hero-actions {
  display: flex;
  align-items: center;
  gap: 14px;
  flex-wrap: wrap;
  animation: fadeSlideUp 0.8s 0.26s ease both;
}

.hero-trust {
  margin-top: 64px;
  padding-top: 44px;
  border-top: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 40px;
  flex-wrap: wrap;
  animation: fadeSlideUp 0.8s 0.34s ease both;
}

.trust-label {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-3);
}

.trust-stats {
  display: flex;
  gap: 36px;
}

.trust-stat {
  text-align: center;
}

.trust-stat strong {
  display: block;
  font-size: 24px;
  font-weight: 900;
  letter-spacing: -0.04em;
  line-height: 1;
  background: var(--gradient-text);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.trust-stat span {
  font-size: 12px;
  font-weight: 600;
  color: var(--text-3);
  letter-spacing: 0.06em;
  text-transform: uppercase;
  display: block;
  margin-top: 3px;
}

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

@keyframes fadeSlideUp {
  from { opacity: 0; transform: translateY(28px); }
  to { opacity: 1; transform: translateY(0); }
}

/* ============================================================
   SERVICES
   ============================================================ */
#services {
  padding: 110px 0;
  position: relative;
}

#services::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--border-accent), transparent);
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.service-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 30px 26px;
  transition: transform 0.35s var(--ease), border-color 0.35s ease, box-shadow 0.35s ease;
  position: relative;
  overflow: hidden;
  cursor: default;
}

.service-card::after {
  content: '';
  position: absolute;
  inset: 0;
  background: var(--gradient);
  opacity: 0;
  transition: opacity 0.35s ease;
  pointer-events: none;
  border-radius: inherit;
}

.service-card:hover {
  border-color: var(--border-accent);
  transform: translateY(-5px);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.45), 0 0 0 1px rgba(79, 110, 247, 0.08);
}

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

.svc-icon {
  width: 50px;
  height: 50px;
  background: rgba(79, 110, 247, 0.1);
  border: 1px solid rgba(79, 110, 247, 0.18);
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  transition: var(--transition);
  position: relative;
  z-index: 1;
}

.service-card:hover .svc-icon {
  background: rgba(79, 110, 247, 0.18);
  border-color: rgba(79, 110, 247, 0.4);
  box-shadow: 0 0 20px rgba(79, 110, 247, 0.2);
}

.svc-icon svg {
  width: 22px;
  height: 22px;
  stroke: var(--accent-light);
  fill: none;
  stroke-width: 1.75;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.svc-name {
  font-size: 15px;
  font-weight: 700;
  color: var(--text-1);
  margin-bottom: 9px;
  letter-spacing: -0.015em;
  position: relative;
  z-index: 1;
}

.svc-desc {
  font-size: 13.5px;
  color: var(--text-2);
  line-height: 1.7;
  position: relative;
  z-index: 1;
}

/* ============================================================
   STATS BAR
   ============================================================ */
#stats {
  padding: 80px 0;
  background: var(--bg-2);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  position: relative;
  overflow: hidden;
}

#stats::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 80% 80% at 50% 50%, rgba(79, 110, 247, 0.04), transparent);
  pointer-events: none;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  position: relative;
}

.stat-item {
  text-align: center;
  padding: 20px;
  position: relative;
}

.stat-item:not(:last-child)::after {
  content: '';
  position: absolute;
  right: 0;
  top: 25%;
  height: 50%;
  width: 1px;
  background: var(--border);
}

.stat-num {
  font-size: clamp(40px, 5vw, 60px);
  font-weight: 900;
  letter-spacing: -0.04em;
  line-height: 1;
  white-space: nowrap;
  background: var(--gradient-text);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 10px;
  display: block;
}

.stat-label {
  font-size: 14px;
  font-weight: 500;
  color: var(--text-2);
  letter-spacing: 0.02em;
}

/* ============================================================
   HOW IT WORKS
   ============================================================ */
#how-it-works {
  padding: 110px 0;
  position: relative;
}

.steps-wrapper {
  position: relative;
}

.steps-line {
  position: absolute;
  top: 26px;
  left: calc(12.5% + 2px);
  right: calc(12.5% + 2px);
  height: 1px;
  background: linear-gradient(90deg,
    transparent 0%,
    rgba(79, 110, 247, 0.25) 20%,
    rgba(139, 92, 246, 0.25) 80%,
    transparent 100%);
  pointer-events: none;
}

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

.step-card {
  text-align: center;
  padding: 24px 20px;
}

.step-num {
  width: 52px;
  height: 52px;
  background: var(--gradient);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 17px;
  font-weight: 900;
  color: #fff;
  margin: 0 auto 24px;
  position: relative;
  z-index: 1;
  box-shadow: 0 0 30px rgba(79, 110, 247, 0.4);
}

.step-title {
  font-size: 17px;
  font-weight: 700;
  color: var(--text-1);
  margin-bottom: 12px;
  letter-spacing: -0.02em;
}

.step-desc {
  font-size: 14px;
  color: var(--text-2);
  line-height: 1.72;
}

/* ============================================================
   CTA SECTION
   ============================================================ */
#cta {
  padding: 60px 0 110px;
}

.cta-box {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 84px 60px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.cta-box::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 70% 60% at 50% -10%, rgba(79, 110, 247, 0.12), transparent);
  pointer-events: none;
}


.cta-title {
  font-size: clamp(30px, 4.5vw, 52px);
  font-weight: 900;
  letter-spacing: -0.035em;
  line-height: 1.1;
  margin-bottom: 18px;
  position: relative;
  z-index: 1;
}

.cta-sub {
  font-size: 17px;
  color: var(--text-2);
  max-width: 520px;
  margin: 0 auto 42px;
  line-height: 1.75;
  position: relative;
  z-index: 1;
}

.cta-actions {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  flex-wrap: wrap;
  position: relative;
  z-index: 1;
}

.cta-note {
  margin-top: 20px;
  font-size: 13px;
  color: var(--text-3);
  position: relative;
  z-index: 1;
}

.cta-note svg {
  display: inline-block;
  width: 13px;
  height: 13px;
  vertical-align: -2px;
  stroke: var(--text-3);
  fill: none;
  stroke-width: 2;
  margin-right: 5px;
}

/* ============================================================
   CLIENT LOGO TICKER
   ============================================================ */
#clients {
  padding: 64px 0;
  border-top: 1px solid var(--border);
  overflow: hidden;
}

.clients-heading {
  text-align: center;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-3);
  margin-bottom: 36px;
}

.ticker-outer {
  position: relative;
  overflow: hidden;
  mask-image: linear-gradient(90deg, transparent 0%, black 12%, black 88%, transparent 100%);
  -webkit-mask-image: linear-gradient(90deg, transparent 0%, black 12%, black 88%, transparent 100%);
}

.ticker-track {
  display: flex;
  gap: 16px;
  width: max-content;
  animation: ticker-move 32s linear infinite;
}

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

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

.logo-chip {
  display: flex;
  align-items: center;
  gap: 10px;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 13px 22px;
  white-space: nowrap;
  transition: border-color 0.3s ease;
  user-select: none;
}

.logo-chip:hover {
  border-color: var(--border-accent);
}

.logo-chip-mark {
  width: 26px;
  height: 26px;
  border-radius: 7px;
  opacity: 0.7;
  flex-shrink: 0;
}

.logo-chip-name {
  font-size: 13.5px;
  font-weight: 700;
  color: var(--text-2);
  letter-spacing: -0.01em;
}

/* ============================================================
   FOOTER
   ============================================================ */
footer {
  background: var(--bg-2);
  border-top: 1px solid var(--border);
  padding: 72px 0 32px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr 1fr;
  gap: 48px;
  margin-bottom: 52px;
}

.footer-brand .nav-logo {
  margin-bottom: 18px;
}

.footer-desc {
  font-size: 14px;
  color: var(--text-3);
  line-height: 1.75;
  max-width: 280px;
}

.footer-col-title {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-1);
  margin-bottom: 20px;
}

.footer-links {
  display: flex;
  flex-direction: column;
  gap: 11px;
}

.footer-links a {
  font-size: 14px;
  color: var(--text-3);
  transition: color 0.25s ease, padding-left 0.25s ease;
}

.footer-links a:hover {
  color: var(--text-1);
  padding-left: 5px;
}

.footer-contact-list {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.footer-contact-item {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 14px;
  color: var(--text-3);
  line-height: 1.5;
}

.footer-contact-item svg {
  width: 15px;
  height: 15px;
  stroke: var(--accent);
  fill: none;
  stroke-width: 1.75;
  flex-shrink: 0;
  margin-top: 2px;
}

.footer-bottom {
  border-top: 1px solid var(--border);
  padding-top: 28px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
}

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

.footer-copy a {
  color: var(--accent-light);
  transition: color 0.2s ease;
}

.footer-copy a:hover { color: #fff; }

.footer-social {
  display: flex;
  gap: 10px;
}

.soc-btn {
  width: 36px;
  height: 36px;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 9px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition);
}

.soc-btn:hover {
  border-color: var(--accent);
  background: rgba(79, 110, 247, 0.1);
  transform: translateY(-2px);
}

.soc-btn svg {
  width: 15px;
  height: 15px;
  fill: var(--text-3);
  transition: fill 0.25s ease;
}

.soc-btn:hover svg { fill: var(--accent-light); }

/* ============================================================
   CONTACT PAGE
   ============================================================ */
.page-hero {
  padding: calc(var(--nav-height) + 80px) 0 80px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.page-hero-glow {
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 70% 90% at 50% -20%, rgba(79, 110, 247, 0.1), transparent);
  pointer-events: none;
}

.page-title {
  font-size: clamp(38px, 6vw, 66px);
  font-weight: 900;
  letter-spacing: -0.04em;
  line-height: 1.05;
  margin-bottom: 18px;
}

.page-sub {
  font-size: 17px;
  color: var(--text-2);
  max-width: 460px;
  margin: 0 auto;
  line-height: 1.75;
}

.contact-section {
  padding: 0 0 110px;
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.55fr;
  gap: 44px;
  align-items: start;
}

/* Info cards */
.contact-info {
  display: flex;
  flex-direction: column;
  gap: 18px;
  position: sticky;
  top: calc(var(--nav-height) + 24px);
}

.info-card {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 22px;
  transition: var(--transition);
}

.info-card:hover {
  border-color: var(--border-accent);
  transform: translateX(4px);
}

.info-icon {
  width: 44px;
  height: 44px;
  background: rgba(79, 110, 247, 0.1);
  border: 1px solid rgba(79, 110, 247, 0.18);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.info-icon svg {
  width: 19px;
  height: 19px;
  stroke: var(--accent-light);
  fill: none;
  stroke-width: 1.75;
}

.info-text strong {
  display: block;
  font-size: 14px;
  font-weight: 700;
  color: var(--text-1);
  margin-bottom: 5px;
}

.info-text span {
  font-size: 13.5px;
  color: var(--text-2);
  line-height: 1.55;
}

/* Form */
.form-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 48px 44px;
}

.form-head {
  margin-bottom: 36px;
}

.form-head h2 {
  font-size: 26px;
  font-weight: 800;
  letter-spacing: -0.03em;
  margin-bottom: 8px;
}

.form-head p {
  font-size: 14.5px;
  color: var(--text-2);
  line-height: 1.65;
}

.form-row-2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 7px;
  margin-bottom: 20px;
}

.form-group label {
  font-size: 12px;
  font-weight: 700;
  color: var(--text-2);
  letter-spacing: 0.07em;
  text-transform: uppercase;
}

.form-group input,
.form-group select,
.form-group textarea {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.09);
  border-radius: var(--radius-sm);
  padding: 13px 16px;
  font-size: 15px;
  font-family: var(--font);
  color: var(--text-1);
  transition: var(--transition);
  outline: none;
  width: 100%;
  -webkit-appearance: none;
  appearance: none;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
  color: var(--text-3);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--accent);
  background: rgba(79, 110, 247, 0.06);
  box-shadow: 0 0 0 3px rgba(79, 110, 247, 0.12);
}

.form-group select {
  cursor: pointer;
  color: var(--text-2);
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%2360607A' stroke-width='1.5' fill='none' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 15px center;
  padding-right: 42px;
}

.form-group select option {
  background: var(--bg-2);
  color: var(--text-1);
}

.form-group textarea {
  resize: vertical;
  min-height: 130px;
  line-height: 1.65;
}

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

.form-privacy {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 13px;
  color: var(--text-3);
}

.form-privacy svg {
  width: 13px;
  height: 13px;
  stroke: var(--text-3);
  fill: none;
  stroke-width: 2;
  flex-shrink: 0;
}

.btn-send {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  background: var(--gradient);
  color: #fff;
  border: none;
  padding: 14px 30px;
  border-radius: var(--radius-sm);
  font-size: 15px;
  font-weight: 700;
  font-family: var(--font);
  cursor: pointer;
  transition: var(--transition);
  box-shadow: 0 4px 20px rgba(79, 110, 247, 0.35);
  letter-spacing: -0.01em;
}

.btn-send:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(79, 110, 247, 0.5);
}

.btn-send svg {
  width: 17px;
  height: 17px;
  stroke: #fff;
  fill: none;
  stroke-width: 2;
  transition: transform 0.2s ease;
}

.btn-send:hover svg { transform: translateX(3px); }

.btn-send.loading { opacity: 0.7; pointer-events: none; }

/* Success state */
.form-success {
  display: none;
  text-align: center;
  padding: 30px 0;
}

.form-success.show { display: block; }

.success-circle {
  width: 72px;
  height: 72px;
  background: rgba(74, 222, 128, 0.1);
  border: 2px solid rgba(74, 222, 128, 0.35);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 24px;
  animation: popIn 0.5s var(--ease) both;
}

.success-circle svg {
  width: 30px;
  height: 30px;
  stroke: #4ADE80;
  fill: none;
  stroke-width: 2.5;
}

@keyframes popIn {
  from { transform: scale(0.6); opacity: 0; }
  to { transform: scale(1); opacity: 1; }
}

.success-title {
  font-size: 22px;
  font-weight: 800;
  letter-spacing: -0.03em;
  margin-bottom: 10px;
}

.success-msg {
  font-size: 15px;
  color: var(--text-2);
  line-height: 1.7;
}

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 1100px) {
  .services-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .steps-line { display: none; }

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

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

  .footer-brand {
    grid-column: 1 / -1;
  }

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

@media (max-width: 768px) {
  :root {
    --nav-height: 64px;
  }

  .nav-links { display: none !important; }
  .hamburger { display: flex; }

  #home { min-height: auto; padding-bottom: 0; }

  .hero-content { padding: 70px 0 90px; }

  .hero-trust {
    flex-direction: column;
    align-items: center;
    gap: 14px;
  }

  .trust-stats { gap: 28px; }

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

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

  .stat-item {
    padding: 28px 16px;
    border-bottom: 1px solid var(--border);
  }

  .stat-item:nth-child(1),
  .stat-item:nth-child(2) {
    border-bottom: 1px solid var(--border);
  }

  .stat-item:nth-child(3),
  .stat-item:nth-child(4) {
    border-bottom: none;
  }

  .stat-item:nth-child(odd)::after { display: none; }
  .stat-item:not(:last-child)::after { display: none; }
  .stat-item:nth-child(odd) {
    border-right: 1px solid var(--border);
  }

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

  .cta-box {
    padding: 52px 28px;
  }

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

  .contact-info { position: static; }

  .form-card {
    padding: 30px 24px;
  }

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

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

  .footer-brand { grid-column: auto; }
}

@media (max-width: 520px) {
  .services-grid {
    grid-template-columns: 1fr;
  }

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

  .stat-item { border-right: none !important; }
  .stat-item { border-bottom: 1px solid var(--border) !important; }
  .stat-item:last-child { border-bottom: none !important; }

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

  .hero-actions .btn {
    justify-content: center;
  }

  .trust-stats {
    flex-wrap: wrap;
    gap: 20px;
  }

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

  .cta-actions .btn {
    justify-content: center;
  }

  .form-footer {
    flex-direction: column;
    align-items: stretch;
  }

  .btn-send {
    justify-content: center;
  }
}
