:root {
  --red: #ed2329;
  --yellow: #ffd21f;
  --blue: #0869d8;
  --navy: #071e55;
  --green: #00a987;
  --ink: #101828;
  --muted: #5b6578;
  --paper: #fffaf0;
  --white: #ffffff;
  --shadow: 0 22px 55px rgba(7, 30, 85, 0.18);
  --font-display: "Baloo 2", "Arial Rounded MT Bold", "Trebuchet MS", sans-serif;
  --font-body: "Nunito", "Trebuchet MS", Arial, sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  background: var(--yellow);
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--yellow);
  font-family: var(--font-body);
  overflow-x: hidden;
}

img {
  display: block;
  max-width: 100%;
}

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

button,
input,
textarea {
  font: inherit;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  background: var(--yellow);
  box-shadow: 0 6px 18px rgba(7, 30, 85, 0.18);
  overflow: visible;
}

.site-header::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -52px;
  height: 82px;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 1440 120' preserveAspectRatio='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M0 0H1440V34C1312 76 1184 24 1028 45C842 70 714 105 552 66C402 30 292 80 142 50C78 37 34 20 0 10V0Z' fill='%23ffd21f'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-size: 100% 100%;
  pointer-events: none;
}

.nav-shell {
  position: relative;
  z-index: 2;
  width: min(1180px, calc(100% - 44px));
  min-height: 74px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 180px 1fr auto;
  align-items: center;
  gap: 18px;
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: 14px;
}

.lang-toggle {
  display: flex;
  align-items: center;
  gap: 0;
  background: rgba(255, 255, 255, 0.25);
  backdrop-filter: blur(6px);
  border-radius: 10px;
  padding: 3px;
  border: 1.5px solid rgba(255, 255, 255, 0.4);
}

.lang-toggle button {
  background: none;
  border: none;
  cursor: pointer;
  color: var(--navy);
  padding: 7px 11px;
  font-family: var(--font-display);
  font-weight: 900;
  font-size: 0.78rem;
  border-radius: 8px;
  transition: all 0.2s;
  line-height: 1;
}

.lang-toggle button.active {
  background: var(--red);
  color: #fff;
  box-shadow: 0 2px 8px rgba(237, 35, 41, 0.35);
}

.lang-toggle button:hover:not(.active) {
  background: rgba(255, 255, 255, 0.5);
}

.lang-divider {
  display: none;
}

.brand {
  align-self: stretch;
  display: flex;
  align-items: flex-start;
}

.brand img {
  width: 214px;
  padding: 0;
  background: transparent;
  border: 0;
  border-radius: 0;
  box-shadow: none;
  filter: drop-shadow(0 8px 8px rgba(7, 30, 85, 0.18));
}

.nav-links {
  display: flex;
  justify-content: center;
  gap: 17px;
  color: var(--navy);
  font-family: var(--font-display);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0;
  text-transform: uppercase;
}

.nav-links a {
  padding: 14px 0 10px;
  border-bottom: 3px solid transparent;
}

.nav-links a:first-child {
  color: var(--red);
  border-color: var(--red);
}

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

.call-pill,
.btn {
  border: 0;
  border-radius: 14px;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 22px;
  color: var(--white);
  font-family: var(--font-display);
  font-weight: 800;
  letter-spacing: 0;
  text-transform: uppercase;
  box-shadow: 0 12px 0 rgba(7, 30, 85, 0.14);
  transition: transform 180ms ease, box-shadow 180ms ease, filter 180ms ease;
}

.btn:disabled {
  opacity: 0.6;
  cursor: not-allowed;
  transform: none;
  filter: grayscale(0.3);
}

.call-pill {
  background: var(--red);
  min-height: 44px;
  padding-inline: 22px;
  border-radius: 12px;
  box-shadow: 0 8px 0 rgba(7, 30, 85, 0.16);
  white-space: nowrap;
}

.btn:hover,
.call-pill:hover {
  transform: translateY(-2px);
  filter: saturate(1.08);
}

.btn:active,
.call-pill:active {
  transform: translateY(1px);
  box-shadow: 0 6px 0 rgba(7, 30, 85, 0.14);
}

.btn-red {
  background: var(--red);
}

.btn-blue {
  background: var(--blue);
}

.btn-green {
  background: var(--green);
}

.btn-yellow {
  background: var(--yellow);
  color: var(--navy);
}

.hero {
  position: relative;
  z-index: 1;
  isolation: isolate;
  background:
    repeating-conic-gradient(from -15deg at 75% 45%, rgba(255, 255, 255, 0.08) 0deg 10deg, transparent 10deg 20deg),
    linear-gradient(135deg, #0968e4 0%, #043ba8 100%);
  min-height: 590px;
  padding: 52px 0 72px;
  overflow: hidden;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  background-image: radial-gradient(rgba(255, 255, 255, 0.25) 1.8px, transparent 2.2px);
  background-size: 16px 16px;
  mask-image: 
    radial-gradient(circle at 5% 15%, #000 0% 12%, transparent 25%),
    radial-gradient(circle at 95% 85%, #000 0% 12%, transparent 25%);
  -webkit-mask-image: 
    radial-gradient(circle at 5% 15%, #000 0% 12%, transparent 25%),
    radial-gradient(circle at 95% 85%, #000 0% 12%, transparent 25%);
}

.services::before,
.packages::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  background-image: radial-gradient(rgba(8, 105, 216, 0.22) 1.8px, transparent 2.2px);
  background-size: 18px 18px;
  mask-image: linear-gradient(to right, #000 0%, transparent 15%, transparent 85%, #000 100%);
  -webkit-mask-image: linear-gradient(to right, #000 0%, transparent 15%, transparent 85%, #000 100%);
}

.confetti-layer {
  position: absolute;
  inset: 0;
  overflow: hidden;
  pointer-events: none;
  z-index: 1;
}

.confetti-layer::before,
.confetti-layer::after {
  content: "";
  position: absolute;
  width: 14px;
  height: 14px;
  background: var(--red);
  left: 11%;
  top: 18%;
  transform: rotate(24deg);
  box-shadow:
    170px 60px 0 var(--green),
    420px 20px 0 var(--red),
    780px 130px 0 var(--yellow),
    1040px 80px 0 var(--green),
    970px 280px 0 var(--red),
    270px 360px 0 var(--blue);
  animation: floaty 4.8s ease-in-out infinite;
}

.confetti-layer::after {
  left: 72%;
  top: 34%;
  background: var(--yellow);
  animation-delay: -2s;
}

@keyframes floaty {
  50% {
    transform: translateY(16px) rotate(36deg);
  }
}

.hero-inner,
.services,
.packages,
.why-inner,
.gallery,
.site-footer,
.final-cta {
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto;
}

.hero-inner {
  position: relative;
  z-index: 2;
  width: min(1180px, calc(100% - 44px));
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 32px;
  align-items: center;
}

.eyebrow {
  margin: 0 0 10px;
  color: var(--red);
  font-size: 0.85rem;
  font-family: var(--font-display);
  font-weight: 800;
  text-transform: uppercase;
}

.hero .eyebrow {
  color: var(--yellow);
}

.hero h1,
.section-heading h2,
.why-inner h2,
.final-cta h2,
.modal-panel h2 {
  margin: 0;
  color: var(--navy);
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(2.45rem, 6vw, 5.3rem);
  line-height: 0.88;
  letter-spacing: 0;
  text-transform: uppercase;
  text-wrap: balance;
}

.hero h1 {
  max-width: 560px;
  color: var(--white);
  font-size: clamp(3.1rem, 5vw, 4.85rem);
  line-height: 0.84;
  text-shadow: 0 4px 8px rgba(4, 16, 43, 0.32);
}

.hero h1::first-line {
  color: var(--white);
}

.text-red {
  color: var(--red);
}

.hero-text {
  max-width: 470px;
  margin: 18px 0 22px;
  color: rgba(255, 255, 255, 0.92);
  font-family: var(--font-body);
  font-size: 1.06rem;
  font-weight: 700;
  line-height: 1.58;
}

.hero-actions,
.final-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
}

.trust-row {
  position: relative;
  z-index: 7;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  margin-top: 20px;
  max-width: 610px;
}

.trust-row div {
  position: relative;
  min-height: 72px;
  padding: 13px 12px 12px 50px;
  background: rgba(255, 255, 255, 0.92);
  border-radius: 12px;
  box-shadow: 0 15px 35px rgba(7, 30, 85, 0.13);
}

.trust-icon {
  position: absolute;
  left: 14px;
  top: 18px;
  width: 28px;
  height: 28px;
  background: var(--yellow);
  box-shadow: inset 0 -4px 0 rgba(7, 30, 85, 0.12);
}

.shield-mark {
  clip-path: polygon(50% 0, 92% 18%, 82% 76%, 50% 100%, 18% 76%, 8% 18%);
}

.star-mark {
  background: var(--yellow);
  clip-path: polygon(50% 0, 62% 34%, 98% 35%, 69% 56%, 79% 91%, 50% 70%, 21% 91%, 31% 56%, 2% 35%, 38% 34%);
}

.pin-mark {
  background: var(--green);
  border-radius: 50% 50% 50% 6px;
  transform: rotate(-45deg);
}

.pin-mark::after {
  content: "";
  position: absolute;
  inset: 10px;
  background: var(--white);
  border-radius: 999px;
}

.trust-row strong,
.trust-row span {
  display: block;
}

.trust-row strong {
  color: var(--navy);
  font-family: var(--font-display);
  font-size: 0.64rem;
  text-transform: uppercase;
}

.trust-row span {
  margin-top: 5px;
  color: var(--muted);
  font-family: var(--font-body);
  font-size: 0.68rem;
  line-height: 1.24;
}

.hero-art {
  position: relative;
  min-height: 440px;
}

.hero-art::before {
  content: "";
  position: absolute;
  top: 8px;
  right: -20px;
  width: min(750px, 96%);
  height: 430px;
  border-radius: 38px;
  background:
    radial-gradient(circle at 82% 18%, rgba(255, 210, 31, 0.48) 0 16%, transparent 17%),
    linear-gradient(135deg, rgba(255, 255, 255, 0.44), rgba(255, 255, 255, 0.08));
  filter: blur(1px);
  transform: rotate(1.3deg);
  z-index: 1;
  pointer-events: none;
}

.hero-art::after {
  content: none;
}

.hero-jumper {
  position: absolute;
  inset: 34px 0 auto auto;
  width: min(720px, 94%);
  aspect-ratio: 16 / 10;
  object-fit: cover;
  border: 8px solid rgba(255, 255, 255, 0.96);
  border-radius: 30px;
  box-shadow:
    0 26px 42px rgba(7, 30, 85, 0.28),
    0 0 0 2px rgba(255, 210, 31, 0.42);
  transform: rotate(1deg);
  z-index: 2;
  filter: saturate(1.08) contrast(1.05);
}

.hero-mascot {
  position: absolute;
  left: -8px;
  top: auto;
  bottom: -72px;
  width: 548px;
  max-width: 68%;
  filter: drop-shadow(0 28px 34px rgba(7, 30, 85, 0.3));
  animation: mascotBob 3.8s ease-in-out infinite;
  z-index: 3;
}

@media (min-width: 981px) {
  .hero-mascot {
    left: -240px;
    bottom: -92px;
    width: 470px;
    max-width: none;
  }
}

@keyframes mascotBob {
  50% {
    transform: translateY(-10px) rotate(-1deg);
  }
}

.hero-badge {
  position: absolute;
  right: 16px;
  bottom: 58px;
  width: min(310px, 64%);
  padding: 15px 22px;
  color: var(--white);
  background: var(--red);
  border: 6px solid var(--yellow);
  border-radius: 24px;
  box-shadow: var(--shadow);
  transform: rotate(-5deg);
  text-transform: uppercase;
  z-index: 5;
}

.hero-badge span,
.hero-badge strong {
  font-family: var(--font-display);
  display: block;
}

.hero-badge span {
  font-size: 0.86rem;
}

.hero-badge strong {
  color: var(--yellow);
  font-size: clamp(1.8rem, 3.4vw, 3rem);
  line-height: 0.9;
}

.section-wave-bottom::before,
.section-wave-bottom::after,
.section-wave-top::before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  height: 120px;
  pointer-events: none;
  z-index: 2;
}

.section-wave-bottom::before {
  content: none;
}

.section-wave-bottom::after {
  bottom: -92px;
  height: 265px;
  background-color: transparent;
  background-image: url("assets/img/hero-cloud-gpt.png");
  background-repeat: no-repeat;
  background-position: center bottom;
  background-size: 100% 100%;
  filter: drop-shadow(0 -10px 20px rgba(7, 30, 85, 0.06));
  clip-path: none;
  z-index: 6;
}

.services,
.packages {
  position: relative;
  padding: 34px 0 86px;
}

.services {
  z-index: 0;
  width: 100%;
  max-width: none;
  margin-top: 0;
  padding: 126px max(16px, calc((100vw - 1180px) / 2)) 92px;
  background:
    radial-gradient(circle at 7% 20%, rgba(255,255,255,0.56) 0 9%, transparent 10%),
    radial-gradient(circle at 96% 72%, rgba(255,255,255,0.4) 0 11%, transparent 12%),
    var(--yellow);
}

.services .section-heading h2,
.services .section-heading p {
  color: #121a36;
}

.services .mini-rule {
  background: var(--red);
}

.section-heading {
  position: relative;
  z-index: 1;
  max-width: 820px;
  margin: 0 auto 34px;
  text-align: center;
}

.section-heading p {
  margin: 8px 0 10px;
  color: var(--navy);
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 800;
  text-transform: uppercase;
}

.section-heading h2,
.why-inner h2,
.final-cta h2,
.modal-panel h2 {
  font-size: clamp(2rem, 4.2vw, 3.8rem);
}

.mini-rule {
  display: inline-block;
  width: 72px;
  height: 6px;
  background: var(--yellow);
  border-radius: 999px;
}

.mini-rule.red {
  background: var(--red);
}

.service-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}

.service-card {
  min-height: 330px;
  padding: 12px 12px 18px;
  background: var(--white);
  border: 3px solid rgba(255, 210, 31, 0.8);
  border-radius: 22px;
  box-shadow: 0 16px 30px rgba(7, 30, 85, 0.12);
  text-align: center;
  transition: transform 190ms ease, box-shadow 190ms ease;
}

.service-card:hover {
  transform: translateY(-6px) rotate(-0.6deg);
  box-shadow: 0 24px 42px rgba(7, 30, 85, 0.18);
}

.service-carousel {
  position: relative;
  width: 100%;
  aspect-ratio: 1 / 0.78;
  overflow: hidden;
  border-radius: 16px;
  background: #eef6ff;
  isolation: isolate;
}

.service-carousel img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0;
  transform: scale(1.04);
  transition: opacity 650ms ease, transform 1600ms ease;
}

.service-carousel img.is-active {
  opacity: 1;
  transform: scale(1);
}

.service-card h3 {
  margin: 16px 0 8px;
  color: var(--navy);
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 1rem;
  text-transform: uppercase;
}

.service-card p,
.package-card p,
.why-grid p,
.site-footer p {
  margin: 0;
  color: var(--muted);
  font-family: var(--font-body);
  font-size: 0.94rem;
  line-height: 1.48;
}

.why-band {
  position: relative;
  background: linear-gradient(115deg, #00a987 0%, #0783de 100%);
  padding: 76px 0;
  overflow: hidden;
}

.why-band::before,
.why-band::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  height: 86px;
  background: var(--yellow);
}

.why-band::before {
  top: -1px;
  clip-path: polygon(0 0, 100% 0, 100% 48%, 84% 32%, 68% 50%, 51% 34%, 33% 52%, 16% 36%, 0 54%);
}

.why-band::after {
  bottom: -1px;
  clip-path: polygon(0 50%, 16% 36%, 31% 56%, 48% 38%, 66% 54%, 83% 34%, 100% 52%, 100% 100%, 0 100%);
}

.why-inner {
  color: var(--white);
  text-align: center;
}

.why-inner h2 {
  color: var(--white);
  margin-bottom: 34px;
}

.why-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}

.why-grid div {
  padding: 26px 20px;
  background: rgba(255, 255, 255, 0.14);
  border: 1px solid rgba(255, 255, 255, 0.32);
  border-radius: 20px;
  backdrop-filter: blur(8px);
}

.why-grid strong {
  display: block;
  color: var(--yellow);
  margin-bottom: 10px;
  text-transform: uppercase;
}

.why-grid p {
  color: rgba(255, 255, 255, 0.88);
}

.package-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.package-card {
  position: relative;
  min-height: 285px;
  padding: 28px;
  overflow: hidden;
  background: var(--white);
  border-radius: 24px;
  border: 4px solid var(--blue);
  box-shadow: var(--shadow);
}

.package-card::before {
  content: "";
  position: absolute;
  width: 160px;
  height: 160px;
  right: -50px;
  top: -50px;
  background-image: radial-gradient(currentColor 2px, transparent 2px);
  background-size: 14px 14px;
  opacity: 0.23;
}

.package-card span {
  color: var(--red);
  font-family: var(--font-display);
  font-size: 1.24rem;
  font-weight: 800;
  text-transform: uppercase;
}

.package-card h3 {
  margin: 10px 0 12px;
  color: var(--navy);
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 2rem;
  line-height: 1;
  text-transform: uppercase;
}

.package-card p {
  min-height: 66px;
  margin-bottom: 22px;
}

.accent-red {
  border-color: var(--red);
  color: var(--red);
}

.accent-blue {
  border-color: var(--blue);
  color: var(--blue);
}

.accent-green {
  border-color: var(--green);
  color: var(--green);
}

.accent-yellow {
  border-color: var(--yellow);
  color: var(--yellow);
}

.gallery {
  position: relative;
  width: 100%;
  padding: 125px max(16px, calc((100vw - 1180px) / 2)) 18px;
  background: #08255d;
}

.section-wave-top::before {
  top: -1px;
  clip-path: polygon(0 0, 100% 0, 100% 44%, 85% 58%, 70% 41%, 54% 60%, 38% 43%, 21% 58%, 0 40%);
}

.section-heading.light p,
.section-heading.light h2 {
  color: var(--white);
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
}

.gallery-grid img {
  width: 100%;
  aspect-ratio: 0.86 / 1;
  object-fit: cover;
  border: 4px solid rgba(255, 210, 31, 0.84);
  border-radius: 22px;
  box-shadow: 0 18px 30px rgba(0, 0, 0, 0.22);
}

.final-cta {
  position: relative;
  width: 100%;
  max-width: none;
  min-height: 126px;
  display: grid;
  grid-template-columns: minmax(320px, 620px) auto;
  align-items: center;
  gap: 24px;
  margin: -2px 0 0;
  padding: 18px max(20px, calc((100vw - 1180px) / 2)) 18px max(260px, calc((100vw - 1180px) / 2 + 245px));
  color: var(--white);
  background:
    radial-gradient(circle at 8px 8px, rgba(255, 255, 255, 0.22) 0 2px, transparent 2.5px) 0 0 / 18px 18px,
    linear-gradient(90deg, #ed2329 0%, #f32727 58%, #ed2329 100%);
  border-bottom: 8px solid var(--yellow);
  border-radius: 0;
  overflow: visible;
  clip-path: inset(-90px 0 0 0);
}

.final-cta img {
  position: absolute;
  left: max(18px, calc((100vw - 1180px) / 2 + 2px));
  bottom: -18px;
  z-index: 2;
  width: 210px;
  filter: drop-shadow(0 18px 18px rgba(7, 30, 85, 0.32));
}

.final-cta > div,
.final-actions {
  position: relative;
  z-index: 3;
}

.final-cta p {
  margin: 0 0 2px;
  color: var(--yellow);
  font-family: var(--font-display);
  font-weight: 800;
  text-transform: uppercase;
  line-height: 1;
}

.final-cta h2 {
  color: var(--white);
  max-width: 620px;
  font-size: clamp(1.45rem, 2.6vw, 2.5rem);
  line-height: 0.88;
  text-shadow: 0 4px 0 rgba(7, 30, 85, 0.12);
}

.final-actions {
  justify-content: flex-end;
}

.final-actions .btn {
  min-height: 44px;
  padding-inline: 24px;
  border-radius: 12px;
}

.site-footer {
  display: grid;
  grid-template-columns: 1.2fr 1fr 1fr;
  gap: 28px;
  padding: 48px 0;
}

.site-footer img {
  width: 220px;
  margin-bottom: 12px;
  background: var(--white);
  border-radius: 18px;
}

.site-footer strong,
.site-footer a {
  display: block;
}

.site-footer strong {
  margin-bottom: 12px;
  color: var(--navy);
  font-family: var(--font-display);
  text-transform: uppercase;
}

.site-footer a {
  margin-bottom: 8px;
  color: var(--blue);
  font-weight: 900;
}

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

.modal.is-open {
  display: grid;
}

.modal-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(4, 16, 43, 0.72);
  backdrop-filter: blur(6px);
}

.modal-panel {
  position: relative;
  width: min(760px, 100%);
  max-height: min(860px, calc(100dvh - 40px));
  overflow: auto;
  padding: 34px;
  background: var(--white);
  border: 6px solid var(--yellow);
  border-radius: 30px;
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.35);
}

.package-panel {
  width: min(980px, 100%);
}

.modal-close {
  position: absolute;
  top: 18px;
  right: 18px;
  width: 42px;
  height: 42px;
  border: 0;
  border-radius: 999px;
  color: var(--white);
  background: var(--red);
  cursor: pointer;
  font-size: 2rem;
  line-height: 1;
}

.package-options {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
  margin-top: 24px;
}

.option-card {
  padding: 20px;
  border: 2px solid #e5e9f2;
  border-radius: 18px;
  background: #fffdf7;
}

.option-card strong {
  display: block;
  color: var(--navy);
  font-size: 1.15rem;
  text-transform: uppercase;
}

.option-card ul {
  padding-left: 18px;
  margin: 12px 0 16px;
  color: var(--muted);
  font-family: var(--font-body);
  line-height: 1.5;
}

.option-card .price {
  color: var(--red);
  font-size: 1.9rem;
  font-weight: 950;
}

form {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
  margin-top: 24px;
}

label {
  display: grid;
  gap: 7px;
  color: var(--navy);
  font-family: var(--font-display);
  font-size: 0.84rem;
  font-weight: 800;
  text-transform: uppercase;
}

input,
textarea {
  width: 100%;
  border: 2px solid #d9e1ef;
  border-radius: 14px;
  padding: 14px 15px;
  color: var(--ink);
  font-family: var(--font-body);
  font-weight: 700;
  background: #f8fbff;
  outline: 0;
}

input:focus,
textarea:focus {
  border-color: var(--blue);
  box-shadow: 0 0 0 4px rgba(8, 105, 216, 0.12);
}

.full {
  grid-column: 1 / -1;
}

.form-error {
  min-height: 20px;
  margin: 0;
  color: var(--red);
  font-family: var(--font-body);
  font-weight: 700;
}

.form-success {
  min-height: 20px;
  margin: 0;
  color: #16a34a;
  font-family: var(--font-body);
  font-weight: 700;
}

.basic-packages-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  margin-bottom: 10px;
  position: relative;
  z-index: 1;
}

.price-disclaimer {
  text-align: center;
  margin: 0 auto 30px;
  color: var(--red);
  font-family: var(--font-body);
  font-size: 0.8rem;
  font-weight: 700;
  max-width: 700px;
  position: relative;
  z-index: 1;
}

.tents-subtitle-wrapper {
  text-align: center;
  margin: 60px auto 30px;
  position: relative;
  z-index: 1;
}

.tents-subtitle-wrapper h3 {
  color: var(--navy);
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(1.5rem, 3vw, 2.4rem);
  text-transform: uppercase;
  margin-top: 10px;
}

.tents-packages-container {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.tents-row-1,
.tents-row-2 {
  display: flex;
  justify-content: center;
  gap: 20px;
}

.tents-row-1 .package-card,
.tents-row-2 .package-card {
  width: 100%;
  max-width: 380px;
}

/* Reviews Section */
.reviews-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  position: relative;
  z-index: 1;
  margin-top: 34px;
  margin-bottom: 50px;
}

.review-card {
  background: rgba(255, 255, 255, 0.07);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 20px;
  padding: 24px;
  backdrop-filter: blur(8px);
  text-align: left;
  transition: transform 200ms ease, box-shadow 200ms ease;
}

.review-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.25);
  background: rgba(255, 255, 255, 0.1);
}

.review-header {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 16px;
}

.review-avatar {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: var(--yellow);
  color: var(--navy);
  font-family: var(--font-display);
  font-weight: 800;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.94rem;
}

.review-author {
  display: flex;
  flex-direction: column;
}

.review-author strong {
  color: var(--white);
  font-family: var(--font-display);
  font-size: 0.96rem;
}

.review-stars {
  color: var(--yellow);
  font-size: 0.9rem;
  letter-spacing: 2px;
}

.review-text {
  color: rgba(255, 255, 255, 0.88);
  font-family: var(--font-body);
  font-size: 0.94rem;
  line-height: 1.5;
  margin: 0;
  font-style: italic;
}

/* Decorative Dots Margins */
.packages::after {
  content: "";
  position: absolute;
  top: 10%;
  bottom: 10%;
  left: 0;
  right: 0;
  z-index: 0;
  pointer-events: none;
  background-image:
    radial-gradient(rgba(237, 35, 41, 0.22) 2px, transparent 2.5px),
    radial-gradient(rgba(8, 105, 216, 0.22) 2px, transparent 2.5px);
  background-size: 24px 24px;
  background-position: 0 0, 12px 12px;
  mask-image: linear-gradient(to right, #000 0%, transparent 15%, transparent 85%, #000 100%);
  -webkit-mask-image: linear-gradient(to right, #000 0%, transparent 15%, transparent 85%, #000 100%);
}

@media (max-width: 980px) {
  .nav-shell {
    width: min(100% - 28px, 1180px);
    grid-template-columns: 170px 1fr;
    min-height: 72px;
  }

  .nav-links {
    display: none;
  }

  .nav-actions {
    justify-self: end;
  }

  .brand img {
    width: 184px;
  }

  .hero-inner,
  .why-grid,
  .package-grid,
  .site-footer,
  .final-cta {
    grid-template-columns: 1fr;
  }

  .hero {
    padding-top: 44px;
  }

  .hero-inner {
    gap: 10px;
  }

  .hero-art {
    min-height: 480px;
  }

  .trust-row,
  .service-grid,
  .reviews-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .basic-packages-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .tents-row-1,
  .tents-row-2 {
    flex-wrap: wrap;
  }

  .final-actions {
    justify-content: flex-start;
  }

  .final-cta {
    grid-template-columns: minmax(260px, 1fr) auto;
    min-height: 136px;
    padding: 18px 24px 18px 170px;
  }

  .final-cta img {
    left: 10px;
    bottom: -14px;
    width: 146px;
  }

  .final-actions {
    grid-column: 1 / -1;
    justify-content: center;
  }
}

@media (max-width: 640px) {
  .nav-shell {
    width: min(100% - 18px, 1180px);
    min-height: 66px;
    grid-template-columns: 142px 1fr;
    gap: 10px;
  }

  .brand img {
    width: 138px;
  }

  .nav-actions {
    gap: 8px;
  }

  .lang-toggle {
    border-radius: 8px;
    padding: 2px;
  }

  .lang-toggle button {
    font-size: 0.7rem;
    padding: 5px 9px;
    border-radius: 6px;
  }

  .call-pill {
    min-height: 40px;
    padding: 0 11px;
    border-radius: 10px;
    font-size: 0.68rem;
  }

  .hero {
    min-height: auto;
    padding: 28px 0 98px;
  }

  .hero-inner {
    width: min(100% - 28px, 1800px);
    gap: 0;
  }

  .hero h1 {
    font-size: clamp(2.65rem, 12.8vw, 3rem);
  }

  .hero-text {
    margin-bottom: 16px;
  }

  .hero-actions .btn,
  .final-actions .btn {
    width: 100%;
  }

  .final-cta {
    grid-template-columns: 1fr;
    gap: 10px;
    min-height: 154px;
    padding: 14px 14px 16px 112px;
    text-align: left;
  }

  .final-cta img {
    left: -22px;
    bottom: -10px;
    width: 124px;
  }

  .final-cta p {
    font-size: 0.78rem;
  }

  .final-cta h2 {
    font-size: clamp(1.22rem, 6.5vw, 1.76rem);
  }

  .final-actions {
    grid-column: 1 / -1;
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px;
  }

  .final-actions .btn {
    min-height: 42px;
    padding-inline: 10px;
    font-size: 0.78rem;
  }

  .trust-row,
  .package-options,
  form {
    grid-template-columns: 1fr;
  }

  .basic-packages-grid {
    grid-template-columns: repeat(2, 1fr) !important;
    gap: 12px;
  }

  .reviews-grid {
    display: flex;
    grid-template-columns: none;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    scroll-behavior: smooth;
    gap: 16px;
    padding-bottom: 12px;
    margin-bottom: 24px;
    scrollbar-width: none;
    -ms-overflow-style: none;
  }

  .reviews-grid::-webkit-scrollbar {
    display: none;
  }

  .review-card {
    flex: 0 0 calc(100% - 24px);
    scroll-snap-align: center;
    min-height: auto;
  }

  .package-card {
    min-height: auto;
    padding: 16px;
  }

  .package-card h3 {
    font-size: 1.15rem;
    margin: 8px 0;
  }

  .package-card p {
    font-size: 0.78rem;
    min-height: auto;
    margin-bottom: 14px;
  }

  .package-card span {
    font-size: 1rem;
  }

  .package-card .btn {
    min-height: 38px;
    font-size: 0.72rem;
    padding: 0 10px;
    border-radius: 8px;
  }

  .tents-row-1,
  .tents-row-2 {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
    width: 100%;
  }

  .tents-row-2 .package-card:last-child {
    grid-column: 1 / -1;
    justify-self: center;
    width: 100%;
    max-width: 100%;
  }

  .service-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 12px;
  }

  .hero-art {
    min-height: 660px;
    margin-top: 0;
  }

  .hero-art::before {
    top: 16px;
    right: -10px;
    width: 100%;
    height: 250px;
    border-radius: 24px;
    transform: rotate(0.8deg);
  }

  .hero-jumper {
    top: 20px;
    right: 0;
    width: 100%;
    aspect-ratio: 1.16 / 0.72;
    border-width: 5px;
    border-radius: 22px;
    transform: rotate(0.6deg);
  }

  .hero-mascot {
    left: -52px;
    top: 358px;
    width: 400px;
    max-width: 104%;
  }

  .hero-badge {
    top: 184px;
    right: -2px;
    bottom: auto;
    width: min(270px, 78%);
    padding: 11px 16px;
    border-width: 5px;
    border-radius: 20px;
  }

  .hero-badge span {
    font-size: 0.72rem;
  }

  .hero-badge strong {
    font-size: clamp(1.58rem, 8.8vw, 2.2rem);
  }

  .section-wave-bottom::after {
    bottom: -6px;
    height: 132px;
    background-image: url("assets/img/hero-cloud-mobile.png");
  }

  .section-wave-bottom::before {
    content: none;
  }

  .services {
    padding-top: 84px;
  }

  .services,
  .packages {
    padding-bottom: 60px;
  }

  .service-card {
    min-height: auto;
    padding: 8px 8px 12px;
    border-width: 2px;
    border-radius: 17px;
  }

  .service-carousel {
    border-radius: 13px;
  }

  .service-card h3 {
    margin: 10px 0 5px;
    font-size: 0.82rem;
    line-height: 1;
  }

  .service-card p {
    font-size: 0.75rem;
    line-height: 1.28;
  }

  .modal-panel {
    padding: 26px 18px;
    border-radius: 22px;
  }
}
