:root {
  --petrol: #003b46;
  --petrol-2: #06575b;
  --teal: #07575b;
  --teal-soft: #66a5ad;
  --teal-pale: #c4dfe6;
  --accent: #d04856;
  --accent-dark: #b33a47;
  --text: #333333;
  --muted: #5f6b6d;
  --bg: #ffffff;
  --bg-soft: #f4f8f9;
  --line: #dfe8ea;
  --footer: #181818;
  --radius: 8px;
  --shadow: 0 10px 30px rgb(0 59 70 / .08);
  --heading: "Montserrat", system-ui, sans-serif;
  --body: "Open Sans", system-ui, -apple-system, "Segoe UI", Roboto, sans-serif;
  --header-h: 80px;
}

*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; scroll-padding-top: calc(var(--header-h) + 8px); }
body { margin: 0; font: 400 16px/1.7 var(--body); color: var(--text); background: var(--bg); -webkit-font-smoothing: antialiased; }
img { max-width: 100%; display: block; }
/* AOS slide-ins start off-screen; never let them cause sideways scrolling */
main { overflow-x: clip; }
a { color: var(--petrol-2); }
h1, h2, h3, h4 { font-family: var(--heading); color: var(--petrol); margin: 0 0 .5em; line-height: 1.2; }
h2 { font-size: clamp(1.7rem, 3.2vw, 2.3rem); font-weight: 700; }
h3 { font-size: 1.15rem; font-weight: 700; }
h4 { font-size: 1rem; font-weight: 600; }
p { margin: 0 0 1em; }
hr { border: 0; height: 1px; background: rgb(255 255 255 / .35); margin: 22px 0; }

.wrap { width: min(1180px, 100% - 40px); margin-inline: auto; }
.section { padding: clamp(64px, 8vw, 100px) 0; }

.skip { position: absolute; left: -9999px; }
.skip:focus { left: 16px; top: 16px; z-index: 100; background: #fff; padding: 8px 12px; border-radius: 6px; }
:focus-visible { outline: 3px solid var(--accent); outline-offset: 2px; border-radius: 4px; }

/* Section titles: centered with red lines, like the original */
.section-title { text-align: center; max-width: 720px; margin: 0 auto clamp(40px, 5vw, 60px); }
.section-title h2 {
  display: inline-flex; align-items: center; gap: 18px; margin-bottom: 14px; color: var(--petrol-2);
}
.section-title h2::before, .section-title h2::after { content: ""; width: 44px; height: 2px; background: var(--accent); flex: none; }
.section-title p { color: var(--muted); margin: 0; }
.section-title.light h2 { color: #fff; }
.section-title.light p { color: rgb(255 255 255 / .82); }

.kicker { font: 600 .82rem/1 var(--heading); letter-spacing: .14em; text-transform: uppercase; color: var(--accent); margin-bottom: 14px; }
.kicker.light { color: #ffb3ba; }

/* Buttons */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: .55rem;
  padding: .9rem 1.6rem; border-radius: 6px; border: 2px solid transparent;
  font: 600 .95rem/1 var(--heading); text-decoration: none; cursor: pointer;
  transition: background .25s, color .25s, border-color .25s, transform .25s, box-shadow .25s;
}
.btn:hover { transform: translateY(-2px); }
.btn-accent { background: var(--accent); color: #fff; box-shadow: 0 8px 20px rgb(208 72 86 / .3); }
.btn-accent:hover { background: var(--accent-dark); }
.btn-light { color: #fff; border-color: rgb(255 255 255 / .7); }
.btn-light:hover { background: #fff; color: var(--petrol); }
.btn-sm { padding: .65rem 1.15rem; font-size: .85rem; box-shadow: none; white-space: nowrap; }
.btn-block { width: 100%; }
.btn-wa { background: #25d366; color: #fff; align-self: flex-start; }
.btn-wa:hover { background: #1fb457; }
.btn-wa svg { width: 20px; height: 20px; }
.btn[disabled] { opacity: .6; cursor: progress; transform: none; }

/* Header (white, like the original) */
.site-header {
  position: fixed; inset: 0 0 auto; z-index: 50; height: var(--header-h);
  background: rgb(255 255 255 / .97); backdrop-filter: blur(8px);
  transition: box-shadow .3s, height .3s;
}
.site-header.scrolled { --header-h: 68px; box-shadow: 0 2px 18px rgb(0 0 0 / .08); }
.header-inner { height: 100%; display: flex; align-items: center; gap: 28px; }
.brand { display: inline-flex; align-items: center; gap: 10px; text-decoration: none; }
.brand img { width: 44px; height: 44px; }
.wordmark { font: 800 1.7rem/1 var(--heading); letter-spacing: .06em; color: #333; white-space: nowrap; }
.nav { display: flex; gap: 26px; margin-left: auto; }
.nav a { position: relative; color: #3a3939; text-decoration: none; font: 500 .95rem/1 var(--heading); padding: 8px 0; transition: color .25s; }
.nav a::after { content: ""; position: absolute; left: 0; bottom: 0; width: 100%; height: 2px; background: var(--accent); transform: scaleX(0); transition: transform .3s; }
.nav a:hover, .nav a.active { color: var(--accent); }
.nav a:hover::after, .nav a.active::after { transform: scaleX(1); }
.header-actions { display: flex; align-items: center; gap: 14px; }
.lang { display: inline-flex; background: var(--bg-soft); border-radius: 999px; padding: 3px; }
.lang button { background: none; border: 0; border-radius: 999px; padding: .38rem .6rem; font: 600 .72rem/1 var(--heading); color: var(--muted); cursor: pointer; }
.lang button[aria-pressed="true"] { background: var(--petrol); color: #fff; }
.menu-toggle { display: none; background: none; border: 0; padding: 8px; cursor: pointer; }
.menu-toggle span { display: block; width: 24px; height: 2px; background: var(--petrol); margin: 5px 0; border-radius: 2px; transition: transform .3s, opacity .3s; }
.open .menu-toggle span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.open .menu-toggle span:nth-child(2) { opacity: 0; }
.open .menu-toggle span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Hero: city photo with petrol overlay + typed words in red */
.hero {
  position: relative; min-height: 100vh; display: flex; align-items: center; color: #fff;
  padding: calc(var(--header-h) + 40px) 0 90px; overflow: hidden; background: var(--petrol);
}
.hero-bg {
  position: absolute; inset: 0;
  background: linear-gradient(rgb(0 59 70 / .78), rgb(0 45 55 / .86)), url("../img/hero.jpg") center / cover no-repeat;
  transform: scale(1.06); animation: heroZoom 18s ease-out forwards;
}
@keyframes heroZoom { to { transform: scale(1); } }
.hero-inner { position: relative; max-width: 1180px; }
.hero h1 { color: #fff; font-size: clamp(2.2rem, 5.4vw, 4rem); font-weight: 800; line-height: 1.12; max-width: 17ch; margin: 0; }
.hero h1 > span { display: block; }
.typed { color: var(--accent); min-height: 1.12em; }
.typed #rotator-word { color: #ff6b78; }
.caret { display: inline-block; width: 4px; height: .9em; background: #fff; margin-left: 6px; vertical-align: -.08em; animation: blink 1s steps(1) infinite; }
@keyframes blink { 50% { opacity: 0; } }
.hero hr { max-width: 620px; margin: 30px 0 22px; }
.hero-sub { font: 600 clamp(1.1rem, 2vw, 1.45rem)/1.3 var(--heading); margin-bottom: .6em; }
.lead { color: rgb(255 255 255 / .8); max-width: 54ch; font-size: 1.05rem; }
.hero-cta { display: flex; flex-wrap: wrap; gap: 14px; margin-top: 32px; }
.scroll-cue { position: absolute; left: 50%; bottom: 28px; width: 26px; height: 42px; margin-left: -13px; border: 2px solid rgb(255 255 255 / .6); border-radius: 14px; }
.scroll-cue span { position: absolute; left: 50%; top: 8px; width: 4px; height: 8px; margin-left: -2px; border-radius: 2px; background: #fff; animation: cue 1.8s infinite; }
@keyframes cue { 0% { opacity: 0; transform: translateY(0); } 40% { opacity: 1; } 100% { opacity: 0; transform: translateY(14px); } }

/* Simplify: teal band like the original */
.simplify { background: var(--teal-soft); color: #fff; padding: clamp(64px, 8vw, 100px) 0; }
.simplify-grid { display: grid; grid-template-columns: 1fr 1.1fr; gap: clamp(32px, 6vw, 72px); align-items: center; }
.simplify-img { margin: 0; border-radius: var(--radius); overflow: hidden; box-shadow: 0 24px 50px rgb(0 59 70 / .3); aspect-ratio: 4 / 3; }
.simplify-img img { width: 100%; height: 100%; object-fit: cover; }
.simplify .kicker { color: var(--petrol); }
.simplify h2 { color: #fff; font-size: clamp(1.8rem, 3.4vw, 2.6rem); }
.simplify hr { background: rgb(255 255 255 / .55); width: 80px; height: 3px; margin: 20px 0 24px; }
.simplify p { font-size: 1.1rem; line-height: 1.8; margin: 0; }

/* Stats band */
.stats-band { position: relative; color: #fff; padding: 70px 0; overflow: hidden; background: var(--petrol); }
.stats-bg { position: absolute; inset: 0; background: linear-gradient(rgb(0 30 36 / .82), rgb(0 30 36 / .82)), url("../img/flags.jpg") center / cover fixed; }
.stats { position: relative; display: grid; grid-template-columns: repeat(3, 1fr); margin-block: 0; text-align: center; }
.stat + .stat { border-left: 1px solid rgb(255 255 255 / .2); }
.stat dd { margin: 0; font: 800 clamp(2.6rem, 5vw, 3.6rem)/1 var(--heading); }
.stat dt { margin-top: 10px; color: rgb(255 255 255 / .8); font: 500 1rem/1.3 var(--heading); }

/* Services */
.services { background: var(--bg-soft); }
.svc-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 24px; }
.svc {
  display: flex; gap: 22px; background: #fff; border-radius: var(--radius); padding: 30px;
  border: 1px solid var(--line); border-bottom: 3px solid transparent;
  transition: transform .3s, box-shadow .3s, border-color .3s;
}
.svc:hover { transform: translateY(-4px); box-shadow: var(--shadow); border-bottom-color: var(--accent); }
.svc-icon { flex: none; width: 64px; height: 64px; border-radius: 50%; display: grid; place-items: center; background: var(--teal-pale); color: var(--petrol-2); transition: background .3s, color .3s; }
.svc:hover .svc-icon { background: var(--petrol-2); color: #fff; }
.svc-icon svg { width: 30px; height: 30px; fill: none; stroke: currentColor; stroke-width: 1.7; stroke-linecap: round; stroke-linejoin: round; }
.svc h3 { color: var(--petrol-2); margin-bottom: .45em; }
.svc p { color: var(--muted); margin: 0; font-size: .96rem; }
.svc-main { grid-column: 1 / -1; background: var(--petrol); border-color: var(--petrol); }
.svc-main h3 { color: #fff; font-size: 1.45rem; }
.svc-main p { color: rgb(255 255 255 / .82); }
.svc-main .svc-icon { background: var(--accent); color: #fff; }
.svc-main:hover .svc-icon { background: #fff; color: var(--accent); }
.svc-main .svc-tags { margin-top: 14px; color: #ffb3ba; font-weight: 600; font-size: .9rem; }
.svc-cta { text-decoration: none; background: var(--teal-soft); border-color: var(--teal-soft); align-items: center; }
.svc-cta h3, .svc-cta p { color: #fff; }
.svc-cta .more { display: inline-block; margin-top: 14px; font: 700 .9rem/1 var(--heading); color: var(--petrol); }

/* Story */
.story { background: var(--petrol); color: #fff; padding: clamp(64px, 8vw, 100px) 0; }
.story-grid { display: grid; grid-template-columns: 1.05fr 1fr; gap: clamp(32px, 6vw, 72px); align-items: center; }
.story h2 { color: #fff; font-size: clamp(1.8rem, 3.4vw, 2.6rem); }
.story p { color: rgb(255 255 255 / .85); font-size: 1.05rem; line-height: 1.8; }
.story-img { margin: 0; position: relative; }
.story-img::before { content: ""; position: absolute; inset: -14px 14px 14px -14px; border: 3px solid var(--accent); border-radius: var(--radius); }
.story-img img { position: relative; border-radius: var(--radius); width: 100%; aspect-ratio: 16 / 11; object-fit: cover; }

/* Values: teal box like the original */
.values-box { background: var(--teal-soft); border-radius: 12px; padding: clamp(40px, 6vw, 70px) clamp(24px, 5vw, 60px); }
.values { list-style: none; padding: 0; margin: 0; display: grid; grid-template-columns: repeat(3, 1fr); gap: 44px 40px; text-align: center; color: #fff; }
.v-icon { display: inline-grid; place-items: center; width: 68px; height: 68px; border-radius: 50%; background: rgb(255 255 255 / .16); margin-bottom: 16px; transition: background .3s, transform .3s; }
.values li:hover .v-icon { background: var(--petrol); transform: translateY(-4px); }
.v-icon svg { width: 30px; height: 30px; fill: none; stroke: #fff; stroke-width: 1.7; stroke-linecap: round; stroke-linejoin: round; }
.values h4 { color: #fff; font-size: 1.15rem; margin-bottom: .5em; }
.values p { margin: 0; color: rgb(255 255 255 / .92); font-size: .95rem; }

/* Industries: dark petrol cards with white icons */
.industries { padding-top: 0; }
.ind-grid { list-style: none; padding: 0; margin: 0; display: grid; grid-template-columns: repeat(4, 1fr); gap: 22px; }
.ind-grid li {
  background: var(--petrol); color: #fff; border-radius: var(--radius); padding: 30px 20px 26px; text-align: center;
  display: flex; flex-direction: column; align-items: center; gap: 18px;
  box-shadow: 0 8px 22px rgb(0 59 70 / .18); transition: transform .3s, background .3s;
}
.ind-grid li:hover { transform: translateY(-5px); background: var(--petrol-2); }
.ind-grid svg { width: 40px; height: 40px; fill: none; stroke: #fff; stroke-width: 1.6; stroke-linecap: round; stroke-linejoin: round; }
.ind-grid span { width: 100%; padding-top: 16px; border-top: 1px solid rgb(255 255 255 / .2); font: 600 .95rem/1.3 var(--heading); }

/* Clients */
.clients { background: var(--bg-soft); padding: clamp(56px, 7vw, 80px) 0; }
.clients .section-title { margin-bottom: 36px; }
.logos { list-style: none; padding: 0; margin: 0; display: flex; justify-content: center; align-items: center; gap: clamp(28px, 6vw, 72px); flex-wrap: wrap; }
.logos li { background: #fff; border-radius: var(--radius); width: 220px; height: 120px; display: grid; place-items: center; padding: 18px; box-shadow: 0 4px 16px rgb(0 0 0 / .05); }
.logos img { max-height: 84px; max-width: 170px; width: auto; filter: grayscale(1); opacity: .75; transition: filter .3s, opacity .3s; }
.logos li:hover img { filter: none; opacity: 1; }

/* FAQ */
.faq-wrap { max-width: 900px; }
.accordion { display: grid; gap: 14px; }
.accordion details { background: #fff; border: 1px solid var(--line); border-radius: var(--radius); transition: box-shadow .3s, border-color .3s; }
.accordion details[open] { box-shadow: var(--shadow); border-color: var(--teal-soft); }
.accordion summary {
  list-style: none; cursor: pointer; padding: 20px 60px 20px 24px; position: relative;
  font: 600 1.02rem/1.4 var(--heading); color: var(--petrol);
}
.accordion summary::-webkit-details-marker { display: none; }
.accordion summary::after {
  content: "+"; position: absolute; right: 20px; top: 50%; transform: translateY(-50%);
  width: 28px; height: 28px; border-radius: 50%; display: grid; place-items: center;
  background: var(--teal-pale); color: var(--petrol); font: 600 1.2rem/1 var(--heading); transition: background .3s, color .3s;
}
.accordion details[open] summary::after { content: "–"; background: var(--accent); color: #fff; }
.accordion details p { color: var(--muted); padding: 0 24px 22px; margin: 0; }

/* Contact: petrol section like the original */
.contact { background: var(--petrol); color: #fff; }
.contact-grid { display: grid; grid-template-columns: .85fr 1.15fr; gap: 32px; align-items: start; }
.info { display: flex; flex-direction: column; gap: 16px; }
.info-item { display: flex; gap: 18px; align-items: flex-start; background: rgb(255 255 255 / .06); border-radius: var(--radius); padding: 20px 22px; }
.info-item svg { flex: none; width: 34px; height: 34px; fill: none; stroke: #fff; stroke-width: 1.6; stroke-linecap: round; stroke-linejoin: round; }
.info-item h4 { color: #fff; margin-bottom: .25em; }
.info-item p { margin: 0; color: rgb(255 255 255 / .8); }
.info-item a { color: rgb(255 255 255 / .9); text-decoration: none; }
.info-item a:hover { color: #fff; text-decoration: underline; }
.contact-form { background: #fff; color: var(--text); border-radius: 12px; padding: clamp(24px, 4vw, 40px); display: grid; gap: 18px; box-shadow: 0 30px 60px rgb(0 0 0 / .2); }
.field-row { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.field { display: grid; gap: 6px; font: 600 .85rem/1.3 var(--heading); color: var(--petrol); }
.field input, .field select, .field textarea {
  font: 400 1rem/1.4 var(--body); color: var(--text); background: var(--bg-soft);
  border: 1px solid var(--line); border-radius: 6px; padding: .8rem .95rem; width: 100%; transition: border-color .25s, box-shadow .25s, background .25s;
}
.field textarea { resize: vertical; min-height: 130px; }
.field input:focus, .field select:focus, .field textarea:focus { outline: none; background: #fff; border-color: var(--teal-soft); box-shadow: 0 0 0 3px rgb(102 165 173 / .25); }
.field .invalid { border-color: var(--accent); }
.hp { position: absolute; left: -9999px; width: 1px; height: 1px; opacity: 0; }
.form-status { margin: 0; min-height: 1.4em; font-size: .95rem; }
.form-status.ok { color: var(--petrol-2); font-weight: 600; }
.form-status.err { color: var(--accent-dark); }
.form-status a { color: inherit; font-weight: 700; }
.map { height: 380px; }
.map iframe { width: 100%; height: 100%; border: 0; display: block; }

/* Footer */
.site-footer { background: var(--footer); color: rgb(255 255 255 / .7); padding: 64px 0 24px; font-size: .92rem; }
.footer-grid { display: grid; grid-template-columns: 1.4fr 1fr 1fr 1fr; gap: 36px; }
.site-footer .wordmark { color: #fff; font-size: 1.5rem; }
.footer-tag { margin: 14px 0 18px; }
.site-footer h4 { color: #fff; font-size: 1rem; margin-bottom: 16px; }
.site-footer ul { list-style: none; padding: 0; margin: 0; display: grid; gap: 10px; }
.site-footer ul a { color: rgb(255 255 255 / .7); text-decoration: none; transition: color .25s; }
.site-footer ul a:hover { color: var(--accent); }
.social { display: inline-grid; place-items: center; width: 40px; height: 40px; border-radius: 50%; background: rgb(255 255 255 / .08); color: #fff; transition: background .25s; }
.social:hover { background: var(--accent); }
.social svg { width: 17px; height: 17px; }
.footer-bottom { margin-top: 48px; padding-top: 20px; border-top: 1px solid rgb(255 255 255 / .1); text-align: center; font-size: .85rem; }
.footer-bottom p { margin: 0; }

.wa-float {
  position: fixed; right: 20px; bottom: 20px; z-index: 40; width: 56px; height: 56px; border-radius: 50%;
  display: grid; place-items: center; background: #25d366; color: #fff; box-shadow: 0 8px 24px rgb(0 0 0 / .25);
  transition: transform .25s;
}
.wa-float:hover { transform: scale(1.08); }
.wa-float svg { width: 28px; height: 28px; }

/* Back-to-top button, like the original */
.scroll-top {
  position: fixed; right: 26px; bottom: 90px; z-index: 39; width: 44px; height: 44px; border-radius: 50%;
  display: grid; place-items: center; background: var(--accent); color: #fff;
  opacity: 0; visibility: hidden; transform: translateY(10px); transition: opacity .3s, visibility .3s, transform .3s, background .25s;
}
.scroll-top.show { opacity: 1; visibility: visible; transform: none; }
.scroll-top:hover { background: var(--accent-dark); }
.scroll-top svg { width: 20px; height: 20px; fill: none; stroke: currentColor; stroke-width: 2.2; stroke-linecap: round; stroke-linejoin: round; }

/* ---------- Multi-page additions ---------- */
a.svc { text-decoration: none; color: inherit; }
.svc .more { display: inline-flex; gap: 6px; margin-top: 14px; font: 700 .88rem/1 var(--heading); color: var(--accent); transition: gap .25s; }
.svc:hover .more { gap: 10px; }
.svc-main .more { color: #ffb3ba; }
.svc-cta .more { color: var(--petrol); }
.btn-light-dark { margin-top: 26px; color: #fff; border-color: #fff; }
.btn-light-dark:hover { background: #fff; color: var(--petrol); }
.btn-ico { width: 18px; height: 18px; }

/* Inner page banner */
.page-hero {
  position: relative; color: #fff; text-align: center; overflow: hidden;
  padding: calc(var(--header-h) + clamp(56px, 8vw, 96px)) 0 clamp(56px, 8vw, 96px);
  background: linear-gradient(rgb(0 59 70 / .8), rgb(0 45 55 / .88)), var(--img) center / cover no-repeat;
}
.page-hero h1 { color: #fff; font-size: clamp(2.2rem, 5vw, 3.4rem); font-weight: 800; margin-bottom: .35em; }
.page-hero h1::after { content: ""; display: block; width: 70px; height: 3px; background: var(--accent); margin: 18px auto 0; }
.page-hero p { max-width: 720px; margin: 0 auto; font-size: clamp(1.02rem, 1.6vw, 1.2rem); color: rgb(255 255 255 / .88); }
.crumbs { display: flex; justify-content: center; gap: 10px; font: 500 .85rem/1 var(--heading); margin-bottom: 18px; color: rgb(255 255 255 / .6); }
.crumbs a { color: rgb(255 255 255 / .85); text-decoration: none; }
.crumbs a:hover { color: #fff; text-decoration: underline; }

/* About: story band + offer */
.story-band { background: var(--petrol); color: #fff; text-align: center; padding: clamp(56px, 7vw, 84px) 0; }
.story-band h2 { color: #fff; font-size: clamp(2.4rem, 6vw, 3.8rem); font-weight: 800; letter-spacing: .08em; margin-bottom: .25em; }
.story-band p:last-child { max-width: 680px; margin: 0 auto; font: 500 clamp(1.05rem, 1.8vw, 1.3rem)/1.5 var(--heading); color: rgb(255 255 255 / .9); }
.story-band .kicker { margin-bottom: 10px; }
.offer { background: var(--bg-soft); }
.offer-grid { display: grid; grid-template-columns: 1.1fr 1fr; gap: clamp(32px, 6vw, 72px); align-items: center; }
.offer-title { color: var(--petrol-2); font-size: clamp(1.4rem, 2.6vw, 1.9rem); font-weight: 600; line-height: 1.4; }
.rule { width: 80px; height: 3px; background: var(--accent); margin: 22px 0; }
.offer p { color: var(--muted); font-size: 1.05rem; line-height: 1.8; margin-bottom: 26px; }
.values-sec + .industries { padding-top: 0; }

/* CTA band */
.cta-band { background: linear-gradient(120deg, var(--petrol) 0%, var(--petrol-2) 100%); color: #fff; padding: clamp(48px, 6vw, 72px) 0; }
.cta-band .wrap { display: flex; align-items: center; justify-content: space-between; gap: 32px; flex-wrap: wrap; }
.cta-band h2 { color: #fff; font-size: clamp(1.5rem, 2.8vw, 2rem); margin-bottom: .3em; }
.cta-band p { margin: 0; color: rgb(255 255 255 / .82); max-width: 56ch; }
.cta-actions { display: flex; gap: 12px; flex-wrap: wrap; }

/* Service detail */
.detail-grid { display: grid; grid-template-columns: 1fr 340px; gap: clamp(32px, 5vw, 64px); align-items: start; }
.detail-main h2 { font-size: clamp(1.4rem, 2.4vw, 1.8rem); margin: 48px 0 20px; color: var(--petrol-2); }
.detail-intro { display: flex; gap: 24px; align-items: flex-start; }
.svc-icon.big { width: 76px; height: 76px; background: var(--petrol); color: #fff; }
.svc-icon.big svg { width: 36px; height: 36px; }
.lead-dark { font-size: 1.12rem; line-height: 1.85; color: var(--text); margin: 0; }
.inc-list { list-style: none; padding: 0; margin: 0; display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.inc-list li {
  position: relative; background: var(--bg-soft); border: 1px solid var(--line); border-radius: var(--radius);
  padding: 16px 18px 16px 52px; font-weight: 500; color: var(--petrol);
}
.inc-list li::before {
  content: ""; position: absolute; left: 18px; top: 50%; width: 22px; height: 22px; margin-top: -11px; border-radius: 50%;
  background: var(--accent) url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'><path d='M6 12.5l4 4 8-9' fill='none' stroke='white' stroke-width='2.6' stroke-linecap='round' stroke-linejoin='round'/></svg>") center / 14px no-repeat;
}
.ideal { margin-top: 28px; border-left: 4px solid var(--teal-soft); background: #eef6f7; padding: 20px 24px; border-radius: 0 var(--radius) var(--radius) 0; }
.ideal h3 { font-size: 1rem; margin-bottom: .35em; color: var(--petrol-2); }
.ideal p { margin: 0; color: var(--text); }
.steps { list-style: none; padding: 0; margin: 0; display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.steps li { background: #fff; border: 1px solid var(--line); border-radius: var(--radius); padding: 24px 22px; box-shadow: 0 4px 14px rgb(0 59 70 / .05); }
.step-n { display: inline-grid; place-items: center; width: 38px; height: 38px; border-radius: 50%; background: var(--accent); color: #fff; font: 800 1rem/1 var(--heading); margin-bottom: 14px; }
.steps h4 { color: var(--petrol); margin-bottom: .35em; }
.steps p { margin: 0; color: var(--muted); font-size: .94rem; }
.back-link { display: inline-block; margin-top: 40px; font: 600 .95rem/1 var(--heading); color: var(--petrol-2); text-decoration: none; }
.back-link:hover { color: var(--accent); }
.detail-aside { position: sticky; top: calc(var(--header-h) + 20px); display: grid; gap: 20px; }
.aside-card { background: #fff; border: 1px solid var(--line); border-radius: 12px; padding: 26px; box-shadow: var(--shadow); }
.aside-card h3 { font-size: 1.1rem; margin-bottom: .6em; }
.aside-cta { background: var(--petrol); border-color: var(--petrol); color: #fff; display: grid; gap: 12px; }
.aside-cta h3 { color: #fff; margin: 0; }
.aside-cta p { margin: 0 0 6px; color: rgb(255 255 255 / .82); font-size: .95rem; }
.aside-cta .btn-wa { align-self: auto; }
.aside-cta .aside-phones { text-align: center; font-size: .9rem; margin: 4px 0 0; }
.aside-phones a { color: #fff; text-decoration: none; }
.aside-list { list-style: none; padding: 0; margin: 0; display: grid; }
.aside-list a { display: flex; align-items: center; gap: 12px; padding: 11px 0; border-bottom: 1px solid var(--line); text-decoration: none; color: var(--petrol); font: 600 .92rem/1.3 var(--heading); transition: color .25s; }
.aside-list li:last-child a { border-bottom: 0; }
.aside-list a:hover { color: var(--accent); }
.mini-ico { flex: none; width: 34px; height: 34px; border-radius: 50%; display: grid; place-items: center; background: var(--teal-pale); color: var(--petrol-2); }
.mini-ico svg { width: 17px; height: 17px; fill: none; stroke: currentColor; stroke-width: 1.8; stroke-linecap: round; stroke-linejoin: round; }

@media (max-width: 960px) {
  .offer-grid, .detail-grid { grid-template-columns: 1fr; }
  .detail-aside { position: static; }
}
@media (max-width: 640px) {
  .inc-list, .steps { grid-template-columns: 1fr; }
  .detail-intro { flex-direction: column; gap: 16px; }
  .cta-actions, .cta-actions .btn { width: 100%; }
}

/* Link + banner from the corporate site to the classes site */
.nav .nav-classes {
  padding: 8px 14px; border-radius: 999px; background: #fff4df; color: #9a5b00; border: 1px solid #ffd99a;
}
.nav .nav-classes::after { display: none; }
.nav .nav-classes:hover { background: #ffc857; color: var(--petrol); }
.btn-sun { background: #ffc857; color: var(--petrol); box-shadow: 0 8px 20px rgb(255 200 87 / .35); }
.btn-sun:hover { background: #ffb82e; }
.classes-banner { padding: 0 0 clamp(64px, 8vw, 100px); background: var(--bg-soft); }
.classes-banner-inner {
  position: relative; overflow: hidden; display: flex; align-items: center; justify-content: space-between; gap: 28px; flex-wrap: wrap;
  background: linear-gradient(115deg, var(--teal-soft) 0%, #4f8f98 100%); color: #fff;
  border-radius: 16px; padding: clamp(28px, 4vw, 44px) clamp(24px, 4vw, 52px);
}
.classes-banner-inner::after {
  content: ""; position: absolute; right: -60px; top: -60px; width: 220px; height: 220px; border-radius: 50%;
  background: rgb(255 200 87 / .25); pointer-events: none;
}
.cb-copy { position: relative; max-width: 640px; }
.classes-banner h2 { color: #fff; font-size: clamp(1.4rem, 2.6vw, 1.9rem); margin-bottom: .3em; }
.classes-banner p { margin: 0; color: rgb(255 255 255 / .9); }
.classes-banner .kicker { color: #ffe3a6; margin-bottom: 10px; }
.classes-banner .btn { position: relative; }
@media (max-width: 960px) {
  .nav .nav-classes { margin-top: 12px; text-align: center; border-bottom: 1px solid #ffd99a; }
}

/* Responsive */
.nav a { white-space: nowrap; }
@media (max-width: 1180px) {
  .nav { gap: 16px; }
  .header-actions .hide-sm { display: none; }
}
@media (max-width: 1080px) {
  .nav { gap: 16px; }
  .ind-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 960px) {
  :root { --header-h: 68px; }
  .menu-toggle { display: block; }
  .nav {
    position: fixed; top: var(--header-h); left: 0; right: 0; flex-direction: column; gap: 0;
    background: #fff; padding: 6px 20px 20px; box-shadow: 0 16px 30px rgb(0 0 0 / .1);
    transform: translateY(-8px); opacity: 0; visibility: hidden; transition: opacity .25s, transform .25s, visibility .25s;
  }
  .open .nav { opacity: 1; transform: none; visibility: visible; }
  .nav a { padding: 16px 0; border-bottom: 1px solid var(--line); }
  .nav a::after { display: none; }
  .hide-sm { display: none; }
  .simplify-grid, .story-grid, .contact-grid { grid-template-columns: 1fr; }
  .story-img { margin: 14px 0 0 14px; }
  .values { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 640px) {
  .wrap { width: calc(100% - 32px); }
  .brand img { width: 38px; height: 38px; }
  .wordmark { font-size: 1.4rem; }
  .header-actions { gap: 8px; }
  .hero { min-height: auto; padding-bottom: 96px; }
  .hero-cta .btn { width: 100%; }
  .section-title h2 { gap: 12px; }
  .section-title h2::before, .section-title h2::after { width: 24px; }
  .svc-grid, .values, .field-row { grid-template-columns: 1fr; }
  .svc { flex-direction: column; gap: 16px; padding: 24px; }
  .stats { grid-template-columns: 1fr; gap: 28px; }
  .stat + .stat { border-left: 0; border-top: 1px solid rgb(255 255 255 / .2); padding-top: 28px; }
  .stats-bg { background-attachment: scroll; }
  .ind-grid { gap: 14px; }
  .ind-grid li { padding: 24px 12px 20px; }
  .logos li { width: 42%; height: 100px; }
  .map { height: 280px; }
  .footer-grid > div:first-child { grid-column: 1 / -1; }
}
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { transition: none !important; animation: none !important; }
}
