/* ============================================================
   HP HEALTH MISSION ASSAM
   Grassmorphossim UI · Premium White Theme
   ============================================================ */
* { margin: 0; padding: 0; box-sizing: border-box; }

:root {
  --primary: #0f6e4a;
  --primary-light: #2e9b76;
  --primary-soft: #e6f4ef;
  --accent: #1e7e8c;
  --accent-soft: #e2f0f2;
  --gray-soft: #f9fbfc;
  --shadow-sm: 0 12px 28px -8px rgba(0, 40, 30, 0.08), 0 4px 12px rgba(0, 0, 0, 0.02);
  --shadow-hover: 0 24px 40px -12px rgba(15, 110, 74, 0.18);
  --radius-lg: 32px;
  --radius-md: 20px;
  --radius-sm: 12px;
}

html { scroll-behavior: smooth; }

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  background: #ffffff;
  color: #1e2b3c;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

.container { max-width: 1280px; margin: 0 auto; padding: 0 24px; }

/* ---------- HEADER ---------- */
.site-header {
  background: rgba(255, 255, 255, 0.88);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(15, 110, 74, 0.08);
  position: sticky; top: 0; z-index: 1000;
  box-shadow: 0 6px 18px rgba(0, 30, 20, 0.02);
}
.header-inner {
  display: flex; align-items: center; justify-content: space-between;
  padding: 16px 0;
}
.logo {
  display: flex; align-items: center; gap: 10px;
  text-decoration: none; font-weight: 700; font-size: 1.6rem;
  letter-spacing: -0.02em; color: var(--primary);
}
.logo i {
  font-size: 1.7rem; color: var(--primary-light);
  background: linear-gradient(145deg, #d9f0e9, #ffffff);
  padding: 10px; border-radius: 18px; box-shadow: var(--shadow-sm);
}
.logo span { color: #0b4f3a; font-weight: 700; }
.logo small {
  font-size: 0.8rem; font-weight: 400; color: #5e7c6f;
  letter-spacing: 0.02em; margin-left: 4px;
}

.desktop-nav { display: flex; align-items: center; gap: 8px; }
.desktop-nav a {
  text-decoration: none; font-weight: 500; font-size: 0.95rem;
  padding: 8px 16px; border-radius: 40px; color: #1e3a33;
  transition: 0.2s ease;
}
.desktop-nav a:hover, .desktop-nav a.active {
  background: var(--primary-soft); color: var(--primary);
  box-shadow: 0 4px 12px rgba(15, 110, 74, 0.08);
}

.hamburger {
  display: none; font-size: 1.8rem; background: var(--primary-soft);
  color: var(--primary); width: 50px; height: 50px; border-radius: 18px;
  align-items: center; justify-content: center; cursor: pointer;
  box-shadow: var(--shadow-sm); transition: 0.2s; border: none;
}
.hamburger:hover { background: var(--primary); color: white; }

.mobile-menu {
  display: none; position: fixed; inset: 0;
  background: rgba(0, 20, 15, 0.4);
  backdrop-filter: blur(6px); z-index: 2000;
  align-items: center; justify-content: center;
}
.mobile-menu.active { display: flex; }
.mobile-menu-content {
  background: #ffffff; width: 88%; max-width: 380px;
  border-radius: 48px; padding: 32px 24px;
  box-shadow: 0 40px 60px -20px rgba(0, 50, 30, 0.4);
  border: 1px solid rgba(255, 255, 255, 0.6);
  text-align: center; position: relative;
  animation: fadeSlide 0.25s ease;
}
@keyframes fadeSlide {
  from { opacity: 0; transform: translateY(20px); }
  to { opacity: 1; transform: translateY(0); }
}
.mobile-menu-content .close-btn {
  position: absolute; top: 18px; right: 22px;
  font-size: 1.8rem; color: #6b8e7e; cursor: pointer;
  background: none; border: none;
}
.mobile-menu-content nav {
  display: flex; flex-direction: column; gap: 10px; margin: 28px 0 18px;
}
.mobile-menu-content nav a {
  text-decoration: none; font-size: 1.15rem; font-weight: 600;
  color: #1e3a33; padding: 14px 0; border-radius: 40px;
  transition: 0.15s;
}
.mobile-menu-content nav a:hover, .mobile-menu-content nav a.active {
  background: var(--primary-soft); color: var(--primary);
}
.mobile-menu-content .mobile-contact {
  font-size: 0.95rem; color: #4b6a5e;
  margin-top: 16px; border-top: 1px solid #dde9e4; padding-top: 20px;
}

/* ---------- BUTTONS ---------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center;
  gap: 10px; padding: 14px 32px; border-radius: 60px;
  font-weight: 600; text-decoration: none; transition: 0.25s ease;
  border: none; cursor: pointer; font-size: 0.98rem;
  background: white; color: #1e2b3c; box-shadow: var(--shadow-sm);
}
.btn-primary {
  background: var(--primary); color: white;
  box-shadow: 0 12px 22px -8px rgba(15, 110, 74, 0.4);
}
.btn-primary:hover {
  background: #0b5e3f; transform: translateY(-2px);
  box-shadow: 0 20px 30px -8px rgba(15, 110, 74, 0.5);
}
.btn-outline {
  background: white; border: 1.5px solid rgba(15, 110, 74, 0.2);
  color: var(--primary);
}
.btn-outline:hover {
  background: var(--primary-soft); border-color: var(--primary-light);
}
.btn-whatsapp {
  background: #25D366; color: white;
  box-shadow: 0 10px 20px -5px rgba(37, 211, 102, 0.3);
}
.btn-whatsapp:hover { background: #1ebe5a; transform: translateY(-2px); }

.float-wa {
  position: fixed; bottom: 30px; right: 30px;
  background: #25D366; color: white;
  width: 64px; height: 64px; border-radius: 30px;
  display: flex; align-items: center; justify-content: center;
  font-size: 2.2rem;
  box-shadow: 0 20px 30px -8px rgba(37, 211, 102, 0.5);
  z-index: 999; transition: 0.2s; text-decoration: none;
}
.float-wa:hover { transform: scale(1.08); background: #1ebe5a; }

/* ============================================================
   FULL SCREEN HERO CAROUSEL
   HP HEALTH MISSION ASSAM
   ============================================================ */

.hero-fullscreen {
  position: relative;
  width: 100%;
  height: 100vh;
  min-height: 600px;
  overflow: hidden;
  background: #071b15;
  padding: 0 !important;
  margin: 0;
}

/* Make hero account for mobile browser address bars */
@supports (height: 100svh) {
  .hero-fullscreen {
    height: 100svh;
  }
}


/* ------------------------------------------------------------
   SLIDES CONTAINER
   ------------------------------------------------------------ */

.hero-slides {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}


/* ------------------------------------------------------------
   INDIVIDUAL SLIDE
   ------------------------------------------------------------ */

.hero-slide {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;

  opacity: 0;
  visibility: hidden;

  transition:
    opacity 1s ease,
    visibility 1s ease;

  z-index: 1;
}

.hero-slide.active {
  opacity: 1;
  visibility: visible;
  z-index: 2;
}


/* ------------------------------------------------------------
   HERO IMAGE
   ------------------------------------------------------------ */

.hero-slide img {
  position: absolute;
  inset: 0;

  width: 100%;
  height: 100%;

  object-fit: cover;
  object-position: center center;

  display: block;

  transform: scale(1.04);

  transition:
    transform 6s ease;
}

.hero-slide.active img {
  transform: scale(1);
}


/* ------------------------------------------------------------
   SUBTLE DARK OVERLAY
   ------------------------------------------------------------ */

.hero-overlay {
  position: absolute;
  inset: 0;

  z-index: 3;

  pointer-events: none;

  background:
    linear-gradient(
      180deg,
      rgba(0, 0, 0, 0.08) 0%,
      rgba(0, 0, 0, 0.02) 45%,
      rgba(0, 0, 0, 0.48) 100%
    );
}


/* ------------------------------------------------------------
   ONLY HERO BUTTON
   ------------------------------------------------------------ */

.hero-button-wrap {
  position: absolute;

  left: 0;
  right: 0;

  bottom: 105px;

  z-index: 10;

  display: flex;
  justify-content: center;

  pointer-events: none;
}

.hero-main-button {
  pointer-events: auto;

  display: inline-flex;
  align-items: center;
  justify-content: center;

  gap: 10px;

  min-width: 190px;
  min-height: 54px;

  padding: 14px 30px;

  border-radius: 999px;

  background: var(--primary);
  color: #ffffff;

  text-decoration: none;

  font-size: 1rem;
  font-weight: 700;

  letter-spacing: 0.01em;

  box-shadow:
    0 15px 35px rgba(0, 0, 0, 0.25);

  border: 1px solid rgba(255,255,255,0.18);

  transition:
    transform 0.25s ease,
    background 0.25s ease,
    box-shadow 0.25s ease;
}

.hero-main-button:hover {
  background: #0b5e3f;

  color: #ffffff;

  transform: translateY(-3px);

  box-shadow:
    0 20px 40px rgba(0, 0, 0, 0.30);
}

.hero-main-button i {
  font-size: 1rem;
}


/* ------------------------------------------------------------
   SLIDE INDICATORS
   ------------------------------------------------------------ */

.hero-indicators {
  position: absolute;

  left: 0;
  right: 0;

  bottom: 38px;

  z-index: 10;

  display: flex;
  justify-content: center;
  align-items: center;

  gap: 9px;
}

.hero-indicator {
  width: 30px;
  height: 4px;

  padding: 0;

  border: 0;

  border-radius: 999px;

  background: rgba(255,255,255,0.45);

  cursor: pointer;

  transition:
    width 0.3s ease,
    background 0.3s ease;
}

.hero-indicator:hover {
  background: rgba(255,255,255,0.8);
}

.hero-indicator.active {
  width: 55px;

  background: #ffffff;
}


/* ------------------------------------------------------------
   PROGRESS BAR
   ------------------------------------------------------------ */

.hero-progress {
  position: absolute;

  left: 0;
  bottom: 0;

  width: 100%;
  height: 3px;

  background: rgba(255,255,255,0.18);

  z-index: 20;

  overflow: hidden;
}

.hero-progress span {
  display: block;

  width: 0;
  height: 100%;

  background: #ffffff;
}


/* Animation restarts every slide */
.hero-slide.active ~ .hero-progress span {
  animation: none;
}


/* ------------------------------------------------------------
   DESKTOP IMAGE EFFECT
   ------------------------------------------------------------ */

@media (min-width: 769px) {

  .hero-slide img {
    object-position: center center;
  }

}


/* ------------------------------------------------------------
   TABLET
   ------------------------------------------------------------ */

@media (max-width: 1024px) {

  .hero-fullscreen {
    min-height: 580px;
  }

  .hero-button-wrap {
    bottom: 100px;
  }

}


/* ------------------------------------------------------------
   MOBILE
   ------------------------------------------------------------ */

@media (max-width: 768px) {

  .hero-fullscreen {
    height: 100svh;
    min-height: 560px;
  }

  .hero-slide img {
    object-position: center center;
  }

  .hero-overlay {
    background:
      linear-gradient(
        180deg,
        rgba(0,0,0,0.10) 0%,
        rgba(0,0,0,0.05) 40%,
        rgba(0,0,0,0.55) 100%
      );
  }

  .hero-button-wrap {
    bottom: 105px;

    padding: 0 20px;
  }

  .hero-main-button {
    width: auto;

    min-width: 180px;

    min-height: 52px;

    padding: 13px 25px;

    font-size: 0.95rem;
  }

  .hero-indicators {
    bottom: 38px;

    gap: 7px;
  }

  .hero-indicator {
    width: 23px;
    height: 4px;
  }

  .hero-indicator.active {
    width: 42px;
  }

}


/* ------------------------------------------------------------
   SMALL MOBILE
   ------------------------------------------------------------ */

@media (max-width: 480px) {

  .hero-fullscreen {
    min-height: 520px;
  }

  .hero-button-wrap {
    bottom: 92px;
  }

  .hero-main-button {
    min-width: 170px;

    min-height: 50px;

    padding: 12px 22px;

    font-size: 0.92rem;
  }

  .hero-indicators {
    bottom: 30px;
  }

}


/* ------------------------------------------------------------
   REDUCE MOTION ACCESSIBILITY
   ------------------------------------------------------------ */

@media (prefers-reduced-motion: reduce) {

  .hero-slide,
  .hero-slide img,
  .hero-indicator,
  .hero-main-button {
    transition: none !important;
  }

}
/* ---------- SECTIONS ---------- */
.section { padding: 70px 0; }
.section-title {
  font-size: 2.2rem; font-weight: 700;
  letter-spacing: -0.02em; color: #103d30;
  margin-bottom: 18px;
}
.section-sub {
  color: #4d6b5f; max-width: 720px; margin-bottom: 48px; font-size: 1.08rem;
}

/* ---------- CARDS ---------- */
.card-grid {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 30px;
}
.card {
  background: white; border-radius: var(--radius-lg);
  padding: 34px 28px; box-shadow: var(--shadow-sm);
  border: 1px solid #f0f5f2; transition: 0.25s;
}
.card:hover {
  transform: translateY(-6px); box-shadow: var(--shadow-hover);
  border-color: var(--primary-soft);
}
.card i {
  font-size: 2rem; background: var(--primary-soft); color: var(--primary);
  width: 68px; height: 68px;
  display: flex; align-items: center; justify-content: center;
  border-radius: 24px; margin-bottom: 22px;
  box-shadow: 0 6px 14px rgba(15, 110, 74, 0.08);
}
.card h3 { font-size: 1.35rem; margin-bottom: 12px; color: #103d30; }
.card p { color: #58776b; }

/* ---------- ABOUT BRIEF ---------- */
.about-brief {
  display: grid; grid-template-columns: 1fr 1fr; gap: 50px;
  align-items: center; background: var(--gray-soft);
  border-radius: 48px; padding: 50px 40px;
  box-shadow: var(--shadow-sm); border: 1px solid #eef4f1;
}
.about-brief h2 { font-size: 2rem; margin-bottom: 20px; color: #103d30; }
.about-brief ul { list-style: none; margin-top: 24px; }
.about-brief ul li {
  margin-bottom: 14px; display: flex; gap: 12px;
  align-items: center; font-size: 1.02rem; color: #33544a;
}
.about-brief ul i {
  color: var(--primary); background: white;
  padding: 6px; border-radius: 50%; font-size: 0.8rem;
  box-shadow: 0 4px 8px rgba(15, 110, 74, 0.1);
}

/* ---------- PAGE HEADER ---------- */
.page-header {
  padding: 70px 0 40px; text-align: center;
  background: radial-gradient(circle at 50% 0%, rgba(46, 155, 118, 0.06) 0%, transparent 60%);
}
.page-header h1 {
  font-size: 2.8rem; font-weight: 700;
  color: #103d30; margin-bottom: 16px; letter-spacing: -0.02em;
}
.page-header p {
  color: #4d6b5f; max-width: 720px; margin: 0 auto; font-size: 1.08rem;
}

/* ---------- TEAM ---------- */
.team-grid {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 30px;
}
.team-card {
  background: white; border-radius: var(--radius-lg);
  padding: 30px 20px; text-align: center;
  box-shadow: var(--shadow-sm); border: 1px solid #f0f5f2;
  transition: 0.25s;
}
.team-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-hover); }
.team-card .avatar {
  width: 90px; height: 90px; border-radius: 50%;
  background: var(--primary-soft); margin: 0 auto 18px;
  display: flex; align-items: center; justify-content: center;
  font-size: 2.2rem; color: var(--primary);
  border: 4px solid white; box-shadow: 0 10px 20px -8px rgba(15, 110, 74, 0.25);
}
.team-card h4 { font-size: 1.15rem; color: #103d30; margin-bottom: 4px; }
.team-card span { font-size: 0.9rem; color: #6b8e7e; }

/* ---------- GALLERY ---------- */
.gallery-grid {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 24px;
}
.gallery-item {
  border-radius: var(--radius-lg); overflow: hidden;
  box-shadow: var(--shadow-sm); position: relative;
  aspect-ratio: 4 / 3; background: var(--primary-soft);
  transition: 0.3s;
}
.gallery-item img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform 0.5s ease;
}
.gallery-item:hover { box-shadow: var(--shadow-hover); }
.gallery-item:hover img { transform: scale(1.06); }
.gallery-item .caption {
  position: absolute; bottom: 0; left: 0; right: 0;
  background: linear-gradient(transparent, rgba(0, 40, 25, 0.75));
  color: white; padding: 30px 20px 18px;
  font-weight: 600; font-size: 1rem;
}

/* ---------- NEWS ---------- */
.news-grid {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
}
.news-card {
  background: white; border-radius: var(--radius-lg);
  overflow: hidden; box-shadow: var(--shadow-sm);
  border: 1px solid #f0f5f2; transition: 0.25s;
  display: flex; flex-direction: column;
}
.news-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-hover); }
.news-card .news-img {
  height: 200px; background: var(--primary-soft);
  overflow: hidden;
}
.news-card .news-img img {
  width: 100%; height: 100%; object-fit: cover;
}
.news-card .news-body { padding: 26px 24px 28px; flex: 1; }
.news-card .date {
  display: inline-block; font-size: 0.82rem; font-weight: 600;
  color: var(--primary); background: var(--primary-soft);
  padding: 5px 14px; border-radius: 40px; margin-bottom: 14px;
}
.news-card h3 { font-size: 1.2rem; margin-bottom: 10px; color: #103d30; }
.news-card p { color: #58776b; font-size: 0.95rem; }

/* ---------- CONTACT ---------- */
.contact-grid {
  display: grid; grid-template-columns: 1fr 1fr; gap: 40px;
  align-items: start;
}
.contact-info-card {
  background: var(--gray-soft); border-radius: var(--radius-lg);
  padding: 40px 34px; box-shadow: var(--shadow-sm);
  border: 1px solid #eef4f1;
}
.contact-info-card h3 { font-size: 1.5rem; margin-bottom: 24px; color: #103d30; }
.info-item {
  display: flex; gap: 16px; margin-bottom: 22px; align-items: flex-start;
}
.info-item i {
  background: white; color: var(--primary);
  width: 48px; height: 48px; border-radius: 16px;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.1rem; flex-shrink: 0;
  box-shadow: 0 6px 14px rgba(15, 110, 74, 0.08);
}
.info-item strong { display: block; color: #103d30; margin-bottom: 2px; }
.info-item span { color: #58776b; font-size: 0.95rem; }

.contact-form {
  background: white; border-radius: var(--radius-lg);
  padding: 40px 34px; box-shadow: var(--shadow-sm);
  border: 1px solid #f0f5f2;
}
.contact-form h3 { font-size: 1.5rem; margin-bottom: 24px; color: #103d30; }
.form-group { margin-bottom: 20px; }
.form-group label {
  display: block; font-size: 0.9rem; font-weight: 600;
  color: #33544a; margin-bottom: 8px;
}
.form-group input,
.form-group textarea,
.form-group select {
  width: 100%; padding: 14px 18px;
  border: 1.5px solid #e2ece8; border-radius: 16px;
  font-family: inherit; font-size: 0.98rem; color: #1e2b3c;
  background: #fbfdfc; transition: 0.2s; outline: none;
}
.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
  border-color: var(--primary-light);
  background: white;
  box-shadow: 0 0 0 4px rgba(46, 155, 118, 0.1);
}
.form-group textarea { min-height: 130px; resize: vertical; }
.form-alert {
  padding: 16px 20px; border-radius: 16px; margin-bottom: 24px;
  font-size: 0.95rem; font-weight: 500;
}
.form-alert.success { background: #e6f4ef; color: #0f6e4a; border: 1px solid #b8e0d0; }
.form-alert.error { background: #fdecec; color: #a12d2d; border: 1px solid #f5c2c2; }

/* ---------- MAP ---------- */
.map-wrap {
  border-radius: var(--radius-lg); overflow: hidden;
  box-shadow: var(--shadow-sm); margin-top: 50px;
  border: 6px solid white;
}
.map-wrap iframe { display: block; width: 100%; height: 400px; border: 0; }

/* ---------- CTA STRIP ---------- */
.cta-strip {
  background: linear-gradient(135deg, #0f6e4a, #1e7e8c);
  border-radius: 48px; padding: 60px 40px;
  text-align: center; color: white; margin: 40px 0;
  box-shadow: 0 30px 50px -20px rgba(15, 110, 74, 0.4);
}
.cta-strip h2 { font-size: 2.2rem; margin-bottom: 16px; }
.cta-strip p { opacity: 0.9; margin-bottom: 32px; font-size: 1.08rem; }
.cta-strip .btn { background: white; color: var(--primary); }
.cta-strip .btn:hover { background: #f0f9f6; transform: translateY(-2px); }
.cta-strip .btn-whatsapp { background: #25D366; color: white; }
.cta-strip .btn-whatsapp:hover { background: #1ebe5a; }

/* ---------- LEGAL / PRIVACY ---------- */
.legal-content {
  background: var(--gray-soft); border-radius: var(--radius-lg);
  padding: 50px 44px; box-shadow: var(--shadow-sm);
  border: 1px solid #eef4f1; max-width: 900px; margin: 0 auto;
}
.legal-content h2 { color: #103d30; margin: 30px 0 14px; font-size: 1.4rem; }
.legal-content h2:first-child { margin-top: 0; }
.legal-content p { color: #4d6b5f; margin-bottom: 14px; }
.legal-content ul { margin-left: 20px; color: #4d6b5f; }

/* ---------- FOOTER ---------- */
.site-footer {
  background: #0d2b22; color: #d4e6df;
  padding: 60px 0 30px; margin-top: 70px;
  border-radius: 60px 60px 0 0;
}
.footer-grid {
  display: grid; grid-template-columns: 2fr 1fr 1fr 1.2fr;
  gap: 40px; margin-bottom: 50px;
}
.footer-brand h3 { font-size: 1.7rem; color: white; margin-bottom: 18px; }
.footer-brand p { font-size: 0.95rem; color: #b0cfc3; margin-bottom: 24px; }
.footer-social a {
  color: #d4e6df; background: rgba(255, 255, 255, 0.06);
  width: 44px; height: 44px;
  display: inline-flex; align-items: center; justify-content: center;
  border-radius: 16px; margin-right: 12px;
  transition: 0.2s; text-decoration: none;
}
.footer-social a:hover {
  background: var(--primary-light); color: white; transform: translateY(-3px);
}
.footer-links h4 { color: white; margin-bottom: 20px; font-size: 1.1rem; }
.footer-links ul { list-style: none; }
.footer-links ul li { margin-bottom: 12px; }
.footer-links ul a {
  color: #b0cfc3; text-decoration: none; transition: 0.2s; font-size: 0.95rem;
}
.footer-links ul a:hover { color: white; padding-left: 4px; }
.footer-contact p {
  margin-bottom: 14px; display: flex; gap: 14px;
  align-items: flex-start; color: #c2dbd1; font-size: 0.95rem;
}
.footer-contact i { width: 20px; color: #7cc9a9; margin-top: 4px; }
.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding-top: 30px; display: flex; justify-content: space-between;
  align-items: center; font-size: 0.9rem; color: #9cb9ac;
  flex-wrap: wrap; gap: 16px;
}

/* ---------- RESPONSIVE ---------- */
@media (max-width: 1024px) {
  .hero-grid, .about-brief, .contact-grid { grid-template-columns: 1fr; }
  .hero-content h1 { font-size: 2.8rem; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 768px) {
  .desktop-nav { display: none; }
  .hamburger { display: flex; }
  .header-inner { padding: 12px 0; }
  .hero-content h1 { font-size: 2.3rem; }
  .section-title, .page-header h1 { font-size: 1.9rem; }
  .footer-grid { grid-template-columns: 1fr; gap: 30px; }
  .footer-bottom { flex-direction: column; text-align: center; }
  .float-wa { width: 58px; height: 58px; font-size: 2rem; bottom: 20px; right: 20px; }
  .about-brief, .legal-content, .contact-form, .contact-info-card { padding: 30px 22px; }
  .hero-image { padding: 18px; }
  .cta-strip { padding: 40px 24px; }
  .cta-strip h2 { font-size: 1.7rem; }
}
@media (max-width: 480px) {
  .hero-content h1 { font-size: 1.9rem; }
  .btn { width: 100%; justify-content: center; }
  .hero-actions { flex-direction: column; }
  .logo small { display: none; }
  .logo { font-size: 1.3rem; }
  .page-header h1 { font-size: 1.6rem; }
}