/* ============================================================
   Lead Automation Solutions — Global Stylesheet
   ============================================================ */

/* === Custom Properties === */
:root {
  --navy:        #0A0F1E;
  --navy-800:    #0D1528;
  --navy-700:    #111c35;
  --navy-600:    #162040;
  --navy-500:    #1e2d50;
  --cyan:        #00D4FF;
  --cyan-10:     rgba(0, 212, 255, 0.10);
  --cyan-15:     rgba(0, 212, 255, 0.15);
  --cyan-20:     rgba(0, 212, 255, 0.20);
  --cyan-40:     rgba(0, 212, 255, 0.40);
  --cyan-60:     rgba(0, 212, 255, 0.60);
  --slate:       #E8EDF5;
  --slate-70:    rgba(232, 237, 245, 0.70);
  --slate-40:    rgba(232, 237, 245, 0.40);
  --slate-20:    rgba(232, 237, 245, 0.20);
  --slate-10:    rgba(232, 237, 245, 0.10);
  --green:       #00FF94;
  --green-10:    rgba(0, 255, 148, 0.10);
  --font-display: 'Clash Display', 'Inter', system-ui, sans-serif;
  --font-body:    'DM Sans', 'Inter', system-ui, sans-serif;
  --radius:      12px;
  --radius-lg:   20px;
  --radius-xl:   32px;
  --radius-full: 100px;
  --glow-sm:     0 0 20px rgba(0, 212, 255, 0.25);
  --glow-md:     0 0 30px rgba(0, 212, 255, 0.35), 0 0 80px rgba(0, 212, 255, 0.12);
  --glow-lg:     0 0 40px rgba(0, 212, 255, 0.45), 0 0 120px rgba(0, 212, 255, 0.15);
  --shadow-card: 0 8px 32px rgba(0, 0, 0, 0.5);
  --max-width:   1200px;
  --nav-height:  72px;
}

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

html {
  scroll-behavior: smooth;
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
}

body {
  background: var(--navy);
  color: var(--slate);
  font-family: var(--font-body);
  font-size: 1rem;
  line-height: 1.6;
  overflow-x: hidden;
}

body.menu-open {
  overflow: hidden;
}

img, video {
  max-width: 100%;
  height: auto;
  display: block;
}

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

ul, ol {
  list-style: none;
}

button {
  cursor: pointer;
  border: none;
  background: none;
  font-family: inherit;
}

input, textarea, select {
  font-family: inherit;
}

/* === Typography === */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-display);
  font-weight: 700;
  line-height: 1.15;
  color: var(--slate);
}

h1 { font-size: clamp(2.4rem, 5vw, 4rem); }
h2 { font-size: clamp(1.9rem, 3.5vw, 3rem); }
h3 { font-size: clamp(1.3rem, 2.5vw, 1.75rem); }
h4 { font-size: 1.25rem; }

p {
  color: var(--slate-70);
  line-height: 1.75;
}

strong {
  color: var(--slate);
  font-weight: 600;
}

/* === Layout === */
.container {
  width: 100%;
  max-width: var(--max-width);
  margin-inline: auto;
  padding-inline: 24px;
}

.section {
  padding: 100px 0;
}

.section-sm {
  padding: 64px 0;
}

.section-label {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--cyan);
  margin-bottom: 16px;
}

.section-label::before {
  content: '';
  width: 20px;
  height: 1px;
  background: var(--cyan);
}

.text-center { text-align: center; }
.text-cyan   { color: var(--cyan); }
.text-green  { color: var(--green); }

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

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

@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50%       { opacity: 0.5; transform: scale(1.3); }
}

@keyframes pulseShadow {
  0%, 100% { box-shadow: 0 0 20px rgba(0, 212, 255, 0.3); }
  50%       { box-shadow: 0 0 40px rgba(0, 212, 255, 0.7), 0 0 80px rgba(0, 212, 255, 0.3); }
}

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

@keyframes flowDown {
  0%   { opacity: 0; transform: translateY(-10px) scale(0.8); }
  30%  { opacity: 1; transform: translateY(0) scale(1); }
  70%  { opacity: 1; transform: translateY(0) scale(1); }
  100% { opacity: 0; transform: translateY(10px) scale(0.8); }
}

@keyframes tickerScroll {
  0%   { opacity: 0; transform: translateX(-20px); }
  10%  { opacity: 1; transform: translateX(0); }
  90%  { opacity: 1; transform: translateX(0); }
  100% { opacity: 0; transform: translateX(20px); }
}

@keyframes gradientShift {
  0%   { background-position: 0% 50%; }
  50%  { background-position: 100% 50%; }
  100% { background-position: 0% 50%; }
}

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

@keyframes nodeGlow {
  0%, 100% { r: 3; opacity: 0.6; }
  50%       { r: 5; opacity: 1; }
}

@keyframes particleMove {
  0%   { stroke-dashoffset: 200; opacity: 0; }
  10%  { opacity: 1; }
  90%  { opacity: 1; }
  100% { stroke-dashoffset: 0; opacity: 0; }
}

@keyframes shimmer {
  0%   { background-position: -200% 0; }
  100% { background-position: 200% 0; }
}

@keyframes scaleIn {
  from { opacity: 0; transform: scale(0.9); }
  to   { opacity: 1; transform: scale(1); }
}

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

@keyframes lineGrow {
  from { stroke-dashoffset: 1000; }
  to   { stroke-dashoffset: 0; }
}

.fade-up {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.fade-in {
  opacity: 0;
  transition: opacity 0.7s ease;
}

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

.delay-1 { transition-delay: 0.1s; }
.delay-2 { transition-delay: 0.2s; }
.delay-3 { transition-delay: 0.3s; }
.delay-4 { transition-delay: 0.4s; }
.delay-5 { transition-delay: 0.5s; }

/* === Buttons === */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 28px;
  border-radius: var(--radius-full);
  font-family: var(--font-body);
  font-size: 0.95rem;
  font-weight: 600;
  letter-spacing: 0.01em;
  transition: all 0.25s ease;
  white-space: nowrap;
  position: relative;
  overflow: hidden;
}

.btn-primary {
  background: var(--cyan);
  color: var(--navy);
  box-shadow: var(--glow-sm);
}

.btn-primary:hover {
  background: #20dcff;
  box-shadow: var(--glow-md);
  transform: translateY(-2px);
}

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

.btn-ghost {
  background: transparent;
  color: var(--slate);
  border: 1px solid var(--slate-20);
}

.btn-ghost:hover {
  border-color: var(--cyan-40);
  color: var(--cyan);
  background: var(--cyan-10);
}

.btn-outline-cyan {
  background: transparent;
  color: var(--cyan);
  border: 1px solid var(--cyan-40);
}

.btn-outline-cyan:hover {
  background: var(--cyan-10);
  box-shadow: var(--glow-sm);
  transform: translateY(-2px);
}

.btn-lg {
  padding: 18px 36px;
  font-size: 1.05rem;
}

.btn svg {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
  transition: transform 0.25s ease;
}

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

/* === Navigation === */
.nav {
  position: fixed;
  top: 16px;
  left: 16px;
  right: 16px;
  z-index: 1000;
  height: var(--nav-height);
  border-radius: var(--radius-lg);
  transition: background 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease, top 0.3s ease;
  border: 1px solid transparent;
}

.nav.scrolled {
  background: rgba(10, 15, 30, 0.85);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  border-color: var(--slate-10);
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.4);
}

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

.nav-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--slate);
  flex-shrink: 0;
}

.nav-logo-mark {
  width: 36px;
  height: 36px;
  background: linear-gradient(135deg, var(--cyan), #0099cc);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.9rem;
  font-weight: 800;
  color: var(--navy);
  box-shadow: var(--glow-sm);
}

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

.nav-links a {
  padding: 8px 14px;
  border-radius: var(--radius);
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--slate-70);
  transition: color 0.2s ease, background 0.2s ease;
}

.nav-links a:hover {
  color: var(--slate);
  background: var(--slate-10);
}

.nav-links a.active {
  color: var(--cyan);
}

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

.menu-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 8px;
  border-radius: var(--radius);
  cursor: pointer;
}

.menu-toggle span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--slate);
  border-radius: 2px;
  transition: all 0.3s ease;
  transform-origin: center;
}

.menu-toggle.active span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.menu-toggle.active span:nth-child(2) {
  opacity: 0;
  transform: scaleX(0);
}

.menu-toggle.active span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

.mobile-nav {
  position: fixed;
  inset: 0;
  z-index: 999;
  background: rgba(10, 15, 30, 0.97);
  backdrop-filter: blur(30px);
  -webkit-backdrop-filter: blur(30px);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 8px;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
}

.mobile-nav.active {
  opacity: 1;
  pointer-events: all;
}

.mobile-nav a {
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 700;
  color: var(--slate-70);
  padding: 12px 24px;
  border-radius: var(--radius);
  transition: color 0.2s ease;
}

.mobile-nav a:hover {
  color: var(--cyan);
}

.mobile-nav-cta {
  margin-top: 24px;
}

/* === Hero === */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding-top: calc(var(--nav-height) + 16px);
  overflow: hidden;
}

.hero-canvas {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  opacity: 0.7;
}

.hero-gradient {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 60% 50% at 50% 0%, rgba(0, 212, 255, 0.08) 0%, transparent 70%),
    radial-gradient(ellipse 40% 40% at 80% 60%, rgba(0, 212, 255, 0.05) 0%, transparent 60%),
    linear-gradient(180deg, transparent 60%, var(--navy) 100%);
  pointer-events: none;
}

.hero-inner {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
  padding: 80px 0 100px;
}

.hero-content {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.hero-ticker {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: var(--cyan-10);
  border: 1px solid var(--cyan-20);
  border-radius: var(--radius-full);
  padding: 8px 16px;
  font-size: 0.82rem;
  font-weight: 500;
  color: var(--cyan);
  width: fit-content;
}

.ticker-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--cyan);
  animation: pulse 1.8s ease-in-out infinite;
  flex-shrink: 0;
}

.hero h1 {
  font-size: clamp(2.6rem, 5vw, 4.2rem);
  line-height: 1.1;
  letter-spacing: -0.02em;
}

.hero h1 em {
  font-style: normal;
  color: var(--cyan);
}

.hero-sub {
  font-size: 1.1rem;
  color: var(--slate-70);
  line-height: 1.75;
  max-width: 540px;
}

.hero-actions {
  display: flex;
  align-items: center;
  gap: 14px;
  flex-wrap: wrap;
}

.hero-trust {
  display: flex;
  align-items: center;
  gap: 16px;
  padding-top: 8px;
}

.hero-trust-item {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 0.82rem;
  color: var(--slate-40);
}

.hero-trust-item svg {
  width: 14px;
  height: 14px;
  color: var(--green);
  flex-shrink: 0;
}

/* Hero funnel visual */
.hero-visual {
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}

.funnel-wrap {
  position: relative;
  width: 100%;
  max-width: 460px;
}

.funnel-card {
  background: rgba(13, 21, 40, 0.7);
  border: 1px solid var(--cyan-15);
  border-radius: var(--radius-xl);
  padding: 32px;
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  box-shadow: var(--shadow-card), inset 0 1px 0 rgba(255,255,255,0.04);
}

.funnel-title {
  font-family: var(--font-display);
  font-size: 0.75rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--cyan-60);
  text-align: center;
  margin-bottom: 24px;
}

.funnel-stages {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0;
}

.funnel-stage-row {
  width: 100%;
  display: flex;
  justify-content: center;
  gap: 10px;
}

.funnel-source {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  background: var(--slate-10);
  border: 1px solid var(--slate-20);
  border-radius: var(--radius);
  padding: 10px 14px;
  font-size: 0.75rem;
  color: var(--slate-70);
  font-weight: 500;
  animation: float 3s ease-in-out infinite;
}

.funnel-source:nth-child(2) { animation-delay: 0.5s; }
.funnel-source:nth-child(3) { animation-delay: 1s; }
.funnel-source:nth-child(4) { animation-delay: 1.5s; }

.funnel-source svg {
  width: 20px;
  height: 20px;
  color: var(--slate-40);
}

.funnel-arrow-col {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0;
  padding: 6px 0;
}

.funnel-arrow-line {
  width: 1px;
  height: 32px;
  background: linear-gradient(to bottom, var(--slate-20), var(--cyan-40));
  position: relative;
  overflow: hidden;
}

.funnel-arrow-line::after {
  content: '';
  position: absolute;
  top: -100%;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to bottom, transparent, var(--cyan), transparent);
  animation: flowDown 2s ease-in-out infinite;
}

.funnel-arrow-head {
  width: 0;
  height: 0;
  border-left: 5px solid transparent;
  border-right: 5px solid transparent;
  border-top: 7px solid var(--cyan-40);
}

.funnel-engine {
  background: linear-gradient(135deg, rgba(0, 212, 255, 0.12), rgba(0, 212, 255, 0.05));
  border: 1px solid var(--cyan-20);
  border-radius: var(--radius-lg);
  padding: 18px 32px;
  text-align: center;
  width: 100%;
  animation: pulseShadow 3s ease-in-out infinite;
}

.funnel-engine-label {
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 700;
  color: var(--cyan);
  letter-spacing: 0.05em;
}

.funnel-engine-sub {
  font-size: 0.72rem;
  color: var(--slate-40);
  margin-top: 2px;
}

.funnel-results {
  display: flex;
  gap: 10px;
  width: 100%;
}

.funnel-result-card {
  flex: 1;
  background: rgba(0, 255, 148, 0.06);
  border: 1px solid rgba(0, 255, 148, 0.2);
  border-radius: var(--radius);
  padding: 14px;
  text-align: center;
}

.funnel-result-card .result-icon {
  font-size: 1.2rem;
  margin-bottom: 4px;
  display: block;
}

.funnel-result-card .result-label {
  font-size: 0.72rem;
  font-weight: 600;
  color: var(--green);
}

.funnel-result-card .result-stars {
  font-size: 0.6rem;
  color: #FFD700;
  letter-spacing: 1px;
  margin-top: 3px;
}

/* === Problem Section === */
.problem {
  background: var(--navy-800);
  border-top: 1px solid var(--slate-10);
  border-bottom: 1px solid var(--slate-10);
}

.problem-grid {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  gap: 48px;
  align-items: center;
  margin-top: 64px;
}

.problem-tools-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
}

.tool-card {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid var(--slate-10);
  border-radius: var(--radius);
  padding: 14px 16px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 8px;
}

.tool-card.dimmed {
  opacity: 0.5;
}

.tool-name {
  font-size: 0.82rem;
  color: var(--slate-70);
  font-weight: 500;
}

.tool-price {
  font-size: 0.78rem;
  font-weight: 700;
  color: #ff6b6b;
  white-space: nowrap;
}

.tool-total-card {
  grid-column: span 2;
  background: rgba(255, 107, 107, 0.06);
  border: 1px solid rgba(255, 107, 107, 0.2);
  border-radius: var(--radius);
  padding: 14px 16px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.tool-total-label {
  font-size: 0.82rem;
  color: var(--slate-70);
}

.tool-total-price {
  font-size: 1rem;
  font-weight: 700;
  color: #ff6b6b;
}

.problem-vs {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
}

.vs-label {
  font-family: var(--font-display);
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--slate-40);
}

.vs-line {
  width: 1px;
  height: 60px;
  background: linear-gradient(to bottom, transparent, var(--slate-20), transparent);
}

.problem-solution-card {
  background: linear-gradient(135deg, rgba(0, 212, 255, 0.08), rgba(0, 212, 255, 0.03));
  border: 1px solid var(--cyan-20);
  border-radius: var(--radius-lg);
  padding: 40px 32px;
  text-align: center;
  box-shadow: var(--glow-sm);
}

.solution-badge {
  display: inline-block;
  background: var(--cyan-10);
  border: 1px solid var(--cyan-20);
  border-radius: var(--radius-full);
  padding: 4px 14px;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--cyan);
  margin-bottom: 20px;
}

.solution-logo {
  font-family: var(--font-display);
  font-size: 2.5rem;
  font-weight: 800;
  color: var(--cyan);
  line-height: 1;
  margin-bottom: 12px;
}

.solution-tagline {
  font-size: 0.9rem;
  color: var(--slate-70);
  margin-bottom: 24px;
}

.solution-price-tag {
  background: var(--green-10);
  border: 1px solid rgba(0, 255, 148, 0.2);
  border-radius: var(--radius-full);
  padding: 10px 24px;
  display: inline-block;
}

.solution-price-tag strong {
  color: var(--green);
  font-size: 1rem;
}

.problem-copy {
  max-width: 680px;
  margin-top: 64px;
  padding: 32px;
  background: rgba(255, 255, 255, 0.02);
  border-left: 3px solid var(--cyan-40);
  border-radius: 0 var(--radius) var(--radius) 0;
}

.problem-copy p {
  font-size: 1.1rem;
  line-height: 1.8;
  color: var(--slate-70);
}

/* === Services Section === */
.services {
  background: var(--navy);
}

.services-header {
  text-align: center;
  max-width: 680px;
  margin: 0 auto 64px;
}

.services-header p {
  margin-top: 16px;
  font-size: 1.05rem;
}

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

.service-card {
  background: rgba(13, 21, 40, 0.8);
  border: 1px solid var(--slate-10);
  border-radius: var(--radius-xl);
  padding: 36px 32px;
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  transition: border-color 0.3s ease, box-shadow 0.3s ease, transform 0.3s ease;
  display: flex;
  flex-direction: column;
  position: relative;
  overflow: hidden;
}

.service-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--cyan-20), transparent);
  transform: scaleX(0);
  transition: transform 0.4s ease;
}

.service-card:hover {
  border-color: var(--cyan-15);
  box-shadow: var(--glow-sm), var(--shadow-card);
  transform: translateY(-4px);
}

.service-card:hover::before {
  transform: scaleX(1);
}

.service-card.featured {
  border-color: var(--cyan-20);
  background: linear-gradient(135deg, rgba(0, 212, 255, 0.06), rgba(13, 21, 40, 0.9));
}

.service-icon-wrap {
  width: 52px;
  height: 52px;
  border-radius: var(--radius);
  background: var(--cyan-10);
  border: 1px solid var(--cyan-20);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 24px;
  flex-shrink: 0;
}

.service-icon-wrap svg {
  width: 24px;
  height: 24px;
  color: var(--cyan);
}

.service-card h3 {
  font-size: 1.3rem;
  margin-bottom: 12px;
}

.service-card p {
  font-size: 0.92rem;
  flex: 1;
  margin-bottom: 24px;
}

.service-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(0, 255, 148, 0.08);
  border: 1px solid rgba(0, 255, 148, 0.2);
  border-radius: var(--radius-full);
  padding: 4px 12px;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--green);
  margin-bottom: 16px;
  width: fit-content;
}

.service-badge svg {
  width: 12px;
  height: 12px;
}

.service-card-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--cyan);
  margin-top: auto;
  transition: gap 0.2s ease;
}

.service-card-link:hover {
  gap: 10px;
}

.service-card-link svg {
  width: 16px;
  height: 16px;
}

/* === OneReviewPro Section === */
.orp {
  background: var(--navy-800);
  border-top: 1px solid var(--slate-10);
  position: relative;
  overflow: hidden;
}

.orp::before {
  content: '';
  position: absolute;
  top: -100px;
  right: -100px;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(0, 212, 255, 0.06) 0%, transparent 70%);
  pointer-events: none;
}

.orp-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.orp-content {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.orp-product-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--cyan-10);
  border: 1px solid var(--cyan-20);
  border-radius: var(--radius-full);
  padding: 6px 16px;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--cyan);
  width: fit-content;
}

.orp-product-badge svg {
  width: 14px;
  height: 14px;
}

.orp-headline {
  font-size: clamp(2rem, 3.5vw, 2.8rem);
  line-height: 1.1;
  letter-spacing: -0.02em;
}

.orp-tagline {
  font-family: var(--font-display);
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--cyan);
  line-height: 1.2;
}

.orp-description {
  font-size: 1rem;
  line-height: 1.8;
}

.orp-stat {
  background: rgba(0, 212, 255, 0.05);
  border: 1px solid var(--cyan-15);
  border-radius: var(--radius);
  padding: 16px 20px;
}

.orp-stat p {
  font-size: 0.9rem;
  color: var(--slate-70);
  font-style: italic;
}

.orp-stat strong {
  color: var(--cyan);
}

.orp-cta-wrap {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.orp-cta-note {
  font-size: 0.78rem;
  color: var(--slate-40);
  padding-left: 4px;
}

.orp-pillars {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.orp-pillar {
  display: flex;
  gap: 20px;
  align-items: flex-start;
  padding: 24px;
  background: rgba(13, 21, 40, 0.7);
  border: 1px solid var(--slate-10);
  border-radius: var(--radius-lg);
  transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

.orp-pillar:hover {
  border-color: var(--cyan-15);
  box-shadow: var(--glow-sm);
}

.orp-pillar-icon {
  width: 44px;
  height: 44px;
  border-radius: var(--radius);
  background: var(--cyan-10);
  border: 1px solid var(--cyan-20);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.orp-pillar-icon svg {
  width: 20px;
  height: 20px;
  color: var(--cyan);
}

.orp-pillar-body h4 {
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: 6px;
}

.orp-pillar-body p {
  font-size: 0.88rem;
  line-height: 1.65;
}

/* === How It Works === */
.hiw {
  background: var(--navy);
}

.hiw-header {
  text-align: center;
  max-width: 600px;
  margin: 0 auto 80px;
}

.hiw-header p {
  margin-top: 16px;
}

.hiw-steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  position: relative;
}

.hiw-steps::before {
  content: '';
  position: absolute;
  top: 48px;
  left: calc(33.33% / 2);
  right: calc(33.33% / 2);
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--cyan-20), var(--cyan-40), var(--cyan-20), transparent);
  z-index: 0;
}

.hiw-step {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 0 32px;
  position: relative;
  z-index: 1;
}

.step-num {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: var(--navy-800);
  border: 1px solid var(--cyan-20);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--cyan);
  margin-bottom: 28px;
  box-shadow: var(--glow-sm);
  position: relative;
}

.step-num::after {
  content: '';
  position: absolute;
  inset: -4px;
  border-radius: 50%;
  border: 1px solid var(--cyan-10);
}

.hiw-step h3 {
  font-size: 1.2rem;
  margin-bottom: 12px;
}

.hiw-step p {
  font-size: 0.9rem;
  line-height: 1.7;
}

.hiw-cta {
  text-align: center;
  margin-top: 64px;
}

/* === Stats Bar === */
.stats-bar {
  background: linear-gradient(180deg, var(--navy-800) 0%, var(--navy) 100%);
  border-top: 1px solid var(--slate-10);
  border-bottom: 1px solid var(--slate-10);
  padding: 72px 0;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
}

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

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

.stat-number {
  display: block;
  font-family: var(--font-display);
  font-size: clamp(2.4rem, 4vw, 3.5rem);
  font-weight: 800;
  color: var(--cyan);
  line-height: 1;
  margin-bottom: 10px;
  letter-spacing: -0.02em;
}

.stat-label {
  font-size: 0.88rem;
  color: var(--slate-40);
  line-height: 1.4;
}

/* === Testimonials === */
.testimonials {
  background: var(--navy-800);
  border-top: 1px solid var(--slate-10);
}

.testimonials-header {
  text-align: center;
  max-width: 600px;
  margin: 0 auto 48px;
}

.testimonials-header p {
  margin-top: 16px;
}

.carousel-wrap {
  position: relative;
}

.testimonials-track {
  display: flex;
  gap: 24px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scrollbar-width: none;
  -ms-overflow-style: none;
  padding-bottom: 4px;
}

.testimonials-track::-webkit-scrollbar {
  display: none;
}

.testimonial-card {
  scroll-snap-align: start;
  flex-shrink: 0;
  width: calc(33.333% - 16px);
  background: rgba(13, 21, 40, 0.8);
  border: 1px solid var(--slate-10);
  border-radius: var(--radius-xl);
  padding: 32px;
  display: flex;
  flex-direction: column;
  gap: 20px;
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  transition: border-color 0.3s ease;
}

.testimonial-card:hover {
  border-color: var(--cyan-15);
}

.tc-stars {
  display: flex;
  gap: 3px;
}

.tc-stars svg {
  width: 16px;
  height: 16px;
  color: #FFD700;
  fill: #FFD700;
}

.tc-quote {
  font-size: 0.95rem;
  line-height: 1.75;
  color: var(--slate-70);
  flex: 1;
}

.tc-quote::before {
  content: '"';
  font-family: var(--font-display);
  font-size: 2rem;
  color: var(--cyan-20);
  line-height: 0;
  vertical-align: -0.4em;
  margin-right: 4px;
}

.tc-author {
  display: flex;
  align-items: center;
  gap: 12px;
  padding-top: 16px;
  border-top: 1px solid var(--slate-10);
}

.tc-avatar {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--cyan-20), var(--navy-500));
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 700;
  color: var(--cyan);
  flex-shrink: 0;
}

.tc-name {
  font-size: 0.88rem;
  font-weight: 700;
  color: var(--slate);
}

.tc-biz {
  font-size: 0.78rem;
  color: var(--slate-40);
}

.tc-metric {
  display: inline-block;
  background: var(--green-10);
  border: 1px solid rgba(0, 255, 148, 0.2);
  border-radius: var(--radius-full);
  padding: 3px 10px;
  font-size: 0.72rem;
  font-weight: 700;
  color: var(--green);
  margin-top: 4px;
}

.carousel-controls {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  margin-top: 32px;
}

.carousel-btn {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 1px solid var(--slate-20);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--slate-70);
  transition: all 0.2s ease;
  cursor: pointer;
}

.carousel-btn:hover {
  border-color: var(--cyan-40);
  color: var(--cyan);
  background: var(--cyan-10);
}

.carousel-btn svg {
  width: 18px;
  height: 18px;
}

/* === Final CTA === */
.final-cta {
  background: var(--navy);
  padding: 120px 0;
}

.final-cta-inner {
  text-align: center;
  max-width: 720px;
  margin: 0 auto;
}

.final-cta h2 {
  font-size: clamp(2rem, 4vw, 3rem);
  line-height: 1.2;
  margin-bottom: 20px;
}

.final-cta h2 em {
  font-style: normal;
  color: var(--cyan);
}

.final-cta .sub {
  font-size: 1.05rem;
  margin-bottom: 40px;
}

.final-cta-actions {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  flex-wrap: wrap;
}

.cta-trust {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 24px;
  margin-top: 24px;
  flex-wrap: wrap;
}

.cta-trust-item {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 0.82rem;
  color: var(--slate-40);
}

.cta-trust-item svg {
  width: 14px;
  height: 14px;
  color: var(--green);
}

/* === Footer === */
.footer {
  background: var(--navy-800);
  border-top: 1px solid var(--slate-10);
  padding: 72px 0 40px;
}

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

.footer-brand p {
  font-size: 0.9rem;
  color: var(--slate-40);
  margin-top: 16px;
  max-width: 280px;
  line-height: 1.7;
}

.footer-brand .nav-logo {
  font-size: 1rem;
}

.footer-col h5 {
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--slate-40);
  margin-bottom: 20px;
}

.footer-col ul {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer-col ul a {
  font-size: 0.9rem;
  color: var(--slate-70);
  transition: color 0.2s ease;
}

.footer-col ul a:hover {
  color: var(--cyan);
}

.footer-col .badge-orp {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: var(--cyan-10);
  border: 1px solid var(--cyan-15);
  border-radius: var(--radius-full);
  padding: 3px 10px;
  font-size: 0.72rem;
  font-weight: 600;
  color: var(--cyan);
  margin-left: 6px;
  vertical-align: middle;
}

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

.footer-bottom p {
  font-size: 0.82rem;
  color: var(--slate-40);
}

.footer-bottom-links {
  display: flex;
  gap: 24px;
}

.footer-bottom-links a {
  font-size: 0.82rem;
  color: var(--slate-40);
  transition: color 0.2s ease;
}

.footer-bottom-links a:hover {
  color: var(--slate-70);
}

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

.page-hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 800px;
  height: 400px;
  background: radial-gradient(ellipse, rgba(0, 212, 255, 0.07) 0%, transparent 70%);
  pointer-events: none;
}

.page-hero-inner {
  position: relative;
  z-index: 1;
  max-width: 700px;
  margin: 0 auto;
}

.page-hero h1 {
  margin-bottom: 20px;
}

.page-hero p {
  font-size: 1.1rem;
}

/* === About Page === */
.about-story {
  background: var(--navy-800);
  border-top: 1px solid var(--slate-10);
}

.about-story-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.about-story-content h2 {
  margin-bottom: 24px;
}

.about-story-content p + p {
  margin-top: 16px;
}

.about-visual {
  position: relative;
}

.about-card {
  background: rgba(13, 21, 40, 0.8);
  border: 1px solid var(--slate-10);
  border-radius: var(--radius-xl);
  padding: 40px;
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
}

.about-stat-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin-bottom: 24px;
}

.about-stat {
  text-align: center;
  padding: 20px;
  background: var(--cyan-10);
  border: 1px solid var(--cyan-15);
  border-radius: var(--radius);
}

.about-stat .num {
  display: block;
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 800;
  color: var(--cyan);
  line-height: 1;
  margin-bottom: 6px;
}

.about-stat .label {
  font-size: 0.78rem;
  color: var(--slate-40);
}

.values-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 64px;
}

.value-card {
  padding: 28px;
  background: rgba(13, 21, 40, 0.6);
  border: 1px solid var(--slate-10);
  border-radius: var(--radius-lg);
  transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

.value-card:hover {
  border-color: var(--cyan-15);
  box-shadow: var(--glow-sm);
}

.value-card h4 {
  margin-bottom: 10px;
}

.value-card p {
  font-size: 0.88rem;
}

/* === Services Page === */
.service-detail {
  padding: 100px 0;
  border-bottom: 1px solid var(--slate-10);
}

.service-detail:nth-child(even) {
  background: var(--navy-800);
}

.service-detail-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.service-detail-grid.reverse {
  direction: rtl;
}

.service-detail-grid.reverse > * {
  direction: ltr;
}

.service-detail-content {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.service-includes {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-top: 8px;
}

.include-item {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 0.9rem;
  color: var(--slate-70);
}

.include-item svg {
  width: 16px;
  height: 16px;
  color: var(--cyan);
  flex-shrink: 0;
  margin-top: 2px;
}

.service-visual-card {
  background: rgba(13, 21, 40, 0.8);
  border: 1px solid var(--cyan-15);
  border-radius: var(--radius-xl);
  padding: 40px;
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  box-shadow: var(--glow-sm), var(--shadow-card);
}

.svc-metric {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 14px 0;
  border-bottom: 1px solid var(--slate-10);
}

.svc-metric:last-child {
  border-bottom: none;
}

.svc-metric-label {
  font-size: 0.88rem;
  color: var(--slate-70);
}

.svc-metric-value {
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--cyan);
}

/* === Case Studies === */
.case-studies-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 32px;
}

.case-card {
  background: rgba(13, 21, 40, 0.8);
  border: 1px solid var(--slate-10);
  border-radius: var(--radius-xl);
  padding: 36px;
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  transition: border-color 0.3s ease, box-shadow 0.3s ease, transform 0.3s ease;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.case-card:hover {
  border-color: var(--cyan-15);
  box-shadow: var(--glow-sm), var(--shadow-card);
  transform: translateY(-4px);
}

.case-tag {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: var(--cyan-10);
  border: 1px solid var(--cyan-15);
  border-radius: var(--radius-full);
  padding: 4px 12px;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--cyan);
  width: fit-content;
}

.case-card h3 {
  font-size: 1.2rem;
  line-height: 1.3;
}

.case-card p {
  font-size: 0.9rem;
  line-height: 1.7;
  flex: 1;
}

.case-metrics {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  padding-top: 16px;
  border-top: 1px solid var(--slate-10);
}

.case-metric {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.case-metric .val {
  font-family: var(--font-display);
  font-size: 1.4rem;
  font-weight: 800;
  color: var(--green);
}

.case-metric .key {
  font-size: 0.75rem;
  color: var(--slate-40);
}

.case-quote {
  padding: 16px 20px;
  background: rgba(0, 212, 255, 0.04);
  border-left: 2px solid var(--cyan-40);
  border-radius: 0 var(--radius) var(--radius) 0;
}

.case-quote p {
  font-size: 0.88rem;
  font-style: italic;
  color: var(--slate-70);
}

.case-quote .case-author {
  font-size: 0.78rem;
  color: var(--slate-40);
  margin-top: 6px;
  font-style: normal;
}

/* === Contact Page === */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 64px;
  align-items: start;
}

.contact-info {
  display: flex;
  flex-direction: column;
  gap: 32px;
}

.contact-info h2 {
  font-size: 2rem;
  line-height: 1.2;
}

.contact-info p {
  font-size: 1rem;
  line-height: 1.75;
}

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

.contact-detail-icon {
  width: 40px;
  height: 40px;
  border-radius: var(--radius);
  background: var(--cyan-10);
  border: 1px solid var(--cyan-15);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.contact-detail-icon svg {
  width: 18px;
  height: 18px;
  color: var(--cyan);
}

.contact-detail-text strong {
  display: block;
  font-size: 0.88rem;
  color: var(--slate);
  margin-bottom: 2px;
}

.contact-detail-text span {
  font-size: 0.85rem;
  color: var(--slate-40);
}

.contact-expects {
  padding: 24px;
  background: var(--cyan-10);
  border: 1px solid var(--cyan-15);
  border-radius: var(--radius-lg);
}

.contact-expects h4 {
  margin-bottom: 16px;
  font-size: 0.95rem;
}

.contact-expects ul {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.contact-expects li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 0.88rem;
  color: var(--slate-70);
}

.contact-expects li svg {
  width: 14px;
  height: 14px;
  color: var(--cyan);
  flex-shrink: 0;
  margin-top: 2px;
}

/* === Forms === */
.form-card {
  background: rgba(13, 21, 40, 0.8);
  border: 1px solid var(--slate-10);
  border-radius: var(--radius-xl);
  padding: 40px;
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  box-shadow: var(--shadow-card);
}

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

.form-group label {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--slate-70);
}

.form-group input,
.form-group textarea,
.form-group select {
  width: 100%;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid var(--slate-20);
  border-radius: var(--radius);
  padding: 12px 16px;
  color: var(--slate);
  font-size: 0.95rem;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
  outline: none;
  appearance: none;
  -webkit-appearance: none;
}

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

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
  border-color: var(--cyan-40);
  box-shadow: 0 0 0 3px rgba(0, 212, 255, 0.1);
}

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

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

.form-submit {
  width: 100%;
  justify-content: center;
  padding: 16px;
  font-size: 1rem;
}

.form-note {
  text-align: center;
  font-size: 0.78rem;
  color: var(--slate-40);
  margin-top: 12px;
}

.form-success {
  display: none;
  text-align: center;
  padding: 32px;
}

.form-success svg {
  width: 48px;
  height: 48px;
  color: var(--green);
  margin: 0 auto 16px;
}

.form-success h3 {
  color: var(--green);
  margin-bottom: 8px;
}

/* === Divider === */
.divider {
  width: 60px;
  height: 2px;
  background: linear-gradient(90deg, var(--cyan), transparent);
  margin: 24px auto;
}

/* === Media Queries === */
@media (max-width: 1024px) {
  .services-grid {
    grid-template-columns: 1fr;
    max-width: 600px;
    margin: 0 auto;
  }

  .hero-inner {
    grid-template-columns: 1fr;
    gap: 48px;
  }

  .hero-visual {
    order: -1;
  }

  .funnel-wrap {
    max-width: 360px;
    margin: 0 auto;
  }

  .orp-inner {
    grid-template-columns: 1fr;
    gap: 48px;
  }

  .about-story-grid {
    grid-template-columns: 1fr;
    gap: 48px;
  }

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

  .footer-brand {
    grid-column: span 2;
  }
}

@media (max-width: 900px) {
  .problem-grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .problem-vs {
    flex-direction: row;
    justify-content: center;
  }

  .vs-line {
    width: 60px;
    height: 1px;
  }

  .hiw-steps {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .hiw-steps::before {
    display: none;
  }

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

  .stat-item:nth-child(2)::after {
    display: none;
  }

  .stat-item:nth-child(4)::after {
    display: none;
  }

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

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

  .case-studies-grid {
    grid-template-columns: 1fr;
  }

  .service-detail-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .service-detail-grid.reverse {
    direction: ltr;
  }

  .testimonial-card {
    width: calc(80vw - 48px);
  }
}

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

  .nav {
    top: 10px;
    left: 10px;
    right: 10px;
  }

  .nav-links,
  .nav-cta {
    display: none;
  }

  .menu-toggle {
    display: flex;
  }

  .section {
    padding: 72px 0;
  }

  h1 { font-size: clamp(2rem, 7vw, 3rem); }
  h2 { font-size: clamp(1.7rem, 5vw, 2.5rem); }

  .hero-inner {
    padding: 60px 0 80px;
    text-align: center;
  }

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

  .hero-sub {
    text-align: center;
  }

  .hero-trust {
    justify-content: center;
    flex-wrap: wrap;
    gap: 12px;
  }

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

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

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

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

  .footer-brand {
    grid-column: span 2;
  }

  .footer-bottom {
    flex-direction: column;
    text-align: center;
  }
}

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

  .hero-actions {
    flex-direction: column;
    width: 100%;
  }

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

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

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

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

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

  .footer-bottom-links {
    flex-wrap: wrap;
    justify-content: center;
    gap: 16px;
  }

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