:root {
  --ink: #07111f;
  --ink-2: #0c1b2e;
  --text: #182232;
  --muted: #667085;
  --line: #d9e2ec;
  --soft: #f6f9fc;
  --white: #ffffff;
  --teal: #08b8a6;
  --blue: #155eef;
  --gold: #c89b3c;
  --shadow: 0 18px 45px rgba(7, 17, 31, .10);
  --radius: 8px;
}

* { box-sizing: border-box; }
body {
  margin: 0;
  color: var(--text);
  background: var(--white);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.65;
}
a { color: var(--blue); text-decoration: none; }
a:hover { color: #0f48bf; }
img { max-width: 100%; height: auto; }
.container { max-width: 1180px; }
.section { padding: 92px 0; }
.section-soft { background: var(--soft); }
.section-dark { background: var(--ink); color: var(--white); }
.section-title { max-width: 760px; margin-bottom: 36px; }
.section-title h2, h1, h2, h3 { color: inherit; letter-spacing: 0; line-height: 1.08; }
h1 { font-size: clamp(2.55rem, 5vw, 5rem); font-weight: 790; }
h2 { font-size: clamp(2rem, 3.6vw, 3.25rem); font-weight: 760; }
h3 { font-size: 1.2rem; font-weight: 730; }
.lead, .hero p, .page-hero p, .section-title p { color: var(--muted); font-size: 1.08rem; }
.section-dark .lead, .section-dark .section-title p { color: #b7c4d4; }
.btn { border-radius: var(--radius); font-weight: 720; padding: .82rem 1.08rem; border-width: 1px; }
.btn-sm { padding: .58rem .86rem; }
.btn-primary { --bs-btn-bg: var(--blue); --bs-btn-border-color: var(--blue); --bs-btn-hover-bg: #0d4ed8; --bs-btn-hover-border-color: #0d4ed8; }
.btn-outline-light { --bs-btn-hover-color: var(--ink); }
.btn i { margin-right: .35rem; }

.site-navbar {
  padding: 16px 0;
  background: rgba(255,255,255,.92);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid rgba(217,226,236,.75);
  transition: box-shadow .2s ease, padding .2s ease;
}
.site-navbar.is-scrolled { box-shadow: 0 10px 30px rgba(7,17,31,.08); padding: 10px 0; }
.brand-lockup { display: inline-flex; align-items: center; gap: 10px; color: var(--ink); }
.brand-mark {
  width: 42px; height: 42px; border-radius: var(--radius);
  display: inline-grid; place-items: center; color: #fff; font-weight: 820;
  background: linear-gradient(135deg, var(--blue), var(--teal));
  box-shadow: 0 12px 24px rgba(21,94,239,.22);
}
.brand-lockup strong { display:block; font-size: 1rem; line-height: 1; }
.brand-lockup small { display:block; color: var(--muted); font-size: .76rem; margin-top: 3px; }
.navbar-nav .nav-link { color: #253044; font-weight: 680; font-size: .94rem; }
.navbar-nav .nav-link:hover { color: var(--blue); }
.services-menu { width: min(92vw, 560px); columns: 2; padding: 14px; border: 1px solid var(--line); box-shadow: var(--shadow); border-radius: var(--radius); }
.dropdown-item { border-radius: 6px; padding: .62rem .7rem; font-weight: 650; }
.dropdown-item:hover { background: #eef5ff; color: var(--blue); }

.hero {
  min-height: 92vh;
  display: flex;
  align-items: center;
  padding: 134px 0 72px;
  position: relative;
  overflow: hidden;
  background:
    linear-gradient(90deg, #fff 0%, rgba(255,255,255,.94) 42%, rgba(236,248,255,.68) 100%),
    radial-gradient(circle at 85% 18%, rgba(8,184,166,.16), transparent 32%);
}
.hero h1 { color: var(--ink); max-width: 760px; }
.hero p { max-width: 650px; margin: 22px 0 30px; }
.hero-actions, .cta-actions { display: flex; flex-wrap: wrap; gap: 12px; }
.hero-proof { display: grid; grid-template-columns: repeat(3, minmax(0,1fr)); gap: 12px; margin-top: 36px; max-width: 670px; }
.proof-item { border: 1px solid var(--line); border-radius: var(--radius); padding: 16px; background: rgba(255,255,255,.86); box-shadow: 0 12px 26px rgba(7,17,31,.05); }
.proof-item strong { display:block; color: var(--ink); font-size: 1.35rem; line-height: 1; }
.proof-item span { color: var(--muted); font-size: .88rem; }
.hero-visual { position: relative; }
.hero-visual img { border-radius: 10px; box-shadow: 0 30px 70px rgba(7,17,31,.16); border: 1px solid rgba(217,226,236,.9); }
.visual-note { position:absolute; right: -4px; bottom: 22px; background: var(--ink); color:#fff; padding: 14px 16px; border-radius: var(--radius); box-shadow: var(--shadow); max-width: 260px; }
.visual-note strong { color: var(--teal); display: block; }

.trust-strip { padding: 28px 0; border-block: 1px solid var(--line); background: #fff; }
.trust-strip .row > div { display: flex; align-items:center; gap: 10px; font-weight: 700; color: var(--ink); }
.trust-strip i { color: var(--teal); font-size: 1.25rem; }

.service-card, .portfolio-card, .price-card, .case-card, .value-card, .post-card {
  height: 100%;
  border: 1px solid var(--line);
  background: #fff;
  border-radius: var(--radius);
  padding: 26px;
  box-shadow: 0 12px 30px rgba(7,17,31,.04);
  transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease;
}
.service-card:hover, .portfolio-card:hover, .price-card:hover, .case-card:hover, .post-card:hover {
  transform: translateY(-4px);
  border-color: rgba(21,94,239,.32);
  box-shadow: var(--shadow);
}
.icon-box { width: 46px; height: 46px; display:grid; place-items:center; border-radius: var(--radius); background: #ebfdfb; color: var(--teal); margin-bottom: 18px; font-size: 1.35rem; }
.service-card p, .portfolio-card p, .case-card p, .value-card p, .post-card p { color: var(--muted); margin-bottom: 18px; }
.link-arrow { font-weight: 750; color: var(--blue); }

.industry-grid { display:grid; grid-template-columns: repeat(4, minmax(0,1fr)); gap: 14px; }
.industry-item { padding: 18px; background: rgba(255,255,255,.08); border: 1px solid rgba(255,255,255,.14); border-radius: var(--radius); color: #e5edf7; }
.industry-item i { color: var(--gold); margin-right: 8px; }
.process-line { counter-reset: step; }
.process-step { display:flex; gap: 18px; padding: 22px 0; border-bottom: 1px solid var(--line); }
.process-step::before { counter-increment: step; content: counter(step, decimal-leading-zero); color: var(--blue); font-weight: 840; font-size: 1.1rem; min-width: 42px; }

.page-hero { padding: 140px 0 72px; background: linear-gradient(135deg, var(--ink) 0%, #102849 70%, #0d6f7a 100%); color: #fff; }
.page-hero h1 { max-width: 920px; }
.page-hero p { max-width: 780px; color: #cbd7e6; }
.breadcrumb a { color: #bdefff; }
.breadcrumb-item.active { color: #fff; }
.breadcrumb-item + .breadcrumb-item::before { color: #9fb2c8; }

.cta-band { padding-top: 0; }
.cta-panel { display:flex; align-items:center; justify-content:space-between; gap: 24px; background: linear-gradient(135deg, var(--blue), #073778 58%, var(--teal)); color:#fff; border-radius: 12px; padding: 42px; box-shadow: var(--shadow); }
.cta-panel p { color: #e6f4ff; margin: 0; }
.cta-panel h2 { margin-bottom: 10px; }

.footer-cta { display:flex; justify-content:space-between; gap:24px; align-items:center; padding: 34px 0 52px; border-bottom:1px solid rgba(255,255,255,.12); }
.site-footer { background: var(--ink); color:#d7e0eb; padding: 64px 0 26px; }
.site-footer h2, .site-footer h3 { color:#fff; }
.site-footer h3 { font-size: .95rem; margin-bottom: 16px; }
.site-footer a { display:block; color:#c6d3e1; margin-bottom: 9px; }
.site-footer a:hover { color:#fff; }
.footer-text { color:#aebdce; margin-top: 18px; }
.footer-brand { color:#fff; }
.social-links { display:flex; gap: 10px; }
.social-links a { width:38px; height:38px; border:1px solid rgba(255,255,255,.14); display:grid; place-items:center; border-radius: var(--radius); margin: 0; }
.footer-bottom { display:flex; justify-content:space-between; gap:18px; border-top:1px solid rgba(255,255,255,.12); padding-top:22px; margin-top:38px; color:#9fb2c8; font-size:.92rem; }
.footer-bottom span:last-child { display:flex; gap: 16px; flex-wrap:wrap; }

.floating-whatsapp {
  position: fixed; right: 18px; bottom: 18px; width: 56px; height: 56px;
  display:grid; place-items:center; border-radius: 50%; background:#20c763; color:#fff;
  font-size: 1.65rem; z-index: 1020; box-shadow: 0 18px 35px rgba(32,199,99,.35);
}
.floating-whatsapp:hover { color:#fff; transform: translateY(-2px); }
.sticky-cta { position: fixed; left: 50%; bottom: 18px; transform: translateX(-50%); z-index: 1010; background: rgba(7,17,31,.94); border:1px solid rgba(255,255,255,.12); border-radius: 999px; overflow:hidden; box-shadow: var(--shadow); }
.sticky-cta a { color:#fff; padding: 10px 16px; display:inline-flex; align-items:center; gap:6px; font-weight:720; border-right:1px solid rgba(255,255,255,.12); }
.sticky-cta a:last-child { border-right:0; }

.form-control, .form-select { border-radius: var(--radius); border-color: var(--line); padding: .86rem .95rem; }
.form-control:focus, .form-select:focus { border-color: var(--blue); box-shadow: 0 0 0 .2rem rgba(21,94,239,.12); }
.contact-panel { border:1px solid var(--line); border-radius: var(--radius); padding: 28px; background:#fff; box-shadow: var(--shadow); }
.map-placeholder { min-height: 320px; border-radius: var(--radius); background: linear-gradient(135deg, #dceeff, #f8fbff); border:1px solid var(--line); display:grid; place-items:center; color: var(--ink); text-align:center; padding:24px; }
.price-card.featured { border-color: var(--blue); box-shadow: var(--shadow); }
.price { font-size: 2rem; font-weight: 820; color: var(--ink); margin: 12px 0; }
.check-list { list-style:none; padding:0; margin: 20px 0 0; }
.check-list li { margin-bottom: 10px; display:flex; gap:10px; color: var(--text); }
.check-list i { color: var(--teal); }
.faq-accordion .accordion-item { border-color: var(--line); border-radius: var(--radius); overflow:hidden; margin-bottom: 12px; }
.accordion-button { font-weight: 760; }
.accordion-button:not(.collapsed) { background:#eef5ff; color: var(--ink); }

@media (max-width: 991.98px) {
  .hero { padding-top: 118px; min-height: auto; }
  .hero-visual { margin-top: 34px; }
  .services-menu { columns: 1; width: 100%; box-shadow:none; }
  .industry-grid { grid-template-columns: repeat(2, minmax(0,1fr)); }
  .cta-panel, .footer-cta, .footer-bottom { flex-direction: column; align-items:flex-start; }
}
@media (max-width: 575.98px) {
  .section { padding: 64px 0; }
  .hero-proof { grid-template-columns: 1fr; }
  .industry-grid { grid-template-columns: 1fr; }
  .cta-panel { padding: 28px; }
  .hero-actions .btn, .cta-actions .btn { width:100%; }
  .visual-note { position: static; margin-top: 12px; }
}

