/* ============================================================
   Ovi Design Academy — Free UX/UI Master Class Landing Page
   Dark theme matching ovidesign.in. Simple hand-written
   HTML/CSS/JS. No frameworks, no build step.
   ============================================================ */

:root {
  --ink: #1a1830;          /* primary dark background — matches ovidesign.in */
  --ink-deep: #121026;     /* deeper panels / footer */
  --panel: #242041;        /* card surfaces on dark bg */
  --panel-2: #2c2750;      /* hover / raised surfaces */
  --line: rgba(255, 255, 255, .1);
  --cream: #f8f6f1;        /* primary text on dark */
  --muted: #b7b2d6;        /* secondary text on dark */
  --orange: #ff6a2c;
  --orange-light: #ffa45f;
  --blue: #2f6bff;
  --blue-light: #49c6ff;
  --shadow: 0 20px 44px -18px rgba(0, 0, 0, .55);
  --radius: 16px;
  --gradient: linear-gradient(115deg, var(--orange) 0%, var(--orange-light) 45%, var(--blue-light) 100%);
  --font-head: "Space Grotesk", sans-serif;
  --font-body: "Manrope", sans-serif;
}

* { box-sizing: border-box; }
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: var(--font-body);
  color: var(--cream);
  background: var(--ink);
  line-height: 1.6;
  overflow-x: hidden;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
h1, h2, h3 { font-family: var(--font-head); color: var(--cream); margin: 0 0 .5em; line-height: 1.18; }
p { margin: 0 0 1em; }
.container {
  width: 100%;
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 24px;
}

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  justify-content: center;
  font-family: var(--font-body);
  font-weight: 700;
  border-radius: 999px;
  padding: 14px 28px;
  font-size: 1rem;
  cursor: pointer;
  border: 2px solid transparent;
  transition: transform .15s ease, box-shadow .15s ease, background .15s ease;
  white-space: nowrap;
}
.btn:hover { transform: translateY(-2px); }
.btn-primary {
  background: var(--gradient);
  color: #1a1830;
  box-shadow: 0 10px 26px -8px rgba(255, 106, 44, .55);
}
.btn-primary:hover { box-shadow: 0 16px 32px -8px rgba(255, 106, 44, .65); }
.btn-outline {
  background: transparent;
  border-color: rgba(255, 255, 255, .35);
  color: var(--cream);
}
.btn-outline:hover { background: rgba(255, 255, 255, .1); border-color: var(--cream); }
.btn-whatsapp {
  background: #25d366;
  color: #0b3d1f;
  box-shadow: 0 10px 24px -8px rgba(37, 211, 102, .5);
}
.btn-whatsapp:hover { background: #1fbd5a; }
.btn-whatsapp-invert {
  background: var(--white, #fff);
  color: #1f8c46;
}
.icon-wa, .btn svg { width: 20px; height: 20px; fill: currentColor; flex-shrink: 0; }
.btn-lg { padding: 16px 34px; font-size: 1.05rem; }
.btn-xl { padding: 20px 44px; font-size: 1.2rem; }
.btn-sm { padding: 10px 20px; font-size: .9rem; }
.btn-icon-only { padding: 14px; border-radius: 50%; }

.badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: .8rem;
  font-weight: 700;
  letter-spacing: .03em;
  text-transform: uppercase;
  padding: 8px 16px;
  border-radius: 999px;
  background: rgba(255, 255, 255, .08);
  border: 1px solid var(--line);
  color: var(--cream);
  margin-bottom: 18px;
}
.badge-live { background: rgba(255, 106, 44, .16); color: var(--orange-light); border-color: rgba(255, 164, 95, .3); }

.eyebrow {
  display: inline-block;
  font-size: .8rem;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--orange-light);
  margin-bottom: 10px;
}

.text-gradient {
  background: var(--gradient);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

/* ---------- Announcement bar ---------- */
.announce-bar {
  background: var(--ink-deep);
  color: var(--cream);
  text-align: center;
  font-size: .88rem;
  padding: 10px 16px;
  border-bottom: 1px solid var(--line);
}
.announce-bar a { color: var(--orange-light); font-weight: 700; text-decoration: underline; }

/* ---------- Header ---------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(26, 24, 48, .88);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--line);
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 12px;
  padding-bottom: 12px;
  gap: 16px;
}
.logo img { height: 40px; }
.main-nav {
  display: flex;
  gap: 28px;
  flex: 1;
  justify-content: center;
}
.main-nav a {
  font-weight: 600;
  font-size: .95rem;
  color: var(--muted);
}
.main-nav a:hover { color: var(--orange-light); }
.header-cta { flex-shrink: 0; }
.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 6px;
}
.nav-toggle span { width: 24px; height: 2px; background: var(--cream); border-radius: 2px; }

/* ---------- Hero ---------- */
.hero { padding: 60px 0 56px; background: radial-gradient(circle at 15% 0%, rgba(255, 106, 44, .12), transparent 40%), radial-gradient(circle at 90% 20%, rgba(47, 107, 255, .14), transparent 45%), var(--ink); }
.hero-inner {
  display: grid;
  grid-template-columns: 1.05fr .95fr;
  gap: 48px;
  align-items: center;
}
.hero h1 { font-size: clamp(2rem, 3.6vw, 2.85rem); }
.hero-sub { font-size: 1.08rem; color: var(--muted); max-width: 54ch; }
.hero-schedule {
  background: rgba(255, 164, 95, .1);
  border: 1px dashed var(--orange-light);
  color: var(--cream);
  padding: 10px 16px;
  border-radius: 12px;
  display: inline-block;
  margin-bottom: 22px;
  font-size: .95rem;
}
.hero-cta-group { display: flex; flex-wrap: wrap; gap: 14px; margin-bottom: 14px; }
.hero-cta-group-center { justify-content: center; }
.hero-trust { font-size: .92rem; color: var(--muted); }

@media (min-width: 781px) {
  .hero .hero-cta-group { flex-wrap: nowrap; }
  .hero .hero-cta-group .btn { padding: 14px 20px; font-size: .92rem; }
}

/* ---------- Real photo mosaic (replaces old abstract hero graphic) ---------- */
.mosaic {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: 1fr 1fr;
  gap: 12px;
  position: relative;
}
.mosaic img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 18px;
  box-shadow: var(--shadow);
  aspect-ratio: 1 / 1;
}
.mosaic-item-lg { grid-row: span 2; }
.mosaic-item-lg img { aspect-ratio: 1 / 2; object-position: center 75%; }
.mosaic-caption {
  position: absolute;
  bottom: -16px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--cream);
  color: var(--ink);
  border-radius: 999px;
  padding: 10px 20px;
  font-weight: 700;
  font-size: .85rem;
  box-shadow: var(--shadow);
  display: flex;
  align-items: center;
  gap: 8px;
  white-space: nowrap;
}
.dot { width: 9px; height: 9px; border-radius: 50%; background: #ff3b3b; box-shadow: 0 0 0 4px rgba(255,59,59,.2); animation: pulse 1.6s infinite; flex-shrink: 0; }
@keyframes pulse { 0%,100% { opacity: 1; } 50% { opacity: .4; } }

/* ---------- Countdown ---------- */
.countdown {
  display: flex;
  gap: 10px;
  margin: 4px 0 20px;
}
.countdown-box {
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: 10px 4px;
  text-align: center;
  min-width: 62px;
}
.countdown-box strong { display: block; font-family: var(--font-head); font-size: 1.4rem; color: var(--orange-light); }
.countdown-box span { font-size: .68rem; letter-spacing: .06em; text-transform: uppercase; color: var(--muted); }

/* ---------- Trust strip ---------- */
.trust-strip { background: var(--ink-deep); border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); padding: 26px 0; }
.trust-strip .container { max-width: 1320px; }
.trust-strip-inner {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 22px;
}
.trust-group {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 22px;
}
.logo-chip {
  background: #242041;
  border-radius: 10px;
  padding: 8px 14px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.trust-strip .logo-chip { min-height: 82px; padding: 12px 18px; }
.trust-badge { height: 56px; width: auto; }
.trust-badge-wide { height: 50px; }
.trust-divider { width: 1px; height: 32px; background: var(--line); }
.trust-label { font-size: .95rem; color: var(--cream); font-weight: 700; }
.trust-companies .logo-chip {
  min-height: 92px;
  padding: 12px 16px;
  background: #fff;
}
.company-logo { height: 58px; width: auto; }

/* ---------- Student placements ---------- */
.placements-section {
  background: var(--ink);
  border-bottom: 1px solid var(--line);
  padding: 64px 0;
}
.placements-heading {
  max-width: 720px;
  margin: 0 auto 32px;
  text-align: center;
}
.placements-heading h2 {
  font-size: clamp(1.55rem, 2.6vw, 2.15rem);
  margin-bottom: 0;
}
.placements-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 16px;
}
.placement-logo-card {
  flex: 0 1 calc((100% - 80px) / 6);
  min-width: 0;
  min-height: 92px;
  padding: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--cream);
  border: 1px solid rgba(255, 255, 255, .16);
  border-radius: 14px;
}
.placement-logo-card img {
  width: 100%;
  height: 54px;
  max-width: 154px;
  object-fit: contain;
}

/* ---------- Sections ---------- */
.section { padding: 88px 0; }
.section-alt { background: var(--ink-deep); }
.section-head { max-width: 680px; margin: 0 auto 48px; text-align: center; }
.section-head h2 { font-size: clamp(1.6rem, 2.6vw, 2.2rem); }
.section-sub { color: var(--muted); font-size: 1.03rem; }

.grid { display: grid; gap: 24px; }
.grid-3 { grid-template-columns: repeat(3, 1fr); }

#why {
  background:
    radial-gradient(circle at 50% 45%, rgba(47, 107, 255, .06), transparent 42%),
    var(--ink);
}
#why > .container { max-width: 1360px; }
.benefits-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
}
.benefit-card {
  min-width: 0;
  padding: 34px 42px 38px;
  border-right: 1px solid rgba(183, 178, 214, .22);
  border-bottom: 1px solid rgba(183, 178, 214, .22);
  transition: background .2s ease;
}
.benefit-card:nth-child(3n) { border-right: 0; }
.benefit-card:nth-child(n + 4) { border-bottom: 0; }
.benefit-card:hover { background: rgba(255, 255, 255, .025); }
.benefit-top {
  display: flex;
  align-items: center;
  gap: 20px;
  min-height: 72px;
  margin-bottom: 18px;
}
.benefit-number {
  font-family: var(--font-head);
  font-size: clamp(3rem, 4.2vw, 4.3rem);
  font-weight: 500;
  line-height: .9;
  letter-spacing: -.06em;
  background: var(--gradient);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.card-icon {
  width: 56px;
  height: 56px;
  border-radius: 15px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: var(--ink);
  font-size: 1.65rem;
  background: var(--gradient);
  box-shadow: 0 12px 28px -16px rgba(73, 198, 255, .75);
}
.benefit-card h3 {
  font-size: clamp(1.05rem, 1.25vw, 1.18rem);
  font-weight: 600;
  margin-bottom: 12px;
}
.benefit-card p {
  max-width: 34ch;
  color: var(--muted);
  font-size: .96rem;
  line-height: 1.65;
  margin: 0;
}

.cta-inline { text-align: center; margin-top: 48px; }
.cta-inline-label { font-weight: 700; color: var(--cream); margin-bottom: 14px; }

/* ---------- Syllabus (timeline + real photo) ---------- */
.syllabus-grid {
  display: grid;
  grid-template-columns: 1fr .8fr;
  gap: 52px;
  align-items: start;
}
.timeline {
  border-left: 3px solid var(--line);
  padding-left: 32px;
  display: flex;
  flex-direction: column;
  gap: 34px;
}
.timeline-item { position: relative; }
.timeline-item::before {
  content: "";
  position: absolute;
  left: -40px;
  top: 4px;
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background: var(--gradient);
  border: 3px solid var(--ink-deep);
}
.timeline-time {
  font-weight: 700;
  color: var(--orange-light);
  font-size: .85rem;
  letter-spacing: .04em;
  margin-bottom: 4px;
}
.timeline-content h3 { font-size: 1.15rem; margin-bottom: 6px; }
.timeline-content p { color: var(--muted); margin: 0; }

.syllabus-photo { position: sticky; top: 100px; }
.syllabus-photo img {
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  width: 100%;
}
.syllabus-photo-caption {
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: 14px 18px;
  margin-top: 14px;
  font-size: .9rem;
  color: var(--muted);
}
.syllabus-photo-caption strong { color: var(--cream); }

/* ---------- Mentor ---------- */
.mentor-inner {
  display: grid;
  grid-template-columns: .8fr 1.2fr;
  gap: 56px;
  align-items: center;
}
.mentor-photo-wrap { position: relative; }
.mentor-photo {
  border-radius: 24px;
  background: linear-gradient(160deg, var(--panel), var(--ink-deep));
  width: 100%;
  max-width: 380px;
}
.mentor-stat-card {
  position: absolute;
  bottom: 16px;
  right: -10px;
  background: var(--cream);
  color: var(--ink);
  border-radius: 14px;
  padding: 14px 20px;
  box-shadow: var(--shadow);
  text-align: center;
}
.mentor-stat-card strong { display: block; font-size: 1.3rem; color: var(--orange); font-family: var(--font-head); }
.mentor-stat-card span { font-size: .78rem; color: #55506e; }
.mentor-title { font-weight: 700; color: var(--orange-light); margin-bottom: 14px; }
.mentor-stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  margin: 22px 0;
}
.mentor-stats div {
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: 14px 8px;
  text-align: center;
}
.mentor-stats strong { display: block; font-family: var(--font-head); font-size: 1.25rem; color: var(--orange-light); }
.mentor-stats span { font-size: .78rem; color: var(--muted); }
.mentor-companies-label { font-weight: 700; font-size: .9rem; color: var(--cream); margin-bottom: 10px; }
.mentor-companies { display: flex; flex-wrap: wrap; gap: 14px; align-items: center; margin-bottom: 26px; }
.mentor-companies .logo-chip { padding: 6px 12px; }
.mentor-companies img { height: 22px; width: auto; }
.mentor-cta-group { display: flex; flex-wrap: wrap; gap: 14px; }

/* ---------- Testimonials ---------- */
.review-photo { border-radius: var(--radius); overflow: hidden; margin-bottom: 40px; box-shadow: var(--shadow); }
.review-photo img { width: 100%; max-height: 340px; object-fit: cover; }
.review-photo-caption { text-align: center; color: var(--muted); font-size: .88rem; margin-top: 10px; }
.review-card {
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 26px;
}
.stars { color: var(--orange-light); letter-spacing: 2px; margin-bottom: 12px; }
.review-card p { font-style: italic; color: var(--cream); }
.review-author { font-size: .85rem; font-weight: 700; color: var(--muted); }

/* ---------- WhatsApp banner ---------- */
.whatsapp-banner {
  background: linear-gradient(120deg, #0f6b38, #1fa851);
  color: #fff;
  padding: 56px 0;
}
.whatsapp-banner-inner {
  display: flex;
  align-items: center;
  gap: 28px;
  flex-wrap: wrap;
}
.whatsapp-icon {
  background: rgba(255,255,255,.18);
  border-radius: 50%;
  width: 68px;
  height: 68px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.whatsapp-icon svg { width: 34px; height: 34px; fill: #fff; }
.whatsapp-banner-copy { flex: 1; min-width: 260px; }
.whatsapp-banner-copy h2 { color: #fff; margin-bottom: 8px; font-size: 1.5rem; }
.whatsapp-banner-copy p { color: rgba(255,255,255,.92); margin: 0; max-width: 60ch; }

/* ---------- FAQ ---------- */
.faq-list { max-width: 760px; margin: 0 auto; display: flex; flex-direction: column; gap: 12px; }
.faq-item { background: var(--panel); border: 1px solid var(--line); border-radius: 14px; overflow: hidden; }
.faq-question {
  width: 100%;
  text-align: left;
  background: none;
  border: none;
  padding: 20px 24px;
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 1rem;
  color: var(--cream);
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
}
.faq-icon { font-size: 1.3rem; color: var(--orange-light); transition: transform .2s ease; flex-shrink: 0; margin-left: 12px; }
.faq-item.open .faq-icon { transform: rotate(45deg); }
.faq-answer { max-height: 0; overflow: hidden; transition: max-height .25s ease; padding: 0 24px; }
.faq-item.open .faq-answer { max-height: 240px; padding-bottom: 20px; }
.faq-answer p { color: var(--muted); margin: 0; }

/* ---------- Final CTA — bold color block, no imagery, high contrast ---------- */
.final-cta {
  background: linear-gradient(120deg, var(--orange) 0%, var(--orange-light) 100%);
  color: var(--ink);
  padding: 88px 0;
  text-align: center;
}
.final-cta-inner { max-width: 680px; margin: 0 auto; }
.final-cta .badge-live { background: rgba(26,24,48,.12); color: var(--ink); border-color: rgba(26,24,48,.25); }
.final-cta h2 { color: var(--ink); font-size: clamp(1.6rem, 3vw, 2.2rem); }
.final-cta p { color: rgba(26,24,48,.8); }
.final-cta .btn-primary { background: var(--ink); color: var(--cream); box-shadow: 0 10px 26px -8px rgba(18, 16, 38, .4); }
.final-cta .countdown { justify-content: center; }
.final-cta .countdown-box { background: rgba(26,24,48,.1); border-color: rgba(26,24,48,.2); }
.final-cta .countdown-box strong { color: var(--ink); }
.final-cta .countdown-box span { color: rgba(26,24,48,.7); }
.final-cta .hero-schedule { background: rgba(26,24,48,.1); border-color: rgba(26,24,48,.4); color: var(--ink); }

/* ---------- Footer ---------- */
.site-footer { background: var(--ink-deep); color: var(--muted); padding-top: 64px; }
.footer-inner {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1.1fr;
  gap: 36px;
  padding-bottom: 48px;
  border-bottom: 1px solid var(--line);
}
.footer-logo { height: 36px; margin-bottom: 14px; }
.footer-brand p { font-size: .9rem; max-width: 30ch; }
.footer-socials { display: flex; gap: 10px; margin-top: 16px; }
.footer-socials a {
  width: 36px; height: 36px;
  border-radius: 50%;
  background: rgba(255,255,255,.08);
  display: flex; align-items: center; justify-content: center;
  font-size: .8rem; font-weight: 700;
  color: var(--cream);
}
.footer-socials a:hover { background: var(--orange); color: var(--ink); }
.footer-col h4 { color: var(--cream); font-family: var(--font-head); font-size: .95rem; margin-bottom: 16px; }
.footer-col a { display: block; font-size: .9rem; margin-bottom: 10px; color: var(--muted); }
.footer-col a:hover { color: var(--cream); }
.footer-cta-col p { font-size: .88rem; margin-bottom: 14px; }
.footer-cta-col .btn {
  display: inline-flex;
  width: auto;
  min-width: 220px;
  padding: 13px 24px;
  color: var(--ink);
  font-weight: 700;
  text-align: center;
}
.footer-bottom-inner {
  display: flex;
  justify-content: space-between;
  padding: 20px 24px;
  font-size: .82rem;
  flex-wrap: wrap;
  gap: 8px;
}
.footer-bottom-inner a { text-decoration: underline; }

/* ---------- Sticky mobile CTA ---------- */
.sticky-cta {
  position: fixed;
  bottom: 0; left: 0; right: 0;
  display: none;
  gap: 10px;
  padding: 12px 16px;
  background: rgba(18, 16, 38, .97);
  backdrop-filter: blur(6px);
  border-top: 1px solid var(--line);
  box-shadow: 0 -8px 24px rgba(0,0,0,.3);
  z-index: 200;
}
.sticky-cta-main { flex: 1; }

/* ============================================================
   Responsive
   ============================================================ */
@media (max-width: 960px) {
  .hero-inner { grid-template-columns: 1fr; }
  .mosaic { order: -1; max-width: 480px; margin: 0 auto; }
  .placement-logo-card { flex-basis: calc((100% - 32px) / 3); }
  .benefit-card { padding: 30px 32px 34px; }
  .syllabus-grid { grid-template-columns: 1fr; }
  .syllabus-photo { position: static; max-width: 480px; margin: 0 auto; }
  .mentor-inner { grid-template-columns: 1fr; }
  .mentor-photo { max-width: 280px; margin: 0 auto; }
  .footer-inner { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 780px) {
  .main-nav { display: none; }
  .nav-toggle { display: flex; }
  .header-cta { display: none; }
  .grid-3 { grid-template-columns: 1fr; }
  .benefits-grid { grid-template-columns: 1fr; }
  .benefit-card,
  .benefit-card:nth-child(3n),
  .benefit-card:nth-child(n + 4) {
    border-right: 0;
    border-bottom: 1px solid rgba(183, 178, 214, .22);
  }
  .benefit-card:last-child { border-bottom: 0; }
  .mentor-stats { grid-template-columns: repeat(2, 1fr); }
  .sticky-cta { display: flex; }
  body { padding-bottom: 78px; }
  .site-header.nav-open .main-nav {
    display: flex;
    flex-direction: column;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--ink);
    padding: 16px 24px 24px;
    border-bottom: 1px solid var(--line);
    gap: 16px;
  }
  .countdown-box { min-width: 54px; padding: 8px 2px; }
  .countdown-box strong { font-size: 1.15rem; }
}

@media (max-width: 560px) {
  .footer-inner { grid-template-columns: 1fr; }
  .whatsapp-banner-inner { text-align: center; justify-content: center; }
  .trust-strip-inner { gap: 14px; }
  .trust-group { gap: 14px; }
  .trust-companies { flex-basis: 100%; }
  .trust-divider { display: none; }
  .trust-label { flex-basis: 100%; text-align: center; }
  .trust-strip .logo-chip { min-height: 68px; padding: 10px 14px; }
  .trust-badge { height: 46px; }
  .trust-badge-wide { height: 42px; }
  .trust-companies .logo-chip { min-height: 76px; padding: 10px 12px; }
  .company-logo { height: 48px; }
  .placements-section { padding: 48px 0; }
  .placements-grid { gap: 12px; }
  .placement-logo-card { flex-basis: calc((100% - 12px) / 2); min-height: 82px; padding: 14px; }
  .placement-logo-card img { height: 46px; max-width: 124px; }
  .benefit-card { padding: 28px 8px 30px; }
  .benefit-top { min-height: 62px; gap: 16px; margin-bottom: 16px; }
  .benefit-number { font-size: 3rem; }
  .card-icon { width: 50px; height: 50px; border-radius: 13px; font-size: 1.5rem; }
  .countdown { gap: 6px; }
}
