/**
 * Rufrecht - Premium Digital Marketing Agency Stylesheet
 * ================================================
 * Multi-page website with enhanced trust elements and SEO optimization
 */

:root {
  --white: #ffffff;
  --paper: #fbfcff;
  --soft: #f4f7fb;
  --soft-2: #eef4fb;
  --ink: #0f1b2d;
  --text: #26364d;
  --muted: #67788f;
  --blue: #2f73ff;
  --blue-2: #8fb9ff;
  --blue-light: #edf5ff;
  --gold: #d7b46a;
  --green: #42b883;
  --green-light: #eafaf2;
  --line: rgba(23, 45, 77, .11);
  --line-strong: rgba(23, 45, 77, .16);
  --shadow-sm: 0 10px 30px rgba(35, 88, 160, .08);
  --shadow: 0 28px 90px rgba(35, 88, 160, .14);
  --shadow-blue: 0 26px 70px rgba(47, 115, 255, .24);
  --radius: 28px;
  --radius-xl: 42px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--ink);
  background: var(--paper);
  overflow-x: hidden;
  line-height: 1.6;
}

body:before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -5;
  background:
    radial-gradient(circle at 18% 8%, rgba(47, 115, 255, .16), transparent 32%),
    radial-gradient(circle at 88% 16%, rgba(215, 180, 106, .17), transparent 30%),
    radial-gradient(circle at 50% 92%, rgba(143, 185, 255, .18), transparent 35%),
    linear-gradient(180deg, #fff 0%, #f8fbff 43%, #ffffff 100%);
}

body:after {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: -4;
  background-image:
    linear-gradient(rgba(47, 115, 255, .045) 1px, transparent 1px),
    linear-gradient(90deg, rgba(47, 115, 255, .045) 1px, transparent 1px);
  background-size: 64px 64px;
  mask-image: linear-gradient(to bottom, rgba(0, 0, 0, .85), rgba(0, 0, 0, .2) 55%, transparent 88%);
}

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

img {
  max-width: 100%;
  height: auto;
}

/* Ambient Background */
.ambient {
  position: fixed;
  inset: 0;
  z-index: -3;
  pointer-events: none;
  overflow: hidden;
}

.blob {
  position: absolute;
  border-radius: 999px;
  filter: blur(34px);
  opacity: .58;
  animation: drift 18s ease-in-out infinite;
}

.blob.b1 {
  width: 340px;
  height: 340px;
  background: #dfeaff;
  left: -80px;
  top: 120px;
}

.blob.b2 {
  width: 260px;
  height: 260px;
  background: #fff0ca;
  right: -60px;
  top: 280px;
  animation-delay: -6s;
}

.blob.b3 {
  width: 260px;
  height: 260px;
  background: #eaf2ff;
  left: 42%;
  bottom: 80px;
  animation-delay: -11s;
}

@keyframes drift {
  0%, 100% {
    transform: translate3d(0, 0, 0) scale(1);
  }
  50% {
    transform: translate3d(30px, -34px, 0) scale(1.04);
  }
}

/* Layout */
.wrap {
  width: min(1180px, 90vw);
  margin: auto;
}

.wrap-narrow {
  width: min(860px, 90vw);
  margin: auto;
}

/* Navigation */
header {
  position: sticky;
  top: 0;
  z-index: 50;
  padding: 18px 0;
}

.nav {
  height: 76px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: min(1180px, 92vw);
  margin: auto;
  padding: 0 16px 0 20px;
  border: 1px solid rgba(255, 255, 255, .78);
  background: rgba(255, 255, 255, .76);
  backdrop-filter: blur(24px);
  box-shadow: 0 18px 70px rgba(35, 88, 160, .1);
  border-radius: 999px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  font-weight: 900;
  letter-spacing: -.045em;
  font-size: 23px;
}

.logo {
  width: 44px;
  height: 44px;
  border-radius: 16px;
  display: grid;
  place-items: center;
  color: white;
  font-weight: 950;
  background: linear-gradient(145deg, #2f73ff, #9bc2ff);
  box-shadow: 0 16px 34px rgba(47, 115, 255, .3), inset 0 1px 0 rgba(255, 255, 255, .42);
}

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

.nav-links a,
.drop-title {
  font-size: 14px;
  font-weight: 720;
  color: #40536d;
  padding: 12px 14px;
  border-radius: 999px;
  transition: .25s;
  cursor: pointer;
  white-space: nowrap;
}

.nav-links a:hover,
.drop-title:hover {
  background: #eef5ff;
  color: #1f61d9;
}

.dropdown {
  position: relative;
}

/* Hover-Bridge: invisible area connecting trigger to menu */
.dropdown::before {
  content: "";
  position: absolute;
  top: 100%;
  left: 0;
  width: 100%;
  height: 14px;
  background: transparent;
  pointer-events: none;
}

.dropdown:hover::before {
  pointer-events: auto;
}

.dropdown-menu {
  position: absolute;
  top: 48px;
  left: 0;
  width: 286px;
  padding: 10px;
  border: 1px solid var(--line);
  border-radius: 24px;
  background: rgba(255, 255, 255, .94);
  backdrop-filter: blur(24px);
  box-shadow: var(--shadow);
  opacity: 0;
  transform: translateY(10px);
  pointer-events: none;
  /* fast open, delayed close */
  transition: opacity .25s ease, transform .25s ease;
  transition-delay: .25s;
}

.dropdown:hover .dropdown-menu,
.dropdown-menu.open {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
  transition-delay: 0s;
}

.dropdown:hover .dropdown-menu {
  transition-delay: 0s;
}

.dropdown-menu a {
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-radius: 16px;
  padding: 13px 14px;
}

.nav-cta {
  background: linear-gradient(135deg, var(--blue), #79aaff) !important;
  color: #fff !important;
  box-shadow: 0 18px 42px rgba(47, 115, 255, .26);
}

.nav-cta:hover {
  transform: translateY(-1px);
  box-shadow: 0 22px 58px rgba(47, 115, 255, .34);
}

.menu-btn {
  display: none;
  border: 0;
  background: #edf5ff;
  color: #2159bf;
  border-radius: 16px;
  padding: 12px;
  font-size: 18px;
  cursor: pointer;
}

/* Breadcrumbs */
.breadcrumbs {
  padding: 20px 0 0;
  font-size: 13px;
  color: var(--muted);
}

.breadcrumbs a {
  color: var(--blue);
  font-weight: 600;
  transition: color .2s;
}

.breadcrumbs a:hover {
  color: var(--ink);
}

.breadcrumbs span {
  margin: 0 8px;
  color: var(--line-strong);
}

/* Hero Section */
.hero {
  position: relative;
  padding: 88px 0 120px;
}

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

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 10px 14px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(255, 255, 255, .72);
  box-shadow: var(--shadow-sm);
  color: #315c9c;
  font-size: 14px;
  font-weight: 800;
}

.dot {
  width: 8px;
  height: 8px;
  border-radius: 999px;
  background: var(--green);
  box-shadow: 0 0 0 8px rgba(66, 184, 131, .12);
  animation: pulse 2.5s infinite;
}

@keyframes pulse {
  50% {
    box-shadow: 0 0 0 14px rgba(66, 184, 131, 0);
  }
}

h1 {
  font-size: clamp(46px, 7.4vw, 92px);
  line-height: .94;
  letter-spacing: -.085em;
  margin: 24px 0 22px;
}

h2 {
  font-size: clamp(34px, 4.7vw, 60px);
  line-height: 1.03;
  letter-spacing: -.065em;
  margin: 12px 0;
}

h3 {
  font-size: 22px;
  letter-spacing: -.04em;
  margin: 18px 0 10px;
}

.gradient-text {
  background: linear-gradient(105deg, #0f1b2d 0%, #2f73ff 48%, #c99e4d 96%);
  -webkit-background-clip: text;
  color: transparent;
}

.lead {
  font-size: 20px;
  line-height: 1.75;
  color: #53657c;
  max-width: 660px;
  margin: 0;
}

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

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  border: 0;
  border-radius: 999px;
  padding: 16px 22px;
  font-weight: 850;
  transition: .28s;
  cursor: pointer;
  font-size: 15px;
  font-family: inherit;
}

.btn-primary {
  background: linear-gradient(135deg, var(--blue), #78aaff);
  color: #fff;
  box-shadow: var(--shadow-blue);
}

.btn-primary:hover {
  transform: translateY(-3px) scale(1.015);
  box-shadow: 0 34px 86px rgba(47, 115, 255, .34);
}

.btn-ghost {
  background: rgba(255, 255, 255, .8);
  border: 1px solid var(--line);
  color: #28415f;
  box-shadow: var(--shadow-sm);
}

.btn-ghost:hover {
  transform: translateY(-2px);
  box-shadow: 0 24px 60px rgba(35, 88, 160, .14);
}

.btn-outline {
  background: transparent;
  border: 2px solid var(--blue);
  color: var(--blue);
}

.btn-outline:hover {
  background: var(--blue);
  color: #fff;
}

/* Hero Proof Pills */
.hero-proof {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 24px;
  color: #68798e;
  font-size: 14px;
}

.proof-pill {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 9px 12px;
  border-radius: 999px;
  background: rgba(255, 255, 255, .72);
  border: 1px solid var(--line);
}

/* KYC / Trust Badge Bar */
.trust-bar {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 28px;
}

.trust-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 16px;
  border-radius: 999px;
  background: var(--green-light);
  border: 1px solid rgba(66, 184, 131, .2);
  color: #2a8a5e;
  font-size: 13px;
  font-weight: 700;
}

.trust-badge svg {
  width: 18px;
  height: 18px;
}

/* Visual Dashboard */
.visual {
  position: relative;
  min-height: 570px;
  perspective: 1100px;
}

.halo {
  position: absolute;
  inset: 72px 32px;
  border-radius: 60px;
  background: linear-gradient(135deg, rgba(47, 115, 255, .16), rgba(215, 180, 106, .13));
  filter: blur(18px);
  transform: rotate(-4deg);
}

.dashboard {
  position: absolute;
  inset: 54px 18px auto 24px;
  min-height: 420px;
  padding: 26px;
  border: 1px solid rgba(255, 255, 255, .86);
  border-radius: 38px;
  background: linear-gradient(180deg, rgba(255, 255, 255, .86), rgba(255, 255, 255, .66));
  backdrop-filter: blur(28px);
  box-shadow: var(--shadow);
  transform: rotateY(-6deg) rotateX(3deg);
  animation: floatCard 7.5s ease-in-out infinite;
}

@keyframes floatCard {
  50% {
    transform: rotateY(-3deg) rotateX(2deg) translateY(-12px);
  }
}

.dash-top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 24px;
}

.tag {
  font-size: 12px;
  font-weight: 850;
  color: #2868dc;
  background: #edf5ff;
  padding: 9px 12px;
  border-radius: 999px;
}

.spark {
  width: 46px;
  height: 46px;
  border-radius: 18px;
  display: grid;
  place-items: center;
  background: #fff;
  box-shadow: var(--shadow-sm);
  animation: bob 3.8s ease-in-out infinite;
}

@keyframes bob {
  50% {
    transform: translateY(-6px) rotate(3deg);
  }
}

.score {
  display: flex;
  align-items: flex-end;
  gap: 14px;
  margin: 8px 0 20px;
}

.score strong {
  font-size: 64px;
  letter-spacing: -.07em;
  line-height: .9;
}

.score span {
  color: #5a6e85;
  margin-bottom: 8px;
  font-weight: 750;
}

.chart {
  height: 155px;
  border-radius: 26px;
  background: linear-gradient(180deg, #f5f9ff, #fff);
  border: 1px solid var(--line);
  position: relative;
  overflow: hidden;
  padding: 18px;
}

.chart svg {
  width: 100%;
  height: 100%;
  overflow: visible;
}

.chart path {
  stroke-dasharray: 420;
  stroke-dashoffset: 420;
  animation: draw 2.2s ease forwards;
}

.chart circle {
  opacity: 0;
  animation: fade .6s ease forwards 1.8s;
}

@keyframes draw {
  to {
    stroke-dashoffset: 0;
  }
}

@keyframes fade {
  to {
    opacity: 1;
  }
}

.dash-list {
  display: grid;
  gap: 12px;
  margin-top: 18px;
}

.dash-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 12px 14px;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, .75);
  border-radius: 18px;
  color: #53657c;
}

.dash-row b {
  color: #11213a;
}

/* Floating UI Elements */
.float-ui {
  position: absolute;
  padding: 18px;
  border-radius: 26px;
  border: 1px solid rgba(255, 255, 255, .9);
  background: rgba(255, 255, 255, .82);
  backdrop-filter: blur(22px);
  box-shadow: var(--shadow-sm);
  animation: smallFloat 6s ease-in-out infinite;
}

.float-ui h3 {
  margin: 8px 0 4px;
  font-size: 18px;
  letter-spacing: -.03em;
}

.float-ui p {
  margin: 0;
  color: #6a7a8f;
  font-size: 13px;
  line-height: 1.45;
}

.f1 {
  right: 0;
  top: 6px;
  width: 218px;
}

.f2 {
  left: 0;
  bottom: 42px;
  width: 232px;
  animation-delay: -2s;
}

.f3 {
  right: 26px;
  bottom: 8px;
  width: 224px;
  animation-delay: -4s;
}

@keyframes smallFloat {
  50% {
    transform: translateY(-13px);
  }
}

.icon {
  display: inline-grid;
  place-items: center;
  width: 42px;
  height: 42px;
  border-radius: 16px;
  background: #edf5ff;
  font-size: 21px;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, .8);
}

.icon-green {
  background: var(--green-light);
  color: #2a8a5e;
}

.icon-gold {
  background: #fff8e7;
  color: #b8943a;
}

/* Section Styles */
section {
  padding: 92px 0;
}

.section-head {
  max-width: 780px;
  margin-bottom: 34px;
}

.section-head-center {
  max-width: 780px;
  margin: 0 auto 34px;
  text-align: center;
}

.kicker {
  font-size: 13px;
  font-weight: 900;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: #2f73ff;
}

.section-head p,
.section-head-center p {
  font-size: 18px;
  line-height: 1.75;
  color: var(--muted);
  margin: 0;
}

/* Grid Layouts */
.grid {
  display: grid;
  gap: 22px;
}

.trust {
  grid-template-columns: repeat(4, 1fr);
}

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

.process {
  grid-template-columns: repeat(4, 1fr);
  counter-reset: item;
}

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

/* Cards */
.card {
  position: relative;
  overflow: hidden;
  padding: 28px;
  border-radius: var(--radius);
  background: linear-gradient(180deg, rgba(255, 255, 255, .92), rgba(255, 255, 255, .72));
  border: 1px solid rgba(255, 255, 255, .88);
  box-shadow: var(--shadow-sm);
  transition: .32s;
}

.card:before {
  content: "";
  position: absolute;
  inset: -1px;
  background: radial-gradient(circle at 20% 0%, rgba(47, 115, 255, .13), transparent 34%),
    radial-gradient(circle at 85% 20%, rgba(215, 180, 106, .1), transparent 32%);
  opacity: 0;
  transition: .32s;
}

.card>* {
  position: relative;
}

.card:hover {
  transform: translateY(-9px);
  box-shadow: 0 32px 90px rgba(35, 88, 160, .15);
  border-color: rgba(47, 115, 255, .16);
}

.card:hover:before {
  opacity: 1;
}

.card h3 {
  font-size: 22px;
  letter-spacing: -.04em;
  margin: 18px 0 10px;
}

.card p {
  color: #65768c;
  line-height: 1.72;
  margin: 0;
}

.card a {
  display: inline-flex;
  margin-top: 22px;
  color: #2f73ff;
  font-weight: 880;
}

/* Service Detail Cards */
.service-detail-card {
  padding: 36px;
  border-radius: var(--radius-xl);
  background: linear-gradient(180deg, rgba(255, 255, 255, .95), rgba(255, 255, 255, .8));
  border: 1px solid rgba(255, 255, 255, .9);
  box-shadow: var(--shadow);
  margin-bottom: 22px;
}

.service-detail-card h3 {
  font-size: 26px;
  margin-top: 0;
}

.service-detail-card ul {
  margin: 20px 0 0;
  padding-left: 22px;
  color: #65768c;
  line-height: 1.9;
}

.service-detail-card li {
  margin-bottom: 8px;
}

/* Steps */
.step {
  position: relative;
  padding: 30px;
  border-radius: 30px;
  background: #fff;
  border: 1px solid var(--line);
  box-shadow: var(--shadow-sm);
}

.step:before {
  counter-increment: item;
  content: "0" counter(item);
  display: grid;
  place-items: center;
  width: 50px;
  height: 50px;
  border-radius: 18px;
  background: linear-gradient(135deg, #edf5ff, #fff);
  border: 1px solid var(--line);
  color: #2f73ff;
  font-weight: 950;
  margin-bottom: 18px;
}

.step h3 {
  letter-spacing: -.03em;
}

.step p {
  color: var(--muted);
  line-height: 1.7;
}

/* Feature Band */
.feature-band {
  border-radius: var(--radius-xl);
  padding: 46px;
  background: linear-gradient(135deg, rgba(255, 255, 255, .92), rgba(239, 246, 255, .84));
  border: 1px solid rgba(255, 255, 255, .9);
  box-shadow: var(--shadow);
  position: relative;
  overflow: hidden;
}

.feature-band:before {
  content: "";
  position: absolute;
  width: 420px;
  height: 420px;
  border-radius: 999px;
  background: rgba(47, 115, 255, .12);
  filter: blur(34px);
  right: -160px;
  top: -180px;
}

.split {
  display: grid;
  grid-template-columns: .92fr 1.08fr;
  gap: 36px;
  align-items: center;
}

.panel {
  position: relative;
  background: rgba(255, 255, 255, .82);
  border: 1px solid rgba(255, 255, 255, .95);
  box-shadow: var(--shadow-sm);
  border-radius: 32px;
  padding: 34px;
}

.list {
  display: grid;
  gap: 14px;
  margin-top: 20px;
}

.list div {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  color: #53657c;
  line-height: 1.6;
}

.check {
  width: 25px;
  height: 25px;
  border-radius: 9px;
  background: #eaf3ff;
  color: #2f73ff;
  display: grid;
  place-items: center;
  font-weight: 950;
  flex: 0 0 auto;
}

/* FAQ */
.faq-item {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 24px;
  padding: 24px;
  box-shadow: var(--shadow-sm);
}

.faq-item h3 {
  margin-top: 0;
  letter-spacing: -.03em;
  font-size: 18px;
}

.faq-item p {
  color: var(--muted);
  line-height: 1.7;
  margin-bottom: 0;
}

/* FAQ Accordion */
.accordion {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 24px;
  padding: 24px;
  box-shadow: var(--shadow-sm);
  margin-bottom: 16px;
  cursor: pointer;
  transition: .25s;
}

.accordion:hover {
  border-color: rgba(47, 115, 255, .3);
}

.accordion-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.accordion-header h3 {
  margin: 0;
  font-size: 18px;
}

.accordion-icon {
  font-size: 20px;
  color: var(--blue);
  transition: transform .3s;
  flex-shrink: 0;
  margin-left: 12px;
}

.accordion.open .accordion-icon {
  transform: rotate(45deg);
}

.accordion-body {
  max-height: 0;
  overflow: hidden;
  transition: max-height .4s ease, padding .4s ease;
}

.accordion.open .accordion-body {
  max-height: 500px;
  padding-top: 16px;
}

.accordion-body p {
  color: var(--muted);
  line-height: 1.7;
  margin: 0;
}

/* Contact */
.contact {
  display: grid;
  grid-template-columns: .92fr 1.08fr;
  gap: 28px;
}

.contact-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 34px;
  padding: 34px;
  box-shadow: var(--shadow);
}

.contact-info-grid {
  display: grid;
  gap: 20px;
  margin-top: 24px;
}

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

.contact-info-item .icon {
  width: 48px;
  height: 48px;
  font-size: 22px;
  flex-shrink: 0;
}

.contact-info-item h4 {
  margin: 0 0 4px;
  font-size: 16px;
}

.contact-info-item p {
  margin: 0;
  color: var(--muted);
  font-size: 15px;
}

/* Form Elements */
.input {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 18px;
  padding: 16px 18px;
  font: inherit;
  background: #fbfdff;
  margin-bottom: 14px;
  outline: none;
  transition: .2s;
}

.input:focus {
  border-color: rgba(47, 115, 255, .42);
  box-shadow: 0 0 0 5px rgba(47, 115, 255, .08);
  background: #fff;
}

.textarea {
  min-height: 145px;
  resize: vertical;
}

/* CTA Section */
.cta {
  position: relative;
  text-align: center;
  padding: 70px 34px;
  border-radius: 46px;
  background: linear-gradient(135deg, #fff, #eef6ff);
  border: 1px solid rgba(255, 255, 255, .9);
  box-shadow: var(--shadow);
  overflow: hidden;
}

.cta:before,
.cta:after {
  content: "";
  position: absolute;
  border-radius: 999px;
  filter: blur(34px);
}

.cta:before {
  width: 360px;
  height: 360px;
  left: -150px;
  top: -130px;
  background: rgba(47, 115, 255, .15);
}

.cta:after {
  width: 280px;
  height: 280px;
  right: -120px;
  bottom: -100px;
  background: rgba(215, 180, 106, .14);
}

.cta>* {
  position: relative;
}

.cta h2 {
  font-size: clamp(36px, 5.2vw, 64px);
  line-height: 1.04;
  letter-spacing: -.07em;
  margin: 0 0 16px;
}

.cta p {
  max-width: 760px;
  margin: 0 auto 28px;
  color: var(--muted);
  font-size: 18px;
  line-height: 1.75;
}

.disclaimer-small {
  font-size: 13px !important;
  margin-top: 20px !important;
  color: #7a8898 !important;
}

/* Legal Sections */
.legal-section {
  padding-top: 40px;
}

.legal-tabs {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin-bottom: 20px;
}

.legal-tabs a {
  padding: 11px 14px;
  border-radius: 999px;
  background: #fff;
  border: 1px solid var(--line);
  color: #40536d;
  font-weight: 800;
}

.legal-tabs a:hover {
  background: #eef5ff;
  color: #2f73ff;
}

.legal-tabs a.active {
  background: var(--blue);
  color: #fff;
  border-color: var(--blue);
}

.legal-box {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 34px;
  padding: 42px;
  box-shadow: var(--shadow);
  line-height: 1.82;
  color: #465a72;
  max-width: 920px;
}

.legal-box h2 {
  font-size: 32px;
  letter-spacing: -.045em;
  color: var(--ink);
}

.legal-box h3 {
  color: var(--ink);
  margin-top: 30px;
}

.legal-box p {
  margin: 12px 0;
}

.legal-divider {
  border: 0;
  border-top: 1px solid var(--line);
  margin: 24px 0;
}

/* KYC / Trust Section */
.trust-section {
  background: linear-gradient(135deg, rgba(255, 255, 255, .95), rgba(239, 246, 255, .9));
  border-radius: var(--radius-xl);
  padding: 46px;
  border: 1px solid rgba(255, 255, 255, .9);
  box-shadow: var(--shadow);
}

.trust-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
  margin-top: 28px;
}

.trust-item {
  display: flex;
  gap: 16px;
  align-items: flex-start;
  padding: 20px;
  background: rgba(255, 255, 255, .8);
  border-radius: 20px;
  border: 1px solid var(--line);
}

.trust-item .icon {
  width: 48px;
  height: 48px;
  font-size: 24px;
  flex-shrink: 0;
}

.trust-item h4 {
  margin: 0 0 6px;
  font-size: 17px;
}

.trust-item p {
  margin: 0;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.6;
}

/* About Page Specific */
.about-hero {
  padding: 60px 0 80px;
}

.about-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
  margin-top: 36px;
}

.stat-card {
  text-align: center;
  padding: 32px 24px;
  background: #fff;
  border-radius: var(--radius);
  border: 1px solid var(--line);
  box-shadow: var(--shadow-sm);
}

.stat-card strong {
  display: block;
  font-size: 42px;
  color: var(--blue);
  letter-spacing: -.05em;
  margin-bottom: 8px;
}

.stat-card span {
  color: var(--muted);
  font-size: 15px;
}

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

.team-card {
  text-align: center;
  padding: 32px;
  background: #fff;
  border-radius: var(--radius);
  border: 1px solid var(--line);
  box-shadow: var(--shadow-sm);
  transition: .3s;
}

.team-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow);
}

.team-avatar {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--blue), var(--blue-2));
  display: grid;
  place-items: center;
  color: #fff;
  font-size: 32px;
  font-weight: 700;
  margin: 0 auto 16px;
}

.team-card h4 {
  margin: 0 0 6px;
  font-size: 18px;
}

.team-card span {
  color: var(--blue);
  font-size: 14px;
  font-weight: 600;
}

.team-card p {
  color: var(--muted);
  font-size: 14px;
  margin-top: 10px;
}

/* Page Header for subpages */
.page-header {
  padding: 60px 0 50px;
  text-align: center;
}

.page-header h1 {
  font-size: clamp(38px, 5.5vw, 68px);
  margin-bottom: 16px;
}

.page-header .lead {
  max-width: 640px;
  margin: 0 auto;
}

/* Testimonials */
.testimonial-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}

.testimonial-card {
  padding: 28px;
  background: #fff;
  border-radius: var(--radius);
  border: 1px solid var(--line);
  box-shadow: var(--shadow-sm);
}

.testimonial-card .stars {
  color: var(--gold);
  font-size: 18px;
  margin-bottom: 12px;
}

.testimonial-card p {
  color: #53657c;
  line-height: 1.7;
  font-style: italic;
  margin: 0 0 16px;
}

.testimonial-card .author {
  font-weight: 700;
  color: var(--ink);
  font-size: 15px;
}

.testimonial-card .company {
  color: var(--muted);
  font-size: 13px;
}

/* Footer */
footer {
  margin-top: 80px;
  padding: 58px 0 28px;
  border-top: 1px solid var(--line);
  background: rgba(255, 255, 255, .75);
  backdrop-filter: blur(18px);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.2fr .8fr .8fr .8fr;
  gap: 34px;
}

.footer-grid p,
.footer-grid a {
  color: #65768c;
  line-height: 1.85;
}

.footer-grid h4 {
  margin: 0 0 12px;
  color: var(--ink);
}

.footer-bottom {
  margin-top: 32px;
  padding-top: 22px;
  border-top: 1px solid var(--line);
  color: #7b8999;
  font-size: 13px;
}

.footer-legal a {
  display: inline-block;
  margin-right: 12px;
  color: #2f73ff;
  font-weight: 800;
}

/* Cookie Banner */
.cookie {
  position: fixed;
  left: 24px;
  right: 24px;
  bottom: 20px;
  z-index: 90;
  max-width: 1040px;
  margin: auto;
  display: flex;
  gap: 16px;
  align-items: center;
  justify-content: space-between;
  background: rgba(255, 255, 255, .9);
  border: 1px solid rgba(255, 255, 255, .95);
  box-shadow: 0 22px 80px rgba(35, 88, 160, .18);
  backdrop-filter: blur(24px);
  border-radius: 24px;
  padding: 18px 20px;
  color: #53657c;
}

.cookie button {
  white-space: nowrap;
  padding: 13px 18px;
}

/* Scroll Reveal */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity .75s ease, transform .75s ease;
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* SEO Enhancements */
.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  border: 0;
}

.breadcrumb-nav {
  padding: 16px 0;
}

.breadcrumb-nav ol {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  font-size: 13px;
  color: var(--muted);
}

.breadcrumb-nav a {
  color: var(--blue);
  font-weight: 600;
}

.breadcrumb-nav li:not(:last-child):after {
  content: "/";
  margin-left: 8px;
  color: var(--line-strong);
}

/* Pricing Table */
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}

.pricing-card {
  padding: 36px 28px;
  background: #fff;
  border-radius: var(--radius);
  border: 1px solid var(--line);
  box-shadow: var(--shadow-sm);
  text-align: center;
  transition: .3s;
}

.pricing-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow);
}

.pricing-card.featured {
  border-color: var(--blue);
  position: relative;
}

.pricing-card.featured:before {
  content: "Beliebt";
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--blue);
  color: #fff;
  padding: 6px 16px;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 800;
}

.pricing-card h3 {
  margin-top: 0;
}

.pricing-card .price {
  font-size: 42px;
  font-weight: 800;
  color: var(--ink);
  letter-spacing: -.05em;
  margin: 16px 0;
}

.pricing-card .price span {
  font-size: 16px;
  color: var(--muted);
  font-weight: 500;
}

.pricing-card ul {
  text-align: left;
  padding-left: 0;
  list-style: none;
  margin: 24px 0;
}

.pricing-card ul li {
  padding: 8px 0;
  color: #53657c;
  border-bottom: 1px solid var(--line);
}

.pricing-card ul li:before {
  content: "✓";
  color: var(--green);
  font-weight: 800;
  margin-right: 10px;
}

/* Print Styles */
@media print {
  .nav,
  .cookie,
  .hero-actions,
  .btn {
    display: none !important;
  }

  body {
    background: #fff !important;
  }

  .legal-box {
    box-shadow: none;
    border: 1px solid #ccc;
  }
}

/* Responsive */
@media (max-width: 980px) {
  .menu-btn {
    display: block;
  }

  .nav-links {
    display: none;
    position: fixed;
    top: 104px;
    left: 4vw;
    right: 4vw;
    flex-direction: column;
    align-items: stretch;
    background: #fff;
    border: 1px solid var(--line);
    box-shadow: var(--shadow);
    border-radius: 28px;
    padding: 14px;
    max-height: 70vh;
    overflow-y: auto;
  }

  .nav-links.open {
    display: flex;
  }

  .dropdown-menu {
    position: static;
    opacity: 1;
    transform: none;
    pointer-events: auto;
    box-shadow: none;
    background: #f7faff;
    margin-top: 6px;
    width: 100%;
  }

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

  .visual {
    min-height: 520px;
  }

  .trust,
  .services,
  .process,
  .faq-grid,
  .footer-grid,
  .trust-grid,
  .about-stats,
  .team-grid,
  .testimonial-grid,
  .pricing-grid {
    grid-template-columns: 1fr;
  }

  .hero {
    padding-top: 46px;
  }

  section {
    padding: 68px 0;
  }

  .cookie {
    flex-direction: column;
    align-items: flex-start;
  }

  .legal-box {
    padding: 28px;
  }
}

@media (max-width: 560px) {
  h1 {
    font-size: 44px;
  }

  .score strong {
    font-size: 48px;
  }

  .dashboard {
    inset: 54px 0 auto 0;
  }

  .float-ui {
    position: relative;
    display: inline-block;
    margin: 10px 8px 0 0;
  }

  .f1,
  .f2,
  .f3 {
    left: auto;
    right: auto;
    top: auto;
    bottom: auto;
    width: calc(50% - 12px);
  }

  .visual {
    min-height: auto;
    padding-top: 440px;
  }

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

  .nav {
    height: 68px;
  }

  .brand {
    font-size: 20px;
  }

  .logo {
    width: 40px;
    height: 40px;
  }
}
