/* css/style.css */

:root {
    --bg-page: #060715;
    --bg-page-alt: #0c0f25;
    --bg-card: #10132f;
    --bg-chip: #141936;
    --border-soft: rgba(155, 164, 220, 0.5);
    --accent: #8c5bff;
    --accent-strong: #6b3bff;
    --accent-soft: rgba(140, 91, 255, 0.22);
    --accent-soft-2: rgba(81, 207, 255, 0.2);
    --text-main: #f9fbff;
    --text-soft: #c2c5ff;
    --text-mute: #8f93c6;
    --shadow-soft: 0 22px 60px rgba(0, 0, 0, 0.78);
    --radius-card: 24px;
    --radius-pill: 999px;
}

/* Base */

* {
    box-sizing: border-box;
}

html,
body {
    margin: 0;
    padding: 0;
    font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    color: var(--text-main);
    background: radial-gradient(circle at top, #191936 0, #060715 55%, #02010b 100%);
}

body {
    line-height: 1.5;
}

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

.page {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

/* Header */

.site-header {
    position: sticky;
    top: 0;
    z-index: 40;
    background: rgba(10, 10, 26, 0.94);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid rgba(128, 135, 210, 0.35);
}

.header-inner {
    max-width: 1120px;
    margin: 0 auto;
    padding: 0.7rem 1.25rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.logo-wrap {
    display: flex;
    align-items: center;
    gap: 0.6rem;
}

.logo-img {
    display: block;
    height: 32px;
    width: auto;
}

.logo-text-group {
    display: flex;
    flex-direction: column;
    gap: 0.1rem;
}

.logo-tagline {
    font-size: 0.72rem;
    color: var(--text-mute);
}

.nav-main {
    display: flex;
    align-items: center;
    gap: 1.1rem;
    font-size: 0.88rem;
}

.nav-link {
    padding-bottom: 0.15rem;
    color: var(--text-mute);
    border-bottom: 2px solid transparent;
}

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

.nav-link-active {
    color: #ffffff;
    border-bottom-color: var(--accent-strong);
}

.nav-link-cta {
    padding: 0.35rem 0.95rem;
    border-radius: var(--radius-pill);
    border: 1px solid var(--accent-strong);
    background: linear-gradient(135deg, #9f6aff, #6b3bff);
    color: #ffffff;
    box-shadow: 0 14px 40px rgba(0, 0, 0, 0.7);
}

.nav-toggle {
    display: none;
    border-radius: var(--radius-pill);
    border: 1px solid var(--border-soft);
    background: rgba(9, 9, 26, 0.9);
    padding: 0.35rem 0.75rem;
    font-size: 0.9rem;
    cursor: pointer;
    color: var(--text-soft);
    align-items: center;
    justify-content: center;
}

/* Burger icon */

.burger {
    width: 22px;
    height: 2px;
    background: var(--text-soft);
    position: relative;
    display: inline-block;
    border-radius: 2px;
}

.burger::before,
.burger::after {
    content: "";
    width: 22px;
    height: 2px;
    background: var(--text-soft);
    position: absolute;
    left: 0;
    border-radius: 2px;
}

.burger::before {
    top: -6px;
}

.burger::after {
    top: 6px;
}

/* Sections */

main {
    flex: 1;
}

.section {
    max-width: 1120px;
    margin: 0 auto;
    padding: 3rem 1.25rem;
}

.section-tight {
    padding-top: 2.1rem;
    padding-bottom: 2.1rem;
}

.section-header {
    max-width: 640px;
    margin-bottom: 1.8rem;
}

.section-title {
    font-size: 1.7rem;
    margin: 0 0 0.4rem;
}

.section-intro {
    margin: 0;
    font-size: 0.95rem;
    color: var(--text-soft);
}

/* Hero */

.hero {
    position: relative;
    min-height: 95vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.hero-bg-layer {
    position: absolute;
    inset: 0;
    z-index: 1;
}

/* Base crowd image, no animation */
.hero-bg-base {
    background-image: url("../imgs/hero-az.jpg");
    background-size: cover;
    background-position: center;
    filter: brightness(0.35) contrast(1.15);
}

/* Page-specific hero backgrounds */
.hero-solutions .hero-bg-base {
    background-image: url("../imgs/hero-crowd.jpg");
    background-size: cover;
    background-position: center;
    filter: brightness(0.35) contrast(1.15);
}

/* Static overlay with vignette and colour */
.hero-bg-overlay {
    background:
        radial-gradient(circle at center, rgba(0, 0, 0, 0) 20%, rgba(0, 0, 0, 0.78) 100%),
        radial-gradient(circle at 70% 20%, rgba(140, 91, 255, 0.35), transparent 60%),
        radial-gradient(circle at 20% 80%, rgba(81, 207, 255, 0.25), transparent 60%),
        radial-gradient(circle at 50% 60%, rgba(255, 100, 200, 0.18), transparent 70%);
    mix-blend-mode: normal;
}

.hero-inner {
    position: relative;
    z-index: 10;
    width: 100%;
    max-width: 1120px;
    margin: 0 auto;
    padding: 4rem 1.25rem;
}

.hero-single {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
}

.hero-left {
    max-width: 680px;
}

/* wider hero text container */
.hero-wide {
    max-width: 860px;
}

.hero-pill {
    display: inline-flex;
    padding: 0.25rem 0.75rem;
    border-radius: var(--radius-pill);
    background: rgba(5, 7, 34, 0.9);
    border: 1px solid rgba(178, 186, 255, 0.5);
    font-size: 0.78rem;
    color: var(--text-soft);
    margin-bottom: 0.7rem;
}

.hero-title {
    font-size: clamp(2.4rem, 4vw, 3.2rem);
    margin: 0 0 0.6rem;
    line-height: 1.15;
}

.hero-subtitle {
    margin: 0;
    font-size: 0.98rem;
    color: var(--text-soft);
}

.hero-buttons {
    margin-top: 1.5rem;
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
}

/* Glow on hero text */

.hero-energy-text h1,
.hero-energy-text p {
    text-shadow:
        0 0 15px rgba(255, 255, 255, 0.18),
        0 0 40px rgba(140, 91, 255, 0.28);
}

/* Buttons */

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: var(--radius-pill);
    font-size: 0.9rem;
    padding: 0.65rem 1.3rem;
    border: 1px solid transparent;
    cursor: pointer;
}

.btn-primary {
    background: linear-gradient(135deg, #b46cff, #6b3bff);
    border-color: #6b3bff;
    color: #ffffff;
    box-shadow: var(--shadow-soft);
}

.btn-primary:hover {
    filter: brightness(1.07);
}

.btn-ghost {
    background: rgba(4, 6, 30, 0.85);
    border-color: rgba(175, 184, 255, 0.45);
    color: var(--text-main);
}

.btn-ghost:hover {
    background: rgba(13, 17, 48, 0.98);
}

.btn-ghost-light {
    background: transparent;
    border-color: #ffffff;
    color: #ffffff;
}

/* Quick row */

.quick-row {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 1.4rem;
    background: radial-gradient(circle at top left, #1a1e4a, #060715);
    border-radius: 24px;
    padding: 1.2rem 1.3rem;
    border: 1px solid rgba(132, 142, 230, 0.6);
    box-shadow: 0 18px 50px rgba(0, 0, 0, 0.7);
}

.quick-item h3 {
    margin: 0 0 0.35rem;
    font-size: 1rem;
}

.quick-item p {
    margin: 0;
    font-size: 0.86rem;
    color: var(--text-soft);
}

/* Snapshots */

.snapshots {
    margin-top: 0.6rem;
}

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

.snapshot-card {
    position: relative;
    border-radius: var(--radius-card);
    overflow: hidden;
    box-shadow: var(--shadow-soft);
    background: #000000;
}

.snapshot-card img {
    display: block;
    width: 100%;
    height: 230px;
    object-fit: cover;
    opacity: 0.9;
    transition: transform 0.35s ease, opacity 0.35s ease;
}

.snapshot-overlay {
    position: absolute;
    inset: 0;
    padding: 1rem;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    background: linear-gradient(to top, rgba(4, 8, 35, 0.95), rgba(4, 8, 35, 0));
    color: #ffffff;
}

.snapshot-overlay h3 {
    margin: 0 0 0.3rem;
    font-size: 1rem;
}

.snapshot-overlay p {
    margin: 0;
    font-size: 0.86rem;
}

.snapshot-card:hover img {
    transform: scale(1.06);
    opacity: 1;
}

/* Tiles */

.tiles {
    padding-top: 2.4rem;
}

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

.tile-card {
    border-radius: 20px;
    background: radial-gradient(circle at top left, rgba(140, 91, 255, 0.28), rgba(11, 12, 40, 0.98));
    padding: 1.2rem 1.1rem 1.3rem;
    border: 1px solid rgba(154, 166, 255, 0.7);
    box-shadow: var(--shadow-soft);
    transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}

.tile-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 24px 60px rgba(0, 0, 0, 0.85);
    border-color: #ffffff;
}

.tile-label {
    font-size: 0.76rem;
    text-transform: uppercase;
    letter-spacing: 0.16em;
    color: var(--text-mute);
    margin-bottom: 0.45rem;
}

.tile-card h3 {
    margin: 0 0 0.4rem;
    font-size: 1.06rem;
}

.tile-card p {
    margin: 0;
    font-size: 0.9rem;
    color: var(--text-soft);
}

/* Credentials and clients */

.credentials {
    padding-top: 2.7rem;
}

.credentials-inner {
    border-radius: 26px;
    background: radial-gradient(circle at top left, rgba(140, 91, 255, 0.45), #050619);
    color: #ffffff;
    padding: 1.9rem 1.7rem;
    display: grid;
    grid-template-columns: minmax(0, 1.3fr) minmax(0, 1.1fr);
    gap: 1.8rem;
    box-shadow: var(--shadow-soft);
    border: 1px solid rgba(165, 176, 255, 0.9);
}

.credentials-left .section-title {
    color: #ffffff;
}

.credentials-left .section-intro {
    color: #dde0ff;
}

.credentials-right {
    display: flex;
    align-items: center;
    justify-content: center;
}

/* 3 rows x 2 columns client logo grid */

.client-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 1.1rem 1.6rem;
    align-items: center;
    justify-items: center;
}

/* client logo pill boxes in purple to match security tiles */

.client-logo {
    width: 180px;
    height: 64px;
    border-radius: 999px;
    background: radial-gradient(circle at top left, rgba(140, 91, 255, 0.32), rgba(11, 12, 40, 0.98));
    border: 1px solid rgba(154, 166, 255, 0.85);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0.4rem 0.9rem;
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.7);
}

.client-logo img {
    max-width: 100%;
    max-height: 38px;
    object-fit: contain;
    display: block;
}

/* CTA strip */

.section-cta {
    padding-top: 2.8rem;
    padding-bottom: 3.1rem;
}

.section-cta-inner {
    border-radius: 24px;
    background: linear-gradient(135deg, #9f6aff, #4d5dff);
    color: #ffffff;
    padding: 1.9rem 1.7rem;
    display: flex;
    flex-wrap: wrap;
    gap: 1.2rem;
    align-items: center;
    justify-content: space-between;
    box-shadow: var(--shadow-soft);
}

.section-cta-text h2 {
    margin: 0 0 0.4rem;
    font-size: 1.5rem;
}

.section-cta-text p {
    margin: 0;
    font-size: 0.9rem;
}

.section-cta-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 0.7rem;
}

/* Footer */

.site-footer {
    border-top: 1px solid rgba(101, 110, 198, 0.6);
    background: #050617;
}

.footer-inner {
    max-width: 1120px;
    margin: 0 auto;
    padding: 1.7rem 1.25rem 2.1rem;
    display: grid;
    grid-template-columns: minmax(0, 1.3fr) minmax(0, 1.1fr) minmax(0, 0.9fr);
    gap: 1.4rem;
    align-items: center;
}

.footer-brand {
    display: flex;
    align-items: center;
    gap: 0.6rem;
}

.footer-logo {
    display: block;
    height: 26px;
    width: auto;
}

.footer-name {
    font-size: 0.9rem;
    font-weight: 600;
}

.footer-tagline {
    font-size: 0.78rem;
    color: var(--text-mute);
}

.footer-links {
    display: flex;
    flex-wrap: wrap;
    gap: 0.9rem;
    font-size: 0.86rem;
    color: var(--text-soft);
}

.footer-right {
    text-align: right;
}

.footer-social {
    display: flex;
    justify-content: flex-end;
    gap: 0.5rem;
    margin-bottom: 0.4rem;
}

.footer-social a {
    width: 28px;
    height: 28px;
    border-radius: 999px;
    background: rgba(10, 11, 32, 0.96);
    border: 1px solid rgba(138, 146, 228, 0.7);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-mute);
    font-size: 0.8rem;
}

.footer-social a:hover {
    background: #ffffff;
    color: #14162a;
}

.footer-meta {
    font-size: 0.78rem;
    color: var(--text-mute);
}

.footer-meta a {
    margin-left: 0.6rem;
}

/* Responsive */

@media (max-width: 960px) {
    .hero-inner {
        padding-top: 3rem;
        padding-bottom: 3.2rem;
    }

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

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

    .credentials-inner {
        grid-template-columns: minmax(0, 1fr);
    }

    .footer-inner {
        grid-template-columns: minmax(0, 1fr);
        text-align: left;
    }

    .footer-right {
        text-align: left;
    }

    .footer-social {
        justify-content: flex-start;
    }
}

@media (max-width: 720px) {
    .header-inner {
        padding: 0.65rem 1rem;
    }

    .nav-main {
        display: none;
        position: absolute;
        top: 54px;
        right: 0;
        left: 0;
        padding: 0.75rem 1.25rem 0.9rem;
        flex-direction: column;
        gap: 0.55rem;
        background: rgba(10, 10, 30, 0.97);
        border-bottom: 1px solid rgba(120, 129, 214, 0.65);
    }

    .nav-main.nav-open {
        display: flex;
    }

    .nav-toggle {
        display: inline-flex;
    }

    .section {
        padding: 2.5rem 1.25rem;
    }

    .quick-row {
        grid-template-columns: minmax(0, 1fr);
    }

    .snapshot-grid,
    .tiles-grid {
        grid-template-columns: minmax(0, 1fr);
    }

    /* Mobile layout for client logo pills */
    .client-grid {
        grid-template-columns: minmax(0, 1fr);
        gap: 1rem;
    }

    .client-logo {
        width: 100%;
        max-width: 100%;
        height: auto;
        min-height: 86px;
    }
}

/* Narrow header width aligner */

.section-header-narrow {
    max-width: calc((1120px - 1.5rem * 2) * (3/3));
    margin-left: auto;
    margin-right: auto;
}

/* Security tiles */

.security-tile {
    text-align: left;
    padding-top: 1.6rem;
    padding-bottom: 1.6rem;
}

.security-logo {
    width: 82px;
    height: auto;
    margin-bottom: 1rem;
    opacity: 0.95;
    display: block;
}

/* Uniform logo sizing and placement */

.uniform-logo {
    width: 95px;
    height: 55px;
    object-fit: contain;
    display: block;
    margin: 0 auto 1rem auto;
    opacity: 0.9;
}

/* Multi-office footer redesign */

.offices-footer {
    max-width: 1120px;
    margin: 0 auto;
    padding: 3rem 1.25rem 2.8rem;
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 2.2rem;
}

.office-block h4 {
    margin: 0 0 0.4rem;
    font-size: 1rem;
    color: #ffffff;
    font-weight: 600;
}

.office-block p {
    margin: 0;
    color: var(--text-soft);
    font-size: 0.88rem;
    line-height: 1.45;
}

.office-soon {
    font-size: 0.75rem;
    color: var(--accent);
    margin-left: 0.3rem;
}

/* bottom bar */

.footer-bottom {
    grid-column: 1 / -1;
    margin-top: 1.8rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

/* social icons remain same, but spacing tweaked */

.footer-social {
    display: flex;
    gap: 0.6rem;
}

.footer-meta {
    font-size: 0.78rem;
    color: var(--text-mute);
}

.footer-meta a {
    margin-left: 0.8rem;
    color: var(--text-soft);
}

@media (max-width: 820px) {
    .offices-footer {
        grid-template-columns: minmax(0, 1fr);
        gap: 2rem;
    }

    .footer-bottom {
        flex-direction: column;
        gap: 1rem;
        align-items: flex-start;
    }
}

/* -------- New layouts for policy pages and solutions page -------- */

/* Policy content bodies */

.privacy-body,
.sustainability-body {
    max-width: 760px;
    margin: 0 auto;
    font-size: 0.94rem;
    color: var(--text-soft);
}

.privacy-body h2,
.privacy-body h3,
.sustainability-body h2,
.sustainability-body h3 {
    margin-top: 1.4rem;
    margin-bottom: 0.4rem;
    font-size: 1.05rem;
    color: var(--text-main);
}

.privacy-body h2:first-child,
.sustainability-body h2:first-child {
    margin-top: 0;
}

.privacy-body ul,
.sustainability-body ul {
    padding-left: 1.1rem;
    margin: 0.4rem 0 0.9rem;
}

.privacy-body li,
.sustainability-body li {
    margin-bottom: 0.25rem;
}

/* Solutions overview grid tweaks */

.solutions-grid .snapshot-card {
    background: #000000;
}

.solutions-grid .snapshot-overlay h3 {
    font-size: 1.05rem;
    margin-bottom: 0.45rem;
}

/* Generic feature grid used across solutions sections */

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

.feature-card {
    border-radius: var(--radius-card);
    background: radial-gradient(circle at top left, rgba(140, 91, 255, 0.22), rgba(7, 8, 28, 0.96));
    border: 1px solid rgba(156, 168, 255, 0.75);
    padding: 1.2rem 1.1rem 1.3rem;
    box-shadow: var(--shadow-soft);
    font-size: 0.9rem;
}

.feature-card h3 {
    margin: 0 0 0.4rem;
    font-size: 1.02rem;
    color: #ffffff;
}

.feature-card p {
    margin: 0 0 0.5rem;
    color: var(--text-soft);
}

.feature-card ul {
    margin: 0;
    padding-left: 1.1rem;
    color: var(--text-soft);
}

.feature-card li {
    margin-bottom: 0.25rem;
}

.feature-note {
    margin-top: 0.5rem;
    font-size: 0.78rem;
    color: var(--text-mute);
}

/* Scalability cards */

.section-cta-light {
    padding-top: 2.3rem;
    padding-bottom: 2.6rem;
}

.scalability-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 1.5rem;
    margin-top: 1.6rem;
}

.scalability-card {
    border-radius: 22px;
    background: radial-gradient(circle at top left, rgba(81, 207, 255, 0.2), rgba(7, 8, 28, 0.96));
    border: 1px solid rgba(150, 190, 255, 0.8);
    padding: 1.3rem 1.2rem 1.4rem;
    box-shadow: var(--shadow-soft);
    font-size: 0.9rem;
}

.scalability-card h3 {
    margin: 0 0 0.4rem;
    font-size: 1.02rem;
}

.scalability-card p {
    margin: 0 0 0.5rem;
    color: var(--text-soft);
}

.scalability-card ul {
    margin: 0;
    padding-left: 1.1rem;
    color: var(--text-soft);
}

.scalability-card li {
    margin-bottom: 0.22rem;
}

/* Packages */

.package-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 1.5rem;
    margin-top: 1.6rem;
}

.package-card {
    border-radius: 22px;
    background: rgba(7, 8, 28, 0.96);
    border: 1px solid rgba(154, 166, 255, 0.75);
    padding: 1.4rem 1.2rem 1.5rem;
    box-shadow: var(--shadow-soft);
    font-size: 0.9rem;
}

.package-card h3 {
    margin: 0 0 0.4rem;
    font-size: 1.06rem;
    color: #ffffff;
}

.package-card p {
    margin: 0 0 0.6rem;
    color: var(--text-soft);
}

.package-card ul {
    margin: 0 0 0.6rem;
    padding-left: 1.1rem;
    color: var(--text-soft);
}

.package-card li {
    margin-bottom: 0.25rem;
}

.package-card-highlight {
    background: radial-gradient(circle at top left, rgba(140, 91, 255, 0.4), rgba(7, 8, 28, 0.96));
    border-color: #ffffff;
}

.package-note {
    margin: 0;
    font-size: 0.8rem;
    color: var(--text-mute);
}

.packages-cta {
    margin-top: 2rem;
    display: flex;
    flex-wrap: wrap;
    gap: 0.8rem;
}

/* Small sustainability mention section */

.section-cta-light .section-header-narrow {
    text-align: left;
}

.section-cta-light .section-intro {
    max-width: 720px;
}

/* Responsive tweaks for new layouts */

@media (max-width: 960px) {
    .feature-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

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

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

@media (max-width: 720px) {
    .feature-grid,
    .scalability-grid,
    .package-grid {
        grid-template-columns: minmax(0, 1fr);
    }

    .packages-cta {
        flex-direction: column;
        align-items: flex-start;
    }
}

/* DIGITAL AND PRINTED PASSES */
.section-passes {
    padding-block: 4rem;
    background: radial-gradient(circle at top left, rgba(140, 91, 255, 0.35), transparent 55%),
                radial-gradient(circle at bottom right, rgba(81, 207, 255, 0.25), transparent 55%),
                var(--bg-page-alt);
}

.passes-shell {
    max-width: 1120px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: minmax(0, 1.1fr) minmax(0, 1.3fr);
    gap: 3rem;
    align-items: center;
}

@media (max-width: 880px) {
    .passes-shell {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .passes-visual {
        order: 2;
    }
}

/* Visual: image */

.passes-visual-image {
    display: flex;
    align-items: center;
    justify-content: center;
}

.passes-visual-image img {
    max-width: 100%;
    height: auto;
    object-fit: contain;
    border: 0;
    box-shadow: none;
    background: none;
    border-radius: 0;
}

/* Content */

.passes-content .section-title {
    margin-bottom: 0.5rem;
}

.passes-content .section-intro {
    max-width: 32rem;
}

/* Feature list */

.passes-features {
    margin-top: 1.75rem;
    display: flex;
    flex-direction: column;
    gap: 1.1rem;
}

.passes-feature {
    display: flex;
    gap: 1rem;
    align-items: flex-start;
}

.passes-feature-icon {
    width: 32px;
    height: 32px;
    border-radius: 999px;
    border: 1px solid rgba(155, 164, 220, 0.7);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 15px;
    color: var(--text-soft);
    flex-shrink: 0;
    background: rgba(16, 19, 47, 0.9);
}

.passes-feature-icon i {
    line-height: 1;
}

.passes-feature-body h3 {
    margin: 0 0 0.15rem;
    font-size: 1rem;
}

.passes-feature-body p {
    margin: 0;
    font-size: 0.9rem;
    color: var(--text-soft);
    max-width: 29rem;
}

/* PACKAGES */

/* PACKAGES */

.section-packages {
    padding-block: 4.5rem;
    background: radial-gradient(circle at top right, rgba(140, 91, 255, 0.22), transparent 55%),
                var(--bg-page);
}

.packages-shell {
    max-width: 1120px;
    margin: 0 auto;
}

.packages-header {
    width: 100%;
    max-width: none;
    margin-bottom: 2.5rem;
}

/* Tiers layout */

.package-tiers {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 1.75rem;
}

@media (max-width: 1040px) {
    .package-tiers {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 720px) {
    .package-tiers {
        grid-template-columns: 1fr;
    }
}

.package-tier {
    position: relative;
    padding: 1.4rem 1.4rem 1.5rem;
    border-radius: 20px;
    background: rgba(10, 11, 30, 0.96);
    border: 1px solid rgba(155, 164, 220, 0.45);
    box-shadow: 0 18px 45px rgba(0, 0, 0, 0.75);
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
}

.package-tier-managed {
    background: radial-gradient(circle at top left, rgba(81, 207, 255, 0.26), transparent 65%),
                rgba(10, 11, 30, 0.98);
}

/* Tier content */

.tier-header {
    display: flex;
    align-items: baseline;
    justify-content: space-between;
    gap: 0.5rem;
}

.tier-header h3 {
    margin: 0;
    font-size: 1.1rem;
}

.tier-tag {
    margin: 0;
    font-size: 0.75rem;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--text-mute);
}

.tier-intro {
    margin: 0;
    font-size: 0.9rem;
    color: var(--text-soft);
}

.tier-list {
    margin: 0.2rem 0 0;
    padding-left: 1.1rem;
    list-style: none;
    font-size: 0.88rem;
    color: var(--text-soft);
}

.tier-list li {
    position: relative;
    margin-bottom: 0.35rem;
}

.tier-list li::before {
    content: "";
    position: absolute;
    left: -0.9rem;
    top: 0.45rem;
    width: 5px;
    height: 5px;
    border-radius: 999px;
    background: rgba(140, 91, 255, 0.9);
}

/* CTA */

.packages-cta {
    margin-top: 2.5rem;
    display: flex;
    flex-direction: column;
    gap: 0.9rem;
    align-items: flex-start;
}

.packages-cta-text {
    margin: 0;
    font-size: 0.9rem;
    color: var(--text-soft);
}

.packages-cta-actions {
    display: flex;
    gap: 0.75rem;
    flex-wrap: wrap;
}

/* SUSTAINABILITY SECTION */

.section-sustainability {
    padding-block: 3.5rem;
    background:
        radial-gradient(circle at top right, rgba(81, 207, 120, 0.25), transparent 60%),
        var(--bg-page);
}

.sustain-shell {
    max-width: 1120px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: minmax(0, 1.25fr) minmax(0, 0.75fr);
    gap: 2.5rem;
    align-items: center;
}

@media (max-width: 900px) {
    .sustain-shell {
        grid-template-columns: 1fr;
        text-align: left;
    }
}

/* Copy */

.sustain-title {
    color: #71e298; /* soft green that matches AZ sustainability tone */
}

.sustain-intro {
    max-width: 40rem;
}

/* Visual */

.sustain-visual {
    display: flex;
    align-items: center;
    justify-content: flex-end;
}

.sustain-icon {
    width: 160px;
    height: auto;
    opacity: 0.9;
    filter: drop-shadow(0 12px 25px rgba(0, 0, 0, 0.4));
    transform: translateY(4px);
}

@media (max-width: 900px) {
    .sustain-visual {
        justify-content: flex-start;
    }
    .sustain-icon {
        width: 120px;
    }
}