:root {
  --bg: #020817;
  --bg-deep: #01040d;
  --surface: #071326;
  --surface-2: #0a1b32;
  --surface-3: #0d2440;
  --text: #f7fbff;
  --muted: #a8b8cb;
  --muted-2: #7f94ad;
  --line: rgba(129, 197, 255, 0.17);
  --line-strong: rgba(41, 203, 255, 0.45);
  --blue: #1688ff;
  --blue-2: #005ce6;
  --cyan: #25e6f4;
  --cyan-soft: #8bf6ff;
  --green: #21c768;
  --danger: #ff7373;
  --warning: #ffd166;
  --shadow: 0 24px 80px rgba(0, 0, 0, 0.34);
  --shadow-soft: 0 16px 42px rgba(0, 0, 0, 0.24);
  --radius-sm: 10px;
  --radius: 18px;
  --radius-lg: 28px;
  --container: 1180px;
  --font: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; background: var(--bg-deep); }
body {
  margin: 0;
  min-width: 320px;
  color: var(--text);
  background:
    radial-gradient(circle at 10% 0%, rgba(0, 114, 255, 0.12), transparent 28rem),
    radial-gradient(circle at 90% 10%, rgba(37, 230, 244, 0.07), transparent 30rem),
    var(--bg);
  font-family: var(--font);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
img, svg { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button, input, textarea, select { font: inherit; }
button { color: inherit; }
button, a { -webkit-tap-highlight-color: transparent; }
:focus-visible { outline: 3px solid var(--cyan); outline-offset: 3px; }
::selection { color: #00101d; background: var(--cyan); }

.container { width: min(calc(100% - 40px), var(--container)); margin-inline: auto; }
.section { padding: 104px 0; position: relative; }
.section-tinted {
  background: linear-gradient(180deg, rgba(8, 24, 45, 0.82), rgba(3, 13, 27, 0.94));
  border-block: 1px solid var(--line);
}
.section-actions { display: flex; justify-content: center; margin-top: 38px; }

.skip-link {
  position: fixed; top: 8px; left: 8px; z-index: 10000;
  padding: 10px 14px; border-radius: 8px;
  color: #00101d; background: var(--cyan);
  transform: translateY(-160%); transition: transform .2s ease;
}
.skip-link:focus { transform: translateY(0); }

.site-header {
  position: sticky; top: 0; z-index: 1000;
  height: 76px;
  background: rgba(1, 6, 17, 0.82);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(91, 173, 255, 0.13);
  transition: box-shadow .25s ease, background .25s ease;
}
.site-header.is-scrolled { background: rgba(1, 6, 17, 0.96); box-shadow: 0 12px 40px rgba(0,0,0,.35); }
.header-inner { height: 100%; display: flex; align-items: center; gap: 28px; }
.brand-link { width: 206px; height: 58px; overflow: hidden; display: block; flex: 0 0 auto; }
.logo-window { display: block; position: relative; overflow: hidden; width: 100%; height: 100%; }
.logo-window img {
  position: absolute;
  width: 206px;
  height: 206px;
  max-width: none;
  left: 0;
  top: -73px;
  object-fit: contain;
}
.desktop-nav { display: flex; align-items: center; gap: 4px; margin-left: auto; }
.nav-link { position: relative; padding: 11px 12px; color: #d4e1ef; font-size: .9rem; font-weight: 650; border-radius: 9px; }
.nav-link::after { content: ""; position: absolute; left: 12px; right: 12px; bottom: 3px; height: 2px; background: linear-gradient(90deg, var(--blue), var(--cyan)); transform: scaleX(0); transition: transform .2s ease; }
.nav-link:hover, .nav-link.is-active { color: #fff; background: rgba(41, 203, 255, .06); }
.nav-link:hover::after, .nav-link.is-active::after { transform: scaleX(1); }
.header-cta { flex: 0 0 auto; }
.mobile-nav { display: none; margin-left: auto; position: relative; }
.mobile-nav summary { list-style: none; cursor: pointer; display: flex; align-items: center; gap: 8px; font-weight: 700; padding: 10px 12px; border: 1px solid var(--line-strong); border-radius: 10px; }
.mobile-nav summary::-webkit-details-marker { display: none; }
.menu-icon { width: 20px; height: 20px; }
.mobile-nav-panel { position: absolute; right: 0; top: calc(100% + 12px); width: min(320px, calc(100vw - 40px)); padding: 14px; border: 1px solid var(--line); border-radius: 16px; background: rgba(3, 13, 27, .98); box-shadow: var(--shadow); }
.mobile-nav-link { display: block; padding: 12px; border-radius: 9px; color: #d8e4f0; }
.mobile-nav-link:hover, .mobile-nav-link.is-active { background: var(--surface-3); color: var(--cyan-soft); }

.button {
  display: inline-flex; align-items: center; justify-content: center; gap: 9px;
  min-height: 44px; padding: 11px 18px; border: 1px solid transparent;
  border-radius: 10px; font-weight: 750; cursor: pointer;
  transition: transform .18s ease, box-shadow .18s ease, border-color .18s ease, background .18s ease;
}
.button:hover { transform: translateY(-2px); }
.button-primary { color: #fff; background: linear-gradient(135deg, var(--blue-2), var(--blue) 55%, #06b7e8); border-color: rgba(117,221,255,.55); box-shadow: 0 10px 30px rgba(0, 105, 255, .25); }
.button-primary:hover { box-shadow: 0 14px 36px rgba(0, 132, 255, .36); }
.button-secondary { color: #eaf8ff; background: rgba(5, 18, 34, .72); border-color: rgba(69, 188, 255, .5); }
.button-secondary:hover { background: rgba(17, 55, 87, .75); border-color: var(--cyan); }
.button-whatsapp { color: #fff; background: linear-gradient(135deg, #159b4e, var(--green)); border-color: rgba(148,255,187,.35); }
.button-large { min-height: 52px; padding: 14px 22px; }
.button-small { min-height: 38px; padding: 8px 13px; font-size: .88rem; }
.button-block { width: 100%; margin-top: 10px; }
.icon { width: 24px; height: 24px; flex: 0 0 auto; }
.icon-small { width: 18px; height: 18px; }

.eyebrow { margin: 0 0 12px; color: var(--cyan); font-size: .78rem; font-weight: 800; text-transform: uppercase; letter-spacing: .16em; }
h1, h2, h3 { margin: 0; line-height: 1.12; letter-spacing: -.025em; }
h1 { font-size: clamp(2.65rem, 5.4vw, 5.15rem); }
h2 { font-size: clamp(2rem, 3.6vw, 3.35rem); }
h3 { font-size: 1.25rem; }
p { color: var(--muted); }
.section-heading { max-width: 760px; margin-bottom: 52px; }
.section-heading-centre { text-align: center; margin-inline: auto; }
.section-lead { font-size: 1.08rem; margin: 18px auto 0; }
.hero-lead { font-size: clamp(1.05rem, 1.6vw, 1.25rem); max-width: 680px; color: #c3d3e2; }
.text-link { display: inline-flex; align-items: center; gap: 7px; color: var(--cyan-soft); font-weight: 750; }
.text-link:hover { color: #fff; }

.scene-background {
  position: relative;
  isolation: isolate;
  background:
    linear-gradient(90deg, rgba(1, 7, 17, .96) 0%, rgba(1, 7, 17, .82) 42%, rgba(1, 7, 17, .25) 72%, rgba(1, 7, 17, .78) 100%),
    linear-gradient(180deg, rgba(0,0,0,.12), var(--bg) 98%),
    url('/assets/nuwara-eliya-tech.svg') center/cover no-repeat;
}
.scene-background::after { content: ""; position: absolute; inset: 0; z-index: -1; background-image: linear-gradient(rgba(31, 150, 255, .05) 1px, transparent 1px), linear-gradient(90deg, rgba(31, 150, 255, .05) 1px, transparent 1px); background-size: 54px 54px; mask-image: linear-gradient(to bottom, black, transparent 80%); }

.home-hero { min-height: calc(100svh - 76px); display: grid; align-items: center; overflow: hidden; }
.home-hero-inner { display: grid; grid-template-columns: 1.13fr .87fr; gap: 56px; align-items: center; padding: 90px 0 114px; }
.home-hero-copy { position: relative; z-index: 2; }
.home-hero h1 span, .page-hero h1 span { color: transparent; background: linear-gradient(90deg, #fff 0%, var(--cyan) 25%, var(--blue) 78%); background-clip: text; -webkit-background-clip: text; }
.location-pill { display: inline-flex; align-items: center; gap: 8px; margin-bottom: 20px; padding: 8px 12px; border: 1px solid var(--line-strong); border-radius: 999px; color: #d9f7ff; background: rgba(2, 15, 30, .72); font-size: .78rem; font-weight: 800; text-transform: uppercase; letter-spacing: .08em; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 13px; margin-top: 30px; }
.hero-whatsapp { display: inline-flex; align-items: center; gap: 12px; margin-top: 24px; padding: 10px 14px; border-radius: 12px; border: 1px solid rgba(65, 220, 127, .35); background: rgba(7, 37, 28, .72); }
.hero-whatsapp .icon { color: #55f797; }
.hero-whatsapp span { display: grid; }
.hero-whatsapp small { color: #9fb5c8; }
.hero-whatsapp strong { color: #fff; }
.hero-trust-row { display: flex; flex-wrap: wrap; gap: 16px 22px; margin-top: 30px; color: #d8e6f2; font-size: .86rem; }
.hero-trust-row span { display: inline-flex; align-items: center; gap: 7px; }
.hero-trust-row .icon { color: var(--cyan); }
.hero-visual { min-height: 520px; position: relative; display: grid; place-items: center; }
.home-hero-logo { width: min(100%, 480px); height: 250px; z-index: 2; border-radius: 30px; box-shadow: 0 0 80px rgba(0, 118, 255, .22); }
.home-hero-logo img { width: 520px; height: 520px; left: calc(50% - 260px); top: -135px; }
.hero-visual-ring { position: absolute; width: 430px; aspect-ratio: 1; border: 1px solid rgba(27, 185, 255, .22); border-radius: 50%; box-shadow: inset 0 0 80px rgba(0, 94, 255, .12), 0 0 60px rgba(0, 153, 255, .13); animation: ring-breathe 4.5s ease-in-out infinite; }
.hero-visual-ring::before, .hero-visual-ring::after { content: ""; position: absolute; inset: 10%; border: 1px dashed rgba(47, 224, 255, .23); border-radius: 50%; }
.hero-visual-ring::after { inset: 23%; }
.hero-visual-card { position: absolute; z-index: 3; max-width: 240px; padding: 14px 16px; border: 1px solid rgba(87, 205, 255, .24); border-radius: 14px; background: rgba(4, 17, 33, .82); backdrop-filter: blur(10px); box-shadow: var(--shadow-soft); }
.hero-visual-card strong, .hero-visual-card span { display: block; }
.hero-visual-card span { margin-top: 4px; color: var(--muted); font-size: .82rem; }
.hero-card-one { top: 34px; right: -10px; }
.hero-card-two { bottom: 26px; left: -12px; }
.hero-wave { position: absolute; left: -5%; right: -5%; bottom: -48px; height: 92px; border-top: 3px solid var(--blue); border-radius: 50% 50% 0 0; background: var(--bg); transform: rotate(-1.5deg); }
.hero-grid-overlay { position: absolute; inset: 0; pointer-events: none; background: radial-gradient(circle at 75% 42%, rgba(4, 155, 255, .18), transparent 22rem); }

.trust-strip { border-bottom: 1px solid var(--line); background: #030b18; }
.trust-strip-grid { display: grid; grid-template-columns: repeat(4, 1fr); }
.trust-strip-grid > div { padding: 26px 28px; border-right: 1px solid var(--line); }
.trust-strip-grid > div:last-child { border-right: 0; }
.trust-strip strong, .trust-strip span { display: block; }
.trust-strip strong { color: #fff; font-size: 1.05rem; }
.trust-strip span { margin-top: 4px; color: var(--muted); font-size: .85rem; }

.service-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.service-card { min-height: 270px; padding: 28px; border: 1px solid var(--line); border-radius: var(--radius); background: linear-gradient(145deg, rgba(10, 28, 51, .82), rgba(3, 12, 25, .94)); box-shadow: inset 0 1px rgba(255,255,255,.025); transition: transform .22s ease, border-color .22s ease, box-shadow .22s ease; }
.service-card:hover { transform: translateY(-6px); border-color: rgba(42, 217, 255, .48); box-shadow: 0 18px 50px rgba(0,0,0,.26), 0 0 32px rgba(0, 125, 255, .09); }
.service-icon { width: 54px; height: 54px; display: grid; place-items: center; margin-bottom: 22px; color: var(--cyan); border: 1px solid rgba(44, 199, 255, .28); border-radius: 14px; background: linear-gradient(145deg, rgba(0, 112, 255, .18), rgba(0, 218, 255, .08)); }
.service-card h3 { min-height: 2.4em; }
.service-card p { min-height: 4.8em; margin: 12px 0 18px; }

.split-layout { display: grid; grid-template-columns: .9fr 1.1fr; gap: 70px; align-items: center; }
.split-copy p { font-size: 1.05rem; }
.split-copy .button { margin-top: 20px; }
.trust-list { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
.trust-item { display: flex; gap: 11px; align-items: flex-start; padding: 16px; border: 1px solid var(--line); border-radius: 12px; background: rgba(8, 25, 46, .58); color: #dfeaf4; }
.trust-item .icon { color: var(--cyan); margin-top: 2px; }

.process-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; }
.process-card { position: relative; min-height: 235px; padding: 28px 22px; border: 1px solid var(--line); border-radius: var(--radius); background: rgba(5, 18, 35, .78); }
.process-card > span { display: inline-grid; place-items: center; width: 48px; height: 48px; margin-bottom: 22px; border-radius: 50%; color: var(--cyan); border: 1px solid var(--line-strong); background: rgba(0, 102, 255, .12); font-weight: 850; }
.process-card p { margin-bottom: 0; font-size: .93rem; }

.filter-bar { display: flex; flex-wrap: wrap; justify-content: center; gap: 9px; margin: 0 0 30px; }
.filter-button { min-height: 40px; padding: 8px 14px; border: 1px solid var(--line); border-radius: 999px; color: #cbd9e6; background: rgba(5, 17, 31, .72); cursor: pointer; }
.filter-button:hover, .filter-button.is-active { color: #001018; background: var(--cyan); border-color: var(--cyan); }
.portfolio-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.portfolio-card { overflow: hidden; border: 1px solid var(--line); border-radius: var(--radius); background: linear-gradient(160deg, rgba(9, 27, 49, .96), rgba(3, 13, 26, .98)); }
.portfolio-card[hidden] { display: none; }
.portfolio-media { aspect-ratio: 16/10; overflow: hidden; border-bottom: 1px solid var(--line); background: #061224; }
.portfolio-media img { width: 100%; height: 100%; object-fit: cover; transition: transform .35s ease; }
.portfolio-card:hover .portfolio-media img { transform: scale(1.025); }
.portfolio-body { padding: 22px; }
.portfolio-category { color: var(--cyan); font-size: .75rem; text-transform: uppercase; letter-spacing: .1em; font-weight: 800; }
.portfolio-body h3 { margin-top: 8px; }
.tech-tags { display: flex; flex-wrap: wrap; gap: 7px; margin: 15px 0; }
.tech-tags span { padding: 5px 9px; border: 1px solid var(--line); border-radius: 999px; color: #b8cadb; font-size: .75rem; }
.placeholder-note { padding-top: 12px; border-top: 1px dashed var(--line); color: #7f94ad; font-size: .76rem; }

.audit-feature { padding: 42px 0; background: linear-gradient(90deg, #032158, #061a3c 48%, #032158); border-block: 1px solid rgba(44, 213, 255, .24); }
.audit-feature-inner { display: grid; grid-template-columns: auto 1fr auto; gap: 26px; align-items: center; }
.audit-feature-icon { width: 74px; height: 74px; display: grid; place-items: center; color: var(--cyan); border: 1px solid rgba(65, 222, 255, .45); border-radius: 18px; background: rgba(3, 13, 32, .5); }
.audit-feature h2 { font-size: clamp(1.7rem, 3vw, 2.6rem); }
.audit-feature p { margin-bottom: 0; }

.review-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.review-card { padding: 26px; border: 1px solid var(--line); border-radius: var(--radius); background: rgba(6, 21, 40, .78); }
.review-stars { display: flex; gap: 5px; color: var(--warning); opacity: .65; }
.review-card blockquote { min-height: 7em; margin: 22px 0; color: #dce8f3; font-size: 1.02rem; }
.review-card strong, .review-card span { display: block; }
.review-card span { color: var(--muted); font-size: .85rem; }

.faq-layout { display: grid; grid-template-columns: .75fr 1.25fr; gap: 70px; align-items: start; }
.faq-intro { position: sticky; top: 110px; }
.faq-item { border-bottom: 1px solid var(--line); }
.faq-item summary { cursor: pointer; list-style: none; position: relative; padding: 22px 40px 22px 0; font-weight: 750; color: #edf7ff; }
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after { content: "+"; position: absolute; right: 4px; top: 18px; width: 30px; height: 30px; display: grid; place-items: center; color: var(--cyan); border: 1px solid var(--line); border-radius: 50%; }
.faq-item[open] summary::after { content: "−"; }
.faq-item div { padding: 0 42px 20px 0; }

.cta-band { padding: 76px 0; background: linear-gradient(135deg, #06152b, #063365 50%, #06152b); border-top: 1px solid rgba(69, 201, 255, .25); }
.cta-band-inner { display: flex; align-items: center; justify-content: space-between; gap: 40px; }
.cta-band-inner > div:first-child { max-width: 680px; }
.cta-band-actions { display: flex; flex-wrap: wrap; gap: 12px; }

.page-hero { min-height: 520px; display: grid; align-items: center; overflow: hidden; }
.page-hero-grid { display: grid; grid-template-columns: 1.1fr .9fr; gap: 60px; align-items: center; padding: 84px 0; }
.page-hero-copy { position: relative; z-index: 2; }
.hero-brand-card { justify-self: end; width: min(100%, 420px); padding: 24px; border: 1px solid rgba(70, 202, 255, .26); border-radius: 24px; background: rgba(2, 12, 26, .74); backdrop-filter: blur(14px); box-shadow: var(--shadow); }
.hero-logo { height: 180px; border-radius: 18px; }
.hero-logo img { width: 420px; height: 420px; left: calc(50% - 210px); top: -112px; }
.hero-brand-card p { margin: 10px 0 8px; }
.hero-brand-card > span { display: inline-flex; align-items: center; gap: 8px; color: var(--muted); font-size: .86rem; }
.scene-orb { position: absolute; border-radius: 50%; filter: blur(5px); opacity: .5; }
.scene-orb-one { width: 300px; height: 300px; right: 8%; top: 20%; background: radial-gradient(circle, rgba(0, 145, 255, .26), transparent 68%); }
.scene-orb-two { width: 220px; height: 220px; left: 25%; bottom: -90px; background: radial-gradient(circle, rgba(37, 230, 244, .12), transparent 68%); }
.breadcrumbs { padding-top: 18px; }
.breadcrumbs ol { display: flex; flex-wrap: wrap; gap: 9px; padding: 0; margin: 0; list-style: none; color: var(--muted); font-size: .83rem; }
.breadcrumbs li + li::before { content: "/"; margin-right: 9px; color: #516981; }
.breadcrumbs a:hover { color: var(--cyan); }

.editorial-grid { display: grid; grid-template-columns: 1.2fr .8fr; gap: 72px; align-items: start; }
.editorial-copy p { font-size: 1.06rem; }
.principles-card, .security-panel, .notice-card, .contact-sidebar { border: 1px solid var(--line); border-radius: var(--radius); background: rgba(7, 24, 44, .76); box-shadow: var(--shadow-soft); }
.principles-card { padding: 28px; }
.principles-card > div, .security-panel > div, .audit-checklist > div { display: flex; align-items: flex-start; gap: 10px; padding: 12px 0; border-bottom: 1px solid var(--line); }
.principles-card > div:last-child, .security-panel > div:last-child, .audit-checklist > div:last-child { border-bottom: 0; }
.principles-card .icon, .security-panel .icon, .audit-checklist .icon { color: var(--cyan); margin-top: 2px; }
.value-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.value-card { padding: 26px; border: 1px solid var(--line); border-radius: var(--radius); background: rgba(7, 22, 41, .7); }

.service-detail-list { display: grid; gap: 18px; }
.service-detail { display: grid; grid-template-columns: 54px 70px 1fr; gap: 22px; align-items: start; padding: 30px; border: 1px solid var(--line); border-radius: var(--radius); background: rgba(5, 18, 35, .76); scroll-margin-top: 100px; }
.service-detail-number { color: #55718d; font-weight: 850; }
.service-detail .service-icon { margin: 0; }
.service-detail h2 { font-size: 1.55rem; }
.service-detail ul { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 7px 22px; padding-left: 20px; color: #b8cadb; }
.security-panel { padding: 28px; }
.notice-card { display: flex; gap: 18px; align-items: flex-start; margin-bottom: 36px; padding: 24px; border-color: rgba(255, 209, 102, .35); }
.notice-card > .icon { color: var(--warning); }
.notice-card h2 { font-size: 1.3rem; }
.notice-card p { margin-bottom: 0; }

.audit-layout { display: grid; grid-template-columns: .75fr 1.25fr; gap: 56px; align-items: start; }
.audit-copy { position: sticky; top: 104px; }
.audit-checklist { margin-top: 24px; }
.audit-note { margin-top: 26px; padding: 18px; border: 1px solid rgba(63, 205, 255, .26); border-radius: 14px; background: rgba(0, 89, 160, .12); }
.audit-note p { margin-bottom: 0; }
.form-card { padding: 30px; border: 1px solid var(--line); border-radius: var(--radius-lg); background: linear-gradient(155deg, rgba(10, 30, 55, .97), rgba(3, 13, 27, .98)); box-shadow: var(--shadow); }
.form-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 18px; }
.form-card label > span { display: block; margin-bottom: 7px; color: #dce8f2; font-size: .88rem; font-weight: 700; }
.form-card input, .form-card textarea, .form-card select {
  width: 100%; border: 1px solid rgba(117, 167, 210, .28); border-radius: 10px;
  color: #f4f9ff; background: rgba(2, 10, 22, .78); padding: 12px 13px;
  transition: border-color .18s ease, box-shadow .18s ease;
}
.form-card textarea { resize: vertical; min-height: 130px; }
.form-card input:focus, .form-card textarea:focus, .form-card select:focus { border-color: var(--cyan); box-shadow: 0 0 0 3px rgba(37,230,244,.12); outline: 0; }
.form-card input[aria-invalid="true"], .form-card textarea[aria-invalid="true"], .form-card select[aria-invalid="true"] { border-color: var(--danger); }
.form-card select option { background: #061225; }
.field-full { grid-column: 1 / -1; }
.file-field small { display: block; margin-top: 6px; color: var(--muted-2); }
.checkbox-field { display: flex; align-items: flex-start; gap: 10px; margin: 22px 0; }
.checkbox-field input { width: 20px; height: 20px; margin-top: 2px; flex: 0 0 auto; }
.checkbox-field > span { margin: 0 !important; font-weight: 500 !important; color: var(--muted) !important; }
.checkbox-field a { color: var(--cyan); text-decoration: underline; }
.honeypot { position: absolute !important; width: 1px; height: 1px; overflow: hidden; clip: rect(0 0 0 0); white-space: nowrap; }
.form-status { min-height: 24px; margin-top: 14px; font-weight: 700; }
.form-status.is-success { color: #71f2a6; }
.form-status.is-error { color: #ff9a9a; }
.form-note { font-size: .82rem; margin-bottom: 0; }
.form-page-layout { display: grid; grid-template-columns: .7fr 1.3fr; gap: 54px; align-items: start; }
.form-side-copy { position: sticky; top: 104px; }
.mini-steps { display: grid; gap: 12px; margin: 26px 0; }
.mini-steps > div { display: flex; align-items: center; gap: 12px; }
.mini-steps span { display: grid; place-items: center; width: 34px; height: 34px; border: 1px solid var(--line-strong); border-radius: 50%; color: var(--cyan); }
.contact-chip { display: inline-flex; align-items: center; gap: 12px; padding: 14px 16px; border: 1px solid rgba(61, 224, 126, .34); border-radius: 14px; background: rgba(13, 69, 44, .28); }
.contact-chip .icon { color: #56f496; }
.contact-chip span { display: grid; }
.contact-chip small { color: var(--muted); }

.contact-cards { display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px; }
.contact-card { display: grid; justify-items: start; min-height: 180px; padding: 24px; border: 1px solid var(--line); border-radius: var(--radius); background: rgba(6, 21, 40, .76); transition: transform .2s ease, border-color .2s ease; }
a.contact-card:hover { transform: translateY(-5px); border-color: var(--cyan); }
.contact-card > span:first-child { color: var(--cyan); }
.contact-card small { margin-top: auto; color: var(--muted); }
.contact-card strong { word-break: break-word; }
.contact-layout { display: grid; grid-template-columns: 1.25fr .75fr; gap: 48px; align-items: start; }
.contact-sidebar { padding: 26px; }
.contact-sidebar dl { margin: 22px 0; }
.contact-sidebar dl > div { padding: 12px 0; border-bottom: 1px solid var(--line); }
.contact-sidebar dt { color: var(--muted-2); font-size: .78rem; text-transform: uppercase; letter-spacing: .09em; }
.contact-sidebar dd { margin: 3px 0 0; color: #e5eef6; }
.map-placeholder { min-height: 240px; display: grid; place-items: center; text-align: center; padding: 30px; border: 1px dashed var(--line-strong); border-radius: 14px; background: linear-gradient(rgba(0, 102, 173, .09), rgba(0,0,0,.12)), url('/assets/nuwara-eliya-tech.svg') center/cover; }
.map-placeholder .icon { color: var(--cyan); width: 38px; height: 38px; }
.map-placeholder strong, .map-placeholder small { display: block; }
.map-placeholder small { color: var(--muted); }
.social-links { display: flex; flex-wrap: wrap; gap: 8px; }
.social-links a, .social-link-disabled { padding: 7px 10px; border: 1px solid var(--line); border-radius: 8px; color: #c9d8e7; font-size: .78rem; }
.social-links a:hover { color: #001018; background: var(--cyan); }
.social-link-disabled { opacity: .5; cursor: not-allowed; }

.legal-layout { display: grid; grid-template-columns: 250px minmax(0, 1fr); gap: 60px; align-items: start; }
.legal-nav { position: sticky; top: 110px; display: grid; gap: 5px; padding: 20px; border: 1px solid var(--line); border-radius: 14px; background: rgba(5, 18, 35, .74); }
.legal-nav strong { margin-bottom: 8px; }
.legal-nav a { padding: 7px 8px; border-radius: 7px; color: var(--muted); font-size: .86rem; }
.legal-nav a:hover { color: var(--cyan); background: rgba(32, 182, 255, .07); }
.legal-copy { max-width: 820px; }
.legal-copy h1 { font-size: clamp(2.3rem, 4vw, 3.7rem); }
.legal-copy h2 { margin-top: 40px; font-size: 1.5rem; scroll-margin-top: 110px; }
.legal-copy p, .legal-copy li { color: #b7c7d6; }
.legal-copy a { color: var(--cyan); text-decoration: underline; }
.legal-warning { padding: 18px; border: 1px solid rgba(255, 209, 102, .36); border-radius: 12px; background: rgba(114, 82, 8, .12); }
.table-wrap { overflow-x: auto; }
table { width: 100%; border-collapse: collapse; min-width: 650px; }
th, td { padding: 14px; border: 1px solid var(--line); text-align: left; vertical-align: top; }
th { background: rgba(11, 39, 70, .8); }
td { color: var(--muted); }

.not-found { min-height: calc(100svh - 76px); display: grid; place-items: center; text-align: center; }
.not-found-inner { max-width: 720px; padding: 70px 20px; }
.not-found-logo { width: 320px; height: 160px; margin: 0 auto 28px; border-radius: 18px; }
.not-found-logo img { width: 360px; height: 360px; left: calc(50% - 180px); top: -98px; }
.not-found .hero-actions { justify-content: center; }

.site-footer { background: #010611; border-top: 1px solid var(--line); }
.footer-grid { display: grid; grid-template-columns: 1.5fr repeat(4, 1fr); gap: 34px; padding: 70px 0 44px; }
.footer-brand { max-width: 290px; }
.footer-logo { width: 225px; height: 66px; }
.footer-logo img { width: 225px; height: 225px; top: -80px; }
.footer-grid h2 { margin-bottom: 16px; color: #f0f7ff; font-size: .86rem; text-transform: uppercase; letter-spacing: .1em; }
.footer-grid > div:not(.footer-brand) > a, .footer-contact > span { display: flex; align-items: center; gap: 8px; padding: 5px 0; color: var(--muted); font-size: .86rem; }
.footer-grid a:hover { color: var(--cyan); }
.footer-whatsapp { color: #75f0a8 !important; }
.footer-bottom { display: flex; justify-content: space-between; gap: 20px; padding: 20px 0; border-top: 1px solid var(--line); }
.footer-bottom p { margin: 0; font-size: .8rem; }

.floating-whatsapp { position: fixed; right: 22px; bottom: 22px; z-index: 950; display: flex; align-items: center; gap: 9px; padding: 12px 16px; color: #fff; background: #18a957; border: 1px solid rgba(145,255,187,.5); border-radius: 999px; box-shadow: 0 14px 38px rgba(0,0,0,.35); font-weight: 800; }
.floating-whatsapp::before { content: ""; position: absolute; inset: -6px; border: 1px solid rgba(70, 245, 140, .38); border-radius: inherit; animation: whatsapp-pulse 2.2s ease-out infinite; }
.cookie-banner { position: fixed; left: 20px; right: 20px; bottom: 20px; z-index: 1200; width: min(900px, calc(100% - 40px)); margin-inline: auto; padding: 18px; border: 1px solid var(--line-strong); border-radius: 16px; background: rgba(3, 13, 27, .98); box-shadow: var(--shadow); }
.cookie-banner:not([hidden]) { display: grid; grid-template-columns: 1fr auto auto; gap: 20px; align-items: center; }
.cookie-banner p { margin: 4px 0 0; font-size: .86rem; }
.cookie-actions { display: flex; gap: 8px; }
.cookie-banner > a { color: var(--cyan); font-size: .82rem; }

.site-loader { position: fixed; inset: 0; z-index: 9999; display: grid; place-items: center; align-content: center; gap: 10px; background: #010611; animation: loader-hide .45s ease .9s forwards; }
.loader-logo { width: 350px; height: 180px; z-index: 2; border-radius: 20px; }
.loader-logo img { width: 390px; height: 390px; left: calc(50% - 195px); top: -105px; }
.loader-glow { position: absolute; width: 280px; height: 120px; border-radius: 50%; background: rgba(0, 131, 255, .28); filter: blur(50px); animation: loader-glow 1s ease-in-out infinite alternate; }
.site-loader > span { color: #8fa8bf; font-size: .78rem; text-transform: uppercase; letter-spacing: .18em; }

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

@keyframes ring-breathe { 0%,100% { transform: scale(.97); opacity: .65; } 50% { transform: scale(1.03); opacity: 1; } }
@keyframes whatsapp-pulse { from { transform: scale(.92); opacity: .7; } to { transform: scale(1.22); opacity: 0; } }
@keyframes loader-hide { to { opacity: 0; visibility: hidden; pointer-events: none; } }
@keyframes loader-glow { to { transform: scale(1.18); opacity: .68; } }

@media (max-width: 1080px) {
  .desktop-nav, .header-cta { display: none; }
  .mobile-nav { display: block; }
  .home-hero-inner, .page-hero-grid { grid-template-columns: 1fr; }
  .home-hero { min-height: auto; }
  .home-hero-inner { padding: 78px 0 100px; }
  .hero-visual { min-height: 430px; }
  .hero-brand-card { justify-self: start; }
  .trust-strip-grid { grid-template-columns: repeat(2, 1fr); }
  .trust-strip-grid > div:nth-child(2) { border-right: 0; }
  .trust-strip-grid > div:nth-child(-n+2) { border-bottom: 1px solid var(--line); }
  .service-grid, .portfolio-grid, .review-grid, .value-grid { grid-template-columns: repeat(2, 1fr); }
  .process-grid { grid-template-columns: repeat(2, 1fr); }
  .split-layout, .audit-layout, .form-page-layout, .contact-layout { grid-template-columns: 1fr; }
  .audit-copy, .form-side-copy, .faq-intro { position: static; }
  .contact-cards { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: repeat(3, 1fr); }
  .footer-brand { grid-column: 1 / -1; max-width: 560px; }
}

@media (max-width: 760px) {
  .container { width: min(calc(100% - 28px), var(--container)); }
  .section { padding: 76px 0; }
  .site-header { height: 68px; }
  .brand-link { width: 172px; height: 50px; }
  .logo-window img { width: 172px; height: 172px; top: -61px; }
  .home-hero-inner { padding: 62px 0 90px; gap: 20px; }
  .home-hero h1 { font-size: clamp(2.45rem, 12vw, 4.1rem); }
  .hero-actions { display: grid; }
  .hero-actions .button { width: 100%; }
  .hero-trust-row { display: grid; grid-template-columns: 1fr 1fr; }
  .hero-visual { min-height: 350px; }
  .home-hero-logo { height: 180px; }
  .home-hero-logo img { width: 380px; height: 380px; left: calc(50% - 190px); top: -100px; }
  .hero-visual-ring { width: 300px; }
  .hero-card-one { top: 6px; right: 0; }
  .hero-card-two { bottom: 5px; left: 0; }
  .hero-visual-card { max-width: 190px; padding: 11px 12px; }
  .hero-visual-card span { font-size: .72rem; }
  .trust-strip-grid { grid-template-columns: 1fr; }
  .trust-strip-grid > div { border-right: 0; border-bottom: 1px solid var(--line); }
  .service-grid, .portfolio-grid, .review-grid, .value-grid, .process-grid, .contact-cards { grid-template-columns: 1fr; }
  .trust-list { grid-template-columns: 1fr; }
  .service-card { min-height: auto; }
  .service-card h3, .service-card p, .review-card blockquote { min-height: auto; }
  .audit-feature-inner { grid-template-columns: 1fr; }
  .audit-feature-icon { width: 60px; height: 60px; }
  .cta-band-inner { display: grid; }
  .cta-band-actions { display: grid; }
  .faq-layout, .editorial-grid, .legal-layout { grid-template-columns: 1fr; gap: 34px; }
  .legal-nav { position: static; }
  .service-detail { grid-template-columns: 42px 1fr; }
  .service-detail > div:last-child { grid-column: 1 / -1; }
  .service-detail ul { grid-template-columns: 1fr; }
  .form-grid { grid-template-columns: 1fr; }
  .field-full { grid-column: auto; }
  .form-card { padding: 22px 18px; }
  .page-hero { min-height: auto; }
  .page-hero-grid { padding: 66px 0; gap: 30px; }
  .hero-brand-card { width: 100%; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .footer-bottom { display: grid; }
  .cookie-banner:not([hidden]) { grid-template-columns: 1fr; }
  .cookie-actions { display: grid; }
  .floating-whatsapp span { display: none; }
  .floating-whatsapp { width: 52px; height: 52px; padding: 0; justify-content: center; }
}

@media (max-width: 430px) {
  .header-inner { gap: 12px; }
  .brand-link { width: 150px; }
  .mobile-nav summary span { display: none; }
  .hero-trust-row { grid-template-columns: 1fr; }
  .hero-visual-card { display: none; }
  .footer-grid { grid-template-columns: 1fr; }
  .filter-bar { justify-content: flex-start; overflow-x: auto; flex-wrap: nowrap; padding-bottom: 8px; }
  .filter-button { white-space: nowrap; }
  .loader-logo { width: 280px; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: .01ms !important; animation-iteration-count: 1 !important; transition-duration: .01ms !important; scroll-behavior: auto !important; }
  .js .reveal { opacity: 1; transform: none; }
}
