/* ============================================================
   PT. Aurora Sentral Informatika — style.css
   ============================================================
   Untuk mengubah warna, font, dll cukup edit bagian :root di bawah
   ============================================================ */

/* ── GLOBAL VARIABLES ── */
:root {
  /* Warna Utama — ganti di sini untuk mengubah seluruh tema */
  --color-bg:        #f8f5f0;   /* Latar halaman utama */
  --color-bg-2:      #f2ede6;   /* Latar section berganti */
  --color-bg-3:      #ece5db;   /* Latar card / elemen */
  --color-dark:      #1a1612;   /* Teks & section gelap */
  --color-dark-2:    #3a322b;   /* Teks sekunder gelap */
  --color-dark-3:    #6b5f55;   /* Teks muted / caption */

  --color-primary:   #2a7c72;   /* Warna brand utama (teal) */
  --color-primary-l: #3d9b8f;   /* Shade terang primary */
  --color-primary-bg:#e6f3f1;   /* Latar pale primary */

  --color-accent:    #b08d57;   /* Aksen emas */
  --color-accent-l:  #c9a96e;   /* Shade terang aksen */

  --color-white:     #ffffff;
  --color-border:    rgba(26, 22, 18, 0.09);

  /* Tipografi */
  --font-display: 'Playfair Display', serif;   /* Font judul */
  --font-body:    'Plus Jakarta Sans', sans-serif; /* Font isi */

  /* Bayangan */
  --shadow-sm:  0 2px 24px rgba(26, 22, 18, 0.07);
  --shadow-lg:  0 8px 60px rgba(26, 22, 18, 0.12);

  /* Radius */
  --radius-sm:  8px;
  --radius-md:  14px;
  --radius-lg:  20px;
  --radius-xl:  28px;

  /* Spacing section */
  --section-pad: 100px;
}

/* ── RESET ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }

body {
  font-family: var(--font-body);
  background: var(--color-bg);
  color: var(--color-dark);
  overflow-x: hidden;
  line-height: 1.6;
}

/* Grain texture overlay */
body::before {
  content: '';
  position: fixed; inset: 0; z-index: 0; pointer-events: none;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.75' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='1'/%3E%3C/svg%3E");
  opacity: 0.028;
  mix-blend-mode: multiply;
}

.container {
  max-width: 1120px;
  margin: 0 auto;
  padding: 0 32px;
  position: relative;
  z-index: 2;
}

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

/* ── SCROLL REVEAL ── */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.65s ease, transform 0.65s ease;
}
.reveal.in {
  opacity: 1;
  transform: none;
}

/* ============================================================
   NAVIGATION
   ============================================================ */
.nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  padding: 20px 0;
  background: rgba(248, 245, 240, 0.88);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--color-border);
  transition: padding 0.3s;
}

.nav__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: 1120px;
  margin: 0 auto;
  padding: 0 32px;
}

/* Logo */
.nav__logo {
  display: flex;
  align-items: center;
  gap: 13px;
  text-decoration: none;
}

.nav__logo-mark {
  width: 44px; height: 44px;
  border-radius: 10px;
  background: transparent;
  display: flex; align-items: center; justify-content: center;
  overflow: hidden;
  flex-shrink: 0;
}

/* Jika logo adalah teks fallback */
.nav__logo-mark span {
  font-family: var(--font-display);
  font-weight: 700; font-size: 18px;
  color: var(--color-white);
}

/* Jika logo adalah gambar */
.nav__logo-mark img {
  width: 44px; height: 44px;
  object-fit: contain;
  border-radius: 0;
}

.nav__logo-text strong {
  display: block;
  font-size: 14px; font-weight: 600;
  color: var(--color-dark);
  line-height: 1.3;
}
.nav__logo-text span {
  font-size: 11px;
  color: var(--color-dark-3);
}

/* Nav links */
.nav__links {
  display: flex; gap: 36px; list-style: none;
}
.nav__links a {
  color: var(--color-dark-3); text-decoration: none;
  font-size: 14px; font-weight: 500;
  transition: color 0.2s;
}
.nav__links a:hover { color: var(--color-primary); }

/* CTA button */
.nav__cta {
  background: var(--color-primary);
  color: var(--color-white);
  padding: 10px 22px; border-radius: var(--radius-sm);
  text-decoration: none; font-size: 13px; font-weight: 600;
  display: flex; align-items: center; gap: 8px;
  transition: background 0.2s, transform 0.2s;
}
.nav__cta:hover {
  background: var(--color-primary-l);
  transform: translateY(-1px);
}
.nav__cta svg { flex-shrink: 0; }

/* Hamburger (mobile) */
.nav__hamburger {
  display: none;
  flex-direction: column; gap: 5px;
  background: none; border: none; cursor: pointer; padding: 4px;
}
.nav__hamburger span {
  display: block; width: 24px; height: 2px;
  background: var(--color-dark); border-radius: 2px;
  transition: all 0.3s;
}

/* ============================================================
   BUTTONS (reusable)
   ============================================================ */
.btn {
  display: inline-flex; align-items: center; gap: 9px;
  padding: 14px 30px; border-radius: 10px;
  font-family: var(--font-body); font-weight: 600; font-size: 15px;
  text-decoration: none; border: none; cursor: pointer;
  transition: background 0.2s, transform 0.2s, box-shadow 0.2s;
}

.btn--primary {
  background: var(--color-primary);
  color: var(--color-white);
  box-shadow: 0 4px 20px rgba(42, 124, 114, 0.25);
}
.btn--primary:hover {
  background: var(--color-primary-l);
  transform: translateY(-2px);
  box-shadow: 0 8px 32px rgba(42, 124, 114, 0.35);
}

.btn--ghost {
  background: transparent;
  border: 1.5px solid var(--color-border);
  color: var(--color-dark-2);
}
.btn--ghost:hover {
  border-color: var(--color-primary);
  background: var(--color-primary-bg);
}

.btn--wa {
  background: #25D366;
  color: var(--color-white);
  font-size: 17px; font-weight: 700;
  padding: 18px 32px; border-radius: var(--radius-md);
  box-shadow: 0 6px 32px rgba(37, 211, 102, 0.3);
}
.btn--wa:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 48px rgba(37, 211, 102, 0.4);
}
.btn--wa svg { width: 28px; height: 28px; fill: var(--color-white); flex-shrink: 0; }
.btn--wa .btn__text-sub { display: block; font-size: 12px; opacity: 0.8; font-weight: 400; }

/* ============================================================
   SECTION LABELS (reusable)
   ============================================================ */
.eyebrow {
  font-size: 11px; letter-spacing: 2px; text-transform: uppercase;
  color: var(--color-primary); font-weight: 600; margin-bottom: 14px;
  display: flex; align-items: center; gap: 10px;
}
.eyebrow::before {
  content: ''; width: 22px; height: 1px;
  background: var(--color-primary); flex-shrink: 0;
}
.eyebrow--gold { color: var(--color-accent-l); }
.eyebrow--gold::before { background: var(--color-accent-l); }

.section-title {
  font-family: var(--font-display);
  font-size: clamp(30px, 4vw, 46px);
  font-weight: 700; line-height: 1.1;
  letter-spacing: -0.5px; color: var(--color-dark); margin-bottom: 16px;
}
.section-title em { font-style: italic; color: var(--color-primary); }
.section-title--light { color: var(--color-white); }

.section-sub {
  font-size: 16px; color: var(--color-dark-3);
  line-height: 1.75; max-width: 520px;
}
.section-sub--light { color: rgba(255, 255, 255, 0.5); }

/* ============================================================
   HERO
   ============================================================ */
.hero {
  min-height: 100vh; display: flex; align-items: center;
  padding-top: 90px; position: relative; overflow: hidden;
}

/* Soft radial glow top-right */
.hero::after {
  content: '';
  position: absolute; top: -10%; right: -8%;
  width: 640px; height: 640px; border-radius: 50%;
  background: radial-gradient(circle, rgba(42,124,114,0.07) 0%, transparent 70%);
  pointer-events: none;
}

.hero__inner {
  display: grid; grid-template-columns: 1.1fr 0.9fr;
  gap: 80px; align-items: center;
  padding: 60px 0 80px;
}

.hero__eyebrow {
  display: inline-flex; align-items: center; gap: 10px;
  font-size: 12px; letter-spacing: 1.5px; text-transform: uppercase;
  color: var(--color-primary); font-weight: 600; margin-bottom: 22px;
}
.hero__eyebrow::before {
  content: ''; width: 28px; height: 1px; background: var(--color-primary);
}

.hero__title {
  font-family: var(--font-display);
  font-size: clamp(40px, 5.5vw, 68px);
  font-weight: 700; line-height: 1.08;
  letter-spacing: -1px; color: var(--color-dark);
  margin-bottom: 24px;
}
.hero__title em { font-style: italic; color: var(--color-primary); }

.hero__desc {
  font-size: 16px; color: var(--color-dark-3);
  line-height: 1.75; margin-bottom: 38px;
  max-width: 460px; font-weight: 400;
}

.hero__btns { display: flex; gap: 14px; flex-wrap: wrap; }

/* Hero visual / card */
.hero__visual {
  position: relative;
  display: flex; justify-content: center; align-items: center;
}

.hero__card {
  position: relative; width: 100%; max-width: 380px;
}

/* Floating decorative circles */
.hero__dot {
  position: absolute; border-radius: 50%;
  background: var(--color-primary-bg);
  border: 1px solid rgba(42, 124, 114, 0.15);
  pointer-events: none;
}
.hero__dot--1 { width: 80px; height: 80px; top: -30px; left: -30px; }
.hero__dot--2 {
  width: 50px; height: 50px; bottom: 60px; left: -40px;
  background: var(--color-bg-3); border-color: var(--color-border);
}

/* Card inner */
.card-preview {
  background: var(--color-white);
  border: 1px solid var(--color-border);
  border-radius: 24px; padding: 36px;
  box-shadow: var(--shadow-lg);
}

.card-preview__label {
  font-size: 11px; letter-spacing: 1.5px;
  text-transform: uppercase; color: var(--color-dark-3);
  margin-bottom: 20px; font-weight: 600;
}

.card-preview__speed-row {
  display: flex; align-items: flex-end; gap: 8px; margin-bottom: 6px;
}

.card-preview__num {
  font-family: var(--font-display);
  font-size: 72px; font-weight: 700;
  color: var(--color-primary); line-height: 1;
}

.card-preview__unit {
  font-size: 18px; color: var(--color-dark-3); margin-bottom: 12px;
}

.card-preview__name {
  font-size: 13px; color: var(--color-dark-3); margin-bottom: 28px;
}

.card-preview__price {
  font-family: var(--font-display);
  font-size: 22px; font-weight: 700; color: var(--color-dark);
}
.card-preview__price small {
  font-size: 13px; font-weight: 400;
  color: var(--color-dark-3);
  font-family: var(--font-body);
}

.card-preview__bar {
  height: 4px; border-radius: 2px;
  background: var(--color-bg-3); margin: 20px 0 0; overflow: hidden;
}
.card-preview__bar-fill {
  height: 100%; border-radius: 2px;
  background: linear-gradient(90deg, var(--color-primary), var(--color-primary-l));
  width: 50%;
  animation: barGrow 2s ease forwards;
}
@keyframes barGrow { from { width: 0; } to { width: 50%; } }

/* Floating stat badge */
.card-preview__badge {
  position: absolute; bottom: -20px; right: -20px;
  background: var(--color-accent);
  color: var(--color-white);
  border-radius: 16px; padding: 16px 20px;
  box-shadow: var(--shadow-lg);
  font-size: 13px; font-weight: 600;
  text-align: center;
  animation: floatY 5s ease-in-out infinite;
}
.card-preview__badge span {
  display: block;
  font-family: var(--font-display);
  font-size: 20px; font-weight: 700;
}
@keyframes floatY {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-10px); }
}

/* ============================================================
   STATS STRIP
   ============================================================ */
.stats {
  background: var(--color-dark);
  color: var(--color-white);
  padding: 48px 0;
  position: relative; z-index: 2;
}

.stats__inner {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}

.stats__item {
  text-align: center; padding: 0 32px;
  border-right: 1px solid rgba(255, 255, 255, 0.08);
}
.stats__item:last-child { border-right: none; }

.stats__num {
  font-family: var(--font-display);
  font-size: 42px; font-weight: 700;
  color: var(--color-white); line-height: 1;
}
.stats__num span { color: var(--color-accent-l); }

.stats__label {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.45);
  margin-top: 6px;
}

/* ============================================================
   PACKAGES SECTION
   ============================================================ */
.packages { background: var(--color-bg-2); padding: var(--section-pad) 0; }

.packages__header { margin-bottom: 52px; }

.packages__grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 14px;
}

.pkg {
  background: var(--color-white);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  padding: 28px 18px 22px;
  text-align: center; position: relative;
  transition: transform 0.3s, box-shadow 0.3s, border-color 0.3s;
}
.pkg:hover {
  transform: translateY(-6px);
  box-shadow: 0 16px 48px rgba(26, 22, 18, 0.1);
  border-color: rgba(42, 124, 114, 0.3);
}

/* Popular variant */
.pkg--popular {
  background: var(--color-primary);
  border-color: var(--color-primary);
  color: var(--color-white);
  box-shadow: 0 8px 40px rgba(42, 124, 114, 0.3);
}
.pkg--popular:hover {
  box-shadow: 0 16px 56px rgba(42, 124, 114, 0.4);
}

.pkg__badge {
  position: absolute; top: -11px; left: 50%; transform: translateX(-50%);
  background: var(--color-accent); color: var(--color-white);
  font-size: 10px; font-weight: 700; letter-spacing: 1px;
  text-transform: uppercase; padding: 4px 14px;
  border-radius: 100px; white-space: nowrap;
}

.pkg__name {
  font-size: 11px; letter-spacing: 1.5px;
  text-transform: uppercase; font-weight: 600;
  color: var(--color-dark-3); margin-bottom: 16px;
}
.pkg--popular .pkg__name { color: rgba(255, 255, 255, 0.7); }

.pkg__speed {
  font-family: var(--font-display);
  font-size: 48px; font-weight: 700; line-height: 1;
  color: var(--color-dark);
}
.pkg--popular .pkg__speed { color: var(--color-white); }

.pkg__unit {
  font-size: 13px; font-weight: 400; color: var(--color-dark-3);
}
.pkg--popular .pkg__unit { color: rgba(255, 255, 255, 0.65); }

.pkg__divider {
  width: 32px; height: 1px;
  background: var(--color-border); margin: 16px auto;
}
.pkg--popular .pkg__divider { background: rgba(255, 255, 255, 0.2); }

.pkg__price {
  font-family: var(--font-display);
  font-size: 18px; font-weight: 700; color: var(--color-primary);
}
.pkg--popular .pkg__price { color: var(--color-white); }

.pkg__per {
  font-size: 11px; color: var(--color-dark-3); margin-top: 2px;
}
.pkg--popular .pkg__per { color: rgba(255, 255, 255, 0.6); }

.pkg__btn {
  display: block; margin-top: 20px;
  border: 1.5px solid rgba(42, 124, 114, 0.25);
  color: var(--color-primary);
  padding: 9px 0; border-radius: var(--radius-sm);
  text-decoration: none; font-size: 13px; font-weight: 600;
  transition: background 0.2s, border-color 0.2s;
}
.pkg__btn:hover {
  background: var(--color-primary-bg);
  border-color: var(--color-primary);
}
.pkg--popular .pkg__btn {
  background: rgba(255, 255, 255, 0.18);
  border-color: rgba(255, 255, 255, 0.3);
  color: var(--color-white);
}
.pkg--popular .pkg__btn:hover { background: rgba(255, 255, 255, 0.28); }

/* ============================================================
   BENEFITS SECTION
   ============================================================ */
.benefits {
  background: var(--color-white);
  padding: var(--section-pad) 0;
}

.benefits__layout {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 60px; align-items: center;
}

.benefits__left { padding-top: 60px; }

.benefits__list {
  display: flex; flex-direction: column;
  margin-top: 40px;
}

.benefit-row {
  display: flex; gap: 20px;
  padding: 28px 0; border-bottom: 1px solid var(--color-border);
  align-items: flex-start;
}
.benefit-row:first-child { border-top: 1px solid var(--color-border); }

.benefit-row__num {
  font-family: var(--font-display);
  font-size: 13px; color: var(--color-primary);
  font-weight: 500; min-width: 28px; padding-top: 2px;
}

.benefit-row__title {
  display: block; font-size: 15px; font-weight: 600;
  color: var(--color-dark); margin-bottom: 5px;
}
.benefit-row__desc {
  font-size: 14px; color: var(--color-dark-3); line-height: 1.6;
}

/* Benefit visual card */
.benefits__right { position: relative; padding: 60px 0; }

.benefit-card {
  background: var(--color-bg-2);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-xl); padding: 44px 40px;
  position: relative; overflow: hidden;
}

/* Top accent line */
.benefit-card::before {
  content: '';
  position: absolute; top: 0; left: 0; right: 0; height: 3px;
  background: linear-gradient(90deg, var(--color-primary), var(--color-primary-l), var(--color-accent));
}

.benefit-card__icon {
  font-size: 56px; margin-bottom: 20px; display: block;
  /* Ganti dengan gambar: <img src="assets/images/icon-benefit.svg"> */
}

/* Jika menggunakan gambar untuk icon */
.benefit-card__icon img {
  width: 64px; height: 64px; object-fit: contain;
}

.benefit-card__title {
  font-family: var(--font-display);
  font-size: 24px; font-weight: 700;
  color: var(--color-dark); margin-bottom: 10px;
}

.benefit-card__desc {
  font-size: 14px; color: var(--color-dark-3); line-height: 1.7;
}

.benefit-card__tags {
  display: flex; flex-wrap: wrap; gap: 8px; margin-top: 24px;
}

.benefit-card__tag {
  background: var(--color-white);
  border: 1px solid var(--color-border);
  border-radius: 100px; padding: 6px 14px;
  font-size: 12px; font-weight: 600; color: var(--color-dark-2);
}

/* ============================================================
   ABOUT SECTION
   ============================================================ */
.about {
  background: var(--color-bg-2);
  padding: var(--section-pad) 0;
}

.about__grid {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 80px; align-items: start;
}

.about__left { padding-top: 60px; }

.about__text {
  font-size: 15px; color: var(--color-dark-3);
  line-height: 1.8; margin-bottom: 20px;
}
.about__text strong { color: var(--color-dark); }

/* APJII badge */
.apjii-pill {
  display: inline-flex; align-items: center; gap: 12px;
  background: var(--color-primary-bg);
  border: 1px solid rgba(42, 124, 114, 0.2);
  border-radius: 12px; padding: 14px 20px; margin-top: 12px;
}

.apjii-pill__icon { font-size: 22px; }

/* Gambar logo APJII — uncomment jika pakai gambar */
/* .apjii-pill__icon img { width: 32px; height: 32px; object-fit: contain; } */

.apjii-pill__label {
  font-size: 14px; font-weight: 600; color: var(--color-primary);
  display: block;
}
.apjii-pill__sub {
  font-size: 11px; color: var(--color-dark-3);
}

/* About image */
.about__img-wrap {
  margin-bottom: 32px;
  border-radius: var(--radius-xl); overflow: hidden;
  border: 1px solid var(--color-border);
  box-shadow: var(--shadow-lg);
  /* Uncomment kalau mau tampilkan gambar kantor/tim: */
  /* aspect-ratio: 4/3; */
  display: none; /* Tampilkan kembali jika ada foto */
}
.about__img-wrap img {
  width: 100%; height: 100%; object-fit: cover;
}

/* Timeline */
.about__right { padding-top: 60px; }

.timeline { display: flex; flex-direction: column; }

.timeline__item {
  display: grid; grid-template-columns: 70px 1fr;
  gap: 24px; padding: 28px 0;
  border-bottom: 1px solid var(--color-border); align-items: start;
}
.timeline__item:first-child { border-top: 1px solid var(--color-border); }

.timeline__year {
  font-family: var(--font-display);
  font-size: 22px; font-weight: 700;
  color: var(--color-primary); line-height: 1;
}
.timeline__year--sm {
  font-size: 16px; padding-top: 4px;
}
.timeline__year-sub {
  font-size: 11px; color: var(--color-dark-3); margin-top: 3px;
}

.timeline__title {
  display: block; font-size: 14px; font-weight: 600;
  color: var(--color-dark); margin-bottom: 4px;
}
.timeline__desc {
  font-size: 13px; color: var(--color-dark-3); line-height: 1.6;
}

/* ============================================================
   CONTACT SECTION
   ============================================================ */
.contact {
  background: var(--color-dark);
  padding: var(--section-pad) 0;
}

.contact__grid {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 80px; align-items: center;
}

.contact__info { display: flex; flex-direction: column; gap: 32px; }

/* Info card (right side) */
.contact__card {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 24px; padding: 40px;
}

.contact__card-row {
  display: flex; gap: 16px; align-items: flex-start;
  padding: 20px 0; border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}
.contact__card-row:first-child { padding-top: 0; }
.contact__card-row:last-child { border-bottom: none; padding-bottom: 0; }

.contact__card-icon {
  width: 42px; height: 42px; border-radius: 10px; flex-shrink: 0;
  background: rgba(255, 255, 255, 0.06);
  display: flex; align-items: center; justify-content: center;
  font-size: 18px;
}

/* Gunakan gambar untuk ikon jika ada */
.contact__card-icon img {
  width: 22px; height: 22px; object-fit: contain;
}

.contact__card-label {
  font-size: 11px; color: rgba(255, 255, 255, 0.35);
  text-transform: uppercase; letter-spacing: 1px; margin-bottom: 4px;
}
.contact__card-val {
  font-size: 14px; color: rgba(255, 255, 255, 0.8); font-weight: 500;
}

/* ============================================================
   FOOTER
   ============================================================ */
.footer {
  background: var(--color-dark);
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  padding: 32px 0;
}

.footer__inner {
  display: flex; align-items: center;
  justify-content: space-between; flex-wrap: wrap; gap: 16px;
}

.footer__logo {
  display: flex; align-items: center; gap: 10px; text-decoration: none;
}
.footer__logo-img {
  width: 36px; height: 36px; border-radius: 6px; overflow: hidden;
  background: transparent;
  display: flex; align-items: center; justify-content: center;
}
.footer__logo-img img { width: 36px; height: 36px; object-fit: contain; }
.footer__logo-img span {
  font-family: var(--font-display); font-size: 13px; font-weight: 700; color: #fff;
}
.footer__copy {
  font-size: 13px; color: rgba(255, 255, 255, 0.3);
}

.footer__nav { display: flex; gap: 28px; }
.footer__nav a {
  font-size: 13px; color: rgba(255, 255, 255, 0.3);
  text-decoration: none; transition: color 0.2s;
}
.footer__nav a:hover { color: rgba(255, 255, 255, 0.7); }

/* ============================================================
   FLOATING WHATSAPP BUTTON
   ============================================================ */
.wa-float {
  position: fixed; bottom: 28px; right: 28px; z-index: 200;
  width: 58px; height: 58px; border-radius: 50%;
  background: #25D366;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 4px 24px rgba(37, 211, 102, 0.45);
  text-decoration: none;
  animation: waBob 5s ease-in-out infinite;
}
.wa-float:hover {
  transform: scale(1.1) !important;
  animation: none;
}
.wa-float svg { width: 28px; height: 28px; fill: var(--color-white); }

.wa-float__tip {
  position: absolute; right: 68px;
  background: var(--color-dark); color: var(--color-white);
  padding: 7px 14px; border-radius: 8px;
  font-size: 12px; font-weight: 500;
  white-space: nowrap; opacity: 0; pointer-events: none;
  transition: opacity 0.2s; box-shadow: var(--shadow-sm);
}
.wa-float:hover .wa-float__tip { opacity: 1; }

@keyframes waBob {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-6px); }
}

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 1024px) {
  .packages__grid { grid-template-columns: repeat(3, 1fr); }
}

@media (max-width: 960px) {
  :root { --section-pad: 70px; }

  .hero__inner,
  .benefits__layout,
  .about__grid,
  .contact__grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .hero__visual { display: none; }
  .benefits__left,
  .about__left,
  .about__right { padding-top: 0; }

  .stats__inner { grid-template-columns: repeat(2, 1fr); gap: 32px; }
  .stats__item { border-right: none; padding: 16px 0; }

  .nav__links { display: none; }
  .nav__hamburger { display: flex; }
  .nav__cta { display: none; }

  /* Mobile nav menu */
  .nav__links.is-open {
    display: flex; flex-direction: column; gap: 0;
    position: absolute; top: 100%; left: 0; right: 0;
    background: rgba(248, 245, 240, 0.98);
    backdrop-filter: blur(16px);
    padding: 16px 32px 24px;
    border-bottom: 1px solid var(--color-border);
  }
  .nav__links.is-open li a {
    display: block; padding: 12px 0;
    border-bottom: 1px solid var(--color-border);
    font-size: 16px;
  }
}

@media (max-width: 640px) {
  .container { padding: 0 20px; }
  .packages__grid { grid-template-columns: 1fr 1fr; }
  .hero__title { font-size: 36px; }
  .stats__num { font-size: 32px; }
  .footer__inner { flex-direction: column; align-items: flex-start; }
}

@media (max-width: 400px) {
  .packages__grid { grid-template-columns: 1fr; }
  .hero__btns { flex-direction: column; }
  .btn { justify-content: center; }
}
