:root {
  --ink: #06111f;
  --ink-2: #0c1f36;
  --ink-3: #18324f;
  --text: #1f2d3d;
  --muted: #667489;
  --muted-2: #8794a8;
  --line: rgba(10, 28, 48, .12);
  --paper: #ffffff;
  --soft: #f5f7fb;
  --soft-2: #eef3f9;
  --warm: #fff7eb;
  --gold: #f2b84b;
  --gold-2: #d99b25;
  --red: #d8422c;
  --red-2: #a7261c;
  --green: #0c7a5a;
  --blue: #0b4a76;
  --shadow: 0 30px 90px rgba(6, 17, 31, .16);
  --shadow-soft: 0 16px 44px rgba(6, 17, 31, .09);
  --radius-xl: 34px;
  --radius-lg: 24px;
  --radius-md: 16px;
  --max: 1200px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Arial, sans-serif;
  color: var(--text);
  background:
    radial-gradient(circle at 8% 6%, rgba(216,66,44,.08), transparent 26%),
    radial-gradient(circle at 95% 12%, rgba(242,184,75,.10), transparent 28%),
    var(--soft);
  line-height: 1.6;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button, input, select, textarea { font: inherit; }
button { cursor: pointer; }
.container { width: min(var(--max), calc(100% - 42px)); margin: 0 auto; }
.skip-link { position: absolute; left: -999px; top: 12px; background: #fff; color: var(--ink); z-index: 9999; padding: 12px 16px; border-radius: 999px; box-shadow: var(--shadow-soft); }
.skip-link:focus { left: 12px; }

.signal-bar { background: linear-gradient(90deg, #06111f, #112a46); color: #fff; font-size: 12px; letter-spacing: .08em; text-transform: uppercase; }
.signal-inner { min-height: 36px; display: flex; align-items: center; justify-content: center; gap: 28px; }
.signal-inner span { color: rgba(255,255,255,.80); position: relative; font-weight: 800; }
.signal-inner span + span:before { content: ""; position: absolute; left: -16px; top: 50%; transform: translateY(-50%); width: 5px; height: 5px; border-radius: 999px; background: var(--gold); }
.signal-inner a { color: #fff; font-weight: 900; }
.site-header { position: sticky; top: 0; z-index: 100; background: rgba(255,255,255,.86); backdrop-filter: blur(18px); border-bottom: 1px solid rgba(10,28,48,.08); }
.nav { height: 82px; display: flex; align-items: center; justify-content: space-between; gap: 24px; }
.brand { display: flex; align-items: center; gap: 14px; min-width: 260px; }
.brand img { width: 60px; height: 60px; object-fit: contain; background: #fff; border-radius: 18px; box-shadow: var(--shadow-soft); }
.brand-text { display: grid; line-height: 1.05; }
.brand-text strong { color: var(--ink); font-size: 17px; letter-spacing: -.035em; }
.brand-text small { color: var(--muted); font-weight: 900; font-size: 11px; text-transform: uppercase; letter-spacing: .18em; }
.nav-links { display: flex; align-items: center; gap: 5px; }
.nav-links a { border: 0; background: transparent; color: var(--ink-2); padding: 10px 12px; border-radius: 999px; font-size: 14px; font-weight: 800; }
.nav-links a:hover { background: rgba(12,31,54,.08); }
.nav-quote { background: var(--warm) !important; color: var(--red-2) !important; }
.nav-toggle { display: none; width: 46px; height: 46px; border-radius: 15px; border: 1px solid var(--line); background: #fff; align-items: center; justify-content: center; flex-direction: column; gap: 5px; }
.nav-toggle span { display: block; width: 20px; height: 2px; border-radius: 999px; background: var(--ink); }

.section { padding: 96px 0; position: relative; }
.hero { position: relative; overflow: hidden; background: linear-gradient(135deg, #06111f 0%, #0b2038 48%, #0f2239 100%); color: #fff; padding: 104px 0 116px; }
.hero-mesh { position: absolute; inset: 0; background:
    radial-gradient(circle at 16% 20%, rgba(216,66,44,.40), transparent 25%),
    radial-gradient(circle at 90% 18%, rgba(242,184,75,.26), transparent 24%),
    linear-gradient(120deg, transparent 0 56%, rgba(255,255,255,.05) 56% 57%, transparent 57% 100%);
  opacity: .95; }
.hero:after { content: ""; position: absolute; left: 0; right: 0; bottom: -1px; height: 90px; background: linear-gradient(180deg, transparent, var(--soft)); }
.hero-grid { display: grid; grid-template-columns: minmax(0, 1.06fr) minmax(340px, .56fr); gap: 58px; align-items: center; position: relative; z-index: 1; }
.eyebrow { margin: 0 0 14px; color: var(--red); text-transform: uppercase; letter-spacing: .17em; font-weight: 950; font-size: 12px; }
.hero .eyebrow, .section-dark .eyebrow { color: var(--gold); }
h1, h2, h3 { color: var(--ink); margin: 0; line-height: 1.04; letter-spacing: -.05em; }
.hero h1, .section-dark h2, .section-dark h3, .section-dark strong { color: #fff; }
h1 { font-size: clamp(48px, 7.4vw, 88px); max-width: 900px; }
h2 { font-size: clamp(34px, 4.6vw, 58px); }
h3 { font-size: 22px; letter-spacing: -.035em; }
p { margin: 0; color: var(--muted); }
.hero p, .section-dark p { color: rgba(255,255,255,.74); }
.hero-lede { font-size: clamp(18px, 2vw, 22px); max-width: 720px; margin: 25px 0 34px; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 14px; align-items: center; }
.btn { min-height: 54px; padding: 14px 22px; display: inline-flex; align-items: center; justify-content: center; border-radius: 999px; border: 1px solid transparent; font-weight: 950; transition: transform .18s ease, box-shadow .18s ease, background .18s ease; }
.btn:hover { transform: translateY(-2px); }
.btn-primary { background: linear-gradient(135deg, var(--red), var(--red-2)); color: #fff; box-shadow: 0 20px 44px rgba(216,66,44,.32); }
.btn-ghost { background: rgba(255,255,255,.10); color: #fff; border-color: rgba(255,255,255,.22); }
.btn-wide { width: 100%; }
.proof-strip { display: grid; grid-template-columns: repeat(4, minmax(0,1fr)); gap: 12px; margin-top: 44px; }
.proof-strip div { border: 1px solid rgba(255,255,255,.14); background: rgba(255,255,255,.075); border-radius: 20px; padding: 16px; backdrop-filter: blur(12px); }
.proof-strip strong { color: #fff; font-size: 19px; display: block; }
.proof-strip span { display: block; color: rgba(255,255,255,.64); font-size: 12px; font-weight: 800; text-transform: uppercase; letter-spacing: .08em; margin-top: 3px; }
.hero-suite { background: rgba(255,255,255,.96); color: var(--ink); border: 1px solid rgba(255,255,255,.45); box-shadow: var(--shadow); border-radius: var(--radius-xl); padding: 30px; position: relative; overflow: hidden; }
.hero-suite:before { content: ""; position: absolute; inset: 0 0 auto; height: 5px; background: linear-gradient(90deg, var(--red), var(--gold)); }
.suite-header { display: flex; gap: 18px; align-items: center; }
.suite-header img { width: 88px; height: 88px; object-fit: contain; }
.suite-kicker { color: var(--red-2); text-transform: uppercase; letter-spacing: .12em; font-size: 12px; font-weight: 950; margin-bottom: 5px; }
.suite-header h2 { font-size: 29px; }
.suite-header span { color: var(--muted); display: block; margin-top: 8px; }
.suite-price { margin: 28px 0 20px; background: linear-gradient(135deg, #06111f, #163252); color: #fff; border-radius: 24px; padding: 22px; display: flex; justify-content: space-between; align-items: end; gap: 18px; }
.suite-price span { color: rgba(255,255,255,.72); font-weight: 800; }
.suite-price strong { font-size: 44px; line-height: .9; color: var(--gold); letter-spacing: -.06em; }
.suite-checklist { display: grid; gap: 10px; }
.suite-checklist span { color: #405166; font-weight: 800; padding-left: 30px; position: relative; }
.suite-checklist span:before { content: "✓"; width: 20px; height: 20px; display: inline-flex; align-items: center; justify-content: center; position: absolute; left: 0; top: .1em; background: rgba(12,122,90,.10); color: var(--green); border-radius: 50%; font-size: 12px; }
.suite-link { display: block; margin-top: 22px; color: var(--red-2); font-weight: 950; }

.quick-convert { padding: 0; margin-top: -42px; z-index: 2; }
.convert-grid { display: grid; grid-template-columns: repeat(4,1fr); gap: 14px; position: relative; }
.convert-grid button { text-align: left; border: 1px solid rgba(10,28,48,.08); background: #fff; border-radius: 24px; padding: 20px; box-shadow: var(--shadow-soft); transition: transform .18s ease, box-shadow .18s ease; }
.convert-grid button:hover { transform: translateY(-4px); box-shadow: var(--shadow); }
.convert-grid span { width: 34px; height: 34px; display: inline-flex; align-items: center; justify-content: center; background: var(--warm); color: var(--red-2); border-radius: 12px; font-weight: 950; margin-bottom: 14px; }
.convert-grid strong { display: block; color: var(--ink); font-size: 17px; line-height: 1.12; }
.convert-grid em { display: block; font-style: normal; color: var(--muted); font-size: 13px; margin-top: 6px; }

.section-head { max-width: 780px; margin-bottom: 42px; }
.section-head.centred { margin-left: auto; margin-right: auto; text-align: center; }
.section-head h2 + p { margin-top: 16px; font-size: 18px; }
.section-head.light h2 { color: #fff; }
.service-matrix { display: grid; grid-template-columns: repeat(3,1fr); gap: 18px; }
.service-tile, .sector-card, .package-card, .competence-panel, .credential-grid, .faq-list, .contact-form, .fra-card, .price-board, .timeline { background: #fff; border: 1px solid rgba(10,28,48,.09); border-radius: var(--radius-lg); box-shadow: var(--shadow-soft); }
.service-tile { padding: 28px; position: relative; overflow: hidden; display: flex; flex-direction: column; min-height: 390px; }
.service-tile:before { content: ""; position: absolute; left: 0; right: 0; top: 0; height: 4px; background: linear-gradient(90deg, var(--red), var(--gold)); opacity: 0; transition: opacity .18s ease; }
.service-tile:hover:before { opacity: 1; }
.tile-top { display: flex; justify-content: space-between; align-items: center; margin-bottom: 22px; gap: 12px; }
.tile-top span { width: 58px; height: 58px; border-radius: 18px; background: linear-gradient(135deg, var(--ink), var(--ink-3)); color: #fff; display: inline-flex; align-items: center; justify-content: center; font-weight: 950; letter-spacing: -.04em; }
.tile-top p { color: var(--red-2); font-weight: 950; }
.service-tile h3 { margin-bottom: 12px; }
.service-tile p { margin-bottom: 18px; }
ul { list-style: none; margin: 0; padding: 0; display: grid; gap: 10px; }
li { color: #46566b; position: relative; padding-left: 24px; }
li:before { content: ""; width: 8px; height: 8px; border-radius: 999px; background: var(--gold); position: absolute; left: 0; top: .62em; }
.service-tile a { margin-top: auto; color: var(--red-2); font-weight: 950; }

.section-dark { background: radial-gradient(circle at 14% 20%, rgba(216,66,44,.25), transparent 25%), linear-gradient(135deg, #06111f, #102845); color: #fff; overflow: hidden; }
.deliver-grid { display: grid; grid-template-columns: .74fr 1fr; gap: 44px; align-items: start; }
.deliver-list { display: grid; grid-template-columns: repeat(2, 1fr); gap: 14px; }
.deliver-list div { background: rgba(255,255,255,.07); border: 1px solid rgba(255,255,255,.12); border-radius: 22px; padding: 24px; }
.deliver-list strong { display: block; margin-bottom: 8px; font-size: 18px; }
.deliver-list span { color: rgba(255,255,255,.68); }

.fra-grid { display: grid; grid-template-columns: .78fr 1fr; gap: 42px; align-items: center; }
.highlight-note { margin-top: 20px; background: var(--warm); border-left: 4px solid var(--red); border-radius: 14px; padding: 16px 18px; color: #57350d; font-weight: 750; }
.fra-card { overflow: hidden; }
.fra-row { display: grid; grid-template-columns: 90px 1fr 104px; gap: 18px; padding: 18px 20px; align-items: center; border-bottom: 1px solid var(--line); }
.fra-row:last-child { border-bottom: 0; }
.fra-head { background: var(--ink); color: #fff; font-size: 12px; text-transform: uppercase; letter-spacing: .12em; font-weight: 950; }
.fra-row strong { color: var(--red-2); }
.fra-row span { color: #4b5d73; }
.fra-row em { font-style: normal; color: var(--green); font-weight: 950; }
.fra-row:nth-child(3) em, .fra-row:nth-child(5) em { color: var(--red-2); }

.sectors-section { background: linear-gradient(180deg, #fff, var(--soft)); }
.sector-grid { display: grid; grid-template-columns: repeat(4,1fr); gap: 16px; }
.sector-card { padding: 26px; min-height: 210px; }
.sector-card span { color: var(--red-2); font-weight: 950; text-transform: uppercase; letter-spacing: .12em; font-size: 11px; }
.sector-card h3 { margin: 14px 0 10px; }

.pricing-section { background: #fff; }
.price-board { overflow: hidden; }
.price-row { display: grid; grid-template-columns: minmax(200px, .8fr) 190px 1fr; gap: 18px; align-items: center; padding: 18px 22px; border-bottom: 1px solid var(--line); }
.price-row:last-child { border-bottom: 0; }
.price-row.featured { background: linear-gradient(90deg, rgba(6,17,31,.98), rgba(19,50,82,.98)); color: #fff; }
.price-row.featured span, .price-row.featured strong { color: #fff; }
.price-row.featured strong { color: var(--gold); }
.price-row span { color: var(--ink); font-weight: 950; }
.price-row strong { color: var(--red-2); font-size: 28px; line-height: 1; letter-spacing: -.04em; }
.price-row em { font-style: normal; color: var(--muted); }
.price-row.featured em { color: rgba(255,255,255,.70); }
.pricing-disclaimer { margin-top: 22px; border: 1px solid rgba(242,184,75,.48); background: #fff4df; border-radius: 20px; padding: 18px 22px; display: flex; gap: 12px; flex-wrap: wrap; justify-content: center; text-align: center; }
.pricing-disclaimer strong { color: var(--red-2); }
.pricing-disclaimer span { color: #69450b; }

.package-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 18px; }
.package-card { padding: 30px; min-height: 270px; display: flex; flex-direction: column; }
.package-label { color: var(--red-2); font-weight: 950; text-transform: uppercase; letter-spacing: .12em; font-size: 11px; }
.package-card h3 { margin: 14px 0 12px; font-size: 27px; }
.package-card a { margin-top: auto; font-weight: 950; color: var(--red-2); }
.hero-package { background: linear-gradient(135deg, var(--ink), var(--ink-3)); color: #fff; transform: translateY(-10px); }
.hero-package h3, .hero-package a { color: #fff; }
.hero-package .package-label { color: var(--gold); }
.hero-package p { color: rgba(255,255,255,.72); }

.competence-section { background: linear-gradient(180deg, var(--soft), #fff); }
.competence-grid { display: grid; grid-template-columns: .92fr 1.08fr; gap: 24px; align-items: stretch; }
.competence-panel { padding: 36px; }
.competence-panel p + .badge-line { margin-top: 26px; }
.badge-line { display: flex; gap: 18px; align-items: center; background: var(--soft); border: 1px solid var(--line); border-radius: 22px; padding: 18px; }
.badge-line img { width: 96px; min-width: 96px; }
.badge-line strong { display: block; color: var(--ink); }
.badge-line span { color: var(--muted); font-size: 14px; }
.credential-grid { padding: 12px; display: grid; grid-template-columns: repeat(2,1fr); gap: 10px; }
.credential-grid div { border-radius: 18px; background: #f7f9fc; padding: 20px; }
.credential-grid strong { color: var(--ink); display: block; margin-bottom: 6px; }
.credential-grid span { color: var(--muted); }

.process-section { background: #fff; }
.timeline { display: grid; grid-template-columns: repeat(4,1fr); overflow: hidden; }
.timeline div { padding: 28px; border-right: 1px solid var(--line); }
.timeline div:last-child { border-right: 0; }
.timeline span { width: 44px; height: 44px; border-radius: 15px; display: inline-flex; align-items: center; justify-content: center; background: var(--red); color: #fff; font-weight: 950; margin-bottom: 18px; }
.timeline strong { display: block; color: var(--ink); font-size: 18px; margin-bottom: 8px; }

.faq-section { background: var(--soft); }
.faq-grid { display: grid; grid-template-columns: .55fr 1fr; gap: 42px; align-items: start; }
.faq-list { padding: 8px; }
details { padding: 18px; border-bottom: 1px solid var(--line); }
details:last-child { border-bottom: 0; }
summary { color: var(--ink); cursor: pointer; font-weight: 950; }
details p { margin-top: 10px; }

.contact-section { background: radial-gradient(circle at 92% 8%, rgba(216,66,44,.12), transparent 26%), linear-gradient(180deg, #fff, var(--soft)); }
.contact-grid { display: grid; grid-template-columns: .8fr 1fr; gap: 40px; align-items: start; }
.contact-copy h2 { margin-bottom: 16px; }
.contact-cards { display: grid; grid-template-columns: repeat(2,1fr); gap: 12px; margin: 28px 0; }
.contact-cards a { background: #fff; border: 1px solid var(--line); border-radius: 20px; padding: 20px; box-shadow: var(--shadow-soft); }
.contact-cards span { display: block; color: var(--muted); font-weight: 800; }
.contact-cards strong { display: block; color: var(--red-2); margin-top: 4px; }
.qr-panel { display: flex; gap: 16px; align-items: center; background: var(--ink); color: #fff; border-radius: 22px; padding: 18px; max-width: 440px; }
.qr-panel img { width: 92px; background: #fff; border-radius: 14px; padding: 8px; }
.qr-panel strong { display: block; color: #fff; }
.qr-panel span { color: rgba(255,255,255,.72); }
.contact-form { padding: 30px; display: grid; gap: 16px; }
.form-grid { display: grid; grid-template-columns: repeat(2,1fr); gap: 14px; }
label { display: grid; gap: 7px; }
label span { color: var(--ink); font-size: 14px; font-weight: 950; }
input, select, textarea { width: 100%; border: 1px solid rgba(10,28,48,.16); background: #fff; color: var(--ink); border-radius: 15px; padding: 14px 15px; outline: none; }
input:focus, select:focus, textarea:focus { border-color: var(--red); box-shadow: 0 0 0 4px rgba(216,66,44,.10); }
textarea { resize: vertical; min-height: 150px; }
.form-note { text-align: center; font-size: 13px; }

.site-footer { background: #06111f; color: #fff; padding: 58px 0 30px; }
.footer-grid { display: grid; grid-template-columns: 1fr .55fr .55fr; gap: 34px; padding-bottom: 36px; border-bottom: 1px solid rgba(255,255,255,.10); }
.site-footer img { width: 88px; border-radius: 18px; background: #fff; margin-bottom: 14px; }
.site-footer p, .site-footer a { color: rgba(255,255,255,.68); }
.site-footer strong { display: block; margin-bottom: 12px; color: #fff; }
.site-footer a { display: block; margin: 8px 0; }
.footer-bottom { display: flex; justify-content: space-between; gap: 16px; padding-top: 24px; color: rgba(255,255,255,.55); font-size: 14px; }
.mobile-actions { display: none; }


.reveal { opacity: 0; transform: translateY(18px); transition: opacity .55s ease, transform .55s ease; }
.reveal.is-visible { opacity: 1; transform: none; }

@media (max-width: 1080px) {
  .hero-grid, .deliver-grid, .fra-grid, .competence-grid, .contact-grid, .faq-grid { grid-template-columns: 1fr; }
  .convert-grid, .sector-grid, .timeline { grid-template-columns: repeat(2,1fr); }
  .service-matrix, .package-grid { grid-template-columns: repeat(2,1fr); }
  .hero-suite { max-width: 650px; }
  .price-row { grid-template-columns: 1fr 180px; }
  .price-row em { grid-column: 1 / -1; }
}
@media (max-width: 860px) {
  .signal-bar { display: none; }
  .nav { height: 74px; }
  .brand-text { display: none; }
  .nav-toggle { display: flex; }
  .nav-links { position: absolute; left: 20px; right: 20px; top: 74px; display: none; flex-direction: column; align-items: stretch; background: #fff; border: 1px solid var(--line); border-radius: 22px; padding: 12px; box-shadow: var(--shadow); }
  .nav-links.is-open { display: flex; }
  
.nav-links a { border: 0; background: transparent; color: var(--ink-2); padding: 10px 12px; border-radius: 999px; font-size: 14px; font-weight: 800; }
  .hero { padding-top: 72px; }
  .section { padding: 74px 0; }
  .proof-strip, .deliver-list, .service-matrix, .convert-grid, .sector-grid, .package-grid, .credential-grid, .timeline, .form-grid { grid-template-columns: 1fr; }
  .timeline div { border-right: 0; border-bottom: 1px solid var(--line); }
  .timeline div:last-child { border-bottom: 0; }
  .footer-grid { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; }
  .mobile-actions { position: fixed; z-index: 210; display: grid; grid-template-columns: repeat(3,1fr); left: 12px; right: 12px; bottom: 12px; background: rgba(255,255,255,.94); border: 1px solid var(--line); border-radius: 18px; box-shadow: var(--shadow); overflow: hidden; backdrop-filter: blur(12px); }
  .mobile-actions a, .mobile-actions button { border: 0; background: transparent; color: var(--ink); font-weight: 950; padding: 13px 8px; text-align: center; }
  .mobile-actions a + a, .mobile-actions button { border-left: 1px solid var(--line); }
}
@media (max-width: 560px) {
  .container { width: min(var(--max), calc(100% - 28px)); }
  h1 { font-size: 43px; }
  h2 { font-size: 34px; }
  .hero-suite { padding: 22px; border-radius: 26px; }
  .suite-header { align-items: flex-start; }
  .suite-header img { width: 70px; height: 70px; }
  .suite-price { align-items: flex-start; flex-direction: column; }
  .fra-row { grid-template-columns: 72px 1fr; }
  .fra-row em { grid-column: 2; }
  .price-row { grid-template-columns: 1fr; }
  .contact-cards { grid-template-columns: 1fr; }
  .qr-panel { flex-direction: column; align-items: flex-start; }
  .badge-line { flex-direction: column; align-items: flex-start; }
}
