/* Shared service page styles. Extracted verbatim from page-trademark.php so the
   generic service template renders identically to the Trademark page. */
@import url('https://fonts.googleapis.com/css2?family=Urbanist:wght@400;500;600;700;800&family=Instrument+Sans:wght@400;500;600;700&display=swap');

:root {
  --bg: #f3fcfe;
  --surface: #ffffff;
  --text: #233a31;
  --muted: #627a70;
  --line: #c7eef6;
  --brand: #16c3e3;
  --brand-deep: #0d8faa;
  --brand-soft: #e7fafe;
  --shadow: 0 24px 60px rgba(13, 143, 170, 0.12);
  --container: 1180px;
}

* { box-sizing: border-box; }

/* Hide any raw code/text that leaks before the page wrapper loads.
   This happens when WordPress renders the template as page content. */
/* WordPress adds html { margin-top: 32px/46px !important } for logged-in
   visitors. The toolbar itself is intentionally hidden by this standalone
   template, so use a more-specific selector to remove its orphaned offset
   even when WordPress prints its rule later in wp_head(). */
html:root { margin-top: 0 !important; }
html, body { overflow-x: hidden; }
body { font-size: 0; margin: 0; padding: 0; background: #eefbfd; }
body > *:not(.sahi-advisor-page) { display: none !important; }
.sahi-advisor-page { font-size: 1rem; }

.sahi-advisor-page {
  margin: 0;
  font-family: "Instrument Sans", sans-serif;
  color: var(--text);
  background:
    radial-gradient(circle at top left, rgba(22, 195, 227, 0.18), transparent 24rem),
    radial-gradient(circle at bottom right, rgba(231, 250, 254, 0.9), transparent 18rem),
    var(--bg);
}

/* :visited is spelled out so this outranks the theme style.css `a:visited`
   (purple #800080) regardless of which stylesheet loads last — a bare
   `.sahi-advisor-page a` only ties with it. */
.sahi-advisor-page a,
.sahi-advisor-page a:visited { color: inherit; text-decoration: none; }

.container {
  width: min(var(--container), calc(100% - 32px));
  margin: 0 auto;
}

.section { padding: 96px 0; }
.section-soft { background: rgba(255, 255, 255, 0.6); backdrop-filter: blur(6px); }

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 9px 16px;
  border: 1px solid rgba(13, 143, 170, 0.14);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.74);
  color: var(--brand-deep);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.eyebrow-light {
  border-color: var(--line);
  background: var(--surface);
  color: var(--brand-deep);
}

.section-title {
  margin: 16px 0 14px;
  font-family: "Urbanist", sans-serif;
  font-size: clamp(2rem, 3.4vw, 3.4rem);
  line-height: 1.05;
  letter-spacing: -0.04em;
}

.section-copy {
  max-width: 760px;
  margin: 0;
  color: var(--muted);
  font-size: 1.06rem;
  line-height: 1.82;
}

/* ============================================================
   TOPBAR — FIXED (logo visible + mobile hamburger)
   ============================================================ */

/* Safety net: hide any raw text / code that leaks before .sahi-advisor-page renders */
body > br,
body > text,
body > p:first-of-type:not(.sahi-advisor-page p) {
  display: none !important;
}

.topbar {
  position: sticky;
  top: 0;
  z-index: 20;
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  background: rgba(232, 250, 254, 0.96);
  border-bottom: 1px solid rgba(13, 143, 170, 0.14);
}

.topbar-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  min-height: 76px;
}

/* Logo */
.brand-lockup {
  display: flex;
  align-items: center;
  flex-shrink: 0;
}

.site-logo {
  height: 60px;
  width: auto;
  display: block;
  object-fit: contain;
  filter: drop-shadow(0 1px 2px rgba(0,0,0,0.08));
}

/* Desktop nav links */
.nav-links {
  display: flex;
  align-items: center;
  gap: 2px;
}

.nav-link {
  display: inline-block;
  color: var(--muted);
  font-size: 0.9rem;
  font-weight: 600;
  padding: 8px 12px;
  border-radius: 8px;
  white-space: nowrap;
  transition: background 0.15s ease, color 0.15s ease;
}

.nav-link:hover {
  background: rgba(22, 195, 227, 0.1);
  color: var(--brand-deep);
}

/* Desktop Call Now button */
.btn-call-nav {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 42px;
  padding: 0 18px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 8px;
  font-family: inherit;
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--text);
  white-space: nowrap;
  flex-shrink: 0;
  transition: background 0.15s ease, border-color 0.15s ease;
}

.btn-call-nav:hover {
  background: #e7fafe;
  border-color: var(--brand);
}

/* Hamburger — hidden on desktop */
.hamburger-btn {
  display: none;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 5px;
  width: 42px;
  height: 42px;
  background: none;
  border: 1px solid var(--line);
  border-radius: 8px;
  cursor: pointer;
  padding: 0;
  flex-shrink: 0;
  transition: background 0.15s ease;
}

.hamburger-btn:hover { background: #e7fafe; }

.hamburger-btn span {
  display: block;
  width: 20px;
  height: 2px;
  background: var(--text);
  border-radius: 2px;
  transition: transform 0.25s ease, opacity 0.25s ease;
  transform-origin: center;
}

.hamburger-btn.is-open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger-btn.is-open span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.hamburger-btn.is-open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Mobile dropdown menu */
.mobile-nav {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  overflow: hidden auto;
  background: #edfafd;
  border-top: 1px solid rgba(13, 143, 170, 0.10);
  max-height: 0;
  transition: max-height 0.3s ease;
}

.mobile-nav.is-open {
  display: block;
  max-height: calc(100dvh - 64px);
  box-shadow: 0 18px 34px rgba(13, 143, 170, 0.16);
}

.mobile-nav-inner {
  padding: 14px 0 18px;
}

/* :visited named explicitly — see the note on `.sahi-advisor-page a` above. */
.mobile-nav-link,
.mobile-nav-link:visited {
  display: flex;
  align-items: center;
  padding: 12px 16px;
  font-size: 0.97rem;
  font-weight: 600;
  letter-spacing: -0.01em;
  color: var(--text);
  min-height: 46px;
  border: 1px solid rgba(13, 143, 170, 0.12);
  border-radius: 12px;
  margin: 0;
  background: rgba(255, 255, 255, 0.78);
  box-shadow: 0 1px 2px rgba(13, 143, 170, 0.04);
  transition: background 0.15s ease, color 0.15s ease, border-color 0.15s ease, transform 0.15s ease;
}

.mobile-nav-link:hover {
  background: rgba(22, 195, 227, 0.1);
  border-color: rgba(13, 143, 170, 0.28);
  color: var(--brand-deep);
}

/* Touch has no hover, so the press state is the only affordance feedback. */
.mobile-nav-link:active {
  transform: scale(0.985);
  background: var(--brand-soft);
}

.mobile-nav-link:focus-visible {
  outline: 2px solid var(--brand);
  outline-offset: 2px;
}

.mobile-nav-cta {
  margin: 10px 8px 0;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  border-radius: 12px;
  background: linear-gradient(135deg, #16c3e3, #0d8faa);
  font-family: inherit;
  font-size: 0.97rem;
  font-weight: 700;
  color: #fff !important;
  text-decoration: none;
  transition: opacity 0.15s ease;
}

.mobile-nav-cta:hover { opacity: 0.9; }

/* Show hamburger, hide desktop nav on small screens */
@media (max-width: 860px) {
  .nav-links    { display: none; }
  .btn-call-nav { display: none; }
  .hamburger-btn { display: flex; }

  /* Compact mobile topbar */
  .topbar-inner { min-height: 64px; }

  /* Logo on mobile — tall enough to read "SAHI ADVISE" text */
  .site-logo { height: 48px; }

  /* Smaller hamburger */
  .hamburger-btn { width: 36px; height: 36px; }
  .hamburger-btn span { width: 16px; }

  /* Compact dropdown */
  .mobile-nav-inner { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 8px; padding: 14px 0 16px; }
  .mobile-nav-link  { padding: 10px 14px; font-size: 0.93rem; }
  .mobile-nav-cta   { grid-column: 1 / -1; min-height: 46px; font-size: 0.95rem; margin: 4px 0 0; }
}

@media (max-width: 390px) {
  .mobile-nav-inner { grid-template-columns: 1fr; }
}

/* ============================================================
   REST OF ORIGINAL STYLES (unchanged)
   ============================================================ */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 0 22px;
  border: 0;
  border-radius: 8px;
  font-family: inherit;
  font-size: 0.98rem;
  font-weight: 700;
  cursor: pointer;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  /* Fallback so a bare .btn (no variant class) is never unstyled black text.
     .btn-primary / .btn-secondary / .btn-outline below override these. */
  color: #fff;
  background: linear-gradient(135deg, #16c3e3, #0d8faa);
  text-decoration: none;
}

.btn:hover { transform: translateY(-2px); }

.btn-primary {
  color: #fff;
  background: linear-gradient(135deg, #16c3e3, #0d8faa);
  box-shadow: 0 16px 30px rgba(13, 143, 170, 0.24);
}

.btn-primary:link,
.btn-primary:visited,
.btn-primary:hover,
.btn-primary:active,
.cta-panel .btn-primary {
  color: #fff;
}

.btn-secondary {
  color: var(--text);
  background: rgba(255, 255, 255, 0.78);
  border: 1px solid rgba(13, 143, 170, 0.16);
}

.btn-outline {
  color: var(--text);
  background: #fff;
  border: 1px solid var(--line);
}

.btn-contact {
  min-height: 44px;
  padding: 0 16px;
  font-size: 0.9rem;
}

.hero {
  position: relative;
  overflow: hidden;
  color: var(--text);
  background:
    radial-gradient(circle at 10% 20%, rgba(22, 195, 227, 0.2), transparent 16rem),
    radial-gradient(circle at 85% 15%, rgba(231, 250, 254, 0.92), transparent 14rem),
    linear-gradient(145deg, #f8fdff 0%, #eefbfe 46%, #def7fc 100%);
}

.hero::before, .hero::after {
  content: "";
  position: absolute;
  border-radius: 999px;
}

.hero::before {
  width: 90px; height: 90px;
  border: 14px dotted rgba(13, 143, 170, 0.12);
  top: 90px; right: 90px;
}

.hero::after {
  width: 120px; height: 120px;
  border: 16px dotted rgba(22, 195, 227, 0.32);
  left: -40px; bottom: 120px;
}

.hero-inner {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(340px, 420px);
  gap: 40px;
  align-items: start;
  padding: 72px 0 54px;
}

.hero-title, .plan-heading, .hero-card h2, .tm-card-body h3,
.plan-card h3, .feature-card h3, .faq-question span, .cta-panel h2 {
  font-family: "Urbanist", sans-serif;
  letter-spacing: -0.04em;
}

.hero-title {
  margin: 18px 0 16px;
  font-size: clamp(2.7rem, 4vw, 4rem);
  line-height: 1.08;
  letter-spacing: -0.04em;
  overflow-wrap: break-word;
  word-wrap: break-word;
  max-width: 920px;
}

.hero-title .highlight, .hero-price strong, .hero-stat strong,
.tm-brand, .tm-slogan-text, .timeline-number { color: var(--brand-deep); }

.hero-copy p, .hero-price span { color: var(--muted); }

.hero-copy p {
  max-width: 650px;
  margin: 0;
  font-size: 1.08rem;
  line-height: 1.86;
}

.hero-taglines { display: grid; gap: 12px; margin: 22px 0 0; }

.hero-tagline {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--muted);
  font-size: 0.96rem;
  line-height: 1.65;
}

.hero-tagline::before {
  content: "";
  width: 10px; height: 10px;
  flex: 0 0 auto;
  border-radius: 999px;
  background: linear-gradient(135deg, #7ddff0, #0d8faa);
}

.hero-points { display: grid; gap: 14px; margin: 30px 0 0; max-width: 720px; }

.hero-point {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  color: var(--text);
  font-size: 1rem;
  line-height: 1.7;
}

.hero-point-icon {
  width: 30px; height: 30px;
  flex: 0 0 auto;
  border-radius: 999px;
  display: grid;
  place-items: center;
  background: rgba(22, 195, 227, 0.14);
  border: 1px solid rgba(13, 143, 170, 0.26);
  color: var(--brand-deep);
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 0.08em;
}

.hero-price {
  display: inline-flex;
  align-items: center;
  gap: 20px;
  margin: 34px 0 0;
  padding: 18px 22px;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.82);
  border: 1px solid rgba(13, 143, 170, 0.14);
  box-shadow: 0 18px 36px rgba(13, 143, 170, 0.08);
}

.hero-price strong {
  font-family: "Urbanist", sans-serif;
  font-size: 1.6rem;
  line-height: 1.1;
}

.hero-price span { max-width: 540px; line-height: 1.6; }

.hero-actions { gap: 16px; margin-top: 24px; flex-wrap: wrap; display: flex; align-items: center; }

.hero-stats { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 14px; }

.hero-keywords {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin: 22px 0 34px;
}

.hero-keywords span {
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  padding: 0 14px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.72);
  border: 1px solid rgba(13, 143, 170, 0.14);
  color: var(--muted);
  font-size: 0.88rem;
  font-weight: 600;
}

.hero-stat {
  padding: 22px;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.74);
  border: 1px solid rgba(13, 143, 170, 0.12);
  box-shadow: 0 14px 28px rgba(13, 143, 170, 0.06);
}

.hero-stat strong {
  font-family: "Urbanist", sans-serif;
  font-size: 1.45rem;
  margin-bottom: 6px;
}

.hero-stat span {
  font-size: 0.92rem;
  color: var(--muted);
  line-height: 1.5;
  display: block;
}

.hero-card {
  position: relative;
  border-radius: 20px;
  padding: clamp(24px, 3vw, 36px) clamp(18px, 3vw, 32px) clamp(24px, 3vw, 32px);
  background: rgba(255, 255, 255, 0.92);
  color: var(--text);
  box-shadow: 0 32px 80px rgba(13, 143, 170, 0.12), 0 0 0 1px rgba(13, 143, 170, 0.08);
}

.hero-card::before {
  content: "";
  position: absolute;
  inset: auto 20px -12px 20px;
  height: 32px;
  border-radius: 18px;
  background: rgba(22, 195, 227, 0.24);
  filter: blur(16px);
  z-index: -1;
}

.hero-card .eyebrow {
  max-width: 100%;
  white-space: normal;
  line-height: 1.2;
  text-align: center;
}

.hero-card h2 {
  max-width: 11em;
  margin: 12px 0 0;
  font-size: clamp(1.72rem, 1.35rem + 1.15vw, 2.2rem);
  line-height: 1.12;
  letter-spacing: -0.035em;
  overflow-wrap: break-word;
  text-wrap: balance;
}

.hero-card > p { margin: 14px 0 0; }

.hero-card p, .tm-card-body p, .feature-card p, .plan-card p,
.faq-answer, .cta-panel p, .footer-disclaimer, .section-copy {
  color: var(--muted);
  line-height: 1.75;
}

.hero-card-highlights { display: grid; gap: 10px; margin: 18px 0 0; }

.hero-card-highlights div {
  position: relative;
  padding-left: 18px;
  color: var(--muted);
  font-size: 0.95rem;
  line-height: 1.6;
}

.hero-card-highlights div::before {
  content: "";
  position: absolute;
  left: 0; top: 9px;
  width: 8px; height: 8px;
  border-radius: 50%;
  background: linear-gradient(135deg, #7ddff0, #0d8faa);
}

.hero-form { display: grid; gap: 16px; margin-top: 24px; }

.form-fields { display: grid; gap: 14px; }

.field-label {
  display: block;
  margin: 0 0 6px;
  color: #376a73;
  font-size: 0.88rem;
  font-weight: 700;
}

.field-wrap { display: grid; gap: 8px; }

.form-success {
  display: none;
  margin: 0;
  padding: 18px;
  border-radius: 8px;
  color: #0b7285;
  background: #e7fafe;
  font-size: 0.95rem;
  line-height: 1.65;
}

.form-success.active { display: block; }

.form-success strong {
  display: block;
  margin-bottom: 6px;
  font-family: "Urbanist", sans-serif;
  font-size: 1.05rem;
  letter-spacing: -0.03em;
}

.form-error {
  display: none;
  margin: 0;
  padding: 12px 14px;
  border-radius: 8px;
  color: #991b1b;
  background: #fee2e2;
  font-size: 0.9rem;
  line-height: 1.55;
}

.form-error.active { display: block; }

.hero-form-note {
  margin: 14px 0 0;
  font-size: 0.84rem;
  color: #64748b;
  line-height: 1.7;
}

.input, .select {
  width: 100%;
  min-height: 58px;
  border: 1px solid #b7eaf5;
  border-radius: 8px;
  padding: 0 18px;
  background: #fafcff;
  font: inherit;
  color: var(--text);
  transition: border-color 0.18s ease, box-shadow 0.18s ease;
}

.input::placeholder { color: #94a3b8; }

.select-shell { position: relative; }

.select {
  appearance: none !important;
  -webkit-appearance: none !important;
  -moz-appearance: none !important;
  padding-right: 56px;
  background-image: none !important;
}

.select-shell::after {
  content: "";
  position: absolute;
  right: 18px;
  top: 50%;
  width: 18px;
  height: 18px;
  transform: translateY(-50%);
  pointer-events: none;
  background: center / 18px 18px no-repeat url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 20 20' fill='none'%3E%3Cpath d='M5 7.5 10 12.5 15 7.5' stroke='%232a241f' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
}

.input:focus, .select:focus {
  outline: none;
  border-color: rgba(22, 195, 227, 0.8);
  box-shadow: 0 0 0 4px rgba(22, 195, 227, 0.16);
}

.plan-card .btn { width: 100%; margin-top: 18px; }

.floating-contact {
  position: fixed;
  right: 18px;
  bottom: 18px;
  z-index: 30;
  display: flex;
}

.floating-contact .btn {
  width: 58px;
  height: 58px;
  min-height: 58px;
  padding: 0;
  border-radius: 999px;
  box-shadow: 0 14px 30px rgba(13, 143, 170, 0.18);
}

.whatsapp-icon svg { width: 28px; height: 28px; fill: currentColor; }

.modal {
  position: fixed;
  inset: 0;
  z-index: 50;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 20px;
  background: rgba(13, 143, 170, 0.22);
}

.modal.active { display: flex; }

.modal-panel {
  width: min(520px, 100%);
  max-height: 92vh;
  overflow-y: auto;
  position: relative;
  border-radius: 8px;
  padding: 28px;
  background: #fafcff;
  box-shadow: 0 30px 80px rgba(13, 143, 170, 0.18);
}

.modal-panel h2 {
  margin: 12px 0 10px;
  font-family: "Urbanist", sans-serif;
  font-size: 1.85rem;
  line-height: 1.04;
  letter-spacing: -0.04em;
  text-wrap: balance;
}

.modal-panel p { margin: 0; color: var(--muted); line-height: 1.7; }

.modal-close {
  position: absolute;
  top: 18px;
  right: 18px;
  width: 40px;
  height: 40px;
  padding: 0 !important;
  border: 0 !important;
  border-radius: 999px;
  appearance: none !important;
  -webkit-appearance: none !important;
  background: #e7fafe;
  color: var(--text);
  line-height: 0;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.15s ease, transform 0.15s ease;
  z-index: 2;
}

.modal-close:hover { background: #d4f4fb; transform: translateY(-1px); }

.modal-close svg {
  width: 18px; height: 18px;
  display: block;
  stroke: currentColor;
  stroke-width: 2.2;
  fill: none;
  stroke-linecap: round;
}

.modal-logo-header {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 20px;
  padding-bottom: 20px;
  border-bottom: 1px solid #d7f1f7;
}

.modal-logo-mark {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.modal-logo-img {
  height: 72px;
  width: auto;
  max-width: 200px;
  display: block;
  object-fit: contain;
}

.modal-logo-text strong {
  display: block;
  font-family: "Urbanist", sans-serif;
  font-size: 0.95rem;
  font-weight: 800;
  letter-spacing: -0.03em;
  color: var(--text);
}

.modal-logo-text span {
  display: block;
  font-size: 0.78rem;
  color: var(--muted);
  margin-top: 1px;
}

.modal-badge {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 6px 12px;
  border-radius: 999px;
  background: #edfafd;
  border: 1px solid rgba(13, 143, 170, 0.22);
  color: var(--brand-deep);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  margin-bottom: 10px;
}

.modal-badge::before {
  content: "";
  width: 7px; height: 7px;
  border-radius: 50%;
  background: var(--brand);
  flex-shrink: 0;
}

/* INTRO BAND */
.intro-band {
  padding: 26px 0;
  margin-top: 48px;
  background: linear-gradient(90deg, #e7fafe, #f2fdff, #e7fafe);
  border-top: 1px solid rgba(13, 143, 170, 0.18);
  border-bottom: 1px solid rgba(13, 143, 170, 0.18);
}

.intro-band-inner { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 22px; }

.intro-card {
  padding: 22px 24px;
  border-radius: 16px;
  background: #fff;
  border: 1px solid var(--line);
  box-shadow: 0 6px 20px rgba(13, 143, 170, 0.08);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}
.intro-card:hover { transform: translateY(-3px); box-shadow: 0 12px 32px rgba(13, 143, 170, 0.12); }

.intro-card strong { display: block; font-family: "Urbanist", sans-serif; font-size: 1.3rem; margin-bottom: 6px; }
.intro-card span { display: block; color: var(--muted); line-height: 1.65; }

/* TRADEMARK GRID */
.trademark-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 22px;
  margin-top: 36px;
}

.tm-card {
  background: #fff;
  border: 1px solid var(--line);
  box-shadow: 0 8px 32px rgba(13, 143, 170, 0.08);
  border-radius: 20px;
  overflow: hidden;
  transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
}

.tm-card:hover {
  transform: translateY(-6px);
  border-color: rgba(22, 195, 227, 0.3);
  box-shadow: 0 24px 56px rgba(13, 143, 170, 0.14);
}

.tm-visual {
  min-height: 240px;
  padding: 28px 24px;
  display: grid;
  place-items: center;
  color: var(--text);
  background:
    radial-gradient(circle at top right, rgba(125, 223, 240, 0.3), transparent 7rem),
    radial-gradient(circle at bottom left, rgba(220, 246, 251, 0.9), transparent 9rem),
    linear-gradient(155deg, #f3fcfe, #e1f7fb 72%);
}

.tm-visual-stack { width: 100%; display: grid; justify-items: center; gap: 16px; }

.tm-chip {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 34px;
  padding: 0 12px;
  border-radius: 999px;
  border: 1px solid rgba(13, 143, 170, 0.14);
  background: rgba(255, 255, 255, 0.68);
  color: var(--muted);
  font-size: 0.76rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.tm-brand, .tm-slogan-text, .tm-wordmark { font-family: "Urbanist", sans-serif; text-align: center; }
.tm-brand { font-size: 3.2rem; font-weight: 800; letter-spacing: -0.06em; }
.tm-brand.small { font-size: 2.5rem; }
.tm-wordmark { font-size: 2.2rem; font-weight: 800; letter-spacing: 0.08em; color: var(--brand-deep); }
.tm-wordmark-small { font-size: 1.3rem; text-align: left; letter-spacing: 0.04em; }
.tm-wordmark-device { max-width: 130px; line-height: 1.2; }

.tm-combo-lockup { width: 100%; display: flex; align-items: center; justify-content: center; gap: 18px; }

.tm-logo-mark {
  width: 88px; height: 88px;
  border-radius: 34px 34px 8px 34px;
  background: linear-gradient(135deg, #7ddff0, #0d8faa);
  box-shadow: inset 0 0 0 12px rgba(255, 255, 255, 0.24);
  transform: rotate(-16deg);
  position: relative;
  flex: 0 0 auto;
}

.tm-logo-mark::after {
  content: "";
  position: absolute;
  width: 36px; height: 36px;
  right: 12px; bottom: 12px;
  border-radius: 14px;
  background: rgba(13, 143, 170, 0.32);
}

.tm-symbol-stage { position: relative; width: 100%; min-height: 120px; display: grid; place-items: center; }

.tm-sub { font-size: 0.82rem; text-transform: uppercase; letter-spacing: 0.12em; color: rgba(98, 122, 112, 0.82); text-align: center; }
.tm-slogan-text { font-size: 1.3rem; font-weight: 800; letter-spacing: 0.12em; color: var(--brand-deep); }
.tm-slogan { width: 100%; display: grid; justify-items: center; gap: 10px; }

.tm-slogan-line {
  width: 160px; height: 2px;
  border-radius: 999px;
  background: linear-gradient(90deg, transparent, rgba(22, 195, 227, 0.42), transparent);
}

.tm-slogan-line.short { width: 96px; opacity: 0.8; }

.tm-card-body { padding: 28px 30px 30px; }
.tm-card-body h3 { font-size: 1.8rem; margin-bottom: 14px; font-family: "Urbanist", sans-serif; letter-spacing: -0.04em; }
.tm-card-body p { margin: 0; font-size: 1.02rem; line-height: 1.8; }

/* PLANS */
.plans-grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 22px; margin-top: 34px; }

.plan-card {
  border-radius: 20px;
  padding: 32px;
  background: #fff;
  border: 1px solid var(--line);
  box-shadow: 0 8px 32px rgba(13, 143, 170, 0.08);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.plan-card:hover { transform: translateY(-4px); box-shadow: 0 20px 48px rgba(13, 143, 170, 0.12); }

.plan-card.featured {
  background: linear-gradient(180deg, #edfafd, #ffffff);
  border-color: rgba(13, 143, 170, 0.24);
  transform: translateY(-8px);
}

.plan-badge {
  display: inline-flex;
  border-radius: 999px;
  padding: 8px 12px;
  background: var(--brand-soft);
  color: var(--brand-deep);
  font-weight: 800;
  font-size: 0.8rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.plan-heading { margin-top: 18px; font-size: 1.8rem; }
.plan-price { margin: 18px 0 4px; font-family: "Urbanist", sans-serif; font-size: 3rem; letter-spacing: -0.05em; display: flex; align-items: baseline; gap: 8px; }
.plan-price small { font-size: 0.72rem; font-weight: 600; color: var(--muted); letter-spacing: 0.06em; text-transform: uppercase; padding: 3px 8px; background: var(--brand-soft); border-radius: 999px; }

.list { padding: 0; margin: 18px 0 0; list-style: none; }
.list li { position: relative; padding-left: 28px; margin-bottom: 12px; line-height: 1.65; }
.list li::before { content: "\2022"; position: absolute; left: 8px; top: -1px; color: var(--brand-deep); font-size: 1.2rem; }

/* SERVICES */
.services-grid { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 22px; margin-top: 34px; }

.service-card { border-radius: 20px; padding: 28px; background: #fff; border: 1px solid var(--line); box-shadow: 0 8px 32px rgba(13, 143, 170, 0.08); transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease; }
.service-card:hover { transform: translateY(-4px); border-color: var(--brand); box-shadow: 0 16px 40px rgba(13, 143, 170, 0.12); }
.service-card h3 { margin: 0 0 12px; font-family: "Urbanist", sans-serif; font-size: 1.45rem; letter-spacing: -0.03em; }
.service-card p { margin: 0; color: var(--muted); line-height: 1.75; }

/* FEATURES */
.feature-grid { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 22px; margin-top: 34px; }

.feature-card { border-radius: 20px; padding: 28px; background: #fff; border: 1px solid var(--line); box-shadow: 0 8px 32px rgba(13, 143, 170, 0.08); transition: transform 0.3s ease, box-shadow 0.3s ease; }
.feature-card:hover { transform: translateY(-4px); box-shadow: 0 16px 40px rgba(13, 143, 170, 0.12); }
.feature-card h3 { font-family: "Urbanist", sans-serif; letter-spacing: -0.04em; margin-bottom: 10px; }

.feature-icon {
  width: 56px; height: 56px;
  margin-bottom: 18px;
  display: grid;
  place-items: center;
  border-radius: 18px;
  font-size: 1.35rem;
  font-weight: 800;
  color: #fff;
  background: linear-gradient(135deg, #7ddff0, #0d8faa);
}

/* TIMELINE */
.timeline { margin-top: 34px; display: grid; gap: 18px; }

.timeline-item {
  display: grid;
  grid-template-columns: 82px minmax(0, 1fr);
  gap: 20px;
  align-items: start;
  border-radius: 20px;
  padding: 24px 28px;
  background: #fff;
  border: 1px solid var(--line);
  box-shadow: 0 8px 32px rgba(13, 143, 170, 0.08);
  transition: box-shadow 0.3s ease, border-color 0.3s ease;
}
.timeline-item:hover { border-color: var(--brand); box-shadow: 0 16px 40px rgba(13, 143, 170, 0.12); }

.timeline-number {
  width: 82px; height: 82px;
  border-radius: 24px;
  display: grid;
  place-items: center;
  background: linear-gradient(135deg, #eefcff, #d9f5fb);
  font-family: "Urbanist", sans-serif;
  font-size: 1.6rem;
  font-weight: 800;
  color: var(--brand-deep);
}

/* TABLE */
.table-wrap {
  margin-top: 34px;
  overflow: auto;
  border-radius: 24px;
  border: 1px solid var(--line);
  background: #fff;
  box-shadow: 0 18px 44px rgba(13, 143, 170, 0.08);
}

.sahi-advisor-page table { width: 100%; border-collapse: collapse; min-width: 760px; }
.sahi-advisor-page th, .sahi-advisor-page td { padding: 18px 20px; text-align: left; vertical-align: top; border-bottom: 1px solid var(--line); line-height: 1.65; }
.sahi-advisor-page th { background: #edfafd; font-family: "Urbanist", sans-serif; font-size: 0.98rem; }

/* FAQ */
.faq-grid { display: grid; margin-top: 34px; gap: 12px; }

.faq-item { overflow: hidden; background: #fff; border: 1px solid var(--line); box-shadow: 0 4px 16px rgba(13, 143, 170, 0.08); border-radius: 16px; transition: box-shadow 0.2s ease, border-color 0.2s ease; }
.faq-item:hover { border-color: var(--brand); box-shadow: 0 6px 24px rgba(13, 143, 170, 0.12); }

.faq-question { width: 100%; border: 0; display: flex; align-items: center; justify-content: space-between; gap: 20px; background: transparent; font: inherit; text-align: left; cursor: pointer; padding: 20px 22px; }
.faq-question span { font-size: 1rem; font-weight: 700; font-family: "Urbanist", sans-serif; letter-spacing: -0.03em; }

.faq-toggle { display: inline-flex; border-radius: 999px; width: 32px; height: 32px; flex-shrink: 0; align-items: center; justify-content: center; color: var(--brand-deep); background: var(--brand-soft); font-weight: 800; font-size: 1.1rem; transition: background 0.2s ease, color 0.2s ease; }

.faq-answer { max-height: 0; overflow: hidden; padding: 0 22px; transition: max-height 0.3s ease, padding 0.3s ease; color: var(--muted); line-height: 1.72; font-size: 0.97rem; }
.faq-item.active .faq-answer { max-height: 500px; padding: 0 22px 18px; }
.faq-item.active .faq-toggle { background: var(--brand-deep); color: #fff; }

/* CTA */
.cta-panel {
  border-radius: 28px;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 32px;
  align-items: center;
  padding: 48px 44px;
  color: var(--text);
  background:
    radial-gradient(circle at 80% 20%, rgba(125, 223, 240, 0.32), transparent 14rem),
    radial-gradient(circle at 10% 80%, rgba(231, 250, 254, 0.92), transparent 10rem),
    linear-gradient(135deg, #f3fcfe, #e0f8fc);
  box-shadow: 0 24px 64px rgba(13, 143, 170, 0.12);
  border: 1px solid rgba(13, 143, 170, 0.1);
}

.cta-panel h2 { margin: 0 0 10px; font-size: clamp(2rem, 3.2vw, 3rem); line-height: 1.05; font-family: "Urbanist", sans-serif; letter-spacing: -0.04em; }
.cta-panel p { margin: 0; max-width: 720px; color: var(--muted); line-height: 1.75; }

/* FOOTER */
.sahi-advisor-page footer { margin-top: 88px; background: #ddf6fb; color: var(--text); }
.footer-copy { text-align: center; padding: 18px 16px; font-size: 0.95rem; border-bottom: 1px solid rgba(13, 143, 170, 0.12); }
.footer-disclaimer { padding: 24px 0 42px; font-size: 0.92rem; }
.footer-disclaimer p { margin: 0; text-align: justify; color: var(--muted); line-height: 1.75; }

/* ANIMATIONS */
.fade-up { opacity: 0; transform: translateY(22px); animation: fadeUp 0.8s ease forwards; }
.fade-up:nth-child(2) { animation-delay: 0.08s; }
.fade-up:nth-child(3) { animation-delay: 0.16s; }
.fade-up:nth-child(4) { animation-delay: 0.24s; }
@keyframes fadeUp { to { opacity: 1; transform: translateY(0); } }

/* RESPONSIVE */
@media (max-width: 1080px) {
  .hero-inner, .cta-panel, .feature-grid, .services-grid, .trademark-grid, .intro-band-inner {
    grid-template-columns: 1fr;
  }
  .hero-card { max-width: 640px; width: 100%; margin: 0 auto; }
  .hero-card h2 { max-width: 100%; }
  .plans-grid { grid-template-columns: 1fr; }
  .plan-card.featured { transform: none; }
}

@media (max-width: 760px) {
  .section { padding: 66px 0; }
  .hero-inner, .hero-stats, .intro-band-inner, .services-grid, .cta-panel { grid-template-columns: 1fr; }
  .hero-inner { padding: 52px 0 34px; }
  /* Smaller, better-proportioned hero heading on phones/tablets */
  .hero-title { font-size: clamp(1.9rem, 7vw, 2.6rem); }
  .timeline-item { grid-template-columns: 1fr; }
  .timeline-number { width: 64px; height: 64px; border-radius: 18px; }
  .btn { width: 100%; }
  .floating-contact { right: 14px; bottom: 14px; }
}

@media (max-width: 540px) {
  .container { width: min(var(--container), calc(100% - 22px)); }
  .hero-card { border-radius: 16px; }
  .hero-card .eyebrow {
    padding-inline: 14px;
    font-size: 10px;
  }
  .hero-card h2 {
    font-size: clamp(1.68rem, 8vw, 2rem);
    line-height: 1.14;
  }
}
