:root {
  --ink: #0e1b33;
  --ink-2: #13254a;
  --blue: #1f5eff;
  --blue-d: #1548c9;
  --tape: #ffd23f;
  --white: #ffffff;
  --soft: #f3f5f9;
  --line: #e1e6ef;
  --text: #2a3346;
  --muted: #667085;
  --font: "Plus Jakarta Sans", "Segoe UI", Arial, sans-serif;
  --wrap: 1200px;
  --gut: clamp(20px, 4vw, 40px);
  --r: 18px;
  --shadow: 0 20px 50px rgba(14, 27, 51, .12);
}
* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
@media (prefers-reduced-motion: reduce) { html { scroll-behavior: auto; } * { transition: none !important; } }
body { margin: 0; font-family: var(--font); font-size: 17px; line-height: 1.6; color: var(--text); background: var(--white); }
h1, h2, h3 { color: var(--ink); margin: 0 0 .5em; line-height: 1.1; letter-spacing: -.025em; font-weight: 800; }
h1 { font-size: clamp(38px, 5.4vw, 64px); max-width: 18ch; letter-spacing: -.035em; }
h2 { font-size: clamp(30px, 3.6vw, 46px); max-width: 24ch; }
h3 { font-size: 20px; font-weight: 700; letter-spacing: -.015em; }
p { margin: 0 0 1em; max-width: 64ch; }
a { color: inherit; }
ul, ol { margin: 0; padding: 0; list-style: none; }
img { display: block; max-width: 100%; }
:focus-visible { outline: 3px solid var(--tape); outline-offset: 3px; border-radius: 8px; }
.wrap { max-width: var(--wrap); margin: 0 auto; padding-left: var(--gut); padding-right: var(--gut); }
.hide { position: absolute; left: -9999px; }
.kicker { font-weight: 700; font-size: 14px; color: var(--blue); margin-bottom: 12px; display: flex; align-items: center; gap: 10px; }
.kicker::before { content: ""; width: 22px; height: 4px; background: var(--tape); border-radius: 2px; }
.kicker-w { color: var(--tape); }
.lead { font-size: 19px; color: var(--muted); max-width: 62ch; }
.lead-w { color: #c7d0e0; }
.h-w { color: var(--white); }
.sec { padding: 96px 0; }
.sec-soft { background: var(--soft); }
.sec-ink { background: var(--ink); color: #c7d0e0; }
.sec-ink h3 { color: var(--white); }
@media (max-width: 800px) { .sec { padding: 64px 0; } }

/* buttons */
.btn { display: inline-flex; align-items: center; justify-content: center; padding: 14px 22px; border-radius: 12px; font-weight: 700; font-size: 15px; text-decoration: none; border: 2px solid transparent; cursor: pointer; white-space: nowrap; line-height: 1.2; font-family: inherit; transition: background .15s, color .15s, transform .15s; }
.btn:hover { transform: translateY(-1px); }
.btn-blue { background: var(--blue); color: var(--white); }
.btn-blue:hover { background: var(--blue-d); }
.btn-ink { background: var(--ink); color: var(--white); }
.btn-ink:hover { background: var(--blue); }
.btn-ghost { border-color: rgba(255,255,255,.5); color: var(--white); }
.btn-ghost:hover { background: rgba(255,255,255,.12); }
.btns { display: flex; gap: 12px; flex-wrap: wrap; }
.link { font-weight: 700; font-size: 15px; text-decoration: none; color: var(--blue); border-bottom: 2px solid var(--tape); padding-bottom: 2px; display: inline-block; }

/* header */
.top { position: sticky; top: 0; z-index: 30; background: rgba(255,255,255,.92); backdrop-filter: blur(12px); border-bottom: 1px solid var(--line); }
.top-in { display: flex; align-items: center; justify-content: space-between; height: 72px; }
.brand { display: inline-flex; align-items: center; gap: 10px; font-weight: 800; font-size: 24px; letter-spacing: -.03em; text-decoration: none; color: var(--ink); }
.mark { display: grid; grid-template-columns: 1fr 1fr; gap: 3px; width: 26px; height: 26px; }
.mark i { background: var(--ink); border-radius: 3px; }
.mark i:nth-child(2) { background: var(--tape); }
.mark i:nth-child(3) { background: var(--blue); }
.brand-w, .brand-w .mark i { color: var(--white); }
.brand-w .mark i:nth-child(1), .brand-w .mark i:nth-child(4) { background: var(--white); }
.nav { display: flex; align-items: center; gap: 24px; font-weight: 600; font-size: 15px; }
.nav > a:not(.btn) { text-decoration: none; padding: 6px 0; border-bottom: 3px solid transparent; }
.nav > a:not(.btn):hover { border-bottom-color: var(--tape); }
.menu { position: relative; }
.menu summary { cursor: pointer; list-style: none; padding: 6px 0; }
.menu summary::-webkit-details-marker { display: none; }
.menu summary::after { content: ""; display: inline-block; width: 6px; height: 6px; border-right: 2px solid var(--blue); border-bottom: 2px solid var(--blue); transform: rotate(45deg); margin-left: 8px; position: relative; top: -3px; }
.menu-panel { position: absolute; top: 42px; right: 0; width: 320px; background: var(--white); border-radius: 16px; padding: 8px; display: grid; box-shadow: var(--shadow); border: 1px solid var(--line); }
.menu-panel a { display: grid; padding: 10px 14px; border-radius: 10px; text-decoration: none; font-weight: 700; }
.menu-panel a small { font-weight: 500; color: var(--muted); font-size: 13px; }
.menu-panel a:hover { background: var(--soft); }
.menu-panel a[aria-current] { background: var(--ink); color: var(--white); }
.menu-panel a[aria-current] small { color: #c7d0e0; }
@media (max-width: 900px) { .nav { gap: 14px; } .nav > a:not(.btn) { display: none; } .menu-panel { width: 260px; } }

/* hero */
.hero { position: relative; background: var(--ink); color: var(--white); overflow: hidden; padding: 110px 0 0; }
.hero-sm { padding: 96px 0 96px; }
.hero-bg { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; opacity: .55; }
.hero::before { content: ""; position: absolute; inset: 0; background: linear-gradient(90deg, rgba(14,27,51,.92) 0%, rgba(14,27,51,.7) 55%, rgba(14,27,51,.35) 100%); }
.hero-in { position: relative; }
.hero-in > .kicker, .hero-in > h1, .hero-in > .hero-sub, .hero-in > .ask, .hero-in > .btns, .hero-in > .crumb { max-width: 780px; }
.hero h1 { color: var(--white); }
.hero-sub { font-size: 19px; color: #d7deea; max-width: 60ch; margin-bottom: 28px; }
.crumb { font-size: 14px; color: var(--tape); margin-bottom: 10px; }
.crumb a { text-decoration: none; }
.ask { display: flex; gap: 8px; background: var(--white); padding: 6px 6px 6px 18px; border-radius: 14px; width: min(600px, 100%); box-shadow: var(--shadow); }
.ask input { flex: 1; min-width: 0; border: 0; font: inherit; font-size: 16px; color: var(--ink); background: transparent; }
.ask input:focus { outline: none; }
.hero-links { display: flex; gap: 24px; margin: 18px 0 64px; font-weight: 600; font-size: 15px; }
.hero-links a { color: var(--white); text-decoration: none; border-bottom: 2px solid var(--tape); padding-bottom: 2px; }
.facts { position: relative; display: grid; grid-template-columns: repeat(4, 1fr); background: var(--white); color: var(--ink); border-radius: var(--r) var(--r) 0 0; padding: 26px 28px; gap: 24px; }
.facts li { display: grid; gap: 2px; }
.facts b { font-size: 34px; font-weight: 800; letter-spacing: -.03em; line-height: 1; }
.facts span { font-size: 14px; color: var(--muted); }
@media (max-width: 860px) { .hero { padding-top: 64px; } .facts { grid-template-columns: 1fr 1fr; } .hero-links { margin-bottom: 40px; } }
@media (max-width: 480px) { .facts { grid-template-columns: 1fr; } }

/* logos */
.logos { padding: 36px 0; border-bottom: 1px solid var(--line); }
.logos p { font-size: 14px; color: var(--muted); }
.logo-row { display: grid; grid-template-columns: repeat(6, 1fr); gap: 12px; }
.logo-row span { height: 56px; display: grid; place-items: center; border: 1px dashed var(--line); border-radius: 10px; font-size: 13px; color: var(--muted); }
@media (max-width: 800px) { .logo-row { grid-template-columns: repeat(3, 1fr); } }

/* about */
.about { display: grid; grid-template-columns: 1fr 1fr; gap: 56px; align-items: center; }
.about-grid { display: grid; grid-template-columns: 1fr 1fr; grid-template-rows: 1fr 1fr; gap: 14px; height: 520px; }
.about-grid img { width: 100%; height: 100%; object-fit: cover; border-radius: var(--r); }
.about-grid img:first-child { grid-row: span 2; }
@media (max-width: 860px) { .about { grid-template-columns: 1fr; } .about-grid { height: 360px; } }

/* show floor */
.floor { display: grid; grid-template-columns: 1.3fr .7fr; gap: 28px; margin-top: 36px; align-items: start; }
.plan { background: #182c55; border: 2px solid rgba(255,255,255,.18); border-radius: var(--r); padding: 14px; }
.plan-top { display: flex; justify-content: space-between; font-size: 13px; font-weight: 700; color: #9fb0cf; padding: 4px 6px 12px; border-bottom: 2px dashed rgba(255,255,255,.18); margin-bottom: 12px; }
.plan-grid { display: grid; grid-template-columns: repeat(6, minmax(0, 1fr)); grid-auto-rows: 84px; gap: 10px;
  grid-template-areas: "ent ent reg reg med med" "a a a b b b" "a a a b b b" "cre cre stg stg caf caf"; }
.stand { border: 0; border-radius: 12px; background: rgba(255,255,255,.1); color: var(--white); font: inherit; font-weight: 700; font-size: 15px; cursor: pointer; text-align: left; padding: 12px; display: flex; align-items: flex-end; position: relative; transition: background .15s, transform .15s; outline-offset: 2px; }
.stand::before { content: ""; position: absolute; top: 10px; left: 12px; width: 10px; height: 10px; border-radius: 50%; background: rgba(255,255,255,.35); }
.stand:hover { background: rgba(255,255,255,.2); }
.stand.on { background: var(--tape); color: var(--ink); transform: translateY(-2px); }
.stand.on::before { background: var(--ink); }
.s-ent { grid-area: ent; } .s-reg { grid-area: reg; } .s-med { grid-area: med; } .s-a { grid-area: a; } .s-b { grid-area: b; } .s-cre { grid-area: cre; } .s-stg { grid-area: stg; } .s-caf { grid-area: caf; }
.floor-panel { background: var(--white); color: var(--text); border-radius: var(--r); padding: 28px; min-height: 300px; display: flex; flex-direction: column; box-shadow: var(--shadow); }
.floor-label { font-size: 13px; font-weight: 700; color: var(--blue); margin-bottom: 8px; }
.floor-panel h3 { font-size: 24px; color: var(--ink); }
.floor-panel p:last-of-type { flex: 1; }
.floor-panel .btn { align-self: flex-start; }
@media (max-width: 860px) { .floor { grid-template-columns: 1fr; } .plan-grid { grid-auto-rows: 70px; } .stand { font-size: 13px; padding: 10px; } }

/* pillars */
.pillars { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; margin-top: 36px; }
.pillar { background: var(--white); border-radius: var(--r); overflow: hidden; border: 1px solid var(--line); }
.pillar-img { position: relative; height: 200px; }
.pillar-img img { width: 100%; height: 100%; object-fit: cover; }
.pillar-tag { position: absolute; left: 14px; bottom: 14px; background: var(--tape); color: var(--ink); font-size: 12px; font-weight: 700; padding: 6px 10px; border-radius: 8px; }
.pillar h3 { font-size: 24px; padding: 22px 22px 0; }
.pillar ul { padding: 8px 22px 22px; }
.pillar li { padding: 12px 0; border-top: 1px solid var(--line); display: grid; gap: 4px; }
.pillar strong { color: var(--ink); font-size: 15px; }
.pillar span { font-size: 14px; color: var(--muted); }
@media (max-width: 900px) { .pillars { grid-template-columns: 1fr; } }

/* stages */
.stages { display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px; margin-top: 36px; }
.stages li { background: var(--soft); border-radius: var(--r); overflow: hidden; }
.stages img { width: 100%; height: 150px; object-fit: cover; }
.stages .when { display: block; font-size: 12px; font-weight: 700; color: var(--blue); padding: 16px 18px 0; }
.stages h3 { padding: 4px 18px 0; font-size: 21px; }
.stages p { padding: 0 18px 18px; margin: 0; font-size: 15px; color: var(--muted); }
@media (max-width: 900px) { .stages { grid-template-columns: 1fr 1fr; } }
@media (max-width: 520px) { .stages { grid-template-columns: 1fr; } }

/* events */
.events { display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px; margin-top: 36px; }
.events li { background: var(--white); border-radius: var(--r); overflow: hidden; border: 1px solid var(--line); }
.events img { width: 100%; height: 160px; object-fit: cover; }
.events div { padding: 16px 18px 18px; }
.events h3 { font-size: 18px; margin-bottom: 6px; }
.events p { margin: 0; font-size: 14px; color: var(--muted); }
@media (max-width: 900px) { .events { grid-template-columns: 1fr 1fr; } }
@media (max-width: 520px) { .events { grid-template-columns: 1fr; } }

/* cases */
.cases { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; margin-top: 36px; }
.case { border-radius: var(--r); overflow: hidden; background: var(--white); border: 1px solid var(--line); display: flex; flex-direction: column; }
.case img { width: 100%; height: 220px; object-fit: cover; }
.case-body { padding: 20px 22px 22px; display: flex; flex-direction: column; flex: 1; }
.case-city { font-size: 13px; font-weight: 700; color: var(--blue); margin-bottom: 6px; }
.case-body p { font-size: 15px; color: var(--muted); }
.case-body .link { margin-top: auto; }
@media (max-width: 860px) { .cases { grid-template-columns: 1fr; } }

/* countries */
.ctry-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; margin-top: 36px; }
.ctry { position: relative; display: block; border-radius: var(--r); overflow: hidden; text-decoration: none; height: 240px; background: var(--ink); }
.ctry img { width: 100%; height: 100%; object-fit: cover; opacity: .85; transition: transform .3s, opacity .3s; }
.ctry:hover img { transform: scale(1.04); opacity: 1; }
.ctry-body { position: absolute; left: 0; right: 0; bottom: 0; padding: 60px 20px 18px; background: linear-gradient(180deg, transparent, rgba(14,27,51,.92)); color: var(--white); display: grid; }
.ctry-name { font-size: 28px; font-weight: 800; letter-spacing: -.03em; }
.ctry-city { font-size: 14px; color: #d7deea; }
@media (max-width: 800px) { .ctry-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 480px) { .ctry-grid { grid-template-columns: 1fr; } }

/* split */
.split { display: grid; grid-template-columns: .9fr 1.1fr; gap: 64px; align-items: start; }
.split-head p { color: var(--muted); }
.split-photo { width: 100%; height: 240px; object-fit: cover; border-radius: var(--r); margin-top: 20px; }
.ticks li { padding: 12px 0 12px 30px; position: relative; border-top: 1px solid var(--line); font-size: 15px; }
.ticks li::before { content: ""; position: absolute; left: 0; top: 18px; width: 16px; height: 16px; border-radius: 50%; background: var(--tape); }
.ticks strong { color: var(--ink); }
@media (max-width: 860px) { .split { grid-template-columns: 1fr; gap: 32px; } }

/* billboard */
.board-wrap { position: relative; }
.board-photo { width: 100%; height: 520px; object-fit: cover; border-radius: var(--r); }
.board { position: absolute; left: 8%; right: 8%; top: 18%; background: var(--ink); color: var(--white); border-radius: 12px; padding: 22px 26px; box-shadow: 0 30px 60px rgba(0,0,0,.4); border: 4px solid var(--white); }
.board span { font-size: 12px; color: #9fb0cf; }
.board p { margin: 4px 0 0; font-size: clamp(24px, 3vw, 36px); font-weight: 800; letter-spacing: -.03em; line-height: 1.1; }
.board b { color: var(--tape); }
@media (max-width: 860px) { .board-photo { height: 340px; } }

/* steps */
.steps { display: grid; gap: 12px; }
.steps li { display: grid; grid-template-columns: 44px 1fr; gap: 16px; background: var(--white); border: 1px solid var(--line); border-radius: 14px; padding: 18px; }
.steps b { width: 44px; height: 44px; border-radius: 12px; background: var(--tape); color: var(--ink); display: grid; place-items: center; font-weight: 800; }
.steps h3 { font-size: 18px; margin-bottom: 4px; }
.steps p { margin: 0; font-size: 15px; color: var(--muted); }

/* quotes */
.quotes { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; margin-top: 36px; }
.quotes blockquote { margin: 0; background: var(--soft); border-radius: var(--r); padding: 26px; border-top: 4px solid var(--tape); }
.quotes p { font-size: 16px; }
.quotes footer { display: flex; align-items: center; gap: 12px; font-size: 14px; color: var(--muted); }
.avatar { width: 40px; height: 40px; border-radius: 50%; background: linear-gradient(135deg, var(--blue), var(--tape)); flex: 0 0 auto; }
.quotes strong { color: var(--ink); }
@media (max-width: 860px) { .quotes { grid-template-columns: 1fr; } }

/* posts */
.posts { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; margin-top: 36px; }
.post { background: var(--white); border-radius: var(--r); overflow: hidden; border: 1px solid var(--line); padding-bottom: 20px; }
.post img { width: 100%; height: 170px; object-fit: cover; }
.post-cat { font-size: 13px; font-weight: 700; color: var(--blue); padding: 16px 20px 0; margin-bottom: 6px; }
.post h3 { padding: 0 20px; font-size: 18px; }
.post .link { margin-left: 20px; }
@media (max-width: 860px) { .posts { grid-template-columns: 1fr; } }

/* faq */
.faq-list { display: grid; gap: 10px; }
.faq { background: var(--soft); border-radius: 14px; padding: 0 22px; }
.faq summary { list-style: none; cursor: pointer; display: flex; justify-content: space-between; align-items: center; gap: 16px; padding: 18px 0; }
.faq summary::-webkit-details-marker { display: none; }
.faq h3 { margin: 0; font-size: 17px; }
.faq summary i { position: relative; flex: 0 0 auto; width: 28px; height: 28px; border-radius: 50%; background: var(--ink); }
.faq summary i::before, .faq summary i::after { content: ""; position: absolute; left: 8px; top: 13px; width: 12px; height: 2px; background: var(--white); }
.faq summary i::after { transform: rotate(90deg); transition: transform .15s; }
.faq[open] summary i::after { transform: rotate(0); }
.faq p { margin: 0; padding-bottom: 20px; color: var(--muted); }

/* venues, svc-list, four, strip, chips */
.venues { display: grid; gap: 10px; }
.venues li { background: var(--soft); border-radius: 14px; padding: 16px 20px; border-left: 5px solid var(--tape); }
.venues h3 { font-size: 17px; margin: 0 0 2px; }
.venues p { margin: 0; font-size: 14px; color: var(--muted); }
.svc-list { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; margin-top: 36px; }
.svc-list li { background: var(--white); border: 1px solid var(--line); border-radius: var(--r); padding: 22px; }
.svc-list h3 { font-size: 18px; margin-bottom: 6px; }
.svc-list p { margin: 0; font-size: 15px; color: var(--muted); }
@media (max-width: 900px) { .svc-list { grid-template-columns: 1fr 1fr; } }
@media (max-width: 560px) { .svc-list { grid-template-columns: 1fr; } }
.four { display: grid; grid-template-columns: repeat(2, 1fr); gap: 28px 48px; margin-top: 24px; }
.four h3 { margin-bottom: 6px; }
.four p { margin: 0; font-size: 15px; }
@media (max-width: 700px) { .four { grid-template-columns: 1fr; } }
.strip { display: grid; grid-template-columns: repeat(4, 1fr); gap: 12px; margin-top: 40px; }
.strip img { width: 100%; height: 160px; object-fit: cover; border-radius: 12px; }
@media (max-width: 700px) { .strip { grid-template-columns: 1fr 1fr; } }
.chips { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 12px; }
.chip { text-decoration: none; background: var(--white); border: 1px solid var(--line); border-radius: 12px; padding: 10px 16px; font-weight: 700; font-size: 15px; }
.chip:hover { background: var(--ink); color: var(--white); }

/* contact */
.contact { position: relative; background: var(--ink); color: #d7deea; padding: 104px 0; overflow: hidden; }
.contact-bg { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; opacity: .18; }
.contact-in { position: relative; display: grid; grid-template-columns: .9fr 1.1fr; gap: 56px; align-items: start; }
.contact-copy h2 { color: var(--white); }
.contact-copy a { color: var(--tape); font-weight: 700; }
.form { display: grid; gap: 14px; background: var(--white); color: var(--ink); border-radius: var(--r); padding: 28px; box-shadow: var(--shadow); }
.row { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.form label { display: grid; gap: 6px; font-size: 13px; font-weight: 700; }
.form input, .form select, .form textarea { font: inherit; font-size: 16px; padding: 12px 14px; border: 1.5px solid var(--line); border-radius: 10px; background: var(--soft); color: var(--ink); width: 100%; }
.form input:focus, .form select:focus, .form textarea:focus { outline: none; border-color: var(--blue); background: var(--white); }
.form button { justify-self: start; border: 0; }
@media (max-width: 860px) { .contact-in { grid-template-columns: 1fr; } .row { grid-template-columns: 1fr; } }

/* footer */
.foot { background: var(--ink-2); color: #c7d0e0; padding: 56px 0 28px; }
.foot-grid { display: grid; grid-template-columns: 1.6fr 1fr 1fr 1fr; gap: 40px; }
.foot-tag { font-size: 14px; max-width: 44ch; margin-top: 12px; }
.foot-tag a { color: var(--tape); }
.foot h2 { color: var(--white); font-size: 15px; margin-bottom: 10px; }
.foot li { font-size: 14px; padding: 4px 0; }
.foot a { text-decoration: none; }
.foot li a:hover { color: var(--white); }
.foot-base { display: flex; justify-content: space-between; flex-wrap: wrap; gap: 12px; margin-top: 40px; padding-top: 20px; border-top: 1px solid rgba(255,255,255,.1); font-size: 13px; }
@media (max-width: 860px) { .foot-grid { grid-template-columns: 1fr 1fr; gap: 28px; } }
@media (max-width: 520px) { .foot-grid { grid-template-columns: 1fr; } }

/* mobile tidy */
@media (max-width: 640px) {
  .btn { padding: 12px 16px; font-size: 14px; }
  .ask { padding-left: 14px; }
  .hero-links { flex-direction: column; gap: 10px; }
}

/* service pages */
.menu-wide { width: 360px; max-height: 70vh; overflow: auto; }
.menu-all { border-top: 1px solid var(--line); margin-top: 6px; color: var(--blue); }
.center { text-align: center; margin-top: 32px; }
.three { display: grid; grid-template-columns: repeat(3, 1fr); gap: 40px; }
.h-sm { font-size: 24px; }
.mini-stages { display: grid; gap: 8px; }
.mini-stages li { background: var(--white); border: 1px solid var(--line); border-radius: 12px; padding: 12px 14px; }
.mini-stages .when { font-size: 12px; font-weight: 700; color: var(--blue); }
.mini-stages h3 { font-size: 16px; margin: 0; }
.markets { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; margin-top: 32px; }
.markets li { background: var(--soft); border-radius: var(--r); padding: 22px; display: flex; flex-direction: column; }
.markets h3 { font-size: 19px; }
.markets h3 a { text-decoration: none; }
.markets p { font-size: 15px; color: var(--muted); flex: 1; }
.svc-cards { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; margin-top: 36px; }
.svc-card { display: block; text-decoration: none; background: var(--white); border: 1px solid var(--line); border-radius: var(--r); overflow: hidden; }
.svc-card img { width: 100%; height: 180px; object-fit: cover; }
.svc-card div { padding: 18px 20px 22px; }
.svc-card h3 { font-size: 20px; margin-bottom: 6px; }
.svc-card p { font-size: 14px; color: var(--muted); }
.svc-card:hover { border-color: var(--blue); }
.svc-list h3 a { text-decoration: none; }
.svc-list h3 a:hover { color: var(--blue); }
.svc-list .link { margin-top: 10px; }
.pillar li a { text-decoration: none; }
.pillar li a:hover strong { color: var(--blue); }
.ticks li a { text-decoration: none; font-weight: 600; color: var(--ink); }
@media (max-width: 900px) { .three, .markets, .svc-cards { grid-template-columns: 1fr; } }

/* WordPress additions */
.form-ok { background: #e8f7ee; color: #14532d; border-radius: 10px; padding: 12px 14px; font-weight: 600; }
.form .wpcf7, .form .wpforms-container { margin: 0; }
.menu-panel a.menu-all { color: var(--blue); }
.wp-menu { display: flex; gap: 24px; }
.page-content { max-width: 760px; }
.page-content-w { color: #d7deea; margin-top: 32px; }
.page-content-w h2, .page-content-w h3 { color: var(--white); }
