/* ==========================================================================
   FLOTT — Dealer Stock Management
   Design system + shared layout
   ========================================================================== */

:root {
  /* Color — sampled from the real FLOTT app UI, muted for a premium feel */
  --bg: #080b12;
  --bg-alt: #0a0e16;
  --surface: #111826;
  --surface-2: #17202f;
  --surface-3: #1c2637;
  --border: #202b40;
  --border-soft: #171f2d;

  --text-primary: #eef2f8;
  --text-secondary: #8b97b0;
  --text-tertiary: #55617a;

  --accent: #2fb8d4;
  --accent-strong: #237f96;
  --accent-soft: rgba(47, 184, 212, 0.09);
  --accent-border: rgba(47, 184, 212, 0.28);
  --blue: #3568c9;

  --success: #34d399;
  --success-soft: rgba(52, 211, 153, 0.14);
  --warning: #f2b544;
  --warning-soft: rgba(242, 181, 68, 0.14);
  --danger: #fb7c8e;
  --danger-soft: rgba(251, 79, 100, 0.13);

  --radius-lg: 22px;
  --radius-md: 16px;
  --radius-sm: 11px;
  --radius-pill: 999px;

  --shadow-card: 0 1px 0 rgba(255, 255, 255, 0.025) inset, 0 24px 48px -28px rgba(0, 0, 0, 0.7);
  --shadow-glow: 0 30px 70px -34px rgba(47, 184, 212, 0.14);

  --font-display: "Plus Jakarta Sans", "Inter", -apple-system, sans-serif;
  --font-body: "Inter", -apple-system, sans-serif;

  --container: 1200px;
  --header-h: 76px;
}

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

html {
  scroll-behavior: smooth;
  overflow-x: hidden;
  max-width: 100%;
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }
  * {
    animation-duration: 0.001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.001ms !important;
  }
}

body {
  background: var(--bg);
  color: var(--text-primary);
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

/* Global text formatting */

p {
  text-align: left;
  max-width: 62ch;
}

h1,
h2,
h3,
h4 {
  text-wrap: balance;
}

p,
li {
  text-wrap: pretty;
}

/* Keep deliberately centered display statements centered */

.section-head.center p,
.origin-quote p,
.statement p,
.hero-stat-section p,
.vs-side p {
  text-align: center;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -1;
  background:
    radial-gradient(720px 460px at 82% -8%, rgba(53, 104, 201, 0.09), transparent 62%),
    radial-gradient(560px 380px at 8% 6%, rgba(47, 184, 212, 0.05), transparent 62%);
  pointer-events: none;
}

img {
  max-width: 100%;
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
}

ul {
  list-style: none;
}

button {
  font: inherit;
  cursor: pointer;
}

input,
textarea,
select {
  font: inherit;
  color: inherit;
}

h1,
h2,
h3,
h4 {
  font-family: var(--font-display);
  font-weight: 600;
  line-height: 1.16;
  letter-spacing: -0.01em;
  color: var(--text-primary);
}

h1 {
  font-weight: 700;
}

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

@media (max-width: 640px) {
  .container {
    padding: 0 20px;
  }
}

section {
  position: relative;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 13px;
  color: var(--accent);
  margin-bottom: 14px;
}

.section-head {
  max-width: 640px;
  margin-bottom: 48px;
}

.section-head h2 {
  font-size: clamp(28px, 3.4vw, 40px);
  margin-bottom: 14px;
}

.section-head p {
  color: var(--text-secondary);
  font-size: 17px;
  max-width: 560px;
}

.section-head.center {
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}

/* ---------------------------------- Buttons ------------------------------- */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 26px;
  border-radius: var(--radius-pill);
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 15px;
  border: 1px solid transparent;
  transition: transform 0.18s ease, box-shadow 0.18s ease, background 0.18s ease, border-color 0.18s ease;
  white-space: nowrap;
}

.btn-primary {
  background: linear-gradient(155deg, #3fc2dc, var(--accent) 65%, #24a0b8);
  color: #06171f;
  box-shadow: 0 10px 24px -14px rgba(47, 184, 212, 0.4), 0 1px 0 rgba(255, 255, 255, 0.12) inset;
}

.btn-primary:hover {
  background: linear-gradient(155deg, #4dcbe3, #2fb8d4 65%, #2093a8);
  transform: translateY(-1px);
  box-shadow: 0 14px 28px -14px rgba(47, 184, 212, 0.45), 0 1px 0 rgba(255, 255, 255, 0.14) inset;
}

.btn-secondary {
  background: var(--surface-2);
  color: var(--text-primary);
  border-color: var(--border);
}

.btn-secondary:hover {
  border-color: var(--accent-border);
  background: var(--surface-3);
}

.btn-ghost {
  background: transparent;
  color: var(--text-primary);
  border-color: var(--border);
}

.btn-ghost:hover {
  border-color: var(--accent-border);
  color: var(--accent);
}

.btn-lg {
  padding: 16px 32px;
  font-size: 16px;
}

.btn-block {
  width: 100%;
}

/* ---------------------------------- Header -------------------------------- */

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  height: var(--header-h);
  display: flex;
  align-items: center;
  background: rgba(8, 11, 18, 0.78);
  backdrop-filter: blur(14px) saturate(140%);
  -webkit-backdrop-filter: blur(14px) saturate(140%);
  border-bottom: 1px solid var(--border-soft);
}

.site-header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 11px;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 19px;
  letter-spacing: -0.01em;
  color: var(--text-primary);
}

.brand img {
  width: 34px;
  height: 34px;
}

.brand small {
  display: block;
  font-family: var(--font-body);
  font-weight: 500;
  font-size: 11px;
  letter-spacing: 0.08em;
  color: var(--text-tertiary);
  margin-top: 1px;
}

.main-nav {
  display: flex;
  align-items: center;
  gap: 6px;
}

.main-nav a {
  padding: 9px 16px;
  border-radius: var(--radius-pill);
  font-size: 14px;
  font-weight: 500;
  color: var(--text-secondary);
  transition: color 0.15s ease, background 0.15s ease;
}

.main-nav a:hover,
.main-nav a.active {
  color: var(--text-primary);
  background: var(--surface-2);
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 10px;
}

.nav-toggle {
  display: none;
  width: 42px;
  height: 42px;
  border-radius: var(--radius-sm);
  border: 1px solid var(--border);
  background: var(--surface-2);
  align-items: center;
  justify-content: center;
}

.nav-toggle svg {
  width: 19px;
  height: 19px;
}

.mobile-nav {
  position: fixed;
  inset: var(--header-h) 0 0 0;
  z-index: 99;
  background: var(--bg);
  padding: 8px 20px 32px;
  display: none;
  flex-direction: column;
  gap: 4px;
  overflow-y: auto;
}

.mobile-nav.open {
  display: flex;
}

.mobile-nav a {
  padding: 16px 6px;
  border-bottom: 1px solid var(--border-soft);
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 17px;
  color: var(--text-primary);
}

.mobile-nav .btn {
  margin-top: 18px;
}

@media (max-width: 900px) {
  .main-nav,
  .header-actions .btn {
    display: none;
  }
  .nav-toggle {
    display: flex;
  }
}

/* ---------------------------------- Hero ---------------------------------- */

.hero {
  padding: 88px 0 104px;
  overflow: clip;
}

.hero .container {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 48px;
  align-items: center;
}

.hero-tag {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 7px 14px 7px 8px;
  border-radius: var(--radius-pill);
  background: var(--surface-2);
  border: 1px solid var(--border);
  font-size: 13px;
  color: var(--text-secondary);
  margin-bottom: 24px;
}

.hero-tag img {
  width: 20px;
  height: 20px;
}

.hero h1 {
  font-size: clamp(34px, 4.2vw, 54px);
  margin-bottom: 20px;
}

.hero-lead {
  font-size: 18px;
  color: var(--text-secondary);
  max-width: 490px;
  margin-bottom: 34px;
}

.hero-actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-bottom: 40px;
}

.hero-stats {
  display: flex;
  gap: 32px;
  flex-wrap: wrap;
}

.hero-stats div strong {
  display: block;
  font-family: var(--font-display);
  font-size: 22px;
  color: var(--text-primary);
}

.hero-stats div span {
  font-size: 13px;
  color: var(--text-tertiary);
}

.hero-visual {
  position: relative;
  display: flex;
  justify-content: center;
}

.hero-visual .glow {
  position: absolute;
  width: 480px;
  height: 480px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(47, 184, 212, 0.07), transparent 72%);
  filter: blur(20px);
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 0;
}

@media (max-width: 980px) {
  .hero .container {
    grid-template-columns: 1fr;
  }
  .hero-visual {
    order: -1;
  }
  .hero {
    padding: 40px 0 64px;
  }
  .hero-lead {
    max-width: 100%;
  }
}

/* ---------------------------------- Phone mockup --------------------------- */

.phone {
  position: relative;
  z-index: 1;
  width: 300px;
  border-radius: 46px;
  padding: 14px;
  background: linear-gradient(160deg, #1c2842, #0a0f19 60%);
  box-shadow: var(--shadow-card), var(--shadow-glow);
  border: 1px solid rgba(255, 255, 255, 0.06);
}

.phone-notch {
  position: absolute;
  top: 24px;
  left: 50%;
  transform: translateX(-50%);
  width: 9px;
  height: 9px;
  background: #060a11;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 50%;
  z-index: 2;
}

.phone-screen {
  position: relative;
  width: 100%;
  aspect-ratio: 900 / 1947;
  border-radius: 32px;
  overflow: hidden;
  background: #0a0f19;
}

.phone-screen img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top;
}

.phone-home {
  position: absolute;
  bottom: 8px;
  left: 50%;
  transform: translateX(-50%);
  width: 118px;
  height: 4px;
  border-radius: var(--radius-pill);
  background: rgba(255, 255, 255, 0.35);
  z-index: 2;
}

.phone.lg {
  width: 340px;
}

.phone.sm {
  width: 240px;
}

@media (max-width: 640px) {
  .phone {
    width: 250px;
  }
  .phone.lg {
    width: 260px;
  }
}

/* ---------------------------------- Sections ------------------------------- */

.section {
  padding: 96px 0;
}

.section-alt {
  background: linear-gradient(180deg, transparent, rgba(255, 255, 255, 0.015) 12%, rgba(255, 255, 255, 0.015) 88%, transparent);
  border-top: 1px solid var(--border-soft);
  border-bottom: 1px solid var(--border-soft);
}

@media (max-width: 640px) {
  .section {
    padding: 64px 0;
  }
}

/* Numbered feature grid */

.feature-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.feature-card {
  padding: 30px 26px;
  background: var(--surface);
  border: 1px solid var(--border-soft);
  border-radius: var(--radius-lg);
  transition: border-color 0.2s ease, transform 0.2s ease;
}

.feature-card:hover {
  border-color: var(--accent-border);
  transform: translateY(-3px);
}

.feature-num {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 14px;
  color: var(--accent);
  margin-bottom: 18px;
}

.feature-card h3 {
  font-size: 18px;
  margin-bottom: 8px;
}

.feature-card p {
  color: var(--text-secondary);
  font-size: 15px;
}

@media (max-width: 980px) {
  .feature-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 600px) {
  .feature-grid {
    grid-template-columns: 1fr;
  }
}

/* Workflow stepper */

.workflow {
  display: flex;
  align-items: stretch;
  gap: 0;
  overflow-x: auto;
  padding-bottom: 8px;
  scrollbar-width: none;
}

.workflow::-webkit-scrollbar {
  display: none;
}

.workflow-step {
  flex: 1 0 190px;
  min-height: 190px;
  padding: 28px 22px;
  background: var(--surface);
  border: 1px solid var(--border-soft);
  border-radius: var(--radius-md);
  position: relative;
  margin-right: 14px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  gap: 4px;
}

.workflow-step .dot {
  width: auto;
  height: auto;
  border-radius: 0;
  background: none;
  border: none;
  color: var(--accent);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 14px;
  margin-bottom: 15px;
}

.workflow-step .dot img {
  width: 88px;
  height: 88px;
  object-fit: contain;
}

.workflow-step h4 {
  font-size: 15px;
  margin-bottom: 6px;
}

.workflow-step p {
  color: var(--text-secondary);
  font-size: 13px;
}

.workflow-arrow {
  display: flex;
  align-items: center;
  color: var(--text-tertiary);
  padding: 0 4px;
  flex: 0 0 auto;
}

@media (max-width: 900px) {
  .workflow {
    flex-wrap: nowrap;
  }
}

/* App-in-practice alternating rows */

.showcase-row {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 56px;
  align-items: center;
  padding: 56px 0;
  border-bottom: 1px solid var(--border-soft);
}

.showcase-row:last-child {
  border-bottom: none;
}

.showcase-row.reverse {
  grid-template-columns: 1.15fr 0.85fr;
}

.showcase-row.reverse .showcase-visual {
  order: 2;
}

.showcase-visual {
  display: flex;
  justify-content: center;
  position: relative;
}

.showcase-copy .tag {
  display: inline-block;
  font-family: var(--font-display);
  font-size: 12px;
  font-weight: 600;
  color: var(--accent);
  background: var(--accent-soft);
  border: 1px solid var(--accent-border);
  padding: 5px 12px;
  border-radius: var(--radius-pill);
  margin-bottom: 16px;
}

.showcase-copy h3 {
  font-size: clamp(22px, 2.6vw, 30px);
  margin-bottom: 14px;
}

.showcase-copy p {
  color: var(--text-secondary);
  font-size: 16px;
  max-width: 460px;
}

@media (max-width: 900px) {
  .showcase-row,
  .showcase-row.reverse {
    grid-template-columns: 1fr;
    gap: 32px;
    padding: 40px 0;
  }
  .showcase-row.reverse .showcase-visual {
    order: 0;
  }
}

/* For-who section */

.audience-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 14px;
}

.audience-item {
  padding: 22px 18px;
  background: var(--surface);
  border: 1px solid var(--border-soft);
  border-radius: var(--radius-md);
  font-size: 14px;
  font-weight: 500;
  color: var(--text-primary);
  display: flex;
  align-items: center;
  gap: 12px;
}

.audience-item svg {
  width: 20px;
  height: 20px;
  color: var(--accent);
  flex-shrink: 0;
}

@media (max-width: 980px) {
  .audience-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 560px) {
  .audience-grid {
    grid-template-columns: 1fr;
  }
}

/* Status pill sampler (used on homepage "jak dziala" section) */

.status-pill {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 5px 12px;
  border-radius: var(--radius-pill);
  font-family: var(--font-display);
  font-size: 12px;
  font-weight: 600;
}

.status-pill.cyan {
  background: var(--accent-soft);
  color: var(--accent);
  border: 1px solid var(--accent-border);
}

.status-pill.green {
  background: var(--success-soft);
  color: var(--success);
}

.status-pill.amber {
  background: var(--warning-soft);
  color: var(--warning);
}

.status-pill.red {
  background: var(--danger-soft);
  color: var(--danger);
}

/* ---------------------------------- CTA band ------------------------------- */

.cta-band {
  padding: 72px 0;
}

.cta-box {
  background: linear-gradient(135deg, #0f2436, #0a1420 60%);
  border: 1px solid var(--border);
  border-radius: 28px;
  padding: 56px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  position: relative;
  overflow: hidden;
}

.cta-box::after {
  content: "";
  position: absolute;
  width: 340px;
  height: 340px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(47, 184, 212, 0.08), transparent 70%);
  top: -120px;
  right: -80px;
}

.cta-box h2 {
  font-size: clamp(24px, 2.8vw, 32px);
  margin-bottom: 10px;
  max-width: 480px;
}

.cta-box p {
  color: var(--text-secondary);
  max-width: 480px;
}

.cta-actions {
  display: flex;
  gap: 14px;
  flex-shrink: 0;
  position: relative;
}

@media (max-width: 760px) {
  .cta-box {
    flex-direction: column;
    align-items: flex-start;
    padding: 36px 26px;
  }
  .cta-actions {
    width: 100%;
    flex-direction: column;
  }
  .cta-actions .btn {
    flex: 1;
    width: 100%;
  }
}

/* ---------------------------------- Footer --------------------------------- */

.site-footer {
  border-top: 1px solid var(--border-soft);
  padding: 56px 0 32px;
}

.footer-top {
  display: flex;
  justify-content: space-between;
  gap: 40px;
  padding-bottom: 40px;
  border-bottom: 1px solid var(--border-soft);
  margin-bottom: 24px;
  flex-wrap: wrap;
}

.footer-brand .brand {
  margin-bottom: 10px;
}

.footer-brand p {
  color: var(--text-tertiary);
  font-size: 14px;
  max-width: 340px;
}

.footer-cols {
  display: flex;
  gap: 64px;
  flex-wrap: wrap;
}

.footer-col h5 {
  font-family: var(--font-display);
  font-size: 13px;
  color: var(--text-tertiary);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin-bottom: 14px;
}

.footer-col a {
  display: block;
  padding: 7px 0;
  color: var(--text-secondary);
  font-size: 14px;
  transition: color 0.15s ease;
}

.footer-col a:hover {
  color: var(--accent);
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
  color: var(--text-tertiary);
  font-size: 13px;
}

@media (max-width: 640px) {
  .footer-top {
    flex-direction: column;
  }
  .footer-cols {
    gap: 40px;
  }
}

/* ---------------------------------- Utility -------------------------------- */

.reveal {
  opacity: 0;
  transform: translateY(10px);
  transition: opacity 0.9s cubic-bezier(0.16, 1, 0.3, 1), transform 0.9s cubic-bezier(0.16, 1, 0.3, 1);
}

.reveal.in {
  opacity: 1;
  transform: translateY(0);
}

@media (prefers-reduced-motion: reduce) {
  .reveal {
    opacity: 1;
    transform: none;
  }
}

.divider {
  height: 1px;
  background: var(--border-soft);
  border: none;
}

/* ==========================================================================
   Page-specific
   ========================================================================== */

/* Sub-page hero (aplikacja / o-nas / kontakt) */

.page-hero {
  padding: 56px 0 64px;
  border-bottom: 1px solid var(--border-soft);
}

.page-hero h1 {
  font-size: clamp(32px, 4.4vw, 52px);
  max-width: 720px;
  margin-bottom: 18px;
}

.page-hero p {
  color: var(--text-secondary);
  font-size: 18px;
  max-width: 560px;
}

.page-hero.center {
  text-align: center;
}

.page-hero.center h1,
.page-hero.center p {
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}

.page-hero.center .breadcrumb {
  justify-content: center;
}

.breadcrumb {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  color: var(--text-tertiary);
  margin-bottom: 22px;
}

.breadcrumb a:hover {
  color: var(--accent);
}

/* Team (o-nas) */

.team-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}

.team-card {
  background: var(--surface);
  border: 1px solid var(--border-soft);
  border-radius: var(--radius-lg);
  padding: 36px;
}

.team-avatar {
  width: 64px;
  height: 64px;
  border-radius: 18px;
  background: linear-gradient(150deg, var(--blue), var(--accent));
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 22px;
  color: #06121c;
  margin-bottom: 22px;
  overflow: hidden;
}

.team-avatar.photo {
  width: 88px;
  height: 88px;
  background: var(--surface-2);
}

.team-avatar.photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.team-card h3 {
  font-size: 21px;
  margin-bottom: 4px;
}

.team-role {
  color: var(--accent);
  font-size: 14px;
  font-weight: 600;
  font-family: var(--font-display);
  margin-bottom: 10px;
}

.team-email {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  font-size: 13px;
  color: var(--text-secondary);
  margin-bottom: 22px;
  transition: color 0.15s ease;
}

.team-email svg {
  width: 15px;
  height: 15px;
  flex-shrink: 0;
}

.team-email:hover {
  color: var(--accent);
}

.team-card p {
  color: var(--text-secondary);
  font-size: 15px;
  margin-bottom: 14px;
}

.team-card p:last-child {
  margin-bottom: 0;
}

.origin-quote {
  max-width: 740px;
  margin: 64px auto 0;
  text-align: center;
  padding-top: 56px;
  border-top: 1px solid var(--border-soft);
}

.origin-quote p:first-child {
  font-family: var(--font-display);
  font-size: clamp(20px, 2.4vw, 26px);
  color: var(--text-primary);
  font-weight: 600;
  line-height: 1.4;
  margin-bottom: 16px;
}

.origin-quote p:last-child {
  color: var(--text-secondary);
  font-size: 16px;
}

@media (max-width: 760px) {
  .team-grid {
    grid-template-columns: 1fr;
  }
}

/* Contact page */

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 0.85fr;
  gap: 48px;
  align-items: start;
}

.contact-form {
  background: var(--surface);
  border: 1px solid var(--border-soft);
  border-radius: var(--radius-lg);
  padding: 36px;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.field {
  margin-bottom: 18px;
}

.field label {
  display: block;
  font-size: 13px;
  font-weight: 500;
  color: var(--text-secondary);
  margin-bottom: 8px;
}

.field input,
.field textarea {
  width: 100%;
  padding: 13px 15px;
  border-radius: var(--radius-sm);
  background: var(--bg-alt);
  border: 1px solid var(--border);
  color: var(--text-primary);
  transition: border-color 0.15s ease;
}

.field input::placeholder,
.field textarea::placeholder {
  color: var(--text-tertiary);
}

.field input:focus,
.field textarea:focus {
  outline: none;
  border-color: var(--accent);
  box-shadow: 0 0 0 3px var(--accent-soft);
}

.field textarea {
  resize: vertical;
  min-height: 120px;
}

.form-note {
  font-size: 12px;
  color: var(--text-tertiary);
  margin-top: 14px;
}

.form-success {
  display: none;
  align-items: flex-start;
  gap: 14px;
  padding: 20px;
  border-radius: var(--radius-md);
  background: var(--success-soft);
  border: 1px solid rgba(52, 211, 153, 0.35);
  color: var(--text-primary);
}

.form-success.show {
  display: flex;
}

.form-success svg {
  color: var(--success);
  flex-shrink: 0;
  margin-top: 2px;
}

.form-success strong {
  display: block;
  margin-bottom: 4px;
}

.form-success p {
  color: var(--text-secondary);
  font-size: 14px;
}

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

.info-card {
  background: var(--surface);
  border: 1px solid var(--border-soft);
  border-radius: var(--radius-md);
  padding: 24px;
  display: flex;
  gap: 16px;
  align-items: flex-start;
}

.info-icon {
  width: 42px;
  height: 42px;
  border-radius: 12px;
  background: var(--accent-soft);
  border: 1px solid var(--accent-border);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.info-icon svg {
  width: 19px;
  height: 19px;
  color: var(--accent);
}

.info-card h4 {
  font-size: 15px;
  margin-bottom: 4px;
}

.info-card p,
.info-card a {
  color: var(--text-secondary);
  font-size: 14px;
}

.info-card a:hover {
  color: var(--accent);
}

@media (max-width: 900px) {
  .contact-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 560px) {
  .form-row {
    grid-template-columns: 1fr;
  }
  .contact-form {
    padding: 24px;
  }
}

/* Legal pages */

.legal-content {
  max-width: 760px;
  padding: 48px 0 100px;
}

.legal-content h1 {
  font-size: clamp(28px, 3.6vw, 38px);
  margin-bottom: 8px;
}

.legal-updated {
  color: var(--text-tertiary);
  font-size: 14px;
  margin-bottom: 40px;
}

.legal-content h2 {
  font-size: 20px;
  margin-top: 36px;
  margin-bottom: 12px;
}

.legal-content p,
.legal-content li {
  color: var(--text-secondary);
  font-size: 15px;
  margin-bottom: 14px;
}

.legal-content ul {
  list-style: disc;
  padding-left: 22px;
}

.legal-content ul li {
  margin-bottom: 8px;
}

.legal-content ol {
  list-style: decimal;
  padding-left: 22px;
  color: var(--text-secondary);
}

.legal-content ol li {
  margin-bottom: 12px;
  font-size: 15px;
  padding-left: 2px;
}

.legal-content ol li > ol {
  list-style: lower-alpha;
  margin-top: 10px;
  padding-left: 20px;
}

.legal-content ol li > ol li {
  margin-bottom: 6px;
}

.legal-content a {
  color: var(--accent);
}

.legal-content a:hover {
  text-decoration: underline;
}

.operator-box {
  margin-top: 40px;
  padding: 28px 30px;
  background: var(--surface);
  border: 1px solid var(--border-soft);
  border-radius: var(--radius-md);
}

.operator-box h3 {
  font-family: var(--font-display);
  font-size: 16px;
  color: var(--text-primary);
  margin-bottom: 14px;
}

.operator-box p {
  color: var(--text-secondary);
  font-size: 15px;
  margin-bottom: 4px;
  line-height: 1.6;
}

.operator-box a {
  color: var(--accent);
}

/* Application feature list page */

.app-feature-list {
  display: flex;
  flex-direction: column;
}

/* Simple icon-feature grid for /aplikacja quick overview */

.quickgrid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
  margin-bottom: 8px;
}

.quickgrid .qitem {
  padding: 20px 18px;
  background: var(--surface);
  border: 1px solid var(--border-soft);
  border-radius: var(--radius-md);
  font-size: 14px;
  font-weight: 500;
  color: var(--text-secondary);
  text-align: center;
}

@media (max-width: 900px) {
  .quickgrid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 480px) {
  .quickgrid {
    grid-template-columns: 1fr;
  }
}

/* ==========================================================================
   Large feature banners — "Funkcjonalności FLOTT"
   ========================================================================== */

.feature-banners {
  display: flex;
  flex-direction: column;
}

.feature-banner {
  display: grid;
  grid-template-columns: 0.92fr 1.08fr;
  gap: 64px;
  align-items: center;
  min-height: 60vh;
  padding: 72px 0;
  border-bottom: 1px solid var(--border-soft);
  overflow: clip;
}

.feature-banners .feature-banner:last-child {
  border-bottom: none;
}

.feature-banner.reverse {
  grid-template-columns: 1.08fr 0.92fr;
}

.feature-banner.reverse .banner-visual {
  order: 2;
}

.banner-copy .banner-index {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 13px;
  color: var(--text-tertiary);
  letter-spacing: 0.02em;
  margin-bottom: 18px;
}

.banner-copy h3 {
  font-size: clamp(28px, 3.2vw, 40px);
  line-height: 1.12;
  margin-bottom: 16px;
}

.banner-copy p {
  color: var(--text-secondary);
  font-size: 18px;
  max-width: 440px;
  line-height: 1.6;
}

.banner-visual {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 420px;
}

.banner-visual .banner-glow {
  position: absolute;
  width: 520px;
  height: 520px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(47, 184, 212, 0.06), transparent 70%);
  filter: blur(22px);
  z-index: 0;
}

.feature-banner.reverse .banner-visual .banner-glow {
  background: radial-gradient(circle, rgba(53, 104, 201, 0.07), transparent 70%);
}

/* Phone used inside big banners */

.phone.banner-phone {
  width: 320px;
  z-index: 1;
}

@media (max-width: 1100px) {
  .phone.banner-phone {
    width: 280px;
  }
}

/* UI fragment card — for content without a full screen (e.g. dokumentacja) */

.ui-fragment {
  position: relative;
  z-index: 1;
  width: 100%;
  max-width: 400px;
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: var(--surface);
  border: 1px solid var(--border);
  box-shadow: var(--shadow-card), var(--shadow-glow);
}

.ui-fragment img {
  width: 100%;
  display: block;
}

.ui-fragment::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 70px;
  background: linear-gradient(180deg, transparent, var(--surface));
  pointer-events: none;
}

@media (max-width: 980px) {
  .feature-banner,
  .feature-banner.reverse {
    grid-template-columns: 1fr;
    gap: 36px;
    min-height: unset;
    padding: 48px 0;
  }
  .feature-banner.reverse .banner-visual {
    order: 0;
  }
  .banner-copy p {
    max-width: 100%;
  }
  .banner-visual {
    min-height: unset;
  }
}

/* Hero watermark logo */

.hero-visual .brand-watermark {
  position: absolute;
  width: 640px;
  height: 640px;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  opacity: 0.05;
  z-index: 0;
  pointer-events: none;
}

@media (max-width: 980px) {
  .hero-visual .brand-watermark {
    width: 420px;
    height: 420px;
  }
}

/* ==========================================================================
   Sliding feature marquee (used on /aplikacja)
   ========================================================================== */

.marquee-section {
  width: 100vw;
  margin-left: calc(50% - 50vw);
  margin-right: calc(50% - 50vw);
  padding: 36px 0;
  border-top: 1px solid var(--border-soft);
  border-bottom: 1px solid var(--border-soft);
  overflow: hidden;
}

.marquee {
  width: 100%;
  overflow: hidden;
  -webkit-mask-image: linear-gradient(90deg, transparent, black 6%, black 94%, transparent);
  mask-image: linear-gradient(90deg, transparent, black 6%, black 94%, transparent);
}

.marquee-track {
  display: flex;
  align-items: center;
  width: max-content;
  animation: marquee-scroll 38s linear infinite;
}

.marquee-item {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: 16px;
  color: var(--text-secondary);
  white-space: nowrap;
  padding: 0 22px;
  transition: color 0.2s ease;
}

.marquee:hover .marquee-track {
  animation-play-state: paused;
}

.marquee-dot {
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: var(--accent);
  opacity: 0.55;
  flex-shrink: 0;
}

@keyframes marquee-scroll {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-50%);
  }
}

@media (prefers-reduced-motion: reduce) {
  .marquee-track {
    animation: none;
  }
}

@media (max-width: 640px) {
  .marquee-item {
    font-size: 14px;
    padding: 0 16px;
  }
}

/* ==========================================================================
   Oferta page
   ========================================================================== */

/* Big centered statement */

.statement {
  max-width: 780px;
  margin: 0 auto;
  text-align: center;
}

.statement p {
  font-family: var(--font-display);
  font-size: clamp(22px, 2.8vw, 32px);
  font-weight: 500;
  line-height: 1.45;
  color: var(--text-primary);
}

.statement p + p {
  margin-top: 6px;
}

.statement .lede {
  font-size: 17px;
  font-weight: 400;
  color: var(--text-secondary);
  line-height: 1.7;
  margin-top: 22px;
}

/* Problem chain */

.problem-chain {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0;
  margin: 8px 0 28px;
}

.problem-chain .step {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 15px;
  color: var(--text-secondary);
  padding: 10px 6px;
  white-space: nowrap;
}

.problem-chain .arrow {
  color: var(--text-tertiary);
  opacity: 0.6;
  flex-shrink: 0;
  padding: 0 2px;
}

.problem-chain .step:last-child {
  color: var(--accent);
}

@media (max-width: 760px) {
  .problem-chain {
    flex-direction: column;
    align-items: flex-start;
    gap: 2px;
  }
  .problem-chain .arrow {
    transform: rotate(90deg);
    padding: 2px 0 2px 10px;
  }
  .problem-chain .step {
    padding: 4px 6px;
  }
}

/* Hero statistic (110h) */

.hero-stat-section {
  text-align: center;
  padding: 60px 0;
}

.hero-stat {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(80px, 12vw, 152px);
  line-height: 1;
  letter-spacing: -0.02em;
  background: linear-gradient(160deg, var(--text-primary), var(--accent) 130%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  margin-bottom: 4px;
}

.hero-stat-label {
  font-family: var(--font-display);
  font-size: clamp(18px, 2.2vw, 24px);
  font-weight: 500;
  color: var(--text-secondary);
  margin-bottom: 28px;
}

.hero-stat-note {
  max-width: 560px;
  margin: 0 auto;
  color: var(--text-secondary);
  font-size: 16px;
  line-height: 1.7;
}

.disclaimer {
  max-width: 620px;
  margin: 22px auto 0;
  text-align: center;
  color: var(--text-tertiary);
  font-size: 13px;
  line-height: 1.6;
}

.disclaimer.left {
  margin-left: 0;
  text-align: left;
}

/* Calculation flow diagram */

.calc-flow {
  display: flex;
  flex-direction: column;
  gap: 14px;
  max-width: 880px;
  margin: 0 auto;
}

.calc-row {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: nowrap;
  overflow-x: auto;
  padding: 4px 2px;
}

.calc-cell {
  flex: 1 1 0;
  min-width: 118px;
  background: var(--surface);
  border: 1px solid var(--border-soft);
  border-radius: var(--radius-md);
  padding: 20px 16px;
  text-align: center;
}

.calc-cell svg {
  width: 22px;
  height: 22px;
  color: var(--text-tertiary);
  margin-bottom: 10px;
}

.calc-cell strong {
  display: block;
  font-family: var(--font-display);
  font-size: 19px;
  font-weight: 600;
  color: var(--text-primary);
}

.calc-cell span {
  display: block;
  font-size: 12px;
  color: var(--text-tertiary);
  margin-top: 3px;
}

.calc-cell.result {
  background: var(--accent-soft);
  border-color: var(--accent-border);
}

.calc-cell.result svg {
  color: var(--accent);
}

.calc-cell.result strong {
  color: var(--accent);
}

.calc-arrow {
  flex: 0 0 auto;
  color: var(--text-tertiary);
  opacity: 0.5;
}

@media (max-width: 760px) {
  .calc-row {
    justify-content: flex-start;
  }
  .calc-cell {
    min-width: 108px;
  }
}

/* Numbered editorial list (Co otrzymujesz) */

.numbered-list {
  display: flex;
  flex-direction: column;
}

.numbered-item {
  display: grid;
  grid-template-columns: 90px 1fr;
  gap: 24px;
  padding: 34px 0;
  border-bottom: 1px solid var(--border-soft);
}

.numbered-item:first-child {
  padding-top: 0;
}

.numbered-item:last-child {
  border-bottom: none;
}

.numbered-item .num {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 15px;
  color: var(--text-tertiary);
}

.numbered-item h3 {
  font-size: 21px;
  margin-bottom: 6px;
}

.numbered-item p {
  color: var(--text-secondary);
  font-size: 16px;
  max-width: 560px;
}

@media (max-width: 560px) {
  .numbered-item {
    grid-template-columns: 1fr;
    gap: 8px;
  }
}

/* Pricing panels */

.pricing-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}

.pricing-panel {
  background: var(--surface);
  border: 1px solid var(--border-soft);
  border-radius: var(--radius-lg);
  padding: 48px 44px;
}

.pricing-panel.accent {
  border-color: var(--accent-border);
  background: linear-gradient(165deg, var(--surface), var(--bg-alt));
}

.pricing-panel .p-label {
  font-family: var(--font-display);
  font-size: 13px;
  font-weight: 600;
  color: var(--text-tertiary);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin-bottom: 18px;
}

.pricing-panel .p-amount {
  font-family: var(--font-display);
  font-size: clamp(38px, 4vw, 52px);
  font-weight: 600;
  color: var(--text-primary);
  margin-bottom: 4px;
}

.pricing-panel .p-amount small {
  font-size: 16px;
  font-weight: 500;
  color: var(--text-secondary);
}

.pricing-panel ul {
  margin-top: 26px;
  padding-top: 26px;
  border-top: 1px solid var(--border-soft);
}

.pricing-panel li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  color: var(--text-secondary);
  font-size: 15px;
  margin-bottom: 12px;
  line-height: 1.5;
}

.pricing-panel li svg {
  width: 16px;
  height: 16px;
  color: var(--accent);
  flex-shrink: 0;
  margin-top: 3px;
}

@media (max-width: 860px) {
  .pricing-grid {
    grid-template-columns: 1fr;
  }
  .pricing-panel {
    padding: 36px 30px;
  }
}

/* Ekonomia — VS comparison */

.vs-compare {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 32px;
  max-width: 880px;
  margin: 0 auto;
}

.vs-side {
  text-align: center;
  padding: 20px;
}

.vs-side h4 {
  font-family: var(--font-display);
  font-size: 15px;
  font-weight: 600;
  color: var(--text-tertiary);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 14px;
}

.vs-side p {
  font-size: 18px;
  color: var(--text-secondary);
}

.vs-side.flott p {
  color: var(--text-primary);
  font-weight: 500;
}

.vs-divider {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  border: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-size: 13px;
  font-weight: 600;
  color: var(--text-tertiary);
  flex-shrink: 0;
}

@media (max-width: 700px) {
  .vs-compare {
    grid-template-columns: 1fr;
  }
  .vs-divider {
    margin: 0 auto;
  }
}

.audience-grid.cols-3 {
  grid-template-columns: repeat(3, 1fr);
}

@media (max-width: 760px) {
  .audience-grid.cols-3 {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 480px) {
  .audience-grid.cols-3 {
    grid-template-columns: 1fr;
  }
}

.hero-stat.md {
  font-size: clamp(46px, 6.5vw, 84px);
}

/* Video embed inside phone frame (aplikacja page) */

.phone-screen.video {
  aspect-ratio: 9 / 16;
}

.phone-screen.video iframe {
  width: 100%;
  height: 100%;
  border: 0;
  display: block;
}

.video-showcase {
  display: flex;
  justify-content: center;
  padding: 20px 0 10px;
}

.video-showcase .phone {
  width: 320px;
}

@media (max-width: 640px) {
  .video-showcase .phone {
    width: 270px;
  }
}

/* Contact page — small team block */

.contact-team {
  display: flex;
  gap: 16px;
}

.contact-team .team-mini {
  flex: 1;
  display: flex;
  align-items: center;
  gap: 14px;
  background: var(--surface);
  border: 1px solid var(--border-soft);
  border-radius: var(--radius-md);
  padding: 18px;
}

.contact-team .team-mini img {
  width: 52px;
  height: 52px;
  border-radius: 14px;
  object-fit: cover;
  flex-shrink: 0;
}

.contact-team .team-mini strong {
  display: block;
  font-family: var(--font-display);
  font-size: 14px;
  font-weight: 600;
  color: var(--text-primary);
}

.contact-team .team-mini span {
  display: block;
  font-size: 12px;
  color: var(--text-tertiary);
  margin-top: 2px;
}

@media (max-width: 560px) {
  .contact-team {
    flex-direction: column;
  }
}

/* Widescreen video embed (16:9) */

.video-wide {
  max-width: 860px;
  margin: 0 auto;
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--border-soft);
  box-shadow: var(--shadow-card);
  aspect-ratio: 16 / 9;
  position: relative;
}

.video-wide iframe {
  width: 100%;
  height: 100%;
  border: 0;
  display: block;
}

/* Large marketing graphic showcase */

.graphic-showcase {
  max-width: 980px;
  margin: 0 auto;
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--border-soft);
  box-shadow: var(--shadow-card);
}

.graphic-showcase img {
  width: 100%;
  display: block;
}

/* App availability / download section */

.download-block {
  max-width: 640px;
  margin: 0 auto;
  text-align: center;
}

.download-badges {
  display: flex;
  gap: 14px;
  justify-content: center;
  flex-wrap: wrap;
  margin: 28px 0 24px;
}

.store-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 12px 22px;
  border-radius: var(--radius-sm);
  background: var(--surface-2);
  border: 1px solid var(--border);
  color: var(--text-tertiary);
}

.store-badge svg {
  width: 22px;
  height: 22px;
  color: var(--text-tertiary);
}

.store-badge .sb-text {
  text-align: left;
  line-height: 1.2;
}

.store-badge .sb-text small {
  display: block;
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.store-badge .sb-text strong {
  display: block;
  font-family: var(--font-display);
  font-size: 14px;
  color: var(--text-secondary);
}

.apk-note {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  text-align: left;
  background: var(--warning-soft);
  border: 1px solid rgba(242, 181, 68, 0.3);
  border-radius: var(--radius-md);
  padding: 18px 20px;
  margin-top: 8px;
}

.apk-note svg {
  width: 20px;
  height: 20px;
  color: var(--warning);
  flex-shrink: 0;
  margin-top: 2px;
}

.apk-note p {
  color: var(--text-secondary);
  font-size: 14px;
  line-height: 1.6;
}

.apk-note strong {
  color: var(--text-primary);
}

/* Funkcjonalności FLOTT — intro with splash visual */

.func-intro {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 56px;
  align-items: center;
}

.func-intro .section-head {
  max-width: 520px;
}

.func-intro-visual {
  display: flex;
  justify-content: center;
}

.func-intro-visual img {
  width: 100%;
  max-width: 280px;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-card), var(--shadow-glow);
}

@media (max-width: 900px) {
  .func-intro {
    grid-template-columns: 1fr;
    text-align: center;
    gap: 32px;
  }
  .func-intro .section-head {
    max-width: 100%;
    margin-left: auto;
    margin-right: auto;
  }
  .func-intro-visual {
    order: -1;
  }
  .func-intro-visual img {
    max-width: 220px;
  }
}

/* Problem framing above numbered items (aplikacja page) */

.numbered-item .problem-q {
  display: block;
  font-size: 13px;
  font-weight: 500;
  color: var(--text-tertiary);
  margin-bottom: 6px;
}


/* ==========================================================================
   FLOTT visual audit polish — 2026
   Purpose: stronger hierarchy, less "template" feeling, cleaner editorial UI.\
   ========================================================================== */

:root {
  --surface-raised: #121b29;
  --border-strong: #263550;
  --accent-glow: rgba(47, 184, 212, .16);
}

/* More deliberate section rhythm */
.section {
  padding: 104px 0;
}

.section-alt {
  background:
    radial-gradient(560px 280px at 50% 0%, rgba(47,184,212,.035), transparent 70%),
    var(--bg-alt);
}

.section-head h2 {
  letter-spacing: -0.025em;
}

.section-head p,
.page-hero p {
  line-height: 1.72;
}

/* Cards: fewer harsh outlines, more depth */
.calc-cell,
.pricing-panel,
.team-card,
.contact-form,
.info-card,
.audience-item,
.workflow-step,
.ui-fragment {
  border-color: rgba(255,255,255,.075);
  box-shadow: 0 18px 50px -34px rgba(0,0,0,.85), 0 1px 0 rgba(255,255,255,.025) inset;
}

.calc-cell:hover,
.pricing-panel:hover,
.team-card:hover,
.info-card:hover,
.audience-item:hover {
  border-color: rgba(47,184,212,.18);
  transform: translateY(-2px);
}

.calc-cell,
.pricing-panel,
.team-card,
.info-card,
.audience-item {
  transition: transform .2s ease, border-color .2s ease, box-shadow .2s ease;
}

/* Stronger global numbers */
.numbered-item {
  grid-template-columns: 104px 1fr;
  padding: 38px 0;
}

.numbered-item .num {
  font-size: clamp(32px, 4vw, 48px);
  line-height: 1;
  font-weight: 700;
  letter-spacing: -.04em;
  color: var(--accent);
  opacity: .95;
}

.numbered-item h3 {
  font-size: clamp(20px, 2.2vw, 24px);
}

/* Oferta — problem journey */
.problem-journey {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 10px;
  max-width: 1120px;
  margin: 46px auto 0;
  position: relative;
}

.problem-journey::before {
  content: "";
  position: absolute;
  top: 31px;
  left: 6%;
  right: 6%;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--border-strong) 8%, var(--border-strong) 92%, transparent);
  z-index: 0;
}

.problem-step {
  position: relative;
  z-index: 1;
  min-width: 0;
  padding: 0 7px;
  text-align: center;
}

.problem-step .problem-step-num {
  width: 62px;
  height: 62px;
  margin: 0 auto 15px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: #0c1420;
  border: 1px solid var(--border-strong);
  color: var(--accent);
  font-family: var(--font-display);
  font-size: 14px;
  font-weight: 700;
  box-shadow: 0 0 0 7px var(--bg-alt), 0 14px 34px -24px var(--accent-glow);
}

.problem-step strong {
  display: block;
  font-family: var(--font-display);
  font-size: 13px;
  line-height: 1.35;
  letter-spacing: .015em;
  color: var(--text-primary);
}

.problem-step span {
  display: block;
  margin-top: 7px;
  color: var(--text-tertiary);
  font-size: 12px;
  line-height: 1.45;
}

.problem-step:last-child .problem-step-num {
  border-color: var(--accent-border);
  background: var(--accent-soft);
}

.problem-step:last-child strong {
  color: var(--accent);
}

/* Oferta — calculation equations */
.calc-flow {
  max-width: 1060px;
  gap: 22px;
}

.calc-equation {
  display: grid;
  grid-template-columns: 1fr 52px 1fr 52px 1fr 52px 1.15fr;
  align-items: center;
  gap: 12px;
  padding: 22px;
  border: 1px solid rgba(255,255,255,.075);
  border-radius: 22px;
  background: linear-gradient(135deg, rgba(255,255,255,.025), rgba(255,255,255,.012));
  box-shadow: 0 24px 60px -45px rgba(0,0,0,.9);
}

.calc-equation + .calc-equation {
  background: linear-gradient(135deg, rgba(47,184,212,.035), rgba(255,255,255,.012));
}

.calc-term {
  min-width: 0;
  text-align: center;
  padding: 10px 8px;
}

.calc-term .calc-term-value {
  display: block;
  font-family: var(--font-display);
  font-size: clamp(28px, 3.4vw, 42px);
  line-height: 1;
  font-weight: 700;
  letter-spacing: -.035em;
  color: var(--text-primary);
}

.calc-term .calc-term-label {
  display: block;
  margin-top: 8px;
  color: var(--text-secondary);
  font-size: 12px;
  line-height: 1.35;
}

.calc-operator {
  display: grid;
  place-items: center;
  color: var(--text-tertiary);
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 500;
}

.calc-result {
  padding: 16px 12px;
  border-radius: 16px;
  background: var(--accent-soft);
  border: 1px solid var(--accent-border);
}

.calc-result .calc-term-value {
  color: var(--accent);
  font-size: clamp(34px, 4vw, 52px);
}

.calc-result .calc-term-label {
  color: var(--text-secondary);
}

.cost-summary {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  max-width: 1060px;
  margin: 30px auto 0;
}

.cost-summary-card {
  padding: 24px 26px;
  border-radius: 18px;
  border: 1px solid rgba(255,255,255,.07);
  background: rgba(255,255,255,.018);
}

.cost-summary-card span {
  display: block;
  color: var(--text-tertiary);
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: .07em;
  margin-bottom: 8px;
}

.cost-summary-card strong {
  font-family: var(--font-display);
  font-size: 25px;
  letter-spacing: -.02em;
}

/* Cleaner list for secondary operating costs */
.cost-impact-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 10px 42px;
  max-width: 820px;
  margin: 0 auto 34px;
}

.cost-impact-item {
  display: flex;
  align-items: flex-start;
  gap: 11px;
  padding: 11px 0;
  border-bottom: 1px solid rgba(255,255,255,.055);
  color: var(--text-secondary);
  font-size: 15px;
}


.cost-impact-wrap {
  max-width: 960px;
  margin: 0 auto;
}

.cost-impact-note {
  max-width: 760px;
  margin: 0 auto 40px;
  color: var(--text-secondary);
  font-size: 16px;
  line-height: 1.7;
  text-align: center;
}
.cost-impact-item::before {
  content: "";
  width: 7px;
  height: 7px;
  margin-top: 8px;
  border-radius: 50%;
  background: var(--accent);
  box-shadow: 0 0 0 4px var(--accent-soft);
  flex: 0 0 auto;
}

/* Stronger big-stat treatment */
.hero-stat-section {
  padding: 96px 0;
}

.hero-stat {
  text-shadow: 0 0 55px rgba(47,184,212,.08);
}

.hero-stat-label {
  color: var(--text-primary);
}

/* Functionality intro on homepage */
.func-intro {
  grid-template-columns: minmax(0, 1fr) minmax(280px, .62fr);
  gap: 80px;
  padding-bottom: 84px;
}

.func-intro .section-head {
  align-self: center;
}

.func-intro .section-head h2 {
  font-size: clamp(30px, 3.6vw, 44px);
}

.func-intro-visual {
  align-items: center;
}

.func-intro-visual .phone {
  width: 285px;
  filter: drop-shadow(0 30px 55px rgba(0,0,0,.55));
}

.func-intro-visual .phone-screen img {
  object-fit: cover;
}

/* Feature banners: stable visual rhythm */
.feature-banner {
  min-height: 520px;
  padding: 78px 0;
}

.banner-copy {
  max-width: 500px;
}

.banner-copy .banner-index {
  color: var(--accent);
  font-size: 12px;
  letter-spacing: .08em;
}

.banner-copy h3 {
  font-size: clamp(25px, 3vw, 34px);
  letter-spacing: -.025em;
}

/* Page heroes feel more editorial */
.page-hero {
  padding: 74px 0 78px;
  background: radial-gradient(560px 260px at 70% 0%, rgba(47,184,212,.05), transparent 72%);
}

.page-hero h1 {
  letter-spacing: -.035em;
}

/* Audience cards become clearer at a glance */
.audience-item {
  min-height: 76px;
}

/* Mobile */
@media (max-width: 900px) {
  .problem-journey {
    grid-template-columns: repeat(3, 1fr);
    gap: 28px 10px;
  }
  .problem-journey::before { display: none; }
  .func-intro {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .func-intro-visual { order: -1; }
  .func-intro-visual .phone { width: 245px; }
  .calc-equation {
    grid-template-columns: 1fr 34px 1fr 34px 1fr 34px 1.1fr;
    gap: 5px;
    padding: 14px;
  }
  .cost-impact-list { grid-template-columns: 1fr; }
}

@media (max-width: 640px) {
  .section { padding: 76px 0; }
  .page-hero { padding: 52px 0 58px; }
  .numbered-item { grid-template-columns: 62px 1fr; gap: 14px; }
  .numbered-item .num { font-size: 34px; }
  .problem-journey { grid-template-columns: repeat(2, 1fr); margin-top: 34px; }
  .problem-step .problem-step-num { width: 54px; height: 54px; margin-bottom: 11px; }
  .calc-row { display: none; }
  .calc-flow {
    overflow-x: auto;
    scrollbar-width: thin;
    padding-bottom: 8px;
  }
  .calc-equation {
    min-width: 620px;
    grid-template-columns: 1fr 28px 1fr 28px 1fr 28px 1.2fr;
    gap: 2px;
  }
  .calc-term .calc-term-value { font-size: 25px; }
  .calc-term .calc-term-label { font-size: 11px; }
  .cost-summary { grid-template-columns: 1fr; }
  .hero-stat-section { padding: 72px 0; }
}


/* FLOTT — requested visual refinement pass */
.statement-hero { overflow:hidden; padding:86px 0 92px; border-top:1px solid var(--border-soft); border-bottom:1px solid var(--border-soft); background:linear-gradient(180deg,rgba(12,18,30,.78),rgba(8,11,18,.35)); }
.statement-hero-glow { position:absolute; width:820px; height:380px; left:50%; top:50%; transform:translate(-50%,-50%); background:radial-gradient(ellipse,rgba(47,184,212,.14),transparent 68%); filter:blur(12px); pointer-events:none; }
.statement-hero-mark { position:absolute; width:540px; height:540px; object-fit:contain; left:50%; top:50%; transform:translate(-50%,-50%); opacity:.035; pointer-events:none; }
.statement-hero-content { position:relative; z-index:1; max-width:980px; }
.statement-hero-content .eyebrow { margin-bottom:18px; font-size:14px; }
.statement-hero-content p { font-size:clamp(30px,4.2vw,56px); line-height:1.14; font-weight:500; }
.statement-hero-content p strong { font-weight:700; }

.func-section-title { max-width:820px; margin:0 auto 54px; }
.func-section-title .eyebrow { font-size:15px; margin-bottom:16px; }
.func-section-title h2 { font-size:clamp(34px,4.3vw,52px); margin-bottom:16px; }
.func-section-title p { max-width:700px; margin:0 auto; }
.func-intro { display:block; padding-bottom:70px; }
.func-intro-visual { min-height:420px; justify-content:center; align-items:center; }
.func-intro-visual .phone { width:300px; }

/* All eight product visuals share one fixed size and one visual column. */
.feature-banner, .feature-banner.reverse { grid-template-columns:minmax(0,.9fr) minmax(380px,1.1fr); }
.feature-banner.reverse .banner-visual { order:2; }
.feature-banner.reverse .banner-copy { order:1; }
.banner-visual { min-width:380px; width:100%; justify-content:center; }
.phone.banner-phone { width:300px; max-width:300px; flex:0 0 300px; }
.banner-copy .banner-index { font-size:15px; color:var(--accent); margin-bottom:20px; }
.banner-copy h3 { font-size:clamp(30px,3.2vw,42px); }
.banner-copy p { font-size:18px; }

/* Homepage audience — larger visual anchors */
.audience-grid { gap:18px; }
.audience-item { min-height:190px; padding:28px 22px; flex-direction:column; align-items:center; justify-content:center; gap:15px; font-size:16px; line-height:1.35; text-align:center; }
.audience-item svg { width:34px; height:34px; }
.audience-item .audience-icon-lg { width:88px; height:88px; object-fit:contain; margin-bottom:4px; }
.audience-item .audience-icon { width:88px; height:88px; object-fit:contain; }

/* Oferta problem journey — readable, centered and evenly spaced */
.problem-journey { max-width:1080px; margin:48px auto 0; grid-template-columns:repeat(3,1fr); gap:26px 18px; }
.problem-journey::before { display:none; }
.problem-step { min-height:168px; padding:22px 18px; border:1px solid var(--border-strong); border-radius:var(--radius-md); background:linear-gradient(180deg,var(--surface),rgba(17,24,38,.68)); box-shadow:var(--shadow-card); display:flex; flex-direction:column; align-items:center; justify-content:center; }
.problem-step .problem-step-num { width:58px; height:58px; margin:0 auto 14px; font-size:16px; background:var(--accent-soft); border-color:var(--accent-border); box-shadow:none; }
.problem-step strong { font-size:15px; line-height:1.35; }
.problem-step span { margin-top:8px; color:var(--text-secondary); font-size:14px; line-height:1.45; }
.problem-step:last-child { border-color:var(--accent-border); background:linear-gradient(180deg,rgba(47,184,212,.09),rgba(17,24,38,.72)); }
.problem-step:last-child .problem-step-num { color:var(--accent); }

/* Oferta cost equations — big numbers, clear operators */
.calc-equation { padding:28px 24px; }
.calc-term .calc-term-value { font-size:clamp(32px,3.6vw,46px); }
.calc-operator { color:var(--accent); font-size:28px; }
.calc-result .calc-term-value { font-size:clamp(38px,4.2vw,56px); }

/* Pricing — differentiate setup from the FLOTT service */
.pricing-panel:first-child { background:linear-gradient(165deg,#141b27,#0d121c); border-color:rgba(255,255,255,.10); }
.pricing-panel.accent { background:linear-gradient(165deg,rgba(47,184,212,.13),rgba(17,24,38,.94)); border-color:var(--accent-border); box-shadow:var(--shadow-glow); }
.pricing-panel .p-label { font-size:14px; color:var(--accent); }
.pricing-panel:first-child .p-label { color:var(--text-secondary); }
.pricing-panel .p-amount { font-size:clamp(44px,4.5vw,60px); }
.pricing-panel li { font-size:16px; }
.pricing-panel li svg { width:18px; height:18px; }

/* Economy — immediate visual contrast: red problem vs green FLOTT solution */
.vs-compare { max-width:980px; gap:42px; }
.vs-side { min-height:160px; padding:30px 34px; border-radius:var(--radius-lg); border:1px solid rgba(251,124,142,.30); background:linear-gradient(160deg,rgba(251,124,142,.11),rgba(17,24,38,.55)); }
.vs-side h4 { color:var(--danger); font-size:14px; }
.vs-side p { color:#f4a1ae; font-size:21px; }
.vs-side.flott { border-color:rgba(52,211,153,.32); background:linear-gradient(160deg,rgba(52,211,153,.11),rgba(17,24,38,.55)); }
.vs-side.flott h4, .vs-side.flott p { color:var(--success); }
.vs-side.flott p { font-size:26px; font-weight:700; }

/* O nas — portraits centered over the profile copy */
.team-card { text-align:center; }
.team-card .team-avatar { margin:0 auto 20px; }
.team-card .team-role, .team-card .team-email { justify-content:center; margin-left:auto; margin-right:auto; }
.team-card p { text-align:left; }

/* Kontakt — collaboration moved above the form; personal cards removed */
.contact-collab { display:flex; align-items:center; gap:16px; padding:22px 24px; margin-bottom:22px; background:linear-gradient(165deg,var(--accent-soft),rgba(17,24,38,.72)); border:1px solid var(--accent-border); border-radius:var(--radius-lg); }
.contact-collab .info-icon { flex:0 0 auto; }
.contact-collab h4 { font-size:18px; margin-bottom:4px; }
.contact-collab p { color:var(--text-secondary); font-size:15px; }
.contact-team { display:none !important; }

/* Aplikacja marquee begins flush at the left viewport edge. */
.marquee { -webkit-mask-image:none; mask-image:none; }
.marquee-item:first-child { padding-left:0; }

@media (max-width:980px) {
  .feature-banner, .feature-banner.reverse { grid-template-columns:1fr; }
  .banner-visual { min-width:0; }
  .phone.banner-phone { width:300px; max-width:300px; }
  .problem-journey { grid-template-columns:repeat(2,1fr); }
  .audience-item { min-height:116px; }
}
@media (max-width:640px) {
  .statement-hero { padding:68px 0 72px; }
  .statement-hero-mark { width:360px; height:360px; }
  .statement-hero-content p { font-size:30px; }
  .func-section-title { margin-bottom:34px; }
  .func-section-title h2 { font-size:32px; }
  .problem-journey { grid-template-columns:1fr; gap:12px; }
  .problem-step { min-height:128px; }
  .problem-step .problem-step-num { width:52px; height:52px; }
  .audience-item { min-height:106px; }
  .contact-collab { align-items:flex-start; }
}

/* Final refinement pass — stronger hierarchy and cleaner content blocks */
.func-section-title { max-width: 1180px; margin: 0 auto 28px; text-align: left; }
.func-section-title .eyebrow { margin-bottom: 14px; }
.func-section-title h2 { font-size: clamp(34px, 4.3vw, 52px); margin: 0; }
.func-intro { display:grid; grid-template-columns:minmax(0,1fr) minmax(320px,.72fr); gap:72px; align-items:center; max-width:1180px; margin:0 auto; padding:0 0 72px; }
.func-intro-copy { align-self:center; }
.func-intro-copy p { max-width:500px; margin:0; font-size:clamp(21px,2.1vw,28px); line-height:1.28; font-weight:600; color:var(--text-primary); }
.func-intro-visual { min-height:420px; display:flex; justify-content:center; align-items:center; }
.func-intro-visual .phone { width:300px; }

.offer-problem-intro { max-width:1080px; margin:34px auto 0; display:grid; grid-template-columns:1.15fr .85fr; gap:34px; align-items:center; text-align:left; }
.offer-problem-lead { padding:30px 0; }
.offer-problem-kicker { display:block; color:var(--accent); text-transform:uppercase; letter-spacing:.12em; font-size:12px; font-weight:700; margin-bottom:14px; }
.offer-problem-lead strong { display:block; font-size:clamp(28px,3.2vw,44px); line-height:1.12; letter-spacing:-.025em; }
.offer-problem-points { display:grid; gap:12px; }
.offer-problem-points span { padding:15px 18px; border-left:2px solid var(--accent); background:rgba(47,184,212,.06); color:var(--text-primary); font-size:17px; font-weight:600; border-radius:0 var(--radius-sm) var(--radius-sm) 0; }
.offer-problem-intro > p { grid-column:1/-1; max-width:760px; margin:0 auto; color:var(--text-secondary); font-size:18px; line-height:1.65; text-align:center; }
.problem-journey-note { max-width:1080px; width:100%; margin:30px auto 0; padding:20px 26px; text-align:center; border:1px solid var(--accent-border); border-radius:var(--radius-md); background:linear-gradient(90deg,rgba(47,184,212,.08),rgba(17,24,38,.7),rgba(47,184,212,.08)); color:var(--text-primary); font-size:clamp(19px,2.1vw,27px); line-height:1.3; font-weight:700; box-sizing:border-box; }
.centered-numbered-list { max-width:900px; margin-left:auto; margin-right:auto; }

.team-card .team-role { min-height:42px; }

.contact-info { height:100%; }
.contact-pitch { min-height:100%; box-sizing:border-box; padding:40px; border-radius:var(--radius-lg); border:1px solid var(--accent-border); background:radial-gradient(500px 280px at 100% 0%,rgba(47,184,212,.13),transparent 70%),linear-gradient(160deg,rgba(47,184,212,.08),rgba(17,24,38,.72)); display:flex; flex-direction:column; justify-content:center; }
.contact-pitch .eyebrow { margin-bottom:18px; }
.contact-pitch h2 { font-size:clamp(30px,3vw,42px); line-height:1.12; margin-bottom:22px; }
.contact-pitch p { color:var(--text-secondary); font-size:17px; line-height:1.65; margin-bottom:16px; }
.contact-pitch-line { display:flex; flex-wrap:wrap; align-items:center; gap:10px; margin:22px 0 26px; color:var(--text-primary); font-size:14px; font-weight:700; }
.contact-pitch-line span:nth-child(2) { color:var(--accent); font-size:20px; }
.contact-pitch-email { display:inline-block; color:var(--accent); font-size:18px; font-weight:700; text-decoration:none; }
.contact-pitch-email:hover { color:var(--text-primary); }

@media (max-width:900px) {
  .func-intro { grid-template-columns:1fr; gap:28px; padding-bottom:58px; }
  .func-intro-copy { order:2; }
  .func-intro-visual { order:1; min-height:360px; }
  .func-intro-copy p { max-width:none; }
  .offer-problem-intro { grid-template-columns:1fr; gap:18px; }
  .offer-problem-lead { padding:10px 0; }
  .offer-problem-intro > p { grid-column:auto; }
  .problem-journey-note { font-size:20px; }
}


/* ================================================================
   Final visual refinement — requested pass
   ================================================================ */

/* Homepage statement: slightly tighter so the message breathes better. */
.statement-hero-content p { font-size: clamp(27px, 3.7vw, 50px); }

/* Functionalities intro: splash phone becomes the left visual anchor,
   matching the fixed right-side column used by the feature phones below. */
.func-intro {
  display: grid;
  grid-template-columns: minmax(300px, .78fr) minmax(0, 1fr);
  gap: 72px;
  align-items: center;
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 0 72px;
}
.func-intro-visual {
  grid-column: 1;
  grid-row: 1;
  min-height: 420px;
  display: flex;
  justify-content: flex-start;
  align-items: center;
  padding-left: 22px;
}
.func-intro-copy {
  grid-column: 2;
  grid-row: 1;
  align-self: center;
}
.func-intro-copy p {
  max-width: 560px;
  margin: 0;
  font-size: 18px;
  line-height: 1.6;
  font-weight: 500;
  color: var(--text-secondary);
}
.func-intro-visual .phone { width: 300px; }

/* Oferta: make the big optimization number unmistakable. */
.optimization-value {
  position: relative;
  max-width: 980px;
  margin: 48px auto 0;
  padding: 44px 52px;
  border: 1px solid rgba(251,124,142,.42);
  border-radius: var(--radius-lg);
  background: linear-gradient(135deg, rgba(251,124,142,.10), rgba(17,24,38,.80));
  box-shadow: 0 22px 60px -40px rgba(251,124,142,.32);
}
.optimization-value > p:first-of-type {
  color: #ff7f91;
  font-size: clamp(48px, 6vw, 82px);
  font-weight: 800;
  letter-spacing: -.045em;
  line-height: 1;
}
.optimization-alert {
  position: absolute;
  top: 22px;
  left: 24px;
  width: 30px;
  height: 30px;
  border: 2px solid #ff7f91;
  color: #ff7f91;
  border-radius: 9px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  font-size: 18px;
}

/* Oferta policy: visually communicates positive business impact. */
.policy-highlight {
  max-width: 980px;
  margin-left: auto;
  margin-right: auto;
  padding: 38px 44px;
  display: flex;
  align-items: center;
  gap: 24px;
  text-align: left;
  border: 1px solid rgba(52,211,153,.32);
  border-radius: var(--radius-lg);
  background: linear-gradient(135deg, rgba(52,211,153,.10), rgba(17,24,38,.72));
  box-shadow: 0 22px 60px -42px rgba(52,211,153,.35);
}
.policy-profit-icon {
  width: 64px;
  height: 64px;
  flex: 0 0 64px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 18px;
  border: 1px solid rgba(52,211,153,.36);
  background: rgba(52,211,153,.10);
  color: var(--success);
  font-size: 34px;
  font-weight: 800;
}
.policy-profit-label {
  display: block;
  margin-bottom: 10px;
  color: var(--success);
  font-size: 13px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: .10em;
}
.policy-highlight p { margin: 0; font-size: clamp(24px, 3vw, 38px); line-height: 1.18; }
.policy-highlight p strong { color: var(--success); }

/* Contact: both panels must start/end on the same horizontal lines. */
.contact-grid { align-items: stretch; }
.contact-grid > div { display: flex; }
.contact-form, .contact-pitch { width: 100%; box-sizing: border-box; }
.contact-form { height: 100%; }
.contact-page-title, .contact-page-title p { text-align: center; }

/* Footer: cleaner centered mobile presentation. */
@media (max-width: 640px) {
  .func-intro {
    grid-template-columns: 1fr;
    gap: 22px;
    padding-bottom: 56px;
  }
  .func-intro-visual,
  .func-intro-copy { grid-column: 1; grid-row: auto; }
  .func-intro-visual {
    order: 1;
    min-height: 330px;
    justify-content: center;
    padding-left: 0;
  }
  .func-intro-copy {
    order: 2;
    text-align: center;
  }
  .func-intro-copy p { font-size: 17px; }
  .optimization-value { padding: 42px 22px 34px; }
  .optimization-value > p:first-of-type { font-size: clamp(42px, 12vw, 64px); }
  .policy-highlight { padding: 28px 22px; flex-direction: column; text-align: center; }
  .policy-profit-icon { width: 56px; height: 56px; flex-basis: 56px; }
  .policy-highlight p { font-size: 27px; }
  .footer-top { align-items: center; text-align: center; }
  .footer-brand { display: flex; flex-direction: column; align-items: center; }
  .footer-brand p { margin-left: auto; margin-right: auto; }
  .footer-cols { width: 100%; justify-content: center; text-align: center; gap: 34px; }
  .footer-col { min-width: 130px; }
  .footer-bottom { justify-content: center; text-align: center; }
}


/* Final alignment pass — requested visual refinements */

/* Homepage functionality intro: match the feature-banner grid so the splash
   screen sits on the same visual axis as the phone graphics below. */
.func-intro {
  grid-template-columns: 0.92fr 1.08fr;
  gap: 64px;
  align-items: center;
  padding-bottom: 72px;
}

.func-intro-copy {
  align-self: center;
  text-align: left;
}

.func-intro-copy p {
  max-width: 440px;
  margin: 0;
  color: var(--text-secondary);
  font-size: 18px;
  line-height: 1.6;
  font-weight: 400;
}

.func-intro-visual {
  justify-content: center;
  min-height: 420px;
}

.func-intro-visual .phone {
  width: 320px;
  max-width: 320px;
}

/* About page: centered introductory copy, consistent with the other
   editorial page intros. */
.about-hero-content {
  text-align: center;
}

.about-hero-content .breadcrumb {
  justify-content: center;
}

.about-hero-content > p {
  max-width: 820px;
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}

/* Application page: center the complete feature presentation. */
.app-functions .section-head {
  max-width: 820px;
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}

.app-functions .section-head .eyebrow {
  justify-content: center;
  width: 100%;
}

.app-functions .numbered-list {
  max-width: 980px;
  margin-left: auto;
  margin-right: auto;
}

.app-functions .numbered-item {
  grid-template-columns: 1fr;
  gap: 12px;
  text-align: center;
}

.app-functions .numbered-item .num {
  margin-bottom: 2px;
}

.app-functions .numbered-item .problem-q,
.app-functions .numbered-item h3,
.app-functions .numbered-item p {
  max-width: 760px;
  margin-left: auto;
  margin-right: auto;
}

@media (max-width: 980px) {
  .func-intro {
    grid-template-columns: 1fr;
    gap: 36px;
  }
  .func-intro-visual {
    order: -1;
  }
  .func-intro-copy {
    text-align: center;
  }
  .func-intro-copy p {
    margin-left: auto;
    margin-right: auto;
  }
}

/* Latest visual corrections */

/* Homepage: copy left, FLOTT splash phone right, aligned with feature phone column. */
.func-intro {
  display: grid;
  grid-template-columns: minmax(0, .9fr) minmax(380px, 1.1fr);
  gap: 72px;
  align-items: center;
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 0 72px;
}
.func-intro-copy {
  grid-column: 1;
  grid-row: 1;
  align-self: center;
  text-align: left;
}
.func-intro-copy p {
  max-width: 560px;
  margin: 0;
  font-size: 18px;
  line-height: 1.6;
  font-weight: 500;
  color: var(--text-secondary);
}
.func-intro-visual {
  grid-column: 2;
  grid-row: 1;
  min-height: 420px;
  display: flex;
  justify-content: center;
  align-items: center;
  padding-left: 0;
}
.func-intro-visual .phone { width: 300px; }

/* Application: problem questions are a strong visual warning, not secondary grey copy. */
.app-functions .numbered-item .problem-q {
  display: block;
  color: #ff6f7f;
  font-size: clamp(19px, 2vw, 24px);
  line-height: 1.35;
  font-weight: 700;
  margin-bottom: 8px;
}

/* Oferta: policy highlight is one clean, centered statement. */
.policy-highlight {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 22px;
  text-align: center;
}
.policy-highlight .policy-profit-icon {
  flex: 0 0 auto;
}
.policy-list {
  display: flex;
  flex-direction: column;
  gap: 10px;
  text-align: center;
}
.policy-list li {
  color: #fff;
  font-size: clamp(20px, 2.2vw, 28px);
  line-height: 1.3;
  font-weight: 600;
  list-style: none;
}
.policy-list li:first-child {
  margin-bottom: 8px;
  padding-bottom: 18px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.16);
  font-weight: 500;
}
.policy-list li strong {
  color: var(--success);
}

@media (max-width: 980px) {
  .func-intro {
    grid-template-columns: 1fr;
    gap: 28px;
  }
  .func-intro-copy {
    grid-column: 1;
    grid-row: 2;
    text-align: center;
  }
  .func-intro-copy p { margin-left: auto; margin-right: auto; }
  .func-intro-visual {
    grid-column: 1;
    grid-row: 1;
    min-height: 360px;
  }
  .policy-highlight {
    flex-direction: column;
    gap: 14px;
  }
}
