:root {
  color-scheme: dark;
  --bg: #050505;
  --panel: #0d0f0f;
  --panel-soft: #151818;
  --line: rgba(255, 255, 255, 0.12);
  --line-strong: rgba(255, 255, 255, 0.22);
  --text: #f7f7f4;
  --muted: #a6aaa5;
  --green: #20c782;
  --green-glow: rgba(32, 199, 130, 0.28);
  --red: #ff1d14;
  --white: #ffffff;
  --ink: #050505;
  --font: Arial, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  --max-width: 1360px;
  --header-height: 76px;
  --radius-sm: 6px;
  --radius: 8px;
  --radius-lg: 14px;
}

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

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

html,
body {
  max-width: 100%;
  overflow-x: hidden;
}

body {
  margin: 0;
  font-family: var(--font);
  background:
    radial-gradient(circle at 16% 8%, rgba(32, 199, 130, 0.18), transparent 24rem),
    radial-gradient(circle at 88% 14%, rgba(255, 29, 20, 0.12), transparent 22rem),
    var(--bg);
  color: var(--text);
  line-height: 1.6;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}

body::before {
  position: fixed;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  content: "";
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.035) 1px, transparent 1px);
  background-size: 76px 76px;
  mask-image: linear-gradient(to bottom, black, transparent 85%);
}

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

a {
  color: inherit;
  text-decoration: none;
  -webkit-tap-highlight-color: transparent;
}

button,
input,
select,
textarea {
  font: inherit;
  color: inherit;
}

/* Base Headings & Typography */
h1,
h2,
h3,
p {
  margin-top: 0;
}

h1 {
  margin-bottom: 1.2rem;
  font-size: clamp(2rem, 5.5vw, 4.4rem);
  line-height: 1.05;
  letter-spacing: -0.02em;
  font-weight: 900;
}

h2 {
  margin-bottom: 0.9rem;
  font-size: clamp(1.5rem, 3.4vw, 2.75rem);
  line-height: 1.15;
  letter-spacing: -0.01em;
  font-weight: 900;
}

h3 {
  margin-bottom: 0.65rem;
  font-size: clamp(1.1rem, 1.8vw, 1.35rem);
  line-height: 1.3;
  font-weight: 800;
}

.eyebrow {
  margin: 0 0 0.75rem;
  color: var(--green);
  font-size: clamp(0.72rem, 1.2vw, 0.8rem);
  font-weight: 900;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.hero-text,
.split-section p,
.prop-grid p,
.package-card p,
.contact-section p,
.footer p,
.about-section p,
.calculator-section p {
  color: var(--muted);
  line-height: 1.7;
  font-size: clamp(0.92rem, 1.2vw, 1.05rem);
}

/* Button & Link Styles */
.header-cta,
.primary-button,
.secondary-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  border-radius: var(--radius);
  padding: 0.65rem 1.25rem;
  font-size: 0.94rem;
  font-weight: 800;
  cursor: pointer;
  border: 1px solid transparent;
  transition: transform 0.16s ease, filter 0.16s ease, background 0.16s ease, border-color 0.16s ease;
  white-space: nowrap;
  -webkit-tap-highlight-color: transparent;
}

.header-cta,
.primary-button {
  background: var(--green);
  color: var(--ink);
  box-shadow: 0 4px 18px rgba(32, 199, 130, 0.25);
}

.header-cta:hover,
.primary-button:hover {
  filter: brightness(1.1);
  transform: translateY(-1px);
}

.header-cta:active,
.primary-button:active {
  transform: translateY(0);
}

.secondary-button {
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.055);
  color: var(--text);
}

.secondary-button:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: var(--line-strong);
  transform: translateY(-1px);
}

.secondary-button:active {
  transform: translateY(0);
}

.full {
  width: 100%;
}

/* Shared Card Surface */
.quote-card,
.chart-card,
.program-card,
.prop-grid article,
.package-card,
.contact-form,
.about-stats article,
.benefit-grid article,
.curriculum-grid article,
.blog-card,
.faq-list details,
.calculator-form,
.newsletter-section,
.review-card {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.055), rgba(255, 255, 255, 0.02));
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.28);
}

/* Site Header */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  border-bottom: 1px solid var(--line);
  background: rgba(5, 5, 5, 0.88);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
}

.header-inner {
  max-width: var(--max-width);
  margin: 0 auto;
  min-height: var(--header-height);
  padding: 0.6rem clamp(1rem, 4vw, 2.5rem);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.25rem;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  min-width: 0;
  font-size: 1.05rem;
  font-weight: 800;
  flex-shrink: 0;
}

.brand img {
  width: 42px;
  height: 42px;
  object-fit: contain;
  flex-shrink: 0;
}

.brand span {
  white-space: nowrap;
}

.nav {
  display: flex;
  align-items: center;
  gap: clamp(0.65rem, 1.4vw, 1.4rem);
  color: var(--muted);
  font-size: 0.9rem;
  font-weight: 700;
}

.nav a {
  padding: 0.35rem 0.2rem;
  border-radius: var(--radius-sm);
  transition: color 0.16s ease;
  white-space: nowrap;
}

.nav a:hover,
.nav a:focus-visible {
  color: var(--green);
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  flex-shrink: 0;
}

/* Mobile Menu Toggle Button */
.menu-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 5px;
  width: 44px;
  height: 44px;
  padding: 0;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.05);
  cursor: pointer;
  -webkit-tap-highlight-color: transparent;
}

.menu-toggle:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: var(--line-strong);
}

.menu-bar {
  display: block;
  width: 22px;
  height: 2px;
  background-color: var(--text);
  border-radius: 2px;
  transition: transform 0.22s ease, opacity 0.22s ease;
}

.menu-toggle[aria-expanded="true"] .menu-bar:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.menu-toggle[aria-expanded="true"] .menu-bar:nth-child(2) {
  opacity: 0;
}

.menu-toggle[aria-expanded="true"] .menu-bar:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

/* Section Shared Padding & Container */
.hero,
.service-strip,
.about-section,
.benefits-section,
.split-section,
.curriculum-section,
.prop-section,
.packages,
.calculator-section,
.blog-section,
.reviews-section,
.faq-section,
.newsletter-section,
.contact-section {
  max-width: var(--max-width);
  margin-left: auto;
  margin-right: auto;
  padding: clamp(2.5rem, 5vw, 5.5rem) clamp(1rem, 4vw, 2.5rem);
}

.section-heading {
  max-width: 780px;
  margin-bottom: clamp(1.25rem, 3vw, 2rem);
}

/* Hero Section */
.hero {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(0, 0.95fr);
  align-items: center;
  gap: clamp(2rem, 4.5vw, 4.5rem);
  min-height: calc(100svh - var(--header-height));
}

.hero-copy {
  max-width: 680px;
}

.hero-text {
  max-width: 36rem;
  font-size: clamp(1rem, 1.3vw, 1.15rem);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-top: 1.5rem;
}

.trust-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
  margin-top: clamp(1.4rem, 3vw, 2.2rem);
}

.trust-row span {
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 0.55rem 0.85rem;
  color: var(--muted);
  font-size: clamp(0.76rem, 1vw, 0.84rem);
  font-weight: 800;
  background: rgba(255, 255, 255, 0.02);
}

.trust-row b {
  color: var(--text);
}

.hero-visual {
  position: relative;
  display: grid;
  gap: 1.25rem;
  width: 100%;
}

.logo-orbit {
  display: grid;
  place-items: center;
  aspect-ratio: 1;
  width: 100%;
  max-width: 340px;
  margin-left: auto;
  border: 1px solid var(--line);
  border-radius: 50%;
  background:
    conic-gradient(from 80deg, var(--green), transparent 18%, var(--red), transparent 42%, var(--green)),
    #090909;
  padding: 0.35rem;
  box-shadow: 0 0 60px rgba(32, 199, 130, 0.16);
}

.logo-orbit img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  border-radius: 50%;
  background: #000;
}

.quote-card {
  position: absolute;
  left: 0;
  top: 8%;
  width: min(320px, 72%);
  padding: 1rem;
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
}

.card-kicker {
  display: block;
  margin-bottom: 0.6rem;
  color: var(--green);
  font-size: 0.74rem;
  font-weight: 900;
  text-transform: uppercase;
}

.quote-head,
.quote-row {
  display: grid;
  grid-template-columns: 1.1fr 1fr 1fr;
  gap: 0.5rem;
  align-items: center;
}

.quote-head {
  padding-bottom: 0.5rem;
  color: var(--muted);
  font-size: 0.72rem;
  font-weight: 900;
  text-transform: uppercase;
}

.quote-row {
  padding: 0.55rem 0;
  border-top: 1px solid var(--line);
  color: var(--muted);
  font-size: clamp(0.8rem, 1vw, 0.9rem);
}

.quote-row b {
  color: var(--text);
  font-size: clamp(0.76rem, 1vw, 0.84rem);
}

.chart-card {
  overflow: hidden;
  margin-top: -1.5rem;
  background: #080909;
  width: 100%;
}

#brandChart {
  display: block;
  width: 100%;
  aspect-ratio: 620 / 260;
  height: auto;
}

/* About Academy Section */
.about-section {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(0, 0.85fr);
  gap: clamp(2rem, 5vw, 4.5rem);
  align-items: center;
  border-top: 1px solid var(--line);
}

.about-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-top: 1.4rem;
}

.about-stats {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
}

.about-stats article {
  min-height: 120px;
  padding: clamp(0.85rem, 2vw, 1.25rem);
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.about-stats strong {
  display: block;
  color: var(--green);
  font-size: clamp(1.4rem, 2.5vw, 1.8rem);
  font-weight: 900;
}

.about-stats span {
  display: block;
  margin-top: 0.4rem;
  color: var(--muted);
  font-size: clamp(0.82rem, 1.1vw, 0.92rem);
  line-height: 1.4;
}

/* Service Strip (01-05) */
.service-strip {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 1rem;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.025);
}

.service-strip article {
  min-height: 220px;
  padding: 1rem;
  border-left: 1px solid var(--line);
  display: flex;
  flex-direction: column;
}

.service-strip article:first-child {
  border-left: 0;
}

.service-strip span {
  color: var(--red);
  font-weight: 900;
  font-size: 0.95rem;
}

.service-strip h2 {
  margin-top: 1rem;
  margin-bottom: 0.5rem;
  font-size: clamp(1.1rem, 1.5vw, 1.3rem);
  line-height: 1.2;
}

.service-strip p {
  color: var(--muted);
  font-size: 0.9rem;
  line-height: 1.6;
}

/* Shared 4-Column and 3-Column Grids */
.benefit-grid,
.curriculum-grid,
.prop-grid,
.package-grid,
.review-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1rem;
}

.blog-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
}

.benefit-grid article,
.curriculum-grid article,
.prop-grid article,
.package-card,
.blog-card,
.review-card {
  padding: clamp(1rem, 2vw, 1.4rem);
  display: flex;
  flex-direction: column;
}

.benefit-grid p,
.curriculum-grid p,
.blog-card p,
.faq-list p,
.package-card p {
  color: var(--muted);
  font-size: 0.92rem;
  line-height: 1.65;
}

.blog-card span {
  color: var(--green);
  font-size: 0.76rem;
  font-weight: 900;
  text-transform: uppercase;
}

.blog-card h3 {
  margin-top: 0.85rem;
}

.blog-card a {
  margin-top: auto;
  padding-top: 0.8rem;
  color: var(--green);
  font-weight: 900;
  font-size: 0.92rem;
}

.curriculum-grid span {
  display: inline-flex;
  align-self: flex-start;
  margin-bottom: 0.85rem;
  border: 1px solid rgba(32, 199, 130, 0.45);
  border-radius: 999px;
  padding: 0.3rem 0.65rem;
  color: var(--green);
  font-size: 0.74rem;
  font-weight: 900;
  text-transform: uppercase;
}

/* Mentorship Split Section */
.split-section {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(0, 0.85fr);
  align-items: center;
  gap: clamp(2rem, 5vw, 4.5rem);
}

.check-list {
  display: grid;
  gap: 0.75rem;
  margin: 1.4rem 0 0;
  padding: 0;
  list-style: none;
}

.check-list li {
  position: relative;
  padding-left: 2rem;
  color: var(--text);
  font-weight: 700;
  font-size: 0.94rem;
  line-height: 1.5;
}

.check-list li::before {
  position: absolute;
  left: 0;
  top: 0;
  color: var(--green);
  content: "MT";
  font-size: 0.78rem;
  font-weight: 900;
}

.program-card {
  padding: clamp(1.25rem, 3vw, 2.2rem);
}

.price {
  margin: 1rem 0 0.25rem;
  color: var(--white);
  font-size: clamp(1.8rem, 3vw, 2.4rem);
  font-weight: 900;
}

.price-note {
  margin-bottom: 1.25rem;
  color: var(--green);
  font-size: 0.84rem;
  font-weight: 900;
  text-transform: uppercase;
}

/* Prop Firm & Packages */
.refund-card {
  border-color: rgba(255, 29, 20, 0.45);
  background: linear-gradient(180deg, rgba(255, 29, 20, 0.12), rgba(255, 255, 255, 0.025));
}

.package-card {
  min-height: 220px;
}

.package-card.featured {
  border-color: rgba(32, 199, 130, 0.6);
  background: linear-gradient(180deg, rgba(32, 199, 130, 0.13), rgba(255, 255, 255, 0.035));
}

.package-price {
  margin: 0.3rem 0 1rem;
  color: var(--white);
  font-size: clamp(1.35rem, 2vw, 1.6rem);
  font-weight: 900;
}

.package-card a {
  margin-top: auto;
  padding-top: 0.8rem;
  color: var(--green);
  font-weight: 900;
  font-size: 0.94rem;
}

/* Calculator Section */
.calculator-section {
  display: grid;
  grid-template-columns: minmax(0, 0.85fr) minmax(0, 1.15fr);
  gap: clamp(2rem, 5vw, 4.5rem);
  align-items: start;
  border-top: 1px solid var(--line);
}

.calculator-form {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
  padding: clamp(1rem, 3vw, 1.5rem);
}

.calculator-form output {
  grid-column: 1 / -1;
  border-radius: var(--radius);
  background: rgba(32, 199, 130, 0.12);
  border: 1px solid rgba(32, 199, 130, 0.28);
  color: var(--green);
  padding: 1rem;
  font-weight: 900;
  font-size: clamp(0.95rem, 1.2vw, 1.1rem);
  text-align: center;
}

/* Reviews Section */
.reviews-section {
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.02);
}

.reviews-heading {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1.25rem;
  max-width: none;
}

.review-card {
  min-height: 200px;
}

.review-top {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 0.75rem;
  margin-bottom: 0.85rem;
}

.review-top strong {
  display: block;
  font-size: 0.96rem;
}

.review-top span {
  color: var(--green);
  font-size: 0.82rem;
  font-weight: 900;
  text-align: right;
  white-space: nowrap;
}

.review-tab {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--green);
  color: var(--ink);
  padding: 0 1.25rem;
  font: inherit;
  font-weight: 900;
  font-size: 0.92rem;
  cursor: pointer;
  white-space: nowrap;
  transition: filter 0.16s ease, transform 0.16s ease;
}

.review-tab:hover {
  filter: brightness(1.1);
  transform: translateY(-1px);
}

.more-reviews {
  margin-top: 1rem;
}

/* FAQ Section */
.faq-list {
  display: grid;
  gap: 0.85rem;
}

.faq-list details {
  padding: 1rem clamp(0.9rem, 2vw, 1.25rem);
  border-radius: var(--radius);
  transition: border-color 0.2s ease;
}

.faq-list details[open] {
  border-color: var(--line-strong);
}

.faq-list summary {
  color: var(--text);
  cursor: pointer;
  font-weight: 900;
  font-size: clamp(0.95rem, 1.2vw, 1.08rem);
  list-style: none;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  user-select: none;
}

.faq-list summary::-webkit-details-marker {
  display: none;
}

.faq-list summary::after {
  content: "+";
  font-size: 1.3rem;
  font-weight: 900;
  color: var(--green);
  flex-shrink: 0;
  transition: transform 0.2s ease;
}

.faq-list details[open] summary::after {
  content: "−";
}

.faq-list p {
  margin: 0.85rem 0 0;
}

/* Contact Section & Form */
.contact-section {
  display: grid;
  grid-template-columns: minmax(0, 0.85fr) minmax(0, 1.15fr);
  gap: clamp(2rem, 5vw, 4.5rem);
  align-items: start;
}

.contact-form {
  display: grid;
  gap: 1rem;
  padding: clamp(1rem, 3vw, 1.75rem);
  width: 100%;
}

.form-status {
  min-height: 1.3rem;
  margin: 0;
  color: var(--green);
  font-size: 0.9rem;
  font-weight: 800;
  line-height: 1.5;
}

.submission-frame {
  display: none;
}

label {
  display: grid;
  gap: 0.45rem;
  color: var(--muted);
  font-size: 0.84rem;
  font-weight: 900;
}

input,
select,
textarea {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.06);
  color: var(--text);
  padding: 0.85rem 0.95rem;
  font-size: 1rem; /* Crucial: 16px prevents mobile browser auto-zoom */
  transition: border-color 0.16s ease, background-color 0.16s ease;
}

input:focus,
select:focus,
textarea:focus {
  outline: none;
  border-color: var(--green);
  background: rgba(255, 255, 255, 0.09);
  box-shadow: 0 0 0 3px rgba(32, 199, 130, 0.2);
}

select option {
  background: #121212;
  color: #ffffff;
}

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

.phone-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.05fr);
  gap: 0.85rem;
}

/* Newsletter Section */
.newsletter-section {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: clamp(1.25rem, 3vw, 2.5rem);
  align-items: center;
  margin-top: 1rem;
  margin-bottom: 3rem;
  border-radius: var(--radius);
}

.newsletter-section h2 {
  margin-bottom: 0;
}

.newsletter-form {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 0.75rem;
}

/* Footer */
.footer {
  max-width: var(--max-width);
  margin-left: auto;
  margin-right: auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1.5rem;
  padding: 1.75rem clamp(1rem, 4vw, 2.5rem) calc(1.75rem + env(safe-area-inset-bottom, 0px));
  border-top: 1px solid var(--line);
  color: var(--muted);
}

.footer strong {
  display: block;
  color: var(--text);
  font-size: 0.95rem;
}

.footer p {
  max-width: 720px;
  margin: 0.35rem 0 0;
  font-size: 0.84rem;
}

.footer a {
  color: var(--green);
  font-weight: 900;
  white-space: nowrap;
}

/* Floating WhatsApp Element */
.floating-whatsapp {
  position: fixed;
  right: max(1.25rem, env(safe-area-inset-right, 1.25rem));
  bottom: max(1.25rem, env(safe-area-inset-bottom, 1.25rem));
  z-index: 99;
}

.whatsapp-float-btn {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  padding: 0.75rem 1.15rem;
  border-radius: 999px;
  background: #25d366;
  color: #050505;
  font-weight: 900;
  font-size: 0.88rem;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.45), 0 0 20px rgba(37, 211, 102, 0.35);
  border: 1px solid rgba(255, 255, 255, 0.2);
  transition: transform 0.2s cubic-bezier(0.175, 0.885, 0.32, 1.275), box-shadow 0.2s ease, filter 0.2s ease;
  text-decoration: none;
  -webkit-tap-highlight-color: transparent;
}

.whatsapp-float-btn:hover,
.whatsapp-float-btn:focus-visible {
  transform: scale(1.05) translateY(-2px);
  filter: brightness(1.12);
  box-shadow: 0 12px 36px rgba(0, 0, 0, 0.55), 0 0 28px rgba(37, 211, 102, 0.5);
}

.whatsapp-icon {
  flex-shrink: 0;
}

/* ==========================================================================
   RESPONSIVE BREAKPOINTS
   ========================================================================== */

/* Large Tablets & Medium Laptops (1024px - 1180px) */
@media (max-width: 1180px) {
  .service-strip {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .service-strip article:nth-child(3n + 1) {
    border-left: 0;
  }

  .benefit-grid,
  .curriculum-grid,
  .prop-grid,
  .package-grid,
  .review-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

/* Tablets (768px - 1023px) */
@media (max-width: 1023px) {
  .site-header {
    min-height: auto;
  }

  .header-inner {
    position: relative;
    padding-top: 0.75rem;
    padding-bottom: 0.75rem;
    flex-wrap: wrap;
  }

  .menu-toggle {
    display: flex;
  }

  /* Mobile Navigation Drawer */
  .nav {
    display: none;
    width: 100%;
    flex-direction: column;
    align-items: stretch;
    gap: 0.35rem;
    padding: 1rem 0 0.5rem;
    border-top: 1px solid var(--line);
    margin-top: 0.5rem;
  }

  .nav.nav-open {
    display: flex;
    animation: fadeInSlide 0.22s ease forwards;
  }

  .nav a {
    padding: 0.65rem 0.85rem;
    font-size: 0.95rem;
    border-radius: var(--radius-sm);
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.04);
  }

  .nav a:hover,
  .nav a:active {
    background: rgba(32, 199, 130, 0.1);
    color: var(--green);
  }

  .hero {
    grid-template-columns: 1fr;
    min-height: auto;
    gap: 2.5rem;
    padding-top: 2.5rem;
  }

  .hero-copy {
    max-width: 100%;
  }

  .hero-visual {
    max-width: 600px;
    margin: 0 auto;
  }

  .quote-card {
    position: static;
    width: 100%;
    margin-bottom: 0.5rem;
  }

  .logo-orbit {
    margin: 0 auto;
  }

  .chart-card {
    margin-top: 0;
  }

  .about-section,
  .split-section,
  .calculator-section,
  .contact-section,
  .newsletter-section {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }

  .calculator-form {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

/* Small Tablets & Large Phones (580px - 767px) */
@media (max-width: 767px) {
  .service-strip {
    grid-template-columns: 1fr;
  }

  .service-strip article {
    border-left: 0;
    border-top: 1px solid var(--line);
    min-height: auto;
    padding: 1.25rem 0.5rem;
  }

  .service-strip article:first-child {
    border-top: 0;
  }

  .blog-grid {
    grid-template-columns: 1fr;
  }

  .calculator-form {
    grid-template-columns: 1fr;
  }

  .newsletter-form {
    grid-template-columns: 1fr;
  }
}

/* Standard & Small Mobile Phones (< 580px) */
@media (max-width: 580px) {
  .header-cta {
    min-height: 38px;
    padding: 0.45rem 0.85rem;
    font-size: 0.82rem;
  }

  .brand span {
    font-size: 0.95rem;
  }

  .brand img {
    width: 36px;
    height: 36px;
  }

  .hero-actions {
    flex-direction: column;
    width: 100%;
  }

  .hero-actions a {
    width: 100%;
  }

  .about-actions {
    flex-direction: column;
    width: 100%;
  }

  .about-actions a {
    width: 100%;
  }

  .benefit-grid,
  .curriculum-grid,
  .prop-grid,
  .package-grid,
  .review-grid {
    grid-template-columns: 1fr;
  }

  .phone-grid {
    grid-template-columns: 1fr;
  }

  .reviews-heading {
    flex-direction: column;
    align-items: stretch;
  }

  .review-tab {
    width: 100%;
  }

  .footer {
    flex-direction: column;
    align-items: flex-start;
    gap: 1.2rem;
  }

  .floating-whatsapp {
    right: max(0.9rem, env(safe-area-inset-right, 0.9rem));
    bottom: max(0.9rem, env(safe-area-inset-bottom, 0.9rem));
  }

  .whatsapp-float-label {
    display: none;
  }

  .whatsapp-float-btn {
    padding: 0.85rem;
    border-radius: 50%;
  }
}

/* Ultra-compact Phones (< 380px - e.g. iPhone SE / Mini / Galaxy Fold Outer) */
@media (max-width: 380px) {
  .about-stats {
    grid-template-columns: 1fr;
  }

  .trust-row span {
    width: 100%;
    text-align: center;
  }

  .quote-head,
  .quote-row {
    font-size: 0.75rem;
    gap: 0.35rem;
  }
}

/* Animation Keyframes */
@keyframes fadeInSlide {
  from {
    opacity: 0;
    transform: translateY(-8px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
