/* MR.RDP — original-touch redesign
   Clean, dependency-light and responsive. */

:root {
  --ink: #22105f;
  --ink-2: #32187a;
  --brand: #4c42e8;
  --brand-2: #1f8df4;
  --cyan: #05badf;
  --pink: #f44786;
  --orange: #ff8b5c;
  --green: #14b789;
  --text: #4c526c;
  --muted: #717792;
  --line: #e6e8f4;
  --soft: #f7f8ff;
  --soft-blue: #eef6ff;
  --white: #ffffff;
  --nav-height: 78px;
  --topbar-height: 34px;
  --shadow-sm: 0 10px 28px rgba(34, 16, 95, 0.08);
  --shadow-md: 0 18px 55px rgba(34, 16, 95, 0.13);
  --shadow-lg: 0 30px 90px rgba(18, 16, 82, 0.24);
  --radius-sm: 12px;
  --radius-md: 20px;
  --radius-lg: 30px;
  --container: 1180px;
  --ease: cubic-bezier(.2,.7,.2,1);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; scroll-padding-top: calc(var(--nav-height) + 24px); overflow-x: hidden; }
body {
  margin: 0;
  color: var(--text);
  background: var(--white);
  font-family: "Open Sans", Inter, Arial, sans-serif;
  font-size: 15px;
  line-height: 1.75;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}
body.nav-open { overflow: hidden; }
img { display: block; max-width: 100%; height: auto; }
a { color: inherit; text-decoration: none; }
button, input, select, textarea { font: inherit; }
button { border: 0; }
h1, h2, h3, h4, h5, h6 {
  margin: 0;
  color: var(--ink);
  font-family: "Dosis", "Trebuchet MS", Arial, sans-serif;
  font-weight: 800;
  line-height: 1.15;
  letter-spacing: -.018em;
}
p { margin: 0 0 1rem; }
ul, ol { margin: 0; padding: 0; list-style: none; }
::selection { color: #fff; background: var(--brand); }

.container { width: min(calc(100% - 40px), var(--container)); margin-inline: auto; }
.section { position: relative; padding: 100px 0; }
.section-sm { padding: 74px 0; }
.section-soft { background: linear-gradient(180deg, #f9faff 0%, #f3f7ff 100%); }
.section-white { background: #fff; }
.text-center { text-align: center; }
.hidden { display: none !important; }

.skip-link {
  position: fixed; left: 16px; top: -80px; z-index: 99999;
  padding: 11px 16px; border-radius: 8px; color: #fff; background: var(--ink);
  transition: top .2s ease;
}
.skip-link:focus { top: 12px; }

/* Header */
.site-topbar {
  min-height: var(--topbar-height);
  display: flex; align-items: center;
  color: rgba(255,255,255,.86);
  background: #160943;
  font-size: 12px;
}
.topbar-inner { display: flex; align-items: center; justify-content: space-between; gap: 18px; }
.topbar-group { display: flex; align-items: center; gap: 22px; flex-wrap: wrap; }
.topbar-item, .topbar-link { display: inline-flex; align-items: center; gap: 7px; }
.topbar-item i, .topbar-link i { color: #67d7ff; font-size: 15px; }
.topbar-link:hover { color: #fff; }

.site-header {
  position: sticky; top: 0; z-index: 1000;
  background: linear-gradient(108deg, #241064 0%, #3c25aa 52%, #176fd1 100%);
  box-shadow: 0 8px 30px rgba(27, 13, 88, .16);
  transition: box-shadow .25s ease, background .25s ease;
}
.site-header.is-scrolled { box-shadow: 0 14px 36px rgba(20, 9, 70, .25); }
.navbar { min-height: var(--nav-height); display: flex; align-items: center; justify-content: space-between; gap: 24px; }
.site-logo { flex: 0 0 auto; display: inline-flex; align-items: center; padding: 10px 0; }
.site-logo img { width: 158px; height: auto; object-fit: contain; }
.site-nav { display: flex; align-items: center; gap: 4px; margin-left: auto; }
.nav-list { display: flex; align-items: center; gap: 2px; }
.nav-item { position: relative; }
.nav-link, .nav-trigger {
  display: inline-flex; align-items: center; gap: 5px;
  min-height: 46px; padding: 0 13px;
  border-radius: 10px; color: rgba(255,255,255,.92);
  background: transparent; cursor: pointer;
  font-weight: 700; font-size: 13px; white-space: nowrap;
  transition: background .2s ease, color .2s ease, transform .2s ease;
}
.nav-link:hover, .nav-trigger:hover, .nav-link.active, .nav-trigger.active {
  color: #fff; background: rgba(255,255,255,.11);
}
.nav-trigger i { font-size: 17px; transition: transform .2s ease; }
.nav-item.open > .nav-trigger i { transform: rotate(180deg); }
.dropdown-menu {
  position: absolute; left: 0; top: calc(100% + 12px); z-index: 100;
  min-width: 255px; padding: 10px;
  border: 1px solid rgba(76,66,232,.13); border-radius: 16px;
  background: rgba(255,255,255,.99); box-shadow: var(--shadow-md);
  opacity: 0; visibility: hidden; transform: translateY(8px);
  transition: .2s var(--ease);
}
.dropdown-menu::before { content: ""; position: absolute; inset: -14px 0 auto; height: 16px; }
.nav-item:hover > .dropdown-menu, .nav-item.open > .dropdown-menu {
  opacity: 1; visibility: visible; transform: translateY(0);
}
.dropdown-menu a {
  display: flex; align-items: center; gap: 11px;
  padding: 10px 11px; border-radius: 10px;
  color: var(--ink); font-size: 13px; font-weight: 700;
  transition: .18s ease;
}
.dropdown-menu a i { width: 28px; height: 28px; display: grid; place-items: center; flex: 0 0 28px; border-radius: 9px; color: var(--brand); background: #f0efff; font-size: 16px; }
.dropdown-menu a small { display: block; color: var(--muted); font-size: 10px; font-weight: 500; line-height: 1.35; }
.dropdown-menu a:hover, .dropdown-menu a.active { color: var(--brand); background: #f5f5ff; transform: translateX(2px); }
.nav-actions { display: flex; align-items: center; gap: 9px; margin-left: 8px; }
.header-login { color: #fff; font-weight: 700; font-size: 13px; padding: 10px 8px; }
.header-login:hover { color: #8fe4ff; }
.header-signup {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  min-height: 43px; padding: 0 17px; border-radius: 11px;
  color: var(--ink); background: #fff; font-size: 13px; font-weight: 800;
  box-shadow: 0 10px 25px rgba(9, 0, 67, .16);
  transition: transform .2s ease, box-shadow .2s ease;
}
.header-signup:hover { transform: translateY(-2px); box-shadow: 0 14px 30px rgba(9,0,67,.24); }
.nav-toggle {
  display: none; width: 44px; height: 44px; border-radius: 11px;
  align-items: center; justify-content: center; color: #fff;
  background: rgba(255,255,255,.12); cursor: pointer; font-size: 25px;
}
.mobile-backdrop { display: none; position: fixed; inset: 0; z-index: 998; background: rgba(16,7,52,.56); backdrop-filter: blur(3px); }

/* Common UI */
.eyebrow {
  display: inline-flex; align-items: center; gap: 8px;
  margin-bottom: 15px; color: var(--brand); text-transform: uppercase;
  font-size: 11px; font-weight: 800; letter-spacing: .15em;
}
.eyebrow::before { content: ""; width: 24px; height: 2px; border-radius: 9px; background: linear-gradient(90deg,var(--brand),var(--cyan)); }
.section-heading { max-width: 720px; margin-bottom: 42px; }
.section-heading.centered { margin-inline: auto; text-align: center; }
.section-heading.centered .eyebrow { justify-content: center; }
.section-heading h2 { font-size: clamp(34px, 4vw, 49px); margin-bottom: 17px; }
.section-heading p { color: var(--muted); font-size: 16px; }
.button-row { display: flex; align-items: center; flex-wrap: wrap; gap: 12px; }
.btn {
  position: relative; isolation: isolate;
  display: inline-flex; align-items: center; justify-content: center; gap: 9px;
  min-height: 48px; padding: 0 22px; border-radius: 12px;
  color: #fff; background: linear-gradient(100deg, var(--brand), var(--brand-2));
  font-weight: 800; font-size: 13px; line-height: 1;
  box-shadow: 0 13px 30px rgba(64,66,219,.24);
  overflow: hidden; transition: transform .22s ease, box-shadow .22s ease;
}
.btn::after { content: ""; position: absolute; inset: 0; z-index: -1; background: linear-gradient(100deg,var(--brand-2),var(--brand)); opacity: 0; transition: opacity .22s ease; }
.btn:hover { color: #fff; transform: translateY(-3px); box-shadow: 0 18px 35px rgba(64,66,219,.32); }
.btn:hover::after { opacity: 1; }
.btn-light { color: var(--ink); background: #fff; box-shadow: 0 13px 30px rgba(16,4,72,.16); }
.btn-light::after { background: #f3f8ff; }
.btn-outline { color: var(--brand); background: transparent; border: 1px solid rgba(76,66,232,.28); box-shadow: none; }
.btn-outline::after { background: #f0efff; }
.btn-outline:hover { color: var(--brand); box-shadow: none; }
.btn-white-outline { color: #fff; background: rgba(255,255,255,.06); border: 1px solid rgba(255,255,255,.32); box-shadow: none; }
.btn-white-outline::after { background: rgba(255,255,255,.1); }
.btn-sm { min-height: 42px; padding-inline: 17px; }
.text-link { display: inline-flex; align-items: center; gap: 7px; color: var(--brand); font-weight: 800; font-size: 13px; }
.text-link i { transition: transform .2s ease; }
.text-link:hover i { transform: translateX(4px); }
.icon-bubble { width: 50px; height: 50px; display: grid; place-items: center; border-radius: 15px; color: var(--brand); background: linear-gradient(145deg,#eeecff,#eaf7ff); font-size: 24px; }
.badge {
  display: inline-flex; align-items: center; gap: 7px;
  padding: 7px 11px; border-radius: 999px; color: var(--brand);
  background: #f0efff; font-size: 11px; font-weight: 800;
}
.badge i { font-size: 14px; }

/* Hero */
.hero {
  position: relative; overflow: hidden; min-height: 690px;
  color: #fff;
  background: linear-gradient(120deg, #291071 0%, #4b2bc7 48%, #1888e7 100%);
}
.hero::before {
  content: ""; position: absolute; inset: 0;
  background:
    radial-gradient(circle at 85% 14%, rgba(113,236,255,.28), transparent 25%),
    radial-gradient(circle at 12% 84%, rgba(244,71,134,.22), transparent 26%),
    linear-gradient(rgba(255,255,255,.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.035) 1px, transparent 1px);
  background-size: auto, auto, 58px 58px, 58px 58px;
  mask-image: linear-gradient(to bottom, #000, rgba(0,0,0,.7), transparent);
}
.hero::after {
  content: ""; position: absolute; left: -3%; right: -3%; bottom: -2px; height: 88px;
  background: #fff; clip-path: polygon(0 69%, 16% 54%, 34% 68%, 54% 42%, 73% 65%, 100% 47%, 100% 100%, 0 100%);
}
.hero-grid { position: relative; z-index: 2; min-height: 690px; display: grid; grid-template-columns: 1.02fr .98fr; align-items: center; gap: 40px; padding: 80px 0 110px; }
.hero-copy { max-width: 620px; }
.hero-kicker { display: inline-flex; align-items: center; gap: 9px; margin-bottom: 22px; padding: 8px 13px; border: 1px solid rgba(255,255,255,.24); border-radius: 999px; background: rgba(255,255,255,.08); backdrop-filter: blur(9px); color: #fff; font-size: 11px; font-weight: 800; letter-spacing: .08em; text-transform: uppercase; }
.hero-kicker i { color: #69e5ff; font-size: 16px; }
.hero h1 { color: #fff; font-size: clamp(48px, 5.3vw, 74px); line-height: 1.01; letter-spacing: -.045em; margin-bottom: 22px; text-wrap: balance; }
.hero h1 span { color: #8feaff; }
.hero-copy > p { max-width: 590px; color: rgba(255,255,255,.84); font-size: 17px; line-height: 1.75; margin-bottom: 30px; }
.hero .button-row { margin-bottom: 30px; }
.hero-points { display: flex; align-items: center; flex-wrap: wrap; gap: 10px 22px; }
.hero-points span { display: inline-flex; align-items: center; gap: 7px; color: rgba(255,255,255,.84); font-size: 12px; font-weight: 700; }
.hero-points i { color: #77e9ff; font-size: 17px; }
.hero-visual { position: relative; min-height: 510px; display: grid; place-items: center; }
.hero-visual::before { content: ""; position: absolute; width: 440px; height: 440px; border-radius: 50%; border: 1px solid rgba(255,255,255,.16); animation: pulseRing 5s ease-in-out infinite; }
.hero-visual::after { content: ""; position: absolute; width: 350px; height: 350px; border-radius: 50%; background: rgba(255,255,255,.08); filter: blur(1px); }
.hero-main-image { position: relative; z-index: 2; width: min(620px, 105%); filter: drop-shadow(0 32px 42px rgba(11,4,71,.28)); animation: heroFloat 7s ease-in-out infinite; }
.float-card {
  position: absolute; z-index: 4; display: flex; align-items: center; gap: 10px;
  min-width: 175px; padding: 12px 14px; border: 1px solid rgba(255,255,255,.27); border-radius: 14px;
  color: #fff; background: rgba(24,14,91,.56); backdrop-filter: blur(12px); box-shadow: 0 18px 35px rgba(9,5,55,.2);
  animation: floatCard 5s ease-in-out infinite;
}
.float-card i { width: 34px; height: 34px; display: grid; place-items: center; border-radius: 10px; color: #fff; background: linear-gradient(145deg,var(--pink),var(--orange)); font-size: 18px; }
.float-card b { display: block; font-size: 12px; line-height: 1.2; }
.float-card small { display: block; margin-top: 3px; color: rgba(255,255,255,.72); font-size: 9px; }
.float-card.one { left: 0; top: 16%; }
.float-card.two { right: 0; bottom: 18%; animation-delay: -2s; }
.float-card.two i { background: linear-gradient(145deg,var(--cyan),var(--brand-2)); }
.hero-orb { position: absolute; border-radius: 50%; opacity: .8; filter: blur(.2px); animation: drift 8s ease-in-out infinite; }
.hero-orb.one { width: 14px; height: 14px; left: 6%; bottom: 18%; background: #ffcb5b; }
.hero-orb.two { width: 24px; height: 24px; right: 13%; top: 9%; border: 5px solid #85ecff; background: transparent; animation-delay: -3s; }
.hero-orb.three { width: 10px; height: 10px; right: 5%; bottom: 37%; background: #ff6ea2; animation-delay: -1s; }

/* Inner hero */
.page-hero { position: relative; overflow: hidden; color: #fff; background: linear-gradient(115deg,#251064 0%,#4a28bd 53%,#1684df 100%); }
.page-hero::before { content: ""; position: absolute; inset: 0; background: radial-gradient(circle at 78% 20%,rgba(122,235,255,.2),transparent 28%), radial-gradient(circle at 15% 80%,rgba(247,72,139,.18),transparent 24%); }
.page-hero::after { content: ""; position: absolute; left: -2%; right: -2%; bottom: -1px; height: 58px; background: #fff; clip-path: polygon(0 65%,22% 46%,43% 67%,67% 38%,100% 65%,100% 100%,0 100%); }
.page-hero-grid { position: relative; z-index: 2; min-height: 485px; display: grid; grid-template-columns: 1.05fr .75fr; align-items: center; gap: 54px; padding: 68px 0 85px; }
.breadcrumb { display: flex; align-items: center; flex-wrap: wrap; gap: 8px; margin-bottom: 20px; color: rgba(255,255,255,.73); font-size: 11px; font-weight: 700; }
.breadcrumb a:hover { color: #fff; }
.breadcrumb i { font-size: 14px; }
.page-hero h1 { color: #fff; font-size: clamp(46px,5vw,66px); letter-spacing: -.04em; margin-bottom: 19px; }
.page-hero-copy > p { max-width: 690px; color: rgba(255,255,255,.84); font-size: 16px; margin-bottom: 24px; }
.page-hero-points { display: grid; grid-template-columns: repeat(2,minmax(0,1fr)); gap: 9px 18px; margin-bottom: 27px; }
.page-hero-points li { display: flex; align-items: center; gap: 8px; color: rgba(255,255,255,.84); font-size: 12px; font-weight: 700; }
.page-hero-points i { color: #83e9ff; font-size: 17px; }
.page-hero-visual { position: relative; min-height: 350px; display: grid; place-items: center; }
.page-hero-visual::before { content: ""; position: absolute; width: 330px; height: 330px; border-radius: 50%; background: rgba(255,255,255,.075); border: 1px solid rgba(255,255,255,.15); animation: pulseRing 5s ease-in-out infinite; }
.page-hero-visual img { position: relative; z-index: 2; max-height: 340px; max-width: 100%; object-fit: contain; filter: drop-shadow(0 28px 38px rgba(10,5,66,.28)); animation: heroFloat 7s ease-in-out infinite; }
.page-hero-label { position: absolute; right: 0; bottom: 45px; z-index: 3; padding: 10px 13px; border: 1px solid rgba(255,255,255,.23); border-radius: 12px; background: rgba(28,13,93,.55); backdrop-filter: blur(10px); color: #fff; font-size: 10px; font-weight: 800; box-shadow: 0 14px 32px rgba(8,3,58,.2); }

/* Trust strip */
.trust-strip { position: relative; z-index: 4; margin-top: -36px; }
.trust-grid { display: grid; grid-template-columns: repeat(4,1fr); border: 1px solid var(--line); border-radius: 20px; background: #fff; box-shadow: var(--shadow-md); overflow: hidden; }
.trust-item { position: relative; display: flex; align-items: center; gap: 14px; padding: 23px 22px; }
.trust-item:not(:last-child)::after { content: ""; position: absolute; right: 0; top: 22%; bottom: 22%; width: 1px; background: var(--line); }
.trust-item i { width: 44px; height: 44px; display: grid; place-items: center; flex: 0 0 44px; border-radius: 13px; color: var(--brand); background: linear-gradient(145deg,#f0efff,#eaf7ff); font-size: 22px; }
.trust-item b { display: block; color: var(--ink); font-family: "Dosis","Trebuchet MS",sans-serif; font-size: 16px; }
.trust-item span { display: block; color: var(--muted); font-size: 10px; line-height: 1.45; }

/* Service cards */
.service-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 20px; }
.service-card {
  position: relative; overflow: hidden; min-height: 300px; padding: 28px;
  border: 1px solid var(--line); border-radius: var(--radius-md); background: #fff;
  box-shadow: 0 8px 30px rgba(34,16,95,.055);
  transition: transform .28s var(--ease), box-shadow .28s var(--ease), border-color .28s ease;
}
.service-card::before { content: ""; position: absolute; right: -52px; top: -52px; width: 135px; height: 135px; border-radius: 50%; background: linear-gradient(145deg,rgba(76,66,232,.11),rgba(5,186,223,.05)); transition: transform .35s ease; }
.service-card:hover { transform: translateY(-8px); border-color: rgba(76,66,232,.25); box-shadow: var(--shadow-md); }
.service-card:hover::before { transform: scale(1.25); }
.service-card .icon-bubble { margin-bottom: 22px; }
.service-card h3 { font-size: 24px; margin-bottom: 12px; }
.service-card p { color: var(--muted); font-size: 13px; margin-bottom: 21px; }
.service-card-meta { display: flex; align-items: center; justify-content: space-between; gap: 12px; margin-top: auto; padding-top: 18px; border-top: 1px solid var(--line); }
.service-card-meta span { color: var(--ink); font-size: 11px; font-weight: 800; }
.service-card-meta strong { color: var(--brand); font-size: 15px; }
.service-card .text-link { margin-top: 20px; }

/* Split sections */
.split-grid { display: grid; grid-template-columns: .92fr 1.08fr; gap: 76px; align-items: center; }
.split-grid.reverse { grid-template-columns: 1.08fr .92fr; }
.split-grid.reverse .split-visual { order: 2; }
.split-visual { position: relative; min-height: 470px; display: grid; place-items: center; }
.split-visual::before { content: ""; position: absolute; width: 400px; height: 400px; border-radius: 36% 64% 61% 39% / 41% 38% 62% 59%; background: linear-gradient(145deg,#f0efff,#eaf8ff); animation: morph 9s ease-in-out infinite; }
.split-visual img { position: relative; z-index: 2; max-height: 410px; object-fit: contain; filter: drop-shadow(0 24px 30px rgba(32,17,103,.13)); }
.split-content h2 { font-size: clamp(35px,4vw,50px); margin: 5px 0 18px; }
.split-content > p { color: var(--muted); font-size: 15px; }
.check-list { display: grid; grid-template-columns: repeat(2,minmax(0,1fr)); gap: 12px 18px; margin: 25px 0 29px; }
.check-list li { display: flex; align-items: flex-start; gap: 9px; color: var(--ink); font-size: 12px; font-weight: 700; }
.check-list i { flex: 0 0 20px; width: 20px; height: 20px; display: grid; place-items: center; border-radius: 50%; color: #fff; background: linear-gradient(145deg,var(--brand),var(--brand-2)); font-size: 13px; margin-top: 2px; }
.mini-stats { display: grid; grid-template-columns: repeat(3,1fr); gap: 12px; margin-top: 30px; }
.mini-stat { padding: 16px; border: 1px solid var(--line); border-radius: 14px; background: #fff; box-shadow: var(--shadow-sm); }
.mini-stat strong { display: block; color: var(--ink); font-family: "Dosis","Trebuchet MS",sans-serif; font-size: 24px; }
.mini-stat span { color: var(--muted); font-size: 10px; }

/* Pricing */
.pricing-section { background: linear-gradient(180deg,#f8f9ff 0%,#f1f6ff 100%); }
.pricing-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 20px; align-items: stretch; }
.pricing-grid.six { grid-template-columns: repeat(3,1fr); }
.pricing-card {
  position: relative; overflow: hidden; display: flex; flex-direction: column;
  padding: 29px; border: 1px solid #e2e5f3; border-radius: 22px; background: #fff;
  box-shadow: 0 12px 35px rgba(34,16,95,.07);
  transition: transform .28s var(--ease), box-shadow .28s var(--ease), border-color .28s ease;
}
.pricing-card::before { content: ""; position: absolute; left: 0; top: 0; width: 100%; height: 4px; background: linear-gradient(90deg,var(--brand),var(--cyan)); transform: scaleX(0); transform-origin: left; transition: transform .3s ease; }
.pricing-card:hover { transform: translateY(-8px); border-color: rgba(76,66,232,.25); box-shadow: var(--shadow-md); }
.pricing-card:hover::before { transform: scaleX(1); }
.pricing-card.popular { border-color: rgba(76,66,232,.38); box-shadow: 0 22px 60px rgba(76,66,232,.16); }
.pricing-card.popular::before { transform: scaleX(1); }
.popular-tag { position: absolute; right: 18px; top: 18px; padding: 6px 10px; border-radius: 999px; color: #fff; background: linear-gradient(100deg,var(--pink),var(--orange)); font-size: 9px; font-weight: 800; letter-spacing: .08em; text-transform: uppercase; }
.plan-top { display: flex; align-items: flex-start; justify-content: space-between; gap: 15px; margin-bottom: 10px; }
.plan-top small { display: block; color: var(--brand); font-size: 9px; font-weight: 800; letter-spacing: .13em; text-transform: uppercase; }
.plan-top h3 { font-size: 25px; margin-top: 4px; }
.plan-top i { width: 44px; height: 44px; display: grid; place-items: center; flex: 0 0 44px; border-radius: 13px; color: var(--brand); background: #f0efff; font-size: 22px; }
.plan-price { display: flex; align-items: flex-end; gap: 4px; margin: 19px 0 14px; color: var(--ink); }
.plan-price sup { font-size: 17px; font-weight: 800; margin-bottom: 23px; }
.plan-price strong { font-family: "Dosis","Trebuchet MS",sans-serif; font-size: 49px; line-height: 1; letter-spacing: -.04em; }
.plan-price span { color: var(--muted); font-size: 10px; margin-bottom: 8px; }
.plan-summary { min-height: 48px; color: var(--muted); font-size: 11px; line-height: 1.55; }
.plan-features { display: grid; gap: 10px; margin: 20px 0 25px; padding-top: 20px; border-top: 1px solid var(--line); }
.plan-features li { display: flex; align-items: flex-start; gap: 9px; color: var(--text); font-size: 11px; }
.plan-features i { flex: 0 0 19px; width: 19px; height: 19px; display: grid; place-items: center; border-radius: 50%; color: var(--green); background: #eafaf4; font-size: 13px; margin-top: 1px; }
.pricing-card .btn { width: 100%; margin-top: auto; }
.pricing-note { display: flex; align-items: flex-start; gap: 10px; max-width: 900px; margin: 26px auto 0; padding: 14px 17px; border: 1px solid rgba(76,66,232,.14); border-radius: 13px; color: var(--muted); background: rgba(255,255,255,.7); font-size: 10px; }
.pricing-note i { color: var(--brand); font-size: 17px; margin-top: 1px; }

/* Features and use cases */
.feature-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 18px; }
.feature-card { padding: 25px; border: 1px solid var(--line); border-radius: 18px; background: #fff; transition: .25s var(--ease); }
.feature-card:hover { transform: translateY(-6px); border-color: rgba(76,66,232,.24); box-shadow: var(--shadow-sm); }
.feature-card .icon-bubble { width: 45px; height: 45px; font-size: 21px; margin-bottom: 18px; }
.feature-card h3 { font-size: 20px; margin-bottom: 9px; }
.feature-card p { color: var(--muted); font-size: 12px; margin: 0; }
.usecase-grid { display: grid; grid-template-columns: repeat(4,1fr); gap: 16px; }
.usecase-card { position: relative; overflow: hidden; padding: 25px 23px; border: 1px solid var(--line); border-radius: 18px; background: #fff; min-height: 205px; }
.usecase-number { position: absolute; right: 14px; top: 4px; color: rgba(76,66,232,.07); font-family: "Dosis","Trebuchet MS",sans-serif; font-size: 74px; font-weight: 800; line-height: 1; }
.usecase-card i { color: var(--brand); font-size: 26px; }
.usecase-card h3 { position: relative; font-size: 19px; margin: 25px 0 9px; }
.usecase-card p { position: relative; color: var(--muted); font-size: 11px; margin: 0; }

/* Steps */
.steps { display: grid; grid-template-columns: repeat(3,1fr); gap: 20px; counter-reset: steps; }
.step-card { position: relative; padding: 29px; border: 1px solid var(--line); border-radius: 19px; background: #fff; }
.step-card::after { content: ""; position: absolute; top: 48px; right: -21px; width: 42px; height: 2px; background: linear-gradient(90deg,var(--brand),transparent); }
.step-card:last-child::after { display: none; }
.step-icon { width: 52px; height: 52px; display: grid; place-items: center; border-radius: 15px; color: #fff; background: linear-gradient(145deg,var(--brand),var(--brand-2)); font-size: 23px; box-shadow: 0 12px 27px rgba(76,66,232,.22); }
.step-card b { position: absolute; right: 20px; top: 17px; color: rgba(76,66,232,.1); font-family: "Dosis","Trebuchet MS",sans-serif; font-size: 45px; }
.step-card h3 { font-size: 21px; margin: 22px 0 9px; }
.step-card p { color: var(--muted); font-size: 12px; margin: 0; }

/* FAQ */
.faq-layout { display: grid; grid-template-columns: .72fr 1.28fr; gap: 66px; align-items: start; }
.faq-visual { position: sticky; top: 118px; padding: 35px; border-radius: 26px; background: linear-gradient(145deg,#f0efff,#ebf8ff); }
.faq-visual img { max-height: 310px; margin: 0 auto; object-fit: contain; filter: drop-shadow(0 20px 25px rgba(34,16,95,.1)); }
.faq-list { display: grid; gap: 11px; }
.faq-item { border: 1px solid var(--line); border-radius: 14px; background: #fff; overflow: hidden; transition: border-color .2s ease, box-shadow .2s ease; }
.faq-item.open { border-color: rgba(76,66,232,.26); box-shadow: var(--shadow-sm); }
.faq-question { width: 100%; display: flex; align-items: center; justify-content: space-between; gap: 18px; padding: 18px 20px; color: var(--ink); background: transparent; cursor: pointer; text-align: left; font-weight: 800; font-size: 13px; }
.faq-question i { flex: 0 0 28px; width: 28px; height: 28px; display: grid; place-items: center; border-radius: 9px; color: var(--brand); background: #f0efff; font-size: 19px; transition: transform .2s ease; }
.faq-item.open .faq-question i { transform: rotate(45deg); }
.faq-answer { display: grid; grid-template-rows: 0fr; transition: grid-template-rows .25s ease; }
.faq-item.open .faq-answer { grid-template-rows: 1fr; }
.faq-answer > div { overflow: hidden; }
.faq-answer p { padding: 0 20px 18px; color: var(--muted); font-size: 12px; margin: 0; }

/* CTA */
.cta-section { padding: 0 0 100px; background: #fff; }
.cta-panel { position: relative; overflow: hidden; display: grid; grid-template-columns: 1fr auto; align-items: center; gap: 30px; padding: 49px 54px; border-radius: 26px; color: #fff; background: linear-gradient(115deg,#241063,#4930c2 55%,#1685df); box-shadow: var(--shadow-lg); }
.cta-panel::before { content: ""; position: absolute; width: 330px; height: 330px; right: 15%; top: -230px; border-radius: 50%; background: rgba(110,234,255,.2); }
.cta-panel::after { content: ""; position: absolute; width: 220px; height: 220px; left: -100px; bottom: -155px; border-radius: 50%; background: rgba(244,71,134,.24); }
.cta-copy, .cta-actions { position: relative; z-index: 2; }
.cta-copy span { display: block; margin-bottom: 8px; color: #8deaff; font-size: 10px; font-weight: 800; letter-spacing: .15em; text-transform: uppercase; }
.cta-copy h2 { color: #fff; font-size: clamp(30px,3.7vw,47px); margin-bottom: 10px; }
.cta-copy p { max-width: 680px; color: rgba(255,255,255,.78); font-size: 13px; margin: 0; }
.cta-actions { display: flex; gap: 11px; flex-wrap: wrap; justify-content: flex-end; }

/* About */
.about-story-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 70px; align-items: center; }
.about-collage { position: relative; min-height: 530px; }
.about-main-image { position: absolute; inset: 0 80px 60px 0; display: grid; place-items: center; padding: 28px; border-radius: 30px; background: linear-gradient(145deg,#f0efff,#eaf8ff); box-shadow: var(--shadow-md); }
.about-main-image img { max-height: 390px; object-fit: contain; }
.about-mini-card { position: absolute; right: 0; bottom: 0; width: 250px; padding: 20px; border: 1px solid var(--line); border-radius: 18px; background: #fff; box-shadow: var(--shadow-md); }
.about-mini-card i { color: var(--brand); font-size: 28px; }
.about-mini-card b { display: block; color: var(--ink); font-size: 14px; margin: 8px 0 4px; }
.about-mini-card p { color: var(--muted); font-size: 10px; margin: 0; }
.about-content h2 { font-size: clamp(36px,4vw,51px); margin: 5px 0 18px; }
.about-content > p { color: var(--muted); }
.about-highlight { margin: 24px 0; padding: 19px 20px; border-left: 4px solid var(--brand); border-radius: 0 14px 14px 0; background: #f5f5ff; color: var(--ink); font-weight: 700; font-size: 13px; }
.value-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 18px; }
.value-card { position: relative; min-height: 255px; padding: 27px; border: 1px solid var(--line); border-radius: 20px; background: #fff; transition: .25s var(--ease); }
.value-card:hover { transform: translateY(-7px); box-shadow: var(--shadow-sm); border-color: rgba(76,66,232,.22); }
.value-card > span { position: absolute; right: 18px; top: 4px; color: rgba(76,66,232,.07); font-family: "Dosis","Trebuchet MS",sans-serif; font-size: 75px; font-weight: 800; line-height: 1; }
.value-card .icon-bubble { margin-bottom: 22px; }
.value-card h3 { font-size: 22px; margin-bottom: 10px; }
.value-card p { color: var(--muted); font-size: 12px; margin: 0; }
.stat-band { position: relative; overflow: hidden; padding: 54px 0; color: #fff; background: linear-gradient(110deg,#241063,#4930c2 56%,#1685df); }
.stat-band::before { content: ""; position: absolute; inset: 0; background: radial-gradient(circle at 80% 20%,rgba(112,235,255,.22),transparent 27%); }
.stat-grid { position: relative; z-index: 2; display: grid; grid-template-columns: repeat(4,1fr); }
.stat-item { padding: 16px 30px; text-align: center; }
.stat-item:not(:last-child) { border-right: 1px solid rgba(255,255,255,.17); }
.stat-item strong { display: block; color: #fff; font-family: "Dosis","Trebuchet MS",sans-serif; font-size: 42px; line-height: 1.1; }
.stat-item span { color: rgba(255,255,255,.76); font-size: 11px; }
.portfolio-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 18px; }
.portfolio-card { display: flex; align-items: flex-start; gap: 17px; padding: 24px; border: 1px solid var(--line); border-radius: 18px; background: #fff; transition: .25s ease; }
.portfolio-card:hover { border-color: rgba(76,66,232,.22); box-shadow: var(--shadow-sm); transform: translateY(-4px); }
.portfolio-card h3 { font-size: 19px; margin: 2px 0 7px; }
.portfolio-card p { color: var(--muted); font-size: 11px; margin: 0; }
.testimonial-grid { display: grid; grid-template-columns: repeat(4,1fr); gap: 16px; }
.testimonial-card { padding: 23px; border: 1px solid var(--line); border-radius: 18px; background: #fff; }
.testimonial-stars { color: #ffb52f; font-size: 14px; letter-spacing: 2px; }
.testimonial-card p { color: var(--muted); font-size: 11px; margin: 15px 0 20px; }
.testimonial-person { display: flex; align-items: center; gap: 11px; }
.testimonial-person span { width: 39px; height: 39px; display: grid; place-items: center; border-radius: 50%; color: #fff; background: linear-gradient(145deg,var(--brand),var(--brand-2)); font-weight: 800; }
.testimonial-person b { display: block; color: var(--ink); font-size: 12px; }
.testimonial-person small { display: block; color: var(--muted); font-size: 9px; }

/* Legal pages */
.legal-hero { position: relative; overflow: hidden; color: #fff; background: linear-gradient(115deg,#251064,#4b2ac1 55%,#167fda); }
.legal-hero::before { content: ""; position: absolute; inset: 0; background: radial-gradient(circle at 80% 20%,rgba(119,236,255,.22),transparent 30%), radial-gradient(circle at 8% 85%,rgba(244,71,134,.18),transparent 24%); }
.legal-hero-grid { position: relative; z-index: 2; min-height: 420px; display: grid; grid-template-columns: 1fr 340px; gap: 70px; align-items: center; padding: 68px 0; }
.legal-hero h1 { color: #fff; font-size: clamp(48px,5vw,68px); margin: 10px 0 18px; }
.legal-hero p { max-width: 750px; color: rgba(255,255,255,.82); font-size: 16px; }
.legal-meta { display: flex; flex-wrap: wrap; gap: 9px; margin-top: 22px; }
.legal-meta span { display: inline-flex; align-items: center; gap: 7px; padding: 8px 11px; border: 1px solid rgba(255,255,255,.22); border-radius: 999px; background: rgba(255,255,255,.07); color: rgba(255,255,255,.86); font-size: 10px; font-weight: 700; }
.legal-visual { width: 235px; height: 235px; display: grid; place-items: center; margin: auto; border-radius: 34% 66% 57% 43% / 42% 39% 61% 58%; background: rgba(255,255,255,.09); border: 1px solid rgba(255,255,255,.18); animation: morph 9s ease-in-out infinite; }
.legal-visual i { color: #fff; font-size: 90px; filter: drop-shadow(0 20px 30px rgba(7,2,58,.25)); }
.legal-summary-grid { display: grid; grid-template-columns: repeat(4,1fr); gap: 14px; margin-top: -38px; position: relative; z-index: 4; }
.legal-summary-card { padding: 20px; border: 1px solid var(--line); border-radius: 16px; background: #fff; box-shadow: var(--shadow-md); }
.legal-summary-card i { color: var(--brand); font-size: 23px; }
.legal-summary-card b { display: block; color: var(--ink); font-size: 12px; margin: 9px 0 4px; }
.legal-summary-card span { display: block; color: var(--muted); font-size: 9px; line-height: 1.5; }
.legal-layout { display: grid; grid-template-columns: 270px minmax(0,1fr); gap: 56px; align-items: start; }
.legal-toc { position: sticky; top: 102px; padding: 18px; border: 1px solid var(--line); border-radius: 18px; background: #fff; box-shadow: var(--shadow-sm); max-height: calc(100vh - 126px); overflow: auto; }
.legal-toc h3 { display: flex; align-items: center; gap: 8px; padding: 4px 7px 13px; border-bottom: 1px solid var(--line); font-size: 14px; }
.legal-toc h3 i { color: var(--brand); }
.legal-toc a { display: block; padding: 8px 9px; border-radius: 8px; color: var(--muted); font-size: 10px; line-height: 1.35; }
.legal-toc a:hover, .legal-toc a.active { color: var(--brand); background: #f1f0ff; }
.legal-content { min-width: 0; }
.legal-notice { display: flex; align-items: flex-start; gap: 12px; margin-bottom: 22px; padding: 17px 18px; border: 1px solid rgba(255,139,92,.25); border-radius: 14px; background: #fff8f3; color: #6f4937; font-size: 11px; }
.legal-notice i { flex: 0 0 22px; color: var(--orange); font-size: 22px; }
.legal-section { scroll-margin-top: 105px; padding: 27px 28px; border: 1px solid var(--line); border-radius: 18px; background: #fff; box-shadow: 0 7px 25px rgba(34,16,95,.045); }
.legal-section + .legal-section { margin-top: 16px; }
.legal-section h2 { display: flex; align-items: center; gap: 12px; font-size: 24px; margin-bottom: 15px; }
.legal-section h2 span { width: 33px; height: 33px; display: grid; place-items: center; flex: 0 0 33px; border-radius: 10px; color: var(--brand); background: #f0efff; font-size: 12px; }
.legal-section h3 { font-size: 17px; margin: 21px 0 9px; }
.legal-section p { color: var(--text); font-size: 12px; }
.legal-section ul { display: grid; gap: 8px; margin: 13px 0 0; }
.legal-section li { position: relative; padding-left: 20px; color: var(--text); font-size: 12px; }
.legal-section li::before { content: ""; position: absolute; left: 2px; top: 9px; width: 7px; height: 7px; border-radius: 50%; background: linear-gradient(145deg,var(--brand),var(--cyan)); }
.legal-table-wrap { overflow-x: auto; margin-top: 16px; border: 1px solid var(--line); border-radius: 13px; }
.legal-table { width: 100%; min-width: 600px; border-collapse: collapse; background: #fff; font-size: 11px; }
.legal-table th, .legal-table td { padding: 12px 14px; text-align: left; border-bottom: 1px solid var(--line); }
.legal-table th { color: var(--ink); background: #f4f5ff; font-weight: 800; }
.legal-table tr:last-child td { border-bottom: 0; }

/* Contact / simple page */
.contact-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 18px; }
.contact-card { padding: 25px; border: 1px solid var(--line); border-radius: 18px; background: #fff; }
.contact-card h3 { font-size: 20px; margin: 18px 0 8px; }
.contact-card p { color: var(--muted); font-size: 11px; }

/* Footer */
.site-footer { position: relative; overflow: hidden; color: rgba(255,255,255,.72); background: #160943; }
.footer-top { position: relative; padding: 78px 0 58px; }
.footer-top::before { content: ""; position: absolute; width: 450px; height: 450px; right: -240px; top: -280px; border-radius: 50%; background: rgba(31,141,244,.12); }
.footer-grid { position: relative; z-index: 2; display: grid; grid-template-columns: 1.3fr repeat(3,1fr); gap: 50px; }
.footer-brand img { width: 164px; margin-bottom: 20px; }
.footer-brand p { max-width: 340px; color: rgba(255,255,255,.62); font-size: 12px; }
.footer-trust { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 20px; }
.footer-trust span { display: inline-flex; align-items: center; gap: 6px; padding: 7px 9px; border: 1px solid rgba(255,255,255,.12); border-radius: 999px; color: rgba(255,255,255,.72); font-size: 9px; }
.footer-trust i { color: #75e7ff; }
.footer-column h3 { color: #fff; font-size: 18px; margin-bottom: 18px; }
.footer-column a { display: block; width: fit-content; padding: 4px 0; color: rgba(255,255,255,.64); font-size: 11px; transition: color .18s ease, transform .18s ease; }
.footer-column a:hover { color: #fff; transform: translateX(3px); }
.footer-contact { display: grid; gap: 9px; margin-top: 19px; }
.footer-contact a { display: flex; align-items: center; gap: 8px; }
.footer-contact i { color: #75e7ff; font-size: 15px; }
.footer-bottom { border-top: 1px solid rgba(255,255,255,.09); }
.footer-bottom-inner { min-height: 66px; display: flex; align-items: center; justify-content: space-between; gap: 20px; }
.footer-bottom p { margin: 0; color: rgba(255,255,255,.55); font-size: 10px; }
.footer-legal { display: flex; align-items: center; gap: 18px; }
.footer-legal a { color: rgba(255,255,255,.62); font-size: 10px; }
.footer-legal a:hover { color: #fff; }

.back-to-top { position: fixed; right: 20px; bottom: 20px; z-index: 900; width: 44px; height: 44px; display: grid; place-items: center; border-radius: 12px; color: #fff; background: linear-gradient(145deg,var(--brand),var(--brand-2)); box-shadow: 0 12px 28px rgba(76,66,232,.28); cursor: pointer; opacity: 0; visibility: hidden; transform: translateY(12px); transition: .22s ease; }
.back-to-top.show { opacity: 1; visibility: visible; transform: translateY(0); }
.back-to-top:hover { transform: translateY(-3px); }

/* 404 */
.error-page { min-height: 100vh; display: grid; place-items: center; padding: 40px 20px; color: #fff; background: linear-gradient(120deg,#241063,#4b2ac1 55%,#1685df); text-align: center; }
.error-card { max-width: 700px; }
.error-card img { width: 190px; margin: 0 auto 28px; }
.error-code { color: #fff; font-family: "Dosis","Trebuchet MS",sans-serif; font-size: clamp(100px,18vw,190px); font-weight: 800; line-height: .72; text-shadow: 0 20px 50px rgba(9,4,63,.3); }
.error-card h1 { color: #fff; font-size: 40px; margin: 28px 0 14px; }
.error-card p { color: rgba(255,255,255,.8); margin-bottom: 25px; }
.error-card .button-row { justify-content: center; }

/* Reveal / effects */
.reveal { opacity: 0; transform: translateY(24px); transition: opacity .65s var(--ease), transform .65s var(--ease); }
.reveal.from-left { transform: translateX(-28px); }
.reveal.from-right { transform: translateX(28px); }
.reveal.is-visible { opacity: 1; transform: translate(0,0); }
.stagger > *:nth-child(2) { transition-delay: .06s; }
.stagger > *:nth-child(3) { transition-delay: .12s; }
.stagger > *:nth-child(4) { transition-delay: .18s; }
.stagger > *:nth-child(5) { transition-delay: .24s; }
.stagger > *:nth-child(6) { transition-delay: .30s; }

@keyframes heroFloat { 0%,100%{transform:translateY(0)} 50%{transform:translateY(-16px)} }
@keyframes floatCard { 0%,100%{transform:translateY(0)} 50%{transform:translateY(-9px)} }
@keyframes pulseRing { 0%,100%{transform:scale(.96);opacity:.65} 50%{transform:scale(1.04);opacity:1} }
@keyframes drift { 0%,100%{transform:translate(0,0) rotate(0)} 50%{transform:translate(15px,-18px) rotate(180deg)} }
@keyframes morph { 0%,100%{border-radius:36% 64% 61% 39% / 41% 38% 62% 59%} 50%{border-radius:58% 42% 39% 61% / 58% 62% 38% 42%} }

/* Responsive */
@media (max-width: 1080px) {
  :root { --container: 960px; }
  .nav-link, .nav-trigger { padding-inline: 9px; font-size: 12px; }
  .header-login { display: none; }
  .hero-grid { grid-template-columns: 1fr .86fr; }
  .hero h1 { font-size: 56px; }
  .float-card { min-width: 155px; }
  .footer-grid { grid-template-columns: 1.2fr repeat(3,1fr); gap: 30px; }
  .usecase-grid { grid-template-columns: repeat(2,1fr); }
  .testimonial-grid { grid-template-columns: repeat(2,1fr); }
}

@media (max-width: 920px) {
  :root { --nav-height: 70px; }
  .site-topbar { display: none; }
  .nav-toggle { display: inline-flex; }
  .site-logo img { width: 150px; }
  .site-nav {
    position: fixed; top: 0; right: 0; bottom: 0; z-index: 1000;
    width: min(86vw, 360px); display: block; padding: 84px 20px 28px;
    overflow-y: auto; background: #fff; box-shadow: -20px 0 60px rgba(16,7,52,.24);
    transform: translateX(100%); visibility: hidden; pointer-events: none;
    transition: transform .28s var(--ease), visibility 0s linear .28s;
  }
  .site-nav.open { transform: translateX(0); visibility: visible; pointer-events: auto; transition-delay: 0s; }
  .mobile-backdrop.show { display: block; }
  .nav-list { display: grid; gap: 4px; }
  .nav-link, .nav-trigger { width: 100%; min-height: 46px; justify-content: space-between; color: var(--ink); padding: 0 13px; font-size: 13px; }
  .nav-link:hover, .nav-trigger:hover, .nav-link.active, .nav-trigger.active { color: var(--brand); background: #f2f1ff; }
  .dropdown-menu { position: static; display: none; min-width: 0; margin: 3px 0 8px 12px; padding: 7px; border-radius: 12px; box-shadow: none; opacity: 1; visibility: visible; transform: none; background: #f7f8ff; }
  .nav-item.open > .dropdown-menu { display: block; }
  .dropdown-menu::before { display: none; }
  .nav-actions { display: grid; grid-template-columns: 1fr; margin: 20px 0 0; }
  .header-login { display: flex; justify-content: center; color: var(--brand); border: 1px solid var(--line); border-radius: 10px; }
  .header-signup { color: #fff; background: linear-gradient(100deg,var(--brand),var(--brand-2)); }
  .hero-grid { grid-template-columns: 1fr; gap: 5px; text-align: center; padding-top: 72px; }
  .hero-copy { max-width: 760px; margin-inline: auto; }
  .hero-copy > p { margin-inline: auto; }
  .hero .button-row, .hero-points { justify-content: center; }
  .hero-visual { min-height: 420px; }
  .hero-main-image { max-width: 620px; }
  .float-card.one { left: 7%; }
  .float-card.two { right: 7%; }
  .page-hero-grid { grid-template-columns: 1fr; text-align: center; padding-top: 60px; }
  .breadcrumb, .page-hero-points, .page-hero .button-row { justify-content: center; }
  .page-hero-points { max-width: 600px; margin-inline: auto; margin-bottom: 27px; }
  .page-hero-visual { min-height: 300px; }
  .page-hero-visual img { max-height: 285px; }
  .page-hero-label { right: 13%; }
  .trust-grid { grid-template-columns: repeat(2,1fr); }
  .trust-item:nth-child(2)::after { display: none; }
  .trust-item:nth-child(-n+2) { border-bottom: 1px solid var(--line); }
  .service-grid, .pricing-grid, .pricing-grid.six, .feature-grid, .value-grid, .portfolio-grid { grid-template-columns: repeat(2,1fr); }
  .split-grid, .split-grid.reverse, .about-story-grid { grid-template-columns: 1fr; gap: 45px; }
  .split-grid.reverse .split-visual { order: 0; }
  .split-visual { min-height: 400px; }
  .steps { grid-template-columns: 1fr; }
  .step-card::after { display: none; }
  .faq-layout { grid-template-columns: 1fr; gap: 35px; }
  .faq-visual { position: relative; top: 0; max-width: 570px; margin-inline: auto; }
  .cta-panel { grid-template-columns: 1fr; padding: 42px; text-align: center; }
  .cta-actions { justify-content: center; }
  .about-collage { max-width: 630px; width: 100%; margin-inline: auto; }
  .stat-grid { grid-template-columns: repeat(2,1fr); }
  .stat-item:nth-child(2) { border-right: 0; }
  .stat-item:nth-child(-n+2) { border-bottom: 1px solid rgba(255,255,255,.17); }
  .legal-hero-grid { grid-template-columns: 1fr; text-align: center; gap: 25px; }
  .legal-hero p { margin-inline: auto; }
  .legal-meta { justify-content: center; }
  .legal-visual { width: 180px; height: 180px; }
  .legal-visual i { font-size: 70px; }
  .legal-summary-grid { grid-template-columns: repeat(2,1fr); }
  .legal-layout { grid-template-columns: 1fr; gap: 25px; }
  .legal-toc { position: relative; top: 0; max-height: none; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .reveal.from-left, .reveal.from-right { transform: translateY(20px); }
  .reveal.from-left.is-visible, .reveal.from-right.is-visible { transform: translateY(0); }
}

@media (max-width: 640px) {
  .container { width: min(calc(100% - 28px), var(--container)); }
  .section { padding: 74px 0; }
  .section-sm { padding: 58px 0; }
  .navbar { gap: 12px; }
  .site-logo img { width: 143px; }
  .hero { min-height: auto; }
  .hero::after { height: 50px; }
  .hero-grid { min-height: 0; padding: 62px 0 88px; }
  .hero h1 { font-size: 43px; }
  .hero-copy > p { font-size: 15px; }
  .hero .button-row { display: grid; grid-template-columns: 1fr; width: min(100%,360px); margin-inline: auto; margin-bottom: 27px; }
  .hero-points { display: grid; grid-template-columns: 1fr 1fr; text-align: left; }
  .hero-visual { min-height: 330px; }
  .hero-visual::before { width: 280px; height: 280px; }
  .hero-main-image { width: 110%; max-width: 500px; }
  .float-card { min-width: 135px; padding: 9px 10px; }
  .float-card.one { left: 0; top: 10%; }
  .float-card.two { right: 0; bottom: 12%; }
  .float-card i { width: 30px; height: 30px; font-size: 16px; }
  .float-card b { font-size: 10px; }
  .float-card small { font-size: 8px; }
  .page-hero h1 { font-size: 43px; }
  .page-hero-grid { min-height: 0; padding: 52px 0 74px; }
  .page-hero-points { grid-template-columns: 1fr; text-align: left; }
  .page-hero .button-row { display: grid; width: 100%; }
  .page-hero-visual { min-height: 260px; }
  .page-hero-visual::before { width: 245px; height: 245px; }
  .page-hero-visual img { max-height: 235px; }
  .page-hero-label { right: 0; bottom: 25px; }
  .trust-strip { margin-top: -25px; }
  .trust-grid { grid-template-columns: 1fr; }
  .trust-item { padding: 18px; }
  .trust-item::after { display: none !important; }
  .trust-item:not(:last-child) { border-bottom: 1px solid var(--line); }
  .section-heading h2, .split-content h2, .about-content h2 { font-size: 36px; }
  .service-grid, .pricing-grid, .pricing-grid.six, .feature-grid, .value-grid, .portfolio-grid, .usecase-grid, .testimonial-grid, .contact-grid { grid-template-columns: 1fr; }
  .service-card { min-height: 0; }
  .split-visual { min-height: 320px; }
  .split-visual::before { width: 300px; height: 300px; }
  .split-visual img { max-height: 300px; }
  .check-list { grid-template-columns: 1fr; }
  .mini-stats { grid-template-columns: 1fr; }
  .pricing-card { padding: 25px; }
  .plan-price strong { font-size: 45px; }
  .faq-visual { padding: 24px; }
  .cta-section { padding-bottom: 74px; }
  .cta-panel { padding: 35px 24px; border-radius: 21px; }
  .cta-actions { display: grid; width: 100%; }
  .about-collage { min-height: 420px; }
  .about-main-image { inset: 0 30px 80px 0; }
  .about-mini-card { width: 220px; }
  .stat-item { padding: 18px 10px; }
  .stat-item strong { font-size: 35px; }
  .legal-hero h1 { font-size: 43px; }
  .legal-hero-grid { min-height: 0; padding: 55px 0 75px; }
  .legal-visual { display: none; }
  .legal-summary-grid { grid-template-columns: 1fr; margin-top: -25px; }
  .legal-section { padding: 22px 19px; }
  .legal-section h2 { font-size: 21px; align-items: flex-start; }
  .footer-grid { grid-template-columns: 1fr; gap: 32px; }
  .footer-top { padding: 62px 0 42px; }
  .footer-bottom-inner { flex-direction: column; justify-content: center; padding: 17px 0; text-align: center; }
  .footer-legal { flex-wrap: wrap; justify-content: center; }
}

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