/* Sales funnel blocks */
.k-sales-grid {
  margin-top: 18px;
  display: grid;
  gap: 14px;
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.k-sales-item {
  border-radius: 16px;
  border: 1px solid rgba(255, 255, 255, .7);
  background: rgba(255, 255, 255, .74);
  box-shadow: 0 10px 24px rgba(15, 23, 42, .06);
  padding: 16px;
  transition: transform .22s ease, box-shadow .22s ease;
}

.k-sales-item i {
  color: #fb8500;
  font-size: 18px;
  transition: transform .22s ease, filter .22s ease;
}

.k-sales-item:hover {
  transform: translateY(-3px);
  box-shadow: 0 14px 28px rgba(15, 23, 42, .10);
}

.k-sales-item:hover i {
  transform: scale(1.08);
  filter: drop-shadow(0 0 8px rgba(251, 133, 0, .35));
}

.k-sales-item h3 {
  margin: 10px 0 6px;
  font-size: 18px;
  line-height: 1.2;
}

.k-sales-item p {
  margin: 0;
  color: #475569;
  font-size: 14px;
}

.k-center-cta {
  margin: 18px 0 0;
  text-align: center;
}

.k-shift-list {
  margin: 10px 0 0;
  padding-left: 18px;
  color: #334155;
  font-size: 14px;
  line-height: 1.45;
}

.k-shift-result {
  margin: 10px 0 0;
  color: #0f172a;
  font-size: 14px;
}

.k-checklist {
  margin: 16px 0 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 10px;
}

.k-checklist li {
  border-radius: 12px;
  border: 1px solid rgba(255, 255, 255, .75);
  background: rgba(255, 255, 255, .78);
  padding: 12px 14px 12px 42px;
  position: relative;
  font-size: 14px;
  color: #334155;
}

.k-checklist li::before {
  content: "\f058";
  font-family: "Font Awesome 6 Free";
  font-weight: 900;
  position: absolute;
  left: 14px;
  top: 12px;
  color: #fb8500;
}

.k-faq {
  margin-top: 16px;
  display: grid;
  gap: 10px;
}

.k-faq details {
  border-radius: 12px;
  border: 1px solid rgba(255, 255, 255, .75);
  background: rgba(255, 255, 255, .78);
  padding: 10px 12px;
}

.k-faq summary {
  cursor: pointer;
  font-weight: 700;
  color: #0f172a;
}

.k-faq p {
  margin: 8px 0 0;
  color: #475569;
  font-size: 14px;
}

.k-final-cta {
  border-radius: 24px;
  padding: 28px 22px;
  text-align: center;
  color: #fff;
  background: linear-gradient(135deg, #0f172a, #1e293b 55%, #334155);
  box-shadow: 0 16px 36px rgba(15, 23, 42, .24);
}

.k-final-cta h2 {
  margin: 0;
  font-size: clamp(28px, 4vw, 42px);
}

.k-final-cta p {
  margin: 10px auto 0;
  max-width: 700px;
  color: #e2e8f0;
}

.k-final-cta .k-btn {
  margin-top: 16px;
}

@media (max-width: 900px) {
  .k-sales-grid {
    grid-template-columns: 1fr;
  }
}

/* Tighten vertical rhythm around interim CTAs */
#why.k-section,
#day.k-section {
  padding-bottom: 24px !important;
}

#day.k-section {
  padding-top: 26px !important;
}

#why .k-center-cta,
#day .k-center-cta {
  margin: 18px 0 0 !important;
  line-height: 1;
}

.k-center-cta .k-btn,
.k-center-cta .magnet-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
}
/* Hero redesign: full-screen summer scene */
.k-hero-fullscreen {
  min-height: 76vh !important;
  display: flex !important;
  align-items: flex-start !important;
  padding: 44px 0 22px !important;
  overflow: hidden;
  position: relative;
}

.hero-gradient-layer {
  position: absolute;
  inset: -8%;
  z-index: -2;
  background:
    radial-gradient(circle at 18% 18%, rgba(255, 183, 3, 0.48), transparent 44%),
    radial-gradient(circle at 78% 20%, rgba(251, 133, 0, 0.42), transparent 46%),
    radial-gradient(circle at 50% 86%, rgba(255, 220, 130, 0.40), transparent 50%),
    linear-gradient(130deg, #fff1cb 0%, #ffd79e 38%, #ffc285 72%, #ffe6ba 100%);
  background-size: 130% 130%;
  animation: heroGradientBreath 12s ease-in-out infinite;
  filter: saturate(1.06);
}

.k-hero-fullscreen::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -1px;
  height: 88px;
  background: linear-gradient(180deg, rgba(255, 247, 232, 0) 0%, rgba(255, 247, 232, 0.95) 82%, #fff7e8 100%);
  pointer-events: none;
}

.k-scroll-hint {
  position: absolute;
  left: 50%;
  bottom: 14px;
  transform: translateX(-50%);
  z-index: 4;
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  gap: 2px;
  text-decoration: none;
  color: #475569;
  font-size: 12px;
  font-weight: 700;
  opacity: .8;
  animation: scrollHintFloat 1.9s ease-in-out infinite;
}

.k-scroll-hint i {
  font-size: 16px;
}

@keyframes scrollHintFloat {
  0%, 100% { transform: translateX(-50%) translateY(0); opacity: .6; }
  50% { transform: translateX(-50%) translateY(6px); opacity: 1; }
}

.k-section-overlap {
  margin-top: -26px;
  position: relative;
  z-index: 5;
}

@keyframes heroGradientBreath {
  0%, 100% { transform: scale(1) translate(0, 0); background-position: 0% 40%; }
  50% { transform: scale(1.04) translate(0, 6px); background-position: 100% 62%; }
}

.k-hero-fullscreen .k-title {
  margin-top: 14px;
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.hero-title-line {
  display: block;
  font-size: clamp(42px, 7vw, 88px);
  line-height: 0.97;
  font-weight: 800;
  letter-spacing: -0.02em;
  color: #132035;
}

.k-hero-benefits {
  margin: 16px 0 0;
  padding: 0;
  list-style: none;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
  max-width: 620px;
}

.k-hero-benefits li {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  border-radius: 12px;
  border: 1px solid rgba(255, 255, 255, 0.72);
  background: rgba(255, 255, 255, 0.68);
  padding: 10px 12px;
  font-size: 13px;
  font-weight: 700;
  color: #243247;
}

.k-hero-benefits i {
  color: #fb8500;
  font-size: 14px;
}

.k-btn-pulse {
  animation: ctaPulse 2.4s ease-in-out infinite;
}

@keyframes ctaPulse {
  0%, 100% { transform: scale(1); box-shadow: 0 14px 28px rgba(251, 133, 0, 0.28); }
  50% { transform: scale(1.04); box-shadow: 0 18px 36px rgba(251, 133, 0, 0.42); }
}

@media (max-width: 900px) {
  .k-hero-fullscreen { min-height: 75vh !important; padding-top: 28px !important; }
  .k-section-overlap { margin-top: -14px; }
}

@media (max-width: 767px) {
  .k-hero-benefits { grid-template-columns: 1fr; }
  .hero-title-line { font-size: clamp(36px, 12vw, 56px); }
}
.k-shifts-grid { grid-template-columns: 1fr !important; }
.shift-card { min-height: auto !important; }
.k-group-links { display: flex !important; flex-wrap: wrap !important; gap: 8px !important; }
.k-group-chip {
  font-size: 14px !important;
  padding: 10px 12px !important;
  border-radius: 12px !important;
}
.k-cta { display: none !important; }

@media (min-width: 1280px) {
  .k-shifts-grid { grid-template-columns: repeat(2, minmax(0, 1fr)) !important; }
}
* { box-sizing: border-box; }
html, body { margin: 0; padding: 0; }
body {
  font-family: Inter, system-ui, -apple-system, "Segoe UI", Roboto, Arial, sans-serif;
  color: #0f172a;
  background: #fffdf7;
}

.k-container { width: min(1160px, calc(100% - 24px)); margin: 0 auto; }

.k-header {
  position: sticky;
  top: 0;
  z-index: 20;
  border-bottom: 1px solid rgba(255, 255, 255, 0.75);
  background: rgba(255, 255, 255, 0.85);
  backdrop-filter: blur(10px);
}
.k-header-inner { display: flex; align-items: center; justify-content: space-between; gap: 12px; padding: 12px 0; }
.k-brand { text-decoration: none; color: #0f172a; font-weight: 800; }
.k-top-btn {
  text-decoration: none;
  border-radius: 12px;
  background: #0f172a;
  color: #fff;
  font-size: 14px;
  font-weight: 700;
  padding: 10px 14px;
}

.k-hero { padding: 34px 0 16px; }
.k-hero h1 {
  margin: 0;
  font-family: Montserrat, Inter, sans-serif;
  font-size: clamp(34px, 6vw, 58px);
  line-height: 1.05;
}
.k-hero p { margin: 12px 0 0; color: #475569; font-size: clamp(16px, 2vw, 20px); }

.k-section { padding: 20px 0 44px; }
.k-section h2 { margin: 0; font-size: clamp(28px, 4vw, 38px); font-family: Montserrat, Inter, sans-serif; }
.k-note { margin-top: 8px; color: #475569; font-size: 15px; }

.k-shifts-grid {
  margin-top: 24px;
  display: grid;
  gap: 18px;
  grid-template-columns: 1fr;
}

.shift-card {
  border-radius: 22px;
  border: 1px solid rgba(255, 255, 255, 0.8);
  box-shadow: 0 14px 32px rgba(15, 23, 42, 0.10);
  padding: 20px;
  transition: transform .25s ease, box-shadow .25s ease;
}

.shift-card:hover {
  transform: translateY(-4px) scale(1.01);
  box-shadow: 0 20px 36px rgba(15, 23, 42, 0.14);
}
.shift-cyber { background: linear-gradient(135deg, #f8fbff 0%, #e9f4ff 100%); }
.shift-art { background: linear-gradient(135deg, #fff7e6 0%, #fff2cc 100%); }
.shift-legacy { background: linear-gradient(135deg, #f3f8ff 0%, #e8f2ff 100%); }
.shift-sport { background: linear-gradient(135deg, #f3fff4 0%, #e8ffe9 100%); }

.k-date-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  border-radius: 12px;
  border: 1px solid rgba(255,255,255,0.9);
  background: rgba(255,255,255,0.9);
  padding: 8px 12px;
  font-size: 14px;
  font-weight: 800;
  line-height: 1.2;
}
.k-date-badge i { color: #fb8500; font-size: 14px; }

.k-shift-head { margin-top: 12px; display: flex; justify-content: space-between; gap: 12px; align-items: flex-start; }
.k-shift-head h3 { margin: 0; font-size: 32px; line-height: 1.08; }
.k-shift-head p { margin: 8px 0 0; font-size: 18px; color: #334155; }
.k-icon {
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  border-radius: 12px;
  background: rgba(255,255,255,0.9);
}
.k-shift-text { margin: 14px 0 0; color: #334155; font-size: 16px; line-height: 1.45; }

.k-price {
  margin-top: 14px;
  border-radius: 12px;
  background: rgba(255,255,255,0.92);
  border: 1px solid rgba(255,255,255,0.9);
  display: flex;
  justify-content: space-between;
  gap: 12px;
  align-items: center;
  padding: 10px 14px;
}
.k-price span { color: #1f2937; font-size: 16px; font-weight: 700; }
.k-price strong { font-size: 22px; }

.k-group-links { margin-top: 10px; display: flex; flex-wrap: wrap; gap: 8px; }

.k-group-chip {
  display: inline-flex;
  flex-direction: column;
  gap: 2px;
  min-width: 0;
  flex: 1 1 calc(50% - 4px);
  max-width: 100%;
  text-decoration: none;
  color: #0f172a;
  border-radius: 12px;
  border: 1px solid rgba(255, 255, 255, 0.95);
  background: rgba(255, 255, 255, 0.94);
  padding: 10px 12px;
  transition: transform .18s ease, box-shadow .18s ease;
}

.k-group-chip:hover {
  transform: translateY(-1px);
  box-shadow: 0 8px 18px rgba(15, 23, 42, 0.08);
}

.k-group-chip__badge {
  align-self: flex-start;
  margin-bottom: 2px;
  padding: 2px 8px;
  border-radius: 999px;
  background: rgba(251, 133, 0, 0.16);
  color: #9a3b00;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: .04em;
  text-transform: uppercase;
}

.k-group-chip__main {
  font-size: 13px;
  font-weight: 700;
  line-height: 1.35;
  color: #0f172a;
}

.k-group-chip__meta {
  font-size: 11px;
  font-weight: 600;
  color: #64748b;
}

.k-group-chip.is-full-day {
  border-color: rgba(251, 133, 0, 0.35);
  background: linear-gradient(135deg, rgba(255, 244, 219, 0.96), rgba(255, 255, 255, 0.96));
}

.k-shift-visit {
  margin-top: 14px;
  padding-top: 14px;
  border-top: 1px dashed rgba(15, 23, 42, 0.12);
}

.k-btn-visit {
  width: 100%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 48px;
  border: none;
  border-radius: 14px;
  background: linear-gradient(135deg, #ff7a18 0%, #ff6b00 100%);
  color: #fff;
  font-size: 15px;
  font-weight: 800;
  cursor: pointer;
  box-shadow: 0 10px 24px rgba(255, 107, 0, 0.24);
  transition: transform .18s ease, box-shadow .18s ease;
}

.k-btn-visit:hover {
  transform: translateY(-1px);
  box-shadow: 0 14px 28px rgba(255, 107, 0, 0.28);
}

.k-btn-visit--soon {
  background: linear-gradient(135deg, #f8fafc 0%, #eef2f7 100%);
  color: #475569;
  border: 1px dashed rgba(100, 116, 139, 0.45);
  box-shadow: none;
  cursor: pointer;
}

.k-btn-visit--soon:hover {
  transform: none;
  box-shadow: none;
  background: linear-gradient(135deg, #f1f5f9 0%, #e8eef5 100%);
}

.k-shift-visit__hint--soon {
  color: #64748b;
  font-style: italic;
}

.k-shift-visit__hint {
  margin: 8px 0 0;
  text-align: center;
  font-size: 12px;
  color: #64748b;
}

.k-shift-mos {
  margin-top: 14px;
  padding-top: 14px;
  border-top: 1px solid rgba(15, 23, 42, 0.08);
}

.k-shift-mos__title {
  margin: 0 0 4px;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: .04em;
  text-transform: uppercase;
  color: #64748b;
}

@media (min-width: 1200px) {
  .k-shifts-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .k-date-badge { font-size: 14px; }
  .k-shift-head h3 { font-size: 34px; }
  .k-shift-head p { font-size: 19px; }
  .k-shift-text { font-size: 16px; }
  .k-price span { font-size: 16px; }
  .k-price strong { font-size: 22px; }
  .k-group-links a { font-size: 13px; }
  .k-group-chip__main { font-size: 13px; }
}

@media (max-width: 767px) {
  .k-top-btn { font-size: 13px; padding: 9px 12px; }
  .k-section { padding-bottom: 24px; }
  .k-date-badge { font-size: 13px; }
  .k-shift-head h3 { font-size: 28px; }
  .k-shift-head p { font-size: 18px; }
  .k-shift-text { font-size: 16px; }
  .k-price span { font-size: 15px; }
  .k-price strong { font-size: 21px; }
  .k-group-links a { font-size: 13px; }
  .k-group-chip__main { font-size: 13px; }
}

/* Header navigation links for key sections */
.k-main-nav {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-left: auto;
  margin-right: 8px;
}

.k-main-nav a {
  color: #334155;
  text-decoration: none;
  font-size: 13px;
  font-weight: 600;
  transition: color .2s ease;
  white-space: nowrap;
}

.k-main-nav a:hover { color: #0f172a; }

@media (max-width: 1100px) {
  .k-main-nav { display: none; }
}
html { scroll-behavior: smooth; }
body { margin: 0; font-family: 'Inter', sans-serif; background: #fffdf7; color: #1f2937; overflow-x: hidden; }
h1, h2, h3 { font-family: 'Montserrat', 'Inter', sans-serif; margin: 0; }

.k-container { width: min(1160px, calc(100% - 24px)); margin: 0 auto; }
.k-header { position: sticky; top: 0; z-index: 40; border-bottom: 1px solid rgba(255,255,255,.6); background: rgba(255,255,255,.75); backdrop-filter: blur(12px); }
.k-header-inner { display: flex; align-items: center; justify-content: space-between; gap: 12px; padding: 12px 0; }
.k-brand { display: inline-flex; align-items: center; gap: 10px; color: inherit; text-decoration: none; font-weight: 600; }
.k-logo { width: 36px; height: 36px; border-radius: 12px; display: grid; place-items: center; color: #fff; background: linear-gradient(135deg, #ffb703, #fb8500); }
.k-top-btn { border-radius: 12px; background: #0f172a; color: #fff; text-decoration: none; font-size: 14px; font-weight: 600; padding: 10px 16px; display: inline-block; }

.k-hero { position: relative; padding-top: 40px; }
.k-hero-grid { display: grid; grid-template-columns: 1.1fr .9fr; gap: 28px; align-items: center; }
.k-eyebrow { display: inline-flex; border-radius: 999px; border: 1px solid #fed7aa; background: rgba(255,255,255,.85); color: #ea580c; padding: 6px 12px; font-size: 11px; font-weight: 700; text-transform: uppercase; letter-spacing: .04em; }
.k-title { margin-top: 14px; font-size: clamp(36px, 6vw, 64px); line-height: 1.05; font-weight: 800; }
.k-subtitle { margin-top: 16px; font-size: clamp(20px, 3vw, 30px); font-weight: 600; color: #334155; }
.k-text { margin-top: 14px; max-width: 700px; color: #475569; }
.k-actions { margin-top: 24px; display: flex; gap: 12px; flex-wrap: wrap; }
.k-btn { border-radius: 12px; padding: 12px 20px; text-decoration: none; font-size: 14px; font-weight: 600; display: inline-flex; align-items: center; justify-content: center; }
.k-btn-accent { color: #fff; background: linear-gradient(135deg, #ffb703, #fb8500); box-shadow: 0 16px 34px rgba(251,133,0,.28); }
.k-btn-light { color: #334155; border: 1px solid #e2e8f0; background: rgba(255,255,255,.9); }

.glass-card { background: linear-gradient(140deg, rgba(255,255,255,.84), rgba(255,255,255,.66)); border: 1px solid rgba(255,255,255,.75); backdrop-filter: blur(10px); box-shadow: 0 12px 40px rgba(15,23,42,.08); }
.k-hero-card { border-radius: 24px; padding: 8px; }
.k-hero-image { width: 100%; height: 380px; object-fit: cover; border-radius: 18px; display: block; }
.k-hero-placeholder { height: 380px; border-radius: 18px; display: grid; place-items: center; text-align: center; font-weight: 600; color: #475569; background: linear-gradient(135deg, #ffedd5, #cffafe); }

.k-section { padding-top: 64px; }
.k-day-card { border-radius: 24px; padding: 24px; }
.k-day-card h2 { font-size: clamp(28px, 4vw, 42px); font-weight: 800; }
.k-three-cols { margin-top: 24px; display: grid; gap: 14px; grid-template-columns: repeat(3, minmax(0, 1fr)); }
.k-three-cols article { border-radius: 16px; border: 1px solid rgba(226,232,240,.85); background: rgba(255,255,255,.72); padding: 16px; }
.k-three-cols h3 { font-size: 16px; font-weight: 700; margin-bottom: 8px; }
.k-three-cols p { margin: 0; font-size: 14px; color: #475569; }

#shifts h2 { font-size: clamp(28px, 4vw, 42px); font-weight: 800; }
.k-note { margin-top: 8px; font-size: 14px; color: #475569; }
.k-shifts-grid { margin-top: 26px; display: grid; gap: 18px; grid-template-columns: repeat(2, minmax(0, 1fr)); }

.shift-card { position: relative; border-radius: 22px; padding: 20px; border: 1px solid rgba(255,255,255,.78); box-shadow: 0 14px 32px rgba(15,23,42,.10); overflow: hidden; min-height: 430px; transition: transform .22s ease; }
.k-date-badge { margin-bottom: 14px; display: inline-flex; align-items: center; gap: 8px; border-radius: 12px; border: 1px solid rgba(255,255,255,.8); background: rgba(255,255,255,.88); padding: 8px 12px; font-size: 14px; font-weight: 800; color: #1f2937; box-shadow: 0 3px 10px rgba(15,23,42,.08); }
.k-date-badge i { color: #fb8500; }
.k-shift-head { display: flex; justify-content: space-between; gap: 12px; align-items: flex-start; }
.k-shift-head h3 { font-size: 30px; line-height: 1.05; font-weight: 800; }
.k-shift-head p { margin-top: 8px; margin-bottom: 0; font-size: 14px; font-weight: 600; color: #334155; }
.k-icon { width: 44px; height: 44px; border-radius: 12px; display: grid; place-items: center; background: rgba(255,255,255,.82); color: #334155; }
.k-shift-text { margin-top: 12px; font-size: 14px; color: #334155; }
.k-price { margin-top: 14px; border-radius: 12px; border: 1px solid rgba(255,255,255,.75); background: rgba(255,255,255,.62); padding: 10px 12px; display: flex; justify-content: space-between; font-size: 14px; font-weight: 700; }
.k-group-links { margin-top: 14px; display: flex; flex-wrap: wrap; gap: 8px; }
.k-group-chip { border-radius: 10px; border: 1px solid rgba(255,255,255,.75); background: rgba(255,255,255,.72); color: #334155; text-decoration: none; font-size: 12px; font-weight: 700; padding: 8px 10px; }
.k-cta { margin-top: 16px; display: inline-flex; border-radius: 12px; background: #0f172a; color: #fff; text-decoration: none; font-size: 14px; font-weight: 700; padding: 10px 16px; }

.shift-cyber { background: repeating-linear-gradient(0deg, rgba(33,158,188,.11), rgba(33,158,188,.11) 1px, transparent 1px, transparent 8px), linear-gradient(135deg, rgba(33,158,188,.20), rgba(255,255,255,.75)); }
.shift-cyber::after { content: ""; position: absolute; inset: 0; background: linear-gradient(90deg, transparent 0%, rgba(255,255,255,.40) 48%, transparent 100%); transform: translateX(-100%); animation: cyberScan 4.5s linear infinite; pointer-events: none; }
@keyframes cyberScan { to { transform: translateX(100%); } }
.shift-art { background: radial-gradient(circle at 20% 10%, rgba(251,133,0,.25), transparent 40%), radial-gradient(circle at 90% 85%, rgba(255,183,3,.20), transparent 45%), linear-gradient(145deg, rgba(255,255,255,.88), rgba(255,244,220,.85)); }
.shift-art::before { content: ""; position: absolute; inset: 0; background-image: radial-gradient(rgba(0,0,0,.03) .6px, transparent .6px); background-size: 5px 5px; pointer-events: none; }
.shift-legacy { background: linear-gradient(135deg, rgba(144,190,109,.24), rgba(255,245,219,.85)), linear-gradient(45deg, rgba(251,133,0,.08), transparent); }
.shift-legacy::before { content: ""; position: absolute; inset: 0; background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='110' height='110'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.8' numOctaves='2' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='110' height='110' filter='url(%23n)' opacity='0.10'/%3E%3C/svg%3E"); opacity: .22; pointer-events: none; }
.shift-sport { background: repeating-linear-gradient(135deg, rgba(230,57,70,.13), rgba(230,57,70,.13) 12px, transparent 12px, transparent 26px), linear-gradient(145deg, rgba(255,255,255,.84), rgba(255,225,230,.82)); }
.shift-sport::after { content: ""; position: absolute; top: 0; left: -30%; width: 40%; height: 100%; background: rgba(255,255,255,.38); transform: skewX(-22deg); animation: sportRun 3.8s ease-in-out infinite; pointer-events: none; }
@keyframes sportRun { 0% { left: -40%; opacity: 0; } 20% { opacity: 1; } 100% { left: 120%; opacity: 0; } }

.scroll-progress { position: fixed; top: 0; left: 0; z-index: 60; width: 0; height: 3px; background: linear-gradient(90deg, #ffb703, #fb8500, #219ebc); transition: width .12s linear; }
.hero-breath { position: absolute; top: 0; left: 0; right: 0; height: 420px; background: radial-gradient(circle at 10% 20%, rgba(251,133,0,.20), transparent 45%), radial-gradient(circle at 90% 10%, rgba(33,158,188,.18), transparent 45%), radial-gradient(circle at 55% 80%, rgba(255,183,3,.16), transparent 45%); filter: blur(6px); z-index: -1; animation: breathe 8s ease-in-out infinite; }
@keyframes breathe { 0%,100% { transform: scale(1) translateY(0); opacity: .9; } 50% { transform: scale(1.04) translateY(6px); opacity: 1; } }
.float-blob { position: fixed; z-index: -2; pointer-events: none; border-radius: 999px; filter: blur(20px); opacity: .28; }
.blob-a { width: 220px; height: 220px; top: 12%; left: -70px; background: #fb8500; animation: blobA 11s ease-in-out infinite; }
.blob-b { width: 260px; height: 260px; top: 45%; right: -90px; background: #219ebc; animation: blobB 12s ease-in-out infinite; }
.blob-c { width: 180px; height: 180px; bottom: 14%; left: 35%; background: #90be6d; animation: blobC 10s ease-in-out infinite; }
@keyframes blobA { 0%,100% { transform: translate(0,0) scale(1); } 50% { transform: translate(30px,10px) scale(1.08); } }
@keyframes blobB { 0%,100% { transform: translate(0,0) scale(1); } 50% { transform: translate(-26px,12px) scale(1.06); } }
@keyframes blobC { 0%,100% { transform: translate(0,0) scale(1); } 50% { transform: translate(12px,-20px) scale(1.04); } }

.mobile-sticky-cta { position: fixed; left: 12px; right: 12px; bottom: 12px; z-index: 45; text-align: center; border-radius: 14px; padding: 13px 10px; color: #fff; font-weight: 700; text-decoration: none; background: linear-gradient(135deg, #ffb703, #fb8500); box-shadow: 0 16px 34px rgba(251,133,0,.38); display: none; }

@media (max-width: 1024px) { .k-shift-head h3 { font-size: 26px; } }
@media (max-width: 900px) {
  .k-hero-grid { grid-template-columns: 1fr; }
  .k-shifts-grid { grid-template-columns: 1fr; }
  .k-three-cols { grid-template-columns: 1fr; }
  .k-hero-image, .k-hero-placeholder { height: 300px; }
  .mobile-sticky-cta { display: block; }
  .k-top-btn { display: none; }
  body { padding-bottom: 74px; }
}
/* Shared visual layer: glass cards, blobs, effects */
html { scroll-behavior: smooth; }

.scroll-progress {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 60;
  width: 0;
  height: 3px;
  background: linear-gradient(90deg, #ffb703, #fb8500, #219ebc);
  transition: width .12s linear;
}

.hero-breath {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 420px;
  background:
    radial-gradient(circle at 10% 20%, rgba(251, 133, 0, .20), transparent 45%),
    radial-gradient(circle at 90% 10%, rgba(33, 158, 188, .18), transparent 45%),
    radial-gradient(circle at 55% 80%, rgba(255, 183, 3, .16), transparent 45%);
  filter: blur(6px);
  z-index: -1;
  animation: breathe 8s ease-in-out infinite;
}
@keyframes breathe {
  0%, 100% { transform: scale(1) translateY(0); opacity: .9; }
  50% { transform: scale(1.04) translateY(6px); opacity: 1; }
}

.float-blob {
  position: fixed;
  z-index: -2;
  pointer-events: none;
  border-radius: 999px;
  filter: blur(20px);
  opacity: .28;
}
.blob-a {
  width: 220px;
  height: 220px;
  top: 12%;
  left: -70px;
  background: #fb8500;
  animation: blobA 11s ease-in-out infinite;
}
.blob-b {
  width: 260px;
  height: 260px;
  top: 45%;
  right: -90px;
  background: #219ebc;
  animation: blobB 12s ease-in-out infinite;
}
.blob-c {
  width: 180px;
  height: 180px;
  bottom: 14%;
  left: 35%;
  background: #90be6d;
  animation: blobC 10s ease-in-out infinite;
}
@keyframes blobA {
  0%, 100% { transform: translate(0, 0) scale(1); }
  50% { transform: translate(30px, 10px) scale(1.08); }
}
@keyframes blobB {
  0%, 100% { transform: translate(0, 0) scale(1); }
  50% { transform: translate(-26px, 12px) scale(1.06); }
}
@keyframes blobC {
  0%, 100% { transform: translate(0, 0) scale(1); }
  50% { transform: translate(12px, -20px) scale(1.04); }
}

.glass-card {
  background: linear-gradient(140deg, rgba(255,255,255,.82), rgba(255,255,255,.64));
  border: 1px solid rgba(255,255,255,.7);
  backdrop-filter: blur(10px);
  box-shadow: 0 12px 40px rgba(15, 23, 42, .08);
}

.shift-card {
  position: relative;
  border: 1px solid rgba(255,255,255,.75);
  backdrop-filter: blur(8px);
  box-shadow: 0 14px 32px rgba(15,23,42,.10);
  min-height: 430px;
  overflow: hidden;
}

/* 1) Cyber: glitch lines + neon glow */
.shift-cyber {
  background:
    repeating-linear-gradient(0deg, rgba(33,158,188,.11), rgba(33,158,188,.11) 1px, transparent 1px, transparent 8px),
    linear-gradient(135deg, rgba(33,158,188,.20), rgba(255,255,255,.75));
}
.shift-cyber::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, transparent 0%, rgba(255,255,255,.40) 48%, transparent 100%);
  transform: translateX(-100%);
  animation: cyberScan 4.5s linear infinite;
  pointer-events: none;
}
@keyframes cyberScan {
  to { transform: translateX(100%); }
}

/* 2) Art: paper + brush feel */
.shift-art {
  background:
    radial-gradient(circle at 20% 10%, rgba(251,133,0,.25), transparent 40%),
    radial-gradient(circle at 90% 85%, rgba(255,183,3,.20), transparent 45%),
    linear-gradient(145deg, rgba(255,255,255,.88), rgba(255,244,220,.85));
}
.shift-art::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: radial-gradient(rgba(0,0,0,.03) 0.6px, transparent 0.6px);
  background-size: 5px 5px;
  pointer-events: none;
}

/* 3) Legacy: warm + grain */
.shift-legacy {
  background:
    linear-gradient(135deg, rgba(144,190,109,.24), rgba(255,245,219,.85)),
    linear-gradient(45deg, rgba(251,133,0,.08), transparent);
}
.shift-legacy::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='110' height='110'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.8' numOctaves='2' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='110' height='110' filter='url(%23n)' opacity='0.10'/%3E%3C/svg%3E");
  opacity: .22;
  pointer-events: none;
}

/* 4) Sport: diagonal dynamic stripes */
.shift-sport {
  background:
    repeating-linear-gradient(135deg, rgba(230,57,70,.13), rgba(230,57,70,.13) 12px, transparent 12px, transparent 26px),
    linear-gradient(145deg, rgba(255,255,255,.84), rgba(255,225,230,.82));
}
.shift-sport::after {
  content: "";
  position: absolute;
  top: 0;
  left: -30%;
  width: 40%;
  height: 100%;
  background: rgba(255,255,255,.38);
  transform: skewX(-22deg);
  animation: sportRun 3.8s ease-in-out infinite;
  pointer-events: none;
}
@keyframes sportRun {
  0% { left: -40%; opacity: 0; }
  20% { opacity: 1; }
  100% { left: 120%; opacity: 0; }
}

.mobile-sticky-cta {
  position: fixed;
  left: 12px;
  right: 12px;
  bottom: 12px;
  z-index: 45;
  text-align: center;
  border-radius: 14px;
  padding: 13px 10px;
  color: #fff;
  font-weight: 700;
  background: linear-gradient(135deg, #ffb703, #fb8500);
  box-shadow: 0 16px 34px rgba(251,133,0,.38);
}

@media (max-width: 767px) {
  .shift-card { min-height: 390px; }
}
:root {
  --accent: #ffb703;
  --accent-2: #fb8500;
  --accent-3: #219ebc;
  --bg: #fffdf7;
  --text: #1f2937;
  --muted: #4b5563;
  --card: #ffffff;
  --line: #e5e7eb;
}
* { box-sizing: border-box; }
body {
  margin: 0;
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  color: var(--text);
  background: radial-gradient(circle at 10% 10%, #fff3d2 0, #fffdf7 35%), var(--bg);
}
h1, h2, h3 { font-family: 'Montserrat', 'Inter', Arial, sans-serif; margin: 0 0 12px; }
p { margin: 0 0 14px; line-height: 1.6; }
ul { margin: 0; padding-left: 20px; }
.k-container { width: min(1120px, calc(100% - 32px)); margin: 0 auto; }
.k-header {
  position: sticky;
  top: 0;
  z-index: 20;
  background: rgba(255, 253, 247, 0.92);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid var(--line);
}
.k-header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 12px 0;
}
.k-brand { display: inline-flex; align-items: center; gap: 10px; font-weight: 800; text-decoration: none; color: inherit; }
.k-brand-logo {
  width: 34px; height: 34px; border-radius: 10px;
  display: grid; place-items: center;
  background: linear-gradient(135deg, var(--accent), var(--accent-2));
  color: #fff;
}
.k-nav { display: flex; gap: 14px; }
.k-nav a { color: var(--muted); text-decoration: none; font-weight: 600; }
.k-nav a:hover { color: var(--text); }
.k-section { padding: 56px 0; }
.k-section-muted { background: #fff9ec; border-top: 1px solid #f8ebca; border-bottom: 1px solid #f8ebca; }
.k-hero { padding: 48px 0 36px; }
.k-hero-grid {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 24px;
  align-items: center;
}
.k-eyebrow {
  display: inline-block;
  background: #ffe7ad;
  border: 1px solid #ffd572;
  border-radius: 999px;
  padding: 8px 12px;
  font-weight: 700;
  margin-bottom: 14px;
}
.k-hero h1 { font-size: clamp(34px, 4vw, 56px); }
.k-lead { font-size: clamp(18px, 2vw, 22px); font-weight: 600; }
.k-copy { color: var(--muted); }
.k-hero-actions { display: flex; gap: 10px; flex-wrap: wrap; margin: 18px 0 14px; }
.k-btn {
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: 12px 16px;
  font-weight: 700;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--text);
  background: #fff;
}
.k-btn-primary {
  background: linear-gradient(135deg, var(--accent), var(--accent-2));
  color: #fff;
  border-color: transparent;
}
.k-btn-light { background: #fff; }
.k-btn-lg { padding: 14px 22px; font-size: 17px; }
.k-chips { display: flex; flex-wrap: wrap; gap: 8px; list-style: none; padding: 0; margin: 0; }
.k-chips li {
  background: #eef9fd;
  border: 1px solid #d2edf4;
  color: #0f5061;
  padding: 8px 10px;
  border-radius: 999px;
  font-size: 13px;
  font-weight: 600;
}
.k-hero-media img {
  width: 100%;
  aspect-ratio: 4/3;
  object-fit: cover;
  border-radius: 20px;
  border: 1px solid #f0e0b6;
  box-shadow: 0 20px 40px rgba(120, 91, 24, 0.15);
}
.k-hero-placeholder {
  min-height: 320px;
  border-radius: 20px;
  border: 1px dashed #e5d3a4;
  display: grid;
  place-items: center;
  text-align: center;
  color: #7a6642;
  background: #fff8e6;
  padding: 24px;
}
.k-hero-placeholder i { font-size: 48px; margin-bottom: 8px; color: var(--accent-2); }
.k-grid { display: grid; gap: 14px; }
.k-grid-4 { grid-template-columns: repeat(4, minmax(0, 1fr)); }
.k-grid-3 { grid-template-columns: repeat(3, minmax(0, 1fr)); }
.k-grid-2 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
.k-card {
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 18px;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.04);
}
.k-card h3 { font-size: 18px; margin-bottom: 8px; }
.k-sub { color: var(--muted); max-width: 860px; margin-bottom: 18px; }
.k-shifts { display: grid; gap: 12px; }
.k-shift { border: 1px solid #e8dfca; border-radius: 16px; background: #fffef9; overflow: hidden; }
.k-shift-head {
  width: 100%;
  border: 0;
  background: #fff6dc;
  padding: 14px 16px;
  text-align: left;
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
}
.k-shift-head small { display: block; margin-top: 4px; color: var(--muted); font-weight: 600; }
.k-shift-head i { transition: transform .2s ease; }
.k-shift.is-open .k-shift-head i { transform: rotate(180deg); }
.k-shift-body { padding: 16px; display: none; }
.k-shift.is-open .k-shift-body { display: block; }
.k-group-links { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 12px; }
.k-result { margin-top: 12px; color: #164e63; background: #ecfeff; border: 1px solid #c9f2f9; padding: 10px 12px; border-radius: 10px; }
.k-fit { display: grid; gap: 8px; }
.k-final {
  background: linear-gradient(135deg, #0e7490, #219ebc);
  color: #fff;
  text-align: center;
}
.k-final p { max-width: 840px; margin: 0 auto 18px; }
.k-final .k-btn-primary { background: #fff; color: #0f172a; }
.k-photos { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 10px; margin: 14px 0; }
.k-photo { padding: 0; border: 1px solid var(--line); border-radius: 12px; overflow: hidden; background: #fff; cursor: pointer; }
.k-photo img { width: 100%; aspect-ratio: 1/1; object-fit: cover; display: block; }
.k-mobile-cta {
  position: fixed;
  left: 12px;
  right: 12px;
  bottom: 12px;
  z-index: 30;
  border-radius: 14px;
  background: linear-gradient(135deg, var(--accent), var(--accent-2));
  color: #fff;
  text-decoration: none;
  text-align: center;
  font-weight: 800;
  padding: 13px 12px;
  box-shadow: 0 10px 30px rgba(251, 133, 0, .35);
  display: none;
}
.k-lightbox {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, .9);
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 50;
  padding: 20px;
}
.k-lightbox.is-open { display: flex; }
.k-lightbox img { max-width: 100%; max-height: 90vh; object-fit: contain; }
.k-lightbox-close {
  position: absolute; top: 14px; right: 14px;
  width: 40px; height: 40px; border-radius: 50%;
  border: 0; background: rgba(255,255,255,.2); color: #fff; cursor: pointer;
}
@media (max-width: 980px) {
  .k-nav { display: none; }
  .k-hero-grid, .k-grid-4, .k-grid-3, .k-grid-2, .k-photos { grid-template-columns: 1fr; }
  .k-desktop-cta { display: none; }
  .k-mobile-cta { display: block; }
  .k-section { padding: 42px 0; }
  body { padding-bottom: 72px; }
}

/* Final mobile polish without desktop regressions */
@media (max-width: 980px) {
  .k-header-inner {
    gap: 8px !important;
    padding: 10px 0 !important;
  }

  .k-brand {
    font-size: 13px !important;
    gap: 8px !important;
  }

  .k-logo {
    width: 30px !important;
    height: 30px !important;
    border-radius: 10px !important;
  }

  .k-top-btn {
    font-size: 12px !important;
    padding: 8px 11px !important;
    border-radius: 10px !important;
  }

  .k-hero-fullscreen {
    min-height: auto !important;
    padding: 10px 0 8px !important;
  }

  .k-hero-grid {
    gap: 14px !important;
    grid-template-columns: 1fr !important;
    align-items: start !important;
  }

  .k-hero-grid > div:first-child {
    order: 1 !important;
  }

  .k-hero-card {
    order: 2 !important;
    padding: 6px !important;
    border-radius: 16px !important;
  }

  .k-hero-image,
  .k-hero-placeholder {
    height: 220px !important;
    border-radius: 12px !important;
  }

  .k-title {
    margin-top: 4px !important;
  }

  .hero-title-line {
    font-size: clamp(34px, 11vw, 50px) !important;
    line-height: 0.98 !important;
  }

  .k-subtitle {
    margin-top: 10px !important;
    font-size: 17px !important;
    line-height: 1.35 !important;
  }

  .k-hero-benefits {
    margin-top: 12px !important;
    grid-template-columns: 1fr !important;
    gap: 8px !important;
  }

  .k-hero-benefits li {
    padding: 9px 10px !important;
    font-size: 13px !important;
  }

  .k-actions {
    margin-top: 12px !important;
    gap: 8px !important;
  }

  .k-actions .k-btn {
    width: 100%;
    min-height: 42px;
    padding: 11px 12px !important;
    font-size: 14px !important;
  }

  .k-scroll-hint { display: none !important; }

  .k-section {
    padding: 28px 0 !important;
  }

  .k-section h2 {
    font-size: clamp(28px, 8.2vw, 38px) !important;
    line-height: 1.06 !important;
  }

  .k-note {
    margin-top: 7px !important;
    font-size: 14px !important;
    line-height: 1.45 !important;
  }

  .k-sales-grid,
  .k-shifts-grid {
    gap: 10px !important;
    grid-template-columns: 1fr !important;
  }

  .k-sales-item,
  .shift-card {
    padding: 14px !important;
    border-radius: 14px !important;
  }

  .k-date-badge {
    font-size: 12px !important;
    padding: 7px 10px !important;
    gap: 6px !important;
  }

  .k-shift-head h3 {
    font-size: 24px !important;
  }

  .k-shift-head p,
  .k-shift-text,
  .k-shift-list,
  .k-shift-result {
    font-size: 14px !important;
  }

  .k-price {
    margin-top: 10px !important;
    padding: 9px 10px !important;
  }

  .k-price span {
    font-size: 13px !important;
  }

  .k-group-links {
    margin-top: 10px !important;
    gap: 8px !important;
  }

  .k-group-chip {
    flex-basis: 100% !important;
    font-size: 12.5px !important;
    line-height: 1.35 !important;
    padding: 10px 11px !important;
  }

  .k-btn-visit {
    min-height: 44px;
    font-size: 14px;
  }

  /* On mobile keep one primary conversion path (sticky CTA) */
  .k-center-cta {
    display: none !important;
  }

  .mobile-sticky-cta {
    left: 10px !important;
    right: 10px !important;
    bottom: calc(10px + env(safe-area-inset-bottom)) !important;
    min-height: 44px !important;
    padding: 11px 10px !important;
    border-radius: 12px !important;
    z-index: 46 !important;
  }

  body {
    padding-bottom: calc(112px + env(safe-area-inset-bottom)) !important;
  }

  #faq .k-faq {
    margin-bottom: 12px !important;
  }

  .k-final-cta {
    margin-bottom: 12px !important;
  }

  .k-photos {
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
    gap: 8px !important;
  }

  .k-photos img {
    height: 132px !important;
  }

  .k-faq details {
    padding: 10px !important;
  }
}

@media (max-width: 560px) {
  .k-container {
    width: min(1160px, calc(100% - 16px)) !important;
  }

  .hero-title-line {
    font-size: clamp(32px, 10.5vw, 44px) !important;
  }

  .k-photos {
    grid-template-columns: 1fr !important;
  }

  .k-actions .k-btn {
    min-height: 40px;
    font-size: 13px !important;
  }
}

/* Highlight full-day enrollment links */
.k-group-chip.is-full-day .k-group-chip__main {
  color: #9a3b00;
}

/* Past shifts */
.shift-card.is-past,
.shift-card.is-partial {
  position: relative;
}

.shift-card.is-past {
  filter: grayscale(0.55);
  opacity: 0.82;
}

.shift-card.is-partial {
  opacity: 0.98;
}

.shift-card.is-past::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background: linear-gradient(180deg, rgba(255,255,255,0.08), rgba(148,163,184,0.12));
  pointer-events: none;
}

.k-shift-status {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 10px;
  padding: 7px 12px;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: .02em;
  text-transform: uppercase;
}

.k-shift-status--past {
  background: rgba(100, 116, 139, 0.16);
  color: #475569;
}

.k-shift-status--partial {
  background: rgba(251, 133, 0, 0.14);
  color: #9a3b00;
}

@media (max-width: 560px) {
  .k-group-chip {
    flex-basis: 100%;
  }
}

/* Kanikuly visit modal */
.kanikuly-visit-modal {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 2200;
  align-items: center;
  justify-content: center;
  padding: 20px;
  background: rgba(17, 24, 39, 0.42);
  backdrop-filter: blur(10px) saturate(140%);
  -webkit-backdrop-filter: blur(10px) saturate(140%);
}

.kanikuly-visit-modal.is-open {
  display: flex;
}

.kanikuly-visit-modal__content {
  width: 100%;
  max-width: 620px;
  max-height: 90vh;
  overflow-y: auto;
  position: relative;
  padding: 28px;
  border-radius: 20px;
  border: 1px solid rgba(255, 255, 255, 0.82);
  background: linear-gradient(145deg, rgba(255, 255, 255, 0.96) 0%, rgba(255, 255, 255, 0.88) 100%);
  box-shadow: 0 24px 64px rgba(17, 24, 39, 0.18);
}

.kanikuly-visit-modal__header {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 16px;
  padding-right: 40px;
}

.kanikuly-visit-modal__header h2 {
  margin: 0;
  font-size: 22px;
  font-weight: 800;
  color: #111827;
}

.kanikuly-visit-modal__close {
  position: absolute;
  top: 16px;
  right: 16px;
  width: 36px;
  height: 36px;
  border: none;
  border-radius: 50%;
  background: #f3f4f6;
  color: #6b7280;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.kanikuly-visit-modal__close:hover {
  background: #e5e7eb;
  color: #111827;
}

.kanikuly-visit-modal__meta {
  margin: 0 0 12px;
  color: #475569;
  font-size: 14px;
  line-height: 1.5;
}

.kanikuly-visit-modal__price {
  margin-bottom: 14px;
}

.kanikuly-visit-modal__price-value {
  padding: 12px 14px;
  border-radius: 12px;
  background: rgba(255, 244, 219, 0.9);
  border: 1px solid rgba(251, 133, 0, 0.25);
  color: #9a3b00;
  font-size: 14px;
}

.kanikuly-visit-modal__group {
  margin-bottom: 14px;
}

.kanikuly-visit-modal__group label {
  display: block;
  margin-bottom: 6px;
  font-size: 14px;
  font-weight: 700;
  color: #1f2937;
}

.kanikuly-visit-modal__group input,
.kanikuly-visit-modal__group select {
  width: 100%;
  box-sizing: border-box;
  padding: 11px 12px;
  border: 1px solid #d1d5db;
  border-radius: 12px;
  font: inherit;
  background: #fff;
}

.kanikuly-visit-modal__hint {
  display: block;
  margin-top: 6px;
  color: #6b7280;
  font-size: 12px;
}

.kanikuly-visit-modal__consent {
  margin: 8px 0 16px;
  color: #6b7280;
  font-size: 12px;
  line-height: 1.5;
}

.kanikuly-visit-modal__consent a {
  color: #ea580c;
}

.kanikuly-visit-modal__alert {
  margin-bottom: 12px;
  padding: 12px 14px;
  border-radius: 12px;
  font-size: 14px;
}

.kanikuly-visit-modal__alert--error {
  background: #fef2f2;
  color: #b91c1c;
  border: 1px solid #fecaca;
}

.kanikuly-visit-modal__alert--success {
  background: #ecfdf5;
  color: #047857;
  border: 1px solid #a7f3d0;
}

.kanikuly-visit-modal__alert--info {
  background: #f8fafc;
  color: #475569;
  border: 1px solid #cbd5e1;
}

#kanikuly-visit-submit-btn {
  width: 100%;
}

.kanikuly-visit-modal__loading {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 12px;
  padding: 12px 14px;
  border-radius: 12px;
  background: #f8fafc;
  color: #475569;
  font-size: 14px;
}

.kanikuly-visit-modal__spinner {
  width: 18px;
  height: 18px;
  border: 2px solid rgba(251, 133, 0, 0.25);
  border-top-color: #ff6b00;
  border-radius: 50%;
  animation: kanikulyVisitSpin 0.8s linear infinite;
}

@keyframes kanikulyVisitSpin {
  to { transform: rotate(360deg); }
}

#kanikuly-visit-form {
  transition: opacity 0.2s ease;
}
