/* ==========================================================================
   UNITECH AC · Service Brand · Hyderabad
   Modern professional service brand identity
   ========================================================================== */

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
img, svg { display: block; max-width: 100%; }
button { border: none; background: none; cursor: pointer; font: inherit; color: inherit; }
input, select, textarea { font: inherit; color: inherit; }
a { color: inherit; text-decoration: none; }
ul, ol { list-style: none; }

/* ---------- TOKENS ---------- */
:root {
  /* Brand */
  --brand:        #0066FF;      /* Primary electric blue */
  --brand-dark:   #0052CC;
  --brand-light:  #E8F0FE;
  --brand-grad:   linear-gradient(135deg, #0066FF 0%, #00B4FF 100%);

  /* Warm accent */
  --orange:       #FF7A2D;
  --orange-dark:  #E55A0B;
  --orange-light: #FFF1E8;
  --amber:        #FFB800;
  --amber-grad:   linear-gradient(135deg, #FF7A2D 0%, #FFB800 100%);

  /* Trust green */
  --green:        #00C853;
  --green-light:  #E6F8EE;

  /* Surfaces */
  --white:        #FFFFFF;
  --bg:           #FFFFFF;
  --bg-soft:      #F7F9FC;
  --bg-blue:      #F0F6FF;
  --bg-dark:      #0A1F44;
  --bg-darker:    #051430;

  /* Ink */
  --ink:          #0A1F44;
  --ink-2:        #1E2D4D;
  --ink-mute:     #5A6B7C;
  --ink-soft:     #8A95A6;
  --line:         #E5EAF0;
  --line-soft:    #F0F3F8;

  /* Type */
  --display:      'Manrope', system-ui, sans-serif;
  --body:         'Inter', system-ui, sans-serif;

  /* Layout */
  --container:    1240px;
  --gutter:       24px;
  --radius:       16px;
  --radius-sm:    10px;

  /* Shadows */
  --shadow-sm:    0 2px 8px rgba(10, 31, 68, 0.06);
  --shadow:       0 12px 32px -8px rgba(10, 31, 68, 0.12);
  --shadow-lg:    0 24px 48px -12px rgba(10, 31, 68, 0.18);
  --shadow-blue:  0 12px 32px -8px rgba(0, 102, 255, 0.35);
  --shadow-orange:0 12px 32px -8px rgba(255, 122, 45, 0.4);
}

body {
  font-family: var(--body);
  font-size: 16px;
  line-height: 1.6;
  color: var(--ink);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

.container {
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 var(--gutter);
}

::selection { background: var(--brand); color: #fff; }

::-webkit-scrollbar { width: 10px; }
::-webkit-scrollbar-track { background: var(--bg-soft); }
::-webkit-scrollbar-thumb { background: var(--brand); border-radius: 10px; }

/* ---------- TYPOGRAPHY ---------- */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--display);
  font-weight: 700;
  line-height: 1.15;
  letter-spacing: -0.025em;
  color: var(--ink);
}

.grad {
  background: var(--brand-grad);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  color: transparent;
}
.grad-amber {
  background: var(--amber-grad);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  color: transparent;
}

.kicker {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--display);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--brand);
  padding: 6px 14px;
  background: var(--brand-light);
  border-radius: 100px;
  margin-bottom: 20px;
}

.section-head {
  text-align: center;
  max-width: 720px;
  margin: 0 auto 64px;
}
.section-head.light .kicker {
  color: var(--brand-light);
  background: rgba(255, 255, 255, 0.1);
}

.section-title {
  font-family: var(--display);
  font-size: clamp(2rem, 4vw, 3.2rem);
  font-weight: 800;
  letter-spacing: -0.035em;
  line-height: 1.1;
  margin-bottom: 18px;
  color: var(--ink);
}
.section-head.light .section-title { color: #fff; }
.section-head.light .section-sub { color: rgba(255, 255, 255, 0.75); }

.section-sub {
  font-size: 1.08rem;
  color: var(--ink-mute);
  line-height: 1.65;
}

/* ---------- BUTTONS ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 16px 28px;
  border-radius: 100px;
  font-family: var(--display);
  font-size: 0.95rem;
  font-weight: 700;
  letter-spacing: -0.005em;
  cursor: pointer;
  transition: all 0.25s cubic-bezier(.34, 1.56, .64, 1);
  white-space: nowrap;
}
.btn-primary {
  background: var(--brand);
  color: #fff;
  box-shadow: var(--shadow-blue);
}
.btn-primary:hover {
  background: var(--brand-dark);
  transform: translateY(-2px);
  box-shadow: 0 16px 36px -8px rgba(0, 102, 255, 0.5);
}
.btn-secondary {
  background: var(--white);
  color: var(--ink);
  border: 1px solid var(--line);
}
.btn-secondary:hover {
  border-color: var(--brand);
  color: var(--brand);
  transform: translateY(-2px);
}
.btn-white {
  background: var(--white);
  color: var(--ink);
}
.btn-white:hover { transform: translateY(-2px); box-shadow: var(--shadow-lg); }

.btn-wa {
  background: #25D366;
  color: #fff;
  box-shadow: 0 8px 24px rgba(37, 211, 102, 0.4);
}
.btn-wa:hover { background: #1DA851; transform: translateY(-2px); }

.btn.full { width: 100%; }

/* ---------- TOP BAR ---------- */
.top-bar {
  background: var(--bg-dark);
  color: rgba(255, 255, 255, 0.85);
  font-size: 0.8rem;
}
.top-bar-inner {
  max-width: var(--container);
  margin: 0 auto;
  padding: 10px var(--gutter);
  display: flex;
  align-items: center;
  gap: 32px;
}
.tb-item {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}
.tb-item svg { opacity: 0.7; }
.tb-rating {
  margin-left: auto;
  color: var(--amber);
}
.tb-rating b { color: var(--amber); }

/* ---------- NAV ---------- */
.nav {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: saturate(180%) blur(20px);
  -webkit-backdrop-filter: saturate(180%) blur(20px);
  border-bottom: 1px solid var(--line);
}
.nav-inner {
  max-width: var(--container);
  margin: 0 auto;
  padding: 16px var(--gutter);
  display: flex;
  align-items: center;
  gap: 32px;
}

.logo {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  margin-right: auto;
}
.logo-mark { filter: drop-shadow(0 6px 14px rgba(0, 102, 255, 0.25)); }
.logo-text {
  display: flex;
  flex-direction: column;
  line-height: 1;
}
.logo-text b {
  font-family: var(--display);
  font-weight: 800;
  font-size: 1.25rem;
  letter-spacing: -0.03em;
  color: var(--ink);
}
.logo-text b span { color: var(--brand); }
.logo-text small {
  font-family: var(--body);
  font-size: 0.68rem;
  font-weight: 500;
  letter-spacing: 0.06em;
  color: var(--ink-mute);
  margin-top: 4px;
  text-transform: uppercase;
}

.nav-menu {
  display: flex;
  align-items: center;
  gap: 32px;
}
.nav-menu a {
  font-family: var(--body);
  font-size: 0.92rem;
  font-weight: 600;
  color: var(--ink-2);
  position: relative;
  transition: color 0.2s;
}
.nav-menu a:hover { color: var(--brand); }
.nav-menu a::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: -6px;
  width: 0;
  height: 2px;
  background: var(--brand);
  transition: width 0.25s;
}
.nav-menu a:hover::after { width: 100%; }

.nav-actions {
  display: flex;
  align-items: center;
  gap: 16px;
}
.nav-phone {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 8px 14px;
  border-radius: 12px;
  background: var(--brand-light);
  color: var(--brand);
  transition: all 0.2s;
}
.nav-phone:hover { background: var(--brand); color: #fff; }
.nav-phone span { display: flex; flex-direction: column; line-height: 1.15; }
.nav-phone small {
  font-size: 0.66rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  opacity: 0.7;
}
.nav-phone b {
  font-family: var(--display);
  font-size: 0.92rem;
  font-weight: 700;
}

.nav-book {
  padding: 12px 22px;
  background: var(--orange);
  color: #fff;
  border-radius: 100px;
  font-family: var(--display);
  font-weight: 700;
  font-size: 0.9rem;
  box-shadow: var(--shadow-orange);
  transition: all 0.25s cubic-bezier(.34, 1.56, .64, 1);
}
.nav-book:hover {
  background: var(--orange-dark);
  transform: translateY(-2px);
}

.hamburger {
  display: none;
  flex-direction: column;
  justify-content: space-between;
  width: 24px;
  height: 18px;
}
.hamburger span {
  display: block;
  width: 100%;
  height: 2px;
  background: var(--ink);
  border-radius: 2px;
}

/* ===========================================================================
   HERO
   =========================================================================== */
.hero {
  padding: 64px 0 0;
  position: relative;
  overflow: hidden;
  background: linear-gradient(180deg, var(--bg) 0%, var(--bg-blue) 100%);
}
.hero::before {
  content: '';
  position: absolute;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(0, 102, 255, 0.08), transparent 70%);
  top: -200px;
  right: -200px;
  filter: blur(40px);
}
.hero::after {
  content: '';
  position: absolute;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(255, 122, 45, 0.06), transparent 70%);
  bottom: 100px;
  left: -200px;
  filter: blur(40px);
}

.hero-inner {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 var(--gutter) 60px;
  display: grid;
  grid-template-columns: 1.05fr 1fr;
  gap: 80px;
  align-items: center;
  position: relative;
}

.hero-content { padding-top: 24px; }

.hero-tag {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 8px 16px;
  background: var(--white);
  border: 1px solid var(--brand-light);
  border-radius: 100px;
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--brand);
  box-shadow: var(--shadow-sm);
  margin-bottom: 28px;
}
.hero-tag .dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--green);
  box-shadow: 0 0 10px var(--green);
  position: relative;
  animation: livePulse 1.8s ease-out infinite;
}
@keyframes livePulse {
  0%, 100% { box-shadow: 0 0 10px var(--green); }
  50% { box-shadow: 0 0 16px var(--green); }
}

.hero-title {
  font-family: var(--display);
  font-size: clamp(2.8rem, 6.2vw, 5rem);
  font-weight: 800;
  letter-spacing: -0.04em;
  line-height: 1.02;
  margin-bottom: 24px;
  color: var(--ink);
}

.hero-sub {
  font-size: 1.15rem;
  color: var(--ink-mute);
  line-height: 1.6;
  margin-bottom: 36px;
  max-width: 540px;
}

.hero-cta-group {
  display: flex;
  gap: 14px;
  margin-bottom: 40px;
  flex-wrap: wrap;
}

.hero-trust {
  display: flex;
  flex-wrap: wrap;
  gap: 14px 28px;
}
.hero-trust li {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.92rem;
  font-weight: 500;
  color: var(--ink-2);
}

/* Hero visual */
.hero-visual {
  position: relative;
}
.hero-image-wrap {
  position: relative;
  border-radius: var(--radius);
  overflow: visible;
}
.hero-image {
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  border-radius: var(--radius);
  box-shadow: var(--shadow-lg);
}

.float-card {
  position: absolute;
  background: var(--white);
  border-radius: 16px;
  padding: 16px 18px;
  box-shadow: var(--shadow-lg);
  display: flex;
  align-items: center;
  gap: 12px;
  animation: floatY 5s ease-in-out infinite;
}
@keyframes floatY {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-8px); }
}

.float-rating {
  top: 32px;
  left: -36px;
  z-index: 2;
}
.fc-stars {
  color: var(--amber);
  letter-spacing: 1px;
  font-size: 0.8rem;
}
.fc-content { display: flex; flex-direction: column; line-height: 1.15; }
.fc-content b {
  font-family: var(--display);
  font-size: 1.05rem;
  font-weight: 800;
  color: var(--ink);
}
.fc-content small {
  font-size: 0.7rem;
  color: var(--ink-mute);
}
.fc-google {
  width: 30px;
  height: 30px;
  display: grid;
  place-items: center;
  background: var(--bg-soft);
  border-radius: 8px;
  margin-left: auto;
}

.float-live {
  bottom: 80px;
  right: -28px;
  z-index: 2;
  animation-delay: -2.5s;
}
.float-live div { display: flex; flex-direction: column; line-height: 1.15; }
.float-live small {
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--ink-mute);
  font-weight: 600;
}
.float-live b {
  font-family: var(--display);
  font-size: 0.95rem;
  color: var(--ink);
  font-weight: 700;
  margin-top: 3px;
}
.fl-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--green);
  box-shadow: 0 0 12px var(--green);
  animation: livePulse 1.5s ease-in-out infinite;
}

.hero-badge {
  position: absolute;
  bottom: 24px;
  left: -28px;
  background: var(--orange);
  color: #fff;
  width: 110px;
  height: 110px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  text-align: center;
  box-shadow: var(--shadow-orange);
  transform: rotate(-8deg);
  z-index: 3;
}
.hero-badge span {
  display: block;
  font-family: var(--display);
  font-size: 2rem;
  font-weight: 800;
  line-height: 1;
}
.hero-badge small {
  display: block;
  font-size: 0.74rem;
  font-weight: 600;
  margin-top: 4px;
  line-height: 1.15;
  letter-spacing: 0.02em;
}

/* Stats strip below hero */
.stats-strip {
  max-width: var(--container);
  margin: 0 auto;
  padding: 36px var(--gutter);
  border-top: 1px solid var(--line);
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
}
.ss-item {
  text-align: center;
  padding: 8px 20px;
  border-right: 1px solid var(--line);
}
.ss-item:last-child { border-right: 0; }
.ss-item b {
  display: block;
  font-family: var(--display);
  font-size: 2.4rem;
  font-weight: 800;
  letter-spacing: -0.03em;
  background: var(--brand-grad);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  line-height: 1;
  margin-bottom: 6px;
}
.ss-item b i {
  font-style: normal;
  -webkit-text-fill-color: var(--amber);
  margin-left: 2px;
}
.ss-item small {
  font-size: 0.86rem;
  color: var(--ink-mute);
  font-weight: 500;
}

/* ===========================================================================
   SERVICES
   =========================================================================== */
.services {
  padding: 100px 0;
  background: var(--bg-soft);
}

.service-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.service-card {
  background: var(--white);
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--line);
  transition: all 0.3s cubic-bezier(.4, 0, .2, 1);
  display: flex;
  flex-direction: column;
}
.service-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
  border-color: transparent;
}

.sc-image {
  position: relative;
  height: 200px;
  overflow: hidden;
  background: var(--bg-blue);
}
.sc-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}
.service-card:hover .sc-image img { transform: scale(1.06); }

.sc-badge {
  position: absolute;
  top: 16px;
  left: 16px;
  padding: 6px 14px;
  background: var(--brand);
  color: #fff;
  font-family: var(--display);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  border-radius: 100px;
  box-shadow: var(--shadow-sm);
}
.sc-badge.accent { background: var(--orange); }
.sc-badge.save { background: var(--green); }

.sc-body {
  padding: 28px;
  display: flex;
  flex-direction: column;
  flex: 1;
}
.sc-body h3 {
  font-family: var(--display);
  font-size: 1.35rem;
  font-weight: 700;
  margin-bottom: 10px;
  color: var(--ink);
}
.sc-body > p {
  font-size: 0.92rem;
  color: var(--ink-mute);
  line-height: 1.55;
  margin-bottom: 18px;
}
.sc-body ul {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-bottom: 22px;
}
.sc-body ul li {
  position: relative;
  padding-left: 22px;
  font-size: 0.88rem;
  color: var(--ink-2);
  font-weight: 500;
}
.sc-body ul li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 7px;
  width: 14px;
  height: 8px;
  border-left: 2px solid var(--brand);
  border-bottom: 2px solid var(--brand);
  transform: rotate(-45deg);
}

.sc-link {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  margin-top: auto;
  font-family: var(--display);
  font-size: 0.92rem;
  font-weight: 700;
  color: var(--brand);
  transition: gap 0.25s;
}
.sc-link:hover { gap: 10px; }

/* ===========================================================================
   WHY US
   =========================================================================== */
.why {
  padding: 100px 0;
  background: var(--bg-dark);
  color: #fff;
  position: relative;
  overflow: hidden;
}
.why::before {
  content: '';
  position: absolute;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(0, 102, 255, 0.18), transparent 65%);
  top: -200px;
  right: -100px;
  filter: blur(40px);
}
.why::after {
  content: '';
  position: absolute;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(255, 122, 45, 0.12), transparent 70%);
  bottom: -200px;
  left: -100px;
  filter: blur(40px);
}

.why-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  position: relative;
}

.why-item {
  padding: 32px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--radius);
  transition: all 0.3s;
  backdrop-filter: blur(10px);
}
.why-item:hover {
  background: rgba(255, 255, 255, 0.07);
  border-color: var(--brand);
  transform: translateY(-4px);
}

.why-icon {
  width: 56px;
  height: 56px;
  display: grid;
  place-items: center;
  background: var(--brand-grad);
  color: #fff;
  border-radius: 14px;
  margin-bottom: 22px;
  box-shadow: var(--shadow-blue);
}

.why-item h4 {
  font-family: var(--display);
  font-size: 1.2rem;
  font-weight: 700;
  margin-bottom: 10px;
  color: #fff;
}
.why-item p {
  font-size: 0.92rem;
  color: rgba(255, 255, 255, 0.7);
  line-height: 1.6;
}

/* ===========================================================================
   PROCESS
   =========================================================================== */
.process {
  padding: 100px 0;
  background: var(--white);
}

.process-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  position: relative;
}

.ps-item {
  position: relative;
  padding: 32px 28px;
  background: var(--bg-soft);
  border-radius: var(--radius);
  text-align: center;
  transition: all 0.3s;
}
.ps-item:hover {
  background: var(--brand-light);
  transform: translateY(-4px);
}

.ps-num {
  font-family: var(--display);
  font-size: 4rem;
  font-weight: 800;
  letter-spacing: -0.05em;
  line-height: 1;
  background: var(--brand-grad);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  margin-bottom: 16px;
  opacity: 0.9;
}

.ps-icon {
  width: 56px;
  height: 56px;
  display: grid;
  place-items: center;
  background: var(--white);
  color: var(--brand);
  border-radius: 14px;
  margin: 0 auto 22px;
  box-shadow: var(--shadow-sm);
}

.ps-item h4 {
  font-family: var(--display);
  font-size: 1.15rem;
  font-weight: 700;
  margin-bottom: 10px;
  color: var(--ink);
}
.ps-item p {
  font-size: 0.88rem;
  color: var(--ink-mute);
  line-height: 1.55;
}

/* ===========================================================================
   REVIEWS
   =========================================================================== */
.reviews {
  padding: 100px 0;
  background: var(--bg-soft);
}

.review-summary {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 32px;
  margin-top: 32px;
  flex-wrap: wrap;
}
.rs-rating {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 16px 24px;
  background: var(--white);
  border-radius: 14px;
  box-shadow: var(--shadow-sm);
}
.rs-rating b {
  font-family: var(--display);
  font-size: 2.4rem;
  font-weight: 800;
  letter-spacing: -0.03em;
  line-height: 1;
  color: var(--ink);
}
.rs-rating span {
  color: var(--amber);
  letter-spacing: 2px;
  font-size: 1rem;
  margin-top: 4px;
}
.rs-meta {
  display: flex;
  flex-direction: column;
  text-align: left;
}
.rs-meta small {
  font-size: 0.78rem;
  color: var(--ink-mute);
  text-transform: uppercase;
  letter-spacing: 0.06em;
}
.rs-meta b {
  font-family: var(--display);
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--ink);
  margin-top: 4px;
}
.rs-link {
  font-family: var(--display);
  font-weight: 700;
  color: var(--brand);
  font-size: 0.92rem;
}
.rs-link:hover { text-decoration: underline; }

.reviews-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.review-card {
  padding: 28px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  transition: all 0.3s;
}
.review-card.featured {
  background: var(--bg-dark);
  color: #fff;
  border-color: var(--bg-dark);
}
.review-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow);
  border-color: var(--brand);
}

.rc-head {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 16px;
}
.rc-avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  color: #fff;
  font-family: var(--display);
  font-weight: 700;
  font-size: 0.85rem;
}
.rc-head > div:nth-child(2) {
  flex: 1;
  display: flex;
  flex-direction: column;
  line-height: 1.15;
}
.rc-head b {
  font-family: var(--display);
  font-size: 0.94rem;
  font-weight: 700;
  color: var(--ink);
}
.review-card.featured .rc-head b { color: #fff; }
.rc-head small {
  font-size: 0.75rem;
  color: var(--ink-mute);
  margin-top: 3px;
}
.review-card.featured .rc-head small { color: rgba(255, 255, 255, 0.6); }
.rc-stars {
  color: var(--amber);
  letter-spacing: 1px;
  font-size: 0.8rem;
}
.review-card p {
  font-size: 0.92rem;
  color: var(--ink-2);
  line-height: 1.55;
}
.review-card.featured p { color: rgba(255, 255, 255, 0.85); }

/* ===========================================================================
   CTA BANNER
   =========================================================================== */
.cta-banner {
  padding: 70px 0;
  background: var(--brand-grad);
  position: relative;
  overflow: hidden;
}
.cta-banner::before {
  content: '';
  position: absolute;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(255, 122, 45, 0.3), transparent 60%);
  top: -200px;
  right: -100px;
  filter: blur(40px);
}

.cta-inner {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 40px;
  align-items: center;
  position: relative;
  color: #fff;
}
.cta-left small {
  display: inline-block;
  padding: 6px 14px;
  background: rgba(255, 255, 255, 0.15);
  border-radius: 100px;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  margin-bottom: 16px;
}
.cta-left h3 {
  font-family: var(--display);
  font-size: clamp(1.8rem, 3.4vw, 2.6rem);
  font-weight: 800;
  letter-spacing: -0.03em;
  line-height: 1.1;
  margin-bottom: 10px;
  color: #fff;
}
.cta-left p {
  font-size: 0.95rem;
  color: rgba(255, 255, 255, 0.85);
}
.cta-right { display: flex; gap: 14px; flex-wrap: wrap; }

/* ===========================================================================
   AREAS
   =========================================================================== */
.areas {
  padding: 100px 0;
  background: var(--white);
}

.areas-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
}
.area-col {
  padding: 28px;
  background: var(--bg-soft);
  border-radius: var(--radius);
  transition: all 0.3s;
}
.area-col:hover {
  background: var(--brand-light);
  transform: translateY(-4px);
}
.area-col h5 {
  font-family: var(--display);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--brand);
  margin-bottom: 16px;
  padding-bottom: 12px;
  border-bottom: 2px solid var(--brand-light);
}
.area-col li {
  padding: 7px 0;
  font-size: 0.95rem;
  color: var(--ink-2);
  font-weight: 500;
  display: flex;
  align-items: center;
  gap: 10px;
}
.area-col li::before {
  content: '';
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--brand);
}

/* ===========================================================================
   CONTACT
   =========================================================================== */
.contact {
  padding: 100px 0;
  background: var(--bg-soft);
}
.contact-wrap {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: start;
}

.contact-info .kicker { margin-bottom: 20px; }
.contact-info .section-title { font-size: clamp(1.8rem, 3.4vw, 2.6rem); margin-bottom: 16px; }
.contact-info > p {
  font-size: 1.05rem;
  color: var(--ink-mute);
  margin-bottom: 40px;
}

.ci-list { display: flex; flex-direction: column; gap: 16px; }
.ci-item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  padding: 20px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
}
.ci-icon {
  flex-shrink: 0;
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  background: var(--brand-light);
  color: var(--brand);
  border-radius: 10px;
}
.ci-item small {
  display: block;
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--ink-mute);
  font-weight: 600;
  margin-bottom: 4px;
}
.ci-item b {
  display: block;
  font-family: var(--display);
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--ink);
  margin-bottom: 4px;
  line-height: 1.3;
}
.ci-item b a { color: var(--ink); }
.ci-item b a:hover { color: var(--brand); }
.ci-item span {
  display: block;
  font-size: 0.84rem;
  color: var(--ink-mute);
}

.contact-form {
  padding: 40px;
  background: var(--white);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  display: flex;
  flex-direction: column;
  gap: 18px;
}
.form-head { margin-bottom: 8px; }
.form-head h3 {
  font-family: var(--display);
  font-size: 1.65rem;
  font-weight: 800;
  margin-bottom: 6px;
  color: var(--ink);
  letter-spacing: -0.02em;
}
.form-head p {
  font-size: 0.92rem;
  color: var(--ink-mute);
}
.contact-form label {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.contact-form label > span {
  font-family: var(--display);
  font-size: 0.78rem;
  font-weight: 700;
  color: var(--ink-2);
  text-transform: uppercase;
  letter-spacing: 0.06em;
}
.contact-form input,
.contact-form select {
  padding: 14px 16px;
  background: var(--bg-soft);
  border: 1px solid var(--line);
  border-radius: 10px;
  color: var(--ink);
  font-family: var(--body);
  font-size: 0.95rem;
  transition: all 0.2s;
}
.contact-form input::placeholder { color: var(--ink-soft); }
.contact-form input:focus,
.contact-form select:focus {
  outline: none;
  border-color: var(--brand);
  background: var(--white);
  box-shadow: 0 0 0 4px rgba(0, 102, 255, 0.08);
}

.form-disclaimer {
  font-size: 0.78rem;
  color: var(--ink-mute);
  text-align: center;
  line-height: 1.5;
}

/* ===========================================================================
   FOOTER
   =========================================================================== */
.footer {
  background: var(--bg-darker);
  color: rgba(255, 255, 255, 0.7);
  padding: 80px 0 32px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr 1fr 1.2fr;
  gap: 48px;
  margin-bottom: 56px;
}

.logo.dark .logo-text b { color: #fff; }
.logo.dark .logo-text small { color: rgba(255, 255, 255, 0.5); }
.footer-brand .logo { margin-bottom: 20px; }
.footer-brand > p {
  font-size: 0.92rem;
  line-height: 1.6;
  margin-bottom: 22px;
  max-width: 320px;
}
.footer-social { display: flex; gap: 10px; }
.footer-social a {
  width: 38px;
  height: 38px;
  display: grid;
  place-items: center;
  background: rgba(255, 255, 255, 0.06);
  border-radius: 50%;
  color: #fff;
  transition: all 0.2s;
}
.footer-social a:hover {
  background: var(--brand);
  transform: translateY(-2px);
}

.footer-col h6 {
  font-family: var(--display);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--orange);
  margin-bottom: 22px;
}
.footer-col li {
  padding: 7px 0;
  font-size: 0.92rem;
}
.footer-col li a { color: rgba(255, 255, 255, 0.7); transition: color 0.2s; }
.footer-col li a:hover { color: var(--brand); }

.footer-contact li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  line-height: 1.55;
}
.footer-contact svg {
  flex-shrink: 0;
  margin-top: 4px;
  opacity: 0.6;
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 28px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}
.footer-bottom small {
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.45);
}

/* ===========================================================================
   MOBILE DRAWER
   =========================================================================== */
.mobile-drawer {
  position: fixed;
  inset: 0;
  z-index: 100;
  visibility: hidden;
  pointer-events: none;
}
.mobile-drawer.open {
  visibility: visible;
  pointer-events: auto;
}
.md-overlay {
  position: absolute;
  inset: 0;
  background: rgba(10, 31, 68, 0.55);
  opacity: 0;
  transition: opacity 0.3s ease;
  backdrop-filter: blur(4px);
}
.mobile-drawer.open .md-overlay { opacity: 1; }

.md-panel {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  width: min(360px, 88vw);
  background: var(--white);
  display: flex;
  flex-direction: column;
  transform: translateX(100%);
  transition: transform 0.35s cubic-bezier(.4, 0, .2, 1);
  box-shadow: -20px 0 60px -20px rgba(10, 31, 68, 0.3);
  overflow-y: auto;
}
.mobile-drawer.open .md-panel { transform: translateX(0); }

.md-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 22px 24px;
  border-bottom: 1px solid var(--line);
}
.md-head .logo-text small { display: none; }
.md-close {
  width: 40px;
  height: 40px;
  display: grid;
  place-items: center;
  background: var(--bg-soft);
  color: var(--ink);
  border-radius: 50%;
  transition: all 0.2s;
}
.md-close:hover { background: var(--brand-light); color: var(--brand); }

.md-links {
  padding: 16px 12px;
  display: flex;
  flex-direction: column;
  flex: 1;
}
.md-links a {
  padding: 16px 16px;
  font-family: var(--display);
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--ink);
  border-radius: 12px;
  transition: all 0.2s;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.md-links a::after {
  content: '→';
  color: var(--ink-soft);
  font-weight: 400;
  transition: transform 0.2s, color 0.2s;
}
.md-links a:hover,
.md-links a:focus {
  background: var(--brand-light);
  color: var(--brand);
}
.md-links a:hover::after { color: var(--brand); transform: translateX(4px); }

.md-cta {
  padding: 16px 24px 24px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  border-top: 1px solid var(--line);
}
.md-call {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 14px 18px;
  background: var(--brand-light);
  color: var(--brand);
  border-radius: 12px;
  transition: all 0.2s;
}
.md-call:hover { background: var(--brand); color: #fff; }
.md-call span { display: flex; flex-direction: column; line-height: 1.15; }
.md-call small {
  font-size: 0.7rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  opacity: 0.7;
}
.md-call b {
  font-family: var(--display);
  font-size: 1rem;
  font-weight: 700;
  margin-top: 2px;
}

.md-wa {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px;
  background: #25D366;
  color: #fff;
  border-radius: 12px;
  font-family: var(--display);
  font-weight: 700;
  font-size: 0.92rem;
  transition: background 0.2s;
}
.md-wa:hover { background: #1DA851; }

.md-book {
  display: block;
  text-align: center;
  padding: 16px;
  background: var(--orange);
  color: #fff;
  border-radius: 12px;
  font-family: var(--display);
  font-weight: 700;
  font-size: 0.95rem;
  box-shadow: var(--shadow-orange);
  transition: all 0.2s;
}
.md-book:hover { background: var(--orange-dark); transform: translateY(-2px); }

.md-foot {
  padding: 0 24px 24px;
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.md-foot small {
  font-size: 0.78rem;
  color: var(--ink-mute);
}

/* Hamburger animation when open */
.hamburger.active span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.active span:nth-child(2) { opacity: 0; }
.hamburger.active span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }
.hamburger span { transition: transform 0.25s, opacity 0.2s; transform-origin: center; }

/* Prevent body scroll when drawer open */
body.drawer-open { overflow: hidden; }

/* ===========================================================================
   FAQ
   =========================================================================== */
.faq {
  padding: 100px 0;
  background: var(--white);
}

.faq-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}
.faq-col {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.faq-item {
  background: var(--bg-soft);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
  transition: all 0.3s ease;
}
.faq-item[open] {
  background: var(--white);
  border-color: var(--brand);
  box-shadow: var(--shadow-sm);
}

.faq-item summary {
  list-style: none;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 22px 24px;
  cursor: pointer;
  font-family: var(--display);
  font-size: 1.02rem;
  font-weight: 700;
  color: var(--ink);
  letter-spacing: -0.015em;
  transition: color 0.2s;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after {
  content: '+';
  flex-shrink: 0;
  width: 32px;
  height: 32px;
  display: grid;
  place-items: center;
  background: var(--brand-light);
  color: var(--brand);
  border-radius: 50%;
  font-size: 1.4rem;
  font-weight: 400;
  transition: transform 0.3s ease, background 0.2s;
}
.faq-item summary:hover { color: var(--brand); }
.faq-item summary:hover::after { background: var(--brand); color: #fff; }
.faq-item[open] summary::after {
  transform: rotate(45deg);
  background: var(--brand);
  color: #fff;
}

.faq-item .fa {
  padding: 0 24px 24px;
}
.faq-item .fa p {
  font-size: 0.95rem;
  color: var(--ink-mute);
  line-height: 1.65;
}
.faq-item .fa b {
  color: var(--ink);
  font-weight: 700;
}
.faq-item .fa a {
  color: var(--brand);
  font-weight: 600;
  border-bottom: 1px solid currentColor;
}

.faq-cta {
  margin-top: 56px;
  padding: 32px;
  background: var(--bg-soft);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 24px;
  flex-wrap: wrap;
  text-align: center;
}
.faq-cta p {
  font-family: var(--display);
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--ink);
}

/* ---------- TEXTAREA ---------- */
.contact-form textarea {
  padding: 14px 16px;
  background: var(--bg-soft);
  border: 1px solid var(--line);
  border-radius: 10px;
  color: var(--ink);
  font-family: var(--body);
  font-size: 0.95rem;
  resize: vertical;
  min-height: 90px;
  transition: all 0.2s;
}
.contact-form textarea::placeholder { color: var(--ink-soft); }
.contact-form textarea:focus {
  outline: none;
  border-color: var(--brand);
  background: var(--white);
  box-shadow: 0 0 0 4px rgba(0, 102, 255, 0.08);
}

/* ===========================================================================
   LEGAL PAGES
   =========================================================================== */
.legal-hero {
  padding: 80px 0 56px;
  background: var(--bg-blue);
  border-bottom: 1px solid var(--line);
  text-align: center;
}
.legal-hero .crumbs {
  font-family: var(--display);
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--brand);
  margin-bottom: 14px;
}
.legal-hero .crumbs a { color: var(--brand); }
.legal-hero .crumbs a:hover { text-decoration: underline; }
.legal-hero h1 {
  font-family: var(--display);
  font-size: clamp(2rem, 4.5vw, 3rem);
  font-weight: 800;
  letter-spacing: -0.035em;
  color: var(--ink);
  margin-bottom: 12px;
}
.legal-hero .last-updated {
  font-size: 0.9rem;
  color: var(--ink-mute);
}

.legal-body {
  padding: 64px 0 100px;
  background: var(--white);
}
.legal-content {
  max-width: 820px;
  margin: 0 auto;
  padding: 0 var(--gutter);
}
.legal-content h2 {
  font-family: var(--display);
  font-size: 1.5rem;
  font-weight: 700;
  letter-spacing: -0.02em;
  margin: 40px 0 14px;
  color: var(--ink);
  padding-top: 8px;
  border-top: 1px solid var(--line);
}
.legal-content h2:first-child { border-top: 0; padding-top: 0; margin-top: 0; }
.legal-content h3 {
  font-family: var(--display);
  font-size: 1.15rem;
  font-weight: 700;
  margin: 24px 0 10px;
  color: var(--ink);
}
.legal-content p,
.legal-content li {
  font-size: 1rem;
  color: var(--ink-2);
  line-height: 1.7;
  margin-bottom: 14px;
}
.legal-content ul {
  margin: 0 0 18px 22px;
  list-style: disc;
}
.legal-content ul li { margin-bottom: 8px; padding-left: 4px; }
.legal-content ul li::marker { color: var(--brand); }
.legal-content a {
  color: var(--brand);
  font-weight: 600;
  border-bottom: 1px solid var(--brand-light);
  transition: border-color 0.2s;
}
.legal-content a:hover { border-color: var(--brand); }
.legal-content b, .legal-content strong { color: var(--ink); font-weight: 700; }
.legal-content em { font-style: italic; color: var(--ink-mute); }
.legal-content table {
  width: 100%;
  border-collapse: collapse;
  margin: 18px 0;
  font-size: 0.94rem;
}
.legal-content th, .legal-content td {
  padding: 10px 14px;
  border: 1px solid var(--line);
  text-align: left;
}
.legal-content th {
  background: var(--bg-soft);
  font-family: var(--display);
  font-weight: 700;
  color: var(--ink);
}

.legal-toc {
  background: var(--bg-soft);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 24px 28px;
  margin-bottom: 48px;
}
.legal-toc h4 {
  font-family: var(--display);
  font-size: 0.84rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--brand);
  margin-bottom: 14px;
}
.legal-toc ol {
  display: flex;
  flex-direction: column;
  gap: 6px;
  margin-left: 22px;
  list-style: decimal;
}
.legal-toc ol li::marker { color: var(--ink-soft); font-weight: 700; }
.legal-toc a {
  color: var(--ink-2);
  font-weight: 500;
  font-size: 0.95rem;
  border-bottom: 0;
}
.legal-toc a:hover { color: var(--brand); }

/* ---------- THANK YOU PAGE ---------- */
.thanks-hero {
  min-height: calc(100vh - 86px - 60px);
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 60px var(--gutter);
  background: linear-gradient(180deg, var(--bg-blue) 0%, var(--white) 100%);
}
.thanks-content {
  max-width: 580px;
}
.thanks-icon {
  width: 88px;
  height: 88px;
  display: grid;
  place-items: center;
  background: var(--green-light);
  color: var(--green);
  border-radius: 50%;
  margin: 0 auto 32px;
}
.thanks-content h1 {
  font-family: var(--display);
  font-size: clamp(2rem, 4.5vw, 3rem);
  font-weight: 800;
  letter-spacing: -0.035em;
  margin-bottom: 16px;
  color: var(--ink);
}
.thanks-content p {
  font-size: 1.1rem;
  color: var(--ink-mute);
  margin-bottom: 32px;
  line-height: 1.6;
}
.thanks-cta { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }

/* ---------- WHATSAPP FLOAT ---------- */
.wa-float {
  position: fixed;
  bottom: 28px;
  right: 28px;
  width: 58px;
  height: 58px;
  display: grid;
  place-items: center;
  background: #25D366;
  color: #fff;
  border-radius: 50%;
  box-shadow: 0 12px 28px rgba(37, 211, 102, 0.45);
  z-index: 40;
  transition: transform 0.25s;
}
.wa-float:hover { transform: scale(1.1); }
.wa-pulse {
  position: absolute;
  inset: -4px;
  border-radius: 50%;
  border: 2px solid #25D366;
  animation: waPulse 1.8s ease-out infinite;
}
@keyframes waPulse {
  0% { transform: scale(.9); opacity: 1; }
  100% { transform: scale(1.6); opacity: 0; }
}

/* ---------- REVEAL ---------- */
html.js [data-reveal] {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.8s cubic-bezier(.16, 1, .3, 1), transform 0.8s cubic-bezier(.16, 1, .3, 1);
}
html.js [data-reveal].in {
  opacity: 1;
  transform: translateY(0);
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}

/* ===========================================================================
   RESPONSIVE
   =========================================================================== */
@media (max-width: 1100px) {
  .nav-menu { display: none; }
  .nav-phone span { display: none; }
  .hamburger { display: flex; }
  .nav-actions { gap: 10px; }
  .hero-inner { grid-template-columns: 1fr; gap: 48px; }
  .hero-visual { max-width: 480px; margin: 0 auto; }
  .hero-image { aspect-ratio: 4 / 3; }
  .float-rating { left: 12px; }
  .float-live { right: 12px; }
  .hero-badge { left: -12px; }
  .stats-strip { grid-template-columns: repeat(2, 1fr); gap: 24px 0; }
  .ss-item:nth-child(2) { border-right: 0; }
  .service-grid { grid-template-columns: repeat(2, 1fr); }
  .why-grid { grid-template-columns: repeat(2, 1fr); }
  .process-grid { grid-template-columns: repeat(2, 1fr); }
  .reviews-grid { grid-template-columns: repeat(2, 1fr); }
  .areas-grid { grid-template-columns: repeat(2, 1fr); }
  .contact-wrap { grid-template-columns: 1fr; gap: 48px; }
  .cta-inner { grid-template-columns: 1fr; }
  .faq-grid { grid-template-columns: 1fr; gap: 14px; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 32px; }
}

@media (max-width: 720px) {
  :root { --gutter: 20px; }

  .top-bar-inner { gap: 16px; font-size: 0.74rem; padding: 8px var(--gutter); }
  .tb-item:not(.tb-rating) { display: none; }
  .tb-rating { margin: 0 auto; }

  .nav-book { padding: 10px 16px; font-size: 0.82rem; white-space: nowrap; }
  .nav-phone { padding: 8px 10px; }
  .nav-phone svg { width: 18px; height: 18px; }
  .logo-text small { display: none; }
  .logo-text b { font-size: 1.1rem; }
  .logo-mark svg { width: 36px; height: 36px; }

  .hero { padding: 32px 0 0; }
  .hero-title { font-size: clamp(2.2rem, 8.5vw, 3rem); }
  .hero-sub { font-size: 1rem; }
  .hero-cta-group .btn { flex: 1; min-width: 0; }
  .float-rating { top: 12px; left: 6px; padding: 10px 12px; }
  .fc-content { gap: 0; }
  .fc-content b { font-size: 0.95rem; }
  .float-live { bottom: 50px; right: 6px; padding: 10px 12px; }
  .float-live small { font-size: 0.6rem; }
  .float-live b { font-size: 0.82rem; }
  .hero-badge { width: 80px; height: 80px; left: -8px; bottom: 12px; }
  .hero-badge span { font-size: 1.4rem; }
  .hero-badge small { font-size: 0.6rem; }

  .stats-strip { grid-template-columns: 1fr 1fr; padding: 24px var(--gutter); }
  .ss-item { padding: 8px 12px; }
  .ss-item b { font-size: 1.7rem; }

  .services, .why, .process, .reviews, .areas, .contact, .faq { padding: 64px 0; }
  .faq-item summary { padding: 18px 18px; font-size: 0.96rem; }
  .faq-item .fa { padding: 0 18px 20px; }
  .faq-cta { padding: 24px; flex-direction: column; gap: 16px; margin-top: 36px; }
  .section-head { margin-bottom: 40px; }

  .service-grid { grid-template-columns: 1fr; }
  .why-grid { grid-template-columns: 1fr; }
  .process-grid { grid-template-columns: 1fr; }
  .reviews-grid { grid-template-columns: 1fr; }
  .areas-grid { grid-template-columns: 1fr 1fr; }

  .cta-banner { padding: 50px 0; }
  .cta-right { width: 100%; }
  .cta-right .btn { flex: 1; }

  .contact-form { padding: 28px; }

  .footer-grid { grid-template-columns: 1fr; gap: 36px; }
  .footer-bottom { flex-direction: column; gap: 10px; text-align: center; }
}
