/* ===========================================================
   Oddology Redesign (light & corporate)
   =========================================================== */

:root {
  --bg:        #ffffff;
  --bg-soft:   #f6f7f9;
  --bg-mute:   #eef0f3;
  --surface:   #ffffff;
  --ink:       #0f1729;
  --body:      #4a5568;
  --muted:     #8b94a3;
  --line:      #e7e9ee;
  --line-soft: #eef0f4;
  --header-bg: rgba(255,255,255,.82);

  --accent:    #ec2a5e;
  --accent-2:  #e8541e;
  --accent-soft:#fff1f4;
  --grad: linear-gradient(120deg,#EF82A5 0%,#EF1C60 42%,#EFA011 82%,#E53312 100%);
  --grad-soft: linear-gradient(120deg,#fdeef3 0%,#fdf1e8 100%);

  --sh-sm:  0 1px 2px rgba(16,24,40,.06);
  --sh:     0 2px 6px rgba(16,24,40,.05), 0 8px 24px -12px rgba(16,24,40,.12);
  --sh-md:  0 4px 10px rgba(16,24,40,.05), 0 18px 38px -16px rgba(16,24,40,.18);
  --sh-lg:  0 12px 28px -8px rgba(16,24,40,.16), 0 36px 64px -28px rgba(16,24,40,.22);
  --sh-hover: 0 18px 40px -18px rgba(16,24,40,.24), 0 8px 22px -10px rgba(236,42,94,.22);

  --r-sm: 10px;
  --r:    16px;
  --r-lg: 22px;

  --container: 1180px;
  --ease: cubic-bezier(.22,.61,.36,1);
}

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

html { scroll-behavior: smooth; scroll-padding-top: 90px; overflow-x: hidden; }

body {
  font-family: 'Outfit', system-ui, -apple-system, Segoe UI, sans-serif;
  background: var(--bg);
  color: var(--body);
  line-height: 1.65;
  font-size: 16.5px;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
  padding-top: 74px;
}

img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }

h1, h2, h3, h4 {
  color: var(--ink);
  font-weight: 700;
  line-height: 1.15;
  letter-spacing: -0.02em;
}

.container {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 24px;
}

.grad-text {
  background: var(--grad);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  font-weight: 600;
  font-size: 0.97rem;
  padding: 13px 24px;
  border-radius: var(--r-sm);
  border: 1px solid transparent;
  cursor: pointer;
  transition: transform .25s var(--ease), box-shadow .25s var(--ease), background .25s;
  white-space: nowrap;
}
.btn svg { width: 18px; height: 18px; }
.btn-primary {
  color: #fff;
  background-image: linear-gradient(100deg,
    #EF82A5 0%, #EF1C60 12%, #EFA011 27%, #E53312 39%,
    #EF1C60 62%, #EF82A5 84%, #EF1C60 100%);
  background-size: 240% 100%;
  background-position: 0% 50%;
  box-shadow: 0 8px 20px -8px rgba(236,42,94,.6);
  transition: background-position .62s cubic-bezier(.4,0,.2,1), box-shadow .3s var(--ease),
              transform .25s var(--ease);
}
.btn-primary:hover,
.btn-primary:focus-visible,
.btn-primary:active {
  background-position: 100% 50%;
  box-shadow: 0 12px 26px -8px rgba(236,42,94,.5);
}
.btn-ghost {
  color: var(--ink);
  border-color: var(--line);
  box-shadow: var(--sh-sm);
  background-color: var(--surface);
  background-image: linear-gradient(0deg, var(--accent-soft), var(--accent-soft));
  background-repeat: no-repeat;
  background-position: left center;
  background-size: 0% 100%;
  transition: background-size .42s var(--ease), border-color .3s, box-shadow .3s, color .3s,
              transform .25s var(--ease);
}
.btn-ghost svg { transition: transform .3s var(--ease); }
.btn-ghost:hover,
.btn-ghost:focus-visible,
.btn-ghost:active {
  background-size: 100% 100%;
  border-color: var(--accent);
  box-shadow: var(--sh);
}
.btn-ghost:hover svg,
.btn-ghost:focus-visible svg { transform: translateX(4px); }
.btn-light {
  background: rgba(255,255,255,.12);
  color: #fff;
  border-color: rgba(255,255,255,.28);
  backdrop-filter: blur(4px);
}
.btn-light:hover { background: rgba(255,255,255,.2); transform: translateY(-2px); }
.btn-lg { padding: 15px 30px; font-size: 1.02rem; }
.btn-full { width: 100%; justify-content: center; }

/* ---------- Section scaffolding ---------- */
.section { padding: 104px 0; }
.section-soft { background: var(--bg-soft); }

.section-head { max-width: 680px; margin: 0 auto 60px; text-align: center; }
.section-head.left { margin-left: 0; text-align: left; }
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: .07em;
  text-transform: uppercase;
  color: var(--accent);
  background: var(--accent-soft);
  border: 1px solid #fbdbe3;
  padding: 6px 13px;
  border-radius: 100px;
}
.eyebrow .dot {
  width: 7px; height: 7px; border-radius: 50%;
  background: var(--grad);
}
.section-head h2 {
  font-size: clamp(2rem, 3.6vw, 2.85rem);
  margin: 18px 0 14px;
}
.section-head p { font-size: 1.08rem; color: var(--body); }

/* ===========================================================
   Header / Nav
   =========================================================== */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 200;
  background: transparent;
  border-bottom: 1px solid transparent;
  transition: background .35s ease, border-color .35s ease, box-shadow .35s ease;
}
.site-header.condensed {
  background: var(--header-bg);
  -webkit-backdrop-filter: blur(16px);
  backdrop-filter: blur(16px);
  border-bottom-color: var(--line);
  box-shadow: 0 6px 24px -16px rgba(16,24,40,.5);
}
.brand,
.nav-cta {
  transition: transform .3s ease;
}
.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 74px;
}
.brand { display: flex; align-items: center; gap: 10px; }
.brand img { width: 38px; height: 38px; }
.brand-name { font-weight: 800; font-size: 1.18rem; color: var(--ink); letter-spacing: -.02em; }
.brand-name span { color: var(--accent); }

.nav-links { display: flex; align-items: center; gap: 4px; }
.nav-links a {
  font-weight: 500;
  font-size: 0.97rem;
  color: var(--body);
  padding: 9px 14px;
  border-radius: 8px;
  transition: color .2s, background .2s;
}
.nav-links a:hover { color: var(--ink); background: var(--bg-mute); }
.nav-cta { display: flex; align-items: center; gap: 12px; }

.burger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: 1px solid var(--line);
  border-radius: 9px;
  padding: 10px 9px;
  cursor: pointer;
}
.burger span {
  width: 20px; height: 2px; border-radius: 2px;
  background: var(--ink);
  transition: transform .3s, opacity .2s;
}
.burger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.burger.open span:nth-child(2) { opacity: 0; }
.burger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* mobile drawer */
.drawer {
  position: fixed;
  inset: 74px 0 auto 0;
  background: var(--surface);
  border-bottom: 1px solid var(--line);
  box-shadow: var(--sh-lg);
  padding: 16px 24px 26px;
  display: flex;
  flex-direction: column;
  gap: 4px;
  transform: translateY(-12px);
  opacity: 0;
  pointer-events: none;
  transition: opacity .25s, transform .25s;
  z-index: 199;
}
.drawer.open { opacity: 1; transform: translateY(0); pointer-events: auto; }
.drawer a {
  padding: 13px 8px;
  font-weight: 500;
  color: var(--ink);
  border-bottom: 1px solid var(--line-soft);
}
.drawer a:last-child { border: 0; }
.drawer .btn { margin-top: 14px; justify-content: center; }

/* ===========================================================
   Hero
   =========================================================== */
.hero {
  position: relative;
  padding: 76px 0 96px;
  overflow: hidden;
}
.hero::before {
  content: "";
  position: absolute;
  top: -240px; right: -180px;
  width: 620px; height: 620px;
  background: radial-gradient(circle, rgba(239,130,165,.28), transparent 62%);
  filter: blur(20px);
  z-index: 0;
  animation: drift1 24s ease-in-out infinite;
}
.hero::after {
  content: "";
  position: absolute;
  bottom: -280px; left: -200px;
  width: 560px; height: 560px;
  background: radial-gradient(circle, rgba(239,160,17,.16), transparent 64%);
  z-index: 0;
  animation: drift2 30s ease-in-out infinite;
}
@keyframes drift1 {
  0%,100% { transform: translate(0,0); }
  50%     { transform: translate(-46px,38px); }
}
@keyframes drift2 {
  0%,100% { transform: translate(0,0); }
  50%     { transform: translate(54px,-34px); }
}
.hero-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1.04fr .96fr;
  gap: 56px;
  align-items: center;
}
.hero-copy h1 {
  font-size: clamp(2.5rem, 5vw, 3.7rem);
  font-weight: 800;
  margin: 22px 0 20px;
  overflow-wrap: break-word;
}
.hero-copy .lead {
  font-size: 1.16rem;
  max-width: 520px;
  color: var(--body);
}
.hero-actions { display: flex; gap: 14px; margin: 30px 0 38px; flex-wrap: wrap; }

.hero-stats {
  display: flex;
  align-items: center;
  gap: 26px;
}
.hero-stats .stat .num {
  font-size: 1.7rem;
  font-weight: 800;
  color: var(--ink);
  letter-spacing: -.03em;
}
.hero-stats .stat .lbl {
  font-size: 0.86rem;
  color: var(--muted);
  font-weight: 500;
}
.hero-stats .sep { width: 1px; height: 38px; background: var(--line); }

/* --- Octopus visual --- */
.hero-visual {
  position: relative;
  width: 100%;
  max-width: 480px;
  margin: 0 auto;
  aspect-ratio: 1 / 1;
}
.hero-orbit {
  position: absolute;
  inset: 11%;
  border: 1.5px dashed #f3d3dc;
  border-radius: 50%;
  animation: spin 60s linear infinite;
}
.hero-glow {
  position: absolute;
  inset: 14%;
  background: radial-gradient(circle, rgba(239,130,165,.32), rgba(239,160,17,.12) 55%, transparent 72%);
  filter: blur(8px);
  border-radius: 50%;
}
.octopus {
  position: absolute;
  width: 60%;
  left: 50%; top: 50%;
  translate: -50% -50%;
  filter: drop-shadow(0 18px 30px rgba(229,51,18,.28));
  animation: bobC 6s ease-in-out infinite;
  z-index: 2;
}
.float-card {
  position: absolute;
  z-index: 3;
  display: flex;
  align-items: center;
  gap: 10px;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 13px;
  padding: 11px 15px 11px 11px;
  box-shadow: var(--sh-md);
  font-weight: 600;
  font-size: 0.92rem;
  color: var(--ink);
  cursor: pointer;
  transform-origin: 50% -24px;
  transition: rotate .55s cubic-bezier(.34,1.4,.5,1), scale .55s cubic-bezier(.34,1.4,.5,1),
              box-shadow .35s;
  animation: bob 5.5s ease-in-out infinite;
}
.float-card:hover,
.float-card:focus-visible,
.float-card:active {
  rotate: -6deg;
  scale: 1.04;
  box-shadow: var(--sh-lg);
  z-index: 6;
}
.float-card .fc-icon {
  width: 34px; height: 34px;
  border-radius: 9px;
  background: var(--grad);
  display: grid;
  place-items: center;
  flex: none;
  transition: scale .35s cubic-bezier(.34,1.5,.5,1), rotate .35s var(--ease);
}
.float-card:hover .fc-icon,
.float-card:active .fc-icon { scale: 1.13; rotate: -8deg; }
.float-card .fc-icon svg { width: 18px; height: 18px; stroke: #fff; }
.float-card.pos-tl { top: 2%;  left: -7%;  animation-delay: -.4s; }
.float-card.pos-tr { top: 6%;  right: -9%; animation-delay: -1.6s; }
.float-card.pos-bl { bottom: 10%; left: -10%; animation-delay: -2.7s; }
.float-card.pos-br { bottom: 4%;  right: -7%; animation-delay: -3.5s; }

@keyframes bob {
  0%,100% { translate: 0 0; }
  50%     { translate: 0 -13px; }
}
@keyframes bobC {
  0%,100% { translate: -50% -50%; }
  50%     { translate: -50% calc(-50% - 14px); }
}
@keyframes spin { to { transform: rotate(360deg); } }

/* ===========================================================
   Trust strip
   =========================================================== */
.trust {
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: var(--bg-soft);
  padding: 26px 0;
}
.trust-inner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px 40px;
  flex-wrap: wrap;
}
.trust-label { font-size: .82rem; font-weight: 600; letter-spacing: .08em; text-transform: uppercase; color: var(--muted); }
.trust-item {
  display: flex; align-items: center; gap: 9px;
  font-weight: 600; color: var(--ink); font-size: .96rem;
}
.trust-item svg { width: 18px; height: 18px; stroke: var(--accent); }

/* ===========================================================
   Services
   =========================================================== */
.services-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 22px;
}
.service-card {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--r);
  padding: 30px 26px;
  transition: box-shadow .35s var(--ease), border-color .35s var(--ease);
  position: relative;
  overflow: hidden;
}
.service-card::before {
  content: "";
  position: absolute;
  inset: 0 0 auto 0;
  height: 3px;
  background: var(--grad);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .35s var(--ease);
}
.service-card:hover { border-color: var(--accent); box-shadow: var(--sh-hover); }
.service-card:hover::before { transform: scaleX(1); }
.svc-icon {
  width: 52px; height: 52px;
  border-radius: 13px;
  background: var(--grad-soft);
  border: 1px solid #f7dbe3;
  display: grid;
  place-items: center;
  margin-bottom: 20px;
  transition: transform .4s cubic-bezier(.34,1.45,.5,1);
}
.service-card:hover .svc-icon { transform: rotate(-7deg) scale(1.09); }
.svc-icon svg { width: 25px; height: 25px; stroke: var(--accent); }
.service-card h3 { font-size: 1.18rem; margin-bottom: 9px; }
.service-card p { font-size: .95rem; margin-bottom: 16px; }
.svc-list { display: flex; flex-direction: column; gap: 8px; }
.svc-list li {
  display: flex; align-items: center; gap: 9px;
  font-size: .9rem; color: var(--body);
}
.svc-list li svg { width: 15px; height: 15px; stroke: var(--accent); flex: none; }

/* ===========================================================
   Work
   =========================================================== */
.work-sub {
  font-size: .78rem; font-weight: 700; letter-spacing: .08em;
  text-transform: uppercase; color: var(--muted);
  margin: 4px 0 22px;
  display: flex; align-items: center; gap: 12px;
}
.work-sub::after { content:""; flex:1; height:1px; background:var(--line); }

.client-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  margin-bottom: 56px;
}
.client-card {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--r);
  overflow: hidden;
  transition: box-shadow .35s var(--ease), border-color .35s var(--ease);
}
.client-card:hover { border-color: var(--accent); box-shadow: var(--sh-hover); }
.client-shot {
  aspect-ratio: 16 / 10;
  overflow: hidden;
  background: var(--bg-mute);
  border-bottom: 1px solid var(--line);
}
.client-shot img { width: 100%; height: 100%; object-fit: cover; object-position: top; transition: transform .6s var(--ease); }
.client-card:hover .client-shot img { transform: scale(1.04); }
.client-meta {
  display: flex; align-items: center; justify-content: space-between;
  padding: 20px 24px;
}
.client-meta h4 { font-size: 1.12rem; }
.client-meta span { font-size: .88rem; color: var(--muted); }
.client-meta .arrow {
  width: 38px; height: 38px; border-radius: 50%;
  border: 1px solid var(--line);
  display: grid; place-items: center;
  transition: background .25s, border-color .25s;
}
.client-meta .arrow svg { width: 17px; height: 17px; stroke: var(--ink); transition: stroke .25s; }
.client-card:hover .arrow { background: var(--grad); border-color: transparent; }
.client-card:hover .arrow svg { stroke: #fff; }

.demo-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 18px;
}
.demo-card {
  border: 1px solid var(--line);
  border-radius: 13px;
  overflow: hidden;
  background: var(--surface);
  transition: box-shadow .35s var(--ease), border-color .35s var(--ease);
}
.demo-card:hover { border-color: var(--accent); box-shadow: var(--sh-hover); }
.demo-card .demo-shot img { transition: transform .5s var(--ease); }
.demo-card:hover .demo-shot img { transform: scale(1.05); }
.demo-bar {
  display: flex; gap: 5px;
  padding: 9px 11px;
  background: var(--bg-soft);
  border-bottom: 1px solid var(--line);
}
.demo-bar span { width: 7px; height: 7px; border-radius: 50%; background: #d6dae1; }
.demo-shot { aspect-ratio: 5 / 6; overflow: hidden; background: var(--bg-mute); }
.demo-shot img { width: 100%; height: 100%; object-fit: cover; object-position: top; }
.demo-label {
  padding: 11px 13px;
  font-size: .88rem;
  font-weight: 600;
  color: var(--ink);
}
.work-cta { text-align: center; margin-top: 44px; }

/* ===========================================================
   About
   =========================================================== */
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  align-items: center;
}
.about-copy .lead {
  font-size: 1.22rem;
  color: var(--ink);
  font-weight: 500;
  margin-bottom: 16px;
}
.about-copy p { margin-bottom: 14px; }
.about-feats {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin: 26px 0 30px;
}
.about-feats .feat {
  display: flex; align-items: center; gap: 9px;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 100px;
  padding: 9px 16px 9px 11px;
  font-weight: 600;
  font-size: .9rem;
  color: var(--ink);
}
.about-feats .feat .chk {
  width: 22px; height: 22px; border-radius: 50%;
  background: var(--grad);
  display: grid; place-items: center;
}
.about-feats .feat .chk svg { stroke: #fff; width: 13px; height: 13px; }

.about-visual { position: relative; }
.about-frame {
  border-radius: var(--r-lg);
  overflow: hidden;
  border: 1px solid var(--line);
  box-shadow: var(--sh-lg);
}
.about-frame .frame-bar {
  display: flex; gap: 6px; align-items: center;
  padding: 12px 16px;
  background: #14181f;
}
.about-frame .frame-bar span { width: 11px; height: 11px; border-radius: 50%; }
.about-frame .frame-bar .r{background:#ff5f57;} .frame-bar .y{background:#febc2e;} .frame-bar .g{background:#28c840;}
.about-frame img { width: 100%; display: block; }
.about-badge {
  position: absolute;
  bottom: -26px; left: -26px;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--r);
  box-shadow: var(--sh-lg);
  padding: 18px 22px;
  display: flex; align-items: center; gap: 14px;
  white-space: nowrap;
  width: max-content;
}
.about-badge .ab-ic {
  width: 46px; height: 46px; border-radius: 11px;
  background: var(--grad);
  display: grid; place-items: center;
}
.about-badge .ab-ic svg { width: 24px; height: 24px; stroke: #fff; }
.about-badge .ab-num { font-size: 1.4rem; font-weight: 800; color: var(--ink); }
.about-badge .ab-lbl { font-size: .82rem; color: var(--muted); }

/* ===========================================================
   Pricing
   =========================================================== */
.pricing-grid {
  display: grid;
  grid-template-columns: 1.15fr 1fr;
  gap: 24px;
  margin-bottom: 26px;
}
.price-card {
  border-radius: var(--r-lg);
  padding: 38px 36px;
  position: relative;
  overflow: hidden;
}
.price-card.feature {
  background: linear-gradient(155deg,#181c25 0%,#23131a 100%);
  color: #d9dde4;
}
.price-card.feature h3 { color: #fff; font-size: 1.5rem; }
.price-card.feature .price-tag {
  display:inline-block; margin-bottom:16px;
  font-size:.76rem; font-weight:700; letter-spacing:.07em; text-transform:uppercase;
  color:#ffd9c2; background:rgba(239,160,17,.16); border:1px solid rgba(239,160,17,.3);
  padding:5px 12px; border-radius:100px;
}
.price-card.feature p { margin: 12px 0 24px; }
.price-card.outline {
  background: var(--surface);
  border: 1px solid var(--line);
}
.price-card.outline h3 { font-size: 1.3rem; margin-bottom: 6px; }
.price-card.outline .ptagline { color: var(--accent); font-weight: 600; font-size: .92rem; margin-bottom: 12px; }
.price-card.outline p { margin-bottom: 22px; font-size: .96rem; }
.price-card.outline .server-thumb {
  border-radius: 12px; overflow: hidden; margin-bottom: 22px;
  border: 1px solid var(--line); height: 120px;
}
.price-card.outline .server-thumb img { width: 100%; height: 100%; object-fit: cover; }

.billing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.billing-card {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--r);
  padding: 26px 24px;
}
.billing-card.hot { border-color: #f6cdd7; background: var(--accent-soft); }
.billing-ic {
  width: 44px; height: 44px; border-radius: 11px;
  background: var(--surface);
  border: 1px solid var(--line);
  display: grid; place-items: center;
  margin-bottom: 16px;
}
.billing-ic svg { width: 21px; height: 21px; stroke: var(--accent); }
.billing-card h4 { font-size: 1.05rem; margin-bottom: 8px; }
.billing-card p { font-size: .92rem; margin-bottom: 12px; }
.billing-note {
  font-size: .78rem; font-weight: 600;
  color: var(--accent);
  display: inline-flex; align-items: center; gap: 6px;
}
.billing-note::before { content:""; width:6px; height:6px; border-radius:50%; background:var(--accent); }

/* ===========================================================
   CTA band
   =========================================================== */
.cta-band {
  position: relative;
  overflow: hidden;
  color: #fff;
  text-align: center;
}
.cta-band .cta-bg {
  position: absolute; inset: 0;
  width: 100%; height: 100%; object-fit: cover;
}
.cta-band .cta-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(120deg,rgba(20,12,16,.92),rgba(40,14,10,.82));
}
.cta-inner {
  position: relative;
  padding: 92px 24px;
  max-width: 720px;
  margin: 0 auto;
}
.cta-inner h2 { color: #fff; font-size: clamp(1.9rem,3.6vw,2.7rem); margin-bottom: 14px; }
.cta-inner p { color: rgba(255,255,255,.8); font-size: 1.08rem; margin-bottom: 30px; }
.cta-inner .btn-primary { box-shadow: 0 14px 34px -10px rgba(0,0,0,.6); }

/* ===========================================================
   Contact
   =========================================================== */
.contact-grid {
  display: grid;
  grid-template-columns: .85fr 1.15fr;
  gap: 30px;
}
.contact-info {
  background: linear-gradient(160deg,#181c25,#241420);
  border-radius: var(--r-lg);
  padding: 40px 36px;
  color: #c7ccd5;
}
.contact-info h3 { color: #fff; font-size: 1.4rem; margin-bottom: 10px; }
.contact-info > p { margin-bottom: 28px; font-size: .96rem; }
.ci-item { display: flex; align-items: center; gap: 14px; margin-bottom: 18px; }
.ci-item .ci-ic {
  width: 44px; height: 44px; border-radius: 11px;
  background: rgba(255,255,255,.07);
  border: 1px solid rgba(255,255,255,.12);
  display: grid; place-items: center;
  flex: none;
}
.ci-item .ci-ic svg { width: 20px; height: 20px; stroke: #ef8ca8; }
.ci-item .ci-lbl { font-size: .78rem; color: #8b94a3; }
.ci-item .ci-val { color: #fff; font-weight: 600; font-size: .98rem; }
.ci-socials { display: flex; gap: 10px; margin-top: 26px; }
.ci-socials a {
  width: 42px; height: 42px; border-radius: 11px;
  background: rgba(255,255,255,.07);
  border: 1px solid rgba(255,255,255,.12);
  display: grid; place-items: center;
  transition: background .25s, transform .25s;
}
.ci-socials a:hover { background: var(--grad); transform: translateY(-3px); border-color: transparent; }
.ci-socials a svg { width: 20px; height: 20px; fill: #fff; }

.contact-form {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  padding: 38px 36px;
  box-shadow: var(--sh);
}
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.field { margin-bottom: 18px; }
.field label {
  display: block;
  font-size: .85rem;
  font-weight: 600;
  color: var(--ink);
  margin-bottom: 7px;
}
.field input, .field select, .field textarea {
  width: 100%;
  font-family: inherit;
  font-size: .96rem;
  color: var(--ink);
  background: var(--bg-soft);
  border: 1px solid var(--line);
  border-radius: var(--r-sm);
  padding: 12px 14px;
  transition: border-color .2s, background .2s, box-shadow .2s;
}
.field textarea { resize: vertical; min-height: 120px; }
.field input:focus, .field select:focus, .field textarea:focus {
  outline: none;
  border-color: var(--accent);
  background: var(--surface);
  box-shadow: 0 0 0 3px rgba(236,42,94,.12);
}
.field input::placeholder, .field textarea::placeholder { color: #aab1bd; }
.form-note {
  margin-top: 14px;
  font-size: .92rem;
  font-weight: 600;
  text-align: center;
  display: none;
}
.form-note.ok { display: block; color: #16a34a; }

/* ---------- Custom select ---------- */
.cselect { position: relative; }
.cselect select {
  position: absolute;
  width: 1px; height: 1px;
  margin: 0; padding: 0;
  opacity: 0;
  pointer-events: none;
}
.cselect-trigger {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  font-family: inherit;
  font-size: .96rem;
  font-weight: 500;
  color: var(--ink);
  text-align: left;
  background: var(--bg-soft);
  border: 1px solid var(--line);
  border-radius: var(--r-sm);
  padding: 12px 14px;
  cursor: pointer;
  transition: border-color .2s, background .2s, box-shadow .2s;
}
.cselect-trigger.placeholder { color: #aab1bd; font-weight: 400; }
.cselect-trigger:hover { border-color: #d3d7df; }
.cselect-trigger.open,
.cselect-trigger:focus-visible {
  outline: none;
  border-color: var(--accent);
  background: var(--surface);
  box-shadow: 0 0 0 3px rgba(236,42,94,.12);
}
.cselect-arrow {
  width: 18px; height: 18px;
  flex: none;
  color: var(--muted);
  transition: transform .3s var(--ease), color .2s;
}
.cselect-trigger.open .cselect-arrow { transform: rotate(180deg); color: var(--accent); }
.cselect-panel {
  position: absolute;
  top: calc(100% + 8px);
  left: 0; right: 0;
  z-index: 60;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--r-sm);
  box-shadow: var(--sh-lg);
  padding: 6px;
  max-height: 266px;
  overflow-y: auto;
  opacity: 0;
  transform: translateY(-8px) scaleY(.96);
  transform-origin: top center;
  pointer-events: none;
  transition: opacity .2s ease, transform .22s var(--ease);
}
.cselect-panel.open { opacity: 1; transform: none; pointer-events: auto; }
.cselect-option {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  padding: 10px 12px;
  border-radius: 8px;
  font-size: .93rem;
  color: var(--body);
  cursor: pointer;
  transition: background .15s, color .15s, padding-left .15s var(--ease);
}
.cselect-option:hover { background: var(--bg-soft); color: var(--ink); padding-left: 16px; }
.cselect-option.selected {
  color: var(--accent);
  font-weight: 600;
  background: var(--accent-soft);
}
.cselect-check { width: 15px; height: 15px; flex: none; opacity: 0; }
.cselect-option.selected .cselect-check { opacity: 1; }

/* ===========================================================
   Reviews
   =========================================================== */
.reviews-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 24px;
  max-width: 720px;
  margin: 0 auto;
}
.review-card {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  padding: 32px 28px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  box-shadow: var(--sh);
  transition: box-shadow .35s var(--ease), border-color .35s var(--ease);
}
.review-card:hover { border-color: var(--accent); box-shadow: var(--sh-hover); }
.rv-stars { font-size: 1.1rem; color: #f59e0b; letter-spacing: 1px; }
.rv-text { font-size: .97rem; color: var(--ink); line-height: 1.75; font-style: italic; flex: 1; margin: 4px 0; }
.rv-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding-top: 4px;
  border-top: 1px solid var(--line);
}
.rv-name { font-weight: 700; font-size: .93rem; color: var(--ink); }

/* ===========================================================
   Footer
   =========================================================== */
.site-footer {
  background: #0f1219;
  color: #9aa2b1;
  padding: 64px 0 30px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr 1fr;
  gap: 40px;
  padding-bottom: 44px;
  border-bottom: 1px solid rgba(255,255,255,.08);
}
.footer-brand .brand-name { color: #fff; }
.footer-brand p { margin-top: 14px; font-size: .93rem; max-width: 290px; }
.footer-col h5 {
  color: #fff;
  font-size: .82rem;
  letter-spacing: .07em;
  text-transform: uppercase;
  margin-bottom: 16px;
}
.footer-col a {
  display: block;
  font-size: .93rem;
  padding: 6px 0;
  transition: color .2s;
}
.footer-col a:hover { color: #ef8ca8; }
.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 26px;
  font-size: .86rem;
  flex-wrap: wrap;
  gap: 10px;
}

/* ===========================================================
   Reveal animation
   =========================================================== */
.reveal {
  opacity: 0;
  transform: translateY(30px) skewY(4.5deg) rotate(-1.6deg);
  transform-origin: left top;
  transition:
    opacity .5s ease,
    transform .72s cubic-bezier(.2,.85,.3,1.14);
  transition-delay: calc(var(--rd, 0) * 72ms);
}
.reveal.in { opacity: 1; transform: none; }

/* ===========================================================
   Responsive
   =========================================================== */
@media (max-width: 1000px) {
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .demo-grid { grid-template-columns: repeat(3, 1fr); }
  .hero-grid { grid-template-columns: 1fr; gap: 48px; }
  .hero-copy { text-align: center; }
  .hero-copy .lead { margin-inline: auto; }
  .hero-actions, .hero-stats { justify-content: center; }
  .about-grid { grid-template-columns: 1fr; gap: 64px; }
  .pricing-grid { grid-template-columns: 1fr; }
  .contact-grid { grid-template-columns: 1fr; }
  .billing-grid { grid-template-columns: 1fr; }
}

@media (max-width: 860px) {
  .nav-links, .nav-cta .btn { display: none; }
  .burger { display: flex; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 32px; }
  .footer-brand { grid-column: 1 / -1; }
  .section { padding: 76px 0; }
  .client-grid { grid-template-columns: 1fr; }
}

@media (max-width: 620px) {
  body { font-size: 16px; }
  .services-grid { grid-template-columns: 1fr; }
  .demo-grid { grid-template-columns: 1fr 1fr; }
  .demo-shot { aspect-ratio: 3 / 2; }
  .form-row { grid-template-columns: 1fr; }
  .hero { padding: 46px 0 72px; }
  .hero-copy h1 { font-size: 2.2rem; }
  .hero-copy .lead { font-size: 1.06rem; }
  .hero-stats { gap: 16px; }
  .hero-stats .stat .num { font-size: 1.4rem; }
  .hero-visual { max-width: 296px; min-height: 296px; }
  .float-card { font-size: .76rem; padding: 7px 10px 7px 7px; gap: 7px; }
  .float-card .fc-icon { width: 26px; height: 26px; }
  .float-card .fc-icon svg { width: 14px; height: 14px; }
  .float-card.pos-tl { top: 0;    left: 0;  right: auto; }
  .float-card.pos-tr { top: 6%;   right: 0; left: auto; }
  .float-card.pos-bl { bottom: 9%; left: 0; right: auto; }
  .float-card.pos-br { bottom: 0; right: 0; left: auto; }
  .price-card, .contact-form, .contact-info { padding: 30px 24px; }
  .about-badge { left: 50%; transform: translateX(-50%); bottom: -30px; }
  .footer-grid { grid-template-columns: 1fr; }
  .footer-bottom { justify-content: center; text-align: center; }
}

@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transform: none; transition: none; }
  .octopus, .float-card, .hero-orbit,
  .hero::before, .hero::after { animation: none; }
  html { scroll-behavior: auto; }
}

/* ===========================================================
   Cookie Consent
   =========================================================== */
#cc-banner {
  position: fixed;
  bottom: 20px; right: 20px;
  z-index: 9990;
  max-width: 420px;
  width: calc(100% - 32px);
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  box-shadow: var(--sh-lg);
  padding: 18px 20px;
  display: grid;
  gap: 10px;
  transform: translateY(calc(100% + 28px));
  opacity: 0;
  transition: transform .38s cubic-bezier(.22,.61,.36,1), opacity .32s ease;
}
#cc-banner.cc-show { transform: translateY(0); opacity: 1; }
.cc-b-icon { color: var(--accent); line-height: 0; }
.cc-b-title { font-weight: 700; font-size: .97rem; color: var(--ink); margin-bottom: 3px; }
.cc-b-body { font-size: .85rem; color: var(--body); line-height: 1.5; }
.cc-b-actions { display: flex; flex-wrap: wrap; gap: 8px; align-items: center; margin-top: 2px; }
.cc-sm { padding: 9px 16px !important; font-size: .86rem !important; }
.cc-btn-manage {
  background: none; border: none; cursor: pointer;
  font-family: inherit; font-size: .84rem;
  color: var(--muted); text-decoration: underline;
  text-underline-offset: 2px; padding: 2px 0;
  transition: color .2s;
}
.cc-btn-manage:hover { color: var(--body); }

#cc-settings {
  position: fixed; inset: 0; z-index: 9995;
  background: rgba(15,23,41,.52);
  backdrop-filter: blur(4px); -webkit-backdrop-filter: blur(4px);
  display: flex; align-items: center; justify-content: center;
  padding: 20px; opacity: 0; transition: opacity .28s ease;
}
#cc-settings.cc-show { opacity: 1; }
#cc-settings[hidden] { display: none !important; }
.cc-s-box {
  background: var(--surface); border: 1px solid var(--line);
  border-radius: var(--r-lg); box-shadow: var(--sh-lg);
  max-width: 520px; width: 100%; max-height: 90vh;
  overflow-y: auto; padding: 26px; display: grid; gap: 18px;
  transform: translateY(14px) scale(.97);
  transition: transform .3s cubic-bezier(.22,.61,.36,1);
}
#cc-settings.cc-show .cc-s-box { transform: none; }
.cc-s-head { display: flex; align-items: center; justify-content: space-between; gap: 12px; }
.cc-s-title { font-weight: 700; font-size: 1.1rem; color: var(--ink); }
.cc-s-close {
  background: none; border: none; cursor: pointer;
  color: var(--muted); display: flex; align-items: center;
  justify-content: center; padding: 6px; border-radius: 8px;
  line-height: 0; transition: color .2s, background .2s; flex: none;
}
.cc-s-close:hover { color: var(--ink); background: var(--bg-mute); }
.cc-s-desc { font-size: .86rem; color: var(--body); line-height: 1.55; }
.cc-cat { border: 1px solid var(--line); border-radius: var(--r-sm); padding: 14px 16px; background: var(--bg-soft); }
.cc-cat-row { display: flex; gap: 16px; align-items: flex-start; justify-content: space-between; }
.cc-cat-info { flex: 1; min-width: 0; }
.cc-cat-name { font-weight: 600; font-size: .93rem; color: var(--ink); margin-bottom: 4px; }
.cc-cat-desc { font-size: .81rem; color: var(--muted); line-height: 1.5; }
.cc-toggle {
  flex: none; width: 44px; height: 24px;
  background: var(--bg-mute); border: 1.5px solid var(--line);
  border-radius: 100px; cursor: pointer; position: relative;
  margin-top: 2px; transition: background .24s, border-color .24s;
}
.cc-toggle.cc-on { background: linear-gradient(100deg,#EF1C60,#EFA011); border-color: transparent; }
.cc-toggle-locked { cursor: not-allowed; opacity: .7; }
.cc-dot {
  display: block; position: absolute; top: 2px; left: 2px;
  width: 16px; height: 16px; background: #fff; border-radius: 50%;
  box-shadow: 0 1px 3px rgba(0,0,0,.2);
  transition: transform .24s cubic-bezier(.22,.61,.36,1);
}
.cc-toggle.cc-on .cc-dot { transform: translateX(20px); }
.cc-s-footer { display: flex; gap: 10px; flex-wrap: wrap; }
.cc-s-footer .btn { flex: 1; justify-content: center; }
.cc-body-lock { overflow: hidden; }

#cc-fab {
  position: fixed;
  bottom: 20px; left: 20px;
  z-index: 9980;
  display: flex; align-items: center; gap: 7px;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 100px;
  padding: 8px 14px 8px 10px;
  box-shadow: var(--sh-md);
  font-family: inherit; font-size: .78rem; font-weight: 600;
  color: var(--muted);
  cursor: pointer;
  transition: color .2s, border-color .2s, box-shadow .2s;
}
#cc-fab:hover { color: var(--ink); border-color: var(--accent); box-shadow: var(--sh-lg); }
#cc-fab svg { flex: none; stroke: currentColor; }

.cc-drawer-btn {
  background: none; border: none; cursor: pointer;
  font-family: inherit; font-size: .93rem;
  color: var(--body); text-align: left;
  padding: 14px 0;
  border-top: 1px solid var(--line);
  width: 100%;
  transition: color .2s;
}
.cc-drawer-btn:hover { color: var(--accent); }

@media (max-width: 480px) {
  #cc-banner { bottom: 10px; right: 8px; left: 8px; max-width: none; width: auto; }
  .cc-s-box { padding: 20px 16px; }
  .cc-s-footer { flex-direction: column; }
  .cc-s-footer .btn { flex: none; width: 100%; }
}

/* ===========================================================
   Page loader / transition
   =========================================================== */
.page-loader {
  position: fixed;
  inset: 0;
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  background: radial-gradient(circle at 50% 42%, #fff4f7, #ffffff 62%);
  transition: opacity .55s ease, visibility .55s;
  will-change: opacity;
  animation: loaderSafety .5s ease 4.2s forwards;
}
.page-loader.loader-hidden {
  opacity: 0;
  visibility: hidden;
}
@keyframes loaderSafety {
  to { opacity: 0; visibility: hidden; }
}
.loader-inner {
  position: relative;
  width: 118px;
  height: 118px;
  display: grid;
  place-items: center;
  transition: transform .55s cubic-bezier(.22,.61,.36,1), opacity .4s ease;
}
.page-loader.loader-hidden .loader-inner {
  transform: scale(1.18);
  opacity: 0;
}
.loader-ring {
  position: absolute;
  inset: 0;
  border-radius: 50%;
  background: conic-gradient(from 90deg,
    rgba(239,28,96,0) 6%, #EF82A5 34%, #EF1C60 58%, #E53312 80%, rgba(239,28,96,0) 100%);
  -webkit-mask: radial-gradient(farthest-side, transparent calc(100% - 4px), #000 calc(100% - 4px));
  mask: radial-gradient(farthest-side, transparent calc(100% - 4px), #000 calc(100% - 4px));
  animation: spin 1s linear infinite;
}
.loader-octo {
  width: 54px;
  height: 54px;
  animation: octoPulse 1.5s ease-in-out infinite;
}
@keyframes octoPulse {
  0%, 100% { transform: scale(1); }
  50%      { transform: scale(1.11); }
}
@media (prefers-reduced-motion: reduce) {
  .page-loader { transition: none; animation: none; }
  .loader-ring, .loader-octo { animation: none; }
}

/* ===========================================================
   How We Work — process track
   =========================================================== */
.process-track {
  position: relative;
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 10px;
}
.process-track::before {
  content: "";
  position: absolute;
  top: 31px;
  left: 11%;
  right: 11%;
  height: 2px;
  background: linear-gradient(90deg, var(--line), #f3c8d3 35%, #f3c8d3 65%, var(--line));
  z-index: 0;
}
.process-step {
  position: relative;
  z-index: 1;
  text-align: center;
  padding: 0 14px;
}
.ps-num {
  width: 64px;
  height: 64px;
  margin: 0 auto 20px;
  border-radius: 50%;
  background: var(--surface);
  border: 2px solid var(--line);
  display: grid;
  place-items: center;
  font-family: 'Space Mono', monospace;
  font-weight: 700;
  font-size: 1.05rem;
  color: var(--accent);
  transition: transform .3s var(--ease), border-color .3s, box-shadow .3s, background .3s, color .3s;
}
.process-step:hover .ps-num {
  border-color: transparent;
  background: var(--grad);
  color: #fff;
  transform: scale(1.09);
  box-shadow: 0 12px 26px -10px rgba(236,42,94,.5);
}
.process-step h3 { font-size: 1.1rem; margin-bottom: 8px; }
.process-step p { font-size: .91rem; }

@media (max-width: 860px) {
  .process-track { grid-template-columns: 1fr 1fr; gap: 36px 12px; }
  .process-track::before { display: none; }
}
@media (max-width: 520px) {
  .process-track { grid-template-columns: 1fr; gap: 28px; }
}

/* ===========================================================
   Theme toggle button
   =========================================================== */
.theme-toggle {
  width: 42px;
  height: 42px;
  border-radius: 9px;
  border: 1px solid var(--line);
  background: transparent;
  display: grid;
  place-items: center;
  cursor: pointer;
  color: var(--body);
  flex: none;
  transition: border-color .2s, color .2s, background .2s;
}
.theme-toggle:hover { border-color: var(--accent); color: var(--accent); }
.theme-toggle svg { width: 19px; height: 19px; }
.theme-toggle .icon-sun { display: none; }
:root[data-theme="dark"] .theme-toggle .icon-moon { display: none; }
:root[data-theme="dark"] .theme-toggle .icon-sun { display: block; }

/* ===========================================================
   Dark theme
   =========================================================== */
:root[data-theme="dark"] {
  --bg:        #0f1117;
  --bg-soft:   #161922;
  --bg-mute:   #20242f;
  --surface:   #1a1e29;
  --ink:       #eef1f6;
  --body:      #abb3c1;
  --muted:     #7e8794;
  --line:      #2a2f3b;
  --line-soft: #21252f;
  --accent-soft: #2c1a22;
  --grad-soft: linear-gradient(120deg,#2b1a22 0%,#2a2017 100%);
  --header-bg: rgba(15,17,23,.82);
}
:root[data-theme="dark"] .eyebrow { border-color: #4a2533; }
:root[data-theme="dark"] .svc-icon { border-color: #4a2533; }
:root[data-theme="dark"] .billing-card.hot { border-color: #5b2c3b; }
:root[data-theme="dark"] .hero-orbit { border-color: #382a31; }
:root[data-theme="dark"] .page-loader {
  background: radial-gradient(circle at 50% 42%, #1c1521, #0f1117 62%);
}
