/* JellyWeb — jellyweb.ir */
@font-face {
  font-family: "Vazirmatn";
  src: url("../fonts/vazirmatn-var.woff2") format("woff2-variations"),
       url("../fonts/vazirmatn-var.woff2") format("woff2");
  font-weight: 100 900;
  font-style: normal;
  font-display: swap;
}

:root {
  --brand: #0b8de2;
  --brand-600: #0877c8;
  --brand-700: #0660a8;
  --brand-50: #eaf5fd;
  --brand-100: #d3ebfb;
  --cyan: #2fd3f5;
  --violet: #7b61ff;
  --pink: #ff78c4;
  --ink: #0b1b2f;
  --ink-2: #26384f;
  --muted: #53647a;
  --line: #e3ebf3;
  --bg: #f7fafd;
  --surface: #ffffff;
  --navy: #071a33;
  --navy-2: #0c2547;
  --radius: 22px;
  --radius-sm: 14px;
  --shadow-sm: 0 1px 2px rgba(11, 27, 47, .06), 0 2px 8px rgba(11, 27, 47, .04);
  --shadow: 0 10px 30px -12px rgba(8, 60, 110, .22), 0 2px 6px rgba(11, 27, 47, .05);
  --shadow-lg: 0 30px 60px -20px rgba(8, 70, 130, .35);
  --container: 1180px;
  --header-h: 72px;
  --ease: cubic-bezier(.2, .8, .2, 1);
}

*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; scroll-padding-top: calc(var(--header-h) + 12px); -webkit-text-size-adjust: 100%; }
body {
  margin: 0;
  font-family: "Vazirmatn", system-ui, -apple-system, "Segoe UI", Tahoma, sans-serif;
  font-size: 1rem;
  line-height: 1.9;
  color: var(--ink);
  background: var(--bg);
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
img { max-width: 100%; height: auto; display: block; }
a { color: var(--brand-700); text-decoration: none; }
a:hover { color: var(--brand-600); }
h1, h2, h3 { line-height: 1.45; margin: 0; color: var(--ink); }
p { margin: 0; }
button, input, select, textarea { font: inherit; color: inherit; }
:focus-visible { outline: 3px solid var(--brand); outline-offset: 3px; border-radius: 8px; }

.i { width: 1.25em; height: 1.25em; fill: none; stroke: currentColor; stroke-width: 1.8; stroke-linecap: round; stroke-linejoin: round; flex-shrink: 0; }
.muted { color: var(--muted); }
.small { font-size: .9rem; }

.container { width: 100%; max-width: var(--container); margin-inline: auto; padding-inline: 20px; }

.skip {
  position: absolute; inset-inline-start: 12px; top: -60px; z-index: 100;
  background: var(--ink); color: #fff; padding: 8px 16px; border-radius: 10px;
}
.skip:focus { top: 12px; color: #fff; }

/* Buttons */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: .55em;
  padding: .72em 1.35em; border-radius: 999px; border: 0; cursor: pointer;
  font-weight: 700; font-size: .98rem; line-height: 1.4; white-space: nowrap;
  transition: transform .25s var(--ease), box-shadow .25s var(--ease), background-color .25s, color .25s;
}
.btn-lg { padding: .9em 1.6em; font-size: 1.02rem; }
.btn-block { width: 100%; }
.btn-primary {
  color: #fff;
  background: linear-gradient(135deg, var(--brand-600), var(--brand-700));
  box-shadow: 0 10px 24px -10px rgba(8, 119, 200, .7), inset 0 1px 0 rgba(255, 255, 255, .25);
}
.btn-primary:hover { color: #fff; transform: translateY(-2px); box-shadow: 0 16px 30px -12px rgba(8, 119, 200, .8), inset 0 1px 0 rgba(255, 255, 255, .25); }
.btn-primary:active { transform: translateY(0); }
.btn-primary .i { transition: transform .25s var(--ease); }
.btn-primary:hover .i { transform: translateX(-4px); }
.btn-ghost { color: var(--ink); background: rgba(255, 255, 255, .7); box-shadow: inset 0 0 0 1.5px var(--line); backdrop-filter: blur(6px); }
.btn-ghost:hover { color: var(--brand-700); box-shadow: inset 0 0 0 1.5px var(--brand); transform: translateY(-2px); }
.btn-white { background: #fff; color: var(--brand-700); box-shadow: 0 10px 24px -10px rgba(0, 0, 0, .35); }
.btn-white:hover { color: var(--brand-700); transform: translateY(-2px); }
.btn-outline-white { color: #fff; box-shadow: inset 0 0 0 1.5px rgba(255, 255, 255, .7); background: rgba(255, 255, 255, .06); }
.btn-outline-white:hover { color: #fff; background: rgba(255, 255, 255, .16); transform: translateY(-2px); }

/* Header */
.site-header {
  position: fixed; inset: 0 0 auto 0; z-index: 50; height: var(--header-h);
  transition: background-color .3s, box-shadow .3s, backdrop-filter .3s;
}
.site-header.scrolled {
  background: rgba(255, 255, 255, .82);
  backdrop-filter: saturate(160%) blur(14px);
  -webkit-backdrop-filter: saturate(160%) blur(14px);
  box-shadow: 0 1px 0 rgba(11, 27, 47, .06), 0 8px 24px -16px rgba(11, 27, 47, .2);
}
.header-row { height: 100%; display: flex; align-items: center; gap: 24px; }
.brand img { height: 38px; width: auto; }
.nav { display: flex; align-items: center; gap: 4px; margin-inline-start: auto; }
.nav a:not(.btn) {
  color: var(--ink-2); font-weight: 500; font-size: .95rem; padding: 8px 12px; border-radius: 999px;
  transition: color .2s, background-color .2s;
}
.nav a:not(.btn):hover, .nav a.active { color: var(--brand-700); background: var(--brand-50); }
.nav-cta { display: none; }
.header-cta { padding: .6em 1.15em; font-size: .92rem; }
.menu-toggle {
  display: none; margin-inline-start: auto; width: 44px; height: 44px; border-radius: 12px;
  border: 0; background: rgba(255, 255, 255, .8); box-shadow: inset 0 0 0 1.5px var(--line); cursor: pointer;
  flex-direction: column; align-items: center; justify-content: center; gap: 5px;
}
.menu-toggle span { display: block; width: 20px; height: 2px; background: var(--ink); border-radius: 2px; transition: transform .3s var(--ease), opacity .2s; }
.menu-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.menu-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.menu-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Hero */
.hero {
  position: relative; isolation: isolate; overflow: hidden;
  padding: calc(var(--header-h) + 56px) 0 96px;
  background: linear-gradient(180deg, #f2f8fe 0%, var(--bg) 100%);
}
.hero-bg { position: absolute; inset: 0; z-index: -1; pointer-events: none; }
.mesh { position: absolute; border-radius: 50%; filter: blur(70px); opacity: .55; will-change: transform; }
.m1 { width: 520px; height: 520px; background: radial-gradient(circle, rgba(11, 141, 226, .55), transparent 65%); top: -140px; left: -120px; animation: drift1 18s ease-in-out infinite alternate; }
.m2 { width: 460px; height: 460px; background: radial-gradient(circle, rgba(123, 97, 255, .35), transparent 65%); bottom: -160px; left: 30%; animation: drift2 22s ease-in-out infinite alternate; }
.m3 { width: 420px; height: 420px; background: radial-gradient(circle, rgba(47, 211, 245, .4), transparent 65%); top: 10%; right: -120px; animation: drift3 20s ease-in-out infinite alternate; }
.grid-lines {
  position: absolute; inset: 0;
  background-image: linear-gradient(rgba(11, 27, 47, .045) 1px, transparent 1px), linear-gradient(90deg, rgba(11, 27, 47, .045) 1px, transparent 1px);
  background-size: 56px 56px;
  -webkit-mask-image: radial-gradient(ellipse 70% 60% at 50% 40%, #000 30%, transparent 75%);
  mask-image: radial-gradient(ellipse 70% 60% at 50% 40%, #000 30%, transparent 75%);
}
@keyframes drift1 { to { transform: translate(120px, 80px) scale(1.15); } }
@keyframes drift2 { to { transform: translate(-100px, -60px) scale(1.1); } }
@keyframes drift3 { to { transform: translate(-80px, 90px) scale(.9); } }

.hero-grid { display: grid; grid-template-columns: 1.05fr 1fr; align-items: center; gap: 48px; }
.eyebrow {
  display: inline-flex; align-items: center; gap: 10px; padding: 6px 14px 6px 16px; border-radius: 999px;
  background: rgba(255, 255, 255, .75); box-shadow: inset 0 0 0 1px var(--brand-100), var(--shadow-sm);
  color: var(--brand-700); font-weight: 600; font-size: .9rem; margin-bottom: 22px;
}
.eyebrow .dot { width: 8px; height: 8px; border-radius: 50%; background: var(--brand); box-shadow: 0 0 0 4px rgba(11, 141, 226, .18); animation: pulse 2.4s ease-in-out infinite; }
@keyframes pulse { 50% { box-shadow: 0 0 0 8px rgba(11, 141, 226, 0); } }
.hero h1 { font-size: clamp(2.1rem, 1.2rem + 3.6vw, 3.75rem); font-weight: 900; line-height: 1.35; letter-spacing: -.01em; }
.hero h1 .grad {
  display: block;
  background: linear-gradient(100deg, var(--brand-700) 0%, var(--brand) 35%, var(--violet) 75%, var(--brand) 100%);
  background-size: 200% auto;
  -webkit-background-clip: text; background-clip: text; color: transparent;
  animation: shimmer 8s linear infinite;
  padding-bottom: .08em;
}
@keyframes shimmer { to { background-position: -200% center; } }
.lead { margin-top: 22px; font-size: clamp(1.02rem, .95rem + .3vw, 1.15rem); color: var(--muted); max-width: 34em; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 32px; }
.hero-points { list-style: none; padding: 0; margin: 28px 0 0; display: flex; flex-wrap: wrap; gap: 10px 22px; color: var(--ink-2); font-weight: 500; font-size: .95rem; }
.hero-points li { display: inline-flex; align-items: center; gap: 8px; }
.hero-points .i { width: 20px; height: 20px; padding: 3px; border-radius: 50%; color: #fff; background: var(--brand-600); stroke-width: 3; }

/* Hero art */
.hero-art { position: relative; aspect-ratio: 1 / .92; max-width: 560px; justify-self: center; width: 100%; }
.jelly {
  position: absolute; will-change: border-radius, transform;
  box-shadow:
    inset -18px -26px 50px rgba(3, 40, 90, .35),
    inset 22px 24px 40px rgba(255, 255, 255, .45),
    0 40px 80px -30px rgba(11, 141, 226, .55);
}
.jelly .shine {
  position: absolute; top: 14%; left: 18%; width: 26%; height: 16%; border-radius: 50%;
  background: radial-gradient(ellipse at center, rgba(255, 255, 255, .95), rgba(255, 255, 255, 0) 70%);
  transform: rotate(-28deg);
}
.jelly-main {
  inset: 8% 6% 10% 12%;
  background: radial-gradient(120% 120% at 30% 25%, #6fd0ff 0%, var(--brand) 42%, #0a5fb4 75%, #3f3bd6 100%);
  border-radius: 42% 58% 63% 37% / 45% 42% 58% 55%;
  animation: morph 14s ease-in-out infinite, bob 9s ease-in-out infinite;
}
.jelly-pink {
  width: 20%; aspect-ratio: 1; top: 2%; left: 4%;
  background: radial-gradient(120% 120% at 30% 25%, #ffc2e6, var(--pink) 50%, #c8409a);
  box-shadow: inset -8px -10px 20px rgba(120, 10, 70, .3), inset 8px 8px 16px rgba(255, 255, 255, .5), 0 20px 40px -20px rgba(255, 120, 196, .8);
  border-radius: 55% 45% 50% 50% / 50% 55% 45% 50%;
  animation: morph 9s ease-in-out infinite reverse, bob 7s ease-in-out -2s infinite;
}
.jelly-cyan {
  width: 14%; aspect-ratio: 1; bottom: 6%; right: 2%;
  background: radial-gradient(120% 120% at 30% 25%, #c6f6ff, var(--cyan) 50%, #0b9cc4);
  box-shadow: inset -6px -8px 16px rgba(0, 70, 100, .3), inset 6px 6px 12px rgba(255, 255, 255, .55), 0 18px 36px -18px rgba(47, 211, 245, .9);
  border-radius: 50% 50% 45% 55% / 55% 45% 55% 45%;
  animation: morph 11s ease-in-out -3s infinite, bob 8s ease-in-out -4s infinite;
}
@keyframes morph {
  0%, 100% { border-radius: 42% 58% 63% 37% / 45% 42% 58% 55%; }
  25% { border-radius: 58% 42% 40% 60% / 55% 60% 40% 45%; }
  50% { border-radius: 50% 50% 55% 45% / 38% 52% 48% 62%; }
  75% { border-radius: 37% 63% 52% 48% / 60% 38% 62% 40%; }
}
@keyframes bob { 50% { transform: translateY(-14px) rotate(2deg); } }

.browser {
  position: absolute; inset: 22% 14% 20% 4%;
  background: rgba(255, 255, 255, .72);
  backdrop-filter: blur(16px) saturate(140%);
  -webkit-backdrop-filter: blur(16px) saturate(140%);
  border-radius: 18px;
  box-shadow: 0 30px 60px -20px rgba(7, 26, 51, .45), inset 0 0 0 1px rgba(255, 255, 255, .8);
  overflow: hidden;
  transform: rotate(-3deg);
  animation: float 10s ease-in-out infinite;
}
@keyframes float { 50% { transform: rotate(-3deg) translateY(-10px); } }
.browser-bar { display: flex; align-items: center; gap: 6px; padding: 10px 14px; border-bottom: 1px solid rgba(11, 27, 47, .07); direction: ltr; }
.browser-bar > span { width: 10px; height: 10px; border-radius: 50%; background: #ff6b6b; }
.browser-bar > span:nth-child(2) { background: #ffc24b; }
.browser-bar > span:nth-child(3) { background: #3ddc84; }
.browser-bar .url { margin-left: 10px; flex: 1; font-size: .72rem; line-height: 1.6; color: var(--muted); background: rgba(11, 27, 47, .05); border-radius: 999px; padding: 1px 12px; font-family: ui-monospace, monospace; }
.browser-body { padding: 14px 16px; display: grid; gap: 14px; }
.sk { background: linear-gradient(90deg, #dbe8f4, #eef4fa, #dbe8f4); background-size: 200% 100%; border-radius: 6px; animation: sk 2.8s linear infinite; }
@keyframes sk { to { background-position: -200% 0; } }
.sk-row { display: flex; justify-content: space-between; align-items: center; direction: ltr; }
.sk-logo { width: 22%; height: 12px; background: linear-gradient(90deg, var(--brand), var(--violet)); }
.sk-nav { display: flex; gap: 6px; }
.sk-nav i { width: 26px; height: 6px; border-radius: 4px; background: #d5e2ee; }
.sk-hero { display: grid; grid-template-columns: 1.1fr 1fr; gap: 12px; align-items: center; }
.sk-text { display: grid; gap: 7px; }
.sk-h { height: 11px; width: 92%; background: #b9cde0; }
.sk-h.short { width: 64%; }
.sk-p { height: 6px; width: 100%; }
.sk-btn { width: 44%; height: 14px; border-radius: 999px; margin-top: 4px; background: var(--brand); animation: none; }
.sk-img {
  aspect-ratio: 1.15; border-radius: 12px; display: grid; place-items: center;
  background: linear-gradient(135deg, #7ad3ff, var(--brand) 55%, var(--violet));
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, .4);
}
.sk-img .code { color: #fff; font-weight: 800; font-size: clamp(1rem, 2.4vw, 1.6rem); font-family: ui-monospace, monospace; direction: ltr; text-shadow: 0 2px 10px rgba(0, 0, 0, .15); }
.sk-cards { display: grid; grid-template-columns: repeat(3, 1fr); gap: 8px; }
.sk-cards i { height: 34px; border-radius: 8px; background: rgba(11, 141, 226, .09); box-shadow: inset 0 0 0 1px rgba(11, 141, 226, .12); }

.float-chip {
  position: absolute; display: inline-flex; align-items: center; gap: 8px; padding: 8px 14px;
  border-radius: 999px; background: #fff; color: var(--ink); font-weight: 700; font-size: .88rem; line-height: 1.5;
  box-shadow: var(--shadow);
}
.float-chip .i { color: var(--brand-600); }
.chip-a { top: 14%; right: 0; animation: bob 6s ease-in-out infinite; }
.chip-b { bottom: 10%; left: 10%; animation: bob 7s ease-in-out -3s infinite; }

/* Why strip */
.why { position: relative; margin-top: -40px; z-index: 2; }
.why-grid {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 0;
  background: var(--surface); border-radius: var(--radius); box-shadow: var(--shadow);
  padding: 8px;
}
.why-item { display: flex; gap: 14px; padding: 20px 18px; align-items: flex-start; }
.why-item + .why-item { border-inline-start: 1px solid var(--line); }
.why-ic { display: grid; place-items: center; width: 46px; height: 46px; border-radius: 14px; color: var(--brand-700); background: var(--brand-50); flex-shrink: 0; }
.why-ic .i { width: 24px; height: 24px; }
.why-item h3 { font-size: 1rem; font-weight: 800; }
.why-item p { font-size: .9rem; color: var(--muted); line-height: 1.8; margin-top: 2px; }

/* Sections */
.section { padding: 110px 0; position: relative; }
.section-head { text-align: center; max-width: 680px; margin: 0 auto 56px; }
.section-head.left { text-align: start; margin: 0; }
.kicker {
  display: inline-block; font-weight: 800; font-size: .88rem; color: var(--brand-700);
  background: var(--brand-50); padding: 4px 14px; border-radius: 999px; margin-bottom: 14px;
}
.section-head h2 { font-size: clamp(1.65rem, 1.2rem + 1.8vw, 2.5rem); font-weight: 900; letter-spacing: -.01em; }
.section-head .sub { color: var(--muted); margin-top: 12px; font-size: 1.05rem; }

.card { background: var(--surface); border-radius: var(--radius); box-shadow: var(--shadow-sm); border: 1px solid var(--line); }

/* Services */
.services { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.service { padding: 30px 28px; position: relative; overflow: hidden; transition: transform .35s var(--ease), box-shadow .35s var(--ease), border-color .35s; }
.service::after {
  content: ""; position: absolute; width: 180px; height: 180px; top: -90px; left: -90px; border-radius: 50%;
  background: radial-gradient(circle, rgba(11, 141, 226, .14), transparent 70%);
  opacity: 0; transition: opacity .4s, transform .6s var(--ease); transform: scale(.6);
}
.service:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); border-color: var(--brand-100); }
.service:hover::after { opacity: 1; transform: scale(1.4); }
.service h3 { font-size: 1.15rem; font-weight: 800; margin-top: 20px; }
.service p { color: var(--muted); margin-top: 8px; font-size: .96rem; line-height: 1.95; }
.s-ic {
  display: grid; place-items: center; width: 58px; height: 58px; color: #fff;
  border-radius: 42% 58% 55% 45% / 50% 45% 55% 50%;
  box-shadow: inset -6px -8px 14px rgba(0, 0, 0, .16), inset 6px 6px 12px rgba(255, 255, 255, .35), 0 12px 22px -12px var(--glow, rgba(11, 141, 226, .8));
  transition: border-radius .6s var(--ease), transform .4s var(--ease);
}
.service:hover .s-ic { border-radius: 58% 42% 45% 55% / 45% 55% 45% 55%; transform: rotate(-6deg) scale(1.06); }
.s-ic .i { width: 26px; height: 26px; }
.c1 { background: linear-gradient(135deg, #37b3ff, #0660a8); }
.c2 { background: linear-gradient(135deg, #8d7bff, #4d38d8); --glow: rgba(123, 97, 255, .8); }
.c3 { background: linear-gradient(135deg, #ff8fd0, #d23f95); --glow: rgba(255, 120, 196, .8); }
.c4 { background: linear-gradient(135deg, #3fdcc0, #0f9a86); --glow: rgba(30, 190, 160, .8); }
.c5 { background: linear-gradient(135deg, #ffbe55, #e3791b); --glow: rgba(240, 150, 40, .8); }
.c6 { background: linear-gradient(135deg, #47d9f7, #0b8ab8); --glow: rgba(47, 211, 245, .8); }

/* Process */
.process-wrap { background: var(--navy); color: #cfdcec; overflow: hidden; isolation: isolate; }
.process-glow {
  position: absolute; inset: auto -10% -40% -10%; height: 80%; z-index: -1;
  background: radial-gradient(50% 60% at 30% 50%, rgba(11, 141, 226, .35), transparent 70%), radial-gradient(40% 50% at 75% 60%, rgba(123, 97, 255, .28), transparent 70%);
  filter: blur(20px);
}
.process-wrap .kicker { background: rgba(92, 195, 255, .12); color: #7fd0ff; }
.process-wrap h2, .process-wrap h3 { color: #fff; }
.process-wrap .sub { color: #a9bdd4; }
.steps { list-style: none; padding: 0; margin: 0; display: grid; grid-template-columns: repeat(5, 1fr); gap: 18px; position: relative; counter-reset: s; }
.steps::before {
  content: ""; position: absolute; top: 31px; right: 10%; left: 10%; height: 2px;
  background: linear-gradient(90deg, rgba(123, 97, 255, .6), rgba(11, 141, 226, .8), rgba(47, 211, 245, .6));
  opacity: .5;
}
.step { position: relative; text-align: center; padding: 0 6px; }
.step-no {
  position: relative; display: grid; place-items: center; width: 64px; height: 64px; margin: 0 auto 18px;
  font-size: 1.5rem; font-weight: 900; color: #fff;
  background: radial-gradient(120% 120% at 30% 25%, #6fd0ff, var(--brand) 50%, #0a4f9c);
  border-radius: 45% 55% 52% 48% / 52% 45% 55% 48%;
  box-shadow: inset -6px -8px 14px rgba(0, 0, 0, .25), inset 6px 6px 12px rgba(255, 255, 255, .35), 0 0 0 8px var(--navy), 0 14px 30px -10px rgba(11, 141, 226, .8);
  animation: morph 12s ease-in-out infinite;
}
.step:nth-child(2) .step-no { animation-delay: -2s; }
.step:nth-child(3) .step-no { animation-delay: -4s; }
.step:nth-child(4) .step-no { animation-delay: -6s; }
.step:nth-child(5) .step-no { animation-delay: -8s; }
.step h3 { font-size: 1.08rem; font-weight: 800; }
.step p { font-size: .93rem; margin-top: 8px; line-height: 1.9; color: #b4c6da; }

/* Work */
.work { display: grid; grid-template-columns: repeat(3, 1fr); gap: 26px; }
.work-card { border-radius: var(--radius); background: var(--surface); border: 1px solid var(--line); overflow: hidden; box-shadow: var(--shadow-sm); transition: transform .35s var(--ease), box-shadow .35s var(--ease); }
.work-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); }
.work-link { display: block; color: inherit; height: 100%; }
a.work-link:hover { color: inherit; }
.shot { position: relative; aspect-ratio: 16 / 9; overflow: hidden; background: var(--brand-50); }
.shot img { width: 100%; height: 100%; object-fit: cover; object-position: top; transition: transform .8s var(--ease); }
.work-card:hover .shot img { transform: scale(1.05); }
.shot::after { content: ""; position: absolute; inset: 0; box-shadow: inset 0 -1px 0 var(--line); pointer-events: none; }
.work-meta { padding: 18px 22px 22px; }
.tag { display: inline-block; font-size: .8rem; font-weight: 700; color: var(--brand-700); background: var(--brand-50); padding: 2px 10px; border-radius: 999px; }
.work-meta h3 { font-size: 1.05rem; font-weight: 800; margin-top: 10px; }
.visit { display: inline-flex; align-items: center; gap: 6px; margin-top: 6px; font-size: .88rem; color: var(--brand-700); direction: ltr; font-weight: 600; }
.visit .i { width: 15px; height: 15px; }

/* About */
.about-wrap { background: linear-gradient(180deg, var(--bg), #eef6fd 60%, var(--bg)); }
.about { display: grid; grid-template-columns: 1.1fr 1fr; gap: 64px; align-items: center; }
.about-copy h2 { font-size: clamp(1.65rem, 1.2rem + 1.8vw, 2.5rem); font-weight: 900; }
.about-copy p { color: var(--ink-2); margin-top: 18px; font-size: 1.04rem; line-height: 2.05; }
.motto {
  margin: 32px 0 0; padding: 22px 26px; border-radius: var(--radius); position: relative; overflow: hidden;
  background: linear-gradient(135deg, var(--brand-600), var(--brand-700) 55%, #4d38d8);
  color: #fff; font-size: clamp(1.2rem, 1rem + .8vw, 1.55rem); font-weight: 900; line-height: 1.7;
  box-shadow: var(--shadow-lg);
}
.motto span { display: block; position: relative; }
.motto span + span { color: #bfe6ff; }
.motto::before {
  content: ""; position: absolute; width: 180px; height: 180px; left: -40px; bottom: -80px;
  background: radial-gradient(circle at 30% 30%, rgba(255, 255, 255, .35), rgba(255, 255, 255, 0) 60%);
  border-radius: 42% 58% 63% 37% / 45% 42% 58% 55%; animation: morph 12s ease-in-out infinite;
}
.about-side { display: grid; gap: 14px; }
.side-title { font-weight: 900; font-size: 1.25rem; margin-bottom: 4px; }
.benefit { display: flex; gap: 16px; padding: 20px 22px; background: var(--surface); border: 1px solid var(--line); border-radius: var(--radius-sm); box-shadow: var(--shadow-sm); transition: transform .3s var(--ease), box-shadow .3s; }
.benefit:hover { transform: translateX(-6px); box-shadow: var(--shadow); }
.b-ic { display: grid; place-items: center; width: 46px; height: 46px; flex-shrink: 0; border-radius: 14px; color: var(--brand-700); background: var(--brand-50); }
.b-ic .i { width: 23px; height: 23px; }
.benefit h3 { font-size: 1.02rem; font-weight: 800; }
.benefit p { color: var(--muted); font-size: .93rem; margin-top: 2px; line-height: 1.85; }

/* FAQ */
.faq-grid { display: grid; grid-template-columns: .8fr 1.2fr; gap: 56px; align-items: start; }
.faq-grid .section-head { position: sticky; top: calc(var(--header-h) + 30px); }
.faq { display: grid; gap: 12px; }
.faq details { background: var(--surface); border: 1px solid var(--line); border-radius: var(--radius-sm); transition: box-shadow .3s, border-color .3s; }
.faq details[open] { box-shadow: var(--shadow); border-color: var(--brand-100); }
.faq summary {
  list-style: none; cursor: pointer; padding: 18px 22px; font-weight: 700; font-size: 1.02rem;
  display: flex; align-items: center; justify-content: space-between; gap: 16px;
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after {
  content: ""; flex-shrink: 0; width: 28px; height: 28px; border-radius: 50%;
  background: var(--brand-50) url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%230660a8' stroke-width='2.4' stroke-linecap='round'%3E%3Cpath d='M12 6v12M6 12h12'/%3E%3C/svg%3E") center / 16px no-repeat;
  transition: transform .3s var(--ease), background-color .3s;
}
.faq details[open] summary::after { transform: rotate(45deg); }
.faq details p { padding: 0 22px 20px; color: var(--muted); line-height: 2; }

/* CTA */
.cta-band { padding: 10px 0 20px; }
.cta {
  position: relative; overflow: hidden; isolation: isolate;
  display: flex; align-items: center; justify-content: space-between; gap: 28px; flex-wrap: wrap;
  padding: 52px 56px; border-radius: 30px; color: #fff;
  background: linear-gradient(120deg, var(--brand-700) 0%, var(--brand-600) 45%, #5a45e6 100%);
  box-shadow: var(--shadow-lg);
}
.cta-blob {
  position: absolute; z-index: -1; width: 380px; height: 380px; left: -80px; top: -120px;
  background: radial-gradient(120% 120% at 30% 25%, rgba(140, 220, 255, .75), rgba(11, 141, 226, .25) 60%, transparent 70%);
  border-radius: 42% 58% 63% 37% / 45% 42% 58% 55%;
  animation: morph 14s ease-in-out infinite, bob 9s ease-in-out infinite;
}
.cta h2 { color: #fff; font-size: clamp(1.45rem, 1.1rem + 1.4vw, 2.1rem); font-weight: 900; }
.cta p { color: #dcefff; margin-top: 6px; font-size: 1.05rem; }
.cta-actions { display: flex; gap: 12px; flex-wrap: wrap; }

/* Contact */
.contact { display: grid; grid-template-columns: 1fr 1.05fr; gap: 28px; align-items: start; }
.contact-cards { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.c-card { display: flex; gap: 14px; padding: 22px; background: var(--surface); border: 1px solid var(--line); border-radius: var(--radius-sm); box-shadow: var(--shadow-sm); }
.c-card:first-child { grid-column: 1 / -1; }
.c-ic { display: grid; place-items: center; width: 46px; height: 46px; flex-shrink: 0; border-radius: 14px; color: #fff; background: linear-gradient(135deg, var(--brand), var(--brand-700)); box-shadow: 0 10px 20px -10px rgba(8, 119, 200, .8); }
.c-ic .i { width: 22px; height: 22px; }
.c-card h3 { font-size: 1rem; font-weight: 800; margin-bottom: 4px; }
.c-card p { color: var(--ink-2); line-height: 1.9; }
.c-card a { font-weight: 700; }
.phones { list-style: none; padding: 0; margin: 4px 0 0; display: grid; grid-template-columns: repeat(3, auto); gap: 8px 22px; }
.phones li { display: grid; }
.phones span { font-size: .85rem; color: var(--muted); }
.phones a { font-size: 1.02rem; white-space: nowrap; }

.form { padding: 30px; }
.form h3 { font-size: 1.3rem; font-weight: 900; }
.form > p.small { margin: 4px 0 18px; }
.field { display: grid; gap: 6px; margin-bottom: 14px; }
.field-row { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
.field label { font-weight: 600; font-size: .92rem; color: var(--ink-2); }
.field input, .field select, .field textarea {
  width: 100%; padding: 12px 14px; border-radius: 12px; border: 1.5px solid var(--line); background: #fbfdff;
  font-size: 1rem; line-height: 1.6; transition: border-color .2s, box-shadow .2s, background-color .2s;
}
.field input[dir="ltr"] { text-align: right; }
.field textarea { resize: vertical; min-height: 110px; }
.field select { appearance: none; -webkit-appearance: none; padding-left: 40px;
  background: #fbfdff url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%2353647a' stroke-width='2' stroke-linecap='round'%3E%3Cpath d='m6 9 6 6 6-6'/%3E%3C/svg%3E") left 14px center / 18px no-repeat; }
.field input:focus, .field select:focus, .field textarea:focus { outline: none; border-color: var(--brand); background-color: #fff; box-shadow: 0 0 0 4px rgba(11, 141, 226, .15); }
.field input[aria-invalid="true"] { border-color: #d64545; }
.form-error { color: #b42318; font-weight: 600; font-size: .92rem; margin-bottom: 12px; }

/* Footer */
.site-footer { position: relative; background: var(--navy); color: #a9bdd4; padding: 90px 0 0; margin-top: 110px; }
.footer-wave {
  position: absolute; top: -1px; left: 0; right: 0; height: 60px;
  background: var(--bg);
  border-radius: 0 0 50% 50% / 0 0 100% 100%;
}
.footer-grid { display: grid; grid-template-columns: 1.4fr 1fr 1fr 1.1fr; gap: 40px; padding-bottom: 50px; }
.f-brand img { height: 42px; width: auto; }
.f-brand p { margin-top: 16px; line-height: 2; max-width: 30em; }
.f-col { display: grid; align-content: start; gap: 6px; }
.f-col h3 { color: #fff; font-size: 1rem; font-weight: 800; margin-bottom: 8px; }
.f-col a { color: #b9cde2; transition: color .2s; width: fit-content; }
.f-col a:hover { color: #7fd0ff; }
.f-hours { margin-top: 6px; color: #7fd0ff; }
.f-mail { margin-top: 4px; }
.footer-bottom { display: flex; justify-content: space-between; flex-wrap: wrap; gap: 8px; padding-block: 22px 26px; border-top: 1px solid rgba(255, 255, 255, .08); font-size: .9rem; color: #8ea6c0; }
.heart { color: #ff78c4; display: inline-block; animation: beat 1.8s ease-in-out infinite; }
@keyframes beat { 0%, 60%, 100% { transform: scale(1); } 30% { transform: scale(1.25); } }

/* Reveal */
.js .reveal { opacity: 0; transform: translateY(24px); transition: opacity .8s var(--ease), transform .8s var(--ease); }
.js .reveal.in { opacity: 1; transform: none; }

/* 404 */
.nf { min-height: 100vh; display: grid; place-items: center; text-align: center; padding: 40px 20px; }
.nf h1 { font-size: clamp(4rem, 3rem + 6vw, 8rem); font-weight: 900; line-height: 1; background: linear-gradient(120deg, var(--brand), var(--violet)); -webkit-background-clip: text; background-clip: text; color: transparent; }
.nf p { color: var(--muted); margin: 16px 0 28px; font-size: 1.1rem; }

/* Responsive */
@media (max-width: 1080px) {
  .nav a:not(.btn) { padding: 8px 9px; font-size: .9rem; }
  .steps { grid-template-columns: repeat(3, 1fr); row-gap: 40px; }
  .steps::before { display: none; }
  .why-grid { grid-template-columns: repeat(2, 1fr); }
  .why-item:nth-child(3) { border-inline-start: 0; }
  .why-item:nth-child(n+3) { border-top: 1px solid var(--line); }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .contact { grid-template-columns: 1fr; }
}
@media (max-width: 920px) {
  :root { --header-h: 64px; }
  .header-cta { display: none; }
  .menu-toggle { display: flex; }
  .nav {
    position: fixed; top: var(--header-h); left: 12px; right: 12px; margin: 0;
    flex-direction: column; align-items: stretch; gap: 2px; padding: 12px;
    background: rgba(255, 255, 255, .97); backdrop-filter: blur(16px); -webkit-backdrop-filter: blur(16px);
    border-radius: 18px; box-shadow: var(--shadow-lg); border: 1px solid var(--line);
    opacity: 0; visibility: hidden; transform: translateY(-10px); transition: opacity .25s, transform .3s var(--ease), visibility .3s;
  }
  .nav.open { opacity: 1; visibility: visible; transform: none; }
  .nav a:not(.btn) { padding: 12px 14px; font-size: 1rem; border-radius: 12px; }
  .nav-cta { display: flex; margin-top: 8px; }
  .site-header.menu-open { background: rgba(255, 255, 255, .95); }
  .brand img { height: 32px; }

  .hero { padding: calc(var(--header-h) + 36px) 0 80px; }
  .hero-grid { grid-template-columns: 1fr; gap: 28px; }
  .hero-copy { text-align: center; }
  .lead { margin-inline: auto; }
  .hero-actions, .hero-points { justify-content: center; }
  .hero-art { max-width: 460px; }
  .services, .work { grid-template-columns: repeat(2, 1fr); }
  .about, .faq-grid { grid-template-columns: 1fr; gap: 40px; }
  .faq-grid .section-head { position: static; text-align: center; margin: 0 auto; }
  .section { padding: 84px 0; }
  .cta { padding: 40px 32px; }
}
@media (max-width: 640px) {
  .container { padding-inline: 16px; }
  body { font-size: .98rem; }
  .hero-actions .btn { flex: 1 1 100%; }
  .float-chip { font-size: .78rem; padding: 6px 11px; }
  .chip-a { right: -4px; }
  .services, .work, .why-grid, .contact-cards { grid-template-columns: 1fr; }
  .why { margin-top: -30px; }
  .why-item + .why-item { border-inline-start: 0; border-top: 1px solid var(--line); }
  .steps { grid-template-columns: 1fr; gap: 0; text-align: start; }
  .steps::before { display: block; top: 20px; bottom: 20px; right: 31px; left: auto; width: 2px; height: auto; background: linear-gradient(180deg, rgba(123, 97, 255, .6), rgba(11, 141, 226, .8), rgba(47, 211, 245, .6)); }
  .step { display: grid; grid-template-columns: 64px 1fr; column-gap: 18px; text-align: start; padding: 0 0 28px; }
  .step-no { grid-row: 1 / span 2; margin: 0; }
  .step h3 { align-self: end; }
  .step p { margin-top: 2px; }
  .section { padding: 72px 0; }
  .section-head { margin-bottom: 40px; }
  .service { padding: 24px 22px; }
  .phones { grid-template-columns: 1fr; }
  .phones li { display: flex; justify-content: space-between; gap: 12px; }
  .field-row { grid-template-columns: 1fr; gap: 0; }
  .form { padding: 22px 18px; }
  .cta { padding: 34px 22px; text-align: center; justify-content: center; }
  .cta-actions { width: 100%; }
  .cta-actions .btn { flex: 1 1 100%; }
  .footer-grid { grid-template-columns: 1fr; gap: 30px; }
  .footer-bottom { justify-content: center; text-align: center; }
  .site-footer { margin-top: 80px; padding-top: 70px; }
}

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