:root {
  --ink: #101828;
  --muted: #53627a;
  --line: #d8e1ee;
  --paper: #ffffff;
  --soft: #f3f8ff;
  --navy: #071a33;
  --blue: #1852a4;
  --cyan: #0e9fbc;
  --green: #0cac5c;
  --green-dark: #087a43;
  --amber: #f4a526;
  --rose: #db4d68;
  --red: #c93b3b;
  --violet: #6f4bd8;
  --shadow: 0 18px 50px rgba(11, 31, 55, 0.14);
  --shadow-hover: 0 26px 70px rgba(11, 31, 55, 0.2);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background:
    linear-gradient(180deg, #ffffff 0%, #f7fbff 42%, #ffffff 100%);
  font-family: Jost, sans-serif;
  line-height: 1.6;
}

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

button,
input,
select {
  font: inherit;
}

button {
  cursor: pointer;
}

.skip-link {
  position: absolute;
  left: 16px;
  top: -60px;
  z-index: 100;
  padding: 10px 14px;
  background: var(--paper);
  border: 1px solid var(--line);
}

.skip-link:focus {
  top: 16px;
}

.screen-reader-text {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 30;
  background: rgba(255, 255, 255, 0.9);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(12px);
  box-shadow: 0 12px 40px rgba(7, 26, 51, 0.06);
}

.topbar {
  display: flex;
  justify-content: center;
  gap: 24px;
  padding: 7px 20px;
  color: #ffffff;
  background: linear-gradient(90deg, var(--blue), var(--green-dark), var(--violet));
  background-size: 180% 100%;
  font-size: 14px;
  animation: soft-pan 10s ease-in-out infinite alternate;
}

.topbar p {
  margin: 0;
}

.topbar a {
  font-weight: 700;
  color: #9af2c0;
}

.nav-shell {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: 1180px;
  margin: 0 auto;
  padding: 14px 24px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  min-width: 240px;
}

.brand-mark {
  display: grid;
  place-items: center;
  width: 44px;
  height: 44px;
  color: #ffffff;
  background: linear-gradient(135deg, var(--blue), var(--green), var(--cyan));
  border-radius: 8px;
  font-weight: 800;
  letter-spacing: 0;
  box-shadow: 0 12px 24px rgba(24, 82, 164, 0.26);
}

.brand strong,
.brand small {
  display: block;
}

.brand small {
  color: var(--muted);
  font-size: 13px;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 22px;
  color: var(--muted);
  font-weight: 700;
}

.nav-links a:hover {
  color: var(--blue);
}

.nav-links a {
  position: relative;
  font-weight: 500;
}

.nav-links a::after {
  position: absolute;
  left: 0;
  bottom: -7px;
  width: 100%;
  height: 3px;
  content: "";
  background: linear-gradient(90deg, var(--green), var(--cyan));
  border-radius: 999px;
  opacity: 0;
  transform: scaleX(0.5);
  transition: opacity 180ms ease, transform 180ms ease;
}

.nav-links a:hover::after {
  opacity: 1;
  transform: scaleX(1);
}

.menu-toggle {
  display: none;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  padding: 0;
  background: #ffffff;
  border: 1px solid var(--line);
  border-radius: 8px;
  background:#fff !important;
}

.menu-line {
  position: absolute;
  width: 19px;
  height: 2px;
  background: var(--navy);
  border-radius: 999px;
  transition: transform 180ms ease, opacity 180ms ease;
}

.menu-line:nth-child(1) {
  transform: translateY(-6px);
}

.menu-line:nth-child(3) {
  transform: translateY(6px);
}

.site-header.menu-open .menu-line:nth-child(1) {
  transform: rotate(45deg);
}

.site-header.menu-open .menu-line:nth-child(2) {
  opacity: 0;
}

.site-header.menu-open .menu-line:nth-child(3) {
  transform: rotate(-45deg);
}

.primary-button,
.secondary-button,
.ghost-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 12px 18px;
  border-radius: 8px;
  border: 1px solid transparent;
  font-weight: 800;
  line-height: 1.1;
}

.primary-button {
  color: #ffffff;
  background: linear-gradient(135deg, #ffae1d, #cd8401);
  box-shadow: 0 12px 24px rgba(12, 172, 92, 0.25);
  transition: transform 180ms ease, box-shadow 180ms ease, filter 180ms ease;
}

.primary-button:hover {
  filter: saturate(1.1);
  transform: translateY(-2px);
  box-shadow: 0 18px 32px rgba(12, 172, 92, 0.32);
}

.secondary-button {
  color: #ffffff;
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.5);
  transition: transform 180ms ease, background 180ms ease;
}

.secondary-button:hover {
  background: rgba(255, 255, 255, 0.16);
  transform: translateY(-2px);
}

.secondary-button.dark {
  color: var(--navy);
  border-color: var(--line);
  background: #ffffff;
}

.ghost-button {
  color: var(--blue);
  background: linear-gradient(180deg, #ffffff, #f5faff);
  border-color: var(--blue);
  transition: transform 180ms ease, box-shadow 180ms ease;
}

.ghost-button:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 24px rgba(24, 82, 164, 0.14);
}

.full-width {
  width: 100%;
}

.hero {
  position: relative;
  isolation: isolate;
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(340px, 0.85fr);
  gap: 44px;
  align-items: center;
  min-height: 720px;
  padding: 86px 70px;
  background:
    linear-gradient(115deg, rgba(7, 26, 51, 0.98), rgba(13, 57, 100, 0.95) 48%, rgba(10, 95, 91, 0.92)),
    repeating-linear-gradient(90deg, rgba(255, 255, 255, 0.06) 0 1px, transparent 1px 90px);
  color: #ffffff;
  overflow: hidden;
}

/*.hero::before {
  position: absolute;
  inset: 0;
  z-index: -1;
  content: "";
  background:
    linear-gradient(135deg, transparent 0 42%, rgba(255, 255, 255, 0.09) 42% 43%, transparent 43% 100%),
    linear-gradient(35deg, transparent 0 58%, rgba(154, 242, 192, 0.12) 58% 59%, transparent 59% 100%);
  animation: hero-lines 16s linear infinite;
}
*/
.hero-content,
.lead-panel,
.section,
.final-cta,
.site-footer {
  max-width: 1180px;
}

.hero-content {
  justify-self: end;
  width: 100%;
  animation: fade-rise 700ms ease both;
}

.eyebrow {
  margin: 0 0 10px;
  color: #ffae1d;
  font-size: 13px;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  display: inline-block;
  padding: 5px 10px;
  background: rgba(12, 172, 92, 0.12);
  border: 1px solid rgba(12, 172, 92, 0.22);
  border-radius: 999px;
}

.hero h1 {
  max-width: 780px;
  margin: 0;
  font-family: Jost, sans-serif;
  font-size: 50px;
  line-height: 1.03;
  letter-spacing: 0;
  text-shadow: 0 14px 34px rgba(0, 0, 0, 0.2);
  font-weight: 500;
}

.hero-copy {
  max-width: 680px;
  margin: 22px 0;
  color: #e8eef7;
  font-size: 18px;
}

.hero-points {
  display: grid;
  gap: 8px;
  max-width: 620px;
  margin: 0 0 26px;
  padding-left: 20px;
  color: #f7fbff;
}

.hero-points li::marker {
  color: #9af2c0;
}

.hero-actions,
.cta-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.stat-strip {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  max-width: 600px;
  margin-top: 36px;
  border: 1px solid rgba(255, 255, 255, 0.25);
  border-radius: 8px;
  overflow: hidden;
  animation: fade-rise 700ms ease 160ms both;
}

.stat-strip div {
  padding: 18px;
  background: rgba(255, 255, 255, 0.1);
  transition: background 180ms ease, transform 180ms ease;
}

.stat-strip div:hover {
  background: rgba(255, 255, 255, 0.16);
  transform: translateY(-2px);
}

.stat-strip div + div {
  border-left: 1px solid rgba(255, 255, 255, 0.2);
}

.stat-strip strong,
.stat-strip span {
  display: block;
}

.stat-strip strong {
  font-size: 30px;
  line-height: 1;
}

.stat-strip span {
  color: #d9e4f2;
  font-size: 13px;
}

.lead-panel {
  width: 89%;
  padding: 28px 28px 0px 28px;
  color: var(--ink);
  background:
    linear-gradient(#ffffff, #ffffff) padding-box,
    linear-gradient(135deg, rgba(12, 172, 92, 0.65), rgba(24, 82, 164, 0.42), rgba(244, 165, 38, 0.5)) border-box;
  border: 1px solid transparent;
  border-radius: 8px;
  box-shadow: var(--shadow);
  animation: fade-rise 700ms ease 260ms both;
}

.lead-panel h2,
.modal-card h2 {
  margin: 0 0 6px;
  color: var(--navy);
  font-size: 26px;
}

.lead-panel p,
.modal-card p {
  margin: 0 0 18px;
  color: var(--muted);
}

.lead-form {
  display: grid;
  gap: 14px;
}

.lead-form label {
  display: grid;
  gap: 6px;
  color: var(--ink);
  font-size: 14px;
  font-weight: 800;
}

.lead-form input,
.lead-form select {
  width: 100%;
  min-height: 44px;
  padding: 10px 12px;
  color: var(--ink);
  background: #ffffff;
  border: 1px solid var(--line);
  border-radius: 6px;
  outline: none;
  transition: border-color 180ms ease, box-shadow 180ms ease, transform 180ms ease;
}

.lead-form input:focus,
.lead-form select:focus {
  border-color: var(--blue);
  box-shadow: 0 0 0 3px rgba(24, 82, 164, 0.12);
  transform: translateY(-1px);
}

.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}

.form-message {
  min-height: 22px;
  margin: 0;
  color: var(--green-dark);
  font-weight: 800;
}

.form-message.error {
  color: var(--red);
}

.section {
  margin: 0 auto;
  padding: 60px 24px;
  
}

.section,
.final-cta {
  scroll-margin-top: 110px;
}

.section-heading {
  max-width: 820px;
  margin: 0 auto 34px;
  text-align: center;
}

.section-heading h2,
.final-cta h2 {
  margin: 0;
  color: var(--navy);
  font-size: 36px;
  line-height: 1.18;
  font-weight: 500;
}

.section-heading p:not(.eyebrow),
.final-cta p:not(.eyebrow) {
  margin: 12px 0 0;
  color: var(--muted);
}

.trust-section,
.process-section,
.faq-section {
  background: #ffffff;
}

.college-section,
.study-section,
.prep-section,
.stories-section {
  background:
    linear-gradient(180deg, #f3f8ff 0%, #eefbf6 100%);
  max-width: none;
}

.feature-grid,
.process-grid,
.course-grid,
.split-grid,
.story-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
  max-width: 1180px;
  margin: 0 auto;
}

.feature-grid article,
.process-grid article,
.course-grid article,
.split-grid article,
.story-grid figure,
.college-card,
.accordion-item {
  background: #ffffff;
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: 0 12px 30px rgba(16, 24, 40, 0.06);
  transition: transform 220ms ease, box-shadow 220ms ease, border-color 220ms ease;
}

.feature-grid article:hover,
.process-grid article:hover,
.course-grid article:hover,
.split-grid article:hover,
.story-grid figure:hover,
.accordion-item:hover {
  transform: translateY(-5px);
  border-color: rgba(24, 82, 164, 0.28);
  box-shadow: var(--shadow-hover);
}

.feature-grid article,
.process-grid article,
.course-grid article,
.split-grid article {
  padding: 22px;
}

.feature-grid span,
.process-grid span,
.course-grid span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 36px;
  height: 36px;
  padding: 0 10px;
  margin-bottom: 14px;
  color: #ffffff;
  background: linear-gradient(135deg, var(--blue), var(--cyan));
  border-radius: 8px;
  font-weight: 900;
  box-shadow: 0 10px 20px rgba(24, 82, 164, 0.18);
}

.feature-grid article:nth-child(2n) span,
.process-grid article:nth-child(2n) span,
.course-grid article:nth-child(2n) span {
  background: linear-gradient(135deg, var(--green), var(--green-dark));
}

.feature-grid article:nth-child(3n) span,
.process-grid article:nth-child(3n) span,
.course-grid article:nth-child(3n) span {
  background: linear-gradient(135deg, var(--amber), var(--rose));
}

.feature-grid h3,
.process-grid h3,
.course-grid h3,
.split-grid h3,
.college-card h3 {
  margin: 0 0 8px;
  color: var(--navy);
  font-size: 20px;
}

.feature-grid p,
.process-grid p,
.course-grid p,
.split-grid p,
.college-card p {
  margin: 0;
  color: var(--muted);
}

.split-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.clean-list {
  display: grid;
  gap: 10px;
  margin: 14px 0 0;
  padding-left: 20px;
  color: var(--muted);
}

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

.compact-grid {
  max-width: 940px;
}

.support-strip {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 12px;
  max-width: 1180px;
  margin: 22px auto 0;
}

.support-strip span {
  display: grid;
  place-items: center;
  min-height: 58px;
  padding: 12px;
  color: var(--green-dark);
  background: linear-gradient(180deg, #ffffff, #e4f8ed);
  border: 1px solid #bcebcf;
  border-radius: 8px;
  text-align: center;
  font-weight: 900;
  box-shadow: 0 12px 26px rgba(8, 122, 67, 0.08);
  transition: transform 180ms ease, box-shadow 180ms ease;
}

.support-strip span:hover {
  transform: translateY(-3px);
  box-shadow: 0 18px 32px rgba(8, 122, 67, 0.14);
}

.tabs {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
  margin-bottom: 24px;
}

.tab {
  min-height: 42px;
  padding: 10px 16px;
  color: var(--blue);
  background: #ffffff;
  border: 1px solid var(--line);
  border-radius: 8px;
  font-weight: 800;
}

.tab.is-active {
  color: #ffffff;
  background: var(--blue);
  border-color: var(--blue);
}

.college-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  max-width: 1180px;
  margin: 0 auto;
}

.college-card {
  display: grid;
  gap: 16px;
  padding: 22px;
}

.college-card-header {
  display: flex;
  justify-content: space-between;
  gap: 14px;
}

.college-rank {
  flex: 0 0 auto;
  display: grid;
  place-items: center;
  width: 48px;
  height: 48px;
  color: #ffffff;
  background: var(--navy);
  border-radius: 8px;
  font-weight: 900;
}

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

.tag {
  padding: 6px 9px;
  color: var(--blue);
  background: #e9f2ff;
  border-radius: 6px;
  font-size: 12px;
  font-weight: 900;
}

.tag.green {
  color: var(--green-dark);
  background: #e4f8ed;
}

.tag.amber {
  color: #805400;
  background: #fff0d1;
}

.college-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.college-actions .primary-button,
.college-actions .ghost-button {
  min-height: 40px;
  padding: 10px 14px;
}

.testimonial-carousel {
  max-width: 860px;
  margin: 0 auto;
}

.carousel-viewport {
  overflow: hidden;
}

.testimonial-carousel .story-grid {
  display: flex;
  gap: 0;
  max-width: none;
  margin: 0;
  transition: transform 320ms ease;
}

.story-grid figure {
  margin: 0;
  padding: 24px;
}

.testimonial-slide {
  flex: 0 0 100%;
  min-width: 100%;
}

.story-grid blockquote {
  margin: 0 0 16px;
  color: var(--ink);
  font-size: 18px;
}

.story-grid figcaption {
  color: var(--green-dark);
  font-weight: 900;
}

.carousel-controls {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  margin-top: 18px;
}

.carousel-button {
  min-width: 72px;
  min-height: 40px;
  padding: 10px 14px;
  color: var(--blue);
  background: #ffffff;
  border: 1px solid var(--line);
  border-radius: 8px;
  font-weight: 900;
}

.carousel-button:hover {
  border-color: var(--blue);
}

.carousel-dots {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}

.carousel-dot {
  width: 10px;
  height: 10px;
  padding: 0;
  background: #c6d4e6;
  border: 0;
  border-radius: 999px;
}

.carousel-dot.is-active {
  width: 26px;
  background: #ffae1d;
}

.accordion {
  display: grid;
  gap: 12px;
  max-width: 900px;
  margin: 0 auto;
}

.accordion-trigger {
  width: 100%;
  padding: 18px 20px;
  color: var(--navy);
  background: transparent;
  border: 0;
  text-align: left;
  font-weight: 900;
  text-transform: uppercase;
}

.accordion-trigger::after {
  content: "+";
  float: right;
  color: var(--green);
  font-size: 22px;
  line-height: 1;
}

.accordion-trigger[aria-expanded="true"]::after {
  content: "-";
}

.accordion-panel {
  display: none;
  padding: 0 20px 20px;
  color: var(--muted);
}

.accordion-panel p {
  margin: 0;
}

.accordion-item.is-open .accordion-panel {
  display: block;
}

.final-cta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  margin: 60px auto 60px;
  padding: 38px;
  color: #ffffff;
  background: var(--navy);
  border-radius: 8px;
}

.final-cta h2,
.final-cta p:not(.eyebrow) {
  color: #ffffff;
}

.site-footer {
  margin: 0 auto;
  padding: 20px 24px 20px;
  color: #fff;
  text-align: center;
  border-top: 1px solid var(--line);
}

.site-footer p {
  margin: 4px 0;
}

.site-footer p:first-child {
  color: #fff;
  font-weight: 900;
}

.floating-actions {
  position: fixed;
  right: 18px;
  bottom: 18px;
  z-index: 25;
  display: grid;
  gap: 10px;
}

.floating {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 106px;
  min-height: 44px;
  padding: 10px 14px;
  color: #ffffff;
  border-radius: 8px;
  font-weight: 900;
  box-shadow: var(--shadow);
}

.floating.whatsapp {
  background: var(--green);
}

.floating.call {
  background: var(--blue);
}

.modal[hidden] {
  display: none;
}

.modal {
  position: fixed;
  inset: 0;
  z-index: 60;
  display: grid;
  place-items: center;
  padding: 20px;
}

.modal-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(3, 12, 26, 0.72);
}

.modal-card {
  position: relative;
  width: min(100%, 520px);
  max-height: calc(100vh - 40px);
  overflow: auto;
  padding: 26px;
  background: #ffffff;
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.modal-close {
  position: absolute;
  top: 14px;
  right: 14px;
  padding: 8px 10px;
  color: var(--muted);
  background: #f1f5f9;
  border: 1px solid var(--line);
  border-radius: 6px;
  font-weight: 800;
}

.compact {
  gap: 12px;
}

@media (max-width: 980px) {
  .hero {
    grid-template-columns: 1fr;
    min-height: 0;
    padding: 64px 20px;
  }

  .hero-content {
    justify-self: center;
  }

  .lead-panel {
    justify-self: center;
    max-width: 680px;
  }

  .feature-grid,
  .process-grid,
  .course-grid,
  .split-grid,
  .support-strip {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

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

  .final-cta {
    flex-direction: column;
    align-items: flex-start;
  }
}

@media (max-width: 760px) {
  .topbar {
    flex-direction: column;
    gap: 4px;
    text-align: center;
  }

  .nav-shell {
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 12px;
    align-items: center;
    padding: 12px 16px;
  }

  .brand {
    min-width: 0;
  }

  .brand-mark {
    width: 40px;
    height: 40px;
  }

  .brand strong {
    font-size: 15px;
  }

  .brand small {
    font-size: 12px;
  }

  .menu-toggle {
    display: inline-flex;
    position: relative;
  }

  .nav-links {
    grid-column: 1 / -1;
    display: none;
    width: 100%;
    gap: 10px;
    padding: 10px 0 4px;
    border-top: 1px solid var(--line);
  }

  .site-header.menu-open .nav-links {
    display: grid;
  }

  .nav-links a,
  .nav-links button {
    justify-content: center;
    width: 100%;
  }

  .hero h1 {
    font-size: 38px;
  }

  .hero-copy {
    font-size: 16px;
  }

  .stat-strip,
  .form-grid,
  .feature-grid,
  .process-grid,
  .course-grid,
  .split-grid,
  .support-strip,
  .college-grid,
  .story-grid {
    grid-template-columns: 1fr;
  }

  .stat-strip div + div {
    border-left: 0;
    border-top: 1px solid rgba(255, 255, 255, 0.2);
  }

  .section {
    padding: 56px 18px;
  }

  .section-heading h2,
  .final-cta h2 {
    font-size: 28px;
  }

  .college-card-header,
  .final-cta,
  .cta-actions {
    align-items: stretch;
    flex-direction: column;
  }

  .floating-actions {
    left: 14px;
    right: 14px;
    grid-template-columns: 1fr 1fr;
  }

.floating {
    min-width: 0;
  }
}

@keyframes fade-rise {
  from {
    opacity: 0;
    transform: translateY(24px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes soft-pan {
  from {
    background-position: 0% 50%;
  }
  to {
    background-position: 100% 50%;
  }
}

@keyframes hero-lines {
  from {
    transform: translateX(-4%);
  }
  to {
    transform: translateX(4%);
  }
}

.reveal {
  opacity: 0;
  transform: translateY(26px);
  transition: opacity 620ms ease, transform 620ms ease;
  transition-delay: var(--reveal-delay, 0ms);
}

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

.lead-panel,
.final-cta,
.modal-card {
  position: relative;
  overflow: hidden;
}

.lead-panel::before,
.final-cta::before,
.modal-card::before {
  position: absolute;
  inset: 0 0 auto;
  height: 4px;
  content: "";
  background: linear-gradient(90deg, var(--green), var(--cyan), var(--amber), var(--rose));
}

.final-cta {
  background:
    linear-gradient(135deg, rgba(7, 26, 51, 0.98), rgba(24, 82, 164, 0.92), rgba(8, 122, 67, 0.9)),
    repeating-linear-gradient(90deg, rgba(255, 255, 255, 0.08) 0 1px, transparent 1px 84px);
  box-shadow: var(--shadow-hover);
}

.floating {
  animation: float-pulse 2.8s ease-in-out infinite;
}

.floating.call {
  animation-delay: 400ms;
}

@keyframes float-pulse {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-5px);
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
  }

  .reveal {
    opacity: 1;
    transform: none;
  }
}
