/* Import Google Fonts - Matching your React app */
@import url("https://fonts.googleapis.com/css2?family=Fira+Code:wght@400;600&family=Inter:wght@400;500;600;700&family=Space+Grotesk:wght@400;500;600&display=swap");


/* =====================================================
   Page Layout - Matching React App
   ===================================================== */

.page-layout-public {
    display: flex;
    flex-direction: column;
    align-items: center;
    height: 100%;
    width: 100%;
}

.page-layout-public__content {
    flex: 1;
    flex-basis: auto;
    flex-shrink: 0;
    display: flex;
    flex-direction: column;
    margin-top: 0; /* No margin - hero starts at top */
    max-width: 180rem; /* 1800px - matches homepage */
    width: 100%;
}

/* If you add non-hero pages later, they can use margin-top */
.page-layout-public__content:not(:has(.hero-banner)) {
    margin-top: 8rem;
}

@media only screen and (max-width: 640px) {
    .page-layout-public__content:not(:has(.hero-banner)) {
        margin-top: 6.4rem;
    }
}

/* =====================================================
   Base Font Size - Match React App
   ===================================================== */

html {
    font-size: 10px;
    text-rendering: geometricPrecision;
    -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
    overscroll-behavior-y: none; /* ADD THIS - Disable elastic/bounce scrolling */
}

body {
    overscroll-behavior-y: none; /* ADD THIS - Disable elastic/bounce scrolling */
}

/* All anchor targets */
:target {
    scroll-margin-top: 100px;
}

/* =====================================================
   Trace Swift Marketing Styles
   Shared CSS for all marketing pages
   ===================================================== */

/* CSS Variables - Brand Colors & Gradients */
:root {
    /* Brand Colors - Exact from theme.css */
    --orange: #ff4f40;
    --indigo-dark: #4338ca;
    --indigo: #635dff;
    --indigo-light: #818cf8;
    --white: #fff;
    --light-aluminium: #eaecee;
    --aluminium: #bdc4cf;
    --dark-aluminium: #2a2e35;
    --black: #000000;
    --yellow: #ebca40;
    --mandarine: #ff7f38;
    --pink: #ff44dd;
    --blue: #3885ff;
    --aqua: #3ec6eb;
    --emerald: #1bc99f;

    /* Gradients - Exact from theme.css */
    --yellow-mandarine-gradient: linear-gradient(
            153.07deg,
            var(--yellow) -2.47%,
            var(--mandarine) 102.78%
    );

    --mandarine-orange-gradient: linear-gradient(
            153.07deg,
            var(--mandarine) -2.47%,
            var(--orange) 102.78%
    );

    --pink-yellow-gradient: linear-gradient(
            153.07deg,
            var(--pink) -2.47%,
            var(--yellow) 102.78%
    );

    --pink-indigo-gradient: linear-gradient(
            153.07deg,
            var(--pink) -2.47%,
            var(--indigo) 102.78%
    );

    --indigo-aqua-gradient: linear-gradient(
            153.07deg,
            var(--indigo) -2.47%,
            var(--aqua) 102.78%
    );

    --blue-aqua-gradient: linear-gradient(
            153.07deg,
            var(--blue) -2.47%,
            var(--aqua) 102.78%
    );

    --aqua-emerald-gradient: linear-gradient(
            153.07deg,
            var(--aqua) -2.47%,
            var(--emerald) 102.78%
    );

    --black-emerald-gradient: linear-gradient(
            153.07deg,
            #303a52 25.50%,
            var(--black) 60.00%
    );

    --emerald-yellow-gradient: linear-gradient(
            153.07deg,
            var(--emerald) -2.47%,
            var(--yellow) 102.78%
    );

    /* Text Colors */
    --text-dark: #1f2937;
    --text-medium: #4b5563;
    --text-light: #6b7280;

    /* Fonts - Matching your React app */
    --font-primary: "Inter", sans-serif;
    --font-secondary: "Inter", sans-serif;
    --font-mono: "Inter", monospace;
}

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

body {
    font-family: var(--font-primary);
    line-height: 1.6;
    color: #333;
    background: #fff;
}

/* =====================================================
   Navigation - Exact Match to React App
   ===================================================== */

.nav-bar__container {
    position: fixed;
    display: flex;
    justify-content: flex-start;
    flex-shrink: 0;
    width: 100%;
    z-index: 300;
    background-color: #303a52;
    left: 0;
    top: 0;
}

.nav-bar {
    flex: 1;
    display: flex;
    align-items: center;
    flex-shrink: 0;
    height: 8rem;
    max-width: 240rem;
    padding: 0 24px;
    margin: 0;
}

.nav-bar__brand {
    display: flex;
    align-items: center;
    height: 100%;
    margin-right: 64px;
}

.nav-bar__link {
    display: flex;
    align-items: center;
    height: 100%;
    text-decoration: none;
}

.nav-bar__logo {
    height: 70px !important;
    width: auto !important;
    max-height: none !important;
    object-fit: contain;
}

.nav-bar__tabs {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: flex-end;
}

.nav-bar__tab {
    display: flex;
    flex-direction: row;
    justify-content: center;
    margin-right: 24px;
    font-weight: 500;
    font-size: 16px;
    line-height: 16px;
    color: var(--white);
    text-decoration: none;
    transition: color 0.2s;
}

.nav-bar__tab:last-child {
    margin-right: 0;
}

.nav-bar__tab--active {
    text-decoration-line: underline;
    text-decoration-style: solid;
    text-decoration-color: var(--indigo);
    text-decoration-thickness: 4px;
    text-underline-offset: 8px;
}

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

.nav-bar__buttons {
    display: flex;
    margin-left: 24px;
}

/* Buttons - Exact Match to React App */
.button__sign-up {
    min-width: 8.4rem;
    border: 0.1rem solid var(--white);
    color: var(--white);
    background-color: transparent;
    width: 50%;
    font-size: 1.6rem;
    margin-right: 1.6rem;
    font-family: var(--font-primary);
    font-style: normal;
    font-weight: 500;
    line-height: 3.2rem;
    padding: 0.8rem 0;
    border-radius: 0.8rem;
    text-align: center;
    cursor: pointer;
    user-select: none;
    text-decoration: none;
    display: inline-block;
    transition: background 0.3s ease-out, color 0.3s ease-out;
}

.button__sign-up:hover {
    background-color: rgba(255, 255, 255, 0.1);
}

.button__login,
.button__logout {
    min-width: 8.4rem;
    border: 0.1rem solid var(--indigo);
    color: var(--white);
    background: var(--indigo);
    width: 50%;
    font-size: 1.6rem;
    margin-right: 0;
    font-family: var(--font-primary);
    font-style: normal;
    font-weight: 600;
    line-height: 3.2rem;
    padding: 0.8rem 0;
    border-radius: 0.8rem;
    text-align: center;
    cursor: pointer;
    user-select: none;
    text-decoration: none;
    display: inline-block;
    transition: background 0.3s ease-out, color 0.3s ease-out;
    /* Reset button defaults */
    -webkit-appearance: none;
    appearance: none;
}

.button__login:hover,
.button__logout:hover {
    background: rgba(99, 93, 255, 0.85);
}

/* =====================================================
   Hero Banner - Matching React App Style
   ===================================================== */

.hero-banner {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-end;
    width: 100%;
    min-height: 60vh;
    background: var(--pink-yellow-gradient);
    color: var(--black);
    margin: 0 auto;
    padding: 3.2rem 6.4rem;
    position: relative;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    background-attachment: scroll;
}

.hero-banner--pink-yellow {
    background: var(--pink-yellow-gradient);
}

.hero-banner--yellow-mandarine {
    background: var(--yellow-mandarine-gradient);
}

.hero-banner--blue-aqua {
    background: var(--blue-aqua-gradient);
}

.hero-banner--aqua-emerald {
    background: var(--aqua-emerald-gradient);
}

.hero-banner--emerald-yellow {
    background: var(--emerald-yellow-gradient);
}

.hero-banner--indigo-aqua {
    background: var(--indigo-aqua-gradient);
}

.hero-banner--mandarine-orange {
    background: var(--mandarine-orange-gradient);
}

.hero-banner__headline {
    letter-spacing: -1.5px;
    color: white;
    text-align: left;
    max-width: 80rem;
    margin: 2.4rem 0 8px 0;
    font-size: 5.8rem;
    line-height: normal;
    font-weight: 600;
    font-family: var(--font-primary);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

.hero-banner__description {
    max-width: 58rem;
    text-align: left;
    color: white;
    margin-bottom: 3.2rem;
    font-size: 25px;
    line-height: 3.2rem;
}

.hero-banner__description strong {
    color: white;
    font-weight: 700;
}

/* =====================================================
   Content Section
   ===================================================== */

.content {
    max-width: 120rem;
    margin: 0 auto;
    padding: 3rem 6.4rem;
}

.content h2 {
    font-size: 2.375rem;
    font-weight: 600;
    margin-top: 2rem;
    margin-bottom: 1rem;
    color: #1f2937;
}

.content h3 {
    font-size: 2.0rem;
    font-weight: 600;
    margin-top: 1.5rem;
    margin-bottom: 0.75rem;
    color: #374151;
}

/* Blog Post H4 styling */
.content h4,
article h4 {
    font-size: 1.6rem;
    font-weight: 700;
    color: #374151;
    margin: 2.5rem 0 1rem;
}

.content p {
    font-size: 1.8rem;
    line-height: 1.7;
    color: #4a5568;
    margin: 0 0 2rem 0;
}

.content ul,
.content ol {
    margin: 1rem 0 1rem 2rem;
    font-size: 1.8rem;
    line-height: 1.7;
    color: #4a5568;
}

.content li {
    margin-bottom: 0.5rem;
    line-height: 1.7;
}

.content strong {
    color: var(--text-dark);
    font-weight: 600;
}

/* =====================================================
   Feature Grid
   ===================================================== */

.features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin: 2rem 0;
}

.feature {
    padding: 1.5rem;
    border: 1px solid #e5e7eb;
    border-radius: 8px;
    background: #f9fafb;
    transition: transform 0.2s, box-shadow 0.2s;
}

.feature:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}

.feature h4 {
    color: var(--indigo);
    margin-bottom: 0.5rem;
    font-size: 1.6rem;
    font-weight: 600;
}

.feature p {
    margin: 0;
    font-size: 1.4rem;
    line-height: 1.5;
}

/* =====================================================
   Standards Grid
   ===================================================== */

.standards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1.5rem;
    margin: 2rem 0;
}

.standard {
    padding: 1.5rem;
    border: 2px solid #e5e7eb;
    border-radius: 8px;
    background: white;
    transition: border-color 0.2s;
}

.standard:hover {
    border-color: var(--indigo);
}

.standard h4 {
    color: var(--indigo);
    font-size: 1.8rem;
    margin-bottom: 0.5rem;
    font-weight: 600;
}

.standard .region {
    color: var(--text-light);
    font-size: 1.4rem;
    margin-bottom: 0.75rem;
    font-weight: 500;
}

.standard ul {
    margin: 0.5rem 0 0 1.25rem;
}

.standard li {
    margin-bottom: 0.25rem;
    font-size: 1.4rem;
    line-height: 1.5;
}

/* =====================================================
   CTA Sections
   ===================================================== */

.cta-section {
    background: #f3f4f6;
    padding: 3rem 5%;
    text-align: center;
    margin: 3rem 0;
}

.cta-section h2 {
    margin-bottom: 1rem;
    font-weight: 700;
    font-size: 2.4rem;
}

.cta-section p {
    font-size: 1.6rem;
    margin-bottom: 2rem;
    color: var(--text-medium);
    line-height: 1.6;
}

/* CTA Button Styling */
.cta-section .cta-button {
    display: inline-block;
    background: var(--indigo);
    color: white !important;
    padding: 1.2rem 3rem;
    border-radius: 0.8rem;
    font-weight: 600;
    font-size: 1.6rem;
    text-decoration: none;
    transition: background 0.3s ease-out, transform 0.2s;
    border: none;
    cursor: pointer;
}

.cta-section .cta-button:hover {
    background: rgba(99, 93, 255, 0.85);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(99, 93, 255, 0.4);
}

/* Blog Card Footer */
.blog-card__read-time {
    font-size: 1.2rem;
}

.blog-card__link {
    font-size: 1.4rem;
    font-weight: 600;
    color: var(--indigo);
    text-decoration: none;
    transition: color 0.2s ease;
}

.blog-card__footer {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 1rem;
    padding-bottom: 1.5rem;
    border-bottom: 1px solid #e9ecef;
}


/* =====================================================
   Alert Box
   ===================================================== */

.alert {
    background: #fef3c7;
    border-left: 4px solid #f59e0b;
    padding: 1rem 1.5rem;
    margin: 2rem 0;
    border-radius: 4px;
    font-size: 1.6rem;
    line-height: 1.6;
}

.alert strong {
    color: #92400e;
    font-weight: 600;
}

/* =====================================================
   Footer - Exact Copy from page-footer.css
   ===================================================== */

.page-footer {
    display: flex;
    justify-content: center;
    flex-shrink: 0;
    width: 100%;
    margin-top: 2.4rem;
    background-color: #303a52;
    color: var(--light-aluminium);
    font-weight: 500;
    text-align: center;
    font-size: 1.6rem;
    line-height: 2.4rem;
}

.page-footer-grid {
    display: flex;
    grid-template-rows: auto auto;
    width: 100%;
    max-width: 120rem;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    padding: 3.2rem;
}

.footer-logo {
    width: 28px;
    height: 28px;
}

.page-footer-grid__info {
    display: grid;
    grid-template-columns: 1.5fr 1fr auto;
    column-gap: 2.4rem;
}

.page-footer-grid__brand {
    display: grid;
    justify-items: center;
    grid-template-columns: 1fr;
    margin-top: 3.2rem;
}

.page-footer-info__message {
    text-align: left;
}

.page-footer-message__headline {
    margin: 0 0 1.4rem;
    font-weight: 500;
}

.page-footer-message__description {
    margin-bottom: 0;
    letter-spacing: 0.016rem;
}

.page-footer-info__button {
    display: flex;
    justify-content: center;
    align-items: center;
}

.page-footer-info__resource-list {
    display: grid;
    row-gap: 0.8rem;
}

.page-footer-info__resource-list-item {
    text-align: right;
}

.page-footer-brand {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
}

.page-footer-brand__logo {
    width: 20px;
    margin-right: 12px;
}

.page-footer__hyperlink {
    letter-spacing: 0.001rem;
}

.page-footer__hyperlink,
.page-footer__hyperlink:active,
.page-footer__hyperlink:visited {
    color: var(--white);
}

.page-footer__hyperlink:hover {
    color: var(--aluminium);
}

/* Footer link container and elements (from React component) */
.footer-links {
    /* No special styling - just a container */
}

.footer-link {
    color: var(--white);
    text-decoration: none;
    letter-spacing: 0.001rem;
}

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

.footer-separator {
    color: var(--light-aluminium);
}

.footer-copyright {
    color: var(--light-aluminium);
}

/* =====================================================
   Navigation Dropdowns
   Add this section to marketing-styles.css
   ===================================================== */

/* Dropdown container - must match .nav-bar__tab spacing */
.nav-bar__dropdown {
    position: relative;
    display: flex;
    align-items: center;
    margin-right: 24px;
}

/* Dropdown trigger button - must match .nav-bar__tab styling */
.nav-bar__dropdown-trigger {
    display: flex;
    align-items: center;
    gap: 6px;
    background: none;
    border: none;
    cursor: pointer;
    font-family: inherit;
    /* Match .nav-bar__tab styles */
    color: var(--white);
    font-weight: 500 !important; /* Override browser button defaults */
    font-size: 16px;
    line-height: 16px;
    padding: 0;
    margin: 0; /* Remove any inherited margin */
    transition: color 0.2s;
}

/* Ensure dropdown trigger doesn't inherit nav-bar__tab margin */
.nav-bar__dropdown .nav-bar__tab,
.nav-bar__dropdown .nav-bar__dropdown-trigger {
    margin-right: 0 !important;
}

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

/* Dropdown arrow */
.nav-bar__dropdown-arrow {
    transition: transform 0.2s ease;
}

.nav-bar__dropdown-arrow--open {
    transform: rotate(180deg);
}

/* Dropdown menu */
.nav-bar__dropdown-menu {
    position: absolute;
    top: calc(100% + 12px);
    left: 50%;
    transform: translateX(-50%);
    min-width: 260px;
    background: var(--white);
    border-radius: 12px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15), 0 2px 10px rgba(0, 0, 0, 0.1);
    padding: 8px;
    z-index: 400;
    animation: dropdownFadeIn 0.15s ease-out;
    /* Hidden by default for static pages (JS controls visibility) */
    display: none;
}

/* Invisible bridge to maintain hover when moving from trigger to menu */
.nav-bar__dropdown-menu::after {
    content: "";
    position: absolute;
    top: -20px;
    left: 0;
    right: 0;
    height: 20px;
    background: transparent;
}

/* Show on hover for CSS-only fallback */
.nav-bar__dropdown:hover .nav-bar__dropdown-menu {
    display: block;
}

/* Arrow pointer on dropdown - positioned above the menu */
.nav-bar__dropdown-menu::before {
    content: "";
    position: absolute;
    top: -6px;
    left: 50%;
    transform: translateX(-50%);
    border-left: 8px solid transparent;
    border-right: 8px solid transparent;
    border-bottom: 8px solid var(--white);
    /* Ensure arrow is above the invisible bridge */
    z-index: 1;
}

@keyframes dropdownFadeIn {
    from {
        opacity: 0;
        transform: translateX(-50%) translateY(-8px);
    }
    to {
        opacity: 1;
        transform: translateX(-50%) translateY(0);
    }
}

/* Dropdown items */
.nav-bar__dropdown-item {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    padding: 12px 16px;
    text-decoration: none;
    color: var(--text-dark);
    border-radius: 8px;
    transition: background-color 0.15s ease;
}

.nav-bar__dropdown-item:hover {
    background-color: #f3f4f6;
}

/* Icon in dropdown */
.nav-bar__dropdown-icon {
    font-size: 18px;
    line-height: 1;
    flex-shrink: 0;
    margin-top: 2px;
}

/* Content wrapper */
.nav-bar__dropdown-content {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

/* Item label */
.nav-bar__dropdown-label {
    font-size: 14px;
    font-weight: 600;
    color: var(--text-dark);
    line-height: 1.3;
}

/* Item description */
.nav-bar__dropdown-description {
    font-size: 12px;
    color: var(--text-light);
    line-height: 1.4;
}

/* Divider for grouping items */
.nav-bar__dropdown-divider {
    height: 1px;
    background: #e5e7eb;
    margin: 8px 0;
}

/* =====================================================
   Mobile Nav Bar (for static pages)
   ===================================================== */

.mobile-nav-bar__container {
    position: fixed;
    top: 0;
    left: 0;
    display: none;
    justify-content: center;
    flex-shrink: 0;
    width: 100%;
    z-index: 300;
    background-color: #303a52;
}

.mobile-nav-bar {
    flex: 1;
    display: flex;
    align-items: center;
    flex-shrink: 0;
    height: 6.4rem;
    max-width: 1200px;
    padding: 0.8rem 1.6rem;
    margin: 0;
}

.mobile-nav-bar__brand {
    flex: 1;
    display: flex;
    align-items: center;
    height: 100%;
    margin-right: 1.6rem;
}

.mobile-nav-bar__link {
    display: flex;
    align-items: center;
    height: 100%;
}

.mobile-nav-bar__logo {
    height: 50px !important;
    width: auto !important;
}

.mobile-nav-bar__menu {
    width: 100%;
    height: calc(100% - 6.4rem);
    position: fixed;
    left: 0;
    top: 6.4rem;
    background-color: var(--black);
    z-index: 300;
}

.mobile-nav-bar__menu--closed {
    display: none;
}

.mobile-nav-bar__toggle {
    margin-left: 2.4rem;
    font-size: 3.6rem;
    cursor: pointer;
    color: var(--white);
}

.mobile-nav-bar__tabs {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: flex-end;
    flex-direction: column;
    width: 100%;
}

.mobile-nav-bar__tab {
    display: flex;
    flex-direction: row;
    font-weight: 500;
    font-size: 2rem;
    line-height: 16px;
    padding: 3.2rem 2.4rem;
    background-color: #303a52;
    color: var(--white);
    width: 100%;
    box-shadow: rgb(90 95 102) 0 -1.5px 0 inset;
    text-decoration: none;
}

.mobile-nav-bar__tab--active {
    text-decoration-line: underline;
    text-decoration-style: solid;
    text-decoration-color: var(--indigo);
    text-decoration-thickness: 4px;
    text-underline-offset: 8px;
}

.mobile-nav-bar__buttons {
    display: flex;
    justify-content: center;
    padding: 3.2rem;
    background-color: #303a52;
}

/* Mobile Nav Bar Dropdown */
.mobile-nav-bar__dropdown {
    width: 100%;
}

.mobile-nav-bar__dropdown-trigger {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    background: none;
    border: none;
    cursor: pointer;
    text-align: left;
    font-weight: 500;
    font-size: 2rem;
    line-height: 16px;
    padding: 3.2rem 2.4rem;
    background-color: #303a52;
    color: var(--white);
    box-shadow: rgb(90 95 102) 0 -1.5px 0 inset;
}

.mobile-nav-bar__dropdown-arrow {
    transition: transform 0.2s ease;
}

.mobile-nav-bar__dropdown-arrow--open {
    transform: rotate(180deg);
}

.mobile-nav-bar__dropdown-menu {
    background-color: #252b3a;
}

.mobile-nav-bar__dropdown-item {
    display: block;
    padding: 2rem 2.4rem 2rem 4rem;
    color: var(--aluminium);
    text-decoration: none;
    font-size: 1.6rem;
    font-weight: 500;
    box-shadow: rgb(90 95 102) 0 -1.5px 0 inset;
}

.mobile-nav-bar__dropdown-item:hover {
    color: var(--white);
    background-color: #303a52;
}

/* Show mobile nav, hide desktop nav on small screens */
@media only screen and (max-width: 900px) {
    .mobile-nav-bar__container {
        display: flex;
    }

    .nav-bar__container {
        display: none;
    }
}

/* =====================================================
   Enhanced Footer with Link Categories
   ===================================================== */

.page-footer-enhanced {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 100%;
    margin-top: 2.4rem;
    background-color: #303a52;
    color: var(--light-aluminium);
}

.page-footer__main {
    display: grid;
    grid-template-columns: 2fr repeat(4, 1fr);
    gap: 4rem;
    width: 100%;
    max-width: 120rem;
    padding: 4rem 3.2rem;
}

/* Brand column */
.page-footer__brand-col {
    display: flex;
    flex-direction: column;
    gap: 1.6rem;
}

.page-footer__brand-logo {
    height: 50px;
    width: auto;
}

.page-footer__brand-tagline {
    font-size: 1.4rem;
    line-height: 1.6;
    color: var(--aluminium);
    max-width: 280px;
}

/* Link columns */
.page-footer__col {
    display: flex;
    flex-direction: column;
    gap: 1.2rem;
}

.page-footer__col-title {
    font-size: 1.4rem;
    font-weight: 600;
    color: var(--white);
    margin-bottom: 0.4rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.page-footer__col-link {
    font-size: 1.4rem;
    color: var(--aluminium);
    text-decoration: none;
    transition: color 0.2s ease;
    line-height: 1.4;
}

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

/* Bottom bar */
.page-footer__bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    max-width: 120rem;
    padding: 2rem 3.2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.page-footer__copyright {
    font-size: 1.3rem;
    color: var(--aluminium);
}

.page-footer__legal {
    display: flex;
    gap: 2rem;
}

.page-footer__legal-link {
    font-size: 1.3rem;
    color: var(--aluminium);
    text-decoration: none;
    transition: color 0.2s ease;
}

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

/* Responsive footer */
@media only screen and (max-width: 960px) {
    .page-footer__main {
        grid-template-columns: repeat(2, 1fr);
        gap: 3rem;
    }

    .page-footer__brand-col {
        grid-column: span 2;
    }
}

@media only screen and (max-width: 640px) {
    .page-footer__main {
        grid-template-columns: 1fr;
        gap: 2.4rem;
        padding: 3rem 1.6rem;
    }

    .page-footer__brand-col {
        grid-column: span 1;
        align-items: center;
        text-align: center;
    }

    .page-footer__brand-tagline {
        max-width: 100%;
    }

    .page-footer__col {
        align-items: center;
        text-align: center;
    }

    .page-footer__bottom {
        flex-direction: column;
        gap: 1rem;
        text-align: center;
        padding: 2rem 1.6rem;
    }

    .page-footer__legal {
        flex-wrap: wrap;
        justify-content: center;
    }
}

/* =====================================================
   Grid Layout Modifiers
   ===================================================== */

/* Two columns for standards grid */
.standards--two-col {
    grid-template-columns: repeat(2, 1fr);
}

/* Three columns for features grid */
.features--three-col {
    grid-template-columns: repeat(3, 1fr);
}

/* Responsive fallbacks */
@media only screen and (max-width: 900px) {
    .features--three-col {
        grid-template-columns: repeat(2, 1fr);
    }

    .standards--two-col {
        grid-template-columns: 1fr;
    }
}

@media only screen and (max-width: 640px) {
    .features--three-col {
        grid-template-columns: 1fr;
    }
}

/* =====================================================
   Mobile Navigation Dropdown Adjustments
   ===================================================== */

/* Match nav-bar__tab responsive font size */
@media only screen and (max-width: 640px) {
    .nav-bar__dropdown-trigger {
        font-size: 1.5rem;
    }
}

@media only screen and (max-width: 340px) {
    .nav-bar__dropdown-trigger {
        font-size: 1.3rem;
    }
}

@media only screen and (max-width: 900px) {
    /* Hide desktop dropdowns on mobile */
    .nav-bar__dropdown {
        display: none;
    }

    /* Static links should also be hidden if using mobile nav */
    .nav-bar__tabs > a.nav-bar__tab:not(:first-child) {
        display: none;
    }
}

/* Responsive Footer */
@media only screen and (max-width: 960px) {
    .page-footer {
        font-size: 1.4rem;
        line-height: 2.2rem;
    }

    .page-footer-grid {
        padding: 3.2rem;
    }

    .page-footer-grid__info {
        grid-template-columns: 1fr;
        row-gap: 3.2rem;
    }

    .page-footer-info__message {
        text-align: center;
    }

    .page-footer-info__resource-list {
        grid-template-columns: 1fr 1fr;
        row-gap: 3.2rem;
        column-gap: 3.2rem;
    }

    .page-footer-info__resource-list-item:nth-child(odd) {
        text-align: right;
    }

    .page-footer-info__resource-list-item:nth-child(even) {
        text-align: left;
    }
}

@media only screen and (max-width: 480px) {
    .page-footer {
        font-size: 1.4rem;
        line-height: 2.2rem;
    }

    .page-footer-grid {
        padding: 3.2rem 1.6rem;
    }

    .page-footer-grid__info {
        grid-template-columns: 1fr;
        row-gap: 3.2rem;
    }

    .page-footer-info__message {
        text-align: center;
    }

    .page-footer-info__resource-list {
        grid-template-columns: 1fr 1fr;
        row-gap: 3.2rem;
        column-gap: 3.2rem;
    }

    .page-footer-info__resource-list-item:nth-child(odd) {
        text-align: right;
    }

    .page-footer-info__resource-list-item:nth-child(even) {
        text-align: left;
    }
}

/* =====================================================
   Responsive Design
   ===================================================== */

@media only screen and (min-width: 641px) {
    .button__login,
    .button__logout,
    .button__sign-up {
        padding: 0.8rem 1.2rem;
        font-size: 1.4rem;
        line-height: 1.6rem;
    }
}

@media only screen and (max-width: 900px) {
    .content h2 {
        font-size: 1.75rem;
    }

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

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

@media only screen and (max-width: 640px) {

    .nav-bar__logo {
        height: 50px !important;
        max-width: 150px;
    }

    .nav-bar__tab {
        font-size: 1.5rem;
    }

    .nav-bar {
        height: 6.4rem;
        padding: 0.8rem 1.6rem;
    }

    .nav-bar__brand {
        margin-right: 1.6rem;
    }

    .nav-bar__tab--active {
        text-decoration-line: none;
        color: var(--pink);
    }

    .nav-bar__buttons {
        margin-left: 12px;
    }
}

@media only screen and (max-width: 540px) {
    .hero-banner {
        padding: 3.2rem 1.6rem;
    }

    .hero-banner__headline {
        font-size: 4.5rem;
    }

    .hero-banner__description {
        font-size: 2.0rem;
        line-height: 2.8rem;
    }
}

@media only screen and (max-width: 340px) {
    .nav-bar__logo {
        height: 45px !important;
        max-width: 130px;
    }

    .nav-bar__tab {
        font-size: 1.3rem;
    }

    .nav-bar {
        height: 6.4rem;
        padding: 0.8rem 1.6rem;
    }

    .nav-bar__brand {
        margin-right: 1.6rem;
    }

    .nav-bar__logo {
        height: 2.8rem;
    }

    .nav-bar__tab--active {
        text-decoration-line: none;
        color: var(--pink);
    }

    .nav-bar__buttons {
        margin-left: 12px;
    }
}

/* Industry card link */
.industry-link {
    display: inline-block;
    margin-top: 1rem;
    font-size: 1.4rem;
    font-weight: 600;
    color: var(--indigo);
    text-decoration: none;
    transition: color 0.2s ease;
}

.industry-link:hover {
    color: var(--indigo-dark);
    text-decoration: underline;
}

/* =====================================================
   Pricing Cards
   Add this section to marketing-styles.css
   ===================================================== */

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin: 3rem 0;
    max-width: 1000px;
}

.pricing-card {
    position: relative;
    display: flex;
    flex-direction: column;
    background: var(--white);
    border: 2px solid #e5e7eb;
    border-radius: 12px;
    padding: 0;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
    overflow: hidden;
}

.pricing-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 24px rgba(0, 0, 0, 0.1);
}

/* Featured card styling */
.pricing-card--featured {
    border-color: var(--indigo);
    border-width: 2px;
    transform: scale(1.02);
}

.pricing-card--featured:hover {
    transform: scale(1.02) translateY(-4px);
}

.pricing-card__badge {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    background: var(--indigo);
    color: var(--white);
    text-align: center;
    padding: 0.5rem;
    font-size: 1.2rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.pricing-card--featured .pricing-card__header {
    padding-top: 4rem; /* Account for badge */
}

/* Card header */
.pricing-card__header {
    padding: 2rem 2rem 1.5rem;
    text-align: center;
    border-bottom: 1px solid #e5e7eb;
    background: #f9fafb;
}

.pricing-card__name {
    font-size: 1.8rem;
    font-weight: 600;
    color: var(--text-dark);
    margin: 0 0 1rem 0;
}

.pricing-card__price {
    display: flex;
    align-items: baseline;
    justify-content: center;
    gap: 2px;
}

.pricing-card__currency {
    font-size: 2rem;
    font-weight: 600;
    color: var(--text-dark);
}

.pricing-card__amount {
    font-size: 4rem;
    font-weight: 700;
    color: var(--text-dark);
    line-height: 1;
}

.pricing-card__period {
    font-size: 1.4rem;
    color: var(--text-light);
    margin-left: 4px;
}

/* Card body */
.pricing-card__body {
    flex: 1;
    display: flex;
    flex-direction: column;
    padding: 2rem;
}

.pricing-card__features {
    flex: 1;
    list-style: none;
    margin: 0 0 2rem 0;
    padding: 0;
}

.pricing-card__features li {
    position: relative;
    padding: 0.6rem 0 0.6rem 2.4rem;
    font-size: 1.4rem;
    color: var(--text-medium);
    line-height: 1.5;
}

.pricing-card__features li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: var(--emerald);
    font-weight: 600;
}

.pricing-card__features li strong {
    color: var(--text-dark);
}

/* Card buttons */
.pricing-card__button {
    display: block;
    width: 100%;
    padding: 1.2rem 2rem;
    border-radius: 0.8rem;
    font-size: 1.6rem;
    font-weight: 600;
    text-align: center;
    text-decoration: none;
    cursor: pointer;
    transition: all 0.2s ease;
}

.pricing-card__button--primary {
    background: var(--indigo);
    color: var(--white);
    border: 2px solid var(--indigo);
}

.pricing-card__button--primary:hover {
    background: rgba(99, 93, 255, 0.85);
    transform: translateY(-1px);
}

.pricing-card__button--outline {
    background: transparent;
    color: var(--indigo);
    border: 2px solid var(--indigo);
}

.pricing-card__button--outline:hover {
    background: var(--indigo);
    color: var(--white);
}

.feature-image {
    width: 50%;
    max-width: 400px;
    height: auto;
    border-radius: 8px;
    margin: 0 2rem 1.5rem 0;
    float: left;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.2);
}

/* Clear float before feature cards and other content blocks */
.features,
.standards,
.alert,
h3 {
    clear: both;
}

/* Responsive pricing */
@media only screen and (max-width: 900px) {
    .pricing-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .pricing-card--featured {
        transform: none;
        order: -1; /* Show featured card first on mobile */
    }

    .pricing-card--featured:hover {
        transform: translateY(-4px);
    }

    .pricing-card__amount {
        font-size: 3.2rem;
    }
}

/* Footer tagline - add to marketing-styles.css in the footer section */

.page-footer__tagline {
    font-size: 1.3rem;
    color: var(--aluminium);
    font-style: italic;
}