
:root {
  --navy: #08264a;
  --navy-deep: #041b36;
  --blue: #2563eb;
  --cream: #faf7f2;
  --warm: #fff8ef;
  --orange: #f05a1a;
  --amber: #f59e0b;
  --green: #16a34a;
  --text: #0f2440;
  --muted: #59687c;
  --border: #e4dfd6;
  --surface: #ffffff;
  --shadow: 0 18px 42px rgba(8, 38, 74, .12);
  --radius: 1rem;
  --max: 1180px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--text);
  background: var(--cream);
  line-height: 1.55;
}
img { max-width: 100%; height: auto; }
a { color: inherit; }
.container { width: min(var(--max), calc(100% - 2rem)); margin: 0 auto; }
.narrow { max-width: 840px; }
.skip-link { position:absolute; left:-999px; top:0; background:#fff; padding:.75rem; z-index:100; }
.skip-link:focus { left:.5rem; }

.top-bar {
  background: var(--navy-deep);
  color: #fff;
  font-size: .9rem;
}
.top-bar-inner {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  padding: .45rem 0;
}
.site-header {
  background: rgba(255,255,255,.96);
  border-bottom: 1px solid rgba(8,38,74,.12);
  position: sticky;
  top: 0;
  z-index: 30;
  backdrop-filter: blur(10px);
}
.header-inner {
  min-height: 4.7rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}
.brand {
  display: flex;
  align-items: center;
  gap: .9rem;
  text-decoration: none;
}
.brand-mark {
  width: 3rem;
  height: 3rem;
  border-radius: .65rem;
  display: grid;
  place-items: center;
  background: linear-gradient(135deg, #092e64, #0a6684);
  color: #fff;
  font-weight: 900;
  letter-spacing: .03em;
}
.brand strong { display: block; font-size: 1.35rem; color: var(--navy); line-height: 1.05; }
.brand small { display: block; color: var(--muted); font-size: .85rem; margin-top: .15rem; }
.site-nav {
  display: none;
  position: absolute;
  left: 0; right: 0; top: 4.7rem;
  background: #fff;
  border-bottom: 1px solid var(--border);
  box-shadow: var(--shadow);
  padding: .7rem 1rem;
}
.site-nav.is-open { display: grid; gap: .2rem; }
.site-nav a {
  text-decoration: none;
  font-weight: 800;
  color: var(--navy);
  padding: .75rem .85rem;
  border-radius: .75rem;
  white-space: nowrap;
}
.site-nav a:hover { background: var(--warm); }
.site-nav .nav-call {
  background: var(--orange);
  color: #fff;
}
.nav-toggle {
  width: 3rem; height: 3rem;
  border: 1px solid var(--border);
  background: #fff;
  border-radius: .8rem;
  display: grid;
  place-content: center;
  gap: .25rem;
}
.nav-toggle span:not(.sr-only) { width: 1.35rem; height: 2px; background: var(--navy); display: block; }
.sr-only { position:absolute; width:1px; height:1px; overflow:hidden; clip:rect(0 0 0 0); }

.hero-modern {
  background: linear-gradient(90deg, rgba(250,247,242,1) 0%, rgba(250,247,242,.92) 34%, rgba(250,247,242,.65) 55%, rgba(250,247,242,.1) 100%);
  padding: 2.6rem 0 1.5rem;
  position: relative;
  overflow: hidden;
}
.hero-modern-grid {
  display: grid;
  gap: 1.6rem;
  align-items: center;
}
.hero-copy { position: relative; z-index: 2; }
.eyebrow {
  font-size: .78rem;
  text-transform: uppercase;
  letter-spacing: .14em;
  font-weight: 900;
  color: var(--blue);
  margin: 0 0 .8rem;
}
.eyebrow.warm { color: var(--orange); }
.hero-copy h1, .page-hero h1, .article h1 {
  margin: 0 0 1rem;
  font-size: clamp(2.6rem, 9vw, 5rem);
  line-height: .98;
  letter-spacing: -.055em;
  color: var(--navy);
}
.hero-lead, .page-hero p, .section-heading p, .article-intro {
  color: var(--muted);
  font-size: 1.1rem;
  max-width: 650px;
}
.cta-group { display: flex; flex-wrap: wrap; gap: .85rem; margin: 1.35rem 0; }
.btn {
  min-height: 3.15rem;
  padding: .85rem 1.2rem;
  border-radius: .7rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  font-weight: 900;
  border: 1px solid transparent;
}
.btn-call, .btn-primary { background: var(--orange); color: #fff; box-shadow: 0 10px 24px rgba(240, 90, 26, .28); }
.btn-whatsapp { background: var(--green); color: #fff; box-shadow: 0 10px 24px rgba(22,163,74,.23); }
.btn-reviews, .btn-secondary { background: #fff; color: var(--navy); border-color: var(--navy); }
.trust-row {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem 1.4rem;
  color: var(--navy);
  font-size: .95rem;
}
.hero-visual img {
  width: 100%;
  border-radius: 0;
  box-shadow: none;
  object-fit: cover;
  object-position: center;
  aspect-ratio: 16 / 10;
}

.quick-jobs {
  background: #fff;
  padding: 1.25rem 0 1.7rem;
}
.quick-grid-layout {
  display: grid;
  gap: 1.4rem;
}
.centered { text-align: center; margin-inline: auto; }
.section-heading { margin-bottom: 1.4rem; max-width: 860px; }
.section-heading h2 {
  margin: 0 0 .45rem;
  color: var(--navy);
  font-size: clamp(1.65rem, 4vw, 2.65rem);
  line-height: 1.08;
}
.quick-grid {
  display: grid;
  gap: .85rem;
}
.quick-card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: .85rem;
  box-shadow: 0 12px 30px rgba(8, 38, 74, .08);
  padding: 1.1rem;
  text-align: center;
}
.quick-icon {
  width: 3rem;
  height: 3rem;
  display: grid;
  place-items: center;
  margin: 0 auto .7rem;
  color: var(--blue);
  font-weight: 900;
  border: 2px solid rgba(37,99,235,.18);
  border-radius: .9rem;
  background: #f5f8ff;
}
.quick-card h3 { margin: 0 0 .35rem; color: var(--navy); }
.quick-card p { margin: 0 0 .75rem; color: var(--muted); font-size: .95rem; }
.quick-card a, .text-link { color: var(--orange); font-weight: 900; text-decoration: none; }
.quick-card a:hover, .text-link:hover { text-decoration: underline; }

.review-panel {
  border-left: 0;
  background: linear-gradient(180deg, #fff, var(--warm));
  padding: 1.25rem;
  border-radius: var(--radius);
  border: 1px solid var(--border);
}
.rating-line { display:flex; align-items:center; gap:.7rem; color: var(--amber); }
.rating-line strong { color: var(--navy); font-size: 2.6rem; line-height: 1; }
.based { margin-top: 0; color: var(--muted); }
.advice-list { display: grid; gap: .75rem; margin: 1rem 0; }
.advice-list blockquote {
  margin: 0;
  padding-left: 1rem;
  border-left: 3px solid var(--orange);
  color: var(--text);
  font-style: italic;
}

.about-credentials {
  background: var(--warm);
  padding: 1.8rem 0;
}
.about-grid {
  display: grid;
  gap: 1rem;
}
.about-card {
  background: rgba(255,255,255,.82);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.1rem;
  box-shadow: 0 10px 28px rgba(8, 38, 74, .07);
}
.about-card.with-image {
  display: grid;
  gap: 1rem;
}
.about-card.with-image img {
  width: 100%;
  border-radius: .8rem;
  object-fit: cover;
  aspect-ratio: 16 / 9;
}
.about-card h2 { color: var(--navy); margin: 0 0 .5rem; }
.about-card p { color: var(--muted); margin: 0 0 .8rem; }
.tick-grid, .check-list {
  padding: 0; margin: .75rem 0 0; list-style: none; display: grid; gap: .45rem;
}
.tick-grid { grid-template-columns: 1fr; }
.tick-grid li::before, .check-list li::before {
  content: "✓"; color: var(--orange); font-weight: 900; margin-right: .4rem;
}
.badge-grid {
  display: grid;
  gap: .7rem;
}
.badge-grid span {
  display: block;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: .75rem;
  padding: .85rem;
  font-size: .92rem;
}
.badge-grid strong { display: block; color: var(--navy); }
.location-line { color: var(--blue) !important; font-weight: 800; }

.section, .page-hero { padding: 3.5rem 0; }
.warm-section, .section.soft { background: var(--cream); }
.section:not(.warm-section):not(.soft):not(.contact-section) { background: #fff; }
.card-grid, .choice-grid, .process-grid, .contact-grid, .page-hero-grid, .footer-grid {
  display: grid;
  gap: 1rem;
}
.info-card, .message-box, .notice-box, .credentials-box, .faq-list details, .article-cta {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.2rem;
  box-shadow: 0 12px 30px rgba(8, 38, 74, .08);
}
.info-card h3, .message-box h3, .credentials-box h3 { margin: 0 0 .45rem; color: var(--navy); }
.info-card p { color: var(--muted); margin: 0 0 1rem; }
.card-media { margin: -1.2rem -1.2rem 1rem; overflow: hidden; border-radius: var(--radius) var(--radius) 0 0; }
.card-media img { width: 100%; height: 10rem; object-fit: cover; display: block; }
.faq-list { display: grid; gap: .8rem; }
.faq-list summary { cursor: pointer; color: var(--navy); font-weight: 900; }
.page-hero {
  background: linear-gradient(135deg, var(--warm), #fff);
}
.page-hero-grid { align-items: center; }
.page-hero-grid img {
  width: 100%;
  aspect-ratio: 16/9;
  object-fit: cover;
  border-radius: var(--radius);
  border: 1px solid var(--border);
  box-shadow: var(--shadow);
}
.article { padding: 3.5rem 0; background: #fff; }
.article p { color: var(--muted); }
.article h2 { color: var(--navy); margin-top: 2rem; }
.article-image {
  width: 100%;
  border-radius: var(--radius);
  border: 1px solid var(--border);
  box-shadow: var(--shadow);
  margin: 1.25rem 0;
  aspect-ratio: 16/9;
  object-fit: cover;
}

.contact-section {
  background: var(--navy);
  color: #fff;
}
.contact-section h2, .contact-section .eyebrow { color: #fff; }
.contact-section p { color: rgba(255,255,255,.84); }
.contact-section .message-box { color: var(--text); }

.site-footer {
  background: var(--navy-deep);
  color: #fff;
  padding: 2.4rem 0 5.4rem;
}
.site-footer a { display: block; color: rgba(255,255,255,.9); text-decoration: none; margin: .35rem 0; }
.site-footer p, .footer-bottom { color: rgba(255,255,255,.75); }
.footer-bottom { border-top: 1px solid rgba(255,255,255,.14); margin-top: 1.5rem; padding-top: 1rem; font-size: .9rem; }

.mobile-contact-bar {
  position: fixed;
  left: .7rem;
  right: .7rem;
  bottom: .7rem;
  z-index: 40;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: .55rem;
}
.mobile-contact-bar a {
  text-align: center;
  text-decoration: none;
  font-weight: 900;
  color: #fff;
  background: var(--orange);
  border-radius: .75rem;
  padding: .85rem;
  box-shadow: var(--shadow);
}
.mobile-contact-bar a:last-child { background: var(--green); }

@media (min-width: 768px) {
  .site-nav { position: static; display: flex; align-items: center; gap: .1rem; padding: 0; border: 0; box-shadow: none; background: transparent; }
  .nav-toggle { display: none; }
  .hero-modern-grid { grid-template-columns: .95fr 1.05fr; }
  .hero-modern { padding: 3.2rem 0 0; }
  .quick-grid-layout { grid-template-columns: minmax(0, 1fr) 360px; align-items: stretch; }
  .quick-grid { grid-template-columns: repeat(3, 1fr); }
  .review-panel { border-left: 1px solid var(--border); }
  .about-grid { grid-template-columns: 1.2fr 1.1fr .9fr; align-items: stretch; }
  .about-card.with-image { grid-template-columns: 220px 1fr; }
  .tick-grid { grid-template-columns: 1fr 1fr; }
  .badge-grid { grid-template-columns: repeat(3, 1fr); }
  .card-grid { grid-template-columns: repeat(3, 1fr); }
  .choice-grid, .process-grid { grid-template-columns: repeat(4, 1fr); }
  .contact-grid { grid-template-columns: 1.1fr .9fr; }
  .page-hero-grid { grid-template-columns: 1fr 1fr; }
  .footer-grid { grid-template-columns: 1.5fr 1fr 1fr; }
  .mobile-contact-bar { display: none; }
}
@media (max-width: 767px) {
  .top-bar { display: none; }
  .hero-modern { padding-top: 1.7rem; }
  .hero-copy h1 { font-size: clamp(2.3rem, 12vw, 3.6rem); }
  .hero-visual { order: -1; }
  .hero-visual img { border-radius: var(--radius); box-shadow: var(--shadow); }
  .btn { width: 100%; }
  .trust-row { font-size: .9rem; }
}


/* v5 readability and conversion refinements */
.site-nav a {
  font-size: 1rem;
  letter-spacing: .005em;
}
.site-nav .nav-call {
  font-size: 1rem;
  padding-left: 1rem;
  padding-right: 1rem;
  box-shadow: 0 10px 22px rgba(240, 90, 26, .25);
}
@media (min-width: 768px) and (max-width: 1120px) {
  .site-nav a {
    font-size: .92rem;
    padding-left: .55rem;
    padding-right: .55rem;
  }
  .site-nav .nav-call {
    font-size: .9rem;
  }
}
@media (max-width: 767px) {
  .site-nav a {
    font-size: 1.05rem;
  }
}


/* v5 fix: top bar + quick icon overflow */
.top-bar-inner {
  flex-wrap: wrap;
}

.quick-icon {
  width: auto;
  min-width: 3.25rem;
  max-width: 5.5rem;
  min-height: 3rem;
  padding: 0 .6rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  font-size: .95rem;
  line-height: 1;
}

.quick-card {
  overflow: hidden;
}

@media (max-width: 767px) {
  .quick-icon {
    max-width: 5rem;
    font-size: .92rem;
    padding: 0 .5rem;
  }
}


/* v5 fix2: readable hero area wording */
.hero-copy .lead,
.hero p.lead {
  max-width: 48rem;
}

@media (max-width: 767px) {
  .hero-copy .lead,
  .hero p.lead {
    font-size: 1.02rem;
    line-height: 1.65;
  }
}


/* v3: keep two-line quick icon labels neat */
.quick-icon {
  text-align: center;
  gap: .05rem;
  line-height: 1.05;
}
.quick-icon br {
  display: block;
}


/* v5: monitors are a separate card, not merged with Office */
.quick-icon br {
  display: none;
}
.quick-card .quick-icon {
  white-space: nowrap;
}

.advice-list { display: grid; gap: .75rem; }
.advice-list p { margin: 0; }
