/* Global styles */
:root {
    --aro-bg: #050709;
    --aro-bg-soft: #070c11;
    --aro-bg-alt: #0b1018;
    --aro-seafoam: #BEDBDF;
    --aro-mint-soft: #A8E6CF;
    --aro-blue-soft: #BEDBDF;
    --aro-text-main: #FEFEFE;
    --aro-text-muted: rgba(255, 255, 255, 0.7);
    --aro-border-soft: #262f3a;
    --radius: 14px;
    --transition: 220ms ease;
    --aro-spacing-xs: 0.5rem;
    --aro-spacing-sm: 0.75rem;
    --aro-spacing-md: 1.25rem;
    --aro-spacing-lg: 2rem;
    --aro-spacing-xl: 3rem;
    --aro-spacing-2xl: 4rem;
    --aro-font-s: 0.8rem;
    --aro-font-base: 0.95rem;
    --aro-font-l: 1.15rem;
    --aro-font-xl: clamp(1.6rem, 2.4vw, 1.9rem);
    --aro-font-xxl: clamp(2.4rem, 4vw, 3.2rem);
    font-family: system-ui, -apple-system, BlinkMacSystemFont, "SF Pro Text", sans-serif;
}

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

body {
    background: var(--aro-bg);
    color: var(--aro-text-main);
    min-height: 100vh;
    line-height: 1.75;
    -webkit-font-smoothing: antialiased;
}

p + p {
    margin-top: 1.5rem;
}

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

img {
    display: block;
    max-width: 100%;
}

.page-shell {
    overflow-x: hidden;
}

.container {
    max-width: 1180px;
    margin: 0 auto;
    padding: 0 24px;
}

.section-eyebrow {
    text-transform: uppercase;
    letter-spacing: 0.1em;
    font-size: 0.85rem;
    color: var(--aro-text-muted);
    margin-bottom: 1rem;
}

.section-heading {
    position: relative;
    display: inline-block;
    margin-top: var(--aro-spacing-sm);
    margin-bottom: var(--aro-spacing-lg);
    padding-bottom: var(--aro-spacing-xs);
    font-size: var(--aro-font-xl);
    text-transform: uppercase;
    letter-spacing: 0.08em;
    line-height: 1.15;
    font-weight: 600;
}

.section-title {
    font-size: clamp(1.9rem, 3vw, 2.3rem);
    line-height: 1.2;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    margin-bottom: 1.5rem;
    font-weight: 600;
}

.section-body {
    font-size: 0.98rem;
    color: var(--aro-text-muted);
}

h1, h2, h3 {
    line-height: 1.2;
    font-weight: 600;
    letter-spacing: 0;
}

.arrow-underline {
    position: relative;
    display: inline-block;
}

/* Base arrow-underline - only visible on hero titles */
.arrow-underline::after {
    display: none;
}

.arrow-underline::before {
    display: none;
}

/* Section headings - no underline */
.section-heading::after,
.section-title::after {
    display: none;
}

/* Navigation */
.site-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 20;
    background: transparent;
    transition: background 300ms ease, backdrop-filter 300ms ease;
}

.site-header.is-scrolled {
    background: rgba(5, 7, 9, 0.98);
    backdrop-filter: blur(12px);
}

.header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 80px;
}


.header-brand {
    position: relative;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0;
    background: transparent;
    border-radius: 0;
    box-shadow: none;
    border: none;
    text-decoration: none;
    z-index: 3;
}

.header-logo {
    height: 56px;
    width: auto;
    object-fit: contain;
    background: transparent;
}

.header-wordmark {
    display: none;
}

.header-nav {
    display: flex;
    align-items: center;
    gap: 1.75rem;
    margin-left: auto;
    padding-bottom: 1rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.header-menu {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    list-style: none;
    margin: 0;
    padding: 0;
}

.header-link {
    position: relative;
    display: inline-block;
    padding-bottom: 6px;
    font-size: 0.85rem;
    font-weight: 500;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--aro-text-muted);
    text-decoration: none;
    transition: color 400ms ease;
}

.header-link::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    width: 0;
    height: 2px;
    background: var(--aro-seafoam);
    clip-path: polygon(0 0, calc(100% - 6px) 0, 100% 50%, calc(100% - 6px) 100%, 0 100%);
    transition: width 400ms ease;
}

.header-link::before {
    display: none;
}


.header-link.is-active,
.header-link:hover,
.header-link:focus-visible {
    color: var(--aro-seafoam);
}

.header-link.is-active::after,
.header-link:hover::after,
.header-link:focus-visible::after {
    width: 100%;
}

@media (max-width: 480px) {
    .arrow-underline::after {
        width: 3rem;
    }
}

/* Login Button */
.header-login {
    position: relative;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.6rem 1.6rem;
    border-radius: 8px;
    border: 1.5px solid var(--aro-seafoam);
    background: transparent;
    font-size: 0.8rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    text-decoration: none;
    color: var(--aro-seafoam);
    overflow: hidden;
    transition: color 300ms ease, border-color 300ms ease, background 300ms ease;
}

.header-login span {
    position: relative;
    z-index: 2;
}

.header-login::before {
    content: "";
    position: absolute;
    inset: 0;
    background: var(--aro-seafoam);
    transform: translateX(-100%);
    transition: transform 350ms ease;
    z-index: 1;
}

.header-login:hover,
.header-login:focus-visible {
    color: #0A0A0A;
    border-color: var(--aro-seafoam);
}

.header-login:hover::before,
.header-login:focus-visible::before {
    transform: translateX(0);
}

.header-nav-toggle {
    display: none;
    width: 32px;
    height: 32px;
    padding: 0;
    border: none;
    background: transparent;
    cursor: pointer;
    position: relative;
}

.header-nav-toggle span {
    position: absolute;
    left: 6px;
    right: 6px;
    height: 2px;
    background: var(--aro-seafoam);
    border-radius: 999px;
    transition: transform 0.2s ease, opacity 0.2s ease, top 0.2s ease, bottom 0.2s ease;
}

.header-nav-toggle span:nth-child(1) {
    top: 10px;
}

.header-nav-toggle span:nth-child(2) {
    bottom: 10px;
}

.site-header.is-open .header-nav-toggle span:nth-child(1) {
    top: 50%;
    transform: translateY(-50%) rotate(45deg);
}

.site-header.is-open .header-nav-toggle span:nth-child(2) {
    bottom: 50%;
    transform: translateY(50%) rotate(-45deg);
}

/* Mobile Menu - Full Screen Overlay */
.header-mobile {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    width: 100%;
    height: 100vh;
    background: var(--aro-bg);
    z-index: 15;
    padding: 120px 24px 40px;
    overflow-y: auto;
}

.header-mobile[hidden] {
    display: none;
}

/* Mobile menu when open (hidden attribute removed by JS) */
.header-mobile:not([hidden]) {
    display: flex;
    flex-direction: column;
}

.header-mobile:not([hidden]) ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 0;
}

.header-mobile:not([hidden]) li {
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    display: block;
    width: 100%;
}

.header-mobile:not([hidden]) li:last-child {
    border-bottom: none;
}

/* Make li containing login button have no border */
.header-mobile:not([hidden]) li:has(.header-login) {
    border-bottom: none;
}

.header-mobile:not([hidden]) .header-link {
    display: inline-block;
    padding: 1.25rem 0;
    font-size: 1.1rem;
    font-weight: 500;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--aro-text-muted);
    text-decoration: none;
    position: relative;
    transition: color 400ms ease;
    border-radius: 0;
    background: transparent;
}

.header-mobile:not([hidden]) .header-link::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: 1rem;
    width: 0;
    height: 2px;
    background: var(--aro-seafoam);
    clip-path: polygon(0 0, calc(100% - 6px) 0, 100% 50%, calc(100% - 6px) 100%, 0 100%);
    transition: width 400ms ease;
}

.header-mobile:not([hidden]) .header-link:hover,
.header-mobile:not([hidden]) .header-link:focus,
.header-mobile:not([hidden]) .header-link.is-active {
    color: var(--aro-seafoam);
    background: transparent;
}

.header-mobile:not([hidden]) .header-link.is-active::after,
.header-mobile:not([hidden]) .header-link:hover::after,
.header-mobile:not([hidden]) .header-link:focus::after {
    width: 100%;
}

/* Mobile Login Button - inside menu */
.header-mobile:not([hidden]) .header-login {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 2rem;
    width: 100%;
    padding: 1rem 1.6rem;
    border-top: none;
}

/* Body scroll lock when menu is open */
body.menu-open {
    overflow: hidden;
}

/* Buttons */
.btn {
    position: relative;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 14px 28px;
    min-width: 160px;
    height: 48px;
    border-radius: 8px;
    font-weight: 600;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    font-size: 0.85rem;
    border: 1.5px solid transparent;
    cursor: pointer;
    transition: all 400ms cubic-bezier(0.4, 0, 0.2, 1);
    overflow: hidden;
    isolation: isolate;
}

.btn-primary {
    color: #0A0A0A;
    background: var(--aro-seafoam);
    border-color: var(--aro-seafoam);
    box-shadow: 0 4px 20px rgba(190, 219, 223, 0.25);
}

.btn-primary::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, rgba(255,255,255,0.1), rgba(255,255,255,0.2));
    clip-path: polygon(0 0, 85% 0, 100% 50%, 85% 100%, 0 100%);
    transform: translateX(-100%);
    transition: transform 400ms cubic-bezier(0.4, 0, 0.2, 1);
    z-index: -1;
}

.btn-primary:hover,
.btn-primary:focus-visible {
    transform: translateY(-2px) scale(1.02);
    box-shadow: 0 8px 30px rgba(190, 219, 223, 0.4);
}

.btn-primary:hover::before,
.btn-primary:focus-visible::before {
    transform: translateX(0);
}

.btn-primary:active {
    transform: translateY(0) scale(1);
    box-shadow: 0 4px 20px rgba(190, 219, 223, 0.25);
}

.btn-outline {
    background: transparent;
    color: var(--aro-seafoam);
    border-color: var(--aro-seafoam);
}

.btn-outline:hover,
.btn-outline:focus-visible {
    background: rgba(190, 219, 223, 0.1);
    transform: translateY(-2px);
}

.btn-outline:active {
    transform: translateY(0);
}

.btn-secondary {
    background: rgba(255, 255, 255, 0.05);
    color: var(--aro-text-main);
    border-color: rgba(255, 255, 255, 0.15);
}

.btn-secondary:hover,
.btn-secondary:focus-visible {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.25);
    transform: translateY(-2px);
}

.btn-secondary:active {
    transform: translateY(0);
}

/* Hero */
.hero {
    position: relative;
    padding-top: 5.5rem;
    padding-bottom: 6rem;
    background:
        radial-gradient(circle at top center, rgba(190, 219, 223, 0.08), transparent 60%),
        var(--aro-bg);
    overflow: hidden;
}

/* Simple page placeholders */
.page-hero {
    padding: var(--aro-spacing-2xl) 0;
    background: var(--aro-bg-soft);
    border-bottom: 1px solid var(--aro-border-soft);
}

.page-hero-inner {
    min-height: 60vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.page-hero-title {
    font-size: var(--aro-font-xxl);
    letter-spacing: 0.14em;
    text-transform: uppercase;
}

.login-redirect .page-hero-inner {
    min-height: 40vh;
}

.login-redirect-card {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    align-items: center;
    text-align: center;
    max-width: 520px;
    margin: 0 auto;
}

.login-redirect-heading {
    font-size: var(--aro-font-lg);
    letter-spacing: 0.08em;
    text-transform: none;
    color: var(--aro-text-main);
    margin: 0;
}

.login-redirect-copy {
    color: var(--aro-text-muted);
    line-height: 1.6;
    max-width: 40ch;
}

/* About page */
body.about-page {
    background: var(--aro-bg);
    color: var(--aro-text-main);
}

body.about-page .about-hero {
    position: relative;
    padding-top: 8rem;
    padding-bottom: 6rem;
    min-height: 55vh;
    display: flex;
    align-items: center;
    justify-content: center;
}

body.about-page .about-hero .hero-title {
    margin-bottom: 1.2rem;
    max-width: 18ch;
}

body.about-page .about-hero .hero-subtitle {
    margin: 0 auto;
    max-width: 44ch;
}

body.about-page .about-section {
    padding: 3.5rem 0;
    border-top: 1px solid rgba(255, 255, 255, 0.06);
}

body.about-page .about-section-inner {
    display: grid;
    gap: 0.8rem;
    max-width: 70ch;
}

body.about-page .about-section-title {
    font-size: clamp(1.4rem, 2vw, 1.8rem);
    letter-spacing: 0.06em;
}

body.about-page .about-section-copy {
    color: var(--aro-text-muted);
    line-height: 1.7;
}

body.about-page .about-values {
    border-top: 1px solid rgba(190, 219, 223, 0.25);
    padding-top: 3.75rem;
}

body.about-page .about-values-inner {
    display: grid;
    gap: 2rem;
    max-width: 80ch;
}

body.about-page .about-values-grid {
    display: grid;
    gap: 1.5rem;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
}

body.about-page .about-value {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(190, 219, 223, 0.14);
    border-radius: 14px;
    padding: 1.1rem 1.2rem 1.05rem;
    position: relative;
    overflow: hidden;
}

body.about-page .about-value::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 2px;
    background: linear-gradient(90deg, rgba(190, 219, 223, 0.7), rgba(190, 219, 223, 0.1));
}

body.about-page .about-value-title {
    font-size: clamp(1.05rem, 1.3vw, 1.2rem);
    letter-spacing: 0.04em;
    margin-bottom: 0.35rem;
}

body.about-page .about-value-copy {
    color: var(--aro-text-muted);
    line-height: 1.6;
    margin: 0;
}

body.about-page .about-values-footnote {
    color: var(--aro-text-muted);
    line-height: 1.65;
    max-width: 60ch;
}

/* About page CTA */
body.about-page .about-cta {
    padding: 5rem 0;
    text-align: center;
    border-top: 1px solid rgba(190, 219, 223, 0.12);
    background: linear-gradient(180deg, transparent 0%, rgba(190, 219, 223, 0.03) 100%);
}

body.about-page .about-cta-inner {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1.25rem;
    max-width: 600px;
    margin: 0 auto;
}

body.about-page .about-cta-title {
    font-size: clamp(1.5rem, 2.5vw, 2rem);
    letter-spacing: 0.04em;
    text-transform: uppercase;
    margin: 0;
}

body.about-page .about-cta-copy {
    color: var(--aro-text-muted);
    font-size: 1.05rem;
    line-height: 1.6;
    margin: 0;
}

/* Standalone page chrome (solutions, book demo) */
body.solutions-page,
body.book-demo-page {
    font-family: 'Inter', system-ui, -apple-system, BlinkMacSystemFont, 'SF Pro Text', sans-serif;
    background: var(--aro-bg);
    color: var(--aro-text-main);
    line-height: 1.7;
}

body.solutions-page #navbar,
body.book-demo-page #navbar {
    position: fixed;
    top: 0;
    width: 100%;
    background: rgba(5, 7, 9, 0.9);
    backdrop-filter: blur(18px) saturate(180%);
    z-index: 9999;
    padding: 1.2rem 5%;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    border-bottom: 1px solid rgba(190, 219, 223, 0.12);
}

body.solutions-page #navbar.scrolled,
body.book-demo-page #navbar.scrolled {
    padding: 0.9rem 5%;
    background: rgba(5, 7, 9, 0.95);
}

body.solutions-page .nav-container,
body.book-demo-page .nav-container {
    max-width: 1800px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 4rem;
}

body.solutions-page .logo-wrapper,
body.book-demo-page .logo-wrapper {
    position: relative;
    padding: 0.8rem 2.5rem;
    background: linear-gradient(90deg, rgba(190, 219, 223, 0.03), rgba(190, 219, 223, 0.12), rgba(190, 219, 223, 0.03));
    clip-path: polygon(10% 0%, 90% 0%, 100% 100%, 0% 100%);
    transition: all 0.3s ease;
    text-decoration: none;
}

body.solutions-page .logo-wrapper:hover,
body.book-demo-page .logo-wrapper:hover {
    background: linear-gradient(90deg, rgba(190, 219, 223, 0.08), rgba(190, 219, 223, 0.18), rgba(190, 219, 223, 0.08));
}

body.solutions-page .logo,
body.book-demo-page .logo {
    height: 35px;
    filter: brightness(1);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    flex-shrink: 0;
    position: relative;
    z-index: 1;
}

body.solutions-page .logo:hover,
body.book-demo-page .logo:hover {
    filter: brightness(1.2) drop-shadow(0 0 20px rgba(190, 219, 223, 0.5));
    transform: translateY(-1px);
}

body.solutions-page .nav-links,
body.book-demo-page .nav-links {
    display: flex;
    gap: 3.5rem;
    align-items: center;
    list-style: none;
    flex-grow: 1;
    justify-content: center;
    margin: 0;
    padding: 0;
}

body.solutions-page .nav-links a,
body.book-demo-page .nav-links a {
    text-decoration: none;
    color: var(--aro-text-main);
    font-weight: 500;
    font-size: 0.85rem;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    transition: all 0.3s ease;
    position: relative;
    padding: 0.3rem 0;
}

body.solutions-page .nav-links a::before,
body.book-demo-page .nav-links a::before {
    content: '';
    position: absolute;
    bottom: -6px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--aro-seafoam);
    transition: width 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    transform: skewX(-15deg);
    box-shadow: 0 0 8px var(--aro-seafoam);
}

body.solutions-page .nav-links a:hover,
body.book-demo-page .nav-links a:hover {
    color: var(--aro-seafoam);
}

body.solutions-page .nav-links a:hover::before,
body.book-demo-page .nav-links a:hover::before {
    width: 100%;
}

body.solutions-page .login-btn,
body.book-demo-page .login-btn {
    padding: 0.6rem 1.8rem;
    background: transparent;
    border: 1px solid rgba(190, 219, 223, 0.4);
    color: var(--aro-text-main);
    border-radius: 2px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    text-decoration: none;
    display: inline-block;
    letter-spacing: 1px;
    text-transform: uppercase;
    font-size: 0.8rem;
    position: relative;
    overflow: hidden;
}

body.solutions-page .login-btn::before,
body.book-demo-page .login-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 0;
    height: 100%;
    background: var(--aro-seafoam);
    transition: width 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    clip-path: polygon(0 0, calc(100% - 10px) 0, 100% 50%, calc(100% - 10px) 100%, 0 100%);
    z-index: -1;
}

body.solutions-page .login-btn:hover::before,
body.book-demo-page .login-btn:hover::before {
    width: 100%;
}

body.solutions-page .login-btn:hover,
body.book-demo-page .login-btn:hover {
    color: var(--aro-bg);
    border-color: transparent;
    transform: translateY(-1px);
}

body.solutions-page .hamburger,
body.book-demo-page .hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
    padding: 8px;
    z-index: 10;
}

body.solutions-page .hamburger span,
body.book-demo-page .hamburger span {
    width: 25px;
    height: 2px;
    background: var(--aro-text-main);
    transition: all 0.3s ease;
    border-radius: 2px;
}

body.solutions-page .hamburger:hover span,
body.book-demo-page .hamburger:hover span {
    background: var(--aro-seafoam);
}

body.solutions-page .hamburger.active span:nth-child(1),
body.book-demo-page .hamburger.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

body.solutions-page .hamburger.active span:nth-child(2),
body.book-demo-page .hamburger.active span:nth-child(2) {
    opacity: 0;
}

body.solutions-page .hamburger.active span:nth-child(3),
body.book-demo-page .hamburger.active span:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -6px);
}

/* Solutions page */
body.solutions-page .solutions-hero {
    position: relative;
    padding-top: 5rem;
    padding-bottom: 3rem;
    min-height: auto;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
}

body.solutions-page .solutions-hero .hero-title {
    font-size: clamp(2rem, 4vw, 2.75rem);
    margin-bottom: 0.75rem;
}

body.solutions-page .solutions-hero .hero-subtitle {
    margin: 0 auto;
    max-width: 44ch;
    font-size: 1.1rem;
}

body.solutions-page .solutions-paths {
    padding: 2rem 0 5rem;
}

body.solutions-page .solutions-paths-inner {
    display: grid;
    gap: 2rem;
    max-width: 900px;
    margin: 0 auto;
}

body.solutions-page .solutions-paths-header {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
    gap: 1rem;
}

body.solutions-page .solutions-paths-intro {
    color: var(--aro-text-muted);
    font-size: 1rem;
}

body.solutions-page .solutions-paths .currency-select {
    background-color: rgba(255, 255, 255, 0.03);
    color: var(--aro-text-muted);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    padding: 0.5rem 2rem 0.5rem 0.75rem;
    font-size: 0.85rem;
    cursor: pointer;
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='10' height='10' viewBox='0 0 12 12'%3E%3Cpath fill='%23888' d='M6 8L2 4h8z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 0.75rem center;
    transition: border-color 0.2s ease;
}

body.solutions-page .solutions-paths .currency-select:hover {
    border-color: rgba(190, 219, 223, 0.3);
}

body.solutions-page .solutions-paths-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
}

@media (max-width: 700px) {
    body.solutions-page .solutions-paths-grid {
        grid-template-columns: 1fr;
    }
}

body.solutions-page .solutions-path {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 16px;
    padding: 32px 28px;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    transition: transform 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease;
}

body.solutions-page .solutions-path:hover {
    transform: translateY(-4px);
    border-color: rgba(190, 219, 223, 0.25);
    box-shadow: 0 16px 40px rgba(0, 0, 0, 0.25);
}

body.solutions-page .solutions-path-badge {
    font-size: 0.7rem;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: var(--aro-seafoam);
    margin-bottom: 0.25rem;
}

body.solutions-page .solutions-path-title {
    font-size: 1.5rem;
    font-weight: 600;
    letter-spacing: 0.04em;
}

body.solutions-page .solutions-path-copy {
    color: var(--aro-text-muted);
    line-height: 1.6;
    font-size: 0.95rem;
}

body.solutions-page .solutions-path-price {
    display: flex;
    align-items: baseline;
    gap: 0.25rem;
    margin: 0.5rem 0;
}

body.solutions-page .solutions-path-price .price-from {
    font-size: 0.9rem;
    color: var(--aro-text-muted);
    margin-right: 0.25rem;
}

body.solutions-page .solutions-path-price .price-main {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--aro-text-main);
    letter-spacing: -0.02em;
}

body.solutions-page .solutions-path-price .price-period {
    font-size: 1rem;
    color: var(--aro-text-muted);
}

body.solutions-page .solutions-path-note {
    color: var(--aro-text-muted);
    font-size: 0.85rem;
}

body.solutions-page .solutions-path-features {
    list-style: none;
    padding: 0;
    margin: 0.5rem 0 1rem;
    display: flex;
    flex-direction: column;
    gap: 0.4rem;
}

body.solutions-page .solutions-path-features li {
    font-size: 0.9rem;
    color: var(--aro-text-muted);
    padding-left: 1.25rem;
    position: relative;
}

body.solutions-page .solutions-path-features li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: var(--aro-seafoam);
    font-size: 0.8rem;
}

body.solutions-page .solutions-path-cta {
    width: 100%;
    text-align: center;
    margin-top: auto;
}

/* Solutions Comparison Section */
body.solutions-page .solutions-comparison {
    padding: 4rem 0;
    background: var(--aro-bg-soft);
}

body.solutions-page .solutions-comparison-inner {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 3rem;
    max-width: 900px;
    margin: 0 auto;
}

@media (max-width: 700px) {
    body.solutions-page .solutions-comparison-inner {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
}

body.solutions-page .solutions-comparison-title {
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: var(--aro-text-main);
}

body.solutions-page .solutions-comparison-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 0.6rem;
}

body.solutions-page .solutions-comparison-list li {
    font-size: 0.9rem;
    color: var(--aro-text-muted);
    padding-left: 1.25rem;
    position: relative;
    line-height: 1.5;
}

body.solutions-page .solutions-comparison-list li::before {
    content: "→";
    position: absolute;
    left: 0;
    color: var(--aro-seafoam);
}


/* Support page */
body.support-page {
    background: var(--aro-bg);
    color: var(--aro-text-main);
}

body.support-page .support-hero {
    position: relative;
    padding: 5rem 0 3rem;
    min-height: auto;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
}

body.support-page .support-hero .hero-title {
    font-size: clamp(2rem, 4vw, 2.75rem);
    margin-bottom: 0.75rem;
}

body.support-page .support-hero .hero-subtitle {
    margin: 0 auto;
    max-width: 40ch;
    font-size: 1.1rem;
}

body.support-page .support-content {
    padding: 2rem 0 5rem;
}

/* FAQ Section */
body.support-page .support-faq {
    max-width: 720px;
    margin: 0 auto 4rem;
}

body.support-page .support-faq-title {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    text-align: center;
}

body.support-page .faq-accordion {
    border-radius: 16px;
    overflow: hidden;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.08);
}

body.support-page .faq-item {
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

body.support-page .faq-item:last-child {
    border-bottom: none;
}

body.support-page .faq-question {
    margin: 0;
}

body.support-page .faq-toggle {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 1rem;
    background: transparent;
    color: var(--aro-text-main);
    border: none;
    padding: 1.25rem 1.5rem;
    text-align: left;
    font-size: 1rem;
    font-weight: 500;
    line-height: 1.5;
    cursor: pointer;
    transition: background 0.2s ease;
}

body.support-page .faq-toggle:hover {
    background: rgba(255, 255, 255, 0.02);
}

body.support-page .faq-toggle[aria-expanded="true"] {
    background: rgba(190, 219, 223, 0.04);
}

body.support-page .faq-toggle:focus-visible {
    outline: 2px solid var(--aro-accent);
    outline-offset: -2px;
}

body.support-page .faq-icon {
    width: 20px;
    height: 20px;
    border-radius: 50%;
    background: rgba(190, 219, 223, 0.15);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    position: relative;
}

body.support-page .faq-icon::before,
body.support-page .faq-icon::after {
    content: "";
    position: absolute;
    background: var(--aro-seafoam);
    transition: transform 0.2s ease;
}

body.support-page .faq-icon::before {
    width: 10px;
    height: 2px;
}

body.support-page .faq-icon::after {
    width: 2px;
    height: 10px;
}

body.support-page .faq-toggle[aria-expanded="true"] .faq-icon::after {
    transform: rotate(90deg);
}

body.support-page .faq-panel {
    padding: 0 1.5rem 1.25rem;
    color: var(--aro-text-muted);
    line-height: 1.7;
}

body.support-page .faq-panel p {
    margin: 0;
}

/* Roadmap Section */
body.support-page .support-roadmap {
    max-width: 600px;
    margin: 0 auto 4rem;
    padding: 2rem;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 16px;
}

body.support-page .support-roadmap-title {
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 1.25rem;
    text-align: center;
}

body.support-page .roadmap-list {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

body.support-page .roadmap-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

body.support-page .roadmap-status {
    font-size: 0.7rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.04em;
    padding: 0.25rem 0.6rem;
    border-radius: 4px;
    min-width: 80px;
    text-align: center;
}

body.support-page .roadmap-status--shipped {
    background: rgba(190, 219, 223, 0.15);
    color: var(--aro-seafoam);
}

body.support-page .roadmap-status--progress {
    background: rgba(168, 230, 207, 0.15);
    color: var(--aro-mint-soft);
}

body.support-page .roadmap-status--planned {
    background: rgba(255, 255, 255, 0.05);
    color: var(--aro-text-muted);
}

body.support-page .roadmap-text {
    font-size: 0.95rem;
    color: var(--aro-text-muted);
}

body.support-page .roadmap-date {
    color: rgba(255, 255, 255, 0.4);
    font-size: 0.85rem;
    margin-left: 0.5rem;
}

/* Contact CTA */
body.support-page .support-contact {
    text-align: center;
    padding: 3rem 0;
    border-top: 1px solid rgba(255, 255, 255, 0.06);
}

body.support-page .support-contact-title {
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 0.35rem;
}

body.support-page .support-contact-text {
    color: var(--aro-text-muted);
    margin-bottom: 1.25rem;
}

body.support-page .support-contact-btn {
    min-width: 140px;
}

@media (max-width: 768px) {
    body.support-page .support-hero {
        padding: 4rem 0 2rem;
    }

    body.support-page .support-content {
        padding: 1rem 0 4rem;
    }

    body.support-page .support-faq {
        margin-bottom: 3rem;
    }

    body.support-page .faq-toggle {
        padding: 1rem;
    }

    body.support-page .faq-panel {
        padding: 0 1rem 1rem;
    }

    body.support-page .support-roadmap {
        padding: 1.5rem;
        margin-bottom: 3rem;
    }

    body.support-page .roadmap-status {
        min-width: 70px;
        font-size: 0.65rem;
    }

    body.support-page .support-contact {
        padding: 2rem 0;
    }
}

body.solutions-page .solutions-contact-line {
    padding: 4rem 0;
    text-align: center;
}

body.solutions-page .solutions-contact-inner {
    max-width: 500px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
}

body.solutions-page .solutions-contact-copy {
    font-size: 1rem;
    color: var(--aro-text-muted);
    margin: 0;
}

body.solutions-page .solutions-contact-btn {
    min-width: 140px;
}

@media (max-width: 968px) {
    body.solutions-page .solutions-hero {
        padding-top: 4rem;
        padding-bottom: 2rem;
    }

    body.solutions-page .solutions-paths {
        padding: 1rem 0 4rem;
    }

    body.solutions-page .solutions-comparison {
        padding: 3rem 0;
    }

    body.solutions-page .solutions-contact-line {
        padding: 3rem 0;
    }

    body.solutions-page .hamburger,
    body.book-demo-page .hamburger {
        display: flex;
    }

    body.solutions-page .nav-links,
    body.book-demo-page .nav-links {
        position: fixed;
        top: 80px;
        left: -100%;
        width: 100%;
        height: calc(100vh - 80px);
        background: rgba(5, 7, 9, 0.98);
        backdrop-filter: blur(20px);
        flex-direction: column;
        justify-content: flex-start;
        padding: 3rem 0;
        gap: 1rem;
        transition: left 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    }

    body.solutions-page .nav-links.active,
    body.book-demo-page .nav-links.active {
        left: 0;
    }

    body.solutions-page .nav-links a,
    body.book-demo-page .nav-links a {
        font-size: 1.2rem;
        padding: 1rem 2rem;
        width: 100%;
        text-align: center;
    }

    body.solutions-page .login-btn,
    body.book-demo-page .login-btn {
        margin-top: 2rem;
    }
}

/* Book demo page */
body.book-demo-page .book-demo-hero {
    position: relative;
    padding: 9rem 0 5rem;
    text-align: center;
    overflow: hidden;
}

body.book-demo-page .book-demo-hero::after {
    content: "";
    position: absolute;
    inset: -40% -10% auto;
    background:
        radial-gradient(circle at 20% 30%, rgba(190, 219, 223, 0.14), transparent 55%),
        radial-gradient(circle at 70% 20%, rgba(190, 219, 223, 0.08), transparent 60%);
    opacity: 1;
    pointer-events: none;
}

body.book-demo-page .book-demo-hero-inner {
    position: relative;
    z-index: 1;
    max-width: 760px;
    margin: 0 auto;
}

body.book-demo-page .book-demo-title {
    font-size: clamp(2.4rem, 4vw, 3.4rem);
    line-height: 1.1;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    margin: 0 0 1.25rem;
}

body.book-demo-page .book-demo-subtitle {
    font-size: clamp(1.05rem, 1.3vw, 1.2rem);
    color: var(--aro-text-muted);
    margin: 0 auto;
    max-width: 44ch;
}

body.book-demo-page .book-demo-main {
    padding: 5rem 0 8rem;
}

body.book-demo-page .book-demo-grid {
    display: grid;
    grid-template-columns: 1fr;
    max-width: 600px;
    margin: 0 auto;
    gap: 3rem;
    align-items: start;
}

body.book-demo-page .demo-schedule,
body.book-demo-page .demo-form {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(190, 219, 223, 0.12);
    border-radius: 16px;
    padding: 2rem;
    box-shadow: 0 24px 70px rgba(0, 0, 0, 0.45);
}

body.book-demo-page .demo-schedule-header,
body.book-demo-page .demo-form-header {
    display: flex;
    flex-direction: column;
    gap: 0.4rem;
    margin-bottom: 1.75rem;
}

body.book-demo-page .demo-timezone {
    margin: 0;
    color: var(--aro-text-muted);
    font-size: 0.92rem;
}

body.book-demo-page .demo-schedule h2,
body.book-demo-page .demo-form h2 {
    margin: 0;
    font-size: 1.5rem;
}

body.book-demo-page .demo-note {
    color: var(--aro-text-muted);
    font-size: 0.98rem;
    margin: 0;
}

body.book-demo-page .demo-slot-group + .demo-slot-group {
    margin-top: 1.75rem;
}

body.book-demo-page .demo-slot-date {
    font-weight: 700;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    margin-bottom: 0.75rem;
    color: var(--aro-text-main);
}

body.book-demo-page .demo-time-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
}

body.book-demo-page .demo-slot {
    padding: 0.85rem 1rem;
    border: 1px solid rgba(190, 219, 223, 0.2);
    background: rgba(255, 255, 255, 0.02);
    color: var(--aro-text-main);
    border-radius: 12px;
    cursor: pointer;
    transition: all 0.25s ease;
    min-width: 120px;
    text-align: center;
}

body.book-demo-page .demo-slot:hover {
    border-color: var(--aro-seafoam);
    box-shadow: 0 10px 30px rgba(190, 219, 223, 0.15);
}

body.book-demo-page .demo-slot.is-selected {
    background: var(--aro-seafoam);
    color: var(--aro-bg);
    border-color: var(--aro-seafoam);
    box-shadow: 0 12px 32px rgba(190, 219, 223, 0.25);
}

body.book-demo-page .selected-slot {
    background: rgba(190, 219, 223, 0.08);
    border: 1px solid rgba(190, 219, 223, 0.2);
    border-radius: 12px;
    padding: 1rem 1.25rem;
    margin-bottom: 1.5rem;
    min-height: 52px;
    display: flex;
    align-items: center;
    color: var(--aro-text-muted);
}

body.book-demo-page .selected-slot strong {
    color: var(--aro-text-main);
}

body.book-demo-page .demo-form .form-group label {
    font-weight: 600;
    letter-spacing: 0.02em;
}

body.book-demo-page .demo-form .form-group input,
body.book-demo-page .demo-form .form-group textarea {
    width: 100%;
    padding: 0.95rem 1rem;
    border: 1px solid rgba(190, 219, 223, 0.25);
    background: rgba(255, 255, 255, 0.02);
    color: var(--aro-text-main);
    border-radius: 12px;
    transition: border-color 150ms ease, background 150ms ease, box-shadow 150ms ease;
    font-family: 'Inter', sans-serif;
}

body.book-demo-page .demo-form .form-group input:focus,
body.book-demo-page .demo-form .form-group textarea:focus {
    outline: none;
    border-color: var(--aro-seafoam);
    box-shadow: 0 0 0 3px rgba(190, 219, 223, 0.1);
}

body.book-demo-page .submit-btn {
    width: 100%;
    padding: 1.1rem;
    background: transparent;
    border: 1px solid rgba(190, 219, 223, 0.4);
    color: var(--aro-text-main);
    border-radius: 12px;
    font-size: 1rem;
    font-weight: 600;
    letter-spacing: 0.03em;
    cursor: pointer;
    transition: all 0.35s ease;
    position: relative;
    overflow: hidden;
}

body.book-demo-page .submit-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 0;
    height: 100%;
    background: var(--aro-seafoam);
    transition: width 0.35s ease;
    z-index: -1;
}

body.book-demo-page .submit-btn:hover::before {
    width: 100%;
}

body.book-demo-page .submit-btn:hover {
    color: var(--aro-bg);
    border-color: transparent;
}

body.book-demo-page .submit-btn:disabled {
    opacity: 0.55;
    cursor: not-allowed;
}

body.book-demo-page .success-message {
    display: none;
    padding: 1.5rem;
    background: rgba(190, 219, 223, 0.08);
    border: 1px solid var(--aro-seafoam);
    border-radius: 12px;
    text-align: center;
    margin-top: 1.5rem;
}

body.book-demo-page .success-message.show {
    display: block;
}

body.book-demo-page .success-message h3 {
    color: var(--aro-seafoam);
    margin-bottom: 0.5rem;
}

body.book-demo-page .success-message.error {
    border-color: rgba(255, 153, 153, 0.7);
    color: #ffdcdc;
    background: rgba(255, 102, 102, 0.08);
}

@media (max-width: 960px) {
    body.book-demo-page .book-demo-grid {
        grid-template-columns: 1fr;
    }

    body.book-demo-page .book-demo-hero {
        padding-top: 7rem;
    }
}
.hero::before {
    content: "";
    position: absolute;
    inset: -30%;
    background:
        radial-gradient(circle at 20% 20%, rgba(190, 219, 223, 0.12), transparent 55%),
        radial-gradient(circle at 80% 40%, rgba(190, 219, 223, 0.08), transparent 60%);
    opacity: 1;
    pointer-events: none;
    z-index: 0;
}

.hero-inner {
    max-width: 880px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}

.hero-inner--centered {
    display: block;
}

.hero-copy {
    max-width: 40rem;
}

.hero-copy--centered {
    text-align: center;
    margin: 0 auto;
}

.hero-eyebrow {
    letter-spacing: 0.1em;
    text-transform: uppercase;
    font-size: 0.85rem;
    color: var(--aro-text-muted);
    margin-bottom: 1.5rem;
}

.hero-title {
    position: relative;
    font-size: clamp(2.6rem, 4vw, 3.4rem);
    line-height: 1.12;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    font-weight: 600;
    margin: 0 auto 2rem;
    max-width: 18ch;
    text-wrap: balance;
    word-break: keep-all;
}

.hero-title-static {
    color: inherit;
    display: block;
}

.hero-title-dynamic {
    color: var(--aro-seafoam);
    display: block;
    transition: opacity 0.5s ease, filter 0.5s ease;
}

.hero-title-dynamic.is-fading {
    opacity: 0;
    filter: blur(2px);
}

.hero-title.arrow-underline::after {
    content: "";
    display: block;
    width: 80px;
    height: 2px;
    margin: 1.5rem auto 0;
    background: var(--aro-seafoam);
    box-shadow: 0 0 12px rgba(190, 219, 223, 0.4);
    position: relative;
    left: auto;
    bottom: auto;
    opacity: 1;
}

.hero-title.arrow-underline::before {
    display: none;
}

.hero-subtitle,
.hero-body {
    font-size: clamp(1.05rem, 1.4vw, 1.25rem);
    line-height: 1.75;
    color: var(--aro-text-muted);
    max-width: 52ch;
    margin: 1.25rem auto 2rem;
}

.hero-cta-row {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    margin-bottom: 1rem;
    justify-content: center;
}

.hero-cta {
    min-width: 180px;
    justify-content: center;
    text-align: center;
}

.hero-meta {
    font-size: 0.85rem;
    color: var(--aro-text-muted);
}

@media (max-width: 900px) {
    .hero {
        padding-top: 4rem;
        padding-bottom: 4rem;
    }

    .hero-cta-row {
        justify-content: center;
    }
}

/* ARO intro */
.aro-intro {
    position: relative;
    padding: 6rem 0;
    background: var(--aro-bg);
    border-top: 1px solid rgba(255, 255, 255, 0.06);
}

.aro-intro-inner {
    max-width: 720px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
    align-items: center;
    text-align: center;
}

.aro-intro .section-title {
    margin-bottom: 0.5rem;
}

.why-copy {
    max-width: 56ch;
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--aro-text-muted);
}

@media (max-width: 900px) {
    .aro-intro {
        padding: 4rem 0;
    }

    .aro-intro-inner {
        max-width: 92vw;
    }
}

/* Feature map */
.feature-map {
    padding-top: 6rem;
    padding-bottom: 6rem;
    background: var(--aro-bg);
}

.feature-map-inner {
    max-width: 1120px;
    margin: 0 auto;
    padding: 3rem;
    border-radius: 24px;
    background: rgba(255, 255, 255, 0.015);
    border: 1px solid rgba(255, 255, 255, 0.06);
}

.feature-map-intro {
    max-width: 48rem;
    margin-top: 0.5rem;
    margin-bottom: 2.5rem;
    font-size: 1rem;
    line-height: 1.7;
    color: var(--aro-text-muted);
}

.feature-map-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    grid-auto-rows: 200px;
    gap: 24px;
}

.feature-card--checkins {
    grid-row: span 2;
}

.feature-card--clubview {
    grid-row: span 2;
}

.feature-card--highlights {
    grid-column: span 2;
}

.feature-card {
    position: relative;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    padding: 24px;
    border-radius: 16px;
    border: 1px solid rgba(255, 255, 255, 0.08);
    background: rgba(255, 255, 255, 0.02);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    transition: transform 250ms ease, border-color 250ms ease, box-shadow 250ms ease;
}

.feature-card:hover {
    transform: translateY(-4px);
    border-color: rgba(190, 219, 223, 0.25);
    box-shadow: 0 16px 40px rgba(0, 0, 0, 0.25);
}

.feature-card-title {
    font-size: var(--aro-font-l);
    font-weight: 600;
}

.feature-card-body {
    font-size: var(--aro-font-base);
    color: var(--aro-text-muted);
    line-height: 1.7;
}

.feature-card-visual {
    height: 48px;
    border-radius: 10px;
    background: rgba(190, 219, 223, 0.06);
    border: 1px solid rgba(190, 219, 223, 0.1);
}

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

    .feature-card--highlights {
        grid-column: span 2;
    }
}

@media (max-width: 768px) {
    .feature-map {
        padding: 4rem 0;
    }

    .feature-map-grid {
        grid-template-columns: minmax(0, 1fr);
        grid-auto-rows: auto;
    }

    .feature-card--checkins,
    .feature-card--clubview,
    .feature-card--highlights {
        grid-row: auto;
        grid-column: auto;
    }
}

/* Audience */
.audience {
    padding: 6rem 0;
    background: var(--aro-bg);
}

.audience-inner {
    display: grid;
    gap: 20px;
}

.audience h2 {
    font-size: clamp(1.9rem, 3vw, 2.5rem);
    letter-spacing: 0.04em;
    font-weight: 600;
    text-transform: uppercase;
}

.audience-columns {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 16px;
}

.audience-column {
    background: var(--aro-bg-soft);
    border: 1px solid var(--aro-border-soft);
    border-radius: 14px;
    padding: 18px;
    display: grid;
    gap: 8px;
}

.audience-column p {
    color: var(--aro-text-muted);
}

@media (max-width: 900px) {
    .audience {
        padding: 4rem 0;
    }
}

/* Entry lanes */

/* Solutions / pricing */
.entry.solutions {
    padding: 6rem 0;
    background: var(--aro-bg-soft);
}

.solutions-inner {
    display: grid;
    gap: 2.5rem;
}

.solutions-header {
    display: flex;
    flex-wrap: wrap;
    align-items: flex-end;
    justify-content: space-between;
    gap: 1.5rem;
}

.solutions-copy {
    max-width: 640px;
    display: grid;
    gap: 0.75rem;
}

.solutions-currency {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.currency-label {
    font-size: var(--aro-font-s);
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--aro-text-muted);
}

.currency-select {
    background-color: #05090e;
    color: var(--aro-seafoam);
    border: 1px solid var(--aro-seafoam);
    border-radius: 999px;
    padding: 0.4rem 2.25rem 0.4rem 1rem;
    min-width: 170px;
    letter-spacing: 0.12em;
    font-size: 0.85rem;
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    background-image:
        linear-gradient(45deg, transparent 50%, var(--aro-seafoam) 50%),
        linear-gradient(135deg, var(--aro-seafoam) 50%, transparent 50%);
    background-position: calc(100% - 18px) center, calc(100% - 12px) center;
    background-size: 6px 6px, 6px 6px;
    background-repeat: no-repeat;
    cursor: pointer;
}

.solutions-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 24px;
    align-items: stretch;
}

.solution-card {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 16px;
    padding: 24px;
    display: flex;
    flex-direction: column;
    flex: 1 1 320px;
    gap: 1rem;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    transition: transform 250ms ease, border-color 250ms ease, box-shadow 250ms ease;
}

.solution-card:hover {
    transform: translateY(-4px);
    border-color: rgba(190, 219, 223, 0.25);
    box-shadow: 0 16px 40px rgba(0, 0, 0, 0.25);
}

/* Homepage: Equal-width teaser cards (synopsis mode) */
body:not(.solutions-page) .solutions-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
}

body:not(.solutions-page) .solutions-grid[data-recommended] {
    grid-template-columns: repeat(2, 1fr);
}

body:not(.solutions-page) .solution-card--primary,
body:not(.solutions-page) .solution-card--secondary {
    /* Reset asymmetric styles on homepage */
    order: unset;
    cursor: default;
    animation: none;
}

body:not(.solutions-page) .solution-card--secondary .solution-tagline,
body:not(.solutions-page) .solution-card--secondary .solution-list,
body:not(.solutions-page) .solution-card--secondary .solution-addons-label,
body:not(.solutions-page) .solution-card--secondary .solution-list--addons,
body:not(.solutions-page) .solution-card--secondary .solution-note--sub {
    display: block; /* Show all content */
}

body:not(.solutions-page) .solution-card--secondary .solution-list,
body:not(.solutions-page) .solution-card--secondary .solution-list--addons {
    display: grid;
}

body:not(.solutions-page) .solution-card--secondary::after {
    display: none; /* Hide "click to expand" */
}

body:not(.solutions-page) .solution-card--secondary .solution-title,
body:not(.solutions-page) .solution-card--secondary .price-main {
    font-size: inherit; /* Reset to normal size */
}

/* Solutions help prompt */
.solutions-help-prompt {
    text-align: center;
    margin-top: 3rem;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.06);
}

.solutions-help-text {
    font-size: 1.1rem;
    color: var(--aro-text-muted);
    margin-bottom: 0.75rem;
}

.solutions-help-link {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 1rem;
    font-weight: 600;
    color: var(--aro-seafoam);
    text-decoration: none;
    transition: all 0.3s ease;
}

.solutions-help-link:hover {
    color: var(--aro-text-main);
    gap: 0.75rem;
}

/* Homepage mobile: Stack cards in single column */
@media (max-width: 768px) {
    body:not(.solutions-page) .solutions-grid {
        grid-template-columns: 1fr;
    }
}

/* Asymmetric grid: 75/25 split when recommendation is active */
.solutions-grid[data-recommended] {
    display: grid;
    grid-template-columns: 3fr 1fr;
    gap: 24px;
}

/* Primary card - expanded recommended option */
.solution-card--primary {
    order: 1;
}

.solutions-grid[data-recommended] .solution-card--primary {
    border-color: rgba(190, 219, 223, 0.3);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.2);
}

/* Secondary card - condensed alternative */
.solution-card--secondary {
    order: 2;
}

.solutions-grid[data-recommended] .solution-card--secondary {
    padding: 20px;
    opacity: 0.85;
}

.solutions-grid[data-recommended] .solution-card--secondary .solution-tagline,
.solutions-grid[data-recommended] .solution-card--secondary .solution-list,
.solutions-grid[data-recommended] .solution-card--secondary .solution-addons-label,
.solutions-grid[data-recommended] .solution-card--secondary .solution-list--addons,
.solutions-grid[data-recommended] .solution-card--secondary .solution-note--sub {
    display: none;
}

.solutions-grid[data-recommended] .solution-card--secondary .price-main {
    font-size: 1.5rem;
}

.solutions-grid[data-recommended] .solution-card--secondary .solution-note {
    font-size: 0.85rem;
}

/* Mobile: Stack vertically, primary always on top */
@media (max-width: 768px) {
    .solutions-grid {
        grid-template-columns: 1fr !important;
        gap: 1.5rem;
    }

    .solutions-grid[data-recommended] {
        grid-template-columns: 1fr !important;
    }

    /* Primary card always comes first on mobile */
    .solution-card--primary {
        order: 1 !important;
    }

    .solution-card--secondary {
        order: 2 !important;
    }

    /* Secondary card becomes collapsed accordion on mobile */
    .solution-card--secondary {
        cursor: default;
        padding: 1.25rem;
    }

    /* Hide "click to expand" text on mobile, show tap icon instead */
    .solution-card--secondary::after {
        content: "Tap to see details";
        font-size: 0.8rem;
    }

    /* Show expand/collapse indicator */
    .solution-card--secondary .solution-title::after {
        content: "+";
        float: right;
        font-size: 1.25rem;
        color: var(--aro-seafoam);
        font-weight: 600;
        transition: transform 300ms ease;
    }

    /* Expanded state on mobile */
    .solution-card--secondary.is-expanded .solution-title::after {
        content: "−";
    }

    /* Show hidden content when expanded on mobile */
    .solution-card--secondary.is-expanded .solution-tagline,
    .solution-card--secondary.is-expanded .solution-list,
    .solution-card--secondary.is-expanded .solution-addons-label,
    .solution-card--secondary.is-expanded .solution-list--addons,
    .solution-card--secondary.is-expanded .solution-note--sub {
        display: block;
    }

    .solution-card--secondary.is-expanded .solution-list,
    .solution-card--secondary.is-expanded .solution-list--addons {
        display: grid;
    }

    /* Hide "tap to see details" when expanded */
    .solution-card--secondary.is-expanded::after {
        display: none;
    }

    /* Disable hover lift on mobile */
    .solution-card--secondary:hover {
        transform: none;
    }

    /* Disable flip animation on mobile */
    .solution-card--primary,
    .solution-card--secondary {
        animation: none;
    }
}

/* Tablet: Use 2fr 1fr ratio instead of 3fr 1fr */
@media (min-width: 769px) and (max-width: 1024px) {
    .solutions-grid[data-recommended] {
        grid-template-columns: 2fr 1fr;
    }

    .solutions-grid[data-recommended="individual"] {
        grid-template-columns: 1fr 2fr;
    }
}

/* Smooth transitions for card layout changes */
.solution-card {
    transition: all 500ms cubic-bezier(0.4, 0, 0.2, 1);
}

/* Animation for becoming primary */
.solution-card--primary {
    cursor: default;
}

/* Animation for becoming secondary */
.solution-card--secondary {
    cursor: pointer;
}

/* Hover effect on secondary card to indicate clickability */
.solution-card--secondary:hover {
    border-color: var(--aro-seafoam);
    transform: translateY(-4px);
    box-shadow: 0 16px 48px rgba(0, 0, 0, 0.35);
}

.solution-card--secondary:hover::after {
    color: var(--aro-seafoam);
    opacity: 1;
}

/* Ensure primary card doesn't show "click to expand" */
.solution-card--primary::after {
    display: none;
}

/* Smooth grid column transition */
.solutions-grid {
    transition: grid-template-columns 500ms cubic-bezier(0.4, 0, 0.2, 1);
}

/* Flip animation when switching recommendations */
.solutions-grid[data-recommended="individual"] {
    grid-template-columns: 1fr 3fr;
}

.solutions-grid[data-recommended="individual"] .solution-card--club {
    order: 2;
}

.solutions-grid[data-recommended="individual"] .solution-card--individual {
    order: 1;
}

/* Subtle entrance animation when card becomes primary */
@keyframes cardExpand {
    from {
        opacity: 0.9;
        transform: scale(0.98);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

@keyframes cardShrink {
    from {
        opacity: 0.9;
        transform: scale(1.01);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

/* Apply animations when classes change */
.solution-card--primary {
    animation: cardExpand 500ms cubic-bezier(0.4, 0, 0.2, 1);
}

.solution-card--secondary {
    animation: cardShrink 500ms cubic-bezier(0.4, 0, 0.2, 1);
}

.solution-title {
    font-size: 1.1rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.06em;
}

.solution-tagline {
    color: var(--aro-text-muted);
    font-size: var(--aro-font-base);
    line-height: 1.6;
}

.solution-price,
.solution-price-group {
    display: grid;
    gap: 4px;
    margin: 0.5rem 0;
}

.solution-price {
    display: flex;
    align-items: baseline;
    gap: 6px;
}

.price-label {
    font-size: 0.75rem;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: var(--aro-text-muted);
}

.price-main {
    font-size: 2rem;
    font-weight: 700;
    color: var(--aro-text-main);
}

.price-period {
    color: var(--aro-text-muted);
    font-size: 0.9rem;
}

.solution-note {
    color: var(--aro-text-muted);
    font-size: 0.9rem;
    line-height: 1.6;
}

.solution-note--sub {
    margin-top: -4px;
}

.solution-list {
    list-style: none;
    padding-left: 0;
    color: var(--aro-text-muted);
    display: grid;
    gap: 6px;
    font-size: var(--aro-font-base);
}

.solution-list li {
    position: relative;
    padding-left: 18px;
}

.solution-list li::before {
    content: "→";
    position: absolute;
    left: 0;
    color: var(--aro-seafoam);
    font-weight: 600;
}

.solution-footer {
    margin-top: auto;
    display: flex;
    justify-content: center;
}

.solution-addons-label {
    margin-top: var(--aro-spacing-sm);
    font-size: var(--aro-font-s);
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--aro-text-muted);
}

.solution-list--addons {
    margin-top: -2px;
}

.solution-list--addons li::before {
    content: "+";
}

.solutions-footnote {
    color: var(--aro-text-muted);
    font-size: var(--aro-font-base);
    max-width: 760px;
}

.solution-cta {
    min-width: 200px;
    justify-content: center;
    text-align: center;
    align-self: center;
}

/* Solutions Qualifier */
.solutions-qualifier {
    max-width: 600px;
    margin: 0 auto 3rem;
    text-align: center;
}

.qualifier-intro {
    font-size: 1rem;
    color: var(--aro-text-muted);
    margin-bottom: 2rem;
}

.qualifier-questions {
    margin-bottom: 1.5rem;
}

.qualifier-step {
    animation: qualifierFadeIn 400ms ease;
}

.qualifier-step[hidden] {
    display: none;
}

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

.qualifier-question {
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--aro-text-main);
    margin-bottom: 1.5rem;
}

.qualifier-options {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    justify-content: center;
}

.qualifier-btn {
    padding: 1rem 1.75rem;
    background: rgba(255, 255, 255, 0.03);
    border: 1.5px solid rgba(190, 219, 223, 0.3);
    border-radius: 8px;
    color: var(--aro-text-main);
    font-size: 0.95rem;
    font-weight: 500;
    cursor: pointer;
    transition: all 300ms ease;
}

.qualifier-btn:hover {
    border-color: var(--aro-seafoam);
    background: rgba(190, 219, 223, 0.1);
}

.qualifier-btn.is-selected {
    background: var(--aro-seafoam);
    border-color: var(--aro-seafoam);
    color: var(--aro-bg);
}

.qualifier-result {
    padding: 1.5rem;
    background: rgba(190, 219, 223, 0.08);
    border: 1px solid rgba(190, 219, 223, 0.2);
    border-radius: 12px;
    margin-bottom: 1.5rem;
    animation: qualifierFadeIn 400ms ease;
}

.qualifier-result[hidden] {
    display: none;
}

.qualifier-recommendation {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--aro-seafoam);
    margin: 0;
}

.recommendation-icon {
    font-size: 1.25rem;
}

.qualifier-reset {
    margin-top: 1rem;
    padding: 0.5rem 1rem;
    background: transparent;
    border: none;
    color: var(--aro-text-muted);
    font-size: 0.85rem;
    cursor: pointer;
    text-decoration: underline;
    transition: color 300ms ease;
}

.qualifier-reset:hover {
    color: var(--aro-text-main);
}

.qualifier-skip {
    padding: 0.5rem 1rem;
    background: transparent;
    border: none;
    color: var(--aro-text-muted);
    font-size: 0.9rem;
    cursor: pointer;
    transition: color 300ms ease;
}

.qualifier-skip:hover {
    color: var(--aro-seafoam);
}

.qualifier-skip[hidden] {
    display: none;
}

@media (max-width: 900px) {
    .entry.solutions {
        padding: 4rem 0;
    }

    .solutions-header {
        flex-direction: column;
        align-items: flex-start;
    }

    .solutions-currency {
        width: 100%;
    }
}

.arrow-link {
    position: relative;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.35rem;
    padding: 0.55rem 1.4rem;
    border-radius: 12px;
    border: 1px solid var(--aro-seafoam);
    color: var(--aro-seafoam);
    text-decoration: none;
    overflow: hidden;
    transition: color 0.2s ease, border-color 0.2s ease;
}

.arrow-link::before {
    content: "";
    position: absolute;
    inset: 0;
    background: var(--aro-seafoam);
    clip-path: polygon(0 0, 88% 0, 100% 50%, 88% 100%, 0 100%);
    transform: translateX(-100%);
    transition: transform 0.25s ease-out;
    z-index: -1;
}

.arrow-link:hover,
.arrow-link:focus-visible {
    color: var(--aro-bg);
    border-color: transparent;
}

.arrow-link:hover::before,
.arrow-link:focus-visible::before {
    transform: translateX(0);
}

/* Home contact strip */
.home-contact-strip {
    position: relative;
    padding: 6rem 0;
    background: var(--aro-bg);
}

.home-contact-inner {
    position: relative;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 16px;
    padding: clamp(2rem, 3vw, 3rem);
}

@media (max-width: 900px) {
    .home-contact-strip {
        padding: 4rem 0;
    }
}

.contact-page {
    position: relative;
    padding: clamp(2.5rem, 4vw, 3.5rem) 0 clamp(3rem, 5vw, 4rem);
    background: var(--aro-bg);
}

.contact-page-inner {
    position: relative;
    max-width: 880px;
    margin: 0 auto;
    background: var(--aro-bg-alt);
    border: 1px solid rgba(190, 219, 223, 0.18);
    border-radius: var(--radius);
    padding: clamp(1.75rem, 2.5vw, 2.75rem);
    box-shadow: 0 22px 70px rgba(0, 0, 0, 0.24);
}

.contact-page-header {
    display: flex;
    flex-direction: column;
    gap: 0.65rem;
    max-width: 620px;
    margin-bottom: var(--aro-spacing-lg);
}

.contact-page-subtitle {
    color: var(--aro-text-muted);
    line-height: 1.6;
    max-width: 52ch;
}

.contact-page-note {
    margin-top: var(--aro-spacing-md);
    color: var(--aro-text-muted);
    font-size: 0.95rem;
}

.contact-strip-header {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    max-width: 640px;
}

.contact-strip-header .section-heading {
    margin-bottom: 0.25rem;
}

.contact-strip-subtitle {
    color: var(--aro-text-muted);
    max-width: 48ch;
    line-height: 1.6;
}

.contact-strip-form {
    margin-top: var(--aro-spacing-lg);
    display: flex;
    flex-direction: column;
    gap: var(--aro-spacing-md);
}

.contact-form-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: var(--aro-spacing-md);
}

.contact-field {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.contact-label {
    font-size: 0.95rem;
    letter-spacing: 0.04em;
    color: var(--aro-text-muted);
    text-transform: uppercase;
}

.contact-field input,
.contact-field textarea {
    width: 100%;
    height: 48px;
    padding: 0 1rem;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    color: var(--aro-text-main);
    font-size: 1rem;
    transition: border-color 150ms ease, background 150ms ease, box-shadow 150ms ease;
}

.contact-field textarea {
    height: auto;
    min-height: 120px;
    padding: 1rem;
    resize: vertical;
}

.contact-field input:focus,
.contact-field textarea:focus {
    outline: none;
    border-color: var(--aro-seafoam);
    background: rgba(190, 219, 223, 0.03);
    box-shadow: 0 0 0 3px rgba(190, 219, 223, 0.1);
}

.contact-field--full {
    grid-column: 1 / -1;
}

.contact-form-actions {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: var(--aro-spacing-sm);
}

.form-status {
    font-size: 0.95rem;
    color: var(--aro-text-muted);
    min-height: 1.4em;
}

.form-status.success {
    color: var(--aro-seafoam);
}

.form-status.error {
    color: #f29c9c;
}

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

    .contact-form-actions {
        justify-content: flex-start;
    }
}

/* Footer */

.site-footer {
    border-top: 1px solid rgba(255, 255, 255, 0.04);
    background: var(--aro-bg);
    padding: 1.75rem 0 1.25rem;
}

.footer-inner {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1.25rem;
}

.footer-top {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 2rem;
}

.footer-brand {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0;
    background: transparent;
    border-radius: 0;
    border: none;
    box-shadow: none;
    text-decoration: none;
}

.footer-logo {
    height: 56px;
    width: auto;
    display: block;
    background: transparent;
}

.footer-nav {
    display: flex;
}

.footer-menu {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 1.5rem;
    list-style: none;
    margin: 0;
    padding: 0;
}

.footer-link {
    position: relative;
    display: inline-block;
    padding-bottom: 4px;
    font-size: 0.75rem;
    font-weight: 500;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--aro-text-muted);
    text-decoration: none;
    transition: color 400ms ease;
}

.footer-link::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    width: 0;
    height: 2px;
    background: var(--aro-seafoam);
    clip-path: polygon(0 0, calc(100% - 4px) 0, 100% 50%, calc(100% - 4px) 100%, 0 100%);
    transition: width 400ms ease;
}

.footer-link:hover,
.footer-link:focus-visible {
    color: var(--aro-text-main);
}

.footer-link:hover::after,
.footer-link:focus-visible::after {
    width: 100%;
}

.footer-tagline {
    font-size: 0.85rem;
    font-weight: 500;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--aro-seafoam);
    margin-bottom: 0.75rem;
}

.footer-copy {
    margin: 0;
    text-align: center;
    font-size: 0.75rem;
    color: var(--aro-text-muted);
}

@media (max-width: 720px) {
    .footer-top {
        flex-direction: column;
        gap: 1rem;
    }

    .footer-menu {
        justify-content: center;
    }

    .footer-copy {
        text-align: center;
    }
}

/* Animations */
[data-animate] {
    opacity: 0;
    transform: translateY(12px);
    transition: opacity 420ms ease, transform 420ms ease;
}

[data-animate].visible {
    opacity: 1;
    transform: translateY(0);
}

/* Responsive */
@media (max-width: 900px) {
    .header-menu,
    .header-nav > .header-login {
        display: none;
    }

    .header-nav {
        gap: 0.5rem;
        position: relative;
        border-bottom: none;
        padding-bottom: 0;
    }

    .header-nav-toggle {
        display: inline-flex;
        z-index: 25;
    }

    /* Ensure header stays above mobile menu */
    .site-header {
        z-index: 20;
    }

    .site-header.is-open {
        background: var(--aro-bg);
    }
}

@media (max-width: 720px) {
    .hero {
        padding-top: 70px;
    }

    .hero-title {
        font-size: clamp(2.2rem, 8vw, 2.8rem);
    }

    .hero-cta-row {
        flex-direction: column;
        align-items: stretch;
    }
}

@media (max-width: 600px) {
    .cta-inner {
        align-items: flex-start;
    }
}

/* ==========================================================================
   COMPREHENSIVE MOBILE RESPONSIVE FIXES
   Test viewports: 375px (iPhone SE), 390px (iPhone 14), 768px (iPad)
   ========================================================================== */

/* Mobile Navigation - 768px breakpoint */
@media (max-width: 768px) {
    .site-header {
        padding: 0.5rem 0;
    }

    .header-inner {
        height: 70px;
    }

    .header-logo {
        height: 44px;
    }

    .header-menu,
    .header-nav > .header-login {
        display: none;
    }

    .header-nav {
        gap: 0.5rem;
        border-bottom: none;
        padding-bottom: 0;
    }

    .header-nav-toggle {
        display: inline-flex;
        width: 44px;
        height: 44px;
        align-items: center;
        justify-content: center;
    }

    /* Mobile menu tap targets - min 44px */
    .header-mobile:not([hidden]) .header-link {
        min-height: 44px;
        display: flex;
        align-items: center;
        padding: 0.75rem 1rem;
        font-size: 0.95rem;
    }

    .header-mobile:not([hidden]) .header-login {
        min-height: 44px;
        width: 100%;
        justify-content: center;
    }
}

/* Hero Sections - Mobile */
@media (max-width: 768px) {
    .hero {
        padding-top: 4rem;
        padding-bottom: 4rem;
    }

    .hero-title {
        font-size: clamp(1.75rem, 7vw, 2.5rem);
        line-height: 1.15;
    }

    .hero-subtitle,
    .hero-body {
        font-size: 1rem;
        max-width: 100%;
        line-height: 1.6;
    }

    .hero-cta-row {
        flex-direction: column;
        align-items: stretch;
        gap: 0.75rem;
    }

    .hero-cta-row .btn {
        width: 100%;
    }

    /* Individual hero */
    .individual-hero .hero-subtitle {
        max-width: 100%;
    }

    /* Solutions hero */
    .solutions-hero .hero-subtitle {
        max-width: 100%;
    }
}

/* Typography Mobile Adjustments */
@media (max-width: 768px) {
    h1, .hero-title {
        font-size: clamp(1.75rem, 7vw, 2.5rem);
    }

    h2, .section-heading, .section-title {
        font-size: clamp(1.4rem, 5vw, 1.8rem);
    }

    h3 {
        font-size: clamp(1.1rem, 4vw, 1.35rem);
    }

    /* Ensure text doesn't exceed ~45 characters on mobile */
    .hero-subtitle,
    .hero-body,
    p {
        max-width: 45ch;
    }
}

/* Cards - Mobile Single Column */
@media (max-width: 768px) {
    /* Feature cards */
    .feature-map-grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }

    .feature-card {
        padding: 20px;
    }

    /* Solution cards */
    .solutions-grid {
        flex-direction: column;
    }

    .solution-card {
        width: 100%;
    }

    /* Audience columns */
    .audience-columns {
        grid-template-columns: 1fr;
    }
}

/* Forms - Mobile Full Width */
@media (max-width: 768px) {
    .contact-form-grid {
        grid-template-columns: 1fr;
    }

    .contact-field input,
    .contact-field textarea,
    .contact-field select {
        width: 100%;
        min-height: 48px;
        font-size: 16px; /* Prevents iOS zoom */
    }

    .contact-form-actions {
        flex-direction: column;
        align-items: stretch;
    }

    .contact-form-actions .btn {
        width: 100%;
    }

    /* Currency selects */
    .currency-select {
        font-size: 16px; /* Prevents iOS zoom */
        min-height: 44px;
    }
}

/* Pricing Cards - Mobile */
@media (max-width: 768px) {
    .pricing-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

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

    .price-amount {
        font-size: 2.5rem;
    }

    /* Billing toggle mobile */
    .pricing-controls {
        flex-direction: column;
        gap: 1rem;
    }

    .billing-toggle {
        width: 100%;
        justify-content: center;
    }
}

/* Feature Grid - Mobile */
@media (max-width: 768px) {
    .feature-map-inner {
        padding: 1.5rem;
    }

    .feature-map-intro {
        margin-bottom: 1.5rem;
    }
}

/* Footer - Mobile */
@media (max-width: 768px) {
    .site-footer {
        padding: 2rem 0 1.5rem;
    }

    .footer-inner {
        gap: 1.5rem;
    }

    .footer-logo {
        height: 44px;
    }

    .footer-menu {
        flex-direction: column;
        align-items: center;
        gap: 0.75rem;
    }

    .footer-link {
        min-height: 44px;
        display: flex;
        align-items: center;
    }
}

/* Solutions Page - Mobile */
@media (max-width: 768px) {
    .solutions-paths-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 1rem;
    }

    .solutions-paths .currency-select {
        width: 100%;
    }

    .solutions-path {
        padding: 24px 20px;
    }

    .solutions-path-price .price-main {
        font-size: 2rem;
    }

    .solutions-comparison-inner {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
}

/* Support Page - Mobile */
@media (max-width: 768px) {
    .support-faq-title {
        font-size: 1.25rem;
    }

    .faq-toggle {
        padding: 1rem;
        font-size: 0.95rem;
    }

    .roadmap-item {
        flex-direction: column;
        align-items: flex-start;
        gap: 0.5rem;
    }
}

/* Home Contact Strip - Mobile */
@media (max-width: 768px) {
    .home-contact-inner {
        padding: 1.5rem;
    }

    .contact-form-grid {
        gap: 1rem;
    }
}

/* ==========================================================================
   EXTRA SMALL SCREENS (375px and below)
   ========================================================================== */

@media (max-width: 400px) {
    /* Reduce container padding */
    .container {
        padding-left: 16px;
        padding-right: 16px;
    }

    /* Smaller hero text */
    .hero-title {
        font-size: 1.6rem;
    }

    .hero-subtitle {
        font-size: 0.95rem;
    }

    /* Smaller pricing */
    .price-amount {
        font-size: 2rem;
    }

    .pricing-tier-name {
        font-size: 1.1rem;
    }

    /* Smaller buttons */
    .btn {
        min-width: 140px;
        padding: 12px 20px;
        font-size: 13px;
    }

    /* Footer tighter */
    .footer-menu {
        gap: 0.5rem;
    }

    .footer-link {
        font-size: 0.8rem;
    }
}

/* ==========================================================================
   SOLUTIONS PAGE - FULL TRAILER EXPERIENCE
   ========================================================================== */

/* Solutions Hero */
.solutions-hero {
    padding: 8rem 0 4rem;
    text-align: center;
    background: radial-gradient(ellipse at 50% 0%, rgba(190, 219, 223, 0.08), transparent 60%);
}

.solutions-hero-inner {
    max-width: 680px;
    margin: 0 auto;
}

.solutions-hero-title {
    font-size: clamp(2.2rem, 4vw, 3rem);
    line-height: 1.15;
    margin-bottom: 1.25rem;
    letter-spacing: -0.01em;
}

.solutions-hero-subtitle {
    font-size: 1.15rem;
    color: var(--aro-text-muted);
    line-height: 1.6;
}

/* Qualifier Section */
.solutions-qualifier-section {
    padding: 3rem 0 5rem;
}

.solutions-qualifier-inner {
    max-width: 700px;
    margin: 0 auto;
}

/* Qualifier Conversation */
.qualifier-conversation {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.qualifier-step {
    animation: qualifierFadeIn 400ms ease-out;
}

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

.qualifier-question {
    font-size: 1.4rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    color: var(--aro-text-main);
}

.qualifier-options {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

/* Qualifier Buttons - Card Style */
.solutions-page .qualifier-btn {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    padding: 1.25rem 1.5rem;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 16px;
    text-align: left;
    cursor: pointer;
    transition: all 300ms ease;
}

.solutions-page .qualifier-btn:hover {
    background: rgba(190, 219, 223, 0.06);
    border-color: rgba(190, 219, 223, 0.3);
    transform: translateY(-2px);
}

.solutions-page .qualifier-btn.is-selected {
    background: rgba(190, 219, 223, 0.12);
    border-color: var(--aro-seafoam);
    box-shadow: 0 0 20px rgba(190, 219, 223, 0.15);
}

.qualifier-btn-icon {
    font-size: 1.5rem;
    line-height: 1;
    flex-shrink: 0;
    margin-top: 0.15rem;
}

.qualifier-btn-text {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.qualifier-btn-text strong {
    font-size: 1.05rem;
    font-weight: 600;
    color: var(--aro-text-main);
}

.qualifier-btn-text span {
    font-size: 0.9rem;
    color: var(--aro-text-muted);
}

/* Qualifier Response */
.qualifier-response {
    padding: 1rem 1.5rem;
    background: rgba(190, 219, 223, 0.05);
    border-left: 3px solid var(--aro-seafoam);
    border-radius: 0 12px 12px 0;
    animation: qualifierFadeIn 400ms ease-out;
}

.qualifier-response-text {
    font-size: 1rem;
    color: var(--aro-text-muted);
    font-style: italic;
    margin: 0;
}

/* Qualifier Result */
.qualifier-result {
    animation: qualifierFadeIn 500ms ease-out;
}

.qualifier-result-card {
    background: linear-gradient(135deg, rgba(190, 219, 223, 0.1), rgba(190, 219, 223, 0.02));
    border: 1px solid rgba(190, 219, 223, 0.25);
    border-radius: 20px;
    padding: 2rem;
    text-align: center;
    margin-bottom: 1.5rem;
}

.qualifier-result-label {
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    color: var(--aro-text-muted);
    margin-bottom: 0.75rem;
}

.qualifier-result-heading {
    font-size: 1.6rem;
    font-weight: 700;
    color: var(--aro-seafoam);
    margin-bottom: 1rem;
}

.qualifier-result-reason {
    font-size: 1.05rem;
    color: var(--aro-text-muted);
    line-height: 1.6;
    max-width: 500px;
    margin: 0 auto 1.25rem;
}

.qualifier-result-cta {
    font-size: 0.95rem;
    color: var(--aro-text-main);
    font-weight: 500;
}

.qualifier-reset {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: transparent;
    border: none;
    color: var(--aro-text-muted);
    font-size: 0.9rem;
    cursor: pointer;
    padding: 0.5rem 0;
    transition: color 200ms ease;
}

.qualifier-reset:hover {
    color: var(--aro-seafoam);
}

.solutions-page .qualifier-skip {
    display: block;
    width: 100%;
    margin-top: 2rem;
    padding: 1rem;
    background: transparent;
    border: 1px dashed rgba(255, 255, 255, 0.15);
    border-radius: 12px;
    color: var(--aro-text-muted);
    font-size: 0.9rem;
    cursor: pointer;
    transition: all 200ms ease;
}

.solutions-page .qualifier-skip:hover {
    border-color: rgba(190, 219, 223, 0.3);
    color: var(--aro-text-main);
}

/* ==========================================================================
   FEATURE DEEP-DIVES - Scroll Triggered
   ========================================================================== */

.solutions-features {
    padding: 6rem 0;
    background: var(--aro-bg);
    border-top: 1px solid rgba(255, 255, 255, 0.04);
}

.solutions-features-inner {
    max-width: 1100px;
    margin: 0 auto;
}

.solutions-features-header {
    text-align: center;
    max-width: 600px;
    margin: 0 auto 4rem;
}

.solutions-features-intro {
    font-size: 1.1rem;
    color: var(--aro-text-muted);
    line-height: 1.6;
    margin-top: 1rem;
}

/* Features Grid */
.features-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
}

/* Feature Deep Card */
.feature-deep {
    display: flex;
    gap: 1.25rem;
    padding: 2rem;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: 20px;
    transition: all 400ms ease;
}

.feature-deep:hover {
    background: rgba(190, 219, 223, 0.04);
    border-color: rgba(190, 219, 223, 0.15);
    transform: translateY(-4px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.feature-deep-icon {
    flex-shrink: 0;
    width: 56px;
    height: 56px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(190, 219, 223, 0.08);
    border: 1px solid rgba(190, 219, 223, 0.15);
    border-radius: 14px;
    color: var(--aro-seafoam);
    transition: all 300ms ease;
}

.feature-deep:hover .feature-deep-icon {
    background: rgba(190, 219, 223, 0.15);
    border-color: rgba(190, 219, 223, 0.3);
    transform: scale(1.05);
}

.feature-deep-content {
    flex: 1;
}

.feature-deep-badge {
    display: inline-block;
    padding: 0.25rem 0.6rem;
    background: rgba(190, 219, 223, 0.1);
    border: 1px solid rgba(190, 219, 223, 0.2);
    border-radius: 12px;
    font-size: 0.7rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--aro-seafoam);
    margin-bottom: 0.5rem;
}

.feature-deep-title {
    font-size: 1.15rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: var(--aro-text-main);
}

.feature-deep-text {
    font-size: 0.95rem;
    color: var(--aro-text-muted);
    line-height: 1.6;
    margin-bottom: 1rem;
}

.feature-deep-points {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem 1rem;
}

.feature-deep-points li {
    font-size: 0.8rem;
    color: var(--aro-seafoam);
    display: flex;
    align-items: center;
    gap: 0.4rem;
}

.feature-deep-points li::before {
    content: "✓";
    font-size: 0.7rem;
    opacity: 0.8;
}

/* Club-specific feature styling */
.feature-deep--club {
    grid-column: span 2;
    background: linear-gradient(135deg, rgba(190, 219, 223, 0.04), rgba(190, 219, 223, 0.01));
    border-color: rgba(190, 219, 223, 0.12);
}

.feature-deep--club:hover {
    border-color: rgba(190, 219, 223, 0.25);
}

/* Scroll Reveal Animation */
[data-reveal] {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 500ms ease, transform 500ms ease;
}

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

[data-reveal-delay="100"] {
    transition-delay: 100ms;
}

[data-reveal-delay="200"] {
    transition-delay: 200ms;
}

[data-reveal-delay="300"] {
    transition-delay: 300ms;
}

/* Mobile: Single column */
@media (max-width: 768px) {
    .solutions-features {
        padding: 4rem 0;
    }

    .features-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .feature-deep {
        flex-direction: column;
        gap: 1rem;
        padding: 1.5rem;
    }

    .feature-deep--club {
        grid-column: span 1;
    }

    .feature-deep-icon {
        width: 48px;
        height: 48px;
    }
}

/* Solutions Pricing Section */
.solutions-pricing {
    padding: 4rem 0;
    background: rgba(0, 0, 0, 0.2);
}

.solutions-pricing-inner {
    max-width: 1100px;
    margin: 0 auto;
}

.solutions-pricing .solutions-currency {
    display: flex;
    justify-content: flex-end;
    margin-bottom: 2rem;
}

/* Solution Card Header */
.solution-card-header {
    margin-bottom: 1rem;
}

.solution-badge {
    display: inline-block;
    padding: 0.35rem 0.75rem;
    background: rgba(190, 219, 223, 0.1);
    border: 1px solid rgba(190, 219, 223, 0.2);
    border-radius: 20px;
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--aro-seafoam);
    margin-bottom: 0.75rem;
}

.price-from {
    font-size: 0.9rem;
    color: var(--aro-text-muted);
    margin-right: 0.25rem;
}

/* Final CTA */
.solutions-final-cta {
    padding: 5rem 0;
    text-align: center;
}

.solutions-final-cta-inner {
    max-width: 500px;
    margin: 0 auto;
}

.solutions-final-heading {
    font-size: 1.8rem;
    margin-bottom: 1rem;
}

.solutions-final-text {
    font-size: 1.05rem;
    color: var(--aro-text-muted);
    line-height: 1.6;
    margin-bottom: 2rem;
}

/* Solutions Page Mobile Responsiveness */
@media (max-width: 768px) {
    .solutions-hero {
        padding: 6rem 0 3rem;
    }

    .qualifier-question {
        font-size: 1.2rem;
    }

    .solutions-page .qualifier-btn {
        padding: 1rem 1.25rem;
    }

    .qualifier-btn-icon {
        font-size: 1.25rem;
    }

    .qualifier-result-heading {
        font-size: 1.35rem;
    }
}

/* ==========================================================================
   FORM SYSTEM - Floating Labels & Human Interactions
   ========================================================================== */

/* Form Field Container */
.form-field {
    position: relative;
    margin-bottom: 1.5rem;
}

.form-field--full {
    grid-column: 1 / -1;
}

/* Input & Textarea Base */
.form-field input,
.form-field textarea,
.form-field select {
    width: 100%;
    padding: 1.25rem 1rem 0.75rem;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    color: var(--aro-text-main);
    font-size: 1rem;
    font-family: inherit;
    transition: all 250ms ease;
    outline: none;
}

.form-field textarea {
    min-height: 140px;
    resize: vertical;
    padding-top: 1.5rem;
}

/* Floating Label */
.form-label {
    position: absolute;
    left: 1rem;
    top: 50%;
    transform: translateY(-50%);
    font-size: 1rem;
    color: var(--aro-text-muted);
    pointer-events: none;
    transition: all 200ms ease;
    background: transparent;
}

.form-field textarea + .form-label,
.form-field textarea ~ .form-label {
    top: 1.25rem;
    transform: translateY(0);
}

/* Label Float State */
.form-field input:focus ~ .form-label,
.form-field input:not(:placeholder-shown) ~ .form-label,
.form-field textarea:focus ~ .form-label,
.form-field textarea:not(:placeholder-shown) ~ .form-label,
.form-field select:focus ~ .form-label,
.form-field select:valid ~ .form-label {
    top: 0.5rem;
    transform: translateY(0);
    font-size: 0.75rem;
    color: var(--aro-seafoam);
    letter-spacing: 0.05em;
}

/* Focus State */
.form-field input:focus,
.form-field textarea:focus,
.form-field select:focus {
    border-color: var(--aro-seafoam);
    background: rgba(190, 219, 223, 0.05);
    box-shadow: 0 0 0 3px rgba(190, 219, 223, 0.1), 0 4px 20px rgba(0, 0, 0, 0.2);
}

/* Hover State */
.form-field input:hover:not(:focus),
.form-field textarea:hover:not(:focus),
.form-field select:hover:not(:focus) {
    border-color: rgba(255, 255, 255, 0.2);
    background: rgba(255, 255, 255, 0.04);
}

/* Placeholder (hidden but needed for :placeholder-shown) */
.form-field input::placeholder,
.form-field textarea::placeholder {
    color: transparent;
}

/* Helper Text */
.form-helper {
    display: block;
    margin-top: 0.5rem;
    font-size: 0.8rem;
    color: var(--aro-text-muted);
    padding-left: 1rem;
}

/* Form Grid */
.form-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem 1.5rem;
}

.form-grid--single {
    grid-template-columns: 1fr;
}

@media (max-width: 640px) {
    .form-grid {
        grid-template-columns: 1fr;
    }
}

/* Form Actions */
.form-actions {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 1rem;
    margin-top: 1.5rem;
}

/* Success State */
.form-success {
    display: none;
    padding: 1.5rem;
    background: rgba(190, 219, 223, 0.08);
    border: 1px solid rgba(190, 219, 223, 0.25);
    border-radius: 16px;
    text-align: center;
    animation: formSuccessPop 400ms ease;
}

.form-success.is-visible {
    display: block;
}

@keyframes formSuccessPop {
    0% {
        opacity: 0;
        transform: scale(0.95);
    }
    50% {
        transform: scale(1.02);
    }
    100% {
        opacity: 1;
        transform: scale(1);
    }
}

.form-success-icon {
    font-size: 2.5rem;
    margin-bottom: 0.75rem;
}

.form-success-heading {
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--aro-seafoam);
    margin-bottom: 0.5rem;
}

.form-success-text {
    font-size: 0.95rem;
    color: var(--aro-text-muted);
    line-height: 1.6;
}

/* Error State */
.form-field.has-error input,
.form-field.has-error textarea {
    border-color: #e57373;
}

.form-field.has-error .form-label {
    color: #e57373;
}

.form-error {
    display: none;
    margin-top: 0.5rem;
    font-size: 0.8rem;
    color: #e57373;
    padding-left: 1rem;
}

.form-field.has-error .form-error {
    display: block;
}

/* Status Messages */
.form-status {
    font-size: 0.9rem;
    color: var(--aro-text-muted);
    min-height: 1.4em;
    transition: all 200ms ease;
}

.form-status.is-sending {
    color: var(--aro-seafoam);
}

.form-status.is-error {
    color: #e57373;
}

/* Demo booking success state */
#bookingStatus {
    display: none;
}

#bookingStatus.show {
    display: block;
    padding: 2rem;
    background: rgba(190, 219, 223, 0.08);
    border: 1px solid rgba(190, 219, 223, 0.25);
    border-radius: 12px;
    text-align: center;
    margin-top: 1.5rem;
}

#bookingStatus h3 {
    color: var(--aro-seafoam);
    margin-bottom: 0.75rem;
    font-size: 1.25rem;
}

#bookingStatus p {
    color: var(--aro-text-muted);
    margin: 0.5rem 0;
    line-height: 1.6;
}

#bookingStatus strong {
    color: var(--aro-text-main);
}

#bookingStatus.error {
    background: rgba(255, 138, 138, 0.1);
    border-color: rgba(255, 138, 138, 0.3);
    color: #ff8a8a;
}

/* ==========================================================================
   PREVENT HORIZONTAL SCROLL
   ========================================================================== */

html, body {
    overflow-x: hidden;
}

/* Ensure no fixed widths cause overflow */
.container {
    max-width: 100%;
}

img, video, iframe {
    max-width: 100%;
    height: auto;
}

/* ==========================================================================
   SUPPORT PAGE - Human Voice & Visual Roadmap
   ========================================================================== */

/* Support Hero */
.support-hero {
    padding: 8rem 0 4rem;
    text-align: center;
    background: radial-gradient(ellipse at 50% 0%, rgba(190, 219, 223, 0.08), transparent 60%);
}

.support-hero-inner {
    max-width: 650px;
    margin: 0 auto;
}

.support-hero-title {
    font-size: clamp(2.2rem, 4vw, 3rem);
    line-height: 1.15;
    margin-bottom: 1.25rem;
}

.support-hero-subtitle {
    font-size: 1.1rem;
    color: var(--aro-text-muted);
    line-height: 1.6;
}

/* Support Sections */
.support-section {
    padding: 4rem 0;
    border-top: 1px solid rgba(255, 255, 255, 0.06);
}

.support-section-header {
    margin-bottom: 2.5rem;
}

.support-section-title {
    font-size: 1.6rem;
    margin-bottom: 0.5rem;
}

.support-section-intro {
    font-size: 1rem;
    color: var(--aro-text-muted);
}

.support-link {
    color: var(--aro-seafoam);
    text-decoration: none;
    font-weight: 500;
    transition: opacity 0.2s ease;
}

.support-link:hover {
    opacity: 0.8;
}

/* FAQ Grid */
.faq-grid {
    display: grid;
    gap: 1rem;
}

.faq-item {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: 16px;
    overflow: hidden;
    transition: all 300ms ease;
}

.faq-item:hover {
    border-color: rgba(190, 219, 223, 0.15);
}

.faq-toggle {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.25rem 1.5rem;
    background: transparent;
    border: none;
    color: var(--aro-text-main);
    font-size: 1.05rem;
    font-weight: 500;
    text-align: left;
    cursor: pointer;
    transition: all 200ms ease;
}

.faq-toggle:hover {
    background: rgba(255, 255, 255, 0.02);
}

.faq-question {
    flex: 1;
    padding-right: 1rem;
}

.faq-icon {
    font-size: 1.5rem;
    color: var(--aro-seafoam);
    transition: transform 300ms ease;
    font-weight: 300;
}

.faq-toggle[aria-expanded="true"] .faq-icon {
    transform: rotate(45deg);
}

.faq-answer {
    padding: 0 1.5rem 1.5rem;
    color: var(--aro-text-muted);
    line-height: 1.7;
}

.faq-answer a {
    color: var(--aro-seafoam);
    text-decoration: none;
}

.faq-answer a:hover {
    text-decoration: underline;
}

/* Roadmap */
.roadmap-filters {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin-bottom: 2rem;
}

.roadmap-filter {
    padding: 0.5rem 1rem;
    background: transparent;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    color: var(--aro-text-muted);
    font-size: 0.85rem;
    cursor: pointer;
    transition: all 200ms ease;
}

.roadmap-filter:hover {
    border-color: rgba(190, 219, 223, 0.3);
    color: var(--aro-text-main);
}

.roadmap-filter.is-active {
    background: rgba(190, 219, 223, 0.1);
    border-color: var(--aro-seafoam);
    color: var(--aro-seafoam);
}

/* Roadmap Timeline */
.roadmap-timeline {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.roadmap-item {
    display: flex;
    gap: 1.25rem;
    padding: 1.5rem;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: 16px;
    transition: all 300ms ease;
}

.roadmap-item:hover {
    background: rgba(255, 255, 255, 0.03);
    border-color: rgba(190, 219, 223, 0.15);
    transform: translateX(4px);
}

.roadmap-item.is-hidden {
    display: none;
}

.roadmap-status {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    min-width: 80px;
}

.roadmap-status-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
}

.roadmap-status-dot--shipped {
    background: var(--aro-seafoam);
    box-shadow: 0 0 10px rgba(190, 219, 223, 0.5);
}

.roadmap-status-dot--in-progress {
    background: #a8e6cf;
    animation: statusPulse 2s ease-in-out infinite;
}

@keyframes statusPulse {
    0%, 100% { opacity: 1; box-shadow: 0 0 10px rgba(168, 230, 207, 0.5); }
    50% { opacity: 0.6; box-shadow: 0 0 20px rgba(168, 230, 207, 0.8); }
}

.roadmap-status-dot--planned {
    background: transparent;
    border: 2px solid rgba(255, 255, 255, 0.3);
}

.roadmap-status-label {
    font-size: 0.7rem;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: var(--aro-text-muted);
}

.roadmap-content {
    flex: 1;
}

.roadmap-title {
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 0.35rem;
}

.roadmap-text {
    font-size: 0.95rem;
    color: var(--aro-text-muted);
    line-height: 1.5;
    margin-bottom: 0.5rem;
}

.roadmap-date {
    font-size: 0.8rem;
    color: var(--aro-text-muted);
    opacity: 0.7;
}

.roadmap-progress {
    margin-top: 0.75rem;
    height: 4px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 2px;
    overflow: hidden;
}

.roadmap-progress-bar {
    height: 100%;
    width: var(--progress, 0%);
    background: linear-gradient(90deg, var(--aro-seafoam), #a8e6cf);
    border-radius: 2px;
    transition: width 500ms ease;
}

.roadmap-cta {
    margin-top: 2.5rem;
    padding: 1.5rem;
    background: rgba(190, 219, 223, 0.05);
    border: 1px dashed rgba(190, 219, 223, 0.2);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 1rem;
}

.roadmap-cta-text {
    font-size: 1rem;
    color: var(--aro-text-muted);
    margin: 0;
}

/* Guides Grid */
.guides-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
}

.guide-card {
    display: flex;
    flex-direction: column;
    padding: 1.5rem;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: 16px;
    text-decoration: none;
    transition: all 300ms ease;
}

.guide-card:hover {
    background: rgba(190, 219, 223, 0.04);
    border-color: rgba(190, 219, 223, 0.2);
    transform: translateY(-4px);
}

.guide-card-icon {
    font-size: 2rem;
    margin-bottom: 1rem;
}

.guide-card-title {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--aro-text-main);
    margin-bottom: 0.5rem;
}

.guide-card-text {
    font-size: 0.9rem;
    color: var(--aro-text-muted);
    line-height: 1.5;
    margin-bottom: auto;
}

.guide-card-link {
    margin-top: 1rem;
    font-size: 0.85rem;
    color: var(--aro-seafoam);
    font-weight: 500;
}

/* Support CTA */
.support-cta {
    padding: 5rem 0;
    text-align: center;
    background: rgba(0, 0, 0, 0.2);
}

.support-cta-inner {
    max-width: 500px;
    margin: 0 auto;
}

.support-cta-heading {
    font-size: 1.8rem;
    margin-bottom: 1rem;
}

.support-cta-text {
    font-size: 1.05rem;
    color: var(--aro-text-muted);
    line-height: 1.6;
    margin-bottom: 2rem;
}

/* Mobile */
@media (max-width: 768px) {
    .support-hero {
        padding: 6rem 0 3rem;
    }

    .roadmap-item {
        flex-direction: column;
        gap: 1rem;
    }

    .roadmap-status {
        flex-direction: row;
        min-width: auto;
    }

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

    .roadmap-cta {
        flex-direction: column;
        text-align: center;
    }
}

/* ==========================================================================
   BOOK DEMO PAGE - Enhanced Calendar UI
   ========================================================================== */

/* Demo Hero */
.demo-hero {
    padding: 8rem 0 4rem;
    text-align: center;
    background: radial-gradient(ellipse at 50% 0%, rgba(190, 219, 223, 0.08), transparent 60%);
}

.demo-hero-inner {
    max-width: 600px;
    margin: 0 auto;
}

.demo-hero-title {
    font-size: clamp(2.2rem, 4vw, 3rem);
    line-height: 1.15;
    margin-bottom: 1.25rem;
}

.demo-hero-subtitle {
    font-size: 1.1rem;
    color: var(--aro-text-muted);
    line-height: 1.6;
}

/* Demo Booking Layout */
.demo-booking {
    padding: 3rem 0 6rem;
}

.demo-booking-inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: start;
}

/* Calendar Section */
.demo-calendar {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: 20px;
    padding: 2rem;
}

.demo-calendar-header {
    margin-bottom: 1.5rem;
}

.demo-calendar-title {
    font-size: 1.4rem;
    margin-bottom: 0.75rem;
}

/* Timezone Display */
.demo-timezone {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.9rem;
    color: var(--aro-text-muted);
}

.demo-timezone-icon {
    font-size: 1rem;
}

.demo-timezone-text {
    flex: 1;
}

.demo-timezone-change {
    background: transparent;
    border: none;
    color: var(--aro-seafoam);
    font-size: 0.85rem;
    cursor: pointer;
    padding: 0.25rem 0.5rem;
    border-radius: 4px;
    transition: background 0.2s ease;
}

.demo-timezone-change:hover {
    background: rgba(190, 219, 223, 0.1);
}

/* Timezone Override */
.demo-timezone-override {
    margin-bottom: 1.5rem;
    padding: 1rem;
    background: rgba(190, 219, 223, 0.05);
    border-radius: 12px;
    animation: slideDown 200ms ease;
}

@keyframes slideDown {
    from { opacity: 0; transform: translateY(-10px); }
    to { opacity: 1; transform: translateY(0); }
}

.demo-timezone-label {
    display: block;
    font-size: 0.85rem;
    color: var(--aro-text-muted);
    margin-bottom: 0.5rem;
}

.demo-timezone-select {
    width: 100%;
    padding: 0.75rem 1rem;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    color: var(--aro-text-main);
    font-size: 0.95rem;
    cursor: pointer;
}

.demo-timezone-select:focus {
    outline: none;
    border-color: var(--aro-seafoam);
}

/* Date Groups */
.demo-dates {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.demo-date-group {
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
    padding-bottom: 1.5rem;
}

.demo-date-group:last-child {
    border-bottom: none;
    padding-bottom: 0;
}

.demo-date-label {
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--aro-text-main);
    margin-bottom: 0.75rem;
}

/* Time Slots */
.demo-slots {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.demo-slot {
    padding: 0.6rem 1rem;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    color: var(--aro-text-main);
    font-size: 0.9rem;
    cursor: pointer;
    transition: all 200ms ease;
}

.demo-slot:hover {
    background: rgba(190, 219, 223, 0.08);
    border-color: rgba(190, 219, 223, 0.3);
}

.demo-slot.is-selected {
    background: var(--aro-seafoam);
    border-color: var(--aro-seafoam);
    color: var(--aro-bg);
    font-weight: 600;
}

.demo-slot:disabled {
    opacity: 0.4;
    cursor: not-allowed;
}

/* Demo slots - loading state */
.demo-slots-loading {
    padding: 3rem 2rem;
    text-align: center;
    color: rgba(255, 255, 255, 0.6);
}

.loading-spinner {
    width: 32px;
    height: 32px;
    border: 3px solid rgba(190, 219, 223, 0.2);
    border-top-color: #BEDBDF;
    border-radius: 50%;
    margin: 0 auto 1rem;
    animation: spin 0.8s linear infinite;
}

@keyframes spin {
    to { transform: rotate(360deg); }
}

/* Demo slots - empty state */
.demo-no-slots {
    padding: 3rem 2rem;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(190, 219, 223, 0.15);
    border-radius: 16px;
    text-align: center;
}

/* No slots icon - SVG instead of emoji */
.demo-no-slots-icon {
    color: rgba(190, 219, 223, 0.6);
    margin-bottom: 1.5rem;
}

.demo-no-slots-icon svg {
    width: 48px;
    height: 48px;
}

.demo-no-slots h3 {
    font-size: 1.4rem;
    margin-bottom: 0.75rem;
}

.demo-no-slots p {
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 1.5rem;
    max-width: 380px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.6;
}

/* Demo slot group (dynamically rendered) */
.demo-slot-group {
    margin-bottom: 1.5rem;
}

.demo-slot-date {
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--aro-seafoam);
    margin-bottom: 0.75rem;
}

.demo-time-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
}

/* Timezone selector row */
.demo-timezone-row {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-top: 0.75rem;
}

.demo-timezone-row .demo-timezone-icon {
    color: rgba(190, 219, 223, 0.7);
    flex-shrink: 0;
}

/* Timezone select styling */
.demo-timezone-select,
#timezoneSelect,
.timezone-select select {
    background-color: rgba(255, 255, 255, 0.06);
    color: #FEFEFE;
    border: 1px solid rgba(190, 219, 223, 0.25);
    border-radius: 8px;
    padding: 0.6rem 2.5rem 0.6rem 1rem;
    font-size: 0.9rem;
    flex: 1;
    max-width: 280px;
    cursor: pointer;
    appearance: none;
    -webkit-appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%23BEDBDF' d='M6 8L1 3h10z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 1rem center;
    transition: border-color 0.2s ease, background-color 0.2s ease;
}

.demo-timezone-select:hover,
.demo-timezone-select:focus,
#timezoneSelect:hover,
#timezoneSelect:focus {
    border-color: rgba(190, 219, 223, 0.5);
    background-color: rgba(255, 255, 255, 0.1);
    outline: none;
}

.demo-timezone-select option,
#timezoneSelect option {
    background-color: #1a1a1a;
    color: #FEFEFE;
    padding: 0.5rem;
}

/* Location Input Row */
.demo-location-row {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-top: 0.75rem;
}

.demo-location-icon {
    color: rgba(190, 219, 223, 0.7);
    flex-shrink: 0;
}

.demo-location-input-wrap {
    display: flex;
    flex-direction: column;
    flex: 1;
    max-width: 320px;
    position: relative;
}

.demo-location-input {
    background-color: rgba(255, 255, 255, 0.06);
    color: #FEFEFE;
    border: 1px solid rgba(190, 219, 223, 0.25);
    border-radius: 8px;
    padding: 0.6rem 1rem;
    font-size: 0.9rem;
    width: 100%;
    transition: border-color 0.2s ease, background-color 0.2s ease;
}

.demo-location-input::placeholder {
    color: rgba(255, 255, 255, 0.4);
}

.demo-location-input:hover,
.demo-location-input:focus {
    border-color: rgba(190, 219, 223, 0.5);
    background-color: rgba(255, 255, 255, 0.1);
    outline: none;
}

.demo-location-tz {
    font-size: 0.8rem;
    color: var(--aro-seafoam);
    margin-top: 0.35rem;
    opacity: 0.85;
}

/* Google Places Autocomplete Styling */
.pac-container {
    background-color: #1a1a1a !important;
    border: 1px solid rgba(190, 219, 223, 0.3) !important;
    border-radius: 8px !important;
    margin-top: 4px !important;
    font-family: inherit !important;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.5) !important;
    z-index: 10000 !important;
}

.pac-item {
    padding: 0.75rem 1rem !important;
    color: #FEFEFE !important;
    border-top: 1px solid rgba(255, 255, 255, 0.1) !important;
    cursor: pointer !important;
    background: transparent !important;
    line-height: 1.4 !important;
}

.pac-item:first-child {
    border-top: none !important;
}

.pac-item:hover,
.pac-item-selected,
.pac-item.pac-item-selected {
    background-color: rgba(190, 219, 223, 0.15) !important;
}

.pac-item-query {
    color: #FEFEFE !important;
    font-weight: 500 !important;
    font-size: 0.95rem !important;
}

.pac-matched {
    color: #BEDBDF !important;
    font-weight: 600 !important;
}

.pac-icon {
    display: none !important;
}

.pac-item span {
    color: rgba(255, 255, 255, 0.6) !important;
    font-size: 0.85rem !important;
}

.pac-item span.pac-item-query,
.pac-item span.pac-matched {
    color: #FEFEFE !important;
    font-size: 0.95rem !important;
}

/* Hide Google logo */
.pac-container:after {
    display: none !important;
    height: 0 !important;
}

.pac-logo:after {
    display: none !important;
}

/* Success message styling */
.demo-success h3,
.success-message h3 {
    color: var(--aro-seafoam, #BEDBDF);
    font-size: 1.4rem;
    margin-bottom: 1rem;
}

.demo-success p,
.success-message p {
    color: rgba(255, 255, 255, 0.8);
    margin: 0.5rem 0;
    line-height: 1.6;
}

.success-message.show {
    display: block;
    padding: 2rem;
    background: rgba(190, 219, 223, 0.08);
    border: 1px solid rgba(190, 219, 223, 0.25);
    border-radius: 12px;
    text-align: center;
    margin-top: 1.5rem;
}

.demo-calendar-note {
    margin-top: 1.5rem;
    font-size: 0.8rem;
    color: var(--aro-text-muted);
    opacity: 0.7;
}

/* Form Container */
.demo-form-container {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: 20px;
    padding: 2rem;
}

.demo-form-header {
    margin-bottom: 1.5rem;
}

.demo-form-title {
    font-size: 1.4rem;
    margin-bottom: 0.35rem;
}

.demo-form-subtitle {
    font-size: 0.95rem;
    color: var(--aro-text-muted);
}

/* Selected Slot Display */
.demo-selected {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1rem 1.25rem;
    background: rgba(190, 219, 223, 0.05);
    border: 1px solid rgba(190, 219, 223, 0.15);
    border-radius: 12px;
    margin-bottom: 1.5rem;
    transition: all 300ms ease;
}

.demo-selected.has-selection {
    background: rgba(190, 219, 223, 0.1);
    border-color: var(--aro-seafoam);
}

.demo-selected-icon {
    font-size: 1.25rem;
}

.demo-selected-text {
    font-size: 0.95rem;
    color: var(--aro-text-muted);
}

.demo-selected.has-selection .demo-selected-text {
    color: var(--aro-text-main);
    font-weight: 500;
}

/* Success Button */
.demo-success-btn {
    margin-top: 1.5rem;
}

/* Mobile Layout */
@media (max-width: 900px) {
    .demo-booking-inner {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .demo-calendar,
    .demo-form-container {
        padding: 1.5rem;
    }
}

@media (max-width: 480px) {
    .demo-hero {
        padding: 6rem 0 3rem;
    }

    .demo-slots {
        flex-direction: column;
    }

    .demo-slot {
        width: 100%;
        text-align: center;
    }
}

/* ==========================================================================
   ABOUT PAGE - Human Story & Scroll Reveals
   ========================================================================== */

/* About Hero */
.about-hero {
    padding: 8rem 0 5rem;
    text-align: center;
    background: radial-gradient(ellipse at 50% 0%, rgba(190, 219, 223, 0.08), transparent 60%);
}

.about-hero-inner {
    max-width: 700px;
    margin: 0 auto;
}

.about-hero-title {
    font-size: clamp(2.4rem, 4.5vw, 3.2rem);
    line-height: 1.15;
    margin-bottom: 1.25rem;
}

.about-hero-subtitle {
    font-size: 1.15rem;
    color: var(--aro-text-muted);
    line-height: 1.6;
}

/* Story Section */
.about-story {
    padding: 5rem 0;
    border-top: 1px solid rgba(255, 255, 255, 0.06);
}

.about-story-inner {
    max-width: 700px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 4rem;
}

.about-story-block {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 500ms ease, transform 500ms ease;
}

.about-story-block.is-visible {
    opacity: 1;
    transform: translateY(0);
}

.about-story-heading {
    font-size: 1.5rem;
    margin-bottom: 1.25rem;
    color: var(--aro-seafoam);
}

.about-story-content {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.about-story-content p {
    font-size: 1.05rem;
    line-height: 1.75;
    color: var(--aro-text-muted);
}

.about-story-content strong {
    color: var(--aro-text-main);
}

.about-story-content em {
    color: var(--aro-seafoam);
    font-style: normal;
    font-weight: 600;
}

/* Mission Section */
.about-mission {
    padding: 5rem 0;
    background: rgba(190, 219, 223, 0.03);
    border-top: 1px solid rgba(255, 255, 255, 0.06);
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.about-mission-inner {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.about-mission-content {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 500ms ease, transform 500ms ease;
}

.about-mission-content.is-visible {
    opacity: 1;
    transform: translateY(0);
}

.about-mission-label {
    font-size: 0.85rem;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--aro-seafoam);
    margin-bottom: 1.5rem;
}

.about-mission-statement {
    font-size: clamp(1.4rem, 2.5vw, 1.8rem);
    line-height: 1.5;
    font-weight: 500;
    color: var(--aro-text-main);
}

/* Values Section */
.about-values {
    padding: 5rem 0;
}

.about-values-inner {
    max-width: 1000px;
    margin: 0 auto;
}

.about-values-header {
    text-align: center;
    margin-bottom: 3rem;
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 500ms ease, transform 500ms ease;
}

.about-values-header.is-visible {
    opacity: 1;
    transform: translateY(0);
}

.about-values-title {
    font-size: 1.8rem;
    margin-bottom: 0.75rem;
}

.about-values-intro {
    font-size: 1rem;
    color: var(--aro-text-muted);
    max-width: 500px;
    margin: 0 auto;
}

/* Values Grid */
.about-values-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
}

.about-value-card {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: 20px;
    padding: 2rem;
    transition: all 400ms ease;
    opacity: 0;
    transform: translateY(20px);
}

.about-value-card.is-visible {
    opacity: 1;
    transform: translateY(0);
}

.about-value-card:hover {
    background: rgba(190, 219, 223, 0.04);
    border-color: rgba(190, 219, 223, 0.2);
    transform: translateY(-4px);
}

.about-value-icon {
    font-size: 2rem;
    margin-bottom: 1rem;
}

.about-value-card .about-value-title {
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
    color: var(--aro-text-main);
}

.about-value-text {
    font-size: 0.95rem;
    color: var(--aro-text-muted);
    line-height: 1.6;
    margin-bottom: 1rem;
}

.about-value-example {
    padding-top: 1rem;
    border-top: 1px solid rgba(255, 255, 255, 0.06);
    font-size: 0.85rem;
    color: var(--aro-text-muted);
}

.about-value-example-label {
    color: var(--aro-seafoam);
    font-weight: 500;
    margin-right: 0.35rem;
}

/* Trust Section */
.about-trust {
    padding: 5rem 0;
    border-top: 1px solid rgba(255, 255, 255, 0.06);
}

.about-trust-inner {
    max-width: 650px;
    margin: 0 auto;
    text-align: center;
}

.about-trust-content {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 500ms ease, transform 500ms ease;
}

.about-trust-content.is-visible {
    opacity: 1;
    transform: translateY(0);
}

.about-trust-heading {
    font-size: 1.6rem;
    margin-bottom: 1.25rem;
}

.about-trust-text {
    font-size: 1.05rem;
    line-height: 1.7;
    color: var(--aro-text-muted);
    margin-bottom: 1rem;
}

.about-trust-text:last-child {
    margin-bottom: 0;
}

/* About CTA */
.about-cta {
    padding: 5rem 0;
    background: rgba(0, 0, 0, 0.2);
    text-align: center;
}

.about-cta-inner {
    max-width: 500px;
    margin: 0 auto;
}

.about-cta-heading {
    font-size: 1.8rem;
    margin-bottom: 1rem;
}

.about-cta-text {
    font-size: 1.05rem;
    color: var(--aro-text-muted);
    margin-bottom: 2rem;
    line-height: 1.6;
}

.about-cta-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

/* Mobile */
@media (max-width: 768px) {
    .about-hero {
        padding: 6rem 0 4rem;
    }

    .about-values-grid {
        grid-template-columns: 1fr;
    }

    .about-value-card {
        padding: 1.5rem;
    }

    .about-cta-buttons {
        flex-direction: column;
        align-items: center;
    }

    .about-cta-buttons .btn {
        width: 100%;
        max-width: 280px;
    }
}

/* ==========================================================================
   CONTACT PAGE - Warm & Personal
   ========================================================================== */

/* Contact Hero */
.contact-hero {
    padding: 8rem 0 4rem;
    text-align: center;
    background: radial-gradient(ellipse at 50% 0%, rgba(190, 219, 223, 0.08), transparent 60%);
}

.contact-hero-inner {
    max-width: 550px;
    margin: 0 auto;
}

.contact-hero-title {
    font-size: clamp(2.4rem, 4.5vw, 3.2rem);
    line-height: 1.15;
    margin-bottom: 1.25rem;
}

.contact-hero-subtitle {
    font-size: 1.1rem;
    color: var(--aro-text-muted);
    line-height: 1.6;
}

/* Contact Main */
.contact-main {
    padding: 3rem 0 6rem;
}

.contact-main-inner {
    max-width: 550px;
    margin: 0 auto;
}

.contact-note {
    margin-top: 2rem;
    font-size: 0.9rem;
    color: var(--aro-text-muted);
    text-align: center;
    opacity: 0.7;
}

/* Mobile */
@media (max-width: 480px) {
    .contact-hero {
        padding: 6rem 0 3rem;
    }
}

/* ==========================================================================
   GLOBAL ANIMATION UTILITIES
   ========================================================================== */

/* Staggered reveal delays */
[data-reveal-delay="50"] { transition-delay: 50ms; }
[data-reveal-delay="100"] { transition-delay: 100ms; }
[data-reveal-delay="150"] { transition-delay: 150ms; }
[data-reveal-delay="200"] { transition-delay: 200ms; }
[data-reveal-delay="250"] { transition-delay: 250ms; }
[data-reveal-delay="300"] { transition-delay: 300ms; }

/* Focus states */
*:focus-visible {
    outline: 2px solid var(--aro-seafoam);
    outline-offset: 2px;
}

/* Reduced motion */
@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }

    [data-reveal] {
        opacity: 1;
        transform: none;
    }
}

/* ==========================================================================
   MOBILE AUDIT - Touch Targets, Typography, Spacing & Layout
   Ensuring touch-friendly interactions and readable text on all devices
   ========================================================================== */

/* Smooth Scrolling */
html {
    scroll-behavior: smooth;
}

@media (prefers-reduced-motion: reduce) {
    html {
        scroll-behavior: auto;
    }
}

/* Prevent horizontal scroll on mobile */
html, body {
    overflow-x: hidden;
}

.page-shell {
    overflow-x: hidden;
    width: 100%;
}

/* Z-index stack for mobile */
.site-header {
    z-index: 1000;
}

.header-mobile {
    z-index: 999;
}

.header-nav-toggle {
    z-index: 1001;
}

/* ==========================================================================
   TOUCH TARGETS - Minimum 44x44px
   ========================================================================== */

@media (max-width: 768px) {
    /* Buttons */
    .btn {
        min-height: 48px;
        padding: 14px 24px;
    }

    /* Form fields */
    .form-field input,
    .form-field textarea,
    .form-field select {
        min-height: 48px;
        font-size: 16px; /* Prevents iOS zoom */
    }

    /* FAQ toggles */
    .faq-toggle {
        min-height: 56px;
        padding: 1rem 1.25rem;
    }

    /* Navigation links in mobile menu */
    .header-mobile .header-link {
        min-height: 48px;
        display: flex;
        align-items: center;
        padding: 0.75rem 1.5rem;
    }

    /* Slot buttons on Book Demo */
    .demo-slot {
        min-height: 48px;
        padding: 0.75rem 1.25rem;
    }

    /* Roadmap filters */
    .roadmap-filter {
        min-height: 44px;
        padding: 0.6rem 1rem;
    }

    /* Guide cards */
    .guide-card {
        padding: 1.25rem;
    }

    /* Solution cards CTA */
    .solution-cta {
        min-height: 48px;
    }
}

/* ==========================================================================
   MOBILE HEADER IMPROVEMENTS - 900px breakpoint
   ========================================================================== */

@media (max-width: 900px) {
    .header-inner {
        height: 70px;
    }

    .header-logo {
        height: 48px;
    }

    /* Mobile menu overlay */
    .header-mobile {
        position: fixed;
        top: 70px;
        left: 0;
        right: 0;
        bottom: 0;
        background: rgba(5, 7, 9, 0.98);
        backdrop-filter: blur(20px);
        padding: 2rem 1.5rem;
        overflow-y: auto;
        opacity: 0;
        visibility: hidden;
        transition: opacity 300ms ease, visibility 300ms ease;
    }

    .header-mobile[hidden] {
        display: block;
        opacity: 0;
        visibility: hidden;
    }

    .site-header.is-open .header-mobile {
        opacity: 1;
        visibility: visible;
    }

    .header-mobile ul {
        list-style: none;
        padding: 0;
        margin: 0;
        display: flex;
        flex-direction: column;
        gap: 0.5rem;
    }

    .header-mobile .header-link {
        display: flex;
        align-items: center;
        padding: 1rem 1.25rem;
        font-size: 1.1rem;
        border-radius: 12px;
        transition: background 200ms ease;
    }

    .header-mobile .header-link:hover,
    .header-mobile .header-link:focus {
        background: rgba(190, 219, 223, 0.08);
    }

    .header-mobile .header-login {
        margin-top: 1rem;
        justify-content: center;
    }
}

/* ==========================================================================
   MOBILE TYPOGRAPHY & SPACING - 768px breakpoint
   ========================================================================== */

@media (max-width: 768px) {
    /* Reduce section padding */
    .hero,
    .about-hero,
    .support-hero,
    .contact-hero,
    .demo-hero {
        padding: 6rem 0 3rem;
    }

    section {
        padding: 3rem 0;
    }

    /* Container padding */
    .container {
        padding-left: 20px;
        padding-right: 20px;
    }

    /* Heading sizes */
    .hero-title,
    .about-hero-title,
    .support-hero-title,
    .contact-hero-title,
    .demo-hero-title {
        font-size: clamp(1.8rem, 7vw, 2.4rem);
    }

    /* Body text */
    .hero-subtitle,
    .section-body,
    .about-hero-subtitle,
    .support-hero-subtitle {
        font-size: 1rem;
        line-height: 1.6;
    }

    /* Card padding reduction */
    .feature-card,
    .solution-card,
    .about-value-card,
    .guide-card,
    .faq-item {
        padding: 1.25rem;
    }
}

@media (max-width: 480px) {
    /* Extra small screens */
    .container {
        padding-left: 16px;
        padding-right: 16px;
    }

    .hero-title {
        font-size: 1.6rem;
    }

    /* Stack buttons */
    .hero-cta-row,
    .about-cta-buttons {
        flex-direction: column;
        gap: 0.75rem;
    }

    .hero-cta-row .btn,
    .about-cta-buttons .btn {
        width: 100%;
    }
}

/* ==========================================================================
   MOBILE FORM IMPROVEMENTS
   ========================================================================== */

@media (max-width: 768px) {
    .form-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }

    .form-field--full {
        grid-column: 1;
    }

    .form-actions {
        flex-direction: column;
        gap: 1rem;
    }

    .form-actions .btn {
        width: 100%;
    }

    .form-status {
        text-align: center;
    }

    /* Contact form specific */
    .contact-main-inner,
    .contact-page-inner {
        padding: 0;
    }
}

/* ==========================================================================
   MOBILE SOLUTIONS CARDS - 900px breakpoint
   ========================================================================== */

@media (max-width: 900px) {
    .solutions-grid {
        flex-direction: column;
    }

    .solution-card {
        flex: 1 1 100%;
    }

    /* Qualifier on solutions page */
    .qualifier-options {
        flex-direction: column;
        gap: 1rem;
    }

    .qualifier-option {
        width: 100%;
    }
}

@media (max-width: 768px) {
    .solution-price {
        flex-wrap: wrap;
    }

    .price-main {
        font-size: 2rem;
    }

    .solution-list {
        font-size: 0.9rem;
    }

    .solution-cta {
        width: 100%;
    }
}

/* ==========================================================================
   MOBILE FEATURE CARDS
   ========================================================================== */

@media (max-width: 900px) {
    .feature-map-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }

    .feature-card--checkins,
    .feature-card--clubview {
        grid-row: auto;
    }

    .feature-card--highlights {
        grid-column: auto;
    }
}

@media (max-width: 768px) {
    .feature-map-inner {
        padding: 1.5rem;
        border-radius: 20px;
    }

    .feature-card {
        padding: 1.25rem;
        border-radius: 16px;
    }

    .feature-card-visual {
        height: 60px;
        border-radius: 12px;
    }
}

/* ==========================================================================
   MOBILE BOOK DEMO
   ========================================================================== */

@media (max-width: 900px) {
    .demo-booking-inner {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
}

@media (max-width: 480px) {
    .demo-calendar,
    .demo-form-container {
        padding: 1.25rem;
        border-radius: 16px;
    }

    .demo-slots {
        flex-direction: column;
    }

    .demo-slot {
        width: 100%;
        text-align: center;
        justify-content: center;
    }

    .demo-timezone {
        flex-wrap: wrap;
        gap: 0.5rem;
    }

    .demo-timezone-change {
        width: 100%;
        margin-top: 0.5rem;
    }
}

/* ==========================================================================
   MOBILE SUPPORT PAGE
   ========================================================================== */

@media (max-width: 768px) {
    .guides-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }

    .roadmap-item {
        flex-direction: column;
        gap: 1rem;
    }

    .roadmap-status {
        flex-direction: row;
        justify-content: flex-start;
    }

    .roadmap-cta {
        flex-direction: column;
        text-align: center;
        gap: 1rem;
    }

    .roadmap-cta-btn {
        width: 100%;
    }

    .faq-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
}

/* ==========================================================================
   MOBILE ABOUT PAGE
   ========================================================================== */

@media (max-width: 768px) {
    .about-values-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }

    .about-value-card {
        padding: 1.5rem;
    }

    .about-story-inner {
        gap: 3rem;
    }

    .about-mission-statement {
        font-size: 1.2rem;
    }
}

/* ==========================================================================
   ACCESSIBILITY IMPROVEMENTS
   ========================================================================== */

/* Skip link for keyboard users */
.skip-link {
    position: absolute;
    top: -100px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--aro-seafoam);
    color: var(--aro-bg);
    padding: 0.75rem 1.5rem;
    border-radius: 0 0 8px 8px;
    font-weight: 600;
    z-index: 10000;
    transition: top 200ms ease;
}

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

/* Enhanced focus states */
a:focus-visible,
button:focus-visible,
input:focus-visible,
textarea:focus-visible,
select:focus-visible,
[tabindex]:focus-visible {
    outline: 2px solid var(--aro-seafoam);
    outline-offset: 2px;
}

/* High contrast mode support */
@media (prefers-contrast: high) {
    :root {
        --aro-border-soft: #555;
    }

    .btn-primary {
        border: 2px solid var(--aro-bg);
    }

    .btn-outline {
        border-width: 2px;
    }

    .form-field input,
    .form-field textarea {
        border-width: 2px;
    }
}

/* Screen reader only content */
.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

/* Visible on focus (for skip links etc) */
.sr-only-focusable:focus,
.sr-only-focusable:active {
    position: static;
    width: auto;
    height: auto;
    padding: inherit;
    margin: inherit;
    overflow: visible;
    clip: auto;
    white-space: inherit;
}

/* ==========================================================================
   LOADING STATES & PERFORMANCE
   ========================================================================== */

/* Content loading placeholder */
.loading-skeleton {
    background: linear-gradient(90deg,
        rgba(255, 255, 255, 0.03) 25%,
        rgba(255, 255, 255, 0.06) 50%,
        rgba(255, 255, 255, 0.03) 75%
    );
    background-size: 200% 100%;
    animation: shimmer 1.5s infinite;
    border-radius: 8px;
}

@keyframes shimmer {
    0% { background-position: 200% 0; }
    100% { background-position: -200% 0; }
}

/* Button loading state */
.btn.is-loading {
    pointer-events: none;
    opacity: 0.7;
}

.btn.is-loading::after {
    content: '';
    width: 16px;
    height: 16px;
    border: 2px solid transparent;
    border-top-color: currentColor;
    border-radius: 50%;
    animation: spin 600ms linear infinite;
    margin-left: 0.5rem;
}

@keyframes spin {
    to { transform: rotate(360deg); }
}

/* Optimize paint performance */
.feature-card,
.solution-card,
.about-value-card,
.faq-item,
.roadmap-item {
    will-change: transform;
    contain: layout style;
}

/* GPU acceleration for animations */
[data-reveal] {
    will-change: opacity, transform;
}

[data-reveal].is-visible {
    will-change: auto;
}

/* ==========================================================================
   PRINT STYLES
   ========================================================================== */

@media print {
    /* Hide non-essential elements */
    .site-header,
    .site-footer,
    .skip-link,
    .btn,
    .form-field,
    .demo-calendar,
    .roadmap-filters,
    .header-mobile {
        display: none !important;
    }

    /* Reset backgrounds */
    body,
    .page-shell,
    section {
        background: white !important;
        color: black !important;
    }

    /* Ensure text is readable */
    .hero-title,
    .section-heading,
    h1, h2, h3 {
        color: black !important;
        -webkit-text-fill-color: black !important;
    }

    .hero-subtitle,
    .section-body,
    p {
        color: #333 !important;
    }

    /* Show URLs for links */
    a[href]::after {
        content: " (" attr(href) ")";
        font-size: 0.8em;
        color: #666;
    }

    /* Page breaks */
    section {
        page-break-inside: avoid;
    }

    h1, h2, h3 {
        page-break-after: avoid;
    }
}
