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

:root {
  --navy: #0a1628;
  --mid: #0d2b55;
  --sea: #1565c0;
  --bright: #29b6f6;
  --sky: #e3f2fd;
  --sand: #f4f7fb;
  --coral: #e05c3a;
  --red: #d32f2f;
  --text: #0d1b2e;
  --muted: #4a6080;
  --white: #ffffff;
  --radius: 14px;
}

html { scroll-behavior: smooth; }

body {
  font-family: 'Nunito', sans-serif;
  color: var(--text);
  background: var(--white);
}

nav {
  position: sticky;
  top: 0;
  z-index: 100;
  background: var(--navy);
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 5%;
  height: 66px;
  border-bottom: 1px solid rgba(41,182,246,0.15);
}

.nav-logo {
  font-family: 'DM Serif Display', serif;
  font-size: 1.4rem;
  color: var(--white);
  letter-spacing: 0.5px;
  text-decoration: none;
}

.nav-logo span { color: var(--bright); }

.nav-links {
  display: flex;
  gap: 28px;
  list-style: none;
}

.nav-links a {
  color: rgba(255,255,255,0.75);
  text-decoration: none;
  font-size: 0.9rem;
  font-weight: 600;
  transition: color 0.2s;
}

.nav-links a:hover { color: var(--bright); }

.nav-right {
  display: flex;
  align-items: center;
  gap: 12px;
}

.nav-cta {
  background: var(--coral);
  color: var(--white);
  border: none;
  padding: 9px 22px;
  border-radius: 50px;
  font-family: 'Nunito', sans-serif;
  font-weight: 700;
  font-size: 0.9rem;
  cursor: pointer;
  transition: opacity 0.2s;
}

.nav-cta:hover { opacity: 0.88; }

.modal-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(6,15,30,0.78);
  z-index: 500;
  align-items: center;
  justify-content: center;
  padding: 20px;
}

.modal-overlay.open { display: flex; }

.modal {
  background: var(--navy);
  border: 1px solid rgba(41,182,246,0.25);
  border-radius: 20px;
  width: 100%;
  max-width: 700px;
  padding: 36px 32px;
  position: relative;
  max-height: 90vh;
  overflow-y: auto;
}

.modal-close {
  position: absolute;
  top: 16px;
  right: 20px;
  background: none;
  border: none;
  color: rgba(255,255,255,0.5);
  font-size: 1.5rem;
  cursor: pointer;
  line-height: 1;
  transition: color 0.2s;
}

.modal-close:hover { color: var(--white); }

.modal h2 {
  font-family: 'DM Serif Display', serif;
  font-size: 1.7rem;
  color: var(--white);
  margin-bottom: 6px;
}

.modal-sub {
  color: rgba(255,255,255,0.55);
  font-size: 0.9rem;
  margin-bottom: 28px;
}

.modal-note {
  margin-top: 22px;
  background: rgba(41,182,246,0.08);
  border: 1px solid rgba(41,182,246,0.18);
  border-radius: 10px;
  padding: 12px 16px;
  font-size: 0.85rem;
  color: rgba(255,255,255,0.6);
}

.msp-modal { max-width: 640px; }

.msp-intro {
  color: rgba(255,255,255,0.65);
  font-size: 0.92rem;
  line-height: 1.65;
  margin-bottom: 22px;
}

.msp-security-note {
  background: linear-gradient(135deg, rgba(21,101,192,0.2) 0%, rgba(41,182,246,0.08) 100%);
  border: 1px solid rgba(41,182,246,0.3);
  border-radius: 12px;
  padding: 16px 18px;
  margin-bottom: 20px;
}

.msp-security-note p {
  font-size: 0.88rem;
  color: rgba(255,255,255,0.75);
  line-height: 1.6;
}

.msp-security-note p strong { color: var(--bright); }

.msp-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 20px;
}

.mtag {
  font-size: 0.82rem;
  font-weight: 600;
  color: rgba(255,255,255,0.82);
  background: rgba(255,255,255,0.07);
  border: 1px solid rgba(41,182,246,0.22);
  padding: 6px 13px;
  border-radius: 20px;
}

.hero {
  background: linear-gradient(135deg, var(--navy) 0%, #0d2b55 55%, #1255a0 100%);
  padding: 90px 5% 80px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  min-height: 520px;
}

.hero-eyebrow {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 18px;
}

.hero-eyebrow span {
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--bright);
}

.hero-eyebrow::after {
  content: '';
  flex: 1;
  max-width: 60px;
  height: 1px;
  background: rgba(41,182,246,0.4);
}

.hero-text h1 {
  font-family: 'DM Serif Display', serif;
  font-size: clamp(2.2rem, 4vw, 3.2rem);
  color: var(--white);
  line-height: 1.2;
  margin-bottom: 20px;
}

.hero-text h1 em { color: var(--bright); font-style: italic; }

.hero-text p {
  color: rgba(255,255,255,0.75);
  font-size: 1.05rem;
  line-height: 1.7;
  margin-bottom: 32px;
  max-width: 440px;
}

.hero-buttons { display: flex; gap: 14px; flex-wrap: wrap; }

.btn-primary {
  background: var(--coral);
  color: var(--white);
  border: none;
  padding: 13px 28px;
  border-radius: 50px;
  font-family: 'Nunito', sans-serif;
  font-weight: 700;
  font-size: 1rem;
  cursor: pointer;
  transition: transform 0.15s, opacity 0.15s;
  text-decoration: none;
  display: inline-block;
}

.btn-primary:hover { opacity: 0.9; transform: translateY(-1px); }

.btn-outline {
  background: transparent;
  color: var(--white);
  border: 2px solid rgba(255,255,255,0.4);
  padding: 11px 28px;
  border-radius: 50px;
  font-family: 'Nunito', sans-serif;
  font-weight: 700;
  font-size: 1rem;
  cursor: pointer;
  transition: border-color 0.2s, background 0.2s;
  text-decoration: none;
  display: inline-block;
}

.btn-outline:hover { border-color: var(--bright); background: rgba(41,182,246,0.08); }

.hero-visual {
  display: flex;
  flex-direction: column;
  gap: 12px;
  animation: floatUp 0.7s ease both;
}

@keyframes floatUp {
  from { opacity: 0; transform: translateY(22px); }
  to   { opacity: 1; transform: translateY(0); }
}

.trust-pill {
  background: rgba(255,255,255,0.07);
  border: 1px solid rgba(41,182,246,0.25);
  border-radius: 50px;
  padding: 10px 18px;
  color: rgba(255,255,255,0.88);
  font-size: 0.9rem;
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 10px;
}

.trust-pill .icon { font-size: 1.1rem; }

.stats-row { display: flex; gap: 12px; margin-top: 8px; }

.stat-card {
  flex: 1;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(41,182,246,0.2);
  border-radius: var(--radius);
  padding: 16px 14px;
  text-align: center;
}

.stat-card .num {
  font-family: 'DM Serif Display', serif;
  font-size: 1.8rem;
  color: var(--bright);
}

.stat-card .label {
  font-size: 0.8rem;
  color: rgba(255,255,255,0.65);
  margin-top: 2px;
}

section { padding: 80px 5%; }

.section-label {
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--sea);
  margin-bottom: 10px;
}

.section-title {
  font-family: 'DM Serif Display', serif;
  font-size: clamp(1.8rem, 3vw, 2.5rem);
  color: var(--navy);
  margin-bottom: 14px;
}

.section-sub {
  color: var(--muted);
  font-size: 1rem;
  line-height: 1.65;
  max-width: 560px;
}

#services { background: var(--sand); }

.services-header { text-align: center; margin-bottom: 52px; }
.services-header .section-sub { margin: 0 auto; }

.services-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
}

.service-group {
  background: var(--white);
  border-radius: 20px;
  border: 1.5px solid #dde8f5;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

.service-group-header {
  padding: 22px 28px 18px;
  border-bottom: 1.5px solid #dde8f5;
  display: flex;
  align-items: center;
  gap: 14px;
}

.group-icon {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  flex-shrink: 0;
}

.group-icon.home { background: #dbeeff; }
.group-icon.biz  { background: #d4f4ec; }

.service-group-header h3 {
  font-family: 'DM Serif Display', serif;
  font-size: 1.3rem;
  color: var(--navy);
}

.service-group-header p { font-size: 0.85rem; color: var(--muted); margin-top: 2px; }

.service-list { padding: 10px 0 6px; flex: 1; display: flex; flex-direction: column; }

.service-item {
  display: flex;
  gap: 14px;
  align-items: flex-start;
  padding: 16px 28px;
  border-bottom: 1px solid #f0f5fb;
  transition: background 0.15s;
}

.service-item:last-child { border-bottom: none; padding-bottom: 22px; margin-top: auto; }
.service-item:hover { background: #f8fbff; }

.si-icon {
  width: 36px;
  height: 36px;
  border-radius: 9px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  flex-shrink: 0;
  margin-top: 1px;
}

.si-icon.blue   { background: #dbeeff; }
.si-icon.teal   { background: #d4f4ec; }
.si-icon.coral  { background: #fde8e2; }
.si-icon.amber  { background: #fef3da; }
.si-icon.purple { background: #ede9fe; }
.si-icon.green  { background: #dcfce7; }
.si-icon.indigo { background: #e0e7ff; }

.service-item h4 { font-size: 0.95rem; font-weight: 700; color: var(--navy); margin-bottom: 3px; }
.service-item p  { font-size: 0.85rem; color: var(--muted); line-height: 1.55; }

.btn-msp {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  margin-top: 7px;
  background: var(--sea);
  color: var(--white);
  border: none;
  padding: 5px 14px;
  border-radius: 20px;
  font-family: 'Nunito', sans-serif;
  font-weight: 700;
  font-size: 0.78rem;
  cursor: pointer;
  transition: opacity 0.2s;
}

.btn-msp:hover { opacity: 0.85; }

.advice-banner {
  margin: 40px 0 0;
  background: linear-gradient(135deg, var(--navy) 0%, #1255a0 100%);
  border-radius: 16px;
  padding: 28px 32px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
}

.advice-banner-text h4 {
  font-family: 'DM Serif Display', serif;
  font-size: 1.25rem;
  color: var(--white);
  margin-bottom: 6px;
}

.advice-banner-text p { font-size: 0.9rem; color: rgba(255,255,255,0.72); }
.advice-banner-text p strong { color: var(--bright); }

.whatsapp-btn {
  background: #25d366;
  color: var(--white);
  border: none;
  padding: 12px 24px;
  border-radius: 50px;
  font-family: 'Nunito', sans-serif;
  font-weight: 700;
  font-size: 0.95rem;
  cursor: pointer;
  white-space: nowrap;
  display: flex;
  align-items: center;
  gap: 8px;
  transition: opacity 0.2s;
}

.whatsapp-btn:hover { opacity: 0.88; }

#about { background: var(--white); }

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 70px;
  align-items: center;
}

.about-points { display: flex; flex-direction: column; gap: 20px; margin-top: 28px; }

.about-point { display: flex; gap: 14px; }

.point-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--sea);
  flex-shrink: 0;
  margin-top: 7px;
}

.about-point strong { display: block; font-weight: 700; color: var(--navy); margin-bottom: 3px; }
.about-point span   { font-size: 0.92rem; color: var(--muted); line-height: 1.6; }

.uk-map-panel {
  background: linear-gradient(145deg, #e3f2fd 0%, #bbdefb 60%, #cfe8f8 100%);
  border-radius: 24px;
  padding: 32px;
  border: 1.5px solid #90caf9;
  text-align: center;
  overflow: hidden;
}

.uk-badge.south-coast {
  background: #0d2b55;
  color: #29b6f6;
  border-color: #1565c0;
  font-weight: 800;
}

.av-title {
  font-family: 'DM Serif Display', serif;
  font-size: 1.35rem;
  color: var(--navy);
  margin-bottom: 4px;
}

.av-sub { font-size: 0.88rem; color: var(--muted); margin-bottom: 20px; }

.uk-svg-wrap {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-bottom: 16px;
  border-radius: 12px;
  overflow: hidden;
  background: linear-gradient(145deg, #e3f2fd 0%, #bbdefb 60%, #cfe8f8 100%);
}

/*
  The map SVG is injected into the inner div (#northeurope-map).
  Previously that div was forced to width:100%, so the SVG (max-width:420px)
  sat in the top-left of a wide container as the page expanded.
  Constrain the inner div and center the SVG so it stays aligned with the background.
*/
.uk-svg-wrap > div {
  width: min(100%, 420px);
  aspect-ratio: 400 / 540;
  background: transparent;
  border-radius: 12px;
  overflow: hidden;
  display: flex;
}

.uk-svg-wrap > div svg {
  width: 100%;
  height: 100%;
  display: block;
  background: transparent;
}

.uk-map-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  justify-content: center;
  margin-top: 12px;
}

.uk-badge {
  background: var(--white);
  border: 1px solid #90caf9;
  border-radius: 20px;
  padding: 5px 12px;
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--navy);
}

.coverage-badge {
  margin-top: 16px;
  background: var(--navy);
  color: var(--white);
  border-radius: 50px;
  padding: 10px 18px;
  font-size: 0.85rem;
  font-weight: 700;
  display: inline-block;
}

#contact { background: var(--navy); }

.contact-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 70px;
  align-items: start;
}

.contact-text .section-title { color: var(--white); }
.contact-text .section-label { color: var(--bright); }

.contact-text p { color: rgba(255,255,255,0.7); line-height: 1.7; margin-bottom: 28px; }

.contact-methods { display: flex; flex-direction: column; gap: 14px; }

.contact-method { display: flex; align-items: center; gap: 14px; }

.cm-icon {
  width: 40px;
  height: 40px;
  border-radius: 10px;
  background: rgba(41,182,246,0.12);
  border: 1px solid rgba(41,182,246,0.25);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  flex-shrink: 0;
}

.cm-text strong { display: block; color: var(--white); font-size: 0.9rem; margin-bottom: 1px; }
.cm-text span   { color: rgba(255,255,255,0.6); font-size: 0.88rem; }
.cm-text a      { color: var(--bright); text-decoration: none; font-size: 0.88rem; }
.cm-text a:hover { text-decoration: underline; }

.contact-form {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(41,182,246,0.18);
  border-radius: var(--radius);
  padding: 32px 28px;
}

.form-group { margin-bottom: 16px; }

.form-group label {
  display: block;
  font-size: 0.83rem;
  font-weight: 700;
  color: rgba(255,255,255,0.65);
  margin-bottom: 7px;
  letter-spacing: 0.5px;
  text-transform: uppercase;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.18);
  border-radius: 8px;
  padding: 10px 14px;
  color: var(--white);
  font-family: 'Nunito', sans-serif;
  font-size: 0.95rem;
  outline: none;
  transition: border-color 0.2s;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus { border-color: var(--bright); }

.form-group input::placeholder,
.form-group textarea::placeholder { color: rgba(255,255,255,0.3); }

.form-group select option { background: var(--navy); color: var(--white); }

.form-group textarea { resize: vertical; min-height: 90px; }

.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }

.form-submit {
  background: linear-gradient(135deg, #29b6f6 0%, #1565c0 100%);
  color: var(--white);
  border: none;
  width: 100%;
  padding: 13px;
  border-radius: 8px;
  font-family: 'Nunito', sans-serif;
  font-weight: 700;
  font-size: 1rem;
  cursor: pointer;
  margin-top: 4px;
  transition: opacity 0.2s;
}

.form-submit:hover { opacity: 0.88; }

footer {
  background: #060f1e;
  padding: 28px 5%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
}

.footer-logo { font-family: 'DM Serif Display', serif; font-size: 1.1rem; color: var(--white); }
.footer-logo span { color: var(--bright); }
footer p { font-size: 0.82rem; color: rgba(255,255,255,0.4); }

@media (max-width: 780px) {
  .hero { grid-template-columns: 1fr; gap: 40px; padding: 60px 5% 50px; }
  .about-grid, .contact-inner, .services-split { grid-template-columns: 1fr; gap: 24px; }
  .nav-links { display: none; }
  .stats-row { flex-wrap: wrap; }
  .pricing-grid { grid-template-columns: 1fr; }
}

/* ─── LIVE HELP NAV BUTTON ────────────────────── */

.nav-live-btn {
  background: linear-gradient(135deg, #29b6f6 0%, #1565c0 100%);
  color: var(--white);
  border: none;
  padding: 9px 20px;
  border-radius: 50px;
  font-family: 'Nunito', sans-serif;
  font-weight: 800;
  font-size: 0.88rem;
  cursor: pointer;
  transition: opacity 0.2s, transform 0.15s;
  white-space: nowrap;
}

.nav-live-btn:hover {
  opacity: 0.9;
  transform: translateY(-1px);
}

/* ─── CHAT PAGE ───────────────────────────────── */

.chat-page {
  min-height: 100vh;
  background: var(--navy);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 40px 20px;
}

.chat-card {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(41,182,246,0.25);
  border-radius: 20px;
  width: 100%;
  max-width: 520px;
  padding: 40px 36px;
  text-align: center;
}

.chat-logo {
  font-family: 'DM Serif Display', serif;
  font-size: 1.6rem;
  color: var(--white);
  margin-bottom: 8px;
}

.chat-logo span { color: var(--bright); }

.chat-card h2 {
  font-family: 'DM Serif Display', serif;
  font-size: 1.5rem;
  color: var(--white);
  margin-bottom: 10px;
}

.chat-card .chat-sub {
  color: rgba(255,255,255,0.6);
  font-size: 0.92rem;
  line-height: 1.6;
  margin-bottom: 28px;
}

.chat-features {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 28px;
  text-align: left;
}

.chat-feature {
  display: flex;
  align-items: center;
  gap: 12px;
  background: rgba(41,182,246,0.07);
  border: 1px solid rgba(41,182,246,0.15);
  border-radius: 10px;
  padding: 10px 14px;
  font-size: 0.9rem;
  color: rgba(255,255,255,0.8);
}

.chat-feature .cf-icon { font-size: 1.1rem; }

.btn-pay {
  background: var(--coral);
  color: var(--white);
  border: none;
  width: 100%;
  padding: 15px;
  border-radius: 10px;
  font-family: 'Nunito', sans-serif;
  font-weight: 800;
  font-size: 1.05rem;
  cursor: pointer;
  transition: opacity 0.2s, transform 0.15s;
  margin-bottom: 12px;
}

.btn-pay:hover { opacity: 0.9; transform: translateY(-1px); }
.btn-pay:disabled { opacity: 0.5; cursor: not-allowed; transform: none; }

.chat-secure-note {
  font-size: 0.8rem;
  color: rgba(255,255,255,0.35);
}

/* ─── ACTIVE CHAT ─────────────────────────────── */

.chat-active { display: none; }

.chat-timer-bar {
  background: rgba(41,182,246,0.12);
  border: 1px solid rgba(41,182,246,0.25);
  border-radius: 10px;
  padding: 10px 16px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 16px;
  font-size: 0.88rem;
}

.chat-timer-bar .timer-label { color: rgba(255,255,255,0.55); }

.chat-timer-bar .timer-val {
  font-family: 'DM Serif Display', serif;
  font-size: 1.2rem;
  color: var(--bright);
  font-weight: 700;
}

.chat-timer-bar .timer-val.urgent { color: var(--coral); }

.chat-messages {
  background: rgba(0,0,0,0.25);
  border: 1px solid rgba(41,182,246,0.12);
  border-radius: 10px;
  padding: 16px;
  height: 320px;
  overflow-y: auto;
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 14px;
  text-align: left;
}

.chat-msg {
  max-width: 82%;
  padding: 10px 14px;
  border-radius: 12px;
  font-size: 0.88rem;
  line-height: 1.5;
}

.chat-msg.them {
  background: rgba(41,182,246,0.12);
  border: 1px solid rgba(41,182,246,0.2);
  color: rgba(255,255,255,0.88);
  align-self: flex-start;
  border-bottom-left-radius: 4px;
}

.chat-msg.me {
  background: #1565c0;
  color: #fff;
  align-self: flex-end;
  border-bottom-right-radius: 4px;
}

.chat-msg .msg-sender {
  font-size: 0.72rem;
  font-weight: 700;
  margin-bottom: 3px;
  opacity: 0.65;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.chat-input-row {
  display: flex;
  gap: 8px;
}

.chat-input-row input {
  flex: 1;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.18);
  border-radius: 8px;
  padding: 10px 14px;
  color: var(--white);
  font-family: 'Nunito', sans-serif;
  font-size: 0.95rem;
  outline: none;
  transition: border-color 0.2s;
}

.chat-input-row input:focus { border-color: var(--bright); }
.chat-input-row input::placeholder { color: rgba(255,255,255,0.3); }
.chat-input-row input:disabled { opacity: 0.4; }

.chat-input-row button {
  background: var(--bright);
  color: var(--navy);
  border: none;
  padding: 10px 18px;
  border-radius: 8px;
  font-family: 'Nunito', sans-serif;
  font-weight: 800;
  font-size: 0.9rem;
  cursor: pointer;
  transition: opacity 0.2s;
}

.chat-input-row button:hover { opacity: 0.88; }
.chat-input-row button:disabled { opacity: 0.4; cursor: not-allowed; }

.chat-expired {
  text-align: center;
  padding: 20px;
  color: rgba(255,255,255,0.55);
  font-size: 0.9rem;
}

.chat-expired strong { display: block; color: var(--white); font-size: 1rem; margin-bottom: 6px; }

/* ─── PRICING MODAL ───────────────────────────── */

.pricing-modal {
  max-width: 880px;
}

.pricing-cols {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin-bottom: 4px;
}

.pricing-col-panel {
  display: flex;
  flex-direction: column;
}

.pricing-section-label {
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--bright);
  margin-bottom: 14px;
}

.pricing-options-grid {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 8px;
  flex: 1;
}

.pricing-option {
  display: flex;
  gap: 14px;
  align-items: flex-start;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(41,182,246,0.14);
  border-radius: 12px;
  padding: 14px 16px;
  transition: background 0.15s;
}

.pricing-option:hover {
  background: rgba(41,182,246,0.07);
}

.po-icon {
  font-size: 1.3rem;
  flex-shrink: 0;
  margin-top: 1px;
  width: 28px;
  text-align: center;
}

.po-body {
  display: flex;
  flex-direction: column;
  gap: 3px;
}

.po-body strong {
  color: var(--white);
  font-size: 0.93rem;
  font-weight: 700;
}

.po-body > span {
  color: rgba(255,255,255,0.55);
  font-size: 0.84rem;
  line-height: 1.5;
}

.po-action {
  display: inline-block;
  margin-top: 6px;
  font-size: 0.84rem;
  font-weight: 700;
  color: var(--bright);
  text-decoration: none;
  transition: opacity 0.2s;
}

.po-action:hover { opacity: 0.8; }

.po-rate {
  display: inline-block;
  margin-top: 6px;
  font-family: 'DM Serif Display', serif;
  font-size: 1.5rem;
  color: var(--white);
  line-height: 1;
}

.po-rate span {
  font-family: 'Nunito', sans-serif;
  font-size: 0.78rem;
  color: rgba(255,255,255,0.4);
  font-weight: 600;
  margin-left: 4px;
}

.pricing-divider {
  border: none;
  border-top: 1px solid rgba(255,255,255,0.07);
  margin: 20px 0 18px;
}

.pricing-msp-box {
  display: flex;
  gap: 14px;
  align-items: flex-start;
  background: linear-gradient(135deg, rgba(21,101,192,0.18) 0%, rgba(41,182,246,0.08) 100%);
  border: 1.5px solid rgba(41,182,246,0.3);
  border-radius: 12px;
  padding: 16px 18px;
  margin-top: 20px;
  margin-bottom: 4px;
}

.pmsp-icon {
  font-size: 1.4rem;
  flex-shrink: 0;
  margin-top: 2px;
}

.pmsp-body {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.pmsp-body strong {
  color: var(--white);
  font-size: 0.93rem;
  font-weight: 700;
}

.pmsp-body > span {
  color: rgba(255,255,255,0.55);
  font-size: 0.84rem;
  line-height: 1.5;
}

@media (max-width: 780px) {
  .pricing-modal { padding: 28px 20px; }
  .pricing-cols { grid-template-columns: 1fr; }
}

/* ─── TICKET CTA BAR (inside pricing modal) ───────────────── */

.ticket-cta-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  background: linear-gradient(135deg, rgba(41,182,246,0.1) 0%, rgba(21,101,192,0.15) 100%);
  border: 1.5px solid rgba(41,182,246,0.35);
  border-radius: 14px;
  padding: 16px 20px;
  margin-top: 18px;
  margin-bottom: 22px;
  flex-wrap: wrap;
}

.ticket-cta-text {
  display: flex;
  align-items: center;
  gap: 14px;
}

.ticket-cta-icon { font-size: 1.5rem; flex-shrink: 0; }

.ticket-cta-text strong {
  display: block;
  color: var(--white);
  font-size: 0.93rem;
  font-weight: 700;
}

.ticket-cta-text span {
  color: rgba(255,255,255,0.55);
  font-size: 0.84rem;
}

.ticket-cta-btn {
  background: var(--red);
  color: var(--white);
  border: none;
  padding: 10px 22px;
  border-radius: 50px;
  font-family: 'Nunito', sans-serif;
  font-weight: 800;
  font-size: 0.88rem;
  cursor: pointer;
  transition: opacity 0.2s, transform 0.15s;
  white-space: nowrap;
  flex-shrink: 0;
}

.ticket-cta-btn:hover { opacity: 0.88; transform: translateY(-1px); }

/* ─── TICKET MODAL ────────────────────────────────────────── */

.ticket-modal { max-width: 560px; }

.ticket-modal-header { margin-bottom: 24px; }

.ticket-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(41,182,246,0.12);
  border: 1px solid rgba(41,182,246,0.3);
  border-radius: 50px;
  padding: 5px 14px;
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--bright);
  margin-bottom: 12px;
}

.ticket-fields {
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin-bottom: 20px;
}

.ticket-field-group {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.ticket-field-group label {
  font-size: 0.82rem;
  font-weight: 700;
  color: rgba(255,255,255,0.7);
  letter-spacing: 0.3px;
}

.ticket-field-group input,
.ticket-field-group textarea {
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(41,182,246,0.2);
  border-radius: 10px;
  padding: 11px 14px;
  color: var(--white);
  font-family: 'Nunito', sans-serif;
  font-size: 0.93rem;
  outline: none;
  transition: border-color 0.2s, background 0.2s;
  width: 100%;
}

.ticket-field-group input:focus,
.ticket-field-group textarea:focus {
  border-color: var(--bright);
  background: rgba(41,182,246,0.07);
}

.ticket-field-group input::placeholder,
.ticket-field-group textarea::placeholder { color: rgba(255,255,255,0.28); }

.ticket-field-group textarea {
  min-height: 100px;
  resize: vertical;
}

.ticket-submit-btn {
  width: 100%;
  background: linear-gradient(135deg, #29b6f6 0%, #1565c0 100%);
  color: var(--white);
  border: none;
  padding: 14px;
  border-radius: 12px;
  font-family: 'Nunito', sans-serif;
  font-weight: 800;
  font-size: 1rem;
  cursor: pointer;
  transition: opacity 0.2s, transform 0.15s;
  margin-bottom: 10px;
}

.ticket-submit-btn:hover { opacity: 0.9; transform: translateY(-1px); }
.ticket-submit-btn:disabled { opacity: 0.5; cursor: not-allowed; transform: none; }

.ticket-reassurance {
  text-align: center;
  font-size: 0.8rem;
  color: rgba(255,255,255,0.35);
}

/* ─── TICKET SUCCESS ──────────────────────────────────────── */

.ticket-success {
  text-align: center;
  padding: 12px 0 8px;
}

.ticket-success-icon {
  font-size: 2.8rem;
  margin-bottom: 14px;
  animation: popIn 0.35s cubic-bezier(0.34,1.56,0.64,1) both;
}

@keyframes popIn {
  from { transform: scale(0.5); opacity: 0; }
  to   { transform: scale(1);   opacity: 1; }
}

.ticket-ref-box {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  background: rgba(41,182,246,0.08);
  border: 1.5px solid rgba(41,182,246,0.35);
  border-radius: 14px;
  padding: 18px 24px;
  margin: 24px auto 16px;
  max-width: 320px;
}

.ticket-ref-label {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: rgba(255,255,255,0.45);
}

.ticket-ref-num {
  font-family: 'DM Serif Display', serif;
  font-size: 1.7rem;
  color: var(--bright);
  letter-spacing: 1px;
}

.ticket-success-note {
  font-size: 0.84rem;
  color: rgba(255,255,255,0.45);
  line-height: 1.6;
  max-width: 340px;
  margin: 0 auto 24px;
}

.ticket-done-btn {
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.2);
  color: var(--white);
  padding: 11px 32px;
  border-radius: 50px;
  font-family: 'Nunito', sans-serif;
  font-weight: 700;
  font-size: 0.93rem;
  cursor: pointer;
  transition: background 0.2s;
}

.ticket-done-btn:hover { background: rgba(255,255,255,0.14); }

/* ─── TICKET CTA BAR LAYOUT FIX ──────────────────────────── */

.ticket-cta-bar {
  flex-wrap: nowrap !important;
  align-items: center !important;
}

.ticket-cta-text {
  flex: 1;
  min-width: 0;
}

.ticket-cta-text span {
  display: block;
  white-space: normal;
}

/* ─── FILE ATTACHMENT FIELD ───────────────────────────────── */

.ticket-label-optional {
  font-weight: 400;
  color: rgba(255,255,255,0.3);
  font-size: 0.78rem;
  margin-left: 6px;
}

.ticket-file-label {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 4px;
  background: rgba(255,255,255,0.04);
  border: 1.5px dashed rgba(41,182,246,0.3);
  border-radius: 10px;
  padding: 18px 16px;
  cursor: pointer;
  transition: background 0.2s, border-color 0.2s;
  text-align: center;
}

.ticket-file-label:hover {
  background: rgba(41,182,246,0.07);
  border-color: rgba(41,182,246,0.6);
}

.ticket-file-label.tfl-has-file {
  background: rgba(41,182,246,0.09);
  border-color: rgba(41,182,246,0.55);
  border-style: solid;
}

.tfl-icon { font-size: 1.4rem; margin-bottom: 2px; }

.tfl-text {
  font-size: 0.88rem;
  font-weight: 700;
  color: var(--bright);
}

.tfl-hint {
  font-size: 0.75rem;
  color: rgba(255,255,255,0.28);
}

/* ─── MOBILE NAV FIX ──────────────────────────────────────── */

@media (max-width: 600px) {
  nav {
    padding: 0 4%;
    gap: 10px;
    flex-wrap: nowrap;
  }

  .nav-right {
    display: flex;
    align-items: center;
    gap: 8px;
    flex-shrink: 0;
  }

  .nav-live-btn {
    font-size: 0.78rem;
    padding: 7px 12px;
    white-space: nowrap;
  }

  .nav-cta {
    font-size: 0.78rem;
    padding: 7px 12px;
    white-space: nowrap;
  }

  .nav-logo {
    font-size: 1.15rem;
    flex-shrink: 0;
  }
}

/* ─── STREAMING SERVICE CARD ──────────────────────────────── */

.si-streaming {
  background: linear-gradient(135deg, rgba(145,70,255,0.08) 0%, rgba(41,182,246,0.06) 100%);
  border: 1.5px solid rgba(145,70,255,0.25);
  position: relative;
  overflow: hidden;
}

.si-icon.streaming {
  background: linear-gradient(135deg, rgba(145,70,255,0.2), rgba(100,65,165,0.25));
  font-size: 1.2rem;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  border-radius: 12px;
  flex-shrink: 0;
}

.streaming-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-top: 10px;
}

.streaming-tags span {
  background: rgba(145,70,255,0.12);
  border: 1px solid rgba(145,70,255,0.3);
  color: #c084fc;
  font-size: 0.72rem;
  font-weight: 700;
  padding: 3px 10px;
  border-radius: 50px;
  letter-spacing: 0.3px;
}

/* ─── ETHICAL RECYCLING CARD ──────────────────────────────── */

.si-recycling {
  background: linear-gradient(135deg, rgba(34,197,94,0.07) 0%, rgba(16,185,129,0.05) 100%);
  border: 1.5px solid rgba(34,197,94,0.28);
  position: relative;
  overflow: hidden;
}

.si-recycling::after {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at top left, rgba(34,197,94,0.06) 0%, transparent 65%);
  pointer-events: none;
}

.si-icon.recycling {
  background: linear-gradient(135deg, rgba(34,197,94,0.2), rgba(16,185,129,0.25));
  font-size: 1.2rem;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  border-radius: 12px;
  flex-shrink: 0;
}

.si-recycling h4 {
  color: #4ade80 !important;
}

.recycling-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-top: 10px;
}

.recycling-tags span {
  background: rgba(34,197,94,0.1);
  border: 1px solid rgba(34,197,94,0.3);
  color: #86efac;
  font-size: 0.72rem;
  font-weight: 700;
  padding: 3px 10px;
  border-radius: 50px;
  letter-spacing: 0.3px;
}

/* ─── CHARITY PARTNER BUTTON ──────────────────────────────── */

.btn-charity {
  display: inline-block;
  margin-top: 10px;
  background: rgba(34,197,94,0.12);
  border: 1.5px solid rgba(34,197,94,0.35);
  color: #4ade80;
  font-family: 'Nunito', sans-serif;
  font-size: 0.82rem;
  font-weight: 800;
  padding: 6px 16px;
  border-radius: 50px;
  text-decoration: none;
  transition: background 0.2s, border-color 0.2s;
}

.btn-charity:hover {
  background: rgba(34,197,94,0.22);
  border-color: rgba(34,197,94,0.6);
}
