/* ─── RESET & BASE ─── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --bg:        #ffffff;
  --bg-2:      #f8f9fc;
  --bg-card:   #ffffff;
  --border:    #e8eaf0;
  --border-h:  #c9cde0;
  --text:      #0f1117;
  --text-muted:#6b7280;
  --accent:    #6366f1;
  --accent-2:  #8b5cf6;
  --shadow-sm: 0 1px 4px rgba(0,0,0,0.06), 0 4px 16px rgba(0,0,0,0.04);
  --shadow-md: 0 4px 20px rgba(0,0,0,0.08), 0 8px 40px rgba(0,0,0,0.05);
  --radius:    16px;
  --radius-sm: 10px;
  --transition: 0.25s cubic-bezier(0.4,0,0.2,1);
}

html { scroll-behavior: smooth; }

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

::selection { background: rgba(99,102,241,0.15); }
::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: var(--bg-2); }
::-webkit-scrollbar-thumb { background: #d1d5db; border-radius: 99px; }

.container { max-width: 1200px; margin: 0 auto; padding: 0 24px; }

/* ─── TYPOGRAPHY ─── */
.gradient-text {
  background: linear-gradient(135deg, #6366f1 0%, #8b5cf6 50%, #06b6d4 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.section-label {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 16px;
}
.section-label::before {
  content: '';
  width: 20px; height: 2px;
  background: var(--accent);
  border-radius: 2px;
}

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

.section-sub {
  font-size: 17px;
  color: var(--text-muted);
  max-width: 520px;
  line-height: 1.7;
}

.section-header { text-align: center; margin-bottom: 64px; }
.section-header .section-label { justify-content: center; }
.section-header .section-sub { margin: 0 auto; }

.section { padding: 112px 0; }

/* ─── BUTTONS ─── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 24px;
  border-radius: 99px;
  font-size: 15px;
  font-weight: 600;
  text-decoration: none;
  cursor: pointer;
  border: none;
  transition: var(--transition);
  white-space: nowrap;
  font-family: inherit;
}
.btn-primary {
  background: linear-gradient(135deg, #6366f1, #8b5cf6);
  color: #fff;
  box-shadow: 0 2px 12px rgba(99,102,241,0.3);
}
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 6px 24px rgba(99,102,241,0.4); }

.btn-ghost {
  background: rgba(99,102,241,0.06);
  color: var(--accent);
  border: 1px solid rgba(99,102,241,0.2);
}
.btn-ghost:hover { background: rgba(99,102,241,0.1); transform: translateY(-2px); }

.btn-outline {
  background: transparent;
  color: var(--text);
  border: 1.5px solid var(--border-h);
}
.btn-outline:hover { background: var(--bg-2); transform: translateY(-2px); }

.btn-sm  { padding: 9px 18px; font-size: 13px; }
.btn-lg  { padding: 16px 32px; font-size: 16px; }
.btn-full { width: 100%; justify-content: center; }

/* ─── NAV ─── */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  padding: 16px 0;
  transition: var(--transition);
}
.nav.scrolled {
  background: rgba(255,255,255,0.92);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border);
  padding: 12px 0;
  box-shadow: 0 1px 12px rgba(0,0,0,0.06);
}
.nav-inner {
  max-width: 1200px; margin: 0 auto; padding: 0 24px;
  display: flex; align-items: center; gap: 40px;
}
.logo {
  display: flex; align-items: center; gap: 9px;
  text-decoration: none; flex-shrink: 0;
}
.logo-mark {
  width: 36px; height: 36px;
  background: linear-gradient(135deg, #6366f1, #8b5cf6);
  border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  font-size: 13px; font-weight: 900; color: #fff; letter-spacing: -0.5px;
}
.logo-text { font-size: 18px; font-weight: 700; color: var(--text); }

.nav-links {
  display: flex; align-items: center; gap: 32px;
  list-style: none; margin-left: auto;
}
.nav-links a {
  font-size: 14px; font-weight: 500; color: var(--text-muted);
  text-decoration: none; transition: color var(--transition);
}
.nav-links a:hover { color: var(--text); }

.hamburger {
  display: none; flex-direction: column; gap: 5px;
  cursor: pointer; background: none; border: none; padding: 4px; margin-left: auto;
}
.hamburger span {
  display: block; width: 24px; height: 2px;
  background: var(--text); border-radius: 2px; transition: var(--transition);
}
.hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ─── HERO ─── */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex; align-items: center; justify-content: center;
  overflow: hidden;
  padding: 140px 24px 100px;
  background: linear-gradient(160deg, #ffffff 0%, #f5f3ff 40%, #eff6ff 70%, #f0fdfc 100%);
}
.hero-bg { position: absolute; inset: 0; z-index: 0; pointer-events: none; }

.orb {
  position: absolute; border-radius: 50%;
  filter: blur(70px); animation: float 9s ease-in-out infinite;
}
.orb-1 {
  width: 500px; height: 500px;
  background: radial-gradient(circle, rgba(99,102,241,0.12) 0%, transparent 70%);
  top: -150px; left: -80px;
}
.orb-2 {
  width: 420px; height: 420px;
  background: radial-gradient(circle, rgba(139,92,246,0.1) 0%, transparent 70%);
  top: 80px; right: -120px; animation-delay: -3s;
}
.orb-3 {
  width: 350px; height: 350px;
  background: radial-gradient(circle, rgba(6,182,212,0.08) 0%, transparent 70%);
  bottom: -60px; left: 35%; animation-delay: -6s;
}
@keyframes float {
  0%, 100% { transform: translateY(0) scale(1); }
  50%       { transform: translateY(-24px) scale(1.04); }
}

.hero-content {
  position: relative; z-index: 1;
  text-align: center; max-width: 800px;
  animation: fadeUp 0.7s ease both;
}
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(28px); }
  to   { opacity: 1; transform: translateY(0); }
}

.hero-title {
  font-size: clamp(40px, 6vw, 74px);
  font-weight: 900; line-height: 1.05;
  letter-spacing: -0.03em; margin-bottom: 24px;
}
.hero-sub {
  font-size: 18px; color: var(--text-muted);
  line-height: 1.7; margin-bottom: 40px;
}
.hero-actions {
  display: flex; align-items: center; justify-content: center;
  gap: 14px; flex-wrap: wrap; margin-bottom: 36px;
}

.hero-trust {
  display: flex; align-items: center; justify-content: center;
  gap: 28px; flex-wrap: wrap;
}
.trust-item {
  display: flex; align-items: center; gap: 7px;
  font-size: 13px; font-weight: 500; color: var(--text-muted);
}

.hero-scroll {
  position: absolute; bottom: 40px; left: 50%;
  transform: translateX(-50%); z-index: 1;
}
.scroll-indicator {
  width: 28px; height: 44px;
  border: 2px solid rgba(99,102,241,0.3);
  border-radius: 99px;
  display: flex; justify-content: center; padding-top: 6px;
}
.scroll-dot {
  width: 4px; height: 8px; background: var(--accent);
  border-radius: 99px; opacity: 0.5;
  animation: scrollDown 2s ease-in-out infinite;
}
@keyframes scrollDown {
  0%  { transform: translateY(0); opacity: 0.5; }
  80% { transform: translateY(16px); opacity: 0; }
  100%{ transform: translateY(0); opacity: 0; }
}

/* ─── HERO OFFER BANNER ─── */
.hero-offer-banner {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 10px 18px;
  background: rgba(99,102,241,0.07);
  border: 1px solid rgba(99,102,241,0.22);
  border-radius: 99px;
  font-size: 14px;
  color: var(--text);
  margin-bottom: 28px;
  flex-wrap: wrap;
  justify-content: center;
}
.offer-icon { display: flex; align-items: center; flex-shrink: 0; }
.hero-offer-banner strong { color: var(--accent); }
.offer-learn {
  color: var(--accent);
  font-weight: 600;
  font-size: 13px;
  text-decoration: none;
  white-space: nowrap;
}
.offer-learn:hover { text-decoration: underline; }

/* ─── RISK-FREE SECTION ─── */
.risk-section { background: var(--bg-2); }

.risk-grid {
  display: flex;
  align-items: center;
  gap: 0;
  margin-bottom: 56px;
}

.risk-step {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 40px 32px;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
}
.risk-step:hover {
  border-color: rgba(99,102,241,0.25);
  box-shadow: var(--shadow-md);
  transform: translateY(-4px);
}

.risk-icon {
  width: 60px; height: 60px;
  border-radius: 16px;
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 20px;
  transition: var(--transition);
}
.risk-icon.free    { background: rgba(99,102,241,0.1); color: #6366f1; border: 1px solid rgba(99,102,241,0.2); }
.risk-icon.preview { background: rgba(6,182,212,0.1);  color: #06b6d4; border: 1px solid rgba(6,182,212,0.2); }
.risk-icon.pay     { background: rgba(16,185,129,0.1); color: #10b981; border: 1px solid rgba(16,185,129,0.2); }
.risk-step:hover .risk-icon { transform: scale(1.1); }

.risk-step h4 { font-size: 17px; font-weight: 700; margin-bottom: 12px; letter-spacing: -0.01em; }
.risk-step p  { font-size: 14px; color: var(--text-muted); line-height: 1.7; }

.risk-arrow {
  flex-shrink: 0;
  width: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #c4c9e0;
}

.risk-cta {
  text-align: center;
}
.risk-note {
  margin-top: 14px;
  font-size: 13px;
  color: var(--text-muted);
}

/* ─── SERVICES ─── */
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.service-card {
  position: relative; padding: 36px;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
}
.service-card:hover {
  border-color: rgba(99,102,241,0.25);
  box-shadow: var(--shadow-md);
  transform: translateY(-5px);
}
.service-card.featured {
  border-color: rgba(99,102,241,0.35);
  box-shadow: 0 4px 24px rgba(99,102,241,0.14), 0 1px 4px rgba(0,0,0,0.06);
}
.service-card.featured:hover {
  box-shadow: 0 10px 40px rgba(99,102,241,0.22), 0 4px 20px rgba(0,0,0,0.06);
}

.service-badge {
  display: inline-block; padding: 4px 12px;
  background: linear-gradient(135deg, #6366f1, #8b5cf6);
  border-radius: 99px; font-size: 11px; font-weight: 700;
  letter-spacing: 0.06em; text-transform: uppercase; color: #fff;
  margin-bottom: 20px;
}
.service-icon { width: 52px; height: 52px; color: var(--accent); margin-bottom: 20px; }
.service-num {
  font-size: 11px; font-weight: 700; letter-spacing: 0.1em;
  color: rgba(99,102,241,0.4); margin-bottom: 10px;
}
.service-card h3 {
  font-size: 21px; font-weight: 700; margin-bottom: 12px;
  letter-spacing: -0.01em;
}
.service-card p { font-size: 14px; color: var(--text-muted); line-height: 1.7; margin-bottom: 24px; }

.service-features { list-style: none; margin-bottom: 28px; }
.service-features li {
  font-size: 13px; color: var(--text-muted);
  padding: 7px 0; border-bottom: 1px solid var(--border);
  display: flex; align-items: center; gap: 8px;
}
.service-features li::before {
  content: ''; width: 5px; height: 5px;
  background: var(--accent); border-radius: 50%; flex-shrink: 0;
}
.service-cta {
  display: inline-flex; align-items: center; gap: 6px;
  font-size: 13px; font-weight: 600; color: var(--accent);
  text-decoration: none; transition: gap var(--transition);
  cursor: pointer; background: none; border: none; font-family: inherit;
}
.service-cta:hover { gap: 10px; }

/* ─── WHY US ─── */
.why-section { background: var(--bg-2); }
.why-grid {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 80px; align-items: center;
}
.why-left .section-sub { margin-bottom: 36px; }
.why-right { display: flex; flex-direction: column; gap: 4px; }

.why-item {
  display: flex; align-items: flex-start; gap: 18px;
  padding: 22px; border-radius: var(--radius-sm); transition: var(--transition);
}
.why-item:hover { background: #fff; box-shadow: var(--shadow-sm); }

.why-icon {
  width: 44px; height: 44px;
  background: rgba(99,102,241,0.08); border: 1px solid rgba(99,102,241,0.15);
  border-radius: 12px; display: flex; align-items: center; justify-content: center;
  color: var(--accent); flex-shrink: 0; transition: var(--transition);
}
.why-item:hover .why-icon { background: rgba(99,102,241,0.14); transform: scale(1.07); }
.why-item h4 { font-size: 15px; font-weight: 700; margin-bottom: 4px; }
.why-item p  { font-size: 14px; color: var(--text-muted); line-height: 1.6; }

/* ─── PROCESS ─── */
.process-section { background: var(--bg); }

.process-grid {
  display: flex;
  align-items: flex-start;
  gap: 0;
}

.process-step {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 36px 28px;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
  position: relative;
}
.process-step:hover {
  border-color: rgba(99,102,241,0.25);
  box-shadow: var(--shadow-md);
  transform: translateY(-4px);
}

.step-number {
  font-size: 11px; font-weight: 800; letter-spacing: 0.12em;
  color: rgba(99,102,241,0.35); margin-bottom: 16px;
  text-transform: uppercase;
}
.step-icon {
  width: 56px; height: 56px;
  background: rgba(99,102,241,0.07);
  border: 1px solid rgba(99,102,241,0.14);
  border-radius: 14px;
  display: flex; align-items: center; justify-content: center;
  color: var(--accent); margin-bottom: 20px;
  transition: var(--transition);
}
.process-step:hover .step-icon {
  background: rgba(99,102,241,0.12);
  transform: scale(1.07);
}

.process-step h4 { font-size: 16px; font-weight: 700; margin-bottom: 10px; }
.process-step p  { font-size: 13px; color: var(--text-muted); line-height: 1.65; }

.process-connector {
  flex-shrink: 0;
  width: 32px;
  height: 2px;
  background: linear-gradient(90deg, rgba(99,102,241,0.3), rgba(139,92,246,0.3));
  margin-top: 72px;
  position: relative;
}
.process-connector::after {
  content: '';
  position: absolute;
  right: -5px; top: -4px;
  border: 5px solid transparent;
  border-left-color: rgba(139,92,246,0.4);
}

/* ─── CTA ─── */
.cta-section {
  position: relative; padding: 120px 0; overflow: hidden;
  background: linear-gradient(135deg, #f5f3ff 0%, #eff6ff 50%, #f0fdfc 100%);
}
.cta-bg { position: absolute; inset: 0; pointer-events: none; }
.orb-cta-1 {
  position: absolute; width: 450px; height: 450px;
  background: radial-gradient(circle, rgba(99,102,241,0.1) 0%, transparent 70%);
  left: -100px; top: 50%; transform: translateY(-50%);
  border-radius: 50%; filter: blur(50px);
}
.orb-cta-2 {
  position: absolute; width: 380px; height: 380px;
  background: radial-gradient(circle, rgba(6,182,212,0.08) 0%, transparent 70%);
  right: -80px; top: 50%; transform: translateY(-50%);
  border-radius: 50%; filter: blur(50px);
}
.cta-inner { position: relative; text-align: center; }
.cta-title {
  font-size: clamp(36px, 5vw, 64px); font-weight: 900;
  letter-spacing: -0.03em; line-height: 1.05; margin-bottom: 20px;
}
.cta-sub {
  font-size: 18px; color: var(--text-muted);
  max-width: 440px; margin: 0 auto 44px; line-height: 1.7;
}
.cta-actions {
  display: flex; align-items: center; justify-content: center;
  gap: 16px; flex-wrap: wrap;
}

/* ─── CONTACT ─── */
.contact-grid {
  display: grid; grid-template-columns: 1fr 1.2fr;
  gap: 80px; align-items: start;
}
.contact-left .section-title { font-size: clamp(28px, 3.5vw, 42px); }
.contact-left .section-sub   { margin-bottom: 36px; }

.contact-info { display: flex; flex-direction: column; gap: 14px; margin-bottom: 28px; }
.contact-item {
  display: flex; align-items: center; gap: 12px;
  font-size: 14px; color: var(--text-muted);
}
.contact-item a { color: var(--text-muted); text-decoration: none; }
.contact-item a:hover { color: var(--accent); }

.contact-icon {
  width: 36px; height: 36px;
  background: rgba(99,102,241,0.07); border: 1px solid rgba(99,102,241,0.15);
  border-radius: 10px; display: flex; align-items: center; justify-content: center;
  color: var(--accent); flex-shrink: 0;
}

.calendly-placeholder {
  display: flex; align-items: center; gap: 14px;
  padding: 18px 20px; margin-bottom: 16px;
  background: rgba(99,102,241,0.05); border: 1px solid rgba(99,102,241,0.18);
  border-radius: var(--radius-sm); transition: var(--transition);
}
.calendly-placeholder:hover {
  background: rgba(99,102,241,0.09);
  border-color: rgba(99,102,241,0.3);
  transform: translateY(-1px);
  box-shadow: var(--shadow-sm);
}
.calendly-icon { color: var(--accent); flex-shrink: 0; }
.calendly-title { font-size: 13px; font-weight: 700; margin-bottom: 3px; }
.calendly-link  { font-size: 13px; color: var(--accent); font-weight: 500; }

.availability-note {
  display: flex; align-items: center; gap: 7px;
  font-size: 12px; color: var(--text-muted);
  padding: 10px 14px;
  background: var(--bg-2);
  border-radius: var(--radius-sm);
  border: 1px solid var(--border);
}
.availability-note svg { flex-shrink: 0; color: var(--accent); }

/* ─── FORM ─── */
.contact-form {
  background: var(--bg-card); border: 1px solid var(--border);
  border-radius: var(--radius); padding: 36px; box-shadow: var(--shadow-sm);
}
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-group { display: flex; flex-direction: column; gap: 7px; margin-bottom: 16px; }
label { font-size: 13px; font-weight: 600; color: var(--text); }

input, select, textarea {
  background: var(--bg-2); border: 1px solid var(--border);
  border-radius: var(--radius-sm); padding: 11px 14px;
  font-size: 14px; color: var(--text); font-family: inherit;
  transition: var(--transition); outline: none; width: 100%;
  appearance: none; -webkit-appearance: none;
}
input::placeholder, textarea::placeholder { color: #9ca3af; }
input:focus, select:focus, textarea:focus {
  border-color: var(--accent); background: #fff;
  box-shadow: 0 0 0 3px rgba(99,102,241,0.1);
}
select {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12' fill='none'%3E%3Cpath d='M2 4l4 4 4-4' stroke='%236b7280' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat; background-position: right 14px center;
  background-color: var(--bg-2); padding-right: 36px;
}
select option { background: #fff; color: var(--text); }
textarea { resize: vertical; min-height: 120px; }

.form-success {
  display: none; align-items: center; gap: 10px; margin-top: 16px;
  padding: 14px 18px;
  background: rgba(16,185,129,0.08); border: 1px solid rgba(16,185,129,0.2);
  border-radius: var(--radius-sm); font-size: 14px; color: #059669; font-weight: 500;
}
.form-success.show { display: flex; animation: fadeUp 0.4s ease both; }

/* ─── FOOTER ─── */
.footer { background: var(--bg-2); border-top: 1px solid var(--border); padding: 72px 0 0; }
.footer-top {
  display: grid; grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 60px; margin-bottom: 56px;
}
.footer-brand .logo { margin-bottom: 14px; display: inline-flex; }
.footer-brand p {
  font-size: 14px; color: var(--text-muted); line-height: 1.7;
  max-width: 280px; margin-bottom: 24px;
}
.social-links { display: flex; gap: 10px; }
.social-link {
  width: 36px; height: 36px; background: var(--bg-card);
  border: 1px solid var(--border); border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  color: var(--text-muted); text-decoration: none; transition: var(--transition);
}
.social-link:hover {
  background: rgba(99,102,241,0.06); border-color: rgba(99,102,241,0.2);
  color: var(--accent); transform: translateY(-2px);
}
.footer-links-group h4 {
  font-size: 12px; font-weight: 700; text-transform: uppercase;
  letter-spacing: 0.08em; color: #9ca3af; margin-bottom: 18px;
}
.footer-links-group ul { list-style: none; }
.footer-links-group li { margin-bottom: 12px; }
.footer-links-group a {
  font-size: 14px; color: var(--text-muted); text-decoration: none;
  transition: color var(--transition);
}
.footer-links-group a:hover { color: var(--text); }
.footer-bottom {
  border-top: 1px solid var(--border); padding: 22px 0;
  display: flex; align-items: center; justify-content: space-between;
  flex-wrap: wrap; gap: 16px;
}
.footer-bottom p { font-size: 13px; color: #9ca3af; }
.footer-legal { display: flex; gap: 24px; }
.footer-legal a { font-size: 13px; color: #9ca3af; text-decoration: none; transition: color var(--transition); }
.footer-legal a:hover { color: var(--text-muted); }

/* ─── SCROLL REVEAL ─── */
.reveal { opacity: 0; transform: translateY(20px); transition: opacity 0.6s ease, transform 0.6s ease; }
.reveal.visible { opacity: 1; transform: translateY(0); }
.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }

/* ─── RESPONSIVE ─── */
@media (max-width: 1024px) {
  .services-grid { grid-template-columns: 1fr 1fr; }
  .services-grid .service-card:last-child { grid-column: span 2; }
  .process-grid { flex-wrap: wrap; justify-content: center; gap: 16px; }
  .process-connector { display: none; }
  .process-step { flex: 1 1 calc(50% - 16px); min-width: 200px; }
  .risk-grid { flex-wrap: wrap; gap: 16px; }
  .risk-arrow { display: none; }
  .risk-step { flex: 1 1 calc(50% - 16px); }
  .footer-top { grid-template-columns: 1fr 1fr; gap: 40px; }
  .footer-brand { grid-column: span 2; }
}

@media (max-width: 768px) {
  .section { padding: 80px 0; }
  .nav-links {
    display: none; position: absolute;
    top: 100%; left: 0; right: 0;
    background: rgba(255,255,255,0.97); backdrop-filter: blur(20px);
    flex-direction: column; padding: 24px; gap: 20px;
    border-bottom: 1px solid var(--border); box-shadow: var(--shadow-md);
  }
  .nav-links.open { display: flex; }
  .hamburger { display: flex; }
  .nav .btn-sm { display: none; }

  .services-grid { grid-template-columns: 1fr; }
  .services-grid .service-card:last-child { grid-column: span 1; }
  .why-grid { grid-template-columns: 1fr; gap: 48px; }
  .process-step { flex: 1 1 100%; }
  .risk-step { flex: 1 1 100%; }
  .contact-grid { grid-template-columns: 1fr; gap: 48px; }
  .form-row { grid-template-columns: 1fr; }
  .footer-top { grid-template-columns: 1fr 1fr; }
  .footer-brand { grid-column: span 2; }
  .footer-bottom { flex-direction: column; text-align: center; }
  .hero-trust { gap: 16px; }
}

@media (max-width: 480px) {
  .hero-title { font-size: 36px; }
  .hero-actions { flex-direction: column; align-items: stretch; }
  .hero-actions .btn { justify-content: center; }
  .cta-actions { flex-direction: column; align-items: center; }
  .footer-top { grid-template-columns: 1fr; }
  .footer-brand { grid-column: span 1; }
  .hero-trust { flex-direction: column; align-items: center; }
}
