/* =====================================================================
   Water Dispenser Repair UAE
   Professional design system  —  Poppins · navy + refined azure accent
   ===================================================================== */

/* ---------- Tokens ---------- */
:root {
  /* Brand palette — restrained & professional (not colourful) */
  --ink:        #0c1c2c;   /* deep navy — dark sections, footer, headings */
  --ink-2:      #13293d;
  --ink-3:      #1c3a52;
  --accent:     #1763a6;   /* single refined azure accent */
  --accent-dark:#114e84;
  --accent-soft:#e8f1f8;

  --heading:    #0c1c2c;
  --text:       #283440;
  --muted:      #55606b;
  --line:       #e5ebf1;
  --bg:         #ffffff;
  --bg-soft:    #f5f8fb;
  --bg-softer:  #eef3f8;
  --white:      #ffffff;
  --star:       #f4a72c;

  --radius:     6px;
  --radius-lg:  10px;
  --shadow-sm:  0 4px 18px rgba(12, 28, 44, 0.06);
  --shadow-md:  0 14px 40px rgba(12, 28, 44, 0.10);
  --shadow-lg:  0 26px 60px rgba(12, 28, 44, 0.16);

  --container:  1200px;
  --font:       "Poppins", "Segoe UI", system-ui, -apple-system, sans-serif;
  --t:          0.3s cubic-bezier(.4, 0, .2, 1);
}

/* ---------- Reset ---------- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; font-size: 15px; }

body {
  font-family: var(--font);
  color: var(--text);
  background: var(--bg);
  line-height: 1.75;
  font-size: 1rem;
  font-weight: 400;
  overflow-x: hidden;
}

img { max-width: 100%; height: auto; display: block; }
a { color: var(--accent); text-decoration: none; transition: color var(--t); }
a:hover { color: var(--accent-dark); }
ul { list-style: none; }

h1, h2, h3, h4, h5 {
  font-family: var(--font);
  color: var(--heading);
  line-height: 1.22;
  font-weight: 700;
  letter-spacing: -0.01em;
}

/* ---------- Layout ---------- */
.container { width: 100%; max-width: var(--container); margin-inline: auto; padding-inline: 24px; }
.section { padding: 72px 0; }
.section--sm { padding: 52px 0; }
.section--soft { background: var(--bg-soft); }
.section--ink { background: var(--ink); }
.text-center { text-align: center; }

.section-head { max-width: 680px; margin: 0 auto 42px; text-align: center; }
.section-head.left { margin-inline: 0; text-align: left; }

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--accent);
  font-weight: 600;
  font-size: 0.8rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 16px;
}
.eyebrow::before {
  content: "";
  width: 26px;
  height: 2px;
  background: var(--accent);
  display: inline-block;
}
.section-head.center .eyebrow,
.section-head:not(.left) .eyebrow { }

.section-title {
  font-size: clamp(1.55rem, 2.8vw, 2.1rem);
  margin-bottom: 16px;
}
.section-head p { color: var(--muted); font-size: 0.98rem; }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 15px 32px;
  border-radius: var(--radius);
  font-family: var(--font);
  font-weight: 600;
  font-size: 0.92rem;
  letter-spacing: 0.4px;
  cursor: pointer;
  border: 2px solid transparent;
  transition: all var(--t);
  white-space: nowrap;
  line-height: 1;
}
.btn--primary { background: var(--accent); color: #fff; }
.btn--primary:hover { background: var(--accent-dark); color: #fff; transform: translateY(-3px); box-shadow: var(--shadow-md); }
.btn--dark { background: var(--ink); color: #fff; }
.btn--dark:hover { background: var(--ink-2); color: #fff; transform: translateY(-3px); box-shadow: var(--shadow-md); }
.btn--light { background: #fff; color: var(--ink); }
.btn--light:hover { background: var(--accent); color: #fff; transform: translateY(-3px); }
.btn--outline { background: transparent; color: #fff; border-color: rgba(255,255,255,.35); }
.btn--outline:hover { background: #fff; color: var(--ink); border-color: #fff; }
.btn--ghost { background: transparent; color: var(--accent); border-color: var(--line); }
.btn--ghost:hover { border-color: var(--accent); color: var(--accent-dark); }
.btn--lg { padding: 18px 40px; font-size: 0.98rem; }

/* ---------- Top bar ---------- */
.topbar { background: var(--ink); color: rgba(255,255,255,.78); font-size: 0.86rem; border-bottom: 1px solid rgba(255,255,255,.07); }
.topbar .container { display: flex; justify-content: space-between; align-items: center; gap: 12px; min-height: 46px; flex-wrap: wrap; }
.topbar a { color: rgba(255,255,255,.78); }
.topbar a:hover { color: #fff; }
.topbar__info { display: flex; gap: 26px; flex-wrap: wrap; }
.topbar__info span, .topbar__info a { display: inline-flex; align-items: center; gap: 8px; }
.topbar__info i { color: var(--accent); }
.topbar__social { display: flex; gap: 8px; align-items: center; }
.topbar__social a {
  width: 30px; height: 30px; border-radius: 50%;
  display: grid; place-items: center;
  background: rgba(255,255,255,.08); font-size: .78rem;
}
.topbar__social a:hover { background: var(--accent); color: #fff; }

/* ---------- Header / nav ---------- */
.header {
  position: sticky; top: 0; z-index: 1000;
  background: #fff;
  box-shadow: 0 1px 0 var(--line);
  transition: box-shadow var(--t);
}
.header.is-stuck { box-shadow: var(--shadow-sm); }
.nav { display: flex; align-items: center; justify-content: space-between; min-height: 84px; }

.brand { display: flex; align-items: center; gap: 13px; }
.brand__logo {
  width: 46px; height: 46px; border-radius: 8px; flex-shrink: 0;
  background: var(--accent); color: #fff;
  display: grid; place-items: center;
}
.brand__text { display: flex; flex-direction: column; line-height: 1.1; }
.brand__name { font-weight: 700; font-size: 1.32rem; color: var(--ink); letter-spacing: -0.02em; }
.brand__name b { color: var(--accent); font-weight: 700; }
.brand__tag { font-size: 0.64rem; font-weight: 500; color: var(--muted); letter-spacing: 1.5px; text-transform: uppercase; }
.brand__logo-img { height: 56px; width: auto; display: block; }

.nav__menu { display: flex; align-items: center; gap: 4px; }
.nav__menu > a {
  color: var(--heading); font-weight: 500; font-size: 0.96rem;
  padding: 10px 16px; border-radius: var(--radius); position: relative;
}
.nav__menu > a:hover, .nav__menu > a.active { color: var(--accent); }
.nav__menu > a.active::after {
  content: ""; position: absolute; left: 16px; right: 16px; bottom: 4px;
  height: 2px; background: var(--accent); border-radius: 2px;
}
.nav__actions { display: flex; align-items: center; gap: 18px; margin-left: 14px; }
.nav__phone { display: flex; align-items: center; gap: 12px; }
.nav__phone .ic {
  width: 44px; height: 44px; border-radius: 50%; flex-shrink: 0;
  background: var(--accent-soft); color: var(--accent);
  display: grid; place-items: center; font-size: 1.05rem;
}
.nav__phone small { display: block; font-size: 0.72rem; color: var(--muted); text-transform: uppercase; letter-spacing: 1px; }
.nav__phone strong { display: block; font-size: 1.02rem; color: var(--ink); font-weight: 700; }

.nav__toggle { display: none; flex-direction: column; gap: 5px; background: none; border: none; cursor: pointer; padding: 8px; }
.nav__toggle span { width: 26px; height: 2.5px; background: var(--ink); border-radius: 3px; transition: var(--t); }
.nav__toggle.is-open span:nth-child(1) { transform: translateY(7.5px) rotate(45deg); }
.nav__toggle.is-open span:nth-child(2) { opacity: 0; }
.nav__toggle.is-open span:nth-child(3) { transform: translateY(-7.5px) rotate(-45deg); }

.nav-overlay { display: none; position: fixed; inset: 0; background: rgba(12,28,44,.55); z-index: 999; }
.nav-overlay.is-open { display: block; }

/* ---------- Hero ---------- */
.hero { position: relative; background: var(--ink); color: #fff; overflow: hidden; }
.hero::before {
  content: ""; position: absolute; inset: 0;
  background:
    radial-gradient(circle at 78% 18%, rgba(23,99,166,.40), transparent 42%),
    linear-gradient(120deg, var(--ink) 40%, var(--ink-2) 100%);
}
.hero::after {
  content: ""; position: absolute; right: 0; top: 0; bottom: 0; width: 46%;
  background-image: linear-gradient(rgba(12,28,44,.78), rgba(12,28,44,.88));
  clip-path: polygon(22% 0, 100% 0, 100% 100%, 0% 100%);
  opacity: .5;
}
.hero .container { position: relative; z-index: 2; display: grid; grid-template-columns: 1.05fr .95fr; gap: 56px; align-items: center; padding: 120px 24px 130px; }
.hero__badge {
  display: inline-flex; align-items: center; gap: 9px;
  background: rgba(255,255,255,.08); border: 1px solid rgba(255,255,255,.16);
  padding: 8px 18px; border-radius: 50px; font-size: 0.82rem; font-weight: 500; margin-bottom: 26px;
}
.hero__badge i { color: var(--accent); }
.hero h1 { color: #fff; font-size: clamp(2.3rem, 5vw, 3.7rem); line-height: 1.12; margin-bottom: 22px; }
.hero h1 span { color: #6db3e6; }
.hero p { font-size: 1.12rem; color: rgba(255,255,255,.82); margin-bottom: 36px; max-width: 540px; }
.hero__actions { display: flex; gap: 16px; flex-wrap: wrap; }

.hero__panel {
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.12);
  backdrop-filter: blur(4px);
  border-radius: var(--radius-lg);
  padding: 38px;
}
.hero__panel h3 { color: #fff; font-size: 1.3rem; margin-bottom: 8px; }
.hero__panel > p { color: rgba(255,255,255,.7); font-size: .94rem; margin-bottom: 22px; }
.hero__panel ul li { display: flex; align-items: flex-start; gap: 13px; padding: 11px 0; color: rgba(255,255,255,.9); border-bottom: 1px solid rgba(255,255,255,.08); font-size: .96rem; }
.hero__panel ul li:last-child { border-bottom: none; }
.hero__panel .ck { flex-shrink: 0; width: 22px; height: 22px; border-radius: 50%; background: var(--accent); display: grid; place-items: center; color: #fff; font-size: 11px; margin-top: 4px; }

/* ---------- Highlight strip ---------- */
.highlights { margin-top: -56px; position: relative; z-index: 5; }
.highlights .grid { background: #fff; border-radius: var(--radius-lg); box-shadow: var(--shadow-md); display: grid; grid-template-columns: repeat(4, 1fr); overflow: hidden; }
.highlight { display: flex; gap: 16px; align-items: center; padding: 30px 28px; border-right: 1px solid var(--line); }
.highlight:last-child { border-right: none; }
.highlight__ic { width: 52px; height: 52px; border-radius: 10px; background: var(--accent-soft); color: var(--accent); display: grid; place-items: center; font-size: 1.3rem; flex-shrink: 0; }
.highlight strong { display: block; color: var(--ink); font-size: 1rem; line-height: 1.3; }
.highlight span { font-size: 0.85rem; color: var(--muted); }

/* ---------- About / experience ---------- */
.about-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: center; }
.about-visual { position: relative; }
.about-visual__main {
  border-radius: var(--radius-lg); overflow: hidden; min-height: 460px;
  background: linear-gradient(150deg, var(--ink-2), var(--accent));
  display: grid; place-items: center; box-shadow: var(--shadow-md); position: relative;
}
.about-visual__main::after { content: ""; position: absolute; inset: 0; background: radial-gradient(circle at 28% 24%, rgba(255,255,255,.16), transparent 55%); }
.about-visual__main svg { opacity: .9; position: relative; z-index: 2; }
.exp-badge {
  position: absolute; right: -18px; bottom: -18px;
  width: 150px; height: 150px; border-radius: 50%;
  background: var(--accent); color: #fff;
  display: grid; place-items: center; text-align: center;
  box-shadow: var(--shadow-lg); border: 6px solid #fff;
}
.exp-badge b { display: block; font-size: 2.6rem; font-weight: 700; line-height: 1; }
.exp-badge span { font-size: 0.74rem; letter-spacing: 1px; text-transform: uppercase; margin-top: 4px; }

.about-body p { margin-bottom: 18px; color: var(--text); }
.about-body .lead { font-size: 1.12rem; color: var(--heading); font-weight: 500; }
.check-list { margin: 24px 0 30px; display: grid; grid-template-columns: 1fr 1fr; gap: 14px 24px; }
.check-list li { display: flex; align-items: center; gap: 12px; font-weight: 500; color: var(--heading); font-size: 0.97rem; }
.check-list .ck { flex-shrink: 0; width: 24px; height: 24px; border-radius: 50%; background: var(--accent-soft); color: var(--accent); display: grid; place-items: center; font-size: 12px; }

/* ---------- Service cards ---------- */
.grid { display: grid; gap: 28px; }
.grid--2 { grid-template-columns: repeat(2, 1fr); }
.grid--3 { grid-template-columns: repeat(3, 1fr); }
.grid--4 { grid-template-columns: repeat(4, 1fr); }

.service {
  background: #fff; border: 1px solid var(--line); border-radius: var(--radius-lg);
  padding: 40px 32px; position: relative; overflow: hidden; transition: all var(--t);
}
.service::before {
  content: ""; position: absolute; left: 0; top: 0; height: 4px; width: 0; background: var(--accent); transition: width var(--t);
}
.service:hover { box-shadow: var(--shadow-md); transform: translateY(-6px); border-color: transparent; }
.service:hover::before { width: 100%; }
.service__ic {
  width: 70px; height: 70px; border-radius: 12px; margin-bottom: 24px;
  background: var(--accent-soft); color: var(--accent);
  display: grid; place-items: center; font-size: 1.7rem; transition: all var(--t);
}
.service:hover .service__ic { background: var(--accent); color: #fff; }
.service h3 { font-size: 1.22rem; margin-bottom: 12px; }
.service p { color: var(--muted); font-size: 0.96rem; margin-bottom: 18px; }
.service__more { font-weight: 600; font-size: 0.88rem; color: var(--accent); display: inline-flex; align-items: center; gap: 7px; }
.service__more::after { content: "→"; transition: transform var(--t); }
.service__more:hover::after { transform: translateX(5px); }
.service__num { position: absolute; right: 26px; top: 24px; font-size: 2.6rem; font-weight: 800; color: var(--bg-softer); line-height: 1; z-index: 0; }

/* ---------- Why / split with image ---------- */
.why-grid { display: grid; grid-template-columns: .9fr 1.1fr; gap: 60px; align-items: center; }
.why-visual { border-radius: var(--radius-lg); min-height: 440px; background: linear-gradient(160deg, var(--accent), var(--ink-2)); display: grid; place-items: center; box-shadow: var(--shadow-md); }
.feature-row { display: flex; gap: 18px; margin-bottom: 26px; }
.feature-row:last-child { margin-bottom: 0; }
.feature-row__ic { flex-shrink: 0; width: 56px; height: 56px; border-radius: 10px; background: var(--accent-soft); color: var(--accent); display: grid; place-items: center; font-size: 1.3rem; }
.feature-row h3 { font-size: 1.12rem; margin-bottom: 6px; }
.feature-row p { color: var(--muted); font-size: 0.94rem; }

/* ---------- Counters (dark) ---------- */
.counters { background: var(--ink); position: relative; overflow: hidden; }
.counters::before { content: ""; position: absolute; inset: 0; background: radial-gradient(circle at 85% 50%, rgba(23,99,166,.32), transparent 45%); }
.counters .grid { position: relative; z-index: 2; grid-template-columns: repeat(4, 1fr); }
.counter { text-align: center; padding: 16px; }
.counter b { display: block; font-size: 3rem; font-weight: 700; color: #fff; line-height: 1; }
.counter b span { color: #6db3e6; }
.counter p { color: rgba(255,255,255,.7); margin-top: 10px; font-size: 0.96rem; letter-spacing: .3px; }

/* ---------- Process steps ---------- */
.steps { display: grid; grid-template-columns: repeat(4, 1fr); gap: 28px; }
.step { text-align: center; position: relative; padding: 16px; }
.step__num {
  width: 74px; height: 74px; margin: 0 auto 22px; border-radius: 50%;
  background: #fff; border: 2px dashed var(--accent); color: var(--accent);
  display: grid; place-items: center; font-size: 1.5rem; font-weight: 700; position: relative;
}
.step__num span { position: absolute; top: -6px; right: -6px; width: 26px; height: 26px; border-radius: 50%; background: var(--ink); color: #fff; font-size: .78rem; display: grid; place-items: center; }
.step h3 { font-size: 1.1rem; margin-bottom: 8px; }
.step p { color: var(--muted); font-size: 0.92rem; }

/* ---------- Testimonials ---------- */
.testi { background: #fff; border: 1px solid var(--line); border-radius: var(--radius-lg); padding: 36px; position: relative; }
.testi__quote { position: absolute; right: 30px; top: 22px; font-size: 4rem; color: var(--bg-softer); font-family: Georgia, serif; line-height: 1; }
.testi__stars { color: var(--star); margin-bottom: 16px; letter-spacing: 2px; }
.testi p { color: var(--text); margin-bottom: 22px; position: relative; z-index: 2; }
.testi__author { display: flex; align-items: center; gap: 14px; border-top: 1px solid var(--line); padding-top: 20px; }
.testi__avatar { width: 50px; height: 50px; border-radius: 50%; background: var(--ink); color: #fff; display: grid; place-items: center; font-weight: 700; }
.testi__author strong { display: block; color: var(--ink); font-size: 0.98rem; }
.testi__author span { font-size: 0.84rem; color: var(--muted); }

/* ---------- Brands ---------- */
.brands { display: flex; flex-wrap: wrap; justify-content: center; gap: 14px; }
.brand-chip { background: #fff; border: 1px solid var(--line); border-radius: 50px; padding: 11px 26px; font-weight: 500; color: var(--muted); transition: var(--t); }
.brand-chip:hover { border-color: var(--accent); color: var(--accent); }

/* ---------- FAQ ---------- */
.faq { max-width: 840px; margin: 0 auto; }
.faq__item { background: #fff; border: 1px solid var(--line); border-radius: var(--radius); margin-bottom: 14px; overflow: hidden; transition: box-shadow var(--t); }
.faq__item.is-open { box-shadow: var(--shadow-sm); }
.faq__q { width: 100%; text-align: left; background: none; border: none; padding: 22px 26px; font-family: var(--font); font-size: 1.04rem; font-weight: 600; color: var(--ink); cursor: pointer; display: flex; justify-content: space-between; gap: 16px; align-items: center; }
.faq__q .ic { flex-shrink: 0; width: 28px; height: 28px; border-radius: 50%; background: var(--accent-soft); color: var(--accent); display: grid; place-items: center; transition: var(--t); font-size: 1.1rem; }
.faq__item.is-open .faq__q .ic { background: var(--accent); color: #fff; transform: rotate(45deg); }
.faq__a { max-height: 0; overflow: hidden; transition: max-height .35s ease; }
.faq__a p { padding: 0 26px 24px; color: var(--muted); }

/* ---------- CTA band ---------- */
.cta { position: relative; background: var(--accent); color: #fff; border-radius: var(--radius-lg); padding: 60px; overflow: hidden; display: flex; align-items: center; justify-content: space-between; gap: 30px; flex-wrap: wrap; }
.cta::before { content: ""; position: absolute; inset: 0; background: radial-gradient(circle at 88% 20%, rgba(255,255,255,.18), transparent 45%); }
.cta > * { position: relative; z-index: 2; }
.cta h2 { color: #fff; font-size: clamp(1.6rem, 3vw, 2.3rem); margin-bottom: 8px; }
.cta p { color: rgba(255,255,255,.9); }
.cta__actions { display: flex; gap: 14px; flex-wrap: wrap; }

/* ---------- Page hero (inner) ---------- */
.page-hero { position: relative; background: var(--ink); color: #fff; padding: 90px 0; text-align: center; overflow: hidden; }
.page-hero::before { content: ""; position: absolute; inset: 0; background: radial-gradient(circle at 80% 30%, rgba(23,99,166,.35), transparent 45%); }
.page-hero .container { position: relative; z-index: 2; }
.page-hero h1 { color: #fff; font-size: clamp(1.7rem, 3.4vw, 2.3rem); margin-bottom: 14px; }
.breadcrumb { color: rgba(255,255,255,.72); font-size: 0.95rem; display: inline-flex; gap: 10px; }
.breadcrumb a { color: #6db3e6; }

/* ---------- Contact ---------- */
.contact-grid { display: grid; grid-template-columns: .9fr 1.1fr; gap: 50px; align-items: start; }
.contact-card { display: flex; gap: 18px; align-items: flex-start; padding: 22px 0; border-bottom: 1px solid var(--line); }
.contact-card:last-child { border-bottom: none; }
.contact-card__ic { flex-shrink: 0; width: 54px; height: 54px; border-radius: 12px; background: var(--accent-soft); color: var(--accent); display: grid; place-items: center; font-size: 1.25rem; }
.contact-card strong { display: block; color: var(--ink); margin-bottom: 3px; font-size: 1.02rem; }
.contact-card a, .contact-card span { color: var(--muted); }

.form-card { background: #fff; border: 1px solid var(--line); border-radius: var(--radius-lg); padding: 44px; box-shadow: var(--shadow-sm); }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.form-group { margin-bottom: 20px; }
.form-group label { display: block; font-weight: 600; font-size: 0.88rem; color: var(--ink); margin-bottom: 8px; }
.form-group label .req { color: #e0564a; }
.form-group input, .form-group select, .form-group textarea {
  width: 100%; padding: 14px 16px; border: 1.5px solid var(--line); border-radius: var(--radius);
  font-family: var(--font); font-size: 0.96rem; color: var(--text); background: var(--bg-soft); transition: var(--t);
}
.form-group input:focus, .form-group select:focus, .form-group textarea:focus {
  outline: none; border-color: var(--accent); background: #fff; box-shadow: 0 0 0 3px rgba(23,99,166,.12);
}
.form-group textarea { resize: vertical; min-height: 130px; }
.form-note { font-size: 0.82rem; color: var(--muted); margin-top: 16px; text-align: center; }

.alert { padding: 15px 18px; border-radius: var(--radius); margin-bottom: 24px; font-size: 0.95rem; display: flex; gap: 10px; align-items: center; }
.alert--success { background: #e7f6ed; color: #1d7a45; border: 1px solid #b6e2c6; }
.alert--error { background: #fdecea; color: #c0392b; border: 1px solid #f4c2bc; }
.field-error { color: #c0392b; font-size: 0.8rem; margin-top: 6px; display: none; }
.form-group.has-error input, .form-group.has-error select, .form-group.has-error textarea { border-color: #e0564a; }
.form-group.has-error .field-error { display: block; }

.map-wrap { border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow-sm); border: 1px solid var(--line); }
.map-wrap iframe { width: 100%; height: 380px; border: 0; display: block; }

/* ---------- Footer ---------- */
.footer { background: var(--ink); color: rgba(255,255,255,.68); padding-top: 80px; }
.footer__grid { display: grid; grid-template-columns: 1.5fr 1fr 1fr 1.3fr; gap: 44px; padding-bottom: 54px; }
.footer h4 { color: #fff; font-size: 1.08rem; margin-bottom: 24px; position: relative; padding-bottom: 14px; }
.footer h4::after { content: ""; position: absolute; left: 0; bottom: 0; width: 36px; height: 2px; background: var(--accent); }
.footer__brand { display: flex; align-items: center; gap: 12px; margin-bottom: 20px; color: #fff; font-weight: 700; font-size: 1.3rem; }
.footer p { font-size: 0.93rem; margin-bottom: 20px; line-height: 1.8; }
.footer__links li { margin-bottom: 12px; }
.footer__links a { color: rgba(255,255,255,.68); font-size: 0.93rem; display: inline-flex; align-items: center; gap: 9px; }
.footer__links a::before { content: "›"; color: var(--accent); font-size: 1.1rem; }
.footer__links a:hover { color: #fff; padding-left: 4px; }
.footer__contact li { display: flex; gap: 12px; align-items: flex-start; margin-bottom: 16px; font-size: 0.93rem; }
.footer__contact .ic { color: var(--accent); flex-shrink: 0; margin-top: 4px; }
.footer__social { display: flex; gap: 10px; margin-top: 12px; }
.footer__social a { width: 40px; height: 40px; border-radius: 8px; background: rgba(255,255,255,.07); display: grid; place-items: center; color: #fff; font-size: .85rem; }
.footer__social a:hover { background: var(--accent); }
.footer__bottom { border-top: 1px solid rgba(255,255,255,.09); padding-block: 24px; display: flex; justify-content: space-between; align-items: center; gap: 12px; flex-wrap: wrap; font-size: 0.86rem; }
.footer__bottom a { color: rgba(255,255,255,.68); }
.footer__bottom a:hover { color: #fff; }

/* ---------- Floating buttons ---------- */
.floating { position: fixed; right: 22px; bottom: 22px; z-index: 900; display: flex; flex-direction: column; gap: 12px; }
.floating a { width: 54px; height: 54px; border-radius: 50%; display: grid; place-items: center; color: #fff; box-shadow: var(--shadow-md); font-size: 1.3rem; transition: var(--t); }
.floating a:hover { transform: scale(1.08); color: #fff; }
.floating .wa { background: #25d366; }
.floating .call { background: var(--accent); }
.floating .top { background: var(--ink); font-size: 1rem; opacity: 0; pointer-events: none; }
.floating .top.show { opacity: 1; pointer-events: auto; }

/* ---------- Reveal animation ---------- */
.reveal { opacity: 0; transform: translateY(30px); transition: opacity .7s ease, transform .7s ease; }
.reveal.is-visible { opacity: 1; transform: translateY(0); }
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation: none !important; transition: none !important; scroll-behavior: auto !important; }
  .reveal { opacity: 1; transform: none; }
}

/* ---------- Responsive ---------- */
@media (max-width: 1024px) {
  .hero .container { grid-template-columns: 1fr; gap: 44px; padding-block: 90px 100px; }
  .hero__panel { max-width: 540px; }
  .about-grid, .why-grid { grid-template-columns: 1fr; gap: 48px; }
  .highlights .grid { grid-template-columns: repeat(2, 1fr); }
  .highlight:nth-child(2) { border-right: none; }
  .grid--4 { grid-template-columns: repeat(2, 1fr); }
  .steps { grid-template-columns: repeat(2, 1fr); }
  .counters .grid { grid-template-columns: repeat(2, 1fr); gap: 40px 28px; }
  .footer__grid { grid-template-columns: 1fr 1fr; }
  .contact-grid { grid-template-columns: 1fr; }
  .nav__phone { display: none; }
}
@media (max-width: 768px) {
  .section { padding: 50px 0; }
  .topbar__info { gap: 16px; }
  .topbar__info .hide-sm { display: none; }
  .nav__toggle { display: flex; }
  .nav__actions { display: none; }
  .nav__menu {
    position: fixed; top: 0; right: -100%; width: 80%; max-width: 330px; height: 100vh;
    background: #fff; flex-direction: column; align-items: stretch; padding: 90px 26px 26px;
    box-shadow: var(--shadow-lg); transition: right .35s ease; gap: 2px; overflow-y: auto;
  }
  .nav__menu.is-open { right: 0; }
  .nav__menu > a { padding: 14px 12px; border-bottom: 1px solid var(--line); border-radius: 0; }
  .nav__menu > a.active::after { display: none; }
  .grid--2, .grid--3, .grid--4 { grid-template-columns: 1fr; }
  .check-list { grid-template-columns: 1fr; }
  .footer__grid { grid-template-columns: 1fr; gap: 36px; }
  .footer__bottom { flex-direction: column; text-align: center; }
  .cta { padding: 40px 28px; flex-direction: column; text-align: center; }
  .cta__actions { justify-content: center; }
  .form-row { grid-template-columns: 1fr; }
  .form-card { padding: 30px 24px; }
  .exp-badge { width: 116px; height: 116px; right: 10px; bottom: -14px; }
  .exp-badge b { font-size: 2rem; }
}
@media (max-width: 480px) {
  .highlights .grid { grid-template-columns: 1fr; }
  .highlight { border-right: none; border-bottom: 1px solid var(--line); }
  .highlight:last-child { border-bottom: none; }
  .steps, .counters .grid { grid-template-columns: 1fr; }
  .container { padding-inline: 18px; }
}

/* =====================================================================
   HOME TEMPLATE COMPONENTS (Validus-style layout)
   ===================================================================== */

/* Image placeholder — swap any .ph block with <img> when real photos exist */
.ph { position: relative; background: linear-gradient(135deg, var(--ink-2) 0%, var(--accent) 100%); display: grid; place-items: center; overflow: hidden; }
.ph::before { content: ""; position: absolute; inset: 0; background: radial-gradient(circle at 30% 25%, rgba(255,255,255,.14), transparent 55%); }
.ph svg { width: 60px; height: 60px; opacity: .55; position: relative; z-index: 1; }
.ph[data-label]::after { content: attr(data-label); position: absolute; bottom: 12px; font-size: .68rem; letter-spacing: 1.5px; text-transform: uppercase; color: rgba(255,255,255,.5); z-index: 1; }

/* ---------- Main hero (image + overlay + arrows) ---------- */
.mhero { position: relative; min-height: 600px; display: flex; align-items: center; color: #fff; overflow: hidden; }
.mhero__bg { position: absolute; inset: 0; background: linear-gradient(135deg, #0a1622, #14324a 60%, var(--accent)); }
.mhero__bg::after { content: ""; position: absolute; inset: 0; background: linear-gradient(90deg, rgba(8,18,28,.92) 0%, rgba(8,18,28,.72) 45%, rgba(8,18,28,.30) 100%); }
.mhero .container { position: relative; z-index: 3; padding-block: 90px; }
.mhero__inner { max-width: 620px; }
.mhero .eyebrow { color: #6db3e6; }
.mhero h1 { color: #fff; font-size: clamp(1.9rem, 4.2vw, 2.9rem); line-height: 1.14; margin-bottom: 20px; }
.mhero p { font-size: 1.1rem; color: rgba(255,255,255,.85); margin-bottom: 32px; max-width: 540px; }
.mhero__actions { display: flex; gap: 14px; flex-wrap: wrap; }
.mhero__arrows { position: absolute; z-index: 4; right: 30px; top: 50%; transform: translateY(-50%); display: flex; flex-direction: column; gap: 12px; }
.mhero__arrows button { width: 48px; height: 48px; border-radius: 50%; border: 1px solid rgba(255,255,255,.3); background: rgba(255,255,255,.08); color: #fff; cursor: pointer; font-size: 1.1rem; transition: var(--t); }
.mhero__arrows button:hover { background: var(--accent); border-color: var(--accent); }
.mhero__dots { position: absolute; z-index: 4; left: 0; right: 0; bottom: 26px; display: flex; gap: 8px; justify-content: center; }
.mhero__dots span { width: 26px; height: 4px; border-radius: 4px; background: rgba(255,255,255,.35); }
.mhero__dots span.on { background: var(--accent); }

/* ---------- About with badge overlay ---------- */
.about2 { display: grid; grid-template-columns: 1fr 1.05fr; gap: 60px; align-items: center; }
.about2__media { position: relative; }
.about2__img { border-radius: var(--radius-lg); overflow: hidden; min-height: 440px; box-shadow: var(--shadow-md); }
.about2__badge { position: absolute; left: 24px; bottom: 24px; max-width: 230px; background: var(--ink); color: #fff; padding: 24px; border-radius: var(--radius); box-shadow: var(--shadow-lg); }
.about2__badge strong { display: block; font-size: 1.05rem; margin-bottom: 8px; color: #fff; }
.about2__badge p { font-size: .86rem; color: rgba(255,255,255,.72); margin: 0; }

/* ---------- Services on blue background ---------- */
.section--blue { background: linear-gradient(135deg, var(--accent) 0%, var(--accent-dark) 100%); position: relative; overflow: hidden; }
.section--blue::before { content: ""; position: absolute; inset: 0; background: radial-gradient(circle at 85% 15%, rgba(255,255,255,.12), transparent 45%); }
.section--blue .container { position: relative; z-index: 2; }
.section--blue .eyebrow { color: #cfe6f6; }
.section--blue .section-title, .section--blue .section-head p { color: #fff; }
.section--blue .section-head p { opacity: .9; }

.svc-card { background: #fff; border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow-sm); transition: var(--t); }
.svc-card:hover { transform: translateY(-8px); box-shadow: var(--shadow-lg); }
.svc-card__img { height: 200px; }
.svc-card__body { padding: 28px 26px 30px; text-align: center; }
.svc-card__body h3 { font-size: 1.18rem; margin-bottom: 10px; }
.svc-card__body p { color: var(--muted); font-size: .94rem; margin-bottom: 20px; }

/* ---------- Trusted + video ---------- */
.trusted { display: grid; grid-template-columns: 1fr 1fr; gap: 0; align-items: stretch; }
.trusted__panel { background: var(--ink); color: #fff; padding: 60px; border-radius: var(--radius-lg) 0 0 var(--radius-lg); }
.trusted__panel .eyebrow { color: #6db3e6; }
.trusted__panel h2 { color: #fff; font-size: clamp(1.6rem, 3vw, 2.2rem); margin-bottom: 18px; }
.trusted__panel > p { color: rgba(255,255,255,.78); margin-bottom: 26px; }
.acc-list { border-top: 1px solid rgba(255,255,255,.12); }
.acc-list li { padding: 16px 0; border-bottom: 1px solid rgba(255,255,255,.12); display: flex; align-items: center; gap: 14px; font-weight: 500; color: #fff; }
.acc-list li .n { color: var(--accent); font-weight: 700; }
.trusted__media { position: relative; border-radius: 0 var(--radius-lg) var(--radius-lg) 0; overflow: hidden; min-height: 460px; }
.play { position: absolute; left: 50%; top: 50%; transform: translate(-50%,-50%); width: 78px; height: 78px; border-radius: 50%; background: #fff; color: var(--accent); display: grid; place-items: center; box-shadow: var(--shadow-lg); cursor: pointer; z-index: 2; }
.play::before { content: ""; position: absolute; inset: -10px; border-radius: 50%; border: 2px solid rgba(255,255,255,.5); animation: pulse 2s infinite; }
@keyframes pulse { 0% { transform: scale(1); opacity: 1; } 100% { transform: scale(1.4); opacity: 0; } }

/* ---------- Feature cards over dark ---------- */
.darkband { background: var(--ink); color: #fff; }
.darkband .section-head h2, .darkband .section-title { color: #fff; }
.darkband .eyebrow { color: #6db3e6; }
.fcard { background: #fff; border-radius: var(--radius-lg); padding: 30px 26px; transition: var(--t); border-top: 3px solid transparent; }
.fcard:hover { transform: translateY(-6px); border-top-color: var(--accent); box-shadow: var(--shadow-md); }
.fcard__ic { width: 56px; height: 56px; border-radius: 12px; background: var(--accent-soft); color: var(--accent); display: grid; place-items: center; margin-bottom: 18px; }
.fcard h3 { font-size: 1.08rem; margin-bottom: 8px; }
.fcard p { color: var(--muted); font-size: .92rem; }

/* ---------- Partner logos ---------- */
.partners { display: flex; flex-wrap: wrap; justify-content: center; align-items: center; gap: 18px 40px; margin-top: 50px; padding-top: 36px; border-top: 1px solid rgba(255,255,255,.12); }
.partners span { color: rgba(255,255,255,.55); font-weight: 700; font-size: 1.1rem; letter-spacing: 1px; }

/* ---------- Light stats ---------- */
.stats-light { display: grid; grid-template-columns: repeat(4, 1fr); gap: 28px; margin-top: 10px; }
.stat-l { padding: 10px; }
.stat-l b { display: block; font-size: 3rem; font-weight: 800; color: var(--ink); line-height: 1; }
.stat-l b span { color: var(--accent); }
.stat-l p { color: var(--muted); margin-top: 8px; font-size: .92rem; }

/* ---------- Gallery ---------- */
.gallery { display: grid; grid-template-columns: repeat(3, 1fr); gap: 0; }
.gallery .ph { min-height: 280px; }

/* ---------- Blue band CTA ---------- */
.band-blue { background: linear-gradient(135deg, var(--accent), var(--accent-dark)); color: #fff; padding: 46px 0; }
.band-blue .container { display: flex; align-items: center; justify-content: space-between; gap: 24px; flex-wrap: wrap; }
.band-blue h2 { color: #fff; font-size: clamp(1.4rem, 2.6vw, 2rem); margin-bottom: 6px; }
.band-blue p { color: rgba(255,255,255,.9); margin: 0; }

/* ---------- Pricing ---------- */
.pricing { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; align-items: stretch; }
.price-card { background: #fff; border: 1px solid var(--line); border-radius: var(--radius-lg); padding: 38px 32px; transition: var(--t); display: flex; flex-direction: column; }
.price-card:hover { box-shadow: var(--shadow-md); transform: translateY(-6px); }
.price-card__name { font-size: 1.2rem; color: var(--ink); margin-bottom: 6px; }
.price-card__desc { color: var(--muted); font-size: .9rem; margin-bottom: 22px; }
.price-card__list { margin-bottom: 26px; flex: 1; }
.price-card__list li { display: flex; align-items: flex-start; gap: 11px; padding: 9px 0; color: var(--text); font-size: .94rem; border-bottom: 1px solid var(--line); }
.price-card__list li .ck { flex-shrink: 0; width: 20px; height: 20px; border-radius: 50%; background: var(--accent-soft); color: var(--accent); display: grid; place-items: center; font-size: 11px; margin-top: 3px; }
.price-card__price { font-size: 2.4rem; font-weight: 800; color: var(--accent); margin-bottom: 22px; }
.price-card__price small { font-size: .85rem; font-weight: 500; color: var(--muted); }
.price-card--featured { background: var(--accent); color: #fff; border-color: var(--accent); box-shadow: var(--shadow-lg); }
.price-card--featured .price-card__name, .price-card--featured .price-card__price { color: #fff; }
.price-card--featured .price-card__desc { color: rgba(255,255,255,.85); }
.price-card--featured .price-card__price small { color: rgba(255,255,255,.8); }
.price-card--featured .price-card__list li { color: rgba(255,255,255,.92); border-color: rgba(255,255,255,.15); }
.price-card--featured .price-card__list li .ck { background: rgba(255,255,255,.2); color: #fff; }
.price-card--featured .btn--dark { background: #fff; color: var(--accent); }
.price-card--featured .btn--dark:hover { background: var(--ink); color: #fff; }
.price-badge { display: inline-block; background: rgba(255,255,255,.2); color: #fff; font-size: .72rem; font-weight: 600; letter-spacing: 1px; text-transform: uppercase; padding: 5px 12px; border-radius: 50px; margin-bottom: 14px; }

/* ---------- Newsletter (footer) ---------- */
.newsletter p { margin-bottom: 16px; }
.newsletter form { display: flex; flex-direction: column; gap: 10px; }
.newsletter input { width: 100%; padding: 13px 16px; border-radius: var(--radius); border: 1px solid rgba(255,255,255,.15); background: rgba(255,255,255,.06); color: #fff; font-family: var(--font); font-size: .92rem; }
.newsletter input::placeholder { color: rgba(255,255,255,.5); }
.newsletter input:focus { outline: none; border-color: var(--accent); }

/* ---------- Responsive (home template) ---------- */
@media (max-width: 1024px) {
  .about2, .trusted { grid-template-columns: 1fr; }
  .trusted__panel { border-radius: var(--radius-lg) var(--radius-lg) 0 0; padding: 44px; }
  .trusted__media { border-radius: 0 0 var(--radius-lg) var(--radius-lg); min-height: 320px; }
  .stats-light { grid-template-columns: repeat(2, 1fr); gap: 30px 20px; }
  .pricing { grid-template-columns: 1fr; max-width: 460px; margin-inline: auto; }
  .gallery { grid-template-columns: 1fr; }
  .mhero__arrows { display: none; }
}
@media (max-width: 768px) {
  .mhero { min-height: 520px; }
  .svc-card__img, .gallery .ph { min-height: 200px; }
  .band-blue .container { flex-direction: column; text-align: center; }
}
@media (max-width: 480px) {
  .stats-light { grid-template-columns: 1fr; }
}

/* ---------- Footer branches row ---------- */
.footer__branches { display: grid; grid-template-columns: repeat(3, 1fr); gap: 26px; padding-bottom: 42px; margin-bottom: 46px; border-bottom: 1px solid rgba(255,255,255,.09); }
.fbranch { display: flex; gap: 13px; align-items: flex-start; }
.fbranch .ic { color: var(--accent); flex-shrink: 0; font-size: 1.15rem; margin-top: 2px; }
.fbranch strong { display: block; color: #fff; font-size: .98rem; margin-bottom: 4px; }
.fbranch span { display: block; font-size: .88rem; color: rgba(255,255,255,.65); line-height: 1.6; }
@media (max-width: 768px) { .footer__branches { grid-template-columns: 1fr; gap: 20px; } }

/* ---------- Nav dropdown (Brands mega-menu) ---------- */
.nav__item { position: relative; display: flex; align-items: center; }
.nav__droplink { color: var(--heading); font-weight: 500; font-size: .96rem; padding: 10px 16px; border-radius: var(--radius); display: inline-flex; align-items: center; gap: 6px; cursor: pointer; }
.nav__droplink:hover, .nav__droplink.active { color: var(--accent); }
.nav__droplink .caret { display: inline-flex; transition: transform var(--t); }
.nav__item:hover .nav__droplink .caret { transform: rotate(180deg); }
.nav__sub { position: absolute; top: calc(100% + 8px); left: 0; min-width: 470px; background: #fff; border: 1px solid var(--line); border-radius: var(--radius); box-shadow: var(--shadow-md); padding: 14px; display: grid; grid-template-columns: 1fr 1fr; gap: 2px; opacity: 0; visibility: hidden; transform: translateY(10px); transition: opacity var(--t), transform var(--t), visibility var(--t); z-index: 200; }
.nav__item:hover .nav__sub { opacity: 1; visibility: visible; transform: translateY(0); }
.nav__sub a { padding: 10px 14px; border-radius: var(--radius); font-size: .9rem; color: var(--heading); font-weight: 500; }
.nav__sub a:hover, .nav__sub a.active { background: var(--accent-soft); color: var(--accent); }

@media (max-width: 768px) {
  .nav__item { width: 100%; flex-direction: column; align-items: stretch; }
  .nav__droplink { width: 100%; justify-content: space-between; padding: 14px 12px; border-bottom: 1px solid var(--line); }
  .nav__sub { position: static; opacity: 1; visibility: visible; transform: none; box-shadow: none; border: none; min-width: 0; grid-template-columns: 1fr; padding: 0; gap: 0; max-height: 0; overflow: hidden; transition: max-height .35s ease; }
  .nav__item.is-open .nav__sub { max-height: 1200px; padding: 2px 0 8px; }
  .nav__sub a { padding: 12px 12px 12px 26px; border-bottom: 1px solid var(--line); }
  .nav__item.is-open .nav__droplink .caret { transform: rotate(180deg); }
}

/* ---------- Small dropdown (Locations) ---------- */
.nav__sub--sm { min-width: 220px; grid-template-columns: 1fr; }

/* ---------- Blog ---------- */
.post-card { background: #fff; border: 1px solid var(--line); border-radius: var(--radius-lg); overflow: hidden; transition: var(--t); display: flex; flex-direction: column; }
.post-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-md); }
.post-card__img { height: 190px; }
.post-card__body { padding: 26px; display: flex; flex-direction: column; flex: 1; }
.post-card__meta { font-size: .78rem; color: var(--muted); margin-bottom: 10px; text-transform: uppercase; letter-spacing: 1px; }
.post-card__body h3 { font-size: 1.15rem; margin-bottom: 10px; }
.post-card__body p { color: var(--muted); font-size: .93rem; margin-bottom: 16px; flex: 1; }

/* ---------- Article ---------- */
.article { max-width: 780px; margin: 0 auto; }
.article__meta { color: var(--muted); font-size: .9rem; margin-bottom: 10px; }
.article p { margin-bottom: 18px; }
.article h2 { font-size: 1.5rem; margin: 34px 0 14px; }
.article ul { margin: 0 0 18px; }
.article ul li { position: relative; padding-left: 28px; margin-bottom: 10px; }
.article ul li::before { content: ""; position: absolute; left: 0; top: 9px; width: 13px; height: 13px; border-radius: 50%; background: var(--accent-soft); border: 2px solid var(--accent); }

/* ---------- Hero trust / certification badges ---------- */
.mhero__grid { display: grid; grid-template-columns: 1.05fr .95fr; gap: 48px; align-items: center; }
.trust-card { background: rgba(255,255,255,.08); border: 1px solid rgba(255,255,255,.18); -webkit-backdrop-filter: blur(6px); backdrop-filter: blur(6px); border-radius: var(--radius-lg); padding: 26px; }
.trust-card__title { display: block; color: #fff; font-weight: 600; font-size: 1rem; margin-bottom: 18px; text-align: center; letter-spacing: .3px; }
.trust-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 14px; }
.trust-badge { background: rgba(255,255,255,.06); border: 1px solid rgba(255,255,255,.14); border-radius: var(--radius); padding: 16px 8px; text-align: center; display: flex; flex-direction: column; align-items: center; gap: 9px; transition: background var(--t); }
.trust-badge:hover { background: rgba(255,255,255,.13); }
.trust-badge .ic { width: 36px; height: 36px; border-radius: 50%; background: var(--accent); color: #fff; display: grid; place-items: center; flex-shrink: 0; }
.trust-badge span { color: rgba(255,255,255,.92); font-size: .72rem; font-weight: 500; line-height: 1.3; }
@media (max-width: 1024px) { .mhero__grid { grid-template-columns: 1fr; gap: 34px; } .mhero__badges { max-width: 520px; } }
@media (max-width: 480px) { .trust-grid { grid-template-columns: 1fr 1fr; } }

/* ---------- Hero authority logos ---------- */
.auth-card { background: #fff; border-radius: var(--radius-lg); padding: 26px; box-shadow: var(--shadow-lg); }
.auth-card__title { display: block; text-align: center; font-weight: 600; color: var(--ink); font-size: .98rem; margin-bottom: 18px; }
.auth-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.auth-logo { display: flex; flex-direction: column; align-items: center; gap: 9px; text-align: center; padding: 18px 10px; border: 1px solid var(--line); border-radius: var(--radius); background: var(--bg-soft); transition: var(--t); }
.auth-logo:hover { border-color: var(--accent); }
.auth-logo__ic { width: 44px; height: 44px; border-radius: 50%; background: var(--accent-soft); color: var(--accent); display: grid; place-items: center; flex-shrink: 0; }
.auth-logo__name { font-size: .74rem; font-weight: 600; color: var(--ink); line-height: 1.3; }
.auth-logo img { max-height: 48px; width: auto; }
.auth-card__note { text-align: center; font-size: .76rem; color: var(--muted); margin: 16px 0 0; }
@media (max-width: 380px) { .auth-grid { grid-template-columns: 1fr; } }

/* Circular icon variant (problem cards) */
.service__ic--round { border-radius: 50%; }

/* =====================================================================
   COMPACT REFINEMENTS — smaller text, tighter grids, smaller icons
   ===================================================================== */
html { font-size: 13px; }
:root { --text: #20272f; }                 /* a touch more black */

/* tighter section rhythm */
.section { padding: 58px 0; }
.section--sm { padding: 42px 0; }
.section-head { margin-bottom: 32px; }
.about2 { gap: 40px; }

/* tighter card grids */
.grid { gap: 18px; }
.service { padding: 24px 20px; }
.service h3 { margin-bottom: 9px; }
.service p { font-size: 0.92rem; }
.svc-card__body { padding: 20px 18px 22px; }
.fcard { padding: 22px 18px; }
.price-card { padding: 28px 24px; }
.post-card__body { padding: 20px; }

/* smaller icons */
.service__ic { width: 48px; height: 48px; margin-bottom: 13px; border-radius: 11px; }
.service__ic svg { width: 22px; height: 22px; }
.service__ic--round { border-radius: 50%; }
.fcard__ic { width: 42px; height: 42px; margin-bottom: 12px; }
.fcard__ic svg { width: 20px; height: 20px; }
.contact-card__ic { width: 46px; height: 46px; }
.contact-card__ic svg { width: 20px; height: 20px; }
.feature-row__ic { width: 46px; height: 46px; }
.feature-row__ic svg { width: 22px; height: 22px; }
.step__num { width: 54px; height: 54px; font-size: 1.15rem; margin-bottom: 16px; }
.about-visual__main svg, .why-visual svg { width: 110px; height: 110px; }

/* slightly smaller body copy in cards/lists */
.check-list li { font-size: 0.92rem; }

/* Non-heading card title (visual only) */
.service__ttl { display: block; font-weight: 700; color: var(--heading); font-size: 1.05rem; line-height: 1.3; margin-bottom: 9px; letter-spacing: -0.01em; }
/* h4 card titles match h3 sizing */
.service h4 { font-size: 1.03rem; line-height: 1.3; margin-bottom: 8px; color: var(--heading); }
/* compact bullet list inside brand cards */
.mini-list { margin-top: 4px; }
.mini-list li { position: relative; padding-left: 18px; margin-bottom: 7px; font-size: 0.9rem; color: var(--text); line-height: 1.55; }
.mini-list li::before { content: ""; position: absolute; left: 0; top: 7px; width: 8px; height: 8px; border-radius: 50%; background: var(--accent-soft); border: 2px solid var(--accent); }
.card-lead { color: var(--accent); font-weight: 600; font-size: 0.9rem; margin-bottom: 10px; }
/* other-brand mini cards */
.brand-mini { display: block; background: #fff; border: 1px solid var(--line); border-radius: var(--radius); padding: 16px 14px; text-align: center; transition: var(--t); }
.brand-mini:hover { border-color: var(--accent); box-shadow: var(--shadow-sm); transform: translateY(-3px); }
.brand-mini h4 { font-size: 0.98rem; color: var(--ink); margin-bottom: 2px; }
.brand-mini span { font-size: 0.78rem; color: var(--muted); }

/* small label above model list */
.mini-label { font-size: 0.72rem; font-weight: 700; letter-spacing: 1px; text-transform: uppercase; color: var(--accent); margin: 14px 0 8px; }
.service .card-lead { margin-bottom: 8px; }
.service > p { font-size: 0.92rem; }

/* ===== Site-wide consistent body text + bold (match Common Problems) ===== */
/* Every card section uses the same body colour and the same bold treatment,
   so no section reads in a different colour from the rest of the site. */
.service p,
.feature-row p,
.step p,
.svc-card__body p,
.fcard p { color: var(--text); }
.service p strong,
.service strong,
.feature-row p strong,
.svc-card__body p strong,
.step p strong { color: var(--heading); font-weight: 700; }

/* ===== Pro Tips — prominent prevention panel ===== */
.protips { display: flex; gap: 22px; align-items: flex-start; max-width: 940px; margin: 38px auto 0; padding: 30px 34px; background: #fef8e0; border: 2px solid #f6a510; border-radius: var(--radius); box-shadow: var(--shadow-sm); position: relative; overflow: hidden; }
.protips::before { content: ""; position: absolute; left: 0; top: 0; bottom: 0; width: 5px; background: #f6a510; }
.protips__icon { flex: 0 0 auto; width: 60px; height: 60px; display: grid; place-items: center; border-radius: 50%; background: #f6a510; color: #fff; }
.protips__title { color: var(--heading); font-size: 1.28rem; margin-bottom: 8px; }
.protips__body > p { color: var(--text); font-size: 0.96rem; margin-bottom: 14px; }
.protips__list { display: grid; gap: 12px; }
.protips__list li { position: relative; padding-left: 28px; color: var(--text); font-size: 0.94rem; line-height: 1.6; }
.protips__list li::before { content: ""; position: absolute; left: 0; top: 6px; width: 14px; height: 14px; border-radius: 50%; background: #f6a510; box-shadow: 0 0 0 4px rgba(246,165,16,.22); }
.protips__list li strong { color: var(--heading); font-weight: 700; }
@media (max-width: 640px) { .protips { flex-direction: column; gap: 16px; padding: 26px 22px; } }

/* ===== Customer Reviews ===== */
.rev__stars { display: inline-flex; gap: 2px; font-size: 1rem; line-height: 1; letter-spacing: 1px; }
.rev__stars span { color: #f6a510; }
.rev__stars .is-empty { color: #d9dee3; }
.rev-summary { display: flex; align-items: center; gap: 30px; max-width: 760px; margin: 0 auto 36px; padding: 24px 32px; background: #fff; border: 1px solid var(--line); border-radius: var(--radius); box-shadow: var(--shadow-sm); }
.rev-summary__score { text-align: center; flex: 0 0 auto; border-right: 1px solid var(--line); padding-right: 30px; }
.rev-summary__score strong { display: block; font-size: 2.6rem; line-height: 1; color: var(--heading); font-weight: 800; }
.rev-summary__score .rev__stars { font-size: 1.1rem; margin: 6px 0 4px; }
.rev-summary__score small { display: block; font-size: 0.74rem; color: var(--muted); text-transform: uppercase; letter-spacing: 0.5px; }
.rev-summary__text { color: var(--text); font-size: 0.98rem; margin: 0; }
.rev-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.rev { display: flex; flex-direction: column; background: #fff; border: 1px solid var(--line); border-radius: var(--radius); padding: 26px 24px; box-shadow: var(--shadow-sm); transition: var(--t); position: relative; }
.rev::before { content: "\201C"; position: absolute; top: 8px; right: 22px; font-size: 3.4rem; line-height: 1; color: var(--accent-soft); font-family: Georgia, serif; }
.rev:hover { border-color: var(--accent); box-shadow: var(--shadow); transform: translateY(-4px); }
.rev .rev__stars { margin-bottom: 14px; }
.rev__body { color: var(--text); font-size: 0.93rem; line-height: 1.65; margin-bottom: 20px; flex: 1; }
.rev__author { display: flex; align-items: center; gap: 12px; padding-top: 16px; border-top: 1px solid var(--line); }
.rev__avatar { flex: 0 0 auto; width: 42px; height: 42px; border-radius: 50%; display: grid; place-items: center; background: var(--accent); color: #fff; font-weight: 700; font-size: 1.05rem; }
.rev__who { display: flex; flex-direction: column; flex: 1; }
.rev__who strong { color: var(--heading); font-size: 0.95rem; }
.rev__who span { color: var(--muted); font-size: 0.82rem; }
.rev__badge { flex: 0 0 auto; font-size: 0.68rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.5px; color: var(--accent); background: var(--accent-soft); padding: 4px 10px; border-radius: 50px; }
@media (max-width: 980px) { .rev-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 720px) { .rev-summary { flex-direction: column; gap: 16px; text-align: center; } .rev-summary__score { border-right: 0; border-bottom: 1px solid var(--line); padding-right: 0; padding-bottom: 16px; } }
@media (max-width: 620px) { .rev-grid { grid-template-columns: 1fr; } }

/* ===== About page — content sections ===== */
.prose { max-width: 880px; margin: 0 auto; }
.prose p { color: var(--text); font-size: 1rem; line-height: 1.85; margin-bottom: 16px; }
.prose p:last-child { margin-bottom: 0; }
.prose p strong { color: var(--heading); font-weight: 700; }
.prose__close { margin-top: 22px; padding-top: 20px; border-top: 1px solid var(--line); font-weight: 600; color: var(--heading); }
.duo-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; max-width: 980px; margin: 0 auto; }
.vm-card { background: #fff; border: 1px solid var(--line); border-radius: var(--radius); padding: 34px 32px; box-shadow: var(--shadow-sm); border-top: 4px solid var(--accent); }
.vm-card__ic { width: 56px; height: 56px; border-radius: 50%; display: grid; place-items: center; background: var(--accent-soft); color: var(--accent); margin-bottom: 18px; }
.vm-card h3 { font-size: 1.3rem; margin-bottom: 12px; color: var(--heading); }
.vm-card p { color: var(--text); font-size: 0.97rem; line-height: 1.8; }
.vm-card p strong { color: var(--heading); font-weight: 700; }
.values-close { max-width: 760px; margin: 30px auto 0; text-align: center; color: var(--text); font-size: 1rem; line-height: 1.8; }
.values-close strong { color: var(--heading); font-weight: 700; }
.reg-band .prose p { color: rgba(255,255,255,.82); }
.reg-band .prose p strong { color: #fff; }
.chip-row { display: flex; flex-wrap: wrap; gap: 12px; justify-content: center; margin-top: 28px; }
.client-chip { display: inline-flex; align-items: center; gap: 8px; background: #fff; border: 1px solid var(--line); border-radius: 50px; padding: 10px 20px; font-size: 0.88rem; font-weight: 500; color: var(--heading); box-shadow: var(--shadow-sm); }
.client-chip svg { color: var(--accent); }
.apart { display: flex; flex-wrap: wrap; gap: 10px; justify-content: center; max-width: 920px; margin: 26px auto 0; }
.apart span { display: inline-flex; align-items: center; gap: 7px; background: var(--accent-soft); color: var(--accent-strong, var(--accent)); border-radius: 8px; padding: 9px 15px; font-size: 0.86rem; font-weight: 600; }
.apart span::before { content: ""; width: 7px; height: 7px; border-radius: 50%; background: var(--accent); flex: 0 0 auto; }
@media (max-width: 760px) { .duo-grid { grid-template-columns: 1fr; } }

/* ===== Brand page: 70/30 content + sidebar layout ===== */
.grid--2 { grid-template-columns: repeat(2, 1fr); }
@media (max-width: 560px) { .grid--2 { grid-template-columns: 1fr; } }
.brandlayout { display: grid; grid-template-columns: 70% 30%; gap: 34px; align-items: start; }
@media (max-width: 920px) { .brandlayout { grid-template-columns: 1fr; } }
.brandlayout__main { min-width: 0; }
.brandlayout__main .eyebrow { justify-content: flex-start; }
.brandlayout__aside { display: flex; flex-direction: column; gap: 22px; position: sticky; top: 100px; }
@media (max-width: 920px) { .brandlayout__aside { position: static; } }
.widget { background: #fff; border: 1px solid var(--line); border-radius: var(--radius); padding: 22px 20px; box-shadow: var(--shadow-sm); }
.widget__title { font-size: 1.02rem; color: var(--heading); margin-bottom: 14px; padding-bottom: 12px; border-bottom: 1px solid var(--line); position: relative; }
.widget__title::after { content: ""; position: absolute; left: 0; bottom: -1px; width: 46px; height: 2px; background: var(--accent); }
.widget-list { display: flex; flex-direction: column; }
.widget-list a { display: flex; align-items: center; gap: 9px; padding: 9px 2px; font-size: 0.89rem; color: var(--text); border-bottom: 1px solid var(--line); transition: var(--t); }
.widget-list a:last-child { border-bottom: 0; }
.widget-list a::before { content: ""; width: 7px; height: 7px; border-radius: 50%; background: var(--accent-soft); border: 2px solid var(--accent); flex: 0 0 auto; transition: var(--t); }
.widget-list a:hover { color: var(--accent); padding-left: 8px; }
.widget-list a:hover::before { background: var(--accent); }
.widget-list a.is-active { color: var(--accent); font-weight: 600; }
.widget-list a.is-active::before { background: var(--accent); }
.widget--form { background: linear-gradient(160deg, var(--ink), #11304b); border: 0; }
.widget--form .widget__title { color: #fff; border-bottom-color: rgba(255,255,255,.16); }
.widget__note { color: rgba(255,255,255,.72); font-size: 0.84rem; margin-bottom: 14px; }
.widget-form { display: flex; flex-direction: column; gap: 10px; }
.widget-form input, .widget-form textarea { width: 100%; padding: 11px 13px; border-radius: 10px; border: 1px solid rgba(255,255,255,.18); background: rgba(255,255,255,.08); color: #fff; font: inherit; font-size: 0.88rem; }
.widget-form input::placeholder, .widget-form textarea::placeholder { color: rgba(255,255,255,.55); }
.widget-form textarea { resize: vertical; min-height: 72px; }
.widget-form .btn { width: 100%; }
.widget-cta { display: flex; gap: 8px; margin-top: 6px; }
.widget-cta .btn { flex: 1; padding-left: 6px; padding-right: 6px; }

/* ===== Brand page creative blocks (process timeline, area chips) ===== */
.grid--3 { grid-template-columns: repeat(3, 1fr); }
@media (max-width: 720px) { .grid--3 { grid-template-columns: 1fr; } }
.proc { display: flex; flex-direction: column; margin: 10px 0 16px; }
.proc__step { position: relative; display: flex; gap: 18px; padding-bottom: 24px; }
.proc__step:not(:last-child)::before { content: ""; position: absolute; left: 21px; top: 46px; bottom: 0; width: 2px; background: var(--line); }
.proc__num { flex: 0 0 auto; width: 44px; height: 44px; border-radius: 50%; background: var(--accent); color: #fff; display: grid; place-items: center; font-weight: 700; font-size: 1.05rem; box-shadow: 0 0 0 5px var(--accent-soft); z-index: 1; }
.proc__c { padding-top: 2px; }
.proc__c h4 { margin: 8px 0 5px; font-size: 1.04rem; color: var(--heading); }
.proc__c p { margin: 0; color: var(--text); font-size: 0.93rem; line-height: 1.65; }
.proc-note { display: flex; gap: 12px; align-items: flex-start; background: var(--accent-soft); border-left: 4px solid var(--accent); border-radius: 12px; padding: 16px 18px; margin: 4px 0 6px; font-size: 0.92rem; line-height: 1.6; color: var(--heading); }
.proc-note svg { flex: 0 0 auto; color: var(--accent); margin-top: 1px; }
.area-chips { display: flex; flex-wrap: wrap; gap: 8px; margin: 4px 0 22px; }
.area-chips span { display: inline-flex; align-items: center; gap: 7px; background: #fff; border: 1px solid var(--line); border-radius: 50px; padding: 7px 14px; font-size: 0.82rem; font-weight: 500; color: var(--heading); box-shadow: var(--shadow-sm); }
.area-chips span::before { content: ""; width: 6px; height: 6px; border-radius: 50%; background: var(--accent); flex: 0 0 auto; }

/* ===== Consistent paragraph spacing in long-form content (site-wide) ===== */
.lead { font-size: 1.06rem; color: var(--heading); font-weight: 500; }
.brandlayout__main > p,
.about2__body > p,
.prose > p { margin-bottom: 16px; line-height: 1.8; }
.brandlayout__main > p:last-child,
.about2__body > p:last-child,
.prose > p:last-child { margin-bottom: 0; }

/* ===== Brands index — clickable brand cards ===== */
a.service { text-decoration: none; color: inherit; display: flex; flex-direction: column; }
a.service h3 { color: var(--heading); }
a.service .brand-link__cta { margin-top: auto; padding-top: 12px; color: var(--accent); font-weight: 600; font-size: .92rem; letter-spacing: .2px; }
a.service:hover .brand-link__cta { text-decoration: underline; }

/* ===== Legal / policy pages (prose) ===== */
.prose h2 { font-size: 1.32rem; color: var(--heading); margin: 34px 0 12px; }
.prose h2:first-of-type { margin-top: 8px; }
.prose-list { margin: 6px 0 16px; padding-left: 22px; }
.prose-list li { color: var(--text); line-height: 1.8; margin-bottom: 8px; }
.prose a { color: var(--accent); }

/* ===== Footer legal links row ===== */
.footer__legal { display: flex; flex-wrap: wrap; justify-content: center; gap: 8px 16px; padding: 22px 0 4px; }
.footer__legal a { color: rgba(255,255,255,.78); font-size: .9rem; }
.footer__legal a:hover { color: #fff; }
.footer__legal span { color: rgba(255,255,255,.3); }

/* ===== Footer developer credit ===== */
.footer__credit { text-align: center; padding: 4px 0 2px; font-size: .85rem; color: rgba(255,255,255,.6); }
.footer__credit a { color: rgba(255,255,255,.85); font-weight: 600; }
.footer__credit a:hover { color: #fff; }
