/* ── PRO EXTERIOR – SHARED SITE STYLES ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --blue: #29ABE2;
  --blue-dark: #1a8fc4;
  --blue-light: #e8f7fd;
  --text: #1a1a1a;
  --text-muted: #6b6b6b;
  --border: #d8d8d8;
  --bg: #f9f9f9;
  --white: #ffffff;
  --green: #4caf50;
}

body {
  font-family: 'Segoe UI', system-ui, -apple-system, sans-serif;
  color: var(--text);
  background: var(--white);
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

/* ── HEADER ── */
header {
  background: var(--white);
  border-bottom: 1px solid var(--border);
  padding: 0 2rem;
  height: 80px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: sticky;
  top: 0;
  z-index: 100;
}

.logo {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 3px;
  text-decoration: none;
  color: var(--text);
}

.logo-icon { height: 52px; width: auto; }

.logo-text { display: flex; flex-direction: column; line-height: 1.1; }
.logo-text .tagline { font-size: 0.68rem; font-weight: 700; color: var(--text-muted); text-transform: uppercase; letter-spacing: 0.07em; }

.header-cta {
  background: var(--blue);
  color: var(--white);
  padding: 0.55rem 1.2rem;
  border-radius: 6px;
  text-decoration: none;
  font-weight: 700;
  font-size: 0.88rem;
  white-space: nowrap;
  transition: background 0.2s;
}
.header-cta:hover { background: var(--blue-dark); }

/* ── HERO ── */
.hero {
  background: linear-gradient(135deg, #1a8fc4 0%, #29ABE2 60%, #6ecbf0 100%);
  color: var(--white);
  padding: 5rem 2rem 4rem;
  text-align: center;
}

.hero-badge {
  display: inline-block;
  background: rgba(255,255,255,0.2);
  border: 1px solid rgba(255,255,255,0.4);
  border-radius: 999px;
  padding: 0.3rem 1rem;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  margin-bottom: 1rem;
}

.hero h1 {
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  font-weight: 800;
  max-width: 760px;
  margin: 0 auto 1rem;
  line-height: 1.2;
}

.hero p {
  font-size: 1.1rem;
  max-width: 580px;
  margin: 0 auto 2rem;
  opacity: 0.92;
  line-height: 1.6;
}

.hero-btns { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; }

.btn-white {
  background: var(--white);
  color: var(--blue-dark);
  padding: 0.85rem 2rem;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 700;
  font-size: 0.95rem;
  transition: transform 0.15s, box-shadow 0.15s;
  box-shadow: 0 2px 12px rgba(0,0,0,0.15);
}
.btn-white:hover { transform: translateY(-1px); box-shadow: 0 4px 20px rgba(0,0,0,0.2); }

.btn-outline-white {
  background: transparent;
  color: var(--white);
  padding: 0.85rem 2rem;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 700;
  font-size: 0.95rem;
  border: 2px solid rgba(255,255,255,0.7);
  transition: background 0.15s;
}
.btn-outline-white:hover { background: rgba(255,255,255,0.15); }

/* ── TRUST BAR ── */
.trust-bar {
  background: var(--white);
  border-bottom: 1px solid var(--border);
  padding: 1rem 2rem;
  display: flex;
  justify-content: center;
  gap: 2.5rem;
  flex-wrap: wrap;
}

.trust-item {
  display: flex;
  align-items: center;
  gap: 0.45rem;
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--text-muted);
}

.trust-item span:first-child { font-size: 1.1rem; }

/* ── SECTIONS ── */
main { flex: 1; }

section { padding: 4rem 2rem; }
section:nth-child(even) { background: var(--bg); }

.container {
  max-width: 1060px;
  margin: 0 auto;
}

.section-label {
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--blue);
  margin-bottom: 0.5rem;
}

.section-title {
  font-size: clamp(1.4rem, 3vw, 2rem);
  font-weight: 800;
  margin-bottom: 0.75rem;
  line-height: 1.25;
}

.section-sub {
  color: var(--text-muted);
  font-size: 1rem;
  max-width: 600px;
  line-height: 1.65;
  margin-bottom: 2.5rem;
}

/* ── BENEFIT CARDS ── */
.cards-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1.25rem;
}

.card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 1.5rem;
}

.card-icon { font-size: 2rem; margin-bottom: 0.75rem; }
.card h3 { font-size: 1rem; font-weight: 700; margin-bottom: 0.4rem; }
.card p { font-size: 0.88rem; color: var(--text-muted); line-height: 1.6; }

/* ── PROCESS STEPS ── */
.steps { display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); gap: 1.5rem; }

.step-item { text-align: center; }
.step-num {
  width: 52px; height: 52px;
  background: var(--blue);
  color: var(--white);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.3rem; font-weight: 800;
  margin: 0 auto 1rem;
}
.step-item h3 { font-size: 1rem; font-weight: 700; margin-bottom: 0.4rem; }
.step-item p { font-size: 0.88rem; color: var(--text-muted); line-height: 1.6; }

/* ── PRICING BOX ── */
.pricing-box {
  background: var(--blue-light);
  border: 2px solid var(--blue);
  border-radius: 16px;
  padding: 2rem;
  max-width: 480px;
  text-align: center;
}
.pricing-box .price { font-size: 2.5rem; font-weight: 800; color: var(--blue-dark); }
.pricing-box .price-label { font-size: 0.85rem; color: var(--text-muted); margin-bottom: 1rem; }
.pricing-box ul { list-style: none; text-align: left; margin: 1rem 0 1.5rem; }
.pricing-box ul li { padding: 0.35rem 0; font-size: 0.92rem; display: flex; align-items: flex-start; gap: 0.5rem; }
.pricing-box ul li::before { content: "✓"; color: var(--blue); font-weight: 700; flex-shrink: 0; }

.pricing-free {
  border-color: var(--blue);
}
.pricing-free .price { font-size: 1.8rem; }

/* ── FAQ ── */
.faq-list { max-width: 760px; }

.faq-item {
  border-bottom: 1px solid var(--border);
}

.faq-question {
  width: 100%;
  background: none;
  border: none;
  text-align: left;
  padding: 1.1rem 0;
  font-size: 0.97rem;
  font-weight: 600;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  color: var(--text);
  font-family: inherit;
}

.faq-question:hover { color: var(--blue); }

.faq-chevron {
  font-size: 1.2rem;
  transition: transform 0.25s;
  flex-shrink: 0;
  color: var(--blue);
}

.faq-item.open .faq-chevron { transform: rotate(180deg); }

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
  font-size: 0.92rem;
  color: var(--text-muted);
  line-height: 1.7;
}

.faq-item.open .faq-answer { max-height: 300px; }
.faq-answer-inner { padding-bottom: 1.1rem; }

/* ── CTA BANNER ── */
.cta-banner {
  background: linear-gradient(135deg, #1a8fc4, #29ABE2);
  color: var(--white);
  padding: 4rem 2rem;
  text-align: center;
}

.cta-banner h2 { font-size: clamp(1.5rem, 3vw, 2.2rem); font-weight: 800; margin-bottom: 0.75rem; }
.cta-banner p { opacity: 0.9; margin-bottom: 2rem; font-size: 1rem; }

/* ── AREAS GRID ── */
.areas-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1.5rem;
}

.area-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 1.5rem;
}
.area-card h3 { font-size: 1.05rem; font-weight: 700; margin-bottom: 0.75rem; color: var(--blue-dark); display: flex; align-items: center; gap: 0.5rem; }
.area-card ul { list-style: none; }
.area-card ul li { font-size: 0.88rem; color: var(--text-muted); padding: 0.22rem 0; }
.area-card ul li::before { content: "→ "; color: var(--blue); }

/* ── TWO COL LAYOUT ── */
.two-col-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
}

.two-col-content img, .two-col-content .img-placeholder {
  width: 100%;
  border-radius: 16px;
  aspect-ratio: 4/3;
  object-fit: cover;
  background: var(--blue-light);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 4rem;
}

/* ── FOOTER ── */
footer {
  background: #f0f8fd;
  border-top: 1px solid #d0eaf6;
  padding: 3rem 2rem 2rem;
}

.footer-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 2rem;
}

.footer-brand p { font-size: 0.9rem; color: var(--text-muted); line-height: 1.6; margin-bottom: 0.75rem; margin-top: 0.5rem; }
.footer-brand .phone { color: var(--blue); font-weight: 600; text-decoration: none; font-size: 0.95rem; display: block; }
.footer-brand .email { color: var(--blue); font-weight: 500; font-size: 0.85rem; text-decoration: none; display: block; margin-top: 0.25rem; }

.footer-col h4 { font-size: 0.85rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.06em; color: var(--text-muted); margin-bottom: 0.75rem; }
.footer-col ul { list-style: none; }
.footer-col ul li { margin-bottom: 0.45rem; }
.footer-col ul li a { color: var(--text); text-decoration: none; font-size: 0.9rem; }
.footer-col ul li a:hover { color: var(--blue); }

.footer-bottom {
  max-width: 1100px;
  margin: 2rem auto 0;
  padding-top: 1.25rem;
  border-top: 1px solid var(--border);
  text-align: center;
  font-size: 0.8rem;
  color: var(--text-muted);
}

/* ── RESPONSIVE ── */
@media (max-width: 768px) {
  .footer-inner { grid-template-columns: 1fr; }
  .two-col-content { grid-template-columns: 1fr; }
  header { padding: 0 1rem; }
  .header-cta { font-size: 0.8rem; padding: 0.5rem 0.9rem; }
  .trust-bar { gap: 1.25rem; }
}

@media (max-width: 480px) {
  section { padding: 3rem 1.25rem; }
  .hero { padding: 3.5rem 1.25rem 3rem; }
}

/* ── MAIN NAV ── */
.main-nav {
  display: flex;
  align-items: center;
  gap: 0.25rem;
}
.main-nav a {
  color: var(--text);
  text-decoration: none;
  font-size: 0.88rem;
  font-weight: 600;
  padding: 0.45rem 0.75rem;
  border-radius: 6px;
  transition: color 0.15s, background 0.15s;
  white-space: nowrap;
}
.main-nav a:hover { color: var(--blue); background: var(--blue-light); }
.main-nav a.active { color: var(--blue); }

@media (max-width: 860px) { .main-nav { display: none; } }

/* ── BLOG GRID ── */
.blog-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 1.75rem;
}

.blog-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 14px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: box-shadow 0.2s, transform 0.2s;
  text-decoration: none;
  color: inherit;
}
.blog-card:hover {
  box-shadow: 0 6px 28px rgba(0,0,0,0.10);
  transform: translateY(-3px);
}

.blog-card-thumb {
  background: linear-gradient(135deg, #1a8fc4, #6ecbf0);
  height: 160px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 3.5rem;
}

.blog-card-body { padding: 1.25rem; flex: 1; display: flex; flex-direction: column; }

.blog-card-meta {
  display: flex;
  gap: 0.75rem;
  font-size: 0.75rem;
  color: var(--text-muted);
  margin-bottom: 0.6rem;
  align-items: center;
}
.blog-card-cat {
  background: var(--blue-light);
  color: var(--blue-dark);
  border-radius: 999px;
  padding: 0.2rem 0.65rem;
  font-weight: 700;
  font-size: 0.72rem;
}

.blog-card-title {
  font-size: 1rem;
  font-weight: 700;
  line-height: 1.35;
  margin-bottom: 0.6rem;
  color: var(--text);
}

.blog-card-excerpt {
  font-size: 0.87rem;
  color: var(--text-muted);
  line-height: 1.65;
  flex: 1;
}

.blog-read-more {
  display: inline-flex;
  align-items: center;
  gap: 0.3rem;
  margin-top: 1rem;
  color: var(--blue);
  font-weight: 700;
  font-size: 0.87rem;
}

/* ── BLOG POST PAGE ── */
.blog-post-wrap {
  max-width: 780px;
  margin: 0 auto;
  padding: 3rem 1.5rem 5rem;
}

.blog-post-meta {
  display: flex;
  gap: 1rem;
  align-items: center;
  font-size: 0.82rem;
  color: var(--text-muted);
  margin-bottom: 1.25rem;
  flex-wrap: wrap;
}

.blog-post-title {
  font-size: clamp(1.6rem, 4vw, 2.4rem);
  font-weight: 800;
  line-height: 1.2;
  margin-bottom: 1rem;
}

.blog-post-intro {
  font-size: 1.08rem;
  color: var(--text-muted);
  line-height: 1.75;
  margin-bottom: 2rem;
  border-left: 4px solid var(--blue);
  padding-left: 1.25rem;
}

.blog-content h2 {
  font-size: 1.35rem;
  font-weight: 800;
  margin: 2.5rem 0 0.75rem;
  color: var(--text);
}

.blog-content h3 {
  font-size: 1.1rem;
  font-weight: 700;
  margin: 1.75rem 0 0.5rem;
  color: var(--text);
}

.blog-content p {
  font-size: 0.97rem;
  line-height: 1.8;
  color: #333;
  margin-bottom: 1.1rem;
}

.blog-content ul, .blog-content ol {
  padding-left: 1.5rem;
  margin-bottom: 1.25rem;
}

.blog-content li {
  font-size: 0.97rem;
  line-height: 1.75;
  color: #333;
  margin-bottom: 0.4rem;
}

.blog-content a { color: var(--blue); }
.blog-content a:hover { text-decoration: underline; }

.blog-tip-box {
  background: var(--blue-light);
  border-left: 4px solid var(--blue);
  border-radius: 0 8px 8px 0;
  padding: 1.1rem 1.25rem;
  margin: 1.5rem 0;
  font-size: 0.93rem;
  line-height: 1.7;
  color: var(--text);
}

.blog-tip-box strong { color: var(--blue-dark); }

.blog-cta-inline {
  background: linear-gradient(135deg, #1a8fc4, #29ABE2);
  color: var(--white);
  border-radius: 12px;
  padding: 1.75rem;
  text-align: center;
  margin: 2.5rem 0;
}
.blog-cta-inline h3 { font-size: 1.2rem; margin-bottom: 0.5rem; }
.blog-cta-inline p { opacity: 0.9; font-size: 0.93rem; margin-bottom: 1.25rem; }
.blog-cta-inline a {
  background: var(--white);
  color: var(--blue-dark);
  padding: 0.75rem 1.75rem;
  border-radius: 8px;
  font-weight: 700;
  text-decoration: none;
  font-size: 0.93rem;
  display: inline-block;
}

.blog-related { margin-top: 3rem; padding-top: 2rem; border-top: 1px solid var(--border); }
.blog-related h3 { font-size: 1.1rem; font-weight: 800; margin-bottom: 1.25rem; }

/* ── GOOGLE REVIEW BADGE ── */
.google-review-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  background: var(--white);
  border: 1.5px solid var(--border);
  border-radius: 8px;
  padding: 0.55rem 1rem;
  text-decoration: none;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--text);
  transition: border-color 0.2s, box-shadow 0.2s;
  margin-top: 0.75rem;
}
.google-review-badge:hover { border-color: var(--blue); box-shadow: 0 2px 10px rgba(0,0,0,0.08); }
.google-review-badge .stars { color: #f5a623; letter-spacing: -1px; }

/* ── FAQ JS ── */
