/* ==========================================================================
   CA Inter Law Masterclass Landing Page Stylesheet
   Modern Clean White & APT Brand Red Theme — 100% Mobile Responsive
   ========================================================================== */

:root {
  /* Core Color Palette - Clean White & APT Red */
  --bg-main: #FFFFFF;
  --bg-alt: #F8FAFC;
  --bg-card: #FFFFFF;
  --bg-dark: #0F172A;
  
  --text-main: #0F172A;
  --text-soft: #475569;
  --text-muted: #64748B;
  --text-light: #94A3B8;
  
  --brand-red: #DC2626;
  --brand-red-deep: #B91C1C;
  --brand-red-darker: #991B1B;
  --brand-red-light: #FEE2E2;
  --brand-red-soft: #FEF2F2;
  
  --border: #E2E8F0;
  --border-subtle: #EDF2F7;
  --border-red: rgba(220, 38, 38, 0.25);
  
  --gold: #D97706;
  --gold-light: #FEF3C7;
  --ok: #16A34A;
  --ok-light: #DCFCE7;
  
  /* Typography */
  --font-serif: 'Spectral', Georgia, serif;
  --font-serif-sc: 'Spectral SC', Georgia, serif;
  --font-sans: 'Inter', system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  --font-mono: 'JetBrains Mono', monospace;
  
  /* Shadows & Elevation */
  --shadow-sm: 0 1px 3px rgba(15, 23, 42, 0.05);
  --shadow-md: 0 4px 16px rgba(15, 23, 42, 0.07);
  --shadow-lg: 0 12px 32px rgba(15, 23, 42, 0.09);
  --shadow-card: 0 10px 30px rgba(220, 38, 38, 0.07), 0 2px 8px rgba(15, 23, 42, 0.05);
  --shadow-float: 0 8px 24px rgba(220, 38, 38, 0.35);
  
  /* Transitions */
  --transition: all 0.2s cubic-bezier(0.16, 1, 0.3, 1);
}

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

html {
  scroll-behavior: smooth;
  font-size: 16px;
  -webkit-text-size-adjust: 100%;
}

body {
  background-color: var(--bg-main);
  color: var(--text-main);
  font-family: var(--font-sans);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
  width: 100%;
}

/* Layout Wrappers */
.wrap {
  max-width: 1060px;
  margin: 0 auto;
  padding: 0 24px;
  width: 100%;
}

/* Typography Defaults */
h1, h2, h3, h4 {
  font-family: var(--font-serif);
  color: var(--text-main);
  font-weight: 700;
  letter-spacing: -0.02em;
  word-break: break-word;
}

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

img {
  max-width: 100%;
  height: auto;
  display: block;
}

/* Eyebrow Label (Statute Style in Brand Red) */
.eyebrow {
  font-family: var(--font-mono);
  font-size: 11.5px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--brand-red);
  font-weight: 700;
  display: inline-flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px;
  margin-bottom: 14px;
}

.eyebrow::before {
  content: "";
  width: 20px;
  height: 2px;
  background: var(--brand-red);
  display: inline-block;
}

.eyebrow .sep {
  color: #CBD5E1;
  font-weight: bold;
}

.eyebrow-free {
  color: var(--ok);
  background: var(--ok-light);
  padding: 2px 8px;
  border-radius: 4px;
  font-size: 10.5px;
  font-weight: 700;
  border: 1px solid rgba(22, 163, 74, 0.2);
}

.lede {
  color: var(--text-soft);
  max-width: 680px;
  margin-bottom: 32px;
  font-size: 16px;
  line-height: 1.6;
}

/* ==========================================================================
   Header & Masthead
   ========================================================================== */
header.site {
  position: sticky;
  top: 0;
  z-index: 90;
  background: rgba(255, 255, 255, 0.98);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--border);
  transition: box-shadow 0.2s ease;
  width: 100%;
}

header.site.scrolled {
  box-shadow: 0 4px 20px rgba(15, 23, 42, 0.08);
}

.site-inner {
  max-width: 1060px;
  margin: 0 auto;
  padding: 12px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.brand {
  display: flex;
  align-items: center;
}

.brand-logo-img {
  height: 46px;
  width: auto;
  object-fit: contain;
  display: block;
}

.header-nav-links {
  display: flex;
  align-items: center;
  gap: 22px;
}

.nav-link {
  font-size: 13.5px;
  font-weight: 500;
  color: var(--text-soft);
  transition: color 0.15s ease;
}

.nav-link:hover {
  color: var(--brand-red);
}

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

.free-pill-top {
  font-family: var(--font-mono);
  font-size: 11px;
  background: var(--ok-light);
  color: var(--ok);
  border: 1px solid rgba(22, 163, 74, 0.3);
  padding: 4px 10px;
  border-radius: 4px;
  font-weight: 700;
  letter-spacing: 0.04em;
}

.live-pill {
  font-family: var(--font-mono);
  font-size: 11px;
  color: var(--brand-red);
  background: var(--brand-red-soft);
  border: 1px solid var(--border-red);
  padding: 4px 10px;
  border-radius: 20px;
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 6px;
}

.pulse-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--brand-red);
  animation: pulseDot 1.8s infinite ease-in-out;
}

@keyframes pulseDot {
  0% { transform: scale(0.9); opacity: 0.8; }
  50% { transform: scale(1.3); opacity: 1; box-shadow: 0 0 6px rgba(220, 38, 38, 0.6); }
  100% { transform: scale(0.9); opacity: 0.8; }
}

.btn-header {
  font-family: var(--font-sans);
  font-weight: 600;
  font-size: 13.5px;
  background: var(--brand-red);
  color: #FFFFFF;
  border: 1px solid var(--brand-red-deep);
  padding: 9px 18px;
  border-radius: 4px;
  cursor: pointer;
  letter-spacing: 0.01em;
  transition: var(--transition);
}

.btn-header:hover {
  background: var(--brand-red-deep);
  transform: translateY(-1px);
  box-shadow: 0 4px 12px rgba(220, 38, 38, 0.25);
}

/* ==========================================================================
   Hero Section with Two-Column Grid & Embedded Registration Form
   ========================================================================== */
.hero {
  padding: 56px 0 48px;
  border-bottom: 1px solid var(--border);
  background: linear-gradient(180deg, #FFFFFF 0%, var(--bg-alt) 100%);
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.15fr 0.95fr;
  gap: 44px;
  align-items: start;
  margin-bottom: 44px;
}

.hero-content {
  display: flex;
  flex-direction: column;
}

.hero-title {
  font-size: clamp(26px, 4.2vw, 42px);
  line-height: 1.18;
  margin-bottom: 18px;
  color: var(--text-main);
}

.hero-title em {
  font-style: italic;
  color: var(--brand-red);
  font-weight: 700;
}

.hero-sub {
  font-size: clamp(14.5px, 2vw, 16.5px);
  color: var(--text-soft);
  line-height: 1.6;
  margin-bottom: 24px;
}

/* Faculty Mini Preview in Hero */
.faculty-mini-bar {
  display: flex;
  align-items: center;
  gap: 14px;
  background: #FFFFFF;
  border: 1px solid var(--border);
  padding: 10px 14px;
  border-radius: 6px;
  margin-bottom: 20px;
  box-shadow: var(--shadow-sm);
}

.faculty-mini-img {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  object-fit: cover;
  object-position: top;
  border: 2px solid var(--brand-red);
  flex-shrink: 0;
}

.faculty-mini-info {
  display: flex;
  flex-direction: column;
}

.faculty-mini-info .f-name {
  font-family: var(--font-serif);
  font-size: 16.5px;
  font-weight: 700;
  color: var(--text-main);
  display: flex;
  align-items: center;
  gap: 8px;
}

.badge-fca {
  background: var(--brand-red);
  color: #fff;
  font-family: var(--font-mono);
  font-size: 10px;
  padding: 2px 6px;
  border-radius: 3px;
  font-weight: 700;
}

.faculty-mini-info .f-role {
  font-size: 12.5px;
  color: var(--text-soft);
}

/* Schedule Strip */
.schedule-strip {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 22px;
}

.schedule-pill {
  background: #FFFFFF;
  border: 1px solid var(--border);
  padding: 8px 14px;
  border-radius: 4px;
  font-size: 13px;
  color: var(--text-main);
  display: flex;
  align-items: center;
  gap: 6px;
  box-shadow: var(--shadow-sm);
}

.highlight-pill {
  background: var(--ok-light);
  border-color: rgba(22, 163, 74, 0.3);
  color: var(--ok);
  font-weight: 600;
}

.pill-icon {
  font-size: 14px;
}

/* Trust Row */
.hero-trust-row {
  display: flex;
  flex-direction: column;
  gap: 9px;
  margin-top: 6px;
}

.trust-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13.5px;
  color: var(--text-main);
  font-weight: 500;
}

.t-check {
  color: var(--ok);
  font-weight: 800;
  font-size: 15px;
}

/* ==========================================================================
   Hero Embedded Form Card
   ========================================================================== */
.hero-form-wrapper {
  position: relative;
  width: 100%;
}

.form-card {
  background: #FFFFFF;
  border: 2px solid var(--border-red);
  padding: 30px 26px;
  border-radius: 12px;
  box-shadow: var(--shadow-card);
  position: relative;
  width: 100%;
}

.form-card-badge {
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--brand-red);
  color: #FFFFFF;
  font-family: var(--font-mono);
  font-size: 10.5px;
  letter-spacing: 0.08em;
  font-weight: 700;
  padding: 4px 16px;
  border-radius: 20px;
  white-space: nowrap;
  box-shadow: 0 2px 8px rgba(220, 38, 38, 0.25);
}

.form-card-header {
  text-align: center;
  margin-bottom: 14px;
  margin-top: 4px;
}

.form-card-header h3 {
  font-size: clamp(20px, 3.5vw, 23px);
  margin-bottom: 4px;
  color: var(--text-main);
}

.form-card-header p {
  font-size: 12.5px;
  color: var(--text-soft);
}

.form-pricing-strip {
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: var(--brand-red-soft);
  border: 1px solid var(--border-red);
  padding: 10px 14px;
  border-radius: 6px;
  margin-bottom: 18px;
}

.form-price-main {
  display: flex;
  align-items: baseline;
  gap: 2px;
  font-family: var(--font-serif);
  font-size: 28px;
  color: var(--brand-red);
  font-weight: 700;
}

.form-price-main .currency {
  font-size: 20px;
}

.form-price-main .strike {
  font-size: 14.5px;
  color: var(--text-muted);
  text-decoration: line-through;
  margin-left: 8px;
  font-family: var(--font-sans);
  font-weight: 400;
}

.free-badge-tag {
  background: var(--brand-red);
  color: #FFFFFF;
  font-family: var(--font-mono);
  font-size: 11px;
  font-weight: 800;
  padding: 4px 9px;
  border-radius: 4px;
  letter-spacing: 0.04em;
}

/* Form Fields */
.form-group {
  margin-bottom: 14px;
}

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

.form-group label .req {
  color: var(--brand-red);
}

.form-group input[type="text"],
.form-group input[type="email"],
.form-group input[type="tel"] {
  width: 100%;
  padding: 12px 14px;
  border: 1px solid var(--border);
  background: #FFFFFF;
  font-family: var(--font-sans);
  font-size: 16px;
  border-radius: 6px;
  color: var(--text-main);
  transition: border-color 0.15s ease, box-shadow 0.15s ease;
  -webkit-appearance: none;
}

.input-with-prefix {
  display: flex;
  align-items: center;
  border: 1px solid var(--border);
  background: #FFFFFF;
  border-radius: 6px;
  overflow: hidden;
  transition: border-color 0.15s ease, box-shadow 0.15s ease;
}

.phone-prefix {
  padding: 12px 12px;
  background: var(--bg-alt);
  font-family: var(--font-mono);
  font-size: 14px;
  color: var(--text-soft);
  border-right: 1px solid var(--border);
  font-weight: 600;
  flex-shrink: 0;
}

.input-with-prefix input {
  border: none !important;
  flex: 1;
  padding: 12px 12px;
  font-family: var(--font-sans);
  font-size: 16px;
  outline: none;
  width: 100%;
}

.form-group input:focus,
.input-with-prefix:focus-within {
  outline: none;
  border-color: var(--brand-red);
  box-shadow: 0 0 0 3px rgba(220, 38, 38, 0.15);
}

.custom-radio-group {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}

.custom-radio-btn {
  flex: 1;
  min-width: 80px;
  border: 1px solid var(--border);
  background: #FFFFFF;
  padding: 10px 8px;
  text-align: center;
  font-size: 13px;
  cursor: pointer;
  border-radius: 6px;
  font-weight: 500;
  transition: var(--transition);
  user-select: none;
}

.custom-radio-btn:hover {
  background: var(--brand-red-soft);
  border-color: var(--border-red);
}

.custom-radio-btn.selected {
  border-color: var(--brand-red);
  background: var(--brand-red-soft);
  color: var(--brand-red);
  font-weight: 700;
}

.custom-radio-btn input {
  display: none;
}

.btn-block {
  width: 100%;
  padding: 14px;
  font-size: 15px;
  margin-top: 6px;
}

.form-footer-note {
  text-align: center;
  font-size: 11px;
  color: var(--text-muted);
  margin-top: 10px;
}

.form-error {
  color: var(--brand-red);
  font-size: 11.5px;
  margin-top: 4px;
  display: none;
  font-weight: 500;
}

/* Success Box in Form */
.form-success-box {
  text-align: center;
  padding: 18px 6px;
}

.check-icon-circle {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: var(--ok-light);
  color: var(--ok);
  font-size: 28px;
  font-weight: 800;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 12px;
  border: 2px solid var(--ok);
}

.form-success-box h4 {
  font-size: 20px;
  color: var(--text-main);
  margin-bottom: 4px;
}

.form-success-box p {
  font-size: 13.5px;
  color: var(--text-soft);
  line-height: 1.5;
}

.success-channel-box {
  margin-top: 14px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  text-align: left;
}

.channel-row {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  padding: 10px 12px;
  background: var(--bg-alt);
  border: 1px solid var(--border);
  border-radius: 6px;
  font-size: 12.5px;
}

.channel-icon {
  font-size: 16px;
  line-height: 1.2;
}

.channel-row strong {
  color: var(--text-main);
  display: block;
  font-size: 12.5px;
}

.channel-row p {
  margin: 2px 0 0;
  font-size: 12px;
  color: var(--text-soft);
}

/* OTP Verification State Box */
.form-otp-box {
  text-align: center;
  padding: 10px 4px 6px;
  animation: fadeInOtp 0.25s ease;
}

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

.otp-icon-circle {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: var(--brand-red-soft);
  color: var(--brand-red);
  font-size: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 12px;
  border: 2px solid var(--border-red);
}

.form-otp-box h4 {
  font-size: 20px;
  color: var(--text-main);
  margin-bottom: 4px;
}

.form-otp-box p.otp-sub {
  font-size: 13.5px;
  color: var(--text-soft);
  line-height: 1.5;
  margin-bottom: 16px;
}

.otp-phone-highlight {
  color: var(--brand-red-deep);
  font-weight: 700;
  font-family: var(--font-mono);
  font-size: 14px;
}

.otp-input-group {
  margin: 14px 0 10px;
}

.otp-input {
  width: 100% !important;
  max-width: 230px;
  margin: 0 auto;
  padding: 12px 14px;
  font-family: var(--font-mono);
  font-size: 24px !important;
  letter-spacing: 8px;
  text-align: center;
  border: 2px solid var(--brand-red);
  border-radius: 8px;
  background: #FFFFFF;
  color: var(--text-main);
  font-weight: 700;
  outline: none;
  box-shadow: 0 2px 8px rgba(220, 38, 38, 0.12);
  transition: var(--transition);
  display: block;
}

.otp-input:focus {
  border-color: var(--brand-red-deep);
  box-shadow: 0 0 0 4px rgba(220, 38, 38, 0.2);
}

.otp-error-msg {
  color: var(--brand-red);
  font-size: 12.5px;
  font-weight: 600;
  margin: 8px 0;
  display: none;
}

.otp-resend-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 14px;
  padding-top: 10px;
  border-top: 1px dashed var(--border);
  font-size: 12.5px;
  color: var(--text-soft);
}

.otp-resend-link {
  color: var(--brand-red);
  font-weight: 600;
  cursor: pointer;
  text-decoration: underline;
  background: none;
  border: none;
  padding: 0;
  font-size: 12.5px;
  font-family: inherit;
  transition: color 0.15s ease;
}

.otp-resend-link:hover:not(:disabled) {
  color: var(--brand-red-deep);
}

.otp-resend-link:disabled {
  color: var(--text-muted);
  text-decoration: none;
  cursor: not-allowed;
}

.otp-edit-phone-btn {
  background: none;
  border: none;
  color: var(--text-muted);
  font-size: 12px;
  cursor: pointer;
  text-decoration: underline;
  padding: 0;
  font-family: inherit;
  transition: color 0.15s ease;
}

.otp-edit-phone-btn:hover {
  color: var(--text-main);
}

/* Hero Stats Bar */
.hero-stats {
  display: grid;
  grid-template-columns: 1fr auto 1fr auto 1fr auto 1fr;
  align-items: center;
  padding: 22px 24px;
  background: #FFFFFF;
  border: 1px solid var(--border);
  border-radius: 8px;
  box-shadow: var(--shadow-sm);
}

.stat-item {
  display: flex;
  flex-direction: column;
  gap: 2px;
  text-align: center;
}

.stat-val {
  font-family: var(--font-serif);
  font-size: clamp(20px, 3.5vw, 24px);
  font-weight: 700;
  color: var(--brand-red);
  line-height: 1.2;
}

.stat-lbl {
  font-size: 12px;
  color: var(--text-soft);
  font-weight: 500;
}

.stat-divider {
  width: 1px;
  height: 34px;
  background: var(--border);
}

/* ==========================================================================
   Buttons
   ========================================================================== */
.btn-primary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  background: var(--brand-red);
  color: #FFFFFF;
  border: 1px solid var(--brand-red-deep);
  font-family: var(--font-sans);
  font-weight: 700;
  font-size: 15px;
  padding: 13px 26px;
  border-radius: 6px;
  cursor: pointer;
  letter-spacing: 0.01em;
  box-shadow: 0 4px 12px rgba(220, 38, 38, 0.22);
  transition: var(--transition);
  text-align: center;
}

.btn-primary:hover {
  background: var(--brand-red-deep);
  transform: translateY(-2px);
  box-shadow: 0 6px 18px rgba(220, 38, 38, 0.32);
}

.btn-primary:active {
  transform: translateY(0);
}

.btn-secondary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: #FFFFFF;
  color: var(--text-main);
  border: 1.5px solid var(--border);
  font-family: var(--font-sans);
  font-weight: 600;
  font-size: 14.5px;
  padding: 12px 22px;
  border-radius: 6px;
  cursor: pointer;
  transition: var(--transition);
}

.btn-secondary:hover {
  border-color: var(--brand-red);
  color: var(--brand-red);
  background: var(--brand-red-soft);
}

/* ==========================================================================
   Section Generic
   ========================================================================== */
section {
  padding: 68px 0;
  border-bottom: 1px solid var(--border);
  width: 100%;
}

section:nth-child(even) {
  background: var(--bg-alt);
}

section h2 {
  font-size: clamp(24px, 3.8vw, 32px);
  line-height: 1.25;
  max-width: 720px;
  margin-bottom: 10px;
}

/* ==========================================================================
   Problem Section (Statute Clauses)
   ========================================================================== */
.clauses {
  display: flex;
  flex-direction: column;
  border-top: 1px solid var(--border);
  margin-top: 8px;
}

.clause {
  display: grid;
  grid-template-columns: 64px 1fr;
  gap: 16px;
  padding: 18px 0;
  border-bottom: 1px solid var(--border);
  align-items: baseline;
  transition: background 0.15s ease;
}

.clause:hover {
  background: rgba(254, 242, 242, 0.4);
}

.clause .num {
  font-family: var(--font-mono);
  color: var(--brand-red);
  font-weight: 700;
  font-size: 14.5px;
  letter-spacing: -0.02em;
}

.clause-text {
  font-size: 15px;
  color: var(--text-main);
  line-height: 1.55;
}

.clause-text strong {
  color: var(--brand-red-deep);
  font-weight: 600;
}

.bridge {
  margin-top: 32px;
  padding: 18px 20px;
  background: var(--brand-red-soft);
  border-left: 4px solid var(--brand-red);
  border-right: 1px solid var(--border-red);
  border-top: 1px solid var(--border-red);
  border-bottom: 1px solid var(--border-red);
  font-size: 15px;
  color: var(--text-main);
  display: flex;
  align-items: flex-start;
  gap: 14px;
  border-radius: 0 6px 6px 0;
}

.bridge-icon {
  font-size: 20px;
  line-height: 1.2;
}

/* ==========================================================================
   Method / 4-Step Framework
   ========================================================================== */
.framework {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  border: 1px solid var(--border);
  background: #FFFFFF;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: var(--shadow-sm);
}

.fw-step {
  padding: 28px 20px;
  border-right: 1px solid var(--border);
  position: relative;
  transition: var(--transition);
}

.fw-step:last-child {
  border-right: none;
}

.fw-step:hover {
  background: var(--brand-red-soft);
  transform: translateY(-2px);
  z-index: 2;
  box-shadow: var(--shadow-md);
}

.fw-step .fw-num {
  font-family: var(--font-mono);
  font-size: 13px;
  color: var(--brand-red);
  font-weight: 700;
  margin-bottom: 12px;
  letter-spacing: 0.05em;
}

.fw-step h3 {
  font-size: 19px;
  margin-bottom: 8px;
  color: var(--text-main);
}

.fw-step p {
  font-size: 14px;
  color: var(--text-soft);
  line-height: 1.55;
}

/* ==========================================================================
   Curriculum Grid
   ========================================================================== */
.learn-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0 44px;
}

.learn-grid ul {
  list-style: none;
}

.learn-grid li {
  padding: 16px 0;
  border-bottom: 1px solid var(--border);
  font-size: 14.5px;
  display: flex;
  gap: 14px;
  align-items: flex-start;
  line-height: 1.5;
}

.learn-grid li::before {
  content: "§";
  color: var(--brand-red);
  font-family: var(--font-serif);
  font-weight: 700;
  font-size: 18px;
  line-height: 1.2;
}

.learn-grid li strong {
  color: var(--text-main);
  font-weight: 600;
}

/* ==========================================================================
   Explanation Section (Callout Box)
   ========================================================================== */
.explanation {
  border: 1px solid var(--border);
  padding: 38px 40px;
  background: #FFFFFF;
  position: relative;
  border-radius: 8px;
  box-shadow: var(--shadow-sm);
  border-left: 4px solid var(--brand-red);
}

.explanation .tag {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.12em;
  color: var(--brand-red);
  font-weight: 700;
  margin-bottom: 16px;
  text-transform: uppercase;
}

.explanation h2 {
  font-size: clamp(20px, 3.2vw, 26px);
  margin-bottom: 16px;
  line-height: 1.3;
}

.exp-sub {
  color: var(--text-soft);
  font-size: 15px;
}

.explanation .q-list {
  margin: 20px 0;
  padding-left: 0;
  list-style: none;
  font-size: 14.5px;
  color: var(--text-main);
}

.explanation .q-list li {
  margin-bottom: 10px;
  padding-left: 20px;
  position: relative;
  line-height: 1.5;
}

.explanation .q-list li::before {
  content: "—";
  color: var(--brand-red);
  font-weight: bold;
  position: absolute;
  left: 0;
}

.explanation .closer {
  margin-top: 24px;
  padding-top: 18px;
  border-top: 1px solid var(--border);
  font-weight: 600;
  font-size: 15.5px;
  color: var(--brand-red);
  font-family: var(--font-serif);
  font-style: italic;
}

/* ==========================================================================
   Faculty Section (Showcase with Real Photo of CA Rachna Dubey)
   ========================================================================== */
.teacher-showcase-card {
  display: grid;
  grid-template-columns: 320px 1fr;
  gap: 36px;
  border: 1px solid var(--border);
  background: #FFFFFF;
  padding: 32px;
  border-radius: 12px;
  box-shadow: var(--shadow-card);
  margin-top: 24px;
  position: relative;
}

.teacher-photo-frame {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.photo-inner-wrapper {
  width: 100%;
  height: 340px;
  background: var(--bg-alt);
  border: 2px solid var(--border-red);
  border-radius: 8px;
  overflow: hidden;
  position: relative;
  box-shadow: var(--shadow-sm);
}

.faculty-real-photo {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center;
  transition: transform 0.3s ease;
  display: block;
}

.photo-inner-wrapper:hover .faculty-real-photo {
  transform: scale(1.03);
}

.photo-badge {
  width: 100%;
  margin-top: 10px;
  text-align: center;
  background: var(--brand-red);
  color: #FFFFFF;
  padding: 8px 12px;
  border-radius: 6px;
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.badge-tag {
  font-family: var(--font-mono);
  font-size: 9.5px;
  color: rgba(255, 255, 255, 0.85);
  letter-spacing: 0.08em;
}

.badge-name {
  font-family: var(--font-serif);
  font-size: 14.5px;
  font-weight: 700;
}

.teacher-content {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.teacher-header h3 {
  font-size: clamp(22px, 3.5vw, 28px);
  color: var(--text-main);
  margin-bottom: 2px;
}

.teacher-title {
  font-family: var(--font-mono);
  font-size: 13px;
  color: var(--brand-red);
  font-weight: 600;
}

.teacher-bio {
  font-size: 15px;
  color: var(--text-soft);
  line-height: 1.65;
}

/* Credentials Grid */
.teacher-credentials-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  margin: 4px 0;
}

.cred-card {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  padding: 11px 14px;
  background: var(--bg-alt);
  border: 1px solid var(--border);
  border-radius: 6px;
  font-size: 13px;
}

.cred-icon {
  font-size: 18px;
  line-height: 1;
}

.cred-card strong {
  display: block;
  color: var(--text-main);
  font-size: 13px;
}

.cred-card span {
  color: var(--text-soft);
  font-size: 12px;
}

.teacher-quote {
  padding: 14px 18px;
  background: var(--brand-red-soft);
  border-left: 3px solid var(--brand-red);
  font-size: 14px;
  color: var(--brand-red-deep);
  font-style: italic;
  line-height: 1.55;
  border-radius: 0 6px 6px 0;
}

.teacher-cta-row {
  margin-top: 4px;
}

/* ==========================================================================
   Testimonials (STRICT Horizontal Scrolling Carousel Track)
   ========================================================================== */
.testimonial-head-flex {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 20px;
  margin-bottom: 8px;
}

.carousel-nav-btns {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 32px;
}

.carousel-nav-btn {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: #FFFFFF;
  border: 1.5px solid var(--border);
  color: var(--text-main);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
}

.carousel-nav-btn:hover {
  background: var(--brand-red);
  border-color: var(--brand-red);
  color: #FFFFFF;
  transform: translateY(-1px);
  box-shadow: 0 4px 12px rgba(220, 38, 38, 0.25);
}

/* Strict Horizontal Flex Row */
.testimonials-scroll-wrapper {
  display: flex !important;
  flex-direction: row !important;
  flex-wrap: nowrap !important;
  gap: 22px;
  overflow-x: auto !important;
  overflow-y: hidden !important;
  scroll-behavior: smooth;
  padding: 12px 4px 28px;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: thin;
  scrollbar-color: var(--brand-red) var(--border-subtle);
  width: 100% !important;
  box-sizing: border-box;
}

.testimonials-scroll-wrapper::-webkit-scrollbar {
  height: 6px;
}

.testimonials-scroll-wrapper::-webkit-scrollbar-track {
  background: var(--border-subtle);
  border-radius: 3px;
}

.testimonials-scroll-wrapper::-webkit-scrollbar-thumb {
  background: var(--brand-red);
  border-radius: 3px;
}

/* Student Testimonial Card */
.t-card {
  flex: 0 0 310px !important;
  width: 310px !important;
  max-width: 320px !important;
  scroll-snap-align: start;
  border: 1.5px solid var(--border);
  background: #FFFFFF;
  border-radius: 12px;
  padding: 16px;
  font-size: 14px;
  display: flex !important;
  flex-direction: column !important;
  justify-content: space-between;
  box-shadow: var(--shadow-card);
  transition: var(--transition);
  position: relative;
  box-sizing: border-box;
}

.t-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 14px 34px rgba(220, 38, 38, 0.12), 0 2px 8px rgba(15, 23, 42, 0.05);
  border-color: var(--brand-red);
}

/* Student Photo Frame (Fixed Height & Aspect Ratio Constraint) */
.t-photo-frame {
  position: relative;
  width: 100% !important;
  height: 220px !important;
  max-height: 220px !important;
  border-radius: 10px;
  overflow: hidden !important;
  background: #FFFFFF;
  border: 1.5px solid rgba(220, 38, 38, 0.22);
  margin-bottom: 14px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
  display: block !important;
  flex-shrink: 0 !important;
}

.t-card-img {
  width: 100% !important;
  height: 100% !important;
  max-height: 220px !important;
  object-fit: cover !important;
  object-position: top center !important;
  transition: transform 0.3s ease;
  display: block !important;
}

.t-card:hover .t-card-img {
  transform: scale(1.02);
}

.t-content {
  display: flex;
  flex-direction: column;
  flex: 1;
}

.t-stars {
  color: #EAB308;
  font-size: 14px;
  letter-spacing: 2px;
  margin-bottom: 4px;
}

.t-name {
  font-size: 16px;
  font-weight: 700;
  color: var(--text-main);
  margin-bottom: 2px;
}

.t-submeta {
  font-size: 12px;
  color: var(--text-soft);
  margin-bottom: 10px;
}

.t-text {
  font-size: 13.5px;
  color: var(--text-main);
  line-height: 1.55;
  margin-bottom: 14px;
  font-style: italic;
  flex: 1;
}

.t-pill {
  display: inline-block;
  align-self: flex-start;
  background: var(--brand-red-soft);
  color: var(--brand-red);
  font-family: var(--font-mono);
  font-size: 11px;
  font-weight: 700;
  padding: 3px 8px;
  border-radius: 4px;
  border: 1px solid var(--border-red);
}

.carousel-indicators {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-top: 14px;
}

.carousel-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--border);
  cursor: pointer;
  transition: var(--transition);
}

.carousel-dot.active {
  width: 24px;
  border-radius: 4px;
  background: var(--brand-red);
}

/* ==========================================================================
   Features Checklist
   ========================================================================== */
.features {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0;
  border: 1px solid var(--border);
  background: #FFFFFF;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: var(--shadow-sm);
}

.feature {
  padding: 18px 22px;
  border-bottom: 1px solid var(--border);
  border-right: 1px solid var(--border);
  font-size: 14.5px;
  display: flex;
  gap: 12px;
  align-items: flex-start;
  line-height: 1.5;
}

.feature:nth-child(even) {
  border-right: none;
}

.feature:nth-last-child(-n+2) {
  border-bottom: none;
}

.feature::before {
  content: "✓";
  color: var(--ok);
  font-weight: 800;
  font-size: 16px;
  line-height: 1.2;
}

/* ==========================================================================
   Pricing Card & Urgency Box (Free Pass)
   ========================================================================== */
.price-container {
  display: flex;
  justify-content: center;
}

.price-card {
  border: 2px solid var(--border-red);
  background: #FFFFFF;
  padding: 40px 36px;
  max-width: 540px;
  width: 100%;
  position: relative;
  border-radius: 12px;
  box-shadow: var(--shadow-card);
}

.popular-badge {
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--brand-red);
  color: #FFFFFF;
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.08em;
  font-weight: 700;
  padding: 4px 16px;
  border-radius: 20px;
  box-shadow: 0 2px 8px rgba(220, 38, 38, 0.25);
}

.price-card h3 {
  font-size: clamp(20px, 3.5vw, 24px);
  margin-bottom: 4px;
  text-align: center;
  color: var(--text-main);
}

.price-desc {
  font-size: 14px;
  color: var(--text-soft);
  text-align: center;
  margin-bottom: 18px;
}

.price-tag-wrap {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  margin: 14px 0 16px;
}

.price-tag {
  font-family: var(--font-serif);
  font-size: clamp(36px, 6vw, 46px);
  color: var(--brand-red);
  font-weight: 700;
  line-height: 1;
  display: flex;
  align-items: baseline;
  gap: 2px;
}

.price-tag .currency {
  font-size: 28px;
}

.price-tag .strike {
  font-size: 18px;
  color: var(--text-muted);
  text-decoration: line-through;
  margin-left: 8px;
  font-weight: 400;
}

.free-highlight-pill {
  background: var(--ok-light);
  color: var(--ok);
  font-family: var(--font-mono);
  font-size: 11.5px;
  font-weight: 800;
  padding: 5px 10px;
  border-radius: 4px;
  border: 1px solid rgba(22, 163, 74, 0.3);
}

.urgency {
  background: #FFFBEB;
  border: 1px solid #FDE68A;
  padding: 16px;
  border-radius: 8px;
  margin: 18px 0;
  text-align: center;
}

.urgency-head {
  font-family: var(--font-mono);
  font-size: 12px;
  color: #B45309;
  margin-bottom: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
}

.timer-display {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-bottom: 12px;
}

.t-box {
  background: #FFFFFF;
  border: 1px solid #FCD34D;
  padding: 6px 8px;
  border-radius: 4px;
  min-width: 48px;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.t-box span {
  font-family: var(--font-mono);
  font-size: 16px;
  font-weight: 700;
  color: var(--brand-red);
  line-height: 1;
}

.t-box small {
  font-size: 9.5px;
  text-transform: uppercase;
  color: var(--text-soft);
  margin-top: 3px;
}

.seats-left-bar {
  width: 100%;
  height: 6px;
  background: #FEE2E2;
  border-radius: 3px;
  overflow: hidden;
  margin-bottom: 6px;
}

.seats-fill {
  height: 100%;
  background: var(--brand-red);
  border-radius: 3px;
  transition: width 0.5s ease;
}

.seats-note {
  font-size: 11.5px;
  color: var(--brand-red-deep);
  font-weight: 600;
}

.price-perks {
  list-style: none;
  margin: 20px 0;
}

.price-perks li {
  padding: 9px 0;
  font-size: 14.5px;
  display: flex;
  gap: 10px;
  align-items: center;
  border-bottom: 1px dashed var(--border);
}

.price-perks li:last-child {
  border-bottom: none;
}

.price-perks li::before {
  content: "✓";
  color: var(--ok);
  font-weight: 800;
  flex-shrink: 0;
}

.btn-full {
  width: 100%;
  font-size: 16px;
  padding: 15px;
}

.secure-guarantee {
  text-align: center;
  font-size: 11.5px;
  color: var(--text-soft);
  margin-top: 12px;
}

/* ==========================================================================
   FAQ Accordion
   ========================================================================== */
.faq-list {
  border-top: 1px solid var(--border);
}

.faq-item {
  border-bottom: 1px solid var(--border);
  transition: background 0.15s ease;
}

.faq-q {
  padding: 20px 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  font-weight: 600;
  font-size: 16px;
  color: var(--text-main);
  user-select: none;
  gap: 14px;
}

.faq-q:hover {
  color: var(--brand-red);
}

.faq-q .plus-icon {
  font-family: var(--font-mono);
  color: var(--brand-red);
  font-size: 20px;
  font-weight: 700;
  transition: transform 0.25s ease;
  line-height: 1;
  width: 24px;
  height: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.faq-item.open .plus-icon {
  transform: rotate(45deg);
}

.faq-a {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s cubic-bezier(0, 1, 0, 1), padding 0.3s ease;
  font-size: 14.5px;
  color: var(--text-soft);
  line-height: 1.6;
}

.faq-item.open .faq-a {
  max-height: 400px;
  padding-bottom: 20px;
  transition: max-height 0.3s ease-in-out, padding 0.3s ease;
}

/* ==========================================================================
   Footer
   ========================================================================== */
footer.site-footer {
  padding: 44px 0 80px;
  background: #0F172A;
  color: #94A3B8;
  text-align: center;
  font-size: 13px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.footer-logo-wrap {
  display: flex;
  justify-content: center;
  margin-bottom: 14px;
}

.footer-logo-img {
  height: 48px;
  width: auto;
  object-fit: contain;
  filter: brightness(0) invert(1);
  opacity: 0.95;
}

.footer-tagline {
  color: #CBD5E1;
  font-size: 13.5px;
  margin-bottom: 10px;
}

.footer-meta {
  font-size: 12.5px;
  color: #64748B;
  max-width: 540px;
  margin: 0 auto 16px;
  line-height: 1.5;
}

.footer-copy {
  font-size: 11.5px;
  color: #475569;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  padding-top: 16px;
}

/* ==========================================================================
   Floating Mobile Sticky CTA
   ========================================================================== */
.floating-cta {
  position: fixed;
  bottom: calc(14px + env(safe-area-inset-bottom, 0px));
  left: 16px;
  right: 16px;
  max-width: 480px;
  margin: 0 auto;
  transform: translateY(120px);
  background: var(--brand-red);
  color: #FFFFFF;
  border: 1px solid var(--brand-red-deep);
  font-family: var(--font-sans);
  font-weight: 700;
  font-size: 15px;
  padding: 15px 20px;
  border-radius: 40px;
  cursor: pointer;
  z-index: 99;
  box-shadow: var(--shadow-float);
  opacity: 0;
  transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1), opacity 0.3s ease;
  text-align: center;
  display: none;
}

.floating-cta.visible {
  transform: translateY(0);
  opacity: 1;
}

/* ==========================================================================
   Modal Overlay & Lead Form
   ========================================================================== */
.modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(15, 23, 42, 0.75);
  backdrop-filter: blur(5px);
  -webkit-backdrop-filter: blur(5px);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 1000;
  padding: 16px;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.25s ease, visibility 0.25s ease;
}

.modal-overlay.open {
  opacity: 1;
  visibility: visible;
}

.modal {
  background: #FFFFFF;
  max-width: 460px;
  width: 100%;
  padding: 32px 26px;
  border: 1px solid var(--border);
  position: relative;
  border-radius: 12px;
  box-shadow: var(--shadow-lg);
  transform: scale(0.95);
  transition: transform 0.25s ease;
  max-height: 90vh;
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
}

.modal-overlay.open .modal {
  transform: scale(1);
}

.modal-close {
  position: absolute;
  top: 14px;
  right: 16px;
  background: none;
  border: none;
  font-size: 22px;
  cursor: pointer;
  color: var(--text-soft);
  font-family: var(--font-mono);
  padding: 4px 8px;
  border-radius: 4px;
  transition: color 0.15s ease;
}

.modal-close:hover {
  color: var(--brand-red);
  background: var(--bg-alt);
}

.modal-header {
  margin-bottom: 20px;
}

.modal-badge {
  font-family: var(--font-mono);
  font-size: 10.5px;
  letter-spacing: 0.1em;
  color: var(--brand-red);
  font-weight: 700;
  margin-bottom: 6px;
}

.modal h3 {
  font-size: clamp(20px, 4vw, 23px);
  margin-bottom: 6px;
  line-height: 1.2;
}

.modal p.modal-sub {
  font-size: 13.5px;
  color: var(--text-soft);
  line-height: 1.5;
}

.field {
  margin-bottom: 16px;
}

.field label {
  display: block;
  font-size: 13px;
  font-weight: 600;
  margin-bottom: 6px;
  color: var(--text-main);
}

.field label .req {
  color: var(--brand-red);
}

.field input[type="text"],
.field input[type="email"],
.field input[type="tel"] {
  width: 100%;
  padding: 12px 14px;
  border: 1px solid var(--border);
  background: #FFFFFF;
  font-family: var(--font-sans);
  font-size: 16px;
  border-radius: 6px;
  color: var(--text-main);
  transition: border-color 0.15s ease, box-shadow 0.15s ease;
  -webkit-appearance: none;
}

.field input:focus {
  outline: none;
  border-color: var(--brand-red);
  box-shadow: 0 0 0 3px rgba(220, 38, 38, 0.15);
}

.radio-row {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}

.radio-opt {
  flex: 1;
  min-width: 80px;
  border: 1px solid var(--border);
  background: #FFFFFF;
  padding: 10px 8px;
  text-align: center;
  font-size: 13px;
  cursor: pointer;
  border-radius: 6px;
  font-weight: 500;
  transition: var(--transition);
  user-select: none;
}

.radio-opt:hover {
  background: var(--brand-red-soft);
  border-color: var(--border-red);
}

.radio-opt.selected {
  border-color: var(--brand-red);
  background: var(--brand-red-soft);
  color: var(--brand-red);
  font-weight: 700;
}

.radio-opt input {
  display: none;
}

.error-msg {
  color: var(--brand-red);
  font-size: 12px;
  margin-top: 5px;
  display: none;
  font-weight: 500;
}

/* Success State in Modal */
.success-state {
  text-align: center;
  padding: 14px 0 8px;
}

.check-circle {
  width: 58px;
  height: 58px;
  border-radius: 50%;
  background: var(--ok-light);
  color: var(--ok);
  font-size: 32px;
  font-weight: 800;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 16px;
  border: 2px solid var(--ok);
}

/* ==========================================================================
   Responsive Breakpoints & Mobile Optimization
   ========================================================================== */
@media (max-width: 960px) {
  .hero-grid {
    grid-template-columns: 1fr;
    gap: 36px;
  }
  .hero-stats {
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
  }
  .stat-divider {
    display: none;
  }
  .teacher-showcase-card {
    grid-template-columns: 1fr;
    gap: 24px;
    padding: 24px;
  }
  .photo-inner-wrapper {
    height: 280px;
  }
  .header-nav-links {
    display: none;
  }
  .framework {
    grid-template-columns: repeat(2, 1fr);
  }
  .fw-step:nth-child(2) {
    border-right: none;
  }
  .fw-step:nth-child(1),
  .fw-step:nth-child(2) {
    border-bottom: 1px solid var(--border);
  }
  .learn-grid {
    grid-template-columns: 1fr;
    gap: 0;
  }
}

@media (max-width: 768px) {
  .floating-cta {
    display: block;
  }
}

@media (max-width: 600px) {
  .wrap {
    padding: 0 16px;
  }
  section {
    padding: 44px 0;
  }
  .hero {
    padding: 28px 0 24px;
  }
  .site-inner {
    padding: 10px 16px;
  }
  .brand-logo-img {
    height: 38px;
  }
  .header-right .live-pill {
    display: none;
  }
  .btn-header {
    padding: 7px 12px;
    font-size: 12.5px;
  }
  .faculty-mini-bar {
    padding: 8px 12px;
    gap: 10px;
  }
  .faculty-mini-img {
    width: 44px;
    height: 44px;
  }
  .faculty-mini-info .f-name {
    font-size: 15px;
  }
  .faculty-mini-info .f-role {
    font-size: 11.5px;
  }
  .schedule-strip {
    gap: 6px;
  }
  .schedule-pill {
    padding: 6px 10px;
    font-size: 12px;
  }
  .form-card {
    padding: 24px 16px;
    border-radius: 10px;
  }
  .hero-stats {
    grid-template-columns: 1fr 1fr;
    padding: 16px;
    gap: 14px;
  }
  .stat-val {
    font-size: 20px;
  }
  .stat-lbl {
    font-size: 11px;
  }
  .clause {
    grid-template-columns: 48px 1fr;
    gap: 10px;
    padding: 14px 0;
  }
  .clause .num {
    font-size: 13.5px;
  }
  .clause-text {
    font-size: 14px;
  }
  .bridge {
    padding: 14px 16px;
    font-size: 13.5px;
    gap: 10px;
  }
  .framework {
    grid-template-columns: 1fr;
  }
  .fw-step {
    border-right: none !important;
    border-bottom: 1px solid var(--border);
    padding: 20px 16px;
  }
  .fw-step:last-child {
    border-bottom: none;
  }
  .teacher-showcase-card {
    padding: 18px 14px;
  }
  .photo-inner-wrapper {
    height: 240px;
  }
  .teacher-credentials-grid {
    grid-template-columns: 1fr;
    gap: 8px;
  }
  .cred-card {
    padding: 9px 12px;
  }
  .features {
    grid-template-columns: 1fr;
  }
  .feature {
    border-right: none !important;
    border-bottom: 1px solid var(--border) !important;
    padding: 14px 16px;
    font-size: 13.5px;
  }
  .feature:last-child {
    border-bottom: none !important;
  }
  .price-card {
    padding: 28px 16px;
  }
  .timer-display {
    gap: 6px;
  }
  .t-box {
    min-width: 44px;
    padding: 6px 4px;
  }
  .t-box span {
    font-size: 15px;
  }
  .price-perks li {
    font-size: 13.5px;
  }
  .faq-q {
    font-size: 14.5px;
    padding: 16px 0;
  }
  .faq-a {
    font-size: 13.5px;
  }
  .modal {
    padding: 24px 16px;
  }
  /* Testimonial Card Mobile Sizing */
  .t-card {
    flex: 0 0 280px !important;
    width: 280px !important;
    max-width: 290px !important;
    padding: 14px;
  }
  .t-photo-frame {
    height: 190px !important;
    max-height: 190px !important;
  }
  .t-card-img {
    max-height: 190px !important;
  }
}
