:root {
  --ink: #083048;
  --sun: #ff8113;
  --brand: #00b2fc;
}

html { scroll-behavior: smooth; }

body {
  font-family: Outfit, ui-sans-serif, system-ui, sans-serif;
}

.font-display,
h1, h2, .display {
  font-family: Fraunces, Georgia, serif;
}

::selection {
  background: #00b2fc33;
}

.home-hero {
  position: relative;
  min-height: 30rem;
  overflow: hidden;
  background-color: #083048;
  background-image: url("../img/india/hero.png");
  background-size: cover;
  background-position: 68% 42%;
  color: #fff;
}

.home-hero-scrim {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(8, 48, 72, 0.88) 0%, rgba(8, 48, 72, 0.62) 34%, rgba(8, 48, 72, 0.2) 58%, rgba(8, 48, 72, 0.05) 78%, transparent 100%),
    linear-gradient(180deg, rgba(8, 48, 72, 0.12) 0%, rgba(8, 48, 72, 0.22) 100%);
}

.home-hero-copy {
  position: relative;
  display: flex;
  min-height: 30rem;
  max-width: 72rem;
  margin: 0 auto;
  flex-direction: column;
  justify-content: center;
  padding: 3.25rem 1rem 3.5rem;
}

.home-hero-kicker {
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: #e1a302;
}

.home-hero h1 {
  max-width: 20.5rem;
  margin-top: 0.85rem;
  font-size: 2.35rem;
  font-weight: 500;
  line-height: 1.12;
  letter-spacing: -0.02em;
  text-shadow: 0 10px 28px rgba(8, 48, 72, 0.35);
}

.home-hero-lead {
  max-width: 26rem;
  margin-top: 1rem;
  font-size: 0.95rem;
  line-height: 1.65;
  color: rgba(255, 255, 255, 0.88);
}

.home-hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-top: 1.5rem;
}

.home-hero-primary {
  display: inline-flex;
  align-items: center;
  border-radius: 999px;
  background: #ff8113;
  color: #fff;
  padding: 0.8rem 1.45rem;
  font-size: 0.875rem;
  font-weight: 500;
}

.home-hero-primary:hover {
  background: #e5720a;
  color: #fff;
}

.home-hero-secondary {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.55);
  background: rgba(255, 255, 255, 0.16);
  color: #fff;
  padding: 0.8rem 1.35rem;
  font-size: 0.875rem;
  font-weight: 500;
  backdrop-filter: blur(8px);
}

.home-hero-secondary:hover {
  background: rgba(255, 255, 255, 0.26);
  color: #fff;
}

.header-plan {
  display: inline-flex;
  align-items: center;
  border-radius: 999px;
  background: #ff8113;
  color: #fff;
  padding: 0.5rem 0.9rem;
  font-size: 0.8rem;
  font-weight: 500;
  white-space: nowrap;
}

.header-plan:hover {
  background: #e5720a;
  color: #fff;
}

.nav-drawer {
  position: fixed;
  inset: 0;
  z-index: 70;
  visibility: hidden;
  pointer-events: none;
}

.nav-drawer.is-open {
  visibility: visible;
  pointer-events: auto;
}

.nav-drawer-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(8, 48, 72, 0.48);
  opacity: 0;
  transition: opacity 0.25s ease;
}

.nav-drawer.is-open .nav-drawer-backdrop {
  opacity: 1;
}

.nav-drawer-panel {
  position: absolute;
  top: 0;
  right: 0;
  display: flex;
  flex-direction: column;
  width: min(20.5rem, 88vw);
  height: 100%;
  background: #fff;
  color: #083048;
  box-shadow: -16px 0 40px rgba(8, 48, 72, 0.16);
  transform: translateX(100%);
  transition: transform 0.28s ease;
  padding: max(0.85rem, env(safe-area-inset-top)) 1.2rem max(1.2rem, env(safe-area-inset-bottom));
}

.nav-drawer.is-open .nav-drawer-panel {
  transform: translateX(0);
}

.nav-drawer-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
  padding-bottom: 0.85rem;
  border-bottom: 1px solid rgba(8, 48, 72, 0.08);
}

.nav-drawer-head img {
  height: 2.4rem;
  width: auto;
}

.nav-drawer-close {
  display: flex;
  width: 2.25rem;
  height: 2.25rem;
  align-items: center;
  justify-content: center;
  border: 0;
  border-radius: 999px;
  background: rgba(8, 48, 72, 0.06);
  color: #083048;
  font-size: 1.4rem;
  line-height: 1;
  cursor: pointer;
}

.nav-drawer-nav {
  display: flex;
  flex-direction: column;
  flex: 1;
  overflow: auto;
  padding: 0.5rem 0 1rem;
}

.nav-drawer-nav a {
  display: block;
  padding: 0.85rem 0.15rem;
  border-bottom: 1px solid rgba(8, 48, 72, 0.06);
  font-size: 1.05rem;
  font-weight: 500;
  color: #083048;
}

.nav-drawer-nav a:hover,
.nav-drawer-nav a.text-brand {
  color: #00b2fc;
}

.nav-drawer-foot {
  display: grid;
  gap: 0.65rem;
  padding-top: 0.85rem;
}

.nav-drawer-wa {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.45rem;
  border-radius: 999px;
  border: 1px solid rgba(8, 48, 72, 0.12);
  color: #083048;
  padding: 0.75rem 1rem;
  font-size: 0.85rem;
  font-weight: 500;
}

.nav-drawer-wa .ico-wa {
  color: #25d366;
}

.nav-drawer-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  background: #ff8113;
  color: #fff;
  padding: 0.8rem 1rem;
  font-size: 0.9rem;
  font-weight: 500;
}

.nav-drawer-cta:hover {
  background: #e5720a;
  color: #fff;
}

body.nav-open {
  overflow: hidden;
}

body.nav-open .wa-float {
  visibility: hidden;
}

@media (min-width: 1024px) {
  .nav-drawer {
    display: none;
  }
}

@media (min-width: 640px) {
  .home-hero,
  .home-hero-copy {
    min-height: 34rem;
  }

  .home-hero h1 {
    max-width: 26rem;
    font-size: 3rem;
  }
}

@media (min-width: 1024px) {
  .home-hero,
  .home-hero-copy {
    min-height: 38rem;
  }
}

@media (max-width: 639px) {
  .home-hero-scrim {
    background:
      linear-gradient(180deg, rgba(8, 48, 72, 0.58) 0%, rgba(8, 48, 72, 0.78) 100%);
  }

  .home-hero h1 {
    max-width: 18rem;
  }
}

.place-card {
  position: relative;
  display: block;
  overflow: hidden;
  border-radius: 1.25rem;
  min-height: 17.5rem;
  height: 100%;
  color: #fff;
}

.place-wide {
  min-height: 22rem;
}

.place-card img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.place-card:hover img,
.tour-card:hover img {
  transform: scale(1.06);
}

.trip-band {
  padding: 1.6rem 1.2rem 1.5rem;
  border: 1px solid rgba(8, 48, 72, 0.08);
  border-radius: 1.75rem;
  background: #fff;
}

.trip-band-kicker {
  margin: 0;
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: #ff8113;
}

.trip-band h2 {
  margin: 0.45rem 0 0;
  font-size: 2rem;
  color: #083048;
}

.trip-band-lead {
  max-width: 36rem;
  margin: 0.65rem 0 0;
  font-size: 0.9rem;
  line-height: 1.6;
  color: rgba(8, 48, 72, 0.65);
}

.trip-types {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.85rem;
  margin-top: 1.5rem;
}

.trip-type {
  position: relative;
  display: block;
  overflow: hidden;
  min-height: 16.5rem;
  border-radius: 1.15rem;
  color: #fff;
}

.trip-type img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.trip-type:hover {
  color: #fff;
}

.trip-type:hover img {
  transform: scale(1.06);
}

.trip-type-copy {
  position: absolute;
  inset: auto 0 0;
  display: flex;
  flex-direction: column;
  gap: 0.3rem;
  padding: 3.2rem 1.1rem 1.1rem;
  background: linear-gradient(180deg, transparent, rgba(8, 48, 72, 0.88));
}

.trip-type-name {
  font-family: Fraunces, Georgia, serif;
  font-size: 1.5rem;
  font-weight: 500;
  color: #fff;
}

.trip-type-desc {
  font-size: 0.85rem;
  line-height: 1.45;
  color: rgba(255, 255, 255, 0.82);
}

.trip-type-more {
  margin-top: 0.35rem;
  font-size: 0.78rem;
  font-weight: 500;
  color: #7fe3ff;
}

@media (min-width: 768px) {
  .trip-band {
    padding: 2.1rem 2.15rem 1.85rem;
  }

  .trip-band h2 {
    font-size: 2.35rem;
  }
}

@media (min-width: 1024px) {
  .trip-types {
    grid-template-columns: repeat(4, 1fr);
  }
}

.place-card .place-copy {
  position: absolute;
  inset: auto 0 0;
  padding: 1.25rem 1.15rem 1.15rem;
  background: linear-gradient(180deg, transparent, rgba(8, 48, 72, 0.88));
}

.tour-card {
  display: flex;
  flex-direction: column;
  overflow: hidden;
  border-radius: 1.25rem;
  background: #fff;
  box-shadow: 0 12px 40px -24px rgba(8, 48, 72, 0.35);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.tour-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 22px 50px -24px rgba(8, 48, 72, 0.4);
}

.tour-card .media {
  position: relative;
  display: block;
  height: 13.5rem;
  overflow: hidden;
}

.tour-card .media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.chip {
  position: absolute;
  top: 0.85rem;
  left: 0.85rem;
  border-radius: 999px;
  background: rgba(8, 48, 72, 0.78);
  padding: 0.28rem 0.7rem;
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: #fff;
}

.chip.sun { left: auto; right: 0.85rem; background: var(--sun); }

.tour-card-body {
  display: flex;
  flex: 1;
  flex-direction: column;
  gap: 1rem;
  padding: 1.15rem 1.2rem 1.2rem;
}

.tour-card-top {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 0.85rem;
}

.tour-card-title {
  display: block;
  font-family: Fraunces, Georgia, serif;
  font-size: 1.25rem;
  font-weight: 500;
  line-height: 1.25;
  color: var(--ink);
}

.tour-card-title + .meta-row {
  margin-top: 0.4rem;
}

.tour-card-meta {
  display: block;
  margin-top: 0.3rem;
  font-size: 0.75rem;
  color: rgba(8, 48, 72, 0.45);
}

.tour-card-price {
  flex-shrink: 0;
  padding-top: 0.15rem;
  text-align: right;
  font-size: 1.05rem;
  font-weight: 600;
  line-height: 1.2;
  color: var(--ink);
}

.tour-card-price span {
  display: block;
  margin-bottom: 0.1rem;
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(8, 48, 72, 0.4);
}

.tour-card-more {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  margin-top: auto;
  padding-top: 0.85rem;
  border-top: 1px solid rgba(8, 48, 72, 0.08);
  font-size: 0.8rem;
  font-weight: 500;
  color: #00a0ff;
}

.tour-card-more .ico {
  width: 0.95rem;
  height: 0.95rem;
  transition: transform 0.2s ease;
}

.tour-card:hover .tour-card-more {
  color: #008ad9;
}

.tour-card:hover .tour-card-more .ico {
  transform: translateX(3px);
}

.home-ads {
  display: grid;
  gap: 1rem;
}

.home-ad-link {
  display: block;
  overflow: hidden;
  border-radius: 1.15rem;
  line-height: 0;
}

.home-ad-link:hover .home-ad {
  transform: scale(1.03);
}

.home-ad {
  display: block;
  width: 100%;
  height: auto;
  border-radius: 1.15rem;
  object-fit: cover;
  transition: transform 0.45s ease;
}

@media (min-width: 640px) {
  .home-ads {
    grid-template-columns: 1fr 1fr;
    gap: 1.15rem;
  }
}

.quotes {
  display: grid;
  gap: 1rem;
}

.quote-card {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin: 0;
  padding: 1.25rem 1.2rem 1.3rem;
  border: 1px solid rgba(8, 48, 72, 0.08);
  border-radius: 1.25rem;
  background: #fff;
}

.quote-card img {
  width: 3.5rem;
  height: 3.5rem;
  object-fit: cover;
  border-radius: 999px;
}

.quote-card blockquote {
  margin: 0;
  font-family: Fraunces, Georgia, serif;
  font-size: 1.1rem;
  font-weight: 500;
  line-height: 1.45;
  color: #083048;
}

.quote-card figcaption {
  display: flex;
  flex-direction: column;
  gap: 0.15rem;
  margin-top: auto;
}

.quote-card strong {
  font-size: 0.9rem;
  font-weight: 600;
  color: #083048;
}

.quote-card span {
  font-size: 0.8rem;
  color: rgba(8, 48, 72, 0.55);
}

@media (min-width: 768px) {
  .quotes {
    grid-template-columns: repeat(3, 1fr);
    gap: 1.15rem;
  }
}

.home-cta {
  color: #083048;
}

.home-cta-inner {
  display: grid;
  gap: 1.15rem;
}

.home-cta-card {
  max-width: 34rem;
}

.home-cta-visual {
  display: flex;
  align-items: flex-end;
  justify-content: center;
  order: -1;
  min-height: 14rem;
}

.home-cta-visual img {
  display: block;
  width: 100%;
  max-height: 18rem;
  object-fit: contain;
  object-position: bottom center;
}

@media (min-width: 640px) and (max-width: 1023px) {
  .home-cta-visual img {
    max-height: 22rem;
  }
}

.home-cta-kicker {
  margin: 0;
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: #ff8113;
}

.home-cta-card h2 {
  margin: 0.55rem 0 0;
  font-size: 2.15rem;
  font-weight: 500;
  line-height: 1.15;
  letter-spacing: -0.02em;
  color: #083048;
}

.home-cta-lead {
  margin: 0.75rem 0 0;
  font-size: 0.95rem;
  line-height: 1.65;
  color: rgba(8, 48, 72, 0.7);
}

.home-cta-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem;
  margin-top: 1.25rem;
}

.home-cta-primary {
  display: inline-flex;
  align-items: center;
  border-radius: 999px;
  background: #ff8113;
  color: #fff;
  padding: 0.8rem 1.4rem;
  font-size: 0.875rem;
  font-weight: 500;
}

.home-cta-primary:hover {
  background: #e5720a;
  color: #fff;
}

.home-cta-secondary {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  border-radius: 999px;
  border: 1px solid rgba(8, 48, 72, 0.16);
  background: transparent;
  color: #083048;
  padding: 0.8rem 1.25rem;
  font-size: 0.875rem;
  font-weight: 500;
}

.home-cta-secondary:hover {
  background: rgba(8, 48, 72, 0.05);
  color: #083048;
}

.home-cta-secondary .ico-wa {
  color: #25d366;
}

.home-cta-note {
  margin: 0.9rem 0 0;
  font-size: 0.75rem;
  letter-spacing: 0.02em;
  color: rgba(8, 48, 72, 0.5);
}

@media (min-width: 1024px) {
  .home-cta-inner {
    grid-template-columns: minmax(0, 0.92fr) minmax(22rem, 1.15fr);
    align-items: center;
    gap: 0.25rem;
    min-height: 24rem;
  }

  .home-cta-card {
    padding: 0.5rem 0 1rem;
  }

  .home-cta-card h2 {
    font-size: 2.65rem;
  }

  .home-cta-visual {
    order: 0;
    min-height: 24rem;
    justify-content: flex-end;
  }

  .home-cta-visual img {
    width: 100%;
    max-height: 26rem;
    object-position: bottom right;
  }
}

.wa-float {
  position: fixed;
  right: 1.1rem;
  bottom: 1.1rem;
  z-index: 60;
  display: flex;
  height: 3.4rem;
  width: 3.4rem;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  background: #25d366;
  color: #fff;
  box-shadow: 0 10px 30px rgba(37, 211, 102, 0.45);
}

.wa-float:hover { filter: brightness(1.05); }

.input {
  width: 100%;
  border-radius: 0.9rem;
  border: 1px solid #e7e0d4;
  background: #fff;
  padding: 0.8rem 0.95rem;
  font-size: 0.9rem;
  color: var(--ink);
}

.input:focus {
  border-color: var(--brand);
  outline: none;
  box-shadow: 0 0 0 4px rgba(0, 178, 252, 0.16);
}

label.field {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--ink);
}

label.field .input { width: 100%; }

.sticky-book {
  position: sticky;
  top: 6rem;
}

[data-icon] {
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.ico {
  width: 1.15rem;
  height: 1.15rem;
  flex-shrink: 0;
}

.ico-wa,
[data-icon="whatsapp"] {
  color: #25d366;
}

.wa-float,
.wa-float [data-icon="whatsapp"],
.wa-float .ico-wa {
  color: #fff;
}

.wa-float .ico {
  width: 1.45rem;
  height: 1.45rem;
}

.ico-box {
  display: inline-flex;
  width: 2.75rem;
  height: 2.75rem;
  flex-shrink: 0;
  align-items: center;
  justify-content: center;
  border-radius: 0.9rem;
  background: rgba(0, 178, 252, 0.12);
  color: #00b2fc;
}

.ico-box .ico { width: 1.25rem; height: 1.25rem; }

.ico-box.sun { background: rgba(255, 129, 19, 0.14); color: #ff8113; }
.ico-box.leaf { background: rgba(54, 194, 65, 0.14); color: #36c241; }
.ico-box.gold { background: rgba(225, 163, 2, 0.18); color: #e1a302; }
.ico-box.ink { background: rgba(8, 48, 72, 0.08); color: #083048; }
.ico-box.light { background: rgba(255, 255, 255, 0.12); color: #fff; }

.meta-row {
  display: flex;
  align-items: center;
  gap: 0.4rem;
}

details summary { list-style: none; }
details summary::-webkit-details-marker { display: none; }

@media (max-width: 640px) {
  .place-card { min-height: 14rem; }
}

.site-footer {
  background:
    linear-gradient(180deg, rgba(0, 178, 252, 0.1) 0%, transparent 5rem),
    #062536;
  color: rgba(255, 255, 255, 0.68);
}

.site-footer-inner {
  display: grid;
  gap: 2.5rem 2rem;
  max-width: 72rem;
  margin: 0 auto;
  padding: 3.25rem 1rem 2.5rem;
}

@media (min-width: 768px) {
  .site-footer-inner {
    grid-template-columns: minmax(0, 1.4fr) repeat(2, minmax(0, 0.75fr)) minmax(0, 1.15fr);
  }
}

.site-footer-brand img {
  display: block;
  height: 2.65rem;
  width: auto;
  margin-bottom: 1.1rem;
}

.site-footer-brand p {
  max-width: 22rem;
  font-size: 0.9rem;
  line-height: 1.65;
}

.site-footer-cta {
  display: inline-flex;
  margin-top: 1.35rem;
  align-items: center;
  border-radius: 999px;
  background: #ff8113;
  color: #fff;
  padding: 0.65rem 1.2rem;
  font-size: 0.85rem;
  font-weight: 500;
}

.site-footer-cta:hover {
  background: #e5720a;
  color: #fff;
}

.site-footer-label {
  margin: 0 0 1rem;
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: #e1a302;
}

.site-footer nav {
  display: flex;
  flex-direction: column;
  gap: 0.7rem;
  font-size: 0.9rem;
}

.site-footer nav a,
.site-footer-contact a,
.site-footer-bar a {
  transition: color 0.15s ease;
}

.site-footer nav a:hover,
.site-footer-contact a:hover,
.site-footer-bar a:hover {
  color: #00f3f0;
}

.site-footer-contact {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  font-size: 0.9rem;
}

.site-footer-contact a {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
}

.site-footer-contact a:first-child {
  color: #4ade80;
}

.site-footer-address {
  display: flex;
  align-items: flex-start;
  gap: 0.55rem;
  margin: 1rem 0 0;
  padding-top: 1rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  font-size: 0.85rem;
  line-height: 1.55;
}

.site-footer-bar {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem 1.5rem;
  max-width: 72rem;
  margin: 0 auto;
  padding: 1rem 1rem 1.25rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  font-size: 0.75rem;
  color: rgba(255, 255, 255, 0.45);
}

.site-footer-bar div {
  display: flex;
  gap: 1.25rem;
}

.plan-modal {
  position: fixed;
  inset: 0;
  z-index: 80;
  display: flex;
  align-items: stretch;
  justify-content: stretch;
}

.plan-modal[hidden] {
  display: none;
}

.plan-modal-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(8, 48, 72, 0.55);
  animation: plan-fade 0.2s ease;
}

.plan-modal-panel {
  position: relative;
  z-index: 1;
  width: 100%;
  height: 100%;
  max-height: none;
  overflow: auto;
  border-radius: 0;
  background: #fff;
  color: var(--ink);
  padding: max(1.25rem, env(safe-area-inset-top)) 1.25rem max(1.4rem, env(safe-area-inset-bottom));
  animation: plan-sheet 0.28s ease;
}

.plan-modal-close {
  position: absolute;
  top: 0.85rem;
  right: 0.85rem;
  display: flex;
  width: 2.25rem;
  height: 2.25rem;
  align-items: center;
  justify-content: center;
  border: 0;
  border-radius: 999px;
  background: rgba(8, 48, 72, 0.06);
  color: var(--ink);
  font-size: 1.4rem;
  line-height: 1;
  cursor: pointer;
}

.plan-modal-kicker {
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: #ff8113;
}

.plan-modal-panel h2 {
  margin: 0.4rem 2.5rem 0.4rem 0;
  font-family: Fraunces, Georgia, serif;
  font-size: 1.75rem;
  font-weight: 500;
  color: var(--ink);
}

.plan-modal-lead {
  margin: 0 0 1.15rem;
  font-size: 0.9rem;
  line-height: 1.55;
  color: rgba(8, 48, 72, 0.65);
}

.plan-modal-form {
  display: grid;
  gap: 0.85rem;
}

.plan-modal-form .field {
  margin: 0;
  flex-direction: column;
  align-items: stretch;
  gap: 0.45rem;
}

.plan-modal-submit {
  display: inline-flex;
  width: 100%;
  align-items: center;
  justify-content: center;
  border: 0;
  border-radius: 999px;
  background: #ff8113;
  color: #fff;
  padding: 0.85rem 1.2rem;
  font-size: 0.9rem;
  font-weight: 500;
  cursor: pointer;
}

.plan-modal-submit:hover {
  background: #e5720a;
}

.plan-modal-or {
  margin: 0;
  text-align: center;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(8, 48, 72, 0.4);
}

.plan-modal-wa {
  display: inline-flex;
  width: 100%;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  border-radius: 999px;
  border: 1px solid #25d366;
  background: #e7f8ee;
  color: #075e36;
  padding: 0.8rem 1.2rem;
  font-size: 0.9rem;
  font-weight: 500;
  text-decoration: none;
}

.plan-modal-wa:hover {
  background: #d8f3e3;
  color: #075e36;
}

.plan-modal-wa .ico-wa,
.plan-modal-wa [data-icon="whatsapp"] {
  color: #25d366;
}

.plan-modal-context {
  display: none;
  margin: 0 0 0.2rem;
  padding: 0.7rem 0.85rem;
  border-radius: 0.85rem;
  background: rgba(0, 178, 252, 0.1);
  font-size: 0.8rem;
  color: #083048;
}

.plan-modal-context.is-on {
  display: block;
}

body.plan-open {
  overflow: hidden;
}

body.plan-open .wa-float {
  visibility: hidden;
}

@keyframes plan-fade {
  from { opacity: 0; }
  to { opacity: 1; }
}

@keyframes plan-sheet {
  from { transform: translateY(18px); opacity: 0.6; }
  to { transform: translateY(0); opacity: 1; }
}

@media (min-width: 640px) {
  .plan-modal-panel {
    padding: max(1.6rem, env(safe-area-inset-top)) 1.75rem max(1.6rem, env(safe-area-inset-bottom));
  }

  .plan-modal-panel h2,
  .plan-modal-lead,
  .plan-modal-context,
  .plan-modal-form {
    max-width: 36rem;
  }

  .plan-modal-panel h2 {
    font-size: 2rem;
  }

  .plan-modal-form {
    grid-template-columns: 1fr 1fr;
  }

  .plan-modal-form .field-full,
  .plan-modal-form .plan-modal-submit,
  .plan-modal-form .plan-modal-or,
  .plan-modal-form .plan-modal-wa,
  .plan-modal-form [data-form-status] {
    grid-column: 1 / -1;
  }
}

@media (min-width: 1024px) {
  .plan-modal {
    align-items: center;
    justify-content: center;
    padding: 1.5rem;
  }

  .plan-modal-panel {
    width: 100%;
    height: auto;
    max-width: 28.5rem;
    max-height: 92vh;
    border-radius: 1.5rem;
    padding: 1.75rem 1.6rem 1.7rem;
    animation-name: plan-pop;
  }

  .plan-modal-panel h2,
  .plan-modal-lead,
  .plan-modal-context,
  .plan-modal-form {
    max-width: none;
  }
}

@keyframes plan-pop {
  from { transform: translateY(12px) scale(0.98); opacity: 0; }
  to { transform: translateY(0) scale(1); opacity: 1; }
}

@media (prefers-reduced-motion: reduce) {
  .plan-modal-backdrop,
  .plan-modal-panel {
    animation: none;
  }
}
