/* ===================================================================
   CREAKOM BUSINESS SOLUTIONS – V3 HYBRID
   Light base (v2) + Dark services section (v1) + new content
   =================================================================== */

/* ---------- Custom Properties ---------- */
:root {
  --white: #ffffff;
  --off-white: #f8f9fc;
  --gray-50: #f3f4f8;
  --gray-100: #e8eaf0;
  --gray-200: #d1d5e0;
  --gray-400: #9098a9;
  --gray-600: #5a6178;
  --gray-800: #2d3142;
  --gray-900: #1a1d2e;
  --black: #0f1119;
  --blue: #2563eb;
  --blue-light: #3b82f6;
  --blue-soft: #eff4ff;
  --purple: #7c3aed;
  --purple-soft: #f3efff;
  --green: #059669;
  --green-soft: #ecfdf5;
  --orange: #ea580c;
  --warm-soft: #fff7ed;
  /* Layout */
  --radius: 16px;
  --radius-sm: 10px;
  --radius-xs: 6px;
  --shadow-sm: 0 1px 3px rgba(0,0,0,.06), 0 1px 2px rgba(0,0,0,.04);
  --shadow-md: 0 4px 20px rgba(0,0,0,.07);
  --shadow-lg: 0 12px 48px rgba(0,0,0,.1);
  --shadow-xl: 0 24px 64px rgba(0,0,0,.12);
  --font: 'Plus Jakarta Sans', system-ui, -apple-system, 'Segoe UI', Roboto, sans-serif;
  --wrap: 1180px;
  --hdr: 72px;
}

/* ---------- Reset ---------- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; scroll-padding-top: calc(var(--hdr) + 16px); }
body {
  font-family: var(--font); color: var(--gray-800); background: var(--white);
  line-height: 1.65; -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale; overflow-x: hidden;
}
img { 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: inherit; color: inherit; }

/* ---------- Utilities ---------- */
.wrap { max-width: var(--wrap); margin: 0 auto; padding: 0 24px; }
.wrap-sm { max-width: 780px; }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex; align-items: center; gap: 8px;
  font-weight: 600; font-size: 15px; border-radius: var(--radius-sm);
  padding: 13px 26px; transition: all .25s ease; white-space: nowrap;
  border: 1.5px solid transparent; line-height: 1;
}
.btn-dark { background: var(--gray-900); color: #fff; border-color: var(--gray-900); }
.btn-dark:hover { background: var(--black); box-shadow: var(--shadow-md); transform: translateY(-2px); }
.btn-outline { background: transparent; color: var(--gray-800); border-color: var(--gray-200); }
.btn-outline:hover { border-color: var(--gray-400); background: var(--gray-50); }
.btn-white { background: #fff; color: var(--gray-900); border-color: #fff; }
.btn-white:hover { background: var(--off-white); box-shadow: var(--shadow-md); transform: translateY(-2px); }
.btn-outline-white { background: transparent; color: #fff; border-color: rgba(255,255,255,.35); }
.btn-outline-white:hover { border-color: #fff; background: rgba(255,255,255,.1); }
.btn-sm { padding: 10px 20px; font-size: 14px; border-radius: 8px; }
.btn-lg { padding: 16px 32px; font-size: 16px; }
.btn-full { width: 100%; justify-content: center; }
.btn-block { display: block; width: 100%; text-align: center; padding: 16px; }

/* ---------- Label Tag ---------- */
.label-tag {
  display: inline-block; font-size: 12px; font-weight: 700;
  letter-spacing: .12em; text-transform: uppercase;
  color: var(--blue); margin-bottom: 12px;
}
.label-tag--bright { color: var(--dark-accent-bright); }

/* ---------- Section Head ---------- */
.sec-head { text-align: center; max-width: 640px; margin: 0 auto 56px; }
.sec-head h2 { font-size: clamp(26px, 3.5vw, 40px); font-weight: 800; line-height: 1.2; color: var(--gray-900); margin-bottom: 14px; }
.sec-head p { font-size: 17px; color: var(--gray-600); line-height: 1.7; }


.highlight { color: var(--blue); }

/* ===================================================================
   HEADER
   =================================================================== */
.header {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
  height: var(--hdr);
  background: rgba(255,255,255,.9);
  backdrop-filter: blur(16px); -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--gray-100);
  transition: box-shadow .3s;
}
.header.scrolled { box-shadow: var(--shadow-sm); }
.header > .wrap { height: 100%; display: flex; align-items: center; gap: 32px; }
.header-logo { flex-shrink: 0; }
.header-logo img { height: 34px; width: auto; }
.header-nav { flex: 1; display: flex; gap: 4px; }
.header-nav a {
  padding: 8px 14px; font-size: 14px; font-weight: 500;
  color: var(--gray-600); border-radius: 8px; transition: all .2s;
}
.header-nav a:hover { color: var(--gray-900); background: var(--gray-50); }
.header-right { display: flex; align-items: center; gap: 14px; }
.header-tel {
  display: flex; align-items: center; gap: 6px;
  font-size: 14px; font-weight: 500; color: var(--gray-600);
  transition: color .2s;
}
.header-tel:hover { color: var(--gray-900); }
.burger { display: none; }

/* ---- Mobile Drawer ---- */
.drawer {
  position: fixed; top: 0; right: 0; bottom: 0; z-index: 1100;
  width: 300px; background: #fff; box-shadow: var(--shadow-xl);
  padding: 80px 28px 28px; transform: translateX(100%);
  transition: transform .35s cubic-bezier(.4,0,.2,1);
}
.drawer.open { transform: translateX(0); }
.drawer-close { position: absolute; top: 20px; right: 20px; color: var(--gray-600); }
.drawer nav { display: flex; flex-direction: column; gap: 4px; margin-bottom: 24px; }
.drawer nav a {
  padding: 12px 16px; font-size: 17px; font-weight: 600;
  color: var(--gray-800); border-radius: 10px; transition: background .2s;
}
.drawer nav a:hover { background: var(--gray-50); }
.drawer-overlay {
  position: fixed; inset: 0; z-index: 1050;
  background: rgba(0,0,0,.25); opacity: 0; pointer-events: none;
  transition: opacity .3s;
}
.drawer-overlay.show { opacity: 1; pointer-events: all; }

@media (max-width: 900px) {
  .header-nav, .header-right { display: none; }
  .burger { display: block; }
}

/* ===================================================================
   HERO
   =================================================================== */
.hero {
  padding: calc(var(--hdr) + 72px) 0 80px;
  background: linear-gradient(180deg, var(--blue-soft) 0%, var(--white) 100%);
  overflow: hidden;
}
.hero-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 56px; align-items: center; }
.chip {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 6px 16px 6px 8px; border-radius: 999px;
  background: rgba(37,99,235,.08); border: 1px solid rgba(37,99,235,.15);
  font-size: 13px; font-weight: 600; color: var(--blue);
  margin-bottom: 24px;
}
.chip img { border-radius: 4px; }
.hero h1 {
  font-size: clamp(34px, 5vw, 56px); font-weight: 800;
  line-height: 1.1; color: var(--gray-900); margin-bottom: 22px;
  letter-spacing: -.02em;
}
.hero-lead {
  font-size: 18px; line-height: 1.7; color: var(--gray-600);
  max-width: 500px; margin-bottom: 32px;
}
.hero-btns { display: flex; flex-wrap: wrap; gap: 14px; }

/* ---- Hero Dash Card ---- */
.hero-visual { position: relative; }
.hero-card {
  background: #fff; border: 1px solid var(--gray-100);
  border-radius: var(--radius); box-shadow: var(--shadow-lg);
}
.hc-main { padding: 28px; }
.hc-header {
  display: flex; align-items: center; gap: 8px; margin-bottom: 20px;
  font-size: 13px; color: var(--gray-400); font-weight: 500;
}
.hc-dot { width: 8px; height: 8px; border-radius: 50%; }
.hc-dot.green { background: var(--green); }
.hc-label { font-size: 13px; color: var(--gray-400); }

/* 4-metric grid layout */
.hc-metrics-4 {
  display: grid; grid-template-columns: 1fr 1fr; gap: 14px 20px;
  margin-bottom: 24px;
}
.hc-metric { text-align: center; }
.hc-num { font-size: 26px; font-weight: 800; color: var(--gray-900); }
.hc-num small { font-size: 16px; font-weight: 700; color: var(--blue); }
.hc-desc { display: block; font-size: 12px; color: var(--gray-400); margin-top: 2px; }
.hc-bar-wrap { display: flex; flex-direction: column; gap: 8px; }
.hc-bar-label { font-size: 12px; font-weight: 600; color: var(--gray-600); }
.hc-bar { height: 8px; border-radius: 999px; background: var(--gray-100); overflow: hidden; }
.hc-bar-fill {
  height: 100%; border-radius: 999px; width: 0;
  background: var(--blue); transition: width 1.4s cubic-bezier(.4,0,.2,1);
}
.hc-bar-fill.accent2 { background: var(--purple); }
.hc-bar-fill.animated { width: var(--w); }

/* Floating mini-cards */
.hc-float {
  position: absolute; padding: 12px 18px; font-size: 14px; font-weight: 600;
  display: flex; align-items: center; gap: 8px;
  color: var(--gray-900); box-shadow: var(--shadow-md);
}
.hc-emoji { font-size: 20px; }
.hc-float-1 { top: -16px; right: -20px; animation: floatA 5s ease-in-out infinite; }
.hc-float-2 { bottom: 20px; left: -28px; animation: floatA 5s ease-in-out 1.5s infinite; }
@keyframes floatA { 0%,100% { transform: translateY(0); } 50% { transform: translateY(-8px); } }

/* ===================================================================
   LOGOS BAR (CUSTOMERS + PARTNERS)
   =================================================================== */
.logos-bar {
  padding: 36px 0; border-bottom: 1px solid var(--gray-100);
  background: var(--white);
}
.logos-bar--partner { border-top: 1px solid var(--gray-100); border-bottom: none; }
.logos-label {
  text-align: center; font-size: 12px; font-weight: 600;
  letter-spacing: .1em; text-transform: uppercase;
  color: var(--gray-400); margin-bottom: 20px;
}
.logos-scroll {
  overflow: hidden;
  mask-image: linear-gradient(90deg, transparent, #000 12%, #000 88%, transparent);
  -webkit-mask-image: linear-gradient(90deg, transparent, #000 12%, #000 88%, transparent);
}
.logos-track {
  display: flex; gap: 52px; align-items: center;
  animation: logoScroll 28s linear infinite; width: max-content;
}
.logos-track img { height: 28px; width: auto; opacity: .4; filter: grayscale(1); transition: opacity .3s; }
.logos-track img:hover { opacity: .75; }
@keyframes logoScroll { to { transform: translateX(-50%); } }

/* ===================================================================
   MISSION / INTRO
   =================================================================== */
.intro { padding: 96px 0 80px; text-align: center; }
.intro-heading {
  font-size: clamp(28px, 4vw, 44px); font-weight: 800;
  line-height: 1.2; color: var(--gray-900); margin-bottom: 18px;
}
.intro p { font-size: 17px; color: var(--gray-600); line-height: 1.8; max-width: 640px; margin: 0 auto; }

/* ===================================================================
   SERVICES
   =================================================================== */
.services { padding: 80px 0 100px; background: var(--off-white); }

.svc-grid {
  display: grid; grid-template-columns: 1fr 1fr; gap: 24px;
}

.svc-card {
  background: var(--white); border: 1px solid var(--gray-100);
  border-radius: var(--radius); padding: 32px;
  transition: all .3s ease; position: relative;
}
.svc-card:hover {
  border-color: var(--gray-200);
  box-shadow: var(--shadow-lg);
  transform: translateY(-4px);
}

.svc-top { display: flex; align-items: flex-start; gap: 14px; margin-bottom: 18px; }
.svc-icon {
  width: 48px; height: 48px; border-radius: 12px; flex-shrink: 0;
  display: grid; place-items: center;
}
.svc-icon.blue   { background: var(--blue-soft);   color: var(--blue); }
.svc-icon.green-bg { background: var(--green-soft); color: var(--green); }
.svc-icon.orange { background: var(--warm-soft);   color: var(--orange); }
.svc-icon.purple { background: var(--purple-soft); color: var(--purple); }

.svc-meta { display: flex; flex-direction: column; gap: 5px; padding-top: 2px; }
.svc-product {
  font-size: 11px; font-weight: 600; letter-spacing: .07em;
  text-transform: uppercase; color: var(--gray-400);
}
.svc-tag {
  display: inline-block; font-size: 12px; font-weight: 700;
  letter-spacing: .04em; text-transform: uppercase;
  color: var(--blue); background: var(--blue-soft);
  border: 1px solid rgba(37,99,235,.15);
  padding: 3px 10px; border-radius: 999px;
}
.svc-card h3 { font-size: 19px; font-weight: 700; color: var(--gray-900); margin-bottom: 10px; }
.svc-card > p { font-size: 15px; color: var(--gray-600); line-height: 1.65; margin-bottom: 18px; }

.check-list { display: flex; flex-direction: column; gap: 8px; }
.check-list li {
  font-size: 14px; color: var(--gray-600); padding-left: 22px; position: relative;
}
.check-list li::before {
  content: '✓'; position: absolute; left: 0; font-weight: 700; color: var(--blue);
}

/* ===================================================================
   TESTIMONIALS
   =================================================================== */
.testimonials { padding: 80px 0 100px; background: var(--white); }
.testi-row { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }

.testi-card {
  background: var(--white); border: 1px solid var(--gray-100);
  border-radius: var(--radius); padding: 28px;
  display: flex; flex-direction: column;
  transition: all .3s;
}
.testi-card:hover { border-color: var(--gray-200); box-shadow: var(--shadow-md); transform: translateY(-3px); }
.testi-top { display: flex; align-items: center; gap: 12px; margin-bottom: 16px; }
.testi-avatar {
  width: 42px; height: 42px; border-radius: 50%;
  background: var(--gray-900); color: #fff;
  font-weight: 700; font-size: 14px;
  display: grid; place-items: center; flex-shrink: 0;
}
.testi-top strong { display: block; font-size: 14px; color: var(--gray-900); }
.testi-top span { font-size: 12px; color: var(--gray-400); }
.testi-card blockquote {
  font-size: 14px; line-height: 1.7; color: var(--gray-600);
  font-style: italic; flex: 1; margin-bottom: 18px;
}
.testi-stars { color: #f59e0b; font-size: 16px; letter-spacing: 2px; }

/* ===================================================================
   PROCESS
   =================================================================== */
.process { padding: 80px 0 100px; background: var(--off-white); }
.steps-row {
  display: flex; align-items: flex-start; gap: 8px;
  justify-content: center; flex-wrap: wrap;
}
.step-card {
  flex: 1; min-width: 180px; max-width: 220px;
  background: #fff; border: 1px solid var(--gray-100);
  border-radius: var(--radius); padding: 28px 22px;
  text-align: center; transition: all .3s;
}
.step-card:hover { box-shadow: var(--shadow-md); transform: translateY(-3px); }
.step-no {
  font-size: 32px; font-weight: 800; color: var(--blue);
  opacity: .3; margin-bottom: 10px; line-height: 1;
}
.step-card h3 { font-size: 17px; font-weight: 700; color: var(--gray-900); margin-bottom: 8px; }
.step-card p { font-size: 14px; color: var(--gray-600); line-height: 1.6; }
.step-badge {
  display: inline-block; font-size: 10px; font-weight: 700;
  letter-spacing: .07em; text-transform: uppercase;
  color: var(--orange); background: var(--warm-soft);
  border: 1px solid rgba(234,88,12,.2);
  padding: 3px 9px; border-radius: 999px;
  margin-bottom: 8px;
}

/* Highlighted last step */
.step-card--highlight {
  background: var(--blue-soft);
  border-color: rgba(37,99,235,.18);
  box-shadow: var(--shadow-sm);
}
.step-card--highlight .step-no { opacity: .55; }
.step-card--highlight h3 { color: var(--blue); }
.step-card--highlight p { color: var(--gray-600); }

.step-arrow {
  display: flex; align-items: center; color: var(--gray-200);
  padding-top: 56px;
}

/* ===================================================================
   CTA BANNER
   =================================================================== */
.cta-banner { padding: 40px 0 100px; background: var(--white); }
.cta-box {
  display: flex; align-items: center; gap: 48px;
  padding: 56px; border-radius: var(--radius);
  background: var(--blue-soft);
  border: 1px solid rgba(37,99,235,.12);
}
.cta-text { flex: 1; }
.cta-text h2 { font-size: clamp(24px, 3vw, 36px); font-weight: 800; color: var(--gray-900); margin-bottom: 14px; line-height: 1.2; }
.cta-text p { font-size: 16px; line-height: 1.7; color: var(--gray-600); }
.cta-actions { display: flex; flex-direction: column; gap: 12px; flex-shrink: 0; }

/* ===================================================================
   CONTACT
   =================================================================== */
.contact { padding: 80px 0 100px; background: var(--off-white); }
.contact-split { display: grid; grid-template-columns: 1fr 1fr; gap: 56px; align-items: start; }

.contact-left h2 { font-size: clamp(24px, 3vw, 34px); font-weight: 800; color: var(--gray-900); margin-bottom: 14px; line-height: 1.2; }
.contact-left > p { font-size: 16px; color: var(--gray-600); line-height: 1.7; margin-bottom: 28px; }

.contact-items { display: flex; flex-direction: column; gap: 16px; margin-bottom: 28px; }
.ci { display: flex; align-items: flex-start; gap: 14px; }
.ci-icon {
  width: 38px; height: 38px; border-radius: 10px; flex-shrink: 0;
  background: var(--blue-soft); color: var(--blue);
  display: grid; place-items: center;
}
.ci a { color: var(--blue); font-weight: 500; transition: color .2s; }
.ci a:hover { color: var(--gray-900); }
.ci strong { color: var(--gray-900); }

.social-row { display: flex; gap: 10px; }
.social-row a {
  width: 38px; height: 38px; border-radius: 10px;
  background: var(--white); border: 1px solid var(--gray-100);
  display: grid; place-items: center; color: var(--gray-400);
  transition: all .2s;
}
.social-row a:hover { color: var(--gray-900); border-color: var(--gray-200); }

/* ---- Form ---- */
.contact-right { position: relative; }
.c-form {
  background: #fff; border: 1px solid var(--gray-100);
  border-radius: var(--radius); padding: 32px;
  box-shadow: var(--shadow-md);
}
.c-form h3 { font-size: 20px; font-weight: 700; color: var(--gray-900); margin-bottom: 20px; }
.f-group { margin-bottom: 16px; }
.f-group label { display: block; font-size: 13px; font-weight: 600; color: var(--gray-600); margin-bottom: 5px; }
.f-group input, .f-group select, .f-group textarea {
  width: 100%; padding: 11px 14px; border-radius: var(--radius-xs);
  border: 1px solid var(--gray-200); font-family: var(--font);
  font-size: 15px; color: var(--gray-900); background: #fff;
  transition: border-color .2s, box-shadow .2s; outline: none;
}
.f-group input:focus, .f-group select:focus, .f-group textarea:focus {
  border-color: var(--blue); box-shadow: 0 0 0 3px rgba(37,99,235,.1);
}
.f-group input::placeholder, .f-group textarea::placeholder { color: var(--gray-200); }
.f-group select { appearance: none; cursor: pointer; }
.f-group textarea { resize: vertical; min-height: 72px; }
.f-row { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.f-check { display: flex; align-items: flex-start; gap: 10px; margin-bottom: 18px; }
.f-check input[type="checkbox"] { width: 18px; height: 18px; margin-top: 2px; accent-color: var(--blue); cursor: pointer; flex-shrink: 0; }
.f-check label { font-size: 13px; color: var(--gray-600); cursor: pointer; }
.f-check a { color: var(--blue); text-decoration: underline; }

/* Validation errors */
.f-group .field-error { border-color: #ef4444 !important; }
.f-group .error-msg { font-size: 12px; color: #ef4444; margin-top: 4px; display: block; }

/* Success */
.form-ok {
  position: absolute; inset: 0;
  background: #fff; border: 1px solid var(--gray-100);
  border-radius: var(--radius); box-shadow: var(--shadow-md);
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  text-align: center; padding: 48px;
}
.form-ok[hidden] { display: none; }
.ok-check {
  width: 60px; height: 60px; border-radius: 50%;
  background: var(--green-soft); color: var(--green);
  font-size: 28px; font-weight: 700;
  display: grid; place-items: center; margin-bottom: 16px;
}
.form-ok h3 { font-size: 22px; font-weight: 700; color: var(--gray-900); margin-bottom: 8px; }
.form-ok p { font-size: 15px; color: var(--gray-600); }

/* ===================================================================
   FOOTER
   =================================================================== */
.footer { border-top: 1px solid var(--gray-100); padding: 56px 0 0; background: var(--white); }
.footer-grid { display: grid; grid-template-columns: 1.6fr 1fr 1fr 1fr; gap: 40px; margin-bottom: 40px; }
.footer-brand p { font-size: 14px; color: var(--gray-600); margin: 14px 0; line-height: 1.6; }
.footer-brand img:first-child { height: 32px; width: auto; }
.footer-msft { height: 26px; width: auto; opacity: .5; margin-top: 8px; }

.footer-col { display: flex; flex-direction: column; gap: 10px; }
.footer-col h4 { font-size: 13px; font-weight: 700; color: var(--gray-900); letter-spacing: .04em; margin-bottom: 4px; }
.footer-col a { font-size: 14px; color: var(--gray-600); transition: color .2s; }
.footer-col a:hover { color: var(--gray-900); }

.footer-bar {
  display: flex; align-items: center; justify-content: space-between;
  padding: 20px 0; border-top: 1px solid var(--gray-100);
  font-size: 13px; color: var(--gray-400);
}
.footer-social { display: flex; gap: 8px; }
.footer-social a {
  width: 32px; height: 32px; border-radius: 8px; border: 1px solid var(--gray-100);
  display: grid; place-items: center; color: var(--gray-400);
  transition: all .2s;
}
.footer-social a:hover { color: var(--gray-800); border-color: var(--gray-200); }

/* ===================================================================
   BACK TO TOP
   =================================================================== */
.to-top {
  position: fixed; bottom: 24px; right: 24px; z-index: 900;
  width: 44px; height: 44px; border-radius: 12px;
  background: var(--gray-900); color: #fff;
  display: grid; place-items: center;
  box-shadow: var(--shadow-md);
  opacity: 0; pointer-events: none;
  transform: translateY(10px); transition: all .3s;
}
.to-top.show { opacity: 1; pointer-events: all; transform: translateY(0); }
.to-top:hover { background: var(--black); box-shadow: var(--shadow-lg); }

/* ===================================================================
   SCROLL REVEAL ANIMATIONS
   =================================================================== */
[data-reveal] {
  opacity: 0; transform: translateY(20px);
  transition: opacity .65s cubic-bezier(.4,0,.2,1), transform .65s cubic-bezier(.4,0,.2,1);
}
[data-reveal].visible { opacity: 1; transform: translateY(0); }
[data-reveal][data-delay="200"] { transition-delay: .2s; }
[data-reveal][data-delay="400"] { transition-delay: .4s; }

/* ===================================================================
   RESPONSIVE
   =================================================================== */
@media (max-width: 1024px) {
  .hero-grid { grid-template-columns: 1fr; text-align: center; }
  .hero-lead { margin-left: auto; margin-right: auto; }
  .hero-btns { justify-content: center; }
  .hero-visual { max-width: 460px; margin: 0 auto; }
  .cta-box { flex-direction: column; text-align: center; }
  .cta-actions { flex-direction: row; justify-content: center; }
  .contact-split { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 900px) {
  .svc-grid { grid-template-columns: 1fr; }
  .testi-row { grid-template-columns: 1fr; }
}

@media (max-width: 768px) {
  :root { --hdr: 64px; }
  .hero { padding-top: calc(var(--hdr) + 48px); padding-bottom: 56px; }
  .steps-row { flex-direction: column; align-items: center; }
  .step-arrow { transform: rotate(90deg); padding: 0; }
  .step-card { max-width: 100%; }
  .cta-box { padding: 36px 24px; }
  .cta-actions { flex-direction: column; width: 100%; }
  .f-row { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; gap: 24px; }
  .footer-bar { flex-direction: column; gap: 12px; text-align: center; }

}

@media (max-width: 480px) {
  .wrap { padding: 0 16px; }
  .hero-btns { flex-direction: column; }
  .hero-btns .btn { width: 100%; justify-content: center; }
  .hc-float-1, .hc-float-2 { display: none; }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation-duration: .01ms !important; transition-duration: .01ms !important; }
  html { scroll-behavior: auto; }
}
