:root {
  --deep: #0b2239;
  --deep-soft: #133a5b;
  --accent: #eb7a2f;
  --accent-2: #f0b15a;
  --mint: #18a96a;
  --ink: #162537;
  --muted: #5e6a78;
  --line: #d8e2ed;
  --paper: #ffffff;
  --bg: #f4f8fc;
  --radius: 16px;
  --shadow: 0 18px 42px rgba(12, 35, 59, 0.12);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Manrope", "Segoe UI", sans-serif;
  color: var(--ink);
  background:
    radial-gradient(900px 420px at 90% -10%, rgba(240, 177, 90, 0.24), transparent 60%),
    radial-gradient(920px 420px at -10% 0%, rgba(19, 58, 91, 0.15), transparent 62%),
    var(--bg);
  line-height: 1.6;
}

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

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

.container {
  width: min(1160px, calc(100% - 32px));
  margin: 0 auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 40;
  background: rgba(11, 34, 57, 0.88);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.14);
}

.header-row {
  min-height: 74px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: "Outfit", "Manrope", sans-serif;
  color: #ecf5ff;
}

.brand-mark {
  width: 42px;
  height: 42px;
  border-radius: 12px;
  display: grid;
  place-items: center;
  color: var(--deep);
  font-weight: 800;
  background: linear-gradient(135deg, #ffe7d0, #fff2e4);
}

.brand-text {
  font-weight: 800;
  letter-spacing: 0.2px;
}

.site-nav {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}

.site-nav a {
  color: #dbe7f4;
  font-size: 14px;
  font-weight: 700;
}

.top-call {
  min-height: 44px;
  padding: 0 16px;
  display: inline-flex;
  align-items: center;
  border-radius: 999px;
  color: #ffffff;
  font-weight: 800;
  background: linear-gradient(120deg, var(--accent), #dd5f24);
}

.hero {
  padding: 84px 0 70px;
  color: #ffffff;
  background:
    linear-gradient(120deg, rgba(11, 34, 57, 0.96), rgba(19, 58, 91, 0.91)),
    repeating-linear-gradient(120deg, rgba(255, 255, 255, 0.06) 0, rgba(255, 255, 255, 0.06) 2px, transparent 2px, transparent 14px);
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 22px;
  align-items: center;
}

.hero-kicker {
  margin: 0;
  color: #b8d8f5;
  font-weight: 700;
  letter-spacing: 0.3px;
}

.hero h1 {
  margin: 8px 0 14px;
  font-family: "Outfit", "Manrope", sans-serif;
  font-size: clamp(33px, 5vw, 58px);
  line-height: 1.03;
}

.hero-copy {
  margin: 0;
  color: #d3e7fb;
  font-size: clamp(16px, 2.2vw, 20px);
}

.hero-actions {
  margin-top: 20px;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.btn {
  min-height: 48px;
  padding: 0 18px;
  border-radius: 12px;
  border: none;
  display: inline-flex;
  align-items: center;
  font-weight: 800;
}

.btn-primary {
  color: #ffffff;
  background: linear-gradient(120deg, var(--mint), #109357);
}

.btn-ghost {
  color: var(--deep);
  background: #ffe9d6;
}

.hero-visual {
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 20px;
  padding: 14px;
}

.hero-visual img {
  border-radius: 14px;
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.hero-highlights {
  margin: 12px 0 0;
  padding: 0 0 0 18px;
  color: #deedfc;
}

.section {
  padding: 64px 0;
}

.section h2 {
  margin: 0 0 10px;
  font-family: "Outfit", "Manrope", sans-serif;
  font-size: clamp(30px, 4vw, 42px);
  line-height: 1.12;
  color: var(--deep);
}

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

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

.service-card {
  border: 1px solid var(--line);
  background: var(--paper);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: 18px;
}

.service-card h3 {
  margin: 0 0 8px;
  color: var(--deep);
}

.service-card p {
  margin: 0 0 10px;
  color: var(--muted);
}

.service-card a {
  font-weight: 800;
  color: var(--deep-soft);
}

.section-areas {
  background: #eef4fa;
}

.area-cloud {
  display: flex;
  flex-wrap: wrap;
  gap: 9px;
}

.area-cloud span {
  padding: 7px 12px;
  border-radius: 999px;
  font-size: 14px;
  border: 1px solid #c8d8e9;
  background: #ffffff;
  color: var(--deep-soft);
}

.section-reviews {
  overflow: hidden;
}

.reviews-marquee {
  overflow: hidden;
  border-radius: 20px;
  border: 1px solid var(--line);
  background: linear-gradient(180deg, #ffffff, #f8fbff);
  padding: 16px 0;
}

.reviews-track {
  display: flex;
  width: max-content;
  gap: 14px;
  animation: marquee 34s linear infinite;
  will-change: transform;
}

.reviews-track:hover {
  animation-play-state: paused;
}

.review-card {
  width: min(330px, 82vw);
  border: 1px solid #d4e1ef;
  border-radius: 14px;
  background: #ffffff;
  padding: 14px;
}

.review-head {
  display: flex;
  align-items: center;
  gap: 10px;
}

.avatar {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  font-weight: 800;
  color: #ffffff;
  background: linear-gradient(120deg, var(--deep-soft), var(--deep));
}

.review-head strong {
  color: var(--deep);
}

.review-head small {
  display: block;
  color: var(--muted);
}

.stars {
  margin: 10px 0 8px;
  color: #ff9b2c;
  letter-spacing: 1px;
  font-weight: 800;
}

.split-section {
  display: grid;
  gap: 16px;
  grid-template-columns: 1.2fr 0.8fr;
}

.service-side {
  border: 1px solid var(--line);
  background: #ffffff;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: 18px;
}

.service-side h3 {
  margin: 0 0 8px;
  color: var(--deep);
}

.service-side ul {
  margin: 0;
  padding-left: 18px;
  color: var(--muted);
}

.faq-box {
  margin-top: 14px;
}

.faq-list {
  display: grid;
  gap: 10px;
}

.faq-item {
  border: 1px solid var(--line);
  border-radius: 12px;
  overflow: hidden;
  background: #ffffff;
}

.faq-question {
  width: 100%;
  text-align: left;
  border: none;
  background: #ffffff;
  color: var(--deep);
  cursor: pointer;
  padding: 14px;
  font-weight: 800;
  font-size: 15px;
}

.faq-answer {
  padding: 0 14px 14px;
  color: var(--muted);
  display: none;
}

.faq-item.is-open .faq-answer {
  display: block;
}

.faq-topic-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 14px;
}

.faq-topic {
  border: 1px solid #cedaea;
  background: #ffffff;
  color: var(--deep-soft);
  border-radius: 999px;
  min-height: 40px;
  padding: 0 14px;
  font-weight: 800;
  cursor: pointer;
}

.faq-topic.is-active {
  color: #ffffff;
  border-color: transparent;
  background: linear-gradient(120deg, var(--deep-soft), var(--deep));
}

.site-footer {
  padding: 36px 0 88px;
  background: #0d2237;
  color: #cde0f3;
}

.footer-grid {
  display: grid;
  gap: 16px;
  grid-template-columns: 1fr 1.2fr 1.1fr;
}

.site-footer h3 {
  color: #ffffff;
  margin: 0 0 8px;
}

.site-footer p {
  margin: 0 0 6px;
}

.floating-contact {
  position: fixed;
  right: 14px;
  bottom: 14px;
  z-index: 50;
  display: grid;
  gap: 10px;
}

.floating-contact a {
  min-height: 50px;
  border-radius: 999px;
  padding: 0 16px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #ffffff;
  font-weight: 800;
  box-shadow: var(--shadow);
}

.wa-float {
  background: linear-gradient(120deg, #1caf67, #0f8f51);
}

.call-float {
  background: linear-gradient(120deg, var(--accent), #d85e26);
}

.pulse {
  animation: pulse 1.8s ease-in-out infinite;
}

.pulse-soft {
  animation: pulseSoft 2.3s ease-in-out infinite;
}

@keyframes pulse {
  0% { transform: scale(1); box-shadow: 0 0 0 0 rgba(28, 175, 103, 0.45); }
  70% { transform: scale(1.03); box-shadow: 0 0 0 12px rgba(28, 175, 103, 0); }
  100% { transform: scale(1); box-shadow: 0 0 0 0 rgba(28, 175, 103, 0); }
}

@keyframes pulseSoft {
  0% { transform: scale(1); box-shadow: 0 0 0 0 rgba(235, 122, 47, 0.4); }
  70% { transform: scale(1.02); box-shadow: 0 0 0 10px rgba(235, 122, 47, 0); }
  100% { transform: scale(1); box-shadow: 0 0 0 0 rgba(235, 122, 47, 0); }
}

@keyframes marquee {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

@media (max-width: 1024px) {
  .hero-grid,
  .split-section,
  .service-grid,
  .footer-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 760px) {
  .site-nav,
  .top-call {
    display: none;
  }

  .hero {
    padding-top: 70px;
  }

  .floating-contact a {
    min-height: 45px;
    font-size: 13px;
  }
}

/* Legacy template compatibility for existing blog pages */
nav {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}

nav a {
  color: #dbe7f4;
  font-size: 14px;
  font-weight: 700;
}

.brand-badge {
  width: 42px;
  height: 42px;
  border-radius: 12px;
  display: grid;
  place-items: center;
  color: var(--deep);
  font-weight: 800;
  background: linear-gradient(135deg, #ffe7d0, #fff2e4);
}

.head-cta {
  min-height: 44px;
  padding: 0 16px;
  display: inline-flex;
  align-items: center;
  border-radius: 999px;
  color: #ffffff;
  font-weight: 800;
  background: linear-gradient(120deg, var(--accent), #dd5f24);
}

.actions {
  margin-top: 20px;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.btn-secondary {
  color: var(--deep);
  background: #ffe9d6;
}

.breadcrumb {
  margin: 0 0 12px;
  color: #d2e6fa;
}

.float-actions {
  position: fixed;
  right: 14px;
  bottom: 14px;
  z-index: 50;
  display: grid;
  gap: 10px;
}

.float-actions a {
  min-height: 50px;
  border-radius: 999px;
  padding: 0 16px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #ffffff;
  font-weight: 800;
  box-shadow: var(--shadow);
}

.float-whatsapp {
  background: linear-gradient(120deg, #1caf67, #0f8f51);
  animation: pulse 1.8s ease-in-out infinite;
}

.float-phone {
  background: linear-gradient(120deg, var(--accent), #d85e26);
  animation: pulseSoft 2.3s ease-in-out infinite;
}

.float-offer {
  display: none;
}
