/* Grow with Sami — stylesheet (dark theme) */

:root {
  --ink: #eef1f6;
  --ink-soft: #99a3ba;
  --bg: #0f1422;
  --bg-soft: #151b2b;
  --bg-deep: #080b14;
  --card: #1a2133;
  --brand: #ff3b54;
  --brand-dark: #ff6074;
  --brand-tint: rgba(255, 59, 84, .14);
  --accent: #5b9bff;
  --accent-dark: #82b2ff;
  --accent-tint: rgba(91, 155, 255, .13);
  --line: #29324a;
  --amber: #f0b352;
  --shadow-sm: 0 1px 2px rgba(0, 0, 0, .3), 0 8px 20px rgba(0, 0, 0, .28);
  --shadow-md: 0 16px 44px rgba(0, 0, 0, .5);
  --radius: 16px;
  --radius-sm: 10px;
  --maxw: 1140px;
  --font: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  --font-display: "Space Grotesk", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
}

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

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

body {
  font-family: var(--font);
  color: var(--ink);
  background: var(--bg);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  font-size: 17px;
}

img { max-width: 100%; display: block; }
a { color: var(--accent); text-decoration: none; }
a:hover { text-decoration: underline; }

h1, h2, h3 { font-family: var(--font-display); line-height: 1.18; letter-spacing: -0.02em; font-weight: 700; }
h1 { font-size: clamp(2.3rem, 5vw, 3.6rem); }
h2 { font-size: clamp(1.8rem, 3.4vw, 2.6rem); }
h3 { font-size: 1.25rem; }

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

.sr-only {
  position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px;
  overflow: hidden; clip: rect(0 0 0 0); white-space: nowrap; border: 0;
}
.skip-link {
  position: absolute; left: 12px; top: -48px; background: var(--accent); color: #fff;
  padding: 10px 16px; border-radius: 8px; z-index: 200; transition: top .2s;
}
.skip-link:focus { top: 12px; }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex; align-items: center; gap: 8px; justify-content: center;
  font-family: var(--font-display);
  background: var(--brand); color: #fff; font-weight: 700; font-size: .98rem;
  padding: 13px 22px; border-radius: 999px; border: 2px solid var(--brand);
  cursor: pointer; transition: transform .12s ease, background .15s ease, box-shadow .15s ease;
  text-decoration: none; box-shadow: 0 6px 22px rgba(255, 59, 84, .28);
}
.btn:hover { background: var(--brand-dark); border-color: var(--brand-dark); text-decoration: none; transform: translateY(-2px); box-shadow: 0 12px 32px rgba(255, 59, 84, .42); }
.btn-lg { padding: 16px 30px; font-size: 1.05rem; }
.btn-sm { padding: 9px 16px; font-size: .9rem; }
.btn-ghost { background: transparent; color: var(--ink); border-color: var(--line); box-shadow: none; }
.btn-ghost:hover { background: var(--bg-soft); color: var(--ink); border-color: var(--ink-soft); box-shadow: none; }
.btn-light { background: #fff; color: var(--bg); border-color: #fff; box-shadow: 0 6px 22px rgba(0, 0, 0, .35); }
.btn-light:hover { background: #e8ebf2; border-color: #e8ebf2; color: var(--bg); box-shadow: 0 12px 32px rgba(0, 0, 0, .45); }
.btn-wa { background: #25d366; border-color: #25d366; color: #06311a; box-shadow: 0 6px 22px rgba(37, 211, 102, .3); }
.btn-wa:hover { background: #1eb858; border-color: #1eb858; color: #06311a; box-shadow: 0 12px 32px rgba(37, 211, 102, .42); }

/* ---------- Header ---------- */
.site-header {
  position: sticky; top: 0; z-index: 100; background: rgba(15, 20, 34, .82);
  backdrop-filter: blur(12px); border-bottom: 1px solid var(--line);
}
.header-inner { display: flex; align-items: center; justify-content: space-between; height: 72px; gap: 16px; }
.logo { display: flex; align-items: center; gap: 10px; font-family: var(--font-display); font-weight: 700; color: var(--ink); font-size: 1.12rem; }
.logo:hover { text-decoration: none; }
.logo-photo {
  width: 40px; height: 40px; border-radius: 50%; flex-shrink: 0;
  background: var(--bg-soft) url("../img/logo.png") no-repeat 48% 1%;
  background-size: 155%;
  box-shadow: 0 0 0 2px var(--line);
}
.logo-text small { display: block; font-size: .68rem; font-weight: 600; color: var(--ink-soft); letter-spacing: .02em; }

.main-nav { display: flex; align-items: center; gap: 8px; }
.nav-list { display: flex; align-items: center; gap: 4px; list-style: none; }
.nav-list a:not(.btn) {
  color: var(--ink-soft); font-weight: 600; font-size: .96rem; padding: 8px 12px;
  border-radius: 8px;
}
.nav-list a:not(.btn):hover { color: var(--ink); background: var(--bg-soft); text-decoration: none; }

.lang-switch { display: flex; gap: 2px; margin: 0 6px; font-size: .85rem; font-weight: 700; }
.lang-switch a { padding: 4px 7px; border-radius: 6px; color: var(--ink-soft); }
.lang-switch a.active { background: var(--accent-tint); color: var(--accent); }
.lang-switch a:hover { text-decoration: none; background: var(--bg-soft); }

.nav-toggle {
  display: none; width: 42px; height: 42px; border: 1px solid var(--line);
  background: var(--card); border-radius: 10px; cursor: pointer; position: relative;
}
.nav-toggle-bar, .nav-toggle-bar::before, .nav-toggle-bar::after {
  content: ""; position: absolute; left: 50%; width: 18px; height: 2px;
  background: var(--ink); transform: translateX(-50%); transition: .2s;
}
.nav-toggle-bar { top: 50%; margin-top: -1px; }
.nav-toggle-bar::before { top: -6px; }
.nav-toggle-bar::after { top: 6px; }

/* ---------- Hero ---------- */
.hero { position: relative; overflow: hidden; padding: 80px 0 64px; background: var(--bg); }
.hero::before {
  content: ""; position: absolute; inset: -30%; z-index: 0;
  background:
    radial-gradient(circle at 28% 30%, rgba(91, 155, 255, .30), transparent 55%),
    radial-gradient(circle at 78% 16%, rgba(255, 59, 84, .26), transparent 52%);
  animation: heroFloat 18s ease-in-out infinite alternate;
}
@keyframes heroFloat {
  from { transform: translate(0, 0) scale(1); }
  to { transform: translate(2.5%, 3.5%) scale(1.1); }
}
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(26px); }
  to { opacity: 1; transform: none; }
}
.hero-inner { position: relative; z-index: 1; display: grid; grid-template-columns: 1.15fr .85fr; gap: 56px; align-items: center; }
.hero-text { animation: fadeUp .7s ease both; }
.eyebrow {
  display: inline-block; font-family: var(--font-display); font-weight: 600;
  font-size: .76rem; letter-spacing: .1em; text-transform: uppercase;
  color: var(--accent); margin-bottom: 18px;
  background: rgba(91, 155, 255, .16); border: 1px solid rgba(91, 155, 255, .32);
  padding: 6px 14px; border-radius: 999px;
}
.hero h1 { margin-bottom: 18px; font-size: clamp(2.6rem, 6vw, 4.2rem); }
.hero h1 .accent { color: var(--brand); }
.lead { font-size: 1.18rem; color: var(--ink-soft); max-width: 36ch; }
.hero .lead { margin-bottom: 28px; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 14px; margin-bottom: 26px; }
.hero-trust { list-style: none; display: flex; flex-wrap: wrap; gap: 8px 22px; font-size: .92rem; color: var(--ink-soft); }
.hero-trust li { display: flex; align-items: center; gap: 7px; }
.hero-trust li::before { content: "✓"; color: var(--brand); font-weight: 900; }

/* Hero visual card */
.hero-card {
  background: var(--card); border: 1px solid var(--line); border-radius: var(--radius);
  padding: 24px; box-shadow: var(--shadow-md);
  animation: fadeUp .7s .12s ease both;
}
.hero-card-title { font-family: var(--font-display); font-size: .82rem; font-weight: 600; text-transform: uppercase; letter-spacing: .06em; color: var(--ink-soft); margin-bottom: 16px; }
.hero-card-row {
  display: flex; align-items: center; gap: 12px; padding: 12px 0;
  border-bottom: 1px solid var(--line); font-size: .95rem;
}
.hero-card-row:last-of-type { border-bottom: 0; }
.hero-card-row span:nth-child(2) { flex: 1; color: var(--ink-soft); }
.hero-card-row strong.up { color: var(--accent); font-weight: 700; }
.dot { width: 9px; height: 9px; border-radius: 50%; flex-shrink: 0; }
.dot-green { background: var(--brand); }
.dot-blue { background: var(--accent); }
.dot-amber { background: var(--amber); }
.hero-card-chart { display: flex; align-items: flex-end; gap: 6px; height: 70px; margin-top: 18px; }
.hero-card-chart span { flex: 1; background: rgba(91, 155, 255, .22); border-radius: 4px 4px 0 0; }
.hero-card-chart span:nth-child(1) { height: 28%; }
.hero-card-chart span:nth-child(2) { height: 40%; }
.hero-card-chart span:nth-child(3) { height: 35%; }
.hero-card-chart span:nth-child(4) { height: 56%; }
.hero-card-chart span:nth-child(5) { height: 68%; }
.hero-card-chart span:nth-child(6) { height: 82%; }
.hero-card-chart span:nth-child(7) { height: 100%; background: var(--accent); }

/* Hero photo */
.hero-visual {
  position: relative; max-width: 380px; margin: 0 auto;
  padding: 4px; border-radius: 20px;
  background: linear-gradient(150deg, var(--brand), var(--accent));
  box-shadow: 0 24px 60px rgba(0, 0, 0, .55);
  animation: fadeUp .7s .12s ease both;
}
.hero-photo {
  display: block; width: 100%; height: auto; aspect-ratio: 1 / 1;
  object-fit: cover; object-position: center 10%;
  border-radius: 16px;
}
.hero-badge {
  position: absolute; left: 16px; bottom: 16px;
  background: var(--card); border: 1px solid var(--line); border-radius: 12px;
  padding: 11px 18px; box-shadow: var(--shadow-md);
}
.hero-badge strong { display: block; font-family: var(--font-display); font-size: .98rem; color: var(--ink); }
.hero-badge span { font-size: .82rem; color: var(--ink-soft); }

/* ---------- Sections ---------- */
.section { padding: 76px 0; }
.section-alt { background: var(--bg-soft); }
.section-2026 { background: var(--accent-tint); }
.ai-note { text-align: center; color: var(--ink-soft); font-size: 1.02rem; margin-top: 34px; }

/* Scroll reveal */
.reveal { opacity: 0; transform: translateY(28px); transition: opacity .6s ease, transform .6s ease; }
.reveal.in { opacity: 1; transform: none; }
.grid .card:nth-child(2), .steps .step:nth-child(2) { transition-delay: .1s; }
.grid .card:nth-child(3), .steps .step:nth-child(3) { transition-delay: .2s; }
.grid .card:nth-child(4), .steps .step:nth-child(4) { transition-delay: .3s; }
.section-head { max-width: 640px; margin-bottom: 44px; }
.section-head.center { margin-left: auto; margin-right: auto; text-align: center; }
.section-head p.muted { color: var(--ink-soft); font-size: 1.08rem; margin-top: 12px; }

/* Trust strip */
.trust-strip { padding: 26px 0; border-bottom: 1px solid var(--line); }
.trust-strip .container { display: flex; flex-wrap: wrap; align-items: center; gap: 10px 28px; }
.trust-strip p { font-weight: 700; color: var(--ink-soft); font-size: .9rem; }
.trust-strip ul { display: flex; flex-wrap: wrap; gap: 10px 24px; list-style: none; }
.trust-strip li { font-weight: 600; color: var(--ink-soft); }

/* Grid + cards */
.grid { display: grid; gap: 24px; }
.grid-3 { grid-template-columns: repeat(3, 1fr); }
.grid-2 { grid-template-columns: repeat(2, 1fr); }
.card {
  background: var(--card); border: 1px solid var(--line); border-radius: var(--radius);
  padding: 30px 26px; box-shadow: var(--shadow-sm); transition: transform .15s, box-shadow .15s, border-color .15s;
}
.card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); border-color: var(--accent); }
.card-icon {
  width: 52px; height: 52px; border-radius: 13px; background: var(--accent-tint);
  display: grid; place-items: center; font-size: 1.5rem; margin-bottom: 16px;
  color: var(--accent);
}
.card-icon svg { width: 26px; height: 26px; }
.card h3 { margin-bottom: 8px; }
.card p { color: var(--ink-soft); font-size: .98rem; }
.card ul { margin: 14px 0 0; padding-left: 0; list-style: none; }
.card ul li { font-size: .93rem; color: var(--ink-soft); padding: 5px 0 5px 24px; position: relative; }
.card ul li::before { content: "✓"; position: absolute; left: 0; color: var(--brand); font-weight: 900; }

/* Steps */
.steps { list-style: none; display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; counter-reset: s; }
.step { position: relative; padding-top: 8px; }
.step-num {
  width: 44px; height: 44px; border-radius: 12px; background: var(--accent); color: #fff;
  font-family: var(--font-display);
  display: grid; place-items: center; font-weight: 700; font-size: 1.1rem; margin-bottom: 14px;
}
.step h3 { margin-bottom: 6px; }
.step p { color: var(--ink-soft); font-size: .96rem; }

/* Why / split */
.split { display: grid; grid-template-columns: 1fr 1fr; gap: 56px; align-items: center; }
.checklist { list-style: none; display: grid; gap: 14px; }
.checklist li {
  position: relative; padding-left: 38px; font-size: 1rem; color: var(--ink);
}
.checklist li::before {
  content: "✓"; position: absolute; left: 0; top: -2px; width: 26px; height: 26px;
  background: var(--brand-tint); color: var(--brand); border-radius: 8px;
  display: grid; place-items: center; font-weight: 900; font-size: .9rem;
}
.checklist li strong { display: block; }
.checklist li span { color: var(--ink-soft); font-size: .93rem; }

.about-intro { color: var(--ink-soft); font-size: 1.02rem; margin-top: 16px; }

.about-card {
  background: var(--card); border: 1px solid var(--line); border-radius: var(--radius);
  padding: 30px; box-shadow: var(--shadow-sm);
}
.about-photo {
  display: block; width: 140px; height: 140px; object-fit: cover;
  object-position: center 12%; border-radius: 50%; margin-bottom: 18px;
  box-shadow: 0 0 0 4px var(--bg-soft), 0 8px 22px rgba(0, 0, 0, .45);
}
.about-card h3 { margin-bottom: 14px; }
.about-card p { color: var(--ink-soft); margin-bottom: 12px; font-size: .98rem; }
.tags { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 16px; }
.tag {
  font-size: .82rem; font-weight: 700; color: var(--accent);
  background: var(--accent-tint); padding: 5px 12px; border-radius: 999px;
}

/* Case studies */
.case {
  background: var(--card); border: 1px solid var(--line); border-radius: var(--radius);
  padding: 30px; box-shadow: var(--shadow-sm);
}
.case-head { display: flex; align-items: center; gap: 12px; margin-bottom: 18px; }
.case-flag { font-size: 1.6rem; }
.case-head h3 { margin: 0; }
.case-head span { display: block; font-size: .85rem; color: var(--ink-soft); font-weight: 600; }
.case-block { margin-bottom: 14px; }
.case-block strong { font-size: .78rem; text-transform: uppercase; letter-spacing: .06em; color: var(--accent); }
.case-block p { color: var(--ink-soft); font-size: .96rem; margin-top: 2px; }
.case-metrics { display: flex; flex-wrap: wrap; gap: 22px; margin-top: 18px; padding-top: 18px; border-top: 1px solid var(--line); }
.metric strong { display: block; font-family: var(--font-display); font-size: 1.6rem; font-weight: 700; color: var(--brand); }
.metric span { font-size: .82rem; color: var(--ink-soft); }
.case-foot { margin-top: 18px; padding-top: 18px; border-top: 1px solid var(--line); }
.case-foot .tags { margin-top: 0; }
.case-foot .case-link { display: inline-block; margin-top: 14px; font-weight: 700; font-size: .93rem; }
.note {
  font-size: .85rem; color: var(--ink-soft); background: rgba(240, 179, 82, .1); border: 1px dashed var(--amber);
  border-radius: var(--radius-sm); padding: 12px 16px; margin-top: 22px;
}

/* Comparison */
.compare-card {
  background: var(--card); border: 1px solid var(--line);
  border-radius: var(--radius); padding: 30px 28px;
}
.compare-card--mine {
  border-color: var(--accent);
  box-shadow: 0 0 0 1px var(--accent), 0 20px 50px rgba(91, 155, 255, .14);
}
.compare-card h3 { font-size: 1.15rem; margin-bottom: 18px; }
.compare-card--mine h3 { color: var(--accent); }
.compare-card--them h3 { color: var(--ink-soft); }
.compare-card ul { list-style: none; display: grid; gap: 13px; }
.compare-card li { position: relative; padding-left: 32px; font-size: .97rem; }
.compare-card li::before {
  position: absolute; left: 0; top: 1px; width: 21px; height: 21px;
  border-radius: 50%; display: grid; place-items: center; font-weight: 900; font-size: .7rem;
}
.compare-card--mine li { color: var(--ink); }
.compare-card--mine li::before { content: "✓"; background: var(--accent); color: #fff; }
.compare-card--them li { color: var(--ink-soft); }
.compare-card--them li::before { content: "✕"; border: 1px solid var(--line); color: var(--ink-soft); }

/* Quotes */
.testimonial-single { max-width: 640px; margin: 0 auto; }
.quote-logo {
  width: 50px; height: 50px; border-radius: 12px; background: #fff;
  display: grid; place-items: center; flex-shrink: 0; padding: 7px;
}
.quote-logo img { width: 100%; height: 100%; object-fit: contain; display: block; }
.quote {
  background: var(--card); border: 1px solid var(--line); border-radius: var(--radius);
  padding: 28px; box-shadow: var(--shadow-sm); display: flex; flex-direction: column;
}
.quote .stars { color: var(--amber); margin-bottom: 12px; letter-spacing: 2px; }
.quote p { font-size: 1.02rem; color: var(--ink); margin-bottom: 18px; flex: 1; }
.quote footer { display: flex; align-items: center; gap: 12px; }
.quote .avatar {
  width: 42px; height: 42px; border-radius: 50%; background: var(--brand-tint);
  color: var(--brand); display: grid; place-items: center; font-weight: 800;
}
.quote footer strong { display: block; font-size: .95rem; }
.quote footer span { font-size: .85rem; color: var(--ink-soft); }

/* FAQ */
.faq { max-width: 760px; margin: 0 auto; }
.faq-item { border-bottom: 1px solid var(--line); }
.faq-q {
  width: 100%; text-align: left; background: none; border: 0; cursor: pointer;
  padding: 22px 40px 22px 0; font-size: 1.08rem; font-weight: 700; color: var(--ink);
  position: relative; font-family: var(--font-display);
}
.faq-q::after {
  content: "+"; position: absolute; right: 4px; top: 50%; transform: translateY(-50%);
  font-size: 1.5rem; font-weight: 400; color: var(--accent); transition: transform .2s;
}
.faq-q[aria-expanded="true"]::after { transform: translateY(-50%) rotate(45deg); }
.faq-a { max-height: 0; overflow: hidden; transition: max-height .25s ease; }
.faq-a p { padding: 0 40px 22px 0; color: var(--ink-soft); }

/* Contact */
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 48px; }
.contact-form { display: grid; gap: 16px; }
.field label { font-weight: 700; font-size: .9rem; display: block; margin-bottom: 6px; }
.field input, .field textarea, .field select {
  width: 100%; padding: 12px 14px; border: 1px solid var(--line); border-radius: var(--radius-sm);
  font-family: inherit; font-size: 1rem; color: var(--ink); background: var(--bg);
}
.field input::placeholder, .field textarea::placeholder { color: #5d6886; }
.field textarea { min-height: 120px; resize: vertical; }
.field input:focus, .field textarea:focus, .field select:focus {
  outline: none; border-color: var(--accent); box-shadow: 0 0 0 3px var(--accent-tint);
}
.contact-side { display: grid; gap: 16px; align-content: start; }
.contact-line {
  display: flex; gap: 14px; align-items: flex-start;
  background: var(--card); border: 1px solid var(--line); border-radius: var(--radius-sm); padding: 18px;
}
.contact-line .ci { font-size: 1.4rem; }
.contact-line strong { display: block; font-size: .95rem; color: var(--ink); }
.contact-line a, .contact-line span { color: var(--ink-soft); font-size: .95rem; }
.form-status { display: none; padding: 12px 16px; border-radius: var(--radius-sm); font-size: .95rem; }
.form-status--ok { display: block; background: rgba(37, 211, 102, .12); border: 1px solid rgba(37, 211, 102, .4); color: #7ee2a4; }
.form-status--err { display: block; background: var(--brand-tint); border: 1px solid var(--brand); color: var(--brand-dark); }

/* CTA band */
.cta { background: var(--bg-deep); color: #fff; padding: 70px 0; border-top: 1px solid var(--line); }
.cta-inner { text-align: center; max-width: 620px; margin: 0 auto; }
.cta h2 { color: #fff; margin-bottom: 14px; }
.cta p { color: var(--ink-soft); font-size: 1.1rem; margin-bottom: 28px; }
.cta-actions { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }

/* Footer */
.site-footer { background: var(--bg-deep); color: var(--ink-soft); padding: 56px 0 28px; }
.cta + .site-footer { padding-top: 36px; border-top: 1px solid rgba(255, 255, 255, .06); }
.footer-inner { display: grid; grid-template-columns: 2fr 1fr 1fr; gap: 36px; }
.footer-brand .logo { color: var(--ink); margin-bottom: 12px; }
.footer-brand p { font-size: .94rem; max-width: 30ch; }
.site-footer h2 { font-size: .82rem; text-transform: uppercase; letter-spacing: .08em; color: var(--ink); margin-bottom: 14px; }
.site-footer ul { list-style: none; display: grid; gap: 9px; }
.site-footer a { color: var(--ink-soft); font-size: .94rem; }
.site-footer a:hover { color: var(--ink); }
.footer-bottom {
  display: flex; justify-content: space-between; flex-wrap: wrap; gap: 10px;
  margin-top: 40px; padding-top: 22px; border-top: 1px solid rgba(255, 255, 255, .08);
  font-size: .86rem;
}

/* Floating WhatsApp */
.wa-float {
  position: fixed; right: 20px; bottom: 20px; z-index: 90;
  width: 56px; height: 56px; border-radius: 50%; background: #25d366;
  display: grid; place-items: center; box-shadow: 0 8px 24px rgba(37, 211, 102, .45);
  font-size: 1.6rem; transition: transform .15s;
}
.wa-float:hover { transform: scale(1.08); text-decoration: none; }

/* ---------- Responsive ---------- */
@media (max-width: 900px) {
  .hero-inner, .split, .contact-grid { grid-template-columns: 1fr; gap: 36px; }
  .grid-3, .grid-2 { grid-template-columns: 1fr; }
  .steps { grid-template-columns: 1fr 1fr; }
  .hero-card { order: -1; }
  .nav-toggle { display: block; }
  .nav-list {
    position: absolute; top: 72px; left: 0; right: 0; background: var(--card);
    flex-direction: column; align-items: stretch; gap: 0; padding: 12px;
    border-bottom: 1px solid var(--line); box-shadow: var(--shadow-md);
    display: none;
  }
  .nav-list.open { display: flex; }
  .nav-list li { width: 100%; }
  .nav-list a:not(.btn) { display: block; padding: 12px; }
  .nav-list .btn { width: 100%; margin-top: 6px; }
  .lang-switch { justify-content: center; padding: 8px 0; }
}
@media (max-width: 540px) {
  body { font-size: 16px; }
  .section { padding: 56px 0; }
  .steps { grid-template-columns: 1fr; }
  .hero { padding: 48px 0 40px; }
  .footer-inner { grid-template-columns: 1fr; gap: 28px; }
  .hero-actions .btn { width: 100%; }
}

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

/* ---------- Blog ---------- */
.post-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 24px; }
.post-card {
  background: var(--card); border: 1px solid var(--line); border-radius: var(--radius);
  box-shadow: var(--shadow-sm); transition: transform .15s, box-shadow .15s, border-color .15s;
}
.post-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); border-color: var(--accent); }
.post-card a { display: block; padding: 28px 26px; color: var(--ink); }
.post-card a:hover { text-decoration: none; }
.post-tag {
  display: inline-block; font-family: var(--font-display); font-weight: 600;
  font-size: .72rem; letter-spacing: .08em; text-transform: uppercase;
  color: var(--accent); background: var(--accent-tint);
  padding: 4px 11px; border-radius: 999px; margin-bottom: 14px;
}
.post-card h2 { font-size: 1.3rem; margin-bottom: 10px; }
.post-card p { color: var(--ink-soft); font-size: .98rem; margin-bottom: 16px; }
.post-link { font-family: var(--font-display); font-weight: 700; font-size: .95rem; color: var(--accent); }

.article {
  max-width: 760px; margin: 0 auto;
  background: var(--bg-soft); border: 1px solid var(--line);
  border-radius: var(--radius); padding: 48px 52px;
}
.breadcrumb { font-size: .9rem; color: var(--ink-soft); margin-bottom: 22px; }
.breadcrumb a { color: var(--ink-soft); }
.breadcrumb a:hover { color: var(--ink); }
.article-head { margin-bottom: 30px; padding-bottom: 26px; border-bottom: 1px solid var(--line); }
.article-head h1 { font-size: clamp(2rem, 4vw, 2.7rem); margin: 8px 0 18px; }
.article-meta { display: flex; align-items: center; gap: 12px; color: var(--ink-soft); font-size: .92rem; }
.article-meta .avatar {
  width: 44px; height: 44px; border-radius: 50%; flex-shrink: 0;
  background: var(--bg) url("../img/logo.png") no-repeat 48% 1%;
  background-size: 155%; box-shadow: 0 0 0 2px var(--line);
}
.article-body > * { margin-bottom: 22px; }
.article-body p, .article-body li { color: #d9dee8; font-size: 1.12rem; line-height: 1.8; }
.article-body > p:first-of-type { font-size: 1.26rem; line-height: 1.7; color: var(--ink); }
.article-body h2 {
  font-size: 1.5rem; color: var(--ink); margin-top: 38px;
  padding-left: 14px; border-left: 3px solid var(--brand);
}
.article-body ul { padding-left: 22px; display: grid; gap: 10px; }
.article-body li::marker { color: var(--brand); }
.article-body strong { color: #fff; }
.article-callout {
  background: var(--accent-tint); border: 1px solid rgba(91, 155, 255, .3);
  border-radius: var(--radius-sm); padding: 22px 26px;
}
.article-callout strong {
  display: block; font-family: var(--font-display); color: var(--accent-dark);
  font-size: .8rem; text-transform: uppercase; letter-spacing: .08em; margin-bottom: 12px;
}
.article-callout ul { padding-left: 20px; display: grid; gap: 8px; margin: 0; }
.article-callout li { color: var(--ink); font-size: 1rem; }
.article-cta {
  background: var(--card); border: 1px solid var(--line); border-radius: var(--radius);
  padding: 30px 28px; margin-top: 40px; text-align: center;
}
.article-cta h2 { font-size: 1.35rem; margin-bottom: 10px; }
.article-cta p { color: var(--ink-soft); margin-bottom: 20px; }

@media (max-width: 720px) {
  .post-grid { grid-template-columns: 1fr; }
  .article { padding: 32px 24px; }
}

/* ---------- Sami says ---------- */
.sami-says {
  display: flex; align-items: center; gap: 16px;
  max-width: 640px; margin: 44px auto 0;
}
.sami-says-avatar {
  width: 96px; height: 96px; border-radius: 50%; flex-shrink: 0;
  background-color: var(--bg-soft);
  background-size: cover; background-position: center; background-repeat: no-repeat;
  box-shadow: 0 0 0 3px var(--line);
}
.sami-says-bubble {
  position: relative;
  background: var(--card); border: 1px solid var(--line);
  border-radius: 14px; padding: 16px 20px; box-shadow: var(--shadow-sm);
}
.sami-says-bubble::before {
  content: ""; position: absolute; left: -11px; top: 50%; transform: translateY(-50%);
  border-top: 10px solid transparent; border-bottom: 10px solid transparent;
  border-right: 11px solid var(--line);
}
.sami-says-bubble::after {
  content: ""; position: absolute; left: -9px; top: 50%; transform: translateY(-50%);
  border-top: 9px solid transparent; border-bottom: 9px solid transparent;
  border-right: 10px solid var(--card);
}
.sami-says-name {
  display: block; font-family: var(--font-display); font-weight: 700;
  font-size: .78rem; letter-spacing: .04em; text-transform: uppercase;
  color: var(--brand); margin-bottom: 4px;
}
.sami-says-bubble p { margin: 0; color: var(--ink); font-size: 1.02rem; line-height: 1.55; }

@media (max-width: 540px) {
  .sami-says { gap: 12px; }
  .sami-says-avatar { width: 72px; height: 72px; }
}

/* ---------- Platform logos ---------- */
.platforms { margin-top: 44px; text-align: center; }
.platforms-label {
  font-family: var(--font-display); font-weight: 600;
  font-size: .76rem; letter-spacing: .12em; text-transform: uppercase;
  color: var(--ink-soft); margin-bottom: 20px;
}
.platforms-row {
  display: flex; flex-wrap: wrap; justify-content: center;
  align-items: center; gap: 16px 40px;
}
.platforms-row img { width: 30px; height: 30px; display: block; }

/* Platform logos inside the hero */
.hero-platforms {
  display: flex; align-items: center; flex-wrap: wrap;
  gap: 11px 18px; margin-top: 28px;
}
.hero-platforms .hpl {
  font-family: var(--font-display); font-weight: 600;
  font-size: .74rem; letter-spacing: .1em; text-transform: uppercase;
  color: var(--ink-soft); margin-right: 4px;
}
.hero-platforms img { width: 26px; height: 26px; display: block; }
