/* RPD Financial Solutions — site styles */

:root {
  --ink: #12212B;
  --ink-deep: #0E2233;
  --muted: #63788A;
  --muted-soft: #7E8F9C;
  --slate: #54697A;
  --paper: #FCFBF9;
  --line: rgba(18, 33, 43, 0.09);
  --orange: #F5851F;
  --red: #E0242B;
  --sky: #52B7EA;
  --brand-grad: linear-gradient(120deg, #F5851F, #E0242B);
  --shadow-sm: 0 8px 26px rgba(14, 34, 51, 0.05);
  --shadow-md: 0 20px 44px rgba(14, 34, 51, 0.09);
  --shadow-lg: 0 24px 60px rgba(14, 34, 51, 0.08);
  --ease: cubic-bezier(0.2, 0.8, 0.2, 1);
  --wrap: 1280px;
  --header-h: 74px;
}

*,
*::before,
*::after { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: 'Manrope', system-ui, -apple-system, sans-serif;
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

img { max-width: 100%; }
a { color: var(--red); text-decoration: none; }
a:hover { color: var(--orange); }
::selection { background: var(--orange); color: #fff; }

h1, h2, h3, .sora { font-family: 'Sora', 'Manrope', system-ui, sans-serif; }

.skip-link {
  position: absolute;
  left: -9999px;
  top: 0;
  background: var(--ink-deep);
  color: #fff;
  padding: 12px 20px;
  border-radius: 0 0 10px 0;
  z-index: 200;
}
.skip-link:focus { left: 0; color: #fff; }

:focus-visible {
  outline: 3px solid var(--sky);
  outline-offset: 2px;
}

/* ---------- layout ---------- */

.page {
  position: relative;
  min-height: 100vh;
  background:
    radial-gradient(1100px 640px at 82% -10%, rgba(82, 183, 234, 0.2), transparent 62%),
    radial-gradient(820px 560px at 0% 8%, rgba(245, 133, 31, 0.14), transparent 62%),
    var(--paper);
  overflow: hidden;
}

.wrap {
  max-width: var(--wrap);
  margin: 0 auto;
  padding-left: 28px;
  padding-right: 28px;
}

main { padding-top: var(--header-h); }

.section-pad { padding-top: 100px; padding-bottom: 100px; }
.page-head { padding-top: 70px; }

.eyebrow {
  font-size: 12.5px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--red);
  font-weight: 700;
}

.h1 {
  font-family: 'Sora', sans-serif;
  font-weight: 800;
  font-size: clamp(38px, 5vw, 66px);
  letter-spacing: -0.035em;
  line-height: 1.06;
  margin: 16px 0 0;
  color: var(--ink-deep);
  text-wrap: balance;
}

.h2 {
  font-family: 'Sora', sans-serif;
  font-weight: 700;
  font-size: clamp(30px, 3.4vw, 46px);
  letter-spacing: -0.028em;
  margin: 14px 0 0;
  color: var(--ink-deep);
}

.lede {
  font-size: 18px;
  line-height: 1.65;
  color: var(--muted);
  max-width: 640px;
  margin: 20px 0 0;
  text-wrap: pretty;
}

.grid-2 {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 56px;
  align-items: start;
}

.cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(258px, 1fr));
  gap: 18px;
}

/* ---------- scroll progress ---------- */

.scroll-bar {
  position: fixed;
  top: 0;
  left: 0;
  height: 3px;
  width: 0;
  background: var(--brand-grad);
  z-index: 120;
}

/* ---------- header ---------- */

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  backdrop-filter: blur(18px);
  background: rgba(252, 251, 249, 0.82);
  border-bottom: 1px solid rgba(18, 33, 43, 0.08);
}

.site-header .wrap {
  padding-top: 12px;
  padding-bottom: 12px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 12px;
}
.brand img { height: 50px; width: auto; display: block; }
.brand-text { display: flex; flex-direction: column; line-height: 1.05; }
.brand-name {
  font-family: 'Sora', sans-serif;
  font-size: 19px;
  font-weight: 800;
  letter-spacing: -0.02em;
  color: var(--ink-deep);
}
.brand-sub {
  font-size: 10.5px;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--red);
  margin-top: 3px;
}

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

.nav a {
  color: var(--ink);
  font-size: 14px;
  font-weight: 600;
  padding: 10px 14px;
  position: relative;
}
.nav a:hover { color: var(--red); }
.nav a::after {
  content: '';
  position: absolute;
  left: 14px;
  right: 14px;
  bottom: 4px;
  height: 2px;
  background: var(--orange);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.35s var(--ease);
}
.nav a[aria-current='page']::after { transform: scaleX(1); }

.nav-toggle {
  display: none;
  background: none;
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: 10px 12px;
  cursor: pointer;
  color: var(--ink-deep);
}

/* ---------- buttons ---------- */

.btn {
  display: inline-block;
  border: none;
  border-radius: 999px;
  font-family: 'Manrope', sans-serif;
  font-weight: 700;
  font-size: 15px;
  padding: 16px 30px;
  cursor: pointer;
  transition: transform 0.35s var(--ease), box-shadow 0.3s, border-color 0.3s, color 0.3s;
}

.btn-primary {
  background: var(--brand-grad);
  color: #fff;
  box-shadow: 0 14px 34px rgba(224, 36, 43, 0.28);
}
.btn-primary:hover {
  color: #fff;
  transform: translateY(-3px) scale(1.03);
  box-shadow: 0 18px 40px rgba(224, 36, 43, 0.36);
}

.btn-ghost {
  background: #fff;
  border: 1px solid rgba(18, 33, 43, 0.15);
  color: var(--ink);
  font-weight: 600;
}
.btn-ghost:hover { border-color: var(--sky); color: var(--ink); transform: translateY(-3px); }

.btn-sm { padding: 13px 24px; font-size: 14.5px; }
.btn-nav { padding: 12px 22px; font-size: 14px; margin-left: 10px; }

/* ---------- hero ---------- */

.hero {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 40px;
  align-items: center;
  min-height: calc(100vh - var(--header-h));
  padding-top: 64px;
  padding-bottom: 40px;
  position: relative;
}

.pill {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 8px 16px;
  border: 1px solid rgba(224, 36, 43, 0.25);
  border-radius: 999px;
  background: rgba(245, 133, 31, 0.09);
  font-size: 12.5px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #B0341C;
  font-weight: 700;
}
.pill .dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--orange);
  display: block;
}

.hero h1 {
  font-weight: 800;
  font-size: clamp(42px, 5.4vw, 76px);
  line-height: 1.03;
  letter-spacing: -0.035em;
  margin: 24px 0 0;
  color: var(--ink-deep);
  text-wrap: balance;
}
.hero p {
  max-width: 560px;
  margin: 24px 0 0;
  font-size: 18px;
  line-height: 1.65;
  color: var(--slate);
  text-wrap: pretty;
}
.grad-text {
  background: linear-gradient(100deg, #F5851F, #E0242B);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.hero-actions { display: flex; flex-wrap: wrap; gap: 14px; margin-top: 34px; }

.stats { display: flex; gap: 34px; margin-top: 48px; flex-wrap: wrap; }
.stat-num {
  font-family: 'Sora', sans-serif;
  font-size: 30px;
  font-weight: 700;
  color: var(--ink-deep);
}
.stat-label {
  font-size: 12.5px;
  color: var(--muted-soft);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-top: 4px;
}
.stat-rule { width: 1px; background: rgba(18, 33, 43, 0.12); }

.hero-art {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 520px;
}
.orb {
  position: absolute;
  width: 430px;
  height: 430px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(82, 183, 234, 0.3), transparent 66%);
  animation: glowPulse 6s ease-in-out infinite;
}
.ring {
  position: absolute;
  width: 420px;
  height: 420px;
  border: 1px solid rgba(82, 183, 234, 0.35);
  border-radius: 50%;
  animation: spinSlow 26s linear infinite;
}
.ring .bead {
  position: absolute;
  top: -5px;
  left: 50%;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--orange);
}
.ring-dashed {
  position: absolute;
  width: 325px;
  height: 325px;
  border: 1px dashed rgba(245, 133, 31, 0.35);
  border-radius: 50%;
  animation: spinSlow 18s linear infinite reverse;
}
.genie {
  position: relative;
  width: min(470px, 100%);
  animation: floaty 7s ease-in-out infinite;
  filter: drop-shadow(0 30px 44px rgba(14, 34, 51, 0.18));
}

.float-card {
  position: absolute;
  background: #fff;
  border: 1px solid var(--line);
  box-shadow: 0 18px 40px rgba(14, 34, 51, 0.1);
  border-radius: 16px;
  padding: 14px 18px;
  animation: floatySlow 5s ease-in-out infinite;
}
.float-card.bl { bottom: 56px; left: 0; }
.float-card.tr { top: 62px; right: 0; animation-duration: 6.5s; animation-delay: 0.8s; }
.float-card .k {
  font-size: 11.5px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #8B9AA6;
}
.float-card .v {
  font-family: 'Sora', sans-serif;
  font-weight: 700;
  font-size: 16px;
  margin-top: 4px;
  color: var(--ink-deep);
}

/* ---------- marquee ---------- */

.marquee {
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  padding: 18px 0;
  overflow: hidden;
  background: #fff;
}
.marquee-track {
  display: flex;
  width: max-content;
  animation: marquee 32s linear infinite;
}
.marquee-group {
  display: flex;
  gap: 56px;
  padding-right: 56px;
  align-items: center;
}
.marquee-item {
  font-family: 'Sora', sans-serif;
  font-size: 15px;
  font-weight: 600;
  color: var(--muted);
  display: flex;
  align-items: center;
  gap: 18px;
  white-space: nowrap;
}
.marquee-item::after {
  content: '';
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--orange);
  display: block;
}

/* ---------- cards ---------- */

.section-head {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 30px;
  flex-wrap: wrap;
}

.card {
  position: relative;
  padding: 28px 26px 30px;
  border-radius: 20px;
  background: #fff;
  border: 1px solid var(--line);
  box-shadow: var(--shadow-sm);
  overflow: hidden;
  transition: transform 0.4s var(--ease), border-color 0.3s, box-shadow 0.3s;
  color: inherit;
  display: block;
}
a.card:hover { color: inherit; }
.card:hover {
  transform: translateY(-8px);
  border-color: rgba(245, 133, 31, 0.6);
  box-shadow: 0 24px 50px rgba(224, 36, 43, 0.14);
}
.card-num {
  font-family: 'Sora', sans-serif;
  font-size: 13px;
  font-weight: 700;
  color: var(--orange);
  letter-spacing: 0.1em;
}
.card-title {
  font-family: 'Sora', sans-serif;
  font-size: 20px;
  font-weight: 600;
  line-height: 1.28;
  margin-top: 16px;
  color: var(--ink-deep);
}
.card-body {
  font-size: 14.5px;
  line-height: 1.6;
  color: var(--muted);
  margin-top: 12px;
}
.card-more { margin-top: 22px; font-size: 13.5px; font-weight: 700; color: var(--red); }

.card-plain {
  padding: 30px 26px;
  border-radius: 18px;
  border: 1px solid var(--line);
  background: #fff;
  transition: transform 0.4s var(--ease), box-shadow 0.3s;
}
.card-plain:hover { transform: translateY(-6px); box-shadow: var(--shadow-md); }
.badge {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: linear-gradient(140deg, #F5851F, #E0242B);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-family: 'Sora', sans-serif;
  font-weight: 700;
  font-size: 16px;
}

/* ---------- about ---------- */

.prose-lead { font-size: 18px; line-height: 1.75; color: #3E5464; margin: 0; text-wrap: pretty; }
.prose { font-size: 17px; line-height: 1.75; color: var(--muted); margin: 22px 0 0; text-wrap: pretty; }

.mv-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; margin-top: 36px; }
.mv {
  padding: 26px 24px;
  border-radius: 18px;
  background: #fff;
  border: 1px solid var(--line);
}
.mv h3 { font-size: 17px; font-weight: 700; color: var(--ink-deep); margin: 0; }
.mv p { font-size: 14.5px; line-height: 1.65; color: var(--muted); margin: 10px 0 0; }
.mv.dark { background: var(--ink-deep); border-color: var(--ink-deep); }
.mv.dark h3 { color: #fff; }
.mv.dark p { color: #A9C0CF; }

.art-col { position: relative; display: flex; justify-content: center; }
.art-col .orb-sm {
  position: absolute;
  top: 40px;
  width: 300px;
  height: 300px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(245, 133, 31, 0.22), transparent 68%);
  animation: glowPulse 7s ease-in-out infinite;
}
.art-col img {
  position: relative;
  width: min(400px, 100%);
  animation: floaty 8s ease-in-out infinite;
  filter: drop-shadow(0 26px 40px rgba(14, 34, 51, 0.16));
}

.group-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(230px, 1fr)); gap: 14px; }
.group-item {
  padding: 24px;
  border-radius: 16px;
  background: #fff;
  border: 1px solid var(--line);
  display: flex;
  align-items: center;
  gap: 14px;
  transition: transform 0.35s var(--ease), box-shadow 0.3s;
  color: var(--ink-deep);
}
.group-item:hover { transform: translateY(-5px); box-shadow: 0 18px 38px rgba(14, 34, 51, 0.09); color: var(--ink-deep); }
.group-item .bar {
  width: 8px;
  height: 38px;
  border-radius: 99px;
  background: linear-gradient(#F5851F, #E0242B);
  flex-shrink: 0;
}
.group-item span {
  font-family: 'Sora', sans-serif;
  font-size: 15.5px;
  font-weight: 600;
  line-height: 1.35;
}

/* ---------- services ---------- */

.svc-layout {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 34px;
  margin-top: 48px;
  align-items: start;
  padding-bottom: 110px;
}
.svc-list { display: flex; flex-direction: column; gap: 8px; }
.svc-tab {
  text-align: left;
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 18px 20px;
  border-radius: 16px;
  border: 1px solid var(--line);
  background: #fff;
  color: var(--ink-deep);
  cursor: pointer;
  font-family: 'Manrope', sans-serif;
  transition: transform 0.3s var(--ease), background 0.3s, border-color 0.3s, color 0.3s;
}
.svc-tab:hover { transform: translateX(6px); }
.svc-tab[aria-selected='true'] { background: var(--ink-deep); border-color: var(--ink-deep); color: #fff; }
.svc-tab .n { font-family: 'Sora', sans-serif; font-size: 12.5px; font-weight: 700; opacity: 0.65; }
.svc-tab .t { font-family: 'Sora', sans-serif; font-size: 17px; font-weight: 600; }

.svc-panel {
  position: sticky;
  top: 110px;
  padding: 40px;
  border-radius: 24px;
  background: #fff;
  border: 1px solid var(--line);
  box-shadow: var(--shadow-lg);
}
.svc-panel .num {
  font-family: 'Sora', sans-serif;
  font-size: 13px;
  font-weight: 700;
  color: var(--orange);
  letter-spacing: 0.12em;
}
.svc-panel h2 {
  font-weight: 700;
  font-size: clamp(26px, 2.8vw, 38px);
  letter-spacing: -0.028em;
  margin: 12px 0 0;
  color: var(--ink-deep);
}
.svc-panel p { font-size: 17px; line-height: 1.72; color: var(--slate); margin: 18px 0 0; text-wrap: pretty; }
.tags { display: flex; flex-wrap: wrap; gap: 10px; margin: 26px 0 0; padding: 0; list-style: none; }
.tags li {
  padding: 9px 16px;
  border-radius: 999px;
  background: rgba(82, 183, 234, 0.12);
  border: 1px solid rgba(82, 183, 234, 0.3);
  font-size: 13.5px;
  font-weight: 600;
  color: #12556F;
}

/* ---------- why us ---------- */

.why-card {
  padding: 34px 30px;
  border-radius: 20px;
  background: #fff;
  border: 1px solid var(--line);
  transition: transform 0.4s var(--ease), box-shadow 0.3s;
}
.why-card:hover { transform: translateY(-8px); box-shadow: 0 24px 52px rgba(14, 34, 51, 0.1); }
.why-n {
  font-family: 'Sora', sans-serif;
  font-size: 44px;
  font-weight: 800;
  letter-spacing: -0.04em;
  background: var(--brand-grad);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.why-card h3 { font-size: 19px; font-weight: 600; margin: 14px 0 0; color: var(--ink-deep); }
.why-card p { font-size: 15px; line-height: 1.65; color: var(--muted); margin: 10px 0 0; }

.process {
  margin-top: 56px;
  padding: 46px;
  border-radius: 24px;
  background: var(--ink-deep);
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 36px;
  align-items: center;
  overflow: hidden;
  position: relative;
}
.process::before {
  content: '';
  position: absolute;
  right: -80px;
  top: -80px;
  width: 340px;
  height: 340px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(245, 133, 31, 0.35), transparent 66%);
}
.process > * { position: relative; }
.process h2 {
  font-weight: 700;
  font-size: clamp(26px, 2.8vw, 38px);
  letter-spacing: -0.028em;
  margin: 0;
  color: #fff;
}
.steps { margin: 26px 0 0; padding: 0; list-style: none; }
.steps li {
  display: flex;
  gap: 18px;
  align-items: flex-start;
  padding: 16px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}
.steps .n {
  font-family: 'Sora', sans-serif;
  font-size: 13px;
  font-weight: 700;
  color: var(--orange);
  min-width: 34px;
  padding-top: 3px;
}
.steps h3 { font-size: 16.5px; font-weight: 600; color: #fff; margin: 0; }
.steps p { font-size: 14.5px; line-height: 1.6; color: #9FB6C6; margin: 5px 0 0; }
.process img { width: min(340px, 100%); animation: floaty 7.5s ease-in-out infinite; }

/* ---------- contact ---------- */

.contact-grid {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 40px;
  margin-top: 46px;
  align-items: start;
  padding-bottom: 100px;
}

.form-card {
  padding: 38px;
  border-radius: 24px;
  background: #fff;
  border: 1px solid var(--line);
  box-shadow: 0 24px 60px rgba(14, 34, 51, 0.07);
}
.field-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.field { margin-top: 16px; }
.field-row .field { margin-top: 0; }
.field label,
.field-legend {
  display: block;
  font-size: 12.5px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #8B9AA6;
  margin-bottom: 8px;
  padding: 0;
}
.field input,
.field textarea {
  width: 100%;
  padding: 14px 16px;
  border-radius: 12px;
  border: 1px solid rgba(18, 33, 43, 0.15);
  background: var(--paper);
  font-family: 'Manrope', sans-serif;
  font-size: 15px;
  color: var(--ink);
  outline: none;
  transition: border-color 0.25s;
}
.field textarea { resize: vertical; min-height: 110px; }
.field input:focus,
.field textarea:focus { border-color: var(--orange); }
.field input:invalid:not(:placeholder-shown) { border-color: rgba(224, 36, 43, 0.55); }

fieldset { border: none; margin: 20px 0 0; padding: 0; }
.chips { display: flex; flex-wrap: wrap; gap: 8px; }
.chip { position: relative; }
.chip input {
  position: absolute;
  opacity: 0;
  width: 100%;
  height: 100%;
  margin: 0;
  cursor: pointer;
}
.chip span {
  display: block;
  padding: 10px 16px;
  border-radius: 999px;
  border: 1px solid rgba(18, 33, 43, 0.15);
  background: var(--paper);
  color: var(--slate);
  font-size: 13.5px;
  font-weight: 600;
  transition: 0.25s;
}
.chip input:checked + span {
  background: var(--brand-grad);
  border-color: transparent;
  color: #fff;
}
.chip input:focus-visible + span { outline: 3px solid var(--sky); outline-offset: 2px; }
.chip:hover span { transform: translateY(-2px); }

.form-card .btn-primary { margin-top: 24px; width: 100%; padding: 17px; font-size: 16px; }

.form-note {
  margin-top: 16px;
  padding: 14px 18px;
  border-radius: 12px;
  background: rgba(82, 183, 234, 0.12);
  border: 1px solid rgba(82, 183, 234, 0.35);
  font-size: 14.5px;
  color: #12556F;
  font-weight: 600;
}
.form-note[hidden] { display: none; }
.form-hint { margin-top: 14px; font-size: 13.5px; color: var(--muted-soft); line-height: 1.6; }

.info-col { display: flex; flex-direction: column; gap: 14px; }
.info {
  padding: 28px;
  border-radius: 20px;
  background: #fff;
  border: 1px solid var(--line);
}
.info.dark { background: var(--ink-deep); border-color: var(--ink-deep); }
.info .k {
  font-size: 12px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #8B9AA6;
  font-weight: 700;
}
.info.dark .k { color: #7E9AAB; }
.info .v {
  font-family: 'Sora', sans-serif;
  font-size: 17px;
  font-weight: 600;
  color: var(--ink-deep);
  margin-top: 10px;
  line-height: 1.5;
}
.info.dark .v { color: #fff; }
.info-links { display: flex; flex-direction: column; gap: 8px; margin-top: 12px; }
.info-links a { font-family: 'Sora', sans-serif; font-size: 16px; font-weight: 600; }
.info-art {
  position: relative;
  padding: 20px;
  border-radius: 20px;
  background: linear-gradient(150deg, rgba(245, 133, 31, 0.14), rgba(82, 183, 234, 0.14));
  display: flex;
  justify-content: center;
  overflow: hidden;
}
.info-art img { width: 230px; animation: floaty 6s ease-in-out infinite; }

a.info { display: block; transition: border-color 0.3s, transform 0.3s var(--ease); }
a.info:hover { border-color: var(--orange); transform: translateY(-3px); }

/* ---------- footer ---------- */

.site-footer { background: var(--ink-deep); color: #D9E6EF; }
.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1.1fr;
  gap: 44px;
  padding-top: 66px;
}
.site-footer img { height: 58px; width: auto; display: block; }
.footer-addr { font-size: 15px; line-height: 1.75; color: #93AEC0; margin-top: 22px; }
.footer-contact { display: flex; flex-direction: column; gap: 8px; margin-top: 20px; }
.footer-contact a { color: var(--orange); font-weight: 600; font-size: 15px; }
.footer-contact a:first-child { font-family: 'Sora', sans-serif; font-size: 16px; }
.footer-col h2 {
  font-family: 'Sora', sans-serif;
  font-size: 15px;
  font-weight: 700;
  color: #fff;
  letter-spacing: 0.02em;
  margin: 0;
}
.footer-links { display: flex; flex-direction: column; gap: 12px; margin-top: 20px; font-size: 14.5px; }
.footer-links a { color: #93AEC0; }
.footer-links a:hover { color: var(--orange); }
.hours-box {
  margin-top: 20px;
  padding: 22px;
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.1);
}
.hours-box .k {
  font-size: 13px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #7E9AAB;
  font-weight: 700;
}
.hours-box .v {
  font-family: 'Sora', sans-serif;
  font-size: 22px;
  font-weight: 700;
  color: #fff;
  margin-top: 8px;
}
.social { display: flex; gap: 10px; margin-top: 20px; flex-wrap: wrap; }
.social a {
  padding: 9px 16px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  font-size: 13px;
  font-weight: 600;
  color: #D9E6EF;
}
.social a:hover { border-color: var(--orange); color: var(--orange); }
.footer-base {
  padding-top: 34px;
  padding-bottom: 34px;
  margin-top: 46px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  display: flex;
  justify-content: space-between;
  gap: 18px;
  flex-wrap: wrap;
  font-size: 13.5px;
  color: #7E9AAB;
}

/* floating WhatsApp / call bar */
.quick-actions {
  position: fixed;
  right: 20px;
  bottom: 20px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  z-index: 90;
}
.quick-actions a {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: #fff;
  border: 1px solid var(--line);
  box-shadow: 0 12px 30px rgba(14, 34, 51, 0.16);
  transition: transform 0.3s var(--ease);
}
.quick-actions a:hover { transform: scale(1.08); }
.quick-actions .wa { background: #25D366; border-color: #25D366; }
.quick-actions svg { width: 24px; height: 24px; display: block; }

/* ---------- animations ---------- */

@keyframes floaty { 0%, 100% { transform: translateY(0); } 50% { transform: translateY(-22px); } }
@keyframes floatySlow { 0%, 100% { transform: translateY(0); } 50% { transform: translateY(-12px); } }
@keyframes spinSlow { to { transform: rotate(360deg); } }
@keyframes marquee { from { transform: translateX(0); } to { transform: translateX(-50%); } }
@keyframes riseIn { from { opacity: 0; transform: translateY(28px); } to { opacity: 1; transform: none; } }
@keyframes glowPulse { 0%, 100% { opacity: 0.4; transform: scale(1); } 50% { opacity: 0.75; transform: scale(1.08); } }

.rise { animation: riseIn 0.9s both; }
.rise-1 { animation-delay: 0.08s; }
.rise-2 { animation-delay: 0.18s; }
.rise-3 { animation-delay: 0.28s; }
.rise-4 { animation-delay: 0.38s; }
.rise-5 { animation-delay: 0.48s; }

/* JS marks reveal targets; without JS they stay visible. */
.reveal.is-armed { opacity: 0; }
.reveal.is-in { animation: riseIn 0.8s var(--ease) both; }

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.001ms !important;
    scroll-behavior: auto !important;
  }
  .reveal.is-armed { opacity: 1; }
}

/* ---------- responsive ---------- */

@media (max-width: 1080px) {
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 34px; }
}

@media (max-width: 900px) {
  .wrap { padding-left: 18px; padding-right: 18px; }
  .grid-2,
  .hero,
  .svc-layout,
  .contact-grid,
  .process { grid-template-columns: 1fr; gap: 32px; }
  .hero { min-height: 0; padding-top: 32px; }
  .hero-art { min-height: 380px; }
  .genie { width: min(300px, 80%); }
  .float-card { display: none; }
  .svc-panel { position: static; padding: 28px 24px; }
  .mv-grid { grid-template-columns: 1fr; }
  .field-row { grid-template-columns: 1fr; }
  .section-pad { padding-top: 64px; padding-bottom: 64px; }
  .process { padding: 32px 24px; }

  .nav-toggle { display: block; }
  .nav {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    background: rgba(252, 251, 249, 0.98);
    backdrop-filter: blur(18px);
    border-bottom: 1px solid var(--line);
    padding: 8px 18px 18px;
    box-shadow: 0 20px 40px rgba(14, 34, 51, 0.1);
  }
  .nav[hidden] { display: none; }
  .nav a { padding: 14px 4px; font-size: 16px; border-bottom: 1px solid var(--line); }
  .nav a::after { display: none; }
  .nav a[aria-current='page'] { color: var(--red); }
  .btn-nav { margin: 14px 0 0; text-align: center; border-bottom: none; }
  .quick-actions { right: 14px; bottom: 14px; }
}

@media (max-width: 640px) {
  .footer-grid { grid-template-columns: 1fr; }
  .orb, .ring { width: 300px; height: 300px; }
  .ring-dashed { width: 230px; height: 230px; }
}

@media print {
  .site-header, .quick-actions, .scroll-bar, .marquee { display: none; }
  body { background: #fff; }
}
