/* =============================================
   JA Property Maintenance — Main Stylesheet
   ============================================= */

:root {
  --red:        #fa160f;
  --red-dark:   #d4120c;
  --black:      #010101;
  --dark-grey:  #4f4f4f;
  --mid-grey:   #848484;
  --light-grey: #f2f2f2;
  --white:      #ffffff;
  --wa-green:   #25D366;
  --wa-dark:    #128C7E;

  --font:       'Poppins', sans-serif;
  --radius:     8px;
  --radius-lg:  16px;
  --shadow:     0 4px 24px rgba(0,0,0,0.10);
  --shadow-lg:  0 8px 40px rgba(0,0,0,0.18);

  --header-h:   82px;
  --transition: 0.25s ease;
}

/* ---- Reset ---- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body { font-family: var(--font); color: var(--black); background: var(--white); line-height: 1.6; -webkit-font-smoothing: antialiased; overflow-x: hidden; }
img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
button { cursor: pointer; border: none; background: none; font-family: var(--font); }
input, textarea, select { font-family: var(--font); }

/* ---- Utilities ---- */
.container { width: 100%; max-width: 1180px; margin: 0 auto; padding: 0 20px; }
.section { padding: 80px 0; }
.dark-section { background: var(--black); color: var(--white); }
.accent { color: var(--red); }

.section-head { text-align: center; margin-bottom: 56px; }
.section-head h2 { font-size: clamp(1.8rem, 4vw, 2.5rem); font-weight: 800; line-height: 1.15; }
.section-sub { color: var(--mid-grey); margin-top: 12px; max-width: 560px; margin-left: auto; margin-right: auto; }
.section-head.light .section-sub { color: #aaa; }

.eyebrow { display: inline-block; font-size: 0.75rem; font-weight: 600; text-transform: uppercase; letter-spacing: 0.12em; color: var(--red); margin-bottom: 8px; }
.eyebrow.light { color: var(--red); }

/* ---- Buttons ---- */
.btn {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 12px 24px; border-radius: var(--radius);
  font-size: 0.9rem; font-weight: 600; transition: all var(--transition);
  white-space: nowrap; border: 2px solid transparent;
}
.btn-lg { padding: 15px 30px; font-size: 1rem; }
.btn-full { width: 100%; justify-content: center; }
.btn-wa { background: var(--wa-green); color: var(--white); border-color: var(--wa-green); }
.btn-wa:hover { background: var(--wa-dark); border-color: var(--wa-dark); transform: translateY(-2px); }
.btn-red { background: var(--red); color: var(--white); border-color: var(--red); }
.btn-red:hover { background: var(--white); color: var(--black); border-color: var(--black); transform: translateY(-2px); }
.btn-outline { background: transparent; color: var(--white); border-color: rgba(255,255,255,0.6); }
.btn-outline:hover { border-color: var(--white); background: rgba(255,255,255,0.15); }
.btn-outline-dark { background: transparent; color: var(--black); border-color: var(--black); }
.btn-outline-dark:hover { background: var(--black); color: var(--white); }
.btn-white { background: var(--white); color: var(--black); border-color: var(--white); }
.btn-white:hover { background: transparent; color: var(--white); border-color: var(--white); transform: translateY(-2px); }
.btn-dark-hover:hover { background: var(--black) !important; border-color: var(--black) !important; color: var(--white) !important; }

/* =============================================
   HEADER
   ============================================= */
.header {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
  height: var(--header-h);
  background: transparent;
  transition: background var(--transition), box-shadow var(--transition);
}
.header.scrolled { background: var(--white); box-shadow: 0 2px 20px rgba(0,0,0,0.10); }
.header-inner { display: flex; align-items: center; height: var(--header-h); gap: 24px; position: relative; width: 90%; }

.logo { flex-shrink: 0; }
.logo img { height: 96px; width: auto; }

.nav { display: flex; align-items: center; gap: 4px; position: absolute; left: 50%; transform: translateX(-50%); margin-left: 0; }
.nav a {
  font-size: 0.875rem; font-weight: 500; padding: 6px 12px; border-radius: 6px;
  color: var(--white); transition: all var(--transition);
}
.header.scrolled .nav a { color: var(--dark-grey); }
.nav a:hover { color: var(--red) !important; }

.header-wa { margin-left: auto; }
.header:not(.scrolled) .header-wa { background: var(--red); border-color: var(--red); }

.hamburger { display: none; flex-direction: column; gap: 5px; padding: 4px; margin-left: auto; }
.hamburger span { display: block; width: 24px; height: 2px; background: var(--white); border-radius: 2px; transition: all var(--transition); }
.header.scrolled .hamburger span { background: var(--black); }
.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 {
  position: relative; min-height: 100vh;
  display: flex; align-items: center; justify-content: center;
  padding-top: var(--header-h);
  overflow: hidden;
}
.hero-bg {
  position: absolute; inset: 0;
  background-size: cover; background-position: center;
  background-color: var(--dark-grey);
}
.hero-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(135deg, rgba(1,1,1,0.75) 0%, rgba(1,1,1,0.55) 60%, rgba(250,22,15,0.15) 100%);
}
.hero-content {
  position: relative; z-index: 2;
  text-align: center; color: var(--white);
  padding: 60px 20px;
  max-width: 800px; margin: 0 auto;
}
.hero-eyebrow { font-size: 0.8rem; font-weight: 600; letter-spacing: 0.14em; text-transform: uppercase; color: rgba(255,255,255,0.75); display: block; margin-bottom: 16px; }
.hero-content h1 { font-size: clamp(2.8rem, 8vw, 5.5rem); font-weight: 900; line-height: 1.2; margin-bottom: 20px; }
.hero-line1 { display: block; }
.hero-sub { font-size: clamp(1rem, 2.5vw, 1.2rem); color: rgba(255,255,255,0.85); margin-bottom: 36px; }
.hero-ctas { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }

.hero-area-note {
  margin-top: 14px;
  font-size: 0.78rem;
  color: rgba(255,255,255,0.45);
  letter-spacing: 0.02em;
}

.hero-scroll-hint {
  position: absolute; bottom: 32px; left: 50%; transform: translateX(-50%);
  display: flex; flex-direction: column; align-items: center; gap: 8px;
  color: rgba(255,255,255,0.6); font-size: 0.75rem; letter-spacing: 0.1em;
  text-transform: uppercase; z-index: 2;
}
.scroll-arrow {
  width: 20px; height: 20px;
  border-right: 2px solid rgba(255,255,255,0.5);
  border-bottom: 2px solid rgba(255,255,255,0.5);
  transform: rotate(45deg);
  animation: bounce 1.8s ease infinite;
}
@keyframes bounce { 0%,100%{transform:rotate(45deg) translateY(0)} 50%{transform:rotate(45deg) translateY(5px)} }

/* =============================================
   TRUST BAR
   ============================================= */
.trust-bar { background: var(--red); padding: 0; }
.trust-row {
  display: flex; align-items: center; justify-content: center;
  flex-wrap: wrap; gap: 0; padding: 14px 20px;
}
.trust-item { display: flex; align-items: center; gap: 6px; color: var(--white); font-size: 0.82rem; font-weight: 600; padding: 6px 16px; }
.trust-check { font-size: 1rem; }
.trust-sep { width: 1px; height: 20px; background: rgba(255,255,255,0.3); }

/* =============================================
   SERVICES
   ============================================= */
.services-section { background: var(--white); }
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.service-card {
  background: var(--white); border: 1px solid #e8e8e8; border-radius: var(--radius-lg);
  padding: 32px 28px; transition: all var(--transition);
  position: relative; overflow: hidden;
}
.service-card::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0; height: 3px;
  background: var(--red); transform: scaleX(0); transition: transform var(--transition);
  transform-origin: left;
}
.service-card:hover { box-shadow: var(--shadow-lg); transform: translateY(-4px); border-color: transparent; }
.service-card:hover::before { transform: scaleX(1); }
.service-icon-wrap { margin-bottom: 20px; color: var(--red); }
.service-card h3 { font-size: 1.15rem; font-weight: 700; margin-bottom: 10px; }
.service-card p { color: var(--dark-grey); font-size: 0.9rem; line-height: 1.65; margin-bottom: 20px; }
.service-link { color: var(--red); font-size: 0.85rem; font-weight: 600; transition: gap var(--transition); }
.service-link:hover { text-decoration: underline; }

/* =============================================
   ABOUT
   ============================================= */
.about-section { }
.about-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 72px; align-items: stretch; }
.about-img-wrap { position: relative; border-radius: var(--radius-lg); overflow: hidden; display: flex; flex-direction: column; }
.about-img-wrap img { width: 100%; height: 100%; min-height: 420px; object-fit: cover; border-radius: var(--radius-lg); }
.about-badge {
  position: absolute; bottom: 24px; right: -16px;
  background: var(--red); color: var(--white);
  padding: 16px 24px; border-radius: var(--radius);
  text-align: center; box-shadow: var(--shadow);
}
.badge-big { display: block; font-size: 1.6rem; font-weight: 900; line-height: 1; }
.badge-small { font-size: 0.7rem; font-weight: 600; text-transform: uppercase; letter-spacing: 0.1em; opacity: 0.9; }

.about-text h2 { font-size: clamp(1.6rem, 3.5vw, 2.2rem); font-weight: 800; margin-bottom: 20px; }
.about-text p { color: var(--white); margin-bottom: 16px; font-size: 0.95rem; line-height: 1.75; }

.pillars { margin: 28px 0; display: flex; flex-direction: column; gap: 16px; }
.pillar { display: flex; align-items: flex-start; gap: 14px; }
.pillar-dot { width: 10px; height: 10px; background: var(--red); border-radius: 50%; margin-top: 6px; flex-shrink: 0; }
.pillar strong { display: block; font-size: 0.95rem; color: var(--white); }
.pillar span { font-size: 0.85rem; color: rgba(255,255,255,0.7); }

/* =============================================
   AUDIENCE
   ============================================= */
.audience-section { background: var(--light-grey); }
.audience-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 32px; }
.audience-card {
  background: var(--white); border-radius: var(--radius-lg);
  padding: 40px 36px; box-shadow: var(--shadow);
}
.aud-commercial { border-top: 4px solid var(--black); }
.aud-residential { border-top: 4px solid var(--red); }
.aud-icon { font-size: 2.5rem; margin-bottom: 16px; }
.audience-card h3 { font-size: 1.35rem; font-weight: 800; margin-bottom: 12px; }
.audience-card > p { color: var(--dark-grey); margin-bottom: 24px; line-height: 1.7; }
.aud-list { margin-bottom: 28px; display: flex; flex-direction: column; gap: 8px; }
.aud-list li { font-size: 0.9rem; color: var(--dark-grey); padding-left: 20px; position: relative; }
.aud-list li::before { content: '✓'; position: absolute; left: 0; color: var(--red); font-weight: 700; }

/* =============================================
   PROCESS
   ============================================= */
.process-section {}
.process-steps {
  display: flex; align-items: flex-start;
  gap: 0; max-width: 100%;
}
.process-step {
  flex: 1; text-align: center; padding: 0 20px;
}
.step-num {
  font-size: 3rem; font-weight: 900; color: var(--red);
  line-height: 1; margin-bottom: 16px;
}
.step-body h3 { font-size: 1.05rem; font-weight: 700; color: var(--white); margin-bottom: 8px; white-space: nowrap; }
.step-body p { font-size: 0.875rem; color: #999; line-height: 1.7; }
.step-connector {
  width: 48px; height: 2px; background: rgba(250,22,15,0.4);
  flex-shrink: 0; margin-top: 36px;
}
.process-cta { text-align: center; margin-top: 56px; }

/* =============================================
   PROJECTS
   ============================================= */
.projects-section { background: var(--white); }
.projects-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-template-rows: 420px 280px;
  gap: 16px;
}
.project-card {
  position: relative; border-radius: var(--radius); overflow: hidden;
}
.project-card.proj-featured {
  grid-column: 1 / 3;
}
.project-card::before {
  content: ''; position: absolute; inset: 0;
  background: rgba(0,0,0,0.22); z-index: 1; pointer-events: none;
}
.project-card img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.4s ease; }
.project-card:hover img { transform: scale(1.05); }
.project-info {
  position: absolute; bottom: 0; left: 0; right: 0;
  padding: 20px 20px 16px; z-index: 2;
  background: linear-gradient(to top, rgba(1,1,1,0.85), transparent);
  color: var(--white);
}
.proj-tag { font-size: 0.7rem; font-weight: 600; text-transform: uppercase; letter-spacing: 0.1em; color: rgba(255,255,255,0.75); display: block; margin-bottom: 4px; }
.project-info h4 { font-size: 1rem; font-weight: 700; margin-bottom: 2px; }
.project-info p { font-size: 0.8rem; color: rgba(255,255,255,0.7); }
.projects-cta { text-align: center; margin-top: 40px; }
.projects-cta p { color: var(--dark-grey); margin-bottom: 16px; }

/* =============================================
   TESTIMONIALS
   ============================================= */
.testimonials-section {}
.slider-wrap { max-width: 800px; margin: 0 auto; }
.slider-track { overflow: hidden; }
.testimonial-card {
  padding: 40px; background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.1); border-radius: var(--radius-lg);
  display: none; text-align: center;
  animation: fadeIn 0.4s ease;
}
.testimonial-card.active { display: block; }
@keyframes fadeIn { from{opacity:0;transform:translateY(10px)} to{opacity:1;transform:translateY(0)} }
.stars { color: var(--red); font-size: 1.3rem; margin-bottom: 20px; letter-spacing: 2px; }
.testimonial-card p { font-size: 1.05rem; color: rgba(255,255,255,0.85); line-height: 1.75; margin-bottom: 24px; font-style: italic; }
.t-author { font-size: 0.875rem; font-weight: 600; color: var(--mid-grey); }
.t-source {
  display: inline-flex; align-items: center; gap: 6px; margin-top: 14px;
  font-size: 0.75rem; color: rgba(255,255,255,0.45); transition: color var(--transition);
}
.t-source:hover { color: var(--red); }
.reviews-cta { display: flex; justify-content: center; gap: 32px; margin-top: 32px; flex-wrap: wrap; }
.reviews-link {
  display: inline-flex; align-items: center; gap: 8px;
  color: rgba(255,255,255,0.55); font-size: 0.8rem; font-weight: 500;
  transition: color var(--transition);
}
.reviews-link:hover { color: var(--red); }
.slider-nav { display: flex; align-items: center; justify-content: center; gap: 20px; margin-top: 32px; }
.slider-btn {
  width: 44px; height: 44px; border-radius: 50%;
  border: 2px solid rgba(255,255,255,0.3);
  color: var(--white); font-size: 1.4rem; line-height: 1;
  display: flex; align-items: center; justify-content: center;
  transition: all var(--transition);
}
.slider-btn:hover { border-color: var(--red); color: var(--red); }
.slider-dots { display: flex; gap: 8px; }
.dot {
  width: 8px; height: 8px; border-radius: 50%;
  background: rgba(255,255,255,0.3); cursor: pointer;
  transition: all var(--transition); border: none;
}
.dot.active { background: var(--red); transform: scale(1.3); }

/* =============================================
   FAQ
   ============================================= */
.faq-section { background: var(--light-grey); }
.faq-inner { max-width: 780px; margin: 0 auto; }
.faq-list { display: flex; flex-direction: column; gap: 8px; }
.faq-item { background: var(--white); border-radius: var(--radius); overflow: hidden; border: 1px solid #e0e0e0; }
.faq-q {
  width: 100%; display: flex; justify-content: space-between; align-items: center;
  padding: 20px 24px; font-size: 0.95rem; font-weight: 600; color: var(--black);
  text-align: left; gap: 16px; transition: color var(--transition);
}
.faq-q:hover { color: var(--red); }
.faq-q[aria-expanded="true"] { color: var(--red); }
.faq-toggle {
  width: 28px; height: 28px; border-radius: 50%;
  background: var(--light-grey); display: flex; align-items: center; justify-content: center;
  font-size: 1.2rem; line-height: 1; flex-shrink: 0; transition: all var(--transition);
  font-weight: 400;
}
.faq-q[aria-expanded="true"] .faq-toggle { background: var(--red); color: var(--white); transform: rotate(45deg); }
.faq-a { max-height: 0; overflow: hidden; transition: max-height 0.35s ease, padding 0.35s ease; }
.faq-a.open { max-height: 400px; }
.faq-a p { padding: 0 24px 20px; font-size: 0.9rem; color: var(--dark-grey); line-height: 1.75; }

/* =============================================
   CONTACT
   ============================================= */
.contact-section {}
.contact-section .section-sub { white-space: nowrap; max-width: none; }
.contact-grid { display: grid; grid-template-columns: 1fr 1.3fr; gap: 64px; align-items: start; }
.contact-details { display: flex; flex-direction: column; gap: 24px; }
.contact-item { display: flex; align-items: flex-start; gap: 16px; }
.c-icon {
  width: 48px; height: 48px; border-radius: 12px;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.wa-icon { background: rgba(250,22,15,0.2); color: var(--red); }
.phone-icon { background: rgba(250,22,15,0.2); color: var(--red); }
.mail-icon { background: rgba(250,22,15,0.2); color: var(--red); }
.loc-icon { background: rgba(250,22,15,0.2); color: var(--red); }
.contact-item strong { display: block; font-size: 0.8rem; text-transform: uppercase; letter-spacing: 0.08em; color: #888; margin-bottom: 4px; }
.contact-item a, .contact-item span { font-size: 0.95rem; color: var(--white); line-height: 1.5; }
.contact-item a:hover { color: var(--red); }
.contact-details .btn { margin-top: 8px; }

/* Form */
.contact-form-wrap { background: var(--white); border-radius: var(--radius-lg); padding: 40px; }
.contact-form h3 { font-size: 1.2rem; font-weight: 700; margin-bottom: 24px; color: var(--black); }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-group { display: flex; flex-direction: column; gap: 6px; margin-bottom: 16px; }
.form-group label { font-size: 0.8rem; font-weight: 600; color: var(--dark-grey); }
.form-group input, .form-group textarea, .form-group select {
  padding: 11px 14px; border: 1.5px solid #ddd; border-radius: var(--radius);
  font-size: 0.9rem; color: var(--black); background: var(--white);
  transition: border-color var(--transition);
  outline: none;
}
.form-group input:focus, .form-group textarea:focus, .form-group select:focus { border-color: var(--red); }
.form-group textarea { resize: vertical; min-height: 100px; }
.form-note { font-size: 0.75rem; color: var(--mid-grey); text-align: center; margin-top: 10px; }

/* =============================================
   FOOTER
   ============================================= */
.footer { background: #0a0a0a; color: var(--white); padding: 60px 0 0; }
.footer-grid { display: grid; grid-template-columns: 1.8fr 1fr 1fr 1.2fr; gap: 48px; margin-bottom: 48px; }
.footer-logo { height: 104px; width: auto; margin-bottom: 16px; }
.footer-brand p { font-size: 0.875rem; color: #888; line-height: 1.7; max-width: 280px; margin-bottom: 20px; }
.footer-socials { display: flex; gap: 10px; }
.footer-social-icon {
  display: inline-flex; align-items: center; justify-content: center;
  width: 44px; height: 44px; border-radius: 50%;
  background: rgba(255,255,255,0.1); color: var(--white);
  transition: all var(--transition);
}
.footer-social-icon:hover { background: var(--red); transform: scale(1.1); }
.footer-col h4 { font-size: 0.85rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.1em; color: var(--white); margin-bottom: 20px; }
.footer-col ul { display: flex; flex-direction: column; gap: 8px; }
.footer-col li, .footer-col a { font-size: 0.875rem; color: #888; transition: color var(--transition); }
.footer-col a:hover { color: var(--red); }
.footer-quote-btn { margin-top: 20px; }
.footer-col .footer-quote-btn { color: var(--white); }
.footer-col .footer-quote-btn:hover { color: var(--black); }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.08);
  padding: 20px 0; text-align: center;
  font-size: 0.8rem; color: #555;
}

/* =============================================
   WHATSAPP FLOAT
   ============================================= */
.wa-float {
  position: fixed; bottom: 28px; right: 28px; z-index: 999;
  display: flex; align-items: center; gap: 10px;
  background: var(--red); color: var(--white);
  border-radius: var(--radius); padding: 14px 20px;
  box-shadow: 0 4px 16px rgba(0,0,0,0.22);
  transition: all 0.3s ease;
  font-weight: 600; font-size: 0.9rem;
}
.wa-float:hover { background: var(--red); transform: translateY(-3px) scale(1.05); box-shadow: 0 6px 20px rgba(0,0,0,0.28); }
.wa-float-label { white-space: nowrap; }

/* =============================================
   SCROLL ANIMATIONS
   ============================================= */
.reveal {
  opacity: 0; transform: translateY(30px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
.reveal.visible { opacity: 1; transform: translateY(0); }
.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }
.reveal-delay-4 { transition-delay: 0.4s; }
.reveal-delay-5 { transition-delay: 0.5s; }

/* =============================================
   RESPONSIVE — TABLET (max 1024px)
   ============================================= */
@media (max-width: 1024px) {
  .about-grid { gap: 40px; }
  .contact-grid { grid-template-columns: 1fr; gap: 48px; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 32px; }
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .process-steps { flex-wrap: wrap; justify-content: center; }
  .process-step { min-width: 180px; max-width: 220px; }
  .step-connector { display: none; }
}

/* =============================================
   RESPONSIVE — MOBILE (max 768px)
   ============================================= */
@media (max-width: 768px) {
  :root { --header-h: 64px; }
  .section { padding: 60px 0; }

  /* Header / Nav */
  .nav {
    position: fixed; top: var(--header-h); left: 0; right: 0;
    background: var(--white); flex-direction: column; align-items: stretch;
    padding: 20px; gap: 4px;
    transform: translateY(-110%); opacity: 0;
    transition: transform var(--transition), opacity var(--transition);
    box-shadow: var(--shadow);
  }
  .nav.open { transform: translateY(0); opacity: 1; }
  .nav a { color: var(--dark-grey) !important; padding: 12px 16px; border-radius: var(--radius); font-size: 1rem; }
  .nav a:hover { background: var(--light-grey); }
  .header-wa { display: none; }
  .hamburger { display: flex; }
  .logo img { height: 44px; }
  .header-inner { width: 100%; }

  /* Hero */
  .hero-content h1 { font-size: 2.6rem; }
  .hero-ctas { flex-direction: column; align-items: center; }
  .hero-ctas .btn { width: 100%; max-width: 320px; justify-content: center; }

  /* Trust bar */
  .trust-sep { display: none; }
  .trust-item { padding: 4px 12px; font-size: 0.78rem; }

  /* Services */
  .services-grid { grid-template-columns: 1fr; }

  /* About */
  .about-grid { grid-template-columns: 1fr; gap: 32px; }
  .about-img-wrap img { height: 280px; min-height: 0; }
  .about-badge { right: 16px; }

  /* Process */
  .step-body h3 { white-space: normal; font-size: 0.95rem; }
  .process-step { min-width: 150px; max-width: 190px; padding: 0 12px; }

  /* Audience */
  .audience-grid { grid-template-columns: 1fr; }

  /* Projects */
  .projects-grid { grid-template-columns: 1fr; grid-template-rows: unset; }
  .project-card { min-height: 240px; }
  .project-card.proj-featured { grid-column: 1; min-height: 280px; }

  /* Contact */
  .contact-section .section-sub { white-space: normal; }
  .form-row { grid-template-columns: 1fr; }

  /* Footer */
  .footer-grid { grid-template-columns: 1fr; gap: 32px; }
  .footer-logo { height: 64px; }
  .footer { padding: 40px 0 0; }

  /* WA Float */
  .wa-float-label { display: none; }
  .wa-float { padding: 14px 16px; border-radius: var(--radius); right: 16px; bottom: max(20px, calc(env(safe-area-inset-bottom, 0px) + 16px)); }
}

@media (max-width: 480px) {
  .section { padding: 48px 0; }
  .hero-content { padding: 48px 16px 60px; }
  .hero-content h1 { font-size: 2.2rem; }
  .hero-ctas .btn { max-width: 100%; }
  .section-head { margin-bottom: 40px; }
  .section-head h2 { font-size: 1.7rem; }
  .trust-item { font-size: 0.74rem; padding: 4px 8px; }
  .audience-card { padding: 28px 20px; }
  .contact-form-wrap { padding: 24px 16px; }
  .testimonial-card { padding: 28px 20px; }
  .testimonial-card p { font-size: 0.95rem; }
  .reviews-cta { gap: 16px; }
  .footer-bottom { padding: 16px 0; font-size: 0.72rem; }
}
