:root {
  --primary: #0068a9;
  --primary-dark: #005389;
  --primary-soft: #eaf5ff;
  --text: #1d2a36;
  --muted: #53657a;
  --white: #ffffff;
  --border: #dfeaf5;
  --bg-soft: #f6f9fc;
  --shadow: 0 18px 48px rgba(13, 39, 70, 0.12);
  --dark: #0d1f2d;
  --dark-soft: #16324a;
  --accent-heat: #e07a1f;
  --accent-security: #1f9d6a;
  --brand-teal: #0068a9;
  --brand-teal-dark: #005389;
  --accent-teal: #14b8a6;
  --slate-900: #0f172a;
  --slate-950: #020617;
  --hero-overlay: rgba(15, 23, 42, 0.68);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--white);
  color: var(--text);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.6;
}

a {
  color: var(--primary);
  text-decoration: none;
}

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

form {
  min-height: 100vh;
}

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 30;
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid var(--border);
}

.site-header .container {
  max-width: 1152px;
}

.nav-wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 80px;
  gap: 20px;
}

.brand {
  display: inline-flex;
  align-items: center;
}

.brand img {
  height: 42px;
  object-fit: contain;
}

.main-nav {
  display: flex;
  align-items: center;
  gap: 26px;
  flex-wrap: wrap;
}

.main-nav a {
  color: var(--text);
  font-weight: 500;
  font-size: 0.78rem;
  transition: color 0.25s ease;
}

.main-nav a:hover,
.main-nav a.active {
  color: var(--primary);
}

.hero,
.page-hero {
  background: linear-gradient(135deg, #f3f9ff 0%, #edf5ff 100%);
  padding: 92px 0 78px;
}

.page-hero {
  position: relative;
  min-height: 560px;
  display: flex;
  align-items: center;
  overflow: hidden;
  isolation: isolate;
  background-color: var(--dark);
  background-image: url("https://images.unsplash.com/photo-1486406146926-c627a92ad1ab?auto=format&fit=crop&w=1920&q=85");
  background-size: cover;
  background-position: center;
}

.page-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background: linear-gradient(90deg, rgba(15, 23, 42, 0.88) 0%, rgba(15, 23, 42, 0.68) 48%, rgba(15, 23, 42, 0.42) 100%);
}

.page-hero > .container {
  position: relative;
  z-index: 1;
}

.page-hero .two-columns {
  display: block;
}

.page-hero .two-columns > div:first-child {
  max-width: 650px;
}

.page-hero .hero-visual {
  position: absolute;
  inset: 0;
  z-index: -2;
  display: block;
}

.page-hero .page-image {
  width: 100%;
  height: 100%;
  min-height: 560px;
  object-fit: cover;
  border: 0;
  border-radius: 0;
  box-shadow: none;
}

.page-hero h1,
.page-hero h2,
.page-hero h3 {
  color: var(--white);
}

.page-hero p {
  color: rgba(255, 255, 255, 0.82);
}

.page-hero .eyebrow {
  background: rgba(20, 184, 166, 0.2);
  color: #7ddfd4;
}

.page-hero .btn-secondary {
  background: rgba(255, 255, 255, 0.12);
  color: var(--white);
  border-color: rgba(255, 255, 255, 0.3);
}

.hero-inner,
.two-columns {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 40px;
  align-items: center;
}

.eyebrow {
  display: inline-block;
  margin-bottom: 16px;
  padding: 6px 12px;
  border-radius: 999px;
  background: rgba(0, 104, 169, 0.08);
  color: var(--primary);
  font-size: 0.74rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

h1, h2, h3, h4 {
  margin-top: 0;
  line-height: 1.2;
  color: var(--text);
}

h1 {
  font-size: clamp(2.1rem, 5vw, 3.5rem);
  margin-bottom: 16px;
}

h2 {
  font-size: clamp(1.7rem, 3vw, 2.6rem);
  margin-bottom: 16px;
}

p {
  margin-top: 0;
  color: var(--muted);
  font-size: 1.02rem;
}

.hero-actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  margin: 26px 0;
}

.btn {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  min-height: 44px;
  padding: 0.7rem 1.5rem;
  border: 0;
  border-radius: 999px;
  cursor: pointer;
  font-weight: 700;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.btn:hover {
  transform: translateY(-1px);
}

.btn-primary {
  background: var(--brand-teal);
  color: var(--white);
  box-shadow: 0 8px 18px rgba(20, 184, 166, 0.22);
}

.btn-primary:hover {
  background: var(--brand-teal-dark);
}

.btn-secondary {
  background: var(--white);
  color: var(--primary);
  border: 1px solid rgba(0, 104, 169, 0.18);
}

.btn-block {
  width: 100%;
}

.image-placeholder {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 280px;
  background: linear-gradient(135deg, rgba(0, 104, 169, 0.08), rgba(0, 104, 169, 0.035));
  border: 1px solid var(--border);
  border-radius: 20px;
  color: var(--primary);
  font-weight: 700;
  text-align: center;
  padding: 20px;
  box-shadow: var(--shadow);
}

.page-image {
  width: 100%;
  height: 100%;
  min-height: 280px;
  object-fit: cover;
  border-radius: 20px;
  border: 1px solid var(--border);
  box-shadow: var(--shadow);
}

.content-block {
  margin-top: 18px;
}

.feature-grid {
  display: grid;
  gap: 20px;
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.feature-item {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 22px;
  box-shadow: 0 12px 28px rgba(16, 47, 71, 0.04);
}

.hero-points {
  list-style: none;
  padding: 0;
  margin: 22px 0 0;
  display: grid;
  gap: 12px;
  color: var(--text);
  font-weight: 600;
}

.hero-points li {
  display: flex;
  align-items: center;
  gap: 10px;
}

.hero-points i,
.check-list i,
.icon-circle i,
.mini-feature i {
  color: var(--primary);
}

.hero-visual {
  display: flex;
  align-items: center;
  justify-content: center;
}

.glass-card,
.simple-box {
  width: min(100%, 430px);
  min-height: 320px;
  background: linear-gradient(140deg, rgba(255,255,255,0.9), rgba(183,221,255,0.35));
  border-radius: 24px;
  border: 1px solid rgba(0, 104, 169, 0.12);
  box-shadow: var(--shadow);
  position: relative;
  overflow: hidden;
}

.glass-card::before,
.simple-box::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(160deg, rgba(255,255,255,0.38), rgba(255,255,255,0.06));
}

.mini-stat {
  position: absolute;
  right: 26px;
  bottom: 26px;
  background: rgba(255,255,255,0.8);
  border: 1px solid rgba(0,104,169,0.12);
  padding: 16px 20px;
  border-radius: 18px;
  box-shadow: 0 12px 28px rgba(0, 104, 169, 0.1);
  z-index: 1;
}

.mini-stat strong {
  display: block;
  color: var(--primary);
  font-size: 1.5rem;
  line-height: 1;
}

.mini-stat span {
  color: var(--muted);
  font-size: 0.9rem;
}

.mini-stat.large {
  left: 26px;
  right: auto;
  bottom: 26px;
  text-transform: uppercase;
}

.section {
  padding: 88px 0;
}

.section-alt {
  background: var(--bg-soft);
}

.section-heading {
  margin-bottom: 32px;
}

.align-center {
  text-align: center;
}

.three-columns,
.cards-grid {
  display: grid;
  gap: 24px;
}

.three-columns {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.info-card,
.product-card,
.quote-form-box,
.stacked-panel {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 14px;
  box-shadow: 0 14px 38px rgba(16, 47, 71, 0.06);
}

.info-card {
  padding: 28px 22px;
  text-align: center;
}

.icon-circle {
  width: 68px;
  height: 68px;
  margin: 0 auto 18px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(0, 104, 169, 0.08);
  font-size: 1.5rem;
}

.triple-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.product-card {
  padding: 26px 22px;
}

.product-card.highlight {
  border-top: 4px solid var(--primary);
}

.label {
  display: inline-flex;
  padding: 6px 12px;
  border-radius: 999px;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.label-blue {
  background: rgba(0,104,169,0.08);
  color: var(--primary);
}

.product-card ul {
  list-style: none;
  padding-left: 0;
  margin: 22px 0 0;
}

.product-card li {
  position: relative;
  padding-left: 20px;
  margin-bottom: 10px;
  color: var(--text);
}

.product-card li::before {
  content: "•";
  position: absolute;
  left: 0;
  color: var(--primary);
  font-size: 1.25rem;
}

.text-link {
  display: inline-block;
  margin-top: 18px;
  font-weight: 700;
}

.project-link {
  color: var(--primary);
  font-size: 0.9rem;
  text-align: center;
  width: 100%;
}

.project-link:hover {
  color: var(--primary-dark);
}

.check-list {
  display: grid;
  gap: 14px;
  margin-top: 24px;
  font-weight: 600;
}

.check-list div {
  display: flex;
  align-items: center;
  gap: 12px;
}

.stacked-panel {
  padding: 10px;
  display: grid;
  gap: 14px;
}

.mini-feature {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 18px 20px;
  border-radius: 14px;
  background: var(--white);
  border: 1px solid var(--border);
}

.mini-feature i {
  font-size: 1.4rem;
  width: 42px;
  height: 42px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(0,104,169,0.08);
  border-radius: 10px;
}

.mini-feature strong {
  display: block;
  color: var(--text);
  margin-bottom: 4px;
}

.mini-feature span {
  color: var(--muted);
  font-size: 0.92rem;
}

.quote-section {
  padding-top: 0;
}

.quote-wrap {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 28px;
  align-items: center;
}

.quote-form-box {
  padding: 28px;
  box-shadow: 0 20px 40px rgba(15, 23, 42, 0.12);
}

.field-row {
  margin-bottom: 14px;
}

.input {
  width: 100%;
  min-height: 48px;
  border: 1px solid var(--border);
  border-radius: 9px;
  background: var(--white);
  color: var(--text);
  padding: 12px 14px;
  font: inherit;
}

.dropdown-input {
  min-height: 56px;
  padding: 15px 18px;
  cursor: pointer;
}

.textarea {
  min-height: 120px;
  resize: vertical;
}

.message {
  display: block;
  margin-top: 16px;
  padding: 10px 14px;
  border-radius: 10px;
  background: rgba(0,104,169,0.08);
  color: var(--primary);
  font-weight: 600;
}

.site-footer {
  background: var(--slate-950);
  color: rgba(255,255,255,0.85);
  padding: 46px 0 60px;
}

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

.map-frame {
  display: block;
  width: 100%;
  min-height: 420px;
  border: 0;
  border-radius: 18px;
}

.site-footer h3,
.site-footer h4,
.site-footer a,
.site-footer p,
.site-footer li {
  color: rgba(255,255,255,0.85);
}

.site-footer ul {
  list-style: none;
  padding-left: 0;
  margin: 0;
  display: grid;
  gap: 8px;
}

.whatsapp-float {
  position: fixed;
  right: 22px;
  bottom: 22px;
  width: 64px;
  height: 64px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: #25d366;
  color: #fff;
  font-size: 2rem;
  box-shadow: 0 12px 30px rgba(37, 211, 102, 0.35);
  z-index: 999;
}

/* ===== Home page (page.master) ===== */

.btn-pill {
  border-radius: 999px;
}

.nav-cta {
  min-height: 42px;
  padding: 0 20px;
  font-size: 0.78rem;
}

.mobile-menu-toggle {
  display: none;
}

body.menu-open {
  overflow: hidden;
}

.btn-on-dark {
  background: rgba(255, 255, 255, 0.1);
  color: var(--white);
  border: 1px solid rgba(255, 255, 255, 0.28);
}

.btn-on-dark:hover {
  background: rgba(255, 255, 255, 0.18);
}

.home-hero {
  min-height: 92vh;
  display: flex;
  align-items: center;
  background-image: linear-gradient(var(--hero-overlay), rgba(15, 23, 42, 0.74)), url("https://images.unsplash.com/photo-1486406146926-c627a92ad1ab?auto=format&fit=crop&w=1920&q=85");
  background-size: cover;
  background-position: center;
  padding: 120px 0 72px;
  text-align: left;
}

.home-hero-inner {
  max-width: 1152px;
  width: 100%;
  margin: 0 auto;
}

.hero-badge {
  display: inline-block;
  margin-bottom: 20px;
  padding: 8px 16px;
  border-radius: 999px;
  background: rgba(20, 184, 166, 0.22);
  border: 1px solid rgba(255, 255, 255, 0.22);
  color: var(--brand-teal);
  font-size: 0.76rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.text-on-dark {
  color: var(--white);
}

.text-on-dark-muted {
  color: rgba(255, 255, 255, 0.78);
  font-size: 1.08rem;
  max-width: 520px;
  margin: 0;
}

.text-accent {
  color: var(--accent-teal);
}

.home-hero .hero-actions {
  justify-content: flex-start;
}

.hero-stats {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
  max-width: 520px;
  margin-top: 34px;
}

.stat-card {
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 8px;
  padding: 16px 10px;
}

.stat-card strong {
  display: block;
  color: var(--white);
  font-size: 1.5rem;
  line-height: 1;
  margin-bottom: 6px;
}

.stat-card span {
  color: rgba(255, 255, 255, 0.75);
  font-size: 0.82rem;
}

.icon-circle.icon-heat {
  background: rgba(224, 122, 31, 0.12);
  color: var(--accent-heat);
}

.icon-circle.icon-privacy {
  background: rgba(0, 104, 169, 0.1);
  color: var(--primary);
}

.icon-circle.icon-security {
  background: rgba(31, 157, 106, 0.12);
  color: var(--accent-security);
}

.product-card.accent-heat {
  border-top: 4px solid var(--accent-heat);
}

.product-card.accent-privacy {
  border-top: 4px solid var(--primary);
}

.product-card.accent-security {
  border-top: 4px solid var(--accent-security);
}

.service-heat .eyebrow {
  color: #f7b267;
}

.service-privacy .eyebrow {
  color: #77b9df;
}

.service-security .eyebrow {
  color: #79d5a9;
}

.service-heat h1::after,
.service-privacy h1::after,
.service-security h1::after {
  content: "";
  display: block;
  width: 48px;
  height: 3px;
  margin-top: 18px;
  border-radius: 999px;
}

.service-heat h1::after {
  background: var(--accent-heat);
}

.service-privacy h1::after {
  background: var(--primary);
}

.service-security h1::after {
  background: var(--accent-security);
}

.service-heat .hero-project-placeholder i {
  color: #f7b267;
}

.service-privacy .hero-project-placeholder i {
  color: #77b9df;
}

.service-security .hero-project-placeholder i {
  color: #79d5a9;
}

.comparison-layout {
  align-items: stretch;
}

.comparison-box {
  display: flex;
  border-radius: 18px;
  overflow: hidden;
  border: 1px solid var(--border);
  box-shadow: var(--shadow);
  height: 100%;
}

.comparison-col {
  flex: 1;
  padding: 24px 22px;
}

.comparison-old {
  background: var(--bg-soft);
}

.comparison-new {
  background: var(--primary);
  color: var(--white);
}

.comparison-new .label-on-primary {
  background: rgba(255, 255, 255, 0.16);
  color: var(--white);
}

.plain-list {
  list-style: none;
  padding: 0;
  margin: 18px 0 0;
  display: grid;
  gap: 10px;
  font-size: 0.92rem;
}

.comparison-old .plain-list {
  color: var(--muted);
}

.comparison-new .plain-list {
  color: rgba(255, 255, 255, 0.92);
  font-weight: 600;
}

.change-section {
  background: var(--slate-900);
  padding: 70px 0;
}

.change-section .eyebrow-on-dark {
  background: rgba(255, 255, 255, 0.1);
  color: var(--accent-teal);
}

.change-list {
  max-width: 780px;
  margin: 0 auto;
  display: grid;
  gap: 12px;
}

.change-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}

.change-before,
.change-after {
  display: flex;
  align-items: center;
  gap: 10px;
  border-radius: 12px;
  padding: 14px 18px;
  font-size: 0.92rem;
}

.change-before {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.08);
  color: rgba(255, 255, 255, 0.7);
}

.change-before .dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #e5484d;
  flex-shrink: 0;
}

.change-after {
  background: rgba(19, 78, 74, 0.4);
  border: 1px solid rgba(15, 118, 110, 0.4);
  color: #ccfbf1;
}

.change-after i {
  color: var(--brand-teal);
}

.process-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 24px;
  text-align: center;
}

.step-number {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  margin: 0 auto 16px;
  border-radius: 50%;
  background: var(--primary);
  color: var(--white);
  font-weight: 700;
  font-size: 1.1rem;
}

.container.narrow {
  width: min(760px, calc(100% - 30px));
}

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

.faq-item {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 14px;
  overflow: hidden;
}

.faq-question {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  cursor: pointer;
  padding: 18px 22px;
  font-weight: 700;
  color: var(--text);
  list-style: none;
}

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

.faq-icon {
  color: var(--muted);
  transition: transform 0.2s ease;
  flex-shrink: 0;
}

.faq-item[open] .faq-icon {
  transform: rotate(180deg);
}

.faq-answer {
  padding: 0 22px 20px;
  color: var(--muted);
  font-size: 0.95rem;
  line-height: 1.6;
}

.contact-links {
  display: grid;
  gap: 14px;
  margin-top: 28px;
}

.contact-link {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 14px 18px;
  border-radius: 14px;
  background: var(--bg-soft);
  border: 1px solid var(--border);
  transition: background 0.2s ease;
}

.contact-link:hover {
  background: var(--primary-soft);
}

.contact-link small {
  display: block;
  color: var(--muted);
  font-size: 0.78rem;
}

.contact-link strong {
  display: block;
  color: var(--text);
  font-size: 1.05rem;
}

.social-links {
  display: flex;
  justify-content: center;
  gap: 12px;
  margin-top: 8px;
}

.social-links a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: var(--primary-soft);
  color: var(--primary);
  font-size: 1.1rem;
  transition: transform 0.2s ease, background 0.2s ease, color 0.2s ease;
}

.social-links a:hover {
  background: var(--primary);
  color: var(--white);
  transform: translateY(-2px);
}

.home-contact-links {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
}

.home-contact-links .contact-link {
  min-height: 78px;
  padding: 12px 14px;
}

.home-contact-links .icon-circle {
  width: 44px;
  height: 44px;
  margin: 0;
  font-size: 1.05rem;
  flex-shrink: 0;
}

.home-contact-links .contact-link strong {
  font-size: 0.96rem;
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  margin-top: 30px;
  padding-top: 24px;
  text-align: center;
  font-size: 0.82rem;
}

.project-section {
  padding-top: 72px;
  padding-bottom: 72px;
}

.project-cta-section {
  padding-top: 0;
  padding-bottom: 72px;
}

.project-cta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  padding: 30px 34px;
  background: var(--primary-soft);
  border: 1px solid var(--border);
  border-radius: 14px;
}

.project-cta h2 {
  margin-bottom: 8px;
  font-size: clamp(1.45rem, 3vw, 2rem);
}

.project-cta p {
  margin-bottom: 0;
  max-width: 680px;
}

.project-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 24px;
}

.project-card {
  overflow: hidden;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 14px;
  box-shadow: 0 12px 28px rgba(16, 47, 71, 0.06);
}

.project-image-placeholder,
.hero-project-placeholder {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 10px;
  color: var(--primary);
  background: linear-gradient(135deg, rgba(0, 104, 169, 0.1), rgba(20, 184, 166, 0.08));
  border: 1px dashed rgba(0, 104, 169, 0.32);
  text-align: center;
}

.project-image-placeholder {
  min-height: 220px;
  font-size: 0.9rem;
}

.project-image-placeholder i {
  font-size: 2rem;
}

.project-card-body {
  padding: 22px;
}

.project-card-body h3 {
  margin-bottom: 16px;
  font-size: 1.15rem;
}

.project-card dl {
  display: grid;
  gap: 10px;
  margin: 0;
}

.project-card dl div {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  padding-top: 10px;
  border-top: 1px solid var(--border);
}

.project-card dt,
.project-card dd {
  margin: 0;
  font-size: 0.9rem;
}

.project-card dt {
  color: var(--muted);
}

.project-card dd {
  color: var(--text);
  font-weight: 700;
  text-align: right;
}

.hero-project-placeholder {
  width: min(100%, 440px);
  min-height: 330px;
  padding: 28px;
  color: rgba(255, 255, 255, 0.86);
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.35);
}

.hero-project-placeholder i {
  font-size: 3rem;
  color: #7ddfd4;
}
