*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

:root {
  --green-900: #0A2E1A;
  --green-800: #0D5E2A;
  --green-700: #1A7A3C;
  --green-600: #2D9E4A;
  --green-500: #4CAF50;
  --green-400: #5BBD2E;
  --green-300: #81C784;
  --green-200: #A5D6A7;
  --green-100: #E8F5E9;
  --gold-600: #C9953A;
  --gold-500: #D4A855;
  --gold-400: #E0C07A;
  --gold-300: #ECD8A0;
  --gold-100: #FFF8E1;
  --dark: #1A1A2E;
  --dark-2: #22223A;
  --dark-3: #2D3A3A;
  --light: #F5F7F0;
  --white: #FFFFFF;
  --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.06);
  --shadow-md: 0 8px 30px rgba(0, 0, 0, 0.08);
  --shadow-lg: 0 20px 60px rgba(0, 0, 0, 0.12);
  --radius-sm: 8px;
  --radius-md: 16px;
  --radius-lg: 24px;
  --max-width: 1200px;
  --header-h: 72px;
  --font-sans: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', system-ui, sans-serif;
  --font-display: 'Playfair Display', 'Georgia', serif;
  --ease-out: cubic-bezier(0.22, 1, 0.36, 1);
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: var(--font-sans);
  background: var(--light);
  color: var(--dark-3);
  line-height: 1.7;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

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

a {
  color: var(--green-700);
  text-decoration: none;
  transition: color 0.3s var(--ease-out);
}
a:hover {
  color: var(--green-500);
}

.container {
  width: 100%;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 24px;
}

/* ─── Header ─── */
.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  height: var(--header-h);
  display: flex;
  align-items: center;
  transition: background 0.4s var(--ease-out), box-shadow 0.4s var(--ease-out);
  background: transparent;
}
.header.scrolled {
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  box-shadow: var(--shadow-sm);
}
.header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
}
.header__logo {
  display: flex;
  align-items: center;
  gap: 12px;
  font-family: var(--font-display);
  font-size: 1.35rem;
  font-weight: 700;
  color: var(--white);
  text-decoration: none;
  transition: color 0.3s var(--ease-out);
  letter-spacing: -0.5px;
}
.header.scrolled .header__logo {
  color: var(--green-800);
}
.header__logo-icon {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--green-400), var(--green-700));
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  color: var(--white);
  flex-shrink: 0;
}

.nav {
  display: flex;
  align-items: center;
  gap: 4px;
}
.nav__link {
  padding: 8px 16px;
  border-radius: 8px;
  font-size: 0.875rem;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.85);
  text-decoration: none;
  transition: background 0.3s var(--ease-out), color 0.3s var(--ease-out);
  position: relative;
}
.nav__link:hover,
.nav__link.active {
  background: rgba(255, 255, 255, 0.12);
  color: var(--white);
}
.header.scrolled .nav__link {
  color: var(--dark-3);
}
.header.scrolled .nav__link:hover,
.header.scrolled .nav__link.active {
  background: var(--green-100);
  color: var(--green-800);
}
.nav__link--cta {
  background: var(--gold-500) !important;
  color: var(--white) !important;
  padding: 8px 20px;
  font-weight: 600;
}
.nav__link--cta:hover {
  background: var(--gold-600) !important;
  transform: translateY(-1px);
}

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
  z-index: 1001;
}
.hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: transform 0.3s var(--ease-out), opacity 0.3s var(--ease-out);
}
.header.scrolled .hamburger span {
  background: var(--dark-3);
}
.hamburger.open span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}
.hamburger.open span:nth-child(2) {
  opacity: 0;
}
.hamburger.open span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

/* ─── Hero ─── */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  position: relative;
  background: linear-gradient(135deg, #0A2E1A 0%, #1A7A3C 40%, #0D5E2A 100%);
  overflow: hidden;
}
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.03'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
  opacity: 0.5;
}
.hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 0%, rgba(10, 46, 26, 0.6) 100%);
}
.hero__content {
  position: relative;
  z-index: 2;
  max-width: 720px;
  text-align: center;
}
.hero__content .hero__text {
  margin-left: auto;
  margin-right: auto;
}
.hero__content .hero__actions {
  justify-content: center;
}
.hero__logo {
  margin-bottom: 64px;
  text-align: center;
}
.hero__logo-img {
  display: block;
  width: 100%;
  max-width: 720px;
  height: auto;
  margin: 0 auto;
  filter: drop-shadow(0 4px 20px rgba(0, 0, 0, 0.25));
}

.hero__badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(255, 255, 255, 0.15);
  padding: 6px 16px;
  border-radius: 100px;
  font-size: 0.8rem;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 24px;
}
.hero__badge-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--green-400);
  animation: pulse-dot 2s ease-in-out infinite;
}
@keyframes pulse-dot {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.6; transform: scale(0.8); }
}
.hero__title {
  font-family: var(--font-display);
  font-size: clamp(2.5rem, 6vw, 4.2rem);
  font-weight: 700;
  color: var(--white);
  line-height: 1.15;
  letter-spacing: -1px;
  margin-bottom: 20px;
}
.hero__title span {
  background: linear-gradient(135deg, var(--gold-300), var(--gold-500));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.hero__text {
  font-size: 1.125rem;
  color: rgba(255, 255, 255, 0.8);
  line-height: 1.8;
  margin-bottom: 36px;
  max-width: 600px;
}
.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 32px;
  border-radius: var(--radius-sm);
  font-family: var(--font-sans);
  font-size: 0.9rem;
  font-weight: 600;
  text-decoration: none;
  border: none;
  cursor: pointer;
  transition: all 0.3s var(--ease-out);
}
.btn--primary {
  background: var(--gold-500);
  color: var(--white);
}
.btn--primary:hover {
  background: var(--gold-600);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(201, 149, 58, 0.35);
}
.btn--outline {
  background: transparent;
  color: var(--white);
  border: 2px solid rgba(255, 255, 255, 0.3);
}
.btn--outline:hover {
  border-color: var(--white);
  background: rgba(255, 255, 255, 0.08);
  transform: translateY(-2px);
}

.hero__scroll {
  position: absolute;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  color: rgba(255, 255, 255, 0.5);
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 2px;
  text-transform: uppercase;
  animation: float 2.5s var(--ease-out) infinite;
}
.hero__scroll-line {
  width: 1px;
  height: 40px;
  background: linear-gradient(to bottom, rgba(255, 255, 255, 0.4), transparent);
}
@keyframes float {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50% { transform: translateX(-50%) translateY(8px); }
}

/* ─── Sections ─── */
.section {
  padding: 100px 0;
}
.section--dark {
  background: var(--dark);
  color: var(--white);
}
.section--green {
  background: var(--green-800);
  color: var(--white);
}
.section--light {
  background: var(--white);
}
.section--alt {
  background: var(--green-100);
}

.section__label {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.8rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--green-500);
  margin-bottom: 12px;
}
.section__label::before {
  content: '';
  width: 24px;
  height: 2px;
  background: var(--green-500);
}
.section__title {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  font-weight: 700;
  line-height: 1.25;
  letter-spacing: -0.5px;
  margin-bottom: 16px;
  color: var(--dark);
}
.section--dark .section__title,
.section--green .section__title {
  color: var(--white);
}
.section__sub {
  font-size: 1.05rem;
  color: #6B7A7A;
  max-width: 600px;
  line-height: 1.8;
}
.section--dark .section__sub,
.section--green .section__sub {
  color: rgba(255, 255, 255, 0.7);
}
.section__header {
  text-align: center;
  margin-bottom: 60px;
}
.section__header .section__sub {
  margin: 0 auto;
}

/* ─── Species Cards ─── */
.species-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 24px;
}

.species-card {
  background: var(--white);
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: all 0.5s var(--ease-out);
  cursor: pointer;
  border: 1px solid rgba(0, 0, 0, 0.04);
}
.species-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-lg);
}
.species-card__img {
  width: 100%;
  height: 220px;
  background: var(--green-100);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  position: relative;
}
.species-card__img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s var(--ease-out);
}
.species-card:hover .species-card__img img {
  transform: scale(1.05);
}
.species-card__img svg {
  width: 80px;
  height: 80px;
  opacity: 0.3;
  color: var(--green-700);
}
.species-card__body {
  padding: 24px;
}
.species-card__title {
  font-family: var(--font-display);
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 4px;
}
.species-card__sci-name {
  font-size: 0.8rem;
  font-style: italic;
  color: var(--green-500);
  margin-bottom: 12px;
}
.species-card__desc {
  font-size: 0.9rem;
  color: #6B7A7A;
  line-height: 1.7;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.species-card__tag {
  display: inline-block;
  margin-top: 12px;
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--green-700);
  background: var(--green-100);
  padding: 4px 12px;
  border-radius: 100px;
}
.species-card__expand {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.5s var(--ease-out), padding 0.5s var(--ease-out);
  padding: 0 24px;
}
.species-card.expanded .species-card__expand {
  max-height: 600px;
  padding: 0 24px 24px;
}
.species-card__expand p {
  font-size: 0.9rem;
  color: #6B7A7A;
  line-height: 1.8;
  border-top: 1px solid rgba(0, 0, 0, 0.06);
  padding-top: 16px;
}

/* ─── About ─── */
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}
.about-visual {
  position: relative;
}
.about-visual__main {
  width: 100%;
  aspect-ratio: 4/5;
  border-radius: var(--radius-lg);
  background: linear-gradient(135deg, var(--green-100), var(--green-300));
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}
.about-visual__main svg {
  width: 160px;
  height: 160px;
  opacity: 0.25;
  color: var(--green-700);
}
.about-visual__card {
  position: absolute;
  bottom: -20px;
  right: -20px;
  background: var(--white);
  padding: 20px 28px;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-md);
  display: flex;
  align-items: center;
  gap: 16px;
}
.about-visual__card-num {
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 700;
  color: var(--green-600);
  line-height: 1;
}
.about-visual__card-label {
  font-size: 0.8rem;
  color: var(--dark-3);
  line-height: 1.4;
}
.about-text h3 {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 16px;
  color: var(--dark);
}
.about-text p {
  margin-bottom: 16px;
  color: #6B7A7A;
}
.about-signature {
  margin-top: 24px;
  font-family: var(--font-display);
  font-size: 1.1rem;
  color: var(--green-700);
  font-style: italic;
}

/* ─── Booking / Pricing ─── */
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 24px;
  margin-top: 40px;
}
.pricing-card {
  background: var(--white);
  border-radius: var(--radius-md);
  padding: 36px 28px;
  text-align: center;
  box-shadow: var(--shadow-sm);
  border: 1px solid rgba(0, 0, 0, 0.04);
  transition: all 0.5s var(--ease-out);
  position: relative;
}
.pricing-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}
.pricing-card--featured {
  border: 2px solid var(--gold-500);
  transform: scale(1.02);
}
.pricing-card--featured:hover {
  transform: scale(1.02) translateY(-4px);
}
.pricing-card__badge {
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--gold-500);
  color: var(--white);
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  padding: 4px 16px;
  border-radius: 100px;
}
.pricing-card__icon {
  width: 56px;
  height: 56px;
  margin: 0 auto 16px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
}
.pricing-card__icon--green {
  background: var(--green-100);
  color: var(--green-700);
}
.pricing-card__icon--gold {
  background: var(--gold-100);
  color: var(--gold-600);
}
.pricing-card__name {
  font-family: var(--font-display);
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 4px;
}
.pricing-card__price {
  font-size: 2.5rem;
  font-weight: 800;
  color: var(--green-800);
  line-height: 1;
  margin: 16px 0 8px;
}
.pricing-card__price span {
  font-size: 1rem;
  font-weight: 500;
  color: #6B7A7A;
}
.pricing-card__desc {
  font-size: 0.85rem;
  color: #6B7A7A;
  line-height: 1.7;
  margin-bottom: 20px;
}
.pricing-card .btn {
  width: 100%;
  justify-content: center;
}

/* ─── Tips ─── */
.tips-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 24px;
}
.tip-card {
  background: var(--white);
  border-radius: var(--radius-md);
  padding: 32px 28px;
  box-shadow: var(--shadow-sm);
  border: 1px solid rgba(0, 0, 0, 0.04);
  transition: all 0.4s var(--ease-out);
}
.tip-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}
.tip-card__num {
  font-family: var(--font-display);
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--green-200);
  line-height: 1;
  margin-bottom: 12px;
}
.tip-card h4 {
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 8px;
}
.tip-card p {
  font-size: 0.9rem;
  color: #6B7A7A;
  line-height: 1.7;
}

/* ─── Status ─── */
.status-box {
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--radius-md);
  padding: 40px;
  text-align: center;
  max-width: 700px;
  margin: 0 auto;
}
.status-box__date {
  font-size: 0.85rem;
  color: var(--gold-400);
  font-weight: 600;
  margin-bottom: 12px;
}
.status-box h3 {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 12px;
}
.status-box p {
  color: rgba(255, 255, 255, 0.7);
  line-height: 1.8;
}

/* ─── Contact ─── */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
}
.contact-info h3 {
  font-family: var(--font-display);
  font-size: 1.4rem;
  font-weight: 700;
  margin-bottom: 16px;
  color: var(--dark);
}
.contact-info p {
  color: #6B7A7A;
  margin-bottom: 24px;
  line-height: 1.8;
}
.contact-info__item {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 12px;
  font-size: 0.9rem;
  color: var(--dark-3);
}
.contact-info__item-icon {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--green-100);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--green-700);
  flex-shrink: 0;
  font-size: 0.9rem;
}

.form {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.form__group {
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.form__group label {
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--dark-3);
  text-transform: uppercase;
  letter-spacing: 1px;
}
.form__group input,
.form__group select,
.form__group textarea {
  padding: 12px 16px;
  border: 2px solid rgba(0, 0, 0, 0.06);
  border-radius: var(--radius-sm);
  font-family: var(--font-sans);
  font-size: 0.9rem;
  background: var(--white);
  transition: border-color 0.3s var(--ease-out);
  outline: none;
}
.form__group input:focus,
.form__group select:focus,
.form__group textarea:focus {
  border-color: var(--green-500);
}
.form__group textarea {
  min-height: 120px;
  resize: vertical;
}
.form__checkbox {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 0.85rem;
  color: #6B7A7A;
}
.form__checkbox input {
  margin-top: 4px;
  accent-color: var(--green-500);
}

/* ─── Footer ─── */
.footer {
  background: var(--dark);
  color: rgba(255, 255, 255, 0.6);
  padding: 48px 0;
  text-align: center;
}
.footer__inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 24px;
}
.footer__links {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 8px 24px;
}
.footer__links a {
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.85rem;
  transition: color 0.3s var(--ease-out);
}
.footer__links a:hover {
  color: var(--white);
}
.footer__divider {
  width: 60px;
  height: 1px;
  background: rgba(255, 255, 255, 0.15);
}
.footer__copy {
  font-size: 0.8rem;
}

/* ─── Newsletter Popup ─── */
.popup-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.5);
  backdrop-filter: blur(4px);
  z-index: 2000;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 24px;
}
.popup-overlay.open {
  display: flex;
}
.popup {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 40px;
  max-width: 480px;
  width: 100%;
  position: relative;
  animation: popup-in 0.4s var(--ease-out);
}
@keyframes popup-in {
  from {
    opacity: 0;
    transform: scale(0.95) translateY(10px);
  }
  to {
    opacity: 1;
    transform: scale(1) translateY(0);
  }
}
.popup__close {
  position: absolute;
  top: 16px;
  right: 16px;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  border: none;
  background: var(--green-100);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  color: var(--dark-3);
  transition: background 0.3s var(--ease-out);
}
.popup__close:hover {
  background: var(--green-200);
}
.popup h3 {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 8px;
}
.popup p {
  color: #6B7A7A;
  font-size: 0.9rem;
  margin-bottom: 24px;
  line-height: 1.7;
}

/* ─── Mobile Nav ─── */
.mobile-nav {
  position: fixed;
  inset: 0;
  background: var(--dark);
  z-index: 999;
  display: none;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 8px;
}
.mobile-nav.open {
  display: flex;
}
.mobile-nav a {
  font-size: 1.2rem;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.7);
  padding: 12px 24px;
  text-decoration: none;
  transition: color 0.3s var(--ease-out);
}
.mobile-nav a:hover {
  color: var(--white);
}

/* ─── AOS-like animations ─── */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.7s var(--ease-out), transform 0.7s var(--ease-out);
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ─── Responsive ─── */
@media (max-width: 768px) {
  .nav {
    display: none;
  }
  .hamburger {
    display: flex;
  }
  .about-grid,
  .contact-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .about-visual__card {
    bottom: -16px;
    right: -16px;
  }
  .section {
    padding: 60px 0;
  }
  .pricing-card--featured {
    transform: none;
  }
  .pricing-card--featured:hover {
    transform: translateY(-4px);
  }
  .hero__title {
    font-size: clamp(2rem, 8vw, 2.8rem);
  }
  .status-box {
    padding: 24px;
  }
}

@media (max-width: 480px) {
  .container {
    padding: 0 16px;
  }
  .hero__actions {
    flex-direction: column;
  }
  .hero__actions .btn {
    width: 100%;
    justify-content: center;
  }
  .pricing-grid {
    grid-template-columns: 1fr;
  }
  .tips-grid {
    grid-template-columns: 1fr;
  }
  .footer__links {
    flex-direction: column;
    gap: 12px;
  }
}
