@import url('https://fonts.googleapis.com/css2?family=Unbounded:wght@100;200;300;400;500;600;700&display=swap');

*, *::before, *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

:root {
    --black: #000;
    --white: #fff;
    --grey-100: rgba(255, 255, 255, 0.04);
    --grey-200: rgba(255, 255, 255, 0.06);
    --grey-300: rgba(255, 255, 255, 0.08);
    --grey-400: rgba(255, 255, 255, 0.12);
    --grey-500: rgba(255, 255, 255, 0.15);
    --grey-600: rgba(255, 255, 255, 0.2);
    --grey-700: rgba(255, 255, 255, 0.25);
    --grey-800: rgba(255, 255, 255, 0.3);
    --grey-900: rgba(255, 255, 255, 0.4);
    --text-muted: rgba(255, 255, 255, 0.35);
    --text-dim: rgba(255, 255, 255, 0.5);
    --red: #ff6b6b;
    --red-bg: rgba(255, 60, 60, 0.15);
    --red-bg-subtle: rgba(255, 60, 60, 0.03);
    --red-border: rgba(255, 60, 60, 0.12);
    --amber: #f0c040;
    --font: 'Unbounded', -apple-system, sans-serif;
}

html {
    scroll-behavior: smooth;
}

body {
    background: var(--black);
    color: var(--white);
    font-family: var(--font);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

::selection {
    background: var(--grey-500);
}

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

button {
    font-family: var(--font);
    cursor: pointer;
    transition: opacity 0.2s;
}

button:hover {
    opacity: 0.8;
}

input {
    font-family: var(--font);
}

input::placeholder {
    color: var(--grey-600);
}

::-webkit-scrollbar {
    width: 6px;
}

::-webkit-scrollbar-track {
    background: var(--black);
}

::-webkit-scrollbar-thumb {
    background: var(--grey-300);
}

/* ─── ANIMATIONS ─── */
@keyframes pulse {
    0%, 100% {
        opacity: 1;
    }
    50% {
        opacity: 0.3;
    }
}

.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.7s ease, transform 0.7s ease;
}

.reveal.visible {
    opacity: 1;
    transform: translateY(0);
}

.reveal-delay-1 {
    transition-delay: 0.1s;
}

.reveal-delay-2 {
    transition-delay: 0.2s;
}

.reveal-delay-3 {
    transition-delay: 0.3s;
}

/* ═══ NAV ═══ */
.nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 100;
    padding: 0 40px;
    height: 70px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    transition: all 0.3s;
}

.nav.scrolled {
    background: rgba(0, 0, 0, 0.92);
    backdrop-filter: blur(16px);
    border-bottom: 1px solid var(--grey-300);
}

.nav-logo {
    color: var(--white);
    cursor: pointer;
    flex-shrink: 0;
    font-weight:500;
    font-size:15px;
    letter-spacing: 2px;
    opacity: 0.8;
    display: flex;
    align-items: center;
}

.nav-logo img {
    width: 100px;
    user-select: none;
    pointer-events: none;
}

.nav-logo svg {
    width: 100%;
    height: auto;
    display: block;
}

.nav-links {
    display: flex;
    gap: 32px;
    align-items: center;
}

.nav-links--center {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
}

.nav-link {
    font-size: 13px;
    font-weight: 400;
    color: rgba(255, 255, 255, 0.7);
    transition: color 0.2s;
    cursor: pointer;
    text-transform: uppercase;
}

.nav-link:hover {
    color: var(--white);
}

.nav-link-disabled {
    font-size: 13px;
    font-weight: 400;
    color: rgba(255, 255, 255, 0.25);
    cursor: default;
    text-transform: uppercase;
}

.nav-right {
    display: flex;
    align-items: center;
    gap: 24px;
    flex-shrink: 0;
}

/* ═══ HERO ═══ */
.hero {
    height: 100vh;
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    background-color: #262626;
}

.hero__video {
    position: absolute;
    inset: 0;
    z-index: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero__overlay {
    position: absolute;
    inset: 0;
    z-index: 1;
    border-left: 35px solid black;
    border-right: 35px solid black;
    border-bottom: 20px solid black;
}

.hero__grain {
    position: absolute;
    inset: 0;
    z-index: 2;
    opacity: 0.03;
    background-image: url('data:image/svg+xml,%3Csvg viewBox=%220 0 256 256%22 xmlns=%22http://www.w3.org/2000/svg%22%3E%3Cfilter id=%22noise%22%3E%3CfeTurbulence type=%22fractalNoise%22 baseFrequency=%220.9%22 numOctaves=%224%22 stitchTiles=%22stitch%22/%3E%3C/filter%3E%3Crect width=%22100%25%22 height=%22100%25%22 filter=%22url(%23noise)%22/%3E%3C/svg%3E');
    background-size: cover;
}

.hero__content {
    position: relative;
    z-index: 3;
    text-align: center;
    padding: 0 40px;
}

.hero__title {
    font-size: clamp(44px, 6.5vw, 88px);
    font-weight: 400;
    line-height: 0.95;
    margin: 0;
    text-transform: uppercase;
    letter-spacing: -1px;
    color: var(--white);
}

.hero__bottom-bar {
    position: absolute;
    bottom: 48px;
    left: 40px;
    right: 40px;
    z-index: 3;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.hero__motto-text {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.7);
    font-weight: 500;
}

.hero__diamond {
    width: 56px;
    height: 56px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero__diamond svg {
    opacity: 0.8;
}

/* ═══ PRODUCTS ═══ */
.products {
    padding: 0;
}

.products__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    padding: 0 35px;
}

.product-card {
    aspect-ratio: 4/3;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 28px;
    position: relative;
    overflow: hidden;
    text-decoration: none;
    color: inherit;
    background-size: cover;
    background-position: center;
    transition: transform 0.4s ease;
}

.product-card:hover {
    transform: scale(1.01);
    z-index: 2;
}

.product-card--maritime {
    background-color: #111;
    background-image: url('maritime.png');
}

.product-card--energy {
    background-color: #0d0d0d;
    background-image: url('energy.jpg');
}

.product-card--satellite {
    background-color: #0a0a0a;
    background-image: url('satellite.jpg');
}

.product-card__overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.7) 0%, rgba(0, 0, 0, 0.1) 50%, rgba(0, 0, 0, 0) 100%);
    z-index: 1;
}

.product-card__overlay--dim {
    background: linear-gradient(to top, rgba(0, 0, 0, 0.7) 0%, rgba(0, 0, 0, 0.2) 50%, rgba(0, 0, 0, 0.1) 100%);
}

.product-card__tag {
    position: absolute;
    top: 16px;
    right: 16px;
    z-index: 2;
}

.product-card__content {
    position: relative;
    z-index: 2;
}

.product-card__title {
    font-size: 17px;
    font-weight: 500;
    margin-bottom: 4px;
}

.product-card__title--dim {
    color: rgba(255, 255, 255, 0.5);
}

.product-card__sub {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.6);
}

.product-card__sub--dim {
    color: rgba(255, 255, 255, 0.3);
}

/* ═══ MISSION ═══ */
.mission {
    padding: 120px 40px;
    border-top: 1px solid var(--grey-200);
}

.mission__inner {
    max-width: 800px;
}

.mission__heading {
    font-size: 27px;
    font-weight: 400;
    line-height: 1.1;
    margin: 0 0 32px;
    text-transform: uppercase;
}

.mission__body {
    font-size: 15px;
    color: grey;
    line-height: 1.8;
    max-width: 600px;
}

/* ═══ STATS ═══ */
.stats {
    border-top: 1px solid var(--grey-200);
}

.stats__cell {
    padding: 48px 40px;
}

.stats__cell--bordered {
    border-right: 1px solid var(--grey-200);
}

.stats__value {
    font-size: 36px;
    font-weight: 400;
    margin-bottom: 8px;
}

.stats__label {
    font-size: 12px;
    color: grey;
    letter-spacing: 1px;
    font-weight: 500;
}

/* ═══ NEWS ═══ */
.news {
    padding: 80px 40px;
    background: #e8e4df;
}

.news__header {
    display: flex;
    justify-content: space-between;
    align-items: baseline;
    margin-bottom: 48px;
    border-bottom: 1px solid rgba(0, 0, 0, 0.12);
    padding-bottom: 20px;
}

.news__title {
    font-size: 32px;
    font-weight: 400;
    color: #1a1a1a;
}

.news__all-link {
    font-size: 12px;
    color: rgba(0, 0, 0, 0.4);
    letter-spacing: 1px;
}

.news__article {
    padding: 32px 0;
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
    cursor: pointer;
}

.news__article--featured {
    padding: 40px 0;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 48px;
    align-items: start;
}

.news__date {
    font-size: 12px;
    color: rgba(0, 0, 0, 0.35);
    display: block;
    margin-bottom: 8px;
}

.news__article--featured .news__date {
    margin-bottom: 12px;
}

.news__article-title {
    font-size: 22px;
    font-weight: 400;
    margin: 0 0 8px;
    line-height: 1.3;
    transition: color 0.2s;
    color: #1a1a1a;
}

.news__article--featured .news__article-title {
    font-size: 28px;
    margin-bottom: 16px;
}

.news__excerpt {
    font-size: 14px;
    color: rgba(0, 0, 0, 0.4);
    margin: 0 0 24px;
    line-height: 1.6;
}

.news__read-more {
    font-size: 13px;
    color: #1a1a1a;
    font-weight: 400;
}

.news__featured-image {
    aspect-ratio: 16/10;
    background: #ccc url('https://cdn.sanity.io/images/61nocsj5/production/16113e3a588bd30e5c67bf2ee6d7a0847845fb28-3000x3000.jpg?w=960&h=960&fit=min&auto=format') center/cover;
}

/* ═══ SHARED COMPONENTS ═══ */
.section-label {
    font-size: 11px;
    color: var(--grey-700);
    letter-spacing: 3px;
    text-transform: uppercase;
    margin-bottom: 32px;
}

.tag-soon {
    display: inline-block;
    padding: 4px 12px;
    border: 1px solid var(--grey-400);
    font-size: 10px;
    color: var(--grey-800);
    letter-spacing: 2px;
}

.tag-sanctioned {
    display: inline-block;
    padding: 3px 10px;
    background: var(--red-bg);
    color: var(--red);
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 2px;
}

.tag-risk {
    display: inline-block;
    padding: 3px 10px;
    background: rgba(255, 60, 60, 0.08);
    color: var(--red);
    font-size: 10px;
}

.btn-primary {
    padding: 14px 32px;
    background: var(--white);
    border: none;
    color: var(--black);
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 1px;
}

.btn-outline {
    padding: 14px 32px;
    background: transparent;
    border: 1px solid var(--grey-400);
    color: var(--text-dim);
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 1px;
}

.dot-high {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--red);
    display: inline-block;
}

.dot-med {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--amber);
    display: inline-block;
}

/* ═══ GRIDS ═══ */
.grid-4 {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
}

.grid-3 {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1px;
    background: var(--grey-200);
}

.grid-3 > * {
    background: var(--black);
}

.grid-2 {
    display: grid;
    grid-template-columns: 1fr 1fr;
}

/* ═══ FOOTER ═══ */
.footer {
    padding: 48px 40px;
    border-top: 1px solid var(--grey-200);
    display: grid;
    grid-template-columns: 1fr 1fr 1fr 1fr;
    gap: 40px;
}

.footer__logo {
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 2px;
    margin-bottom: 24px;
    width: 100px;
}

.footer__logo img {
    width: 100%;
    user-select: none;
    pointer-events: none;
}

.footer-col-title {
    font-size: 10px;
    color: var(--grey-700);
    letter-spacing: 3px;
    margin-bottom: 20px;
}

.footer-link {
    font-size: 13px;
    color: var(--grey-900);
    margin-bottom: 12px;
    cursor: pointer;
    transition: color 0.2s;
}

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

.footer-bottom {
    padding: 20px 40px;
    border-top: 1px solid var(--grey-100);
    font-size: 11px;
    color: var(--white);
    text-transform: uppercase;
}

/* ═══════════════════════════════════════
   MARITIME PAGE
   ═══════════════════════════════════════ */

/* Maritime Hero */
.m-hero {
    min-height: 70vh;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 0 40px 80px;
    position: relative;
}

.m-hero__bg {
    position: absolute;
    inset: 0;
    opacity: 0.03;
    background: radial-gradient(circle at 20% 80%, rgba(255, 255, 255, 0.8) 0%, transparent 50%),
    radial-gradient(circle at 80% 20%, rgba(255, 255, 255, 0.4) 0%, transparent 40%);
}

.m-hero__content {
    position: relative;
    z-index: 1;
    max-width: 800px;
}

.m-hero__title {
    font-size: clamp(40px, 5vw, 64px);
    font-weight: 500;
    line-height: 1.1;
    margin: 0 0 24px;
    letter-spacing: -1.5px;
    text-transform: uppercase;
}

.m-hero__desc {
    font-size: 17px;
    color: rgba(255, 255, 255, 0.35);
    line-height: 1.7;
    max-width: 520px;
    margin: 0 0 40px;
}

/* Generic section */
.section {
    padding: 80px 40px;
    border-top: 1px solid var(--grey-200);
}

.section-heading {
    font-size: 32px;
    font-weight: 400;
    margin: 0 0 16px;
    text-transform: uppercase;
}

.section-heading--spaced {
    margin-bottom: 48px;
}

.section-desc {
    font-size: 15px;
    color: rgba(255, 255, 255, 0.35);
    max-width: 560px;
    line-height: 1.7;
    margin-bottom: 48px;
}

/* Nav active link */
.nav-link--active {
    color: var(--white);
}

/* Screening */
.screening-box {
    border: 1px solid var(--grey-300);
    overflow: hidden;
}

.screening-bar {
    padding: 24px 32px;
    border-bottom: 1px solid var(--grey-200);
    display: flex;
    gap: 12px;
}

.screening-input {
    flex: 1;
    width: 100%;
    padding: 12px 16px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid var(--grey-300);
    color: var(--white);
    font-size: 14px;
    outline: none;
    transition: border-color 0.2s;
}

.screening-input:focus {
    border-color: var(--grey-600);
}

.screening-btn {
    padding: 12px 28px;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 1px;
}

.placeholder-panel {
    padding: 80px 32px;
    text-align: center;
    color: var(--grey-500);
    font-size: 13px;
}

.placeholder-panel.hidden {
    display: none;
}

.result-panel {
    display: none;
}

.result-panel.active {
    display: block;
}

/* Result header */
.result-header {
    padding: 32px;
    border-bottom: 1px solid var(--grey-200);
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
}

.result-tags {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 8px;
}

.result-vessel-name {
    font-size: 28px;
    font-weight: 700;
    margin: 0 0 8px;
}

.result-vessel-meta {
    font-size: 13px;
    color: var(--grey-800);
}

.btn-outline--sm {
    padding: 8px 20px;
    font-size: 11px;
}

/* Result columns */
.result-col {
    padding: 32px;
}

.result-col--bordered {
    border-right: 1px solid var(--grey-200);
}

.result-col-title {
    font-size: 10px;
    color: var(--grey-700);
    letter-spacing: 3px;
    margin-bottom: 20px;
}

/* Sanctions rows */
.sanctions-row {
    padding: 14px 16px;
    margin-bottom: 6px;
    border: 1px solid var(--red-border);
    background: var(--red-bg-subtle);
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.sanctions-list-name {
    font-size: 13px;
    font-weight: 600;
    color: var(--red);
}

.sanctions-detail {
    font-size: 11px;
    color: var(--grey-700);
}

.tag-status {
    font-size: 9px;
    font-weight: 700;
    letter-spacing: 2px;
}

.tag-status--red {
    color: var(--red);
}

/* Behavioral rows */
.behavioral-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 0;
    border-bottom: 1px solid var(--grey-100);
}

.behavioral-row:last-child {
    border-bottom: none;
}

.behavioral-label {
    font-size: 12px;
    color: var(--text-muted);
}

.behavioral-value {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 12px;
    color: rgba(255, 255, 255, 0.6);
}

/* Result audit footer */
.result-audit {
    padding: 16px 32px;
    border-top: 1px solid var(--grey-200);
    background: rgba(255, 255, 255, 0.01);
    display: flex;
    justify-content: space-between;
    font-size: 11px;
    color: var(--grey-600);
}

/* Capability cards */
.cap-card {
    padding: 40px 32px;
    background: var(--black);
    display: flex;
    flex-direction: column;
    height: 100%;
}

.cap-number {
    font-size: 11px;
    color: var(--grey-600);
    letter-spacing: 2px;
    margin-bottom: 16px;
}

.cap-title {
    font-size: 22px;
    font-weight: 400;
    margin: 0 0 12px;
    text-transform: uppercase;
}

.cap-desc {
    font-size: 13px;
    color: var(--text-muted);
    line-height: 1.7;
    margin: 0 0 28px;
}

.cap-details {
    margin-top: auto;
}

.cap-detail {
    font-size: 12px;
    color: var(--grey-700);
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 8px;
}

.cap-detail span {
    color: var(--grey-500);
}

/* Source cards */
.sources-grid {
    gap: 1px;
    background: var(--grey-200);
    overflow: hidden;
}

.source-card {
    padding: 36px;
    background: var(--black);
    display: flex;
    gap: 20px;
    align-items: flex-start;
    height: 100%;
}

.source-icon {
    font-size: 28px;
    flex-shrink: 0;
}

.source-body {
    flex: 1;
}

.source-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 8px;
}

.source-name {
    font-size: 15px;
    font-weight: 700;
}

.source-desc {
    font-size: 13px;
    color: var(--grey-800);
    line-height: 1.6;
    margin: 0;
}

.source-status {
    padding: 2px 10px;
    font-size: 9px;
    font-weight: 800;
    letter-spacing: 1.5px;
}

.source-status.live {
    background: rgba(34, 197, 94, 0.15);
    color: #4ade80;
}

.source-status.synced {
    background: rgba(99, 102, 241, 0.15);
    color: #a5b4fc;
}

/* Pricing */
.pricing-card {
    padding: 48px 32px;
    background: var(--black);
    display: flex;
    flex-direction: column;
    height: 100%;
    position: relative;
}

.pricing-card.featured::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: var(--white);
}

.pricing-tier {
    font-size: 10px;
    color: var(--grey-800);
    letter-spacing: 3px;
    margin-bottom: 24px;
}

.pricing-tier--featured {
    color: var(--white);
}

.pricing-price {
    margin-bottom: 24px;
}

.pricing-amount {
    font-size: 40px;
    font-weight: 400;
}

.pricing-period {
    font-size: 14px;
    color: var(--grey-700);
}

.pricing-features {
    flex: 1;
    margin-bottom: 32px;
}

.pricing-feature {
    font-size: 13px;
    color: var(--grey-900);
    margin-bottom: 12px;
}

.pricing-feature::before {
    content: '✓';
    margin-right: 8px;
    color: var(--grey-500);
}

.pricing-cta {
    width: 100%;
    padding: 12px;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 1px;
}

.pricing-note {
    text-align: center;
    margin-top: 24px;
    font-size: 12px;
    color: var(--grey-600);
}

/* CTA section */
.cta {
    padding: 100px 40px;
    border-top: 1px solid var(--grey-200);
    text-align: center;
}

.cta__heading {
    font-size: 40px;
    font-weight: 400;
    margin: 0 0 20px;
    letter-spacing: -1px;
    text-transform: uppercase;
}

.cta__desc {
    font-size: 15px;
    color: var(--grey-800);
    margin-bottom: 36px;
}

/* ═══════════════════════════════════════
   RESPONSIVE
   ═══════════════════════════════════════ */

/* Tablet */
@media (max-width: 1024px) {
    .nav {
        padding: 0 24px;
    }

    .nav-links--center {
        position: static;
        transform: none;
        gap: 20px;
    }

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

    .footer {
        grid-template-columns: 1fr 1fr;
        gap: 32px;
    }
}

/* Mobile */
@media (max-width: 768px) {
    .nav {
        padding: 0 20px;
        height: 56px;
    }

    .nav-links {
        display: none;
    }

    .nav-right {
        gap: 16px;
    }

    .hero__title {
        font-size: 36px;
        letter-spacing: -0.5px;
    }

    .hero__overlay {
        border-left-width: 16px;
        border-right-width: 16px;
        border-bottom-width: 10px;
    }

    .hero__bottom-bar {
        bottom: 24px;
        left: 20px;
        right: 20px;
        gap: 8px;
        flex-wrap: wrap;
    }

    .hero__motto-text {
        font-size: 11px;
    }

    .hero__diamond {
        width: 40px;
        height: 40px;
    }

    .hero__content {
        padding: 0 20px;
    }

    .products__grid {
        grid-template-columns: 1fr;
        padding: 0 16px;
        gap: 12px;
    }

    .product-card {
        aspect-ratio: 16/9;
    }

    .mission {
        padding: 60px 20px;
    }

    .mission__heading {
        font-size: 22px;
    }

    .stats__cell {
        padding: 32px 20px;
    }

    .stats__value {
        font-size: 28px;
    }

    .news {
        padding: 48px 20px;
    }

    .news__title {
        font-size: 24px;
    }

    .news__article--featured {
        grid-template-columns: 1fr;
        gap: 24px;
    }

    .news__article--featured .news__article-title {
        font-size: 22px;
    }

    .footer {
        grid-template-columns: 1fr 1fr;
        padding: 32px 20px;
        gap: 24px;
    }

    .footer-bottom {
        padding: 16px 20px;
    }

    .grid-3 {
        grid-template-columns: 1fr;
    }

    .grid-2 {
        grid-template-columns: 1fr;
    }

    /* Maritime page */
    .m-hero {
        min-height: 50vh;
        padding: 0 20px 48px;
    }

    .m-hero__title {
        font-size: 32px;
        letter-spacing: -1px;
    }

    .m-hero__desc {
        font-size: 15px;
    }

    .section {
        padding: 48px 20px;
    }

    .section-heading {
        font-size: 24px;
    }

    .screening-bar {
        padding: 16px 20px;
        flex-direction: column;
    }

    .screening-btn {
        width: 100%;
    }

    .result-header {
        padding: 24px 20px;
        flex-direction: column;
        gap: 16px;
    }

    .result-vessel-name {
        font-size: 22px;
    }

    .result-col {
        padding: 24px 20px;
    }

    .result-col--bordered {
        border-right: none;
        border-bottom: 1px solid var(--grey-200);
    }

    .result-audit {
        padding: 12px 20px;
        flex-direction: column;
        gap: 8px;
    }

    .cap-title {
        font-size: 18px;
    }

    .source-card {
        padding: 24px 20px;
    }

    .pricing-amount {
        font-size: 32px;
    }

    .cta {
        padding: 60px 20px;
    }

    .cta__heading {
        font-size: 28px;
    }
}

/* Small phones */
@media (max-width: 480px) {
    .hero__title {
        font-size: 28px;
    }

    .hero__bottom-bar {
        display: none;
    }

    .grid-4 {
        grid-template-columns: 1fr;
    }

    .stats__cell--bordered {
        border-right: none;
        border-bottom: 1px solid var(--grey-200);
    }

    .footer {
        grid-template-columns: 1fr;
    }

    .news__article-title {
        font-size: 18px;
    }

    /* Maritime page */
    .m-hero__title {
        font-size: 26px;
    }

    .result-vessel-name {
        font-size: 20px;
    }

    .cta__heading {
        font-size: 24px;
    }

    .pricing-card {
        padding: 32px 20px;
    }
}
