/* ==========================================================================
   GEIYKE Global Stylesheet
   ========================================================================== */

:root {
  --navy-950: #0a1526;
  --navy-900: #0e1e35;
  --navy-800: #142a47;
  --navy-700: #1c3a5e;
  --amber-500: #f5a623;
  --amber-600: #d98c0f;
  --amber-100: #fdf1dc;
  --ink-900: #17202b;
  --ink-700: #3d4a5c;
  --ink-500: #64748b;
  --line: #e4e9f0;
  --light: #f5f7fa;
  --white: #ffffff;
  --success: #1c8a52;
  --radius-sm: 6px;
  --radius-md: 12px;
  --radius-lg: 20px;
  --shadow-sm: 0 2px 8px rgba(14, 30, 53, 0.08);
  --shadow-md: 0 10px 30px rgba(14, 30, 53, 0.12);
  --shadow-lg: 0 20px 50px rgba(14, 30, 53, 0.18);
  --font-head: "Plus Jakarta Sans", "Segoe UI", Arial, sans-serif;
  --font-body: "Inter", "Segoe UI", Arial, sans-serif;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: var(--font-body);
  color: var(--ink-900);
  background: var(--white);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; display: block; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; margin: 0; padding: 0; }
h1, h2, h3, h4 {
  font-family: var(--font-head);
  color: var(--navy-900);
  line-height: 1.25;
  margin: 0 0 .6em;
}
p { margin: 0 0 1em; color: var(--ink-700); }

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

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 28px;
  border-radius: var(--radius-sm);
  font-family: var(--font-head);
  font-weight: 600;
  font-size: 0.95rem;
  border: 2px solid transparent;
  cursor: pointer;
  transition: transform .18s ease, box-shadow .18s ease, background .18s ease, color .18s ease, border-color .18s ease;
  white-space: nowrap;
}
.btn:hover { transform: translateY(-2px); }
.btn-primary { background: var(--amber-500); color: var(--navy-950); box-shadow: var(--shadow-sm); }
.btn-primary:hover { background: var(--amber-600); box-shadow: var(--shadow-md); }
.btn-outline { background: transparent; border-color: rgba(255,255,255,.55); color: #fff; }
.btn-outline:hover { background: rgba(255,255,255,.12); border-color: #fff; }
.btn-dark { background: var(--navy-900); color: #fff; }
.btn-dark:hover { background: var(--navy-800); box-shadow: var(--shadow-md); }
.btn-block { width: 100%; justify-content: center; }
.btn-sm { padding: 10px 18px; font-size: .85rem; }
.btn-whatsapp { background: #25d366; color: #06210f; box-shadow: var(--shadow-sm); }
.btn-whatsapp:hover { background: #1fb857; box-shadow: var(--shadow-md); }

/* ---------- Top utility bar ---------- */
.topbar {
  background: var(--navy-950);
  color: #cfd8e3;
  font-size: .82rem;
}
.topbar .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 8px;
  padding-bottom: 8px;
  flex-wrap: wrap;
  gap: 6px;
}
.topbar-links { display: flex; gap: 18px; flex-wrap: wrap; }
.topbar-links a, .topbar span { color: #cfd8e3; display: inline-flex; align-items: center; gap: 6px; }
.topbar-links a:hover { color: var(--amber-500); }
.topbar-social { display: flex; gap: 12px; }
.topbar-social a {
  width: 26px; height: 26px; border-radius: 50%;
  background: rgba(255,255,255,.08);
  display: flex; align-items: center; justify-content: center;
  transition: background .18s ease;
}
.topbar-social a:hover { background: var(--amber-500); color: var(--navy-950); }

/* ---------- Header / Nav ---------- */
header.site-header {
  position: sticky;
  top: 0;
  z-index: 500;
  background: #fff;
  box-shadow: var(--shadow-sm);
}
.nav-wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 24px;
}
.brand { display: flex; align-items: center; gap: 12px; }
.brand-mark {
  width: 50px; height: 50px;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  flex-shrink: 0;
}
.brand-mark img { width: 100%; height: 100%; object-fit: cover; display: block; }
.brand-text { display: flex; flex-direction: column; line-height: 1.1; }
.brand-text strong {
  font-family: var(--font-head);
  font-size: 1.2rem;
  color: var(--navy-900);
  letter-spacing: .5px;
}
.brand-text span {
  font-size: .72rem;
  color: var(--ink-500);
  letter-spacing: .5px;
  text-transform: uppercase;
}

nav.main-nav { display: flex; align-items: center; gap: 2px; }
nav.main-nav a {
  padding: 10px 16px;
  font-weight: 600;
  font-size: .95rem;
  color: var(--ink-700);
  border-radius: var(--radius-sm);
  transition: color .18s ease, background .18s ease;
}
nav.main-nav a:hover,
nav.main-nav a.active { color: var(--navy-900); background: var(--light); }
nav.main-nav a.active { color: var(--amber-600); }

.nav-cta { display: flex; align-items: center; gap: 14px; }
.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
}
.nav-toggle span { width: 26px; height: 3px; background: var(--navy-900); border-radius: 2px; }

/* ---------- Hero ---------- */
.hero {
  position: relative;
  min-height: 620px;
  display: flex;
  align-items: center;
  background-size: cover;
  background-position: center;
  color: #fff;
  overflow: hidden;
}
.hero::before {
  content: "";
  position: absolute; inset: 0;
  background: linear-gradient(105deg, rgba(10,21,38,.94) 5%, rgba(10,21,38,.75) 45%, rgba(10,21,38,.45) 100%);
}
.hero .container { position: relative; z-index: 2; }
.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(245,166,35,.16);
  color: var(--amber-500);
  border: 1px solid rgba(245,166,35,.4);
  padding: 6px 14px;
  border-radius: 999px;
  font-size: .8rem;
  font-weight: 700;
  letter-spacing: .5px;
  text-transform: uppercase;
  margin-bottom: 20px;
}
.hero h1 {
  color: #fff;
  font-size: clamp(1.9rem, 3.4vw, 2.75rem);
  letter-spacing: -0.01em;
  max-width: 720px;
  margin-bottom: 20px;
}
.hero p.lead {
  color: #cfd8e3;
  font-size: 1.02rem;
  max-width: 560px;
  margin-bottom: 32px;
}
.hero-actions { display: flex; gap: 16px; flex-wrap: wrap; margin-bottom: 40px; }
.hero-stats { display: flex; gap: 40px; flex-wrap: wrap; }
.hero-stats div strong { display: block; font-family: var(--font-head); font-size: 1.55rem; color: var(--amber-500); }
.hero-stats div span { font-size: .82rem; color: #b7c2d0; text-transform: uppercase; letter-spacing: .5px; }

/* ---------- Page header (inner pages) ---------- */
.page-header {
  position: relative;
  padding: 130px 0 70px;
  background-size: cover;
  background-position: center;
  color: #fff;
  text-align: center;
}
.page-header::before {
  content: "";
  position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(10,21,38,.92), rgba(10,21,38,.82));
}
.page-header .container { position: relative; z-index: 2; }
.page-header h1 { color: #fff; font-size: clamp(1.6rem, 2.8vw, 2.25rem); letter-spacing: -0.01em; margin-bottom: 12px; }
.breadcrumb { color: #b7c2d0; font-size: .9rem; }
.breadcrumb a:hover { color: var(--amber-500); }
.breadcrumb .sep { margin: 0 8px; opacity: .6; }

/* ---------- Sections ---------- */
.section { padding: 90px 0; }
.section-alt { background: var(--light); }
.section-navy { background: var(--navy-950); color: #cfd8e3; }
.section-navy h2, .section-navy h3 { color: #fff; }
.section-navy p { color: #b7c2d0; }

.section-head { max-width: 680px; margin: 0 auto 56px; text-align: center; }
.section-head.left { margin: 0 0 48px; text-align: left; }
.eyebrow {
  display: inline-block;
  color: var(--amber-600);
  font-weight: 700;
  font-size: .82rem;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  margin-bottom: 12px;
}
.section-navy .eyebrow { color: var(--amber-500); }
.section-head h2 { font-size: clamp(1.45rem, 2.2vw, 1.9rem); letter-spacing: -0.01em; }

/* ---------- Grids & Cards ---------- */
.grid { display: grid; gap: 28px; }
.grid-3 { grid-template-columns: repeat(3, 1fr); }
.grid-4 { grid-template-columns: repeat(4, 1fr); }
.grid-2 { grid-template-columns: repeat(2, 1fr); }

.card {
  background: #fff;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-sm);
  overflow: hidden;
  transition: transform .22s ease, box-shadow .22s ease;
  border: 1px solid var(--line);
}
.card:hover { transform: translateY(-6px); box-shadow: var(--shadow-md); }

.service-card { display: flex; flex-direction: column; height: 100%; }
.service-card .thumb { height: 190px; overflow: hidden; }
.service-card .thumb img { width: 100%; height: 100%; object-fit: cover; transition: transform .4s ease; }
.service-card:hover .thumb img { transform: scale(1.08); }
.service-card .body { padding: 24px; display: flex; flex-direction: column; flex: 1; }
.service-icon {
  width: 46px; height: 46px;
  border-radius: 10px;
  background: var(--amber-100);
  color: var(--amber-600);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.2rem;
  margin-bottom: 14px;
}
.service-card h3 { font-size: 1.12rem; margin-bottom: 8px; }
.service-card p { font-size: .93rem; flex: 1; }
.card-link {
  display: inline-flex; align-items: center; gap: 6px;
  color: var(--navy-900); font-weight: 700; font-size: .88rem;
  margin-top: 12px; transition: gap .18s ease, color .18s ease;
}
.card-link:hover { gap: 10px; color: var(--amber-600); }

/* Feature / why-choose-us */
.feature {
  padding: 28px 24px;
  text-align: left;
}
.feature .service-icon { margin-bottom: 18px; }
.feature h3 { font-size: 1.05rem; }
.feature p { font-size: .92rem; margin-bottom: 0; }

/* ---------- Split (image + text) ---------- */
.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}
.split.reverse .split-media { order: 2; }
.split.reverse .split-text { order: 1; }
.split-media { position: relative; }
.split-media img { border-radius: var(--radius-lg); box-shadow: var(--shadow-lg); width: 100%; height: 420px; object-fit: cover; }
.split-media .badge-float {
  position: absolute;
  bottom: -20px; left: -20px;
  background: #fff;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-md);
  padding: 18px 22px;
  display: flex; align-items: center; gap: 12px;
}
.split-media .badge-float strong { display: block; font-family: var(--font-head); font-size: 1.25rem; color: var(--navy-900); }
.split-media .badge-float span { font-size: .78rem; color: var(--ink-500); }
.split-text ul.check-list { margin-top: 20px; }
.split-text ul.check-list li {
  display: flex; gap: 12px; align-items: flex-start;
  margin-bottom: 14px; font-size: .96rem; color: var(--ink-700);
}
.split-text ul.check-list li i { color: var(--success); margin-top: 3px; }

/* ---------- Service detail rows (services.html) ---------- */
.service-detail { padding: 70px 0; border-bottom: 1px solid var(--line); }
.service-detail:last-of-type { border-bottom: none; }
.service-detail .tag {
  display: inline-flex; align-items: center; gap: 8px;
  color: var(--amber-600); font-weight: 700; font-size: .8rem;
  text-transform: uppercase; letter-spacing: 1px; margin-bottom: 10px;
}
.service-detail h2 { font-size: 1.5rem; letter-spacing: -0.01em; margin-bottom: 16px; }
.service-detail .split-media img { height: 360px; }
.included {
  margin-top: 22px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px 20px;
}
.included li { display: flex; gap: 10px; font-size: .92rem; color: var(--ink-700); }
.included li i { color: var(--amber-600); margin-top: 3px; }

/* ---------- Testimonials ---------- */
.testimonial-card {
  background: #fff;
  border-radius: var(--radius-md);
  padding: 30px;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--line);
  height: 100%;
}
.testimonial-card .stars { color: var(--amber-500); margin-bottom: 14px; font-size: .9rem; }
.testimonial-card p.quote { font-style: italic; color: var(--ink-700); font-size: .96rem; }
.testimonial-person { display: flex; align-items: center; gap: 12px; margin-top: 18px; }
.avatar-circle {
  width: 44px; height: 44px; border-radius: 50%;
  background: var(--navy-900); color: var(--amber-500);
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-head); font-weight: 700;
}
.testimonial-person strong { display: block; font-size: .92rem; color: var(--navy-900); }
.testimonial-person span { font-size: .78rem; color: var(--ink-500); }

/* ---------- CTA banner ---------- */
.cta-banner {
  position: relative;
  background-size: cover;
  background-position: center;
  border-radius: var(--radius-lg);
  overflow: hidden;
  padding: 60px;
  text-align: center;
  color: #fff;
}
.cta-banner::before { content: ""; position: absolute; inset: 0; background: linear-gradient(120deg, rgba(10,21,38,.94), rgba(20,42,71,.88)); }
.cta-banner .inner { position: relative; z-index: 2; }
.cta-banner h2 { color: #fff; margin-bottom: 12px; }
.cta-banner p { color: #cfd8e3; max-width: 560px; margin: 0 auto 28px; }
.cta-actions { display: flex; justify-content: center; gap: 16px; flex-wrap: wrap; }

/* ---------- Stats strip ---------- */
.stats-strip {
  background: var(--navy-900);
  color: #fff;
  padding: 46px 0;
}
.stats-strip .grid-4 { text-align: center; }
.stats-strip strong { display: block; font-family: var(--font-head); font-size: 1.75rem; color: var(--amber-500); }
.stats-strip span { font-size: .82rem; color: #b7c2d0; text-transform: uppercase; letter-spacing: .5px; }

/* ---------- Timeline / steps ---------- */
.steps { display: grid; grid-template-columns: repeat(3, 1fr); gap: 30px; counter-reset: step; }
.step { position: relative; padding: 30px 26px; background: #fff; border-radius: var(--radius-md); border: 1px solid var(--line); }
.step .step-num {
  width: 40px; height: 40px; border-radius: 50%;
  background: var(--navy-900); color: var(--amber-500);
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-head); font-weight: 700; margin-bottom: 16px;
}

/* ---------- Values grid ---------- */
.value-card { text-align: center; padding: 34px 22px; }
.value-card .service-icon { margin: 0 auto 16px; }

/* ---------- Pricing/programs cards (training/products) ---------- */
.program-card { padding: 28px; }
.program-card .meta { display: flex; gap: 16px; font-size: .8rem; color: var(--ink-500); margin: 10px 0 14px; flex-wrap: wrap; }
.program-card .meta span { display: flex; align-items: center; gap: 6px; }
.program-card .meta i { color: var(--amber-600); }

/* ---------- Booking type toggle (reservation form) ---------- */
.type-toggle { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; margin-bottom: 24px; }
.type-toggle label {
  display: flex; align-items: center; gap: 12px;
  border: 1.5px solid var(--line); border-radius: var(--radius-sm);
  padding: 16px 18px; cursor: pointer; background: var(--light);
  transition: border-color .18s ease, background .18s ease;
}
.type-toggle label.active { border-color: var(--amber-500); background: var(--amber-100); }
.type-toggle label input { accent-color: var(--amber-500); width: 18px; height: 18px; }
.type-toggle label span { font-weight: 700; font-size: .92rem; color: var(--navy-900); }
.type-toggle label small { display: block; font-weight: 500; font-size: .78rem; color: var(--ink-500); }
.conditional-group { display: none; }
.conditional-group.show { display: block; }

/* ---------- Forms ---------- */
.contact-grid { display: grid; grid-template-columns: 1fr 1.15fr; gap: 50px; align-items: start; }
.contact-grid > * { min-width: 0; }
.info-card {
  display: flex; gap: 16px; padding: 22px;
  background: #fff; border: 1px solid var(--line); border-radius: var(--radius-md);
  margin-bottom: 18px;
}
.info-card .service-icon { flex-shrink: 0; }
.info-card > div { min-width: 0; }
.info-card h4 { margin-bottom: 4px; font-size: 1rem; }
.info-card p { margin-bottom: 0; font-size: .9rem; }

.form-panel { background: #fff; border: 1px solid var(--line); border-radius: var(--radius-lg); padding: 40px; box-shadow: var(--shadow-sm); }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.field { margin-bottom: 20px; }
.field label { display: block; font-size: .85rem; font-weight: 700; color: var(--navy-900); margin-bottom: 8px; }
.field input, .field select, .field textarea {
  width: 100%;
  padding: 13px 16px;
  border: 1.5px solid var(--line);
  border-radius: var(--radius-sm);
  font-family: var(--font-body);
  font-size: .95rem;
  color: var(--ink-900);
  background: var(--light);
  transition: border-color .18s ease, background .18s ease;
}
.field input:focus, .field select:focus, .field textarea:focus {
  outline: none; border-color: var(--amber-500); background: #fff;
}
.field textarea { resize: vertical; min-height: 130px; }
.field .error-msg { color: #c0392b; font-size: .78rem; margin-top: 6px; display: none; }
.field.has-error input, .field.has-error select, .field.has-error textarea { border-color: #c0392b; }
.field.has-error .error-msg { display: block; }
.form-note { font-size: .8rem; color: var(--ind-500); color: var(--ink-500); margin-top: 10px; }
.form-success {
  display: none;
  align-items: center;
  gap: 12px;
  background: #eafaf1;
  border: 1px solid #b8ebd0;
  color: var(--success);
  padding: 16px 20px;
  border-radius: var(--radius-sm);
  margin-bottom: 22px;
  font-weight: 600;
  font-size: .92rem;
}
.form-success.show { display: flex; }

.wa-success {
  background: #eafaf1; border: 1px solid #b8ebd0; border-radius: var(--radius-lg);
  padding: 30px; margin-bottom: 30px; text-align: center;
}
.wa-success i.fa-circle-check { color: var(--success); font-size: 1.6rem; margin-bottom: 10px; }
.wa-success h3 { margin-bottom: 8px; }
.wa-success p { max-width: 480px; margin-left: auto; margin-right: auto; }

.map-frame { border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow-sm); border: 1px solid var(--line); margin-top: 26px; }
.map-frame iframe { width: 100%; height: 320px; border: 0; display: block; }

/* ---------- Footer ---------- */
footer.site-footer { background: var(--navy-950); color: #b7c2d0; }
.footer-top { padding: 70px 0 40px; }
.footer-grid { display: grid; grid-template-columns: 1.4fr 1fr 1fr 1.2fr; gap: 40px; }
.footer-brand .brand-text strong { color: #fff; }
.footer-brand p { color: #96a3b5; font-size: .9rem; margin: 18px 0 22px; }
.footer-social { display: flex; gap: 10px; }
.footer-social a {
  width: 38px; height: 38px; border-radius: 50%;
  background: rgba(255,255,255,.08);
  display: flex; align-items: center; justify-content: center;
  transition: background .18s ease, color .18s ease;
}
.footer-social a:hover { background: var(--amber-500); color: var(--navy-950); }
footer h4 { color: #fff; font-size: 1rem; margin-bottom: 20px; }
.footer-links li { margin-bottom: 12px; }
.footer-links a { font-size: .9rem; color: #b7c2d0; transition: color .18s ease, padding-left .18s ease; }
.footer-links a:hover { color: var(--amber-500); padding-left: 4px; }
.footer-contact li { display: flex; gap: 12px; margin-bottom: 16px; font-size: .88rem; color: #b7c2d0; }
.footer-contact i { color: var(--amber-500); margin-top: 3px; }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,.08);
  padding: 22px 0;
  font-size: .82rem;
  display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 10px;
  color: #8494a8;
}
.footer-bottom a:hover { color: var(--amber-500); }

/* ---------- Back to top ---------- */
.back-to-top {
  position: fixed; right: 24px; bottom: 24px;
  width: 46px; height: 46px; border-radius: 50%;
  background: var(--amber-500); color: var(--navy-950);
  display: flex; align-items: center; justify-content: center;
  box-shadow: var(--shadow-md);
  border: none; cursor: pointer;
  opacity: 0; visibility: hidden; transform: translateY(10px);
  transition: all .25s ease;
  z-index: 400;
}
.back-to-top.show { opacity: 1; visibility: visible; transform: translateY(0); }

/* ---------- Reveal animation ---------- */
.reveal { opacity: 0; transform: translateY(24px); transition: opacity .6s ease, transform .6s ease; }
.reveal.in-view { opacity: 1; transform: translateY(0); }

/* ---------- Gallery cards (real product/part photos) ---------- */
.gallery-card { overflow: hidden; }
.gallery-card .thumb { height: 220px; overflow: hidden; }
.gallery-card .thumb img { width: 100%; height: 100%; object-fit: cover; transition: transform .4s ease; }
.gallery-card:hover .thumb img { transform: scale(1.08); }
.gallery-card .cap { padding: 16px 18px; }
.gallery-card .cap h4 { font-size: .95rem; margin-bottom: 2px; color: var(--navy-900); }
.gallery-card .cap span { font-size: .78rem; color: var(--ink-500); }

/* ---------- Video showcase ---------- */
.video-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 28px; }
.video-card {
  background: #fff; border: 1px solid var(--line); border-radius: var(--radius-md);
  overflow: hidden; box-shadow: var(--shadow-sm);
}
.video-card video { width: 100%; height: 320px; object-fit: cover; display: block; background: #0a1526; }
.video-card .cap { padding: 18px 22px; }
.video-card .cap h4 { font-size: 1rem; margin-bottom: 4px; }
.video-card .cap p { font-size: .88rem; margin-bottom: 0; }

/* ---------- Pricing / annual plans ---------- */
.plans-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; align-items: stretch; }
.plan-card {
  position: relative;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 36px 30px;
  display: flex;
  flex-direction: column;
  box-shadow: var(--shadow-sm);
  transition: transform .22s ease, box-shadow .22s ease;
}
.plan-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-md); }
.plan-card.featured { border-color: var(--amber-500); box-shadow: var(--shadow-md); }
.plan-badge {
  position: absolute; top: -14px; left: 50%; transform: translateX(-50%);
  background: var(--amber-500); color: var(--navy-950);
  font-family: var(--font-head); font-weight: 700; font-size: .74rem;
  letter-spacing: .5px; text-transform: uppercase;
  padding: 6px 16px; border-radius: 999px; box-shadow: var(--shadow-sm);
  white-space: nowrap;
}
.plan-name { font-family: var(--font-head); font-weight: 700; font-size: 1.2rem; color: var(--navy-900); margin-bottom: 4px; }
.plan-for { font-size: .86rem; color: var(--ink-500); margin-bottom: 18px; }
.plan-price { font-family: var(--font-head); font-weight: 800; font-size: 1.85rem; color: var(--navy-900); line-height: 1; }
.plan-price .cur { font-weight: 600; font-size: .68em; margin-right: 2px; }
.plan-price span:not(.cur) { font-family: var(--font-body); font-weight: 500; font-size: .85rem; color: var(--ink-500); }
.plan-desc { font-size: .9rem; color: var(--ink-700); margin: 16px 0 22px; padding-bottom: 22px; border-bottom: 1px solid var(--line); }
.plan-card .btn { margin-top: auto; }
.plans-features {
  background: #fff; border: 1px solid var(--line); border-radius: var(--radius-lg);
  padding: 36px; margin-top: 40px;
}
.plans-features h3 { font-size: 1.1rem; margin-bottom: 18px; }
.plans-features ul { display: grid; grid-template-columns: repeat(2, 1fr); gap: 12px 24px; }
.plans-features li { display: flex; gap: 10px; font-size: .92rem; color: var(--ink-700); }
.plans-features li i { color: var(--amber-600); margin-top: 3px; }
.plans-terms { font-size: .78rem; color: var(--ink-500); margin-top: 18px; margin-bottom: 0; }

/* ---------- Utilities ---------- */
.text-center { text-align: center; }
.mt-0 { margin-top: 0; }
.mb-0 { margin-bottom: 0; }

/* ==========================================================================
   Responsive
   ========================================================================== */
@media (max-width: 1024px) {
  .grid-4 { grid-template-columns: repeat(2, 1fr); }
  .grid-3 { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .split { gap: 40px; }
  .contact-grid { grid-template-columns: 1fr; }
  .plans-grid { grid-template-columns: 1fr; max-width: 480px; margin: 0 auto; }
  .plans-features ul { grid-template-columns: 1fr; }
}

@media (max-width: 860px) {
  .topbar { display: none; }
  nav.main-nav {
    position: fixed; top: 0; right: -100%; height: 100vh; width: min(320px, 82vw);
    background: #fff; flex-direction: column; align-items: stretch;
    padding: 90px 26px 26px; box-shadow: -10px 0 30px rgba(0,0,0,.15);
    transition: right .3s ease; gap: 4px; z-index: 600;
  }
  nav.main-nav.open { right: 0; }
  nav.main-nav a { padding: 14px 14px; border-bottom: 1px solid var(--line); border-radius: 0; }
  .nav-toggle { display: flex; }
  .nav-cta .btn { display: none; }
  .nav-wrap { padding: 12px 16px; }
  .brand-mark { width: 42px; height: 42px; }
  .brand-text strong { font-size: 1.15rem; }
  .split, .split.reverse { grid-template-columns: 1fr; }
  .split.reverse .split-media, .split.reverse .split-text,
  .split .split-media, .split .split-text { order: initial; }
  .grid-3, .grid-4, .grid-2 { grid-template-columns: 1fr; }
  .included { grid-template-columns: 1fr; }
  .steps { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .video-grid { grid-template-columns: 1fr; }
  .plans-grid { grid-template-columns: 1fr; }
  .type-toggle { grid-template-columns: 1fr; }
  .plans-features ul { grid-template-columns: 1fr; }
  .video-card video { height: 240px; }
  .hero { min-height: 560px; text-align: left; }
  .hero-stats { gap: 26px; }
  .section { padding: 60px 0; }
  .cta-banner { padding: 40px 24px; }
}

/* ---------- FAQ accordion ---------- */
.faq-list { max-width: 780px; margin: 0 auto; display: flex; flex-direction: column; gap: 14px; }
.faq-item {
  background: #fff; border: 1px solid var(--line); border-radius: var(--radius-md);
  overflow: hidden;
}
.faq-item summary {
  list-style: none; cursor: pointer; padding: 20px 24px;
  display: flex; align-items: center; justify-content: space-between; gap: 16px;
  font-family: var(--font-head); font-weight: 700; font-size: .98rem; color: var(--navy-900);
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary i { color: var(--amber-600); transition: transform .2s ease; flex-shrink: 0; }
.faq-item[open] summary i { transform: rotate(180deg); }
.faq-answer { padding: 0 24px 22px; }
.faq-answer p { margin-bottom: 14px; }
.faq-explain {
  display: inline-flex; align-items: center; gap: 8px;
  background: var(--amber-100); color: var(--amber-600);
  padding: 8px 16px; border-radius: 999px; font-weight: 700; font-size: .82rem;
  transition: background .15s ease, color .15s ease;
}
.faq-explain:hover { background: var(--amber-500); color: var(--navy-950); }

/* ---------- GEIYKE Genie: floating widget ---------- */
.genie-bubble {
  position: fixed; left: 24px; bottom: 24px; z-index: 700;
  width: 58px; height: 58px; border-radius: 50%;
  background: linear-gradient(145deg, var(--navy-900), var(--navy-700));
  color: var(--amber-500);
  border: none; cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.4rem;
  box-shadow: var(--shadow-lg);
  transition: transform .2s ease, box-shadow .2s ease;
}
.genie-bubble:hover { transform: translateY(-3px) scale(1.04); }
.genie-bubble .genie-ping {
  position: absolute; top: -3px; right: -3px;
  width: 14px; height: 14px; border-radius: 50%;
  background: var(--amber-500); border: 2px solid #fff;
}
.genie-bubble.hide-icon i { display: none; }
.genie-bubble .fa-xmark { display: none; }
.genie-bubble.open .fa-wand-magic-sparkles { display: none; }
.genie-bubble.open .fa-xmark { display: block; }

.genie-panel {
  position: fixed; left: 24px; bottom: 94px; z-index: 700;
  width: 370px; max-width: calc(100vw - 48px);
  height: 520px; max-height: calc(100vh - 140px);
  background: #fff; border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg); border: 1px solid var(--line);
  display: flex; flex-direction: column; overflow: hidden;
  opacity: 0; visibility: hidden; transform: translateY(16px) scale(.98);
  transition: opacity .2s ease, transform .2s ease, visibility .2s;
}
.genie-panel.open { opacity: 1; visibility: visible; transform: translateY(0) scale(1); }

.genie-panel-header {
  background: linear-gradient(120deg, var(--navy-950), var(--navy-800));
  color: #fff; padding: 16px 18px;
  display: flex; align-items: center; justify-content: space-between; gap: 10px; flex-shrink: 0;
}
.genie-panel-title { display: flex; align-items: center; gap: 12px; }
.genie-avatar {
  width: 38px; height: 38px; border-radius: 50%;
  background: rgba(245,166,35,.18); color: var(--amber-500);
  display: flex; align-items: center; justify-content: center; flex-shrink: 0;
}
.genie-panel-title strong { display: block; font-family: var(--font-head); font-size: .98rem; }
.genie-panel-title span { display: block; font-size: .74rem; color: #b7c2d0; }
.genie-close {
  background: rgba(255,255,255,.1); border: none; color: #fff; cursor: pointer;
  width: 30px; height: 30px; border-radius: 50%; display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.genie-close:hover { background: rgba(255,255,255,.2); }

.genie-messages {
  flex: 1; overflow-y: auto; padding: 18px; display: flex; flex-direction: column; gap: 12px;
  background: var(--light);
}
.genie-msg { max-width: 86%; padding: 10px 14px; border-radius: 14px; font-size: .88rem; line-height: 1.5; white-space: pre-wrap; word-wrap: break-word; }
.genie-msg.user { align-self: flex-end; background: var(--navy-900); color: #fff; border-bottom-right-radius: 4px; }
.genie-msg.assistant { align-self: flex-start; background: #fff; color: var(--ink-900); border: 1px solid var(--line); border-bottom-left-radius: 4px; }
.genie-msg.assistant p { margin: 0 0 8px; color: inherit; font-size: inherit; }
.genie-msg.assistant p:last-child { margin-bottom: 0; }
.genie-msg.assistant ul { list-style: disc; padding-left: 20px; margin: 4px 0 10px; }
.genie-msg.assistant ul:last-child { margin-bottom: 0; }
.genie-msg.assistant li { margin-bottom: 4px; }
.genie-msg.assistant strong { color: var(--navy-900); }
.genie-msg.typing { align-self: flex-start; background: #fff; border: 1px solid var(--line); border-bottom-left-radius: 4px; display: flex; gap: 4px; padding: 14px 16px; }
.genie-msg.typing span { width: 6px; height: 6px; border-radius: 50%; background: var(--ink-500); animation: genie-bounce 1.2s infinite ease-in-out; }
.genie-msg.typing span:nth-child(2) { animation-delay: .15s; }
.genie-msg.typing span:nth-child(3) { animation-delay: .3s; }
@keyframes genie-bounce { 0%, 60%, 100% { transform: translateY(0); opacity:.5; } 30% { transform: translateY(-4px); opacity:1; } }

.genie-suggestions { display: flex; flex-wrap: wrap; gap: 8px; padding: 0 18px 14px; background: var(--light); }
.genie-suggestions button {
  background: #fff; border: 1px solid var(--line); border-radius: 999px;
  padding: 7px 14px; font-size: .78rem; color: var(--navy-900); cursor: pointer;
  transition: border-color .15s ease, color .15s ease;
}
.genie-suggestions button:hover { border-color: var(--amber-500); color: var(--amber-600); }

.genie-input-row { display: flex; gap: 8px; padding: 14px; border-top: 1px solid var(--line); flex-shrink: 0; background: #fff; }
.genie-input-row input {
  flex: 1; border: 1.5px solid var(--line); border-radius: 999px; padding: 11px 16px;
  font-family: var(--font-body); font-size: .88rem; background: var(--light);
}
.genie-input-row input:focus { outline: none; border-color: var(--amber-500); background: #fff; }
.genie-input-row button {
  width: 42px; height: 42px; border-radius: 50%; flex-shrink: 0;
  background: var(--amber-500); color: var(--navy-950); border: none; cursor: pointer;
  display: flex; align-items: center; justify-content: center; font-size: .95rem;
  transition: background .15s ease;
}
.genie-input-row button:hover { background: var(--amber-600); }
.genie-input-row button:disabled { opacity: .5; cursor: default; }

.genie-panel-fullpage {
  display: flex; align-items: center; justify-content: center; gap: 6px;
  padding: 10px; font-size: .78rem; font-weight: 700; color: var(--navy-900);
  border-top: 1px solid var(--line); background: #fff; flex-shrink: 0;
}
.genie-panel-fullpage:hover { color: var(--amber-600); }

@media (max-width: 640px) {
  .genie-bubble { left: 16px; bottom: 16px; width: 52px; height: 52px; }
  .genie-panel {
    left: 12px; right: 12px; bottom: 84px; width: auto; max-width: none;
    height: min(70vh, 560px);
  }
}

/* ---------- GEIYKE Genie: full chat page ---------- */
.genie-page { background: var(--light); }
.genie-page-wrap {
  max-width: 760px; margin: 0 auto; background: #fff;
  border-radius: var(--radius-lg); box-shadow: var(--shadow-sm); border: 1px solid var(--line);
  overflow: hidden; display: flex; flex-direction: column;
  height: calc(100vh - 400px); min-height: 480px; max-height: 720px;
}
.genie-page-header {
  background: linear-gradient(120deg, var(--navy-950), var(--navy-800));
  color: #fff; padding: 22px 26px; display: flex; align-items: center; gap: 14px; flex-shrink: 0;
}
.genie-page-header .genie-avatar { width: 48px; height: 48px; font-size: 1.2rem; }
.genie-page-header strong { display: block; font-family: var(--font-head); font-size: 1.1rem; }
.genie-page-header span { display: block; font-size: .82rem; color: #b7c2d0; }
.genie-page .genie-messages { padding: 26px; }
.genie-page .genie-msg { font-size: .94rem; max-width: 78%; }
.genie-page .genie-input-row { padding: 18px 22px; }
.genie-page .genie-input-row input { padding: 13px 18px; font-size: .92rem; }

@media (max-width: 640px) {
  .genie-page-wrap { height: calc(100vh - 260px); border-radius: var(--radius-md); }
  .genie-page .genie-msg { max-width: 90%; }
}

.nav-overlay {
  display: none;
  position: fixed; inset: 0; background: rgba(10,21,38,.5); z-index: 550;
}
.nav-overlay.show { display: block; }
