/* ============================================
   JK Enterprises — Global Stylesheet
   ============================================ */

@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@400;500;600;700;800;900&family=Poppins:wght@300;400;500;600&display=swap');

/* ── CSS VARIABLES ── */
:root {
  --blue:    #0077b6;
  --aqua:    #00b4d8;
  --deep:    #023e8a;
  --navy:    #012a5e;
  --light:   #90e0ef;
  --pale:    #caf0f8;
  --white:   #ffffff;
  --gray:    #f0f7ff;
  --gray2:   #e8f4fd;
  --text:    #1a2a3a;
  --muted:   #5a7a9a;
  --border:  rgba(0,180,216,0.15);
  --shadow:  0 4px 24px rgba(0,119,182,0.10);
  --shadow-lg: 0 16px 56px rgba(0,119,182,0.16);
  --radius:  20px;
  --radius-sm: 12px;
  --radius-lg: 32px;
}

/* ── RESET ── */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: 'Poppins', sans-serif;
  color: var(--text);
  background: #fff;
  overflow-x: hidden;
  line-height: 1.6;
}
img { max-width: 100%; display: block; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }
button { font-family: inherit; }

/* ── TYPOGRAPHY ── */
h1, h2, h3, h4, h5 { font-family: 'Montserrat', sans-serif; line-height: 1.15; }

/* ── UTILITIES ── */
.container { max-width: 1200px; margin: 0 auto; padding: 0 5%; }
.text-blue  { color: var(--blue); }
.text-aqua  { color: var(--aqua); }
.text-muted { color: var(--muted); }
.fw-800     { font-weight: 800; }
.mt-8  { margin-top: 8px; }
.mt-16 { margin-top: 16px; }
.mt-32 { margin-top: 32px; }
.mb-32 { margin-bottom: 32px; }

/* ── SECTION DEFAULTS ── */
.section { padding: 90px 5%; }
.section-gray { background: var(--gray); }

.section-tag {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--aqua);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  margin-bottom: 12px;
}
.section-tag::before {
  content: '';
  width: 28px; height: 2px;
  background: linear-gradient(90deg, var(--blue), var(--aqua));
  display: inline-block;
  border-radius: 2px;
}

.section-title {
  font-size: clamp(26px, 4vw, 44px);
  font-weight: 800;
  color: var(--text);
  line-height: 1.15;
  margin-bottom: 16px;
}
.section-title span { color: var(--blue); }

.section-sub {
  color: var(--muted);
  font-size: 15px;
  max-width: 560px;
  line-height: 1.8;
}

.section-center { text-align: center; }
.section-center .section-sub { margin: 0 auto; }

/* ── HEADER ── */
.site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  height: 70px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 5%;
  background: rgba(255,255,255,0.96);
  backdrop-filter: blur(14px);
  box-shadow: 0 2px 24px rgba(0,119,182,0.10);
  transition: box-shadow .3s;
}
.site-header.scrolled { box-shadow: 0 4px 36px rgba(0,119,182,0.18); }

.logo {
  display: flex;
  align-items: center;
  gap: 10px;
}
.logo-icon {
  width: 44px; height: 44px;
  background: linear-gradient(135deg, var(--blue), var(--aqua));
  border-radius: 12px;
  display: flex; align-items: center; justify-content: center;
  font-size: 20px; color: #fff;
  box-shadow: 0 4px 16px rgba(0,119,182,0.3);
  transition: transform .3s;
}
.logo:hover .logo-icon { transform: rotate(-8deg) scale(1.05); }
.logo-text span.brand {
  display: block;
  font-size: 16px; font-weight: 800;
  color: var(--blue);
  letter-spacing: 0.5px;
  line-height: 1.1;
}
.logo-text span.sub {
  font-size: 10px; font-weight: 500;
  color: var(--aqua);
  letter-spacing: 2px;
  text-transform: uppercase;
}

.main-nav { display: flex; gap: 28px; }
.main-nav a {
  font-size: 13px; font-weight: 600;
  color: var(--text);
  letter-spacing: 0.3px;
  position: relative;
  transition: color .2s;
  padding-bottom: 2px;
}
.main-nav a::after {
  content: '';
  position: absolute;
  bottom: -4px; left: 0; right: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--blue), var(--aqua));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .3s cubic-bezier(.23,1,.32,1);
  border-radius: 2px;
}
.main-nav a:hover, .main-nav a.active { color: var(--blue); }
.main-nav a:hover::after, .main-nav a.active::after { transform: scaleX(1); }

.header-actions { display: flex; gap: 10px; }

/* ── BUTTONS ── */
.btn {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 10px 22px;
  border-radius: 50px;
  font-size: 13px; font-weight: 700;
  letter-spacing: 0.3px;
  transition: all .3s cubic-bezier(.23,1,.32,1);
  border: none; cursor: pointer;
  font-family: 'Poppins', sans-serif;
}
.btn-primary {
  background: linear-gradient(135deg, var(--blue), var(--aqua));
  color: #fff;
  box-shadow: 0 4px 18px rgba(0,119,182,0.3);
}
.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 32px rgba(0,119,182,0.4);
}
.btn-outline {
  background: transparent;
  color: var(--blue);
  border: 2px solid var(--blue);
}
.btn-outline:hover {
  background: var(--blue);
  color: #fff;
  transform: translateY(-2px);
}
.btn-call {
  background: var(--blue);
  color: #fff;
  box-shadow: 0 4px 18px rgba(0,119,182,0.3);
}
.btn-call:hover {
  background: var(--deep);
  transform: translateY(-2px);
  box-shadow: 0 10px 28px rgba(0,119,182,0.4);
}
.btn-wa {
  background: #25D366;
  color: #fff;
  box-shadow: 0 4px 18px rgba(37,211,102,0.3);
}
.btn-wa:hover {
  background: #1fba5a;
  transform: translateY(-2px);
  box-shadow: 0 10px 28px rgba(37,211,102,0.45);
}
.btn-lg { padding: 16px 36px; font-size: 15px; }
.btn-xl { padding: 18px 44px; font-size: 16px; font-weight: 800; }

/* ── HAMBURGER ── */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 5px;
}
.hamburger span {
  width: 24px; height: 2.5px;
  background: var(--blue);
  border-radius: 4px;
  transition: all .3s;
  display: block;
}

/* ── MOBILE NAV ── */
.mobile-nav {
  position: fixed; inset: 0;
  background: rgba(2,62,138,0.97);
  backdrop-filter: blur(12px);
  z-index: 999;
  display: flex; flex-direction: column;
  align-items: center; justify-content: center;
  gap: 28px;
  transform: translateX(100%);
  transition: transform .4s cubic-bezier(.23,1,.32,1);
}
.mobile-nav.open { transform: translateX(0); }
.mobile-nav a {
  color: #fff;
  font-family: 'Montserrat', sans-serif;
  font-size: 22px; font-weight: 700;
  letter-spacing: 0.5px;
  transition: color .2s;
}
.mobile-nav a:hover, .mobile-nav a.active { color: var(--aqua); }
.mobile-nav-close {
  position: absolute; top: 22px; right: 22px;
  width: 44px; height: 44px; border-radius: 50%;
  background: rgba(255,255,255,0.1);
  border: none; color: #fff; font-size: 20px;
  cursor: pointer; display: flex; align-items: center; justify-content: center;
  transition: background .2s;
}
.mobile-nav-close:hover { background: rgba(255,255,255,0.2); }
.mobile-nav-btns {
  display: flex; flex-direction: column; gap: 12px; width: 220px;
}
.mobile-nav-btns a {
  display: flex; align-items: center; justify-content: center; gap: 10px;
  font-size: 15px; padding: 14px; border-radius: 14px;
  font-family: 'Poppins', sans-serif;
}
.mnb-call { background: var(--blue) !important; }
.mnb-wa   { background: #25D366 !important; }

/* ── PAGE HERO (inner pages) ── */
.page-hero {
  padding: 130px 5% 80px;
  background: linear-gradient(135deg, var(--deep) 0%, var(--blue) 50%, var(--aqua) 100%);
  position: relative;
  overflow: hidden;
}
.page-hero::before {
  content: '';
  position: absolute; top: -80px; right: -80px;
  width: 400px; height: 400px; border-radius: 50%;
  background: rgba(255,255,255,0.05);
}
.page-hero::after {
  content: '';
  position: absolute; bottom: -100px; left: -60px;
  width: 500px; height: 500px; border-radius: 50%;
  background: rgba(255,255,255,0.04);
}
.page-hero-content { position: relative; z-index: 2; max-width: 680px; }
.page-hero-tag {
  display: inline-flex; align-items: center; gap: 8px;
  background: rgba(255,255,255,0.15);
  border: 1px solid rgba(255,255,255,0.25);
  padding: 6px 16px; border-radius: 50px;
  color: rgba(255,255,255,0.9);
  font-size: 11px; font-weight: 700;
  letter-spacing: 2px; text-transform: uppercase;
  margin-bottom: 20px;
}
.page-hero h1 {
  font-size: clamp(32px, 6vw, 60px);
  font-weight: 900; color: #fff;
  margin-bottom: 16px; line-height: 1.1;
}
.page-hero h1 span {
  background: linear-gradient(90deg, #90e0ef, #caf0f8);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.page-hero p {
  font-size: clamp(14px, 2vw, 17px);
  color: rgba(255,255,255,0.82);
  line-height: 1.8; max-width: 560px;
  font-weight: 300; margin-bottom: 32px;
}
.page-hero-btns { display: flex; gap: 14px; flex-wrap: wrap; }
.page-hero-wave {
  position: absolute; bottom: -2px; left: 0; right: 0;
  height: 80px;
}
.page-hero-wave svg { width: 100%; height: 100%; }
.breadcrumb {
  display: flex; align-items: center; gap: 8px;
  font-size: 12px; color: rgba(255,255,255,0.6);
  margin-bottom: 16px; flex-wrap: wrap;
}
.breadcrumb a { color: rgba(255,255,255,0.75); transition: color .2s; }
.breadcrumb a:hover { color: #fff; }
.breadcrumb span { color: rgba(255,255,255,0.4); }
.breadcrumb .current { color: var(--light); font-weight: 600; }

/* ── CARDS ── */
.card {
  background: #fff;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  overflow: hidden;
  transition: all .4s cubic-bezier(.23,1,.32,1);
}
.card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
}
.card-body { padding: 28px; }

/* ── GRID LAYOUTS ── */
.grid-2 { display: grid; grid-template-columns: repeat(2, 1fr); gap: 28px; }
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.grid-4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: 22px; }
.grid-auto { display: grid; grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); gap: 24px; }

/* ── FLOATING WA ── */
.float-wa {
  position: fixed;
  bottom: 28px; right: 28px;
  z-index: 9999;
  width: 62px; height: 62px;
  background: #25D366;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: #fff; font-size: 30px;
  box-shadow: 0 6px 28px rgba(37,211,102,0.5);
  animation: pulse-wa 2.5s infinite;
  transition: transform .3s;
}
.float-wa:hover { transform: scale(1.12); animation: none; }
.float-wa-tip {
  position: absolute; right: 72px; top: 50%;
  transform: translateY(-50%);
  white-space: nowrap;
  background: #fff; color: var(--text);
  font-size: 12px; font-weight: 700;
  padding: 7px 14px; border-radius: 50px;
  box-shadow: 0 4px 20px rgba(0,0,0,0.1);
  opacity: 0; transition: opacity .3s;
  pointer-events: none;
}
.float-wa:hover .float-wa-tip { opacity: 1; }

@keyframes pulse-wa {
  0%, 100% { box-shadow: 0 6px 28px rgba(37,211,102,0.5); }
  50%       { box-shadow: 0 6px 40px rgba(37,211,102,0.8), 0 0 0 14px rgba(37,211,102,0.1); }
}

/* ── FOOTER ── */
.site-footer {
  background: var(--navy);
  color: rgba(255,255,255,0.7);
  padding: 70px 5% 0;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 48px;
  padding-bottom: 56px;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
.footer-brand p {
  font-size: 13px; line-height: 1.8;
  color: rgba(255,255,255,0.55);
  margin: 16px 0 24px;
}
.footer-brand .logo { margin-bottom: 4px; }
.footer-brand .logo-text span.brand { color: #fff; }
.social-row { display: flex; gap: 10px; }
.social-btn {
  width: 38px; height: 38px; border-radius: 10px;
  background: rgba(255,255,255,0.07);
  display: flex; align-items: center; justify-content: center;
  color: rgba(255,255,255,0.65); font-size: 15px;
  transition: all .3s;
}
.social-btn:hover { background: var(--aqua); color: #fff; transform: translateY(-2px); }

.footer-col h4 {
  font-size: 13px; font-weight: 700; color: #fff;
  letter-spacing: 0.5px; margin-bottom: 18px;
  padding-bottom: 10px;
  border-bottom: 2px solid rgba(0,180,216,0.35);
  display: inline-block;
}
.footer-links { display: flex; flex-direction: column; gap: 10px; }
.footer-links a {
  color: rgba(255,255,255,0.6); font-size: 13px;
  transition: all .2s;
  display: flex; align-items: center; gap: 6px;
}
.footer-links a i { font-size: 9px; color: var(--aqua); }
.footer-links a:hover { color: var(--aqua); padding-left: 4px; }

.footer-contact { display: flex; flex-direction: column; gap: 14px; }
.fc-item {
  display: flex; align-items: flex-start; gap: 10px;
  font-size: 12px; line-height: 1.5;
  color: rgba(255,255,255,0.6);
}
.fc-item i { color: var(--aqua); margin-top: 2px; font-size: 13px; flex-shrink: 0; }
.map-box {
  width: 100%; height: 120px; border-radius: 12px;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.08);
  display: flex; flex-direction: column;
  align-items: center; justify-content: center;
  gap: 8px; color: rgba(255,255,255,0.45);
  font-size: 12px; text-align: center;
  cursor: pointer; transition: background .3s;
  margin-bottom: 16px;
}
.map-box:hover { background: rgba(255,255,255,0.09); }
.map-box i { font-size: 26px; color: var(--aqua); }

.footer-bottom {
  display: flex; align-items: center; justify-content: space-between;
  padding: 20px 0; font-size: 12px;
  color: rgba(255,255,255,0.35);
  flex-wrap: wrap; gap: 8px;
}
.footer-bottom a { color: var(--aqua); }

/* ── REVEAL ANIMATIONS ── */
.reveal {
  opacity: 0;
  transform: translateY(32px);
  transition: opacity .7s cubic-bezier(.23,1,.32,1), transform .7s cubic-bezier(.23,1,.32,1);
}
.reveal.visible { opacity: 1; transform: translateY(0); }
.reveal-left  { opacity: 0; transform: translateX(-32px); transition: opacity .7s cubic-bezier(.23,1,.32,1), transform .7s cubic-bezier(.23,1,.32,1); }
.reveal-left.visible  { opacity: 1; transform: translateX(0); }
.reveal-right { opacity: 0; transform: translateX(32px); transition: opacity .7s cubic-bezier(.23,1,.32,1), transform .7s cubic-bezier(.23,1,.32,1); }
.reveal-right.visible { opacity: 1; transform: translateX(0); }

/* ── BADGE / TAG PILLS ── */
.badge {
  display: inline-flex; align-items: center; gap: 6px;
  padding: 5px 14px; border-radius: 50px;
  font-size: 11px; font-weight: 700;
  letter-spacing: 0.5px;
}
.badge-blue  { background: rgba(0,119,182,0.1); color: var(--blue); }
.badge-aqua  { background: rgba(0,180,216,0.1); color: var(--aqua); }
.badge-green { background: rgba(37,211,102,0.12); color: #1fba5a; }
.badge-orange { background: rgba(244,166,35,0.12); color: #d4890a; }

/* ── ICON BOXES ── */
.icon-box {
  width: 56px; height: 56px;
  border-radius: 16px;
  background: linear-gradient(135deg, var(--blue), var(--aqua));
  display: flex; align-items: center; justify-content: center;
  color: #fff; font-size: 22px;
  flex-shrink: 0;
  box-shadow: 0 6px 20px rgba(0,119,182,0.25);
  transition: transform .3s;
}
.icon-box:hover { transform: scale(1.08) rotate(-4deg); }
.icon-box-sm { width: 44px; height: 44px; font-size: 17px; border-radius: 12px; }
.icon-box-lg { width: 72px; height: 72px; font-size: 30px; border-radius: 20px; }
.icon-box-outline {
  background: transparent;
  border: 2px solid rgba(0,119,182,0.2);
  color: var(--blue);
  box-shadow: none;
}

/* ── STATS ROW ── */
.stats-row {
  display: flex; gap: 0;
  background: #fff;
  border-radius: var(--radius);
  box-shadow: var(--shadow-lg);
  overflow: hidden;
}
.stat-item {
  flex: 1;
  text-align: center; padding: 32px 16px;
  border-right: 1px solid var(--border);
  position: relative;
}
.stat-item:last-child { border-right: none; }
.stat-num {
  font-family: 'Montserrat', sans-serif;
  font-size: 36px; font-weight: 900;
  color: var(--blue); display: block;
  line-height: 1;
}
.stat-lbl {
  font-size: 12px; color: var(--muted);
  font-weight: 600; letter-spacing: 0.5px;
  margin-top: 6px; display: block;
}

/* ── CTA STRIP ── */
.cta-strip {
  background: linear-gradient(135deg, var(--deep), var(--blue) 55%, var(--aqua));
  padding: 64px 5%;
  text-align: center;
  position: relative; overflow: hidden;
}
.cta-strip::before {
  content: '';
  position: absolute; top: -60px; left: 50%;
  transform: translateX(-50%);
  width: 600px; height: 300px; border-radius: 50%;
  background: rgba(255,255,255,0.05);
}
.cta-strip-content { position: relative; z-index: 1; }
.cta-strip h2 {
  font-size: clamp(24px, 4vw, 44px);
  font-weight: 900; color: #fff;
  margin-bottom: 12px;
}
.cta-strip p {
  color: rgba(255,255,255,0.8);
  font-size: 15px; margin-bottom: 32px;
  max-width: 480px; margin-left: auto; margin-right: auto;
}
.cta-strip-btns { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }
.cta-strip-btns .btn-call-lg {
  background: #fff; color: var(--blue);
  box-shadow: 0 8px 30px rgba(0,0,0,0.2);
}
.cta-strip-btns .btn-wa-lg {
  background: #25D366; color: #fff;
  box-shadow: 0 8px 30px rgba(37,211,102,0.4);
}

/* ── FORM ── */
.form-card {
  background: #fff;
  border-radius: var(--radius-lg);
  padding: 40px;
  box-shadow: 0 8px 56px rgba(0,119,182,0.10);
}
.form-group { margin-bottom: 18px; }
.form-label {
  display: block;
  font-size: 11px; font-weight: 700;
  color: var(--text); letter-spacing: 0.8px;
  text-transform: uppercase; margin-bottom: 7px;
}
.form-control {
  width: 100%; padding: 13px 18px;
  border: 2px solid #eef3fa;
  border-radius: var(--radius-sm);
  font-family: 'Poppins', sans-serif;
  font-size: 14px; color: var(--text);
  background: #fafcff; outline: none;
  transition: all .3s;
}
.form-control:focus {
  border-color: var(--aqua);
  background: #fff;
  box-shadow: 0 0 0 4px rgba(0,180,216,0.1);
}
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.form-submit {
  width: 100%; padding: 15px;
  background: linear-gradient(135deg, var(--blue), var(--aqua));
  color: #fff; border: none;
  border-radius: var(--radius-sm);
  font-family: 'Montserrat', sans-serif;
  font-size: 14px; font-weight: 700;
  cursor: pointer; transition: all .3s;
  display: flex; align-items: center; justify-content: center; gap: 8px;
  letter-spacing: 0.5px;
  box-shadow: 0 6px 24px rgba(0,119,182,0.3);
}
.form-submit:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 36px rgba(0,119,182,0.4);
}
.form-submit.success {
  background: linear-gradient(135deg, #0a8a4c, #16a05a) !important;
}

/* ── ACCORDION ── */
.accordion-item {
  border-radius: var(--radius-sm);
  overflow: hidden;
  border: 1.5px solid var(--border);
  margin-bottom: 10px;
  transition: box-shadow .3s;
}
.accordion-item:hover { box-shadow: var(--shadow); }
.accordion-trigger {
  width: 100%; background: #fff;
  padding: 18px 22px;
  display: flex; align-items: center; justify-content: space-between;
  font-family: 'Montserrat', sans-serif;
  font-size: 14px; font-weight: 700;
  color: var(--text); cursor: pointer;
  border: none; text-align: left;
  transition: background .2s;
}
.accordion-trigger.active { background: var(--gray); color: var(--blue); }
.accordion-trigger i { transition: transform .3s; color: var(--aqua); }
.accordion-trigger.active i { transform: rotate(180deg); }
.accordion-body {
  display: none;
  padding: 0 22px 18px;
  background: var(--gray);
  font-size: 14px; color: var(--muted);
  line-height: 1.8;
}
.accordion-body.open { display: block; }

/* ── TESTIMONIAL CARD ── */
.testi-card {
  background: #fff;
  border-radius: var(--radius);
  padding: 32px;
  box-shadow: var(--shadow);
  border: 1px solid var(--border);
  transition: all .35s;
}
.testi-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }
.testi-stars { color: #f4a623; font-size: 13px; letter-spacing: 2px; margin-bottom: 14px; }
.testi-quote-icon { font-size: 44px; color: var(--pale); line-height: 1; margin-bottom: 10px; font-family: Georgia, serif; }
.testi-text { font-size: 14px; color: var(--muted); line-height: 1.8; font-style: italic; margin-bottom: 20px; }
.testi-author { display: flex; align-items: center; gap: 12px; }
.testi-avatar {
  width: 46px; height: 46px; border-radius: 50%;
  background: linear-gradient(135deg, var(--blue), var(--aqua));
  display: flex; align-items: center; justify-content: center;
  color: #fff; font-size: 16px; font-weight: 700;
  font-family: 'Montserrat', sans-serif; flex-shrink: 0;
}
.testi-name { font-family: 'Montserrat', sans-serif; font-size: 14px; font-weight: 700; color: var(--text); }
.testi-loc  { font-size: 12px; color: var(--muted); }

/* ── BUBBLES ── */
.bubbles-wrap { position: absolute; inset: 0; overflow: hidden; pointer-events: none; }
.bubble {
  position: absolute; border-radius: 50%;
  background: rgba(255,255,255,0.08);
  animation: rise linear infinite;
}
@keyframes rise {
  0%   { transform: translateY(110vh) scale(0); opacity: 0; }
  10%  { opacity: 1; }
  90%  { opacity: 0.5; }
  100% { transform: translateY(-10vh) scale(1); opacity: 0; }
}
@keyframes fadeSlideUp {
  from { opacity: 0; transform: translateY(28px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* ── RESPONSIVE ── */
@media (max-width: 992px) {
  .main-nav, .header-actions .btn-call, .header-actions .btn-wa { display: none; }
  .hamburger { display: flex; }
  .grid-4 { grid-template-columns: repeat(2, 1fr); }
  .grid-3 { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 32px; }
  .stats-row { flex-wrap: wrap; }
  .stat-item { flex: 0 0 50%; border-bottom: 1px solid var(--border); }
}
@media (max-width: 600px) {
  .section { padding: 56px 4%; }
  .grid-2, .grid-3, .grid-4, .grid-auto { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .stats-row { flex-direction: column; }
  .stat-item { border-right: none; border-bottom: 1px solid var(--border); }
  .page-hero { padding: 110px 4% 60px; }
  .cta-strip-btns { flex-direction: column; align-items: center; }
  .footer-bottom { flex-direction: column; text-align: center; }
}
