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

:root {
  /* Color */
  --navy-950: #060b17;
  --navy-900: #0a1930;
  --navy-800: #0b1f3d;
  --blue-600: #009688;
  --blue-500: #26a69a;
  --blue-300: #8fb4ff;
  --amber-400: #f2b544;
  --amber-300: #f7cd7e;
  --red-500: #e0394a;
  --ink-900: #0b1220;
  --ink-600: #4b5567;
  --ink-400: #7b8499;
  --slate-50: #f6f8fc;
  --slate-100: #eef2f9;
  --slate-200: #e1e7f0;
  --white: #ffffff;

  /* Shape */
  --radius-lg: 22px;
  --radius-md: 14px;
  --radius-sm: 8px;
  --shadow-soft: 0 24px 48px -28px rgba(11, 20, 48, 0.35);
  --shadow-card: 0 1px 0 rgba(11, 20, 48, 0.04), 0 12px 24px -16px rgba(11, 20, 48, 0.12);

  /* Type */
  --font-display: "Space Grotesk", "Segoe UI", system-ui, sans-serif;
  --font-body: "Inter", "Segoe UI", system-ui, sans-serif;

  --container: 1120px;
}

body {
  margin: 0;
  font-family: var(--font-body);
  color: var(--ink-900);
  background: var(--white);
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4 {
  font-family: 'Syne', sans-serif;
  line-height: 1.2;
  color: #111111;
}

a {
  color: inherit;
  text-decoration: none;
}

/* Emergency Strip */
.emergency-strip {
  background: var(--red-500, #e0394a);
  color: white;
  padding: 10px 15px;
  text-align: center;
  font-size: 14px;
  font-family: var(--font-body, "Inter", sans-serif);
  z-index: 1000;
  position: relative;
}

.emergency-strip strong {
  color: white;
  font-weight: 700;
}

/* Navbar */
nav:not(.primary) {
    position: sticky;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  padding: 0 2rem;
  height: 80px;
  display: flex;
  align-items: center;
  gap: 2rem;
  background: #ffffff;
  border-bottom: 1px solid var(--border);
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.logo {
  display: flex;
  align-items: center;
  flex-shrink: 0;
}

.logo img {
  height: 85px; /* Enlarged Logo */
  width: auto;
  filter: drop-shadow(0 0 15px rgba(0, 123, 255, 0.4));
  transition: all 0.3s ease;
}
.logo img:hover {
  filter: drop-shadow(0 0 25px rgba(0, 123, 255, 0.8));
  transform: scale(1.05);
}

.nav-links {
  display: flex;
  gap: 2rem;
  margin-left: auto;
  align-items: center;
}

.nav-links a {
  font-size: 15px;
  font-weight: 500;
  color: var(--navy-900);
  transition: all 0.3s ease;
  padding: 6px 0;
  margin: 0 12px;
  position: relative;
  text-decoration: none;
}
.nav-links a::after {
  content: '';
  position: absolute;
  width: 0;
  height: 2px;
  bottom: -2px;
  left: 0;
  background-color: var(--primary);
  transition: width 0.3s ease;
}

.nav-links a:hover, .nav-links a.active {
  color: var(--primary);
  background: transparent;
}
.nav-links a:hover::after, .nav-links a.active::after {
  width: 100%;
}

.nav-cta {
  padding: 10px 20px;
  background: var(--primary);
  color: #fff !important;
  border-radius: 8px;
  font-size: 14px;
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 6px;
  transition: background 0.2s;
}

.nav-cta:hover {
  background: var(--primary-light);
}

/* Buttons */
.btn-p {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 28px;
  background: var(--primary);
  color: #fff;
  border-radius: 10px;
  font-size: 15px;
  font-weight: 600;
  transition: all 0.2s;
}
.btn-p:hover { background: var(--primary-light); transform: translateY(-2px); }

.btn-o {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 13px 28px;
  border: 1px solid var(--border);
  background: var(--bg-card);
  color: var(--text-main);
  border-radius: 10px;
  font-size: 15px;
  font-weight: 600;
  transition: all 0.2s;
}
.btn-o:hover { border-color: var(--primary); color: var(--primary); }

/* Common layout */
.inner {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 2rem;
}

.pad {
  padding: 96px 0;
}

.stag {
  font-size: 12px;
  font-weight: 700;
  color: var(--primary);
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 12px;
}

.sh {
  font-size: clamp(26px, 4vw, 42px);
  font-weight: 700;
  letter-spacing: -1px;
  margin-bottom: 16px;
}

.ss {
  font-size: 16px;
  color: var(--text-muted);
  max-width: 560px;
  line-height: 1.7;
  margin-bottom: 44px;
}

/* Grid Components */
.steps { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.step { background: var(--bg-card); border: 1px solid var(--border); border-radius: 16px; padding: 28px; box-shadow: 0 4px 6px -1px rgba(0,0,0,0.02); }
.sn { width: 42px; height: 42px; border-radius: 11px; background: rgba(0,123,255,0.1); border: 1px solid rgba(0,123,255,0.2); display: flex; align-items: center; justify-content: center; font-family: 'Syne', sans-serif; font-weight: 700; color: var(--primary); font-size: 17px; margin-bottom: 18px; }
.step h3 { font-size: 17px; font-weight: 700; margin-bottom: 9px; }
.step p { font-size: 14px; color: var(--text-muted); line-height: 1.7; }

.timer { display: inline-flex; align-items: center; gap: 5px; margin-top: 12px; padding: 4px 10px; background: var(--success-bg); border: 1px solid rgba(16,185,129,0.3); border-radius: 20px; font-size: 12px; font-weight: 600; color: var(--success); }

.pg { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.pc { border: 1px solid var(--border); border-radius: 14px; padding: 26px; position: relative; background: var(--bg-card); }
.pc.feat { border-color: var(--primary); box-shadow: 0 10px 25px -5px rgba(0,123,255,0.1); }
.pc .pop { position: absolute; top: -1px; left: 50%; transform: translateX(-50%); padding: 6px 16px; background: var(--primary); color: #fff; border-radius: 0 0 9px 9px; font-size: 12px; font-weight: 600; }
.ptr { font-size: 12px; font-weight: 700; color: var(--text-muted); text-transform: uppercase; letter-spacing: 1px; margin-bottom: 7px; }
.ppr { font-family: 'Syne', sans-serif; font-size: 32px; font-weight: 700; color: var(--text-main); margin: 10px 0 4px; letter-spacing: -1px; }
.ppr span { font-size: 15px; font-weight: 500; color: var(--text-muted); }
.pds { font-size: 14px; color: var(--text-muted); margin-bottom: 20px; min-height: 42px; }
.pc ul { list-style: none; margin-bottom: 20px; }
.pc ul li { display: flex; align-items: flex-start; gap: 8px; padding: 8px 0; font-size: 14px; color: var(--text-muted); border-bottom: 1px solid var(--bg-soft); }
.pc ul li:last-child { border-bottom: none; }
.pc ul li i { color: var(--success); font-size: 16px; margin-top: 2px; flex-shrink: 0; }
.pb { display: block; width: 100%; padding: 12px; text-align: center; border-radius: 8px; font-size: 14px; font-weight: 600; cursor: pointer; border: none; transition: all 0.2s;}
.pb.pr { background: var(--primary); color: #fff; }
.pb.pr:hover { background: var(--primary-light); }
.pb.ou { background: transparent; color: var(--text-main); border: 1px solid var(--border); }
.pb.ou:hover { border-color: var(--primary); color: var(--primary); }

/* Footer */
footer {
  background: var(--bg-soft);
  border-top: 1px solid var(--border);
  padding: 40px 2rem 24px;
}

.fg2 {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 32px;
  max-width: 1100px;
  margin: 0 auto 32px;
}

.fb2 p {
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.6;
  max-width: 270px;
  margin-top: 12px;
}

.fcol h5 {
  font-size: 13px;
  font-weight: 700;
  color: var(--text-main);
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 12px;
}

.fcol ul {
  list-style: none;
}

.fcol ul li {
  margin-bottom: 8px;
}

.fcol ul li a {
  font-size: 14px;
  color: var(--text-muted);
  transition: color 0.2s;
}

.fcol ul li a:hover {
  color: var(--primary);
}

.fbot {
  border-top: 1px solid var(--border);
  padding-top: 24px;
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
  max-width: 1100px;
  margin: 0 auto;
  font-size: 13px;
  color: var(--text-muted);
}

.dpdp {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 4px 12px;
  border: 1px solid var(--border);
  border-radius: 12px;
  font-size: 12px;
  font-weight: 600;
  margin-left: auto;
  background: var(--bg-card);
}

.dpdp i {
  font-size: 14px;
  color: var(--success);
}

/* Contact Form Specifics */
.contact-container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
}

.contact-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 40px;
  box-shadow: 0 10px 30px -10px rgba(0,0,0,0.05);
}

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

.form-group label {
  display: block;
  font-size: 14px;
  font-weight: 600;
  margin-bottom: 8px;
  color: var(--text-main);
}

.form-control {
  width: 100%;
  padding: 14px 16px;
  border: 1px solid var(--border);
  border-radius: 8px;
  font-family: inherit;
  font-size: 15px;
  transition: all 0.2s;
  background: var(--bg-soft);
}

.form-control:focus {
  outline: none;
  border-color: var(--primary);
  background: #fff;
  box-shadow: 0 0 0 4px rgba(0,123,255,0.1);
}

textarea.form-control {
  resize: vertical;
  min-height: 120px;
}

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

@media(max-width: 768px) {
  .steps, .pg, .fg2, .contact-container { grid-template-columns: 1fr; }
  .nav-links { display: none; }
}
/* Tabs */
.tabs-container {
  margin-top: 48px;
}
.tab-list {
  display: flex;
  gap: 32px;
  border-bottom: 1px solid var(--border);
  margin-bottom: 32px;
}
.tab-btn {
  background: none;
  border: none;
  padding: 0 0 16px 0;
  font-size: 16px;
  font-weight: 600;
  color: var(--text-muted);
  cursor: pointer;
  position: relative;
  transition: color 0.2s;
}
.tab-btn:hover {
  color: var(--primary);
}
.tab-btn.active {
  color: var(--primary);
}
.tab-btn.active::after {
  content: '';
  position: absolute;
  bottom: -1px;
  left: 0;
  right: 0;
  height: 3px;
  background: var(--primary);
  border-radius: 3px 3px 0 0;
}
.tab-content {
  display: none;
  animation: fadeIn 0.3s ease;
}
.tab-content.active {
  display: block;
}
@keyframes fadeIn {
  from { opacity: 0; transform: translateY(10px); }
  to { opacity: 1; transform: translateY(0); }
}

.who-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
}
.who-left {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 32px;
  box-shadow: 0 4px 6px rgba(0,0,0,0.02);
}
.who-left h3 {
  font-size: 24px;
  font-weight: 700;
  margin-bottom: 24px;
  color: var(--text-main);
}
.who-quote {
  border-left: 3px solid var(--primary);
  padding-left: 16px;
  margin-bottom: 28px;
  font-style: italic;
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.7;
}
.who-list {
  list-style: none;
}
.who-list li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin-bottom: 16px;
  font-size: 14px;
  color: var(--text-main);
  line-height: 1.5;
}
.who-list li i {
  color: var(--primary);
  font-size: 18px;
  flex-shrink: 0;
}
.who-right {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.who-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 20px 24px;
  display: flex;
  align-items: flex-start;
  gap: 16px;
  transition: all 0.2s;
}
.who-card:hover {
  border-color: var(--primary);
  box-shadow: 0 4px 12px rgba(0,123,255,0.08);
}
.who-card-icon {
  width: 40px;
  height: 40px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  flex-shrink: 0;
}
.who-card h4 {
  font-size: 15px;
  font-weight: 700;
  margin-bottom: 6px;
  color: var(--text-main);
}
.who-card p {
  font-size: 13px;
  color: var(--text-muted);
  line-height: 1.5;
  margin: 0;
}
@media(max-width: 768px) {
  .who-grid { grid-template-columns: 1fr; }
  .tab-list { overflow-x: auto; white-space: nowrap; padding-bottom: 4px; }
}
/* Pricing */
.pricing-alert {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 16px 24px;
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 48px;
  font-size: 14px;
  color: var(--text-muted);
}
.pricing-alert i {
  font-size: 20px;
  color: var(--primary);
}
.pricing-alert strong {
  color: var(--text-main);
}
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.pricing-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 32px;
  position: relative;
  display: flex;
  flex-direction: column;
  transition: all 0.3s;
}
.pricing-card.popular {
  border-color: var(--primary);
  box-shadow: 0 10px 30px -10px rgba(0, 123, 255, 0.15);
}
.pricing-card .pop-badge {
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--primary);
  color: #fff;
  padding: 4px 12px;
  border-radius: 20px;
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
}
.p-tier {
  font-size: 11px;
  font-weight: 700;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 1.5px;
  margin-bottom: 16px;
}
.p-price {
  font-family: 'Syne', sans-serif;
  font-size: 36px;
  font-weight: 800;
  color: var(--text-main);
  margin-bottom: 12px;
  display: flex;
  align-items: baseline;
  gap: 4px;
}
.p-price span {
  font-family: 'DM Sans', sans-serif;
  font-size: 14px;
  font-weight: 500;
  color: var(--text-muted);
}
.p-desc {
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.6;
  margin-bottom: 32px;
  min-height: 44px;
}
.p-list {
  list-style: none;
  flex-grow: 1;
  margin-bottom: 32px;
}
.p-list li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 13px;
  color: var(--text-main);
  margin-bottom: 16px;
  line-height: 1.5;
  padding-bottom: 16px;
  border-bottom: 1px solid var(--bg-soft);
}
.p-list li:last-child {
  border-bottom: none;
  padding-bottom: 0;
  margin-bottom: 0;
}
.p-list li i {
  color: var(--success);
  font-size: 16px;
  margin-top: 1px;
}
.pricing-card .btn-p, .pricing-card .btn-o {
  width: 100%;
  justify-content: center;
}
@media(max-width: 900px) {
  .pricing-grid { grid-template-columns: repeat(2, 1fr); }
}
@media(max-width: 600px) {
  .pricing-grid { grid-template-columns: 1fr; }
}
/* FAQ Styles */
.faq-container {
  max-width: 800px;
  margin: 0 auto;
}
.faq-item {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 12px;
  margin-bottom: 16px;
  overflow: hidden;
  transition: all 0.3s ease;
}
.faq-item:hover {
  border-color: var(--primary);
}
.faq-q {
  padding: 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  font-weight: 700;
  font-size: 16px;
  color: var(--text-main);
  user-select: none;
}
.faq-q i {
  color: var(--primary);
  transition: transform 0.3s ease;
}
.faq-a {
  padding: 0 24px;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease, padding 0.3s ease;
  color: var(--text-muted);
  font-size: 15px;
  line-height: 1.8;
}
.faq-item.active .faq-a, .faq-item.open .faq-a {
  padding: 0 24px 24px 24px;
  max-height: 500px;
}
.faq-item.active .faq-q i, .faq-item.open .faq-q i {
  transform: rotate(180deg);
}

/* Floating Chatbot Widget styles */
#kavachbot-bubble {
  position: fixed;
  bottom: 24px;
  right: 24px;
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg, #1B5E20 0%, #2E7D32 100%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 9999;
  font-size: 28px;
  box-shadow: 0 4px 20px rgba(0,0,0,0.3);
  transition: all 0.3s ease;
  animation: bounceBubble 3s infinite;
}

#kavachbot-bubble:hover {
  transform: scale(1.1);
  box-shadow: 0 6px 24px rgba(46,125,50,0.4);
}

@keyframes bounceBubble {
  0%, 20%, 50%, 80%, 100% { transform: translateY(0); }
  40% { transform: translateY(-8px); }
  60% { transform: translateY(-4px); }
}

#kavachbot-frame {
  position: fixed;
  bottom: 96px;
  right: 24px;
  width: 380px;
  height: 550px;
  background: #0f172a;
  border: 1px solid #1e293b;
  border-radius: 16px;
  z-index: 9998;
  display: none;
  flex-direction: column;
  overflow: hidden;
  box-shadow: 0 12px 40px rgba(0,0,0,0.5);
  font-family: 'DM Sans', sans-serif;
  color: #f8fafc;
  transition: all 0.2s ease-in-out;
}

.chat-header {
  background: linear-gradient(135deg, #1B5E20 0%, #2E7D32 100%);
  padding: 16px 20px;
  display: flex;
  align-items: center;
  gap: 12px;
  border-bottom: 1px solid rgba(255,255,255,0.1);
}

.chat-avatar {
  width: 40px;
  height: 40px;
  background: rgba(255,255,255,0.15);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
}

.chat-info {
  flex-grow: 1;
}

.chat-info strong {
  display: block;
  font-size: 15px;
  color: #fff;
  font-family: 'Syne', sans-serif;
}

.chat-info span {
  font-size: 12px;
  color: rgba(255,255,255,0.7);
  display: flex;
  align-items: center;
  gap: 4px;
}

.online-dot {
  width: 8px;
  height: 8px;
  background: #10B981;
  border-radius: 50%;
  display: inline-block;
}

.chat-messages {
  flex-grow: 1;
  overflow-y: auto;
  padding: 16px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  scroll-behavior: smooth;
  background: #0f172a;
}

.chat-messages::-webkit-scrollbar {
  width: 6px;
}
.chat-messages::-webkit-scrollbar-track {
  background: transparent;
}
.chat-messages::-webkit-scrollbar-thumb {
  background: #1e293b;
  border-radius: 3px;
}

.msg {
  max-width: 85%;
  padding: 12px 16px;
  border-radius: 12px;
  font-size: 13.5px;
  line-height: 1.5;
  animation: fadeInMsg 0.3s ease;
  white-space: pre-line;
}

@keyframes fadeInMsg {
  from { opacity: 0; transform: translateY(6px); }
  to { opacity: 1; transform: none; }
}

.msg.bot {
  background: #1e293b;
  border: 1px solid #334155;
  border-bottom-left-radius: 3px;
  align-self: flex-start;
  color: #f1f5f9;
}

.msg.user {
  background: #2E7D32;
  border-bottom-right-radius: 3px;
  align-self: flex-end;
  color: #fff;
}

.msg.typing {
  display: flex;
  align-items: center;
  gap: 5px;
  padding: 12px 16px;
}

.dot-bounce {
  width: 6px;
  height: 6px;
  background: #94a3b8;
  border-radius: 50%;
  animation: bounce 1.2s infinite;
}
.dot-bounce:nth-child(2) { animation-delay: 0.2s; }
.dot-bounce:nth-child(3) { animation-delay: 0.4s; }

@keyframes bounce {
  0%, 60%, 100% { transform: translateY(0); }
  30% { transform: translateY(-5px); }
}

.quick-replies {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  padding: 12px 16px;
  background: #0f172a;
}

.qr-btn {
  background: none;
  border: 1px solid #43A047;
  color: #43A047;
  border-radius: 20px;
  padding: 6px 14px;
  font-size: 12px;
  cursor: pointer;
  font-family: inherit;
  transition: all 0.15s;
}

.qr-btn:hover {
  background: #43A047;
  color: #fff;
}

.chat-input-row {
  border-top: 1px solid #1e293b;
  padding: 12px 16px;
  display: flex;
  gap: 10px;
  align-items: center;
  background: #0f172a;
}

.chat-input {
  flex: 1;
  background: #1e293b;
  border: 1px solid #334155;
  border-radius: 8px;
  padding: 10px 14px;
  color: #fff;
  font-size: 13.5px;
  outline: none;
  transition: border-color 0.2s;
}

.chat-input:focus {
  border-color: #43A047;
}

.chat-input::placeholder {
  color: #64748b;
}

.send-btn {
  background: #2E7D32;
  border: none;
  border-radius: 8px;
  width: 38px;
  height: 38px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.15s;
  color: #fff;
  font-size: 16px;
}

.send-btn:hover {
  background: #43A047;
}

.powered-tag {
  text-align: center;
  padding: 8px;
  font-size: 11px;
  color: #64748b;
  border-top: 1px solid #1e293b;
  background: #0f172a;
}

.powered-tag span {
  color: #FF6B00;
  font-weight: 600;
}

.close-chat-btn {
  background: none;
  border: none;
  color: rgba(255,255,255,0.7);
  font-size: 20px;
  cursor: pointer;
  padding: 4px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.close-chat-btn:hover {
  color: #fff;
}

/* DPDP Consent Box in Chat */
.consent-box {
  background: #1e293b;
  border: 1px solid #334155;
  border-radius: 8px;
  padding: 14px;
  margin-bottom: 8px;
  font-size: 12px;
  color: #cbd5e1;
}

.consent-box p {
  margin-bottom: 12px;
  line-height: 1.5;
}

.consent-actions {
  display: flex;
  gap: 8px;
}

.consent-btn {
  padding: 6px 12px;
  border-radius: 6px;
  font-size: 11px;
  font-weight: 600;
  cursor: pointer;
  border: none;
  transition: background 0.15s;
}

.consent-btn.accept {
  background: #2E7D32;
  color: #fff;
}
.consent-btn.accept:hover {
  background: #43A047;
}

.consent-btn.decline {
  background: #475569;
  color: #cbd5e1;
}
.consent-btn.decline:hover {
  background: #64748b;
}

/* Coming Soon Link badges */
.coming-soon-badge {
  font-size: 10px;
  background: rgba(0, 123, 255, 0.1);
  color: var(--primary);
  border: 1px solid rgba(0, 123, 255, 0.2);
  padding: 2px 6px;
  border-radius: 4px;
  margin-left: 4px;
}

/* Success Stories Homepage styles */
.stories-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
  margin-top: 24px;
}
.story-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 32px;
  box-shadow: 0 4px 6px rgba(0,0,0,0.02);
  transition: all 0.3s ease;
}
.story-card:hover {
  transform: translateY(-4px);
  border-color: var(--primary);
  box-shadow: 0 10px 20px rgba(0,123,255,0.05);
}
.story-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 16px;
}
.story-badge {
  background: var(--success-bg);
  border: 1px solid rgba(16,185,129,0.3);
  color: var(--success);
  font-size: 13px;
  font-weight: 700;
  padding: 4px 12px;
  border-radius: 20px;
}
.story-title {
  font-size: 18px;
  font-weight: 700;
  color: var(--text-main);
}
.story-quote {
  font-style: italic;
  color: var(--text-muted);
  font-size: 14.5px;
  line-height: 1.7;
  margin-bottom: 20px;
  border-left: 3px solid var(--primary);
  padding-left: 14px;
}
.story-author {
  font-size: 13px;
  font-weight: 600;
  color: var(--text-main);
}
@media(max-width: 768px) {
  .stories-grid { grid-template-columns: 1fr; }
}

/* Founder Card About Page styles */
.founder-card {
  display: grid;
  grid-template-columns: 280px 1fr;
  gap: 40px;
  align-items: center;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 40px;
  margin-top: 64px;
  box-shadow: 0 4px 6px rgba(0,0,0,0.02);
}
.founder-img-wrap {
  width: 100%;
  aspect-ratio: 1;
  border-radius: 12px;
  overflow: hidden;
  border: 1px solid var(--border);
}
.founder-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.founder-bio h3 {
  font-size: 24px;
  font-weight: 700;
  margin-bottom: 8px;
}
.founder-bio .title {
  font-size: 14px;
  color: var(--primary);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 16px;
}
.founder-bio p {
  font-size: 15px;
  color: var(--text-muted);
  line-height: 1.7;
  margin-bottom: 24px;
}
@media(max-width: 768px) {
  .founder-card { grid-template-columns: 1fr; text-align: center; padding: 24px; }
  .founder-img-wrap { max-width: 200px; margin: 0 auto; }
}



/* Scam Ticker CSS */
.scam-ticker-wrap {
  overflow: hidden;
  white-space: nowrap;
  padding: 16px 0;
  background: var(--bg-soft);
  border-bottom: 1px solid var(--border);
  display: flex;
  align-items: center;
}

.scam-ticker {
  display: inline-flex;
  gap: 24px;
  padding-left: 24px;
  animation: scroll-ticker 35s linear infinite;
}

.scam-item {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--bg-card);
  padding: 10px 20px;
  border-radius: 30px;
  border: 1px solid var(--border);
  font-weight: 500;
  font-size: 14px;
  color: var(--text-main);
  box-shadow: 0 2px 4px rgba(0,0,0,0.02);
  transition: all 0.2s;
}

.scam-item i {
  color: var(--primary);
  font-size: 18px;
}

.scam-item:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 8px rgba(0,123,255,0.1);
  border-color: rgba(0,123,255,0.3);
}

@keyframes scroll-ticker {
  from { transform: translateX(0); }
  to { transform: translateX(-100%); }
}
/* Language Dropdown */
.lang-dropdown {
  position: relative;
  display: inline-block;
  margin-left: 12px;
}
.lang-btn {
  background: rgba(0, 123, 255, 0.1);
  color: var(--primary);
  border: 1px solid rgba(0, 123, 255, 0.2);
  padding: 8px 14px;
  border-radius: 8px;
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 6px;
  transition: all 0.2s;
}
.lang-btn:hover {
  background: rgba(0, 123, 255, 0.2);
}
.lang-content {
    display: none;
    position: absolute;
    top: calc(100% + 6px);
    right: 0;
    background-color: var(--bg-card);
    min-width: 140px;
    box-shadow: 0px 8px 16px 0px rgba(0,0,0,0.1);
    border-radius: 8px;
    border: 1px solid var(--border);
    z-index: 100;
    overflow: hidden;
  }
  .lang-dropdown::after {
    content: '';
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    height: 10px;
  }
  .lang-dropdown:hover .lang-content {
  display: block;
}
.lang-content a {
  color: var(--text-main);
  padding: 10px 16px;
  text-decoration: none;
  display: block;
  font-size: 14px;
  font-weight: 500;
  border-bottom: 1px solid var(--border);
  margin: 0 !important;
}
.lang-content a:last-child {
  border-bottom: none;
}
.lang-content a:hover {
  background-color: var(--bg-soft);
  color: var(--primary);
}
/* Google Translate Overrides */
.goog-te-banner-frame.skiptranslate { display: none !important; }
body {
  margin: 0;
  font-family: var(--font-body);
  color: var(--ink-900);
  background: var(--white);
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
}
#goog-gt-tt { display: none !important; }
.goog-text-highlight { background-color: transparent !important; box-shadow: none !important; }
.lang-content::-webkit-scrollbar {
  width: 6px;
}
.lang-content::-webkit-scrollbar-track {
  background: var(--bg-card);
  border-radius: 8px;
}
.lang-content::-webkit-scrollbar-thumb {
  background: var(--border);
  border-radius: 8px;
}
.lang-content::-webkit-scrollbar-thumb:hover {
  background: var(--text-muted);
}
iframe.goog-te-banner-frame { display: none !important; }
.goog-te-banner-frame { display: none !important; }
html { top: 0px !important; }
body {
  margin: 0;
  font-family: var(--font-body);
  color: var(--ink-900);
  background: var(--white);
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
}
/* Force Google Translate to hide and not shift layout */
body {
  margin: 0;
  font-family: var(--font-body);
  color: var(--ink-900);
  background: var(--white);
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
}
.goog-te-banner-frame { display: none !important; visibility: hidden !important; height: 0 !important; }
.skiptranslate > iframe.goog-te-banner-frame { display: none !important; }
#goog-gt-tt { display: none !important; }
.goog-tooltip { display: none !important; }
.goog-tooltip:hover { display: none !important; }
.goog-text-highlight { background-color: transparent !important; border: none !important; box-shadow: none !important; }



/* Mobile Navigation Styles Added by Agent */
.menu-toggle {
  display: none;
  font-size: 28px;
  cursor: pointer;
  color: #111827;
  position: relative;
  z-index: 200;
}

@media(max-width: 768px) {
  .menu-toggle {
    display: block;
    margin-left: auto;
  }

  .nav-links {
    display: none !important;
    flex-direction: column;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: #ffffff;
    padding: 20px;
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
    gap: 15px;
    align-items: flex-start;
    z-index: 101;
  }

  .nav-links.active {
    display: flex !important;
  }
  
  .lang-dropdown {
    margin-top: 10px;
  }
}



/* ===== PENSION PAGE COMPONENTS (Reusable) ===== */
.pension-hero {
  background: radial-gradient(ellipse at 78% 30%, #1A2C4D 0%, #0f172a 45%, #020617 100%);
  color: #fff;
  position: relative;
  overflow: hidden;
  padding: 84px 0 70px;
}
.hero-grid { display: grid; grid-template-columns: 1.05fr 0.85fr; gap: 56px; align-items: center; }
.pension-hero h1 { font-size: clamp(2.2rem, 4.2vw, 3.4rem); line-height: 1.1; font-weight: 700; color: #fff; }
.pension-hero h1 em { font-style: normal; color: var(--primary); }
.hero-sub { margin-top: 22px; font-size: 1.08rem; color: #C9D2E0; max-width: 520px; }
.hero-actions { display: flex; gap: 14px; margin-top: 32px; flex-wrap: wrap; }
.hero-trust { margin-top: 28px; font-size: 0.82rem; color: #9AA7C0; display: flex; align-items: center; gap: 10px; }
.hero-trust .dot { width: 6px; height: 6px; border-radius: 50%; background: var(--primary); flex: none; }
.hero-shield-wrap { position: relative; display: flex; justify-content: center; }
.hero-shield-wrap::before {
  content: ""; position: absolute; width: 340px; height: 340px; border-radius: 50%;
  background: radial-gradient(circle, rgba(0,123,255,0.22), transparent 70%);
  filter: blur(6px);
}
.hero-shield { width: 280px; max-width: 80%; position: relative; }
@media (max-width:880px){
  .hero-grid { grid-template-columns: 1fr; }
  .hero-shield-wrap { order: -1; margin-bottom: 8px; }
  .hero-shield { width: 200px; }
  .hero-sub { max-width: none; }
}

/* Stat Strip */
.stat-strip { background: var(--bg-card); border-bottom: 1px solid var(--border); padding: 26px 0; border-top: 1px solid var(--border); }
.stat-row { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.stat-item { text-align: left; border-left: 2px solid var(--primary); padding-left: 16px; }
.stat-num { font-family: monospace; font-weight: 600; font-size: 1.5rem; color: var(--text-main); }
.stat-label { font-size: 0.84rem; color: var(--text-muted); margin-top: 4px; }
@media (max-width:780px) { .stat-row { grid-template-columns: 1fr; gap: 18px; } }

/* Section Headers */
.section-pad { padding: 96px 0; }
.section-head { max-width: 680px; margin-bottom: 56px; }
.section-head h2 { font-size: clamp(1.7rem, 2.6vw, 2.3rem); }
.section-head p { margin-top: 14px; color: var(--text-muted); font-size: 1.02rem; }

/* Layers */
.layers-section { background: var(--bg-main); }
.layers-grid { display: grid; grid-template-columns: 380px 1fr; gap: 64px; align-items: start; }
.shield-pin { position: sticky; top: 110px; }
.shield-caption { margin-top: 18px; font-size: 0.85rem; color: var(--text-muted); border-left: 2px solid var(--border); padding-left: 14px; }
.layer-list { display: flex; flex-direction: column; }
.layer-row { display: grid; grid-template-columns: 64px 1fr; gap: 18px; padding: 22px 0; border-top: 1px solid var(--border); }
.layer-row:first-child { border-top: 1px solid var(--border); }
.layer-num { font-family: monospace; font-size: 0.72rem; color: var(--text-muted); padding-top: 3px; }
.layer-swatch { width: 14px; height: 14px; border-radius: 3px; display: inline-block; margin-right: 8px; vertical-align: -2px; }
.layer-row h3 { font-size: 1.08rem; font-weight: 600; margin-bottom: 6px; display: flex; align-items: center; color: var(--text-main); }
.layer-row p { color: var(--text-muted); font-size: 0.96rem; }
@media (max-width:980px){
  .layers-grid { grid-template-columns: 1fr; }
  .shield-pin { position: static; display: flex; flex-direction: column; align-items: center; margin-bottom: 20px; }
}

/* Plans */
.plans-section { background: #f8fafc; }
.plans-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.plan-card {
  background: #fff; border: 1px solid var(--border); border-radius: 12px;
  padding: 32px 28px; display: flex; flex-direction: column;
  border-top: 4px solid var(--border);
}
.plan-card.featured { border-top-color: var(--primary); box-shadow: 0 18px 40px -22px rgba(15, 23, 42, 0.2); }
.plan-tag { font-family: monospace; font-size: 0.68rem; letter-spacing: 0.08em; color: var(--primary); text-transform: uppercase; font-weight: 600; margin-bottom: 14px; height: 14px; }
.plan-name { font-size: 1.35rem; font-weight: 600; color: var(--text-main); }
.plan-price { margin-top: 8px; display: flex; align-items: baseline; gap: 6px; }
.plan-price .amt { font-family: monospace; font-size: 1.7rem; font-weight: 600; color: var(--text-main); }
.plan-price .per { font-size: 0.85rem; color: var(--text-muted); }
.plan-desc { margin-top: 10px; color: var(--text-muted); font-size: 0.92rem; min-height: 42px; }
.plan-list { list-style: none; margin: 22px 0 26px; padding: 0; display: flex; flex-direction: column; gap: 11px; }
.plan-list li { display: flex; align-items: flex-start; gap: 10px; font-size: 0.92rem; }
.plan-list .yes { color: #10b981; font-weight: 700; }
.plan-list .no { color: #cbd5e1; }
.plan-list .dim { color: #94a3b8; }
.plan-card .btn { margin-top: auto; width: 100%; }
@media (max-width:980px){.plans-grid{grid-template-columns:1fr;max-width:420px;margin:0 auto;}}

/* Enrol */
.enrol-section { background: var(--bg-main); }
.enrol-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 28px 36px; }
.enrol-card { display: flex; gap: 18px; }
.enrol-icon {
  flex: none; width: 46px; height: 46px; border-radius: 50%;
  background: var(--bg-card); display: flex; align-items: center; justify-content: center;
  color: var(--primary); border: 1px solid var(--border);
}
.enrol-icon svg { width: 22px; height: 22px; }
.enrol-card h3 { font-size: 1.02rem; font-weight: 600; margin-bottom: 6px; color: var(--text-main); }
.enrol-card p { font-size: 0.92rem; color: var(--text-muted); }
@media (max-width:780px){.enrol-grid{grid-template-columns:1fr;}}

/* Trust Band */
.trust-band { background: #0f172a; color: #dfe4ee; padding: 64px 0; }
.trust-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 32px; }
.trust-item { border-left: 2px solid rgba(0,123,255,0.6); padding-left: 18px; }
.trust-item h3 { color: #fff; font-size: 1.02rem; margin-bottom: 8px; font-weight: 600; }
.trust-item p { font-size: 0.9rem; color: #94a3b8; }
@media (max-width:880px){.trust-grid{grid-template-columns:1fr;gap:26px;}}

/* Final CTA */
.final-cta {
  background: linear-gradient(135deg, #020617, #0f172a 60%, #1e293b);
  color: #fff; padding: 90px 0; text-align: center;
}
.final-cta h2 { color: #fff; font-size: clamp(1.8rem, 3.4vw, 2.6rem); max-width: 680px; margin: 0 auto; }
.final-cta p { color: #94a3b8; margin-top: 16px; font-size: 1.02rem; }
.final-actions { display: flex; justify-content: center; gap: 16px; margin-top: 32px; flex-wrap: wrap; }
.final-contact { margin-top: 34px; font-family: monospace; font-size: 0.88rem; color: #64748b; letter-spacing: 0.02em; }

/* Buttons */
.btn-ghost-light { border: 1.5px solid rgba(255,255,255,0.45); color: #fff; display: inline-flex; align-items: center; justify-content: center; gap: 8px; padding: 13px 26px; border-radius: 8px; font-weight: 600; font-size: 15px; cursor: pointer; transition: background 0.2s; }
.btn-ghost-light:hover { background: rgba(255,255,255,0.1); }
.btn-ghost-dark { border: 1.5px solid #0f172a; color: #0f172a; display: inline-flex; align-items: center; justify-content: center; gap: 8px; padding: 13px 26px; border-radius: 8px; font-weight: 600; font-size: 15px; cursor: pointer; transition: background 0.2s; }
.btn-ghost-dark:hover { background: rgba(15,23,42,0.06); }

/* === APPENDED NEW CSS === */
img { max-width: 100%; display: block; }
a { color: inherit; }

h1, h2, h3, h4 {
  font-family: var(--font-display);
  margin: 0;
  letter-spacing: -0.01em;
  line-height: 1.12;
}

.wrap {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 24px;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-display);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--amber-400);
  margin-bottom: 14px;
}
.eyebrow::before {
  content: "";
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--amber-400);
}
.section--light .eyebrow { color: var(--blue-600); }
.section--light .eyebrow::before { background: var(--blue-600); }

/* ---------- Skip link / focus ---------- */
.skip-link {
  position: absolute;
  left: -999px;
  top: 0;
  background: var(--blue-600);
  color: #fff;
  padding: 10px 16px;
  border-radius: 0 0 8px 0;
  z-index: 100;
}
.skip-link:focus { left: 0; }
a:focus-visible, button:focus-visible, summary:focus-visible {
  outline: 3px solid var(--blue-300);
  outline-offset: 2px;
  border-radius: 6px;
}

/* ---------- Emergency banner ---------- */
.banner {
  background: var(--red-500);
  color: #fff;
  font-size: 14px;
  text-align: center;
  padding: 9px 16px;
}
.banner strong { font-weight: 700; }

/* ---------- Header ---------- */
header.site {
  position: sticky;
  top: 0;
  z-index: 999;
  background: rgba(255, 255, 255, 0.98);
  backdrop-filter: saturate(180%) blur(10px);
  border-bottom: 1px solid var(--slate-200);
}
.nav-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 24px;
  gap: 24px;
}
.brand {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 18px;
  color: var(--navy-900);
  text-decoration: none;
  white-space: nowrap;
}
.brand .mark {
  width: 30px; height: 30px; border-radius: 8px;
  background: linear-gradient(135deg, var(--blue-500), var(--navy-900));
  display: inline-flex; align-items: center; justify-content: center;
  color: #fff; font-size: 14px; font-weight: 700;
}
nav.primary {
  display: flex;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
  font-size: 14.5px;
  font-weight: 500;
  color: var(--ink-600);
}
nav.primary a { text-decoration: none; }
nav.primary a:hover, nav.primary a.current { color: var(--navy-900); }
nav.primary a.current { font-weight: 700; }
.lang-select {
  font-size: 13px;
  color: var(--ink-400);
  border: 1px solid var(--slate-200);
  border-radius: 999px;
  padding: 6px 10px;
  background: #fff;
}
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 14.5px;
  padding: 11px 20px;
  border-radius: 999px;
  text-decoration: none;
  border: 1px solid transparent;
  cursor: pointer;
  white-space: nowrap;
}
.btn-primary { background: var(--blue-600); color: #fff; }
.btn-primary:hover { background: var(--blue-500); }
.btn-amber { background: var(--amber-400); color: var(--navy-950); }
.btn-amber:hover { background: var(--amber-300); }
.btn-outline { background: transparent; color: var(--white); border-color: rgba(255,255,255,0.35); }
.btn-outline:hover { border-color: rgba(255,255,255,0.7); }
.btn-outline-dark { background: transparent; color: var(--navy-900); border-color: var(--slate-200); }
.btn-outline-dark:hover { border-color: var(--ink-400); }
.btn-sm { padding: 9px 16px; font-size: 13.5px; }

/* ---------- Hero ---------- */
.hero {
  background:
    radial-gradient(60% 60% at 85% 0%, rgba(59,111,240,0.35), transparent 60%),
    radial-gradient(40% 50% at 0% 100%, rgba(242,181,68,0.18), transparent 60%),
    linear-gradient(180deg, var(--navy-950), var(--navy-900));
  color: #fff;
  padding: 76px 0 64px;
  overflow: hidden;
}
.hero-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 56px;
  align-items: center;
}
.hero h1 {
  font-size: clamp(34px, 4.2vw, 50px);
  color: #fff;
  margin-bottom: 18px;
}
.hero p.lead {
  font-size: 17px;
  color: rgba(255,255,255,0.78);
  max-width: 560px;
  margin-bottom: 28px;
}
.hero .cta-row { display: flex; gap: 12px; flex-wrap: wrap; margin-bottom: 8px; }

/* ---------- Stat strip ---------- */
.stat-strip {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  margin-top: 48px;
  padding-top: 32px;
  border-top: 1px solid rgba(255,255,255,0.12);
}
.stat-strip .stat .num {
  font-family: var(--font-display);
  font-size: clamp(24px, 3vw, 32px);
  font-weight: 700;
  color: var(--amber-400);
}
.stat-strip .stat .label {
  font-size: 13.5px;
  color: rgba(255,255,255,0.65);
  margin-top: 4px;
}

/* ---------- Sections ---------- */
section { padding: 80px 0; }
.section--alt { background: var(--slate-50); }
.section-head { max-width: 680px; margin: 0 0 44px; }
.section-head h2 { font-size: clamp(26px, 3vw, 34px); color: var(--navy-900); }
.section-head p { color: var(--ink-600); margin-top: 12px; font-size: 16px; }
.copy-block p { color: var(--ink-600); font-size: 16px; max-width: 760px; }
.copy-block p + p { margin-top: 14px; }

/* ---------- Cards grid ---------- */
.cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 20px;
}
.card {
  background: #fff;
  border: 1px solid var(--slate-200);
  border-radius: var(--radius-lg);
  padding: 26px;
  box-shadow: var(--shadow-card);
  display: flex;
  flex-direction: column;
}
.card .tag {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--blue-600);
  margin-bottom: 12px;
}
.card h3 { font-size: 19px; color: var(--navy-900); margin-bottom: 10px; }
.card p.desc { color: var(--ink-600); font-size: 14.5px; margin-bottom: 14px; }
.card ul { list-style: none; margin: 0 0 18px; padding: 0; flex-grow: 1; }
.card ul li {
  font-size: 14px;
  color: var(--ink-600);
  padding-left: 22px;
  position: relative;
  margin-bottom: 8px;
}
.card ul li::before {
  content: "✓";
  position: absolute;
  left: 0;
  top: 0;
  color: var(--blue-600);
  font-weight: 700;
}
.card .card-cta {
  font-size: 14px;
  font-weight: 700;
  color: var(--blue-600);
  text-decoration: none;
  margin-top: auto;
}
.card.popular { border-color: var(--amber-400); box-shadow: 0 0 0 1px var(--amber-400), var(--shadow-card); }
.card .ribbon {
  font-size: 11.5px;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--navy-950);
  background: var(--amber-400);
  display: inline-block;
  padding: 4px 10px;
  border-radius: 999px;
  margin-bottom: 14px;
  width: fit-content;
}
.card .price { font-family: var(--font-display); font-size: 26px; color: var(--navy-900); margin-bottom: 4px; }
.card .price-note { font-size: 13.5px; color: var(--ink-400); margin-bottom: 16px; }

/* ---------- Steps ---------- */
.steps { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; }
.step { position: relative; padding-left: 0; }
.step .step-num {
  width: 40px; height: 40px;
  border-radius: 50%;
  background: var(--navy-900);
  color: #fff;
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-display); font-weight: 700;
  margin-bottom: 16px;
}
.step h3 { font-size: 17px; color: var(--navy-900); margin-bottom: 8px; }
.step p { color: var(--ink-600); font-size: 14.5px; }
.step .pill {
  display: inline-block;
  margin-top: 12px;
  font-size: 12.5px;
  font-weight: 700;
  color: var(--blue-600);
  background: var(--slate-100);
  padding: 5px 10px;
  border-radius: 999px;
}

/* ---------- Signature: audience ring (Awareness page) ---------- */
.ring-feature { display: flex; flex-direction: column; align-items: center; gap: 22px; }
.ring-wrap { position: relative; width: 230px; height: 230px; }
.ring {
  width: 100%; height: 100%; border-radius: 50%;
  background: conic-gradient(
    var(--blue-500) 0deg 90deg,
    var(--amber-400) 90deg 180deg,
    var(--blue-300) 180deg 270deg,
    var(--red-500) 270deg 360deg
  );
  -webkit-mask: radial-gradient(farthest-side, transparent calc(100% - 34px), #000 calc(100% - 33px));
  mask: radial-gradient(farthest-side, transparent calc(100% - 34px), #000 calc(100% - 33px));
}
.ring-center {
  position: absolute; inset: 34px;
  border-radius: 50%;
  background: rgba(255,255,255,0.04);
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  text-align: center; padding: 10px;
}
.ring-center .big { font-family: var(--font-display); font-size: 26px; font-weight: 700; color: #fff; }
.ring-center .small { font-size: 12px; color: rgba(255,255,255,0.65); margin-top: 4px; }
.ring-legend { display: grid; grid-template-columns: repeat(2, auto); gap: 10px 22px; }
.ring-legend .item { display: flex; align-items: center; gap: 8px; font-size: 13.5px; color: rgba(255,255,255,0.85); }
.ring-legend .dot { width: 10px; height: 10px; border-radius: 50%; flex-shrink: 0; }
.dot-corp { background: var(--blue-500); }
.dot-edu { background: var(--amber-400); }
.dot-com { background: var(--blue-300); }
.dot-gov { background: var(--red-500); }

/* ---------- Signature: claim timeline (Insurance page) ---------- */
.timeline {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 8px;
  position: relative;
}
.timeline::before {
  content: "";
  position: absolute;
  top: 19px;
  left: 40px;
  right: 40px;
  height: 2px;
  background: repeating-linear-gradient(90deg, rgba(255,255,255,0.35) 0 8px, transparent 8px 14px);
  z-index: 0;
}
.timeline .node { position: relative; z-index: 1; flex: 1; text-align: center; padding: 0 8px; }
.timeline .node .bead {
  width: 40px; height: 40px; border-radius: 50%;
  background: var(--navy-900);
  border: 2px solid var(--amber-400);
  margin: 0 auto 14px;
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-display); font-weight: 700; color: var(--amber-400);
}
.timeline .node .pulse {
  position: absolute; top: 19px; left: 50%; width: 8px; height: 8px;
  margin-left: -4px; border-radius: 50%; background: var(--amber-400);
  box-shadow: 0 0 12px 2px rgba(242,181,68,0.7);
  animation: pulse-move 3.2s ease-in-out infinite;
}
.timeline .node:last-child .pulse { display: none; }
.timeline .node h4 { font-size: 14.5px; color: #fff; margin-bottom: 6px; }
.timeline .node p { font-size: 13px; color: rgba(255,255,255,0.65); max-width: 200px; margin: 0 auto; }
@keyframes pulse-move { 0% { transform: translateX(0); opacity: 0; } 10% { opacity: 1; } 90% { opacity: 1; } 100% { transform: translateX(220%); opacity: 0; } }
@media (prefers-reduced-motion: reduce) {
  .timeline .pulse { animation: none; opacity: 1; }
}

/* ---------- Disclosure box ---------- */
.disclosure {
  background: var(--slate-50);
  border: 1px solid var(--slate-200);
  border-left: 4px solid var(--amber-400);
  border-radius: var(--radius-md);
  padding: 22px 24px;
  font-size: 14px;
  color: var(--ink-600);
}
.disclosure strong { color: var(--navy-900); }
.disclosure mark {
  background: #fff4d6;
  color: var(--navy-900);
  padding: 0 4px;
  border-radius: 4px;
  font-weight: 600;
}

/* ---------- FAQ ---------- */
.faq-list { border-top: 1px solid var(--slate-200); }
.faq-list details {
  border-bottom: 1px solid var(--slate-200);
  padding: 18px 0;
}
.faq-list summary {
  cursor: pointer;
  list-style: none;
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-weight: 600;
  font-size: 16px;
  color: var(--navy-900);
}
.faq-list summary::-webkit-details-marker { display: none; }
.faq-list summary::after {
  content: "+";
  font-size: 22px;
  color: var(--blue-600);
  font-weight: 400;
  flex-shrink: 0;
  margin-left: 16px;
}
.faq-list details[open] summary::after { content: "–"; }
.faq-list .faq-a { color: var(--ink-600); font-size: 14.5px; margin-top: 12px; max-width: 720px; }

/* ---------- CTA band ---------- */
.cta-band {
  background: linear-gradient(135deg, var(--navy-950), var(--navy-800));
  color: #fff;
  border-radius: var(--radius-lg);
  padding: 48px;
  text-align: center;
}
.cta-band h2 { font-size: clamp(24px, 3vw, 30px); margin-bottom: 12px; color: #fff; }
.cta-band p { color: rgba(255,255,255,0.7); margin-bottom: 26px; }
.cta-band .cta-row { display: flex; justify-content: center; gap: 12px; flex-wrap: wrap; }

/* ---------- Footer ---------- */
footer.site {
  background: var(--navy-950);
  color: rgba(255,255,255,0.6);
  padding: 56px 0 28px;
  font-size: 14px;
}
.footer-top {
  display: flex;
  justify-content: space-between;
  gap: 40px;
  flex-wrap: wrap;
  padding-bottom: 36px;
  border-bottom: 1px solid rgba(255,255,255,0.1);
  margin-bottom: 28px;
}
.footer-brand { max-width: 280px; }
.footer-brand .brand { color: #fff; margin-bottom: 10px; }
.footer-cols { display: flex; gap: 56px; flex-wrap: wrap; }
.footer-col h5 {
  font-family: var(--font-body);
  font-size: 12.5px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.45);
  margin-bottom: 14px;
}
.footer-col ul { list-style: none; margin: 0; padding: 0; }
.footer-col li { margin-bottom: 9px; }
.footer-col a { text-decoration: none; color: rgba(255,255,255,0.75); }
.footer-col a:hover { color: #fff; }
.footer-bottom {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 10px;
  font-size: 12.5px;
  color: rgba(255,255,255,0.45);
}
.footer-bottom .dpdp {
  background: rgba(255,255,255,0.08);
  padding: 4px 10px;
  border-radius: 999px;
  color: rgba(255,255,255,0.7);
}


/* ---------- Responsive ---------- */
@media (max-width: 900px) {
  .hero-grid { grid-template-columns: 1fr; }
  .stat-strip { grid-template-columns: 1fr; gap: 22px; }
  .steps { grid-template-columns: 1fr; }
  .timeline { flex-direction: column; align-items: stretch; gap: 22px; }
  .timeline::before { display: none; }
  .timeline .node { text-align: left; display: flex; align-items: center; gap: 14px; }
  .timeline .node .bead { margin: 0; }
  .timeline .node p { max-width: none; }
  .cta-band { padding: 32px 22px; }
}

@media (max-width: 600px) {
  .top-alert-bar { flex-direction: column; gap: 4px; font-size: 13px; padding: 10px 15px; }
}

/* =========================================================
   PREMIUM DARK THEME (NAVY & TEAL) OVERRIDE
   ========================================================= */
:root {
  --bg-main: #060b17; /* navy-950 */
  --bg-soft: #0a1930; /* navy-900 */
  --bg-card: rgba(10, 25, 48, 0.65);
  
  --text-main: #f8fafc;
  --text-muted: #94a3b8;
  
  --border: rgba(38, 166, 154, 0.25); /* Teal border */
  --primary: #26a69a; /* blue-500 */
  --primary-hover: #009688; /* blue-600 */
  
  --shadow-card: 0 4px 20px -2px rgba(0, 0, 0, 0.5);
}

body {
  background-color: var(--bg-main) !important;
  color: var(--text-main) !important;
}

/* Force dark backgrounds on all specific sections that might have hardcoded white */
.pad, section.pad, .hero, .features, .stats-section, .process-section, .scam-library, .testimonials, .cta-section {
  background-color: var(--bg-main) !important;
}

/* Glassmorphism Header */
header.site {
  background: rgba(6, 11, 23, 0.8) !important;
  backdrop-filter: blur(16px) saturate(180%);
  -webkit-backdrop-filter: blur(16px) saturate(180%);
  border-bottom: 1px solid var(--border) !important;
}

.nav-links {
  gap: 1rem !important;
}
.nav-links a {
  color: #f8fafc !important;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.2px;
  font-size: 13px;
  white-space: nowrap;
}
.nav-links a:hover, .nav-links a.active {
  color: var(--primary) !important;
  text-shadow: 0 0 10px rgba(38, 166, 154, 0.4);
}

/* Cards & Glassmorphism */
.story-card, .scam-card, .step, .feature-card, .faq-item {
  background: var(--bg-card) !important;
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid var(--border) !important;
  box-shadow: var(--shadow-card) !important;
  color: #f8fafc !important;
}

.story-card:hover, .scam-card:hover, .feature-card:hover {
  border-color: var(--primary) !important;
  box-shadow: 0 0 25px rgba(38, 166, 154, 0.2) !important;
  transform: translateY(-4px);
}

h1, h2, h3, h4, h5, h6, .stag, .sh, .ss {
  color: #f8fafc !important;
}

p {
  color: #94a3b8 !important;
}

/* Fix specific hardcoded backgrounds */
div[style*="background:var(--bg-card)"] {
  background: var(--bg-card) !important;
  backdrop-filter: blur(12px);
  border-color: var(--border) !important;
}

.brand {
  color: var(--text-main) !important;
}

/* Form inputs & UI elements */
input, textarea, select {
  background: rgba(10, 25, 48, 0.5) !important;
  color: var(--text-main) !important;
  border: 1px solid var(--border) !important;
}

.footer-section, .fbot, footer {
  background-color: var(--bg-main) !important;
  border-top: 1px solid var(--border) !important;
}

/* =========================================================
   FIX LANGUAGE DROPDOWN PREMIUM UI
   ========================================================= */
.lang-content {
  background: rgba(10, 25, 48, 0.95) !important;
  backdrop-filter: blur(16px) saturate(180%);
  -webkit-backdrop-filter: blur(16px) saturate(180%);
  border: 1px solid rgba(38, 166, 154, 0.3) !important;
  box-shadow: 0 10px 30px rgba(0,0,0,0.5) !important;
}

.lang-content a {
  color: #f8fafc !important;
  font-weight: 500 !important;
}

.lang-content a:hover {
  background: rgba(38, 166, 154, 0.2) !important;
  color: #26a69a !important;
}

/* =========================================================
   FORCE DESKTOP NAV TO BE TRANSPARENT AND SINGLE LINE
   ========================================================= */
@media (min-width: 769px) {
  .nav-links {
    background: transparent !important;
    flex-wrap: nowrap !important;
    gap: 10px !important;
    padding: 0 !important;
    box-shadow: none !important;
    border: none !important;
  }
  .nav-links a {
    font-size: 12px !important;
    letter-spacing: 0 !important;
    padding: 4px 8px !important;
    margin: 0 !important;
    white-space: nowrap !important;
  }
}

/* =========================================================
   PENSION PAGE FIXES & THEME SYNC
   ========================================================= */

/* Fix the layout bug where section.stat-strip was overriding the inner row grid */
section.stat-strip {
  display: block !important;
}

/* Sync backgrounds for pension specific sections */
.layers-section, .plans-section, .enrol-section, .trust-band, .stat-strip {
  background-color: var(--bg-main) !important;
}

/* Sync glassmorphism cards for pension page */
.plan-card, .enrol-card {
  background: var(--bg-card) !important;
  backdrop-filter: blur(12px) !important;
  -webkit-backdrop-filter: blur(12px) !important;
  border: 1px solid var(--border) !important;
  box-shadow: var(--shadow-card) !important;
}

/* Fix hover states for new cards */
.plan-card:hover, .enrol-card:hover {
  border-color: var(--primary) !important;
  box-shadow: 0 0 25px rgba(38, 166, 154, 0.2) !important;
  transform: translateY(-4px);
}

/* Ensure text inside these cards is readable */
.plan-card *, .enrol-card * {
  color: #f8fafc;
}

.plan-card .price-num {
  color: var(--primary) !important;
}

.plan-card ul li {
  color: #f8fafc !important;
}
.plan-card ul li.inactive {
  color: rgba(248, 250, 252, 0.3) !important;
}

.layer-row {
  border-bottom: 1px solid var(--border) !important;
}

/* =========================================================
   LOGO VISIBILITY FIXES
   ========================================================= */
.logo img, .footer-brand img, .brand.logo-link img {
  background: #ffffff !important;
  padding: 6px 12px !important;
  border-radius: 8px !important;
  max-width: 100% !important;
}

/* =========================================================
   LOGO SQUISH FIX & RESPONSIVE SCALING
   ========================================================= */
/* Prevent the logo from being squished by the flexbox navigation */
.brand.logo-link {
    flex-shrink: 0 !important;
    display: flex;
    align-items: center;
}

.brand.logo-link img {
    flex-shrink: 0 !important;
    /* Constrain strictly by height to prevent massive headers */
    height: 55px !important;
    max-height: 55px !important;
    width: auto !important;
    /* Remove padding to avoid bloating the height further */
    padding: 4px 10px !important;
}

/* =========================================================
   MOBILE MENU FIXES FOR DARK THEME
   ========================================================= */
@media (max-width: 768px) {
  .menu-toggle {
    color: #f8fafc !important;
  }
  .menu-toggle:hover {
    color: var(--primary) !important;
  }
  .nav-links {
    background: var(--bg-card) !important;
    backdrop-filter: blur(16px) saturate(180%) !important;
    -webkit-backdrop-filter: blur(16px) saturate(180%) !important;
    border: 1px solid var(--border) !important;
    box-shadow: var(--shadow-card) !important;
    border-radius: 12px !important;
    margin-top: 15px !important;
    padding: 15px !important;
    top: 100% !important;
  }
  .nav-links a {
    width: 100% !important;
    padding: 12px 15px !important;
    border-bottom: 1px solid rgba(255,255,255,0.05) !important;
    font-size: 14px !important;
    display: block !important;
  }
  .nav-links a:last-child {
    border-bottom: none !important;
  }
}

/* =========================================================
   INSURANCE PAGE DARK THEME FIXES
   ========================================================= */
.section--alt, .section--light {
  background-color: var(--bg-main) !important;
}
.section--alt {
  background-color: var(--bg-soft) !important;
}

/* Fix Cards */
.cards .card {
  background: var(--bg-card) !important;
  backdrop-filter: blur(12px) !important;
  -webkit-backdrop-filter: blur(12px) !important;
  border: 1px solid var(--border) !important;
  box-shadow: var(--shadow-card) !important;
}
.cards .card:hover {
  border-color: var(--primary) !important;
  box-shadow: 0 0 25px rgba(38, 166, 154, 0.2) !important;
  transform: translateY(-4px);
}
.cards .card * {
  color: var(--text-main) !important;
}
.cards .card .price {
  color: var(--primary) !important;
}
.cards .card .price-note, .cards .card ul li {
  color: var(--text-muted) !important;
}
.cards .card .card-cta {
  color: var(--primary) !important;
}
.cards .card.popular {
  border-color: var(--amber-400) !important;
  box-shadow: 0 0 0 1px var(--amber-400), var(--shadow-card) !important;
}
.cards .card.popular .ribbon {
  background: var(--amber-400) !important;
  color: #111 !important;
}

/* Fix Steps */
.step-num {
  background: var(--primary) !important;
  color: #fff !important;
}
.step h3 {
  color: var(--text-main) !important;
}
.step p {
  color: var(--text-muted) !important;
}

/* Fix FAQ */
.faq-list details {
  background: var(--bg-card) !important;
  border: 1px solid var(--border) !important;
}
.faq-list summary {
  color: var(--text-main) !important;
}
.faq-list .faq-a {
  color: var(--text-muted) !important;
}

/* Fix Eyebrow & Disclosure */
.eyebrow {
  color: var(--primary) !important;
  background: rgba(38, 166, 154, 0.1) !important;
}
.disclosure {
  background: var(--bg-card) !important;
  border: 1px solid var(--border) !important;
  color: var(--text-muted) !important;
}
.disclosure mark {
  background: rgba(38, 166, 154, 0.2) !important;
  color: var(--text-main) !important;
}

/* =========================================================
   AWARENESS PAGE & GLOBAL UI FIXES (TAGS, PILLS, FAQS)
   ========================================================= */

/* Fix invisible text on light tags/pills (overriding global card * rule) */
body .step .pill,
body .cards .card .tag {
  background: rgba(38, 166, 154, 0.1) !important;
  color: #26a69a !important; /* var(--primary) */
  border: 1px solid rgba(38, 166, 154, 0.3) !important;
}

/* Ensure FAQ items are perfectly readable in dark mode */
body .faq-list {
  border-top: 1px solid rgba(255, 255, 255, 0.1) !important;
}
body .faq-list details {
  background: transparent !important;
  border: none !important;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1) !important;
  padding: 18px 0 !important;
}
body .faq-list summary {
  color: #ffffff !important;
}
body .faq-list .faq-a {
  color: #94a3b8 !important;
}
body .faq-list summary::after {
  color: #26a69a !important;
}

/* Ensure faq-a inside native <details> tags is visible when expanded */
.faq-list .faq-a {
  max-height: none !important;
  overflow: visible !important;
  padding: 0 !important;
}

/* Ensure .step cards have proper padding inside, overriding padding-left: 0 */
.step {
  padding: 28px !important;
}
