:root,
[data-bs-theme="dark"] {
    --bg: #071421;
    --bg-soft: #102437;
    --surface: rgba(255, 255, 255, 0.08);
    --surface-strong: rgba(255, 255, 255, 0.14);
    --text: #e9f3ff;
    --muted: #b4c8dc;
    --accent: #26d7a8;
    --accent-2: #00b8ff;
    --danger: #ff7a90;
    --success: #8bf8c3;
    --radius: 18px;
    --shadow: 0 18px 45px rgba(0, 0, 0, 0.24);

    /* Pin Bootstrap's dark-mode body colors to our brand */
    --bs-body-color: #e9f3ff;
    --bs-body-bg: #071421;
    --bs-body-font-family: 'Manrope', sans-serif;
    --bs-border-color: rgba(255, 255, 255, 0.15);
    --bs-link-color: #e9f3ff;
    --bs-link-hover-color: #26d7a8;
    --bs-accordion-color: #e9f3ff;
    --bs-accordion-bg: transparent;
    --bs-accordion-border-color: rgba(255, 255, 255, 0.14);
    --bs-accordion-btn-color: #e9f3ff;
    --bs-accordion-btn-bg: transparent;
    --bs-accordion-active-color: #26d7a8;
    --bs-accordion-active-bg: rgba(38, 215, 168, 0.06);
    --bs-accordion-btn-focus-box-shadow: 0 0 0 2px rgba(38, 215, 168, 0.35);
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

html,
body {
    margin: 0;
    padding: 0;
    font-family: 'Manrope', sans-serif;
    color: var(--text);
    background:
        radial-gradient(circle at 8% 0%, #123b5a 0, transparent 42%),
        radial-gradient(circle at 100% 22%, #0f2f46 0, transparent 35%),
        linear-gradient(165deg, #071421 0%, #091d2c 50%, #0f2d3f 100%);
    min-height: 100%;
    overflow-x: hidden;
}

a {
    color: inherit;
    text-decoration: none;
}

/* Skip link — accessibility */
.skip-link {
    position: absolute;
    top: -100%;
    left: 1rem;
    z-index: 10000;
    padding: .5rem 1.2rem;
    background: var(--accent);
    color: #04202d;
    font-weight: 700;
    font-size: .9rem;
    border-radius: 0 0 8px 8px;
    text-decoration: none;
    transition: top .15s;
}

.skip-link:focus {
    top: 0;
}

/* Global focus-visible ring */
a:focus-visible,
button:focus-visible,
input:focus-visible,
textarea:focus-visible,
select:focus-visible {
    outline: 2px solid rgba(38, 215, 168, 0.85);
    outline-offset: 2px;
    border-radius: 4px;
}

/* Enhanced focus ring for .btn (Bootstrap can override the generic rule) */
.btn:focus-visible {
    outline: 2px solid rgba(38, 215, 168, 0.85) !important;
    outline-offset: 3px !important;
    box-shadow: 0 0 0 4px rgba(38, 215, 168, 0.2) !important;
}

/* Visible focus ring on nav links */
.site-nav a:focus-visible {
    outline: 2px solid rgba(38, 215, 168, 0.85);
    outline-offset: 4px;
    border-radius: 4px;
}

main {
    position: relative;
    z-index: 2;
}

.container {
    max-width: 1140px;
    width: 100%;
    margin-inline: auto;
    padding-inline: 1rem;
}

.bg-orb {
    position: fixed;
    z-index: 1;
    border-radius: 999px;
    filter: blur(70px);
    opacity: 0.25;
    pointer-events: none;
}

.bg-orb--left {
    width: 290px;
    height: 290px;
    background: #00b8ff;
    top: -80px;
    left: -50px;
}

.bg-orb--right {
    width: 340px;
    height: 340px;
    background: #26d7a8;
    right: -70px;
    bottom: 8%;
}

.site-header {
    position: sticky;
    top: 0;
    z-index: 9;
    background: rgba(7, 20, 33, 0.72);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.nav-wrap {
    display: flex;
    align-items: center;
    justify-content: space-between;
    min-height: 72px;
    gap: 1rem;
}

.logo {
    font-family: 'Sora', sans-serif;
    font-weight: 700;
    letter-spacing: 0.03em;
}

.nav-toggle {
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 12px;
    background: transparent;
    color: var(--text);
    padding: 0.5rem 0.8rem;
    font: inherit;
}

.site-nav {
    position: absolute;
    top: 72px;
    left: 0;
    right: 0;
    background: rgba(7, 20, 33, 0.96);
    display: none;
    flex-direction: column;
    padding: 1rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.12);
}

.site-nav.is-open {
    display: flex;
}

.site-nav a {
    padding: 0.65rem 0.5rem;
    color: var(--muted);
    border-radius: 10px;
    transition: color 0.25s ease, background-color 0.25s ease;
}

.site-nav a:hover,
.site-nav a.is-active {
    color: var(--text);
    background: rgba(255, 255, 255, 0.09);
}

.section {
    padding: 2rem 0;
    position: relative;
    z-index: 2;
}

.hero {
    padding-top: 2.5rem;
}

.hero-grid {
    display: grid;
    gap: 1.2rem;
}

.eyebrow {
    display: inline-block;
    margin: 0 0 0.6rem;
    color: var(--accent);
    font-family: 'Sora', sans-serif;
    font-weight: 600;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    font-size: 0.8rem;
}

h1,
h2,
h3 {
    margin-top: 0;
    line-height: 1.15;
}

h1 {
    font-family: 'Sora', sans-serif;
    font-size: clamp(1.9rem, 6.4vw, 3.4rem);
    margin-bottom: 1rem;
}

h2 {
    font-size: clamp(1.3rem, 4vw, 1.95rem);
}

h3 {
    font-size: clamp(1.05rem, 2.8vw, 1.35rem);
}

.lead {
    color: var(--muted);
    max-width: 64ch;
    line-height: 1.75;
}

.hero-cta {
    margin-top: 1.6rem;
    display: flex;
    flex-wrap: wrap;
    gap: 0.7rem;
}

.btn {
    display: inline-block;
    border: 0;
    border-radius: 999px;
    padding: 0.78rem 1.2rem;
    font-weight: 700;
    cursor: pointer;
    transition: transform 0.25s ease, box-shadow 0.25s ease, background-color 0.25s ease;
}

.btn:hover {
    transform: translateY(-2px);
}

.btn-primary {
    background: linear-gradient(135deg, var(--accent), var(--accent-2));
    color: #04202d;
    box-shadow: var(--shadow);
}

.btn-ghost {
    border: 1px solid rgba(255, 255, 255, 0.25);
    background: rgba(255, 255, 255, 0.03);
    color: var(--text);
}

.hero-card,
.price-card,
.tile,
.contact-form-wrap,
.contact-info,
.table-wrap,
.stats article {
    background: var(--surface);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: var(--radius);
    box-shadow: var(--shadow);
}

.hero-card,
.price-card,
.tile,
.contact-form-wrap,
.contact-info,
.table-wrap {
    padding: 1rem;
}

.hero-card ul,
.price-card ul {
    margin: 1rem 0 0;
    padding-left: 1.1rem;
    color: var(--muted);
    line-height: 1.65;
}

.hero-card--feature {
    background:
        linear-gradient(165deg, rgba(255, 255, 255, 0.1), rgba(0, 184, 255, 0.08)),
        var(--surface);
    border: 1px solid rgba(120, 201, 255, 0.28);
    display: flex;
    flex-direction: column;
}

.hero-card--feature h2 {
    font-size: clamp(1.05rem, 2.2vw, 1.35rem);
    margin-bottom: 0.75rem;
    line-height: 1.3;
}

.hero-card__list {
    margin: 0.4rem 0 0;
    padding-left: 1.05rem;
    flex: 1;
    color: var(--muted);
    line-height: 1.7;
}

.hero-badges {
    margin-top: auto;
    padding-top: 1.1rem;
    display: grid;
    gap: 0.65rem;
    grid-template-columns: repeat(2, minmax(0, 1fr));
}

.hero-badge {
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.18);
    background: rgba(255, 255, 255, 0.04);
    padding: 0.7rem;
}

.hero-badge strong {
    display: block;
    color: var(--accent);
    font-family: 'Sora', sans-serif;
    font-size: 1rem;
}

.hero-badge span {
    color: var(--muted);
    font-size: 0.85rem;
}

.stats {
    display: grid;
    gap: 0.8rem;
    grid-template-columns: repeat(1, minmax(0, 1fr));
}

.stats article {
    padding: 1rem;
    text-align: center;
}

.stats strong {
    display: block;
    font-size: 1.8rem;
    color: var(--accent);
}

.cards-grid,
.portfolio-grid,
.contact-grid {
    display: grid;
    gap: 1rem;
}

.split {
    display: grid;
    gap: 1rem;
}

.steps {
    margin: 0.4rem 0 0;
    padding-left: 1.1rem;
    color: var(--muted);
    line-height: 1.75;
}

.steps strong {
    color: var(--text);
}

.proof-grid {
    margin-top: 1rem;
    display: grid;
    gap: 0.7rem;
    grid-template-columns: repeat(2, minmax(0, 1fr));
}

.proof-grid div {
    border-radius: 14px;
    border: 1px solid rgba(255, 255, 255, 0.18);
    background: rgba(255, 255, 255, 0.04);
    padding: 0.85rem;
}

.proof-grid strong {
    font-family: 'Sora', sans-serif;
    font-size: clamp(1.1rem, 3.2vw, 1.45rem);
    color: var(--accent);
    display: block;
}

.proof-grid span {
    color: var(--muted);
    font-size: 0.92rem;
}

.clean-list {
    margin: 0.8rem 0 0;
    padding-left: 1.1rem;
    color: var(--muted);
    line-height: 1.75;
}

.price {
    font-size: clamp(1.5rem, 5vw, 2rem);
    color: var(--accent);
    margin: 0.6rem 0;
    font-family: 'Sora', sans-serif;
}

.tile p,
.contact-info p,
.contact-info li {
    color: var(--muted);
    line-height: 1.7;
}

.tag {
    display: inline-block;
    margin-top: 1rem;
    padding: 0.3rem 0.7rem;
    border-radius: 999px;
    font-size: 0.8rem;
    background: rgba(0, 184, 255, 0.2);
    border: 1px solid rgba(0, 184, 255, 0.5);
}

.portfolio-cta {
    background:
        linear-gradient(140deg, rgba(0, 184, 255, 0.18), rgba(38, 215, 168, 0.12)),
        var(--surface);
    border: 1px solid rgba(0, 184, 255, 0.4);
}

.portfolio-cta__head h2 {
    margin-bottom: 0.6rem;
}

.portfolio-cta__head p {
    margin: 0;
}

.portfolio-cta__meta {
    margin-top: 1rem;
    display: flex;
    flex-wrap: wrap;
    gap: 0.55rem;
}

.portfolio-pill {
    display: inline-flex;
    align-items: center;
    padding: 0.42rem 0.7rem;
    border-radius: 999px;
    font-size: 0.84rem;
    color: #d9efff;
    border: 1px solid rgba(255, 255, 255, 0.2);
    background: rgba(255, 255, 255, 0.06);
}

.portfolio-cta__actions {
    margin-top: 1.2rem;
}

.table-wrap {
    overflow-x: auto;
}

.pricing-note {
    margin-top: 1rem;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    gap: 0.9rem;
}

.pricing-note p {
    color: var(--muted);
    margin: 0;
}

.pricing-table {
    width: 100%;
    border-collapse: collapse;
    min-width: 620px;
}

.pricing-table th,
.pricing-table td {
    text-align: left;
    padding: 0.8rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.12);
}

.pricing-table thead th {
    color: var(--accent);
    font-family: 'Sora', sans-serif;
}

.contact-form {
    display: grid;
    gap: 0.65rem;
}

.contact-form input,
.contact-form textarea {
    width: 100%;
    border: 1px solid rgba(255, 255, 255, 0.18);
    background: rgba(0, 0, 0, 0.18);
    color: var(--text);
    border-radius: 12px;
    padding: 0.68rem 0.75rem;
    font: inherit;
}

.contact-form input:focus,
.contact-form textarea:focus {
    outline: 2px solid rgba(38, 215, 168, 0.42);
    outline-offset: 1px;
}

.microcopy {
    color: var(--muted);
    font-size: 0.9rem;
    margin: 0.2rem 0;
}

.hp-field {
    position: absolute;
    left: -9999px;
    width: 1px;
    height: 1px;
    overflow: hidden;
}

.form-alert {
    border-radius: 12px;
    padding: 0.7rem 0.9rem;
    margin-bottom: 0.85rem;
    font-weight: 500;
}

.form-alert--success {
    background: rgba(139, 248, 195, 0.15);
    border: 1px solid rgba(139, 248, 195, 0.6);
    color: var(--success);
}

.form-alert--error {
    background: rgba(255, 122, 144, 0.12);
    border: 1px solid rgba(255, 122, 144, 0.55);
    color: #ffd3db;
}

/* ===========================
   FOOTER — multi-column
   =========================== */
.site-footer {
    border-top: 1px solid rgba(255,255,255,.08);
    margin-top: 4rem;
    padding-top: 3.5rem;
    position: relative;
    z-index: 2;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.6fr 1fr 1fr;
    gap: 2rem 3rem;
    padding-bottom: 2.5rem;
}

.footer-brand__logo {
    font-family: 'Sora', sans-serif;
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--text);
    text-decoration: none;
    display: inline-block;
    margin-bottom: .6rem;
}

.footer-brand__tagline {
    font-size: .85rem;
    color: var(--muted);
    line-height: 1.65;
    margin: 0;
}

.footer-col__title {
    font-size: .72rem;
    font-weight: 700;
    letter-spacing: .1em;
    text-transform: uppercase;
    color: var(--muted);
    margin: 0 0 .9rem;
}

.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: .5rem;
}

.footer-links a {
    font-size: .875rem;
    color: var(--muted);
    text-decoration: none;
    transition: color .2s;
}

.footer-links a:hover { color: var(--accent); }

.footer-bottom {
    border-top: 1px solid rgba(255,255,255,.07);
    padding: 1rem 0;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: .75rem;
    flex-wrap: wrap;
    font-size: .8rem;
    color: var(--muted);
}

.footer-bottom a {
    color: var(--muted);
    text-decoration: none;
    transition: color .2s;
}

.footer-bottom a:hover { color: var(--accent); }

.footer-location {
    display: flex;
    align-items: center;
    gap: .4rem;
    font-size: .8rem;
    color: var(--muted);
    margin-top: .9rem;
    opacity: .7;
}

.footer-socials {
    display: flex;
    flex-direction: column;
    gap: .5rem;
}

.footer-social-link {
    display: inline-flex;
    align-items: center;
    gap: .5rem;
    font-size: .875rem;
    color: var(--muted);
    text-decoration: none;
    transition: color .2s;
}

.footer-social-link:hover { color: var(--accent); }

@media (max-width: 768px) {
    .footer-grid { grid-template-columns: 1fr 1fr; }
    .footer-brand { grid-column: 1 / -1; }
}

@media (max-width: 480px) {
    .footer-grid { grid-template-columns: 1fr; }
    .footer-bottom { flex-direction: column; align-items: flex-start; }
}

/* Reveal animation — only active when JS loads (html.js-anim) */
[data-reveal] {
    opacity: 1;
    transform: none;
}

html.js-anim [data-reveal] {
    opacity: 0;
    transform: translateY(18px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

html.js-anim [data-reveal].is-visible {
    opacity: 1;
    transform: translateY(0);
}

/* ─── Hero v3 ──────────────────────────────────────────────── */
.hero-v3 {
    position: relative;
    overflow: hidden;
    padding: 5rem 0 4rem;
    z-index: 2;
}

.hero-v3__blob {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    pointer-events: none;
    opacity: 0;
    animation: blobIn 1.4s ease forwards;
}
.hero-v3__blob--1 {
    width: 480px; height: 480px;
    background: radial-gradient(circle, rgba(38,215,168,.35) 0%, transparent 70%);
    top: -120px; left: -100px;
    animation-delay: .1s;
}
.hero-v3__blob--2 {
    width: 420px; height: 420px;
    background: radial-gradient(circle, rgba(0,184,255,.28) 0%, transparent 70%);
    bottom: -80px; right: -80px;
    animation-delay: .3s;
}
@keyframes blobIn {
    to { opacity: 1; }
}

.hero-v3__inner {
    position: relative;
    z-index: 1;
}

.hero-v3__copy {
    animation: heroFadeUp .7s ease both;
}

@keyframes heroFadeUp {
    from { opacity: 0; transform: translateY(28px); }
    to   { opacity: 1; transform: translateY(0);    }
}

.hero-v3__badge {
    display: inline-flex;
    align-items: center;
    gap: .45rem;
    padding: .35rem .85rem;
    border-radius: 999px;
    border: 1px solid rgba(38,215,168,.4);
    background: rgba(38,215,168,.08);
    font-size: .82rem;
    font-weight: 600;
    color: var(--accent);
    margin-bottom: 1.4rem;
    letter-spacing: .03em;
}

.hero-v3__dot {
    width: 8px; height: 8px;
    border-radius: 50%;
    background: var(--accent);
    display: inline-block;
    flex-shrink: 0;
}
.hero-v3__dot--pulse {
    animation: pulse 2s ease-in-out infinite;
    box-shadow: 0 0 0 0 rgba(38,215,168,.6);
}
@keyframes pulse {
    0%   { box-shadow: 0 0 0 0   rgba(38,215,168,.6); }
    60%  { box-shadow: 0 0 0 7px rgba(38,215,168,0);  }
    100% { box-shadow: 0 0 0 0   rgba(38,215,168,0);  }
}

.hero-v3__title {
    font-family: 'Sora', sans-serif;
    font-size: clamp(2rem, 6vw, 3.6rem);
    font-weight: 700;
    line-height: 1.12;
    margin: 0 0 .4rem;
    color: var(--text);
}
.hero-v3__name {
    background: linear-gradient(120deg, var(--accent) 0%, var(--accent-2) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-v3__role {
    font-family: 'Sora', sans-serif;
    font-size: clamp(.95rem, 2.2vw, 1.2rem);
    color: var(--accent);
    margin: 0 0 1.2rem;
    letter-spacing: .04em;
    font-weight: 600;
}

.hero-v3__lead {
    color: var(--muted);
    font-size: clamp(.95rem, 1.8vw, 1.05rem);
    line-height: 1.75;
    max-width: 58ch;
    margin-bottom: 1.5rem;
}

.hero-v3__tags {
    display: flex;
    flex-wrap: wrap;
    gap: .45rem;
    margin-bottom: 1.8rem;
}
.hero-v3__tags span {
    padding: .28rem .72rem;
    border-radius: 999px;
    font-size: .8rem;
    font-weight: 600;
    border: 1px solid rgba(255,255,255,.18);
    background: rgba(255,255,255,.06);
    color: var(--muted);
    transition: border-color .2s, color .2s;
}
.hero-v3__tags span:hover {
    border-color: var(--accent);
    color: var(--accent);
}

.hero-v3__cta {
    display: flex;
    flex-wrap: wrap;
    gap: .7rem;
}

.hero-v3__card-wrap {
    animation: heroFadeUp .7s ease .18s both;
}

.hero-v3__card {
    background:
        linear-gradient(145deg, rgba(255,255,255,.12) 0%, rgba(0,184,255,.08) 100%),
        rgba(255,255,255,.06);
    border: 1px solid rgba(255,255,255,.18);
    border-radius: 24px;
    box-shadow: 0 24px 60px rgba(0,0,0,.35), inset 0 1px 0 rgba(255,255,255,.12);
    backdrop-filter: blur(12px);
    padding: 2rem 1.8rem;
    width: 100%;
    max-width: 340px;
    text-align: center;
}

.hero-v3__avatar {
    width: 80px; height: 80px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--accent), var(--accent-2));
    color: #04202d;
    font-family: 'Sora', sans-serif;
    font-weight: 700;
    font-size: 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.1rem;
    box-shadow: 0 8px 28px rgba(38,215,168,.35);
    overflow: hidden;
    flex-shrink: 0;
}

.hero-v3__card-name {
    font-family: 'Sora', sans-serif;
    font-weight: 700;
    font-size: 1.05rem;
    color: var(--text);
    margin: 0 0 .2rem;
}
.hero-v3__card-title {
    color: var(--accent);
    font-size: .85rem;
    font-weight: 600;
    letter-spacing: .04em;
    margin: 0 0 1.4rem;
}

.hero-v3__stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: .5rem;
    margin-bottom: 1.4rem;
}
.hero-v3__stat {
    background: rgba(255,255,255,.05);
    border: 1px solid rgba(255,255,255,.12);
    border-radius: 12px;
    padding: .6rem .3rem;
}
.hero-v3__stat strong {
    display: block;
    font-family: 'Sora', sans-serif;
    font-size: 1rem;
    color: var(--accent);
    line-height: 1.1;
}
.hero-v3__stat span {
    font-size: .72rem;
    color: var(--muted);
}

.hero-v3__card-status {
    display: inline-flex;
    align-items: center;
    gap: .4rem;
    font-size: .82rem;
    color: var(--muted);
    background: rgba(255,255,255,.04);
    border: 1px solid rgba(255,255,255,.12);
    border-radius: 999px;
    padding: .3rem .8rem;
}

@media (max-width: 575px) {
    .hero-v3 { padding: 3rem 0 2.5rem; }
    .hero-v3__card { max-width: 100%; }
}
@media (min-width: 992px) {
    .hero-v3 { padding: 6.5rem 0 5rem; }
}
/* ─── end Hero v3 ───────────────────────────────────────────── */

.home-v2 .home-v2-panel,
.home-v2 .home-v2-card {
    background:
        linear-gradient(160deg, rgba(255, 255, 255, 0.11), rgba(0, 184, 255, 0.08)),
        var(--surface);
    border: 1px solid rgba(255, 255, 255, 0.16);
    border-radius: var(--radius);
    box-shadow: var(--shadow);
    padding: 1.1rem;
}

.home-v2 .home-v2-kpi,
.home-v2 .home-v2-chip {
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.18);
    background: rgba(255, 255, 255, 0.04);
    padding: 0.72rem;
    height: 100%;
}

.home-v2 .home-v2-kpi strong,
.home-v2 .home-v2-chip strong {
    display: block;
    color: var(--accent);
    font-family: 'Sora', sans-serif;
    font-size: clamp(1rem, 2.4vw, 1.25rem);
}

.home-v2 .home-v2-kpi span,
.home-v2 .home-v2-chip span {
    color: var(--muted);
    font-size: 0.84rem;
}

.home-v2 .accordion {
    --bs-accordion-bg: transparent;
    --bs-accordion-btn-bg: transparent;
    --bs-accordion-active-bg: rgba(255, 255, 255, 0.04);
}

.home-v2 .accordion-item {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.12) !important;
    border-radius: 12px !important;
    overflow: hidden;
    margin-bottom: 0.55rem;
}

.home-v2 .accordion-button {
    background: transparent !important;
    color: var(--text) !important;
    box-shadow: none !important;
    font-weight: 700;
    font-size: 1rem;
}

.home-v2 .accordion-button:not(.collapsed) {
    color: var(--accent) !important;
    background: rgba(255, 255, 255, 0.03) !important;
}

.home-v2 .accordion-body {
    color: var(--muted);
    padding-top: 0.2rem;
}

.home-v2 .lead {
    max-width: 72ch;
}

@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        animation-duration: 0.001ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.001ms !important;
        scroll-behavior: auto !important;
    }

    html.js-anim [data-reveal] {
        opacity: 1;
        transform: none;
    }
}

@media (min-width: 520px) {
    .cards-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .portfolio-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (min-width: 760px) {
    .nav-toggle {
        display: none;
    }

    .section {
        padding: 3.5rem 0;
    }

    .hero {
        padding-top: 5rem;
    }

    .hero-card,
    .price-card,
    .tile,
    .contact-form-wrap,
    .contact-info,
    .table-wrap {
        padding: 1.3rem;
    }

    .site-nav {
        position: static;
        background: transparent;
        border: 0;
        display: flex;
        flex-direction: row;
        padding: 0;
        gap: 0.4rem;
    }

    .hero-grid {
        grid-template-columns: 1.1fr 0.9fr;
        align-items: stretch;
        gap: 2rem;
    }

    .cards-grid {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }

    .portfolio-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .contact-grid {
        grid-template-columns: 0.9fr 1.1fr;
    }

    .split {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .stats {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }

    .home-v2 .home-v2-panel,
    .home-v2 .home-v2-card {
        padding: 1.35rem;
    }
}

/* ===========================
   COOKIE CONSENT BANNER
   =========================== */
#cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 9999;
    background: rgba(7,20,33,.97);
    border-top: 1px solid rgba(38,215,168,.25);
    padding: 1rem 1.5rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1.5rem;
    flex-wrap: wrap;
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
}

.cookie-banner__text {
    font-size: .85rem;
    color: var(--muted);
    margin: 0;
    flex: 1;
    min-width: 200px;
}

.cookie-banner__text a {
    color: var(--accent);
    text-underline-offset: 2px;
}

.cookie-banner__btns {
    display: flex;
    gap: .6rem;
    flex-shrink: 0;
}

.cookie-btn {
    font-size: .82rem;
    font-weight: 700;
    padding: .45rem 1.2rem;
    border-radius: 8px;
    border: none;
    cursor: pointer;
    transition: opacity .2s;
    font-family: inherit;
}

.cookie-btn:hover { opacity: .82; }

.cookie-btn--accept {
    background: var(--accent);
    color: #04202d;
}

.cookie-btn--reject {
    background: transparent;
    border: 1px solid rgba(255,255,255,.2);
    color: var(--muted);
}

@media (max-width: 576px) {
    #cookie-banner { flex-direction: column; align-items: flex-start; }
    .cookie-banner__btns { width: 100%; }
    .cookie-btn { flex: 1; text-align: center; }
}