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

:root {
  --bg-page:      #F5F0EA;
  --bg-nav:       rgba(245, 240, 234, 0.82);
  --border-nav:   rgba(44, 33, 24, 0.10);
  --text-primary: #1C1610;
  --text-muted:   #6B5E52;
  --accent:       #A0784A;
  --accent-light: #D4A96A;
  --accent-dark:  #2C2118;
  --cta-bg:       #2C2118;
  --cta-text:     #F5F0EA;
  --cta-hover:    #3E2E1E;
  --shadow-nav:   0 4px 32px rgba(44,33,24,.14), 0 1px 4px rgba(44,33,24,.08);
  --radius-nav:   14px;
  --font:         'Plus Jakarta Sans', 'Manrope', system-ui, sans-serif;
  --nav-height:   68px;
}

html { scroll-behavior: smooth; }

body {
  font-family: var(--font);
  background: var(--bg-page);
  color: var(--text-primary);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

/* ═══════════════════════════════════════
   NAVBAR
═══════════════════════════════════════ */

.nav-wrapper {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  display: flex;
  justify-content: center;
  padding: 14px 20px 0;
  pointer-events: none;
}

.navbar {
  pointer-events: all;
  width: 100%;
  max-width: 1080px;
  height: var(--nav-height);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  background: var(--bg-nav);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid var(--border-nav);
  border-radius: var(--radius-nav);
  box-shadow: var(--shadow-nav);
  padding: 0 28px;
  transition: box-shadow .3s ease, background .3s ease;
}
.navbar.scrolled {
  background: rgba(245,240,234,.96);
  box-shadow: 0 8px 40px rgba(44,33,24,.18), 0 2px 6px rgba(44,33,24,.10);
}

.nav-logo { display: flex; align-items: center; gap: 10px; text-decoration: none; flex-shrink: 0; }
.logo-mark svg { display: block; transition: transform .25s ease; }
.nav-logo:hover .logo-mark svg { transform: scale(1.06); }
.logo-text { font-size: 15px; font-weight: 700; letter-spacing: .18em; color: var(--text-primary); text-transform: uppercase; line-height: 1; padding-top: 1px; }

.nav-links { display: flex; align-items: center; gap: 4px; list-style: none; flex: 1; justify-content: center; }
.nav-link {
  position: relative; display: inline-block;
  padding: 6px 14px; font-size: 14px; font-weight: 500;
  color: var(--text-muted); text-decoration: none;
  letter-spacing: .01em; border-radius: 8px;
  transition: color .2s, background .2s;
}
.nav-link::after {
  content: ''; position: absolute; bottom: 2px; left: 14px; right: 14px;
  height: 1.5px; background: var(--accent); border-radius: 2px;
  transform: scaleX(0); transform-origin: left; transition: transform .25s ease;
}
.nav-link:hover { color: var(--text-primary); background: rgba(44,33,24,.05); }
.nav-link:hover::after { transform: scaleX(1); }

.nav-cta-wrap { flex-shrink: 0; }
.nav-cta {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 10px 22px; font-family: var(--font); font-size: 13.5px; font-weight: 600; letter-spacing: .02em;
  color: var(--cta-text); background: var(--cta-bg); border: none; border-radius: 9px;
  text-decoration: none; cursor: pointer; white-space: nowrap;
  box-shadow: 0 2px 8px rgba(44,33,24,.18);
  transition: background .2s, transform .2s, box-shadow .2s;
}
.nav-cta:hover { background: var(--cta-hover); transform: translateY(-1px); box-shadow: 0 6px 18px rgba(44,33,24,.22); }
.nav-cta:active { transform: translateY(0); }

.hamburger {
  display: none; flex-direction: column; justify-content: center; gap: 5px;
  width: 38px; height: 38px; padding: 7px;
  background: transparent; border: 1px solid var(--border-nav); border-radius: 8px;
  cursor: pointer; flex-shrink: 0; transition: background .2s;
}
.hamburger:hover { background: rgba(44,33,24,.06); }
.hamburger span { display: block; height: 1.5px; background: var(--text-primary); border-radius: 2px; transition: transform .3s, opacity .3s, width .3s; transform-origin: center; }
.hamburger span:nth-child(3) { width: 65%; align-self: flex-end; }
.hamburger.open span:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.hamburger.open span:nth-child(3) { width: 100%; transform: translateY(-6.5px) rotate(-45deg); }

.mobile-menu {
  display: none; position: fixed; top: 0; left: 0; right: 0; z-index: 99;
  padding: calc(var(--nav-height) + 28px) 20px 28px;
  background: rgba(245,240,234,.97);
  backdrop-filter: blur(20px); -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border-nav);
  box-shadow: 0 8px 32px rgba(44,33,24,.10);
  flex-direction: column; gap: 8px;
  opacity: 0; transform: translateY(-8px);
  transition: opacity .3s, transform .3s;
  pointer-events: none;
}
.mobile-menu.open { opacity: 1; transform: translateY(0); pointer-events: all; }
.mobile-links { list-style: none; display: flex; flex-direction: column; gap: 2px; }
.mobile-link { display: block; padding: 13px 16px; font-size: 16px; font-weight: 500; color: var(--text-muted); text-decoration: none; border-radius: 10px; transition: color .2s, background .2s; }
.mobile-link:hover { color: var(--text-primary); background: rgba(44,33,24,.05); }
.mobile-cta { display: block; margin-top: 12px; padding: 14px 22px; text-align: center; font-size: 15px; font-weight: 600; letter-spacing: .02em; color: var(--cta-text); background: var(--cta-bg); border-radius: 10px; text-decoration: none; box-shadow: 0 2px 10px rgba(44,33,24,.18); transition: background .2s; }
.mobile-cta:hover { background: var(--cta-hover); }

/* ═══════════════════════════════════════
   HERO
═══════════════════════════════════════ */

.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding-top: calc(var(--nav-height) + 40px);
  padding-bottom: 80px;
  overflow: hidden;
}

/* ── Background ── */

.hero-bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 0;
}

.bg-blob--1 {
  position: absolute;
  width: 700px; height: 700px;
  border-radius: 50%;
  background: radial-gradient(circle at 40% 40%, rgba(212,169,106,.20) 0%, transparent 65%);
  top: -15%; left: -18%;
  filter: blur(72px);
  animation: blob1 22s ease-in-out infinite alternate;
}
.bg-blob--2 {
  position: absolute;
  width: 800px; height: 800px;
  border-radius: 50%;
  background: radial-gradient(circle at 55% 48%, rgba(160,120,74,.19) 0%, rgba(212,169,106,.10) 38%, transparent 68%);
  top: -20%; right: -22%;
  filter: blur(80px);
  animation: blob2 26s ease-in-out infinite alternate;
}
.bg-blob--3 {
  position: absolute;
  width: 500px; height: 380px;
  border-radius: 50%;
  background: radial-gradient(ellipse, rgba(200,178,148,.14) 0%, transparent 70%);
  top: 38%; left: 28%;
  filter: blur(64px);
  animation: blob3 30s ease-in-out infinite alternate;
}
.bg-blob--4 {
  position: absolute;
  width: 460px; height: 180px;
  border-radius: 50%;
  background: radial-gradient(ellipse, rgba(160,120,74,.12) 0%, transparent 70%);
  bottom: 10%; right: 16%;
  filter: blur(52px);
}
.bg-blob--5 {
  position: absolute;
  width: 340px; height: 340px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(212,169,106,.11) 0%, transparent 70%);
  bottom: 5%; left: 5%;
  filter: blur(60px);
  animation: blob1 18s ease-in-out infinite alternate-reverse;
}

@keyframes blob1 { from { transform: translate(0,0) scale(1); } to { transform: translate(22px,30px) scale(1.04); } }
@keyframes blob2 { from { transform: translate(0,0) scale(1); } to { transform: translate(-26px,18px) scale(1.05); } }
@keyframes blob3 { from { transform: translate(0,0); } to { transform: translate(18px,-22px); } }

.bg-grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(44,33,24,.022) 1px, transparent 1px),
    linear-gradient(90deg, rgba(44,33,24,.022) 1px, transparent 1px);
  background-size: 60px 60px;
  mask-image: radial-gradient(ellipse 100% 80% at 55% 42%, rgba(0,0,0,.7) 0%, transparent 100%);
}

.bg-noise {
  position: absolute;
  inset: 0;
  opacity: .032;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
  background-size: 160px 160px;
}

.bg-arc {
  position: absolute;
  border-radius: 50%;
  border: 1px solid rgba(160,120,74,.08);
  pointer-events: none;
}
.bg-arc--1 {
  width: 480px; height: 480px;
  top: 50%; right: 2%;
  transform: translateY(-50%);
}
.bg-arc--2 {
  width: 300px; height: 300px;
  top: 50%; right: 10%;
  transform: translateY(-50%);
  border-color: rgba(160,120,74,.06);
}

.bg-line {
  position: absolute;
  background: rgba(44,33,24,.055);
  border-radius: 99px;
}
.bg-line--1 { width: 1px; height: 52%; top: 8%; left: 50%; transform: rotate(9deg); }
.bg-line--2 { width: 280px; height: 1px; bottom: 24%; right: 7%; transform: rotate(-5deg); }
.bg-line--3 { width: 1px; height: 28%; bottom: 0; right: 36%; transform: rotate(-12deg); opacity: .6; }

.bg-dot { position: absolute; border-radius: 50%; background: rgba(160,120,74,.28); }
.bg-dot--1 { width: 5px; height: 5px; top: 20%; left: 42%; }
.bg-dot--2 { width: 3px; height: 3px; top: 66%; left: 52%; }
.bg-dot--3 { width: 7px; height: 7px; top: 35%; right: 13%; }
.bg-dot--4 { width: 4px; height: 4px; bottom: 28%; left: 22%; }

/* ── Hero inner layout ── */

.hero-inner {
  position: relative;
  z-index: 1;
  width: 100%;
  max-width: 1140px;
  margin: 0 auto;
  padding: 0 40px;
  display: grid;
  grid-template-columns: 1fr 1.08fr;
  align-items: center;
  gap: 52px;
}

/* ── Copy ── */

.hero-copy {
  display: flex;
  flex-direction: column;
  gap: 28px;
  padding-bottom: 8px;
}

.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 10.5px;
  font-weight: 700;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--accent);
  opacity: 0;
  transform: translateY(14px);
  animation: fadeUp .65s ease forwards .1s;
}
.eyebrow-dash {
  display: inline-block;
  width: 22px; height: 1.5px;
  background: var(--accent);
  border-radius: 2px;
  flex-shrink: 0;
}

.hero-heading {
  font-family: var(--font);
  font-size: clamp(30px, 3.3vw, 46px);
  font-weight: 800;
  line-height: 1.19;
  letter-spacing: -.025em;
  color: var(--text-primary);
  opacity: 0;
  transform: translateY(22px);
  animation: fadeUp .8s cubic-bezier(.22,1,.36,1) forwards .2s;
}

.heading-accent {
  font-style: normal;
  color: var(--accent);
  display: inline;
  text-decoration: none;
  border-bottom: 2px solid rgba(160,120,74,.30);
  padding-bottom: 1px;
}

.hero-desc {
  font-size: 15px;
  font-weight: 400;
  line-height: 1.75;
  color: var(--text-muted);
  max-width: 390px;
  opacity: 0;
  transform: translateY(18px);
  animation: fadeUp .75s ease forwards .34s;
}

/* ── Buttons ── */

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  opacity: 0;
  transform: translateY(18px);
  animation: fadeUp .75s ease forwards .46s;
}

.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font);
  font-size: 14px;
  font-weight: 600;
  letter-spacing: .01em;
  text-decoration: none;
  border-radius: 11px;
  cursor: pointer;
  border: none;
  transition: transform .24s cubic-bezier(.22,1,.36,1), box-shadow .24s ease, background .18s ease, border-color .18s ease;
  white-space: nowrap;
}

.btn--primary {
  padding: 13px 26px;
  background: var(--cta-bg);
  color: var(--cta-text);
  box-shadow:
    0 1px 0 rgba(255,255,255,.07) inset,
    0 4px 16px rgba(44,33,24,.30),
    0 1px 4px rgba(44,33,24,.18);
}
.btn--primary:hover {
  background: var(--cta-hover);
  transform: translateY(-2px);
  box-shadow:
    0 1px 0 rgba(255,255,255,.07) inset,
    0 10px 28px rgba(44,33,24,.32),
    0 3px 8px rgba(44,33,24,.18);
}
.btn--primary:active { transform: translateY(0); }

.btn--ghost {
  padding: 12px 22px;
  background: rgba(245,240,234,.5);
  color: var(--text-primary);
  border: 1.5px solid rgba(44,33,24,.14);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  box-shadow: 0 1px 4px rgba(44,33,24,.05);
}
.btn--ghost:hover {
  background: rgba(245,240,234,.78);
  border-color: rgba(44,33,24,.24);
  transform: translateY(-1px);
  box-shadow: 0 4px 14px rgba(44,33,24,.09);
}

/* ── Stats ── */

.hero-stats {
  display: flex;
  align-items: center;
  padding: 14px 20px;
  gap: 0;
  background: rgba(44,33,24,.033);
  border: 1px solid rgba(44,33,24,.09);
  border-radius: 13px;
  width: fit-content;
  margin-top: 4px;
  opacity: 0;
  transform: translateY(16px);
  animation: fadeUp .75s ease forwards .6s;
}

.stat {
  display: flex;
  align-items: center;
  gap: 9px;
  padding: 0 18px;
}
.stat:first-child { padding-left: 0; }
.stat:last-child  { padding-right: 0; }

.stat-icon {
  width: 28px; height: 28px;
  border-radius: 7px;
  background: rgba(160,120,74,.13);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.stat-text { display: flex; flex-direction: column; gap: 1px; }
.stat-value { font-size: 13px; font-weight: 700; color: var(--text-primary); letter-spacing: .01em; line-height: 1; }
.stat-label { font-size: 10.5px; font-weight: 500; color: var(--text-muted); }

.stat-sep { width: 1px; height: 28px; background: rgba(44,33,24,.10); border-radius: 1px; flex-shrink: 0; }

/* ── Visual ── */

.hero-visual {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 44px 28px 44px 20px;
  opacity: 0;
  transform: translateX(32px) scale(.96);
  animation: slideInRight 1s cubic-bezier(.22,1,.36,1) forwards .25s;
}

.visual-glow {
  position: absolute;
  width: 88%;
  height: 88%;
  border-radius: 50%;
  background: radial-gradient(ellipse at 54% 50%,
    rgba(212,169,106,.28) 0%,
    rgba(190,150,90,.14) 35%,
    rgba(160,120,74,.06) 60%,
    transparent 80%);
  filter: blur(38px);
  z-index: 0;
  pointer-events: none;
}

.visual-ring {
  position: absolute;
  width: 94%;
  height: 94%;
  border-radius: 50%;
  border: 1px solid rgba(160,120,74,.13);
  z-index: 0;
  pointer-events: none;
  animation: ringPulse 8s ease-in-out infinite;
}
.visual-ring::after {
  content: '';
  position: absolute;
  inset: 12%;
  border-radius: 50%;
  border: 1px dashed rgba(160,120,74,.10);
}

@keyframes ringPulse {
  0%,100% { transform: scale(1);    opacity: 1; }
  50%      { transform: scale(1.03); opacity: .7; }
}

/* ── Floating cards ── */

.float-card {
  position: absolute;
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 14px;
  background: rgba(252,248,244,.96);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid rgba(44,33,24,.10);
  border-radius: 12px;
  box-shadow:
    0 1px 0 rgba(255,255,255,.9) inset,
    0 8px 28px rgba(44,33,24,.12),
    0 2px 6px rgba(44,33,24,.07);
  z-index: 3;
  white-space: nowrap;
}

.float-card__icon {
  display: flex; align-items: center; justify-content: center;
  width: 28px; height: 28px;
  background: rgba(160,120,74,.12);
  border-radius: 8px;
  flex-shrink: 0;
}
.float-card__icon--success { background: rgba(92,139,90,.12); }
.float-card__icon--time    { background: rgba(160,120,74,.12); }

.float-card__body { display: flex; flex-direction: column; gap: 1px; }
.float-card__label { font-size: 11.5px; font-weight: 700; color: var(--text-primary); letter-spacing: .01em; line-height: 1; }
.float-card__sub   { font-size: 10px; font-weight: 500; color: var(--text-muted); }

.float-card--tl { top: 16%;  left: -8px;  animation: floatA 5s   ease-in-out infinite; }
.float-card--tr { top: 5%;   right: 0px;  animation: floatB 4.8s ease-in-out infinite .6s; }
.float-card--bl { bottom: 18%; left: -4px; animation: floatC 5.4s ease-in-out infinite .3s; }
.float-card--br { bottom: 8%; right: 2px;  animation: floatA 5.2s ease-in-out infinite 1s; }

@keyframes floatA { 0%,100% { transform: translateY(0); }          50% { transform: translateY(-7px); } }
@keyframes floatB { 0%,100% { transform: translateY(0) rotate(.3deg); }  50% { transform: translateY(-6px) rotate(-.3deg); } }
@keyframes floatC { 0%,100% { transform: translateY(0) rotate(-.2deg); } 50% { transform: translateY(-9px) rotate(.2deg); } }

/* ── Browser shell ── */

.browser {
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: 528px;
  transform: perspective(1200px) rotateY(-6deg) rotateX(2.5deg);
  animation: browserFloat 7s ease-in-out infinite;
  transform-style: preserve-3d;
  border-radius: 14px;
  overflow: hidden;
  border: 1px solid rgba(44,33,24,.13);
  background: #fff;
  box-shadow:
    0 2px 0 rgba(255,255,255,.65) inset,
    0 1px 0 rgba(44,33,24,.06),
    0 40px 80px rgba(44,33,24,.28),
    0 16px 32px rgba(44,33,24,.16),
    0 4px 10px rgba(44,33,24,.10),
    -4px 0 16px rgba(212,169,106,.10);
  transition: transform .5s cubic-bezier(.22,1,.36,1), box-shadow .5s ease;
}

.browser:hover {
  animation-play-state: paused;
  transform: perspective(1200px) rotateY(-2deg) rotateX(1deg) translateY(-8px);
  box-shadow:
    0 2px 0 rgba(255,255,255,.65) inset,
    0 1px 0 rgba(44,33,24,.06),
    0 56px 100px rgba(44,33,24,.32),
    0 22px 44px rgba(44,33,24,.18),
    0 6px 14px rgba(44,33,24,.10),
    -4px 0 20px rgba(212,169,106,.12);
}

.browser__bar {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 14px;
  background: #EAE3D8;
  border-bottom: 1px solid rgba(44,33,24,.09);
}
.browser__dots { display: flex; gap: 5px; flex-shrink: 0; }
.browser__dots span { width: 9px; height: 9px; border-radius: 50%; }
.browser__dots span:nth-child(1) { background: #E07070; }
.browser__dots span:nth-child(2) { background: #E0B870; }
.browser__dots span:nth-child(3) { background: #7EC87E; }

.browser__url {
  flex: 1;
  display: flex; align-items: center; justify-content: center; gap: 4px;
  background: rgba(44,33,24,.07);
  border-radius: 5px; padding: 4px 10px;
  font-size: 10px; font-weight: 500; color: var(--text-muted);
}
.browser__url-lock { color: rgba(107,94,82,.7); display: flex; align-items: center; }

.browser__screen { overflow: hidden; height: 390px; }

.browser__screen--cta { display: flex; padding: 0; }

.browser__screen--brand { display: flex; padding: 0; }
.bbrand {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 14px;
  background: #2C2118;
  position: relative;
  overflow: hidden;
}
.bbrand__glow {
  position: absolute;
  width: 320px; height: 320px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(196,137,92,.2) 0%, transparent 68%);
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  pointer-events: none;
}
.bbrand__mark { position: relative; z-index: 1; }
.bbrand__name {
  position: relative; z-index: 1;
  font-size: 28px; font-weight: 800;
  letter-spacing: .22em;
  color: #F5F0EA;
}
.bbrand__sub {
  position: relative; z-index: 1;
  font-size: 10px; font-weight: 500;
  letter-spacing: .10em;
  color: rgba(196,137,92,.6);
  text-transform: uppercase;
}

.bcta {
  flex: 1;
  display: flex;
  flex-direction: column;
  background: #2C2118;
  position: relative;
  overflow: hidden;
}

.bcta::before {
  content: '';
  position: absolute;
  width: 340px; height: 340px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(196,137,92,.22) 0%, transparent 70%);
  top: -80px; right: -80px;
  pointer-events: none;
}
.bcta::after {
  content: '';
  position: absolute;
  width: 200px; height: 200px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(212,169,106,.14) 0%, transparent 70%);
  bottom: 30px; left: -40px;
  pointer-events: none;
}

.bcta__top {
  padding: 14px 22px 0;
  flex-shrink: 0;
}
.bcta__eyebrow {
  font-size: 9px; font-weight: 600;
  letter-spacing: .18em; text-transform: uppercase;
  color: rgba(196,137,92,.65);
}

.bcta__body {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 0 22px;
  gap: 18px;
  position: relative; z-index: 1;
}

.bcta__pre {
  font-size: 11px; font-weight: 500;
  color: rgba(245,240,234,.45);
  letter-spacing: .03em;
}

.bcta__heading {
  font-size: clamp(32px, 5.5vw, 52px);
  font-weight: 800;
  line-height: 1.06;
  letter-spacing: -.03em;
  color: #F5F0EA;
  margin: 0;
}

.bcta__btn {
  display: inline-flex;
  align-items: center;
  width: fit-content;
  font-size: 11px; font-weight: 600;
  color: #2C2118;
  background: #D4A96A;
  padding: 8px 16px;
  border-radius: 8px;
  text-decoration: none;
  letter-spacing: .01em;
  transition: background .2s ease;
}
.bcta__btn:hover { background: #C4895C; }

.bcta__bottom {
  padding: 12px 22px 16px;
  border-top: 1px solid rgba(245,240,234,.08);
  flex-shrink: 0;
  position: relative; z-index: 1;
}
.bcta__bottom span {
  font-size: 9px; font-weight: 500;
  color: rgba(245,240,234,.3);
  letter-spacing: .06em;
}

/* ── Mini site ── */

.mini-site {
  height: 100%;
  overflow: hidden;
  background: #FDFAF6;
  display: flex;
  flex-direction: column;
}

.mini-nav {
  display: flex; align-items: center; justify-content: space-between;
  padding: 8px 14px;
  background: #FDF9F4;
  border-bottom: 1px solid rgba(44,33,24,.08);
  flex-shrink: 0;
}
.mini-nav__logo  { font-size: 9px; font-weight: 800; letter-spacing: .08em; color: #2C2118; text-transform: uppercase; }
.mini-nav__links { display: flex; gap: 10px; }
.mini-nav__links span { font-size: 8px; font-weight: 500; color: #8B7360; }
.mini-nav__cta   { font-size: 8px; font-weight: 700; color: #FDF9F4; background: #2C2118; padding: 3px 8px; border-radius: 4px; letter-spacing: .04em; }

.mini-hero {
  display: grid; grid-template-columns: 1fr 1fr;
  padding: 16px 14px;
  background: linear-gradient(138deg, #FDF9F4 0%, #F5EDE0 100%);
  gap: 12px; flex-shrink: 0;
}
.mini-hero__text { display: flex; flex-direction: column; gap: 7px; justify-content: center; }
.mini-hero__tag  { font-size: 7px; font-weight: 600; letter-spacing: .12em; color: #A0784A; text-transform: uppercase; }
.mini-hero__heading { font-size: 15px; font-weight: 800; line-height: 1.14; color: #1C1610; letter-spacing: -.022em; }
.mini-hero__btn  { display: inline-block; font-size: 7.5px; font-weight: 700; color: #FDF9F4; background: #2C2118; border: none; border-radius: 4px; padding: 4px 10px; cursor: default; width: fit-content; letter-spacing: .04em; }

.mini-hero__img  { position: relative; height: 76px; }
.mini-img-shape  { position: absolute; border-radius: 50%; }
.mini-img-shape--1 { width: 62px; height: 62px; background: radial-gradient(circle at 38% 38%, #E8BF80 0%, #A0784A 100%); top: 4px; right: 4px; opacity: .9; box-shadow: 0 4px 12px rgba(160,120,74,.4); }
.mini-img-shape--2 { width: 38px; height: 38px; background: #E8C99A; bottom: 0; right: 26px; opacity: .65; }
.mini-img-shape--3 { width: 18px; height: 18px; background: #2C2118; top: 0; right: 50px; opacity: .12; border-radius: 5px; }
.mini-img-shape--4 { width: 14px; height: 14px; background: #D4A96A; bottom: 10px; right: 72px; opacity: .4; border-radius: 3px; }

.mini-services { display: grid; grid-template-columns: repeat(3,1fr); gap: 6px; padding: 10px 14px; flex-shrink: 0; }
.mini-service  { background: #F5EDE0; border-radius: 6px; padding: 8px 6px; display: flex; flex-direction: column; align-items: center; gap: 5px; }
.mini-service__icon { width: 20px; height: 20px; border-radius: 5px; opacity: .75; }
.mini-service__icon--a { background: linear-gradient(135deg, #E8C99A, #D4A96A); }
.mini-service__icon--b { background: linear-gradient(135deg, #C8A882, #A0784A); }
.mini-service__icon--c { background: linear-gradient(135deg, #D4A96A, #8B6035); }
.mini-service span { font-size: 7.5px; font-weight: 600; color: #5C4A38; text-align: center; }

.mini-review {
  padding: 8px 14px;
  background: #FDF9F4; border-top: 1px solid rgba(44,33,24,.07); flex-shrink: 0;
}
.mini-review__stars  { font-size: 9px; color: #D4A96A; letter-spacing: .05em; margin-bottom: 3px; }
.mini-review__text   { font-size: 8px; font-weight: 500; color: #5C4A38; font-style: italic; line-height: 1.4; }
.mini-review__author { font-size: 7.5px; font-weight: 600; color: #A0784A; display: block; margin-top: 3px; }

.mini-cta-strip {
  margin-top: auto;
  display: flex; align-items: center; justify-content: space-between;
  padding: 11px 14px; background: #2C2118; flex-shrink: 0;
}
.mini-cta-strip span  { font-size: 8.5px; font-weight: 600; color: rgba(245,240,234,.72); letter-spacing: .02em; }
.mini-cta-strip button { font-size: 8px; font-weight: 700; color: #2C2118; background: #D4A96A; border: none; border-radius: 4px; padding: 4px 10px; cursor: default; letter-spacing: .04em; }

/* ── Mini site — Kobido ── */

.mini-site--kobido {
  background: #F7F4EF;
  font-family: 'Manrope', Georgia, serif;
}

.mk-nav {
  display: flex; align-items: center; justify-content: space-between;
  padding: 9px 16px;
  background: #F7F4EF;
  border-bottom: 1px solid rgba(0,0,0,.06);
  flex-shrink: 0;
}
.mk-logo { display: flex; flex-direction: column; line-height: 1; }
.mk-logo__main { font-size: 11px; font-weight: 700; color: #2C2A28; letter-spacing: .02em; font-style: italic; }
.mk-logo__sub  { font-size: 7px; font-weight: 500; color: #7A746E; letter-spacing: .18em; margin-top: 1px; }
.mk-nav__links { display: flex; gap: 10px; }
.mk-nav__links span { font-size: 7.5px; font-weight: 500; color: #6B6560; }
.mk-nav__cta {
  font-size: 7.5px; font-weight: 600;
  background: #7A746E; color: #fff;
  border: none; border-radius: 99px; padding: 4px 10px;
  cursor: default; letter-spacing: .02em;
}

.mk-hero {
  display: grid; grid-template-columns: 1fr 1fr;
  padding: 20px 16px 16px;
  gap: 14px; flex: 1;
  background: #F7F4EF;
}
.mk-hero__copy { display: flex; flex-direction: column; gap: 9px; justify-content: center; }
.mk-hero__tag  {
  font-size: 6.5px; font-weight: 600; letter-spacing: .14em;
  color: #7A746E; text-transform: uppercase;
}
.mk-hero__h {
  font-size: 14.5px; font-weight: 400; line-height: 1.2;
  color: #2C2A28; letter-spacing: -.01em; margin: 0;
}
.mk-hero__h em { font-style: italic; color: #5C5650; }
.mk-hero__btns { display: flex; gap: 6px; flex-wrap: wrap; }
.mk-btn {
  font-size: 7px; font-weight: 600; letter-spacing: .03em;
  border: none; border-radius: 99px; padding: 4px 11px;
  cursor: default;
}
.mk-btn--dark    { background: #7A746E; color: #fff; }
.mk-btn--outline { background: transparent; color: #2C2A28; border: 1px solid rgba(44,42,40,.25); }

.mk-hero__photo { position: relative; display: flex; align-items: center; justify-content: center; }
.mk-photo-frame {
  position: relative; width: 100%; height: 100%;
  border-radius: 16px; overflow: hidden;
  background: linear-gradient(145deg, #E8DDD0 0%, #C9B8A8 50%, #B8A090 100%);
  box-shadow: 0 6px 20px rgba(0,0,0,.12);
}
.mk-photo-img {
  width: 100%; height: 100%;
  background:
    radial-gradient(ellipse at 60% 40%, rgba(200,170,145,.6) 0%, transparent 60%),
    radial-gradient(ellipse at 30% 70%, rgba(180,150,130,.5) 0%, transparent 50%),
    linear-gradient(160deg, #D4C0B0 0%, #BBA898 40%, #A89080 100%);
}
.mk-price-tag {
  position: absolute; bottom: 8px; right: -4px;
  background: #fff; border-radius: 8px;
  padding: 5px 9px;
  font-size: 11px; font-weight: 700; color: #2C2A28;
  box-shadow: 0 3px 10px rgba(0,0,0,.14);
  letter-spacing: -.01em;
  white-space: nowrap;
}
.mk-price-tag span { font-size: 7.5px; font-weight: 500; color: #7A746E; }

/* ── Hero bottom fade ── */

.hero-fade {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 160px;
  background: linear-gradient(
    to bottom,
    transparent 0%,
    rgba(245,240,234,.55) 45%,
    rgba(245,240,234,.85) 72%,
    var(--bg-page) 100%
  );
  pointer-events: none;
  z-index: 2;
}

/* ── Keyframes ── */

@keyframes fadeUp {
  to { opacity: 1; transform: translateY(0); }
}
@keyframes slideInRight {
  to { opacity: 1; transform: translateX(0) scale(1); }
}
@keyframes browserFloat {
  0%,100% { transform: perspective(1200px) rotateY(-6deg) rotateX(2.5deg) translateY(0); }
  50%      { transform: perspective(1200px) rotateY(-6deg) rotateX(2.5deg) translateY(-7px); }
}
@keyframes browserFloatTablet {
  0%,100% { transform: perspective(1000px) rotateY(-3deg) rotateX(1.5deg) translateY(0); }
  50%      { transform: perspective(1000px) rotateY(-3deg) rotateX(1.5deg) translateY(-6px); }
}

/* ═══════════════════════════════════════
   RESPONSIVE — HERO
═══════════════════════════════════════ */

@media (max-width: 1000px) {
  .hero-inner {
    grid-template-columns: 1fr;
    gap: 52px;
    text-align: center;
  }
  .hero-copy  { align-items: center; }
  .hero-desc  { max-width: 520px; }
  .hero-stats { justify-content: center; margin: 0 auto; }
  .hero-visual {
    width: 100%; max-width: 540px;
    margin: 0 auto; padding: 32px 20px;
  }
  .browser {
    transform: perspective(1000px) rotateY(-3deg) rotateX(1.5deg);
    animation: browserFloatTablet 7s ease-in-out infinite;
    max-width: 100%;
  }
  .browser:hover {
    animation-play-state: paused;
    transform: perspective(1000px) rotateY(0) rotateX(0) translateY(-5px);
  }
  .float-card--tl { left: 0; }
  .float-card--bl { left: 0; }
  .float-card--tr { right: 4px; }
  .float-card--br { right: 4px; }
}

@media (max-width: 768px) {
  .nav-links, .nav-cta-wrap { display: none; }
  .hamburger { display: flex; }
  .mobile-menu { display: flex; }
  .navbar { padding: 0 18px; }

  .hero { padding-top: calc(var(--nav-height) + 22px); padding-bottom: 60px; min-height: auto; }
  .hero-inner { padding: 0 20px; gap: 40px; }
  .hero-heading { font-size: clamp(26px, 6.5vw, 38px); }
  .hero-desc { font-size: 14.5px; }

  .float-card--tl, .float-card--bl { display: none; }
  .float-card--tr { top: -8px; right: 4px; }
  .float-card--br { bottom: -8px; right: 4px; }

  .browser__screen { height: 320px; }
  .hero-visual { padding: 20px 12px; }
  .visual-ring { display: none; }
}

@media (max-width: 520px) {
  .hero-inner { padding: 0 16px; gap: 32px; }
  .hero-actions { flex-direction: column; align-items: stretch; }
  .btn { justify-content: center; }
  .hero-stats { flex-wrap: wrap; padding: 11px 14px; }
  .stat { padding: 4px 12px; }
  .stat:first-child { padding-left: 4px; }
  .stat-sep:last-of-type { display: none; }
  .float-card { display: none; }
  .browser__screen { height: 280px; }
  .mini-hero__heading { font-size: 12px; }
}

@media (max-width: 400px) {
  .nav-wrapper { padding: 10px 12px 0; }
  .hero-inner { padding: 0 14px; }
  .hero-heading { font-size: 26px; }
}

/* ═══════════════════════════════════════
   DLA KOGO
═══════════════════════════════════════ */

.for-whom {
  position: relative;
  background: var(--bg-page);
  padding: 104px 0 112px;
  overflow: hidden;
  scroll-margin-top: calc(var(--nav-height) + 24px);
}

.fw-bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 0;
}

.fw-bg__blob { position: absolute; border-radius: 50%; }
.fw-bg__blob--1 {
  width: 680px; height: 580px;
  background: radial-gradient(ellipse at 45% 40%, rgba(212,169,106,.15) 0%, transparent 65%);
  top: -120px; right: -100px;
  filter: blur(72px);
  animation: blob1 24s ease-in-out infinite alternate;
}
.fw-bg__blob--2 {
  width: 500px; height: 400px;
  background: radial-gradient(ellipse, rgba(160,120,74,.10) 0%, transparent 68%);
  bottom: -60px; left: -80px;
  filter: blur(64px);
  animation: blob2 28s ease-in-out infinite alternate;
}
.fw-bg__blob--3 {
  width: 360px; height: 280px;
  background: radial-gradient(ellipse, rgba(200,178,148,.10) 0%, transparent 70%);
  top: 40%; left: 50%;
  transform: translate(-50%, -50%);
  filter: blur(56px);
}

.fw-bg__grid {
  position: absolute;
  inset: 0;
  background-image: radial-gradient(rgba(44,33,24,.10) 1px, transparent 1px);
  background-size: 28px 28px;
  mask-image: linear-gradient(to left, rgba(0,0,0,.35) 0%, transparent 60%);
}

.fw-bg__arc { position: absolute; border-radius: 50%; border: 1px solid rgba(160,120,74,.10); }
.fw-bg__arc--1 { width: 420px; height: 420px; top: -120px; right: -80px; }
.fw-bg__arc--2 { width: 260px; height: 260px; top: -44px; right: 4px; border-style: dashed; border-color: rgba(160,120,74,.07); }

.fw-bg__line { position: absolute; background: rgba(44,33,24,.055); border-radius: 99px; }
.fw-bg__line--1 { width: 1px; height: 38%; bottom: 10%; right: 28%; transform: rotate(15deg); }
.fw-bg__line--2 { width: 220px; height: 1px; bottom: 30%; right: 5%; transform: rotate(-4deg); }

.fw-bg__dot { position: absolute; border-radius: 50%; background: rgba(160,120,74,.28); }
.fw-bg__dot--1 { width: 5px; height: 5px; top: 18%; right: 22%; }
.fw-bg__dot--2 { width: 4px; height: 4px; bottom: 26%; left: 18%; }
.fw-bg__dot--3 { width: 7px; height: 7px; top: 55%; right: 8%; }

.for-whom__inner {
  position: relative;
  z-index: 1;
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 40px;
  display: flex;
  flex-direction: column;
  gap: 60px;
}

.fw-header {
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: end;
  gap: 48px;
}

.fw-header__left {
  display: flex;
  flex-direction: column;
  gap: 20px;
  max-width: 620px;
}

.fw-header__note {
  flex-shrink: 0;
  width: 220px;
  padding: 20px 22px;
  background: rgba(252,248,244,.80);
  border: 1px solid rgba(44,33,24,.09);
  border-left: 3px solid var(--accent);
  border-radius: 12px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  box-shadow: 0 2px 12px rgba(44,33,24,.06);
  align-self: flex-end;
  margin-bottom: 4px;
}

.fw-note__mark {
  font-family: Georgia, serif;
  font-size: 32px;
  line-height: .8;
  color: var(--accent);
  opacity: .5;
  display: block;
}

.fw-note__text {
  font-size: 13px;
  font-weight: 500;
  line-height: 1.65;
  color: var(--text-primary);
  font-style: italic;
}

.fw-note__source {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .1em;
  color: var(--accent);
  text-transform: uppercase;
}

.section-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 10.5px;
  font-weight: 700;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--accent);
}

.section-heading {
  font-family: var(--font);
  font-size: clamp(26px, 2.9vw, 40px);
  font-weight: 800;
  line-height: 1.2;
  letter-spacing: -.022em;
  color: var(--text-primary);
}

.section-desc {
  font-size: 15.5px;
  font-weight: 400;
  line-height: 1.72;
  color: var(--text-muted);
  max-width: 500px;
}

/* ── Cards ── */

.fw-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
  align-items: start;
}

.fw-card--mid { margin-top: 28px; }

.fw-card {
  position: relative;
  background: rgba(253,250,247,.88);
  border: 1px solid rgba(44,33,24,.08);
  border-radius: 22px;
  padding: 30px 28px 32px;
  display: flex;
  flex-direction: column;
  gap: 0;
  overflow: hidden;
  cursor: default;
  box-shadow:
    0 1px 0 rgba(255,255,255,.9) inset,
    0 3px 14px rgba(44,33,24,.07),
    0 1px 3px rgba(44,33,24,.04);
  transition:
    transform .32s cubic-bezier(.22,1,.36,1),
    box-shadow .32s ease,
    border-color .32s ease;
}

.fw-card:hover {
  transform: translateY(-6px);
  border-color: rgba(160,120,74,.25);
  box-shadow:
    0 1px 0 rgba(255,255,255,.9) inset,
    0 16px 44px rgba(44,33,24,.12),
    0 4px 12px rgba(44,33,24,.07);
}

.fw-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 2.5px;
  background: linear-gradient(90deg, var(--accent) 0%, var(--accent-light) 100%);
  border-radius: 22px 22px 0 0;
  opacity: 0;
  transform: scaleX(0);
  transform-origin: left center;
  transition: opacity .3s ease, transform .4s cubic-bezier(.22,1,.36,1);
}
.fw-card:hover::before { opacity: 1; transform: scaleX(1); }

.fw-card__glow {
  position: absolute;
  bottom: -60px; right: -60px;
  width: 200px; height: 200px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(212,169,106,.18) 0%, transparent 70%);
  filter: blur(24px);
  opacity: 0;
  pointer-events: none;
  transition: opacity .4s ease;
}
.fw-card:hover .fw-card__glow { opacity: 1; }

.fw-card__top {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  margin-bottom: 20px;
}

.fw-card__icon-wrap {
  position: relative;
  width: 52px; height: 52px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.fw-card__icon-bg {
  position: absolute;
  inset: 0;
  border-radius: 14px;
  background: rgba(160,120,74,.10);
  border: 1px solid rgba(160,120,74,.14);
  transition: background .25s ease, border-color .25s ease;
}
.fw-card:hover .fw-card__icon-bg {
  background: rgba(160,120,74,.16);
  border-color: rgba(160,120,74,.24);
}

.fw-card__icon-wrap svg { position: relative; z-index: 1; }

.fw-card__num {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .14em;
  color: rgba(160,120,74,.45);
  line-height: 1;
  padding-top: 4px;
}

.fw-card__title {
  font-size: 17px;
  font-weight: 700;
  line-height: 1.28;
  letter-spacing: -.016em;
  color: var(--text-primary);
  margin-bottom: 12px;
}

.fw-card__desc {
  font-size: 14px;
  font-weight: 400;
  line-height: 1.72;
  color: var(--text-muted);
  flex: 1;
  margin-bottom: 20px;
}

.fw-card__footer { margin-top: auto; }

.fw-card__tag {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 4px 11px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .06em;
  text-transform: uppercase;
  color: var(--accent);
  background: rgba(160,120,74,.09);
  border-radius: 99px;
}

/* ── Branch tags ── */

.fw-tags {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 10px;
  padding: 20px 24px;
  background: rgba(44,33,24,.025);
  border: 1px solid rgba(44,33,24,.08);
  border-radius: 16px;
}

.fw-tags__label {
  font-size: 10.5px;
  font-weight: 700;
  color: var(--text-muted);
  letter-spacing: .14em;
  text-transform: uppercase;
  margin-right: 6px;
  flex-shrink: 0;
}

.fw-tag {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  padding: 7px 16px;
  font-size: 12.5px;
  font-weight: 600;
  color: var(--text-muted);
  background: rgba(245,240,234,.7);
  border: 1px solid rgba(44,33,24,.09);
  border-radius: 99px;
  letter-spacing: .01em;
  cursor: default;
  transition: color .22s ease, background .22s ease, border-color .22s ease, transform .22s ease, box-shadow .22s ease;
}
.fw-tag:hover {
  color: var(--accent);
  background: rgba(252,248,244,.95);
  border-color: rgba(160,120,74,.24);
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(44,33,24,.08);
}

/* ── Reveal animations ── */

.reveal {
  opacity: 0;
  transform: translateY(26px);
  transition: opacity .72s ease, transform .72s cubic-bezier(.22,1,.36,1);
}
.reveal.visible       { opacity: 1; transform: translateY(0); }
.reveal--delay-1      { transition-delay: .10s; }
.reveal--delay-2      { transition-delay: .22s; }
.reveal--delay-3      { transition-delay: .34s; }
.reveal--delay-4      { transition-delay: .46s; }

/* ── Responsive ── */

@media (max-width: 960px) {
  .fw-header { grid-template-columns: 1fr; gap: 28px; }
  .fw-header__note { width: 100%; max-width: 420px; }
}

@media (max-width: 880px) {
  .fw-cards { grid-template-columns: repeat(2, 1fr); }
  .fw-card--mid { margin-top: 0; }
  .fw-card:last-child { grid-column: 1 / -1; max-width: 480px; justify-self: center; width: 100%; }
}

@media (max-width: 640px) {
  .for-whom { padding: 72px 0 80px; }
  .for-whom__inner { padding: 0 20px; gap: 44px; }
  .fw-cards { grid-template-columns: 1fr; }
  .fw-card:last-child { grid-column: auto; max-width: none; justify-self: auto; }
  .section-heading { font-size: clamp(22px, 6vw, 30px); }
  .fw-tags { padding: 16px 18px; gap: 8px; }
}

@media (max-width: 400px) {
  .for-whom__inner { padding: 0 16px; }
}

/* ═══════════════════════════════════════
   CO DOSTAJESZ / OFERTA
═══════════════════════════════════════ */

.offer {
  position: relative;
  background: #EFE8DF;
  padding: 120px 0 124px;
  overflow: hidden;
  scroll-margin-top: calc(var(--nav-height) + 24px);
}

.offer-bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 0;
}

.offer-bg__blob { position: absolute; border-radius: 50%; }
.offer-bg__blob--1 {
  width: 620px; height: 520px;
  background: radial-gradient(ellipse at 40% 40%, rgba(212,169,106,.16) 0%, transparent 65%);
  top: -100px; left: -80px;
  filter: blur(80px);
}
.offer-bg__blob--2 {
  width: 500px; height: 420px;
  background: radial-gradient(ellipse, rgba(160,120,74,.12) 0%, transparent 68%);
  bottom: -60px; right: -60px;
  filter: blur(72px);
}

.offer-bg__noise {
  position: absolute;
  inset: 0;
  opacity: .035;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
  background-size: 160px 160px;
}

.offer-bg__line { position: absolute; background: rgba(44,33,24,.06); border-radius: 99px; }
.offer-bg__line--1 { width: 1px; height: 45%; top: 8%; right: 22%; transform: rotate(8deg); }
.offer-bg__line--2 { width: 260px; height: 1px; bottom: 22%; left: 8%; transform: rotate(-5deg); }

.offer-bg__dot { position: absolute; border-radius: 50%; background: rgba(160,120,74,.25); }
.offer-bg__dot--1 { width: 5px; height: 5px; top: 24%; right: 18%; }
.offer-bg__dot--2 { width: 4px; height: 4px; bottom: 30%; left: 24%; }

.offer__inner {
  position: relative;
  z-index: 1;
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 40px;
  display: flex;
  flex-direction: column;
  gap: 64px;
}

.offer__header {
  max-width: 640px;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

/* ── Cards grid ── */

.offer-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.offer-card {
  position: relative;
  background: rgba(252,247,242,.90);
  border: 1px solid rgba(44,33,24,.08);
  border-radius: 22px;
  padding: 30px 28px 32px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  overflow: hidden;
  cursor: default;
  box-shadow:
    0 1px 0 rgba(255,255,255,.92) inset,
    0 4px 16px rgba(44,33,24,.08),
    0 1px 4px rgba(44,33,24,.05);
  transition:
    transform .32s cubic-bezier(.22,1,.36,1),
    box-shadow .32s ease,
    border-color .32s ease;
}

.offer-card:hover {
  transform: translateY(-6px);
  border-color: rgba(160,120,74,.28);
  box-shadow:
    0 1px 0 rgba(255,255,255,.92) inset,
    0 18px 48px rgba(44,33,24,.13),
    0 5px 14px rgba(44,33,24,.08);
}

.offer-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 2.5px;
  background: linear-gradient(90deg, var(--accent), var(--accent-light));
  border-radius: 20px 20px 0 0;
  opacity: 0;
  transform: scaleX(0);
  transform-origin: left;
  transition: opacity .28s ease, transform .38s cubic-bezier(.22,1,.36,1);
}
.offer-card:hover::before { opacity: 1; transform: scaleX(1); }

.offer-card::after {
  content: '';
  position: absolute;
  bottom: -50px; right: -50px;
  width: 160px; height: 160px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(212,169,106,.16) 0%, transparent 70%);
  filter: blur(20px);
  opacity: 0;
  pointer-events: none;
  transition: opacity .38s ease;
}
.offer-card:hover::after { opacity: 1; }

.offer-card__icon {
  width: 50px; height: 50px;
  display: flex; align-items: center; justify-content: center;
  background: rgba(160,120,74,.10);
  border: 1px solid rgba(160,120,74,.16);
  border-radius: 14px;
  flex-shrink: 0;
  box-shadow: 0 2px 8px rgba(160,120,74,.10);
  transition: background .25s ease, border-color .25s ease, box-shadow .25s ease;
}
.offer-card:hover .offer-card__icon {
  background: rgba(160,120,74,.16);
  border-color: rgba(160,120,74,.28);
  box-shadow: 0 4px 12px rgba(160,120,74,.16);
}

.offer-card__title {
  font-size: 16px;
  font-weight: 700;
  line-height: 1.3;
  letter-spacing: -.014em;
  color: var(--text-primary);
}

.offer-card__desc {
  font-size: 13.5px;
  font-weight: 400;
  line-height: 1.68;
  color: var(--text-muted);
  flex: 1;
}

.offer-card__check {
  position: absolute;
  bottom: 20px; right: 22px;
  width: 22px; height: 22px;
  border-radius: 99px;
  background: rgba(160,120,74,.10);
  border: 1px solid rgba(160,120,74,.18);
  display: flex; align-items: center; justify-content: center;
  font-size: 11px;
  font-weight: 800;
  color: rgba(160,120,74,.5);
  line-height: 1;
  transition: background .25s ease, color .25s ease, border-color .25s ease;
}
.offer-card:hover .offer-card__check {
  background: rgba(160,120,74,.16);
  border-color: rgba(160,120,74,.30);
  color: var(--accent);
}

/* ── Price box ── */

.offer-pricebox {
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  gap: 52px;
  background: var(--accent-dark);
  border-radius: 24px;
  padding: 48px 52px;
  position: relative;
  overflow: hidden;
  box-shadow:
    0 20px 56px rgba(44,33,24,.22),
    0 6px 18px rgba(44,33,24,.14);
}

.offer-pricebox::before {
  content: '';
  position: absolute;
  width: 480px; height: 480px;
  border-radius: 50%;
  border: 1px solid rgba(212,169,106,.10);
  top: -180px; right: -100px;
  pointer-events: none;
}
.offer-pricebox::after {
  content: '';
  position: absolute;
  width: 300px; height: 300px;
  border-radius: 50%;
  border: 1px solid rgba(212,169,106,.07);
  top: -100px; right: -20px;
  pointer-events: none;
}

.offer-pricebox__left {
  display: flex;
  flex-direction: column;
  gap: 14px;
  position: relative;
  z-index: 1;
}

.offer-pricebox__label {
  font-size: 10.5px;
  font-weight: 700;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--accent-light);
  opacity: .8;
}

.offer-pricebox__price {
  font-size: clamp(44px, 6vw, 64px);
  font-weight: 800;
  line-height: 1;
  letter-spacing: -.03em;
  color: var(--cta-text);
}
.offer-pricebox__price span {
  font-size: .45em;
  font-weight: 600;
  letter-spacing: .04em;
  opacity: .7;
  vertical-align: super;
}

.offer-pricebox__note {
  font-size: 14px;
  font-weight: 400;
  line-height: 1.7;
  color: rgba(245,240,234,.62);
  max-width: 380px;
}

.offer-pricebox__right {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 24px;
  position: relative;
  z-index: 1;
}

.offer-pricebox__list {
  list-style: none;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px 28px;
}
.offer-pricebox__list li {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13.5px;
  font-weight: 500;
  color: rgba(245,240,234,.75);
}
.offer-pricebox__list li span {
  font-size: 12px;
  font-weight: 800;
  color: var(--accent-light);
  flex-shrink: 0;
}

.offer-pricebox .btn--primary {
  background: var(--accent-light);
  color: var(--accent-dark);
  font-size: 14.5px;
  padding: 14px 28px;
  box-shadow: 0 4px 20px rgba(212,169,106,.38), 0 1px 4px rgba(0,0,0,.18);
}
.offer-pricebox .btn--primary:hover {
  background: #E8C070;
  transform: translateY(-2px);
  box-shadow: 0 10px 32px rgba(212,169,106,.48), 0 3px 8px rgba(0,0,0,.20);
}

/* ── Care box ── */

.care-box {
  background: rgba(253,249,245,.92);
  border: 1px solid rgba(44,33,24,.10);
  border-top: 2.5px solid var(--accent);
  border-radius: 22px;
  padding: 40px 44px;
  display: grid;
  grid-template-columns: 260px 1fr;
  gap: 48px;
  align-items: start;
  box-shadow: 0 4px 20px rgba(44,33,24,.07), 0 1px 4px rgba(44,33,24,.04);
}

.care-box__left { display: flex; flex-direction: column; gap: 0; }

.care-box__badge {
  display: inline-flex;
  align-items: center;
  padding: 4px 12px;
  font-size: 10.5px;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--accent);
  background: rgba(160,120,74,.10);
  border-radius: 99px;
  width: fit-content;
  margin-bottom: 14px;
}

.care-box__title {
  font-size: 20px;
  font-weight: 700;
  color: var(--text-primary);
  letter-spacing: -.015em;
  line-height: 1.25;
  margin-bottom: 10px;
}

.care-box__price {
  font-size: 34px;
  font-weight: 800;
  color: var(--text-primary);
  letter-spacing: -.025em;
  line-height: 1;
  margin-bottom: 16px;
}
.care-box__price span {
  font-size: .46em;
  font-weight: 500;
  color: var(--text-muted);
  letter-spacing: 0;
}

.care-box__desc {
  font-size: 13.5px;
  line-height: 1.72;
  color: var(--text-muted);
  margin-bottom: 24px;
}

.care-box__cta {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 11px 22px;
  font-family: var(--font);
  font-size: 13.5px;
  font-weight: 600;
  color: var(--cta-text);
  background: var(--cta-bg);
  border-radius: 9px;
  text-decoration: none;
  width: fit-content;
  box-shadow: 0 2px 8px rgba(44,33,24,.16);
  transition: background .2s, transform .2s, box-shadow .2s;
}
.care-box__cta:hover {
  background: var(--cta-hover);
  transform: translateY(-1px);
  box-shadow: 0 6px 16px rgba(44,33,24,.20);
}

.care-box__right {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px 32px;
  padding-top: 4px;
}

.care-box__col-label {
  display: block;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 12px;
}

.care-box__list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 7px;
}
.care-box__list li {
  display: flex;
  align-items: baseline;
  gap: 8px;
  font-size: 13px;
  line-height: 1.5;
  color: var(--text-muted);
}
.care-box__list li::before {
  content: '✓';
  color: var(--accent);
  font-weight: 700;
  font-size: 11px;
  flex-shrink: 0;
}
.care-box__list--muted li { color: rgba(107,94,82,.6); }
.care-box__list--muted li::before {
  content: '–';
  color: rgba(107,94,82,.4);
}

@media (max-width: 860px) {
  .care-box { grid-template-columns: 1fr; gap: 32px; padding: 32px 32px; }
}
@media (max-width: 640px) {
  .care-box { padding: 26px 22px; border-radius: 18px; }
  .care-box__right { grid-template-columns: 1fr; gap: 24px; }
  .care-box__cta { width: 100%; justify-content: center; }
}

/* ── Responsive ── */

@media (max-width: 920px) {
  .offer-grid { grid-template-columns: repeat(2, 1fr); }
  .offer-pricebox {
    grid-template-columns: 1fr;
    gap: 36px;
    padding: 40px 40px;
  }
  .offer-pricebox__right { width: 100%; }
  .offer-pricebox__list { grid-template-columns: repeat(3, auto); }
}

@media (max-width: 640px) {
  .offer { padding: 80px 0 88px; }
  .offer__inner { padding: 0 20px; gap: 48px; }
  .offer-grid { grid-template-columns: 1fr; }
  .offer-pricebox { padding: 30px 26px; gap: 28px; border-radius: 20px; }
  .offer-pricebox__list { grid-template-columns: 1fr 1fr; }
  .offer-pricebox__price { font-size: clamp(40px, 10vw, 56px); }
  .offer-pricebox .btn--primary { width: 100%; justify-content: center; }
}

@media (max-width: 400px) {
  .offer__inner { padding: 0 16px; }
  .offer-pricebox { padding: 26px 20px; }
}

/* ═══════════════════════════════════════
   PROCES
═══════════════════════════════════════ */

.process {
  position: relative;
  background: var(--bg-page);
  padding: 112px 0 104px;
  overflow: hidden;
  scroll-margin-top: calc(var(--nav-height) + 24px);
}

.process-bg { position: absolute; inset: 0; pointer-events: none; z-index: 0; }
.process-bg__blob { position: absolute; border-radius: 50%; }
.process-bg__blob--1 {
  width: 560px; height: 480px;
  background: radial-gradient(ellipse at 45% 40%, rgba(212,169,106,.14) 0%, transparent 65%);
  top: -80px; right: -60px;
  filter: blur(80px);
}
.process-bg__blob--2 {
  width: 420px; height: 340px;
  background: radial-gradient(ellipse, rgba(160,120,74,.09) 0%, transparent 68%);
  bottom: -40px; left: -40px;
  filter: blur(70px);
}
.process-bg__arc {
  position: absolute;
  width: 520px; height: 520px;
  border-radius: 50%;
  border: 1px solid rgba(160,120,74,.07);
  top: -160px; right: -80px;
}
.process-bg__line {
  position: absolute;
  width: 240px; height: 1px;
  background: rgba(44,33,24,.055);
  border-radius: 99px;
  bottom: 28%; left: 6%;
  transform: rotate(-4deg);
}
.process-bg__dot { position: absolute; border-radius: 50%; background: rgba(160,120,74,.26); }
.process-bg__dot--1 { width: 5px; height: 5px; top: 22%; right: 16%; }
.process-bg__dot--2 { width: 4px; height: 4px; bottom: 32%; left: 20%; }

.process__inner {
  position: relative;
  z-index: 1;
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 40px;
  display: flex;
  flex-direction: column;
  gap: 64px;
}

.process__header {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 32px;
  flex-wrap: wrap;
}
.process__header-left {
  display: flex;
  flex-direction: column;
  gap: 18px;
  max-width: 560px;
}

.process__badge {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 14px 20px;
  background: rgba(44,33,24,.04);
  border: 1px solid rgba(44,33,24,.09);
  border-radius: 14px;
  flex-shrink: 0;
  box-shadow: 0 2px 10px rgba(44,33,24,.05);
}
.process__badge svg { flex-shrink: 0; }
.process__badge > div { display: flex; flex-direction: column; gap: 2px; }
.process__badge-value { font-size: 17px; font-weight: 800; color: var(--text-primary); letter-spacing: -.01em; line-height: 1; }
.process__badge-label { font-size: 11px; font-weight: 500; color: var(--text-muted); white-space: nowrap; }

.process__track {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  position: relative;
}

.process__line {
  position: absolute;
  top: 23px;
  left: calc(12.5% + 2px);
  right: calc(12.5% + 2px);
  height: 2px;
  background: rgba(44,33,24,.08);
  border-radius: 2px;
  overflow: hidden;
  z-index: 0;
}
.process__line-fill {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, var(--accent-light) 0%, var(--accent) 60%, var(--accent-dark) 100%);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 1.4s cubic-bezier(.22,1,.36,1) .3s;
  border-radius: 2px;
}
.process__track.line-visible .process__line-fill { transform: scaleX(1); }

.process__step {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0;
  padding: 0 12px;
  position: relative;
  z-index: 1;
}

.process__step-head {
  display: flex;
  justify-content: center;
  margin-bottom: 24px;
}

.process__node {
  width: 48px; height: 48px;
  border-radius: 50%;
  background: #FAF6F1;
  border: 1.5px solid rgba(160,120,74,.22);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow:
    0 0 0 5px rgba(245,240,234,.9),
    0 0 0 6px rgba(160,120,74,.10),
    0 4px 14px rgba(44,33,24,.10);
  transition: border-color .25s ease, box-shadow .25s ease, background .25s ease;
}
.process__step:hover .process__node {
  border-color: rgba(160,120,74,.45);
  box-shadow:
    0 0 0 5px rgba(245,240,234,.9),
    0 0 0 6px rgba(160,120,74,.15),
    0 6px 18px rgba(44,33,24,.13);
}
.process__node--last {
  background: var(--accent-dark);
  border-color: var(--accent-dark);
  box-shadow:
    0 0 0 5px rgba(245,240,234,.9),
    0 0 0 6px rgba(44,33,24,.12),
    0 6px 20px rgba(44,33,24,.22);
}

.process__node-num {
  font-size: 11px;
  font-weight: 800;
  letter-spacing: .06em;
  color: var(--accent);
  line-height: 1;
}

.process__step-body {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 12px;
  padding: 26px 18px 30px;
  background: rgba(253,249,245,.88);
  border: 1px solid rgba(44,33,24,.08);
  border-radius: 20px;
  width: 100%;
  box-shadow:
    0 1px 0 rgba(255,255,255,.92) inset,
    0 4px 16px rgba(44,33,24,.08),
    0 1px 4px rgba(44,33,24,.05);
  transition:
    transform .32s cubic-bezier(.22,1,.36,1),
    box-shadow .32s ease,
    border-color .32s ease;
  position: relative;
  overflow: hidden;
}

.process__step-body::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--accent), var(--accent-light));
  border-radius: 20px 20px 0 0;
  opacity: 0;
  transform: scaleX(0);
  transform-origin: left;
  transition: opacity .28s ease, transform .38s cubic-bezier(.22,1,.36,1);
}
.process__step:hover .process__step-body::before { opacity: 1; transform: scaleX(1); }

.process__step:hover .process__step-body {
  transform: translateY(-6px);
  border-color: rgba(160,120,74,.24);
  box-shadow:
    0 1px 0 rgba(255,255,255,.92) inset,
    0 18px 44px rgba(44,33,24,.12),
    0 5px 12px rgba(44,33,24,.08);
}

.process__step-icon {
  width: 46px; height: 46px;
  border-radius: 13px;
  background: rgba(160,120,74,.10);
  border: 1px solid rgba(160,120,74,.16);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  box-shadow: 0 2px 8px rgba(160,120,74,.10);
  transition: background .25s ease, border-color .25s ease, box-shadow .25s ease;
}
.process__step:hover .process__step-icon {
  background: rgba(160,120,74,.17);
  border-color: rgba(160,120,74,.28);
  box-shadow: 0 3px 10px rgba(160,120,74,.16);
}

.process__step-title {
  font-size: 15.5px;
  font-weight: 700;
  line-height: 1.3;
  letter-spacing: -.013em;
  color: var(--text-primary);
}

.process__step-desc {
  font-size: 13px;
  font-weight: 400;
  line-height: 1.68;
  color: var(--text-muted);
}

.process__step:nth-child(even) .process__step-body { margin-top: 20px; }

.process__summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  padding: 28px 36px;
  background: rgba(44,33,24,.04);
  border: 1px solid rgba(44,33,24,.10);
  border-left: 3px solid var(--accent);
  border-radius: 16px;
  box-shadow: 0 2px 12px rgba(44,33,24,.05);
}

.process__summary-left { display: flex; flex-direction: column; gap: 8px; }

.process__summary-title {
  font-size: 16px;
  font-weight: 700;
  color: var(--text-primary);
  letter-spacing: -.012em;
  line-height: 1.4;
}

.process__summary-desc {
  font-size: 13.5px;
  font-weight: 400;
  color: var(--text-muted);
  line-height: 1.6;
}

.process__summary-cta { flex-shrink: 0; white-space: nowrap; }

/* ── Responsive ── */

@media (max-width: 860px) {
  .process__track { grid-template-columns: repeat(2, 1fr); gap: 32px 24px; }
  .process__line { display: none; }
  .process__step { padding: 0; }
  .process__step:nth-child(even) .process__step-body { margin-top: 0; }
}

@media (max-width: 640px) {
  .process { padding: 80px 0 88px; }
  .process__inner { padding: 0 20px; gap: 44px; }
  .process__header { flex-direction: column; align-items: flex-start; gap: 20px; }
  .process__badge { align-self: flex-start; }
  .process__track { grid-template-columns: 1fr; gap: 0; }
  .process__step:nth-child(even) .process__step-body { margin-top: 0; }
  .process__step {
    flex-direction: row;
    align-items: flex-start;
    gap: 20px;
    padding: 0 0 28px;
    position: relative;
  }
  .process__step:last-child { padding-bottom: 0; }
  .process__step:not(:last-child)::after {
    content: '';
    position: absolute;
    left: 23px;
    top: 50px;
    bottom: 0;
    width: 1px;
    background: linear-gradient(to bottom, rgba(160,120,74,.3), rgba(44,33,24,.08));
  }
  .process__step-head { margin-bottom: 0; flex-shrink: 0; }
  .process__step-body { align-items: flex-start; text-align: left; flex: 1; }
  .process__step-body::before { border-radius: 20px 20px 0 0; }
  .process__summary { flex-direction: column; align-items: flex-start; gap: 20px; padding: 22px 22px; }
  .process__summary-cta { width: 100%; justify-content: center; }
}

@media (max-width: 400px) {
  .process__inner { padding: 0 16px; }
  .process__summary { padding: 20px 18px; }
}

/* ═══════════════════════════════════════
   FAQ
═══════════════════════════════════════ */

.faq {
  position: relative;
  background: #EFE8DF;
  padding: 112px 0 120px;
  overflow: hidden;
  scroll-margin-top: calc(var(--nav-height) + 24px);
}

.faq-bg { position: absolute; inset: 0; pointer-events: none; z-index: 0; }
.faq-bg__blob { position: absolute; border-radius: 50%; }
.faq-bg__blob--1 {
  width: 580px; height: 460px;
  background: radial-gradient(ellipse at 40% 40%, rgba(212,169,106,.14) 0%, transparent 65%);
  top: -80px; right: -60px;
  filter: blur(80px);
}
.faq-bg__blob--2 {
  width: 400px; height: 340px;
  background: radial-gradient(ellipse, rgba(160,120,74,.09) 0%, transparent 68%);
  bottom: -40px; left: -40px;
  filter: blur(70px);
}
.faq-bg__noise {
  position: absolute;
  inset: 0;
  opacity: .032;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
  background-size: 160px 160px;
}
.faq-bg__line { position: absolute; background: rgba(44,33,24,.055); border-radius: 99px; }
.faq-bg__line--1 { width: 1px; height: 44%; top: 10%; right: 24%; transform: rotate(8deg); }
.faq-bg__line--2 { width: 220px; height: 1px; bottom: 22%; left: 8%; transform: rotate(-4deg); }
.faq-bg__dot { position: absolute; border-radius: 50%; background: rgba(160,120,74,.26); }
.faq-bg__dot--1 { width: 5px; height: 5px; top: 20%; right: 16%; }
.faq-bg__dot--2 { width: 4px; height: 4px; bottom: 28%; left: 22%; }

.faq__inner {
  position: relative;
  z-index: 1;
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 40px;
  display: grid;
  grid-template-columns: 340px 1fr;
  gap: 72px;
  align-items: start;
}

.faq__header {
  display: flex;
  flex-direction: column;
  gap: 20px;
  position: sticky;
  top: calc(var(--nav-height) + 32px);
}

.faq__header-cta { margin-top: 8px; align-self: flex-start; }

.faq__list { display: flex; flex-direction: column; gap: 10px; }

.faq-item {
  background: rgba(252,248,244,.82);
  border: 1px solid rgba(44,33,24,.09);
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 2px 10px rgba(44,33,24,.06), 0 1px 3px rgba(44,33,24,.03);
  transition: border-color .25s ease, box-shadow .25s ease;
}

.faq-item.is-open {
  border-color: rgba(160,120,74,.28);
  box-shadow: 0 6px 24px rgba(44,33,24,.10), 0 2px 6px rgba(44,33,24,.06);
}

.faq-item__q {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 20px 22px;
  background: transparent;
  border: none;
  cursor: pointer;
  text-align: left;
  font-family: var(--font);
  font-size: 15px;
  font-weight: 600;
  color: var(--text-primary);
  letter-spacing: -.010em;
  line-height: 1.4;
  transition: color .2s ease;
}

.faq-item__q:hover { color: var(--accent); }
.faq-item.is-open .faq-item__q { color: var(--accent); }

.faq-item__icon {
  width: 28px; height: 28px;
  border-radius: 8px;
  background: rgba(160,120,74,.10);
  border: 1px solid rgba(160,120,74,.16);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
  color: var(--accent);
  transition: background .25s ease, transform .3s ease, border-color .25s ease;
}
.faq-item:hover .faq-item__icon { background: rgba(160,120,74,.16); }
.faq-item.is-open .faq-item__icon {
  transform: rotate(180deg);
  background: rgba(160,120,74,.16);
  border-color: rgba(160,120,74,.28);
}

.faq-item__a {
  overflow: hidden;
  max-height: 0;
  transition: max-height .38s cubic-bezier(.22,1,.36,1);
}
.faq-item__a[hidden] { display: block; }
.faq-item.is-open .faq-item__a { max-height: 600px; }

.faq-item__a p {
  padding: 0 22px 22px;
  font-size: 14px;
  font-weight: 400;
  line-height: 1.75;
  color: var(--text-muted);
  border-top: 1px solid rgba(44,33,24,.07);
  padding-top: 16px;
}

.faq-item.is-open .faq-item__a p { border-top-color: rgba(160,120,74,.14); }

/* ── Responsive ── */

@media (max-width: 900px) {
  .faq__inner { grid-template-columns: 1fr; gap: 44px; }
  .faq__header { position: static; }
  .faq__header-cta { display: none; }
}

@media (max-width: 640px) {
  .faq { padding: 80px 0 88px; }
  .faq__inner { padding: 0 20px; gap: 36px; }
  .faq-item__q { font-size: 14px; padding: 17px 18px; }
  .faq-item__a p { padding: 0 18px 18px; padding-top: 14px; }
}

@media (max-width: 400px) {
  .faq__inner { padding: 0 16px; }
}

/* ═══════════════════════════════════════
   FINAL CTA
═══════════════════════════════════════ */

.final-cta {
  position: relative;
  overflow: hidden;
  background: var(--accent-dark);
  padding: 120px 0 128px;
  scroll-margin-top: calc(var(--nav-height) + 24px);
}

.fcta-bg__arc {
  position: absolute;
  border-radius: 50%;
  border: 1px solid rgba(212,169,106,.12);
  pointer-events: none;
}
.fcta-bg__arc--1 { width: 640px; height: 640px; top: -240px; right: -180px; }
.fcta-bg__arc--2 { width: 420px; height: 420px; bottom: -160px; left: -100px; }

.fcta-bg__glow {
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
  filter: blur(80px);
}
.fcta-bg__glow--1 { width: 360px; height: 360px; top: -80px; right: 5%; background: rgba(212,169,106,.10); }
.fcta-bg__glow--2 { width: 280px; height: 280px; bottom: -60px; left: 10%; background: rgba(160,120,74,.08); }

.fcta-bg__dot { position: absolute; border-radius: 50%; background: rgba(212,169,106,.18); pointer-events: none; }
.fcta-bg__dot--1 { width: 6px; height: 6px; top: 22%; right: 18%; }
.fcta-bg__dot--2 { width: 4px; height: 4px; top: 70%; left: 12%; }
.fcta-bg__dot--3 { width: 5px; height: 5px; bottom: 20%; right: 35%; }

.fcta__inner {
  position: relative;
  z-index: 1;
  max-width: 660px;
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 0;
}

.fcta__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--accent-light);
  margin-bottom: 24px;
}

.fcta__heading {
  font-size: clamp(28px, 5vw, 44px);
  font-weight: 700;
  line-height: 1.18;
  color: #F5F0EA;
  letter-spacing: -.022em;
  margin-bottom: 20px;
}

.fcta__desc {
  font-size: 16px;
  line-height: 1.7;
  color: rgba(245,240,234,.65);
  max-width: 520px;
  margin-bottom: 40px;
}

.fcta__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: center;
  margin-bottom: 36px;
}

.fcta__btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 28px;
  background: var(--accent-light);
  color: var(--accent-dark);
  font-family: var(--font);
  font-size: 15px;
  font-weight: 700;
  border-radius: 10px;
  text-decoration: none;
  transition: background .18s, transform .18s, box-shadow .18s;
  box-shadow: 0 4px 20px rgba(212,169,106,.28);
}
.fcta__btn-primary:hover {
  background: #e2b978;
  transform: translateY(-1px);
  box-shadow: 0 8px 28px rgba(212,169,106,.36);
}
.fcta__btn-primary svg { flex-shrink: 0; }

.fcta__btn-ghost {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 26px;
  background: transparent;
  color: rgba(245,240,234,.80);
  font-family: var(--font);
  font-size: 15px;
  font-weight: 600;
  border-radius: 10px;
  text-decoration: none;
  border: 1px solid rgba(245,240,234,.18);
  transition: border-color .18s, color .18s, background .18s;
}
.fcta__btn-ghost:hover {
  border-color: rgba(245,240,234,.4);
  color: #F5F0EA;
  background: rgba(245,240,234,.05);
}

.fcta__pills {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  gap: 10px 18px;
  justify-content: center;
}
.fcta__pills li {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 12.5px;
  font-weight: 500;
  color: rgba(245,240,234,.55);
}
.fcta__pills svg { flex-shrink: 0; }

@media (max-width: 640px) {
  .final-cta { padding: 88px 0 96px; }
  .fcta__actions { flex-direction: column; align-items: stretch; }
  .fcta__btn-primary, .fcta__btn-ghost { justify-content: center; }
}

/* ═══════════════════════════════════════
   FOOTER
═══════════════════════════════════════ */

.footer {
  background: #1A1108;
  padding: 64px 0 0;
}

.footer__inner {
  max-width: 1160px;
  margin: 0 auto;
  padding: 0 40px 56px;
  display: grid;
  grid-template-columns: 1fr auto auto;
  gap: 48px 64px;
  align-items: start;
}

.footer__brand { display: flex; flex-direction: column; gap: 16px; }

.footer__logo {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  text-decoration: none;
}
.footer__logo .logo-text {
  font-size: 18px;
  font-weight: 800;
  letter-spacing: .04em;
  color: #F5F0EA;
}

.footer__tagline {
  font-size: 13.5px;
  line-height: 1.65;
  color: rgba(245,240,234,.45);
}

.footer__col-label {
  display: block;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: rgba(245,240,234,.35);
  margin-bottom: 16px;
}

.footer__nav ul,
.footer__contact ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.footer__nav a,
.footer__contact a {
  font-size: 14px;
  color: rgba(245,240,234,.60);
  text-decoration: none;
  transition: color .15s;
}
.footer__nav a:hover,
.footer__contact a:hover { color: var(--accent-light); }

.footer__contact li {
  display: flex;
  align-items: center;
  gap: 8px;
  color: rgba(245,240,234,.60);
}
.footer__contact svg { flex-shrink: 0; }

.footer__bottom {
  border-top: 1px solid rgba(245,240,234,.07);
  padding: 20px 40px;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
}
.footer__bottom > span { justify-self: start; }
.footer__legal-links { justify-self: center; }
.footer__back-top { justify-self: end; }
.footer__bottom span {
  font-size: 12.5px;
  color: rgba(245,240,234,.30);
}

.footer__legal-links {
  display: flex;
  align-items: center;
  gap: 20px;
}
.footer__legal-links a {
  font-size: 12px;
  font-weight: 500;
  color: rgba(245,240,234,.32);
  text-decoration: none;
  transition: color .15s;
  white-space: nowrap;
}
.footer__legal-links a:hover { color: rgba(245,240,234,.65); }

.footer__back-top {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  font-size: 12.5px;
  font-weight: 600;
  color: rgba(245,240,234,.40);
  text-decoration: none;
  transition: color .15s;
}
.footer__back-top:hover { color: var(--accent-light); }

@media (max-width: 900px) {
  .footer__inner { grid-template-columns: 1fr 1fr; gap: 40px 32px; }
  .footer__brand { grid-column: 1 / -1; }
}

@media (max-width: 760px) {
  .footer__legal-links { gap: 14px; }
}

@media (max-width: 560px) {
  .footer__inner { padding: 0 20px 48px; grid-template-columns: 1fr; }
  .footer__brand { grid-column: auto; }
  .footer__bottom {
    padding: 20px 20px;
    grid-template-columns: 1fr;
    gap: 12px;
    justify-items: center;
  }
  .footer__bottom > span { justify-self: center; }
  .footer__back-top { justify-self: center; }
  .footer__legal-links { flex-wrap: wrap; justify-content: center; gap: 12px 18px; }
}

@media (max-width: 400px) {
  .footer__inner { padding: 0 16px 40px; }
  .footer__bottom { padding: 16px 16px; }
}

/* ═══════════════════════════════════════
   OFFER PRICEBOX — headline variant
═══════════════════════════════════════ */

.offer-pricebox__headline {
  font-size: clamp(30px, 4vw, 50px);
  font-weight: 800;
  line-height: 1.1;
  letter-spacing: -.025em;
  color: var(--cta-text);
  margin-bottom: 4px;
}

/* ═══════════════════════════════════════
   WYBRANE PROJEKTY
═══════════════════════════════════════ */

.projects {
  position: relative;
  background: var(--bg-page);
  padding: 112px 0 104px;
  overflow: hidden;
  scroll-margin-top: calc(var(--nav-height) + 24px);
}

.projects-bg { position: absolute; inset: 0; pointer-events: none; z-index: 0; }
.projects-bg__blob {
  position: absolute;
  border-radius: 50%;
}
.projects-bg__blob--1 {
  width: 520px; height: 420px;
  background: radial-gradient(ellipse, rgba(212,169,106,.13) 0%, transparent 65%);
  top: -80px; left: -60px;
  filter: blur(80px);
}
.projects-bg__blob--2 {
  width: 420px; height: 380px;
  background: radial-gradient(ellipse, rgba(160,120,74,.10) 0%, transparent 68%);
  bottom: -60px; right: -40px;
  filter: blur(70px);
}

.projects__inner {
  position: relative;
  z-index: 1;
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 40px;
  display: flex;
  flex-direction: column;
  gap: 60px;
}

.projects__header {
  display: flex;
  flex-direction: column;
  gap: 18px;
  max-width: 580px;
}

/* ── Cards grid ── */
.proj-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  align-items: start;
}

.proj-card {
  background: rgba(253,250,247,.92);
  border: 1px solid rgba(44,33,24,.08);
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 3px 14px rgba(44,33,24,.07), 0 1px 3px rgba(44,33,24,.04);
  transition: transform .32s cubic-bezier(.22,1,.36,1), box-shadow .32s ease, border-color .32s ease;
}

.proj-card:hover {
  transform: translateY(-6px);
  border-color: rgba(160,120,74,.22);
  box-shadow: 0 16px 44px rgba(44,33,24,.12), 0 4px 12px rgba(44,33,24,.07);
}

/* ── Mini browser ── */
.proj-mini { overflow: hidden; }

.proj-mini__bar {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 7px 12px;
  background: #E5DDD4;
  border-bottom: 1px solid rgba(44,33,24,.09);
}

.proj-mini__dots { display: flex; gap: 4px; flex-shrink: 0; }
.proj-mini__dots span { width: 7px; height: 7px; border-radius: 50%; }
.proj-mini__dots span:nth-child(1) { background: #E07070; }
.proj-mini__dots span:nth-child(2) { background: #E0B870; }
.proj-mini__dots span:nth-child(3) { background: #7EC87E; }

.proj-mini__url {
  flex: 1;
  font-size: 8px;
  font-weight: 500;
  color: rgba(107,94,82,.7);
  text-align: center;
  background: rgba(44,33,24,.07);
  border-radius: 4px;
  padding: 3px 8px;
}

.proj-mini__screen {
  height: 200px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

/* Screenshot variant */
.proj-mini__screen-img {
  height: 200px;
  overflow: hidden;
  background: #EDE8E2;
}
.proj-mini__screenshot {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
  object-position: top center;
  transition: transform .5s cubic-bezier(.22,1,.36,1);
}
.proj-card:hover .proj-mini__screenshot { transform: scale(1.03); }

/* ── Nav inside mini ── */
.proj-mini__nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 7px 12px;
  background: rgba(253,246,238,.95);
  border-bottom: 1px solid rgba(180,130,100,.10);
  flex-shrink: 0;
}
.proj-mini__nav--dark {
  background: #181210;
  border-bottom-color: rgba(212,169,106,.15);
}

.proj-mini__logo-text {
  font-size: 7.5px; font-weight: 700;
  color: #3D2B1A; letter-spacing: .04em;
}
.proj-mini__logo-text--light { color: #F5F0EA; }

.proj-mini__cta-sm {
  font-size: 6.5px; font-weight: 700;
  background: #3D2B1A; color: #FDF6EE;
  padding: 2.5px 7px; border-radius: 3px;
  letter-spacing: .04em;
}
.proj-mini__cta-sm--gold { background: #D4A96A; color: #181210; }

/* ── Kobido hero ── */
.proj-mini__screen--kobido { background: #FDF6EE; }

.proj-mini__hero-beauty {
  display: grid; grid-template-columns: 1fr 1fr;
  padding: 12px 12px 8px;
  background: linear-gradient(135deg, #FDF6EE 0%, #F5E8D8 100%);
  flex: 1;
  gap: 8px;
}
.proj-mini__hero-copy { display: flex; flex-direction: column; gap: 5px; justify-content: center; }

.proj-mini__tag-sm {
  font-size: 6px; font-weight: 600;
  letter-spacing: .10em; text-transform: uppercase;
  color: #9B6B4A;
}
.proj-mini__tag-sm--gold { color: #D4A96A; }

.proj-mini__h {
  font-size: 14px; font-weight: 800; line-height: 1.15;
  color: #2C1A10; letter-spacing: -.01em; margin: 0;
}
.proj-mini__h--light { color: #F5F0EA; }
.proj-mini__h--covaro { color: #1C1610; font-size: 13px; }

.proj-mini__btn {
  font-size: 6.5px; font-weight: 700; letter-spacing: .04em;
  background: #3D2B1A; color: #FDF6EE;
  border: none; border-radius: 3px; padding: 3px 8px;
  cursor: default; width: fit-content;
}
.proj-mini__btn--gold { background: #D4A96A; color: #181210; }
.proj-mini__btn--dark { background: #2C2118; color: #F5F0EA; }

.proj-mini__hero-visual {
  position: relative; height: 100%;
  display: flex; align-items: center; justify-content: center;
}
.proj-mini__shape { position: absolute; border-radius: 50%; }
.proj-mini__shape--a {
  width: 50px; height: 50px;
  background: radial-gradient(circle at 38% 38%, #E8BFAB 0%, #C4896A 100%);
  top: 4px; right: 4px;
  box-shadow: 0 4px 10px rgba(180,100,60,.25);
}
.proj-mini__shape--b {
  width: 30px; height: 30px;
  background: #F0D5C8;
  bottom: 0; right: 22px; opacity: .7;
}

.proj-mini__services-row {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 4px; padding: 6px 10px;
  background: rgba(240,222,210,.4);
  border-top: 1px solid rgba(180,130,100,.10);
  flex-shrink: 0;
}
.proj-mini__service-item {
  display: flex; flex-direction: column; align-items: center; gap: 3px;
  padding: 4px 2px;
}
.proj-mini__service-item span { font-size: 6px; font-weight: 600; color: #7A5030; }
.proj-mini__si-icon { width: 16px; height: 16px; border-radius: 4px; opacity: .8; }
.proj-mini__si-icon--1 { background: linear-gradient(135deg, #E8C9B8, #C4896A); }
.proj-mini__si-icon--2 { background: linear-gradient(135deg, #D4B8A8, #A87050); }
.proj-mini__si-icon--3 { background: linear-gradient(135deg, #C8A892, #986040); }

/* ── Auto do ślubu ── */
.proj-mini__screen--auto { background: #181210; }

.proj-mini__hero-auto {
  display: grid; grid-template-columns: 1fr auto;
  padding: 12px 12px 10px;
  background: linear-gradient(135deg, #1A1210 0%, #221810 100%);
  flex: 1; gap: 8px; align-items: center;
}
.proj-mini__auto-copy { display: flex; flex-direction: column; gap: 5px; }
.proj-mini__car-shape { display: flex; align-items: center; justify-content: center; opacity: .85; }

/* ── Covaro ── */
.proj-mini__screen--covaro { background: #F5F0EA; }

.proj-mini__hero-covaro {
  display: grid; grid-template-columns: 1fr auto;
  padding: 12px 12px 10px;
  background: linear-gradient(135deg, #F5F0EA 0%, #EDE4D8 100%);
  flex: 1; gap: 12px; align-items: center;
}
.proj-mini__covaro-copy { display: flex; flex-direction: column; gap: 5px; }
.proj-mini__eyebrow-sm {
  font-size: 6px; font-weight: 600;
  letter-spacing: .12em; text-transform: uppercase;
  color: #A0784A;
}
.proj-mini__covaro-mark { display: flex; align-items: center; justify-content: center; flex-shrink: 0; }

/* ── Card body ── */
.proj-card__body {
  padding: 20px 22px 22px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.proj-card__meta { display: flex; align-items: center; gap: 8px; flex-wrap: wrap; }

.proj-card__industry {
  font-size: 11px; font-weight: 600;
  color: var(--text-muted); letter-spacing: .02em;
}

.proj-card__status {
  display: inline-flex; align-items: center;
  padding: 3px 9px;
  font-size: 10px; font-weight: 700;
  letter-spacing: .08em; text-transform: uppercase;
  color: var(--accent);
  background: rgba(160,120,74,.09);
  border-radius: 99px;
}
.proj-card__status--own {
  color: #5C8B5A;
  background: rgba(92,139,90,.10);
}
.proj-card__status--wip {
  color: #7B6A2A;
  background: rgba(180,150,50,.10);
}

.proj-card__title {
  font-size: 17px; font-weight: 700;
  color: var(--text-primary);
  letter-spacing: -.014em; line-height: 1.25;
}

.proj-card__desc {
  font-size: 13.5px; font-weight: 400;
  line-height: 1.68; color: var(--text-muted);
}

.proj-card__cta {
  display: inline-flex; align-items: center; gap: 6px;
  font-size: 13px; font-weight: 600;
  color: var(--accent);
  text-decoration: none; margin-top: 4px;
  transition: gap .2s ease, color .2s ease;
}
.proj-card__cta:hover { gap: 10px; color: var(--accent-dark); }

/* ── Note below cards ── */
.projects__note {
  font-size: 13.5px; line-height: 1.7;
  color: rgba(107,94,82,.65);
  text-align: center; max-width: 520px;
  margin: 0 auto;
  padding: 20px 24px;
  background: rgba(44,33,24,.025);
  border: 1px solid rgba(44,33,24,.07);
  border-radius: 12px;
  font-style: italic;
}
.projects__note a {
  color: var(--accent);
  text-decoration: underline;
  text-underline-offset: 3px;
}

/* ── Responsive ── */
@media (max-width: 900px) {
  .proj-grid { grid-template-columns: repeat(2, 1fr); }
  .proj-grid .proj-card:last-child { grid-column: 1 / -1; max-width: 420px; justify-self: center; }
}

@media (max-width: 640px) {
  .projects { padding: 80px 0 88px; }
  .projects__inner { padding: 0 20px; gap: 44px; }
  .proj-grid { grid-template-columns: 1fr; }
  .proj-grid .proj-card:last-child { grid-column: auto; max-width: none; justify-self: auto; }
  .proj-mini__screen { height: 180px; }
  .proj-mini__h { font-size: 12px; }
}

@media (max-width: 400px) {
  .projects__inner { padding: 0 16px; }
}
