/* ==============================
   D SQUARE SOLUTION
   Modern responsive static site
   ============================== */

:root {
  --purple: #4d075d;
  --purple-dark: #26002f;
  --purple-light: #7a168b;
  --orange: #e48a08;
  --orange-light: #f6ad2f;
  --ink: #20202a;
  --muted: #687080;
  --white: #ffffff;
  --off-white: #fbfafc;
  --line: #e9e5ec;
  --shadow: 0 18px 50px rgba(48, 4, 57, .10);
  --radius: 22px;
  --container: 1180px;
}

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

html { scroll-behavior: smooth; scroll-padding-top: 80px; }

body {
  font-family: "Inter", sans-serif;
  color: var(--ink);
  background: var(--white);
  overflow-x: hidden;
  line-height: 1.7;
}

body.menu-open { overflow: hidden; }

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

button, input, select, textarea { font: inherit; }

.container {
  width: min(calc(100% - 40px), var(--container));
  margin-inline: auto;
}

.section {
  padding: 110px 0;
  position: relative;
}

.bg-orb {
  position: fixed;
  width: 420px;
  height: 420px;
  border-radius: 50%;
  filter: blur(90px);
  pointer-events: none;
  opacity: .11;
  z-index: -1;
}

.orb-one { background: #8a1c9e; top: 15%; right: -260px; }
.orb-two { background: #f2a21b; bottom: 10%; left: -300px; }

.header {
  position: fixed;
  z-index: 1000;
  top: 0;
  width: 100%;
  transition: .3s ease;
  border-bottom: 1px solid transparent;
}

.header.scrolled {
  background: rgba(255,255,255,.92);
  backdrop-filter: blur(18px);
  box-shadow: 0 5px 25px rgba(0,0,0,.06);
  border-color: var(--line);
}

.nav-wrap {
  min-height: 82px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 11px;
  color: var(--purple);
}

.brand > span:last-child {
  display: flex;
  flex-direction: column;
  line-height: 1;
}

.brand strong {
  font-family: "Outfit", sans-serif;
  letter-spacing: 2px;
  font-size: 17px;
}

.brand small {
  letter-spacing: 2.8px;
  font-size: 8px;
  margin-top: 4px;
  color: #6e6b76;
}

.brand-mark {
  width: 39px;
  height: 39px;
  background: var(--purple);
  border-radius: 8px 2px 8px 2px;
  position: relative;
  overflow: hidden;
}

.brand-mark::before,
.brand-mark::after {
  content: "";
  position: absolute;
  background: white;
  opacity: .9;
}

.brand-mark::before {
  width: 5px;
  height: 42px;
  left: 11px;
  top: -4px;
  box-shadow: 9px 0 0 white;
}

.brand-mark::after {
  width: 26px;
  height: 5px;
  right: -2px;
  top: 10px;
  box-shadow: 0 9px 0 white;
}

.circuit {
  position: absolute;
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: var(--orange);
  z-index: 2;
}
.c1 { left: 6px; bottom: 7px; }
.c2 { left: 15px; bottom: 4px; }
.c3 { right: 5px; top: 25px; }
.c4 { right: 8px; top: 7px; }

.nav { display: flex; align-items: center; gap: 30px; }
.nav a { font-size: 13px; font-weight: 600; color: #46434d; transition: .25s; }
.nav a:hover { color: var(--purple); }
.nav-cta {
  color: white !important;
  background: var(--purple);
  padding: 11px 19px;
  border-radius: 50px;
}
.nav-cta:hover { background: var(--orange); }

.menu-toggle { display: none; background: none; border: 0; cursor: pointer; }
.menu-toggle span { display: block; width: 25px; height: 2px; background: var(--purple); margin: 5px; transition: .3s; }

/* Hero */
.hero {
  min-height: 760px;
  display: flex;
  align-items: center;
  padding-top: 150px;
  overflow: hidden;
  background:
    radial-gradient(circle at 80% 45%, rgba(114, 13, 132, .08), transparent 28%),
    linear-gradient(180deg, #fff, #fcfaff);
}

.hero-grid {
  position: absolute;
  inset: 0;
  opacity: .35;
  background-image: linear-gradient(rgba(77,7,93,.035) 1px, transparent 1px),
                    linear-gradient(90deg, rgba(77,7,93,.035) 1px, transparent 1px);
  background-size: 60px 60px;
  mask-image: linear-gradient(to bottom, black, transparent 90%);
}

.hero-content {
  display: grid;
  grid-template-columns: 1.02fr .98fr;
  align-items: center;
  gap: 70px;
}

.eyebrow, .section-tag {
  color: var(--orange);
  font-size: 11px;
  letter-spacing: 2.5px;
  font-weight: 800;
}

.eyebrow { display: flex; align-items: center; gap: 9px; margin-bottom: 20px; }
.eyebrow span { width: 25px; height: 2px; background: var(--orange); }

.hero h1 {
  font-family: "Outfit", sans-serif;
  font-size: clamp(45px, 5.3vw, 76px);
  line-height: 1.02;
  letter-spacing: -2.5px;
  color: var(--purple-dark);
}

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

.hero-text {
  max-width: 610px;
  color: var(--muted);
  font-size: 16px;
  margin: 26px 0 32px;
}

.hero-actions { display: flex; gap: 12px; flex-wrap: wrap; }

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  border-radius: 50px;
  padding: 14px 23px;
  font-size: 13px;
  font-weight: 700;
  transition: .3s ease;
  border: 1px solid transparent;
  cursor: pointer;
}

.btn span { font-size: 17px; transition: .25s; }
.btn:hover span { transform: translateX(4px); }

.btn-primary {
  background: var(--purple);
  color: white;
  box-shadow: 0 10px 25px rgba(77,7,93,.22);
}
.btn-primary:hover { background: var(--orange); transform: translateY(-2px); }

.btn-outline {
  border-color: #d6d0db;
  color: var(--purple);
  background: rgba(255,255,255,.6);
}
.btn-outline:hover { border-color: var(--purple); transform: translateY(-2px); }

.trust-row {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-top: 50px;
}
.trust-row div { display: flex; flex-direction: column; }
.trust-row strong { font-family: "Outfit"; color: var(--purple); font-size: 21px; }
.trust-row span { color: #81818b; font-size: 10px; text-transform: uppercase; letter-spacing: 1px; }
.trust-row i { height: 30px; width: 1px; background: #ddd7e1; }
.tiny-note { font-size: 9px; color: #a3a0a8; margin-top: 9px; max-width: 450px; }

.hero-visual { min-height: 480px; position: relative; display: grid; place-items: center; }

.security-card {
  width: min(420px, 90%);
  aspect-ratio: 1.52;
  border-radius: 28px;
  padding: 27px;
  position: relative;
  overflow: hidden;
  transform: rotate(-5deg);
  background: linear-gradient(135deg, #5c0870, #25002f 70%);
  box-shadow: 0 35px 70px rgba(48, 0, 58, .30);
  animation: floatCard 5s ease-in-out infinite;
}

.security-card::before {
  content: "";
  position: absolute;
  width: 300px;
  height: 300px;
  border-radius: 50%;
  background: rgba(255,255,255,.08);
  right: -100px;
  top: -130px;
}

.card-top { display: flex; align-items: center; gap: 8px; color: rgba(255,255,255,.72); font-size: 9px; letter-spacing: 1.5px; }
.status-dot { width: 7px; height: 7px; background: #68e5a0; border-radius: 50%; box-shadow: 0 0 12px #68e5a0; }
.lock { margin-left: auto; font-size: 22px; color: var(--orange-light); }

.chip {
  width: 58px;
  height: 43px;
  border: 1px solid rgba(255,255,255,.45);
  border-radius: 8px;
  margin-top: 70px;
  padding: 9px;
  background: rgba(255,255,255,.08);
}
.chip-line { border-top: 1px solid rgba(255,255,255,.4); margin: 4px 0; }

.signature-line {
  display: flex;
  justify-content: space-between;
  align-items: end;
  margin-top: 30px;
  color: white;
}
.signature-line span { letter-spacing: 4px; font-size: 12px; }
.signature-line strong { font-family: "Outfit"; font-size: 26px; }

.digital-lines { position: absolute; right: 25px; bottom: 27px; display: flex; gap: 4px; align-items: end; }
.digital-lines span { width: 3px; background: var(--orange); border-radius: 3px; }
.digital-lines span:nth-child(1) { height: 14px; }
.digital-lines span:nth-child(2) { height: 26px; }
.digital-lines span:nth-child(3) { height: 19px; }
.digital-lines span:nth-child(4) { height: 34px; }

.glow-ring {
  position: absolute;
  border: 1px solid rgba(122,22,139,.16);
  border-radius: 50%;
  animation: spin 20s linear infinite;
}
.ring-one { width: 480px; height: 480px; }
.ring-two { width: 360px; height: 360px; border-style: dashed; animation-direction: reverse; }

.floating-pill {
  position: absolute;
  background: white;
  padding: 12px 16px;
  border-radius: 14px;
  font-size: 11px;
  font-weight: 700;
  color: var(--purple);
  box-shadow: 0 15px 35px rgba(42,0,50,.12);
  animation: float 4s ease-in-out infinite;
}
.pill-one { top: 85px; right: 3%; }
.pill-two { bottom: 75px; left: 3%; animation-delay: -2s; }

.scroll-cue {
  position: absolute;
  bottom: 22px;
  left: 50%;
  transform: translateX(-50%);
  color: #aaa6b0;
  font-size: 9px;
  text-transform: uppercase;
  letter-spacing: 2px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
}
.scroll-cue span { width: 1px; height: 30px; background: var(--orange); }

/* Common sections */
.section-heading { max-width: 740px; margin-bottom: 55px; }
.section-heading.centered { text-align: center; margin-inline: auto; }
.section-heading h2, .why-intro h2, .contact-copy h2 {
  font-family: "Outfit", sans-serif;
  font-size: clamp(35px, 4vw, 55px);
  line-height: 1.08;
  letter-spacing: -1.5px;
  color: var(--purple-dark);
  margin: 12px 0 18px;
}
.section-heading h2 span, .why-intro h2 span, .contact-copy h2 span { color: var(--purple-light); }
.section-heading p { color: var(--muted); max-width: 680px; }
.centered p { margin-inline: auto; }

/* About */
.about { background: #fff; }
.about-grid { display: grid; grid-template-columns: .95fr 1.05fr; gap: 70px; align-items: start; }
.about-panel {
  background: linear-gradient(145deg, var(--purple), #2c0036);
  color: white;
  padding: 43px;
  border-radius: 28px;
  position: relative;
  overflow: hidden;
  box-shadow: var(--shadow);
}
.about-panel::after {
  content: "DS";
  position: absolute;
  font-family: "Outfit";
  font-size: 190px;
  right: -20px;
  bottom: -85px;
  opacity: .055;
}
.panel-icon { color: var(--orange-light); font-size: 30px; margin-bottom: 25px; }
.mini-label { font-size: 10px; letter-spacing: 2px; color: #d7b8dc; font-weight: 800; }
.about-panel h3 { font-family: "Outfit"; font-size: 30px; line-height: 1.2; margin: 10px 0 16px; }
.about-panel p { color: #d6c9d9; font-size: 14px; }
.feature-list { margin-top: 28px; display: grid; gap: 11px; position: relative; z-index: 2; }
.feature-list div { font-size: 12px; }
.feature-list span { color: var(--orange-light); margin-right: 8px; }

.about-copy { display: grid; gap: 0; }
.info-row { display: grid; grid-template-columns: 55px 1fr; gap: 18px; padding: 23px 0; border-bottom: 1px solid var(--line); }
.info-row:first-child { padding-top: 5px; }
.number { color: var(--orange); font-family: "Outfit"; font-weight: 700; font-size: 13px; }
.info-row h3 { color: var(--purple); font-family: "Outfit"; font-size: 20px; }
.info-row p { color: var(--muted); font-size: 13px; margin-top: 3px; }

/* Direction */
.direction { background: #faf8fb; }
.direction-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 25px; }
.direction-card {
  padding: 45px;
  border-radius: var(--radius);
  background: white;
  border: 1px solid var(--line);
  box-shadow: 0 10px 35px rgba(40,0,50,.04);
  position: relative;
  overflow: hidden;
}
.direction-card::before {
  content: "";
  height: 4px;
  background: linear-gradient(90deg, var(--purple), var(--orange));
  position: absolute; inset: 0 0 auto;
}
.card-label { color: var(--orange); letter-spacing: 2px; font-weight: 800; font-size: 10px; }
.direction-icon { font-size: 32px; color: var(--purple); margin: 22px 0 5px; }
.direction-card h3 { font-family: "Outfit"; font-size: 27px; color: var(--purple-dark); line-height: 1.2; }
.direction-card p { color: var(--muted); font-size: 14px; margin-top: 15px; }
.mission { background: linear-gradient(145deg, #fff, #fdf8ff); }

/* Services */
.service-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.service-card {
  border: 1px solid var(--line);
  border-radius: 20px;
  padding: 31px;
  position: relative;
  background: white;
  transition: .35s ease;
  overflow: hidden;
}
.service-card::after {
  content: "";
  position: absolute;
  height: 3px;
  bottom: 0;
  left: 0;
  width: 0;
  background: linear-gradient(90deg, var(--purple), var(--orange));
  transition: .35s;
}
.service-card:hover { transform: translateY(-8px); box-shadow: var(--shadow); border-color: #dfd3e2; }
.service-card:hover::after { width: 100%; }
.service-number { position: absolute; top: 23px; right: 24px; font-size: 10px; color: #b7b2bb; font-weight: 800; }
.service-icon {
  width: 54px; height: 54px; display: grid; place-items: center;
  border-radius: 16px; background: #faf0fc; font-size: 23px; margin-bottom: 22px;
}
.service-card h3 { font-family: "Outfit"; color: var(--purple); font-size: 22px; }
.service-card p { font-size: 12px; color: var(--muted); margin: 9px 0 23px; min-height: 82px; }
.service-card a { font-size: 11px; font-weight: 800; color: var(--purple); }
.service-card a span { color: var(--orange); margin-left: 5px; }
.featured { background: linear-gradient(145deg, #4d075d, #2b0035); color: white; border-color: transparent; }
.featured h3, .featured a { color: white; }
.featured p { color: #d7c8da; }
.featured .service-icon { background: rgba(255,255,255,.11); }
.featured .service-number { color: #bd9fc2; }
.featured-badge { position: absolute; right: 20px; top: 20px; background: var(--orange); color: white; border-radius: 50px; padding: 4px 8px; font-size: 7px; font-weight: 800; letter-spacing: 1px; }

/* Process */
.process { background: #fbf9fc; }
.process-line { position: relative; max-width: 900px; margin: 0 auto; }
.process-line::before {
  content: "";
  position: absolute;
  top: 0; bottom: 0; left: 50%;
  width: 1px;
  background: linear-gradient(var(--orange), #ddd4e1, var(--purple));
}
.process-step { display: grid; grid-template-columns: 1fr 80px 1fr; align-items: center; min-height: 190px; }
.step-dot {
  grid-column: 2;
  grid-row: 1;
  width: 58px; height: 58px;
  border-radius: 50%;
  background: white;
  border: 3px solid var(--orange);
  color: var(--purple);
  display: grid;
  place-items: center;
  font-family: "Outfit";
  font-weight: 800;
  font-size: 13px;
  margin: auto;
  z-index: 2;
  box-shadow: 0 0 0 8px #fbf9fc;
}
.step-content {
  grid-column: 1;
  grid-row: 1;
  padding: 24px 34px;
  border-radius: 17px;
  background: white;
  border: 1px solid var(--line);
  box-shadow: 0 10px 25px rgba(45,0,55,.04);
}
.reverse .step-content { grid-column: 3; }
.step-content span { color: var(--orange); font-size: 9px; font-weight: 800; letter-spacing: 2px; }
.step-content h3 { color: var(--purple); font-family: "Outfit"; font-size: 21px; margin: 4px 0; }
.step-content p { color: var(--muted); font-size: 12px; }

/* Why */
.why-us { background: white; }
.why-grid { display: grid; grid-template-columns: .8fr 1.2fr; gap: 90px; align-items: center; }
.why-intro p { color: var(--muted); font-size: 14px; margin-bottom: 30px; max-width: 470px; }
.why-cards { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.why-card {
  display: flex; gap: 17px; padding: 25px;
  border: 1px solid var(--line); border-radius: 18px;
  transition: .3s; background: white;
}
.why-card:hover { border-color: #d5c3da; transform: translateY(-5px); box-shadow: var(--shadow); }
.why-icon { width: 43px; height: 43px; min-width: 43px; border-radius: 13px; display: grid; place-items: center; background: #fff4e2; color: var(--orange); }
.why-card h3 { font-family: "Outfit"; color: var(--purple); font-size: 17px; }
.why-card p { color: var(--muted); font-size: 11px; line-height: 1.6; margin-top: 3px; }

/* CTA */
.cta-section { padding-top: 10px; }
.cta-box {
  border-radius: 30px;
  background: linear-gradient(125deg, #4d075d, #280031);
  color: white;
  text-align: center;
  padding: 75px 30px;
  position: relative;
  overflow: hidden;
  box-shadow: 0 25px 60px rgba(62,0,73,.22);
}
.cta-box::before, .cta-box::after {
  content: ""; position: absolute; border: 1px solid rgba(255,255,255,.1); border-radius: 50%;
}
.cta-box::before { width: 380px; height: 380px; left: -130px; top: -210px; }
.cta-box::after { width: 450px; height: 450px; right: -190px; bottom: -280px; }
.cta-box .section-tag { color: var(--orange-light); }
.cta-box h2 { font-family: "Outfit"; font-size: clamp(34px, 4vw, 53px); line-height: 1.1; max-width: 750px; margin: 12px auto; }
.cta-box p { color: #d7c7db; font-size: 14px; margin-bottom: 25px; }
.btn-light { background: white; color: var(--purple); }
.btn-light:hover { background: var(--orange); color: white; transform: translateY(-2px); }

/* Clients */
.clients {
  background: var(--off-white);
  position: relative;
  overflow: hidden;
}

.clients::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 15% 55%, rgba(77,7,93,.07) 0%, transparent 50%),
    radial-gradient(ellipse at 85% 20%, rgba(228,138,8,.05) 0%, transparent 45%);
  animation: clientsGlow 7s ease-in-out infinite alternate;
  pointer-events: none;
  z-index: 0;
}

@keyframes clientsGlow {
  0%   { opacity: 0.6; }
  100% { opacity: 1; }
}

.clients::after {
  content: "";
  position: absolute;
  inset: 0;
  opacity: 0.028;
  background-image: radial-gradient(circle, var(--purple-dark) 1.5px, transparent 1.5px);
  background-size: 28px 28px;
  pointer-events: none;
  z-index: 0;
}

.clients-particles {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 0;
}

.clients-particles::before {
  content: "";
  position: absolute;
  width: 280px; height: 280px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(77,7,93,.09) 0%, transparent 70%);
  top: -90px; right: 6%;
  animation: particleDrift 11s ease-in-out infinite;
}

.clients-particles::after {
  content: "";
  position: absolute;
  width: 200px; height: 200px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(228,138,8,.07) 0%, transparent 70%);
  bottom: -55px; left: 7%;
  animation: particleDrift 14s ease-in-out infinite reverse;
}

@keyframes particleDrift {
  0%, 100% { transform: translate(0, 0); }
  33%       { transform: translate(18px, -14px); }
  66%       { transform: translate(-12px, 9px); }
}

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

.clients-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  margin-inline: auto;
}

.client-card {
  background: white;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 50px 36px;
  text-align: center;
  position: relative;
  overflow: hidden;
  box-shadow: 0 12px 40px rgba(48,4,57,.07);
  transition: transform .4s ease, box-shadow .4s ease, border-color .4s ease;
  cursor: default;
}

.client-card::before {
  content: "";
  position: absolute;
  inset: 0 0 auto;
  height: 3px;
  background: linear-gradient(90deg, var(--purple), var(--orange));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .4s ease;
}

.client-card:hover { transform: translateY(-10px); box-shadow: 0 28px 65px rgba(48,4,57,.16); border-color: #dfd3e2; }
.client-card:hover::before { transform: scaleX(1); }

.client-logo-wrap {
  width: 112px;
  height: 112px;
  border-radius: 50%;
  background: #f6f1f9;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 26px;
  overflow: hidden;
  opacity: 0;
  transition: opacity .7s ease .5s, box-shadow .4s ease;
}

.client-card.visible .client-logo-wrap {
  opacity: 1;
  animation: logoFloat 4.5s ease-in-out 1.3s infinite;
}

.client-card:hover .client-logo-wrap {
  box-shadow: 0 0 0 5px rgba(77,7,93,.08), 0 0 32px rgba(77,7,93,.13);
}

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

.client-logo {
  width: 78px;
  height: 78px;
  object-fit: contain;
  display: block;
}

.client-logo-placeholder {
  display: none;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 6px;
  width: 100%;
  height: 100%;
  text-align: center;
  padding: 12px;
}

.client-logo-placeholder > span {
  font-family: "Outfit", sans-serif;
  font-size: 24px;
  font-weight: 800;
  color: var(--purple);
  line-height: 1;
  letter-spacing: 1px;
}

.client-logo-placeholder small { display: none; }

.client-card h3 {
  font-family: "Outfit", sans-serif;
  color: var(--purple-dark);
  font-size: 20px;
  margin-bottom: 12px;
  line-height: 1.2;
}

.client-badge {
  display: inline-block;
  font-size: 9px;
  font-weight: 800;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--orange);
  background: #fff4e2;
  padding: 5px 13px;
  border-radius: 50px;
  border: 1px solid rgba(228,138,8,.22);
}

/* Contact */
.contact { background: #fbf9fc; }
.contact-items-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  max-width: 860px;
  margin-inline: auto;
}
.contact-item {
  display: flex;
  align-items: center;
  gap: 15px;
  background: white;
  padding: 22px 20px;
  border-radius: 18px;
  border: 1px solid var(--line);
  box-shadow: 0 6px 22px rgba(30,0,40,.04);
  transition: .3s;
}
.contact-item:hover { transform: translateY(-4px); box-shadow: 0 14px 35px rgba(30,0,40,.09); }
.contact-icon {
  width: 45px;
  height: 45px;
  min-width: 45px;
  display: grid;
  place-items: center;
  border-radius: 13px;
  background: #faf0fc;
  color: var(--orange);
}
.contact-item span:last-child { display: flex; flex-direction: column; }
.contact-item small { font-size: 8px; color: #99939e; font-weight: 800; letter-spacing: 1.5px; }
.contact-item strong { color: var(--purple); font-size: 12px; line-height: 1.5; }

/* Footer */
.footer { background: #1e0025; color: #c8b8cc; padding-top: 65px; }
.footer-grid { display: grid; grid-template-columns: 1.5fr 1fr 1fr 1.1fr; gap: 45px; padding-bottom: 50px; }
.footer .brand { color: white; }
.footer .brand small { color: #a493a9; }
.footer-brand > p { font-size: 11px; margin-top: 17px; }
.footer-tagline { color: #8e7b92 !important; max-width: 270px; }
.footer h4 { color: white; font-size: 12px; margin-bottom: 17px; }
.footer-grid > div:not(.footer-brand) { display: flex; flex-direction: column; gap: 8px; }
.footer-grid a, .footer-grid span { color: #9d8aa2; font-size: 11px; transition: .2s; }
.footer-grid a:hover { color: var(--orange-light); }
.footer-bottom { border-top: 1px solid rgba(255,255,255,.08); padding: 20px 0; display: flex; justify-content: space-between; gap: 20px; color: #76647b; font-size: 9px; }

.back-top {
  position: fixed; right: 22px; bottom: 22px; width: 43px; height: 43px; border: 0;
  border-radius: 50%; background: var(--orange); color: white; font-size: 18px; cursor: pointer;
  box-shadow: 0 10px 25px rgba(228,138,8,.3); opacity: 0; visibility: hidden; transform: translateY(15px);
  transition: .3s; z-index: 500;
}
.back-top.show { opacity: 1; visibility: visible; transform: translateY(0); }

/* Animations */
.reveal { opacity: 0; transform: translateY(28px); transition: opacity .7s ease, transform .7s ease; }
.reveal.visible { opacity: 1; transform: translateY(0); }
.delay-1 { transition-delay: .12s; }
.delay-2 { transition-delay: .22s; }

@keyframes floatCard { 0%,100% { transform: rotate(-5deg) translateY(0); } 50% { transform: rotate(-3deg) translateY(-12px); } }
@keyframes float { 0%,100% { transform: translateY(0); } 50% { transform: translateY(-9px); } }
@keyframes spin { from { transform: rotate(0); } to { transform: rotate(360deg); } }

/* Responsive */
@media (max-width: 980px) {
  .nav { gap: 18px; }
  .hero-content { grid-template-columns: 1fr; }
  .hero-copy { text-align: center; }
  .eyebrow, .hero-actions, .trust-row { justify-content: center; }
  .hero-text { margin-inline: auto; }
  .hero-visual { min-height: 420px; }
  .about-grid, .why-grid { grid-template-columns: 1fr; gap: 45px; }
  .clients-grid { grid-template-columns: 1fr 1fr; }
  .service-grid { grid-template-columns: 1fr 1fr; }
  .why-intro { text-align: center; }
  .why-intro p { margin-inline: auto; }
  .direction-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1.5fr 1fr 1fr; }
  .footer-brand { grid-column: 1 / -1; }
}

@media (max-width: 720px) {
  .container { width: min(calc(100% - 28px), var(--container)); }
  .section { padding: 78px 0; }
  .nav-wrap { min-height: 70px; }
  .menu-toggle { display: block; z-index: 1001; }
  .nav {
    position: fixed; inset: 0; background: rgba(255,255,255,.97);
    backdrop-filter: blur(15px); flex-direction: column; justify-content: center; gap: 22px;
    transform: translateX(100%); transition: .35s ease;
  }
  .nav.open { transform: translateX(0); }
  .nav a { font-size: 17px; }
  .nav-cta { padding: 12px 25px !important; }
  .menu-toggle.active span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
  .menu-toggle.active span:nth-child(2) { opacity: 0; }
  .menu-toggle.active span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

  .hero { min-height: auto; padding-top: 120px; padding-bottom: 75px; }
  .hero h1 { font-size: clamp(39px, 12vw, 55px); }
  .hero-text { font-size: 14px; }
  .trust-row { gap: 11px; margin-top: 38px; }
  .trust-row span { font-size: 8px; }
  .hero-visual { min-height: 350px; }
  .security-card { width: 88%; }
  .ring-one { width: 350px; height: 350px; }
  .ring-two { width: 275px; height: 275px; }
  .floating-pill { font-size: 9px; padding: 9px 11px; }
  .pill-one { top: 45px; right: 0; }
  .pill-two { bottom: 45px; left: 0; }
  .scroll-cue { display: none; }

  .section-heading { margin-bottom: 38px; }
  .section-heading h2, .why-intro h2 { font-size: 37px; }
  .about-panel, .direction-card { padding: 28px; }
  .service-grid { grid-template-columns: 1fr; }
  .service-card p { min-height: auto; }
  .process-line::before { left: 28px; }
  .process-step, .process-step.reverse { display: grid; grid-template-columns: 56px 1fr; min-height: auto; padding: 12px 0; }
  .step-dot { grid-column: 1; grid-row: 1; width: 54px; height: 54px; }
  .step-content, .reverse .step-content { grid-column: 2; grid-row: 1; padding: 20px; }
  .why-cards { grid-template-columns: 1fr; }
  .clients-grid { grid-template-columns: 1fr; max-width: 360px; }
  .client-card { padding: 38px 26px; }
  .contact-items-row { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 30px; }
  .footer-brand { grid-column: 1 / -1; }
  .footer-bottom { flex-direction: column; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: .01ms !important; transition-duration: .01ms !important; }
  .reveal { opacity: 1; transform: none; }
}
