/* Shared layout for geo Google Ads / PPC landing pages (header embed, hero, sections, contact). */

@font-face {
  font-family: "Inter Fallback";
  src: local("Arial");
  font-style: normal;
  font-weight: 400 900;
  font-display: swap;
  ascent-override: 90.49%;
  descent-override: 22.56%;
  line-gap-override: 0%;
  size-adjust: 107.12%;
}

:root {
  --bg: #f7f9fc;
  --text: #0f172a;
  --muted: #475569;
  --line: #dbe5f3;
  --font-sans: Inter, "Inter Fallback", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Arial, sans-serif;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html,
body {
  max-width: 100%;
  overflow-x: hidden;
}

body {
  margin: 0;
  font-family: var(--font-sans);
  color: var(--text);
  background: var(--bg);
  line-height: 1.5;
}

h1,
h2,
h3,
h4 {
  font-family: var(--font-sans);
}

a {
  text-decoration: none;
  color: inherit;
}

img {
  max-width: 100%;
  display: block;
}

.container {
  width: min(1180px, 92%);
  margin: 0 auto;
}

.section {
  padding: 64px 0;
}

.section-alt {
  background: #fff;
  border-top: 1px solid #e2e8f0;
  border-bottom: 1px solid #e2e8f0;
}

.section-muted {
  background: linear-gradient(180deg, #eef2f7 0%, #f7f9fc 100%);
}

.section h2 {
  font-size: clamp(1.6rem, 2.6vw, 2.25rem);
  font-weight: 600;
  line-height: 1.15;
  letter-spacing: -0.02em;
  margin: 0 0 12px;
  color: #0f172a;
}

.section h2 .blue {
  color: #1e3a8a;
}

.section p.lead {
  color: var(--muted);
  margin: 0 0 24px;
}

.hero {
  padding: 34px 0 30px;
  background:
    linear-gradient(to right, rgba(15, 23, 42, 0.08) 1px, transparent 1px),
    linear-gradient(to bottom, rgba(15, 23, 42, 0.08) 1px, transparent 1px),
    linear-gradient(165deg, #f5f7fb 10%, #fafcff 45%, #f1f8ff 100%);
  background-size: 28px 28px, 28px 28px, cover;
  border-bottom: 1px solid #e2ebf8;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0;
  align-items: start;
  margin-top: -8px;
  max-width: 920px;
}

.hero h1 {
  margin: 0 0 14px;
  line-height: 1.15;
  font-size: clamp(1.95rem, 3.2vw, 2.85rem);
  font-weight: 600;
  color: #1e3a8a;
  letter-spacing: -0.02em;
}

.hero .hero-sub {
  font-size: clamp(1.05rem, 1.4vw, 1.2rem);
  font-weight: 600;
  color: #334155;
  margin: 0 0 16px;
  line-height: 1.45;
}

.hero p {
  margin: 0 0 16px;
  color: var(--muted);
  font-size: 1.05rem;
}

.hero-cta-simple {
  background: #1d4ed8;
  color: #fff;
  border: 1px solid #1d4ed8;
  border-radius: 10px;
  padding: 14px 22px;
  font-size: 1rem;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-weight: 600;
  font-family: var(--font-sans);
}

.hero-cta-simple:hover {
  background: #1e40af;
}

.btn-outline {
  border: 1px solid var(--line);
  background: #fff;
  color: #0f172a;
  border-radius: 10px;
  padding: 14px 22px;
  font-size: 1rem;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-weight: 600;
  font-family: var(--font-sans);
}

.cta-row {
  margin-top: 20px;
  display: flex;
  justify-content: flex-start;
  gap: 12px;
  flex-wrap: wrap;
}

.breadcrumb-wrap {
  background: #fff;
  border-bottom: 1px solid var(--line);
}

.breadcrumb {
  display: flex;
  gap: 7px;
  list-style: none;
  margin: 0;
  padding: 12px 0;
  font-size: 0.95rem;
  flex-wrap: wrap;
}

.breadcrumb a {
  color: #334155;
}

.prose-block p {
  color: #334155;
  line-height: 1.75;
  margin: 0 0 14px;
  font-size: 1.02rem;
}

.standard-services-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
}

.std-item {
  display: flex;
  flex-direction: column;
  gap: 10px;
  padding: 20px 18px;
  background: #fff;
  border: 1px solid rgba(37, 99, 235, 0.14);
  border-radius: 16px;
  box-shadow: 0 8px 24px rgba(15, 23, 42, 0.06);
}

.std-ic {
  width: 42px;
  height: 42px;
  border-radius: 12px;
  display: grid;
  place-items: center;
  background: linear-gradient(135deg, #1d4ed8, #1e40af);
  color: #fff;
  font-size: 1rem;
  box-shadow: 0 6px 14px rgba(29, 78, 216, 0.22);
}

.std-text {
  font-weight: 700;
  font-size: 0.98rem;
  color: #0f172a;
  line-height: 1.3;
}

.std-desc {
  font-size: 0.88rem;
  color: #64748b;
  line-height: 1.55;
  margin: 0;
}

.tag-cloud {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 14px 0;
}

.tag {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 7px 16px;
  font-size: 0.88rem;
  font-weight: 600;
  color: #334155;
}

.contact-section {
  padding-top: 0;
  padding-bottom: 64px;
}

.contact-merged-box {
  display: block;
  background: #fff;
  border: 1px solid rgba(37, 99, 235, 0.18);
  border-radius: 22px;
  box-shadow: 0 16px 34px rgba(2, 6, 23, 0.1);
  overflow: hidden;
}

.contact-info-side {
  padding: 34px 30px;
  background: linear-gradient(135deg, #0b1f5b 0, #0b2a7a 40%, #163f9a 100%);
  color: #fff;
}

.contact-info-eyebrow {
  font-weight: 900;
  color: rgba(255, 255, 255, 0.82);
  margin: 0 0 12px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  font-size: 0.78rem;
}

.contact-info-side h2 {
  margin: 0 0 14px;
  font-size: clamp(1.5rem, 2.4vw, 2.1rem);
  line-height: 1.12;
  letter-spacing: -0.03em;
  color: #fff;
}

.contact-info-lead {
  margin: 0 0 22px;
  color: rgba(255, 255, 255, 0.88);
  font-weight: 500;
  max-width: 520px;
  line-height: 1.65;
}

.contact-audit-btn {
  display: inline-flex;
  margin-top: 6px;
  padding: 13px 22px;
  border-radius: 12px;
  background: #fff;
  color: #1e3a8a;
  font-weight: 800;
  border: 1px solid rgba(255, 255, 255, 0.65);
  align-items: center;
  gap: 10px;
  box-shadow: 0 8px 20px rgba(15, 23, 42, 0.2);
  text-decoration: none;
}

.contact-audit-btn:hover {
  filter: brightness(1.03);
  transform: translateY(-1px);
}

.header-embed {
  width: 100vw;
  position: relative;
  left: 50%;
  right: 50%;
  margin-left: -50vw;
  margin-right: -50vw;
  line-height: 0;
}

.header-frame {
  width: 100%;
  height: 82px;
  border: 0;
  display: block;
  background: transparent;
}

.float-icon {
  position: fixed;
  bottom: 12px !important;
  width: 68px !important;
  height: 68px !important;
  border-radius: 999px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  box-shadow: 0 12px 32px rgba(15, 23, 42, 0.28);
  z-index: 9999;
}

.float-wa {
  left: 14px !important;
  background: #25d366;
  font-size: 36px !important;
}

.float-call {
  right: 14px !important;
  background: #1d4ed8;
  font-size: 24px !important;
}

@media (max-width: 992px) {
  .standard-services-list {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 700px) {
  .hero {
    padding: 20px 0 16px;
  }

  .header-frame {
    height: 74px;
  }

  .float-icon {
    width: 60px !important;
    height: 60px !important;
    bottom: 10px !important;
  }

  .float-wa {
    left: 10px !important;
    font-size: 31px !important;
  }

  .float-call {
    right: 10px !important;
    font-size: 22px !important;
  }
}

@media (max-width: 680px) {
  .contact-info-side {
    padding: 24px 20px;
  }
}
