/* palette: bg=#FFFFFF fg=#2E3A45 accent=#29ABE2 */
/* fonts: display="Syne" body="DM Sans" mono="Space Mono" */

/* =============================================================
   Saldreno — oblak infrastruktura
   Memphis-80s cloud aesthetic: turkiz + roza + žuta confetti
   ============================================================= */

:root {
  --bg: #FFFFFF;          /* dominant white background (reference) */
  --bg-alt: #F1F6FA;      /* cool alternating section background */
  --bg-alt2: #FDF3F7;     /* soft pink-tinted alt for variety */
  --fg: #2E3A45;          /* dark slate — reference wordmark */
  --fg-soft: #45535F;     /* slightly lighter fg */
  --muted: #77899A;       /* secondary text */
  --accent: #29ABE2;      /* turquoise/cyan — reference cloud + "Cloud" text */
  --accent-deep: #1B87B8; /* darker turquoise for hover */
  --pink: #FF5C8A;        /* memphis pink confetti */
  --yellow: #FFC93D;      /* memphis yellow confetti */
  --coral: #FF7A59;       /* warm accent for variety */
  --ink: #1C242B;         /* near-black for dark band */

  --border: rgba(46, 58, 69, 0.14);
  --border-strong: rgba(46, 58, 69, 0.28);

  --serif: 'Syne', ui-sans-serif, sans-serif;
  --sans: 'DM Sans', ui-sans-serif, system-ui, sans-serif;
  --mono: 'Space Mono', ui-monospace, monospace;

  --ease: cubic-bezier(0.22, 1, 0.36, 1);
  --shadow: 0 4px 24px -4px rgba(28, 36, 43, 0.10);
  --shadow-lg: 0 18px 50px -12px rgba(28, 36, 43, 0.20);

  --maxw: 1240px;
  --radius: 18px;
}

*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  margin: 0;
  font-family: var(--sans);
  font-size: 17px;
  line-height: 1.75;
  color: var(--fg);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}
img { max-width: 100%; display: block; height: auto; }
a { color: inherit; text-decoration: none; }
button { font: inherit; cursor: pointer; border: 0; background: none; color: inherit; }
ul { margin: 0; padding: 0; list-style: none; }
h1, h2, h3, h4 { font-family: var(--serif); font-weight: 600; margin: 0; letter-spacing: -0.02em; line-height: 1.06; }
p { margin: 0; }

::selection { background: var(--accent); color: #fff; }

/* ---------- Layout helpers ---------- */
.container { width: 100%; max-width: var(--maxw); margin: 0 auto; padding: 0 20px; }
@media (min-width: 768px) { .container { padding: 0 32px; } }

.section { position: relative; padding: clamp(72px, 12vw, 160px) 0; }
.section--tight { padding: clamp(56px, 8vw, 100px) 0; }
.section--alt { background: var(--bg-alt); }
.section--alt2 { background: var(--bg-alt2); }

.eyebrow {
  display: inline-flex; align-items: center; gap: 10px;
  font-family: var(--mono);
  font-size: 12px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--accent-deep);
  margin: 0 0 22px;
}
.eyebrow::before {
  content: ""; width: 26px; height: 2px; background: var(--accent);
  display: inline-block;
}
.eyebrow--center { justify-content: center; }

.section-head { max-width: 760px; margin-bottom: clamp(40px, 6vw, 72px); }
.section-head--center { margin-left: auto; margin-right: auto; text-align: center; }
.section-head h2 {
  font-size: clamp(2.4rem, 6vw, 4.6rem);
  letter-spacing: -0.025em;
}
.section-head p {
  margin-top: 22px; color: var(--fg-soft); font-size: 1.06rem; max-width: 620px;
}
.section-head--center p { margin-left: auto; margin-right: auto; }

.lead { font-size: clamp(1.1rem, 2vw, 1.35rem); line-height: 1.6; color: var(--fg-soft); }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 15px 30px;
  border-radius: 9999px;
  font-family: var(--sans);
  font-weight: 600;
  font-size: 0.98rem;
  letter-spacing: 0.005em;
  transition: transform 0.4s var(--ease), box-shadow 0.4s var(--ease), background 0.3s var(--ease), color 0.3s var(--ease);
  will-change: transform;
}
.btn svg { transition: transform 0.4s var(--ease); }
.btn:hover svg { transform: translateX(4px); }
.btn--primary { background: var(--accent); color: #fff; box-shadow: 0 8px 22px -8px rgba(41, 171, 226, 0.65); }
.btn--primary:hover { background: var(--accent-deep); transform: translateY(-2px); box-shadow: 0 14px 32px -8px rgba(41, 171, 226, 0.55); }
.btn--dark { background: var(--fg); color: #fff; }
.btn--dark:hover { background: var(--ink); transform: translateY(-2px); }
.btn--ghost { background: transparent; color: var(--fg); border: 1.5px solid var(--border-strong); }
.btn--ghost:hover { border-color: var(--accent); color: var(--accent-deep); transform: translateY(-2px); }
.btn--light { background: #fff; color: var(--fg); }
.btn--light:hover { transform: translateY(-2px); box-shadow: var(--shadow-lg); }

.link-arrow {
  display: inline-flex; align-items: center; gap: 8px;
  font-weight: 600; color: var(--accent-deep);
  font-size: 0.98rem;
  transition: gap 0.3s var(--ease), color 0.3s var(--ease);
}
.link-arrow::after { content: "\2192"; transition: transform 0.3s var(--ease); }
.link-arrow:hover { gap: 12px; color: var(--fg); }
.link-arrow:hover::after { transform: translateX(3px); }

/* ---------- Memphis confetti shapes ---------- */
.deco { position: absolute; inset: 0; overflow: hidden; pointer-events: none; z-index: 0; }
.shape { position: absolute; pointer-events: none; }
.shape--circle { border-radius: 50%; }
.shape--ring { border-radius: 50%; background: transparent; }
.shape--tri {
  width: 0; height: 0; background: transparent !important;
  border-left: var(--s, 22px) solid transparent;
  border-right: var(--s, 22px) solid transparent;
  border-bottom: calc(var(--s, 22px) * 1.7) solid currentColor;
}
.shape--sq { border-radius: 4px; }
.shape--cross { position: absolute; }
.shape--cross::before, .shape--cross::after {
  content: ""; position: absolute; background: currentColor; border-radius: 2px;
}
.shape--cross::before { width: 100%; height: 22%; top: 39%; }
.shape--cross::after { width: 22%; height: 100%; left: 39%; }
.shape--zig { color: transparent; }

/* header nav decor dots */
.dotgrid {
  background-image: radial-gradient(currentColor 1.6px, transparent 1.6px);
  background-size: 14px 14px;
}

/* =============================================================
   HEADER
   ============================================================= */
.header {
  position: sticky; top: 0; z-index: 100;
  background: rgba(255, 255, 255, 0.86);
  -webkit-backdrop-filter: saturate(180%) blur(20px);
  backdrop-filter: saturate(180%) blur(20px);
  border-bottom: 1px solid transparent;
  transition: box-shadow 0.4s var(--ease), border-color 0.4s var(--ease), background 0.4s var(--ease);
}
.header[data-scrolled="true"] {
  box-shadow: 0 6px 24px -14px rgba(28, 36, 43, 0.35);
  border-bottom-color: var(--border);
}
.header__inner {
  display: flex; align-items: center; justify-content: space-between;
  height: 72px;
}
.brand { display: inline-flex; align-items: center; gap: 11px; font-family: var(--serif); font-weight: 700; font-size: 1.28rem; letter-spacing: -0.02em; color: var(--fg); }
.brand__mark { width: 34px; height: 34px; flex: none; }
.brand em { color: var(--accent); font-style: normal; }

.nav { display: none; }
@media (min-width: 900px) {
  .nav { display: flex; align-items: center; gap: 34px; }
  .header__inner { height: 82px; }
}
.nav a {
  font-size: 0.95rem; font-weight: 500; color: var(--fg-soft);
  position: relative; padding: 4px 0;
  transition: color 0.25s var(--ease);
}
.nav a::after {
  content: ""; position: absolute; left: 0; bottom: -2px; width: 0; height: 2px;
  background: var(--accent); transition: width 0.3s var(--ease);
}
.nav a:hover, .nav a[aria-current="page"] { color: var(--fg); }
.nav a:hover::after, .nav a[aria-current="page"]::after { width: 100%; }

.header__cta { display: none; }
@media (min-width: 900px) { .header__cta { display: inline-flex; } }

.menu-toggle {
  display: inline-flex; flex-direction: column; justify-content: center; gap: 5px;
  width: 44px; height: 44px; padding: 0 10px; border-radius: 10px;
}
@media (min-width: 900px) { .menu-toggle { display: none; } }
.menu-toggle span { display: block; height: 2px; width: 100%; background: var(--fg); border-radius: 2px; transition: transform 0.35s var(--ease), opacity 0.25s var(--ease); }
.menu-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.menu-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.menu-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Mobile menu */
.mobile-menu {
  position: fixed; inset: 0; z-index: 99;
  background: var(--bg);
  padding: 100px 28px 40px;
  transform: translateY(-100%);
  transition: transform 0.5s var(--ease);
  display: flex; flex-direction: column;
  overflow-y: auto;
}
.mobile-menu[data-open="true"] { transform: translateY(0); }
@media (min-width: 900px) { .mobile-menu { display: none; } }
.mobile-menu a { font-family: var(--serif); font-size: 2rem; font-weight: 600; padding: 14px 0; border-bottom: 1px solid var(--border); color: var(--fg); }
.mobile-menu a:last-of-type { border-bottom: 0; }
.mobile-menu .btn { margin-top: 26px; justify-content: center; }

/* =============================================================
   HERO
   ============================================================= */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex; align-items: center;
  padding: 120px 0 70px;
  overflow: hidden;
  background:
    radial-gradient(120% 100% at 85% 0%, rgba(41,171,226,0.10), transparent 55%),
    radial-gradient(90% 80% at 0% 100%, rgba(255,92,138,0.08), transparent 50%),
    var(--bg);
}
.hero__grid {
  display: grid; grid-template-columns: 1fr; gap: 44px; align-items: center;
  position: relative; z-index: 2;
}
@media (min-width: 980px) {
  .hero__grid { grid-template-columns: 1.05fr 0.95fr; gap: 60px; }
}
.hero h1 {
  font-size: clamp(3rem, 9vw, 6.4rem);
  font-weight: 600;
  letter-spacing: -0.035em;
  line-height: 0.98;
}
.hero h1 em { font-style: normal; color: var(--accent); position: relative; }
.hero h1 em::after {
  content: ""; position: absolute; left: 0; right: 0; bottom: 0.06em; height: 0.09em;
  background: var(--pink); border-radius: 2px; opacity: 0.85;
}
.hero__sub { margin-top: 28px; max-width: 520px; font-size: clamp(1.05rem, 2vw, 1.25rem); color: var(--fg-soft); line-height: 1.66; }
.hero__actions { margin-top: 38px; display: flex; flex-wrap: wrap; gap: 14px; }
.hero__meta {
  margin-top: 46px; display: flex; flex-wrap: wrap; gap: 26px 40px;
  padding-top: 30px; border-top: 1px solid var(--border);
}
.hero__meta div strong { display: block; font-family: var(--serif); font-size: 1.85rem; font-weight: 700; color: var(--fg); letter-spacing: -0.02em; }
.hero__meta div span { font-size: 0.85rem; color: var(--muted); font-family: var(--mono); text-transform: uppercase; letter-spacing: 0.08em; }

.hero__visual { position: relative; }
.hero__figure {
  position: relative; border-radius: 24px; overflow: hidden;
  aspect-ratio: 4 / 4.4;
  box-shadow: var(--shadow-lg);
  border: 1px solid var(--border);
}
.hero__figure img { width: 100%; height: 100%; object-fit: cover; animation: heroZoom 9s var(--ease) forwards; }
@keyframes heroZoom { from { transform: scale(1.09); } to { transform: scale(1); } }
.hero__badge {
  position: absolute; left: -14px; bottom: 28px; z-index: 3;
  background: #fff; border-radius: 16px; padding: 16px 20px;
  box-shadow: var(--shadow-lg); border: 1px solid var(--border);
  display: flex; align-items: center; gap: 14px;
  max-width: 240px;
}
.hero__badge .dot { width: 12px; height: 12px; border-radius: 50%; background: #37d39b; flex: none; box-shadow: 0 0 0 4px rgba(55,211,155,0.18); }
.hero__badge strong { font-family: var(--serif); display: block; font-size: 0.98rem; }
.hero__badge span { font-size: 0.8rem; color: var(--muted); }

/* hero confetti positioning */
.hero .shape--a { top: 14%; right: 8%; width: 68px; height: 68px; background: var(--yellow); border-radius: 50%; opacity: 0.9; }
.hero .shape--b { top: 62%; left: 3%; color: var(--pink); --s: 20px; }
.hero .shape--c { bottom: 12%; right: 40%; width: 46px; height: 46px; border: 6px solid var(--accent); border-radius: 50%; opacity: 0.75; }
.hero .shape--d { top: 30%; left: 46%; width: 26px; height: 26px; background: var(--coral); border-radius: 5px; transform: rotate(18deg); opacity: 0.9; }
.hero .shape--e { top: 8%; left: 30%; color: var(--accent); width: 40px; height: 40px; }
@media (max-width: 979px) { .hero .shape--c, .hero .shape--e { display: none; } }

/* =============================================================
   MARQUEE / logos strip
   ============================================================= */
.strip { border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); background: var(--bg); overflow: hidden; }
.strip__inner { display: flex; align-items: center; gap: 56px; padding: 24px 0; white-space: nowrap; animation: marquee 32s linear infinite; }
.strip__inner span { font-family: var(--serif); font-weight: 600; font-size: 1.15rem; color: var(--muted); display: inline-flex; align-items: center; gap: 56px; }
.strip__inner span::after { content: "\2726"; color: var(--accent); font-size: 0.9rem; }
@keyframes marquee { from { transform: translateX(0); } to { transform: translateX(-50%); } }

/* =============================================================
   SERVICES grid
   ============================================================= */
.grid { display: grid; gap: 22px; }
.grid--3 { grid-template-columns: 1fr; }
@media (min-width: 640px) { .grid--3 { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1000px) { .grid--3 { grid-template-columns: repeat(3, 1fr); } }

.card {
  position: relative;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 34px 30px 32px;
  transition: transform 0.5s var(--ease), box-shadow 0.5s var(--ease), border-color 0.5s var(--ease);
  overflow: hidden;
}
.card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); border-color: transparent; }
.card__icon {
  width: 56px; height: 56px; border-radius: 14px;
  display: grid; place-items: center; margin-bottom: 24px;
  background: rgba(41,171,226,0.12); color: var(--accent-deep);
}
.card:nth-child(3n+2) .card__icon { background: rgba(255,92,138,0.14); color: var(--pink); }
.card:nth-child(3n) .card__icon { background: rgba(255,201,61,0.20); color: #C79000; }
.card__icon svg { width: 28px; height: 28px; }
.card h3 { font-size: 1.35rem; margin-bottom: 12px; }
.card p { color: var(--fg-soft); font-size: 0.98rem; line-height: 1.65; }
.card__no { position: absolute; top: 22px; right: 26px; font-family: var(--mono); font-size: 0.82rem; color: var(--muted); }
.card ul { margin-top: 18px; display: grid; gap: 9px; }
.card ul li { position: relative; padding-left: 22px; font-size: 0.94rem; color: var(--fg-soft); }
.card ul li::before { content: ""; position: absolute; left: 0; top: 9px; width: 9px; height: 9px; border-radius: 2px; background: var(--accent); transform: rotate(45deg); }

/* =============================================================
   CASE / PORTFOLIO grid
   ============================================================= */
.cases { display: grid; gap: 26px; grid-template-columns: 1fr; }
@media (min-width: 760px) { .cases { grid-template-columns: repeat(2, 1fr); } }
.case {
  position: relative; border-radius: var(--radius); overflow: hidden;
  background: #fff; border: 1px solid var(--border);
  transition: transform 0.5s var(--ease), box-shadow 0.5s var(--ease);
}
.case:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); }
.case__media { position: relative; aspect-ratio: 16 / 10; overflow: hidden; }
.case__media img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.9s var(--ease); }
.case:hover .case__media img { transform: scale(1.06); }
.case__tag {
  position: absolute; top: 16px; left: 16px; z-index: 2;
  background: rgba(255,255,255,0.94); color: var(--fg);
  font-family: var(--mono); font-size: 0.72rem; letter-spacing: 0.08em; text-transform: uppercase;
  padding: 7px 13px; border-radius: 9999px;
}
.case__body { padding: 26px 26px 30px; }
.case__body h3 { font-size: 1.5rem; margin-bottom: 10px; }
.case__body p { color: var(--fg-soft); font-size: 0.97rem; margin-bottom: 18px; }
.case__stats { display: flex; gap: 26px; margin-bottom: 20px; }
.case__stats div strong { display: block; font-family: var(--serif); font-size: 1.4rem; color: var(--accent-deep); }
.case__stats div span { font-size: 0.78rem; color: var(--muted); font-family: var(--mono); text-transform: uppercase; letter-spacing: 0.06em; }

/* Featured deep-dive */
.feature { display: grid; grid-template-columns: 1fr; gap: 36px; align-items: center; }
@media (min-width: 900px) { .feature { grid-template-columns: 1fr 1fr; gap: 60px; } }
.feature__media { position: relative; border-radius: var(--radius); overflow: hidden; aspect-ratio: 5 / 4; box-shadow: var(--shadow-lg); border: 1px solid var(--border); }
.feature__media img { width: 100%; height: 100%; object-fit: cover; }
.feature__badge { position: absolute; top: 18px; left: 18px; background: var(--accent); color: #fff; font-family: var(--mono); font-size: 0.72rem; letter-spacing: 0.1em; text-transform: uppercase; padding: 8px 14px; border-radius: 9999px; }
.feature h2 { font-size: clamp(2rem, 4.5vw, 3.2rem); margin: 18px 0 20px; }
.feature p { color: var(--fg-soft); }
.feature__list { margin: 26px 0 30px; display: grid; gap: 16px; }
.feature__list li { display: flex; gap: 14px; align-items: flex-start; }
.feature__list li svg { flex: none; margin-top: 3px; color: var(--accent); }
.feature__list li strong { font-family: var(--serif); }

/* =============================================================
   MANIFESTO dark band
   ============================================================= */
.manifesto {
  background: var(--ink); color: #fff;
  position: relative; overflow: hidden;
}
.manifesto .eyebrow { color: var(--accent); }
.manifesto blockquote {
  margin: 0; max-width: 940px;
  font-family: var(--serif); font-weight: 500;
  font-size: clamp(1.9rem, 5vw, 3.6rem);
  line-height: 1.16; letter-spacing: -0.02em;
  position: relative; z-index: 2;
}
.manifesto blockquote em { font-style: normal; color: var(--accent); }
.manifesto .quote-mark { font-family: var(--serif); font-size: clamp(6rem, 16vw, 12rem); line-height: 0.6; color: rgba(41,171,226,0.28); display: block; margin-bottom: -0.1em; }
.manifesto cite { display: block; margin-top: 34px; font-style: normal; font-family: var(--mono); font-size: 0.85rem; letter-spacing: 0.08em; text-transform: uppercase; color: rgba(255,255,255,0.6); position: relative; z-index: 2; }
.manifesto .shape--a { top: 18%; right: 10%; width: 90px; height: 90px; border: 10px solid rgba(255,92,138,0.5); border-radius: 50%; }
.manifesto .shape--b { bottom: 14%; left: 6%; color: rgba(255,201,61,0.55); --s: 26px; }
.manifesto .shape--c { top: 60%; right: 22%; width: 30px; height: 30px; background: rgba(41,171,226,0.5); border-radius: 5px; transform: rotate(20deg); }

/* =============================================================
   PROCESS steps
   ============================================================= */
.steps { display: grid; gap: 4px; grid-template-columns: 1fr; }
@media (min-width: 760px) { .steps { grid-template-columns: repeat(2, 1fr); gap: 0; } }
@media (min-width: 1040px) { .steps { grid-template-columns: repeat(4, 1fr); } }
.step { padding: 34px 28px; border: 1px solid var(--border); background: #fff; position: relative; transition: background 0.4s var(--ease); }
.step:hover { background: var(--bg-alt); }
.step__no { font-family: var(--mono); font-size: 0.85rem; color: var(--accent-deep); letter-spacing: 0.1em; margin-bottom: 20px; display: flex; align-items: center; gap: 10px; }
.step__no::before { content: ""; width: 34px; height: 34px; border-radius: 50%; border: 2px solid var(--accent); display: inline-grid; }
.step h3 { font-size: 1.28rem; margin-bottom: 12px; }
.step p { font-size: 0.94rem; color: var(--fg-soft); }

/* =============================================================
   STATS band
   ============================================================= */
.stats { display: grid; grid-template-columns: repeat(2, 1fr); gap: 30px 20px; }
@media (min-width: 860px) { .stats { grid-template-columns: repeat(4, 1fr); } }
.stat { text-align: center; }
.stat strong { display: block; font-family: var(--serif); font-weight: 700; font-size: clamp(2.6rem, 6vw, 4rem); letter-spacing: -0.03em; color: var(--fg); }
.stat strong em { font-style: normal; color: var(--accent); }
.stat span { font-size: 0.9rem; color: var(--muted); font-family: var(--mono); text-transform: uppercase; letter-spacing: 0.06em; }

/* =============================================================
   TESTIMONIALS
   ============================================================= */
.quotes { display: grid; gap: 22px; grid-template-columns: 1fr; }
@media (min-width: 860px) { .quotes { grid-template-columns: repeat(3, 1fr); } }
.quote {
  background: #fff; border: 1px solid var(--border); border-radius: var(--radius);
  padding: 32px 30px; display: flex; flex-direction: column;
  transition: transform 0.5s var(--ease), box-shadow 0.5s var(--ease);
}
.quote:hover { transform: translateY(-5px); box-shadow: var(--shadow); }
.quote__stars { color: var(--yellow); letter-spacing: 3px; margin-bottom: 18px; font-size: 0.95rem; }
.quote p { font-size: 1.02rem; color: var(--fg); line-height: 1.62; flex: 1; }
.quote__by { display: flex; align-items: center; gap: 14px; margin-top: 24px; padding-top: 22px; border-top: 1px solid var(--border); }
.avatar { width: 46px; height: 46px; border-radius: 50%; display: grid; place-items: center; font-family: var(--serif); font-weight: 700; color: #fff; flex: none; font-size: 0.95rem; }
.quote__by strong { display: block; font-family: var(--serif); font-size: 0.98rem; }
.quote__by span { font-size: 0.84rem; color: var(--muted); }

/* =============================================================
   FAQ
   ============================================================= */
.faq { max-width: 860px; margin: 0 auto; }
.faq details {
  border-bottom: 1px solid var(--border);
  padding: 6px 0;
}
.faq summary {
  list-style: none; cursor: pointer;
  display: flex; justify-content: space-between; align-items: center; gap: 20px;
  padding: 24px 0;
  font-family: var(--serif); font-weight: 600; font-size: clamp(1.1rem, 2.4vw, 1.4rem);
  color: var(--fg);
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary .icon { flex: none; width: 30px; height: 30px; border-radius: 50%; border: 1.5px solid var(--border-strong); display: grid; place-items: center; position: relative; transition: background 0.3s var(--ease), border-color 0.3s var(--ease); }
.faq summary .icon::before, .faq summary .icon::after { content: ""; position: absolute; background: var(--fg); border-radius: 2px; transition: transform 0.3s var(--ease), background 0.3s var(--ease); }
.faq summary .icon::before { width: 12px; height: 2px; }
.faq summary .icon::after { width: 2px; height: 12px; }
.faq details[open] summary .icon { background: var(--accent); border-color: var(--accent); }
.faq details[open] summary .icon::before, .faq details[open] summary .icon::after { background: #fff; }
.faq details[open] summary .icon::after { transform: scaleY(0); }
.faq details p { padding: 0 0 26px; color: var(--fg-soft); max-width: 92%; font-size: 1rem; }

/* =============================================================
   CTA band
   ============================================================= */
.cta {
  position: relative; overflow: hidden;
  background:
    radial-gradient(120% 130% at 100% 0%, rgba(255,92,138,0.16), transparent 55%),
    linear-gradient(135deg, var(--accent) 0%, var(--accent-deep) 100%);
  color: #fff;
  border-radius: 28px;
  padding: clamp(48px, 8vw, 88px) clamp(28px, 6vw, 80px);
  text-align: center;
}
.cta h2 { font-size: clamp(2.2rem, 5.5vw, 4rem); color: #fff; letter-spacing: -0.03em; }
.cta p { max-width: 560px; margin: 22px auto 0; color: rgba(255,255,255,0.92); font-size: 1.1rem; }
.cta__actions { margin-top: 38px; display: flex; flex-wrap: wrap; gap: 14px; justify-content: center; }
.cta .shape--a { top: 16%; left: 8%; width: 60px; height: 60px; border: 8px solid rgba(255,255,255,0.35); border-radius: 50%; }
.cta .shape--b { bottom: 18%; right: 12%; color: rgba(255,201,61,0.8); --s: 22px; }
.cta .shape--c { top: 62%; left: 16%; width: 24px; height: 24px; background: rgba(255,255,255,0.4); border-radius: 4px; transform: rotate(20deg); }

/* =============================================================
   CONTACT
   ============================================================= */
.contact-grid { display: grid; gap: 44px; grid-template-columns: 1fr; align-items: start; }
@media (min-width: 940px) { .contact-grid { grid-template-columns: 1fr 1.15fr; gap: 64px; } }

.contact-info { display: grid; gap: 26px; }
.contact-item { display: flex; gap: 18px; align-items: flex-start; }
.contact-item__icon { width: 48px; height: 48px; border-radius: 12px; background: rgba(41,171,226,0.12); color: var(--accent-deep); display: grid; place-items: center; flex: none; }
.contact-item__icon svg { width: 22px; height: 22px; }
.contact-item h3 { font-size: 1.1rem; margin-bottom: 4px; }
.contact-item p, .contact-item a { color: var(--fg-soft); font-size: 0.98rem; }
.contact-item a:hover { color: var(--accent-deep); }

.form { background: #fff; border: 1px solid var(--border); border-radius: var(--radius); padding: clamp(28px, 5vw, 44px); box-shadow: var(--shadow); }
.form__row { display: grid; gap: 20px; margin-bottom: 20px; }
@media (min-width: 620px) { .form__row--2 { grid-template-columns: 1fr 1fr; } }
.field { display: flex; flex-direction: column; gap: 8px; }
.field label { font-size: 0.86rem; font-weight: 600; font-family: var(--mono); text-transform: uppercase; letter-spacing: 0.06em; color: var(--fg-soft); }
.field input, .field select, .field textarea {
  font-family: var(--sans); font-size: 1rem; color: var(--fg);
  padding: 13px 16px; border: 1.5px solid var(--border); border-radius: 12px;
  background: var(--bg); transition: border-color 0.25s var(--ease), box-shadow 0.25s var(--ease);
}
.field input::placeholder, .field textarea::placeholder { color: #9AAAB7; }
.field input:focus, .field select:focus, .field textarea:focus { outline: none; border-color: var(--accent); box-shadow: 0 0 0 4px rgba(41,171,226,0.14); }
.field textarea { resize: vertical; min-height: 130px; }
.form .btn { width: 100%; justify-content: center; margin-top: 6px; }
.form__note { font-size: 0.82rem; color: var(--muted); margin-top: 16px; text-align: center; }
.form__note a { color: var(--accent-deep); text-decoration: underline; }
.checkbox { display: flex; gap: 12px; align-items: flex-start; font-size: 0.88rem; color: var(--fg-soft); }
.checkbox input { width: 18px; height: 18px; margin-top: 3px; flex: none; accent-color: var(--accent); }

/* =============================================================
   VALUES / principles list
   ============================================================= */
.principles { display: grid; gap: 0; grid-template-columns: 1fr; }
@media (min-width: 820px) { .principles { grid-template-columns: repeat(2, 1fr); } }
.principle { padding: 34px 8px 34px 0; border-top: 1px solid var(--border); display: flex; gap: 22px; }
.principle__no { font-family: var(--mono); color: var(--accent-deep); font-size: 0.9rem; flex: none; padding-top: 6px; }
.principle h3 { font-size: 1.4rem; margin-bottom: 10px; }
.principle p { color: var(--fg-soft); font-size: 0.98rem; }
@media (min-width: 820px) { .principle { padding-right: 34px; } .principle:nth-child(odd) { border-right: 1px solid var(--border); } }

/* page hero (interior) */
.page-hero { position: relative; overflow: hidden; padding: clamp(120px, 18vw, 190px) 0 clamp(50px, 8vw, 80px); background: radial-gradient(110% 120% at 90% 0%, rgba(41,171,226,0.10), transparent 55%), var(--bg); }
.page-hero h1 { font-size: clamp(2.8rem, 8vw, 5.6rem); font-weight: 600; letter-spacing: -0.035em; max-width: 14ch; }
.page-hero h1 em { font-style: normal; color: var(--accent); }
.page-hero p { margin-top: 24px; max-width: 560px; font-size: clamp(1.05rem, 2vw, 1.25rem); color: var(--fg-soft); }
.page-hero .shape--a { top: 30%; right: 8%; width: 60px; height: 60px; background: var(--yellow); border-radius: 50%; opacity: 0.9; }
.page-hero .shape--b { bottom: 20%; right: 26%; color: var(--pink); --s: 18px; }
@media (max-width: 720px) { .page-hero .shape--a, .page-hero .shape--b { display: none; } }
.breadcrumb { font-family: var(--mono); font-size: 0.8rem; letter-spacing: 0.06em; text-transform: uppercase; color: var(--muted); margin-bottom: 20px; }
.breadcrumb a:hover { color: var(--accent-deep); }

/* prose (legal) */
.prose { max-width: 820px; }
.prose h2 { font-size: clamp(1.6rem, 3.5vw, 2.2rem); margin: 48px 0 16px; }
.prose h3 { font-size: 1.2rem; margin: 30px 0 10px; }
.prose p { color: var(--fg-soft); margin-bottom: 16px; }
.prose ul { display: grid; gap: 10px; margin: 6px 0 20px; }
.prose ul li { position: relative; padding-left: 24px; color: var(--fg-soft); }
.prose ul li::before { content: ""; position: absolute; left: 0; top: 11px; width: 9px; height: 9px; background: var(--accent); border-radius: 2px; transform: rotate(45deg); }
.prose a { color: var(--accent-deep); text-decoration: underline; }
.prose__meta { font-family: var(--mono); font-size: 0.82rem; color: var(--muted); text-transform: uppercase; letter-spacing: 0.06em; margin-bottom: 30px; }

/* thanks page */
.thanks { min-height: 78vh; display: grid; place-items: center; text-align: center; padding: 120px 0 80px; position: relative; overflow: hidden; }
.thanks__inner { max-width: 620px; position: relative; z-index: 2; }
.thanks__check { width: 84px; height: 84px; border-radius: 50%; background: var(--accent); color: #fff; display: grid; place-items: center; margin: 0 auto 32px; box-shadow: 0 12px 30px -8px rgba(41,171,226,0.6); }
.thanks h1 { font-size: clamp(2.4rem, 6vw, 4rem); margin-bottom: 20px; }
.thanks p { color: var(--fg-soft); font-size: 1.1rem; margin-bottom: 34px; }
.thanks .shape--a { top: 18%; left: 14%; width: 50px; height: 50px; background: var(--yellow); border-radius: 50%; opacity: 0.8; }
.thanks .shape--b { bottom: 22%; right: 16%; color: var(--pink); --s: 20px; }

/* =============================================================
   FOOTER
   ============================================================= */
.footer { background: var(--ink); color: rgba(255,255,255,0.72); padding: clamp(64px, 8vw, 96px) 0 40px; position: relative; overflow: hidden; }
.footer__top { display: grid; gap: 44px; grid-template-columns: 1fr; }
@media (min-width: 780px) { .footer__top { grid-template-columns: 1.6fr 1fr 1fr; } }
@media (min-width: 1040px) { .footer__top { grid-template-columns: 2fr 1fr 1fr 1.2fr; } }
.footer .brand { color: #fff; }
.footer__about { max-width: 340px; margin-top: 22px; font-size: 0.96rem; line-height: 1.7; }
.footer h4 { font-family: var(--mono); font-size: 0.8rem; text-transform: uppercase; letter-spacing: 0.1em; color: rgba(255,255,255,0.5); margin-bottom: 20px; font-weight: 400; }
.footer__links { display: grid; gap: 12px; }
.footer__links a { color: rgba(255,255,255,0.72); font-size: 0.96rem; transition: color 0.25s var(--ease); }
.footer__links a:hover { color: var(--accent); }
.footer__contact p { font-size: 0.96rem; margin-bottom: 10px; }
.footer__contact a:hover { color: var(--accent); }
.footer__bottom {
  margin-top: clamp(48px, 7vw, 72px); padding-top: 28px; border-top: 1px solid rgba(255,255,255,0.12);
  display: flex; flex-direction: column; gap: 16px; justify-content: space-between; align-items: flex-start;
  font-size: 0.85rem; color: rgba(255,255,255,0.5);
}
@media (min-width: 720px) { .footer__bottom { flex-direction: row; align-items: center; } }
.footer__bottom nav { display: flex; gap: 22px; flex-wrap: wrap; }
.footer__bottom nav a:hover { color: var(--accent); }
.footer .shape--a { bottom: -30px; right: 6%; width: 120px; height: 120px; border: 12px solid rgba(41,171,226,0.14); border-radius: 50%; }

/* =============================================================
   COOKIE popup
   ============================================================= */
.cookie-popup { position: fixed; inset: 0; z-index: 9999; display: flex; align-items: flex-end; justify-content: flex-start; padding: 24px; background: rgba(28,36,43,0.4); backdrop-filter: blur(4px); -webkit-backdrop-filter: blur(4px); opacity: 0; pointer-events: none; transition: opacity 0.3s var(--ease); }
.cookie-popup[data-open="true"] { opacity: 1; pointer-events: all; }
.cookie-popup__card { background: var(--bg); padding: 30px 32px; max-width: 460px; border-radius: 18px; box-shadow: var(--shadow-lg); border: 1px solid var(--border); transform: translateY(16px); transition: transform 0.4s var(--ease); }
.cookie-popup[data-open="true"] .cookie-popup__card { transform: translateY(0); }
.cookie-popup__label { font-family: var(--mono); font-size: 0.72rem; letter-spacing: 0.12em; text-transform: uppercase; color: var(--accent-deep); margin-bottom: 12px; }
.cookie-popup__card h3 { font-size: 1.3rem; margin-bottom: 12px; }
.cookie-popup__card p { font-size: 0.92rem; color: var(--fg-soft); line-height: 1.6; }
.cookie-popup__card p a { color: var(--accent-deep); text-decoration: underline; }
.cookie-popup__actions { display: flex; gap: 12px; margin-top: 22px; }
.cookie-popup__actions button { padding: 11px 24px; border-radius: 9999px; border: 1.5px solid var(--border-strong); font-weight: 600; font-size: 0.9rem; transition: all 0.25s var(--ease); }
.cookie-popup__actions button:first-child:hover { border-color: var(--fg); }
.cookie-popup__actions button:last-child { background: var(--accent); color: #fff; border-color: var(--accent); flex: 1; }
.cookie-popup__actions button:last-child:hover { background: var(--accent-deep); border-color: var(--accent-deep); }

/* =============================================================
   REVEAL
   ============================================================= */
.reveal { opacity: 0; transform: translateY(24px); transition: opacity 0.65s var(--ease), transform 0.65s var(--ease); }
.reveal.is-visible { opacity: 1; transform: none; }
.reveal[style*="--i"] { transition-delay: calc(var(--i) * 80ms); }

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