:root {
  --bg-deep: #05080f;
  --bg-panel: #0b1220;
  --ink: #0b1220;
  --ink-soft: #4b5568;
  --muted: #8b95a7;
  --line: rgba(11, 18, 32, 0.08);
  --surface: #f5f7fb;
  --surface-2: #eef2f8;
  --white: #ffffff;
  --accent: #12b8a8;
  --accent-2: #38bdf8;
  --accent-deep: #0f766e;
  --glow: rgba(18, 184, 168, 0.35);
  --radius: 22px;
  --radius-sm: 14px;
  --shadow: 0 30px 80px rgba(5, 8, 15, 0.14);
  --shadow-soft: 0 18px 40px rgba(5, 8, 15, 0.08);
  --font-display: "Outfit", sans-serif;
  --font-body: "Plus Jakarta Sans", sans-serif;
  --container: 1200px;
  --nav-h: 84px;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: var(--font-body);
  color: var(--ink);
  background: var(--surface);
  line-height: 1.65;
  overflow-x: hidden;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button, input, textarea, select { font: inherit; }
.container { width: min(100% - 2.4rem, var(--container)); margin-inline: auto; }

/* Header chrome: promo + nav stacked (no overlap) */
.site-chrome {
  position: sticky;
  top: 0;
  z-index: 1000;
}
.site-header {
  position: relative;
  inset: auto;
  z-index: 2;
  height: var(--nav-h);
  transition: background .35s var(--ease), backdrop-filter .35s var(--ease), border-color .35s var(--ease), box-shadow .35s var(--ease);
  border-bottom: 1px solid transparent;
  background: transparent;
}
.site-header.on-dark:not(.is-scrolled) {
  background: transparent;
  backdrop-filter: none;
  border-bottom-color: transparent;
  box-shadow: none;
}
.site-chrome:has(.promo-banner) .site-header.on-dark:not(.is-scrolled) {
  background: transparent;
}
.site-header.on-dark:not(.is-scrolled) .brand,
.site-header.on-dark:not(.is-scrolled) .nav-links a,
.site-header.on-dark:not(.is-scrolled) .lang-switch,
.site-header.on-dark:not(.is-scrolled) .lang-switch a,
.site-header.on-dark:not(.is-scrolled) .burger-lines span {
  color: #fff;
}
.site-header.is-scrolled,
.site-header.is-solid {
  background: rgba(245, 247, 251, 0.92);
  backdrop-filter: blur(18px) saturate(1.2);
  border-bottom-color: var(--line);
  box-shadow: 0 10px 40px rgba(5, 8, 15, 0.05);
}
.site-header.on-dark:not(.is-scrolled) .burger {
  background: rgba(255,255,255,0.08);
  border-color: rgba(255,255,255,0.14);
}
.site-header.on-dark:not(.is-scrolled) .burger-lines span { background: #fff; }
.site-header.on-dark:not(.is-scrolled) .nav-links a:hover,
.site-header.on-dark:not(.is-scrolled) .nav-links a.active {
  background: rgba(255,255,255,0.1);
  color: #fff;
}
.nav-inner {
  height: var(--nav-h);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.25rem;
  min-width: 0;
}
.nav-desktop { min-width: 0; flex: 1; display: flex; justify-content: center; }
.brand {
  display: inline-flex;
  align-items: center;
  gap: .65rem;
  z-index: 2;
  line-height: 0;
  flex-shrink: 0;
  max-width: 200px;
}
.brand-logo-full {
  height: 54px;
  width: auto;
  max-width: 200px;
  object-fit: contain;
  display: block;
  background: transparent;
  border-radius: 0;
  padding: 0;
  box-shadow: none;
  transition: filter .3s var(--ease);
}
/* Dark hero header -> show logo in white; light/scrolled header -> original */
.site-header.on-dark:not(.is-scrolled) .brand-logo-full {
  filter: brightness(0) invert(1);
}
.brand-logo-mark {
  width: 44px;
  height: 44px;
  border-radius: 0;
  object-fit: contain;
  background: transparent;
  padding: 0;
  display: block;
  flex-shrink: 0;
}
.brand-text { white-space: nowrap; }
.footer-brand {
  display: inline-block;
  line-height: 0;
  flex-shrink: 0;
}
.footer-logo {
  height: 36px;
  width: auto;
  max-width: 120px;
  object-fit: contain;
  filter: brightness(0) invert(1);
  opacity: .92;
}
.footer-tagline {
  margin: 0;
  max-width: 28ch;
  line-height: 1.45;
  font-size: .82rem;
  color: rgba(255,255,255,.55);
}
.nav-right {
  display: flex;
  align-items: center;
  gap: .65rem;
  flex-shrink: 0;
}
.nav-cta { white-space: nowrap; }
.brand-mark {
  width: 42px; height: 42px; border-radius: 13px;
  display: grid; place-items: center;
  background: linear-gradient(135deg, var(--accent), var(--accent-2));
  color: #041018; font-weight: 800; font-size: .9rem;
  box-shadow: 0 12px 30px var(--glow);
  position: relative;
  overflow: hidden;
}
.brand-mark::after {
  content: "";
  position: absolute; inset: 0;
  background: linear-gradient(120deg, transparent 30%, rgba(255,255,255,.45), transparent 70%);
  transform: translateX(-120%);
  animation: sheen 4.5s ease-in-out infinite;
}
@keyframes sheen {
  0%, 70%, 100% { transform: translateX(-120%); }
  85% { transform: translateX(120%); }
}
.nav-links {
  display: flex; align-items: center; gap: .15rem;
  list-style: none; margin: 0; padding: 0;
}
.nav-links a {
  display: inline-block;
  padding: .55rem .9rem;
  border-radius: 999px;
  color: var(--ink-soft);
  font-weight: 600;
  font-size: .92rem;
  transition: .25s var(--ease);
}
.nav-links a:hover, .nav-links a.active {
  color: var(--ink);
  background: rgba(18,184,168,.1);
}
.lang-switch {
  display: inline-flex; gap: .2rem;
  padding: .25rem;
  border-radius: 999px;
  border: 1px solid var(--line);
  background: rgba(255,255,255,.55);
}
.lang-switch a {
  min-width: 36px; height: 32px;
  display: grid; place-items: center;
  border-radius: 999px;
  font-size: .78rem;
  font-weight: 800;
  letter-spacing: .04em;
  color: var(--ink-soft);
  transition: .25s var(--ease);
}
.lang-switch a.active {
  background: var(--ink);
  color: #fff;
}
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: .55rem;
  padding: .9rem 1.4rem;
  border-radius: 999px;
  border: 1px solid transparent;
  font-weight: 700;
  cursor: pointer;
  transition: transform .25s var(--ease), box-shadow .25s var(--ease), background .25s ease, color .25s ease, border-color .25s ease;
  position: relative;
  overflow: hidden;
}
.btn:hover { transform: translateY(-2px); }
.btn-primary {
  background: linear-gradient(135deg, var(--accent), #0ea5e9);
  color: #041018;
  box-shadow: 0 14px 34px var(--glow);
}
.btn-primary:hover { box-shadow: 0 18px 40px rgba(14,165,233,.35); }
.btn-outline {
  border-color: rgba(11,18,32,.14);
  background: transparent;
  color: var(--ink);
}
.btn-sm {
  padding: .45rem .85rem;
  font-size: .84rem;
}
.btn-ghost {
  background: rgba(255,255,255,.08);
  border-color: rgba(255,255,255,.16);
  color: #fff;
  backdrop-filter: blur(8px);
}
.btn-light { background: #fff; color: var(--ink); }
.burger {
  display: none; width: 46px; height: 46px;
  border: 1px solid var(--line); border-radius: 12px;
  background: rgba(255,255,255,.8);
  align-items: center; justify-content: center;
  cursor: pointer; z-index: 1002; padding: 0;
}
.burger-lines { width: 18px; height: 14px; position: relative; }
.burger-lines span {
  position: absolute; left: 0; width: 100%; height: 2px;
  background: var(--ink); border-radius: 2px;
  transition: .3s var(--ease);
}
.burger-lines span:nth-child(1){top:0}
.burger-lines span:nth-child(2){top:6px}
.burger-lines span:nth-child(3){top:12px}
.burger.is-open .burger-lines span:nth-child(1){top:6px;transform:rotate(45deg)}
.burger.is-open .burger-lines span:nth-child(2){opacity:0}
.burger.is-open .burger-lines span:nth-child(3){top:6px;transform:rotate(-45deg)}

/* Hero */
.hero {
  position: relative;
  min-height: 100vh;
  display: grid;
  align-items: end;
  overflow: hidden;
  color: #fff;
  background:
    radial-gradient(ellipse 60% 50% at 85% 15%, rgba(56,189,248,.28), transparent 55%),
    radial-gradient(ellipse 50% 45% at 10% 80%, rgba(18,184,168,.32), transparent 55%),
    radial-gradient(circle at 50% 40%, rgba(255,255,255,.04), transparent 40%),
    linear-gradient(160deg, #03060c 0%, #0a1424 45%, #0d1c2f 100%);
}
.hero-noise {
  position: absolute; inset: 0; pointer-events: none; opacity: .35;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.45'/%3E%3C/svg%3E");
  mix-blend-mode: soft-light;
}
.hero-grid {
  position: absolute; inset: 0; pointer-events: none;
  background-image:
    linear-gradient(rgba(255,255,255,.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.035) 1px, transparent 1px);
  background-size: 64px 64px;
  mask-image: radial-gradient(ellipse at center, black 20%, transparent 75%);
}
.hero-orb {
  position: absolute;
  width: min(58vw, 560px);
  height: min(58vw, 560px);
  right: -6%; bottom: -12%;
  border-radius: 50%;
  background:
    radial-gradient(circle at 32% 30%, rgba(255,255,255,.35), transparent 28%),
    radial-gradient(circle at 50% 50%, rgba(18,184,168,.55), transparent 62%),
    radial-gradient(circle at 70% 65%, rgba(56,189,248,.4), transparent 65%);
  filter: blur(4px);
  animation: floatOrb 9s ease-in-out infinite;
  pointer-events: none;
}
.hero-orb.secondary {
  width: min(30vw, 280px); height: min(30vw, 280px);
  left: 8%; top: 18%; right: auto; bottom: auto;
  opacity: .55; animation-delay: -3s;
}
@keyframes floatOrb {
  0%,100% { transform: translate3d(0,0,0) scale(1); }
  50% { transform: translate3d(0,-22px,0) scale(1.05); }
}
.hero-inner {
  position: relative; z-index: 2;
  padding: 5.5rem 0 4.8rem;
  max-width: 820px;
}
.hero-kicker {
  display: inline-flex; align-items: center; gap: .55rem;
  padding: .45rem .9rem;
  border-radius: 999px;
  border: 1px solid rgba(255,255,255,.14);
  background: rgba(255,255,255,.06);
  color: rgba(255,255,255,.82);
  font-size: .82rem;
  font-weight: 700;
  letter-spacing: .04em;
  text-transform: uppercase;
  margin-bottom: 1.4rem;
  animation: rise .8s var(--ease) both;
}
.hero-kicker i {
  width: 8px; height: 8px; border-radius: 50%;
  background: var(--accent);
  box-shadow: 0 0 0 4px rgba(18,184,168,.25);
  animation: pulse 2s ease infinite;
}
@keyframes pulse {
  0%,100% { box-shadow: 0 0 0 0 rgba(18,184,168,.35); }
  50% { box-shadow: 0 0 0 8px rgba(18,184,168,0); }
}
.brand-hero {
  font-family: var(--font-display);
  font-size: clamp(3.2rem, 9vw, 6.2rem);
  font-weight: 800;
  letter-spacing: -.055em;
  line-height: .92;
  margin: 0 0 1.1rem;
  background: linear-gradient(115deg, #fff 10%, #99f6e4 55%, #7dd3fc 100%);
  -webkit-background-clip: text; background-clip: text; color: transparent;
  animation: rise .9s var(--ease) .05s both;
}
.hero h1 {
  font-family: var(--font-display);
  font-size: clamp(1.55rem, 3.4vw, 2.35rem);
  font-weight: 600;
  letter-spacing: -.03em;
  line-height: 1.2;
  margin: 0 0 1.1rem;
  max-width: 18ch;
  color: rgba(255,255,255,.94);
  animation: rise .9s var(--ease) .12s both;
}
.hero .lead {
  margin: 0 0 2rem;
  color: rgba(255,255,255,.72);
  font-size: 1.08rem;
  max-width: 46ch;
  animation: rise .9s var(--ease) .2s both;
}
.hero-actions {
  display: flex; flex-wrap: wrap; gap: .85rem;
  animation: rise .9s var(--ease) .28s both;
}
.hero-metrics {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
  margin-top: 3rem;
  padding-top: 0;
  border-top: 0;
  animation: rise .9s var(--ease) .36s both;
}
.hero-metrics > div {
  position: relative;
  padding: 1.1rem 1.15rem;
  border-radius: 16px;
  background: linear-gradient(160deg, rgba(255,255,255,.08), rgba(255,255,255,.02));
  border: 1px solid rgba(255,255,255,.12);
  backdrop-filter: blur(6px);
  overflow: hidden;
  transition: transform .3s var(--ease), border-color .3s var(--ease);
}
.hero-metrics > div::before {
  content: "";
  position: absolute;
  left: 0; top: 0; bottom: 0;
  width: 3px;
  background: linear-gradient(180deg, var(--accent), #0ea5e9);
}
.hero-metrics > div:hover {
  transform: translateY(-4px);
  border-color: rgba(255,255,255,.28);
}
.hero-metrics strong {
  display: flex;
  align-items: baseline;
  font-family: var(--font-display);
  font-size: clamp(2.6rem, 4.5vw, 3.4rem);
  font-weight: 800;
  line-height: 1;
  letter-spacing: -.03em;
  margin-bottom: .45rem;
  background: linear-gradient(120deg, #fff 30%, #7dd3fc);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}
/* The counter number itself must match the suffix size */
.hero-metrics strong span,
.hero-metrics strong .js-counter {
  font-size: inherit;
  font-weight: inherit;
  color: inherit;
  letter-spacing: inherit;
}
.hero-metrics > div > span {
  color: rgba(255,255,255,.62);
  font-size: .85rem;
  font-weight: 600;
  letter-spacing: .02em;
}

@keyframes rise {
  from { opacity: 0; transform: translateY(24px); }
  to { opacity: 1; transform: translateY(0); }
}

/* Sections */
.section { padding: 6rem 0; position: relative; }
.section-alt {
  background:
    radial-gradient(circle at 100% 0%, rgba(18,184,168,.08), transparent 35%),
    linear-gradient(180deg, #eef3f9, var(--surface));
}
.section-head {
  display: flex; justify-content: space-between; align-items: end;
  gap: 1.5rem; margin-bottom: 2.8rem;
}
.eyebrow {
  display: inline-block;
  color: var(--accent-deep);
  font-weight: 800;
  font-size: .78rem;
  letter-spacing: .12em;
  text-transform: uppercase;
  margin-bottom: .7rem;
}
.section-head h2, .page-hero h1, .block-title {
  font-family: var(--font-display);
  font-size: clamp(2rem, 3.5vw, 3rem);
  letter-spacing: -.045em;
  line-height: 1.05;
  margin: 0 0 .55rem;
}
.section-head p, .page-hero p { margin: 0; color: var(--ink-soft); max-width: 46ch; }

.page-hero {
  padding: 3.5rem 0 3.2rem;
  background:
    radial-gradient(circle at 90% 10%, rgba(18,184,168,.16), transparent 35%),
    radial-gradient(circle at 0% 100%, rgba(56,189,248,.1), transparent 30%),
    linear-gradient(180deg, #e8eef8, var(--surface));
  position: relative;
  overflow: hidden;
}
.page-hero::after {
  content: "";
  position: absolute; right: -8%; top: 10%;
  width: 280px; height: 280px; border-radius: 50%;
  background: radial-gradient(circle, rgba(18,184,168,.18), transparent 70%);
  animation: floatOrb 10s ease-in-out infinite;
}

.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.25rem; }
.grid-4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1rem; }
.grid-2 { display: grid; grid-template-columns: 1.1fr .9fr; gap: 2.5rem; align-items: center; }

.card-premium {
  position: relative;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 22px;
  padding: 1.55rem;
  box-shadow: var(--shadow-soft);
  overflow: hidden;
  isolation: isolate;
  transition: transform .35s var(--ease), box-shadow .35s var(--ease), border-color .35s ease;
}
.card-premium::before {
  content: "";
  position: absolute;
  inset: -40% auto auto -40%;
  width: 70%;
  height: 70%;
  background: linear-gradient(135deg, rgba(255,255,255,.55), rgba(18,184,168,.18), transparent 70%);
  transform: translate(-30%, -30%) rotate(12deg);
  opacity: 0;
  transition: transform .65s var(--ease), opacity .45s ease;
  pointer-events: none;
  z-index: 0;
}
.card-premium::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, transparent 35%, rgba(255,255,255,.55) 50%, transparent 65%);
  transform: translate(-120%, -120%);
  transition: transform .7s var(--ease);
  pointer-events: none;
  z-index: 1;
}
.card-premium:hover {
  transform: translateY(-10px);
  box-shadow: 0 28px 60px rgba(5, 8, 15, .12);
  border-color: rgba(18,184,168,.28);
}
.card-premium:hover::before {
  opacity: 1;
  transform: translate(85%, 85%) rotate(12deg);
}
.card-premium:hover::after {
  transform: translate(120%, 120%);
}
.card-premium > * { position: relative; z-index: 2; }
.card-icon {
  width: 54px; height: 54px; border-radius: 16px;
  display: grid; place-items: center;
  background: linear-gradient(145deg, rgba(18,184,168,.16), rgba(56,189,248,.14));
  color: var(--accent-deep);
  margin-bottom: 1.1rem;
}
.card-icon .service-icon,
.card-icon svg {
  width: 26px;
  height: 26px;
  display: block;
}
.card-premium h3 {
  font-family: var(--font-display);
  letter-spacing: -.025em;
  margin: 0 0 .55rem;
  font-size: 1.15rem;
}
.card-premium p { margin: 0; color: var(--ink-soft); line-height: 1.55; }

.media-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
  transition: transform .35s var(--ease), box-shadow .35s var(--ease);
}
.media-card:hover { transform: translateY(-8px); box-shadow: var(--shadow); }
.media-frame {
  aspect-ratio: 16/10;
  background:
    linear-gradient(135deg, rgba(18,184,168,.35), rgba(56,189,248,.25)),
    linear-gradient(160deg, #0b1220, #17324d);
  position: relative;
  overflow: hidden;
}
.media-frame::after {
  content: "";
  position: absolute; inset: 0;
  background: linear-gradient(180deg, transparent 40%, rgba(5,8,15,.35));
}
.media-card .body { padding: 1.3rem 1.4rem 1.55rem; }
.media-card h3 {
  font-family: var(--font-display);
  letter-spacing: -.025em;
  margin: 0 0 .45rem;
}
.media-card p { margin: 0; color: var(--ink-soft); }

/* Blog post gallery */
.blog-cover {
  width: 100%;
  border-radius: 24px;
  margin-bottom: 2rem;
  display: block;
  aspect-ratio: 16 / 9;
  object-fit: cover;
}
.blog-gallery {
  margin-top: 2.75rem;
  padding-top: 2rem;
  border-top: 1px solid var(--line);
}
.blog-gallery .block-title { margin-bottom: 1.1rem; }
.blog-gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: .85rem;
}
.blog-gallery-item {
  position: relative;
  display: block;
  width: 100%;
  aspect-ratio: 4 / 3;
  padding: 0;
  border: 0;
  border-radius: 16px;
  overflow: hidden;
  cursor: zoom-in;
  background: #0b1220;
  box-shadow: var(--shadow-soft);
}
.blog-gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform .45s var(--ease);
}
.blog-gallery-item:hover img { transform: scale(1.05); }
.blog-gallery-zoom {
  position: absolute;
  inset: auto .7rem .7rem auto;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: rgba(5,8,15,.55);
  color: #fff;
  opacity: 0;
  transition: opacity .25s ease;
}
.blog-gallery-zoom svg { width: 16px; height: 16px; }
.blog-gallery-item:hover .blog-gallery-zoom { opacity: 1; }
@media (max-width: 720px) {
  .blog-gallery-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}
.meta {
  display: flex; gap: .7rem; flex-wrap: wrap;
  color: var(--muted); font-size: .82rem; margin-bottom: .5rem; font-weight: 600;
}

.about-visual {
  min-height: 420px;
  border-radius: 28px;
  position: relative;
  overflow: hidden;
  background:
    linear-gradient(145deg, rgba(18,184,168,.85), rgba(14,165,233,.55)),
    #0b1220;
  box-shadow: var(--shadow);
}
.about-visual::before {
  content: "";
  position: absolute; inset: 18% 16%;
  border: 1px solid rgba(255,255,255,.28);
  border-radius: 22px;
  backdrop-filter: blur(2px);
  animation: framePulse 5s ease-in-out infinite;
}
@keyframes framePulse {
  0%,100% { transform: scale(1); opacity: .7; }
  50% { transform: scale(1.03); opacity: 1; }
}

/* About page — expanded */
.about-hero {
  position: relative;
  padding: 6rem 0 3.5rem;
  background: #070b14;
  color: #fff;
  overflow: hidden;
}
.about-hero-bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 55% 45% at 80% 15%, rgba(18,184,168,.25), transparent 55%),
    radial-gradient(ellipse 40% 35% at 10% 85%, rgba(56,189,248,.12), transparent 50%),
    linear-gradient(180deg, #070b14, #0b1220);
}
.about-hero-inner {
  position: relative;
  z-index: 1;
  display: grid;
  gap: 2.5rem;
}
.about-hero-copy {
  max-width: 720px;
}
.about-hero h1 {
  font-family: var(--font-display);
  font-size: clamp(2.4rem, 5vw, 3.8rem);
  letter-spacing: -.035em;
  margin: .4rem 0 1rem;
  line-height: 1.08;
}
.about-hero-copy > p {
  margin: 0;
  font-size: 1.12rem;
  line-height: 1.65;
  color: rgba(255,255,255,.72);
  max-width: 52ch;
}
.about-hero-ctas {
  display: flex;
  flex-wrap: wrap;
  gap: .7rem;
  margin-top: 1.6rem;
}
.about-hero-stats {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1rem;
}
.about-hero-stats div {
  padding: 1.15rem 1.2rem;
  border: 1px solid rgba(255,255,255,.1);
  border-radius: 16px;
  background: rgba(255,255,255,.03);
}
.about-hero-stats strong {
  display: block;
  font-family: var(--font-display);
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  letter-spacing: -.03em;
  color: #5eead4;
  line-height: 1;
  margin-bottom: .4rem;
}
.about-hero-stats span {
  font-size: .82rem;
  color: rgba(255,255,255,.55);
}

.about-story { padding-top: 3.5rem; }
.about-story-grid {
  display: grid;
  grid-template-columns: minmax(260px, .85fr) minmax(0, 1.15fr);
  gap: 2.5rem 3rem;
  align-items: center;
}
.about-story-visual {
  min-height: 420px;
}
.about-story-frame {
  height: 100%;
  min-height: 420px;
  border-radius: 28px;
  position: relative;
  overflow: hidden;
  background:
    linear-gradient(145deg, rgba(18,184,168,.9), rgba(14,165,233,.5)),
    #0b1220;
  box-shadow: var(--shadow);
  display: grid;
  place-items: center;
}
.about-story-badge {
  width: 96px;
  height: 96px;
  border-radius: 28px;
  display: grid;
  place-items: center;
  font-family: var(--font-display);
  font-size: 1.8rem;
  font-weight: 700;
  color: #041018;
  background: #fff;
  box-shadow: 0 16px 40px rgba(0,0,0,.2);
  z-index: 1;
}
.about-story-lines {
  position: absolute;
  inset: 18% 14%;
  border: 1px solid rgba(255,255,255,.28);
  border-radius: 22px;
  display: grid;
  align-content: center;
  gap: .85rem;
  padding: 2.5rem;
}
.about-story-lines i {
  display: block;
  height: 8px;
  border-radius: 999px;
  background: rgba(255,255,255,.22);
}
.about-story-lines i:nth-child(1) { width: 72%; }
.about-story-lines i:nth-child(2) { width: 90%; }
.about-story-lines i:nth-child(3) { width: 58%; }
.about-story-lines i:nth-child(4) { width: 80%; }
.about-story-lines i:nth-child(5) { width: 45%; }
.about-story-copy {
  font-size: 1.05rem;
}
.about-story-copy h2 {
  font-size: 1.55rem;
  margin-top: 1.5rem;
}
.about-story-copy h2:first-child { margin-top: 0; }

.about-values-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1rem;
  margin-top: 1.5rem;
}
.about-value {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 18px;
  padding: 1.4rem 1.35rem;
  box-shadow: var(--shadow-soft);
}
.about-value span {
  display: inline-block;
  font-size: .75rem;
  font-weight: 700;
  letter-spacing: .08em;
  color: var(--accent-deep);
  margin-bottom: .7rem;
}
.about-value h3 {
  margin: 0 0 .45rem;
  font-family: var(--font-display);
  font-size: 1.15rem;
  letter-spacing: -.02em;
}
.about-value p {
  margin: 0;
  color: var(--ink-soft);
  font-size: .94rem;
  line-height: 1.55;
}

.about-process-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1rem;
  margin-top: 1.5rem;
}
.about-step {
  padding: 1.4rem 1.25rem;
  border-radius: 18px;
  border: 1px solid var(--line);
  background: #fff;
  position: relative;
}
.about-step strong {
  display: block;
  font-family: var(--font-display);
  font-size: 1.8rem;
  color: rgba(18,184,168,.35);
  line-height: 1;
  margin-bottom: .7rem;
}
.about-step h3 {
  margin: 0 0 .4rem;
  font-size: 1.08rem;
}
.about-step p {
  margin: 0;
  color: var(--ink-soft);
  font-size: .92rem;
  line-height: 1.55;
}

.about-seo {
  max-width: 920px;
  margin: 0 auto;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 22px;
  padding: 2rem 2.2rem;
  box-shadow: var(--shadow-soft);
}
.about-seo .eyebrow { margin-bottom: .8rem; }

@media (max-width: 1024px) {
  .about-hero-stats,
  .about-values-grid,
  .about-process-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .about-story-grid { grid-template-columns: 1fr; }
}
@media (max-width: 640px) {
  .about-hero { padding: 4.5rem 0 2.5rem; }
  .about-hero-stats { grid-template-columns: 1fr 1fr; }
  .about-values-grid,
  .about-process-grid { grid-template-columns: 1fr; }
  .about-seo { padding: 1.4rem 1.2rem; }
}

.process-item {
  padding: 1.4rem;
  border-radius: var(--radius);
  background: #fff;
  border: 1px solid var(--line);
  height: 100%;
}
.process-item .num {
  font-family: var(--font-display);
  font-size: 2rem;
  letter-spacing: -.04em;
  background: linear-gradient(135deg, var(--accent), var(--accent-2));
  -webkit-background-clip: text; background-clip: text; color: transparent;
  margin-bottom: .6rem;
}
.process-item h3 {
  font-family: var(--font-display);
  margin: 0 0 .45rem;
  letter-spacing: -.02em;
}
.process-item p { margin: 0; color: var(--ink-soft); font-size: .95rem; }

.marquee {
  overflow: hidden;
  border-block: 1px solid var(--line);
  background: #fff;
  padding: 1.1rem 0;
}
.marquee-track {
  display: flex; gap: 2.5rem; width: max-content;
  animation: marquee 28s linear infinite;
}
.marquee-track span {
  font-family: var(--font-display);
  font-weight: 700;
  letter-spacing: -.02em;
  color: var(--ink-soft);
  white-space: nowrap;
}
.marquee-track span::before {
  content: "◆";
  color: var(--accent);
  margin-right: 2.5rem;
  font-size: .7rem;
}
@keyframes marquee {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

.prose { color: var(--ink-soft); font-size: 1.05rem; }
.prose h2, .prose h3 {
  color: var(--ink);
  font-family: var(--font-display);
  letter-spacing: -.03em;
}
.seo-block {
  margin-top: 4rem;
  padding: 2rem;
  border-radius: var(--radius);
  background: #fff;
  border: 1px solid var(--line);
}

/* Legal pages */
.legal-hero { padding-bottom: 2.4rem; }
.legal-body .prose {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 24px;
  padding: 2.4rem;
  box-shadow: var(--shadow-soft);
  line-height: 1.75;
}
.legal-body .prose h2 {
  font-size: 1.2rem;
  margin: 2rem 0 .7rem;
  padding-top: 1.2rem;
  border-top: 1px solid var(--line);
}
.legal-body .prose h2:first-of-type { border-top: 0; padding-top: 0; margin-top: 1rem; }
.legal-body .prose p { margin: 0 0 1rem; }
.legal-body .prose ul { margin: 0 0 1rem; padding-left: 1.2rem; }
.legal-body .prose li { margin-bottom: .45rem; }
.legal-body .prose a { color: var(--brand); text-decoration: underline; }
.legal-updated {
  margin-top: 1.4rem;
  font-size: .9rem;
  color: var(--muted);
}
.legal-cta {
  margin-top: 1.4rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1rem;
  padding: 1.4rem 1.6rem;
  border: 1px solid var(--line);
  border-radius: 20px;
  background: #fff;
}
.legal-cta span { color: var(--ink-soft); font-weight: 500; }
.footer-legal { display: flex; gap: 1.2rem; flex-wrap: wrap; }
.footer-legal a { color: inherit; opacity: .8; transition: opacity .2s; }
.footer-legal a:hover { opacity: 1; }
@media (max-width: 640px) {
  .legal-body .prose { padding: 1.6rem; }
  .legal-cta { flex-direction: column; align-items: flex-start; }
}
.seo-block h2 {
  font-family: var(--font-display);
  letter-spacing: -.03em;
  margin: 0 0 1rem;
}

.contact-wrap { display: grid; grid-template-columns: .9fr 1.1fr; gap: 1.5rem; }
.contact-card, .form-card {
  background: rgba(255,255,255,.9);
  border: 1px solid var(--line);
  border-radius: 24px;
  padding: 1.8rem;
  box-shadow: var(--shadow-soft);
}
.contact-list { list-style: none; margin: 1.5rem 0 0; padding: 0; display: grid; gap: 1rem; }
.contact-list li strong { display: block; margin-bottom: .15rem; }

/* Premium contact page */
.contact-hero {
  position: relative;
  padding: calc(var(--nav-h) + 3.2rem) 0 4.5rem;
  color: #fff;
  overflow: hidden;
  background: linear-gradient(145deg, #05080f 0%, #0b1220 45%, #0f2a3a 100%);
}
.contact-hero-bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 18% 20%, rgba(18,184,168,.28), transparent 34%),
    radial-gradient(circle at 88% 10%, rgba(56,189,248,.22), transparent 32%),
    linear-gradient(rgba(255,255,255,.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.04) 1px, transparent 1px);
  background-size: auto, auto, 48px 48px, 48px 48px;
  pointer-events: none;
}
.contact-hero-inner {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1.4fr .9fr;
  gap: 2.4rem;
  align-items: end;
}
.contact-hero-copy .eyebrow.light {
  color: rgba(125,211,252,.95);
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.12);
  display: inline-flex;
  padding: .35rem .75rem;
  border-radius: 999px;
  margin-bottom: 1rem;
}
.contact-hero-copy h1 {
  font-family: var(--font-display);
  font-size: clamp(2.4rem, 5vw, 3.6rem);
  letter-spacing: -.04em;
  margin: 0 0 .9rem;
  line-height: 1.05;
  max-width: 14ch;
}
.contact-hero-copy p {
  margin: 0;
  color: rgba(255,255,255,.72);
  font-size: 1.05rem;
  line-height: 1.65;
  max-width: 42ch;
}
.contact-hero-pills {
  display: flex;
  flex-wrap: wrap;
  gap: .7rem;
  margin-top: 1.6rem;
}
.contact-hero-pills span {
  display: inline-flex;
  align-items: center;
  gap: .45rem;
  padding: .55rem .9rem;
  border-radius: 999px;
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.1);
  color: rgba(255,255,255,.85);
  font-size: .84rem;
  font-weight: 600;
}
.contact-hero-pills svg { width: 16px; height: 16px; color: var(--accent); flex-shrink: 0; }
.contact-hero-stats {
  display: grid;
  gap: .85rem;
}
.contact-hero-stats > div {
  padding: 1.05rem 1.2rem;
  border-radius: 16px;
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.1);
  backdrop-filter: blur(8px);
}
.contact-hero-stats strong {
  display: block;
  font-family: var(--font-display);
  font-size: 1.55rem;
  letter-spacing: -.03em;
  margin-bottom: .2rem;
  background: linear-gradient(120deg, #fff, #7dd3fc);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}
.contact-hero-stats span {
  color: rgba(255,255,255,.58);
  font-size: .82rem;
  font-weight: 600;
}

.contact-section { padding-top: 0; margin-top: -2.4rem; position: relative; z-index: 2; }
.contact-premium {
  display: grid;
  grid-template-columns: minmax(280px, .95fr) minmax(0, 1.25fr);
  gap: 1.4rem;
  align-items: start;
}
.contact-panel,
.contact-form-panel {
  border-radius: 28px;
  box-shadow: 0 28px 70px rgba(5,8,15,.12);
  overflow: hidden;
}
.contact-panel {
  background: linear-gradient(165deg, #0b1220, #12304a 70%, #0f766e);
  color: #fff;
  padding: 1.8rem 1.7rem 1.7rem;
  display: grid;
  gap: 1.35rem;
}
.contact-panel-head h2 {
  font-family: var(--font-display);
  font-size: 1.45rem;
  letter-spacing: -.02em;
  margin: 0 0 .45rem;
}
.contact-panel-head p {
  margin: 0;
  color: rgba(255,255,255,.68);
  line-height: 1.55;
  font-size: .95rem;
}
.contact-channels { display: grid; gap: .75rem; }
.contact-channel {
  display: grid;
  grid-template-columns: 46px 1fr;
  gap: .85rem;
  align-items: center;
  padding: .9rem 1rem;
  border-radius: 16px;
  background: rgba(255,255,255,.07);
  border: 1px solid rgba(255,255,255,.1);
  color: inherit;
  text-decoration: none;
  transition: background .25s var(--ease), transform .25s var(--ease), border-color .25s var(--ease);
}
a.contact-channel:hover {
  background: rgba(255,255,255,.12);
  border-color: rgba(255,255,255,.22);
  transform: translateY(-2px);
}
.contact-channel-icon {
  width: 46px;
  height: 46px;
  border-radius: 14px;
  display: grid;
  place-items: center;
  background: rgba(18,184,168,.18);
  color: #5eead4;
}
.contact-channel-icon svg { width: 22px; height: 22px; }
.contact-channel small {
  display: block;
  font-size: .72rem;
  text-transform: uppercase;
  letter-spacing: .06em;
  color: rgba(255,255,255,.55);
  margin-bottom: .15rem;
  font-weight: 700;
}
.contact-channel strong {
  display: block;
  font-size: .98rem;
  font-weight: 700;
  word-break: break-word;
}
.contact-wa {
  display: flex;
  align-items: center;
  gap: .9rem;
  padding: 1rem 1.1rem;
  border-radius: 16px;
  background: #25d366;
  color: #fff;
  text-decoration: none;
  box-shadow: 0 14px 30px rgba(37,211,102,.3);
  transition: transform .25s var(--ease), box-shadow .25s var(--ease);
}
.contact-wa:hover {
  transform: translateY(-2px);
  box-shadow: 0 18px 36px rgba(37,211,102,.4);
}
.contact-wa svg { width: 34px; height: 34px; flex-shrink: 0; }
.contact-wa strong { display: block; font-size: .98rem; margin-bottom: .1rem; }
.contact-wa small { color: rgba(255,255,255,.85); font-size: .8rem; }
.contact-socials {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: .8rem;
  flex-wrap: wrap;
  padding-top: .2rem;
}
.contact-socials > span {
  font-size: .78rem;
  text-transform: uppercase;
  letter-spacing: .08em;
  color: rgba(255,255,255,.5);
  font-weight: 700;
}
.contact-socials > div { display: flex; gap: .45rem; }
.contact-socials a {
  width: 38px;
  height: 38px;
  border-radius: 12px;
  display: grid;
  place-items: center;
  background: rgba(255,255,255,.08);
  border: 1px solid rgba(255,255,255,.12);
  color: #fff;
  font-size: .68rem;
  font-weight: 800;
  letter-spacing: .04em;
  text-decoration: none;
  transition: background .2s ease, transform .2s ease;
}
.contact-socials a:hover {
  background: rgba(255,255,255,.18);
  transform: translateY(-2px);
}
.contact-promise {
  display: grid;
  grid-template-columns: 12px 1fr;
  gap: .85rem;
  padding: 1rem 1.05rem;
  border-radius: 16px;
  background: rgba(0,0,0,.22);
  border: 1px solid rgba(255,255,255,.08);
}
.contact-promise-dot {
  width: 10px;
  height: 10px;
  margin-top: .35rem;
  border-radius: 50%;
  background: #34d399;
  box-shadow: 0 0 0 0 rgba(52,211,153,.7);
  animation: sidePulse 1.8s ease-in-out infinite;
}
.contact-promise strong {
  display: block;
  font-size: .92rem;
  margin-bottom: .25rem;
}
.contact-promise p {
  margin: 0;
  color: rgba(255,255,255,.65);
  font-size: .84rem;
  line-height: 1.5;
}

.contact-form-panel {
  background: #fff;
  border: 1px solid var(--line);
  padding: 2rem 1.9rem 1.9rem;
}
.contact-form-head {
  margin-bottom: 1.5rem;
  padding-bottom: 1.2rem;
  border-bottom: 1px solid var(--line);
}
.contact-form-head h2 {
  font-family: var(--font-display);
  font-size: 1.55rem;
  letter-spacing: -.02em;
  margin: 0 0 .4rem;
}
.contact-form-head p {
  margin: 0;
  color: var(--ink-soft);
  line-height: 1.55;
}
.contact-form .form-grid-2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}
.contact-form-foot {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  flex-wrap: wrap;
  margin-top: .4rem;
}
.contact-form-note {
  margin: 0;
  color: var(--muted);
  font-size: .82rem;
  max-width: 34ch;
  line-height: 1.45;
}
.contact-submit {
  display: inline-flex;
  align-items: center;
  gap: .45rem;
  padding: .95rem 1.4rem;
  font-size: .98rem;
}
/* Honeypot must be unreachable for humans but present for bots */
.hp-field {
  position: absolute !important;
  left: -9999px !important;
  top: auto;
  width: 1px;
  height: 1px;
  overflow: hidden;
  opacity: 0;
  pointer-events: none;
}

.form-group { margin-bottom: 1rem; }
.form-group label { display: block; font-weight: 700; margin-bottom: .4rem; font-size: .92rem; }
.form-control {
  width: 100%;
  border: 1px solid rgba(11,18,32,.1);
  border-radius: 14px;
  padding: .95rem 1.05rem;
  background: #f8fafc;
  outline: none;
  transition: .2s ease;
  font: inherit;
  color: var(--ink);
}
.form-control:focus {
  border-color: var(--accent);
  box-shadow: 0 0 0 4px rgba(18,184,168,.14);
  background: #fff;
}
.form-control::placeholder { color: #94a3b8; }
textarea.form-control { min-height: 160px; resize: vertical; }
.alert { padding: .95rem 1rem; border-radius: 14px; margin-bottom: 1rem; font-weight: 600; }
.alert-success { background: #ecfdf5; color: #047857; }
.alert-error { background: #fef2f2; color: #b91c1c; }

.cta-band {
  background:
    radial-gradient(circle at 90% 20%, rgba(255,255,255,.18), transparent 35%),
    linear-gradient(120deg, #0f766e, #0369a1 60%, #0ea5e9);
  color: #fff;
  border-radius: 32px;
  padding: 2.8rem;
  display: flex; justify-content: space-between; align-items: center; gap: 1.5rem;
  box-shadow: 0 30px 60px rgba(3,105,161,.28);
  position: relative; overflow: hidden;
}
.cta-band::after {
  content: "";
  position: absolute; width: 220px; height: 220px; border-radius: 50%;
  right: -40px; bottom: -60px;
  background: rgba(255,255,255,.12);
}
.cta-band h2 {
  font-family: var(--font-display);
  margin: 0 0 .45rem;
  letter-spacing: -.03em;
  position: relative; z-index: 1;
}
.cta-band p { margin: 0; opacity: .92; position: relative; z-index: 1; }
.cta-band .btn { position: relative; z-index: 1; }

/* Service detail */
.svc-hero {
  position: relative;
  padding: 5.5rem 0 3.2rem;
  background: #070b14;
  color: #fff;
  overflow: hidden;
}
.svc-hero-bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 60% 50% at 85% 20%, rgba(18,184,168,.22), transparent 55%),
    radial-gradient(ellipse 40% 40% at 10% 80%, rgba(56,189,248,.1), transparent 50%),
    linear-gradient(180deg, #070b14 0%, #0b1220 100%);
  pointer-events: none;
}
.svc-hero-inner {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(280px, .95fr);
  gap: 2.5rem;
  align-items: center;
}
.svc-breadcrumb {
  display: flex;
  flex-wrap: wrap;
  gap: .4rem;
  align-items: center;
  font-size: .8rem;
  color: rgba(255,255,255,.5);
  margin-bottom: 1rem;
}
.svc-breadcrumb a { color: rgba(255,255,255,.62); }
.svc-breadcrumb a:hover { color: #5eead4; }
.svc-hero h1 {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 3.1rem);
  letter-spacing: -.03em;
  margin: .35rem 0 .85rem;
  line-height: 1.12;
}
.svc-lead {
  margin: 0;
  max-width: 42ch;
  font-size: 1.08rem;
  line-height: 1.65;
  color: rgba(255,255,255,.72);
}
.svc-hero-ctas {
  display: flex;
  flex-wrap: wrap;
  gap: .7rem;
  margin-top: 1.5rem;
}
.btn-outline-light {
  background: transparent;
  color: #fff;
  border: 1px solid rgba(255,255,255,.28);
}
.btn-outline-light:hover {
  background: rgba(255,255,255,.08);
  border-color: rgba(255,255,255,.45);
  color: #fff;
}
.svc-hero-media {
  border-radius: 22px;
  overflow: hidden;
  border: 1px solid rgba(255,255,255,.1);
  box-shadow: 0 28px 60px rgba(0,0,0,.35);
  aspect-ratio: 3 / 2;
  background: #0f172a;
}
.svc-hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.svc-hero-placeholder {
  height: 100%;
  min-height: 280px;
  display: grid;
  place-items: center;
  background: linear-gradient(145deg, #0f172a, #134e4a);
}
.svc-hero-placeholder .card-icon {
  width: 72px;
  height: 72px;
  background: rgba(255,255,255,.08);
  color: #5eead4;
}

.svc-section { padding-top: 2.5rem; }
.svc-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.55fr) minmax(260px, .7fr);
  gap: 2rem 2.4rem;
  align-items: start;
}
.svc-body {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: calc(var(--radius) + 4px);
  padding: 1.8rem 2rem 2.1rem;
}
.svc-body h2 {
  margin-top: 1.75rem;
  margin-bottom: .7rem;
  font-size: 1.35rem;
}
.svc-body h2:first-child { margin-top: 0; }
.svc-body h3 {
  margin-top: 1.35rem;
  margin-bottom: .5rem;
  font-size: 1.12rem;
}
.svc-body ul {
  margin: .6rem 0 1rem;
  padding-left: 1.15rem;
  display: grid;
  gap: .45rem;
}
.svc-body li { line-height: 1.55; }
.svc-body p { margin: 0 0 .9rem; }

.svc-aside {
  display: grid;
  gap: 1rem;
  position: sticky;
  top: calc(var(--nav-h) + 1rem);
}
.svc-aside-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 1.35rem 1.4rem;
  display: grid;
  gap: .7rem;
}
.svc-aside-card h3 {
  margin: 0;
  font-family: var(--font-display);
  font-size: 1.2rem;
  letter-spacing: -.02em;
}
.svc-aside-card p {
  margin: 0;
  color: var(--ink-soft);
  font-size: .94rem;
  line-height: 1.55;
}
.btn-block { width: 100%; justify-content: center; }
.svc-aside-phone {
  text-align: center;
  font-weight: 600;
  color: var(--accent-deep);
  font-size: .92rem;
}
.svc-aside-meta div {
  display: grid;
  gap: .15rem;
  padding: .55rem 0;
  border-bottom: 1px solid var(--line);
}
.svc-aside-meta div:last-child { border-bottom: 0; padding-bottom: 0; }
.svc-aside-meta span {
  font-size: .72rem;
  text-transform: uppercase;
  letter-spacing: .06em;
  color: var(--muted);
  font-weight: 700;
}
.svc-aside-meta strong { font-size: .95rem; }
.svc-related { padding-top: 0; }

@media (max-width: 960px) {
  .svc-hero-inner,
  .svc-layout { grid-template-columns: 1fr; }
  .svc-aside { position: static; }
  .svc-hero { padding: 4.5rem 0 2.4rem; }
  .svc-body { padding: 1.4rem 1.25rem 1.6rem; }
}

.site-footer {
  background: #05080f;
  color: rgba(255,255,255,.68);
  padding: 1.35rem 0 1rem;
  margin-top: 0;
  border-top: 1px solid rgba(255,255,255,.06);
}
.footer-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.25rem 2rem;
  flex-wrap: wrap;
  padding-bottom: .9rem;
}
.footer-brand-block {
  display: flex;
  align-items: center;
  gap: .85rem;
  min-width: 0;
}
.footer-nav {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: .15rem .1rem;
}
.footer-nav a {
  color: rgba(255,255,255,.7);
  font-size: .88rem;
  font-weight: 500;
  padding: .35rem .65rem;
  border-radius: 8px;
  transition: color .18s ease, background .18s ease;
}
.footer-nav a:hover {
  color: #fff;
  background: rgba(255,255,255,.06);
}
.footer-contact {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: .2rem;
  font-size: .84rem;
}
.footer-contact a {
  color: rgba(255,255,255,.62);
}
.footer-contact a:hover { color: #5eead4; }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,.07);
  padding-top: .7rem;
  display: flex;
  justify-content: space-between;
  gap: .75rem;
  flex-wrap: wrap;
  font-size: .78rem;
  color: rgba(255,255,255,.42);
}

/* Motion */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity .8s var(--ease), transform .8s var(--ease);
}
.reveal.is-visible { opacity: 1; transform: none; }
.reveal-delay-1 { transition-delay: .08s; }
.reveal-delay-2 { transition-delay: .16s; }
.reveal-delay-3 { transition-delay: .24s; }
.stagger > * { opacity: 0; transform: translateY(20px); }
.stagger.is-visible > * {
  animation: rise .7s var(--ease) both;
}
.stagger.is-visible > *:nth-child(1){animation-delay:.05s}
.stagger.is-visible > *:nth-child(2){animation-delay:.12s}
.stagger.is-visible > *:nth-child(3){animation-delay:.19s}
.stagger.is-visible > *:nth-child(4){animation-delay:.26s}
.stagger.is-visible > *:nth-child(5){animation-delay:.33s}
.stagger.is-visible > *:nth-child(6){animation-delay:.4s}

.mobile-nav {
  position: fixed; inset: 0;
  background: rgba(5,8,15,.5);
  opacity: 0; pointer-events: none;
  transition: opacity .3s ease;
  z-index: 1001;
}
.mobile-nav.is-open { opacity: 1; pointer-events: auto; }
.mobile-panel {
  position: absolute; top: 0; right: 0;
  width: min(88vw, 380px); height: 100%;
  background: linear-gradient(180deg, #fff, #f3f7fc);
  padding: calc(var(--nav-h) + 1rem) 1.25rem 1.5rem;
  transform: translateX(100%);
  transition: transform .4s var(--ease);
  box-shadow: -24px 0 60px rgba(5,8,15,.25);
  display: flex; flex-direction: column; gap: .3rem;
}
.mobile-nav.is-open .mobile-panel { transform: none; }
.mobile-panel a {
  padding: 1rem 1rem;
  border-radius: 14px;
  font-weight: 700;
}
.mobile-panel a:hover, .mobile-panel a.active {
  background: rgba(18,184,168,.1);
  color: var(--accent-deep);
}
.mobile-langs { display: flex; gap: .4rem; margin: .5rem 0 1rem; }
.mobile-langs a {
  min-width: 48px; justify-content: center;
  border: 1px solid var(--line);
  padding: .65rem !important;
}
.mobile-langs a.active { background: var(--ink); color: #fff !important; }

.pagination { display: flex; gap: .4rem; list-style: none; padding: 0; margin: 0; flex-wrap: wrap; }
.pagination .page-link {
  display: inline-flex; padding: .55rem .85rem; border-radius: 10px;
  border: 1px solid var(--line); background: #fff; color: var(--ink); font-weight: 600;
}
.pagination .active .page-link { background: var(--accent); border-color: var(--accent); color: #041018; }

@media (max-width: 1024px) {
  .nav-links { display: none; }
  .burger { display: inline-flex; }
  .grid-3, .grid-4, .grid-2, .contact-wrap, .contact-premium, .contact-hero-inner { grid-template-columns: 1fr; }
  .footer-row { flex-direction: column; align-items: flex-start; gap: 1rem; }
  .footer-nav { justify-content: flex-start; }
  .footer-contact { align-items: flex-start; }
  .hero-metrics { grid-template-columns: 1fr 1fr; gap: 1.2rem; }
  .cta-band { flex-direction: column; align-items: flex-start; }
  .contact-hero-stats { grid-template-columns: repeat(3, 1fr); }
  .contact-hero { padding-bottom: 3.5rem; }
  .contact-section { margin-top: -1.6rem; }
}
@media (max-width: 640px) {
  .section { padding: 4rem 0; }
  .section-head { flex-direction: column; align-items: start; }
  .hero-metrics { grid-template-columns: 1fr; }
  .nav-right .lang-switch { display: none; }
  .brand-hero { font-size: clamp(2.7rem, 14vw, 3.8rem); }
  .contact-form .form-grid-2 { grid-template-columns: 1fr; }
  .contact-hero-stats { grid-template-columns: 1fr; }
  .contact-form-panel { padding: 1.4rem 1.2rem 1.3rem; }
  .contact-panel { padding: 1.4rem 1.25rem; }
  .contact-form-foot { flex-direction: column; align-items: stretch; }
  .contact-submit { width: 100%; justify-content: center; }
}
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation: none !important;
    transition: none !important;
  }
}

/* Premium hero layout + device stage (desktop + phone) */
.hero-premium { align-items: center; }

/* Ana səhifə: hero header-ın arxasına keçir — yuxarıda eyni fon */
body:has(.hero-premium) .site-chrome:has(.site-header.on-dark) {
  background: transparent;
}
body:has(.hero-premium) .hero-premium {
  margin-top: calc(-1 * var(--chrome-offset, var(--nav-h)));
  padding-top: var(--chrome-offset, var(--nav-h));
}
body:has(.hero-premium) .hero-premium .hero-inner {
  padding-top: 4.2rem;
}
.hero-layout {
  position: relative; z-index: 2;
  display: grid;
  grid-template-columns: 1fr 1.15fr;
  gap: 2rem;
  align-items: center;
  padding: 4.5rem 0 4rem;
  width: min(100% - 2.4rem, var(--container));
  margin-inline: auto;
}
.hero-layout .hero-inner { padding: 0; max-width: none; }

.device-stage {
  display: grid;
  justify-items: center;
  gap: 1rem;
  perspective: 1800px;
}
.device-stage-inner {
  position: relative;
  width: min(100%, 560px);
  height: clamp(340px, 52vw, 430px);
  display: grid;
  place-items: end center;
}
.desktop-device {
  position: absolute;
  left: 0;
  bottom: 18px;
  width: min(78%, 390px);
  z-index: 1;
  transform: rotateY(-10deg) rotateX(4deg);
  transform-style: preserve-3d;
  animation: deskFloat 9s ease-in-out infinite;
  filter: drop-shadow(0 28px 40px rgba(0,0,0,.45));
}
@keyframes deskFloat {
  0%, 100% { transform: rotateY(-10deg) rotateX(4deg) translateY(0); }
  50% { transform: rotateY(-8deg) rotateX(3deg) translateY(-10px); }
}
.desktop-bezel {
  background: linear-gradient(160deg, #2c3344, #121826 55%, #0a0e16);
  border-radius: 14px 14px 8px 8px;
  padding: 10px 10px 8px;
  border: 1px solid rgba(255,255,255,.08);
  box-shadow:
    inset 0 1px 0 rgba(255,255,255,.12),
    inset 0 -1px 0 rgba(0,0,0,.45);
}
.desktop-camera {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #3a455c;
  box-shadow: inset 0 0 0 1.5px #0b1220, 0 0 0 1px rgba(255,255,255,.08);
  margin: 0 auto 7px;
}
.desktop-screen {
  position: relative;
  aspect-ratio: 16 / 10;
  border-radius: 4px;
  overflow: hidden;
  background: #060a12;
}
.desktop-chin {
  height: 14px;
  background: linear-gradient(180deg, #1a2233, #0d121c);
  border-radius: 0 0 6px 6px;
  display: grid;
  place-items: center;
}
.desktop-logo-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: rgba(255,255,255,.18);
}
.desktop-stand {
  width: 58px;
  height: 28px;
  margin: 0 auto;
  background: linear-gradient(180deg, #2a3346, #121826);
  clip-path: polygon(18% 0, 82% 0, 100% 100%, 0 100%);
  position: relative;
}
.desktop-stand i {
  position: absolute;
  inset: 4px 10px auto;
  height: 3px;
  border-radius: 999px;
  background: rgba(255,255,255,.08);
}
.desktop-base {
  width: 120px;
  height: 7px;
  margin: -1px auto 0;
  border-radius: 999px;
  background: linear-gradient(180deg, #2a3346, #0a0e16);
  box-shadow: 0 8px 18px rgba(0,0,0,.35);
}

.phone-device {
  position: absolute;
  right: 2%;
  bottom: 0;
  z-index: 3;
  width: min(38%, 168px);
  transform: rotateY(-8deg) rotateX(5deg) rotateZ(2deg);
  transform-style: preserve-3d;
  animation: phoneFloat 8s ease-in-out infinite;
  filter: drop-shadow(0 30px 36px rgba(0,0,0,.5));
}
@keyframes phoneFloat {
  0%, 100% { transform: rotateY(-8deg) rotateX(5deg) rotateZ(2deg) translateY(0); }
  50% { transform: rotateY(-5deg) rotateX(3deg) rotateZ(1deg) translateY(-12px); }
}
.device-stage:hover .phone-device {
  transform: rotateY(-2deg) rotateX(1deg) rotateZ(0deg);
}
.device-stage:hover .desktop-device {
  transform: rotateY(-4deg) rotateX(1deg);
}
.phone-shell {
  position: relative;
  border-radius: 28px;
  padding: 7px;
  background:
    linear-gradient(145deg, #3a4256 0%, #1a2030 35%, #0b101a 70%, #1c2436 100%);
  box-shadow:
    inset 0 1px 1px rgba(255,255,255,.25),
    inset 0 -2px 4px rgba(0,0,0,.55),
    0 0 0 1px rgba(0,0,0,.65);
}
.phone-glass {
  position: relative;
  border-radius: 22px;
  overflow: hidden;
  background: #000;
  box-shadow: inset 0 0 0 1px rgba(255,255,255,.06);
}
.phone-dynamic-island {
  position: absolute;
  top: 8px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 5;
  width: 42%;
  height: 18px;
  border-radius: 999px;
  background: #05070c;
  box-shadow: inset 0 0 0 1px rgba(255,255,255,.06);
  display: flex;
  align-items: center;
  justify-content: flex-end;
  padding-right: 7px;
}
.phone-island-cam {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: radial-gradient(circle at 35% 35%, #3d5a80, #0b1220 60%);
  box-shadow: 0 0 0 1px rgba(255,255,255,.08);
}
.phone-screen {
  position: relative;
  aspect-ratio: 9 / 19.5;
  background: #0b1220;
}
.phone-home-indicator {
  position: absolute;
  left: 50%;
  bottom: 6px;
  transform: translateX(-50%);
  z-index: 5;
  width: 34%;
  height: 3px;
  border-radius: 999px;
  background: rgba(255,255,255,.45);
}
.phone-side-btn {
  position: absolute;
  background: linear-gradient(180deg, #2a3346, #0d121c);
  border-radius: 2px;
  box-shadow: 0 1px 1px rgba(0,0,0,.4);
}
.phone-side-btn--silent {
  left: -2px;
  top: 72px;
  width: 2px;
  height: 18px;
  border-radius: 2px 0 0 2px;
}
.phone-side-btn--vol-up {
  left: -2px;
  top: 108px;
  width: 2px;
  height: 28px;
  border-radius: 2px 0 0 2px;
}
.phone-side-btn--vol-down {
  left: -2px;
  top: 142px;
  width: 2px;
  height: 28px;
  border-radius: 2px 0 0 2px;
}
.phone-side-btn--power {
  right: -2px;
  top: 120px;
  width: 2px;
  height: 42px;
  border-radius: 0 2px 2px 0;
}

.device-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transform: scale(1.03);
  transition: opacity .55s var(--ease), transform .55s var(--ease);
  pointer-events: none;
}
.device-slide.is-active {
  opacity: 1;
  transform: scale(1);
  pointer-events: auto;
}
.device-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center;
  display: block;
}
.device-slide-meta {
  position: absolute;
  left: 0; right: 0; bottom: 0;
  padding: .75rem .8rem .85rem;
  background: linear-gradient(180deg, transparent, rgba(5,8,15,.82));
  color: #fff;
}
.device-slide-meta strong {
  display: block;
  font-size: .78rem;
  margin-bottom: .1rem;
}
.device-slide-meta span {
  font-size: .68rem;
  opacity: .75;
}
.device-slide-meta.is-phone {
  padding: .7rem .65rem 1.15rem;
}
.device-slide-meta.is-phone strong { font-size: .7rem; }
.device-slide-meta.is-phone span { font-size: .62rem; }

.device-stage-caption {
  text-align: center;
  color: rgba(255,255,255,.78);
  line-height: 1.2;
}
.device-stage-caption strong {
  display: block;
  font-family: var(--font-display);
  font-size: .95rem;
  letter-spacing: -.01em;
  color: #fff;
}
.device-stage-caption span {
  font-size: .72rem;
  opacity: .55;
}

.phone-dots {
  display: flex;
  gap: .4rem;
}
.phone-dots button {
  width: 8px; height: 8px; border-radius: 50%;
  border: 0; padding: 0;
  background: rgba(255,255,255,.28);
  cursor: pointer;
}
.phone-dots button.is-active {
  background: var(--accent);
  width: 22px;
  border-radius: 999px;
}
@keyframes mockFloat {
  0%,100% { transform: translateY(0); }
  50% { transform: translateY(-12px); }
}

/* Promo / campaign */
.promo-banner {
  position: relative;
  z-index: 3;
  background: linear-gradient(90deg, #0f766e, #0369a1);
  color: #fff;
  padding: .7rem 0;
}
.promo-banner.theme-warning { background: linear-gradient(90deg, #b45309, #ea580c); }
.promo-banner.theme-success { background: linear-gradient(90deg, #047857, #0d9488); }
.promo-banner.theme-promo { background: linear-gradient(90deg, #7c2d12, #0f766e); }
.promo-inner {
  display: flex;
  align-items: center;
  gap: .85rem;
  flex-wrap: nowrap;
}
.promo-copy {
  display: flex;
  flex-direction: column;
  gap: .1rem;
  flex: 1;
  min-width: 0;
}
.promo-copy strong {
  font-size: .95rem;
  line-height: 1.25;
}
.promo-copy span {
  opacity: .9;
  font-size: .86rem;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.promo-badge {
  display: inline-flex;
  padding: .25rem .6rem;
  border-radius: 999px;
  background: rgba(255,255,255,.18);
  font-size: .72rem;
  font-weight: 800;
  letter-spacing: .04em;
  text-transform: uppercase;
  flex-shrink: 0;
}
.promo-close {
  border: 0;
  background: transparent;
  color: #fff;
  font-size: 1.4rem;
  cursor: pointer;
  line-height: 1;
  flex-shrink: 0;
}
.promo-float {
  position: fixed; right: 1.2rem; bottom: 1.2rem; z-index: 90;
  width: min(92vw, 320px);
  background: #fff; color: var(--ink);
  border-radius: 18px; padding: 1.1rem 1.15rem;
  box-shadow: 0 24px 60px rgba(5,8,15,.22);
  border: 1px solid var(--line);
  animation: rise .6s var(--ease) both;
}
.promo-float .promo-close { color: var(--ink); position: absolute; right: .7rem; top: .45rem; }
.promo-float p { color: var(--ink-soft); margin: .45rem 0 .9rem; }

/* Left side promo dock */
.promo-side {
  position: fixed;
  left: 0;
  top: 55%;
  transform: translateY(-50%);
  z-index: 95;
  display: flex;
  align-items: stretch;
}
.promo-side-tab {
  writing-mode: vertical-rl;
  transform: rotate(180deg);
  border: 0;
  cursor: pointer;
  background: linear-gradient(180deg, #0f766e, #0ea5e9);
  color: #fff;
  font-weight: 800;
  font-size: .8rem;
  letter-spacing: .08em;
  text-transform: uppercase;
  padding: 1.3rem .7rem;
  border-radius: 0 16px 16px 0;
  position: relative;
  box-shadow: 0 16px 40px rgba(15, 118, 110, .38);
  display: flex;
  align-items: center;
  gap: .6rem;
  transition: padding .25s var(--ease);
}
.promo-side-tab:hover { padding-inline: .85rem; }
.promo-side-pulse {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: #bbf7d0;
  box-shadow: 0 0 0 0 rgba(187, 247, 208, .8);
  animation: sidePulse 1.6s ease-in-out infinite;
  flex-shrink: 0;
}
@keyframes sidePulse {
  0%, 100% { box-shadow: 0 0 0 0 rgba(187,247,208,.7); }
  50% { box-shadow: 0 0 0 7px rgba(187,247,208,0); }
}
.promo-side-panel {
  width: min(88vw, 340px);
  background: #fff;
  color: var(--ink);
  border: 1px solid var(--line);
  border-left: 0;
  border-radius: 0 20px 20px 0;
  padding: 0;
  overflow: hidden;
  box-shadow: 0 30px 70px rgba(5,8,15,.22);
  display: none;
  position: relative;
  animation: sideSlide .35s var(--ease);
}
@keyframes sideSlide {
  from { opacity: 0; transform: translateX(-14px); }
  to { opacity: 1; transform: translateX(0); }
}
.promo-side.is-open .promo-side-panel { display: block; }
.promo-side.is-open .promo-side-tab { border-radius: 0; }
.promo-side-panel .promo-badge {
  display: inline-block;
  margin: 0;
  font-size: .68rem;
  font-weight: 800;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: #fff;
  background: rgba(255,255,255,.2);
  padding: .28rem .6rem;
  border-radius: 999px;
}
.promo-side-panel > .promo-badge,
.promo-side-panel > strong {
  position: relative;
  z-index: 1;
}
.promo-side-panel > .promo-badge {
  margin: 1.15rem 1.2rem 0;
}
.promo-side-head {
  background: linear-gradient(150deg, #0f766e, #0ea5e9);
  padding: 1.15rem 1.2rem 1.25rem;
  color: #fff;
}
.promo-side-head .promo-badge { margin-bottom: .6rem; }
.promo-side-panel strong {
  display: block;
  font-family: var(--font-display);
  font-size: 1.15rem;
  line-height: 1.25;
  margin: 0;
}
.promo-side-body {
  padding: 1.05rem 1.2rem 1.25rem;
}
.promo-side-copy {
  color: var(--ink-soft);
  font-size: .92rem;
  margin-bottom: 1.1rem;
  line-height: 1.55;
}
.promo-side-copy p { margin: 0 0 .4rem; }
.promo-side-body .btn { width: 100%; justify-content: center; }
.promo-side .promo-close {
  position: absolute;
  right: .6rem;
  top: .5rem;
  z-index: 2;
  color: #fff;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: rgba(0,0,0,.18);
  display: grid;
  place-items: center;
  line-height: 1;
}

/* Campaign header icon + modal */
.campaign-nav-btn {
  position: relative;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  border: 1px solid rgba(15,23,42,.1);
  background: #fff;
  color: var(--accent-deep);
  display: grid;
  place-items: center;
  cursor: pointer;
  flex-shrink: 0;
  box-shadow: 0 8px 20px rgba(15,23,42,.08);
  transition: transform .25s var(--ease), box-shadow .25s var(--ease);
}
.site-header.on-dark:not(.is-scrolled) .campaign-nav-btn {
  background: rgba(255,255,255,.12);
  border-color: rgba(255,255,255,.18);
  color: #5eead4;
}
.campaign-nav-btn svg { width: 18px; height: 18px; }
.campaign-nav-btn:hover { transform: translateY(-2px); }
.campaign-nav-pulse {
  position: absolute;
  inset: -3px;
  border-radius: 50%;
  border: 2px solid rgba(20,184,166,.45);
  animation: campaignPulse 1.8s ease-out infinite;
  pointer-events: none;
}
@keyframes campaignPulse {
  0% { transform: scale(.85); opacity: .9; }
  100% { transform: scale(1.35); opacity: 0; }
}
.campaign-modal {
  position: fixed;
  inset: 0;
  z-index: 1200;
  display: grid;
  place-items: center;
  padding: 1.2rem;
}
.campaign-modal[hidden] { display: none !important; }
.campaign-modal-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(5, 8, 15, .55);
  backdrop-filter: blur(6px);
}
.campaign-modal-card {
  position: relative;
  z-index: 1;
  width: min(100%, 440px);
  background: #fff;
  border-radius: 24px;
  padding: 1.6rem 1.5rem 1.4rem;
  box-shadow: 0 30px 80px rgba(0,0,0,.28);
  animation: campaignIn .35s var(--ease);
}
@keyframes campaignIn {
  from { opacity: 0; transform: translateY(14px) scale(.98); }
  to { opacity: 1; transform: none; }
}
.campaign-modal-close {
  position: absolute;
  top: .75rem;
  right: .75rem;
  width: 36px;
  height: 36px;
  border: 0;
  border-radius: 50%;
  background: var(--surface-2);
  color: var(--ink);
  font-size: 1.35rem;
  line-height: 1;
  cursor: pointer;
}
.campaign-modal-badge {
  display: inline-flex;
  font-size: .72rem;
  font-weight: 800;
  letter-spacing: .06em;
  text-transform: uppercase;
  color: var(--accent-deep);
  background: rgba(20,184,166,.12);
  border-radius: 999px;
  padding: .3rem .7rem;
  margin-bottom: .7rem;
}
.campaign-modal-card h2 {
  margin: 0 0 .7rem;
  font-family: var(--font-display);
  font-size: 1.45rem;
  letter-spacing: -.02em;
  padding-right: 2rem;
}
.campaign-modal-body {
  color: var(--ink-soft);
  font-size: .96rem;
  line-height: 1.6;
}
.campaign-modal-body p { margin: 0 0 .6rem; }
.campaign-modal-actions {
  display: flex;
  flex-wrap: wrap;
  gap: .55rem;
  margin-top: 1.2rem;
}
.campaign-modal.theme-warning .campaign-modal-badge { color: #b45309; background: rgba(245,158,11,.15); }
.campaign-modal.theme-success .campaign-modal-badge { color: #047857; background: rgba(16,185,129,.14); }
.campaign-modal.theme-promo .campaign-modal-badge { color: #0f766e; background: rgba(20,184,166,.14); }

/* Campaign detail page */
.campaign-detail-hero-inner {
  max-width: 760px;
}
.campaign-detail-badge {
  display: inline-flex;
  align-items: center;
  padding: .28rem .7rem;
  border-radius: 999px;
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .04em;
  text-transform: uppercase;
  color: var(--accent-deep);
  background: rgba(20, 184, 166, .12);
  margin-bottom: .85rem;
}
.campaign-detail-hero.theme-warning .campaign-detail-badge { color: #b45309; background: rgba(245,158,11,.15); }
.campaign-detail-hero.theme-success .campaign-detail-badge { color: #047857; background: rgba(16,185,129,.14); }
.campaign-detail-hero.theme-info .campaign-detail-badge { color: #0369a1; background: rgba(14,165,233,.12); }
.campaign-detail-lead {
  margin-top: .85rem;
  color: var(--ink-soft);
  font-size: 1.05rem;
  line-height: 1.65;
  max-width: 54ch;
}
.campaign-detail-lead p { margin: 0 0 .5rem; }
.campaign-detail {
  max-width: 820px;
}
.campaign-detail-cover {
  width: 100%;
  border-radius: 18px;
  margin-bottom: 1.6rem;
  display: block;
  aspect-ratio: 16 / 9;
  object-fit: cover;
  border: 1px solid var(--line);
}
.campaign-detail-cta {
  margin-top: 2.4rem;
  padding: 1.4rem 1.5rem;
  border-radius: 20px;
  border: 1px solid var(--line);
  background:
    linear-gradient(135deg, rgba(20,184,166,.08), rgba(15,32,39,.02)),
    #fff;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 1rem 1.4rem;
}
.campaign-detail-cta h2 {
  margin: 0 0 .35rem;
  font-family: var(--font-display);
  font-size: 1.25rem;
  letter-spacing: -.02em;
}
.campaign-detail-cta p {
  margin: 0;
  color: var(--ink-soft);
  max-width: 42ch;
}
.campaign-detail-cta-actions {
  display: flex;
  flex-wrap: wrap;
  gap: .55rem;
}
.campaign-detail-cta .btn {
  display: inline-flex;
  align-items: center;
  gap: .4rem;
}

/* Newsletter */
.newsletter-block {
  margin-top: 1.6rem;
  padding: 1.25rem 1.3rem;
  border-top: 1px solid rgba(255,255,255,.08);
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(240px, 1.1fr);
  gap: 1rem 1.4rem;
  align-items: center;
}
.newsletter-copy strong {
  display: block;
  color: #fff;
  font-family: var(--font-display);
  font-size: 1.05rem;
  margin-bottom: .25rem;
}
.newsletter-copy p {
  margin: 0;
  color: rgba(255,255,255,.62);
  font-size: .9rem;
}
.newsletter-form {
  display: flex;
  gap: .5rem;
  position: relative;
}
.newsletter-form .form-control {
  flex: 1;
  min-width: 0;
  background: rgba(255,255,255,.06);
  border-color: rgba(255,255,255,.12);
  color: #fff;
}
.newsletter-form .form-control::placeholder { color: rgba(255,255,255,.45); }
.hp-field {
  position: absolute !important;
  left: -9999px !important;
  width: 1px !important;
  height: 1px !important;
  opacity: 0 !important;
  pointer-events: none !important;
}
.newsletter-ok {
  grid-column: 1 / -1;
  color: #042f2e;
  background: #5eead4;
  font-size: .9rem;
  font-weight: 700;
  padding: .7rem .9rem;
  border-radius: 12px;
}
.newsletter-err {
  grid-column: 1 / -1;
  color: #450a0a;
  background: #fecaca;
  font-size: .9rem;
  font-weight: 700;
  padding: .7rem .9rem;
  border-radius: 12px;
}
.newsletter-form .form-control.is-invalid {
  border-color: #f87171;
  box-shadow: 0 0 0 3px rgba(248, 113, 113, .25);
}

/* Flash toast */
.site-toast {
  position: fixed;
  top: 1rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 1200;
  width: min(520px, calc(100% - 1.5rem));
  animation: toast-in .35s ease both;
}
.site-toast-inner {
  display: flex;
  align-items: center;
  gap: .7rem;
  padding: .85rem 1rem;
  border-radius: 14px;
  box-shadow: 0 18px 40px -18px rgba(0,0,0,.45);
  font-weight: 700;
  font-size: .95rem;
}
.site-toast.is-success .site-toast-inner {
  background: #ecfdf5;
  color: #065f46;
  border: 1px solid #6ee7b7;
}
.site-toast.is-error .site-toast-inner {
  background: #fef2f2;
  color: #991b1b;
  border: 1px solid #fca5a5;
}
.site-toast-icon {
  flex: 0 0 auto;
  display: grid;
  place-items: center;
}
.site-toast-close {
  margin-left: auto;
  border: 0;
  background: transparent;
  color: inherit;
  font-size: 1.35rem;
  line-height: 1;
  cursor: pointer;
  opacity: .7;
}
.site-toast-close:hover { opacity: 1; }
.site-toast.is-hiding {
  animation: toast-out .28s ease both;
}
@keyframes toast-in {
  from { opacity: 0; transform: translate(-50%, -12px); }
  to { opacity: 1; transform: translate(-50%, 0); }
}
@keyframes toast-out {
  from { opacity: 1; transform: translate(-50%, 0); }
  to { opacity: 0; transform: translate(-50%, -12px); }
}
@media (max-width: 860px) {
  .newsletter-block { grid-template-columns: 1fr; }
  .newsletter-form { flex-direction: column; }
}

/* WhatsApp float */
.whatsapp-float {
  position: fixed;
  right: 1.2rem;
  bottom: 1.2rem;
  z-index: 96;
  width: 58px;
  height: 58px;
  border-radius: 50%;
  background: #25d366;
  color: #fff;
  display: grid;
  place-items: center;
  box-shadow: 0 14px 34px rgba(37, 211, 102, .45);
  animation: waBlink 1.8s ease-in-out infinite;
}
.whatsapp-float svg { width: 30px; height: 30px; position: relative; z-index: 1; }
.whatsapp-float .wa-ping {
  position: absolute;
  inset: -6px;
  border-radius: 50%;
  border: 2px solid rgba(37, 211, 102, .7);
  animation: waPing 1.8s ease-out infinite;
}
@keyframes waBlink {
  0%, 100% { filter: brightness(1); transform: scale(1); }
  50% { filter: brightness(1.18); transform: scale(1.06); }
}
@keyframes waPing {
  0% { transform: scale(.85); opacity: .9; }
  100% { transform: scale(1.35); opacity: 0; }
}

/* Projects showcase */
.projects-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.4rem;
}

/* Ready products */
.products-hero {
  padding: 5.2rem 0 2.6rem;
  background:
    radial-gradient(ellipse 45% 55% at 8% 10%, rgba(14,165,233,.1), transparent 50%),
    linear-gradient(180deg, #f8fafc 0%, #fff 100%);
  border-bottom: 1px solid var(--line);
}
.products-hero-inner { max-width: 680px; }
.products-hero h1 {
  font-family: var(--font-display);
  font-size: clamp(2.1rem, 4.2vw, 3.2rem);
  letter-spacing: -.035em;
  margin: .35rem 0 .85rem;
  line-height: 1.1;
}
.products-hero p {
  margin: 0;
  color: var(--ink-soft);
  font-size: 1.05rem;
  max-width: 46ch;
  line-height: 1.6;
}
.products-section { padding-top: 2.2rem; }
.products-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1.4rem;
}
.product-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 22px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: transform .3s var(--ease), box-shadow .3s var(--ease);
}
.product-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 20px 48px rgba(15, 23, 42, .08);
}
.product-media {
  display: block;
  position: relative;
  aspect-ratio: 16 / 10;
  background: #0b1220;
  overflow: hidden;
}
.product-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .55s var(--ease);
}
.product-card:hover .product-media img { transform: scale(1.04); }
.product-media-empty {
  width: 100%;
  height: 100%;
  background: linear-gradient(145deg, #0b1220, #0e7490);
}
.product-logo-badge {
  position: absolute;
  left: .9rem;
  bottom: .9rem;
  width: 52px;
  height: 52px;
  border-radius: 14px;
  background: #fff;
  display: grid;
  place-items: center;
  box-shadow: 0 10px 24px rgba(0,0,0,.2);
  overflow: hidden;
  padding: .35rem;
}
.product-logo-badge img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}
.product-body {
  padding: 1.15rem 1.25rem 1.3rem;
  display: grid;
  gap: .55rem;
  flex: 1;
}
.product-cat {
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .05em;
  text-transform: uppercase;
  color: var(--accent-deep);
}
.product-body h2 {
  margin: 0;
  font-family: var(--font-display);
  font-size: 1.28rem;
  letter-spacing: -.02em;
  line-height: 1.25;
}
.product-body > p {
  margin: 0;
  color: var(--ink-soft);
  font-size: .94rem;
  line-height: 1.55;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.product-features {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: .3rem;
}
.product-features li {
  position: relative;
  padding-left: 1rem;
  font-size: .86rem;
  color: var(--ink-soft);
}
.product-features li::before {
  content: "";
  position: absolute;
  left: 0;
  top: .55em;
  width: .4rem;
  height: .4rem;
  border-radius: 50%;
  background: var(--accent);
}
.product-actions {
  display: flex;
  flex-wrap: wrap;
  gap: .45rem;
  margin-top: .25rem;
}
.product-detail-top {
  display: flex;
  align-items: flex-start;
  gap: 1.1rem;
}
.product-detail-logo {
  width: 72px;
  height: 72px;
  object-fit: contain;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 18px;
  padding: .55rem;
  flex-shrink: 0;
}
.product-detail {
  display: grid;
  grid-template-columns: minmax(0, 1.5fr) minmax(260px, .7fr);
  gap: 1.6rem;
  align-items: start;
}
.product-gallery-main {
  display: block;
  width: 100%;
  border: 0;
  padding: 0;
  border-radius: 20px;
  overflow: hidden;
  background: #0b1220;
  cursor: zoom-in;
}
.product-gallery-main img {
  width: 100%;
  display: block;
  aspect-ratio: 16 / 10;
  object-fit: cover;
}
.product-inline-gallery {
  margin-top: 1rem;
}
.product-inline-gallery-head {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: .75rem;
  margin-bottom: .5rem;
}
.product-inline-gallery-head h2 {
  margin: 0;
  font-family: var(--font-display);
  font-size: .9rem;
  letter-spacing: -.01em;
  font-weight: 700;
}
.product-inline-gallery-head span {
  font-size: .7rem;
  font-weight: 600;
  color: var(--ink-soft);
}
.product-inline-gallery-grid {
  display: flex;
  flex-wrap: wrap;
  gap: .4rem;
}
.product-inline-gallery-item {
  position: relative;
  display: block;
  width: 72px;
  height: 72px;
  flex: 0 0 auto;
  padding: 0;
  border: 1px solid var(--line);
  border-radius: 8px;
  overflow: hidden;
  cursor: zoom-in;
  background: #f7f9fb;
}
.product-inline-gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform .25s ease, opacity .25s ease;
}
.product-inline-gallery-item:hover img {
  transform: scale(1.04);
  opacity: .9;
}
.product-aside-gallery-thumbs {
  display: flex;
  flex-wrap: wrap;
  gap: .3rem;
}
.product-aside-gallery-thumb {
  width: 48px;
  height: 48px;
  flex: 0 0 auto;
  padding: 0;
  border: 1px solid var(--line);
  border-radius: 7px;
  overflow: hidden;
  background: #f7f9fb;
  cursor: zoom-in;
}
.product-aside-gallery-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
@media (max-width: 700px) {
  .product-inline-gallery-item {
    width: 64px;
    height: 64px;
  }
}
.product-aside-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 18px;
  padding: 1.1rem 1.15rem;
  margin-bottom: .9rem;
}
.product-aside-card h3 {
  margin: 0 0 .7rem;
  font-size: .95rem;
  font-family: var(--font-display);
}
.product-aside-card ul {
  margin: 0;
  padding-left: 1.1rem;
  display: grid;
  gap: .35rem;
  color: var(--ink-soft);
  font-size: .92rem;
}
.product-aside-card a {
  color: var(--accent-deep);
  font-weight: 600;
}
.product-aside-live-list {
  display: grid;
  gap: .55rem;
}
.product-aside-live-item {
  display: flex;
  align-items: center;
  gap: .65rem;
  padding: .45rem .5rem;
  border-radius: 12px;
  border: 1px solid var(--line);
  background: #f8fafb;
  text-decoration: none !important;
  color: inherit !important;
  transition: border-color .2s ease, transform .2s ease, background .2s ease;
}
.product-aside-live-item:hover {
  border-color: rgba(16, 139, 122, .35);
  background: #fff;
  transform: translateY(-1px);
}
.product-aside-live-logo {
  width: 36px;
  height: 36px;
  border-radius: 10px;
  background: #fff;
  border: 1px solid var(--line);
  display: grid;
  place-items: center;
  overflow: hidden;
  flex: 0 0 auto;
  font-weight: 700;
  color: var(--accent-deep);
  font-size: .9rem;
}
.product-aside-live-logo img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  padding: 4px;
}
.product-aside-live-copy {
  display: grid;
  gap: .1rem;
  min-width: 0;
}
.product-aside-live-copy strong {
  font-size: .88rem;
  line-height: 1.25;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.product-aside-live-copy span {
  font-size: .75rem;
  color: var(--accent-deep);
  font-weight: 600;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

@media (max-width: 860px) {
  .products-grid,
  .product-detail { grid-template-columns: 1fr; }
  .product-detail-top { flex-direction: column; }
}

/* Live product links */
.product-live-count {
  display: inline-flex;
  align-items: center;
  gap: .4rem;
  padding: .3rem .6rem;
  border-radius: 999px;
  background: rgba(16, 139, 122, .09);
  color: var(--accent-deep);
  font-size: .76rem;
  font-weight: 600;
  width: fit-content;
}
.product-live-count .live-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #10b981;
  box-shadow: 0 0 0 3px rgba(16, 185, 129, .18);
}
.live-links-section {
  padding-top: 0;
}
.live-links-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: .9rem;
}
.live-link-card {
  position: relative;
  display: flex;
  align-items: center;
  gap: .85rem;
  padding: 1rem 1.05rem;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 18px;
  text-decoration: none;
  color: inherit;
  transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease;
}
.live-link-card:hover {
  transform: translateY(-3px);
  border-color: rgba(16, 139, 122, .35);
  box-shadow: 0 18px 34px -22px rgba(15, 32, 39, .35);
}
.live-link-logo {
  flex: 0 0 auto;
  width: 52px;
  height: 52px;
  border-radius: 14px;
  background: #f7f9fb;
  border: 1px solid var(--line);
  display: grid;
  place-items: center;
  overflow: hidden;
}
.live-link-logo img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  padding: 6px;
}
.live-link-initial {
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--accent-deep);
}
.live-link-body {
  display: grid;
  gap: .15rem;
  min-width: 0;
}
.live-link-body strong {
  font-family: var(--font-display);
  font-size: 1.02rem;
  letter-spacing: -.01em;
}
.live-link-sub {
  font-size: .82rem;
  color: var(--ink-soft);
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.live-link-host {
  font-size: .78rem;
  font-weight: 600;
  color: var(--accent-deep);
}
.live-link-arrow {
  margin-left: auto;
  flex: 0 0 auto;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: #f2f5f7;
  color: var(--accent-deep);
  transition: background .25s ease, transform .25s ease;
}
.live-link-card:hover .live-link-arrow {
  background: var(--accent-deep);
  color: #fff;
  transform: translate(2px, -2px);
}

/* Premium portfolio page */
.folio-hero {
  padding: 5.5rem 0 2.8rem;
  background:
    radial-gradient(ellipse 50% 60% at 90% 0%, rgba(18,184,168,.12), transparent 55%),
    linear-gradient(180deg, #f8fafc 0%, #fff 100%);
  border-bottom: 1px solid var(--line);
}
.folio-hero-inner { max-width: 720px; }
.folio-hero h1 {
  font-family: var(--font-display);
  font-size: clamp(2.2rem, 4.5vw, 3.4rem);
  letter-spacing: -.035em;
  margin: .35rem 0 .85rem;
  line-height: 1.1;
}
.folio-hero p {
  margin: 0;
  color: var(--ink-soft);
  font-size: 1.08rem;
  max-width: 48ch;
  line-height: 1.6;
}
.folio-stats {
  display: flex;
  flex-wrap: wrap;
  gap: 1.5rem 2.5rem;
  margin-top: 1.8rem;
}
.folio-stats strong {
  display: block;
  font-family: var(--font-display);
  font-size: 1.35rem;
  letter-spacing: -.02em;
  color: var(--accent-deep);
  line-height: 1.1;
}
.folio-stats span {
  font-size: .78rem;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: .06em;
  font-weight: 700;
}
.folio-section { padding-top: 2.2rem; }
.folio-filters {
  display: flex;
  flex-wrap: wrap;
  gap: .45rem;
  margin-bottom: 1.6rem;
}
.folio-filters button {
  border: 1px solid var(--line);
  background: #fff;
  color: var(--ink-soft);
  border-radius: 999px;
  padding: .45rem .95rem;
  font-size: .86rem;
  font-weight: 600;
  cursor: pointer;
  transition: .2s ease;
}
.folio-filters button:hover,
.folio-filters button.is-active {
  background: var(--ink);
  border-color: var(--ink);
  color: #fff;
}
.folio-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1.5rem 1.35rem;
}
.folio-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 22px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: transform .3s var(--ease), box-shadow .3s var(--ease);
}
.folio-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 20px 50px rgba(15, 23, 42, .08);
}
.folio-media {
  display: block;
  position: relative;
  aspect-ratio: 16 / 11;
  background: #0b1220;
  overflow: hidden;
}
.folio-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .55s var(--ease);
}
.folio-card:hover .folio-media img { transform: scale(1.04); }
.folio-media-empty {
  width: 100%;
  height: 100%;
  background: linear-gradient(145deg, #0b1220, #134e4a);
}
.folio-live {
  position: absolute;
  top: .85rem;
  left: .85rem;
  background: rgba(5,8,15,.72);
  color: #5eead4;
  font-size: .68rem;
  font-weight: 700;
  letter-spacing: .06em;
  text-transform: uppercase;
  padding: .28rem .55rem;
  border-radius: 999px;
}
.folio-body {
  padding: 1.15rem 1.25rem 1.25rem;
  display: grid;
  gap: .55rem;
  flex: 1;
}
.folio-meta {
  display: flex;
  flex-wrap: wrap;
  gap: .4rem;
}
.folio-meta span {
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .04em;
  text-transform: uppercase;
  color: var(--muted);
}
.folio-body h2 {
  margin: 0;
  font-family: var(--font-display);
  font-size: 1.25rem;
  letter-spacing: -.02em;
  line-height: 1.25;
}
.folio-body h2 a:hover { color: var(--accent-deep); }
.folio-body > p {
  margin: 0;
  color: var(--ink-soft);
  font-size: .94rem;
  line-height: 1.55;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.folio-tech {
  display: flex;
  flex-wrap: wrap;
  gap: .35rem;
}
.folio-tech span {
  font-size: .72rem;
  font-weight: 600;
  color: var(--ink-soft);
  background: var(--surface-2);
  border-radius: 999px;
  padding: .22rem .55rem;
}
.folio-actions {
  display: flex;
  flex-wrap: wrap;
  gap: .45rem;
  margin-top: .35rem;
}
.folio-pager { margin-top: 2rem; }

@media (max-width: 860px) {
  .folio-grid { grid-template-columns: 1fr; }
  .folio-hero { padding: 4.2rem 0 2rem; }
}
.project-showcase {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
  transition: transform .35s var(--ease), box-shadow .35s var(--ease);
  display: flex;
  flex-direction: column;
}
.project-showcase:hover { transform: translateY(-8px); box-shadow: var(--shadow); }
.project-showcase-link { display: block; color: inherit; flex: 1; }
.project-showcase-body { display: block; color: inherit; }
.project-cover-btn {
  display: block;
  width: 100%;
  border: 0;
  padding: 0;
  cursor: zoom-in;
}
.cover-zoom {
  position: absolute;
  top: .7rem;
  right: .7rem;
  display: inline-flex;
  align-items: center;
  gap: .3rem;
  padding: .35rem .5rem;
  border-radius: 999px;
  background: rgba(5,8,15,.55);
  color: #fff;
  opacity: 0;
  transform: translateY(-4px);
  transition: opacity .3s var(--ease), transform .3s var(--ease);
}
.cover-zoom svg { width: 16px; height: 16px; }
.cover-zoom b { font-size: .72rem; font-weight: 700; }
.project-cover-btn:hover .cover-zoom,
.project-showcase:hover .cover-zoom { opacity: 1; transform: translateY(0); }
.project-browser {
  background: #0b1220;
  border-bottom: 1px solid rgba(255,255,255,.06);
}
.project-browser-bar {
  display: flex;
  align-items: center;
  gap: .35rem;
  padding: .55rem .8rem;
  background: linear-gradient(180deg, #151d2e, #0f1624);
}
.project-browser-bar .dot {
  width: 8px; height: 8px; border-radius: 50%;
  background: #3a455c;
}
.project-browser-bar .dot:nth-child(1) { background: #ff5f57; }
.project-browser-bar .dot:nth-child(2) { background: #febc2e; }
.project-browser-bar .dot:nth-child(3) { background: #28c840; }
.project-browser-url {
  margin-left: .5rem;
  flex: 1;
  min-width: 0;
  font-size: .72rem;
  color: rgba(255,255,255,.55);
  background: rgba(255,255,255,.06);
  border-radius: 999px;
  padding: .28rem .7rem;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  display: inline-flex;
  align-items: center;
  gap: .35rem;
}
a.project-browser-url.is-link {
  color: #5eead4;
  transition: background .18s ease, color .18s ease;
}
a.project-browser-url.is-link:hover {
  background: rgba(94,234,212,.14);
  color: #99f6e4;
}
.project-browser-lg {
  border-radius: 18px;
  overflow: hidden;
  box-shadow: var(--shadow);
  border: 1px solid var(--line);
  background: #fff;
}
.project-browser-lg .project-browser-bar {
  border-bottom: 1px solid var(--line);
  background: #f3f5f9;
}
.project-browser-lg .project-browser-url {
  color: var(--ink-soft);
  background: #fff;
  border: 1px solid var(--line);
}
.project-browser-lg a.project-browser-url.is-link {
  color: var(--accent-deep);
}
.project-browser-lg a.project-browser-url.is-link:hover {
  background: #ecfeff;
  color: #0f766e;
}
.project-cover {
  aspect-ratio: 16/10;
  background: linear-gradient(135deg, #0b1220, #134e4a);
  background-size: cover;
  background-position: center top;
  position: relative;
}
.project-cover-empty { min-height: 280px; }
.live-badge {
  position: absolute;
  top: .85rem;
  right: .85rem;
  background: rgba(18, 184, 168, .95);
  color: #fff;
  font-size: .68rem;
  font-weight: 700;
  letter-spacing: .04em;
  text-transform: uppercase;
  padding: .35rem .65rem;
  border-radius: 999px;
  box-shadow: 0 8px 20px rgba(15, 118, 110, .35);
}
.client-logo {
  position: absolute; left: 1rem; bottom: 1rem;
  width: 54px; height: 54px; object-fit: contain;
  background: rgba(255,255,255,.94); border-radius: 12px; padding: .35rem;
  box-shadow: 0 10px 24px rgba(0,0,0,.18);
}
.client-logo-lg {
  width: 72px; height: 72px; object-fit: contain;
  background: #fff; border-radius: 14px; padding: .4rem;
  border: 1px solid var(--line); margin-bottom: 1rem;
}
.project-main-shot {
  width: 100%;
  display: block;
  aspect-ratio: 16/10;
  object-fit: cover;
  object-position: top center;
}
.shot-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: .8rem;
}
.shot-grid img {
  width: 100%; aspect-ratio: 16/10; object-fit: cover; border-radius: 14px;
  border: 1px solid var(--line);
}
.project-showcase .body { padding: 1.15rem 1.25rem 0.4rem; }
.project-showcase h3 { font-family: var(--font-display); margin: 0 0 .4rem; letter-spacing: -.02em; font-size: 1.15rem; }
.project-showcase p { margin: 0; color: var(--ink-soft); font-size: .92rem; display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden; }
.project-showcase .meta {
  display: flex; flex-wrap: wrap; gap: .4rem;
  margin-bottom: .55rem;
}
.project-showcase .meta span,
.page-hero .meta span {
  font-size: .72rem;
  font-weight: 600;
  color: var(--accent-deep);
  background: rgba(18, 184, 168, .1);
  padding: .25rem .55rem;
  border-radius: 999px;
}
.tech-row {
  display: flex; flex-wrap: wrap; gap: .35rem;
  margin-top: .75rem;
}
.tech-row span {
  font-size: .68rem;
  font-weight: 600;
  color: var(--ink-soft);
  border: 1px solid var(--line);
  background: var(--surface);
  padding: .22rem .5rem;
  border-radius: 8px;
}
.project-card-actions {
  display: flex;
  gap: .5rem;
  padding: .9rem 1.25rem 1.2rem;
  margin-top: auto;
}
.project-card-actions .btn {
  display: inline-flex;
  align-items: center;
  gap: .35rem;
  flex: 1;
  justify-content: center;
}
.project-card-actions .btn-sm {
  padding: .55rem .7rem;
  font-size: .82rem;
  border-radius: 12px;
}

/* Project case study */
.project-case-hero .project-hero-ctas {
  display: flex; flex-wrap: wrap; gap: .7rem;
  margin-top: 1.4rem;
}
.project-case-hero .btn {
  display: inline-flex; align-items: center; gap: .4rem;
}
.project-case {
  display: grid;
  grid-template-columns: minmax(0, 1.6fr) minmax(260px, .8fr);
  gap: 1.6rem 2rem;
  align-items: start;
}
.project-case-media { grid-column: 1 / -1; }
.project-facts {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 1.35rem 1.4rem;
  position: sticky;
  top: calc(var(--nav-h) + 1.2rem);
  display: grid;
  gap: 1.1rem;
}
.fact-list { margin: 0; display: grid; gap: .85rem; }
.fact-list div { display: grid; gap: .15rem; }
.fact-list dt {
  font-size: .72rem;
  text-transform: uppercase;
  letter-spacing: .06em;
  color: var(--muted);
  font-weight: 700;
}
.fact-list dd { margin: 0; font-weight: 600; }
.fact-list a { color: var(--accent-deep); text-decoration: underline; text-underline-offset: 3px; }
.tech-block h4 {
  margin: 0 0 .55rem;
  font-size: .78rem;
  text-transform: uppercase;
  letter-spacing: .06em;
  color: var(--muted);
}
.project-case-body { min-width: 0; }
.shots-title {
  font-family: var(--font-display);
  margin: 2.2rem 0 1rem;
  letter-spacing: -.02em;
}

/* Project media viewer + thumbnails */
.project-main-media {
  display: block;
  width: 100%;
  padding: 0;
  border: 0;
  background: #0b1220;
  cursor: zoom-in;
  position: relative;
  overflow: hidden;
}
.project-main-media .media-zoom,
.project-main-media .media-play {
  position: absolute;
  inset: 0;
  margin: auto;
  width: 58px;
  height: 58px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: rgba(5,8,15,.55);
  color: #fff;
  opacity: 0;
  transform: scale(.85);
  transition: opacity .3s var(--ease), transform .3s var(--ease);
  pointer-events: none;
}
.project-main-media .media-play { opacity: .95; transform: scale(1); }
.project-main-media .media-zoom svg,
.project-main-media .media-play svg { width: 26px; height: 26px; }
.project-main-media:hover .media-zoom { opacity: 1; transform: scale(1); }
.media-thumbs {
  display: flex;
  gap: .6rem;
  margin-top: .8rem;
  flex-wrap: wrap;
}
.media-thumb {
  position: relative;
  width: 96px;
  height: 64px;
  border-radius: 10px;
  overflow: hidden;
  border: 2px solid transparent;
  padding: 0;
  cursor: pointer;
  background: #0b1220;
  transition: border-color .2s ease, transform .2s ease;
}
.media-thumb img { width: 100%; height: 100%; object-fit: cover; }
.media-thumb:hover { transform: translateY(-2px); }
.media-thumb.is-active { border-color: var(--accent); }
.thumb-play {
  position: absolute; inset: 0; margin: auto;
  width: 26px; height: 26px; border-radius: 50%;
  display: grid; place-items: center;
  background: rgba(5,8,15,.6); color: #fff;
}
.thumb-play svg { width: 14px; height: 14px; }

/* Collaboration / partner logos strip */
.collab-strip {
  margin-top: 2.6rem;
  padding: 1.8rem;
  border-radius: var(--radius);
  border: 1px solid var(--line);
  background: linear-gradient(180deg, #fff, var(--surface));
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
  text-align: center;
}
.collab-label {
  font-size: .78rem;
  text-transform: uppercase;
  letter-spacing: .1em;
  color: var(--muted);
  font-weight: 700;
}
.collab-logos {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.6rem;
  flex-wrap: wrap;
}
.collab-logo {
  height: 52px;
  width: auto;
  max-width: 180px;
  object-fit: contain;
}
.collab-logo-partner {
  background: #fff;
  border-radius: 12px;
  padding: .4rem .6rem;
  border: 1px solid var(--line);
}
.collab-x {
  font-size: 1.6rem;
  color: var(--muted);
  font-weight: 300;
}

/* Lightbox */
.lightbox[hidden] { display: none !important; }
.lightbox {
  position: fixed;
  inset: 0;
  z-index: 4000;
  display: grid;
  place-items: center;
}
.lightbox-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(3, 6, 12, .92);
  backdrop-filter: blur(6px);
}
.lightbox-stage {
  position: relative;
  z-index: 1;
  width: min(92vw, 1200px);
  height: min(86vh, 820px);
  display: grid;
  place-items: center;
}
.lightbox-stage img {
  max-width: 100%;
  max-height: 100%;
  width: auto;
  height: auto;
  object-fit: contain;
  border-radius: 10px;
  box-shadow: 0 30px 80px rgba(0,0,0,.5);
  animation: lbIn .3s var(--ease);
}
.lightbox-stage .lightbox-video {
  position: relative;
  width: min(92vw, 1100px);
  aspect-ratio: 16/9;
  max-height: 86vh;
}
.lightbox-stage iframe,
.lightbox-stage video {
  width: 100%;
  height: 100%;
  border: 0;
  border-radius: 10px;
  background: #000;
  box-shadow: 0 30px 80px rgba(0,0,0,.5);
}
@keyframes lbIn {
  from { opacity: 0; transform: scale(.96); }
  to { opacity: 1; transform: scale(1); }
}
.lightbox-btn {
  position: absolute;
  z-index: 2;
  border: 0;
  cursor: pointer;
  background: rgba(255,255,255,.1);
  color: #fff;
  border-radius: 50%;
  display: grid;
  place-items: center;
  transition: background .2s ease, transform .2s ease;
}
.lightbox-btn:hover { background: rgba(255,255,255,.22); transform: scale(1.06); }
.lightbox-btn svg { width: 26px; height: 26px; }
.lightbox-close {
  top: 1.1rem; right: 1.1rem;
  width: 46px; height: 46px;
  font-size: 1.8rem;
  line-height: 1;
}
.lightbox-prev, .lightbox-next {
  top: 50%;
  transform: translateY(-50%);
  width: 54px; height: 54px;
}
.lightbox-prev { left: 1.1rem; }
.lightbox-next { right: 1.1rem; }
.lightbox-prev:hover, .lightbox-next:hover { transform: translateY(-50%) scale(1.06); }
.lightbox-counter {
  position: absolute;
  z-index: 2;
  bottom: 1.1rem;
  left: 50%;
  transform: translateX(-50%);
  color: rgba(255,255,255,.8);
  font-size: .85rem;
  font-weight: 600;
  letter-spacing: .04em;
}
.lightbox.is-single .lightbox-prev,
.lightbox.is-single .lightbox-next,
.lightbox.is-single .lightbox-counter { display: none; }

/* Gallery grid */
.masonry-gallery {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
}
.masonry-tile {
  position: relative;
  display: block;
  width: 100%;
  aspect-ratio: 4 / 3;
  margin: 0;
  padding: 0;
  border: 0;
  border-radius: 18px;
  overflow: hidden;
  cursor: zoom-in;
  background: #0b1220;
  box-shadow: var(--shadow-soft);
  transition: transform .35s var(--ease), box-shadow .35s var(--ease);
}
.masonry-tile:nth-child(5n+1) { aspect-ratio: 3 / 4; }
.masonry-tile:nth-child(5n+3) { aspect-ratio: 16 / 10; }
.masonry-tile:hover {
  transform: translateY(-4px);
  box-shadow: 0 18px 40px rgba(15, 23, 42, .12);
}
.masonry-tile img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
  filter: none;
  transform: scale(1);
  transition: transform .55s var(--ease), filter .4s var(--ease);
}
.masonry-tile:hover img {
  transform: scale(1.04);
  filter: brightness(1.03);
}
.masonry-overlay {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: .5rem;
  padding: .85rem .9rem;
  background: linear-gradient(180deg, transparent 45%, rgba(5,8,15,.72));
  opacity: 1;
  transition: opacity .3s ease;
}
.masonry-title {
  color: #fff;
  font-weight: 700;
  font-family: var(--font-display);
  font-size: .95rem;
  text-shadow: 0 2px 8px rgba(0,0,0,.5);
}
.masonry-zoom {
  flex-shrink: 0;
  width: 34px; height: 34px;
  border-radius: 50%;
  display: grid; place-items: center;
  background: rgba(255,255,255,.9);
  color: var(--ink);
  opacity: 0;
  transform: scale(.8);
  transition: opacity .3s ease, transform .3s ease;
}
.masonry-zoom svg { width: 18px; height: 18px; }
.masonry-tile:hover .masonry-zoom { opacity: 1; transform: scale(1); }

/* FAQ */
.faq-wrap {
  display: grid;
  grid-template-columns: minmax(0, 1.7fr) minmax(260px, .9fr);
  gap: 1.6rem 2rem;
  align-items: start;
}
.faq-list { display: grid; gap: .8rem; }
.faq-item {
  border: 1px solid var(--line);
  border-radius: 16px;
  background: #fff;
  overflow: hidden;
  transition: border-color .25s var(--ease), box-shadow .25s var(--ease);
}
.faq-item.is-open {
  border-color: rgba(18,184,168,.4);
  box-shadow: 0 14px 34px rgba(15,118,110,.1);
}
.faq-q {
  width: 100%;
  border: 0;
  background: transparent;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1.15rem 1.25rem;
  text-align: left;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.02rem;
  color: var(--ink);
}
.faq-icon {
  flex-shrink: 0;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: rgba(18,184,168,.12);
  color: var(--accent-deep);
  transition: transform .3s var(--ease), background .3s var(--ease);
}
.faq-icon svg { width: 16px; height: 16px; }
.faq-item.is-open .faq-icon {
  transform: rotate(45deg);
  background: var(--accent);
  color: #fff;
}
.faq-a {
  display: grid;
  grid-template-rows: 0fr;
  transition: grid-template-rows .32s var(--ease);
}
.faq-item.is-open .faq-a { grid-template-rows: 1fr; }
.faq-a-inner {
  overflow: hidden;
  color: var(--ink-soft);
  line-height: 1.6;
}
.faq-a-inner p { margin: 0; padding: 0 1.25rem 1.2rem; }
.faq-cta {
  background: linear-gradient(160deg, var(--ink), #12304a);
  color: #fff;
  border-radius: var(--radius);
  padding: 1.6rem 1.5rem;
  position: sticky;
  top: calc(var(--nav-h) + 1.2rem);
}
.faq-cta h3 { font-family: var(--font-display); margin: 0 0 .5rem; font-size: 1.2rem; }
.faq-cta p { margin: 0 0 1.1rem; color: rgba(255,255,255,.75); line-height: 1.55; }

/* Gallery */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
}
.gallery-tile {
  aspect-ratio: 4/3;
  border-radius: 18px;
  background-size: cover; background-position: center;
  position: relative; overflow: hidden;
  display: flex; align-items: end;
  box-shadow: var(--shadow-soft);
  transition: transform .35s var(--ease);
}
.gallery-tile:hover { transform: translateY(-6px) scale(1.01); }
.gallery-tile::after {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(180deg, transparent 40%, rgba(5,8,15,.7));
}
.gallery-tile span {
  position: relative; z-index: 1; color: #fff;
  padding: 1rem; font-weight: 700; font-family: var(--font-display);
}

@media (max-width: 1024px) {
  .hero-layout { grid-template-columns: 1fr; }
  .browser-mockup { transform: none; animation: none; max-width: 520px; }
  .device-stage-inner { height: clamp(300px, 70vw, 380px); width: min(100%, 480px); }
  .desktop-device,
  .phone-device { transform: none; animation: none; }
  .device-stage:hover .desktop-device,
  .device-stage:hover .phone-device { transform: none; }
  .phone-device { width: min(34%, 140px); }
  .gallery-grid, .shot-grid, .projects-grid { grid-template-columns: 1fr 1fr; }
  .masonry-gallery { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .project-case { grid-template-columns: 1fr; }
  .project-facts { position: static; }
}
@media (max-width: 640px) {
  .gallery-grid, .shot-grid, .projects-grid { grid-template-columns: 1fr; }
  .masonry-gallery { grid-template-columns: 1fr; }
  .masonry-tile,
  .masonry-tile:nth-child(5n+1),
  .masonry-tile:nth-child(5n+3) { aspect-ratio: 4 / 3; }
  .promo-float { right: .7rem; left: .7rem; width: auto; }
  .whatsapp-float { right: .85rem; bottom: .85rem; width: 52px; height: 52px; }
  .promo-side { top: auto; bottom: 5.5rem; transform: none; }
  .project-card-actions { flex-direction: column; }
  .lightbox-prev { left: .4rem; }
  .lightbox-next { right: .4rem; }
  .lightbox-btn { width: 44px; height: 44px; }
  .device-stage-inner { height: 280px; width: 100%; }
  .desktop-device { width: 72%; bottom: 12px; }
  .phone-device { width: 112px; right: 0; }
}

/* ===== Hosting / Mail packages ===== */
.hosting-hero-inner { max-width: 720px; }
.hosting-section .section-head p { max-width: 54ch; }
.hosting-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.1rem;
  align-items: stretch;
}
.hosting-card {
  display: flex;
  flex-direction: column;
  border-radius: 22px;
  overflow: hidden;
  border: 1px solid var(--line);
  background: #fff;
  box-shadow: 0 18px 40px -28px rgba(15, 32, 39, .35);
  transition: transform .25s ease, box-shadow .25s ease;
}
.hosting-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 24px 48px -28px rgba(15, 32, 39, .42);
}
.hosting-card.is-featured {
  border-color: rgba(20, 184, 166, .45);
  box-shadow: 0 22px 50px -24px rgba(15, 118, 110, .45);
}
.hosting-card-top {
  position: relative;
  padding: 1.5rem 1.25rem 2.1rem;
  background: linear-gradient(145deg, #0f766e 0%, #0e7490 55%, #155e75 100%);
  color: #fff;
  text-align: center;
  clip-path: polygon(0 0, 100% 0, 100% 86%, 0 100%);
}
.hosting-card-icon {
  width: 54px;
  height: 54px;
  margin: 0 auto .85rem;
  border-radius: 50%;
  background: #fff;
  color: #0f766e;
  display: grid;
  place-items: center;
  box-shadow: 0 8px 20px -10px rgba(0,0,0,.35);
}
.hosting-card-icon svg { width: 24px; height: 24px; }
.hosting-card-top h3 {
  margin: 0 0 .55rem;
  font-family: var(--font-display);
  font-size: 1.15rem;
  letter-spacing: -.02em;
  text-transform: uppercase;
}
.hosting-card-price {
  display: flex;
  align-items: baseline;
  justify-content: center;
  gap: .35rem;
  flex-wrap: wrap;
}
.hosting-card-price strong {
  font-family: var(--font-display);
  font-size: 1.85rem;
  letter-spacing: -.03em;
  font-weight: 800;
}
.hosting-card-price span {
  font-size: .9rem;
  opacity: .85;
}
.hosting-card-body {
  padding: 1.35rem 1.2rem 1.3rem;
  display: flex;
  flex-direction: column;
  flex: 1;
  text-align: center;
}
.hosting-card-body ul {
  list-style: none;
  margin: 0 0 1rem;
  padding: 0;
  display: grid;
  gap: .45rem;
  text-align: center;
}
.hosting-card-body li {
  font-size: .9rem;
  color: var(--ink-soft);
  line-height: 1.35;
}
.hosting-card-desc,
.hosting-card-examples {
  margin: 0 0 .7rem;
  font-size: .84rem;
  color: var(--ink-soft);
  line-height: 1.5;
}
.hosting-card-examples { font-weight: 600; color: var(--accent-deep); }
.hosting-card-btn {
  margin-top: auto;
  width: 100%;
  justify-content: center;
}
.hosting-info-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1rem;
}
.hosting-info-card {
  padding: 1.2rem 1.15rem;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: #fff;
}
.hosting-info-icon {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  display: grid;
  place-items: center;
  background: rgba(20, 184, 166, .1);
  color: var(--accent-deep);
  margin-bottom: .85rem;
}
.hosting-info-icon svg { width: 22px; height: 22px; }
.hosting-info-card h3 {
  margin: 0 0 .4rem;
  font-family: var(--font-display);
  font-size: 1.05rem;
}
.hosting-info-card p {
  margin: 0;
  color: var(--ink-soft);
  font-size: .9rem;
  line-height: 1.55;
}
.hosting-cta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  flex-wrap: wrap;
  padding: 1.4rem 1.5rem;
  border-radius: 20px;
  border: 1px solid var(--line);
  background: linear-gradient(135deg, rgba(20,184,166,.08), rgba(15,32,39,.02)), #fff;
}
.hosting-cta h2 {
  margin: 0 0 .3rem;
  font-family: var(--font-display);
  font-size: 1.3rem;
}
.hosting-cta p { margin: 0; color: var(--ink-soft); max-width: 46ch; }
@media (max-width: 980px) {
  .hosting-grid { grid-template-columns: 1fr; max-width: 420px; margin-inline: auto; }
  .hosting-info-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}
@media (max-width: 620px) {
  .hosting-info-grid { grid-template-columns: 1fr; }
}
