/* =========================================================
   INTERIOR GURUKULAM — Pixel-Faithful Implementation
   Clean, modern vanilla CSS for Desktop & Mobile
   ========================================================= */

:root {
  --olive: #455a2c;
  --olive-dark: #354720;
  --olive-btn: #354720;
  --terracotta: #af4319;
  --terracotta-dark: #913410;
  --terracotta-btn: #af4319;
  --gold: #d98516;
  --gold-dark: #b86d0b;
  --cream-wall: #f3ede2;
  --cream-card: #f7f1e6;
  --icon-bg: #f6ecdb;
  --ink-primary: #292218;
  --ink-muted: #3d3126;
  --lotus-copper: #bf7339;
  --lotus-gold: #d9aa65;

  --font-en: "Montserrat", system-ui, -apple-system, sans-serif;
  --font-ta: "Noto Sans Tamil", system-ui, sans-serif;
  --font-ta-serif: "Noto Serif Tamil", "Latha", "Tamil MN", Georgia, serif;
}

*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  min-height: 100vh;
  font-family: var(--font-en);
  color: var(--ink-primary);
  background: #1e1b16;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

img {
  display: block;
  max-width: 100%;
}

a {
  color: inherit;
  text-decoration: none;
}

/* Color utility classes */
.c-terracotta {
  color: var(--terracotta);
}

.c-olive {
  color: var(--olive);
}

.c-gold {
  color: var(--gold);
}

/* =========================================================
   PAGE CONTAINER & DESKTOP ROOM BACKGROUND
   ========================================================= */
.page {
  position: relative;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-between;
  background: url("assets/room.png") center / cover no-repeat;
  overflow-x: hidden;
}

/* =========================================================
   TOP NAVIGATION
   ========================================================= */
.nav {
  position: relative;
  z-index: 20;
  width: 100%;
  max-width: 1300px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: clamp(1.2rem, 3.5vh, 2.6rem) clamp(2rem, 16vw, 22rem) 0;
  flex-shrink: 0;
  transform: translateX(10px);
}

.nav__link {
  font-size: clamp(0.78rem, 0.95vw, 0.92rem);
  font-weight: 700;
  letter-spacing: 0.22em;
  color: var(--ink-primary);
  position: relative;
  padding-bottom: 0.35rem;
  transition: color 0.25s ease;
}

.nav__link::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: calc(100% - 0.22em);
  height: 2px;
  background: var(--terracotta);
  border-radius: 1px;
}

.nav__link:hover {
  color: var(--terracotta);
}

.nav__left,
.nav__right {
  display: flex;
  align-items: center;
  gap: clamp(0.75rem, 2vw, 2.2rem);
}

.nav__lotus {
  display: none;
  color: var(--lotus-copper);
  line-height: 0;
}

/* =========================================================
   MAIN CONTAINER
   ========================================================= */
.main-container {
  position: relative;
  z-index: 10;
  width: 100%;
  max-width: 1100px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  flex: 1 1 auto;
  padding: clamp(0.5rem, 2vh, 1.5rem) 1.5rem clamp(0.8rem, 2.5vh, 2rem);
}

/* =========================================================
   MIDDLE SHOWCASE ROW (PRICING + HERO BRAND)
   ========================================================= */
.showcase-section {
  width: 100%;
  max-width: 960px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(1.2rem, 3.2vw, 3.5rem);
  margin-bottom: clamp(1rem, 2.5vh, 2.2rem);
}

/* Center Brand Column */
.hero-brand {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  max-width: 480px;
  flex-shrink: 0;
}

.hero__logo {
  width: clamp(180px, 20vw, 240px);
  height: clamp(180px, 20vw, 240px);
  margin-bottom: 0.2rem;
  mix-blend-mode: multiply;
  filter: contrast(1.05);
}

.logo {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.hero__title {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.2rem;
}

.hero__title-ta {
  font-family: var(--font-ta-serif);
  font-size: clamp(1.6rem, 2.5vw, 2.25rem);
  font-weight: 800;
  line-height: 1.25;
  letter-spacing: 0.01em;
  text-shadow: 0 1px 2px rgba(255, 255, 255, 0.4);
}

.hero__title-ta .word+.word {
  margin-left: 0.35em;
}

.hero__title-en {
  font-family: var(--font-en);
  font-size: clamp(0.75rem, 1.1vw, 0.95rem);
  font-weight: 700;
  letter-spacing: 0.32em;
  color: var(--terracotta);
  text-indent: 0.32em;
}

.hero__tagline {
  margin-top: 0.55rem;
  font-family: var(--font-ta);
  font-size: clamp(0.74rem, 0.95vw, 0.88rem);
  font-weight: 600;
  color: var(--ink-muted);
  letter-spacing: 0.02em;
}

.hero__tagline .dot {
  color: var(--lotus-copper);
  margin: 0 0.25em;
}

.divider {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  margin-top: 0.6rem;
  color: var(--lotus-copper);
}

.divider__line {
  width: 2.2rem;
  height: 1.5px;
  background: currentColor;
  position: relative;
  opacity: 0.8;
}

.divider__line::after {
  content: "";
  position: absolute;
  top: 50%;
  width: 3.5px;
  height: 3.5px;
  border-radius: 50%;
  background: currentColor;
  transform: translateY(-50%);
}

.divider__line:first-child::after {
  left: 0;
}

.divider__line:last-child::after {
  right: 0;
}

.divider__lotus {
  display: block;
}

/* =========================================================
   PRICING CARDS (LEFT & RIGHT ON DESKTOP)
   ========================================================= */
.pricing-card {
  width: clamp(140px, 15vw, 175px);
  min-height: clamp(170px, 18vw, 205px);
  border-radius: 1.25rem;
  padding: 1.25rem 0.9rem 1.1rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: #ffffff;
  box-shadow: 0 10px 24px rgba(40, 25, 15, 0.22),
    inset 0 0 0 1px rgba(255, 255, 255, 0.28);
  transition: transform 0.3s cubic-bezier(0.2, 0.8, 0.3, 1), box-shadow 0.3s ease;
  position: relative;
  overflow: hidden;
}

.pricing-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 32px rgba(40, 25, 15, 0.3),
    inset 0 0 0 1.5px rgba(255, 255, 255, 0.4);
}

.pricing-card--terracotta {
  background: linear-gradient(170deg, #c75629 0%, #ad4317 100%);
}

.pricing-card--olive {
  background: linear-gradient(170deg, #536437 0%, #43532a 100%);
}

.pricing-card__icon {
  width: 2.5rem;
  height: 2.5rem;
  margin-bottom: 0.5rem;
  color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
}

.pricing-card__icon svg {
  width: 100%;
  height: 100%;
}

.pricing-card__content {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.pricing-card__title {
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  line-height: 1.35;
  text-transform: uppercase;
  margin-bottom: 0.35rem;
  opacity: 0.95;
}

.pricing-card__price {
  font-family: var(--font-en);
  font-size: clamp(1.75rem, 2.2vw, 2.15rem);
  font-weight: 800;
  line-height: 1.1;
  letter-spacing: 0.02em;
}

.pricing-card__sub {
  font-size: 0.66rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  margin-top: 0.15rem;
  opacity: 0.9;
  text-transform: uppercase;
}

/* Mobile middle divider - hidden on desktop */
.mobile-section-divider {
  display: none;
}

/* =========================================================
   BOTTOM ACTION CARDS GRID
   ========================================================= */
.cards-grid {
  width: 100%;
  max-width: 860px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: clamp(0.85rem, 1.6vw, 1.4rem);
  position: relative;
  z-index: 10;
}

.card {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  border-radius: 1.25rem;
  padding: 1.3rem 0.85rem 1.1rem;
  color: #ffffff;
  box-shadow: 0 10px 24px rgba(35, 20, 10, 0.24);
  transition: transform 0.3s cubic-bezier(0.2, 0.8, 0.3, 1), box-shadow 0.3s ease;
  min-height: clamp(180px, 20vh, 230px);
  position: relative;
}

.card:hover {
  transform: translateY(-5px);
  box-shadow: 0 16px 36px rgba(35, 20, 10, 0.32);
}

.card--olive {
  background: linear-gradient(175deg, #536336 0%, #46552a 100%);
}

.card--terracotta {
  background: linear-gradient(175deg, #c45427 0%, #a83f15 100%);
}

.card--gold {
  background: linear-gradient(175deg, #d48b17 0%, #ba730b 100%);
}

.card__icon-badge {
  width: 4.1rem;
  height: 4.1rem;
  border-radius: 50%;
  background: var(--icon-bg);
  display: grid;
  place-items: center;
  margin-bottom: 0.75rem;
  flex-shrink: 0;
  box-shadow: 0 5px 14px rgba(0, 0, 0, 0.14);
  padding: 0.45rem;
}

.card__icon-badge svg,
.card__icon-img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
  filter: contrast(1.1);
}

.card__body {
  display: flex;
  flex-direction: column;
  align-items: center;
  flex: 1 1 auto;
  width: 100%;
}

.card__title {
  font-size: clamp(0.66rem, 0.82vw, 0.74rem);
  font-weight: 700;
  letter-spacing: 0.07em;
  line-height: 1.35;
  text-transform: uppercase;
  text-align: center;
}

.card__title-sep {
  opacity: 0.75;
  font-weight: 600;
  margin: 0 0.15em;
}

.card__title-highlight {
  color: #ffe4b8;
  font-weight: 800;
  letter-spacing: 0.06em;
}

.mobile-br {
  display: none;
}

.card--courses-highlight {
  box-shadow:
    0 0 0 2px rgba(255, 216, 154, 0.55),
    0 16px 36px rgba(35, 20, 10, 0.32);
}

.card__ornament {
  display: flex;
  align-items: center;
  gap: 0.35rem;
  margin: 0.65rem 0 auto;
  color: var(--lotus-gold);
}

.card__ornament i {
  display: block;
  width: 1.3rem;
  height: 1px;
  background: currentColor;
  position: relative;
  opacity: 0.85;
}

.card__ornament i::after {
  content: "";
  position: absolute;
  top: 50%;
  width: 2.5px;
  height: 2.5px;
  border-radius: 50%;
  background: currentColor;
  transform: translateY(-50%);
}

.card__ornament i:first-child::after {
  left: 0;
}

.card__ornament i:last-child::after {
  right: 0;
}

.card__action-btn {
  width: 2.15rem;
  height: 2.15rem;
  border-radius: 50%;
  display: grid;
  place-items: center;
  margin-top: 0.75rem;
  flex-shrink: 0;
  transition: transform 0.25s ease, background-color 0.25s ease;
  box-shadow: 0 3px 8px rgba(0, 0, 0, 0.18);
}

.card:hover .card__action-btn {
  transform: scale(1.08) translateX(2px);
}

/* Button accent colors */
.card--olive .card__action-btn {
  background: var(--terracotta-btn);
}

.card--terracotta .card__action-btn {
  background: var(--olive-btn);
}

.card--gold .card__action-btn {
  background: var(--olive-btn);
}

/* =========================================================
   FOOTER (WAVES & SOCIAL BAR)
   ========================================================= */
.footer {
  display: flex;
  flex-direction: column;
  position: relative;
  z-index: 15;
  width: 100%;
  height: auto;
  overflow: visible;
  flex-shrink: 0;
  margin-top: auto;
}

.footer__waves {
  position: relative;
  width: 100%;
  height: clamp(1.6rem, 2.8vh, 2.2rem);
  flex-shrink: 0;
  margin-bottom: -1px;
}

.footer__wave {
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  display: block;
  pointer-events: none;
}

.footer__wave--terracotta {
  color: var(--terracotta);
  z-index: 1;
  transform: translateY(-2px);
  opacity: 0.95;
}

.footer__wave--olive {
  color: var(--olive-dark);
  z-index: 2;
}

.footer__bar {
  background: var(--olive-dark);
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.45rem;
  padding: 0.65rem 1rem 0.75rem;
  box-sizing: border-box;
}

.footer__socials {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.55rem;
}

.footer__social {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  flex-shrink: 0;
  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.25);
  transition: transform 0.22s ease, box-shadow 0.22s ease;
}

.footer__social:hover {
  transform: translateY(-3px) scale(1.06);
  box-shadow: 0 7px 14px rgba(0, 0, 0, 0.32);
}

.footer__social svg {
  width: 15px;
  height: 15px;
  fill: #fff;
}

.footer__social--fb {
  background: #1877f2;
}

.footer__social--ig {
  background: linear-gradient(45deg, #f58529, #dd2a7b, #8134af);
}

.footer__social--yt {
  background: #ff0000;
  border-radius: 50%;
}

.footer__social--li {
  background: #0a66c2;
}

.footer__lotus {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  color: var(--lotus-gold);
}

.footer__managed {
  margin: 0;
  font-size: 0.68rem;
  color: rgba(255, 255, 255, 0.75);
  font-weight: 500;
  letter-spacing: 0.04em;
  text-align: center;
}

.footer__line {
  width: clamp(2rem, 3.5vw, 3.2rem);
  height: 1.5px;
  background: currentColor;
  position: relative;
  opacity: 0.9;
}

.footer__line::after {
  content: "";
  position: absolute;
  top: 50%;
  width: 3.5px;
  height: 3.5px;
  border-radius: 50%;
  background: currentColor;
  transform: translateY(-50%);
}

.footer__line:first-child::after {
  left: 0;
}

.footer__line:last-child::after {
  right: 0;
}


/* =========================================================
   MOBILE RESPONSIVENESS (scrollable — footer visible)
   ========================================================= */
@media (max-width: 860px) {
  html, body {
    min-height: 100%;
    overflow-x: hidden;
    overflow-y: auto;
    background: #f7f1e6;
  }

  .page {
    background: #f7f1e6;
    background-image: linear-gradient(180deg, #fdf8f0 0%, #f4ede1 100%);
    min-height: 100dvh;
    height: auto;
    max-height: none;
    overflow: visible;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
  }

  /* Nav */
  .nav {
    position: relative;
    padding: clamp(0.6rem, 2vh, 1rem) 1.25rem 0;
    max-width: 440px;
    transform: none;
    flex-shrink: 0;
  }

  .nav__link {
    font-size: 0.76rem;
    letter-spacing: 0.18em;
  }

  .nav__left,
  .nav__right {
    gap: 0.65rem;
  }

  .nav__right {
    padding-left: 0.85rem;
  }

  .nav__lotus {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -15%) scale(0.95);
    display: block;
    line-height: 0;
  }

  /* Main Container */
  .main-container {
    padding: clamp(0.2rem, 0.8vh, 0.4rem) 1.25rem clamp(0.6rem, 1.5vh, 1rem);
    max-width: 440px;
    flex: 0 0 auto;
    min-height: 0;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    gap: clamp(0.35rem, 1vh, 0.6rem);
    overflow: visible;
  }

  /* Showcase Section */
  .showcase-section {
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-template-areas:
      "brand brand"
      "price1 price2";
    gap: clamp(0.35rem, 0.9vh, 0.6rem);
    margin-bottom: 0;
    width: 100%;
    flex-shrink: 1;
    min-height: 0;
  }

  /* Brand Hub on Mobile */
  .hero-brand {
    grid-area: brand;
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    margin-bottom: clamp(0.05rem, 0.3vh, 0.2rem);
  }

  .hero__logo {
    width: clamp(130px, 17.5vh, 175px);
    height: clamp(130px, 17.5vh, 175px);
    margin: 0 auto 0.1rem;
    display: flex;
    align-items: center;
    justify-content: center;
  }

  .logo {
    width: 100%;
    height: 100%;
    object-fit: contain;
    margin: 0 auto;
  }

  .hero__title-ta {
    font-size: clamp(1.25rem, 2.7vh, 1.55rem);
    letter-spacing: 0.01em;
    line-height: 1.2;
  }

  .hero__title-en {
    font-size: clamp(0.62rem, 1.2vh, 0.74rem);
    letter-spacing: 0.24em;
    text-indent: 0.24em;
  }

  .hero__tagline {
    font-size: clamp(0.66rem, 1.2vh, 0.78rem);
    max-width: 22rem;
    line-height: 1.35;
    margin-top: clamp(0.15rem, 0.5vh, 0.3rem);
  }

  .divider {
    margin-top: clamp(0.15rem, 0.5vh, 0.35rem);
    transform: scale(0.85);
  }

  /* Pricing Cards on Mobile (Side by Side 2-Column Grid) */
  .pricing-card--terracotta {
    grid-area: price1;
    width: 100%;
    min-height: 0;
    border-radius: 1.05rem;
    padding: clamp(0.45rem, 1.1vh, 0.7rem) 0.45rem clamp(0.4rem, 0.9vh, 0.6rem);
  }

  .pricing-card--olive {
    grid-area: price2;
    width: 100%;
    min-height: 0;
    border-radius: 1.05rem;
    padding: clamp(0.45rem, 1.1vh, 0.7rem) 0.45rem clamp(0.4rem, 0.9vh, 0.6rem);
  }

  .pricing-card__icon {
    width: clamp(1.5rem, 2.8vh, 1.8rem);
    height: clamp(1.5rem, 2.8vh, 1.8rem);
    margin-bottom: 0.15rem;
  }

  .pricing-card__title {
    font-size: clamp(0.54rem, 1vh, 0.62rem);
    line-height: 1.25;
    margin-bottom: 0.12rem;
  }

  .pricing-card__price {
    font-size: clamp(1.35rem, 2.8vh, 1.65rem);
    line-height: 1.05;
  }

  .pricing-card__sub {
    font-size: clamp(0.56rem, 1vh, 0.62rem);
    margin-top: 0.05rem;
  }

  /* Middle Divider on Mobile */
  .mobile-section-divider {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.6rem;
    color: var(--lotus-copper);
    width: 100%;
    margin: clamp(0.12rem, 0.4vh, 0.28rem) 0;
    transform: scale(0.85);
  }

  .mobile-divider-line {
    width: 3.2rem;
    height: 1.5px;
    background: currentColor;
    opacity: 0.75;
    position: relative;
  }

  .mobile-divider-line::after {
    content: "";
    position: absolute;
    top: 50%;
    width: 3.5px;
    height: 3.5px;
    border-radius: 50%;
    background: currentColor;
    transform: translateY(-50%);
  }

  .mobile-divider-line:first-child::after {
    left: 0;
  }

  .mobile-divider-line:last-child::after {
    right: 0;
  }

  /* Action Cards on Mobile (Horizontal Full-Width Pills) */
  .cards-grid {
    grid-template-columns: 1fr;
    gap: clamp(0.42rem, 1.1vh, 0.62rem);
    max-width: 100%;
    flex-shrink: 0;
  }

  .card {
    flex-direction: row;
    align-items: center;
    justify-content: flex-start;
    text-align: left;
    min-height: 0;
    border-radius: 1.35rem;
    padding: clamp(0.42rem, 1.1vh, 0.62rem) 0.75rem clamp(0.42rem, 1.1vh, 0.62rem) 0.55rem;
    gap: 0.75rem;
    box-shadow: 0 5px 16px rgba(35, 20, 10, 0.2);
  }

  .card__icon-badge {
    width: clamp(2.7rem, 5.8vh, 3.2rem);
    height: clamp(2.7rem, 5.8vh, 3.2rem);
    padding: 0.32rem;
    margin-bottom: 0;
    flex-shrink: 0;
  }

  .card__body {
    align-items: flex-start;
    justify-content: center;
    flex: 1 1 auto;
    min-width: 0;
  }

  .card__title {
    font-size: clamp(0.64rem, 1.75vh, 0.74rem);
    letter-spacing: 0.04em;
    line-height: 1.32;
    font-weight: 700;
    text-align: left;
  }

  .card--courses-highlight .card__title {
    font-size: clamp(0.58rem, 1.55vh, 0.68rem);
    line-height: 1.35;
    letter-spacing: 0.03em;
  }

  .mobile-br {
    display: block;
    content: "";
    line-height: 0;
  }

  .card__title-highlight {
    display: inline;
    font-size: inherit;
    color: #ffe4b8;
  }

  .card__title-sep {
    display: inline;
    opacity: 0.9;
    margin: 0 0.1em;
    font-weight: 700;
  }

  .desktop-br {
    display: none;
  }

  .card__ornament {
    display: none;
  }

  .card__action-btn {
    margin-top: 0;
    margin-left: auto;
    width: clamp(1.85rem, 3.8vh, 2.15rem);
    height: clamp(1.85rem, 3.8vh, 2.15rem);
    flex-shrink: 0;
  }

  .card__action-btn svg {
    width: 14px;
    height: 14px;
  }

  /* Show decorative footer waves on mobile */
  .footer {
    display: flex;
    height: auto;
    margin-top: auto;
    flex-shrink: 0;
    width: 100%;
  }

  .footer__waves {
    height: clamp(1.35rem, 2.4vh, 1.85rem);
  }

  .footer__bar {
    gap: 0.35rem;
    padding: 0.5rem 0.85rem 0.6rem;
  }

  .footer__socials {
    gap: 0.4rem;
  }

  .footer__social {
    width: 30px;
    height: 30px;
  }

  .footer__social svg {
    width: 13px;
    height: 13px;
  }

  .footer__lotus {
    transform: scale(0.92);
  }
}

/* ========== HOME MOTION ========== */
@keyframes ig-home-up {
  from {
    opacity: 0;
    transform: translateY(18px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes ig-lotus-breathe {
  0%, 100% { transform: scale(1); opacity: 0.95; }
  50% { transform: scale(1.08); opacity: 1; }
}

@keyframes ig-logo-float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-5px); }
}

.has-motion .reveal {
  opacity: 0;
  transform: translateY(18px);
  transition:
    opacity 0.7s cubic-bezier(0.22, 1, 0.36, 1),
    transform 0.7s cubic-bezier(0.22, 1, 0.36, 1);
  transition-delay: var(--reveal-delay, 0ms);
}

.has-motion .reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.has-motion .hero__logo {
  animation: ig-logo-float 4.8s ease-in-out infinite;
}

.has-motion .hero__title {
  animation: ig-home-up 0.85s cubic-bezier(0.22, 1, 0.36, 1) both;
}

.has-motion .pricing-card {
  transition: transform 0.35s cubic-bezier(0.2, 0.8, 0.3, 1), box-shadow 0.35s ease;
}

.has-motion .pricing-card:hover {
  transform: translateY(-6px) scale(1.02);
}

.has-motion .card {
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.has-motion .card:hover {
  transform: translateY(-4px);
}

.has-motion .footer__lotus {
  animation: none;
}

.has-motion .footer__content .footer__lotus .lotus {
  animation: ig-lotus-breathe 5s ease-in-out infinite;
  transform-origin: center center;
}

.has-motion .nav__lotus {
  animation: ig-logo-float 5.5s ease-in-out infinite;
}

@media (prefers-reduced-motion: reduce) {
  .has-motion .reveal,
  .has-motion .reveal.is-visible,
  .has-motion .hero__logo,
  .has-motion .hero__title,
  .has-motion .footer__content .footer__lotus .lotus,
  .has-motion .nav__lotus {
    animation: none !important;
    transition: none !important;
    opacity: 1 !important;
    transform: none !important;
  }
}
