body.view-website:not(.mobile-browser-view) #screen-home.has-website-home-v2 {
  max-width: none !important;
  width: 100% !important;
  padding: 0 !important;
  background: #f5f9fc !important;
}

body.view-website:not(.mobile-browser-view) #screen-home.has-website-home-v2 > .home-shell {
  display: none !important;
}

.website-home-v2 {
  --home-v2-primary: var(--primary, #00baff);
  --home-v2-text: #17212b;
  --home-v2-muted: #607080;
  --home-v2-line: rgba(20, 40, 60, 0.1);
  --home-v2-card: #ffffff;
  width: 100%;
  color: var(--home-v2-text);
  font-family: Nunito, Manrope, system-ui, -apple-system, "Segoe UI", sans-serif;
}

.home-v2-container {
  width: min(1220px, calc(100vw - 72px));
  margin: 0 auto;
  box-sizing: border-box;
}

.home-v2-hero {
  position: relative;
  min-height: clamp(560px, 78vh, 760px);
  display: grid;
  place-items: center;
  overflow: hidden;
  background: #17212b;
}

.home-v2-hero-bg,
.home-v2-hero-overlay {
  position: absolute;
  inset: 0;
}

.home-v2-hero-bg {
  background-image: url("../assets/ielts-exam-room-hero.webp");
  background-size: cover;
  background-position: center;
}

.home-v2-hero-overlay {
  background: linear-gradient(180deg, rgba(12, 18, 27, 0.36), rgba(12, 18, 27, 0.44));
}

.home-v2-hero-inner {
  position: relative;
  z-index: 1;
  display: grid;
  justify-items: center;
  text-align: center;
}

.home-v2-hero-copy {
  max-width: 780px;
  color: #ffffff;
}

.home-v2-kicker {
  margin: 0 0 12px;
  color: var(--home-v2-primary);
  font-size: 14px;
  font-weight: 950;
  letter-spacing: 0;
  text-transform: uppercase;
}

.home-v2-hero .home-v2-kicker {
  color: #bdefff;
}

.home-v2-hero h1,
.home-v2-section h2,
.home-v2-final h2 {
  margin: 0;
  letter-spacing: 0;
  font-weight: 950;
  line-height: 1.04;
}

.home-v2-hero h1 {
  font-size: clamp(52px, 6vw, 72px);
  color: #ffffff;
}

.home-v2-lede {
  max-width: 680px;
  margin: 22px auto 0;
  color: rgba(255, 255, 255, 0.9);
  font-size: 20px;
  line-height: 1.5;
  font-weight: 760;
}

.home-v2-section {
  padding: 112px 0;
  background: #f5f9fc;
}

.home-v2-section-light {
  background: #ffffff;
}

.home-v2-two-col {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(380px, 0.85fr);
  gap: clamp(48px, 6vw, 86px);
  align-items: center;
}

.home-v2-copy {
  max-width: 720px;
}

.home-v2-section h2,
.home-v2-final h2 {
  max-width: 780px;
  color: var(--home-v2-text);
  font-size: clamp(36px, 4vw, 48px);
}

.home-v2-copy p:not(.home-v2-kicker):not(.home-v2-cta-copy),
.home-v2-final p {
  margin: 18px 0 0;
  max-width: 680px;
  color: var(--home-v2-muted);
  font-size: 18px;
  line-height: 1.6;
  font-weight: 760;
}

.home-v2-cta-group {
  margin-top: 30px;
}

.home-v2-cta-copy {
  margin: 0 0 14px;
  color: var(--home-v2-text);
  font-size: 17px;
  font-weight: 900;
}

.home-v2-hero .home-v2-cta-copy {
  color: #ffffff;
}

.home-v2-cta-row {
  display: flex;
  align-items: center;
  gap: 14px;
  flex-wrap: wrap;
}

.home-v2-hero .home-v2-cta-row,
.home-v2-final .home-v2-cta-row {
  justify-content: center;
}

.home-v2-hero .home-v2-cta-row {
  flex-direction: column;
  gap: 16px;
}

.home-v2-btn {
  width: auto;
  margin: 0;
  border: 0;
  border-radius: 18px;
  font-weight: 950;
  cursor: pointer;
  transition: transform 180ms ease, box-shadow 180ms ease, background 180ms ease;
}

.home-v2-btn-primary {
  min-width: 246px;
  min-height: 56px;
  padding: 0 28px;
  background: var(--home-v2-primary);
  color: #ffffff;
  font-size: 17px;
  box-shadow: 0 16px 36px rgba(0, 186, 255, 0.28);
  animation: homeV2PrimaryPulse 7s ease-in-out infinite;
}

.home-v2-btn-secondary {
  min-width: 168px;
  min-height: 48px;
  padding: 0 22px;
  background: #ffffff;
  color: var(--home-v2-text);
  border: 1px solid rgba(20, 40, 60, 0.14);
  font-size: 15px;
  box-shadow: 0 10px 24px rgba(20, 40, 60, 0.08);
}

.home-v2-btn-primary:hover,
.home-v2-btn-primary:focus-visible {
  transform: translateY(-2px) scale(1.012);
  box-shadow: 0 20px 44px rgba(0, 186, 255, 0.34);
}

.home-v2-btn-secondary:hover,
.home-v2-btn-secondary:focus-visible {
  transform: translateY(-1px);
  box-shadow: 0 14px 28px rgba(20, 40, 60, 0.12);
}

.home-v2-btn:focus-visible {
  outline: 3px solid rgba(0, 186, 255, 0.28);
  outline-offset: 3px;
}

.home-v2-cta-separator {
  color: var(--home-v2-muted);
  font-size: 14px;
  font-weight: 900;
}

.home-v2-hero .home-v2-cta-separator {
  color: rgba(255, 255, 255, 0.76);
}

.home-v2-point-list {
  margin: 28px 0 0;
  padding: 0;
  display: grid;
  gap: 14px;
  list-style: none;
}

.home-v2-point-list li {
  display: flex;
  align-items: center;
  gap: 12px;
  color: #334252;
  font-size: 16px;
  font-weight: 850;
}

.home-v2-point-icon,
.home-v2-review span {
  width: 38px;
  height: 38px;
  border-radius: 14px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 auto;
  background: #eaf7ff;
  color: #00a6e6;
}

.home-v2-point-icon svg,
.home-v2-review svg {
  width: 20px;
  height: 20px;
}

.home-v2-exam-card,
.home-v2-criteria,
.home-v2-result-preview,
.home-v2-review,
.home-v2-compare > div {
  background: var(--home-v2-card);
  border: 1px solid var(--home-v2-line);
  border-radius: 24px;
  box-shadow: 0 18px 46px rgba(20, 40, 60, 0.08);
  box-sizing: border-box;
}

.home-v2-exam-card {
  padding: 24px;
}

.home-v2-exam-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
}

.home-v2-exam-top span,
.home-v2-result-score span {
  color: var(--home-v2-muted);
  font-size: 13px;
  font-weight: 950;
}

.home-v2-exam-top strong {
  color: var(--home-v2-text);
  font-size: 24px;
  font-weight: 950;
}

.home-v2-exam-steps {
  margin-top: 24px;
  display: grid;
  gap: 10px;
}

.home-v2-exam-steps span {
  min-height: 44px;
  padding: 0 14px;
  border-radius: 14px;
  background: #f5f9fc;
  color: #607080;
  display: flex;
  align-items: center;
  font-weight: 900;
}

.home-v2-exam-steps .is-active {
  background: #eaf7ff;
  color: #00a6e6;
}

.home-v2-answer-lines {
  margin-top: 24px;
  display: grid;
  gap: 9px;
}

.home-v2-answer-lines span {
  height: 12px;
  border-radius: 999px;
  background: #edf3f8;
}

.home-v2-answer-lines span:nth-child(2) { width: 78%; }
.home-v2-answer-lines span:nth-child(3) { width: 88%; }
.home-v2-answer-lines span:nth-child(4) { width: 64%; }

.home-v2-section-head {
  max-width: 820px;
  margin: 0 auto 38px;
  text-align: center;
}

.home-v2-section-head .home-v2-kicker {
  margin-bottom: 12px;
}

.home-v2-section-head h2 {
  margin: 0 auto;
}

.home-v2-compare {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 22px;
}

.home-v2-compare > div {
  padding: 28px;
}

.home-v2-compare h3,
.home-v2-criteria h3,
.home-v2-review strong {
  margin: 0;
  color: var(--home-v2-text);
  font-size: 20px;
  font-weight: 950;
}

.home-v2-compare ul {
  margin: 18px 0 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 11px;
}

.home-v2-compare li {
  color: #4a5a68;
  font-size: 16px;
  font-weight: 820;
}

.home-v2-compare li::before {
  content: "";
  display: inline-block;
  width: 8px;
  height: 8px;
  margin-right: 10px;
  border-radius: 50%;
  background: #c9d5df;
}

.home-v2-compare .is-positive li::before {
  background: var(--home-v2-primary);
}

.home-v2-criteria {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  padding: 20px;
}

.home-v2-criteria div {
  display: grid;
  gap: 10px;
}

.home-v2-criteria span {
  min-height: 42px;
  padding: 0 13px;
  border-radius: 14px;
  background: #f5f9fc;
  color: #334252;
  display: flex;
  align-items: center;
  font-size: 14px;
  font-weight: 900;
}

.home-v2-results-section {
  background: linear-gradient(180deg, #f5f9fc 0%, #eef8ff 100%);
}

.home-v2-result-preview {
  padding: 28px;
}

.home-v2-result-score {
  display: grid;
  justify-items: center;
  gap: 8px;
  padding: 28px;
  border-radius: 22px;
  background: #eaf7ff;
  color: var(--home-v2-text);
}

.home-v2-result-score strong {
  color: #00a6e6;
  font-size: 76px;
  font-weight: 950;
  line-height: 0.95;
}

.home-v2-band-grid {
  margin-top: 18px;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
}

.home-v2-band-grid span {
  min-height: 58px;
  padding: 0 15px;
  border-radius: 16px;
  background: #f5f9fc;
  color: var(--home-v2-muted);
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-weight: 900;
}

.home-v2-band-grid strong {
  color: var(--home-v2-text);
  font-size: 22px;
}

.home-v2-feedback-strip {
  margin-top: 18px;
  padding: 18px;
  border-radius: 18px;
  background: #ffffff;
  border: 1px solid var(--home-v2-line);
}

.home-v2-feedback-strip strong {
  color: var(--home-v2-text);
  font-weight: 950;
}

.home-v2-feedback-strip p {
  margin: 7px 0 0;
  color: var(--home-v2-muted);
  font-size: 15px;
  line-height: 1.45;
  font-weight: 780;
}

.home-v2-reviews {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.home-v2-review {
  padding: 22px;
}

.home-v2-review p {
  min-height: 78px;
  margin: 18px 0;
  color: #334252;
  font-size: 16px;
  line-height: 1.5;
  font-weight: 780;
}

.home-v2-review small {
  display: block;
  margin-top: 4px;
  color: var(--home-v2-muted);
  font-size: 12px;
  font-weight: 850;
}

.home-v2-final {
  padding: 86px 0 96px;
  background: #17212b;
  color: #ffffff;
  text-align: center;
}

.home-v2-final h2 {
  margin: 0 auto;
  color: #ffffff;
}

.home-v2-final p {
  margin-left: auto;
  margin-right: auto;
  color: rgba(255, 255, 255, 0.82);
}

.home-v2-final .home-v2-cta-copy {
  color: #ffffff;
}

.home-v2-demo-modal {
  position: fixed;
  inset: 0;
  z-index: 10020;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
  background: rgba(17, 24, 39, 0.36);
  box-sizing: border-box;
}

.home-v2-demo-card {
  position: relative;
  width: min(440px, 100%);
  padding: 28px;
  border-radius: 26px;
  background: #ffffff;
  box-shadow: 0 24px 68px rgba(20, 40, 60, 0.24);
  box-sizing: border-box;
  text-align: left;
}

.home-v2-demo-card h2 {
  margin: 0;
  color: var(--home-v2-text, #17212b);
  font-size: 26px;
  font-weight: 950;
}

.home-v2-demo-card p {
  margin: 10px 0 22px;
  color: var(--home-v2-muted, #607080);
  font-size: 16px;
  font-weight: 780;
}

.home-v2-demo-close {
  position: absolute;
  top: 12px;
  right: 12px;
  width: 36px;
  height: 36px;
  margin: 0;
  padding: 0;
  border: 0;
  border-radius: 50%;
  background: #eef2f7;
  color: #17212b;
  box-shadow: none;
  font-size: 18px;
}

[data-reveal] {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 560ms ease, transform 560ms ease;
}

[data-reveal].is-visible {
  opacity: 1;
  transform: translateY(0);
}

@keyframes homeV2PrimaryPulse {
  0%, 92%, 100% { transform: scale(1); }
  95% { transform: scale(1.028); }
}

@media (prefers-reduced-motion: reduce) {
  .home-v2-btn,
  [data-reveal] {
    animation: none !important;
    transition: none !important;
  }
}

@media (max-width: 720px) {
  .website-home-v2 {
    display: none;
  }
}
