/* ============================================================
   Joy Cleaning Services — Global Stylesheet
   ============================================================ */

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

/* ── Reset ───────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  color: #1a2235;
  line-height: 1.65;
  background: #fff;
}
a { text-decoration: none; color: inherit; }
ul { list-style: none; }
img { max-width: 100%; display: block; }

/* ── Design Tokens ───────────────────────────────────────── */
:root {
  --navy:        #1B3A6B;
  --navy-dark:   #0F2447;
  --navy-mid:    #2558A8;
  --white:       #FFFFFF;
  --off-white:   #F7F9FC;
  --gray-light:  #E4EAF2;
  --gray:        #6B7A99;
  --text:        #1a2235;
  --green:       #2ECC71;
  --blue-light:  #63B3ED;
  --max-w:       1100px;
  --r:           8px;
  --shadow:      0 4px 24px rgba(27,58,107,0.10);
  --shadow-lg:   0 8px 40px rgba(27,58,107,0.15);
  --t:           0.22s ease;
}

/* ── Typography ──────────────────────────────────────────── */
h1 { font-size: clamp(2rem, 5vw, 3.4rem); font-weight: 800; line-height: 1.18; }
h2 { font-size: clamp(1.6rem, 3vw, 2.4rem); font-weight: 700; line-height: 1.25; }
h3 { font-size: 1.2rem; font-weight: 600; }
p  { color: #4a5568; }

/* ── Layout Utilities ────────────────────────────────────── */
.container { max-width: var(--max-w); margin: 0 auto; padding: 0 1.5rem; }
.section    { padding: 5rem 0; }
.section--light { background: var(--off-white); }
.section--navy  { background: var(--navy); }

.section-label {
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--navy-mid);
  margin-bottom: 0.5rem;
  display: block;
}
.section--navy .section-label { color: rgba(255,255,255,0.55); }
.section-title   { margin-bottom: 0.75rem; }
.section-subtitle {
  max-width: 580px;
  font-size: 1.05rem;
  margin-bottom: 3rem;
  line-height: 1.7;
}

/* ── Buttons ─────────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.85rem 1.75rem;
  border-radius: var(--r);
  font-weight: 600;
  font-size: 0.95rem;
  cursor: pointer;
  border: none;
  transition: all var(--t);
  white-space: nowrap;
}
.btn--white  { background: var(--white); color: var(--navy); }
.btn--white:hover  { background: var(--off-white); transform: translateY(-2px); box-shadow: var(--shadow); }
.btn--navy   { background: var(--navy); color: var(--white); }
.btn--navy:hover   { background: var(--navy-dark); transform: translateY(-2px); box-shadow: var(--shadow); }
.btn--outline {
  background: transparent;
  color: var(--white);
  border: 2px solid rgba(255,255,255,0.45);
}
.btn--outline:hover { border-color: var(--white); background: rgba(255,255,255,0.09); }
.btn svg { width: 18px; height: 18px; flex-shrink: 0; }

/* ── Navigation ──────────────────────────────────────────── */
.nav {
  background: var(--white);
  border-bottom: 1px solid var(--gray-light);
  position: sticky;
  top: 0;
  z-index: 200;
}
.nav__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 68px;
}
.nav__logo {
  font-weight: 800;
  font-size: 1.2rem;
  color: var(--navy);
  display: flex;
  align-items: center;
  gap: 0.55rem;
  flex-shrink: 0;
}
.nav__logo-icon {
  width: 36px; height: 36px;
  background: var(--navy);
  border-radius: var(--r);
  display: flex; align-items: center; justify-content: center;
  color: var(--white);
}
.nav__logo-icon svg { width: 20px; height: 20px; }
.nav__logo span { color: var(--navy-mid); font-weight: 400; }

.nav__links {
  display: flex;
  align-items: center;
  gap: 1.75rem;
}
.nav__links a {
  color: var(--text);
  font-weight: 500;
  font-size: 0.9rem;
  transition: color var(--t);
}
.nav__links a:hover, .nav__links a.active { color: var(--navy-mid); }

.nav__cta {
  background: var(--navy) !important;
  color: var(--white) !important;
  padding: 0.55rem 1.2rem !important;
  border-radius: var(--r);
}
.nav__cta:hover { background: var(--navy-dark) !important; }

.nav__toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  background: none;
  border: none;
  padding: 6px;
}
.nav__toggle span {
  display: block; width: 24px; height: 2px;
  background: var(--navy);
  border-radius: 2px;
  transition: var(--t);
}
.nav__toggle.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav__toggle.open span:nth-child(2) { opacity: 0; }
.nav__toggle.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.nav__mobile {
  display: none;
  flex-direction: column;
  border-top: 1px solid var(--gray-light);
  background: var(--white);
}
.nav__mobile.open { display: flex; }
.nav__mobile a {
  padding: 0.85rem 1.5rem;
  border-bottom: 1px solid var(--gray-light);
  color: var(--text);
  font-weight: 500;
  font-size: 0.95rem;
}
.nav__mobile a:last-child { border-bottom: none; }
.nav__mobile a:hover { background: var(--off-white); color: var(--navy-mid); }

/* ── Hero ────────────────────────────────────────────────── */
.hero {
  background: linear-gradient(135deg, var(--navy-dark) 0%, var(--navy) 55%, #1e4d96 100%);
  color: var(--white);
  padding: 7rem 0 6rem;
  position: relative;
  overflow: hidden;
}
.hero::before {
  content: '';
  position: absolute;
  top: -30%; right: -10%;
  width: 550px; height: 550px;
  background: rgba(255,255,255,0.03);
  border-radius: 50%;
}
.hero::after {
  content: '';
  position: absolute;
  bottom: -20%; left: -5%;
  width: 350px; height: 350px;
  background: rgba(255,255,255,0.02);
  border-radius: 50%;
}
.hero__content { position: relative; z-index: 1; max-width: 680px; }
.hero__badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(255,255,255,0.1);
  border: 1px solid rgba(255,255,255,0.2);
  padding: 0.4rem 1rem;
  border-radius: 50px;
  font-size: 0.82rem;
  font-weight: 600;
  margin-bottom: 1.5rem;
  letter-spacing: 0.04em;
}
.hero__badge svg { width: 14px; height: 14px; color: var(--green); }
.hero h1 { margin-bottom: 1.25rem; }
.hero h1 span { color: var(--blue-light); }
.hero > .container > .hero__content > p {
  font-size: 1.15rem;
  color: rgba(255,255,255,0.82);
  margin-bottom: 2.5rem;
  max-width: 540px;
  line-height: 1.75;
}
.hero__actions { display: flex; gap: 1rem; flex-wrap: wrap; }
.hero__phone {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  margin-top: 2.5rem;
  font-size: 0.9rem;
  color: rgba(255,255,255,0.65);
}
.hero__phone a {
  color: var(--white);
  font-weight: 700;
  font-size: 1.1rem;
}
.hero__phone svg { width: 16px; height: 16px; }

/* ── Trust Bar ───────────────────────────────────────────── */
.trust {
  background: var(--navy-dark);
  padding: 1.2rem 0;
  border-bottom: 1px solid rgba(255,255,255,0.05);
}
.trust__inner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 2.5rem;
  flex-wrap: wrap;
}
.trust__item {
  display: flex;
  align-items: center;
  gap: 0.55rem;
  color: rgba(255,255,255,0.8);
  font-size: 0.85rem;
  font-weight: 500;
}
.trust__item svg { width: 16px; height: 16px; color: var(--blue-light); flex-shrink: 0; }

/* ── Feature Cards ───────────────────────────────────────── */
.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(270px, 1fr));
  gap: 1.5rem;
  margin-top: 3rem;
}
.feature-card {
  background: var(--white);
  border-radius: var(--r);
  padding: 2rem;
  box-shadow: var(--shadow);
  border: 1px solid var(--gray-light);
  transition: transform var(--t), box-shadow var(--t);
}
.feature-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }
.feature-card__icon {
  width: 50px; height: 50px;
  background: var(--off-white);
  border-radius: var(--r);
  display: flex; align-items: center; justify-content: center;
  color: var(--navy);
  margin-bottom: 1.25rem;
}
.feature-card__icon svg { width: 26px; height: 26px; }
.feature-card h3 { margin-bottom: 0.45rem; color: var(--text); }
.feature-card p  { font-size: 0.9rem; line-height: 1.7; }

/* ── Service Cards ───────────────────────────────────────── */
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 2rem;
  margin-top: 3rem;
}
.service-card {
  border-radius: var(--r);
  overflow: hidden;
  box-shadow: var(--shadow);
  border: 1px solid var(--gray-light);
  background: var(--white);
  display: flex;
  flex-direction: column;
  transition: transform var(--t), box-shadow var(--t);
}
.service-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }
.service-card__header {
  background: var(--navy);
  color: var(--white);
  padding: 2.25rem 2rem;
  display: flex;
  align-items: center;
  gap: 1.25rem;
}
.service-card__header-icon {
  width: 56px; height: 56px;
  background: rgba(255,255,255,0.12);
  border-radius: var(--r);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.service-card__header-icon svg { width: 30px; height: 30px; color: var(--white); }
.service-card__header h3 { font-size: 1.35rem; color: var(--white); margin-bottom: 0.2rem; }
.service-card__header p  { font-size: 0.85rem; color: rgba(255,255,255,0.7); margin: 0; }
.service-card__body { padding: 2rem; flex: 1; }
.service-card__body > p { margin-bottom: 1.25rem; font-size: 0.95rem; }
.service-list { display: flex; flex-direction: column; gap: 0.6rem; }
.service-list li {
  display: flex;
  align-items: flex-start;
  gap: 0.65rem;
  font-size: 0.9rem;
  color: #4a5568;
}
.service-list li svg {
  width: 17px; height: 17px;
  color: var(--navy);
  flex-shrink: 0;
  margin-top: 3px;
}
.service-card__footer { padding: 1.5rem 2rem; border-top: 1px solid var(--gray-light); }

/* ── Area Chips ──────────────────────────────────────────── */
.areas-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  gap: 1rem;
  margin-top: 2.5rem;
}
.area-chip {
  background: rgba(255,255,255,0.07);
  border: 1px solid rgba(255,255,255,0.18);
  border-radius: var(--r);
  padding: 1rem 1.25rem;
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-weight: 500;
  font-size: 0.92rem;
  color: var(--white);
  transition: background var(--t);
}
.area-chip:hover { background: rgba(255,255,255,0.12); }
.area-chip svg { width: 18px; height: 18px; color: var(--blue-light); flex-shrink: 0; }
.area-chip--primary { border-color: var(--blue-light); background: rgba(99,179,237,0.08); }

/* ── Stats ───────────────────────────────────────────────── */
.stats-row {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
  gap: 2rem;
  margin: 3rem 0;
  text-align: center;
}
.stat__number {
  font-size: 2.8rem;
  font-weight: 800;
  color: var(--navy);
  line-height: 1;
}
.stat__label { color: var(--gray); font-size: 0.88rem; margin-top: 0.3rem; }

/* ── CTA Banner ──────────────────────────────────────────── */
.cta-banner {
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-mid) 100%);
  color: var(--white);
  padding: 5.5rem 0;
  text-align: center;
}
.cta-banner h2 { color: var(--white); margin-bottom: 0.75rem; }
.cta-banner p { color: rgba(255,255,255,0.8); font-size: 1.05rem; max-width: 500px; margin: 0 auto 2rem; }
.cta-phone {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.6rem;
  color: var(--white);
  font-size: 1.85rem;
  font-weight: 800;
  margin-bottom: 1.75rem;
  transition: color var(--t);
}
.cta-phone:hover { color: var(--blue-light); }
.cta-phone svg { width: 28px; height: 28px; }

/* ── About Page ──────────────────────────────────────────── */
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}
.about-visual {
  background: var(--navy);
  border-radius: var(--r);
  padding: 2.5rem;
  display: flex;
  flex-direction: column;
  gap: 1.75rem;
}
.about-item {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
}
.about-item__icon {
  width: 46px; height: 46px;
  background: rgba(255,255,255,0.1);
  border-radius: var(--r);
  display: flex; align-items: center; justify-content: center;
  color: var(--white);
  flex-shrink: 0;
}
.about-item__icon svg { width: 22px; height: 22px; }
.about-item strong { display: block; color: var(--white); font-size: 1rem; margin-bottom: 0.2rem; }
.about-item p { color: rgba(255,255,255,0.7); font-size: 0.88rem; margin: 0; line-height: 1.55; }

.about-text { }
.about-text p { margin-bottom: 1.1rem; line-height: 1.8; }
.badge-insured {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: #edf7ed;
  border: 1px solid #a8d5a8;
  color: #1a7a1a;
  padding: 0.55rem 1.2rem;
  border-radius: 50px;
  font-size: 0.82rem;
  font-weight: 700;
  margin-top: 0.5rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}
.badge-insured svg { width: 15px; height: 15px; }

.values-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 1.5rem;
  margin-top: 3rem;
}
.value-card {
  background: var(--white);
  border: 1px solid var(--gray-light);
  border-radius: var(--r);
  padding: 1.75rem;
  box-shadow: var(--shadow);
}
.value-card__icon {
  width: 46px; height: 46px;
  background: var(--navy);
  border-radius: var(--r);
  display: flex; align-items: center; justify-content: center;
  color: var(--white);
  margin-bottom: 1rem;
}
.value-card__icon svg { width: 22px; height: 22px; }
.value-card h3 { margin-bottom: 0.4rem; font-size: 1.05rem; }
.value-card p  { font-size: 0.88rem; line-height: 1.65; }

/* ── Contact ─────────────────────────────────────────────── */
.contact-layout {
  display: grid;
  grid-template-columns: 1fr 1.6fr;
  gap: 4rem;
  align-items: start;
}
.contact-info h2 { margin-bottom: 0.75rem; }
.contact-info > p { margin-bottom: 2rem; line-height: 1.75; }
.contact-detail {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  margin-bottom: 1.75rem;
}
.contact-detail__icon {
  width: 44px; height: 44px;
  background: var(--navy);
  border-radius: var(--r);
  display: flex; align-items: center; justify-content: center;
  color: var(--white);
  flex-shrink: 0;
}
.contact-detail__icon svg { width: 20px; height: 20px; }
.contact-detail strong { display: block; color: var(--text); font-size: 0.82rem; text-transform: uppercase; letter-spacing: 0.07em; margin-bottom: 0.2rem; }
.contact-detail a, .contact-detail span { color: var(--navy); font-weight: 600; font-size: 1.05rem; }
.contact-detail span.sub { color: var(--gray); font-weight: 400; font-size: 0.88rem; display: block; margin-top: 0.15rem; }

.form-card {
  background: var(--white);
  border-radius: var(--r);
  padding: 2.5rem;
  box-shadow: var(--shadow-lg);
  border: 1px solid var(--gray-light);
}
.form-card h3 { margin-bottom: 0.3rem; }
.form-card > p { font-size: 0.88rem; color: var(--gray); margin-bottom: 2rem; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.form-group { margin-bottom: 1.15rem; }
.form-group label {
  display: block;
  font-weight: 600;
  font-size: 0.82rem;
  color: var(--text);
  margin-bottom: 0.4rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 0.75rem 1rem;
  border: 1.5px solid var(--gray-light);
  border-radius: var(--r);
  font-size: 0.92rem;
  font-family: inherit;
  color: var(--text);
  background: var(--off-white);
  outline: none;
  transition: border-color var(--t), box-shadow var(--t), background var(--t);
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--navy-mid);
  box-shadow: 0 0 0 3px rgba(37,88,168,0.1);
  background: var(--white);
}
.form-group textarea { resize: vertical; min-height: 130px; }
.form-group select {
  appearance: none;
  cursor: pointer;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='%236B7A99' stroke-width='2.5' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'%3E%3C/polyline%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 1rem center;
  padding-right: 2.5rem;
}
.form-success {
  display: none;
  text-align: center;
  padding: 2rem;
}
.form-success__icon {
  width: 64px; height: 64px;
  background: #edf7ed;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 1rem;
  color: #1a7a1a;
}
.form-success__icon svg { width: 32px; height: 32px; }
.form-success h3 { color: var(--text); margin-bottom: 0.5rem; }
.form-success p  { color: var(--gray); font-size: 0.92rem; }

/* ── Page Header ─────────────────────────────────────────── */
.page-header {
  background: linear-gradient(135deg, var(--navy-dark) 0%, var(--navy) 100%);
  color: var(--white);
  padding: 4rem 0;
}
.page-header h1 { font-size: clamp(1.85rem, 4vw, 2.8rem); margin-bottom: 0.5rem; }
.page-header p  { color: rgba(255,255,255,0.78); font-size: 1.05rem; max-width: 520px; }
.breadcrumb {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.8rem;
  color: rgba(255,255,255,0.55);
  margin-bottom: 1rem;
}
.breadcrumb a { color: rgba(255,255,255,0.55); }
.breadcrumb a:hover { color: var(--white); }
.breadcrumb-sep { color: rgba(255,255,255,0.3); }

/* ── Services Detail ─────────────────────────────────────── */
.service-detail {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: start;
}
.service-detail + .service-detail { margin-top: 5rem; padding-top: 5rem; border-top: 1px solid var(--gray-light); }
.service-detail--reverse { }
.service-detail--reverse .service-detail__visual { order: 2; }
.service-detail--reverse .service-detail__text   { order: 1; }
.service-detail__visual {
  background: var(--navy);
  border-radius: var(--r);
  padding: 3.5rem 2.5rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}
.service-detail__visual svg { width: 80px; height: 80px; color: rgba(255,255,255,0.85); margin-bottom: 1.5rem; }
.service-detail__visual h3 { color: var(--white); font-size: 1.4rem; margin-bottom: 0.5rem; }
.service-detail__visual p { color: rgba(255,255,255,0.7); font-size: 0.9rem; max-width: 220px; }
.service-detail__text h2 { margin-bottom: 1rem; }
.service-detail__text p  { margin-bottom: 1.5rem; line-height: 1.8; }

/* ── Areas Page ──────────────────────────────────────────── */
.area-note {
  background: var(--off-white);
  border: 1px solid var(--gray-light);
  border-radius: var(--r);
  padding: 1.5rem 2rem;
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  margin-top: 3rem;
}
.area-note svg { width: 22px; height: 22px; color: var(--navy-mid); flex-shrink: 0; margin-top: 2px; }
.area-note p { font-size: 0.92rem; margin: 0; }

/* ── Footer ──────────────────────────────────────────────── */
.footer {
  background: var(--navy-dark);
  color: rgba(255,255,255,0.75);
  padding: 4rem 0 2rem;
}
.footer__grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 3rem;
  margin-bottom: 3rem;
}
.footer__logo {
  font-size: 1.2rem;
  font-weight: 800;
  color: var(--white);
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 1rem;
}
.footer__logo-icon {
  width: 32px; height: 32px;
  background: rgba(255,255,255,0.1);
  border-radius: 6px;
  display: flex; align-items: center; justify-content: center;
}
.footer__logo-icon svg { width: 18px; height: 18px; color: var(--blue-light); }
.footer__desc { font-size: 0.88rem; line-height: 1.75; max-width: 280px; }
.footer__phone {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--white);
  font-weight: 700;
  font-size: 1rem;
  margin-top: 1.25rem;
}
.footer__phone svg { width: 15px; height: 15px; color: var(--blue-light); }
.footer h4 {
  color: var(--white);
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 1.25rem;
}
.footer__links { display: flex; flex-direction: column; gap: 0.55rem; }
.footer__links a {
  color: rgba(255,255,255,0.65);
  font-size: 0.88rem;
  transition: color var(--t);
}
.footer__links a:hover { color: var(--white); }
.footer__bottom {
  border-top: 1px solid rgba(255,255,255,0.08);
  padding-top: 2rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1rem;
  font-size: 0.82rem;
  color: rgba(255,255,255,0.4);
}

/* ── Responsive ──────────────────────────────────────────── */
@media (max-width: 900px) {
  .about-grid,
  .contact-layout,
  .service-detail { grid-template-columns: 1fr; gap: 2.5rem; }
  .service-detail--reverse .service-detail__visual,
  .service-detail--reverse .service-detail__text { order: unset; }
}

@media (max-width: 768px) {
  .nav__links  { display: none; }
  .nav__toggle { display: flex; }
  .section     { padding: 3.5rem 0; }
  .hero        { padding: 4.5rem 0 3.5rem; }
  .form-row    { grid-template-columns: 1fr; }
  .footer__grid { grid-template-columns: 1fr; gap: 2rem; }
  .footer__desc { max-width: 100%; }
  .trust__inner { gap: 1.5rem; }
  .stats-row   { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 520px) {
  .features-grid { grid-template-columns: 1fr; }
  .hero__actions { flex-direction: column; }
  .hero__actions .btn { justify-content: center; }
  .cta-phone { font-size: 1.5rem; }
  .areas-grid { grid-template-columns: 1fr 1fr; }
}
