/* ===== ZICER MOBIL — styles ===== */
:root {
  --orange: #ff6a00;
  --orange-dark: #e85d00;
  --ink: #0d1117;
  --ink-2: #161b22;
  --paper: #ffffff;
  --paper-2: #f5f6f8;
  --muted: #6b7280;
  --line: #e5e7eb;
  --radius: 16px;
  --shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
  --max: 1120px;
}

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

html { scroll-behavior: smooth; }

body {
  font-family: "Inter", system-ui, -apple-system, sans-serif;
  color: var(--ink);
  background: var(--paper);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

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

h1, h2, h3, h4 { line-height: 1.1; font-weight: 800; letter-spacing: -0.02em; }
h2 { font-size: clamp(1.8rem, 4vw, 2.6rem); }
h3 { font-size: 1.25rem; }

a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }

.muted { color: var(--muted); }
.hl { color: var(--orange); }

.eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.14em;
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--orange);
  margin-bottom: 10px;
}

/* ===== Buttons ===== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  background: var(--orange);
  color: #fff;
  font-weight: 700;
  padding: 12px 22px;
  border-radius: 999px;
  border: none;
  cursor: pointer;
  transition: transform 0.15s ease, background 0.15s ease, box-shadow 0.15s ease;
  font-size: 1rem;
  font-family: inherit;
}
.btn:hover { background: var(--orange-dark); transform: translateY(-2px); box-shadow: 0 8px 20px rgba(255, 106, 0, 0.35); }
.btn-lg { padding: 15px 30px; font-size: 1.05rem; }
.btn-small { padding: 9px 18px; font-size: 0.92rem; }
.btn-block { width: 100%; }
.btn-ghost { background: transparent; border: 2px solid currentColor; color: inherit; }
.btn-ghost:hover { background: rgba(255, 255, 255, 0.1); box-shadow: none; }
.btn-wa { background: #25d366; }
.btn-wa:hover { background: #1eb855; box-shadow: 0 8px 20px rgba(37, 211, 102, 0.35); }
.btn-viber { background: #7360f2; }
.btn-viber:hover { background: #5f4de0; box-shadow: 0 8px 20px rgba(115, 96, 242, 0.35); }

/* ===== Header ===== */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(13, 17, 23, 0.92);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}
.nav { display: flex; align-items: center; justify-content: space-between; height: 68px; }
.logo { display: flex; align-items: center; gap: 8px; color: #fff; font-family: "Anton", sans-serif; font-size: 1.5rem; letter-spacing: 0.02em; }
.logo-ball { font-size: 1.4rem; }
.logo-accent { color: var(--orange); }
.nav-links { display: flex; align-items: center; gap: 26px; }
.nav-links a { color: #d7dbe0; font-weight: 500; font-size: 0.98rem; transition: color 0.15s; }
.nav-links a:hover { color: #fff; }
.nav-links .btn { color: #fff; }

.nav-toggle { display: none; flex-direction: column; gap: 5px; background: none; border: none; cursor: pointer; padding: 6px; }
.nav-toggle span { width: 24px; height: 2px; background: #fff; transition: 0.2s; }

/* ===== Hero ===== */
.hero {
  position: relative;
  color: #fff;
  background:
    radial-gradient(1200px 500px at 80% -10%, rgba(255, 106, 0, 0.28), transparent 60%),
    linear-gradient(160deg, #0d1117 0%, #161b22 60%, #0d1117 100%);
  padding: 90px 0 100px;
  overflow: hidden;
}
.hero::after {
  content: "🏀";
  position: absolute;
  right: -40px;
  bottom: -60px;
  font-size: 340px;
  opacity: 0.06;
  transform: rotate(-15deg);
  pointer-events: none;
}
.hero-content { position: relative; z-index: 2; max-width: 780px; }
.hero h1 { font-size: clamp(2.4rem, 6vw, 4.2rem); margin: 8px 0 20px; }
.hero-sub { font-size: 1.15rem; color: #c8ced6; max-width: 620px; margin-bottom: 32px; }
.hero-cta { display: flex; flex-wrap: wrap; gap: 14px; margin-bottom: 34px; }
.hero-badges { display: flex; flex-wrap: wrap; gap: 20px; color: #aab2bd; font-size: 0.95rem; font-weight: 500; }

/* ===== Trust strip ===== */
.strip { background: var(--orange); color: #fff; }
.strip-grid { display: grid; grid-template-columns: repeat(4, 1fr); text-align: center; padding: 26px 24px; gap: 20px; }
.strip-grid strong { display: block; font-family: "Anton", sans-serif; font-size: 2.4rem; line-height: 1; }
.strip-grid span { font-size: 0.9rem; opacity: 0.92; }

/* ===== Sections ===== */
.section { padding: 84px 0; }
.section-alt { background: var(--paper-2); }
.section-head { text-align: center; max-width: 720px; margin: 0 auto 48px; }
.section-head .muted { margin-top: 12px; }

/* ===== Split ===== */
.split { display: grid; grid-template-columns: 1fr 1fr; gap: 56px; align-items: center; }
.split-text h2 { margin-bottom: 18px; }
.split-text p { color: #3f4650; margin-bottom: 20px; }
.split-text .btn { margin-top: 6px; }

.media-placeholder {
  background: linear-gradient(135deg, #1f2530, #0d1117);
  color: #4b5563;
  border-radius: var(--radius);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-height: 340px;
  font-size: 3rem;
  text-align: center;
  border: 1px dashed rgba(255, 255, 255, 0.12);
}
.media-placeholder small { font-size: 0.85rem; margin-top: 10px; color: #6b7280; }

/* ===== Images / shots ===== */
.shot {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  border-radius: var(--radius);
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
}
.split-media .shot { aspect-ratio: 4 / 3; }
.gallery .shot {
  aspect-ratio: 4 / 3;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}
.gallery .shot:hover {
  transform: translateY(-4px) scale(1.02);
  box-shadow: 0 14px 34px rgba(13, 17, 23, 0.22);
}

.steps-art { display: flex; justify-content: center; margin-top: 36px; }
.steps-art img {
  width: 100%; max-width: 520px;
  border-radius: var(--radius); border: 1px solid var(--line); box-shadow: var(--shadow);
}

/* ===== Check list ===== */
.check-list { list-style: none; display: grid; gap: 10px; margin: 0 0 8px; }
.check-list li { position: relative; padding-left: 30px; color: #3f4650; }
.check-list li::before {
  content: "🏀";
  position: absolute; left: 0; top: 1px; font-size: 0.95rem;
}

/* ===== Cards ===== */
.cards { display: grid; grid-template-columns: repeat(4, 1fr); gap: 22px; }
.card {
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 28px 24px;
  box-shadow: var(--shadow);
  transition: transform 0.2s ease;
}
.card:hover { transform: translateY(-4px); }
.card-icon { font-size: 2.4rem; margin-bottom: 12px; }
.card h3 { margin-bottom: 8px; }
.card p { color: var(--muted); font-size: 0.96rem; }

/* ===== Steps ===== */
.steps { display: grid; grid-template-columns: repeat(3, 1fr); gap: 26px; }
.step {
  background: var(--paper-2);
  border-radius: var(--radius);
  padding: 34px 28px;
  position: relative;
}
.step-num {
  display: inline-flex; align-items: center; justify-content: center;
  width: 46px; height: 46px; border-radius: 50%;
  background: var(--orange); color: #fff;
  font-family: "Anton", sans-serif; font-size: 1.4rem;
  margin-bottom: 16px;
}
.step h3 { margin-bottom: 8px; }
.step p { color: var(--muted); }

/* ===== Gallery ===== */
.gallery { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.gallery .media-placeholder { min-height: 220px; font-size: 2.2rem; }

/* ===== Pricing ===== */
.pricing { grid-template-columns: repeat(3, 1fr); align-items: stretch; }
.price-card { display: flex; flex-direction: column; text-align: center; position: relative; }
.price-card h3 { font-size: 1.4rem; margin-bottom: 6px; }
.price { font-family: "Anton", sans-serif; font-size: 2.6rem; color: var(--ink); line-height: 1; margin: 10px 0 4px; }
.price span { font-size: 1rem; color: var(--muted); font-family: "Inter", sans-serif; }
.price-note { color: var(--muted); margin-bottom: 20px; font-size: 0.9rem; }
.price-card .check-list { text-align: left; margin-bottom: 24px; }
.price-card .btn { margin-top: auto; }
.price-card.featured { border: 2px solid var(--orange); box-shadow: 0 16px 40px rgba(255, 106, 0, 0.18); }
.price-fuel { text-align: center; margin-top: 26px; font-size: 0.92rem; }
.early-note { text-align: center; margin-top: 34px; font-size: 1.02rem; font-weight: 500; color: var(--ink); }
.early-note a { color: var(--orange); font-weight: 700; text-decoration: underline; }
.badge {
  position: absolute; top: -13px; left: 50%; transform: translateX(-50%);
  background: var(--orange); color: #fff; font-size: 0.75rem; font-weight: 700;
  padding: 5px 14px; border-radius: 999px; text-transform: uppercase; letter-spacing: 0.06em;
}

/* ===== Quotes ===== */
.quote p { color: var(--ink); font-size: 1.02rem; font-weight: 500; margin-bottom: 14px; }
.quote-author { color: var(--orange); font-weight: 700; font-size: 0.9rem; }

/* ===== FAQ ===== */
.faq { display: grid; gap: 12px; }
.faq details {
  background: var(--paper-2);
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: 4px 20px;
}
.faq summary {
  list-style: none; cursor: pointer;
  font-weight: 600; padding: 16px 0;
  display: flex; justify-content: space-between; align-items: center;
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after { content: "+"; color: var(--orange); font-size: 1.5rem; font-weight: 700; }
.faq details[open] summary::after { content: "–"; }
.faq details p { color: var(--muted); padding: 0 0 18px; }

/* ===== Booking form ===== */
.booking { background: linear-gradient(160deg, #0d1117, #161b22); color: #fff; }
.booking .section-head h2, .booking .eyebrow { color: #fff; }
.booking .eyebrow { color: var(--orange); }
.booking .muted { color: #aab2bd; }
.form { background: rgba(255, 255, 255, 0.04); border: 1px solid rgba(255, 255, 255, 0.1); border-radius: var(--radius); padding: 30px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.form label { display: block; font-size: 0.9rem; font-weight: 600; margin-bottom: 16px; color: #d7dbe0; }
.form input, .form select, .form textarea {
  width: 100%; margin-top: 7px;
  background: #0d1117; border: 1px solid rgba(255, 255, 255, 0.15);
  color: #fff; border-radius: 10px; padding: 12px 14px;
  font-family: inherit; font-size: 0.98rem;
}
.form input:focus, .form select:focus, .form textarea:focus { outline: none; border-color: var(--orange); }
.form input[type="date"] {
  -webkit-appearance: none;
  appearance: none;
  display: flex;
  align-items: center;
  height: 45px;
  padding-top: 0;
  padding-bottom: 0;
  color-scheme: dark;
  text-align: left;
}
.form input[type="date"]::-webkit-date-and-time-value { text-align: left; }
.form select { height: 45px; padding-top: 0; padding-bottom: 0; }
.hp { position: absolute; left: -9999px; opacity: 0; height: 0; width: 0; }
.form-status { text-align: center; margin-top: 14px; font-size: 0.95rem; font-weight: 600; min-height: 1.2em; }
.form-status.ok { color: #25d366; }
.form-status.err { color: #ff8a5c; }
.form-alt { text-align: center; color: #aab2bd; margin: 22px 0 14px; font-size: 0.92rem; }
.contact-buttons { display: flex; gap: 12px; flex-wrap: wrap; justify-content: center; }
.contact-buttons .btn { flex: 1; min-width: 130px; }
.contact-buttons .btn-ghost { color: #fff; }

/* ===== Footer ===== */
.site-footer { background: #0d1117; color: #c8ced6; padding: 56px 0 24px; }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr; gap: 40px; margin-bottom: 36px; }
.footer-grid .logo { margin-bottom: 12px; }
.footer-grid h4 { color: #fff; margin-bottom: 14px; font-size: 1rem; }
.footer-grid p { margin-bottom: 6px; font-size: 0.95rem; }
.footer-grid a:hover { color: var(--orange); }
.footer-bottom { border-top: 1px solid rgba(255, 255, 255, 0.1); padding-top: 20px; font-size: 0.85rem; color: #6b7280; }

/* ===== Responsive ===== */
@media (max-width: 900px) {
  .cards, .pricing, .steps, .gallery { grid-template-columns: repeat(2, 1fr); }
  .split { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 720px) {
  .nav-links {
    position: fixed; top: 68px; right: 0;
    flex-direction: column; align-items: flex-start;
    background: var(--ink-2); width: 74%; height: calc(100vh - 68px);
    padding: 30px 26px; gap: 22px;
    transform: translateX(100%); transition: transform 0.25s ease;
    border-left: 1px solid rgba(255, 255, 255, 0.08);
  }
  .nav-links.open { transform: translateX(0); }
  .nav-toggle { display: flex; }
  .cards, .pricing, .steps, .gallery, .strip-grid, .form-row, .footer-grid { grid-template-columns: 1fr; }
  .strip-grid { gap: 24px; }
  .hero { padding: 60px 0 70px; }
  .section { padding: 60px 0; }
}
