:root {
  --bg: #081426;
  --bg-2: #0d1f3a;
  --surface: #12284b;
  --surface-2: #17335d;
  --line: #35588d;
  --text: #dbe7ff;
  --muted: #90aad6;
  --primary: #42c6ff;
  --primary-2: #6e8bff;
  --accent: #ffbf57;
  --success: #38d9a9;
}

* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: Manrope, sans-serif;
  color: var(--text);
  overflow-x: hidden;
  background:
    radial-gradient(980px 580px at 88% -12%, rgba(66, 198, 255, 0.2) 0%, transparent 68%),
    radial-gradient(760px 500px at 10% -10%, rgba(110, 139, 255, 0.22) 0%, transparent 72%),
    radial-gradient(620px 360px at 50% 0%, rgba(255, 191, 87, 0.09) 0%, transparent 70%),
    var(--bg);
  line-height: 1.62;
}

a:focus-visible,
button:focus-visible,
input:focus-visible {
  outline: 2px solid #9fb1ff;
  outline-offset: 2px;
}

h1, h2, h3, h4, h5 { font-family: Outfit, sans-serif; line-height: 1.14; letter-spacing: 0.1px; }

.container { width: min(100% - 2rem, 1160px); margin: 0 auto; }
.section { padding: 4rem 0; }
.section-soft {
  background: linear-gradient(180deg, rgba(18, 30, 57, 0.54), rgba(14, 24, 46, 0.52));
  border-top: 1px solid rgba(47, 66, 105, 0.55);
  border-bottom: 1px solid rgba(47, 66, 105, 0.55);
}
.eyebrow {
  color: var(--accent);
  font-size: 0.78rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  font-weight: 700;
  margin-bottom: 0.78rem;
}

/* ── Announcement Bar ── */
.announce-bar {
  position: relative;
  z-index: 40;
  background: linear-gradient(90deg, #0d2a50, #122e55, #0d2a50);
  border-bottom: 1px solid rgba(66,198,255,.25);
  padding: .55rem 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: .75rem;
}
.announce-inner {
  display: flex;
  align-items: center;
  gap: .65rem;
  flex-wrap: wrap;
  justify-content: center;
}
.announce-new {
  background: var(--accent);
  color: #07111f;
  font-size: .62rem;
  font-weight: 800;
  padding: .18rem .5rem;
  border-radius: 4px;
  letter-spacing: .07em;
  flex-shrink: 0;
  animation: announcePop .5s ease;
}
.announce-text {
  font-size: .82rem;
  color: var(--text);
  font-weight: 500;
}
.announce-cta {
  font-size: .8rem;
  font-weight: 700;
  color: var(--primary);
  text-decoration: none;
  white-space: nowrap;
  border-bottom: 1px solid rgba(66,198,255,.35);
  padding-bottom: 1px;
  transition: color .2s;
}
.announce-cta:hover { color: #fff; border-color: #fff; }
.announce-close {
  position: absolute;
  right: 1rem;
  background: none;
  border: none;
  color: var(--muted);
  font-size: 1.15rem;
  line-height: 1;
  cursor: pointer;
  padding: .6rem .75rem;
  min-width: 44px;
  min-height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: color .2s;
}
.announce-close:hover { color: var(--text); }
@keyframes announcePop {
  from { transform: scale(.8); opacity: 0; }
  to   { transform: scale(1);  opacity: 1; }
}
@media (max-width: 480px) {
  .announce-text { font-size: .75rem; }
  .announce-cta  { font-size: .75rem; }
}

/* ── New Course Badge on card ── */
.course-badge-new {
  position: absolute;
  top: 2.6rem;
  left: 0;
  background: linear-gradient(90deg, #ff7043, #ffbf57);
  color: #07111f;
  font-size: .64rem;
  font-weight: 800;
  padding: .22rem .7rem;
  border-radius: 0 4px 4px 0;
  letter-spacing: .05em;
  z-index: 2;
  box-shadow: 0 2px 8px rgba(255,112,67,.35);
  animation: announcePop .4s ease;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 30;
  border-bottom: 1px solid rgba(255,255,255,0.12);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  background: rgba(15, 44, 90, 0.92);
}
.nav {
  min-height: 72px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.2rem;
}
.brand { display: inline-flex; align-items: center; gap: 0.72rem; color: #0f2144; text-decoration: none; }
.brand strong { color: #8a6200; font-size: 1rem; }
.brand span { color: #4a6080; font-size: 0.75rem; }
.brand-logo {
  height: 100px;
  width: auto;
  max-width: 100%;
  object-fit: contain;
}
.logo-wrap {
  background: #ffffff;
  border-radius: 10px;
  padding: 4px 16px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 2px 8px rgba(0,0,0,0.18);
  text-decoration: none;
}
.brand strong { display: block; font-size: 1.04rem; }
.brand span { display: block; color: var(--muted); font-size: 0.72rem; letter-spacing: 0.06em; text-transform: uppercase; }
.nav-links { display: flex; align-items: center; gap: 1.08rem; }
.nav-links a {
  color: #d4e6ff;
  text-decoration: none;
  font-size: 0.95rem;
  font-weight: 600;
  padding: 0.35rem 0.5rem;
  border-radius: 8px;
  transition: color 0.2s ease, background 0.2s ease;
}
.nav-links a:hover { color: #ffffff; }
.nav-links a:hover { background: transparent; }
.nav-links a.nav-active {
  color: #53d6ff;
  position: relative;
}
.nav-links a.nav-active::after {
  content: '';
  position: absolute;
  bottom: -6px;
  left: 0.5rem;
  right: 0.5rem;
  height: 3px;
  border-radius: 2px;
  background: #f0a500;
}
.nav-cta { display: flex; gap: 0.58rem; }

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 12px;
  border: 1px solid transparent;
  text-decoration: none;
  min-height: 46px;
  padding: 0.75rem 1.15rem;
  font-size: 0.92rem;
  font-weight: 700;
  transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}
.btn:hover { transform: translateY(-2px); }
.btn-primary {
  color: #08223f;
  background: linear-gradient(135deg, var(--accent), #ffd978);
  box-shadow: 0 12px 26px rgba(255, 191, 87, 0.34);
}
.btn-ghost {
  color: var(--text);
  background: rgba(20, 44, 80, 0.72);
  border-color: #446aa0;
}

.hero { padding: 5.1rem 0 3.4rem; }
.hero-grid { display: grid; grid-template-columns: 1.02fr 0.98fr; gap: 1.6rem; align-items: center; }
.hero-copy h1 {
  font-size: clamp(1.55rem, 3.3vw, 2.4rem);
  margin-bottom: 1rem;
  max-width: 14ch;
  background: linear-gradient(90deg, #ffffff 0%, #42c6ff 48%, #ffd978 100%);
  -webkit-background-clip: text;
  color: transparent;
}
.hero-copy p {
  color: #f3f7ff;
  max-width: 54ch;
  font-size: 0.97rem;
}
.hero-copy .eyebrow,
.hero-copy .trust-line,
.hero-copy .trust-line strong {
  color: #ffffff;
}
.hero-buttons { margin: 1.6rem 0; display: flex; gap: 0.75rem; flex-wrap: wrap; }
.trust-line { color: #ffffff; font-size: 0.94rem; }
.trust-line strong { color: #ffffff; }

.hero-panel {
  background: linear-gradient(165deg, #17335f, #12284d);
  border: 1px solid #4771ad;
  border-radius: 26px;
  padding: 1.35rem;
  box-shadow: 0 30px 56px rgba(0, 0, 0, 0.34);
}
.panel-head {
  display: flex;
  justify-content: space-between;
  margin-bottom: 1rem;
  color: #b9c8ea;
  font-size: 0.89rem;
}
.status-live { color: #4fe0ae; font-weight: 700; font-size: 0.95rem; }

/* ── AI Dashboard ── */
.ai-dash {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

/* Domain nodes */
.ai-nodes {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: .6rem;
}
@media (max-width: 480px) {
  .ai-nodes { grid-template-columns: repeat(2, 1fr); }
}
.ai-node {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: .35rem;
  padding: .7rem .4rem;
  border-radius: 12px;
  border: 1px solid rgba(66,198,255,.12);
  background: rgba(10,24,50,.6);
  transition: border-color .2s;
  text-align: center;
}
.ai-node:hover { border-color: rgba(66,198,255,.3); }
.an-icon {
  width: 36px; height: 36px;
  border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.an-web    .an-icon { background: rgba(66,198,255,.12);  color: var(--primary); }
.an-api    .an-icon { background: rgba(255,191,87,.12);  color: var(--accent); }
.an-mobile .an-icon { background: rgba(56,217,169,.12);  color: var(--success); }
.an-manual .an-icon { background: rgba(143,125,255,.12); color: #a89dff; }
.an-label  { font-size: .72rem; font-weight: 700; color: var(--text); }
.an-status { font-size: .62rem; font-weight: 600; letter-spacing: .03em; }
.an-done   { color: var(--success); }
.an-running { color: var(--primary); animation: aiPulse 1.2s ease infinite; }
.an-ready  { color: var(--accent); }
.an-queue  { color: var(--muted); opacity: .55; }

/* Live scoreboard */
.ai-scoreboard {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
  background: rgba(10,24,50,.7);
  border: 1px solid rgba(66,198,255,.14);
  border-radius: 12px;
  padding: .9rem 1rem;
  position: relative;
  flex-wrap: wrap;
  row-gap: .4rem;
}
.asb-cell {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: .18rem;
  flex: 1;
}
.asb-divider {
  width: 1px;
  height: 36px;
  background: rgba(66,198,255,.12);
  flex-shrink: 0;
}
.asb-val {
  font-family: 'Outfit', sans-serif;
  font-size: 1.7rem;
  font-weight: 800;
  line-height: 1;
}
.asb-pass  { color: var(--success); }
.asb-run   { color: var(--primary); animation: aiPulse 1.4s ease infinite; }
.asb-queue { color: var(--muted); }
.asb-label {
  font-size: .65rem;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: .06em;
}
.asb-total {
  width: 100%;
  text-align: center;
  font-size: .7rem;
  color: #3d5a82;
  border-top: 1px solid rgba(66,198,255,.08);
  padding-top: .45rem;
  margin-top: .1rem;
  letter-spacing: .04em;
}

/* AI insight callout */
.ai-insight {
  display: flex;
  align-items: flex-start;
  gap: .6rem;
  padding: .65rem .85rem;
  background: rgba(255,191,87,.07);
  border: 1px solid rgba(255,191,87,.22);
  border-radius: 10px;
  font-size: .78rem;
  color: var(--muted);
  line-height: 1.5;
}
.ai-insight-icon { color: var(--accent); font-size: 1rem; flex-shrink: 0; margin-top: .05rem; }
.ai-insight-body strong { color: var(--accent); }

/* Metric strip */
.ai-metrics {
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: rgba(10,24,50,.5);
  border: 1px solid rgba(66,198,255,.1);
  border-radius: 10px;
  padding: .7rem 1rem;
}
.ai-metric { display: flex; flex-direction: column; align-items: center; gap: .15rem; flex: 1; }
.ai-metric-divider { width: 1px; height: 32px; background: rgba(66,198,255,.12); flex-shrink: 0; }
.am-val    { font-family: 'Outfit', sans-serif; font-size: 1.35rem; font-weight: 800; color: var(--primary); line-height: 1; }
.am-green  { color: var(--success); }
.am-gold   { color: var(--accent); }
.am-label  { font-size: .65rem; color: var(--muted); text-align: center; }

@keyframes aiPulse    { 0%,100% { opacity: 1; } 50% { opacity: .3; } }

.brand-strip {
  padding: 2.5rem 0;
  background: transparent;

}
.strip-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0;
  max-width: 100%;
  margin: 0 auto;
  border: none;
  border-radius: 0;
  overflow: visible;
  background: transparent;
}
.strip-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 1.6rem 2rem;
  text-align: center;
  border-right: 1px solid rgba(98, 136, 196, 0.22);
  gap: 0;
}
.strip-item:last-child { border-right: none; }
.strip-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 0.55rem;
  line-height: 1;
}
.strip-icon-star { color: #f5c842; }
.strip-icon-globe { color: #4fc3f7; }
.strip-icon-code { color: #b39dff; font-family: monospace; font-weight: 700; font-size: 0.95rem; }
.strip-icon-telugu { color: var(--accent); font-size: 1.1rem; }
.strip-grid strong { display: block; font-size: 0.97rem; font-weight: 700; margin-bottom: 0.3rem; color: #ffffff; line-height: 1; }
.strip-label { color: #ffffff; font-size: 0.63rem; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; margin-bottom: 0.22rem; }
.strip-sub { color: var(--muted); font-size: 0.7rem; }

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

.section-title.center-title { text-align: center; margin-left: auto; margin-right: auto; }

.verified-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  background: rgba(79, 224, 174, 0.12);
  border: 1px solid rgba(79, 224, 174, 0.35);
  color: #4fe0ae;
  font-size: 0.78rem;
  font-weight: 700;
  padding: 0.3rem 0.75rem;
  border-radius: 999px;
  margin-bottom: 0.6rem;
  letter-spacing: 0.04em;
}
.section-title h2 {
  font-size: clamp(1.5rem, 3vw, 2.1rem);
  margin-bottom: 0.64rem;
  background: linear-gradient(90deg, #ffffff 0%, #42c6ff 45%, #ffd978 100%);
  -webkit-background-clip: text;
  color: transparent;
}
.section-title p { color: var(--muted); font-size: 0.95rem; }

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

.info-card, .course-card, .benefit {
  background: linear-gradient(165deg, var(--surface), var(--surface-2));
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 1.25rem;
  transition: transform 0.18s ease, border-color 0.18s ease, box-shadow 0.18s ease;
}
.info-card:hover, .course-card:hover, .benefit:hover {
  transform: translateY(-5px);
  border-color: #67a3e8;
  box-shadow: 0 16px 30px rgba(0, 0, 0, 0.22);
}
.card-icon {
  width: 48px;
  height: 48px;
  border-radius: 14px;
  display: grid;
  place-items: center;
  margin-bottom: 1.1rem;
}
.card-icon-teal  { background: rgba(32, 201, 151, 0.15); color: #20c997; }
.card-icon-purple { background: rgba(155, 89, 255, 0.15); color: #9b59ff; }
.card-icon-blue  { background: rgba(66, 198, 255, 0.15); color: #42c6ff; }
.info-card h3, .course-card h3 { margin-bottom: 0.52rem; font-size: 1.08rem; }
.info-card p, .course-card p { color: var(--muted); margin-bottom: 0.62rem; font-size: 0.93rem; }
.info-card ul { list-style: none; display: grid; gap: 0.38rem; color: #d6e1ff; font-size: 0.93rem; }
.meta { color: #c3d1f1; font-size: 0.88rem; margin-bottom: 0.45rem; }
.price { display: flex; align-items: baseline; gap: 0.58rem; }
.price del { color: #93a8d4; font-size: 0.88rem; }
.price strong { color: #9cb0ff; font-size: 1.14rem; }
.price strong { color: #ffd27a; }

.testimonials { display: grid; }
.quote-card {
  display: none;
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 1.1rem 1.2rem;
  background: linear-gradient(165deg, #18335c, #122548);
  max-width: 680px;
  margin: 0 auto;
}
.quote-card.active-slide { display: block; }
.quote-card p { font-size: 0.92rem; margin-bottom: 0.6rem; color: #dcecff; }
.quote-card span { color: var(--muted); font-size: 0.84rem; }
.slider-controls { display: flex; gap: 0.64rem; margin-top: 0.75rem; justify-content: center; }
.slider-btn {
  border: 1px solid #5f86c2;
  background: #234374;
  color: #dcecff;
  border-radius: 10px;
  padding: 0.56rem 0.9rem;
  font-size: 0.82rem;
  font-weight: 700;
  cursor: pointer;
}

/* ── Instructor Section ── */
.instructor-section { background: #0b1628; }
.instructor-grid {
  display: grid;
  grid-template-columns: 340px 1fr;
  gap: 3.5rem;
  align-items: start;
  margin-top: 2rem;
}
/* ── Instructor Cred Card ── */
.instructor-cred-card {
  background: #101e35;
  border: 1px solid rgba(45,212,191,0.2);
  border-radius: 20px;
  padding: 1.8rem;
  box-shadow: 0 20px 48px rgba(0,0,0,0.4);
}
.cred-top {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1.4rem;
}
.cred-avatar {
  width: 90px; height: 90px;
  border-radius: 50%;
  border: 2px solid rgba(45,212,191,0.4);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
  overflow: hidden;
  background: #dce8f5;
}
.cred-name { font-size: 1rem; font-weight: 700; color: #e8f0ff; }
.cred-title { font-size: 0.8rem; color: #2dd4bf; margin-top: 0.2rem; }
.cred-divider { height: 1px; background: rgba(98,136,196,0.15); margin: 1.2rem 0; }
.cred-stats {
  display: grid;
  grid-template-columns: repeat(3,1fr);
  gap: 0.5rem;
  text-align: center;
}
.cred-stat-num { display: block; font-size: 1.4rem; font-weight: 800; color: #ffffff; }
.cred-stat-label { display: block; font-size: 0.7rem; color: #7a9cc8; text-transform: uppercase; letter-spacing: 0.06em; margin-top: 0.2rem; }
.cred-skills { display: flex; flex-wrap: wrap; gap: 0.5rem; }
.cred-tag {
  background: rgba(45,212,191,0.08);
  border: 1px solid rgba(45,212,191,0.25);
  border-radius: 20px;
  padding: 0.3rem 0.75rem;
  font-size: 0.78rem;
  color: #2dd4bf;
  font-weight: 600;
}
.instructor-content { padding-top: 0.5rem; }
.instructor-heading {
  font-size: 1.6rem;
  font-weight: 700;
  color: #e8f0ff;
  margin-bottom: 0.3rem;
}
.instructor-name {
  font-size: 2rem;
  font-weight: 800;
  color: #ffffff;
  margin-bottom: 1rem;
}
.instructor-name span { color: #2dd4bf; }
.instructor-content p {
  color: #94afd4;
  line-height: 1.75;
  margin-bottom: 1rem;
  font-size: 0.97rem;
}
.instructor-learn-title {
  font-size: 1rem;
  font-weight: 700;
  color: #e8f0ff;
  margin: 1.4rem 0 0.8rem;
}
.instructor-list {
  list-style: none;
  display: grid;
  gap: 0.6rem;
}
.instructor-list li {
  display: flex;
  align-items: center;
  gap: 0.9rem;
  background: #131f35;
  border: 1px solid rgba(98,136,196,0.18);
  border-radius: 10px;
  padding: 0.85rem 1.1rem;
  color: #ccdcf5;
  font-size: 0.95rem;
}
.ilist-icon {
  flex-shrink: 0;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  border: 1.5px solid #2dd4bf;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #2dd4bf;
  font-size: 0.8rem;
  font-weight: 700;
}

.benefit { font-size: 0.95rem; color: #dce7ff; }

.cta {
  text-align: center;
  border: 1px solid #628bc9;
  border-radius: 18px;
  background: linear-gradient(150deg, #1f3e6b, #173154);
  padding: 2.7rem 1.1rem;
}
.cta p { color: var(--muted); max-width: 60ch; margin: 0 auto 1rem; }

.newsletter {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 1.3rem;
  align-items: center;
}
.newsletter p { color: var(--muted); }
.newsletter-form { display: flex; flex-wrap: wrap; gap: 0.6rem; }
.newsletter-form input {
  min-width: 280px;
  background: #1d3a68;
  border: 1px solid #6991cb;
  border-radius: 10px;
  color: #fff;
  padding: 0.74rem 0.82rem;
}
.newsletter-form input::placeholder { color: #b9d1f6; }

.site-footer { border-top: 1px solid rgba(53, 88, 141, 0.72); padding: 2.4rem 0; }
.footer { display: grid; grid-template-columns: 1.5fr 1fr 1fr 1fr; gap: 1rem; }
.footer h5 { margin-bottom: 0.36rem; }
.footer a, .footer p {
  color: var(--muted);
  text-decoration: none;
  display: block;
  margin-top: 0.36rem;
  font-size: 0.9rem;
}
.footer-text { max-width: 34ch; }

.page-enter { animation: fadeInUp 0.45s ease; }
@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(8px); }
  to { opacity: 1; transform: translateY(0); }
}

@media (max-width: 980px) {
  .hero-grid, .three-grid, .course-grid, .strip-grid, .benefits-grid, .instructor, .instructor-grid, .newsletter, .footer {
    grid-template-columns: 1fr;
  }
  .nav {
    flex-wrap: wrap;
    align-items: center;
    row-gap: 0.7rem;
    padding: 0.65rem 0;
  }
  .nav-links {
    display: flex;
    order: 3;
    width: 100%;
    overflow-x: auto;
    white-space: nowrap;
    padding-bottom: 0.2rem;
    gap: 0.55rem;
  }
  .nav-links a {
    border: 1px solid #6086c2;
    background: rgba(30, 60, 108, 0.66);
    border-radius: 999px;
    padding: 0.38rem 0.64rem;
    font-size: 0.82rem;
    flex: 0 0 auto;
  }
  .nav { min-height: 76px; }
  .nav-cta {
    margin-left: auto;
  }
  .nav-cta .btn-ghost { display: none; }
  .nav-cta .btn-primary {
    min-height: 38px;
    padding: 0.52rem 0.75rem;
    font-size: 0.82rem;
  }
  .hero { padding: 1rem 0 2rem; }
  .hero-panel { display: none; }
  .hero-telugu-badge { white-space: normal; }
  .hero-copy h1 {
    font-size: clamp(1.7rem, 7vw, 2.3rem);
    max-width: 20ch;
  }
  .section {
    padding: 3.6rem 0;
  }
  .section-title {
    margin-bottom: 1.25rem;
  }
  .section-title h2 {
    font-size: clamp(1.34rem, 5.6vw, 1.7rem);
  }
  .strip-grid {
    text-align: left;
    gap: 0.7rem;
    padding: 1rem 0;
  }
  .strip-grid strong {
    font-size: 1.3rem;
  }
  .slider-controls {
    flex-wrap: wrap;
  }
  .newsletter-form input {
    width: 100%;
    min-width: 0;
  }
}

@media (prefers-reduced-motion: reduce) {
  * {
    animation: none !important;
    transition: none !important;
    scroll-behavior: auto !important;
  }
}

/* Removed legacy horizontal animation definition. Current animations use botMoveX and botMoveY. */

/* ═══════════════════════════════════════════════
   V2 ADDITIONS
   ═══════════════════════════════════════════════ */

/* ── Trust Badges (hero) ── */
.trust-badges {
  display: flex;
  align-items: center;
  gap: 0.85rem;
  margin-top: 1.4rem;
  padding: 0.7rem 1rem;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 999px;
  width: fit-content;
}
.hero-telugu-badge {
  display: flex;
  align-items: center;
  gap: .45rem;
  margin-top: .9rem;
  padding: .38rem .85rem;
  background: rgba(255,191,87,.1);
  border: 1px solid rgba(255,191,87,.3);
  border-radius: 999px;
  width: fit-content;
  font-size: .75rem;
  color: var(--accent);
  line-height: 1;
  white-space: normal;
}
.hero-telugu-badge strong { color: var(--accent); }
.telugu-icon { font-size: 1rem; }
.trust-avatars {
  display: flex;
  align-items: center;
}
.ta {
  width: 30px;
  height: 30px;
  border-radius: 50%;
  border: 2px solid rgba(15,44,90,0.9);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.7rem;
  font-weight: 700;
  color: #fff;
  margin-left: -8px;
}
.ta:first-child { margin-left: 0; }
.ta-1 { background: linear-gradient(135deg,#42c6ff,#6e8bff); }
.ta-2 { background: linear-gradient(135deg,#ffbf57,#ff8d67); }
.ta-3 { background: linear-gradient(135deg,#38d9a9,#5ef1bf); }
.ta-4 { background: linear-gradient(135deg,#8f7dff,#5c8cff); }
.trust-text { font-size: 0.84rem; color: #d4e6ff; }
.trust-text strong { color: #fff; }

/* ── Brand Strip ── */
.brand-strip {
  padding: 0;
}
.strip-grid {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(98,136,196,0.22);
  border-radius: 18px;
  overflow: hidden;
}
.strip-item {
  padding: 2rem 1rem;
}
.strip-grid strong {
  font-size: 1.7rem;
  font-weight: 800;
  color: #ffffff;
}

/* ── Courses Grid ── */
.courses-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0,1fr));
  gap: 1.2rem;
  margin-top: 2.4rem;
}
.course-card-v2 {
  position: relative;
  background: linear-gradient(165deg, #152a50, #0f2040);
  border: 1px solid rgba(98,136,196,0.3);
  border-radius: 18px;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 0;
  transition: transform 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease;
  overflow: hidden;
}
.course-thumb {
  width: 100%;
  height: auto;
  aspect-ratio: 16/9;
  object-fit: cover;
  object-position: top;
  display: block;
  border-radius: 18px 18px 0 0;
}
.course-card-body {
  padding: 1.2rem 1.5rem 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 0.7rem;
  flex: 1;
}
.course-card-v2:hover {
  transform: translateY(-5px);
  border-color: rgba(83,214,255,0.5);
  box-shadow: 0 20px 40px rgba(0,0,0,0.3);
}
.course-badge {
  display: inline-block;
  align-self: flex-start;
  font-size: 0.7rem;
  font-weight: 700;
  padding: 0.22rem 0.65rem;
  border-radius: 999px;
  letter-spacing: 0.04em;
  margin-bottom: 0.1rem;
}
.badge-hot {
  background: rgba(255,165,0,0.18);
  border: 1px solid rgba(255,165,0,0.45);
  color: #ffbf57;
}
.badge-new {
  background: rgba(56,217,169,0.15);
  border: 1px solid rgba(56,217,169,0.4);
  color: #38d9a9;
}
.badge-top {
  background: rgba(255,215,0,0.15);
  border: 1px solid rgba(255,215,0,0.4);
  color: #ffd700;
}
.course-card-v2 h3 a {
  color: inherit;
  text-decoration: none;
}
.course-card-v2 h3 a:hover {
  color: var(--primary);
}
.course-icon-wrap {
  width: 52px;
  height: 52px;
  border-radius: 14px;
  display: grid;
  place-items: center;
  margin-bottom: 0.25rem;
}
.ci-playwright { background: rgba(83,214,255,0.12); color: #53d6ff; }
.ci-selenium   { background: rgba(255,191,87,0.12);  color: #ffbf57; }
.ci-mobile     { background: rgba(143,125,255,0.12); color: #8f7dff; }
.ci-api        { background: rgba(56,217,169,0.12);  color: #38d9a9; }
.ci-cicd       { background: rgba(110,139,255,0.12); color: #6e8bff; }
.ci-python     { background: rgba(255,141,103,0.12); color: #ff8d67; }
.course-card-v2 h3 {
  font-size: 1rem;
  font-weight: 700;
  color: #e8f0ff;
  line-height: 1.3;
}
.course-desc {
  color: var(--muted);
  font-size: 0.88rem;
  line-height: 1.55;
}
.course-meta-row {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.84rem;
}
.course-stars { color: #f5c842; letter-spacing: 0.05em; font-size: 0.9rem; }
.course-rating-num { color: #fff; font-weight: 700; }
.course-students { color: var(--muted); }
.course-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem;
}
.course-tags span {
  background: rgba(66,198,255,0.08);
  border: 1px solid rgba(66,198,255,0.22);
  border-radius: 999px;
  padding: 0.2rem 0.6rem;
  font-size: 0.75rem;
  color: #99ccef;
}
.course-footer-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: auto;
  padding-top: 0.5rem;
  border-top: 1px solid rgba(98,136,196,0.15);
}
.course-duration { color: var(--muted); font-size: 0.82rem; }
.course-price {
  margin-left: auto;
  margin-right: 0.6rem;
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--accent);
  letter-spacing: 0.01em;
}
.btn-sm {
  min-height: 34px;
  padding: 0.4rem 0.9rem;
  font-size: 0.82rem;
  border-radius: 8px;
}

/* ── Testimonials v2 ── */
.quote-stars {
  color: #f5c842;
  font-size: 1.1rem;
  letter-spacing: 0.05em;
  margin-bottom: 0.5rem;
}
.review-course-label {
  font-size: 0.72rem;
  font-weight: 600;
  color: #53d6ff;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin-bottom: 0.6rem;
}
.quote-author {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-top: 1rem;
  padding-top: 0.85rem;
  border-top: 1px solid rgba(98,136,196,0.2);
}
.quote-avatar {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.8rem;
  font-weight: 700;
  color: #fff;
  flex-shrink: 0;
}
.qa-1 { background: linear-gradient(135deg,#42c6ff,#6e8bff); }
.qa-2 { background: linear-gradient(135deg,#38d9a9,#5ef1bf); }
.qa-3 { background: linear-gradient(135deg,#ffbf57,#ff8d67); }
.qa-4 { background: linear-gradient(135deg,#a78bfa,#7c3aed); }
.qa-5 { background: linear-gradient(135deg,#34d399,#059669); }
.qa-6 { background: linear-gradient(135deg,#f97316,#dc2626); }
.quote-author h4 { font-size: 0.95rem; color: #e8f0ff; margin-bottom: 0.1rem; }
.quote-author span { font-size: 0.82rem; color: var(--muted); }
.quote-card {
  padding: 1.5rem 1.6rem;
}
.quote-card p {
  font-size: 0.92rem;
  font-style: italic;
  line-height: 1.7;
}

/* ── CTA Section v2 ── */
.cta-section { background: transparent; padding: 4rem 0; }
.cta-inner {
  text-align: center;
  border: 1px solid rgba(83,214,255,0.25);
  border-radius: 24px;
  background: linear-gradient(150deg, rgba(31,62,107,0.95), rgba(23,49,84,0.98));
  padding: 3.5rem 2rem;
  box-shadow: 0 0 80px rgba(83,214,255,0.06), 0 30px 60px rgba(0,0,0,0.3);
  position: relative;
  overflow: hidden;
}
.cta-inner::before {
  content: '';
  position: absolute;
  top: -60px; right: -60px;
  width: 260px; height: 260px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(83,214,255,0.07) 0%, transparent 70%);
  pointer-events: none;
}
.cta-badge-row {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.2rem;
  margin-bottom: 1.2rem;
  flex-wrap: wrap;
}
.cta-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  background: rgba(255,191,87,0.15);
  border: 1px solid rgba(255,191,87,0.4);
  color: #ffbf57;
  font-size: 0.82rem;
  font-weight: 700;
  padding: 0.3rem 0.85rem;
  border-radius: 999px;
  letter-spacing: 0.04em;
}
.cta-live-count {
  display: flex;
  align-items: center;
  gap: 0.45rem;
  color: #99ccef;
  font-size: 0.85rem;
}
.live-dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: #38d9a9;
  animation: pulse-live 1.8s ease-in-out infinite;
}
@keyframes pulse-live {
  0%,100% { opacity:1; transform:scale(1); }
  50% { opacity:0.5; transform:scale(0.8); }
}
.cta-inner .eyebrow { margin-bottom: 0.5rem; }
.cta-inner h2 {
  font-size: clamp(1.7rem,3.5vw,2.5rem);
  background: linear-gradient(90deg,#ffffff 0%,#42c6ff 50%,#ffd978 100%);
  -webkit-background-clip: text;
  color: transparent;
  margin-bottom: 0.75rem;
}
.cta-inner > p {
  color: var(--muted);
  max-width: 54ch;
  margin: 0 auto 1.5rem;
  font-size: 0.97rem;
}
.cta-guarantee {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.5rem;
  flex-wrap: wrap;
  margin-bottom: 1.8rem;
  color: #a8c4e0;
  font-size: 0.87rem;
}
.cta-guarantee span { display: flex; align-items: center; gap: 0.3rem; }
.cta-buttons {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  flex-wrap: wrap;
}
.btn-lg {
  min-height: 54px;
  padding: 0.9rem 2rem;
  font-size: 1rem;
  border-radius: 14px;
}
.btn-whatsapp {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  background: #25d366;
  color: #fff;
  border: none;
  border-radius: 14px;
  text-decoration: none;
  font-weight: 700;
  font-size: 0.95rem;
  min-height: 54px;
  padding: 0.9rem 1.5rem;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  box-shadow: 0 8px 22px rgba(37,211,102,0.3);
}
.btn-whatsapp:hover {
  transform: translateY(-2px);
  box-shadow: 0 14px 28px rgba(37,211,102,0.4);
}

/* ── Footer v2 ── */
.footer-grid {
  display: grid;
  grid-template-columns: 1.8fr 1fr 1fr 1fr;
  gap: 2rem;
  padding: 3rem 0 2rem;
}
.footer-brand-col {}
.footer-logo-wrap {
  display: inline-flex;
  background: #fff;
  border-radius: 10px;
  padding: 4px 14px;
  margin-bottom: 1rem;
  text-decoration: none;
}
.footer-logo {
  height: 60px;
  width: auto;
  max-width: 100%;
  object-fit: contain;
}
.footer-tagline {
  color: var(--muted);
  font-size: 0.9rem;
  max-width: 30ch;
  line-height: 1.6;
  margin-bottom: 1.2rem;
}
.footer-socials {
  display: flex;
  gap: 0.6rem;
}
.social-link {
  width: 36px;
  height: 36px;
  border-radius: 10px;
  background: rgba(98,136,196,0.12);
  border: 1px solid rgba(98,136,196,0.25);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--muted);
  text-decoration: none;
  transition: background 0.2s ease, color 0.2s ease, border-color 0.2s ease;
}
.social-link:hover {
  background: rgba(83,214,255,0.15);
  border-color: rgba(83,214,255,0.4);
  color: #53d6ff;
}
.footer-links-col h5 {
  color: #e0eaff;
  font-size: 0.9rem;
  font-weight: 700;
  margin-bottom: 0.75rem;
  letter-spacing: 0.04em;
}
.footer-links-col a {
  display: block;
  color: var(--muted);
  text-decoration: none;
  font-size: 0.88rem;
  margin-bottom: 0.45rem;
  transition: color 0.2s ease;
}
.footer-links-col a:hover { color: #53d6ff; }
.footer-bottom {
  border-top: 1px solid rgba(53,88,141,0.5);
  padding: 1.1rem 0;
}
.footer-bottom-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  flex-wrap: wrap;
  font-size: 0.84rem;
  color: var(--muted);
}

/* ── Responsive additions for v2 ── */
@media (max-width: 980px) {
  .courses-grid { grid-template-columns: repeat(2,minmax(0,1fr)); }
  .footer-grid { grid-template-columns: 1fr 1fr; row-gap: 2rem; }
  .cta-guarantee { gap: 0.75rem; }
}
@media (max-width: 600px) {
  .courses-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .trust-badges { border-radius: 14px; }
  .cta-buttons { flex-direction: column; align-items: stretch; }
  .btn-whatsapp { justify-content: center; }
  .footer-bottom-inner { flex-direction: column; text-align: center; }
}

/* ═══════════════════════════════════════════════
   V3 ADDITIONS
   ═══════════════════════════════════════════════ */

/* ── Wave dividers ── */
.wave-divider {
  line-height: 0;
  overflow: hidden;
  pointer-events: none;
  margin: 0;
  padding: 0;
}
.wave-divider svg {
  display: block;
  width: 100%;
  height: 56px;
}

/* ── Scroll-in reveal animations ── */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.55s ease, transform 0.55s ease;
}
.revealed {
  opacity: 1;
  transform: translateY(0);
}
/* staggered delay for grids */
.three-grid .info-card:nth-child(2) { transition-delay: 0.1s; }
.three-grid .info-card:nth-child(3) { transition-delay: 0.2s; }
.courses-grid .course-card-v2:nth-child(2) { transition-delay: 0.07s; }
.courses-grid .course-card-v2:nth-child(3) { transition-delay: 0.14s; }
.courses-grid .course-card-v2:nth-child(4) { transition-delay: 0.21s; }
.courses-grid .course-card-v2:nth-child(5) { transition-delay: 0.28s; }
.courses-grid .course-card-v2:nth-child(6) { transition-delay: 0.35s; }

/* ── Course filter tabs ── */
.course-filter-tabs {
  display: flex;
  gap: 0.55rem;
  justify-content: center;
  flex-wrap: wrap;
  margin: 1.8rem 0 2rem;
}
.filter-tab {
  background: rgba(98,136,196,0.1);
  border: 1px solid rgba(98,136,196,0.28);
  color: var(--muted);
  border-radius: 999px;
  padding: 0.42rem 1.1rem;
  font-size: 0.85rem;
  font-weight: 600;
  cursor: pointer;
  transition: background 0.2s, border-color 0.2s, color 0.2s;
  font-family: Outfit, sans-serif;
}
.filter-tab:hover {
  background: rgba(83,214,255,0.1);
  border-color: rgba(83,214,255,0.35);
  color: #53d6ff;
}
.filter-tab.active {
  background: rgba(83,214,255,0.14);
  border-color: rgba(83,214,255,0.6);
  color: #53d6ff;
  font-weight: 700;
}
.card-hidden {
  display: none !important;
}

/* ── Course card colored glow on hover ── */
.course-card-v2[data-category="web"]:hover     { box-shadow: 0 20px 40px rgba(83,214,255,0.18), 0 0 0 1px rgba(83,214,255,0.35); }
.course-card-v2[data-category="mobile"]:hover  { box-shadow: 0 20px 40px rgba(143,125,255,0.18), 0 0 0 1px rgba(143,125,255,0.35); }
.course-card-v2[data-category="api"]:hover     { box-shadow: 0 20px 40px rgba(56,217,169,0.18), 0 0 0 1px rgba(56,217,169,0.35); }
.course-card-v2[data-category="devops"]:hover  { box-shadow: 0 20px 40px rgba(110,139,255,0.18), 0 0 0 1px rgba(110,139,255,0.35); }

/* ── Testimonial dot indicators ── */
.testimonial-dots {
  display: flex;
  justify-content: center;
  gap: 0.55rem;
  margin-top: 1.2rem;
}
.t-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: rgba(98,136,196,0.35);
  border: none;
  cursor: pointer;
  padding: 10px;
  margin: -10px;
  box-sizing: content-box;
  transition: background 0.25s, transform 0.25s, width 0.25s;
}
.t-dot-active {
  background: #53d6ff;
  width: 24px;
  border-radius: 4px;
  transform: none;
}

/* ── Floating WhatsApp button ── */
.whatsapp-float {
  position: fixed;
  bottom: 1.6rem;
  right: 1.6rem;
  z-index: 999;
  display: flex;
  align-items: center;
  gap: 0.55rem;
  background: #25d366;
  color: #fff;
  text-decoration: none;
  border-radius: 999px;
  height: 56px;
  width: 56px;
  padding: 0 13px;
  font-weight: 700;
  font-size: 0.9rem;
  font-family: Outfit, sans-serif;
  box-shadow: 0 8px 28px rgba(37,211,102,0.4);
  transition: transform 0.2s ease, box-shadow 0.2s ease, width 0.35s ease, padding 0.35s ease;
  overflow: hidden;
}
.whatsapp-float svg {
  flex-shrink: 0;
}
.whatsapp-float:hover {
  transform: translateY(-3px);
  box-shadow: 0 14px 36px rgba(37,211,102,0.5);
  width: 190px;
  padding: 0 18px 0 13px;
}
.whatsapp-label {
  white-space: nowrap;
  overflow: hidden;
  max-width: 0;
  opacity: 0;
  transition: max-width 0.35s ease, opacity 0.25s ease 0.05s;
}
.whatsapp-float:hover .whatsapp-label {
  max-width: 140px;
  opacity: 1;
}

/* ── Reduce motion ── */
@media (prefers-reduced-motion: reduce) {
  .reveal, .revealed { opacity: 1; transform: none; transition: none; }
  .whatsapp-float, .whatsapp-label { transition: none; }
}

/* ── Feature list (info cards) ── */
.feature-list {
  list-style: none;
  display: grid;
  gap: 0.6rem;
  margin-top: 1rem;
}
.feature-list li {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  font-size: 0.9rem;
  font-weight: 500;
  line-height: 1.4;
}
.fl-icon {
  flex-shrink: 0;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}
/* teal */
.fl-teal { color: #b2f0e4; }
.fl-teal .fl-icon {
  background: rgba(32,201,151,0.18);
  border: 1.5px solid rgba(32,201,151,0.5);
  color: #20c997;
}
/* purple */
.fl-purple { color: #ddd0ff; }
.fl-purple .fl-icon {
  background: rgba(155,89,255,0.18);
  border: 1.5px solid rgba(155,89,255,0.5);
  color: #9b59ff;
}
/* blue */
.fl-blue { color: #b8daff; }
.fl-blue .fl-icon {
  background: rgba(66,198,255,0.18);
  border: 1.5px solid rgba(66,198,255,0.5);
  color: #42c6ff;
}

/* ══════════════════════════════════════════
   COURSES PAGE  (courses.html)
══════════════════════════════════════════ */
.cp-hero {
  padding: 100px 0 50px;
  text-align: center;
  background: var(--bg-2);
  border-bottom: 1px solid rgba(255,255,255,.06);
}
.cp-hero-inner { max-width: 760px; }
.cp-title {
  font-size: clamp(2.2rem, 5.5vw, 3.8rem);
  font-weight: 800;
  line-height: 1.15;
  margin: 0;
}
.cp-title-accent { color: var(--primary); }
.cp-subtitle {
  color: var(--muted);
  font-size: 1.1rem;
  max-width: 580px;
  margin: 1rem auto 0;
  line-height: 1.7;
}
.cp-telugu-note {
  display: inline-flex;
  align-items: center;
  gap: .45rem;
  margin: .9rem auto 0;
  padding: .45rem 1rem;
  background: rgba(255,191,87,.1);
  border: 1px solid rgba(255,191,87,.3);
  border-radius: 999px;
  font-size: .85rem;
  color: var(--accent);
  line-height: 1.4;
}
.cp-telugu-note strong { color: var(--accent); }
/* Stats bar */
.cp-stats-bar {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
  margin-top: 2.5rem;
  background: var(--surface);
  border: 1px solid rgba(255,255,255,.08);
  border-radius: 60px;
  padding: .9rem 2.5rem;
  width: fit-content;
  margin-inline: auto;
  flex-wrap: wrap;
  row-gap: .5rem;
}
.cp-stat { text-align: center; padding: 0 1.6rem; }
.cp-stat-num {
  display: block;
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--primary);
  line-height: 1.1;
}
.cp-stat-lbl {
  font-size: .72rem;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: .07em;
}
.cp-stat-div {
  width: 1px;
  height: 38px;
  background: rgba(255,255,255,.1);
  flex-shrink: 0;
}
/* Search + Filter toolbar */
.cp-section { padding: 60px 0 90px; }
.cp-toolbar {
  display: flex;
  align-items: center;
  gap: 1rem;
  flex-wrap: wrap;
  margin-bottom: .75rem;
}
.cp-search-wrap {
  position: relative;
  display: flex;
  align-items: center;
  flex: 1;
  min-width: 200px;
  max-width: 360px;
}
.cp-search-icon {
  position: absolute;
  left: .9rem;
  color: var(--muted);
  pointer-events: none;
  flex-shrink: 0;
}
.cp-search {
  width: 100%;
  padding: .5rem 2.4rem .5rem 2.5rem;
  background: var(--surface);
  border: 1px solid rgba(255,255,255,.12);
  border-radius: 40px;
  color: var(--text);
  font-family: 'Outfit', sans-serif;
  font-size: .9rem;
  outline: none;
  transition: border-color .2s;
}
.cp-search::placeholder { color: var(--muted); }
.cp-search:focus { border-color: var(--primary); }
.cp-search::-webkit-search-cancel-button { -webkit-appearance: none; }
.cp-search-clear {
  position: absolute;
  right: .7rem;
  background: none;
  border: none;
  color: var(--muted);
  font-size: .85rem;
  cursor: pointer;
  padding: .2rem .3rem;
  line-height: 1;
  transition: color .15s;
}
.cp-search-clear:hover { color: var(--text); }
.cp-results-info {
  font-size: .82rem;
  color: var(--muted);
  margin-bottom: 1.25rem;
  min-height: 1.2em;
}
.cp-filters {
  display: flex;
  gap: .5rem;
  flex-wrap: wrap;
}
.cp-tab {
  padding: .45rem 1.25rem;
  border-radius: 40px;
  border: 1px solid rgba(255,255,255,.12);
  background: transparent;
  color: var(--muted);
  font-family: 'Outfit', sans-serif;
  font-size: .9rem;
  font-weight: 500;
  cursor: pointer;
  transition: all .2s;
}
.cp-tab:hover {
  border-color: var(--primary);
  color: var(--text);
}
.cp-tab-active {
  background: var(--primary);
  border-color: var(--primary);
  color: #081426;
  font-weight: 700;
}
/* Grid */
.cp-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(290px, 1fr));
  gap: 1.5rem;
}
/* Card */
.cp-card {
  background: var(--surface);
  border: 1px solid rgba(255,255,255,.06);
  border-radius: 14px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: transform .25s ease, box-shadow .25s ease;
}
.cp-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 18px 36px rgba(0,0,0,.35);
}
.cp-thumb-wrap { position: relative; flex-shrink: 0; }
.cp-thumb {
  width: 100%;
  aspect-ratio: 16/9;
  object-fit: cover;
  display: block;
}
.cp-badge {
  position: absolute;
  top: 10px;
  left: 10px;
  font-size: .7rem;
  font-weight: 700;
  padding: .2rem .55rem;
  border-radius: 20px;
  text-transform: uppercase;
  letter-spacing: .04em;
}
.cp-badge-hr  { background: var(--accent); color: #1a0a00; }
.cp-badge-bs  { background: var(--primary); color: #081426; }
.cp-badge-new { background: var(--success); color: #042920; }
.cp-card-body {
  padding: 1rem 1.1rem .5rem;
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: .35rem;
}
.cp-cat-tag {
  font-size: .7rem;
  font-weight: 600;
  color: var(--primary);
  text-transform: uppercase;
  letter-spacing: .06em;
}
.cp-card-title {
  font-size: .95rem;
  font-weight: 700;
  line-height: 1.4;
  margin: 0;
  flex: 1;
}
.cp-card-title a {
  color: var(--text);
  text-decoration: none;
}
.cp-card-title a:hover { color: var(--primary); }
.cp-meta-row {
  display: flex;
  align-items: center;
  gap: .4rem;
  margin-top: .2rem;
  flex-wrap: wrap;
}
.cp-stars { color: var(--accent); font-size: .85rem; }
.cp-rating { font-size: .82rem; font-weight: 700; color: var(--text); }
.cp-dur { font-size: .78rem; color: var(--muted); margin-left: auto; }
.cp-card-foot {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: .75rem 1.1rem 1rem;
  border-top: 1px solid rgba(255,255,255,.06);
  gap: .5rem;
}
.cp-price {
  font-size: 1.3rem;
  font-weight: 800;
  color: var(--accent);
}
/* nav active highlight */
.nav-active { color: var(--primary) !important; }

/* View All CTA block */
.cp-view-all-wrap {
  text-align: center;
  margin-top: 3rem;
  padding: 2.5rem 2rem;
  background: var(--surface);
  border: 1px solid rgba(255,255,255,.08);
  border-radius: 16px;
}
.cp-view-all-sub {
  color: var(--muted);
  margin: 0 0 1.25rem;
  font-size: 1rem;
}
.cp-view-all-sub strong { color: var(--text); }

/* Pricing CTA upgrade section (courses page) */
.cta-upgrade {
  background: var(--bg-2);
  padding: 6rem 1.5rem;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.cta-upgrade::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 70% 60% at 50% 40%, rgba(56,217,169,.08) 0%, transparent 70%);
  pointer-events: none;
}
.cta-upgrade-inner {
  position: relative;
  max-width: 680px;
  margin: 0 auto;
}
.cta-upgrade-heading {
  font-size: clamp(2rem, 5vw, 3rem);
  font-weight: 800;
  color: var(--text);
  line-height: 1.15;
  margin: 0 0 1.25rem;
}
.cta-upgrade-accent {
  color: var(--success);
}
.cta-upgrade-sub {
  color: var(--muted);
  font-size: 1.1rem;
  line-height: 1.7;
  margin: 0 0 2.25rem;
}
.cta-upgrade-btn {
  background: var(--success) !important;
  color: #081426 !important;
  font-weight: 700;
  border-radius: 999px;
  padding: .9rem 2.25rem;
  font-size: 1rem;
  display: inline-flex;
  align-items: center;
  gap: .4rem;
  transition: opacity .2s, transform .2s;
}
.cta-upgrade-btn:hover {
  opacity: .88;
  transform: translateY(-2px);
}

/* Responsive */
@media (max-width: 600px) {
  .cp-stats-bar { padding: .75rem 1rem; }
  .cp-stat { padding: 0 .8rem; }
  .cp-stat-div { display: none; }
  .cp-grid { grid-template-columns: 1fr; }
  .cp-search-wrap { max-width: 100%; }
  .cp-toolbar { gap: .6rem; }
}


/* ═══════════════════════════════════════════
   PRICING PAGE  (pr-*)
═══════════════════════════════════════════ */

/* Shared pill — matches homepage eyebrow accent colour */
.pr-pill {
  display: inline-flex;
  align-items: center;
  gap: .4rem;
  background: rgba(255,191,87,.10);
  border: 1px solid rgba(255,191,87,.28);
  color: var(--accent);
  font-size: .75rem;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  padding: .35rem .9rem;
  border-radius: 999px;
  margin-bottom: .75rem;
}

/* Hero */
.pr-hero {
  background: var(--bg);
  padding: 6rem 1.5rem 4rem;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.pr-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 80% 50% at 50% 0%, rgba(66,198,255,.07) 0%, transparent 65%);
  pointer-events: none;
}
.pr-hero-inner { position: relative; max-width: 720px; margin: 0 auto; }
.pr-hero-title {
  font-size: clamp(2.4rem, 6vw, 4rem);
  font-weight: 800;
  color: var(--text);
  line-height: 1.1;
  margin: 0 0 1.25rem;
}
.pr-accent { color: var(--primary); }
.pr-hero-sub {
  color: var(--muted);
  font-size: 1.1rem;
  line-height: 1.7;
  margin: 0 0 2rem;
}
.pr-trust-row {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 1.5rem;
  color: var(--muted);
  font-size: .9rem;
}
.pr-trust-row span {
  display: flex;
  align-items: center;
  gap: .4rem;
}
.pr-trust-row svg { color: var(--success); flex-shrink: 0; }

/* Plans */
.pr-plans {
  background: var(--bg-2);
  padding: 4rem 1.5rem 2rem;
}
.pr-plans-inner {
  max-width: 860px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
  align-items: stretch;
}
.pr-card {
  background: var(--surface);
  border: 1px solid rgba(255,255,255,.08);
  border-radius: 20px;
  padding: 2rem 2rem 2.25rem;
  position: relative;
  display: flex;
  flex-direction: column;
}
.pr-card-individual {
  border-color: rgba(255,191,87,.4);
  background: linear-gradient(160deg, rgba(255,191,87,.09) 0%, rgba(255,191,87,.02) 55%, var(--surface) 100%);
  box-shadow: 0 0 0 1px rgba(255,191,87,.18), 0 8px 36px rgba(255,191,87,.08);
}
.pr-card-individual .pr-price { color: var(--accent); }
.pr-card-individual .pr-card-icon { background: rgba(255,191,87,.12); color: var(--accent); }
.pr-card-featured {
  border-color: rgba(255,191,87,.55);
  background: linear-gradient(160deg, rgba(255,191,87,.13) 0%, rgba(255,191,87,.04) 55%, var(--surface) 100%);
  box-shadow: 0 0 0 1px rgba(255,191,87,.25), 0 8px 36px rgba(255,191,87,.12);
}
.pr-card-featured .pr-price-featured { color: var(--accent); }
.pr-card-featured .pr-icon-crown { background: rgba(255,191,87,.15); color: var(--accent); }
.pr-recommended-badge {
  position: absolute;
  top: -14px;
  right: 1.5rem;
  background: var(--primary);
  color: #081426;
  font-size: .7rem;
  font-weight: 700;
  letter-spacing: .08em;
  padding: .3rem .85rem;
  border-radius: 999px;
}
.pr-card-icon {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: rgba(66,198,255,.12);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary);
  margin-bottom: 1.25rem;
}
.pr-icon-crown {
  background: rgba(255,191,87,.12);
  color: var(--accent);
}
.pr-card-name {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--text);
  margin: 0 0 1rem;
}
.pr-price-row {
  display: flex;
  align-items: baseline;
  gap: .5rem;
  margin-bottom: .25rem;
}
.pr-price {
  font-family: Outfit, sans-serif;
  font-size: 3rem;
  font-weight: 800;
  color: var(--text);
  line-height: 1;
}
.pr-price-featured { color: var(--primary); }
.pr-price-note {
  color: var(--muted);
  font-size: .9rem;
}
.pr-price-sub {
  color: var(--muted);
  font-size: .85rem;
  margin: 0 0 1.5rem;
}
.pr-features {
  list-style: none;
  padding: 0;
  margin: 0 0 0;
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: .7rem;
}
.pr-features li {
  display: flex;
  align-items: center;
  gap: .55rem;
  color: var(--muted);
  font-size: .9rem;
}
.pr-features li svg { color: var(--success); flex-shrink: 0; }
.pr-card-btn {
  display: block;
  width: 100%;
  text-align: center;
  padding: .8rem 1.5rem;
  border-radius: 10px;
  font-weight: 600;
  font-size: .95rem;
  transition: opacity .2s, transform .2s;
  margin-top: 1.75rem;
}
.pr-btn-outline {
  background: rgba(255,191,87,.10);
  border: 1px solid rgba(255,191,87,.4);
  color: var(--accent);
}
.pr-btn-outline:hover { background: rgba(255,191,87,.18); border-color: var(--accent); color: var(--accent); }
.pr-btn-primary {
  background: var(--accent);
  color: #081426;
  border: none;
  display: flex;
  align-items: center;
  justify-content: center;
}
.pr-btn-primary:hover { opacity: .88; transform: translateY(-2px); }
.pr-guarantee {
  text-align: center;
  color: var(--muted);
  font-size: .85rem;
  margin-top: 1.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: .4rem;
}
.pr-guarantee svg { color: var(--success); }

/* Why section */
.pr-why {
  background: var(--bg);
  padding: 5.5rem 1.5rem;
  text-align: center;
}
.pr-section-title {
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  font-weight: 800;
  color: var(--text);
  margin: 0 0 3rem;
}
.pr-why-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
  max-width: 1000px;
  margin: 0 auto;
  text-align: left;
}
.pr-why-card {
  background: var(--surface);
  border: 1px solid rgba(255,255,255,.07);
  border-radius: 16px;
  padding: 1.75rem 1.5rem;
}
.pr-why-icon {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.1rem;
}
.pr-why-icon-teal  { background: rgba(56,217,169,.12); color: var(--success); }
.pr-why-icon-purple{ background: rgba(180,120,255,.12); color: #b478ff; }
.pr-why-icon-blue  { background: rgba(66,198,255,.12);  color: var(--primary); }
.pr-why-icon-green { background: rgba(56,217,169,.12); color: var(--success); }
.pr-why-card h4 {
  font-size: 1rem;
  font-weight: 700;
  color: var(--text);
  margin: 0 0 .55rem;
}
.pr-why-card p {
  color: var(--muted);
  font-size: .88rem;
  line-height: 1.65;
  margin: 0;
}

/* Reviews */
.pr-reviews {
  background: var(--bg-2);
  padding: 5.5rem 1.5rem;
  text-align: center;
}
.pr-reviews-sub {
  color: var(--muted);
  font-size: 1rem;
  margin: -.5rem 0 2.5rem;
}
.pr-reviews-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
  max-width: 1060px;
  margin: 0 auto;
  text-align: left;
}
.pr-review-card {
  background: var(--surface);
  border: 1px solid rgba(255,255,255,.07);
  border-radius: 16px;
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.pr-review-top {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
}
.pr-review-quote-icon {
  width: 34px;
  height: 34px;
  background: rgba(56,217,169,.12);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--success);
}
.pr-verified-tag {
  display: inline-flex;
  align-items: center;
  gap: .3rem;
  color: var(--success);
  font-size: .7rem;
  font-weight: 700;
  letter-spacing: .07em;
  border: 1px solid rgba(56,217,169,.3);
  padding: .2rem .6rem;
  border-radius: 999px;
}
.pr-review-text {
  color: var(--muted);
  font-size: .88rem;
  line-height: 1.65;
  flex: 1;
  margin: 0;
}
.pr-review-author {
  display: flex;
  align-items: center;
  gap: .75rem;
  padding-top: .75rem;
  border-top: 1px solid rgba(255,255,255,.06);
}
.pr-avatar {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: .75rem;
  font-weight: 700;
  flex-shrink: 0;
  color: #081426;
}
.pr-av-1 { background: #38d9a9; }
.pr-av-2 { background: #42c6ff; }
.pr-av-3 { background: #ffbf57; }
.pr-av-4 { background: #b478ff; }
.pr-av-5 { background: #ff7b7b; }
.pr-av-6 { background: #38d9a9; }
.pr-review-author > div strong {
  display: block;
  font-size: .88rem;
  color: var(--text);
}
.pr-review-author > div span {
  font-size: .78rem;
  color: var(--muted);
}
.pr-stars {
  margin-left: auto;
  color: #f5c518;
  font-size: .85rem;
  white-space: nowrap;
}

/* FAQ */
.pr-faq {
  background: var(--bg);
  padding: 5.5rem 1.5rem;
  text-align: center;
}
.pr-faq-inner {
  max-width: 720px;
  margin: 0 auto;
}
.pr-faq-list {
  margin-top: 2.5rem;
  text-align: left;
  display: flex;
  flex-direction: column;
  gap: .75rem;
}
.pr-faq-item {
  background: var(--surface);
  border: 1px solid rgba(255,255,255,.07);
  border-radius: 14px;
  overflow: hidden;
  transition: border-color .2s;
}
.pr-faq-item.pr-faq-open {
  border-color: rgba(66,198,255,.35);
}
.pr-faq-q {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1.15rem 1.5rem;
  background: none;
  border: none;
  cursor: pointer;
  color: var(--text);
  font-family: Outfit, sans-serif;
  font-size: 1rem;
  font-weight: 600;
  text-align: left;
  transition: color .2s;
}
.pr-faq-item.pr-faq-open .pr-faq-q { color: var(--primary); }
.pr-faq-chevron {
  flex-shrink: 0;
  transition: transform .25s;
}
.pr-faq-item.pr-faq-open .pr-faq-chevron { transform: rotate(180deg); }
.pr-faq-a {
  max-height: 0;
  overflow: hidden;
  transition: max-height .3s ease, padding .2s;
  padding: 0 1.5rem;
}
.pr-faq-item.pr-faq-open .pr-faq-a {
  max-height: 300px;
  padding: 0 1.5rem 1.25rem;
}
.pr-faq-a p {
  color: var(--muted);
  font-size: .92rem;
  line-height: 1.7;
  margin: 0;
}

/* Responsive */
@media (max-width: 768px) {
  .pr-plans-inner { grid-template-columns: 1fr; }
  .pr-why-grid    { grid-template-columns: 1fr; }
  .pr-reviews-grid{ grid-template-columns: 1fr; }
}
@media (min-width: 769px) and (max-width: 1024px) {
  .pr-why-grid     { grid-template-columns: 1fr 1fr; }
  .pr-reviews-grid { grid-template-columns: 1fr 1fr; }
}

/* ── Slim footer ───────────────────────────────────────────── */
.site-footer-slim {
  background: var(--bg-2);
  border-top: 1px solid rgba(66,198,255,.1);
  padding: 2.5rem 0;
}
.footer-slim-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  flex-wrap: wrap;
}
/* ── brand: logo + socials ── */
.footer-slim-brand {
  display: flex;
  flex-direction: column;
  gap: .85rem;
}
.footer-slim-brand .footer-logo-wrap { margin-bottom: 0; }
.footer-slim-socials {
  display: flex;
  align-items: center;
  gap: .85rem;
}
.footer-slim-socials .social-link {
  color: var(--muted);
  transition: color .2s;
}
.footer-slim-socials .social-link:hover { color: var(--primary); }
/* ── divider ── */
.footer-slim-divider {
  width: 1px;
  align-self: stretch;
  min-height: 72px;
  background: rgba(66,198,255,.12);
  flex-shrink: 0;
}
/* ── shared section style ── */
.footer-slim-legal,
.footer-slim-contact {
  display: flex;
  flex-direction: column;
  gap: .55rem;
}
.footer-slim-legal > span,
.footer-slim-contact > span {
  font-size: .68rem;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--primary);
  opacity: .65;
  margin-bottom: .1rem;
}
.footer-slim-legal a,
.footer-slim-contact a {
  color: var(--muted);
  font-size: .88rem;
  text-decoration: none;
  transition: color .2s;
  line-height: 1.5;
}
.footer-slim-legal a:hover,
.footer-slim-contact a:hover { color: var(--text); }
/* ── copyright ── */
.footer-slim-copy {
  display: flex;
  flex-direction: column;
  gap: .3rem;
  text-align: right;
}
.footer-slim-copy span:first-child {
  color: var(--muted);
  font-size: .8rem;
  white-space: nowrap;
}
.footer-slim-copy span:last-child {
  font-size: .8rem;
  white-space: nowrap;
}
@media (max-width: 768px) {
  .footer-slim-inner   { flex-direction: column; align-items: center; text-align: center; gap: 2rem; }
  .footer-slim-brand   { align-items: center; }
  .footer-slim-divider { width: 60px; height: 1px; min-height: unset; align-self: auto; }
  .footer-slim-legal,
  .footer-slim-contact { align-items: center; }
  .footer-slim-copy    { margin: 0; }
}

/* ── Services page ── */
.services-hero { padding: 7rem 0 4rem; text-align: center; }
.services-hero h1 {
  font-size: clamp(2rem, 5vw, 3.2rem);
  font-weight: 800;
  line-height: 1.15;
  margin-bottom: 1.25rem;
  background: linear-gradient(90deg, #ffffff 0%, #42c6ff 48%, #ffd978 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  color: transparent;
}
.services-hero > .container > p {
  color: var(--muted);
  font-size: 1.1rem;
  max-width: 560px;
  margin: 0 auto;
  line-height: 1.7;
}
.services-grid-section { padding: 3rem 0 5rem; }
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.75rem;
}
.service-card {
  background: linear-gradient(160deg, rgba(255,191,87,.09) 0%, rgba(255,191,87,.02) 55%, var(--surface) 100%);
  border: 1px solid rgba(255,191,87,.4);
  border-radius: 16px;
  padding: 2.25rem 2rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  box-shadow: 0 0 0 1px rgba(255,191,87,.18), 0 8px 36px rgba(255,191,87,.08);
  transition: border-color .2s, transform .2s, box-shadow .2s;
}
.service-card:hover { border-color: rgba(255,191,87,.75); box-shadow: 0 0 0 1px rgba(255,191,87,.35), 0 12px 40px rgba(255,191,87,.14); transform: translateY(-4px); }
.service-icon {
  width: 52px;
  height: 52px;
  border-radius: 12px;
  background: rgba(255,191,87,.12);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent);
}
.service-card h3 { font-size: 1.2rem; font-weight: 700; color: var(--text); margin: 0; }
.service-card > p { color: var(--muted); font-size: .95rem; line-height: 1.7; margin: 0; flex: 1; }
.service-card ul { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: .45rem; }
.service-card ul li {
  color: var(--muted);
  font-size: .88rem;
  display: flex;
  align-items: flex-start;
  gap: .5rem;
  line-height: 1.5;
}
.service-card ul li::before { content: "✓"; color: var(--success); font-weight: 700; flex-shrink: 0; margin-top: .05rem; }
.services-cta {
  background: var(--bg-2);
  border-top: 1px solid rgba(66,198,255,.08);
  border-bottom: 1px solid rgba(66,198,255,.08);
  padding: 5rem 0;
  text-align: center;
}
.services-cta h2 {
  font-size: clamp(1.6rem, 4vw, 2.4rem);
  font-weight: 800;
  margin-bottom: 1rem;
  background: linear-gradient(90deg, #ffffff 0%, #42c6ff 48%, #ffd978 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  color: transparent;
}
.services-cta > .container > p { color: var(--muted); font-size: 1rem; max-width: 500px; margin: 0 auto 2rem; line-height: 1.7; }
.services-cta-buttons { display: flex; align-items: center; justify-content: center; gap: 1rem; flex-wrap: wrap; }

/* ── Legal pages (Privacy & Terms) ── */
.legal-hero { padding: 7rem 0 3rem; text-align: center; }
.legal-hero h1 {
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  font-weight: 800;
  margin-bottom: .75rem;
  background: linear-gradient(90deg, #ffffff 0%, #42c6ff 48%, #ffd978 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  color: transparent;
}
.legal-hero .last-updated { color: var(--muted); font-size: .85rem; }
.legal-body { padding: 3rem 0 6rem; }
.legal-content { max-width: 760px; margin: 0 auto; }
.legal-content h2 {
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--primary);
  margin: 2.5rem 0 .75rem;
  padding-bottom: .4rem;
  border-bottom: 1px solid rgba(66,198,255,.1);
}
.legal-content h2:first-child { margin-top: 0; }
.legal-content p { color: var(--muted); font-size: .95rem; line-height: 1.8; margin-bottom: 1rem; }
.legal-content ul { color: var(--muted); font-size: .95rem; line-height: 1.8; padding-left: 1.4rem; margin-bottom: 1rem; }
.legal-content ul li { margin-bottom: .4rem; }
.legal-content a { color: var(--primary); text-decoration: none; }
.legal-content a:hover { text-decoration: underline; }
.legal-notice {
  background: var(--surface);
  border: 1px solid rgba(66,198,255,.15);
  border-radius: 12px;
  padding: 1.25rem 1.5rem;
  margin-bottom: 2rem;
}
.legal-notice p { margin: 0; font-size: .88rem; }

@media (max-width: 600px) {
  .services-hero { padding: 5rem 0 3rem; }
  .legal-hero    { padding: 5rem 0 2rem; }
}
