:root {
    --navy: #0b1e3b;
    --navy-2: #102a52;
    --navy-3: #173866;
    --blue: #1e5fbe;
    --accent: #ff7a18;
    --accent-dark: #e96000;
    --accent-soft: #fff3e9;
    --ink: #12223a;
    --paper: #f5f7fa;
    --paper-2: #eaf0f6;
    --white: #ffffff;
    --lime: #ff7a18;
    --violet: #1e5fbe;
    --coral: #ff7a18;
    --sky: #dbeaff;
    --muted: #627087;
    --line: rgba(15, 39, 72, .12);
    --display: "Plus Jakarta Sans", sans-serif;
    --body: "Manrope", sans-serif;
    --container: min(1280px, calc(100% - 48px));
    --radius-xl: 28px;
    --radius-lg: 20px;
    --radius-md: 13px;
    --shadow: 0 22px 70px rgba(10, 35, 68, .12);
}

*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body { margin: 0; overflow-x: hidden; background: var(--white); color: var(--ink); font-family: var(--body); font-size: 15px; line-height: 1.7; }
body.menu-open { overflow: hidden; }
::selection { background: var(--accent); color: var(--white); }
img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button, input, select, textarea { font: inherit; }
button { color: inherit; }
.container { width: var(--container); margin-inline: auto; }
.section { padding: 104px 0; }
.section--compact { padding: 76px 0 96px; }
.section--navy, .section--dark { background: var(--navy); color: var(--white); }
.section--white { background: var(--white); }
.section--soft { background: var(--paper); }
.section--violet { background: linear-gradient(135deg, var(--navy), var(--navy-2)); color: var(--white); }
.section--accent-soft { background: var(--accent-soft); }

.skip-link { position: fixed; z-index: 9999; top: 12px; left: 12px; padding: 11px 16px; background: var(--accent); color: var(--white); transform: translateY(-150%); transition: transform .2s ease; }
.skip-link:focus { transform: translateY(0); }

/* Header */
.utility-bar { border-top: 3px solid var(--accent); border-bottom: 1px solid var(--line); background: #fbfcfd; color: #657388; font-size: 11px; }
.utility-bar__inner { min-height: 39px; display: flex; align-items: center; justify-content: space-between; gap: 25px; }
.utility-links { display: flex; align-items: center; gap: 24px; }
.utility-links a, .utility-links span { display: inline-flex; align-items: center; gap: 7px; }
.utility-links a { transition: color .2s ease; }
.utility-links a:hover { color: var(--accent-dark); }
.utility-icon { display: grid; place-items: center; width: 18px; height: 18px; border-radius: 50%; background: var(--accent-soft); color: var(--accent-dark); font-size: 10px; font-weight: 800; }
.status-dot { display: inline-block; width: 7px; height: 7px; border-radius: 50%; background: #25b46b; box-shadow: 0 0 0 4px rgba(37,180,107,.11); }

.site-header { position: sticky; top: 0; z-index: 1000; border-bottom: 1px solid var(--line); background: rgba(255,255,255,.96); backdrop-filter: blur(15px); transition: box-shadow .25s ease; }
.site-header.is-scrolled { box-shadow: 0 12px 35px rgba(11,30,59,.08); }
.header-inner { min-height: 86px; display: grid; grid-template-columns: auto 1fr auto; align-items: center; gap: 48px; }
.brand { display: inline-flex; align-items: center; width: max-content; gap: 12px; }
.brand-symbol { position: relative; width: 42px; height: 42px; flex: 0 0 42px; overflow: hidden; border-radius: 13px; background: linear-gradient(145deg, #102f5b, #071831); box-shadow: 0 10px 24px rgba(11,30,59,.2), inset 0 1px 0 rgba(255,255,255,.16); transform: rotate(-4deg); }
.brand-symbol::before { content: ""; position: absolute; right: -8px; bottom: -10px; width: 26px; height: 26px; border-radius: 50%; border: 5px solid rgba(255,255,255,.08); }
.brand-symbol::after { content: ""; position: absolute; left: 9px; top: 9px; width: 17px; height: 5px; border-radius: 5px; background: #fff; box-shadow: 0 9px 0 #fff, 0 18px 0 #fff; }
.brand-symbol i { position: absolute; z-index: 2; right: 8px; width: 8px; height: 8px; border-radius: 3px; background: var(--accent); box-shadow: 0 4px 10px rgba(255,122,24,.32); }
.brand-symbol i:first-child { top: 8px; }
.brand-symbol i:nth-child(2) { bottom: 8px; opacity: .48; }
.brand-symbol b { position: absolute; z-index: 3; right: 7px; top: 17px; width: 11px; height: 11px; border: 3px solid #071831; border-radius: 50%; background: #ff9a50; }
.brand-mark { position: relative; display: inline-grid; grid-template-columns: repeat(2, 13px); gap: 3px; transform: skew(-7deg); }
.brand-mark i { display: block; height: 31px; border-radius: 4px 10px 4px 10px; background: var(--navy); }
.brand-mark i:last-child { background: var(--accent); transform: translateY(4px); }
.brand-word { color: var(--navy); font-family: var(--display); font-size: 26px; font-weight: 800; line-height: 1; letter-spacing: -.075em; }
.brand-word span { margin-left: 3px; color: var(--accent); font-weight: 650; }
.brand-custom-logo { display: block; width: auto; max-width: 190px; height: 44px; object-fit: contain; }
.desktop-nav { display: flex; justify-content: center; align-items: center; gap: 32px; }
.desktop-nav a { position: relative; padding: 30px 0; color: #40506a; font-size: 13px; font-weight: 600; }
.desktop-nav a::after { content: ""; position: absolute; left: 0; right: 0; bottom: 20px; height: 2px; border-radius: 2px; background: var(--accent); transform: scaleX(0); transition: transform .25s ease; }
.desktop-nav a:hover, .desktop-nav a[aria-current="page"] { color: var(--navy); }
.desktop-nav a:hover::after, .desktop-nav a[aria-current="page"]::after { transform: scaleX(1); }
.header-actions { display: flex; align-items: center; gap: 14px; }
.header-phone { display: grid; grid-template-columns: 32px auto; column-gap: 9px; align-items: center; padding-right: 16px; border-right: 1px solid var(--line); line-height: 1.2; }
.header-phone > span { grid-row: 1 / 3; display: grid; place-items: center; width: 32px; height: 32px; border: 1px solid var(--line); border-radius: 9px; color: var(--accent); }
.header-phone small { color: var(--muted); font-size: 9px; }
.header-phone strong { color: var(--navy); font-size: 11px; white-space: nowrap; }
.button { display: inline-flex; align-items: center; justify-content: center; gap: 10px; min-height: 50px; padding: 0 21px; border: 1px solid transparent; border-radius: 9px; font-size: 13px; font-weight: 800; line-height: 1; cursor: pointer; transition: transform .2s ease, box-shadow .2s ease, background .2s ease, border-color .2s ease; }
.button:hover { transform: translateY(-2px); }
.button span { font-size: 17px; }
.button--accent, .button--lime { background: var(--accent); color: var(--white); box-shadow: 0 10px 25px rgba(255,122,24,.22); }
.button--accent:hover, .button--lime:hover { background: var(--accent-dark); box-shadow: 0 14px 30px rgba(255,122,24,.3); }
.button--dark { background: var(--navy); color: var(--white); box-shadow: 0 10px 25px rgba(11,30,59,.18); }
.button--dark:hover { background: var(--navy-2); }
.button--light { background: var(--white); color: var(--navy); }
.button--outline { border-color: rgba(255,255,255,.35); background: transparent; color: var(--white); }
.button--outline:hover { border-color: var(--white); background: rgba(255,255,255,.08); }
.button--outline-dark { border-color: var(--line); background: var(--white); color: var(--navy); }
.button--wide { width: 100%; }
.menu-toggle, .mobile-menu { display: none; }

/* Hero */
.hero { position: relative; overflow: hidden; min-height: 646px; background: linear-gradient(118deg, #091a35 0%, #0d2650 58%, #102f60 100%); color: var(--white); }
.hero-pattern { position: absolute; inset: 0; opacity: .72; background-image: repeating-linear-gradient(135deg, transparent 0, transparent 25px, rgba(255,255,255,.055) 26px, rgba(255,255,255,.055) 27px); }
.hero::after { content: ""; position: absolute; right: -170px; bottom: -330px; width: 680px; height: 680px; border: 1px solid rgba(255,255,255,.1); border-radius: 50%; box-shadow: 0 0 0 80px rgba(255,255,255,.018), 0 0 0 160px rgba(255,255,255,.012); }
.hero-shell { position: relative; z-index: 2; }
.hero-grid { min-height: 646px; display: grid; grid-template-columns: 1.02fr .98fr; align-items: center; gap: 85px; padding: 70px 0; }
.hero-copy { position: relative; z-index: 3; }
.hero-label { display: inline-flex; align-items: center; gap: 10px; margin-bottom: 24px; color: #c7d4e8; font-size: 11px; font-weight: 800; letter-spacing: .1em; text-transform: uppercase; }
.hero-label i { width: 27px; height: 2px; background: var(--accent); }
.hero h1 { max-width: 720px; margin: 0; font-family: var(--display); font-size: clamp(48px, 5.25vw, 73px); font-weight: 700; line-height: 1.07; letter-spacing: -.045em; }
.hero h1 span { color: var(--accent); }
.hero-copy > p { max-width: 640px; margin: 28px 0 31px; color: #b9c7da; font-size: 17px; line-height: 1.75; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 12px; }
.hero-principles { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; margin-top: 44px; padding-top: 26px; border-top: 1px solid rgba(255,255,255,.14); }
.hero-principles div { position: relative; padding-left: 34px; }
.hero-principles span { position: absolute; left: 0; top: 0; display: grid; place-items: center; width: 24px; height: 24px; border: 1px solid rgba(255,122,24,.55); border-radius: 6px; color: var(--accent); font-size: 8px; font-weight: 800; }
.hero-principles strong, .hero-principles small { display: block; }
.hero-principles strong { font-size: 11px; }
.hero-principles small { margin-top: 3px; color: #8091aa; font-size: 9px; }
.hero-visual { position: relative; min-height: 480px; }
.hero-orbit { position: absolute; z-index: -1; inset: 22px -60px auto 40px; height: 390px; border: 1px solid rgba(255,255,255,.1); border-radius: 50%; transform: rotate(-8deg); }
.dashboard-card { position: absolute; top: 37px; right: 5px; width: min(510px, 93%); overflow: hidden; border: 1px solid rgba(255,255,255,.15); border-radius: 13px; background: rgba(25,58,105,.84); box-shadow: 0 35px 80px rgba(0,0,0,.3); backdrop-filter: blur(15px); transform: perspective(1000px) rotateY(-4deg) rotateZ(1.5deg); }
.dashboard-top { height: 48px; display: grid; grid-template-columns: 1fr auto 1fr; align-items: center; padding: 0 17px; border-bottom: 1px solid rgba(255,255,255,.1); background: rgba(255,255,255,.035); }
.dashboard-top > div { display: flex; gap: 6px; }
.dashboard-top i { width: 8px; height: 8px; border-radius: 50%; background: #ff7367; }
.dashboard-top i:nth-child(2) { background: #ffbd3e; }
.dashboard-top i:nth-child(3) { background: #31c76a; }
.dashboard-top > span { color: #9fb0c9; font-size: 9px; font-weight: 800; letter-spacing: .09em; }
.dashboard-top em { justify-self: end; display: flex; align-items: center; gap: 6px; color: #93a6c1; font-size: 8px; font-style: normal; }
.dashboard-top em b { width: 6px; height: 6px; border-radius: 50%; background: #31c76a; }
.dashboard-body { position: relative; min-height: 330px; padding: 44px 38px; overflow: hidden; background: linear-gradient(145deg, rgba(255,255,255,.045), transparent 55%); }
.dashboard-body::after { content: "ENB"; position: absolute; right: -16px; top: 7px; color: rgba(255,255,255,.035); font-family: var(--display); font-size: 145px; font-weight: 800; letter-spacing: -.1em; }
.dashboard-kicker { color: var(--accent); font-size: 9px; font-weight: 800; letter-spacing: .14em; }
.dashboard-body h3 { position: relative; z-index: 2; margin: 18px 0 12px; font-family: var(--display); font-size: 46px; line-height: 1.06; letter-spacing: -.045em; }
.dashboard-body p { color: #8fa3c0; font-size: 9px; font-weight: 700; letter-spacing: .08em; }
.dashboard-chart { position: absolute; right: 34px; bottom: 39px; width: 175px; height: 100px; display: flex; align-items: end; gap: 7px; padding: 13px; border-left: 1px solid rgba(255,255,255,.1); border-bottom: 1px solid rgba(255,255,255,.1); }
.dashboard-chart span { flex: 1; border-radius: 3px 3px 0 0; background: linear-gradient(var(--accent), #ff9e51); box-shadow: 0 0 14px rgba(255,122,24,.18); }
.dashboard-foot { display: grid; grid-template-columns: repeat(3, 1fr); border-top: 1px solid rgba(255,255,255,.1); }
.dashboard-foot span { padding: 12px; border-left: 1px solid rgba(255,255,255,.1); color: #8fa3c0; font-size: 8px; font-weight: 700; text-align: center; text-transform: uppercase; }
.dashboard-foot span:first-child { border-left: 0; }
.floating-proof { position: absolute; z-index: 4; display: flex; align-items: center; gap: 10px; min-width: 185px; padding: 12px 15px; border: 1px solid rgba(255,255,255,.18); background: rgba(255,255,255,.11); box-shadow: 0 18px 35px rgba(0,0,0,.2); backdrop-filter: blur(12px); }
.floating-proof > span { display: grid; place-items: center; width: 32px; height: 32px; border-radius: 8px; background: var(--accent); color: var(--white); font-weight: 800; }
.floating-proof strong, .floating-proof small { display: block; }
.floating-proof strong { font-size: 11px; }
.floating-proof small { color: #93a5bf; font-size: 8px; }
.proof--top { right: -25px; top: 8px; }
.proof--bottom { left: -23px; bottom: 27px; }

/* Blog */
.blog-hero { position: relative; min-height: 520px; overflow: hidden; background: linear-gradient(125deg, #081a35, #0d2b55 64%, #174477); color: var(--white); }
.blog-hero::after { content: "ENB"; position: absolute; right: -35px; bottom: -105px; color: rgba(255,255,255,.035); font-family: var(--display); font-size: 315px; font-weight: 800; line-height: 1; letter-spacing: -.11em; }
.blog-hero__pattern { position: absolute; inset: 0; opacity: .55; background-image: repeating-linear-gradient(135deg, transparent 0, transparent 28px, rgba(255,255,255,.045) 29px, rgba(255,255,255,.045) 30px); }
.blog-hero__grid { position: relative; z-index: 2; min-height: 520px; display: grid; grid-template-columns: 1.2fr .8fr; align-items: center; gap: 90px; padding-block: 75px; }
.blog-hero h1 { margin: 0; font-family: var(--display); font-size: clamp(54px, 6vw, 82px); font-weight: 700; line-height: 1.02; letter-spacing: -.06em; }
.blog-hero h1 span { color: var(--accent); }
.blog-hero__aside { position: relative; max-width: 480px; padding: 34px; border: 1px solid rgba(255,255,255,.15); border-radius: 18px; background: rgba(255,255,255,.055); box-shadow: 0 28px 65px rgba(0,0,0,.18); backdrop-filter: blur(14px); }
.blog-hero__aside > span { color: var(--accent); font-size: 8px; font-weight: 800; letter-spacing: .18em; }
.blog-hero__aside > p { margin: 25px 0 36px; color: #b9c7da; font-size: 16px; }
.blog-hero__aside > div { display: flex; align-items: end; gap: 12px; padding-top: 22px; border-top: 1px solid rgba(255,255,255,.14); }
.blog-hero__aside b { color: var(--accent); font-family: var(--display); font-size: 52px; line-height: .8; }
.blog-hero__aside small { color: #91a4bf; font-size: 10px; }
.blog-toolbar { display: flex; align-items: end; justify-content: space-between; gap: 35px; margin-bottom: 42px; }
.blog-toolbar .eyebrow { margin-bottom: 10px; }
.blog-toolbar h2 { margin: 0; color: var(--navy); font-family: var(--display); font-size: 42px; line-height: 1; letter-spacing: -.045em; }
.blog-categories { display: flex; flex-wrap: wrap; justify-content: flex-end; gap: 7px; }
.blog-categories a { display: inline-flex; align-items: center; gap: 7px; padding: 9px 13px; border: 1px solid var(--line); border-radius: 999px; color: var(--muted); font-size: 10px; font-weight: 800; transition: background .2s ease, color .2s ease, border-color .2s ease; }
.blog-categories a:hover, .blog-categories a.is-active { border-color: var(--navy); background: var(--navy); color: #fff; }
.blog-categories a span { display: grid; place-items: center; min-width: 18px; height: 18px; padding-inline: 4px; border-radius: 9px; background: var(--paper-2); color: var(--navy); font-size: 8px; }
.blog-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.blog-card { display: flex; flex-direction: column; overflow: hidden; border: 1px solid var(--line); border-radius: 17px; background: var(--white); box-shadow: 0 15px 42px rgba(11,30,59,.055); transition: transform .25s ease, box-shadow .25s ease; }
.blog-card:hover { transform: translateY(-6px); box-shadow: var(--shadow); }
.blog-card--featured { grid-column: span 2; display: grid; grid-template-columns: 1.08fr .92fr; min-height: 430px; }
.blog-card__cover { position: relative; min-height: 255px; overflow: hidden; background: var(--navy); }
.blog-card--featured .blog-card__cover { min-height: 100%; }
.blog-card__cover img { width: 100%; height: 100%; object-fit: cover; transition: transform .5s ease; }
.blog-card:hover .blog-card__cover img { transform: scale(1.04); }
.blog-cover-art { position: absolute; inset: 0; overflow: hidden; display: flex; align-items: end; justify-content: space-between; padding: 25px; background: radial-gradient(circle at 78% 20%, rgba(255,122,24,.58), transparent 31%), linear-gradient(135deg, #0b2143, #174d88); color: #fff; }
.blog-cover-art::before { content: ""; position: absolute; width: 230px; height: 230px; right: -50px; top: -75px; border: 1px solid rgba(255,255,255,.18); border-radius: 50%; box-shadow: 0 0 0 38px rgba(255,255,255,.035), 0 0 0 76px rgba(255,255,255,.02); }
.blog-cover-art::after { content: ""; position: absolute; inset: 0; background-image: linear-gradient(rgba(255,255,255,.035) 1px, transparent 1px), linear-gradient(90deg, rgba(255,255,255,.035) 1px, transparent 1px); background-size: 28px 28px; mask-image: linear-gradient(135deg, #000, transparent 75%); }
.blog-cover-art i { position: relative; z-index: 2; font-family: var(--display); font-size: 55px; font-style: normal; font-weight: 800; letter-spacing: -.09em; }
.blog-cover-art b { position: absolute; z-index: 2; right: 25px; top: 22px; color: rgba(255,255,255,.28); font-family: var(--display); font-size: 64px; line-height: 1; }
.blog-cover-art em { position: relative; z-index: 2; color: var(--accent); font-size: 8px; font-style: normal; font-weight: 800; letter-spacing: .16em; }
.blog-card__body { flex: 1; display: flex; flex-direction: column; padding: 27px; }
.blog-card--featured .blog-card__body { justify-content: center; padding: 42px; }
.blog-card__meta { display: flex; align-items: center; justify-content: space-between; gap: 12px; margin-bottom: 18px; color: #8898ad; font-size: 8px; font-weight: 700; text-transform: uppercase; }
.blog-card__meta a { color: var(--accent-dark); font-weight: 800; letter-spacing: .06em; }
.blog-card h2 { margin: 0 0 14px; color: var(--navy); font-family: var(--display); font-size: 25px; line-height: 1.2; letter-spacing: -.035em; }
.blog-card--featured h2 { font-size: clamp(30px, 3vw, 43px); line-height: 1.1; }
.blog-card p { margin: 0 0 24px; color: var(--muted); font-size: 12px; }
.blog-card__link { display: inline-flex; align-items: center; gap: 10px; width: max-content; margin-top: auto; color: var(--navy); font-size: 11px; font-weight: 800; }
.blog-card__link span { display: grid; place-items: center; width: 29px; height: 29px; border-radius: 50%; background: var(--accent); color: #fff; }
.blog-empty { min-height: 390px; display: grid; place-items: center; align-content: center; padding: 50px; border: 1px dashed rgba(11,30,59,.2); border-radius: 20px; background: var(--paper); text-align: center; }
.blog-empty > span { margin-bottom: 12px; color: rgba(11,30,59,.08); font-family: var(--display); font-size: 90px; font-weight: 800; line-height: .8; letter-spacing: -.09em; }
.blog-empty h2 { margin: 0; font-family: var(--display); font-size: 34px; }
.blog-empty p { max-width: 520px; margin: 12px 0 24px; color: var(--muted); }
.blog-pagination { display: flex; justify-content: center; gap: 7px; margin-top: 48px; }
.blog-pagination a { display: grid; place-items: center; width: 40px; height: 40px; border: 1px solid var(--line); border-radius: 10px; background: #fff; font-size: 11px; font-weight: 800; }
.blog-pagination a.is-active { border-color: var(--navy); background: var(--navy); color: #fff; }
.blog-not-found { min-height: 540px; display: flex; align-items: center; text-align: center; }
.blog-not-found h1 { margin: 0; color: var(--navy); font-family: var(--display); font-size: clamp(45px, 6vw, 75px); letter-spacing: -.06em; }
.blog-not-found p { margin: 18px 0 27px; color: var(--muted); }

.article-hero { padding: 88px 0; overflow: hidden; background: linear-gradient(135deg, #081b37, #0f315f); color: #fff; }
.article-hero__grid { display: grid; grid-template-columns: 1.05fr .95fr; align-items: center; gap: 85px; }
.article-category { display: inline-flex; margin-bottom: 23px; padding: 8px 11px; border: 1px solid rgba(255,122,24,.42); border-radius: 999px; color: var(--accent); font-size: 8px; font-weight: 800; letter-spacing: .1em; text-transform: uppercase; }
.article-hero h1 { max-width: 800px; margin: 0; font-family: var(--display); font-size: clamp(45px, 5vw, 69px); line-height: 1.05; letter-spacing: -.055em; }
.article-hero__grid > div:first-child > p { max-width: 690px; margin: 26px 0; color: #b7c6d9; font-size: 17px; }
.article-meta { display: flex; flex-wrap: wrap; align-items: center; gap: 11px; color: #879bb6; font-size: 9px; font-weight: 700; text-transform: uppercase; }
.article-meta i { width: 4px; height: 4px; border-radius: 50%; background: var(--accent); }
.article-hero__visual { min-height: 430px; overflow: hidden; border: 1px solid rgba(255,255,255,.14); border-radius: 20px; box-shadow: 0 35px 75px rgba(0,0,0,.25); transform: rotate(2deg); }
.article-hero__visual img { width: 100%; height: 100%; min-height: 430px; object-fit: cover; }
.article-cover-art { position: relative; min-height: 430px; display: flex; flex-direction: column; justify-content: space-between; padding: 38px; overflow: hidden; background: radial-gradient(circle at 82% 20%, rgba(255,122,24,.72), transparent 29%), linear-gradient(145deg, #15457f, #0a1e3c); }
.article-cover-art::after { content: ""; position: absolute; width: 350px; height: 350px; right: -100px; top: -100px; border: 1px solid rgba(255,255,255,.2); border-radius: 50%; box-shadow: 0 0 0 55px rgba(255,255,255,.035); }
.article-cover-art small { color: var(--accent); font-size: 8px; font-weight: 800; letter-spacing: .17em; }
.article-cover-art strong { position: relative; z-index: 2; font-family: var(--display); font-size: 55px; line-height: .9; letter-spacing: -.07em; }
.article-cover-art strong em { color: var(--accent); font-style: normal; }
.article-cover-art > b { color: rgba(255,255,255,.22); font-family: var(--display); font-size: 75px; line-height: .8; }
.article-layout { display: grid; grid-template-columns: 65px minmax(0, 720px) minmax(250px, 330px); justify-content: center; align-items: start; gap: 55px; padding-block: 90px 110px; }
.article-share { position: sticky; top: 130px; display: grid; justify-items: center; gap: 10px; }
.article-share > span { margin-bottom: 5px; color: #9aa8b9; font-size: 7px; font-weight: 800; letter-spacing: .14em; writing-mode: vertical-rl; }
.article-share a { display: grid; place-items: center; width: 37px; height: 37px; border: 1px solid var(--line); border-radius: 50%; color: var(--navy); font-size: 10px; font-weight: 800; }
.article-content { color: #34435a; font-size: 17px; line-height: 1.9; }
.article-content > p:first-child { color: var(--navy); font-size: 21px; font-weight: 600; }
.article-content h2, .article-content h3 { color: var(--navy); font-family: var(--display); letter-spacing: -.04em; }
.article-content h2 { margin: 52px 0 16px; font-size: 35px; line-height: 1.2; }
.article-content h3 { margin: 38px 0 14px; font-size: 26px; }
.article-content p { margin: 0 0 24px; }
.article-content ul { display: grid; gap: 10px; padding: 22px 25px 22px 45px; margin: 25px 0; border-left: 3px solid var(--accent); background: var(--paper); }
.article-content ol { display: grid; gap: 10px; padding: 22px 25px 22px 48px; margin: 25px 0; border-left: 3px solid var(--blue); background: #f4f8fd; }
.article-content strong { color: var(--navy); font-weight: 800; }
.article-content em { color: #536783; }
.article-content a { color: var(--blue); font-weight: 700; text-decoration: underline; text-decoration-color: rgba(32,101,199,.3); text-decoration-thickness: 1px; text-underline-offset: 3px; }
.article-content a:hover { color: var(--accent-dark); text-decoration-color: currentColor; }
.article-content blockquote { padding: 22px 25px; margin: 28px 0; border-left: 4px solid var(--accent); background: linear-gradient(135deg, #fff5eb, #fff); color: var(--navy); font-family: var(--display); font-size: 20px; font-weight: 600; line-height: 1.55; }
.article-content code { padding: 2px 6px; border: 1px solid #dce3eb; border-radius: 5px; background: #f4f7fa; color: #bc4f23; font-family: Consolas, "Courier New", monospace; font-size: .86em; }
.article-content pre { max-width: 100%; padding: 22px; overflow-x: auto; border-radius: 12px; background: #0c213f; color: #d8e5f5; }
.article-content pre code { padding: 0; border: 0; background: transparent; color: inherit; }
.article-content hr { height: 1px; margin: 40px 0; border: 0; background: linear-gradient(90deg, transparent, #ccd6e1, transparent); }
.article-cta { position: sticky; top: 130px; padding: 28px; border-radius: 17px; background: var(--navy); color: #fff; box-shadow: var(--shadow); }
.article-cta > span { color: var(--accent); font-size: 8px; font-weight: 800; letter-spacing: .12em; text-transform: uppercase; }
.article-cta h2 { margin: 18px 0 25px; font-family: var(--display); font-size: 27px; line-height: 1.2; letter-spacing: -.04em; }
.related-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.related-grid article { min-height: 280px; display: flex; flex-direction: column; padding: 27px; border: 1px solid var(--line); border-radius: 16px; background: #fff; }
.related-grid article > span { color: var(--accent-dark); font-size: 8px; font-weight: 800; letter-spacing: .1em; text-transform: uppercase; }
.related-grid h3 { margin: 45px 0 14px; color: var(--navy); font-family: var(--display); font-size: 23px; line-height: 1.2; }
.related-grid p { margin: 0 0 20px; color: var(--muted); font-size: 11px; }
.related-grid article > a { margin-top: auto; color: var(--navy); font-size: 10px; font-weight: 800; }

.trust-strip { border-bottom: 1px solid var(--line); background: var(--white); box-shadow: 0 10px 30px rgba(11,30,59,.04); }
.trust-strip__inner { min-height: 74px; display: flex; align-items: center; justify-content: space-between; gap: 22px; color: #53647b; font-size: 11px; font-weight: 700; white-space: nowrap; }
.trust-strip__inner i { width: 5px; height: 5px; border-radius: 50%; background: var(--accent); }

/* Shared sections */
.eyebrow { display: inline-flex; align-items: center; gap: 10px; margin-bottom: 18px; color: var(--accent-dark); font-size: 10px; font-weight: 800; letter-spacing: .14em; text-transform: uppercase; }
.eyebrow::before { content: ""; width: 24px; height: 2px; background: currentColor; }
.section--navy .eyebrow, .section--dark .eyebrow, .section--violet .eyebrow { color: var(--accent); }
.section-heading { margin: 0; color: var(--navy); font-family: var(--display); font-size: clamp(38px, 4.6vw, 61px); font-weight: 700; line-height: 1.12; letter-spacing: -.045em; }
.section-heading em { color: var(--accent); font-style: normal; }
.section--navy .section-heading, .section--dark .section-heading, .section--violet .section-heading { color: var(--white); }
.section-intro { display: grid; grid-template-columns: minmax(0, 1.1fr) minmax(300px, .55fr); align-items: end; gap: 70px; margin-bottom: 54px; }
.section-intro p { margin: 0; color: var(--muted); font-size: 16px; line-height: 1.8; }
.section--navy .section-intro p, .section--dark .section-intro p, .section--violet .section-intro p { color: #9dafc7; }
.text-link { display: inline-flex; align-items: center; gap: 12px; margin-top: 35px; color: var(--navy); font-weight: 800; }
.text-link span { display: grid; place-items: center; width: 33px; height: 33px; border-radius: 50%; background: var(--accent); color: var(--white); }

.service-list { display: grid; grid-template-columns: repeat(2, 1fr); gap: 18px; }
.service-row { position: relative; min-height: 255px; display: grid; grid-template-columns: 52px 1fr 40px; align-content: start; gap: 0 18px; padding: 28px; overflow: hidden; border: 1px solid var(--line); border-radius: 15px; background: var(--white); box-shadow: 0 12px 35px rgba(12,38,73,.055); transition: border-color .25s ease, transform .25s ease, box-shadow .25s ease; }
.service-row::after { content: ""; position: absolute; right: -58px; top: -58px; width: 130px; height: 130px; border: 1px solid rgba(30,95,190,.09); border-radius: 50%; box-shadow: 0 0 0 25px rgba(30,95,190,.025); }
.service-row:hover { border-color: rgba(255,122,24,.55); transform: translateY(-5px); box-shadow: var(--shadow); }
.service-row__icon { grid-row: 1 / 4; display: grid; place-items: center; width: 52px; height: 52px; border-radius: 12px; background: var(--paper-2); color: var(--blue); font-family: var(--display); font-size: 22px; font-weight: 800; transition: background .25s ease, color .25s ease; }
.service-row:hover .service-row__icon { background: var(--accent); color: var(--white); }
.service-row__no { color: var(--accent-dark); font-size: 9px; font-weight: 800; letter-spacing: .1em; }
.service-row h3 { grid-column: 2 / 4; margin: 20px 0 10px; color: var(--navy); font-family: var(--display); font-size: 24px; line-height: 1.2; letter-spacing: -.025em; }
.service-row p { grid-column: 2 / 4; margin: 0; color: var(--muted); font-size: 13px; }
.service-row__arrow { position: absolute; right: 25px; top: 25px; display: grid; place-items: center; width: 34px; height: 34px; border: 1px solid var(--line); border-radius: 8px; color: var(--navy); transition: background .2s ease, color .2s ease; }
.service-row:hover .service-row__arrow { background: var(--navy); color: var(--white); }

/* Dynamic services showcase */
.service-showcase-grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 18px; }
.service-showcase { --card-bg: #fff; --card-fg: var(--navy); --card-copy: var(--muted); --card-line: var(--line); position: relative; min-height: 380px; display: flex; flex-direction: column; padding: 32px; overflow: hidden; border: 1px solid var(--card-line); border-radius: 22px; background: var(--card-bg); color: var(--card-fg); box-shadow: 0 18px 48px rgba(11,30,59,.07); isolation: isolate; transition: transform .35s ease, box-shadow .35s ease, border-color .35s ease; }
.service-showcase:nth-child(1), .service-showcase:nth-child(6) { min-height: 425px; }
.service-showcase--navy { --card-bg: #0a1d3a; --card-fg: #fff; --card-copy: #9fb0c7; --card-line: rgba(255,255,255,.12); }
.service-showcase--blue { --card-bg: linear-gradient(145deg, #173d74, #102a52); --card-fg: #fff; --card-copy: #b6c7dc; --card-line: rgba(255,255,255,.13); }
.service-showcase--orange { --card-bg: linear-gradient(145deg, #fff7ef, #ffe3cf); --card-fg: var(--navy); --card-copy: #6d6c70; --card-line: rgba(255,122,24,.2); }
.service-showcase:hover { z-index: 2; border-color: rgba(255,122,24,.55); box-shadow: 0 28px 75px rgba(11,30,59,.16); transform: translateY(-7px); }
.service-showcase__glow { position: absolute; z-index: -1; right: -80px; top: -90px; width: 300px; height: 300px; border-radius: 50%; border: 1px solid currentColor; opacity: .08; box-shadow: 0 0 0 43px currentColor, 0 0 0 82px currentColor; }
.service-showcase--orange .service-showcase__glow { background: radial-gradient(circle, rgba(255,122,24,.35), transparent 63%); }
.service-showcase__top { display: flex; align-items: center; justify-content: space-between; gap: 20px; color: var(--accent); font-size: 9px; font-weight: 800; letter-spacing: .13em; text-transform: uppercase; }
.service-showcase__top i { display: grid; place-items: center; width: 47px; height: 47px; border: 1px solid var(--card-line); border-radius: 13px; background: rgba(255,255,255,.08); color: var(--card-fg); font-family: var(--display); font-size: 17px; font-style: normal; letter-spacing: 0; }
.service-showcase__copy { max-width: 520px; margin-top: auto; padding-top: 72px; }
.service-showcase__copy h3 { margin: 0 0 13px; font-family: var(--display); font-size: clamp(31px, 3vw, 46px); line-height: 1.04; letter-spacing: -.052em; }
.service-showcase__copy p { max-width: 500px; margin: 0; color: var(--card-copy); font-size: 13px; }
.service-showcase__features { display: flex; flex-wrap: wrap; gap: 7px; margin-top: 24px; }
.service-showcase__features span { padding: 6px 10px; border: 1px solid var(--card-line); border-radius: 999px; color: var(--card-copy); font-size: 8px; font-weight: 700; }
.service-showcase__foot { display: flex; align-items: center; justify-content: space-between; gap: 20px; padding-top: 20px; margin-top: 26px; border-top: 1px solid var(--card-line); font-size: 10px; font-weight: 800; text-transform: uppercase; letter-spacing: .08em; }
.service-showcase__foot b { display: grid; place-items: center; width: 35px; height: 35px; border-radius: 50%; background: var(--card-fg); color: var(--card-bg); font-size: 15px; transition: transform .3s ease; }
.service-showcase--navy .service-showcase__foot b, .service-showcase--blue .service-showcase__foot b { background: var(--accent); color: #fff; }
.service-showcase--orange .service-showcase__foot b { color: #fff; }
.service-showcase:hover .service-showcase__foot b { transform: rotate(45deg); }
.service-showcase__number { position: absolute; z-index: -1; right: 73px; bottom: -45px; color: currentColor; font-family: var(--display); font-size: 180px; font-weight: 800; line-height: 1; letter-spacing: -.1em; opacity: .025; }

.projects-section { position: relative; overflow: hidden; }
.projects-section::before { content: ""; position: absolute; inset: 0; opacity: .38; background-image: repeating-linear-gradient(135deg, transparent 0, transparent 32px, rgba(255,255,255,.025) 33px, rgba(255,255,255,.025) 34px); }
.projects-section .container { position: relative; z-index: 2; }
.project-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 20px; }
.project-card { position: relative; min-height: 440px; overflow: hidden; border: 1px solid rgba(255,255,255,.12); border-radius: 16px; background: var(--navy-2); color: var(--white); }
.project-card--wide, .project-card:first-child { grid-column: 1 / -1; min-height: 500px; }
.project-art { position: absolute; inset: 0; transition: transform .6s cubic-bezier(.2,.8,.2,1); }
.project-card:hover .project-art { transform: scale(1.03); }
.project-art::before, .project-art::after { content: ""; position: absolute; }
.project-art--a { background: linear-gradient(135deg, #153b70, #1d62af 55%, #ff7a18); }
.project-art--a::before { width: 50%; height: 72%; left: 25%; top: 8%; border: 10px solid rgba(255,255,255,.88); border-radius: 6px; transform: perspective(600px) rotateY(-14deg) rotateZ(-3deg); box-shadow: 0 25px 50px rgba(0,0,0,.25); }
.project-art--a::after { content: "AURA\A CORPORATE"; white-space: pre; right: 7%; top: 19%; color: #fff; font-family: var(--display); font-size: clamp(48px, 7vw, 98px); font-weight: 800; line-height: .82; letter-spacing: -.07em; opacity: .2; }
.project-art--b { background: linear-gradient(145deg, #fff1e6 0%, #ff9a4e 55%, #ee5f00 55%); }
.project-art--b::before { width: 190px; height: 320px; left: 50%; top: 10%; border: 8px solid var(--navy); border-radius: 25px; background: linear-gradient(#fff 0 17%, #153b70 17% 60%, #ff7a18 60%); transform: translateX(-50%) rotate(7deg); box-shadow: 0 28px 55px rgba(11,30,59,.28); }
.project-art--b::after { content: "SOCIAL\A SYSTEM"; white-space: pre; left: 7%; top: 10%; color: var(--navy); font-family: var(--display); font-size: 43px; font-weight: 800; line-height: .85; letter-spacing: -.055em; }
.project-art--c { background: linear-gradient(150deg, #e8f2ff, #87b9f4 45%, #154d91); }
.project-art--c::before { inset: 12% 10%; border: 1px solid rgba(255,255,255,.55); border-radius: 12px; background: rgba(255,255,255,.08); box-shadow: 0 18px 50px rgba(11,30,59,.18); }
.project-art--c::after { content: "MOTTO / DIGITAL\A GROWTH PLATFORM"; white-space: pre; left: 14%; bottom: 18%; color: var(--white); font-family: var(--display); font-size: 30px; font-weight: 700; line-height: 1.15; }

/* Homepage project mockups */
.project-art--webmock { background: radial-gradient(circle at 84% 20%, rgba(255,122,24,.34), transparent 28%), radial-gradient(circle at 10% 90%, rgba(50,132,236,.35), transparent 35%), linear-gradient(135deg, #081b37, #12396b 58%, #0b2448); }
.project-art--webmock::before { inset: 0; background-image: linear-gradient(rgba(255,255,255,.03) 1px, transparent 1px), linear-gradient(90deg, rgba(255,255,255,.03) 1px, transparent 1px); background-size: 36px 36px; mask-image: linear-gradient(to bottom, #000, transparent 85%); }
.project-art--webmock::after { width: 340px; height: 340px; right: -80px; top: -105px; border: 1px solid rgba(255,255,255,.12); border-radius: 50%; box-shadow: 0 0 0 58px rgba(255,255,255,.025), 0 0 0 115px rgba(255,255,255,.018); }
.mock-browser { position: absolute; left: 50%; top: 32px; width: min(73%, 790px); height: 365px; overflow: hidden; border: 1px solid rgba(255,255,255,.28); border-radius: 13px; background: #f7f9fc; box-shadow: 0 34px 75px rgba(0,0,0,.37); transform: translateX(-50%) perspective(1100px) rotateX(2deg) rotateY(-3deg); }
.mock-browser__bar { height: 37px; display: grid; grid-template-columns: 1fr auto 1fr; align-items: center; padding: 0 13px; border-bottom: 1px solid #dce3ed; background: #fff; color: #7c8ca4; }
.mock-browser__bar > span { display: flex; gap: 5px; }
.mock-browser__bar i { width: 7px; height: 7px; border-radius: 50%; background: #ff7859; }
.mock-browser__bar i:nth-child(2) { background: #ffbd3e; }
.mock-browser__bar i:nth-child(3) { background: #35c66b; }
.mock-browser__bar small { font-size: 8px; letter-spacing: .04em; }
.mock-browser__bar b { justify-self: end; display: grid; place-items: center; width: 19px; height: 19px; border-radius: 5px; background: #edf2f8; color: var(--blue); font-size: 10px; }
.mock-browser__page { height: calc(100% - 37px); padding: 19px 24px 0; color: var(--navy); }
.mock-site-nav { height: 25px; display: flex; align-items: center; gap: 13px; }
.mock-site-nav strong { margin-right: auto; font-family: var(--display); font-size: 14px; letter-spacing: -.04em; }
.mock-site-nav strong span { color: var(--accent); font-size: 8px; }
.mock-site-nav > i { width: 35px; height: 3px; border-radius: 3px; background: #dce4ef; }
.mock-site-nav > i:nth-of-type(2) { width: 42px; }
.mock-site-nav b { padding: 7px 10px; border-radius: 5px; background: var(--accent); color: #fff; font-size: 7px; }
.mock-site-hero { min-height: 205px; display: grid; grid-template-columns: 1.1fr .9fr; align-items: center; gap: 15px; padding: 13px 12px 8px 18px; margin-top: 13px; overflow: hidden; border-radius: 9px; background: linear-gradient(135deg, #0b2040 0%, #123967 72%, #1b4e84); color: #fff; }
.mock-site-hero > div:first-child { position: relative; z-index: 2; }
.mock-site-hero small { display: block; color: #ff9e58; font-size: 6px; font-weight: 800; letter-spacing: .12em; }
.mock-site-hero strong { display: block; margin: 14px 0 16px; font-family: var(--display); font-size: clamp(23px, 2.8vw, 38px); line-height: 1.02; letter-spacing: -.055em; }
.mock-site-hero strong em { color: var(--accent); font-style: normal; }
.mock-site-hero > div:first-child > span { display: block; width: 75px; height: 21px; border-radius: 5px; background: var(--accent); box-shadow: 87px 0 0 rgba(255,255,255,.12); }
.mock-site-orbit { position: relative; width: 155px; height: 155px; display: grid; place-items: center; justify-self: center; border: 1px solid rgba(255,255,255,.23); border-radius: 50%; box-shadow: 0 0 0 25px rgba(255,255,255,.04), inset 0 0 38px rgba(41,120,216,.22); }
.mock-site-orbit::before, .mock-site-orbit::after { content: ""; position: absolute; width: 9px; height: 9px; border-radius: 50%; background: var(--accent); box-shadow: 0 0 16px var(--accent); }
.mock-site-orbit::before { left: 6px; top: 38px; }
.mock-site-orbit::after { right: 10px; bottom: 31px; background: #4b9cff; box-shadow: 0 0 16px #4b9cff; }
.mock-site-orbit i { position: absolute; inset: 25px; border: 1px dashed rgba(255,255,255,.2); border-radius: 50%; }
.mock-site-orbit b { font-family: var(--display); font-size: 28px; letter-spacing: -.08em; }
.mock-site-orbit small { position: absolute; bottom: 40px; color: #9fb4d0; letter-spacing: .16em; }
.mock-site-stats { height: 54px; display: grid; grid-template-columns: repeat(3, 1fr); gap: 7px; margin-top: 8px; }
.mock-site-stats span { display: flex; align-items: center; gap: 8px; padding: 8px 11px; border: 1px solid #e2e8f1; border-radius: 7px; background: #fff; color: #8797ac; font-size: 7px; }
.mock-site-stats b { color: var(--navy); font-family: var(--display); font-size: 17px; }
.mock-chip { position: absolute; z-index: 2; display: inline-flex; align-items: center; gap: 5px; padding: 9px 12px; border: 1px solid rgba(255,255,255,.2); border-radius: 9px; background: rgba(8,27,55,.78); box-shadow: 0 12px 30px rgba(0,0,0,.2); color: #c7d5e8; font-size: 8px; font-weight: 700; backdrop-filter: blur(10px); }
.mock-chip b { color: #fff; font-size: 15px; }
.mock-chip i { width: 6px; height: 6px; border-radius: 50%; background: #31da79; box-shadow: 0 0 0 4px rgba(49,218,121,.16); }
.mock-chip--speed { left: 7%; top: 25%; }
.mock-chip--live { right: 6%; top: 34%; }

.project-art--mobilemock { background: radial-gradient(circle at 19% 10%, rgba(255,255,255,.58), transparent 29%), linear-gradient(145deg, #ffd7bd 0%, #ff9850 50%, #f06a0a 100%); }
.project-art--mobilemock::before { width: 260px; height: 260px; right: -100px; top: -90px; border: 1px solid rgba(255,255,255,.28); border-radius: 50%; box-shadow: 0 0 0 42px rgba(255,255,255,.08); }
.project-art--mobilemock::after { inset: 0; background-image: radial-gradient(rgba(11,30,59,.12) 1px, transparent 1px); background-size: 18px 18px; opacity: .35; mask-image: linear-gradient(90deg, #000, transparent 55%); }
.mobile-mock-copy { position: absolute; z-index: 1; left: 7%; top: 11%; color: var(--navy); }
.mobile-mock-copy small { display: block; margin-bottom: 15px; color: #b64300; font-size: 7px; font-weight: 800; letter-spacing: .16em; }
.mobile-mock-copy strong { display: block; font-family: var(--display); font-size: clamp(34px, 4vw, 52px); line-height: .92; letter-spacing: -.07em; }
.mobile-mock-copy span { display: inline-block; margin-top: 18px; padding: 6px 9px; border: 1px solid rgba(11,30,59,.24); border-radius: 999px; font-size: 7px; font-weight: 800; letter-spacing: .08em; }
.mock-phone { position: absolute; z-index: 2; right: 10%; top: 25px; width: 181px; height: 350px; padding: 8px; border: 5px solid #071a36; border-radius: 29px; background: #071a36; box-shadow: 0 30px 55px rgba(11,30,59,.35); transform: rotate(5deg); }
.mock-phone__speaker { position: absolute; z-index: 3; left: 50%; top: 9px; width: 51px; height: 15px; border-radius: 0 0 10px 10px; background: #071a36; transform: translateX(-50%); }
.mock-phone__screen { height: 100%; padding: 29px 13px 13px; overflow: hidden; border-radius: 18px; background: linear-gradient(160deg, #f8fbff, #e9f2ff); color: var(--navy); }
.mock-phone__hello small, .mock-phone__hello b { display: block; }
.mock-phone__hello small { color: #7b8ca5; font-size: 6px; }
.mock-phone__hello b { margin-top: 3px; font-family: var(--display); font-size: 12px; }
.mock-phone__balance { padding: 14px; margin-top: 14px; border-radius: 13px; background: linear-gradient(135deg, #0b2142, #174b84); color: #fff; box-shadow: 0 12px 26px rgba(15,49,91,.25); }
.mock-phone__balance small, .mock-phone__balance strong, .mock-phone__balance span { display: block; }
.mock-phone__balance small { color: #9eb1ca; font-size: 6px; }
.mock-phone__balance strong { margin: 8px 0 4px; font-family: var(--display); font-size: 23px; }
.mock-phone__balance span { color: #4ce18a; font-size: 6px; }
.mock-phone__actions { display: grid; grid-template-columns: repeat(3, 1fr); gap: 7px; margin: 13px 0; }
.mock-phone__actions i { position: relative; height: 43px; border-radius: 10px; background: #fff; box-shadow: 0 7px 16px rgba(11,30,59,.08); }
.mock-phone__actions i::before { content: ""; position: absolute; left: 9px; top: 8px; width: 13px; height: 13px; border-radius: 5px; background: #e9f2ff; }
.mock-phone__actions i:nth-child(2)::before { background: #fff0e5; }
.mock-phone__actions i:nth-child(3)::before { background: #e6f8ed; }
.mock-phone__chart { height: 85px; display: flex; align-items: end; gap: 6px; padding: 13px; border-radius: 12px; background: #fff; }
.mock-phone__chart span { flex: 1; border-radius: 3px 3px 1px 1px; background: #cfe2fa; }
.mock-phone__chart span:nth-child(1) { height: 35%; }.mock-phone__chart span:nth-child(2) { height: 53%; }.mock-phone__chart span:nth-child(3) { height: 45%; }.mock-phone__chart span:nth-child(4) { height: 76%; background: #ffad70; }.mock-phone__chart span:nth-child(5) { height: 93%; background: var(--accent); }
.app-badge { position: absolute; z-index: 3; right: 4%; padding: 7px 9px; border-radius: 7px; background: rgba(7,26,54,.9); color: #fff; font-size: 7px; box-shadow: 0 10px 20px rgba(11,30,59,.23); backdrop-filter: blur(8px); }
.app-badge--ios { top: 27%; }
.app-badge--android { top: 39%; right: 2%; }

.project-art--growthmock { background: radial-gradient(circle at 12% 13%, rgba(255,255,255,.5), transparent 26%), linear-gradient(145deg, #dbeaff 0%, #82b8fa 54%, #17549a 100%); }
.project-art--growthmock::before { inset: 0; background-image: linear-gradient(rgba(255,255,255,.13) 1px, transparent 1px), linear-gradient(90deg, rgba(255,255,255,.13) 1px, transparent 1px); background-size: 29px 29px; mask-image: linear-gradient(120deg, #000, transparent 68%); }
.project-art--growthmock::after { width: 270px; height: 270px; left: -140px; bottom: -145px; border: 1px solid rgba(255,255,255,.3); border-radius: 50%; box-shadow: 0 0 0 35px rgba(255,255,255,.08); }
.growth-heading { position: absolute; z-index: 2; left: 7%; top: 10%; color: var(--navy); }
.growth-heading small { display: block; margin-bottom: 16px; color: #195ba8; font-size: 7px; font-weight: 800; letter-spacing: .16em; }
.growth-heading strong { display: block; font-family: var(--display); font-size: clamp(29px, 3.5vw, 46px); line-height: .94; letter-spacing: -.065em; }
.growth-panel { position: absolute; z-index: 2; right: 5%; top: 43px; width: 58%; height: 285px; padding: 17px; border: 1px solid rgba(255,255,255,.58); border-radius: 14px; background: rgba(247,251,255,.82); box-shadow: 0 27px 52px rgba(11,43,80,.25); color: var(--navy); backdrop-filter: blur(14px); transform: rotate(1.5deg); }
.growth-panel__top { display: flex; justify-content: space-between; align-items: center; padding-bottom: 13px; border-bottom: 1px solid #dce6f3; }
.growth-panel__top span { font-size: 7px; font-weight: 800; letter-spacing: .07em; }
.growth-panel__top span i { display: inline-block; width: 6px; height: 6px; margin-right: 4px; border-radius: 2px; background: var(--accent); }
.growth-panel__top small { color: #8293a9; font-size: 6px; }
.growth-metrics { display: grid; grid-template-columns: repeat(2, 1fr); gap: 7px; margin: 13px 0 10px; }
.growth-metrics > span { position: relative; padding: 9px; border-radius: 8px; background: #fff; box-shadow: 0 6px 15px rgba(15,60,112,.06); }
.growth-metrics small, .growth-metrics b, .growth-metrics em { display: block; }
.growth-metrics small { color: #8494a9; font-size: 6px; }
.growth-metrics b { margin-top: 5px; font-family: var(--display); font-size: 18px; }
.growth-metrics em { position: absolute; right: 8px; top: 9px; color: #15a85c; font-size: 6px; font-style: normal; font-weight: 800; }
.growth-chart { height: 95px; display: flex; align-items: end; gap: 7px; padding: 12px 10px 6px; border-radius: 8px; background: #fff; }
.growth-chart i { flex: 1; min-height: 4px; border-radius: 3px 3px 1px 1px; background: linear-gradient(#4e9af0, #1e62b1); }
.growth-chart i:nth-child(6), .growth-chart i:nth-child(7) { background: linear-gradient(#ffad70, var(--accent)); }
.growth-key { display: flex; gap: 13px; margin-top: 8px; color: #7b8ca3; font-size: 6px; }
.growth-key i { display: inline-block; width: 6px; height: 6px; margin-right: 3px; border-radius: 2px; background: #297bd8; }
.growth-key span:nth-child(2) i { background: var(--accent); }
.search-pill { position: absolute; z-index: 3; left: 8%; top: 54%; display: flex; align-items: center; gap: 9px; padding: 10px 12px; border: 1px solid rgba(255,255,255,.65); border-radius: 9px; background: rgba(255,255,255,.88); box-shadow: 0 12px 28px rgba(13,48,88,.18); color: #53677f; font-size: 7px; backdrop-filter: blur(9px); }
.search-pill b { padding: 4px 6px; border-radius: 5px; background: #e4f7ec; color: #119552; }
.project-content { position: absolute; z-index: 3; left: 24px; right: 24px; bottom: 24px; display: flex; justify-content: space-between; align-items: end; gap: 18px; }
.project-content__text { padding: 17px 19px; border: 1px solid rgba(255,255,255,.13); border-radius: 11px; background: rgba(7,25,49,.84); backdrop-filter: blur(12px); }
.project-content__text > span { display: block; margin-bottom: 4px; color: var(--accent); font-size: 8px; font-weight: 800; letter-spacing: .09em; text-transform: uppercase; }
.project-content h3 { margin: 0 0 4px; font-family: var(--display); font-size: 25px; }
.project-content p { margin: 0; color: #9fb0c8; font-size: 10px; }
.project-tag { padding: 8px 11px; border: 1px solid rgba(255,255,255,.25); border-radius: 999px; background: rgba(7,25,49,.55); color: #d5dfed; font-size: 8px; font-weight: 700; text-transform: uppercase; backdrop-filter: blur(8px); }

.manifesto { position: relative; overflow: hidden; }
.manifesto::after { content: "ENB"; position: absolute; right: -25px; bottom: -130px; color: rgba(11,30,59,.035); font-family: var(--display); font-size: 360px; font-weight: 800; letter-spacing: -.12em; }
.manifesto-grid { position: relative; z-index: 2; display: grid; grid-template-columns: .72fr 1.28fr; align-items: start; gap: 90px; }
.manifesto-card { position: relative; min-height: 430px; padding: 34px; overflow: hidden; border-radius: 17px; background: linear-gradient(145deg, var(--navy), var(--navy-3)); color: var(--white); box-shadow: var(--shadow); }
.manifesto-card::after { content: ""; position: absolute; right: -80px; top: -80px; width: 240px; height: 240px; border: 1px solid rgba(255,255,255,.1); border-radius: 50%; box-shadow: 0 0 0 45px rgba(255,255,255,.02); }
.manifesto-card__tag { color: #8fa3c0; font-size: 8px; font-weight: 800; letter-spacing: .12em; }
.manifesto-card__badge { display: grid; place-items: center; width: 125px; height: 125px; margin: 52px 0 45px; border: 1px solid rgba(255,255,255,.25); border-radius: 50%; background: var(--accent); font-family: var(--display); font-size: 30px; font-weight: 800; text-align: center; }
.manifesto-card__badge small { display: block; font-family: var(--body); font-size: 7px; letter-spacing: .1em; }
.manifesto-card h3 { margin: 0 0 10px; font-family: var(--display); font-size: 23px; }
.manifesto-card p { margin: 0; color: #9eb0c7; font-size: 12px; }
.manifesto-copy h2 { margin: 0 0 38px; color: var(--navy); font-family: var(--display); font-size: clamp(39px, 4.5vw, 59px); line-height: 1.16; letter-spacing: -.045em; }
.manifesto-copy h2 span { color: var(--accent-dark); }
.manifesto-points { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }
.manifesto-point { padding: 18px 0 0; border-top: 2px solid var(--line); }
.manifesto-point strong { display: block; margin-bottom: 6px; color: var(--navy); font-family: var(--display); font-size: 14px; }
.manifesto-point p { margin: 0; color: var(--muted); font-size: 11px; }

.process-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 14px; counter-reset: process; }
.process-card { position: relative; min-height: 290px; padding: 27px; overflow: hidden; border: 1px solid var(--line); border-radius: 14px; background: var(--white); counter-increment: process; transition: transform .25s ease, border-color .25s ease, box-shadow .25s ease; }
.process-card:hover { border-color: rgba(255,122,24,.5); transform: translateY(-5px); box-shadow: var(--shadow); }
.process-card::before { content: "0" counter(process); position: absolute; right: 21px; top: 20px; color: #cbd5e2; font-family: var(--display); font-size: 11px; font-weight: 800; }
.process-icon { display: grid; place-items: center; width: 50px; height: 50px; margin-bottom: 63px; border-radius: 12px; background: var(--paper-2); color: var(--blue); font-family: var(--display); font-size: 20px; font-weight: 800; }
.process-card h3 { margin: 0 0 10px; color: var(--navy); font-family: var(--display); font-size: 19px; letter-spacing: -.02em; }
.process-card p { margin: 0; color: var(--muted); font-size: 12px; }
.corporate-note { display: grid; grid-template-columns: 125px 1fr; align-items: center; gap: 45px; }
.corporate-note__icon { display: grid; place-items: center; width: 110px; height: 110px; border-radius: 17px; background: var(--accent); color: var(--white); font-family: Georgia, serif; font-size: 80px; line-height: 1; }
.corporate-note blockquote { max-width: 1000px; margin: 0 0 18px; color: var(--navy); font-family: var(--display); font-size: clamp(27px, 3.1vw, 43px); font-weight: 600; line-height: 1.35; letter-spacing: -.035em; }
.corporate-note p { margin: 0; color: var(--muted); font-size: 11px; font-weight: 700; }

.faq-list { border-top: 1px solid var(--line); }
.faq-item { border-bottom: 1px solid var(--line); }
.faq-question { width: 100%; display: grid; grid-template-columns: 1fr 42px; align-items: center; gap: 20px; padding: 23px 0; border: 0; background: transparent; text-align: left; cursor: pointer; }
.faq-question span:first-child { color: var(--navy); font-family: var(--display); font-size: 17px; font-weight: 700; }
.faq-icon { display: grid; place-items: center; width: 38px; height: 38px; border: 1px solid var(--line); border-radius: 9px; color: var(--navy); font-size: 18px; transition: transform .25s ease, background .25s ease, color .25s ease; }
.faq-question[aria-expanded="true"] .faq-icon { background: var(--accent); color: var(--white); transform: rotate(45deg); }
.faq-answer { display: grid; grid-template-rows: 0fr; transition: grid-template-rows .3s ease; }
.faq-answer > div { overflow: hidden; }
.faq-answer p { max-width: 820px; margin: 0; padding: 0 0 23px; color: var(--muted); }
.faq-item.is-open .faq-answer { grid-template-rows: 1fr; }

.cta-band { position: relative; overflow: hidden; padding: 58px 0; background: var(--accent); color: var(--white); }
.cta-band::before { content: ""; position: absolute; inset: 0; opacity: .13; background-image: repeating-linear-gradient(135deg, transparent 0, transparent 28px, rgba(255,255,255,.8) 29px, rgba(255,255,255,.8) 30px); }
.cta-band__inner { position: relative; z-index: 2; display: grid; grid-template-columns: 1fr auto; align-items: center; gap: 45px; }
.cta-band h2 { max-width: 900px; margin: 0; font-family: var(--display); font-size: clamp(34px, 4.5vw, 58px); line-height: 1.08; letter-spacing: -.045em; }
.cta-band h2 span { color: var(--navy); }
.cta-round { display: grid; place-items: center; width: 125px; height: 125px; border-radius: 50%; background: var(--navy); color: var(--white); font-family: var(--display); font-size: 11px; font-weight: 800; text-align: center; transition: transform .25s ease, background .25s ease; }
.cta-round:hover { background: var(--navy-2); transform: scale(1.04); }

/* Inner pages */
.page-hero { position: relative; overflow: hidden; padding: 0; background: linear-gradient(118deg, #091a35, #102f60); color: var(--white); }
.page-hero::before { content: ""; position: absolute; inset: 0; opacity: .62; background-image: repeating-linear-gradient(135deg, transparent 0, transparent 28px, rgba(255,255,255,.045) 29px, rgba(255,255,255,.045) 30px); }
.page-hero__shell { position: relative; min-height: 460px; display: flex; align-items: center; padding: 70px 0; overflow: hidden; }
.page-hero__shell::before { content: ""; position: absolute; width: 470px; height: 470px; top: -270px; right: 0; border: 1px solid rgba(255,255,255,.1); border-radius: 50%; box-shadow: 0 0 0 70px rgba(255,255,255,.015); }
.page-hero__shell::after { content: "+"; position: absolute; right: 4%; bottom: -52px; color: rgba(255,122,24,.2); font-family: var(--display); font-size: 240px; font-weight: 300; line-height: 1; }
.page-hero__content { position: relative; z-index: 2; max-width: 1000px; }
.page-hero h1 { margin: 0; font-family: var(--display); font-size: clamp(54px, 7vw, 92px); line-height: 1; letter-spacing: -.055em; }
.page-hero h1 span { color: var(--accent); }
.page-hero p { max-width: 680px; margin: 27px 0 0; color: #b8c7db; font-size: 17px; }
.page-hero__meta { position: absolute; z-index: 2; right: 0; bottom: 45px; color: #8598b3; font-size: 9px; font-weight: 800; letter-spacing: .13em; text-transform: uppercase; writing-mode: vertical-rl; }
.page-hero .hero-label { margin-bottom: 20px; }

.about-lead { display: grid; grid-template-columns: .68fr 1.32fr; align-items: start; gap: 90px; }
.about-lead__aside { position: sticky; top: 135px; }
.about-lead__aside p { max-width: 300px; color: var(--muted); }
.about-lead__body > p { margin: 0 0 35px; color: var(--navy); font-family: var(--display); font-size: clamp(31px, 3.7vw, 50px); line-height: 1.25; letter-spacing: -.04em; }
.about-lead__body > p strong { color: var(--accent-dark); }
.values-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 14px; }
.value-card { min-height: 245px; padding: 27px; border: 1px solid var(--line); border-radius: 14px; background: var(--white); box-shadow: 0 12px 35px rgba(11,30,59,.04); }
.value-card:nth-child(2) { background: var(--accent-soft); }
.value-card:nth-child(3) { background: var(--navy); color: var(--white); }
.value-card__icon { display: grid; place-items: center; width: 43px; height: 43px; margin-bottom: 45px; border: 1px solid currentColor; border-radius: 10px; font-size: 10px; font-weight: 800; }
.value-card h3 { margin: 0 0 9px; font-family: var(--display); font-size: 20px; }
.value-card p { margin: 0; color: var(--muted); font-size: 12px; }
.value-card:nth-child(3) p { color: #9eb0c7; }
.stats-row { display: grid; grid-template-columns: repeat(3, 1fr); border-top: 1px solid rgba(255,255,255,.15); border-bottom: 1px solid rgba(255,255,255,.15); }
.stat { padding: 38px; border-left: 1px solid rgba(255,255,255,.15); }
.stat:first-child { border-left: 0; }
.stat strong { display: block; color: var(--accent); font-family: var(--display); font-size: 48px; line-height: 1; }
.stat span { display: block; margin-top: 9px; color: #9eafc6; }

.services-cards { display: grid; grid-template-columns: repeat(2, 1fr); gap: 17px; }
.service-card { position: relative; min-height: 430px; display: flex; flex-direction: column; padding: 34px; overflow: hidden; border: 1px solid var(--line); border-radius: 19px; background: var(--white); box-shadow: 0 12px 35px rgba(11,30,59,.05); scroll-margin-top: 120px; transition: transform .3s ease, box-shadow .3s ease; }
.service-card:hover { transform: translateY(-6px); box-shadow: 0 24px 58px rgba(11,30,59,.13); }
.service-card--navy { background: var(--navy); color: var(--white); }
.service-card--orange { background: var(--accent-soft); }
.service-card--blue { background: var(--navy-2); color: var(--white); }
.service-card__no { display: block; margin-bottom: 58px; color: var(--accent-dark); font-size: 9px; font-weight: 800; letter-spacing: .1em; }
.service-card--navy .service-card__no, .service-card--blue .service-card__no { color: var(--accent); }
.service-card__icon { position: absolute; right: 30px; top: 29px; display: grid; place-items: center; width: 46px; height: 46px; border: 1px solid currentColor; border-radius: 12px; font-family: var(--display); font-size: 16px; font-weight: 800; opacity: .7; }
.service-card h2 { margin: 0 0 15px; font-family: var(--display); font-size: clamp(29px, 3vw, 42px); line-height: 1.12; letter-spacing: -.035em; }
.service-card p { max-width: 530px; margin: 0 0 22px; color: var(--muted); }
.service-card--navy p, .service-card--blue p { color: #a9bad0; }
.service-card ul { display: flex; flex-wrap: wrap; gap: 7px; padding: 0; margin: 0; list-style: none; }
.service-card li { padding: 6px 10px; border: 1px solid currentColor; border-radius: 999px; font-size: 9px; font-weight: 700; opacity: .7; }
.service-card__shape { position: absolute; right: -55px; top: -55px; width: 175px; height: 175px; border: 1px solid currentColor; border-radius: 50%; opacity: .1; }
.service-card__shape::after { content: ""; position: absolute; inset: 29px; border: 1px solid currentColor; border-radius: 50%; }
.service-card__link { display: flex; align-items: center; justify-content: space-between; gap: 20px; padding-top: 19px; margin-top: auto; border-top: 1px solid currentColor; font-size: 9px; font-weight: 800; letter-spacing: .08em; text-transform: uppercase; opacity: .65; }
.service-card__link b { font-size: 17px; }

/* Service detail */
.service-hero { position: relative; min-height: 680px; overflow: hidden; background: #091a35; color: #fff; }
.service-hero--orange { background: linear-gradient(125deg, #fff5eb 0%, #ffe2c9 100%); color: var(--navy); }
.service-hero--light { background: linear-gradient(125deg, #f8fafc 0%, #eaf0f7 100%); color: var(--navy); }
.service-hero--blue { background: linear-gradient(125deg, #102a52, #1d579d); }
.service-hero__grid { position: absolute; inset: 0; opacity: .3; background-image: linear-gradient(rgba(255,255,255,.055) 1px, transparent 1px), linear-gradient(90deg, rgba(255,255,255,.055) 1px, transparent 1px); background-size: 48px 48px; mask-image: linear-gradient(to right, #000, transparent 84%); }
.service-hero--light .service-hero__grid, .service-hero--orange .service-hero__grid { background-image: linear-gradient(rgba(11,30,59,.07) 1px, transparent 1px), linear-gradient(90deg, rgba(11,30,59,.07) 1px, transparent 1px); }
.breadcrumb { position: relative; z-index: 2; display: flex; flex-wrap: wrap; align-items: center; gap: 10px; padding-top: 30px; color: rgba(255,255,255,.53); font-size: 9px; font-weight: 700; text-transform: uppercase; letter-spacing: .08em; }
.service-hero--light .breadcrumb, .service-hero--orange .breadcrumb { color: rgba(11,30,59,.5); }
.breadcrumb a:hover { color: var(--accent); }
.breadcrumb strong { color: currentColor; }
.service-hero__layout { position: relative; z-index: 2; min-height: 610px; display: grid; grid-template-columns: 1.04fr .96fr; align-items: center; gap: 70px; padding: 55px 0 80px; }
.service-hero__copy { max-width: 750px; }
.service-hero__kicker { display: block; margin-bottom: 24px; color: var(--accent); font-size: 9px; font-weight: 800; letter-spacing: .15em; text-transform: uppercase; }
.service-hero__copy h1 { margin: 0; font-family: var(--display); font-size: clamp(54px, 6.2vw, 86px); line-height: .99; letter-spacing: -.065em; }
.service-hero__copy > p { max-width: 660px; margin: 27px 0 0; color: #afc0d5; font-size: 17px; }
.service-hero--light .service-hero__copy > p, .service-hero--orange .service-hero__copy > p { color: var(--muted); }
.service-hero--light .button--outline, .service-hero--orange .button--outline { border-color: rgba(11,30,59,.25); color: var(--navy); }
.service-hero--light .button--outline:hover, .service-hero--orange .button--outline:hover { border-color: var(--navy); background: var(--navy); color: #fff; }
.service-hero__visual { position: relative; min-height: 470px; display: grid; place-items: center; }
.service-orbit { position: relative; width: 330px; height: 330px; display: grid; place-items: center; border: 1px solid rgba(255,255,255,.18); border-radius: 50%; box-shadow: 0 0 0 45px rgba(255,255,255,.025), 0 0 0 90px rgba(255,255,255,.012); }
.service-hero--light .service-orbit, .service-hero--orange .service-orbit { border-color: rgba(11,30,59,.15); box-shadow: 0 0 0 45px rgba(11,30,59,.025), 0 0 0 90px rgba(11,30,59,.012); }
.service-orbit::before { content: ""; position: absolute; inset: 55px; border: 1px dashed var(--accent); border-radius: 50%; animation: service-spin 22s linear infinite; }
.service-orbit strong { display: grid; place-items: center; width: 112px; height: 112px; border-radius: 30px; background: var(--accent); color: #fff; box-shadow: 0 28px 70px rgba(255,122,24,.35); font-family: var(--display); font-size: 37px; }
.service-orbit > span { position: absolute; width: 12px; height: 12px; border-radius: 50%; background: #fff; box-shadow: 0 0 0 7px rgba(255,255,255,.1); }
.service-hero--light .service-orbit > span, .service-hero--orange .service-orbit > span { background: var(--navy); box-shadow: 0 0 0 7px rgba(11,30,59,.08); }
.service-orbit > span:nth-child(1) { top: 23px; left: 84px; }.service-orbit > span:nth-child(2) { right: 24px; bottom: 87px; }.service-orbit > span:nth-child(3) { left: 31px; bottom: 67px; background: var(--accent); }
.service-signal { position: absolute; z-index: 3; padding: 14px 17px; border: 1px solid rgba(255,255,255,.17); border-radius: 12px; background: rgba(18,42,78,.76); box-shadow: 0 18px 45px rgba(3,13,29,.24); backdrop-filter: blur(12px); }
.service-hero--light .service-signal, .service-hero--orange .service-signal { border-color: rgba(11,30,59,.11); background: rgba(255,255,255,.8); color: var(--navy); }
.service-signal--one { left: 2%; top: 16%; }.service-signal--two { right: 0; bottom: 14%; display: grid; grid-template-columns: 9px 1fr auto; align-items: center; gap: 8px; }
.service-signal small, .service-signal b { display: block; }.service-signal small { color: var(--accent); font-size: 7px; font-weight: 800; letter-spacing: .09em; }.service-signal b { font-family: var(--display); font-size: 13px; }.service-signal--two i { width: 8px; height: 8px; border-radius: 50%; background: #40d37b; box-shadow: 0 0 0 5px rgba(64,211,123,.12); }.service-signal--two span { font-size: 9px; }.service-signal--two b { color: var(--accent); }
.service-hero__ghost { position: absolute; right: -20px; bottom: -40px; color: currentColor; font-family: var(--display); font-size: 230px; font-weight: 800; line-height: 1; opacity: .025; }
@keyframes service-spin { to { transform: rotate(360deg); } }
.service-story__layout { display: grid; grid-template-columns: .78fr 1.22fr; align-items: start; gap: 95px; }
.service-story__aside { position: sticky; top: 135px; }
.service-story__aside h2 { margin: 0; color: var(--navy); font-family: var(--display); font-size: clamp(32px, 3.6vw, 49px); line-height: 1.14; letter-spacing: -.05em; }.service-story__aside h2 em { color: var(--accent-dark); font-style: normal; }
.service-story__line { display: grid; grid-template-columns: 55px 1fr; gap: 18px; margin-top: 35px; }.service-story__line span { height: 2px; margin-top: 11px; background: var(--accent); }.service-story__line p { max-width: 280px; margin: 0; color: var(--muted); font-size: 11px; }
.service-story__content { max-width: 760px; }.service-story__content > p:first-child { color: var(--navy); font-family: var(--display); font-size: clamp(25px, 3vw, 38px); line-height: 1.38; letter-spacing: -.035em; }.service-story__content h2 { margin: 48px 0 12px; color: var(--navy); font-family: var(--display); font-size: 27px; letter-spacing: -.035em; }.service-story__content p { color: var(--muted); }
.service-scope__grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 14px; }
.service-scope__card { min-height: 190px; display: grid; grid-template-columns: 46px 1fr auto; align-items: start; gap: 20px; padding: 27px; border: 1px solid var(--line); border-radius: 16px; background: #fff; transition: transform .25s ease, border-color .25s ease; }.service-scope__card:hover { border-color: rgba(255,122,24,.5); transform: translateY(-4px); }.service-scope__card > span { color: var(--accent-dark); font-size: 9px; font-weight: 800; }.service-scope__card h3 { margin: 0 0 9px; color: var(--navy); font-family: var(--display); font-size: 20px; }.service-scope__card p { margin: 0; color: var(--muted); font-size: 12px; }.service-scope__card > b { display: grid; place-items: center; width: 34px; height: 34px; border: 1px solid var(--line); border-radius: 9px; color: var(--blue); }
.service-process__track { position: relative; display: grid; grid-template-columns: repeat(4, 1fr); gap: 0; }.service-process__track::before { content: ""; position: absolute; left: 10%; right: 10%; top: 22px; height: 1px; background: var(--line); }.service-process__track article { position: relative; padding: 0 28px; }.service-process__track article:first-child { padding-left: 0; }.service-process__track article:last-child { padding-right: 0; }.service-process__track span { position: relative; z-index: 2; display: grid; place-items: center; width: 45px; height: 45px; margin-bottom: 38px; border-radius: 50%; background: var(--navy); color: #fff; font-size: 9px; font-weight: 800; box-shadow: 0 0 0 8px #fff; }.service-process__track article:nth-child(2) span { background: var(--blue); }.service-process__track article:nth-child(3) span { background: var(--accent); }.service-process__track h3 { margin: 0 0 9px; color: var(--navy); font-family: var(--display); font-size: 21px; }.service-process__track p { margin: 0; color: var(--muted); font-size: 12px; }
.service-next { position: relative; overflow: hidden; padding: 78px 0; background: var(--accent); color: #fff; }.service-next::before { content: ""; position: absolute; inset: 0; opacity: .14; background-image: repeating-linear-gradient(135deg, transparent 0, transparent 28px, #fff 29px, #fff 30px); }.service-next__inner { position: relative; z-index: 2; display: flex; align-items: center; justify-content: space-between; gap: 50px; }.service-next span { font-size: 9px; font-weight: 800; text-transform: uppercase; letter-spacing: .13em; }.service-next h2 { margin: 11px 0 0; font-family: var(--display); font-size: clamp(39px, 5vw, 65px); line-height: 1.07; letter-spacing: -.055em; }

.project-page-grid { display: grid; gap: 32px; }
.project-page-card { min-height: 500px; display: grid; grid-template-columns: 1.08fr .92fr; overflow: hidden; border: 1px solid var(--line); border-radius: 17px; background: var(--white); box-shadow: 0 15px 45px rgba(11,30,59,.06); }
.project-page-card:nth-child(even) { grid-template-columns: .92fr 1.08fr; }
.project-page-card:nth-child(even) .project-page-art { order: 2; }
.project-page-art { position: relative; min-height: 440px; overflow: hidden; }
.project-page-art.project-art--a::before { left: 17%; width: 62%; }
.project-page-art.project-art--a::after { right: -2%; font-size: 70px; }
.project-page-art.project-art--b::before { left: 50%; }
.project-page-art.project-art--c::after { font-size: 25px; }
.project-page-copy { display: flex; flex-direction: column; justify-content: center; padding: 50px; }
.project-page-copy small { margin-bottom: 22px; color: var(--accent-dark); font-size: 9px; font-weight: 800; letter-spacing: .1em; text-transform: uppercase; }
.project-page-copy h2 { margin: 0 0 17px; color: var(--navy); font-family: var(--display); font-size: 42px; line-height: 1.05; letter-spacing: -.045em; }
.project-page-copy p { margin: 0 0 27px; color: var(--muted); }
.project-page-copy ul { display: flex; flex-wrap: wrap; gap: 7px; padding: 0; margin: 0; list-style: none; }
.project-page-copy li { padding: 6px 10px; border: 1px solid var(--line); border-radius: 999px; font-size: 9px; }

/* Forms */
.contact-layout { display: grid; grid-template-columns: .72fr 1.28fr; align-items: start; gap: 75px; }
.contact-aside { position: sticky; top: 135px; }
.contact-aside h2 { margin: 0 0 22px; color: var(--navy); font-family: var(--display); font-size: 43px; line-height: 1.08; letter-spacing: -.045em; }
.contact-aside > p { color: var(--muted); }
.contact-options { display: grid; gap: 9px; margin-top: 30px; }
.contact-option { display: flex; align-items: center; justify-content: space-between; gap: 18px; padding: 16px; border: 1px solid var(--line); border-radius: 11px; background: var(--white); transition: border-color .2s ease, transform .2s ease; }
.contact-option:hover { border-color: var(--accent); transform: translateX(4px); }
.contact-option small, .contact-option strong { display: block; }
.contact-option small { color: var(--muted); font-size: 9px; }
.contact-option strong { color: var(--navy); font-size: 13px; }
.contact-option > span:last-child { color: var(--accent-dark); font-size: 19px; }
.form-card { padding: 38px; border: 1px solid var(--line); border-radius: 16px; background: var(--white); box-shadow: var(--shadow); }
.form-card h2 { margin: 0 0 7px; color: var(--navy); font-family: var(--display); font-size: 33px; letter-spacing: -.035em; }
.form-card__intro { margin: 0 0 31px; color: var(--muted); }
.form-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 18px; }
.field { display: grid; gap: 7px; }
.field--full { grid-column: 1 / -1; }
.field label { color: var(--navy); font-size: 10px; font-weight: 800; letter-spacing: .02em; }
.field label span { color: var(--accent-dark); }
.field input, .field select, .field textarea { width: 100%; min-height: 53px; padding: 13px 14px; border: 1px solid #d7dee7; border-radius: 9px; outline: none; background: #f8fafc; color: var(--ink); transition: border-color .2s ease, box-shadow .2s ease, background .2s ease; }
.field textarea { min-height: 145px; resize: vertical; }
.field input:focus, .field select:focus, .field textarea:focus { border-color: var(--blue); background: var(--white); box-shadow: 0 0 0 4px rgba(30,95,190,.1); }
.field__hint { display: flex; justify-content: space-between; color: var(--muted); font-size: 9px; }
.check-field { grid-column: 1 / -1; display: flex; align-items: flex-start; gap: 10px; }
.check-field input { flex: 0 0 auto; margin-top: 5px; accent-color: var(--accent); }
.check-field label { color: var(--muted); font-size: 10px; }
.check-field a { color: var(--blue); text-decoration: underline; }
.honeypot { position: absolute !important; left: -9999px !important; }
.alert { margin-bottom: 20px; padding: 13px 15px; border-radius: 9px; font-size: 12px; }
.alert--success { border: 1px solid #b7dbbd; background: #ebf8ed; color: #236a31; }
.alert--error { border: 1px solid #f0b5ad; background: #fff0ed; color: #873226; }
.error-list { margin: 0; padding-left: 17px; }
.legal-content { max-width: 900px; }
.legal-content h2 { margin: 48px 0 13px; color: var(--navy); font-family: var(--display); font-size: 27px; }
.legal-content p, .legal-content li { color: var(--muted); }

/* Footer */
.footer-action { position: relative; overflow: hidden; padding: 58px 0; background: linear-gradient(120deg, var(--navy-2), var(--navy)); color: var(--white); }
.footer-action::before { content: ""; position: absolute; inset: 0; opacity: .5; background-image: repeating-linear-gradient(135deg, transparent 0, transparent 28px, rgba(255,255,255,.035) 29px, rgba(255,255,255,.035) 30px); }
.footer-action__inner { position: relative; z-index: 2; display: grid; grid-template-columns: 1fr auto; align-items: center; gap: 55px; }
.footer-action__eyebrow { display: block; margin-bottom: 12px; color: var(--accent); font-size: 9px; font-weight: 800; letter-spacing: .12em; text-transform: uppercase; }
.footer-action h2 { max-width: 780px; margin: 0; font-family: var(--display); font-size: clamp(28px, 3.5vw, 46px); line-height: 1.18; letter-spacing: -.035em; }
.footer-action__buttons { display: flex; gap: 10px; }
.site-footer { padding: 76px 0 23px; background: #07172e; color: var(--white); }
.brand--footer .brand-mark i { background: var(--white); }
.brand--footer .brand-mark i:last-child { background: var(--accent); }
.brand--footer .brand-word { color: var(--white); }
.brand--footer .brand-symbol { border: 1px solid rgba(255,255,255,.16); background: linear-gradient(145deg, #173866, #08172e); box-shadow: 0 10px 25px rgba(0,0,0,.2), inset 0 1px 0 rgba(255,255,255,.14); }
.footer-main { display: grid; grid-template-columns: 1.45fr .8fr 1.15fr 1fr; gap: 55px; padding-bottom: 53px; }
.footer-about p { max-width: 330px; margin: 23px 0; color: #889bb5; font-size: 12px; }
.footer-socials { display: flex; gap: 7px; }
.footer-socials span { display: grid; place-items: center; width: 32px; height: 32px; border: 1px solid rgba(255,255,255,.14); border-radius: 8px; color: #9eafc6; font-size: 9px; font-weight: 800; text-transform: uppercase; }
.footer-column { display: grid; align-content: start; gap: 10px; }
.footer-column h3 { position: relative; margin: 0 0 15px; padding-bottom: 13px; font-family: var(--display); font-size: 13px; }
.footer-column h3::after { content: ""; position: absolute; left: 0; bottom: 0; width: 28px; height: 2px; background: var(--accent); }
.footer-column a, .footer-column p { width: max-content; max-width: 100%; margin: 0; color: #899bb4; font-size: 11px; transition: color .2s ease, transform .2s ease; }
.footer-column a:hover { color: var(--white); transform: translateX(3px); }
.footer-contact-label { margin-top: 5px; color: #5d7290; font-size: 8px; font-weight: 800; letter-spacing: .09em; text-transform: uppercase; }
.footer-contact-link { color: #d5dfeb !important; font-weight: 700; }
.footer-tech { min-height: 58px; display: flex; align-items: center; justify-content: center; gap: 24px; border-top: 1px solid rgba(255,255,255,.09); border-bottom: 1px solid rgba(255,255,255,.09); color: #71849e; font-size: 9px; font-weight: 700; letter-spacing: .08em; text-transform: uppercase; }
.footer-tech i { width: 4px; height: 4px; border-radius: 50%; background: var(--accent); }
.footer-bottom { display: flex; justify-content: space-between; align-items: center; gap: 20px; padding-top: 22px; color: #576b87; font-size: 9px; }
.footer-bottom > div { display: flex; gap: 18px; }
.footer-bottom a:hover { color: var(--white); }
.footer-bottom button { padding: 0; border: 0; background: transparent; color: #8ea0b8; cursor: pointer; }
.whatsapp-float { position: fixed; z-index: 900; right: 22px; bottom: 22px; min-height: 58px; display: flex; align-items: center; gap: 11px; padding: 7px 17px 7px 7px; overflow: hidden; border: 1px solid rgba(255,255,255,.5); border-radius: 18px; background: linear-gradient(145deg, #25d366, #16b956); color: #fff; box-shadow: 0 18px 45px rgba(13,85,45,.26), inset 0 1px 0 rgba(255,255,255,.3); transition: transform .22s ease, box-shadow .22s ease; }
.whatsapp-float::after { content: ""; position: absolute; right: -28px; top: -36px; width: 82px; height: 82px; border: 1px solid rgba(255,255,255,.15); border-radius: 50%; }
.whatsapp-float:hover { transform: translateY(-4px); box-shadow: 0 23px 52px rgba(13,85,45,.34), inset 0 1px 0 rgba(255,255,255,.3); }
.whatsapp-float__icon { position: relative; z-index: 1; display: grid; place-items: center; width: 44px; height: 44px; flex: 0 0 44px; border-radius: 14px; background: rgba(7,91,45,.22); box-shadow: inset 0 0 0 1px rgba(255,255,255,.16); }
.whatsapp-float__icon img { width: 25px; height: 25px; }
.whatsapp-float__text { position: relative; z-index: 1; font-size: 11px; font-weight: 800; line-height: 1.12; letter-spacing: -.01em; }
.whatsapp-float__text small { display: block; margin-bottom: 3px; color: rgba(255,255,255,.72); font-size: 7px; font-weight: 700; letter-spacing: .08em; text-transform: uppercase; }
.cookie-banner { position: fixed; z-index: 1100; left: 20px; bottom: 20px; display: flex; align-items: center; gap: 18px; max-width: 500px; padding: 14px 16px; border: 1px solid rgba(255,255,255,.13); border-radius: 10px; background: var(--navy); color: #b5c3d5; box-shadow: var(--shadow); }
.cookie-banner[hidden] { display: none; }
.cookie-banner p { margin: 0; font-size: 9px; line-height: 1.5; }
.cookie-banner a { color: var(--accent); text-decoration: underline; }
.cookie-banner button { flex: 0 0 auto; padding: 8px 12px; border: 0; border-radius: 7px; background: var(--accent); color: var(--white); font-size: 9px; font-weight: 800; cursor: pointer; }

.reveal { opacity: 1; transform: none; }
.js .reveal { opacity: 0; transform: translateY(22px); transition: opacity .7s ease, transform .7s cubic-bezier(.2,.8,.2,1); }
.js .reveal.is-visible { opacity: 1; transform: none; }

@media (max-width: 1160px) {
    .header-inner { grid-template-columns: auto 1fr auto; gap: 25px; }
    .desktop-nav { gap: 20px; }
    .desktop-nav a { font-size: 11px; }
    .header-phone { display: none; }
    .hero-grid { gap: 40px; }
    .dashboard-body h3 { font-size: 40px; }
    .process-grid { grid-template-columns: repeat(2, 1fr); }
    .service-hero__layout { gap: 30px; }
    .service-orbit { width: 280px; height: 280px; }
    .service-process__track article { padding-inline: 18px; }
}

@media (max-width: 960px) {
    .utility-links--right > span:last-of-type { display: none; }
    .desktop-nav, .header-actions { display: none; }
    .header-inner { grid-template-columns: 1fr auto; }
    .menu-toggle { justify-self: end; display: grid; gap: 6px; width: 44px; height: 44px; place-content: center; padding: 0; border: 1px solid var(--line); border-radius: 9px; background: var(--white); cursor: pointer; }
    .menu-toggle span { display: block; width: 19px; height: 2px; background: var(--navy); transition: transform .2s ease; }
    .menu-toggle[aria-expanded="true"] span:first-child { transform: translateY(4px) rotate(45deg); }
    .menu-toggle[aria-expanded="true"] span:last-child { transform: translateY(-4px) rotate(-45deg); }
    .mobile-menu { position: fixed; inset: 128px 0 auto; display: block; padding: 30px max(24px, calc((100vw - 1280px) / 2)); background: var(--navy); color: var(--white); transform: translateY(-120%); opacity: 0; visibility: hidden; transition: transform .32s ease, opacity .25s ease, visibility .32s; }
    .mobile-menu.is-open { transform: translateY(0); opacity: 1; visibility: visible; }
    .mobile-menu nav { display: grid; }
    .mobile-menu nav a { display: flex; justify-content: space-between; padding: 13px 0; border-bottom: 1px solid rgba(255,255,255,.1); font-family: var(--display); font-size: 22px; font-weight: 700; }
    .mobile-menu nav span { color: var(--accent); font-family: var(--body); font-size: 8px; }
    .mobile-menu__footer { display: flex; justify-content: space-between; gap: 18px; padding-top: 23px; color: #8fa3c0; font-size: 10px; }
    .hero-grid { grid-template-columns: 1fr; padding: 75px 0 45px; }
    .hero-visual { min-height: 500px; }
    .dashboard-card { right: 5%; width: 75%; }
    .proof--top { right: 0; }
    .proof--bottom { left: 8%; }
    .section-intro { grid-template-columns: 1fr; gap: 23px; }
    .manifesto-grid { grid-template-columns: 1fr; gap: 55px; }
    .manifesto-card { max-width: 520px; }
    .about-lead { grid-template-columns: 1fr; gap: 50px; }
    .about-lead__aside, .contact-aside { position: relative; top: auto; }
    .contact-layout { grid-template-columns: 1fr; gap: 50px; }
    .project-page-card, .project-page-card:nth-child(even) { grid-template-columns: 1fr; }
    .project-page-card:nth-child(even) .project-page-art { order: 0; }
    .footer-action__inner { grid-template-columns: 1fr; }
    .cta-band__inner { grid-template-columns: 1fr; }
    .footer-main { grid-template-columns: 1.4fr 1fr 1fr; }
    .footer-contact-column { grid-column: 2 / -1; }
    .service-hero__layout { grid-template-columns: 1fr; padding-top: 65px; }
    .service-hero__visual { max-width: 650px; width: 100%; min-height: 430px; }
    .service-story__layout { grid-template-columns: 1fr; gap: 50px; }
    .service-story__aside { position: relative; top: auto; }
    .service-process__track { grid-template-columns: repeat(2, 1fr); gap: 35px 0; }
    .service-process__track::before { display: none; }
}

@media (max-width: 700px) {
    :root { --container: min(100% - 30px, 640px); }
    .section { padding: 76px 0; }
    .utility-bar__inner { justify-content: center; }
    .utility-links:first-child a:first-child, .utility-links--right { display: none; }
    .header-inner { min-height: 74px; }
    .mobile-menu { top: 116px; }
    .hero-grid { padding-top: 62px; }
    .hero h1 { font-size: clamp(43px, 12vw, 61px); }
    .hero-copy > p { font-size: 15px; }
    .hero-principles { grid-template-columns: 1fr; gap: 13px; }
    .hero-principles small { display: inline; margin-left: 6px; }
    .hero-visual { min-height: 420px; }
    .dashboard-card { right: 0; width: 96%; }
    .dashboard-body { min-height: 285px; padding: 34px 25px; }
    .dashboard-body h3 { font-size: 36px; }
    .dashboard-chart { width: 135px; }
    .floating-proof { min-width: 160px; padding: 9px 11px; }
    .proof--bottom { left: 0; bottom: 2px; }
    .proof--top { top: 13px; right: -5px; }
    .trust-strip__inner { overflow: hidden; justify-content: flex-start; }
    .trust-strip__inner span:nth-of-type(n+4), .trust-strip__inner i:nth-of-type(n+4) { display: none; }
    .service-list, .service-showcase-grid { grid-template-columns: 1fr; }
    .service-showcase, .service-showcase:nth-child(1), .service-showcase:nth-child(6) { min-height: 355px; }
    .project-grid { grid-template-columns: 1fr; }
    .project-card--wide, .project-card:first-child { grid-column: auto; min-height: 440px; }
    .mock-browser { width: 88%; }
    .mock-chip--speed { left: 2%; }
    .mock-chip--live { right: 2%; }
    .mock-phone { right: 12%; }
    .growth-panel { width: 62%; }
    .manifesto-points { grid-template-columns: 1fr; }
    .corporate-note { grid-template-columns: 1fr; gap: 25px; }
    .corporate-note__icon { width: 80px; height: 80px; font-size: 60px; }
    .services-cards { grid-template-columns: 1fr; }
    .service-scope__grid { grid-template-columns: 1fr; }
    .service-next__inner { align-items: flex-start; flex-direction: column; }
    .stats-row { grid-template-columns: 1fr; }
    .stat { border-top: 1px solid rgba(255,255,255,.15); border-left: 0; padding: 26px 0; }
    .stat:first-child { border-top: 0; }
    .footer-action__buttons { flex-wrap: wrap; }
    .footer-main { grid-template-columns: repeat(2, 1fr); gap: 38px 25px; }
    .footer-about { grid-column: 1 / -1; }
    .footer-contact-column { grid-column: auto; }
    .footer-tech { flex-wrap: wrap; height: auto; padding: 18px 0; gap: 12px; }
}

@media (max-width: 480px) {
    :root { --container: calc(100% - 24px); }
    .section { padding: 64px 0; }
    .brand-word { font-size: 21px; }
    .brand-mark { grid-template-columns: repeat(2, 11px); }
    .brand-mark i { height: 27px; }
    .hero-grid { padding: 48px 0 30px; }
    .hero h1 { font-size: 42px; }
    .hero-actions { display: grid; }
    .hero-actions .button { width: 100%; }
    .hero-visual { min-height: 380px; }
    .dashboard-card { top: 38px; width: 100%; }
    .dashboard-top { grid-template-columns: 1fr auto; }
    .dashboard-top > span { display: none; }
    .dashboard-body { min-height: 255px; }
    .dashboard-body h3 { font-size: 31px; }
    .dashboard-chart { right: 18px; bottom: 28px; width: 105px; height: 75px; }
    .floating-proof { min-width: 145px; }
    .proof--top { right: -8px; }
    .proof--bottom { left: -4px; }
    .section-heading { font-size: 35px; }
    .service-row { min-height: 270px; padding: 23px; grid-template-columns: 44px 1fr; }
    .service-row__icon { width: 44px; height: 44px; }
    .service-row__arrow { display: none; }
    .service-row h3, .service-row p { grid-column: 2 / 3; }
    .project-card, .project-card--wide, .project-card:first-child { min-height: 390px; }
    .project-art--a::after { font-size: 47px; }
    .project-art--b::before { width: 140px; height: 250px; }
    .project-art--b::after { font-size: 30px; }
    .project-art--c::after { font-size: 21px; }
    .mock-browser { top: 21px; width: 94%; height: 282px; border-radius: 10px; transform: translateX(-50%); }
    .mock-browser__bar { height: 30px; }
    .mock-browser__page { height: calc(100% - 30px); padding: 12px 12px 0; }
    .mock-site-nav { height: 18px; gap: 6px; }
    .mock-site-nav > i { width: 20px; }
    .mock-site-nav > i:nth-of-type(2) { width: 25px; }
    .mock-site-nav b { padding: 5px 6px; }
    .mock-site-hero { min-height: 177px; grid-template-columns: 1.25fr .75fr; padding: 10px 8px 7px 12px; margin-top: 9px; }
    .mock-site-hero strong { margin: 10px 0 13px; font-size: 23px; }
    .mock-site-orbit { width: 100px; height: 100px; }
    .mock-site-orbit i { inset: 17px; }
    .mock-site-orbit b { font-size: 21px; }
    .mock-site-orbit small { bottom: 25px; }
    .mock-site-stats { height: 38px; margin-top: 6px; }
    .mock-site-stats span { padding: 5px; font-size: 5px; }
    .mock-site-stats b { font-size: 12px; }
    .mock-chip--speed { left: 1%; top: 17%; }
    .mock-chip--live { right: 1%; top: 28%; }
    .mock-chip { padding: 6px 8px; }
    .mock-chip b { font-size: 11px; }
    .mobile-mock-copy { left: 5%; top: 9%; }
    .mobile-mock-copy strong { font-size: 34px; }
    .mock-phone { right: 5%; top: 24px; width: 151px; height: 295px; border-width: 4px; border-radius: 24px; }
    .mock-phone__screen { padding: 26px 10px 10px; }
    .mock-phone__balance { padding: 10px; margin-top: 9px; }
    .mock-phone__balance strong { font-size: 19px; }
    .mock-phone__actions { gap: 4px; margin: 8px 0; }
    .mock-phone__actions i { height: 33px; }
    .mock-phone__chart { height: 65px; padding: 9px; }
    .app-badge { right: 1%; }
    .app-badge--android { right: 0; }
    .growth-heading { left: 5%; top: 8%; }
    .growth-heading strong { font-size: 31px; }
    .growth-panel { right: 3%; top: 39px; width: 69%; height: 245px; padding: 12px; }
    .growth-metrics { margin: 9px 0 7px; }
    .growth-metrics > span { padding: 7px; }
    .growth-metrics b { font-size: 15px; }
    .growth-chart { height: 78px; }
    .search-pill { display: none; }
    .project-content { left: 14px; right: 14px; bottom: 14px; }
    .project-content__text { max-width: 88%; padding: 13px 14px; }
    .project-content h3 { font-size: 21px; }
    .project-tag { display: none; }
    .manifesto-card { min-height: 390px; padding: 25px; }
    .manifesto-card__badge { margin-block: 42px 37px; }
    .process-grid { grid-template-columns: 1fr; }
    .process-card { min-height: 250px; }
    .process-icon { margin-bottom: 45px; }
    .page-hero__shell { min-height: 390px; padding: 55px 0; }
    .page-hero h1 { font-size: 50px; }
    .page-hero p { font-size: 14px; }
    .page-hero__meta { display: none; }
    .values-grid { grid-template-columns: 1fr; }
    .service-card { min-height: 370px; padding: 25px; }
    .service-showcase { min-height: 330px !important; padding: 25px; border-radius: 17px; }
    .service-showcase__copy { padding-top: 48px; }
    .service-showcase__copy h3 { font-size: 33px; }
    .service-showcase__number { font-size: 130px; }
    .service-hero__layout { min-height: auto; padding: 45px 0 60px; }
    .service-hero__copy h1 { font-size: 46px; }
    .service-hero__copy > p { font-size: 14px; }
    .service-hero__visual { min-height: 345px; }
    .service-orbit { width: 230px; height: 230px; }
    .service-orbit::before { inset: 40px; }
    .service-orbit strong { width: 86px; height: 86px; border-radius: 23px; font-size: 28px; }
    .service-signal--one { left: 0; }.service-signal--two { right: 0; }
    .service-story__aside h2 { font-size: 34px; }
    .service-story__content > p:first-child { font-size: 25px; }
    .service-scope__card { grid-template-columns: 34px 1fr; padding: 22px; }
    .service-scope__card > b { display: none; }
    .service-process__track { grid-template-columns: 1fr; }
    .service-process__track article { padding: 0; }
    .service-process__track span { margin-bottom: 19px; }
    .service-next { padding: 62px 0; }
    .service-next h2 { font-size: 39px; }
    .project-page-art { min-height: 350px; }
    .project-page-copy { padding: 32px 23px; }
    .project-page-copy h2 { font-size: 35px; }
    .form-card { padding: 25px 19px; }
    .form-grid { grid-template-columns: 1fr; }
    .field--full, .check-field { grid-column: auto; }
    .footer-action { padding: 45px 0; }
    .cta-round { width: 105px; height: 105px; }
    .footer-action__buttons { display: grid; }
    .footer-main { grid-template-columns: 1fr 1fr; }
    .footer-column:nth-of-type(3), .footer-contact-column { grid-column: 1 / -1; }
    .footer-bottom { display: grid; }
    .footer-bottom > div { flex-wrap: wrap; gap: 10px; }
    .whatsapp-float { right: 12px; bottom: 12px; padding-right: 7px; }
    .whatsapp-float__text { display: none; }
    .cookie-banner { left: 12px; right: 12px; bottom: 12px; max-width: none; }
}

@media (max-width: 1050px) {
    .blog-hero__grid, .article-hero__grid { grid-template-columns: 1fr; gap: 48px; }
    .blog-hero__aside { max-width: 650px; }
    .blog-card--featured { grid-column: 1 / -1; }
    .article-hero__visual { max-width: 690px; width: 100%; }
    .article-layout { grid-template-columns: 55px minmax(0, 720px); }
    .article-cta { position: relative; top: auto; grid-column: 2; }
}

@media (max-width: 760px) {
    .brand { gap: 9px; }
    .brand-symbol { width: 37px; height: 37px; flex-basis: 37px; border-radius: 11px; }
    .brand-symbol::after { left: 8px; top: 8px; width: 15px; height: 4px; box-shadow: 0 8px 0 #fff, 0 16px 0 #fff; }
    .brand-symbol i:first-child { top: 7px; }.brand-symbol i:nth-child(2) { bottom: 7px; }
    .brand-symbol b { right: 5px; top: 14px; }
    .brand-word { font-size: 23px; }
    .blog-hero, .blog-hero__grid { min-height: 590px; }
    .blog-hero__grid { padding-block: 60px; }
    .blog-hero h1 { font-size: 50px; }
    .blog-hero__aside { padding: 25px; }
    .blog-toolbar { align-items: start; flex-direction: column; }
    .blog-categories { justify-content: flex-start; }
    .blog-grid { grid-template-columns: 1fr; }
    .blog-card--featured { display: flex; min-height: 0; }
    .blog-card--featured .blog-card__cover { min-height: 300px; }
    .blog-card--featured .blog-card__body { padding: 27px; }
    .blog-card--featured h2 { font-size: 30px; }
    .article-hero { padding: 65px 0; }
    .article-hero h1 { font-size: 44px; }
    .article-hero__visual { max-width: none; }
    .article-hero__visual, .article-cover-art, .article-hero__visual img { min-height: 340px; }
    .article-cover-art { padding: 28px; }
    .article-cover-art strong { font-size: 45px; }
    .article-layout { grid-template-columns: 1fr; gap: 35px; padding-block: 60px 80px; }
    .article-share { position: relative; top: auto; display: flex; justify-content: flex-start; }
    .article-share > span { writing-mode: initial; margin: 0 8px 0 0; align-self: center; }
    .article-cta { grid-column: auto; }
    .related-grid { grid-template-columns: 1fr; }
}

@media (max-width: 480px) {
    .blog-hero h1 { font-size: 42px; }
    .blog-hero__aside > p { font-size: 14px; }
    .blog-toolbar h2 { font-size: 34px; }
    .blog-categories a { padding: 8px 10px; }
    .blog-card__cover, .blog-card--featured .blog-card__cover { min-height: 245px; }
    .blog-card__body, .blog-card--featured .blog-card__body { padding: 22px; }
    .blog-card h2, .blog-card--featured h2 { font-size: 25px; }
    .article-hero h1 { font-size: 37px; }
    .article-hero__grid > div:first-child > p { font-size: 14px; }
    .article-hero__visual, .article-cover-art, .article-hero__visual img { min-height: 300px; }
    .article-cover-art strong { font-size: 39px; }
    .article-content { font-size: 15px; }
    .article-content > p:first-child { font-size: 18px; }
    .article-content h2 { font-size: 29px; }
}

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