/* ============================================
   COPARENTES – DESIGN SYSTEM
   ============================================ */

/* ---- RESET & BASE ---- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --green:       #5FBF8F;
  --green-light: #E8F7EF;
  --green-dark:  #3FA070;
  --blue:        #6FA8DC;
  --blue-light:  #EAF3FB;
  --bg:          #FFFFFF;
  --bg-soft:     #F9FAFB;
  --bg-warm:     #F4F8F5;
  --text:        #1A1A1A;
  --sub:         #6B6B6B;
  --border:      #E8ECEF;
  --shadow-sm:   0 2px 12px rgba(0,0,0,.06);
  --shadow-md:   0 8px 32px rgba(0,0,0,.10);
  --shadow-lg:   0 16px 56px rgba(0,0,0,.12);
  --radius-sm:   12px;
  --radius:      20px;
  --radius-lg:   28px;
  --font:        'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  --nav-h:       72px;
  --transition:  0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

html { scroll-behavior: smooth; font-size: 16px; }

body {
  font-family: var(--font);
  color: var(--text);
  background: var(--bg);
  line-height: 1.65;
  overflow-x: hidden;
}

a { text-decoration: none; color: inherit; }
ul { list-style: none; }
img { max-width: 100%; height: auto; display: block; }
button { border: none; background: none; cursor: pointer; font: inherit; }

.container {
  max-width: 1160px;
  margin: 0 auto;
  padding: 0 24px;
}

/* ---- TYPOGRAPHY ---- */
h1 { font-size: clamp(2.4rem, 5vw, 3.8rem); font-weight: 800; line-height: 1.15; letter-spacing: -0.03em; }
h2 { font-size: clamp(1.8rem, 3.5vw, 2.8rem); font-weight: 700; line-height: 1.2; letter-spacing: -0.02em; }
h3 { font-size: 1.2rem; font-weight: 700; line-height: 1.3; }

.highlight { color: var(--green); }
.body-text { font-size: 1.1rem; color: var(--sub); line-height: 1.75; }
.mt-sm { margin-top: 16px; }

.section-label {
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--green);
  margin-bottom: 12px;
}

.section-header {
  text-align: center;
  margin-bottom: 56px;
}
.section-header h2 { margin-top: 8px; }

/* ---- BUTTONS ---- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-weight: 600;
  border-radius: 14px;
  transition: var(--transition);
  cursor: pointer;
  white-space: nowrap;
}
.btn:active { transform: scale(0.97); }

.btn-primary {
  background: var(--green);
  color: #fff;
  box-shadow: 0 4px 20px rgba(95,191,143,.35);
}
.btn-primary:hover {
  background: var(--green-dark);
  box-shadow: 0 6px 28px rgba(95,191,143,.45);
  transform: translateY(-2px);
}
.btn-white {
  background: #fff;
  color: var(--green);
  box-shadow: var(--shadow-md);
}
.btn-white:hover {
  box-shadow: var(--shadow-lg);
  transform: translateY(-2px);
}

.btn-sm  { font-size: 0.85rem; padding: 8px 18px; }
.btn-lg  { font-size: 1.05rem; padding: 16px 32px; }
.btn-xl  { font-size: 1.15rem; padding: 20px 44px; border-radius: 18px; }

/* Store Buttons */
.store-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 10px 20px;
  background: var(--text);
  color: #fff;
  border-radius: 12px;
  font-size: 0.88rem;
  transition: var(--transition);
}
.store-btn i { font-size: 1.4rem; }
.store-btn span { display: flex; flex-direction: column; line-height: 1.3; }
.store-btn small { font-size: 0.72rem; opacity: 0.75; }
.store-btn:hover { background: #333; transform: translateY(-2px); }

.store-btn-dark {
  background: rgba(255,255,255,.12);
  border: 1px solid rgba(255,255,255,.25);
  color: #fff;
}
.store-btn-dark:hover { background: rgba(255,255,255,.2); }

/* ---- FADE IN ANIMATIONS ---- */
.fade-in, .fade-in-delay {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.fade-in-delay { transition-delay: 0.18s; }
.fade-in.visible, .fade-in-delay.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ============================================
   NAVBAR
   ============================================ */
.navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  height: var(--nav-h);
  background: rgba(255,255,255,.9);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid transparent;
  transition: border-color 0.3s, box-shadow 0.3s;
}
.navbar.scrolled {
  border-color: var(--border);
  box-shadow: var(--shadow-sm);
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
}

.logo {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 1.3rem;
  font-weight: 800;
  color: var(--text);
  letter-spacing: -0.03em;
}
.logo-dot {
  width: 10px; height: 10px;
  background: var(--green);
  border-radius: 50%;
  flex-shrink: 0;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 32px;
}
.nav-links li a {
  font-size: 0.92rem;
  font-weight: 500;
  color: var(--sub);
  transition: color 0.2s;
}
.nav-links li a:hover { color: var(--text); }

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  width: 28px;
  padding: 4px;
}
.nav-toggle span {
  width: 100%; height: 2px;
  background: var(--text);
  border-radius: 2px;
  transition: var(--transition);
}

/* ============================================
   SECTION 1 – HERO
   ============================================ */
.hero {
  padding-top: calc(var(--nav-h) + 80px);
  padding-bottom: 0;
  background: var(--bg);
  position: relative;
  overflow: hidden;
}
.hero::before {
  content: '';
  position: absolute;
  top: -100px; right: -200px;
  width: 700px; height: 700px;
  background: radial-gradient(circle, rgba(95,191,143,.08) 0%, transparent 70%);
  pointer-events: none;
}
.hero::after {
  content: '';
  position: absolute;
  bottom: 40px; left: -150px;
  width: 500px; height: 500px;
  background: radial-gradient(circle, rgba(111,168,220,.06) 0%, transparent 70%);
  pointer-events: none;
}

.hero-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
  padding-bottom: 80px;
}

.badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 6px 16px;
  background: var(--green-light);
  color: var(--green-dark);
  border-radius: 100px;
  font-size: 0.82rem;
  font-weight: 600;
  margin-bottom: 24px;
}

.hero-text h1 { margin-bottom: 20px; }

.subheadline {
  font-size: 1.15rem;
  color: var(--sub);
  line-height: 1.75;
  margin-bottom: 40px;
  max-width: 460px;
}

.hero-cta {
  display: flex;
  flex-direction: column;
  gap: 20px;
  align-items: flex-start;
}
.store-buttons {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.hero-note {
  margin-top: 8px;
  font-size: 0.82rem;
  color: #aaa;
  display: flex;
  align-items: center;
  gap: 6px;
}
.hero-note i { color: var(--green); }

/* Phone Mockups */
.hero-visual { position: relative; }

.phone-mockups {
  display: flex;
  justify-content: center;
  align-items: flex-end;
  position: relative;
  height: 500px;
}

.phone {
  position: absolute;
  border-radius: 28px;
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  background: #fff;
  border: 1.5px solid rgba(0,0,0,.08);
}
.phone-screen {
  padding: 16px;
  height: 100%;
  overflow: hidden;
}

/* Left phone - chat */
.phone-left {
  width: 190px; height: 340px;
  left: 0; bottom: 0;
  transform: rotate(-6deg);
  z-index: 1;
}
.screen-header {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 16px;
  padding-bottom: 12px;
  border-bottom: 1px solid var(--border);
}
.screen-avatar {
  width: 32px; height: 32px;
  background: var(--blue-light);
  color: var(--blue);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 0.85rem;
}
.screen-header span { font-size: 0.85rem; font-weight: 600; }

.chat-messages { display: flex; flex-direction: column; gap: 8px; }
.msg {
  padding: 8px 12px;
  border-radius: 14px;
  font-size: 0.75rem;
  line-height: 1.4;
  max-width: 90%;
}
.msg-in {
  background: var(--bg-soft);
  align-self: flex-start;
  color: var(--text);
}
.msg-out {
  background: var(--green);
  color: #fff;
  align-self: flex-end;
}
.calm-suggestion {
  margin-top: 8px;
  background: var(--green-light);
  color: var(--green-dark);
  font-size: 0.72rem;
  display: flex;
  align-items: center;
  gap: 5px;
  border-radius: 10px;
  align-self: stretch;
}

/* Center phone - calendar */
.phone-center {
  width: 210px; height: 380px;
  left: 50%;
  transform: translateX(-50%);
  bottom: 20px;
  z-index: 3;
}
.screen-title {
  font-size: 0.85rem;
  font-weight: 700;
  margin-bottom: 12px;
  text-align: center;
}
.cal-grid {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 2px;
  margin-bottom: 10px;
}
.cal-day {
  font-size: 0.6rem;
  font-weight: 600;
  text-align: center;
  color: var(--sub);
  padding: 3px 0;
}
.cal-num {
  font-size: 0.65rem;
  text-align: center;
  padding: 4px 2px;
  border-radius: 6px;
  position: relative;
}
.cal-mom { background: rgba(111,168,220,.18); color: #4a86ba; font-weight: 600; }
.cal-dad { background: rgba(95,191,143,.18); color: var(--green-dark); font-weight: 600; }
.cal-event { background: #FFF3E0; color: #E65100; }
.cal-event span { font-size: 0.55rem; display: block; }
.cal-legend {
  display: flex; gap: 8px; justify-content: center; margin-top: 8px;
  font-size: 0.65rem; color: var(--sub);
}
.leg-mom { color: #4a86ba; font-weight: 600; }
.leg-dad { color: var(--green-dark); font-weight: 600; }

/* Right phone - finance */
.phone-right {
  width: 190px; height: 340px;
  right: 0; bottom: 0;
  transform: rotate(6deg);
  z-index: 1;
}
.finance-item {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 8px 0;
  border-bottom: 1px solid var(--border);
}
.fi-icon { font-size: 1rem; }
.fi-info { flex: 1; }
.fi-info span { font-size: 0.72rem; font-weight: 600; display: block; }
.fi-info small { font-size: 0.62rem; color: var(--sub); }
.fi-amount { font-size: 0.75rem; font-weight: 700; }
.fi-amount.green { color: var(--green); }
.finance-divider { height: 1px; background: var(--border); margin: 10px 0; }
.balance-row {
  display: flex; justify-content: space-between; align-items: center;
  font-size: 0.75rem;
}
.balance-num { font-size: 1rem; font-weight: 800; color: var(--green); }
.balance-note { font-size: 0.65rem; color: var(--green); margin-top: 6px; text-align: center; }

.hero-wave {
  margin-top: 0;
  line-height: 0;
}
.hero-wave svg {
  width: 100%; height: 80px;
  display: block;
}

/* ============================================
   SECTION 2 – EMOTIONAL
   ============================================ */
.emotional {
  background: var(--bg-soft);
  padding: 100px 0;
}
.emotional-inner {
  max-width: 680px;
  margin: 0 auto;
  text-align: center;
}

.eq-large {
  font-size: clamp(1.5rem, 3vw, 2.1rem);
  font-weight: 700;
  line-height: 1.35;
  margin-bottom: 8px;
}
.eq-accent { color: var(--green); }

.eq-divider {
  width: 48px; height: 3px;
  background: linear-gradient(90deg, var(--green), var(--blue));
  border-radius: 4px;
  margin: 32px auto;
}

.eq-medium {
  font-size: 1.15rem;
  color: var(--sub);
  margin-bottom: 20px;
}
.eq-regular {
  font-size: 1rem;
  color: var(--sub);
  line-height: 1.8;
}
.eq-regular strong { color: var(--text); }

/* ============================================
   SECTION 3 – FEATURES
   ============================================ */
.features {
  background: var(--bg);
  padding: 100px 0;
}

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

.feature-card {
  background: var(--bg);
  border: 1.5px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 40px 32px;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}
.feature-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--green), var(--blue));
  opacity: 0;
  transition: opacity 0.3s;
}
.feature-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-md);
  border-color: rgba(95,191,143,.3);
}
.feature-card:hover::before { opacity: 1; }

.feat-icon {
  width: 56px; height: 56px;
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  margin-bottom: 24px;
}
.feat-icon-green { background: var(--green-light); color: var(--green); }
.feat-icon-blue  { background: var(--blue-light);  color: var(--blue); }

.feature-card h3 { margin-bottom: 12px; }
.feature-card p { color: var(--sub); font-size: 0.97rem; }

/* ============================================
   SECTION 4 – KOMUNIKACJA
   ============================================ */
.comm-section {
  background: var(--bg-warm);
  padding: 100px 0;
}
.comm-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.comm-text h2 { margin-bottom: 20px; }

.comm-points {
  margin-top: 32px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.comm-point {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 1rem;
  color: var(--text);
}
.cp-arrow {
  color: var(--green);
  font-weight: 700;
  font-size: 1.1rem;
}

/* Message Comparison */
.message-comparison {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.msg-card {
  background: #fff;
  border-radius: var(--radius);
  padding: 20px 24px;
  box-shadow: var(--shadow-sm);
}

.msg-label {
  font-size: 0.78rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 10px;
  display: flex;
  align-items: center;
  gap: 6px;
}
.msg-sharp .msg-label { color: #E84B4B; }
.msg-calm  .msg-label { color: var(--green); }

.msg-bubble {
  padding: 14px 18px;
  border-radius: 16px;
  font-size: 0.95rem;
  line-height: 1.6;
}
.bubble-sharp {
  background: #FFF0F0;
  color: #C0392B;
  border-left: 3px solid #E84B4B;
}
.bubble-calm {
  background: var(--green-light);
  color: var(--green-dark);
  border-left: 3px solid var(--green);
}

.msg-transform {
  text-align: center;
  padding: 4px 0;
}
.transform-arrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 20px;
  background: linear-gradient(135deg, var(--green-light), var(--blue-light));
  border-radius: 100px;
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--green-dark);
}
.transform-arrow i { color: var(--green); }

/* ============================================
   SECTION 5 – PLAN DNIA / KALENDARZ
   ============================================ */
.calendar-section {
  background: var(--bg);
  padding: 100px 0;
}
.cal-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.big-calendar {
  background: #fff;
  border-radius: var(--radius-lg);
  padding: 28px;
  box-shadow: var(--shadow-md);
  border: 1.5px solid var(--border);
}
.bc-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 20px;
}
.bc-month { font-size: 1rem; font-weight: 700; }
.bc-nav { display: flex; gap: 8px; }
.bc-nav button {
  width: 32px; height: 32px;
  border-radius: 8px;
  background: var(--bg-soft);
  color: var(--sub);
  font-size: 0.75rem;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition);
}
.bc-nav button:hover { background: var(--green-light); color: var(--green); }

.bc-grid {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 4px;
  margin-bottom: 16px;
}
.bc-weekday {
  font-size: 0.7rem;
  font-weight: 700;
  text-align: center;
  color: var(--sub);
  padding: 6px 0;
}
.bc-day {
  font-size: 0.78rem;
  text-align: center;
  padding: 8px 4px;
  border-radius: 10px;
  position: relative;
  font-weight: 500;
  cursor: default;
  transition: background 0.2s;
  min-height: 42px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  gap: 2px;
}
.bc-mom { background: rgba(111,168,220,.15); color: #2c6fa0; }
.bc-dad { background: rgba(95,191,143,.15); color: var(--green-dark); }
.bc-event { background: #FFF8E1; color: #E65100; }

.bc-tag {
  font-size: 0.58rem;
  font-weight: 600;
  padding: 1px 4px;
  border-radius: 4px;
}
.bc-mom .bc-tag { background: rgba(111,168,220,.3); color: #2c6fa0; }
.bc-dad .bc-tag { background: rgba(95,191,143,.3); color: var(--green-dark); }
.bc-tag-event { background: rgba(230,81,0,.12); color: #E65100; }

.bc-legend {
  display: flex;
  gap: 20px;
  font-size: 0.8rem;
  color: var(--sub);
  padding-top: 12px;
  border-top: 1px solid var(--border);
}
.bcl-mom, .bcl-dad, .bcl-event {
  display: flex;
  align-items: center;
  gap: 6px;
}
.bcl-mom span {
  width: 12px; height: 12px;
  background: rgba(111,168,220,.4);
  border-radius: 3px;
}
.bcl-dad span {
  width: 12px; height: 12px;
  background: rgba(95,191,143,.4);
  border-radius: 3px;
}
.bcl-event span {
  width: 12px; height: 12px;
  background: #FFF8E1;
  border-radius: 3px;
  border: 1px solid #E65100;
}

.cal-text h2 { margin-bottom: 20px; }

.cal-benefits {
  margin-top: 32px;
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.cb-item {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 0.97rem;
}
.cb-item i { color: var(--green); font-size: 0.9rem; }

/* ============================================
   SECTION 6 – FINANSE
   ============================================ */
.finance-section {
  background: var(--bg-soft);
  padding: 100px 0;
}
.fin-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.fin-text h2 { margin-bottom: 20px; }
.fin-accent {
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--text);
}

.fin-card {
  background: #fff;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
  border: 1.5px solid var(--border);
  overflow: hidden;
}
.fin-card-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 24px;
  background: linear-gradient(135deg, var(--green-light), var(--blue-light));
  font-weight: 700;
  font-size: 0.9rem;
}
.fin-month { color: var(--sub); font-weight: 500; }

.fin-list { padding: 8px 24px; }

.fin-row {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 14px 0;
  border-bottom: 1px solid var(--border);
}
.fin-row:last-child { border-bottom: none; }

.fin-icon-wrap { font-size: 1.3rem; width: 36px; text-align: center; }
.fin-details { flex: 1; }
.fin-name { font-size: 0.9rem; font-weight: 600; display: block; }
.fin-date { font-size: 0.78rem; color: var(--sub); display: block; }
.fin-val { font-size: 0.95rem; font-weight: 700; }
.fin-val.green { color: var(--green); }

.fin-total {
  padding: 20px 24px;
  background: var(--bg-soft);
  border-top: 1.5px solid var(--border);
}
.fin-total-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 1rem;
  margin-bottom: 16px;
}
.fin-total-row strong { font-size: 1.2rem; font-weight: 800; }

.fin-split {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-bottom: 16px;
}
.fin-split-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.85rem;
}
.fin-split-item strong { margin-left: auto; }
.split-dot {
  width: 10px; height: 10px;
  border-radius: 50%;
  flex-shrink: 0;
}
.dot-mom { background: var(--blue); }
.dot-dad { background: var(--green); }

.fin-status {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--green);
  text-align: center;
  padding: 8px;
  background: var(--green-light);
  border-radius: 10px;
}

/* ============================================
   SECTION 7 – DZIECKO
   ============================================ */
.child-section {
  background: linear-gradient(135deg, #F0FBF5 0%, #EAF3FB 100%);
  padding: 120px 0;
  text-align: center;
}
.child-inner {
  max-width: 700px;
  margin: 0 auto;
}

.child-icon {
  font-size: 3rem;
  margin-bottom: 24px;
  display: block;
}
.child-headline { margin-bottom: 40px; }

.child-text-blocks {
  display: flex;
  flex-direction: column;
  gap: 12px;
  font-size: 1.15rem;
  color: var(--sub);
  margin-bottom: 60px;
}
.child-divider {
  width: 40px; height: 2px;
  background: var(--green);
  margin: 8px auto;
  border-radius: 2px;
}
.child-closing {
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--text);
}
.child-closing strong { color: var(--green); }

.child-homes {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
}

.home-card {
  background: #fff;
  border-radius: var(--radius);
  padding: 24px 32px;
  box-shadow: var(--shadow-sm);
  text-align: center;
  min-width: 120px;
}
.home-emoji { font-size: 2rem; margin-bottom: 8px; }
.home-card span { font-size: 0.88rem; font-weight: 600; color: var(--sub); }

.home-heart {
  color: var(--green);
  font-size: 1.2rem;
  opacity: 0.6;
}

.child-avatar { font-size: 2.8rem; }
.home-child span { font-size: 0.88rem; font-weight: 600; color: var(--sub); }
.home-child { text-align: center; }

/* ============================================
   SECTION 8 – AI
   ============================================ */
.ai-section {
  background: var(--bg);
  padding: 100px 0;
}
.ai-inner {
  max-width: 820px;
  margin: 0 auto;
  text-align: center;
}

.ai-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 20px;
  background: linear-gradient(135deg, var(--green-light), var(--blue-light));
  color: var(--green-dark);
  border-radius: 100px;
  font-size: 0.82rem;
  font-weight: 700;
  margin-bottom: 24px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.ai-inner h2 { margin-bottom: 16px; }
.ai-body {
  font-size: 1.1rem;
  color: var(--sub);
  margin-bottom: 56px;
}

.ai-feature-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

.ai-feat {
  background: var(--bg-soft);
  border-radius: var(--radius);
  padding: 32px 24px;
  text-align: center;
}
.ai-feat-icon {
  width: 52px; height: 52px;
  background: var(--green-light);
  color: var(--green);
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  margin: 0 auto 16px;
}
.ai-feat p { font-size: 0.93rem; color: var(--sub); line-height: 1.65; }

/* ============================================
   SECTION 9 – OPINIE
   ============================================ */
.reviews-section {
  background: var(--bg-soft);
  padding: 100px 0;
}

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

.review-card {
  background: #fff;
  border-radius: var(--radius-lg);
  padding: 36px 32px;
  box-shadow: var(--shadow-sm);
  border: 1.5px solid var(--border);
  transition: var(--transition);
}
.review-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}
.review-card-featured {
  border-color: var(--green);
  box-shadow: 0 8px 32px rgba(95,191,143,.15);
  transform: translateY(-8px);
}
.review-card-featured:hover {
  transform: translateY(-14px);
}

.review-stars {
  color: #F9C03D;
  font-size: 0.9rem;
  margin-bottom: 20px;
  display: flex;
  gap: 3px;
}
.review-text {
  font-size: 1rem;
  line-height: 1.7;
  color: var(--text);
  margin-bottom: 24px;
  font-style: italic;
}
.review-author {
  display: flex;
  align-items: center;
  gap: 12px;
}
.author-avatar {
  width: 40px; height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 0.95rem;
  color: #fff;
}
.av-a { background: linear-gradient(135deg, var(--blue), #5a90c8); }
.av-m { background: linear-gradient(135deg, var(--green), var(--green-dark)); }
.av-k { background: linear-gradient(135deg, #9B59B6, #7D3C98); }

.author-info strong { display: block; font-size: 0.9rem; }
.author-info span   { font-size: 0.8rem; color: var(--sub); }

/* ============================================
   SECTION 10 – APP PREVIEW
   ============================================ */
.preview-section {
  background: var(--bg);
  padding: 100px 0;
}

.preview-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  align-items: stretch;
}

.preview-card {
  background: var(--bg-soft);
  border-radius: var(--radius-lg);
  padding: 40px 32px;
  border: 1.5px solid var(--border);
  transition: var(--transition);
}
.preview-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
  border-color: rgba(95,191,143,.3);
}
.preview-card-center {
  background: linear-gradient(145deg, #fff, var(--green-light));
  border-color: var(--green);
  box-shadow: var(--shadow-sm);
}

.preview-emoji { font-size: 2.8rem; margin-bottom: 16px; }
.preview-card h3 { margin-bottom: 12px; }
.preview-card p {
  font-size: 0.95rem;
  color: var(--sub);
  margin-bottom: 24px;
  line-height: 1.7;
}

.preview-list {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.preview-list li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.88rem;
  color: var(--text);
}
.preview-list li i { color: var(--green); font-size: 0.8rem; flex-shrink: 0; }

/* ============================================
   SECTION 11 – FINAL CTA
   ============================================ */
.final-cta {
  background: linear-gradient(135deg, var(--green) 0%, #4aaa7a 40%, var(--blue) 100%);
  padding: 120px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.final-cta::before {
  content: '';
  position: absolute;
  top: -50%; left: -20%;
  width: 600px; height: 600px;
  background: radial-gradient(circle, rgba(255,255,255,.08) 0%, transparent 70%);
}
.final-cta::after {
  content: '';
  position: absolute;
  bottom: -30%; right: -10%;
  width: 500px; height: 500px;
  background: radial-gradient(circle, rgba(255,255,255,.06) 0%, transparent 70%);
}

.final-inner { position: relative; z-index: 2; }

.final-headline {
  font-size: clamp(2rem, 4.5vw, 3.4rem);
  font-weight: 800;
  line-height: 1.2;
  color: #fff;
  margin-bottom: 20px;
}
.highlight-white {
  color: rgba(255,255,255,.85);
  text-shadow: 0 0 40px rgba(255,255,255,.3);
}

.final-sub {
  font-size: 1.1rem;
  color: rgba(255,255,255,.8);
  margin-bottom: 48px;
}

.final-stores {
  display: flex;
  gap: 16px;
  justify-content: center;
  margin-top: 24px;
  flex-wrap: wrap;
}
.final-note {
  margin-top: 28px;
  font-size: 0.85rem;
  color: rgba(255,255,255,.6);
}

/* ============================================
   FOOTER
   ============================================ */
.footer {
  background: #111827;
  color: rgba(255,255,255,.7);
  padding: 80px 0 32px;
}
.footer-top {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 48px;
  padding-bottom: 60px;
  border-bottom: 1px solid rgba(255,255,255,.08);
}

.logo-light { color: #fff; }
.footer-brand p {
  font-size: 0.9rem;
  color: rgba(255,255,255,.5);
  margin-top: 12px;
  max-width: 240px;
  line-height: 1.6;
}

.social-links {
  display: flex;
  gap: 12px;
  margin-top: 20px;
}
.social-links a {
  width: 36px; height: 36px;
  border-radius: 10px;
  background: rgba(255,255,255,.07);
  color: rgba(255,255,255,.6);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.9rem;
  transition: var(--transition);
}
.social-links a:hover {
  background: var(--green);
  color: #fff;
}

.footer-links-group h4 {
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255,255,255,.9);
  margin-bottom: 20px;
}
.footer-links-group ul {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.footer-links-group a {
  font-size: 0.88rem;
  color: rgba(255,255,255,.5);
  transition: color 0.2s;
}
.footer-links-group a:hover { color: var(--green); }

.footer-bottom {
  padding-top: 32px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.82rem;
  color: rgba(255,255,255,.35);
  flex-wrap: wrap;
  gap: 12px;
}

/* ============================================
   RESPONSIVE – TABLET ONLY (>768px, ≤1024px)
   Mobile fixes are in css/mobile.css
   ============================================ */
@media (max-width: 1024px) {
  .hero-inner,
  .comm-inner,
  .cal-inner,
  .fin-inner {
    grid-template-columns: 1fr;
    gap: 48px;
  }

  /* Tekst hero NAJPIERW, visual PONIŻEJ */
  .hero-visual { order: 2; }
  .hero-text   { order: 1; }
  .cal-mockup  { order: 2; }
  .cal-text    { order: 1; }

  .features-grid,
  .reviews-grid,
  .preview-grid,
  .ai-feature-row {
    grid-template-columns: 1fr 1fr;
  }

  .footer-top {
    grid-template-columns: 1fr 1fr;
    gap: 40px;
  }

  /* Mockupy telefonów – tablet */
  .phone-mockups {
    height: 380px;
  }
  .phone-center {
    width: 195px; height: 350px;
  }
  .phone-left  { width: 160px; height: 290px; }
  .phone-right { width: 160px; height: 290px; }
}

/* Mobile styles → see css/mobile.css */

/* ============================================
   SCROLLBAR
   ============================================ */
::-webkit-scrollbar { width: 8px; }
::-webkit-scrollbar-track { background: var(--bg-soft); }
::-webkit-scrollbar-thumb { background: var(--green); border-radius: 4px; }
::-webkit-scrollbar-thumb:hover { background: var(--green-dark); }
