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

/* ===== VARIÁVEIS ===== */
:root {
  --primary: #388da8;
  --primary-dark: #2d7a93;
  --secondary: #529bb3;
  --hover-color: #79e0ff;
  --text: #1D1E2C;
  --whatsapp: #007313;
  --white: #ffffff;
  --light-bg: #f0f8fc;
  --gray: #5f6375;
  --border: #dce9ee;
  --shadow: 0 4px 24px rgba(56, 141, 168, 0.12);
  --shadow-lg: 0 12px 48px rgba(56, 141, 168, 0.2);
}

/* ===== RESET ===== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }

body {
  font-family: 'Montserrat', sans-serif;
  color: var(--text);
  line-height: 1.7;
  font-size: 16px;
  background: var(--white);
}

img { max-width: 100%; display: block; }
a { transition: color 0.25s; }

h1 { font-size: 48px; line-height: 1.1; }
h2 { font-size: 36px; line-height: 1.15; }
h3 { font-size: 28px; line-height: 1.25; }

/* ===== CONTAINER ===== */
.container { max-width: 1180px; margin: 0 auto; padding: 0 24px; }

/* ===== SECTIONS ===== */
.section { padding: 88px 0; }
.section-alt { background: var(--light-bg); }
.section-dark { background: var(--text); color: var(--white); }

.section-label {
  display: inline-block;
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 3px;
  color: var(--primary);
  margin-bottom: 12px;
}

.section-title {
  font-size: 36px;
  font-weight: 800;
  line-height: 1.15;
  margin-bottom: 18px;
  color: var(--text);
}

.section-title.white { color: var(--white); }

.section-subtitle {
  font-size: 17px;
  color: var(--gray);
  line-height: 1.75;
  margin-bottom: 48px;
}

.section-subtitle.white { color: rgba(255,255,255,0.78); max-width: 100%; }

.text-center { text-align: center; }
.text-center .section-subtitle { margin-left: auto; margin-right: auto; }

/* ===== NAVBAR ===== */
.navbar {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: var(--white);
  border-bottom: 3px solid var(--primary);
  box-shadow: 0 2px 16px rgba(0,0,0,0.07);
}

.navbar .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
}

.navbar-logo { display: flex; align-items: center; }
.navbar-logo img { height: 60px; width: auto; }

.nav-menu {
  display: flex;
  list-style: none;
  align-items: center;
  gap: 28px;
}

.nav-menu > li > a {
  text-decoration: none;
  color: var(--text);
  font-weight: 600;
  font-size: 13.5px;
  transition: color 0.25s;
}

.nav-menu > li > a:hover { color: var(--primary); }

/* Dropdown */
.has-dropdown { position: relative; }
.has-dropdown > a::after { content: ' ▾'; font-size: 9px; opacity: 0.7; }

.dropdown-menu {
  position: absolute;
  top: calc(100% + 18px);
  left: -16px;
  background: var(--white);
  border-top: 3px solid var(--primary);
  min-width: 268px;
  list-style: none;
  box-shadow: 0 12px 40px rgba(0,0,0,0.12);
  border-radius: 0 0 10px 10px;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-8px);
  transition: all 0.28s;
}

.has-dropdown:hover .dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.dropdown-menu li a {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 12px 18px;
  font-size: 13.5px;
  font-weight: 500;
  color: var(--text);
  text-decoration: none;
  border-bottom: 1px solid var(--border);
  transition: all 0.2s;
}

.dropdown-menu li:last-child a { border-bottom: none; }
.dropdown-menu li a:hover { background: var(--light-bg); color: var(--primary); padding-left: 24px; }
.dropdown-menu li a i { color: var(--primary); width: 18px; font-size: 13px; }

/* Nav CTA */
.btn-nav {
  background: var(--primary) !important;
  color: var(--white) !important;
  padding: 10px 22px;
  border-radius: 50px;
  font-weight: 700 !important;
  font-size: 13px !important;
}

.btn-nav:hover {
  background: var(--primary-dark) !important;
  color: var(--white) !important;
}

/* Hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
}

.hamburger span {
  display: block;
  width: 26px;
  height: 3px;
  background: var(--text);
  border-radius: 2px;
  transition: all 0.3s;
}

.hamburger.active span:nth-child(1) { transform: translateY(8px) rotate(45deg); }
.hamburger.active span:nth-child(2) { opacity: 0; }
.hamburger.active span:nth-child(3) { transform: translateY(-8px) rotate(-45deg); }

/* ===== HERO ===== */
.hero {
  background: linear-gradient(140deg, var(--primary) 0%, var(--text) 100%);
  color: var(--white);
  padding: 96px 0 80px;
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  top: -40%;
  right: -8%;
  width: 520px;
  height: 520px;
  background: rgba(255,255,255,0.04);
  border-radius: 50%;
  pointer-events: none;
}

.hero::after {
  content: '';
  position: absolute;
  bottom: -35%;
  left: -6%;
  width: 380px;
  height: 380px;
  background: rgba(255,255,255,0.03);
  border-radius: 50%;
  pointer-events: none;
}

.hero-layout {
  display: flex;
  align-items: center;
  gap: 60px;
  position: relative;
  z-index: 2;
}

.hero-content { flex: 1; }

.hero-photo { flex-shrink: 0; }

.hero-photo img {
  border-radius: 10px;
  max-width: 460px;
  width: 100%;
  object-fit: cover;
  display: block;
}

.hero-label {
  display: inline-block;
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 3px;
  color: var(--hover-color);
  margin-bottom: 18px;
}

.hero h1 {
  font-size: 48px;
  font-weight: 900;
  line-height: 1.08;
  margin-bottom: 24px;
}

.hero p {
  font-size: 18px;
  opacity: 0.88;
  max-width: 580px;
  line-height: 1.75;
  margin-bottom: 40px;
}

/* Breadcrumb */
.breadcrumb {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 24px;
  font-size: 13px;
  color: rgba(255,255,255,0.7);
}

.breadcrumb a { color: var(--hover-color); text-decoration: none; }
.breadcrumb a:hover { color: var(--white); }
.breadcrumb .sep { opacity: 0.5; }

/* Page hero (service pages) */
.page-hero {
  background: linear-gradient(140deg, var(--primary) 0%, var(--text) 100%);
  color: var(--white);
  padding: 72px 0 60px;
  position: relative;
  overflow: hidden;
}

.page-hero::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -5%;
  width: 400px;
  height: 400px;
  background: rgba(255,255,255,0.04);
  border-radius: 50%;
}

.page-hero-content { position: relative; z-index: 2; max-width: 780px; }

.page-hero h1 {
  font-size: 48px;
  font-weight: 900;
  line-height: 1.12;
  margin-bottom: 16px;
}

.page-hero p {
  font-size: 17px;
  opacity: 0.88;
  max-width: 580px;
  line-height: 1.75;
}

/* ===== BOTÕES ===== */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 32px;
  border-radius: 50px;
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  font-size: 14px;
  text-decoration: none;
  transition: all 0.3s;
  cursor: pointer;
  border: none;
  line-height: 1;
}

.btn-primary { background: var(--white); color: var(--primary); }
.btn-primary:hover { background: var(--hover-color); color: var(--text); transform: translateY(-2px); }

.btn-outline { background: transparent; color: var(--white); border: 2px solid rgba(255,255,255,0.5); }
.btn-outline:hover { background: rgba(255,255,255,0.1); border-color: var(--white); }

.btn-cta { background: var(--primary); color: var(--white); }
.btn-cta:hover { background: var(--primary-dark); transform: translateY(-2px); box-shadow: var(--shadow-lg); }

.btn-cta-white { background: var(--white); color: var(--primary); }
.btn-cta-white:hover { background: var(--hover-color); color: var(--text); transform: translateY(-2px); }

.btn-whatsapp { background: var(--whatsapp); color: var(--white); }
.btn-whatsapp:hover { background: #005a0f; transform: translateY(-2px); box-shadow: 0 8px 28px rgba(0,115,19,0.35); }

.hero-btns { display: flex; gap: 14px; flex-wrap: wrap; }

/* ===== CARDS DE SERVIÇO ===== */
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 26px;
}

.service-card {
  background: var(--white);
  border-radius: 14px;
  padding: 32px 28px;
  border-left: 4px solid var(--primary);
  box-shadow: var(--shadow);
  transition: all 0.3s;
  text-decoration: none;
  color: var(--text);
  display: flex;
  flex-direction: column;
}

.service-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
  border-left-color: var(--secondary);
}

.service-icon {
  width: 54px;
  height: 54px;
  background: var(--light-bg);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  color: var(--primary);
  font-size: 22px;
  flex-shrink: 0;
}

.service-card h3 {
  font-size: 17px;
  font-weight: 700;
  margin-bottom: 10px;
  color: var(--text);
}

.service-card p {
  font-size: 14px;
  color: var(--gray);
  line-height: 1.7;
  flex: 1;
}

.card-link {
  margin-top: 18px;
  font-size: 13px;
  font-weight: 700;
  color: var(--primary);
  display: flex;
  align-items: center;
  gap: 6px;
  text-decoration: none;
}

.service-card:hover .card-link { color: var(--secondary); }

/* ===== LISTA DE BENEFÍCIOS ===== */
.check-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 13px;
}

.check-list li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 15px;
  line-height: 1.5;
}

.check-list li::before {
  content: '';
  width: 22px;
  height: 22px;
  background: var(--primary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  margin-top: 1px;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 12 10' fill='none'%3E%3Cpath d='M1 5l3.5 3.5L11 1' stroke='white' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: center;
  background-size: 10px;
}

.check-list.two-col {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px 32px;
}

/* ===== BENEFÍCIOS GRID ===== */
.benefits-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}

.benefits-text p {
  font-size: 16px;
  color: var(--gray);
  line-height: 1.8;
  margin-bottom: 24px;
}

/* ===== ETAPAS DO PROCESSO ===== */
.process-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
  position: relative;
}

.process-grid::before {
  content: '';
  position: absolute;
  top: 31px;
  left: 10%;
  right: 10%;
  height: 2px;
  background: linear-gradient(to right, var(--primary), var(--secondary));
  z-index: 0;
}

.process-step { text-align: center; position: relative; }

.step-number {
  width: 64px;
  height: 64px;
  background: var(--primary);
  color: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  font-weight: 800;
  margin: 0 auto 24px;
  position: relative;
  z-index: 1;
  border: 4px solid var(--white);
  box-shadow: 0 4px 20px rgba(56,141,168,0.35);
}

.process-step h3 { font-size: 16px; font-weight: 700; margin-bottom: 10px; }
.process-step p { font-size: 14px; color: var(--gray); line-height: 1.65; }

/* ===== STATS ===== */
.stats-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}

.stat-item { text-align: center; padding: 40px 24px; }

.stat-number {
  font-size: 52px;
  font-weight: 900;
  color: var(--primary);
  line-height: 1;
  margin-bottom: 10px;
}

.section-dark .stat-number { color: var(--hover-color); }
.stat-label { font-size: 15px; font-weight: 600; }
.section-dark .stat-label { color: rgba(255,255,255,0.85); }

/* ===== FAQ ===== */
.faq-list {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.faq-item {
  background: var(--white);
  border: 1.5px solid var(--border);
  border-radius: 10px;
  overflow: hidden;
  transition: border-color 0.25s;
}

.faq-item[open] { border-color: var(--primary); }

.faq-item summary {
  padding: 20px 24px;
  font-weight: 600;
  font-size: 15px;
  cursor: pointer;
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  color: var(--text);
  user-select: none;
  gap: 16px;
}

.faq-item summary::-webkit-details-marker { display: none; }

.faq-item summary::after {
  content: '+';
  font-size: 22px;
  font-weight: 300;
  color: var(--primary);
  flex-shrink: 0;
  transition: transform 0.3s;
  line-height: 1;
}

.faq-item[open] summary::after { transform: rotate(45deg); }
.faq-item[open] summary { color: var(--primary); }

.faq-answer {
  padding: 0 24px 20px;
  font-size: 14.5px;
  color: var(--gray);
  line-height: 1.8;
}

/* ===== CTA SECTION ===== */
.cta-section {
  background: var(--text);
  padding: 88px 0;
  text-align: center;
}

.cta-section h2 {
  font-size: 36px;
  font-weight: 800;
  color: var(--white);
  margin-bottom: 16px;
  line-height: 1.15;
}

.cta-section p {
  font-size: 17px;
  color: rgba(255,255,255,0.72);
  max-width: 540px;
  margin: 0 auto 40px;
  line-height: 1.75;
}

.cta-btns { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }

/* ===== HIGHLIGHT BOX ===== */
.highlight-box {
  background: linear-gradient(135deg, var(--primary), var(--secondary));
  border-radius: 18px;
  padding: 52px 48px;
  color: var(--white);
}

.highlight-box h2 { font-size: 36px; font-weight: 800; margin-bottom: 14px; }
.highlight-box p { font-size: 15.5px; opacity: 0.9; margin-bottom: 28px; line-height: 1.75; }

/* ===== CONTENT LAYOUT (página interna) ===== */
.content-layout {
  display: grid;
  grid-template-columns: 1fr 320px;
  gap: 48px;
  align-items: start;
}

.content-body h2 {
  font-size: 36px;
  font-weight: 800;
  margin-bottom: 16px;
  margin-top: 40px;
  color: var(--text);
}

.content-body h2:first-child { margin-top: 0; }

.content-body p {
  font-size: 15.5px;
  color: var(--gray);
  line-height: 1.8;
  margin-bottom: 18px;
}

.content-body p a {
  color: var(--primary);
  font-weight: 600;
  text-decoration: none;
}

.content-body p a:hover { color: var(--secondary); }

/* Sidebar */
.sidebar { display: flex; flex-direction: column; gap: 24px; }

.sidebar-card {
  background: var(--light-bg);
  border-radius: 14px;
  padding: 28px;
  border-left: 4px solid var(--primary);
}

.sidebar-card.dark {
  background: var(--text);
  color: var(--white);
  border-left-color: var(--hover-color);
}

.sidebar-card h3 {
  font-size: 17px;
  font-weight: 700;
  margin-bottom: 16px;
  color: var(--text);
}

.sidebar-card.dark h3 { color: var(--white); }

.sidebar-card ul { list-style: none; display: flex; flex-direction: column; gap: 8px; }

.sidebar-card ul li a {
  text-decoration: none;
  color: var(--primary);
  font-size: 13.5px;
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 6px;
  transition: color 0.25s;
}

.sidebar-card ul li a:hover { color: var(--secondary); }
.sidebar-card ul li a i { font-size: 11px; }

.sidebar-card p { font-size: 14px; color: var(--gray); line-height: 1.7; margin-bottom: 16px; }
.sidebar-card.dark p { color: rgba(255,255,255,0.75); }

.sidebar-card .btn { width: 100%; justify-content: center; }

/* ===== INTRO TEXT ===== */
.intro-block { max-width: 780px; }
.intro-block p { font-size: 17px; color: var(--gray); line-height: 1.85; margin-bottom: 20px; }
.intro-block strong { color: var(--text); }

/* ===== FEATURE CARDS ===== */
.feature-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}

.feature-card {
  background: var(--white);
  border-radius: 12px;
  padding: 28px 24px;
  border-top: 3px solid var(--primary);
  box-shadow: var(--shadow);
}

.feature-card .icon {
  font-size: 28px;
  color: var(--primary);
  margin-bottom: 14px;
}

.feature-card h3 { font-size: 16px; font-weight: 700; margin-bottom: 10px; }
.feature-card p { font-size: 14px; color: var(--gray); line-height: 1.7; }

/* ===== RELATED SERVICES ===== */
.related-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.related-card {
  background: var(--white);
  border-radius: 12px;
  padding: 24px;
  border-left: 3px solid var(--primary);
  box-shadow: var(--shadow);
  text-decoration: none;
  color: var(--text);
  transition: all 0.3s;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.related-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); border-left-color: var(--secondary); }
.related-card h3 { font-size: 15px; font-weight: 700; }
.related-card p { font-size: 13px; color: var(--gray); line-height: 1.6; }
.related-card .link { font-size: 13px; font-weight: 700; color: var(--primary); display: flex; align-items: center; gap: 5px; margin-top: auto; padding-top: 8px; }

/* ===== FOOTER ===== */
.footer { background: var(--text); color: rgba(255,255,255,0.8); padding: 64px 0 0; }

.footer-grid {
  display: grid;
  grid-template-columns: 2.2fr 1.2fr 1.2fr 1.2fr;
  gap: 48px;
  padding-bottom: 48px;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}

.footer-brand img { height: 42px; margin-bottom: 18px; filter: brightness(0) invert(1); }

.footer-brand p { font-size: 14px; line-height: 1.75; color: rgba(255,255,255,0.55); max-width: 270px; }

.footer-heading {
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--white);
  margin-bottom: 20px;
}

.footer-col ul { list-style: none; display: flex; flex-direction: column; gap: 10px; }

.footer-col ul li a {
  text-decoration: none;
  color: rgba(255,255,255,0.58);
  font-size: 14px;
  font-weight: 500;
  transition: color 0.25s;
  display: flex;
  align-items: center;
  gap: 6px;
}

.footer-col ul li a:hover { color: var(--hover-color); }

.footer-bottom {
  padding: 22px 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 13px;
  color: rgba(255,255,255,0.38);
}

.footer-bottom a { color: rgba(255,255,255,0.5); text-decoration: none; }
.footer-bottom a:hover { color: var(--hover-color); }

/* ===== WHATSAPP FLOAT ===== */
.whatsapp-float {
  position: fixed;
  bottom: 28px;
  right: 28px;
  width: 60px;
  height: 60px;
  background: var(--whatsapp);
  color: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 28px;
  text-decoration: none;
  box-shadow: 0 4px 20px rgba(0,115,19,0.45);
  z-index: 9999;
  transition: all 0.3s;
}

.whatsapp-float:hover { transform: scale(1.12); box-shadow: 0 8px 32px rgba(0,115,19,0.55); color: var(--white); }

/* ===== BACK TO TOP ===== */
.back-to-top {
  position: fixed;
  bottom: 100px;
  right: 28px;
  width: 60px;
  height: 60px;
  background: var(--primary);
  color: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  text-decoration: none;
  box-shadow: var(--shadow);
  z-index: 9999;
  transition: all 0.3s;
  opacity: 0;
  pointer-events: none;
}

.back-to-top.visible { opacity: 1; pointer-events: auto; }
.back-to-top:hover { background: var(--primary-dark); transform: translateY(-3px); color: var(--white); }

/* ===== SITES FEATURE GRID (2 colunas fixas) ===== */
.sites-feature-grid { grid-template-columns: repeat(2, 1fr); }

/* ===== UTILITÁRIOS ===== */
.mt-0 { margin-top: 0 !important; }
.mb-32 { margin-bottom: 32px; }
.divider { height: 1px; background: var(--border); margin: 48px 0; }

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .feature-grid { grid-template-columns: repeat(2, 1fr); }
  .related-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 36px; }
  .process-grid { grid-template-columns: repeat(2, 1fr); }
  .process-grid::before { display: none; }
  .content-layout { grid-template-columns: 1fr; }
  .benefits-layout { gap: 40px; }
}

@media (max-width: 768px) {
  /* Nav mobile */
  .nav-menu {
    display: none;
    position: absolute;
    top: 72px;
    left: 0;
    right: 0;
    background: var(--white);
    flex-direction: column;
    padding: 16px;
    border-top: 1px solid var(--border);
    box-shadow: 0 12px 40px rgba(0,0,0,0.1);
    gap: 0;
    align-items: flex-start;
  }

  .nav-menu.open { display: flex; }
  .nav-menu > li { width: 100%; }

  .nav-menu > li > a {
    padding: 12px 4px;
    display: block;
    border-bottom: 1px solid var(--border);
  }

  .has-dropdown .dropdown-menu {
    position: static;
    opacity: 1;
    visibility: visible;
    transform: none;
    box-shadow: none;
    border: none;
    background: var(--light-bg);
    border-radius: 8px;
    padding: 4px 0 8px 12px;
    margin: 4px 0;
  }

  .hamburger { display: flex; }

  /* Hero mobile */
  .hero { padding: 64px 0 52px; }
  .hero-layout { flex-direction: column; text-align: center; gap: 36px; }
  .hero-content { text-align: center; }
  .hero-photo { order: 2; }
  .hero-content { order: 1; }
  .hero-photo img { max-width: 260px; margin: 0 auto; }
  .hero h1 { font-size: 36px; }
  .hero p { font-size: 16px; }
  .page-hero h1 { font-size: 36px; }
  .page-hero { padding: 56px 0 44px; }

  /* Hero buttons full width */
  .hero-btns { flex-direction: column; align-items: stretch; }
  .hero-btns .btn { width: 100%; justify-content: center; }

  /* Sections */
  .section { padding: 60px 0; }
  .section-title { font-size: 28px; }
  .section-subtitle { font-size: 15px; }

  /* Headings mobile */
  h1 { font-size: 36px; }
  h2 { font-size: 28px; }
  h3 { font-size: 22px; }
  .cta-section h2 { font-size: 28px; }
  .highlight-box h2 { font-size: 28px; }
  .content-body h2 { font-size: 28px; }

  /* Grids */
  .services-grid { grid-template-columns: 1fr; }
  .benefits-layout { grid-template-columns: 1fr; gap: 32px; }
  .process-grid { grid-template-columns: 1fr; }
  .feature-grid { grid-template-columns: 1fr; }
  .sites-feature-grid { grid-template-columns: 1fr; }
  .related-grid { grid-template-columns: 1fr; }
  .stats-grid { grid-template-columns: 1fr 1fr; gap: 0; }

  /* Highlight box inner grid */
  .highlight-box > div { grid-template-columns: 1fr !important; }

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

  .cta-btns { flex-direction: column; align-items: center; }

  .check-list.two-col { grid-template-columns: 1fr; }

  .highlight-box { padding: 36px 24px; }

  /* Back to top mobile */
  .back-to-top { bottom: 100px; right: 20px; width: 50px; height: 50px; font-size: 18px; }
  .whatsapp-float { bottom: 20px; right: 20px; }
}

@media (max-width: 480px) {
  .stats-grid { grid-template-columns: 1fr; }
  .stat-number { font-size: 40px; }
  .hero h1 { font-size: 26px; }
  .btn { padding: 13px 24px; }
}
