/* =============================================================
   TFLAAKO BUSINESS
   1. Tokens
   ============================================================= */
:root {
  --bg:        #0a0712;   /* one continuous deep near-black, cool undertone */
  --surface:   #150f22;   /* card / component fill */
  --surface-2: #1c1430;   /* elevated / hover surface */

  --ink:       #f1ecf7;   /* primary text, never pure white */
  --ink-2:     #cabfdb;   /* secondary text */
  --ink-3:     #96899f;   /* muted / metadata text — 6:1 on --bg */

  --wine:      #8c2f52;   /* primary accent — deep burgundy */
  --wine-2:    #c65a82;   /* bright wine — highlights, "em" color */
  --wine-dim:  #4a1f30;   /* deep wine for borders */
  --purple:    #5b3a86;   /* secondary accent — dark purple */
  --purple-2:  #9b7fd4;   /* bright purple highlight */

  --line:      rgba(241, 236, 247, 0.08);
  --line-2:    rgba(241, 236, 247, 0.14);
  --glow-wine:   rgba(140, 47, 82, 0.35);
  --glow-purple: rgba(91, 58, 134, 0.32);

  --display: "Sora", -apple-system, "Segoe UI", sans-serif;
  --brand-font: "Fraunces", Georgia, "Times New Roman", serif;
  --sans:    "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --mono:    "JetBrains Mono", ui-monospace, "SFMono-Regular", Menlo, monospace;

  --ease-out:  cubic-bezier(0.16, 1, 0.3, 1);
  --ease-soft: cubic-bezier(0.25, 0.46, 0.45, 0.94);

  --nav-h: 76px;
  --container: 1220px;
}

/* =============================================================
   2. Reset & base
   ============================================================= */
*, *::before, *::after { box-sizing: border-box; margin: 0; }
html {
  -webkit-text-size-adjust: 100%;
  tab-size: 2;
  scroll-behavior: smooth;
  background: var(--bg);
}
@media (prefers-reduced-motion: reduce) { html { scroll-behavior: auto; } }
body {
  font-family: var(--sans);
  font-size: 16px;
  line-height: 1.6;
  color: var(--ink-2);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: clip;
  overscroll-behavior-y: none;
}
[hidden] { display: none !important; }
img, svg, video { display: block; max-width: 100%; }
img { height: auto; }
button { font: inherit; color: inherit; cursor: pointer; border: 0; background: none; }
a { color: inherit; text-decoration: none; }
p { text-wrap: pretty; }
h1, h2, h3, h4 {
  text-wrap: balance; line-height: 1.1; letter-spacing: -0.01em;
  font-family: var(--display); color: var(--ink); font-weight: 700;
}
em { font-style: normal; color: var(--wine-2); font-weight: 700; }
ul { list-style: none; padding: 0; }
::selection { background: var(--wine); color: var(--ink); }
:focus-visible { outline: 2px solid var(--wine-2); outline-offset: 3px; border-radius: 4px; }

/* =============================================================
   3. Continuous ambient background — ONE atmosphere, no section swaps
   ============================================================= */
.ambient-bg {
  position: fixed; inset: 0; z-index: -2; pointer-events: none; overflow: hidden;
  background: var(--bg);
}
.ambient-bg::before, .ambient-bg::after {
  content: ""; position: absolute; width: 70vmax; height: 70vmax; border-radius: 50%;
  filter: blur(120px); opacity: .55;
  animation: ambientDrift 34s ease-in-out infinite;
}
.ambient-bg::before {
  top: -20%; left: -15%;
  background: radial-gradient(circle, var(--wine) 0%, transparent 70%);
}
.ambient-bg::after {
  bottom: -25%; right: -15%;
  background: radial-gradient(circle, var(--purple) 0%, transparent 70%);
  animation-delay: -17s;
  animation-direction: reverse;
}
@keyframes ambientDrift {
  0%, 100% { transform: translate3d(0,0,0) scale(1); }
  50%      { transform: translate3d(4%, -3%, 0) scale(1.12); }
}
.ambient-grain {
  position: fixed; inset: 0; z-index: -1; pointer-events: none; opacity: 0.045; mix-blend-mode: overlay;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 200 200'><filter id='n'><feTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='3' stitchTiles='stitch'/><feColorMatrix values='0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0.5 0'/></filter><rect width='100%25' height='100%25' filter='url(%23n)'/></svg>");
  background-size: 220px 220px;
}
@media (prefers-reduced-motion: reduce) {
  .ambient-bg::before, .ambient-bg::after { animation: none; }
}

/* =============================================================
   4. Utilities
   ============================================================= */
.container { max-width: var(--container); margin-inline: auto; padding-inline: 1.5rem; }
@media (min-width: 720px)  { .container { padding-inline: 2.5rem; } }
@media (min-width: 1280px) { .container { padding-inline: 3rem; } }

.skip-link {
  position: fixed; top: -100px; left: 1rem; z-index: 9999;
  padding: .7rem 1.2rem; background: var(--wine-2); color: var(--bg);
  border-radius: 6px; font-weight: 600; transition: top .3s var(--ease-out);
}
.skip-link:focus { top: 1rem; }

.kicker {
  display: inline-flex; align-items: center; gap: .55rem;
  font-family: var(--mono); font-size: 0.72rem; letter-spacing: 0.18em;
  text-transform: uppercase; color: var(--wine-2);
  margin-bottom: 1.1rem;
}
.kicker::before {
  content: ""; width: 5px; height: 5px; border-radius: 50%;
  background: var(--wine-2); box-shadow: 0 0 6px 1px var(--glow-wine);
  flex-shrink: 0;
}

.section { position: relative; padding-block: clamp(3.5rem, 8vw, 6.5rem); background: transparent; }

.section-head { max-width: 640px; margin-bottom: clamp(2.25rem, 5vw, 3.5rem); }
.section-head.is-center { margin-inline: auto; text-align: center; }
.section-title {
  font-size: clamp(1.9rem, 3.6vw, 2.9rem);
  text-transform: uppercase; letter-spacing: -0.01em;
}
.section-sub { margin-top: 1rem; font-size: 1.05rem; color: var(--ink-3); max-width: 52ch; }
.section-head.is-center .section-sub { margin-inline: auto; }

[data-reveal] {
  opacity: 0; transform: translateY(24px);
  transition: opacity .7s var(--ease-soft), transform .7s var(--ease-soft);
}
[data-reveal].is-revealed { opacity: 1; transform: none; }
[data-reveal][data-delay="1"] { transition-delay: .08s; }
[data-reveal][data-delay="2"] { transition-delay: .16s; }
[data-reveal][data-delay="3"] { transition-delay: .24s; }
noscript [data-reveal] { opacity: 1 !important; transform: none !important; }

/* =============================================================
   5. Buttons
   ============================================================= */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: .6rem;
  padding: 1rem 1.8rem;
  font-family: var(--mono); font-size: 0.78rem; font-weight: 500;
  letter-spacing: 0.1em; text-transform: uppercase;
  border-radius: 5px; white-space: nowrap;
  transition: transform .5s var(--ease-soft), box-shadow .5s var(--ease-soft), background-color .4s var(--ease-out), border-color .4s var(--ease-out);
}
.btn-primary {
  background: linear-gradient(135deg, var(--wine) 0%, var(--purple) 100%);
  color: var(--ink);
  box-shadow: 0 0 0 1px rgba(241,236,247,.08), 0 12px 28px -12px var(--glow-wine);
}
.btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 0 0 1px rgba(241,236,247,.14), 0 20px 40px -14px var(--glow-wine), 0 10px 30px -14px var(--glow-purple);
}
.btn-primary:disabled { opacity: .6; cursor: not-allowed; transform: none; }
.btn-ghost { background: transparent; color: var(--ink); box-shadow: 0 0 0 1px var(--line-2) inset; }
.btn-ghost:hover { box-shadow: 0 0 0 1px var(--wine-dim) inset; background: rgba(140,47,82,0.08); transform: translateY(-3px); }
.btn-block { width: 100%; }
.btn-lg { padding: 1.25rem 2.2rem; font-size: 0.85rem; }
.has-magnetic { display: inline-flex; position: relative; isolation: isolate; }
.magnetic-inner { display: inline-flex; align-items: center; justify-content: center; gap: inherit; will-change: transform; transition: transform .8s var(--ease-soft); }

/* =============================================================
   6. Navigation
   ============================================================= */
.nav {
  position: fixed; top: 0; inset-inline: 0; z-index: 200;
  height: var(--nav-h); display: flex; align-items: center;
  transition: background-color .4s var(--ease-out), box-shadow .4s var(--ease-out), backdrop-filter .4s var(--ease-out);
}
.nav.is-scrolled {
  background: rgba(10, 7, 18, 0.82);
  backdrop-filter: blur(14px) saturate(140%);
  -webkit-backdrop-filter: blur(14px) saturate(140%);
  box-shadow: 0 1px 0 var(--line);
}
.nav-inner { display: flex; align-items: center; justify-content: space-between; width: 100%; }
.brand {
  font-family: var(--brand-font); font-size: 1.6rem; font-weight: 300; font-style: italic;
  text-transform: none; letter-spacing: 0.005em; color: var(--ink); display: inline-flex; align-items: baseline; gap: .55rem;
}
.brand small {
  font-family: var(--mono); font-size: 0.58rem; font-weight: 500; letter-spacing: 0.14em;
  text-transform: uppercase; color: var(--wine-2);
}

.nav-links { display: none; align-items: center; gap: 2.2rem; }
@media (min-width: 960px) { .nav-links { display: flex; } }
.nav-link { position: relative; padding: .3rem 0; font-size: 0.85rem; letter-spacing: .02em; color: var(--ink-2); }
.nav-link::after {
  content: ""; position: absolute; left: 0; right: 0; bottom: -2px; height: 1px;
  background: linear-gradient(90deg, var(--wine-2), var(--purple-2));
  transform: scaleX(0); transform-origin: right; transition: transform .45s var(--ease-out);
}
.nav-link:hover { color: var(--ink); }
.nav-link:hover::after { transform: scaleX(1); transform-origin: left; }

.nav-right { display: flex; align-items: center; gap: 1.2rem; }

.lang-switch { display: none; align-items: center; gap: .3rem; font-family: var(--mono); font-size: 0.72rem; letter-spacing: .05em; }
@media (min-width: 720px) { .lang-switch { display: flex; } }
.lang-btn {
  color: var(--ink-3); padding: .55rem .5rem; min-height: 44px; min-width: 32px;
  display: inline-flex; align-items: center; justify-content: center;
  transition: color .3s; border-radius: 3px;
}
.lang-btn:hover { color: var(--wine-2); }
.lang-btn.is-active { color: var(--purple-2); }
.lang-btn:focus-visible { outline-offset: 1px; }
.lang-switch .sep { color: var(--line-2); }

.nav-cta {
  display: none;
  align-items: center; padding: .6rem 1.1rem; border-radius: 999px;
  border: 1px solid var(--wine-dim); background: rgba(140,47,82,.08);
  font-family: var(--mono); font-size: 0.7rem; letter-spacing: .08em; text-transform: uppercase; color: var(--wine-2);
  transition: border-color .35s, background-color .35s, box-shadow .35s;
}
@media (min-width: 560px) { .nav-cta { display: inline-flex; } }
.nav-cta:hover { border-color: var(--wine-2); background: rgba(140,47,82,.14); box-shadow: 0 0 16px -8px var(--glow-wine); }

.nav-burger { display: grid; place-items: center; width: 44px; height: 44px; gap: 5px; margin-right: -.4rem; }
@media (min-width: 960px) { .nav-burger { display: none; } }
.nav-burger span { display: block; width: 20px; height: 1px; background: var(--ink); transition: transform .4s var(--ease-out), opacity .3s; }
.nav-burger[aria-expanded="true"] span:nth-child(1) { transform: translateY(6px) rotate(45deg); }
.nav-burger[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.nav-burger[aria-expanded="true"] span:nth-child(3) { transform: translateY(-6px) rotate(-45deg); }

.nav-mobile {
  position: fixed; inset: 0; z-index: 190; background: var(--bg);
  display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 2.1rem;
  clip-path: inset(0 0 100% 0); transition: clip-path .6s var(--ease-soft);
}
.nav-mobile[data-open="true"] { clip-path: inset(0); }
.nav-mobile a { font-family: var(--display); font-weight: 700; font-size: 1.6rem; color: var(--ink); text-transform: uppercase; }
.nav-mobile-lang { display: flex; align-items: center; gap: .4rem; font-family: var(--mono); font-size: 1rem; color: var(--ink-3); margin-top: -.4rem; }
.nav-mobile-lang button {
  font-family: var(--mono); font-size: 1rem; color: var(--ink-3);
  padding: .6rem .7rem; min-height: 44px; min-width: 44px; border-radius: 4px;
  transition: color .3s, background-color .3s;
}
.nav-mobile-lang button:hover, .nav-mobile-lang button:focus-visible { background: rgba(140,47,82,.1); }
.nav-mobile-lang button.is-active { color: var(--purple-2); }

/* =============================================================
   7. Browser-window mockup
   ============================================================= */
.browser-mock {
  background: var(--surface); border: 1px solid var(--line-2); border-radius: 10px;
  overflow: hidden;
}
.browser-mock-bar {
  display: flex; align-items: center; gap: .5rem;
  padding: .65rem .8rem; background: var(--surface-2); border-bottom: 1px solid var(--line);
}
.browser-mock-dots { display: flex; gap: .3rem; }
.browser-mock-dots span { width: 6px; height: 6px; border-radius: 50%; background: var(--line-2); }
.browser-mock-url {
  flex: 1; text-align: center; font-family: var(--mono); font-size: 0.62rem; color: var(--ink-3);
  background: var(--bg); border-radius: 4px; padding: .22rem .6rem;
  overflow: hidden; text-overflow: ellipsis; white-space: nowrap;
}
.bm-line { display: block; border-radius: 4px; background: var(--ink-3); opacity: .5; }
.bm-cta { border-radius: 6px; background: linear-gradient(135deg, var(--wine), var(--purple)); }

.hero-visual { display: none; }
@media (min-width: 900px) {
  .hero-visual { display: flex; align-items: center; justify-content: center; perspective: 1600px; }
}
.browser-mock--hero {
  width: min(420px, 100%);
  transform: rotateY(-10deg) rotateX(5deg) rotateZ(-2deg);
  animation: mockFloat 7s ease-in-out infinite;
  box-shadow: 0 50px 100px -30px rgba(0,0,0,.6), 0 0 80px -30px var(--glow-wine);
}
@keyframes mockFloat {
  0%, 100% { transform: rotateY(-10deg) rotateX(5deg) rotateZ(-2deg) translateY(0); }
  50%      { transform: rotateY(-7deg) rotateX(3deg) rotateZ(-1deg) translateY(-16px); }
}
@media (prefers-reduced-motion: reduce) { .browser-mock--hero { animation: none; } }
.hero-mock-screen { padding: 1.6rem 1.4rem; display: flex; flex-direction: column; gap: .7rem; }
.hero-mock-screen .bm-kicker { width: 34%; height: 7px; opacity: .9; background: var(--wine-2); }
.hero-mock-screen .bm-line--lg { width: 82%; height: 18px; opacity: .85; background: var(--ink-2); }
.hero-mock-screen .bm-line--md { width: 58%; height: 11px; }
.hero-mock-screen .bm-cta { width: 128px; height: 34px; margin-top: .4rem; }
.hero-mock-screen .bm-block {
  margin-top: 1rem; height: 90px; border-radius: 8px; border: 1px solid var(--line);
  background: linear-gradient(135deg, rgba(140,47,82,.22), rgba(91,58,134,.22));
}

/* =============================================================
   8. Hero
   ============================================================= */
.hero {
  position: relative; display: flex; align-items: center; overflow: clip; isolation: isolate;
  padding-top: calc(var(--nav-h) + clamp(2.5rem, 6vw, 4.5rem));
  padding-bottom: clamp(3.5rem, 8vw, 5.5rem);
}
.hero-grid { display: grid; grid-template-columns: 1fr; gap: 2.5rem; align-items: center; }
@media (min-width: 900px) { .hero-grid { grid-template-columns: 1.15fr 1fr; gap: 3rem; } }
.hero-inner { padding-block: clamp(2.25rem, 6vw, 4rem); }
.hero-title {
  font-size: clamp(2.3rem, 5.6vw, 4.1rem); line-height: 1.08; margin-bottom: 1.4rem;
  text-transform: uppercase;
}
.hero-sub { font-size: clamp(1.02rem, 1.6vw, 1.2rem); color: var(--ink-3); max-width: 46ch; margin-bottom: 2.2rem; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 1rem; }

.scroll-cue {
  position: absolute; left: 50%; bottom: 2.2rem; transform: translateX(-50%);
  display: none; flex-direction: column; align-items: center; gap: .5rem;
  color: var(--ink-3); font-family: var(--mono); font-size: 0.65rem; letter-spacing: .16em; text-transform: uppercase;
}
@media (min-width: 720px) { .scroll-cue { display: flex; } }
.scroll-cue span { width: 1px; height: 26px; background: linear-gradient(var(--wine-2), transparent); animation: cueMove 2.2s ease-in-out infinite; }
@keyframes cueMove { 0% { transform: scaleY(0.4); opacity: .3; transform-origin: top; } 50% { transform: scaleY(1); opacity: 1; transform-origin: top; } 100% { transform: scaleY(0.4); opacity: .3; transform-origin: top; } }
@media (prefers-reduced-motion: reduce) { .scroll-cue span { animation: none; opacity: .6; } }

/* =============================================================
   9. Value section (need-points reused)
   ============================================================= */
.need-points { display: grid; gap: 2rem; grid-template-columns: 1fr; margin-top: 2.6rem; }
@media (min-width: 720px) { .need-points { grid-template-columns: repeat(3, 1fr); gap: 2rem; } }
.need-point { padding-top: 1.5rem; border-top: 1px solid var(--line); }
.need-point .num { display: block; font-family: var(--mono); font-size: 0.78rem; color: var(--wine-2); margin-bottom: .9rem; }
.need-point h3 { font-family: var(--sans); font-size: 1rem; font-weight: 700; color: var(--ink); letter-spacing: .04em; text-transform: uppercase; margin-bottom: .5rem; }
.need-point p { font-size: 0.95rem; color: var(--ink-3); max-width: 32ch; }

/* =============================================================
   10. What We Build
   ============================================================= */
.build-grid { display: grid; grid-template-columns: 1fr; gap: 1.25rem; margin-top: 1rem; }
@media (min-width: 640px) { .build-grid { grid-template-columns: repeat(2, 1fr); } }
.build-card {
  position: relative; padding: 2.2rem 1.9rem; border: 1px solid var(--line-2); border-radius: 12px;
  background: var(--surface); overflow: hidden;
  transition: transform .5s var(--ease-soft), border-color .4s, box-shadow .5s var(--ease-soft);
}
.build-card::before {
  content: ""; position: absolute; inset: 0; z-index: 0; opacity: 0;
  background: linear-gradient(135deg, rgba(140,47,82,.16), rgba(91,58,134,.16));
  transition: opacity .5s var(--ease-out);
}
.build-card:hover { transform: translateY(-6px); border-color: var(--wine-dim); box-shadow: 0 30px 60px -35px var(--glow-wine); }
.build-card:hover::before { opacity: 1; }
.build-card > * { position: relative; z-index: 1; }
.build-num { display: block; font-family: var(--mono); font-size: 0.85rem; color: var(--wine-2); margin-bottom: 1.2rem; }
.build-card h3 { font-size: 1.3rem; margin-bottom: .6rem; text-transform: uppercase; }
.build-card p { color: var(--ink-3); font-size: 0.95rem; max-width: 38ch; }

/* =============================================================
   11. Packages
   ============================================================= */
.pkg-grid { display: grid; gap: 1.6rem; grid-template-columns: 1fr; }
@media (min-width: 860px) { .pkg-grid { grid-template-columns: repeat(3, 1fr); align-items: start; } }

.pkg-card {
  position: relative; background: var(--surface); border: 1px solid var(--line-2); border-radius: 10px;
  padding: 2.1rem 1.8rem; display: flex; flex-direction: column;
  transition: transform .55s var(--ease-soft), box-shadow .55s var(--ease-soft), border-color .45s;
  --rx: 0deg; --ry: 0deg; --lift: 0px; --pop-offset: 0px;
  transform: perspective(1000px) rotateX(var(--rx)) rotateY(var(--ry)) translateY(calc(var(--lift) + var(--pop-offset)));
  transform-style: preserve-3d;
}
/* higher specificity than [data-reveal].is-revealed's transform:none reset, so the
   card's own perspective/tilt/pop-offset composition always wins after it reveals */
.pkg-card[data-reveal].is-revealed {
  transform: perspective(1000px) rotateX(var(--rx)) rotateY(var(--ry)) translateY(calc(var(--lift) + var(--pop-offset)));
}
.pkg-card:hover { --lift: -6px; box-shadow: 0 30px 60px -35px rgba(0,0,0,.55); }
.pkg-card.has-tilt:hover { transition-duration: .15s; }
.pkg-card::before {
  content: ""; position: absolute; inset: 0; z-index: 0; border-radius: inherit;
  background: radial-gradient(240px circle at var(--mx, 50%) var(--my, 30%), rgba(140,47,82,.16), transparent 62%);
  opacity: 0; transition: opacity .4s; pointer-events: none;
}
.pkg-card:hover::before { opacity: 1; }
.pkg-card > * { position: relative; z-index: 1; }

.pkg-name { font-family: var(--display); font-weight: 700; font-size: clamp(1.3rem, 2vw, 1.6rem); color: var(--ink); margin-bottom: 1rem; text-transform: uppercase; }
.pkg-price { font-family: var(--mono); font-size: clamp(2.1rem, 3.6vw, 2.6rem); color: var(--ink); margin-bottom: .3rem; letter-spacing: -0.02em; font-variant-numeric: tabular-nums; }
.pkg-tagline { font-size: 0.92rem; color: var(--ink-2); margin-bottom: 1.5rem; padding-bottom: 1.5rem; border-bottom: 1px solid var(--line); }

.pkg-features { display: flex; flex-direction: column; gap: .7rem; margin-bottom: 1.9rem; flex-grow: 1; }
.pkg-features li { display: flex; align-items: flex-start; gap: .6rem; font-size: 0.9rem; color: var(--ink-2); }
.pkg-features li svg { width: 14px; height: 14px; margin-top: .2rem; color: var(--wine-2); flex-shrink: 0; }
.pkg-features li strong { color: var(--ink); font-weight: 600; }

.pkg-badge {
  position: absolute; top: -0.9rem; left: 50%; transform: translateX(-50%);
  padding: .4rem 1rem; border-radius: 999px; white-space: nowrap;
  background: linear-gradient(135deg, var(--wine), var(--wine-2));
  color: var(--ink); font-family: var(--mono); font-size: 0.62rem; font-weight: 500;
  letter-spacing: .1em; text-transform: uppercase;
  box-shadow: 0 10px 24px -10px var(--glow-wine);
  z-index: 2;
}
.pkg-card.is-popular {
  border-color: rgba(198,90,130,.5);
  box-shadow: 0 0 0 1px rgba(198,90,130,.22), 0 30px 65px -32px var(--glow-wine);
}
@media (min-width: 860px) { .pkg-card.is-popular { --pop-offset: -14px; } }

.pkg-card.is-premium {
  border-color: rgba(91,58,134,.4);
  box-shadow: 0 0 0 1px rgba(91,58,134,.22), 0 30px 70px -32px var(--glow-purple);
  background: linear-gradient(180deg, var(--surface-2), var(--surface));
  overflow: hidden;
}
.pkg-card.is-premium::after {
  content: ""; position: absolute; top: 0; left: 0; right: 0; height: 3px;
  background: linear-gradient(90deg, var(--purple), var(--purple-2), var(--wine-2));
}
.pkg-card.is-premium .pkg-name { color: var(--purple-2); }
.pkg-premium-head { display: flex; align-items: center; gap: .55rem; margin-bottom: 1rem; }
.pkg-premium-head .pkg-name { margin-bottom: 0; }
.pkg-premium-icon {
  width: 20px; height: 20px; color: var(--purple-2); flex-shrink: 0;
  filter: drop-shadow(0 0 6px var(--glow-purple));
}
.pkg-card.is-premium:hover {
  box-shadow: 0 0 0 1.5px var(--purple-2), 0 36px 80px -30px var(--glow-purple);
}

.pkg-cta { margin-top: auto; }

/* =============================================================
   12. Why Tflaako — process steps
   ============================================================= */
.process-grid { display: grid; grid-template-columns: 1fr; gap: 2rem; margin-top: 2.6rem; }
@media (min-width: 720px) { .process-grid { grid-template-columns: repeat(4, 1fr); gap: 1.5rem; } }
.process-step { padding-top: 1.5rem; border-top: 1px solid var(--line); position: relative; }
.process-num {
  display: block; font-family: var(--display); font-weight: 700; font-size: 1.6rem;
  background: linear-gradient(135deg, var(--wine-2), var(--purple-2));
  -webkit-background-clip: text; background-clip: text; color: transparent;
  margin-bottom: .9rem;
}
.process-step h3 { font-size: 1.02rem; text-transform: uppercase; margin-bottom: .5rem; }
.process-step p { font-size: 0.92rem; color: var(--ink-3); max-width: 30ch; }

/* =============================================================
   13. Project Estimate form
   ============================================================= */
.promo-card {
  max-width: 640px; margin: 0 auto 2rem; padding: 1.3rem 1.5rem; border-radius: 12px;
  display: flex; align-items: center; gap: 1.1rem;
  border: 1px solid var(--wine-dim); background: linear-gradient(135deg, rgba(140,47,82,.14), rgba(91,58,134,.1));
  box-shadow: 0 20px 44px -30px var(--glow-wine);
}
.promo-card svg {
  width: 30px; height: 30px; flex-shrink: 0; color: var(--wine-2);
}
.promo-card-copy { display: flex; flex-direction: column; gap: .25rem; }
.promo-card-copy strong { font-family: var(--display); font-size: 1.05rem; color: var(--ink); font-weight: 700; }
.promo-card-copy span { font-size: 0.88rem; color: var(--ink-2); }

.estimate-form { max-width: 720px; margin-inline: auto; display: grid; gap: 1.1rem; }
.field { display: flex; flex-direction: column; gap: .4rem; }
.field label { font-family: var(--mono); font-size: 0.66rem; letter-spacing: .1em; text-transform: uppercase; color: var(--ink-3); }
.field input, .field select, .field textarea {
  width: 100%; padding: .85rem 1rem; background: var(--surface); color: var(--ink);
  border: 1px solid var(--line-2); border-radius: 6px; font-family: var(--sans); font-size: 0.95rem;
  transition: border-color .3s, box-shadow .3s;
}
.field select {
  appearance: none; -webkit-appearance: none;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%2396899f' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'><polyline points='6 9 12 15 18 9'/></svg>");
  background-repeat: no-repeat; background-position: right 1rem center; background-size: 16px;
  padding-right: 2.6rem;
}
.field select:invalid { color: var(--ink-3); }
.field input::placeholder, .field textarea::placeholder { color: var(--ink-3); opacity: .7; }
.field input:focus, .field select:focus, .field textarea:focus {
  outline: none; border-color: var(--wine-dim); box-shadow: 0 0 0 3px rgba(140,47,82,.15);
}
.field textarea { resize: vertical; min-height: 90px; }
.field-row { display: grid; gap: 1.1rem; grid-template-columns: 1fr; }
@media (min-width: 600px) { .field-row { grid-template-columns: 1fr 1fr; } }
.hp-field { position: absolute !important; left: -9999px !important; width: 1px; height: 1px; overflow: hidden; }

.estimate-status {
  margin-top: .3rem; padding: .85rem 1rem; border-radius: 6px; text-align: center;
  font-family: var(--mono); font-size: 0.85rem;
  background: rgba(140,47,82,.1); border: 1px solid var(--wine-dim); color: var(--wine-2);
}
.estimate-status.is-error { background: rgba(140,47,82,.16); border-color: var(--wine); color: var(--ink); }
.estimate-status.is-success { background: rgba(91,58,134,.14); border-color: var(--purple); color: var(--purple-2); }

/* =============================================================
   14. Final CTA
   ============================================================= */
.final-cta { position: relative; text-align: center; }
.final-title { font-size: clamp(2rem, 4.6vw, 3.2rem); margin-bottom: 1.1rem; text-transform: uppercase; }
.final-sub { font-size: 1.05rem; color: var(--ink-3); max-width: 44ch; margin-inline: auto; margin-bottom: 2.6rem; }

/* =============================================================
   15. Footer
   ============================================================= */
.footer { border-top: 1px solid var(--line); padding-block: 2.4rem; position: relative; }
.footer-inner { display: flex; flex-direction: column; gap: 1.5rem; align-items: center; text-align: center; }
@media (min-width: 860px) { .footer-inner { flex-direction: row; justify-content: space-between; text-align: left; } }
.footer-brand { display: flex; flex-direction: column; gap: .4rem; max-width: 320px; }
.footer-brand .brand { font-size: 1.05rem; }
.footer-copy { font-size: 0.75rem; color: var(--ink-3); }
.footer-links { display: flex; gap: 1.5rem; flex-wrap: wrap; justify-content: center; }
.footer-links a { font-size: 0.85rem; color: var(--ink-3); transition: color .3s; }
.footer-links a:hover { color: var(--wine-2); }
.footer-meta { display: flex; flex-direction: column; gap: .6rem; align-items: center; }
@media (min-width: 860px) { .footer-meta { align-items: flex-end; } }
.footer-email { font-family: var(--mono); font-size: 0.85rem; color: var(--wine-2); transition: color .3s; }
.footer-email:hover { color: var(--purple-2); }
.footer-social {
  display: inline-flex; align-items: center; gap: .4rem;
  font-family: var(--mono); font-size: 0.82rem; color: var(--ink-3);
  transition: color .3s;
}
.footer-social svg { width: 14px; height: 14px; flex-shrink: 0; }
.footer-social:hover { color: var(--purple-2); }
.footer-langs { display: flex; gap: .35rem; font-family: var(--mono); font-size: 0.72rem; }
.footer-langs button { color: var(--ink-3); padding: .15rem; }
.footer-langs button.is-active { color: var(--purple-2); }
.footer-langs .sep { color: var(--line-2); }

/* =============================================================
   16. Responsive polish
   ============================================================= */
@media (max-width: 539px) {
  .hero-actions { flex-direction: column; align-items: stretch; }
  .hero-actions .btn { width: 100%; }
}
