/* ═══════════════════════════════════════════════════════════════
   Savaitgalis kitur — Landing page styles
   Brand: #F5B015 yellow, #161616 black
   ═══════════════════════════════════════════════════════════════ */

*, *::before, *::after { box-sizing: border-box; }
html, body { margin: 0; padding: 0; }
body {
  font-family: system-ui, -apple-system, "Segoe UI", Roboto, Arial, sans-serif;
  color: #161616;
  background: #ffffff;
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
a { color: inherit; text-decoration: none; }
img, svg { display: block; max-width: 100%; }
button { font: inherit; cursor: pointer; }

.container { max-width: 1120px; margin: 0 auto; padding: 0 20px; }
.container.narrow { max-width: 720px; }

/* ── Buttons ─────────────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  padding: 11px 18px;
  border-radius: 9px;
  border: 1px solid transparent;
  font-weight: 500;
  font-size: 14px;
  white-space: nowrap;
  transition: transform .12s ease, background .12s ease, border-color .12s ease, color .12s ease;
  text-decoration: none;
}
.btn-sm { padding: 8px 14px; font-size: 13px; }
.btn-lg { padding: 14px 22px; font-size: 15px; }
.btn-block { display: flex; width: 100%; }

.btn-yellow { background: #F5B015; color: #161616; }
.btn-yellow:hover { background: #e0a112; }
.btn-black { background: #161616; color: #fff; }
.btn-black:hover { background: #2b2b2b; }
.btn-outline { background: transparent; color: #fff; border-color: rgba(255,255,255,0.3); }
.btn-outline:hover { border-color: #fff; background: rgba(255,255,255,0.07); }
.btn-outline-dark { background: transparent; color: #161616; border-color: #d4d4d4; }
.btn-outline-dark:hover { border-color: #161616; }

/* ── Header ───────────────────────────────────────────────────── */
.hdr {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(255,255,255,0.92);
  backdrop-filter: saturate(180%) blur(12px);
  -webkit-backdrop-filter: saturate(180%) blur(12px);
  border-bottom: 1px solid transparent;
  transition: box-shadow .15s ease, border-color .15s ease;
}
.hdr.scrolled {
  border-bottom-color: #ececec;
  box-shadow: 0 2px 8px rgba(0,0,0,0.04);
}
.hdr-inner {
  max-width: 1120px;
  margin: 0 auto;
  padding: 12px 20px;
  display: flex;
  align-items: center;
  gap: 24px;
}
.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-weight: 600;
  color: #161616;
}
.brand-logo {
  width: 36px; height: 36px;
  border-radius: 50%;
  background: #F5B015;
  object-fit: cover;
  flex-shrink: 0;
}
.brand-name { font-size: 15px; font-weight: 600; letter-spacing: -0.01em; }
.brand-name-light { color: #fff; }

.nav { display: flex; gap: 22px; margin-left: auto; }
.nav a {
  font-size: 14px; color: #444; font-weight: 500;
  padding: 6px 0; transition: color .12s;
}
.nav a:hover { color: #161616; }

.menu-toggle {
  display: none;
  width: 36px; height: 36px;
  background: transparent; border: 0;
  flex-direction: column; justify-content: center; gap: 4px;
  margin-left: auto;
}
.menu-toggle span {
  display: block;
  width: 20px; height: 2px;
  background: #161616;
  border-radius: 1px;
}
.mobile-menu {
  display: none;
  flex-direction: column;
  padding: 16px 20px 20px;
  gap: 14px;
  border-top: 1px solid #ececec;
  background: #fff;
}
.mobile-menu a {
  font-size: 15px;
  color: #161616;
  font-weight: 500;
  padding: 6px 0;
}
.mobile-menu .mobile-cta {
  background: #F5B015;
  color: #161616;
  text-align: center;
  padding: 11px;
  border-radius: 9px;
  font-weight: 500;
}

/* ── Hero ─────────────────────────────────────────────────────── */
.hero {
  background: #161616;
  color: #fff;
  padding: 80px 0 96px;
  overflow: hidden;
}
.hero-inner {
  max-width: 1120px;
  margin: 0 auto;
  padding: 0 20px;
  display: grid;
  grid-template-columns: 60% 40%;
  gap: 48px;
  align-items: center;
}
.hero-left { max-width: 580px; }
.eyebrow {
  display: inline-flex; align-items: center; gap: 7px;
  font-size: 12px; font-weight: 500; letter-spacing: 0.06em;
  color: #F5B015;
  margin-bottom: 22px;
}
.live {
  width: 7px; height: 7px;
  background: #3ecf8e;
  border-radius: 50%;
  display: inline-block;
  animation: pulse 2s ease-in-out infinite;
}
@keyframes pulse {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.4; }
}
.hero h1 {
  margin: 0 0 22px;
  font-size: 52px;
  font-weight: 700;
  letter-spacing: -0.025em;
  line-height: 1.05;
  color: #fff;
}
.hero h1 .hl { color: #F5B015; }
.lead {
  margin: 0 0 32px;
  font-size: 17px;
  color: #aaa;
  line-height: 1.55;
  max-width: 540px;
}
.cta-row {
  display: flex; flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 28px;
}
.hero-bullets {
  margin: 0;
  font-size: 13px;
  color: #777;
  letter-spacing: 0.01em;
}

/* Hero floating cards */
.hero-right { position: relative; min-height: 380px; }
.float-stack {
  position: relative;
  width: 100%;
  max-width: 360px;
  margin-left: auto;
}
.float-badge {
  position: absolute;
  top: -36px;
  right: 8px;
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.08em;
  color: #F5B015;
  background: rgba(245,176,21,0.08);
  border: 1px solid rgba(245,176,21,0.25);
  padding: 5px 10px;
  border-radius: 999px;
  display: inline-flex; align-items: center; gap: 6px;
}
.fc {
  background: #fff;
  color: #161616;
  border-radius: 12px;
  padding: 14px 16px;
  box-shadow: 0 12px 30px rgba(0,0,0,0.35);
  position: absolute;
  width: 320px;
  transition: transform .25s ease;
}
.fc1 { top: 0; left: 24px; transform: rotate(-3deg); z-index: 3; }
.fc2 { top: 76px; left: 0; transform: rotate(2deg); z-index: 2; }
.fc3 { top: 156px; left: 38px; transform: rotate(-1.5deg); z-index: 1; }
.float-stack:hover .fc1 { transform: rotate(-3deg) translateY(-4px); }
.float-stack:hover .fc2 { transform: rotate(2deg) translateY(-4px); }
.float-stack:hover .fc3 { transform: rotate(-1.5deg) translateY(-4px); }

.fc-top {
  display: flex; justify-content: space-between; align-items: flex-start;
  gap: 8px; margin-bottom: 8px;
}
.fc-left {
  display: flex; align-items: center; gap: 7px; flex-wrap: wrap;
}
.fl {
  width: 18px; height: 13px;
  border-radius: 2px;
  border: 0.5px solid rgba(0,0,0,0.08);
  flex-shrink: 0;
}
.fc-city { font-size: 14px; font-weight: 500; }
.fc-iata, .fc-day {
  font-size: 11px;
  padding: 2px 6px;
  background: #f0f0f0;
  color: #555;
  border-radius: 4px;
  font-weight: 500;
}
.fc-day.kt, .deal-day.kt { background: #fff8e1; color: #7a5e02; }
.fc-price {
  background: #F5B015; color: #161616;
  padding: 4px 10px;
  border-radius: 999px;
  font-size: 13px; font-weight: 700;
  white-space: nowrap;
}
.fc-meta { font-size: 12px; color: #666; }

/* ── Section general ──────────────────────────────────────────── */
.section { padding: 96px 0; }
.section-light { background: #fff; }
.section-gray { background: #fafafa; }
.section-dark { background: #161616; color: #fff; }

.section-h2 {
  margin: 0 0 12px;
  font-size: 36px;
  font-weight: 700;
  letter-spacing: -0.02em;
  text-align: center;
  line-height: 1.2;
}
.section-h2.light { color: #fff; }
.section-sub {
  margin: 0 auto 56px;
  font-size: 16px;
  color: #666;
  text-align: center;
  max-width: 540px;
}
.section-sub.muted { color: #999; }
.section-eyebrow-wrap { text-align: center; margin-bottom: 14px; }
.section-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.08em;
  color: #F5B015;
  background: rgba(245,176,21,0.1);
  border: 1px solid rgba(245,176,21,0.3);
  padding: 5px 12px;
  border-radius: 999px;
}

/* ── Kaip veikia ──────────────────────────────────────────────── */
.kv-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.kv-card {
  background: #fff;
  border: 1px solid #ececec;
  border-radius: 14px;
  padding: 32px 28px;
  transition: border-color .15s, transform .15s;
}
.kv-card:hover { border-color: #F5B015; transform: translateY(-2px); }
.kv-num {
  font-size: 64px;
  font-weight: 700;
  color: #F5B015;
  letter-spacing: -0.04em;
  line-height: 1;
  margin-bottom: 14px;
}
.kv-card h3 {
  margin: 0 0 10px;
  font-size: 20px;
  font-weight: 600;
}
.kv-card p {
  margin: 0;
  color: #666;
  font-size: 14px;
  line-height: 1.6;
}

/* ── Live deals ───────────────────────────────────────────────── */
.deals-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
  margin-bottom: 36px;
}
.deal {
  background: #fff;
  color: #161616;
  border-radius: 12px;
  padding: 14px 16px;
  border: 0.5px solid #ececec;
}
.deal-top {
  display: flex; justify-content: space-between; align-items: flex-start;
  gap: 8px; margin-bottom: 8px;
}
.deal-left { display: flex; align-items: center; gap: 7px; flex-wrap: wrap; }
.deal-city { font-size: 14px; font-weight: 500; }
.deal-iata, .deal-day {
  font-size: 11px;
  padding: 2px 6px;
  background: #f0f0f0;
  color: #555;
  border-radius: 4px;
  font-weight: 500;
}
.deal-price {
  background: #F5B015; color: #161616;
  padding: 4px 10px;
  border-radius: 999px;
  font-size: 13px; font-weight: 700;
  white-space: nowrap;
}
.deal-meta { font-size: 12px; color: #666; }
.center-cta { text-align: center; }

/* ── Pricing ──────────────────────────────────────────────────── */
.price-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  max-width: 880px;
  margin: 0 auto;
}
.price-card {
  background: #fff;
  border: 1px solid #ececec;
  border-radius: 14px;
  padding: 36px 32px;
  position: relative;
  display: flex;
  flex-direction: column;
}
.price-card.price-free { border-top: 4px solid #F5B015; }
.price-soon {
  position: absolute;
  top: 16px;
  right: 16px;
  font-size: 11px;
  font-weight: 500;
  color: #888;
  background: #f0f0f0;
  padding: 4px 10px;
  border-radius: 999px;
  letter-spacing: 0.04em;
}
.price-name {
  margin: 0 0 14px;
  font-size: 20px;
  font-weight: 600;
  color: #161616;
}
.price-amt {
  display: flex; align-items: baseline; gap: 8px;
  margin-bottom: 24px;
}
.price-num { font-size: 40px; font-weight: 700; letter-spacing: -0.025em; }
.price-per { font-size: 14px; color: #888; }
.price-list {
  list-style: none;
  padding: 0;
  margin: 0 0 28px;
  flex: 1;
}
.price-list li {
  position: relative;
  padding: 6px 0 6px 26px;
  font-size: 14px;
  color: #333;
  line-height: 1.5;
}
.price-list li::before {
  content: "✓";
  position: absolute;
  left: 0; top: 6px;
  color: #1f6e2c;
  font-weight: 700;
  font-size: 14px;
}

/* ── Modal ────────────────────────────────────────────────────── */
.modal {
  position: fixed;
  inset: 0;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  animation: modalFade .15s ease;
}
.modal[hidden] { display: none !important; }
@keyframes modalFade {
  from { opacity: 0; }
  to { opacity: 1; }
}
.modal-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.55);
  backdrop-filter: blur(2px);
}
.modal-card {
  position: relative;
  background: #fff;
  border-radius: 14px;
  padding: 36px 32px 28px;
  width: 100%;
  max-width: 460px;
  box-shadow: 0 24px 60px rgba(0,0,0,0.35);
  animation: modalSlide .18s ease;
}
@keyframes modalSlide {
  from { transform: translateY(8px); opacity: 0; }
  to { transform: translateY(0); opacity: 1; }
}
.modal-close {
  position: absolute;
  top: 12px; right: 14px;
  width: 32px; height: 32px;
  background: transparent;
  border: 0;
  font-size: 26px;
  color: #888;
  line-height: 1;
  border-radius: 6px;
  transition: background .12s, color .12s;
}
.modal-close:hover { background: #f5f5f5; color: #161616; }
.modal-title {
  margin: 0 0 8px;
  font-size: 22px;
  font-weight: 700;
  letter-spacing: -0.015em;
}
.modal-sub {
  margin: 0 0 20px;
  font-size: 14px;
  color: #666;
  line-height: 1.55;
}
.modal-form { display: flex; flex-direction: column; gap: 14px; }
.modal-field { display: flex; flex-direction: column; gap: 6px; }
.modal-field span {
  font-size: 12px;
  color: #888;
  font-weight: 500;
  letter-spacing: 0.02em;
}
.modal-field input {
  padding: 12px 14px;
  border: 1px solid #d4d4d4;
  border-radius: 9px;
  font-size: 15px;
  font-family: inherit;
  background: #fff;
  outline: none;
  transition: border-color .12s, box-shadow .12s;
}
.modal-field input:focus {
  border-color: #F5B015;
  box-shadow: 0 0 0 3px rgba(245,176,21,0.18);
}
.modal-check {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 13px;
  color: #555;
  line-height: 1.5;
  cursor: pointer;
}
.modal-check input[type="checkbox"] {
  margin: 3px 0 0;
  width: 16px; height: 16px;
  flex-shrink: 0;
  accent-color: #F5B015;
  cursor: pointer;
}
.modal-check a { color: #161616; font-weight: 500; text-decoration: underline; }
.modal-note {
  margin: 4px 0 0;
  font-size: 13px;
  color: #888;
  text-align: center;
  min-height: 18px;
}
.modal-note.success { color: #1f6e2c; font-weight: 500; }
.modal-note.error { color: #b91c1c; font-weight: 500; }
body.modal-open { overflow: hidden; }

/* ── FAQ ──────────────────────────────────────────────────────── */
.faq {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.faq-item {
  background: #fff;
  border: 1px solid #ececec;
  border-radius: 12px;
  padding: 0;
  transition: border-color .15s;
}
.faq-item:hover { border-color: #d4d4d4; }
.faq-item[open] { border-color: #F5B015; }
.faq-item summary {
  list-style: none;
  cursor: pointer;
  padding: 18px 22px;
  font-weight: 500;
  font-size: 15px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: relative;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after {
  content: "+";
  font-size: 22px;
  font-weight: 300;
  color: #888;
  transition: transform .2s ease;
}
.faq-item[open] summary::after {
  content: "−";
  color: #F5B015;
}
.faq-item p {
  margin: 0;
  padding: 0 22px 20px;
  color: #555;
  font-size: 14px;
  line-height: 1.65;
}

/* ── Footer ───────────────────────────────────────────────────── */
.ftr {
  background: #161616;
  color: #aaa;
  padding: 64px 0 28px;
}
.ftr-inner {
  max-width: 1120px;
  margin: 0 auto;
  padding: 0 20px;
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 36px;
}
.ftr-brand .brand { margin-bottom: 14px; }
.ftr-brand p {
  margin: 0 0 14px;
  font-size: 14px;
  color: #888;
  max-width: 320px;
  line-height: 1.6;
}
.ftr-ig {
  display: inline-block;
  font-size: 13px;
  color: #F5B015;
  font-weight: 500;
}
.ftr-col h4 {
  margin: 0 0 14px;
  color: #fff;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}
.ftr-col a {
  display: block;
  padding: 4px 0;
  font-size: 14px;
  color: #aaa;
  transition: color .12s;
}
.ftr-col a:hover { color: #F5B015; }
.ftr-bottom {
  max-width: 1120px;
  margin: 36px auto 0;
  padding: 24px 20px 0;
  border-top: 1px solid #2a2a2a;
  font-size: 12px;
  color: #666;
}

/* ═══ RESPONSIVE ═══════════════════════════════════════════════ */

@media (max-width: 1024px) {
  .hero h1 { font-size: 44px; }
  .hero-inner { grid-template-columns: 55% 45%; gap: 32px; }
  .float-stack { max-width: 320px; }
  .fc { width: 280px; }
}

@media (max-width: 768px) {
  .nav { display: none; }
  .menu-toggle { display: flex; margin-left: auto; }
  .mobile-menu.open { display: flex; }

  .hero { padding: 56px 0 64px; }
  .hero-inner { grid-template-columns: 1fr; gap: 0; }
  .hero-right { display: none; }
  .hero h1 { font-size: 36px; }
  .lead { font-size: 16px; }

  .section { padding: 64px 0; }
  .section-h2 { font-size: 28px; }
  .section-sub { margin-bottom: 36px; }

  .kv-grid { grid-template-columns: 1fr; gap: 14px; }
  .kv-card { padding: 24px 22px; }
  .kv-num { font-size: 48px; }

  .deals-grid { grid-template-columns: 1fr 1fr; gap: 12px; }
  .price-grid { grid-template-columns: 1fr; gap: 14px; }
  .price-card { padding: 28px 24px; }

  .ftr-inner {
    grid-template-columns: 1fr 1fr;
    gap: 28px;
  }
  .ftr-brand { grid-column: 1 / -1; }
}

@media (max-width: 480px) {
  .hero h1 { font-size: 30px; }
  .cta-row .btn { width: 100%; }
  .deals-grid { grid-template-columns: 1fr; }
  .signup-form { flex-direction: column; }
  .signup-form .btn { width: 100%; }
  .ftr-inner { grid-template-columns: 1fr; }
  .hdr .btn-yellow { display: none; }
}
