/* Channel Spyder CSS v3 - ordered to prevent conflicts */


/* ===== css/base/variables.css ===== */
/* Developer Handoff:
   File: css/base/variables.css
   Role: design-system-foundation
   Runtime: served-to-browser
   Maintainer Notes: Keep selectors aligned with markup and avoid redefining global tokens outside base/variables.css.
*/
/* =============================================
   CUSTOM CSS VARIABLES (Design Tokens)
   ============================================= */

:root {
   /* =============================================
       BRAND COLORS
       ============================================= */
   --brand-blue: #0072C6;
   --brand-blue-rgb: 0, 114, 198;
   --cs-blue-dark: #003053;
   --brand-light-blue: #54A1D9;
   --brand-bg-light: #E6F1F9;
   --brand-border-light: #B0D3ED;

   /* =============================================
       TEXT COLORS
       ============================================= */
   --text-dark: #131313;
   --text-dark-alt: #353352;
   --cs-text: #1E293B;
   --text-body: #333333;
   --text-muted: #666665;
   --text-helper: #868585;
   --text-label-small: #ADACAB;
   --text-prefix: #555555;

   /* =============================================
       BACKGROUND COLORS
       ============================================= */
   --bg-white: #FFF;
   --cs-white: #FEFEFE;
   --bg-gray-light: #F0F0F0;
   --bg-light-blue: #EAF1F6;
   --bg-form: #F9F9F9;
   --bg-input: #F9F9F9;
   --bg-input-hover: #FBFBFB;
   --bg-card-inactive: #FBFBFB;

   /* =============================================
       BORDER COLORS
       ============================================= */
   --border-color: #DDDCDB;
   --border-light: #F3F2F1;
   --error-border: #FFB3B3;

   /* =============================================
       STATE COLORS
       ============================================= */
   --success-green: #1EB53A;
   --success-bg: #E9F8EB;
   --success-text: #116420;
   --error-red: #D62828;
   --error-bg: #FBEAEA;
   --error-text: #981C1C;

   /* =============================================
       LAYOUT MEASUREMENTS
       ============================================= */
   --nav-height: 5.5rem;
   --nav-height-mobile: 4.5rem;
   --desktop-padding: 10rem;
   --desktop-padding-md: 3.75rem;
   --desktop-padding-sm: 1.5rem;
   --max-content-width: 90rem;
   --section-gap: 5rem;

   /* =============================================
       BORDER RADIUS
       ============================================= */
   --radius-sm: 0.5rem;
   --radius-md: 1rem;
   --radius-lg: 2rem;

   /* =============================================
       SHADOWS
       ============================================= */
   --shadow-card:
      0 0.5rem 1.0625rem rgba(51, 142, 209, 0.10),
      0 1.875rem 1.875rem rgba(51, 142, 209, 0.09),
      0 4.25rem 2.5625rem rgba(51, 142, 209, 0.05);

   /* =============================================
       TRANSITIONS
       ============================================= */
   --transition: all 0.3s cubic-bezier(0.2, 0.8, 0.2, 1);

   /* =============================================
       SPACING (Responsive Spacing)
       ============================================= */
   --space-xs: 0.25rem;
   /* 0.25rem */
   --space-sm: 0.5rem;
   /* 0.5rem */
   --space-md: 1rem;
   /* 1rem */
   --space-lg: 1.5rem;
   /* 1.5rem */
   --space-xl: 2rem;
   /* 2rem */
   --space-2xl: 2.5rem;
   /* 2.5rem */
   --space-3xl: 3rem;
   /* 3rem */
}

/* ===== css/base/reset.css ===== */
/* Developer Handoff:
   File: css/base/reset.css
   Role: design-system-foundation
   Runtime: served-to-browser
   Maintainer Notes: Keep selectors aligned with markup and avoid redefining global tokens outside base/variables.css.
*/
/* =============================================
   BASE RESET & BOX-SIZING
   ============================================= */
* {
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    box-sizing: border-box;
}

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

/* =============================================
   DOCUMENT & BODY
   ============================================= */
html {
    -webkit-text-size-adjust: 100%;
    -ms-text-size-adjust: 100%;
}

body {
    margin: 0;
    padding: 0;
    background-color: var(--bg-page);
    overflow-x: hidden;
    min-height: 100vh;
}

/* =============================================
   FORM ELEMENTS RESET
   ============================================= */
button,
input,
select,
textarea {
    font-family: inherit;
    font-size: 100%;
    line-height: 1.15;
    margin: 0;
}

button,
input {
    overflow: visible;
}

button,
select {
    text-transform: none;
}

button,
[type="button"],
[type="reset"],
[type="submit"] {
    -webkit-appearance: button;
    cursor: pointer;
}

button::-moz-focus-inner,
[type="button"]::-moz-focus-inner,
[type="reset"]::-moz-focus-inner,
[type="submit"]::-moz-focus-inner {
    border-style: none;
    padding: 0;
}

button:-moz-focusring,
[type="button"]:-moz-focusring,
[type="reset"]:-moz-focusring,
[type="submit"]:-moz-focusring {
    outline: 0.0625rem dotted ButtonText;
}

input[type="search"] {
    -webkit-appearance: textfield;
    outline-offset: -0.125rem;
}

input[type="search"]::-webkit-search-decoration {
    -webkit-appearance: none;
}

/* =============================================
   REMOVE DEFAULT FOCUS OUTLINE
   ============================================= */
/* Custom focus styles should be added in component CSS */
:focus {
    outline: none;
}

:focus-visible {
    outline: 0.125rem solid var(--brand-blue, #0072C6);
    outline-offset: 0.125rem;
}

/* =============================================
   LINK RESET
   ============================================= */
a {
    background-color: transparent;
    text-decoration: none;
}

a:active,
a:hover {
    outline: 0;
}

/* =============================================
   IMAGE & MEDIA RESET
   ============================================= */
img {
    border-style: none;
    max-width: 100%;
    height: auto;
    display: block;
}

svg {
    overflow: hidden;
    vertical-align: middle;
}

/* =============================================
   TABLE RESET
   ============================================= */
table {
    border-collapse: collapse;
    border-spacing: 0;
}

/* =============================================
   ACCESSIBILITY UTILITIES
   ============================================= */
.sr-only {
    position: absolute;
    width: 0.0625rem;
    height: 0.0625rem;
    padding: 0;
    margin: -0.0625rem;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border-width: 0;
}

.sr-only-focusable:active,
.sr-only-focusable:focus {
    position: static;
    width: auto;
    height: auto;
    overflow: visible;
    clip: auto;
    white-space: normal;
}

/* =============================================
   UTILITY CLASSES
   ============================================= */
.no-scroll {
    overflow: hidden;
}

.hidden {
    display: none !important;
}

.invisible {
    visibility: hidden;
}

/* =============================================
   PRINT OPTIMIZATION
   ============================================= */
@media print {

    *,
    *::before,
    *::after {
        background: transparent !important;
        color: #000 !important;
        box-shadow: none !important;
        text-shadow: none !important;
    }

    a,
    a:visited {
        text-decoration: underline;
    }

    a[href]::after {
        content: " (" attr(href) ")";
    }

    img {
        page-break-inside: avoid;
    }

    p,
    h2,
    h3 {
        orphans: 3;
        widows: 3;
    }

    h2,
    h3 {
        page-break-after: avoid;
    }
}

/* ===== css/base/typography.css ===== */
/* Developer Handoff:
   File: css/base/typography.css
   Role: design-system-foundation
   Runtime: served-to-browser
   Maintainer Notes: Keep selectors aligned with markup and avoid redefining global tokens outside base/variables.css.
*/
/* =============================================
   TYPOGRAPHY
   ============================================= */
body {
    font-family: 'Sora', sans-serif;
}

/* Section Titles */
.section-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 1rem;
}

/* Section Descriptions */
.section-desc {
    max-width: 70rem;
    font-size: 1.5rem;
    font-weight: 400;
    color: var(--text-body);
    line-height: 1.3;
    margin: 0 auto;
}

/* Hero Typography */
.hero-title {
    max-width: 56.25rem;
    margin: 2.5rem auto 1.5rem;
    color: #FFFFFF;
    font-size: 3.5rem;
    font-weight: 700;
    line-height: 1.3;
}

.hero-subtitle {
    max-width: 50rem;
    margin: 0 auto 2.5rem;
    color: #FFFFFF;
    font-size: 1.5rem;
    line-height: 1.3;
}

/* Feature Typography */
.feature-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--text-dark);
    line-height: 1.3;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.feature-text {
    font-size: 1rem;
    color: var(--text-body);
    line-height: 1.4;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

/* Color Modifiers */
.text-brand-blue {
    color: var(--brand-blue) !important;
}


/* =============================================
   RESPONSIVE TYPOGRAPHY
   ============================================= */

/* Large Desktop (87.5rem and below) */
@media (max-width: 87.5rem) {
    .hero-title {
        font-size: 2.5rem;
        line-height: 3.25rem;
    }

    .hero-subtitle {
        font-size: 1.125rem;
        line-height: 1.4625rem;
    }
}

/* Tablet (62rem and below) */
@media (max-width: 62rem) {
    .hero-title {
        font-size: 2.5rem;
        line-height: 3.25rem;
        margin: 2.5rem 0 1.5rem;
    }

    .hero-subtitle {
        font-size: 1.125rem;
        line-height: 1.4625rem;
        margin: 0 0 2.5rem;
    }

    .section-title {
        font-size: 2.5rem;
        line-height: 3.25rem;
    }

    .section-desc {
        font-size: 1.5rem;
        line-height: 1.95rem;
    }
}

/* Mobile (48rem and below) */
@media (max-width: 48rem) {
    .hero-title {
        font-size: 2.5rem;
        line-height: 3.25rem;
        margin: 2.5rem 0 1.5rem;
    }

    .hero-subtitle {
        font-size: 1.125rem;
        line-height: 1.4625rem;
        color: white;
        margin: 0 0 1.5rem;
    }

    .section-title {
        font-size: 2rem;
        line-height: 2.6rem;
    }

    .section-desc {
        font-size: 1.125rem;
        line-height: 1.4625rem;
    }
}

/* Small Mobile (30rem and below) */
@media (max-width: 30rem) {
    .hero-title {
        font-size: 2.5rem;
        line-height: 3.25rem;
    }

    .hero-subtitle {
        font-size: 1.125rem;
        line-height: 1.4625rem;
    }

    .section-title {
        font-size: 2rem;
        line-height: 2.6rem;
    }

    .section-desc {
        font-size: 1.125rem;
        line-height: 1.4625rem;
    }

    .feature-title {
        font-size: 1.5rem;
        line-height: 1.95rem;
    }

    .feature-text {
        font-size: 1rem;
        line-height: 1.3rem;
    }
}

/* ===== css/components/buttons.css ===== */
/* Developer Handoff:
   File: css/components/buttons.css
   Role: ui-component-styles
   Runtime: served-to-browser
   Maintainer Notes: Keep selectors aligned with markup and avoid redefining global tokens outside base/variables.css.
*/
/* =============================================
   BUTTONS
   ============================================= */

/* Login Button */
.login-btn {
    width: 7.5rem;
    height: 3rem;
    background: #FEFEFE;
    border-radius: 0.5rem;
    color: #333333;
    font-size: 0.875rem;
    font-family: 'Sora', sans-serif;
    font-weight: 600;
    line-height: 1.1375rem;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    transition: var(--transition);
    box-shadow: 0 0.25rem 0.125rem rgba(188, 188, 188, 0);
    padding: 0.5rem 1rem;
    border: none;
}

/* Login Button - Default State (Blue Header) */
.navbar-custom:not(.scrolled) .login-btn {
    background: #FEFEFE;
    color: #333333;
    box-shadow: 0 0.25rem 0.125rem rgba(188, 188, 188, 0);
}

/* Login Button - Scrolled State (White Header) */
.navbar-custom.scrolled .login-btn {
    background: var(--brand-blue);
    color: #FFFFFF;
    border: none;
}

/* Login Button Hover */
.login-btn:hover {
    opacity: 0.9;
}

/* Hero Buttons */
.btn-trial {
    width: 12.5rem;
    height: 3.5rem;
    background: #FFFFFF;
    color: #333;
    border-radius: 0.5rem;
    font-weight: 600;
    font-size: 1.125rem;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    box-shadow: 0 0.25rem 0.125rem rgba(188, 188, 188, 0.1);
    transition: var(--transition);
}

.btn-trial:hover {
    transform: translateY(-0.125rem);
    box-shadow: 0 0.375rem 0.5rem rgba(188, 188, 188, 0.15);
}

.btn-demo {
    width: 12.5rem;
    height: 3.5rem;
    background: transparent;
    color: #FFFFFF;
    border: 0.0625rem solid #DDDCDB;
    border-radius: 0.5rem;
    font-weight: 600;
    font-size: 1.125rem;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    gap: 0.75rem;
    transition: var(--transition);
}

.btn-demo:hover {
    background: rgba(255, 255, 255, 0.1);
}

/* Explore Button */
.btn-explore {
    height: 3rem;
    background: #FEFEFE;
    border: 0.0625rem solid #DDDCDB;
    border-radius: 0.5rem;
    color: var(--text-body);
    font-size: 0.875rem;
    font-weight: 600;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    text-decoration: none;
    transition: var(--transition);
}

.btn-explore:hover {
    background: var(--brand-blue);
    color: white;
    border-color: var(--brand-blue);
}

/* Go to Features Button */
.btn-go-features {
    width: 12.5rem;
    height: 3.5rem;
    background: #FFFFFF;
    color: var(--text-dark);
    border: 0.0625rem solid #DDDCDB;
    border-radius: 0.5rem;
    font-weight: 600;
    font-size: 1.125rem;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    transition: var(--transition);
    margin-top: 3rem;
}

.btn-go-features:hover {
    background: #f8f8f8;
    border-color: var(--brand-blue);
}

/* Drawer Buttons */
.btn-drawer-accent {
    height: 3rem;
    background: var(--brand-blue);
    color: white;
    font-weight: 600;
    text-decoration: none;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 0.5rem;
    transition: var(--transition);
}

.btn-drawer-accent:hover {
    background: #005a9e;
}

/* Hero Button Group */
.hero-btn-group {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    margin-bottom: 0;
}

/* =============================================
   BUTTON RESPONSIVE STYLES
   ============================================= */

/* Tablet (62rem and below) */
@media (max-width: 62rem) {
    /* Hide play icon on mobile */
    .btn-demo svg {
        display: none;
    }
}

/* Mobile (48rem and below) */
@media (max-width: 48rem) {
    /* Keep buttons side-by-side on mobile */
    .hero-btn-group {
        flex-direction: row;
        gap: 1.5rem;
        align-items: stretch;
        width: 100%;
        margin-bottom: 0;
    }

    .btn-trial,
    .btn-demo {
        flex: 1 1 0;
        width: auto;
        min-width: 0;
        font-size: 1rem;
        padding: 1rem;
    }

    /* Hide play icon on mobile */
    .btn-demo svg {
        display: none;
    }

    .btn-go-features {
        width: 100%;
        max-width: 100%;
    }
}

/* Small Mobile (30rem and below) */
@media (max-width: 30rem) {
    /* Keep buttons side-by-side even on smallest screens */
    .hero-btn-group {
        gap: 1.5rem;
    }

    .btn-trial,
    .btn-demo {
        flex: 1 1 0;
        font-size: 1rem;
    }

    /* Ensure play icon stays hidden */
    .btn-demo svg {
        display: none;
    }
}

/* ===== css/components/navigation.css ===== */
/* Developer Handoff:
   File: css/components/navigation.css
   Role: ui-component-styles
   Runtime: served-to-browser
   Maintainer Notes: Keep selectors aligned with markup and avoid redefining global tokens outside base/variables.css.
*/
/* =============================================
MAIN WEBSITE NAVIGATION
============================================= */
/* Main Navigation Container */
.navbar-custom {
    height: var(--nav-height);
    background: var(--brand-blue);
    padding: 0.5rem var(--desktop-padding);
    display: flex;
    align-items: center;
    justify-content: space-between;
    position: fixed;
    inset: 0;
    z-index: 1100;
    transition: var(--transition);
}

/* Scrolled State - White Background */
.navbar-custom.scrolled {
    background: #FFFFFF;
    height: var(--nav-height);
    box-shadow: 0 0.25rem 1.25rem rgba(0, 0, 0, 0.05);
}

/* Navigation Left Section (Logo + Links) */
.nav-left-group {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

/* Logo Container */
.logo-container {
    position: relative;
    height: 3.75rem;
    width: 15.0625rem;
    display: flex;
    align-items: center;
}

/* Logo SVG Base Styles */
.logo-svg {
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    transition: opacity var(--transition);
}

/* Dual Logo System (White/Black) */
.logo-black {
    opacity: 0;
}

.logo-white {
    color: #FFFFFF !important;
    opacity: 1;
}

/* Logo Switch on Scroll */
.navbar-custom.scrolled .logo-black {
    opacity: 1;
}

.navbar-custom.scrolled .logo-white {
    opacity: 0;
}

/* Navigation Links Group */
.links-group {
    display: flex;
    gap: 0.75rem;
    align-items: center;
}

/* Navigation Link Items */
.nav-custom-link {
    padding: 0.5rem 1rem;
    color: var(--brand-light-blue);
    font-size: 0.875rem;
    font-weight: 600;
    text-decoration: none;
    border-radius: 0.5rem;
    transition: var(--transition);
}

/* Link States - Scrolled */
.navbar-custom.scrolled .nav-custom-link {
    color: var(--text-dark);
}

.navbar-custom.scrolled .nav-custom-link:hover {
    background: var(--brand-bg-light);
    color: var(--brand-blue);
}

/* Mobile Menu Toggle */
.mobile-toggle {
    background: none;
    border: none;
    padding: 0.5rem;
    cursor: pointer;
}

.mobile-toggle svg path {
    stroke: #FFFFFF;
    transition: var(--transition);
}

.navbar-custom.scrolled .mobile-toggle svg path {
    stroke: #333333;
}

/* =============================================
AUTH PAGES NAVIGATION (Login & Signup)
============================================= */
.login-page .top-navbar,
.signup-page .top-navbar {
    height: 5rem;
    background: var(--bg-white);
    border-bottom: 0.0625rem solid var(--border-light);
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 1.5rem;
    position: sticky;
    top: 0;
    z-index: 1000;
}

.login-page .nav-section,
.signup-page .nav-section {
    display: flex;
    align-items: center;
    min-width: 12.1875rem;
}

.login-page .nav-section.center,
.signup-page .nav-section.center {
    flex: 0 0 auto;
    justify-content: center;
}

.login-page .nav-section.right,
.signup-page .nav-section.right {
    justify-content: flex-end;
}

/* Back Link */
.login-page .back-link,
.signup-page .back-link {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1rem;
    color: var(--text-dark);
    text-decoration: none;
    font-size: 0.75rem;
    font-weight: 600;
    line-height: 1;
    border-radius: 0.5rem;
    transition: var(--transition);
}

.login-page .back-link:hover,
.signup-page .back-link:hover {
    background: var(--border-light);
    color: var(--brand-blue);
}

/* Back Icon */
.login-page .back-icon,
.signup-page .back-icon {
    width: 1rem;
    height: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-dark);
    transition: color 0.3s ease;
}

.login-page .back-link:hover .back-icon,
.signup-page .back-link:hover .back-icon {
    color: var(--brand-blue);
}

.login-page .back-link-text,
.signup-page .back-link-text {
    transition: opacity 0.2s ease;
}

/* Logo Container - Auth Pages */
.login-page .logo-container,
.signup-page .logo-container {
    display: flex;
    align-items: center;
}

.login-page .logo-container .logo-svg,
.signup-page .logo-container .logo-svg {
    height: 3rem;
    width: auto;
    display: block;
    position: static;
    /* Override main navigation.css absolute positioning */
    transform: none;
    /* Reset the translateY transform */
}

/* =============================================
SIGNUP-SPECIFIC NAVIGATION ELEMENTS
============================================= */
/* Account Section (Signup only) */
.signup-page .account-section {
    display: flex;
    align-items: center;
    gap: 0.25rem;
    font-size: 0.75rem;
    white-space: nowrap;
}

.signup-page .account-section span {
    color: var(--text-dark);
    font-weight: 400;
}

.signup-page .login-link {
    padding: 0.25rem 0.5rem;
    color: var(--brand-blue);
    text-decoration: none;
    font-weight: 600;
    border-radius: 0.5rem;
    transition: var(--transition);
}

.signup-page .login-link:hover {
    background: var(--brand-bg-light);
}

/* Mobile Login Content (Signup only) */
.signup-page .mobile-login-content {
    display: none;
    text-align: center;
    margin-top: 0.5rem;
}

.signup-page .mobile-login-content .account-section {
    display: flex;
    justify-content: center;
    font-size: 0.875rem;
}

.signup-page .mobile-login-content .login-link {
    font-size: 0.875rem;
    padding: 0.25rem 0.75rem;
}

/* =============================================
MOBILE MENU (Drawer)
============================================= */
.mobile-menu-overlay {
    position: fixed;
    inset: 0;
    background: linear-gradient(0deg, rgba(19, 19, 19, 0.64) 0%, rgba(19, 19, 19, 0.64) 100%);
    -webkit-backdrop-filter: blur(0.5rem);
    backdrop-filter: blur(0.5rem);
    z-index: 2000;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.mobile-menu-overlay.active {
    opacity: 1;
    visibility: visible;
}

.mobile-drawer {
    position: absolute;
    top: 0;
    left: -22.5rem;
    width: 17.6875rem;
    height: 100%;
    background: #F9F9F9;
    -webkit-backdrop-filter: blur(1.25rem);
    backdrop-filter: blur(1.25rem);
    display: flex;
    flex-direction: column;
    transition: left 0.3s ease;
}

.mobile-menu-overlay.active .mobile-drawer {
    left: 0;
}

/* Drawer Sections */
.drawer-header {
    height: 4.5rem;
    padding: 0 1rem;
    display: flex;
    align-items: center;
}

.close-drawer {
    width: 3rem;
    height: 3rem;
    background: none;
    border: none;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 0.5rem;
    cursor: pointer;
}

.drawer-body {
    flex: 1;
    padding: 1rem;
    display: flex;
    flex-direction: column;
}

.drawer-nav {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.drawer-link {
    padding: 0.875rem 1rem;
    color: var(--text-muted);
    font-size: 1rem;
    text-decoration: none;
    border-radius: 0.5rem;
    transition: var(--transition);
}

.drawer-link:hover {
    background: rgba(0, 114, 198, 0.1);
    color: var(--brand-blue);
}

.drawer-footer {
    margin-top: auto;
    padding-bottom: 1.5rem;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

/* =============================================
RESPONSIVE DESIGN
============================================= */
/* Large Desktop (87.5rem and below) */
@media (max-width: 87.5rem) {
    .navbar-custom {
        padding: 0.5rem 3.75rem;
    }
}

/* Desktop (75rem and below) */
@media (max-width: 75rem) {
    .navbar-custom {
        padding: 0.5rem 2.5rem;
    }
}

/* Tablet (62rem and below) */
@media (max-width: 62rem) {
    .navbar-custom {
        padding: 0.5rem 1.5rem;
        height: var(--nav-height-mobile);
    }

    .navbar-custom.scrolled {
        height: var(--nav-height-mobile);
    }

    .logo-container {
        height: 2.25rem;
        width: auto;
    }

    .logo-svg {
        height: 2.25rem;
        width: auto;
    }

    /* Hide desktop navigation elements */
    .links-group,
    .navbar-custom .login-btn {
        display: none !important;
    }

    .mobile-toggle {
        display: block;
    }
}

/* =============================================
AUTH PAGES RESPONSIVE DESIGN
============================================= */
/* Tablet (62rem and below) */
@media (max-width: 62rem) {

    .login-page .top-navbar,
    .signup-page .top-navbar {
        height: 4.5rem;
        padding: 0 1rem;
    }

    .login-page .nav-section,
    .signup-page .nav-section {
        min-width: auto;
    }

    /* Keep account section visible at this breakpoint */
    .signup-page .account-section {
        display: flex;
    }

    .login-page .logo-container .logo-svg,
    .signup-page .logo-container .logo-svg {
        height: 2.25rem;
        position: static;
        transform: none;
    }
}

/* Mobile (48rem and below) */
@media (max-width: 48rem) {

    .login-page .top-navbar,
    .signup-page .top-navbar {
        height: 3.5rem;
        padding: 0 1rem;
    }

    .login-page .nav-section,
    .signup-page .nav-section {
        width: 2.25rem;
        min-width: 2.25rem;
        display: flex;
        align-items: center;
        justify-content: center;
    }

    .login-page .nav-section.center,
    .signup-page .nav-section.center {
        flex: 1;
        justify-content: center;
        min-width: auto;
        width: auto;
    }

    /* Icon-only back link on mobile */
    .login-page .back-link,
    .signup-page .back-link {
        width: 2.25rem;
        height: 2.25rem;
        padding: 0.5rem;
        justify-content: center;
        margin: 0;
    }

    .login-page .back-link-text,
    .signup-page .back-link-text {
        display: none;
    }

    .login-page .back-link i,
    .login-page .back-icon,
    .signup-page .back-link i,
    .signup-page .back-icon {
        margin: 0;
        font-size: 1rem;
        width: 1rem;
        height: 1rem;
    }

    .login-page .logo-container,
    .signup-page .logo-container {
        gap: 0.6875rem;
    }

    .login-page .logo-container .logo-svg,
    .signup-page .logo-container .logo-svg {
        height: 2rem;
        position: static;
        transform: none;
    }

    .login-page .nav-section.right,
    .signup-page .nav-section.right {
        width: 2.25rem;
        min-width: 2.25rem;
        visibility: hidden;
    }

    /* Hide account section on mobile (signup only) */
    .signup-page .account-section {
        display: none;
    }

    /* Show mobile login content - CENTERED (signup only) */
    .signup-page .mobile-login-content {
        display: block;
        text-align: center;
        margin-top: 0.5rem;
    }

    .signup-page .mobile-login-content .account-section {
        display: flex;
        justify-content: center;
        align-items: center;
    }
}

/* ===== css/components/footer.css ===== */
/* Developer Handoff:
   File: css/components/footer.css
   Role: ui-component-styles
   Runtime: served-to-browser
   Maintainer Notes: Keep selectors aligned with markup and avoid redefining global tokens outside base/variables.css.
*/
/* =============================================
   FOOTER â€“ Figma-accurate (lovable reference)
   ============================================= */

.footer-section {
  background: var(--brand-blue, #0072C6);
  color: #fff;
  width: 100%;
}

.footer-content {
  display: inline-flex;
  align-self: stretch;
  width: 100%;
  padding: 4rem 10rem;
  justify-content: center;
  align-items: flex-start;
  gap: 2rem;
}

.footer-brand {
  flex: 1 1 0;
  display: inline-flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 1rem;
}

.logo-footer {
  width: 14.4375rem;
  height: 3.125rem;
  display: block;
}

.footer-col {
  width: 11.9375rem;
  flex: 0 0 11.9375rem;
  display: inline-flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 1rem;
}

.footer-title {
  font-size: 1.125rem;
  font-weight: 600;
  line-height: 130%;
  margin: 0;
}

.footer-nav {
  display: flex;
  flex-direction: column;
  gap: 0.875rem;
  align-self: stretch;
}

.footer-link {
  font-size: 0.6875rem;
  font-weight: 400;
  line-height: 130%;
  color: #fff;
  opacity: 0.9;
  transition: opacity 0.2s;
  text-decoration: none;
  word-break: break-word;
}

.footer-link:hover {
  opacity: 1;
  text-decoration: underline;
}

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1.5rem 10rem;
}

.footer-copyright {
  font-size: 0.75rem;
  font-weight: 400;
  line-height: 130%;
  color: #fff;
  text-align: center;
  margin: 0;
}

/* =============================================
   RESPONSIVE
   ============================================= */

/* 1200-87.4375rem */
@media (max-width: 87.4375rem) {
  .footer-content {
    padding: 3rem 4rem;
    gap: 1.5rem;
    justify-content: flex-start;
  }

  .footer-bottom {
    padding: 1.5rem 4rem;
  }
}

/* 992-74.9375rem */
@media (max-width: 74.9375rem) {
  .footer-content {
    padding: 3rem 4rem;
    gap: 1.5rem;
    justify-content: flex-start;
  }

  .footer-bottom {
    padding: 1.5rem 4rem;
  }
}

/* 768-61.9375rem */
@media (max-width: 61.9375rem) {
  .footer-content {
    padding: 3rem 2rem;
    gap: 1rem;
    justify-content: flex-start;
  }

  .footer-col {
    width: 11.25rem;
    flex: 0 0 11.25rem;
  }

  .logo-footer {
    width: 13.875rem;
    height: 3rem;
  }
}

/* 280-47.9375rem */
@media (max-width: 47.9375rem) {
  .footer-content {
    display: flex;
    flex-direction: column;
    padding: 2rem 1.5rem;
    gap: 2rem;
    align-items: center;
  }

  .footer-brand {
    align-self: stretch;
  }

  .footer-col {
    width: auto;
    flex: none;
    align-self: stretch;
    display: flex;
  }

  .logo-footer {
    width: 14.4375rem;
    height: 3.125rem;
  }
}

/* ===== css/components/cards.css ===== */
/* Developer Handoff:
   File: css/components/cards.css
   Role: ui-component-styles
   Runtime: served-to-browser
   Maintainer Notes: Keep selectors aligned with markup and avoid redefining global tokens outside base/variables.css.
*/
/* =============================================
   CARDS
   ============================================= */

/* Feature Cards */
.feature-card {
    padding: 1.5rem;
    border-radius: 1rem;
    border: 0.0625rem solid #F3F2F1;
    display: flex;
    flex-direction: column;
    gap: 1rem;
    text-align: left;
    background: white;
    transition: var(--transition);
}

.feature-card:hover {
    box-shadow: 0 0.5rem 1.5rem rgba(0, 0, 0, 0.08);
    transform: translateY(-0.25rem);
}

/* Feature Icon Box */
.feature-icon-box {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    width: 4rem;
    height: 4rem;
    background: radial-gradient(ellipse 139.84% 223.39% at 50% 100%, #EAF1F6 0%, #F9F9F9 100%);
    overflow: hidden;
    border-radius: 2rem;
    outline: 0.0625rem #B0D3ED solid;
    outline-offset: -0.0625rem;
}

/* Feature Card Text */
.feature-text {
    flex-grow: 0;
}

.feature-card .btn-explore {
    margin-top: auto;
}

/* ===== css/components/icons.css ===== */
/* Developer Handoff:
   File: css/components/icons.css
   Role: ui-component-styles
   Runtime: served-to-browser
   Maintainer Notes: Keep selectors aligned with markup and avoid redefining global tokens outside base/variables.css.
*/
/* =============================================
   ICON COLORS
   ============================================= */

/* Default icon color */
svg {
    fill: currentColor;
}

/* Play Icon (white for demo button) */
.btn-demo svg {
    color: white;
    width: 1rem;
    height: 1rem;
}

/* Arrow Right Icon (dark for explore buttons) */
.btn-explore svg {
    color: var(--text-body);
    width: 1rem;
    height: 1rem;
    transition: color 0.3s ease;
}

/* Arrow color changes when button is hovered */
.btn-explore:hover svg {
    color: white;
}

/* ===== css/components/forms.css ===== */
/* Developer Handoff:
   File: css/components/forms.css
   Role: ui-component-styles
   Runtime: served-to-browser
   Maintainer Notes: Keep selectors aligned with markup and avoid redefining global tokens outside base/variables.css.
*/
/* =============================================
   FORMS
   ============================================= */

/* Add form-specific styles here when forms are implemented */

/* Placeholder for future form styles:
   - Input fields
   - Textareas
   - Select dropdowns
   - Checkboxes
   - Radio buttons
   - Form validation states
   - Form layouts
*/

/* ===== css/layouts/grid.css ===== */
/* Developer Handoff:
   File: css/layouts/grid.css
   Role: layout-styles
   Runtime: served-to-browser
   Maintainer Notes: Keep selectors aligned with markup and avoid redefining global tokens outside base/variables.css.
*/
/* =============================================
   GRID LAYOUTS
   ============================================= */

/* Features Grid - 4 columns default (desktop) */
.features-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    align-items: stretch;
    margin-top: 2.5rem;
}

/* =============================================
   GRID RESPONSIVE STYLES
   ============================================= */

/* Large Desktop (87.5rem and below) - 3 columns */
@media (max-width: 87.5rem) {
    .features-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

/* Desktop (75rem and below) - 2 columns */
@media (max-width: 75rem) {
    .features-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* Tablet (61.9375rem and below) - 2 columns, dynamic rows */
@media (max-width: 61.9375rem) {
    .features-grid {
        grid-template-columns: repeat(2, 1fr);
        grid-auto-rows: 1fr;
    }
}

/* Mobile (47.9375rem and below) - single column */
@media (max-width: 47.9375rem) {
    .features-grid {
        grid-template-columns: 1fr;
        grid-template-rows: auto;
    }
}

/* ===== css/layouts/sections.css ===== */
/* Developer Handoff:
   File: css/layouts/sections.css
   Role: layout-styles
   Runtime: served-to-browser
   Maintainer Notes: Keep selectors aligned with markup and avoid redefining global tokens outside base/variables.css.
*/
/* =============================================
   SECTION SPACING STANDARDIZATION
   ============================================= */

/* All major sections - 5rem vertical spacing */
section:not(.hero-section):not(.featured-image-section) {
  padding: var(--section-gap) var(--desktop-padding);
}

/* Integrations section */
#integrations {
  padding-top: var(--section-gap);
  padding-bottom: var(--section-gap);
}

/* Features section */
.features-section {
  padding: var(--section-gap) var(--desktop-padding);
}

#features {
  padding-bottom: var(--section-gap);
}

/* Badge/Tag Container */
.section-badge {
  height: 2.5rem !important;
  width: fit-content !important;
  padding: 0.5rem 1.25rem 0.5rem 1rem !important;
  margin-bottom: 2rem !important;
  background: radial-gradient(ellipse 88.94% 47.70% at 0% 100%, #D4E8F5 0%, #D5E7F5 49%, #E6F1F9 100%);
  overflow: hidden;
  border-radius: 1.25rem;
  outline: 0.0625rem #B0D3ED solid;
  outline-offset: -0.0625rem;
  display: inline-flex !important;
  justify-content: center;
  align-items: center;
  gap: 0.625rem;
}

.section-badge-text {
  display: flex;
  flex-direction: column;
  justify-content: center;
  color: #0072C6;
  font-size: 1.125rem;
  font-family: 'Sora', sans-serif;
  font-weight: 600;
  line-height: 1.4625rem;
  word-wrap: break-word;
}

.tag-container {
  position: relative;
  display: inline-block;
  margin-bottom: 2rem;
}


/* Utility Classes */
.img-fluid {
  max-width: 100%;
  height: auto;
}

/* =============================================
   SECTION RESPONSIVE STYLES
   ============================================= */

/* Large Desktop (120rem and above) */
@media (min-width: 120rem) {
  section:not(.hero-section):not(.featured-image-section) {
    padding: var(--section-gap) 15rem;
  }
}

/* Large Desktop (87.5rem and below) */
@media (max-width: 87.5rem) {
  section:not(.hero-section):not(.featured-image-section) {
    padding: var(--section-gap) 5rem;
  }
}

/* Desktop (75rem and below) */
@media (max-width: 75rem) {
  section:not(.hero-section):not(.featured-image-section) {
    padding: var(--section-gap) 5rem;
  }
}

/* Tablet (62rem and below) */
@media (max-width: 62rem) {
  section:not(.hero-section):not(.featured-image-section) {
    padding: 4rem 4rem;
  }
}

/* Mobile (48rem and below) */
@media (max-width: 48rem) {
  section:not(.hero-section):not(.featured-image-section) {
    padding: 2.5rem 1.5rem;
  }
}

/* ===== css/layouts/header.css ===== */
/* Developer Handoff:
   File: css/layouts/header.css
   Role: layout-styles
   Runtime: served-to-browser
   Maintainer Notes: Keep selectors aligned with markup and avoid redefining global tokens outside base/variables.css.
*/
/* =============================================
   HEADER LAYOUT â€” Active Link Styles
   =============================================
   Dynamic active-link highlighting for nav links.
   JS adds .active class based on current URL path.

   Highlighted paths: /contact/, /features/,
                      /integrations/, /pricing/
   Standard (no highlight): /, /about/, /legal/, /sitemap/
   ============================================= */

/* -----------------------------------------
   DESKTOP NAV â€” Active Link (Pre-Scroll)
   Default state: white highlight on blue navbar
   ----------------------------------------- */
.nav-custom-link.active {
   color: #FFFFFF;
}

/* -----------------------------------------
   DESKTOP NAV â€” Active Link (Post-Scroll)
   Scrolled state: brand-blue on white navbar
   ----------------------------------------- */
.navbar-custom.scrolled .nav-custom-link.active {
   color: var(--brand-blue);
}

.navbar-custom.scrolled .nav-custom-link.active:hover {
   background: var(--brand-bg-light);
   color: var(--brand-blue);
}

/* -----------------------------------------
   MOBILE DRAWER â€” Active Link
   ----------------------------------------- */
.drawer-link.active {
   color: var(--brand-blue);
   background: rgba(0, 114, 198, 0.1);
}

/* ===== inline-amazon ===== */
/* ============================================
           AMAZON POLICY CSS VARIABLES
           ============================================ */
    .amazon-hero,
    .amazon-content {
      --desktop-padding: 10rem;
    }

    /* Hero Section with Cross-Browser Gradient */
    .amazon-hero {
      padding-top: calc(5.5rem + 2.5rem);
      /* var(--nav-height) */
      padding-bottom: 7.5rem;
      background: var(--brand-blue);
      /* Fallback for browsers that don't support gradients */
      background: -webkit-linear-gradient(top, var(--brand-blue) 51%, var(--bg-white) 100%);
      /* Safari 5.1-6.0 */
      background: -o-linear-gradient(bottom, var(--brand-blue) 51%, var(--bg-white) 100%);
      /* Opera 11.1-12.0 */
      background: -moz-linear-gradient(bottom, var(--brand-blue) 51%, var(--bg-white) 100%);
      /* Firefox 3.6-15 */
      background: linear-gradient(180deg, var(--brand-blue) 51%, var(--bg-white) 100%);
      /* Standard syntax */
      text-align: center;
      position: relative;
      overflow: visible;
      z-index: 1;
    }

    .amazon-hero .container {
      max-width: 70rem;
      margin: 0 auto;
      padding: 2.5rem var(--desktop-padding) 7.5rem;
      display: -webkit-box;
      display: -webkit-flex;
      display: -ms-flexbox;
      display: flex;
      -webkit-box-orient: vertical;
      -webkit-box-direction: normal;
      -webkit-flex-direction: column;
      -ms-flex-direction: column;
      flex-direction: column;
      -webkit-box-align: center;
      -webkit-align-items: center;
      -ms-flex-align: center;
      align-items: center;
      gap: 1.5rem;
    }

    .amazon-title {
      font-size: 3.5rem;
      font-weight: 700;
      line-height: 4.55rem;
      color: var(--cs-white);
      margin: 0;
    }

    .amazon-subtitle {
      font-size: 1.5rem;
      font-weight: 400;
      line-height: 1.95rem;
      color: var(--bg-white);
      max-width: 56.25rem;
      margin: 0;
    }

    /* Content Section with Overlap */
    .amazon-content {
      padding: 2.5rem var(--desktop-padding);
      margin-top: -10rem;
      position: relative;
      z-index: 20;
      max-width: 90rem;
      margin-left: auto;
      margin-right: auto;
      -webkit-transition: -webkit-transform 0.24s ease;
      transition: -webkit-transform 0.24s ease;
      -o-transition: transform 0.24s ease;
      transition: transform 0.24s ease;
      transition: transform 0.24s ease, -webkit-transform 0.24s ease;
      will-change: transform;
    }

    /* Main Layout with TOC */
    .amazon-layout {
      display: flex;
      gap: 1.5rem;
      align-items: flex-start;
      max-width: 70rem;
      margin: 0 auto;
    }

    /* Table of Contents Sidebar */
    .toc-sidebar {
      width: 21.375rem;
      flex-shrink: 0;
      position: sticky;
      top: calc(5.5rem + 1.5rem);
      display: none;
      max-height: calc(100vh - 5.5rem - 3rem);
      overflow-y: auto;
    }

    .toc-title {
      font-size: 1.5rem;
      font-weight: 700;
      color: var(--cs-blue-dark);
      margin-bottom: 1rem;
      line-height: 1.3;
    }

    .toc-divider {
      height: 0.0625rem;
      background-color: var(--border-color);
      border-radius: 0.0625rem;
      margin: 1rem 0;
    }

    .toc-link {
      display: block;
      padding: 0.5rem 0;
      font-size: 1.125rem;
      font-weight: 600;
      color: var(--text-dark);
      text-decoration: none;
      line-height: 1.3;
      transition: var(--transition);
    }

    .toc-link:hover {
      color: var(--brand-blue);
    }

    .toc-link.active {
      color: var(--brand-blue);
    }

    /* Amazon Content Area (no card) */
    .amazon-main {
      flex: 1;
    }

    /* Read Time Tag */
    .read-time-tag {
      display: inline-block;
      margin-bottom: 2rem;
    }

    /* Policy Sections */
    .policy-section {
      margin-bottom: 3rem;
    }

    .policy-intro {
      font-size: 1.5rem;
      color: var(--text-body);
      line-height: 1.3;
      margin-bottom: 2rem;
      white-space: pre-wrap;
    }

    .policy-section-title {
      font-size: 1.5rem;
      font-weight: 700;
      color: var(--text-dark);
      margin-bottom: 1.5rem;
      line-height: 1.3;
      text-decoration: underline;
    }

    .policy-section-title-large {
      font-size: 2.5rem;
      font-weight: 700;
      color: var(--text-dark);
      margin-bottom: 1.5rem;
      line-height: 1.3;
    }

    .policy-subsection-title {
      font-size: 1.25rem;
      font-weight: 600;
      color: var(--text-dark);
      margin: 2rem 0 1rem;
      line-height: 1.3;
    }

    .policy-text {
      font-size: 1.5rem;
      color: var(--text-body);
      line-height: 1.3;
      margin-bottom: 1.5rem;
    }

    .policy-text-bold {
      font-size: 1.5rem;
      color: var(--text-body);
      line-height: 1.3;
      margin-bottom: 1.5rem;
      font-weight: 400;
    }

    .policy-list {
      font-size: 1.5rem;
      color: var(--text-body);
      line-height: 1.3;
      padding-left: 2rem;
      margin-bottom: 1.5rem;
    }

    .policy-list li {
      margin-bottom: 0.75rem;
    }

    .policy-sublist {
      list-style-type: lower-alpha;
      padding-left: 1.5rem;
      margin-top: 0.75rem;
    }

    .underline-link {
      color: var(--brand-blue);
      text-decoration: underline;
    }

    /* Contact Section (from amazon-policy.html) */
    .contact-section {
      background: var(--brand-blue);
      border-radius: 1.5rem;
      padding: 4.5rem 5rem 3rem;
      width: calc(100% - 2 * var(--desktop-padding));
      max-width: 70rem;
      margin: 5rem auto var(--section-gap);
      display: flex;
      gap: 2.5rem;
    }

    .contact-info {
      flex: 1;
    }

    .contact-title {
      font-size: 2.5rem;
      font-weight: 700;
      color: var(--bg-white);
      margin-bottom: 1.5rem;
      line-height: 1.3;
    }

    .contact-section .contact-text {
      font-size: 1.125rem;
      color: var(--cs-white);
      line-height: 1.3;
    }

    .contact-form {
      flex: 1;
      display: flex;
      flex-direction: column;
      gap: 1.25rem;
    }

    .form-field {
      display: flex;
      flex-direction: column;
    }

    .form-input,
    .form-select,
    .form-textarea {
      height: 4rem;
      background: var(--bg-form);
      border: none;
      border-radius: 0.375rem;
      padding: 0.75rem 1rem;
      font-family: 'Sora', sans-serif;
      display: flex;
      flex-direction: column;
      gap: 0.25rem;
    }

    .form-textarea {
      height: 9.5rem;
      resize: none;
    }

    .form-label {
      font-size: 0.6875rem;
      color: var(--text-dark);
      font-weight: 400;
      margin-bottom: 0.25rem;
    }

    .form-label .required {
      color: var(--error-red);
    }

    .form-input input,
    .form-select select,
    .form-textarea textarea {
      border: none;
      background: transparent;
      font-size: 1rem;
      font-family: 'Sora', sans-serif;
      color: var(--text-dark);
      outline: none;
      width: 100%;
    }

    .form-textarea textarea {
      flex: 1;
    }

    .form-input input::placeholder,
    .form-textarea textarea::placeholder {
      color: var(--text-label-small);
    }

    .btn-submit {
      height: 3.5rem;
      background: var(--cs-white);
      border: 0.0625rem solid var(--border-color);
      border-radius: 0.5rem;
      color: var(--text-body);
      font-size: 1.125rem;
      font-weight: 700;
      font-family: 'Karla', sans-serif;
      cursor: pointer;
      transition: var(--transition);
    }

    .btn-submit:hover {
      background: var(--bg-gray-light);
    }

    /* Show TOC on large screens */
    @media (min-width: 75rem) {
      .toc-sidebar {
        display: block;
      }
    }

    /* ============================================
           RESPONSIVE BREAKPOINTS
           ============================================ */

    /* Large Desktop (87.5rem and above) */
    @media (min-width: 87.5625rem) {
      .amazon-hero .container {
        padding: 2.5rem var(--desktop-padding) 7.5rem;
      }

      .amazon-content {
        padding: 2.5rem var(--desktop-padding);
      }

      .contact-section {
        padding: 4.5rem 5rem 3rem;
      }
    }

    /* Medium Desktop (62.0625rem - 87.5rem) */
    @media (max-width: 87.5rem) and (min-width: 62.0625rem) {

      .amazon-hero,
      .amazon-content {
        --desktop-padding: 3.75rem;
      }

      .amazon-hero {
        padding-bottom: 7.5rem;
      }

      .amazon-hero .container {
        padding: 2.5rem var(--desktop-padding) 7.5rem;
      }

      .amazon-content {
        padding: 2.5rem var(--desktop-padding);
        margin-top: -10rem;
      }

      .contact-section {
        padding: 3rem 2.5rem 2rem;
      }
    }

    @media (max-width: 87.5rem) {
      .amazon-hero .container {
        padding-left: var(--desktop-padding);
        padding-right: var(--desktop-padding);
      }

      .amazon-content {
        padding-left: var(--desktop-padding);
        padding-right: var(--desktop-padding);
      }
    }

    /* Tablet & Mobile (62rem and below) */
    @media (max-width: 62rem) {

      .amazon-hero,
      .amazon-content {
        --desktop-padding: 1.5rem;
      }

      .amazon-hero {
        padding-top: calc(4.5rem + 2.5rem);
        padding-bottom: 11.25rem;
      }

      .amazon-hero .container {
        padding: 2.5rem var(--desktop-padding);
        padding-bottom: 10rem;
      }

      .amazon-title {
        font-size: 2.5rem;
        line-height: 3.25rem;
      }

      .amazon-subtitle {
        font-size: 1.125rem;
        line-height: 1.4625rem;
      }

      .amazon-content {
        padding: var(--desktop-padding);
        margin-top: -12.5rem;
        margin-bottom: var(--desktop-padding);
      }

      .amazon-layout {
        flex-direction: column;
      }

      .policy-intro {
        font-size: 1rem;
        line-height: 1.3;
      }

      .policy-section-title {
        font-size: 1.125rem;
      }

      .policy-section-title-large {
        font-size: 1.5rem;
      }

      .policy-text,
      .policy-text-bold,
      .policy-list {
        font-size: 1rem;
        line-height: 1.3;
      }

      .contact-section {
        flex-direction: column;
        padding: 2rem 1rem;
        margin: 2.5rem 1.5rem 4rem;
        border-radius: 0.75rem;
      }

      .contact-title {
        font-size: 2rem;
      }
    }

    /* Small Mobile (48rem and below) */
    @media (max-width: 48rem) {
      .amazon-title {
        font-size: 2.5rem;
        line-height: 3.25rem;
      }

      .amazon-subtitle {
        font-size: 1.125rem;
        line-height: 1.4625rem;
      }

      .amazon-content {
        padding: 1rem;
      }
    }

    /* Extra Small Mobile (30rem and below) */
    @media (max-width: 30rem) {
      .amazon-title {
        font-size: 2rem;
        line-height: 2.6rem;
      }

      .amazon-subtitle {
        font-size: 1rem;
        line-height: 1.3rem;
      }
    }

/* ===== inline-data ===== */
/* ============================================
           DATA POLICY CSS VARIABLES
           ============================================ */
        .data-hero,
        .data-content {
            --desktop-padding: 10rem;
        }

        /* Hero Section with Cross-Browser Gradient */
        .data-hero {
            padding-top: calc(5.5rem + 2.5rem);
            /* var(--nav-height) */
            padding-bottom: 7.5rem;
            background: var(--brand-blue);
            /* Fallback for browsers that don't support gradients */
            background: -webkit-linear-gradient(top, var(--brand-blue) 51%, var(--bg-white) 100%);
            /* Safari 5.1-6.0 */
            background: -o-linear-gradient(bottom, var(--brand-blue) 51%, var(--bg-white) 100%);
            /* Opera 11.1-12.0 */
            background: -moz-linear-gradient(bottom, var(--brand-blue) 51%, var(--bg-white) 100%);
            /* Firefox 3.6-15 */
            background: linear-gradient(180deg, var(--brand-blue) 51%, var(--bg-white) 100%);
            /* Standard syntax */
            text-align: center;
            position: relative;
            overflow: visible;
            z-index: 1;
        }

        .data-hero .container {
            max-width: 70rem;
            margin: 0 auto;
            padding: 2.5rem var(--desktop-padding) 7.5rem;
            display: -webkit-box;
            display: -webkit-flex;
            display: -ms-flexbox;
            display: flex;
            -webkit-box-orient: vertical;
            -webkit-box-direction: normal;
            -webkit-flex-direction: column;
            -ms-flex-direction: column;
            flex-direction: column;
            -webkit-box-align: center;
            -webkit-align-items: center;
            -ms-flex-align: center;
            align-items: center;
            gap: 1.5rem;
        }

        .data-title {
            font-size: 3.5rem;
            font-weight: 700;
            line-height: 4.55rem;
            color: var(--cs-white);
            margin: 0;
        }

        .data-subtitle {
            font-size: 1.5rem;
            font-weight: 400;
            line-height: 1.95rem;
            color: var(--bg-white);
            max-width: 56.25rem;
            margin: 0;
        }

        /* Content Section with Overlap */
        .data-content {
            padding: 2.5rem var(--desktop-padding);
            margin-top: -10rem;
            position: relative;
            z-index: 20;
            max-width: 90rem;
            margin-left: auto;
            margin-right: auto;
            -webkit-transition: -webkit-transform 0.24s ease;
            transition: -webkit-transform 0.24s ease;
            -o-transition: transform 0.24s ease;
            transition: transform 0.24s ease;
            transition: transform 0.24s ease, -webkit-transform 0.24s ease;
            will-change: transform;
        }

        /* Main Layout with TOC */
        .data-layout {
            display: flex;
            gap: 1.5rem;
            align-items: flex-start;
            max-width: 70rem;
            margin: 0 auto;
        }

        /* Table of Contents Sidebar */
        .toc-sidebar {
            width: 21.375rem;
            flex-shrink: 0;
            position: sticky;
            top: calc(5.5rem + 1.5rem);
            display: none;
            max-height: calc(100vh - 5.5rem - 3rem);
            overflow-y: auto;
        }

        .toc-title {
            font-size: 1.5rem;
            font-weight: 700;
            color: var(--cs-blue-dark);
            margin-bottom: 1rem;
            line-height: 1.3;
        }

        .toc-divider {
            height: 0.0625rem;
            background-color: var(--border-color);
            border-radius: 0.0625rem;
            margin: 1rem 0;
        }

        .toc-link {
            display: block;
            padding: 0.5rem 0;
            font-size: 1.125rem;
            font-weight: 600;
            color: var(--text-dark);
            text-decoration: none;
            line-height: 1.3;
            transition: var(--transition);
        }

        .toc-link:hover {
            color: var(--brand-blue);
        }

        .toc-link.active {
            color: var(--brand-blue);
        }

        /* Data Content Area (no card) */
        .data-main {
            flex: 1;
        }

        /* Read Time Tag */
        .read-time-tag {
            display: inline-block;
            margin-bottom: 2rem;
        }

        /* Policy Sections */
        .policy-section {
            margin-bottom: 3rem;
        }

        .policy-intro {
            font-size: 1.5rem;
            color: var(--text-body);
            line-height: 1.3;
            margin-bottom: 2rem;
            white-space: pre-wrap;
        }

        .policy-section-title {
            font-size: 1.5rem;
            font-weight: 700;
            color: var(--text-dark);
            margin-bottom: 1.5rem;
            line-height: 1.3;
            text-decoration: underline;
        }

        .policy-section-title-large {
            font-size: 2.5rem;
            font-weight: 700;
            color: var(--text-dark);
            margin-bottom: 1.5rem;
            line-height: 1.3;
        }

        .policy-subsection-title {
            font-size: 1.25rem;
            font-weight: 600;
            color: var(--text-dark);
            margin: 2rem 0 1rem;
            line-height: 1.3;
        }

        .policy-text {
            font-size: 1.5rem;
            color: var(--text-body);
            line-height: 1.3;
            margin-bottom: 1.5rem;
        }

        .policy-text-bold {
            font-size: 1.5rem;
            color: var(--text-body);
            line-height: 1.3;
            margin-bottom: 1.5rem;
            font-weight: 400;
        }

        .policy-list {
            font-size: 1.5rem;
            color: var(--text-body);
            line-height: 1.3;
            padding-left: 2rem;
            margin-bottom: 1.5rem;
        }

        .policy-list li {
            margin-bottom: 0.75rem;
        }

        .policy-sublist {
            list-style-type: lower-alpha;
            padding-left: 1.5rem;
            margin-top: 0.75rem;
        }

        .underline-link {
            color: var(--brand-blue);
            text-decoration: underline;
        }

        /* Contact Section (from amazon-policy.html) */
        .contact-section {
            background: var(--brand-blue);
            border-radius: 1.5rem;
            padding: 4.5rem 5rem 3rem;
            width: calc(100% - 2 * var(--desktop-padding));
            max-width: 70rem;
            margin: 5rem auto var(--section-gap);
            display: flex;
            gap: 2.5rem;
        }

        .contact-info {
            flex: 1;
        }

        .contact-title {
            font-size: 2.5rem;
            font-weight: 700;
            color: var(--bg-white);
            margin-bottom: 1.5rem;
            line-height: 1.3;
        }

        .contact-section .contact-text {
            font-size: 1.125rem;
            color: var(--cs-white);
            line-height: 1.3;
        }

        .contact-form {
            flex: 1;
            display: flex;
            flex-direction: column;
            gap: 1.25rem;
        }

        .form-field {
            display: flex;
            flex-direction: column;
        }

        .form-input,
        .form-select,
        .form-textarea {
            height: 4rem;
            background: var(--bg-form);
            border: none;
            border-radius: 0.375rem;
            padding: 0.75rem 1rem;
            font-family: 'Sora', sans-serif;
            display: flex;
            flex-direction: column;
            gap: 0.25rem;
        }

        .form-textarea {
            height: 9.5rem;
            resize: none;
        }

        .form-label {
            font-size: 0.6875rem;
            color: var(--text-dark);
            font-weight: 400;
            margin-bottom: 0.25rem;
        }

        .form-label .required {
            color: var(--error-red);
        }

        .form-input input,
        .form-select select,
        .form-textarea textarea {
            border: none;
            background: transparent;
            font-size: 1rem;
            font-family: 'Sora', sans-serif;
            color: var(--text-dark);
            outline: none;
            width: 100%;
        }

        .form-textarea textarea {
            flex: 1;
        }

        .form-input input::placeholder,
        .form-textarea textarea::placeholder {
            color: var(--text-label-small);
        }

        .btn-submit {
            height: 3.5rem;
            background: var(--cs-white);
            border: 0.0625rem solid var(--border-color);
            border-radius: 0.5rem;
            color: var(--text-body);
            font-size: 1.125rem;
            font-weight: 700;
            font-family: 'Karla', sans-serif;
            cursor: pointer;
            transition: var(--transition);
        }

        .btn-submit:hover {
            background: var(--bg-gray-light);
        }

        /* Mobile Menu Icons */
        .mobile-toggle i {
            font-size: 1.5rem;
            transition: all 0.3s ease;
        }

        .navbar-custom:not(.scrolled) .mobile-toggle i {
            color: var(--bg-white);
        }

        .navbar-custom.scrolled .mobile-toggle i {
            color: var(--text-body);
        }

        .close-drawer i {
            font-size: 1.5rem;
            color: var(--text-dark-alt);
        }

        /* Mobile Drawer Button */
        .btn-drawer-accent {
            display: block;
            width: 100%;
            padding: 1rem;
            text-align: center;
            background: var(--brand-blue);
            color: white;
            border-radius: 0.5rem;
            text-decoration: none;
            font-weight: 600;
            -webkit-transition: all 0.3s ease;
            -o-transition: all 0.3s ease;
            transition: all 0.3s ease;
        }

        .drawer-footer {
            margin-top: auto;
            padding-bottom: 1rem;
            display: flex;
            flex-direction: column;
            gap: 0;
        }

        /* Footer Map Fix */
        .footer-map {
            height: 10rem;
            max-height: 15rem;
            overflow: hidden;
            margin-top: 1rem;
            border-radius: 0.5rem;
        }

        .footer-map iframe {
            height: 100%;
            width: 100%;
            display: block;
            border: 0;
        }

        /* Show TOC on large screens */
        @media (min-width: 75rem) {
            .toc-sidebar {
                display: block;
            }
        }

        /* ============================================
           RESPONSIVE BREAKPOINTS
           ============================================ */

        /* Large Desktop (87.5rem and above) */
        @media (min-width: 87.5625rem) {
            .data-hero .container {
                padding: 2.5rem var(--desktop-padding) 7.5rem;
            }

            .data-content {
                padding: 2.5rem var(--desktop-padding);
            }

            .contact-section {
                padding: 4.5rem 5rem 3rem;
            }
        }

        /* Medium Desktop (62.0625rem - 87.5rem) */
        @media (max-width: 87.5rem) and (min-width: 62.0625rem) {

            .data-hero,
            .data-content {
                --desktop-padding: 3.75rem;
            }

            .data-hero {
                padding-bottom: 7.5rem;
            }

            .data-hero .container {
                padding: 2.5rem var(--desktop-padding) 7.5rem;
            }

            .data-content {
                padding: 2.5rem var(--desktop-padding);
                margin-top: -10rem;
            }

            .contact-section {
                padding: 3rem 2.5rem 2rem;
            }
        }

        @media (max-width: 87.5rem) {
            .data-hero .container {
                padding-left: var(--desktop-padding);
                padding-right: var(--desktop-padding);
            }

            .data-content {
                padding-left: var(--desktop-padding);
                padding-right: var(--desktop-padding);
            }
        }

        /* Tablet & Mobile (62rem and below) */
        @media (max-width: 62rem) {

            .data-hero,
            .data-content {
                --desktop-padding: 1.5rem;
            }

            .data-hero {
                padding-top: calc(4.5rem + 2.5rem);
                padding-bottom: 11.25rem;
            }

            .data-hero .container {
                padding: 2.5rem var(--desktop-padding);
                padding-bottom: 10rem;
            }

            .data-title {
                font-size: 2.5rem;
                line-height: 3.25rem;
            }

            .data-subtitle {
                font-size: 1.125rem;
                line-height: 1.4625rem;
            }

            .data-content {
                padding: var(--desktop-padding);
                margin-top: -12.5rem;
                margin-bottom: var(--desktop-padding);
            }

            .data-layout {
                flex-direction: column;
            }

            .policy-intro {
                font-size: 1rem;
                line-height: 1.3;
            }

            .policy-section-title {
                font-size: 1.125rem;
            }

            .policy-section-title-large {
                font-size: 1.5rem;
            }

            .policy-text,
            .policy-text-bold,
            .policy-list {
                font-size: 1rem;
                line-height: 1.3;
            }

            .contact-section {
                flex-direction: column;
                padding: 2rem 1rem;
                margin: 2.5rem 1.5rem 4rem;
                border-radius: 0.75rem;
            }

            .contact-title {
                font-size: 2rem;
            }
        }

        /* Small Mobile (48rem and below) */
        @media (max-width: 48rem) {
            .data-title {
                font-size: 2.5rem;
                line-height: 3.25rem;
            }

            .data-subtitle {
                font-size: 1.125rem;
                line-height: 1.4625rem;
            }

            .data-content {
                padding: 1rem;
            }
        }

        /* Extra Small Mobile (30rem and below) */
        @media (max-width: 30rem) {
            .data-title {
                font-size: 2rem;
                line-height: 2.6rem;
            }

            .data-subtitle {
                font-size: 1rem;
                line-height: 1.3rem;
            }
        }

/* ===== inline-privacy ===== */
/* ============================================
           PRIVACY POLICY CSS VARIABLES
           ============================================ */
        .privacy-hero,
        .privacy-content {
            --desktop-padding: 10rem;
        }

        /* Hero Section with Cross-Browser Gradient */
        .privacy-hero {
            padding-top: calc(5.5rem + 2.5rem);
            /* var(--nav-height) */
            padding-bottom: 7.5rem;
            background: var(--brand-blue);
            /* Fallback for browsers that don't support gradients */
            background: -webkit-linear-gradient(top, var(--brand-blue) 51%, var(--bg-white) 100%);
            /* Safari 5.1-6.0 */
            background: -o-linear-gradient(bottom, var(--brand-blue) 51%, var(--bg-white) 100%);
            /* Opera 11.1-12.0 */
            background: -moz-linear-gradient(bottom, var(--brand-blue) 51%, var(--bg-white) 100%);
            /* Firefox 3.6-15 */
            background: linear-gradient(180deg, var(--brand-blue) 51%, var(--bg-white) 100%);
            /* Standard syntax */
            text-align: center;
            position: relative;
            overflow: visible;
            z-index: 1;
        }

        .privacy-hero .container {
            max-width: 70rem;
            margin: 0 auto;
            padding: 2.5rem var(--desktop-padding) 7.5rem;
            display: -webkit-box;
            display: -webkit-flex;
            display: -ms-flexbox;
            display: flex;
            -webkit-box-orient: vertical;
            -webkit-box-direction: normal;
            -webkit-flex-direction: column;
            -ms-flex-direction: column;
            flex-direction: column;
            -webkit-box-align: center;
            -webkit-align-items: center;
            -ms-flex-align: center;
            align-items: center;
            gap: 1.5rem;
        }

        .privacy-title {
            font-size: 3.5rem;
            font-weight: 700;
            line-height: 4.55rem;
            color: var(--cs-white);
            margin: 0;
        }

        .privacy-subtitle {
            font-size: 1.5rem;
            font-weight: 400;
            line-height: 1.95rem;
            color: var(--bg-white);
            max-width: 56.25rem;
            margin: 0;
        }

        /* Content Section with Overlap */
        .privacy-content {
            padding: 2.5rem var(--desktop-padding);
            margin-top: -10rem;
            position: relative;
            z-index: 20;
            max-width: 90rem;
            margin-left: auto;
            margin-right: auto;
            -webkit-transition: -webkit-transform 0.24s ease;
            transition: -webkit-transform 0.24s ease;
            -o-transition: transform 0.24s ease;
            transition: transform 0.24s ease;
            transition: transform 0.24s ease, -webkit-transform 0.24s ease;
            will-change: transform;
        }

        /* Main Layout with TOC */
        .privacy-layout {
            display: flex;
            gap: 1.5rem;
            align-items: flex-start;
            max-width: 70rem;
            margin: 0 auto;
        }

        /* Table of Contents Sidebar */
        .toc-sidebar {
            width: 21.375rem;
            flex-shrink: 0;
            position: sticky;
            top: calc(5.5rem + 1.5rem);
            display: none;
            max-height: calc(100vh - 5.5rem - 3rem);
            overflow-y: auto;
        }

        .toc-title {
            font-size: 1.5rem;
            font-weight: 700;
            color: var(--cs-blue-dark);
            margin-bottom: 1rem;
            line-height: 1.3;
        }

        .toc-divider {
            height: 0.0625rem;
            background-color: var(--border-color);
            border-radius: 0.0625rem;
            margin: 1rem 0;
        }

        .toc-link {
            display: block;
            padding: 0.5rem 0;
            font-size: 1.125rem;
            font-weight: 600;
            color: var(--text-dark);
            text-decoration: none;
            line-height: 1.3;
            transition: var(--transition);
        }

        .toc-link:hover {
            color: var(--brand-blue);
        }

        .toc-link.active {
            color: var(--brand-blue);
        }

        /* Privacy Content Area (no card) */
        .privacy-main {
            flex: 1;
        }

        /* Read Time Tag */
        .read-time-tag {
            display: inline-block;
            margin-bottom: 2rem;
        }

        /* Policy Sections */
        .policy-section {
            margin-bottom: 3rem;
        }

        .policy-intro {
            font-size: 1.5rem;
            color: var(--text-body);
            line-height: 1.3;
            margin-bottom: 2rem;
            white-space: pre-wrap;
        }

        .policy-section-title {
            font-size: 1.5rem;
            font-weight: 700;
            color: var(--text-dark);
            margin-bottom: 1.5rem;
            line-height: 1.3;
            text-decoration: underline;
        }

        .policy-section-title-large {
            font-size: 2.5rem;
            font-weight: 700;
            color: var(--text-dark);
            margin-bottom: 1.5rem;
            line-height: 1.3;
        }

        .policy-subsection-title {
            font-size: 1.25rem;
            font-weight: 600;
            color: var(--text-dark);
            margin: 2rem 0 1rem;
            line-height: 1.3;
        }

        .policy-text {
            font-size: 1.5rem;
            color: var(--text-body);
            line-height: 1.3;
            margin-bottom: 1.5rem;
        }

        .policy-text-bold {
            font-size: 1.5rem;
            color: var(--text-body);
            line-height: 1.3;
            margin-bottom: 1.5rem;
            font-weight: 400;
        }

        .policy-text-small {
            font-size: 1.125rem;
            color: var(--text-body);
            line-height: 1.3;
            margin-bottom: 1.5rem;
        }

        .policy-list {
            font-size: 1.5rem;
            color: var(--text-body);
            line-height: 1.3;
            padding-left: 2rem;
            margin-bottom: 1.5rem;
        }

        .policy-list li {
            margin-bottom: 0.75rem;
        }

        .policy-sublist {
            list-style-type: lower-alpha;
            padding-left: 1.5rem;
            margin-top: 0.75rem;
        }

        .underline-link {
            color: var(--brand-blue);
            text-decoration: underline;
        }

        /* Contact Section (from amazon-policy.html) */
        .contact-section {
            background: var(--brand-blue);
            border-radius: 1.5rem;
            padding: 4.5rem 5rem 3rem;
            width: calc(100% - 2 * var(--desktop-padding));
            max-width: 70rem;
            margin: 5rem auto var(--section-gap);
            display: flex;
            gap: 2.5rem;
        }

        .contact-info {
            flex: 1;
        }

        .contact-title {
            font-size: 2.5rem;
            font-weight: 700;
            color: var(--bg-white);
            margin-bottom: 1.5rem;
            line-height: 1.3;
        }

        .contact-section .contact-text {
            font-size: 1.125rem;
            color: var(--cs-white);
            line-height: 1.3;
        }

        .contact-form {
            flex: 1;
            display: flex;
            flex-direction: column;
            gap: 1.25rem;
        }

        .form-field {
            display: flex;
            flex-direction: column;
        }

        .form-input,
        .form-select,
        .form-textarea {
            height: 4rem;
            background: var(--bg-form);
            border: none;
            border-radius: 0.375rem;
            padding: 0.75rem 1rem;
            font-family: 'Sora', sans-serif;
            display: flex;
            flex-direction: column;
            gap: 0.25rem;
        }

        .form-textarea {
            height: 9.5rem;
            resize: none;
        }

        .form-label {
            font-size: 0.6875rem;
            color: var(--text-dark);
            font-weight: 400;
            margin-bottom: 0.25rem;
        }

        .form-label .required {
            color: var(--error-red);
        }

        .form-input input,
        .form-select select,
        .form-textarea textarea {
            border: none;
            background: transparent;
            font-size: 1rem;
            font-family: 'Sora', sans-serif;
            color: var(--text-dark);
            outline: none;
            width: 100%;
        }

        .form-textarea textarea {
            flex: 1;
        }

        .form-input input::placeholder,
        .form-textarea textarea::placeholder {
            color: var(--text-label-small);
        }

        .btn-submit {
            height: 3.5rem;
            background: var(--cs-white);
            border: 0.0625rem solid var(--border-color);
            border-radius: 0.5rem;
            color: var(--text-body);
            font-size: 1.125rem;
            font-weight: 700;
            font-family: 'Karla', sans-serif;
            cursor: pointer;
            transition: var(--transition);
        }

        .btn-submit:hover {
            background: var(--bg-gray-light);
        }

        /* Mobile Menu Icons */
        .mobile-toggle i {
            font-size: 1.5rem;
            transition: all 0.3s ease;
        }

        .navbar-custom:not(.scrolled) .mobile-toggle i {
            color: var(--bg-white);
        }

        .navbar-custom.scrolled .mobile-toggle i {
            color: var(--text-body);
        }

        .close-drawer i {
            font-size: 1.5rem;
            color: var(--text-dark-alt);
        }

        /* Mobile Drawer Button */
        .btn-drawer-accent {
            display: block;
            width: 100%;
            padding: 1rem;
            text-align: center;
            background: var(--brand-blue);
            color: white;
            border-radius: 0.5rem;
            text-decoration: none;
            font-weight: 600;
            -webkit-transition: all 0.3s ease;
            -o-transition: all 0.3s ease;
            transition: all 0.3s ease;
        }

        .drawer-footer {
            margin-top: auto;
            padding-bottom: 1rem;
            display: flex;
            flex-direction: column;
            gap: 0;
        }

        /* Footer Map Fix */
        .footer-map {
            height: 10rem;
            max-height: 15rem;
            overflow: hidden;
            margin-top: 1rem;
            border-radius: 0.5rem;
        }

        .footer-map iframe {
            height: 100%;
            width: 100%;
            display: block;
            border: 0;
        }

        /* Show TOC on large screens */
        @media (min-width: 75rem) {
            .toc-sidebar {
                display: block;
            }
        }

        /* ============================================
           RESPONSIVE BREAKPOINTS
           ============================================ */

        /* Large Desktop (87.5rem and above) */
        @media (min-width: 87.5625rem) {
            .privacy-hero .container {
                padding: 2.5rem var(--desktop-padding) 7.5rem;
            }

            .privacy-content {
                padding: 2.5rem var(--desktop-padding);
            }

            .contact-section {
                padding: 4.5rem 5rem 3rem;
            }
        }

        /* Medium Desktop (62.0625rem - 87.5rem) */
        @media (max-width: 87.5rem) and (min-width: 62.0625rem) {

            .privacy-hero,
            .privacy-content {
                --desktop-padding: 3.75rem;
            }

            .privacy-hero {
                padding-bottom: 7.5rem;
            }

            .privacy-hero .container {
                padding: 2.5rem var(--desktop-padding) 7.5rem;
            }

            .privacy-content {
                padding: 2.5rem var(--desktop-padding);
                margin-top: -10rem;
            }

            .contact-section {
                padding: 3rem 2.5rem 2rem;
            }
        }

        @media (max-width: 87.5rem) {
            .privacy-hero .container {
                padding-left: var(--desktop-padding);
                padding-right: var(--desktop-padding);
            }

            .privacy-content {
                padding-left: var(--desktop-padding);
                padding-right: var(--desktop-padding);
            }
        }

        /* Tablet & Mobile (62rem and below) */
        @media (max-width: 62rem) {

            .privacy-hero,
            .privacy-content {
                --desktop-padding: 1.5rem;
            }

            .privacy-hero {
                padding-top: calc(4.5rem + 2.5rem);
                padding-bottom: 11.25rem;
            }

            .privacy-hero .container {
                padding: 2.5rem var(--desktop-padding);
                padding-bottom: 10rem;
            }

            .privacy-title {
                font-size: 2.5rem;
                line-height: 3.25rem;
            }

            .privacy-subtitle {
                font-size: 1.125rem;
                line-height: 1.4625rem;
            }

            .privacy-content {
                padding: var(--desktop-padding);
                margin-top: -12.5rem;
                margin-bottom: var(--desktop-padding);
            }

            .privacy-layout {
                flex-direction: column;
            }

            .policy-intro {
                font-size: 1rem;
                line-height: 1.3;
            }

            .policy-section-title {
                font-size: 1.125rem;
            }

            .policy-section-title-large {
                font-size: 1.5rem;
            }

            .policy-text,
            .policy-text-bold,
            .policy-list {
                font-size: 1rem;
                line-height: 1.3;
            }

            .policy-text-small {
                font-size: 0.875rem;
            }

            .contact-section {
                flex-direction: column;
                padding: 2rem 1rem;
                margin: 2.5rem 1.5rem 4rem;
                border-radius: 0.75rem;
            }

            .contact-title {
                font-size: 2rem;
            }
        }

        /* Small Mobile (48rem and below) */
        @media (max-width: 48rem) {
            .privacy-title {
                font-size: 2.5rem;
                line-height: 3.25rem;
            }

            .privacy-subtitle {
                font-size: 1.125rem;
                line-height: 1.4625rem;
            }

            .privacy-content {
                padding: 1rem;
            }
        }

        /* Extra Small Mobile (30rem and below) */
        @media (max-width: 30rem) {
            .privacy-title {
                font-size: 2rem;
                line-height: 2.6rem;
            }

            .privacy-subtitle {
                font-size: 1rem;
                line-height: 1.3rem;
            }
        }

/* ===== inline-terms ===== */
/* ============================================
           AGREEMENT CSS VARIABLES
           ============================================ */
        .agreement-hero,
        .agreement-content {
            --desktop-padding: 10rem;
        }
        
        /* Hero Section with Cross-Browser Gradient */
        .agreement-hero {
            padding-top: calc(5.5rem + 2.5rem); /* var(--nav-height) */
            padding-bottom: 7.5rem;
            background: var(--brand-blue); /* Fallback for browsers that don't support gradients */
            background: -webkit-linear-gradient(top, var(--brand-blue) 51%, var(--bg-white) 100%); /* Safari 5.1-6.0 */
            background: -o-linear-gradient(bottom, var(--brand-blue) 51%, var(--bg-white) 100%); /* Opera 11.1-12.0 */
            background: -moz-linear-gradient(bottom, var(--brand-blue) 51%, var(--bg-white) 100%); /* Firefox 3.6-15 */
            background: linear-gradient(180deg, var(--brand-blue) 51%, var(--bg-white) 100%); /* Standard syntax */
            text-align: center;
            position: relative;
            overflow: visible;
            z-index: 1;
        }

        .agreement-hero .container {
            max-width: 70rem;
            margin: 0 auto;
            padding: 2.5rem var(--desktop-padding) 7.5rem;
            display: -webkit-box;
            display: -webkit-flex;
            display: -ms-flexbox;
            display: flex;
            -webkit-box-orient: vertical;
            -webkit-box-direction: normal;
            -webkit-flex-direction: column;
                -ms-flex-direction: column;
                    flex-direction: column;
            -webkit-box-align: center;
            -webkit-align-items: center;
                -ms-flex-align: center;
                    align-items: center;
            gap: 1.5rem;
        }

        .agreement-title {
            font-size: 3.5rem;
            font-weight: 700;
            line-height: 4.55rem;
            color: var(--cs-white);
            margin: 0;
        }

        .agreement-subtitle {
            font-size: 1.5rem;
            font-weight: 400;
            line-height: 1.95rem;
            color: var(--bg-white);
            max-width: 56.25rem;
            margin: 0;
        }

        /* Content Section with Overlap */
        .agreement-content {
            padding: 2.5rem var(--desktop-padding);
            margin-top: -10rem;
            position: relative;
            z-index: 20;
            max-width: 90rem;
            margin-left: auto;
            margin-right: auto;
            -webkit-transition: -webkit-transform 0.24s ease;
            transition: -webkit-transform 0.24s ease;
            -o-transition: transform 0.24s ease;
            transition: transform 0.24s ease;
            transition: transform 0.24s ease, -webkit-transform 0.24s ease;
            will-change: transform;
        }

        /* Main Layout with TOC */
        .agreement-layout {
            display: flex;
            gap: 1.5rem;
            align-items: flex-start;
            max-width: 70rem;
            margin: 0 auto;
        }

        /* Table of Contents Sidebar */
        .toc-sidebar {
            width: 21.375rem;
            flex-shrink: 0;
            position: sticky;
            top: calc(5.5rem + 1.5rem);
            display: none;
            max-height: calc(100vh - 5.5rem - 3rem);
            overflow-y: auto;
        }

        .toc-title {
            font-size: 1.5rem;
            font-weight: 700;
            color: var(--cs-blue-dark);
            margin-bottom: 1rem;
            line-height: 1.3;
        }

        .toc-divider {
            height: 0.0625rem;
            background-color: var(--border-color);
            border-radius: 0.0625rem;
            margin: 1rem 0;
        }

        .toc-link {
            display: block;
            padding: 0.5rem 0;
            font-size: 1.125rem;
            font-weight: 600;
            color: var(--text-dark);
            text-decoration: none;
            line-height: 1.3;
            transition: var(--transition);
        }

        .toc-link:hover {
            color: var(--brand-blue);
        }

        .toc-link.active {
            color: var(--brand-blue);
        }

        /* Agreement Content Area (no card) */
        .agreement-main {
            flex: 1;
        }

        /* Read Time Tag */
        .read-time-tag {
            display: inline-block;
            margin-bottom: 2rem;
        }

        /* Policy Sections */
        .policy-section {
            margin-bottom: 3rem;
        }

        .policy-intro {
            font-size: 1.5rem;
            color: var(--text-body);
            line-height: 1.3;
            margin-bottom: 2rem;
            white-space: pre-wrap;
        }

        .policy-section-title {
            font-size: 1.5rem;
            font-weight: 700;
            color: var(--text-dark);
            margin-bottom: 1.5rem;
            line-height: 1.3;
            text-decoration: underline;
        }

        .policy-section-title-large {
            font-size: 2.5rem;
            font-weight: 700;
            color: var(--text-dark);
            margin-bottom: 1.5rem;
            line-height: 1.3;
        }

        .policy-subsection-title {
            font-size: 1.25rem;
            font-weight: 600;
            color: var(--text-dark);
            margin: 2rem 0 1rem;
            line-height: 1.3;
        }

        .policy-text {
            font-size: 1.5rem;
            color: var(--text-body);
            line-height: 1.3;
            margin-bottom: 1.5rem;
        }

        .policy-text-bold {
            font-size: 1.5rem;
            color: var(--text-body);
            line-height: 1.3;
            margin-bottom: 1.5rem;
            font-weight: 400;
        }

        .policy-list {
            font-size: 1.5rem;
            color: var(--text-body);
            line-height: 1.3;
            padding-left: 2rem;
            margin-bottom: 1.5rem;
        }

        .policy-list li {
            margin-bottom: 0.75rem;
        }

        .policy-sublist {
            list-style-type: lower-alpha;
            padding-left: 1.5rem;
            margin-top: 0.75rem;
        }

        /* Mobile Menu Icon Colors */
        .mobile-toggle i {
            font-size: 1.5rem;
            transition: all 0.3s ease;
        }

        .navbar-custom:not(.scrolled) .mobile-toggle i {
            color: var(--bg-white);
        }

        .navbar-custom.scrolled .mobile-toggle i {
            color: var(--text-body);
        }

        .close-drawer i {
            font-size: 1.5rem;
            color: var(--text-dark-alt);
        }

        /* Mobile Drawer Button */
        .btn-drawer-accent {
            display: block;
            width: 100%;
            padding: 1rem;
            text-align: center;
            background: var(--brand-blue);
            color: white;
            border-radius: 0.5rem;
            text-decoration: none;
            font-weight: 600;
            -webkit-transition: all 0.3s ease;
            -o-transition: all 0.3s ease;
            transition: all 0.3s ease;
        }

        .drawer-footer {
            margin-top: auto;
            padding-bottom: 1rem;
            display: flex;
            flex-direction: column;
            gap: 0;
        }

        /* Footer Map Fix */
        .footer-map {
            height: 10rem;
            max-height: 15rem;
            overflow: hidden;
            margin-top: 1rem;
            border-radius: 0.5rem;
        }
        
        .footer-map iframe {
            height: 100%;
            width: 100%;
            display: block;
            border: 0;
        }

        /* Show TOC on large screens */
        @media (min-width: 75rem) {
            .toc-sidebar {
                display: block;
            }
        }

        /* ============================================
           RESPONSIVE BREAKPOINTS
           ============================================ */

        /* Large Desktop (87.5rem and above) */
        @media (min-width: 87.5625rem) {
            .agreement-hero .container {
                padding: 2.5rem var(--desktop-padding) 7.5rem;
            }

            .agreement-content {
                padding: 2.5rem var(--desktop-padding);
            }
        }

        /* Medium Desktop (62.0625rem - 87.5rem) */
        @media (max-width: 87.5rem) and (min-width: 62.0625rem) {
            .agreement-hero,
            .agreement-content {
                --desktop-padding: 3.75rem;
            }
            
            .agreement-hero {
                padding-bottom: 7.5rem;
            }
            
            .agreement-hero .container {
                padding: 2.5rem var(--desktop-padding) 7.5rem;
            }

            .agreement-content {
                padding: 2.5rem var(--desktop-padding);
                margin-top: -10rem;
            }
        }

        @media (max-width: 87.5rem) {
            .agreement-hero .container {
                padding-left: var(--desktop-padding);
                padding-right: var(--desktop-padding);
            }

            .agreement-content {
                padding-left: var(--desktop-padding);
                padding-right: var(--desktop-padding);
            }
        }

        /* Tablet & Mobile (62rem and below) */
        @media (max-width: 62rem) {
            .agreement-hero,
            .agreement-content {
                --desktop-padding: 1.5rem;
            }
            
            .agreement-hero {
                padding-top: calc(4.5rem + 2.5rem);
                padding-bottom: 11.25rem;
            }

            .agreement-hero .container {
                padding: 2.5rem var(--desktop-padding);
                padding-bottom: 10rem;
            }

            .agreement-title {
                font-size: 2.5rem;
                line-height: 3.25rem;
            }

            .agreement-subtitle {
                font-size: 1.125rem;
                line-height: 1.4625rem;
            }

            .agreement-content {
                padding: var(--desktop-padding);
                margin-top: -12.5rem;
                margin-bottom: var(--desktop-padding);
            }

            .agreement-layout {
                flex-direction: column;
            }

            .policy-intro {
                font-size: 1rem;
                line-height: 1.3;
            }

            .policy-section-title {
                font-size: 1.125rem;
            }

            .policy-section-title-large {
                font-size: 1.5rem;
            }

            .policy-text,
            .policy-text-bold,
            .policy-list {
                font-size: 1rem;
                line-height: 1.3;
            }
        }

        /* Small Mobile (48rem and below) */
        @media (max-width: 48rem) {
            .agreement-title {
                font-size: 2.5rem;
                line-height: 3.25rem;
            }

            .agreement-subtitle {
                font-size: 1.125rem;
                line-height: 1.4625rem;
            }

            .agreement-content {
                padding: 1rem;
            }
        }

        /* Extra Small Mobile (30rem and below) */
        @media (max-width: 30rem) {
            .agreement-title {
                font-size: 2rem;
                line-height: 2.6rem;
            }

            .agreement-subtitle {
                font-size: 1rem;
                line-height: 1.3rem;
            }
        }

/* ===== inline-sitemap ===== */
/* ========================================================================
           SITEMAP CSS VARIABLES
           ======================================================================== */
        .sitemap-hero,
        .sitemap-content {
            --desktop-padding: 10rem;
        }

        /* ========================================================================
           HERO SECTION
           ========================================================================
           Gradient background with card overlap effect
           Gradient split at 51% matches design system
           ======================================================================== */

        .sitemap-hero {
            padding-top: calc(var(--nav-height) + 2.5rem);
            padding-bottom: 7.5rem;

            /* Cross-browser gradient fallbacks */
            background: var(--brand-blue);
            background: -webkit-linear-gradient(top, var(--brand-blue) 51%, var(--bg-white) 100%);
            background: -o-linear-gradient(bottom, var(--brand-blue) 51%, var(--bg-white) 100%);
            background: -moz-linear-gradient(bottom, var(--brand-blue) 51%, var(--bg-white) 100%);
            background: linear-gradient(180deg, var(--brand-blue) 51%, var(--bg-white) 100%);

            text-align: center;
            position: relative;
            overflow: visible;
            z-index: 1;
        }

        .sitemap-hero .container {
            max-width: 70rem;
            margin: 0 auto;
            padding: 2.5rem var(--desktop-padding) 7.5rem;
            display: flex;
            flex-direction: column;
            align-items: center;
            gap: 1.5rem;
        }

        .sitemap-title {
            font-size: 3.5rem;
            font-weight: 700;
            line-height: 4.55rem;
            color: var(--cs-white);
            margin: 0;
        }

        .sitemap-subtitle {
            font-size: 1.5rem;
            font-weight: 400;
            line-height: 1.95rem;
            color: var(--bg-white);
            max-width: 56.25rem;
            margin: 0;
        }

        /* ========================================================================
           CONTENT SECTION
           ========================================================================
           Negative margin creates overlapping card effect
           ======================================================================== */
        .sitemap-content {
            padding: 2.5rem var(--desktop-padding);

            /* Pulls card into hero section for depth effect */
            margin-top: -10rem;

            position: relative;
            z-index: 20;
            max-width: var(--max-content-width);
            margin-left: auto;
            margin-right: auto;

            /* GPU acceleration for smooth animations */
            transition: transform 0.24s ease;
            will-change: transform;
        }

        /* ========================================================================
           SITEMAP CARD
           ========================================================================
           Elevated white card with multi-layer shadow
           ======================================================================== */
        .sitemap-card {
            max-width: 70rem;
            margin: 0 auto;
            background: var(--bg-white);
            border-radius: 1rem;
            padding: 0 2rem;

            /* Multi-layer shadow for realistic depth */
            box-shadow:
                var(--shadow-card);

            transform: translateY(-0.25rem);
            overflow: hidden;
            position: relative;
        }

        /* Decorative glow using filtered radial gradient */
        .sitemap-card::before {
            content: '';
            position: absolute;
            left: 0;
            top: -1.75rem;
            width: 100%;
            height: 10rem;
            pointer-events: none;
            background: radial-gradient(closest-side, rgba(var(--brand-blue-rgb), 0.08), transparent 40%);
            filter: blur(1.5rem);
            z-index: -1;
            border-radius: 1rem;
        }

        /* ========================================================================
           NAVIGATION ITEMS
           ========================================================================
           Clickable rows with hover feedback
           ======================================================================== */

        .sitemap-item {
            display: flex;
            align-items: center;
            gap: 1.5rem;
            padding: 1.5rem 0;
            transition: transform 0.3s ease;
            text-decoration: none;
            color: var(--text-dark);
        }

        .sitemap-item:hover {
            transform: translateX(0.25rem);
        }

        /* Icon container with gradient background */
        .sitemap-icon {
            width: 4rem;
            height: 4rem;
            min-width: 4rem;
            border-radius: 2rem;
            background: radial-gradient(ellipse 139.84% 223.39% at 50.00% 100.00%, var(--bg-light-blue) 0%, var(--bg-form) 100%);
            border: 0.0625rem solid var(--brand-border-light);
            display: flex;
            align-items: center;
            justify-content: center;
            transition: all 0.3s ease;
            flex-shrink: 0;
        }

        .sitemap-icon svg {
            width: 1.75rem;
            height: 1.75rem;
            display: block;
            color: var(--brand-blue);
        }

        .sitemap-item:hover .sitemap-icon {
            background: var(--brand-bg-light);
            border-color: var(--brand-blue);
        }

        .sitemap-label {
            flex: 1;
            font-size: 1.5rem;
            font-weight: 600;
            line-height: 1.95rem;
            color: var(--text-dark);
        }

        /* Circular arrow button */
        .sitemap-arrow {
            width: 3.5rem;
            height: 3.5rem;
            min-width: 3.5rem;
            border-radius: 1.75rem;
            border: 0.0625rem solid var(--text-label-small);
            background: transparent;
            transition: all 0.3s ease;
            display: flex;
            align-items: center;
            justify-content: center;
            flex-shrink: 0;
        }

        .sitemap-arrow svg {
            width: 1rem;
            height: 1rem;
            display: block;
            color: var(--text-body);
        }

        .sitemap-item:hover .sitemap-arrow {
            background: var(--brand-bg-light);
            border-color: var(--brand-blue);
        }

        .sitemap-divider {
            height: 0.0625rem;
            background: var(--border-light);
            margin: 0 -2rem;
        }

        /* ========================================================================
           RESPONSIVE BREAKPOINTS
           ======================================================================== */

        /* Large Desktop - 87.5625rem and above */
        @media (min-width: 87.5625rem) {
            .sitemap-hero .container {
                padding: 2.5rem var(--desktop-padding) 7.5rem;
            }

            .sitemap-content {
                padding: 2.5rem var(--desktop-padding);
            }
        }

        /* Medium Desktop - 62.0625rem to 87.5rem */
        @media (max-width: 87.5rem) and (min-width: 62.0625rem) {

            .sitemap-hero,
            .sitemap-content {
                --desktop-padding: 3.75rem;
            }

            .sitemap-hero {
                padding-bottom: 7.5rem;
            }

            .sitemap-hero .container {
                padding: 2.5rem var(--desktop-padding) 7.5rem;
            }

            .sitemap-content {
                padding: 2.5rem var(--desktop-padding);
                margin-top: -10rem;
            }
        }

        @media (max-width: 87.5rem) {
            .sitemap-hero .container {
                padding-left: var(--desktop-padding);
                padding-right: var(--desktop-padding);
            }

            .sitemap-content {
                padding-left: var(--desktop-padding);
                padding-right: var(--desktop-padding);
            }
        }

        /* Tablet & Mobile - 62rem and below */
        @media (max-width: 62rem) {

            .sitemap-hero,
            .sitemap-content {
                --desktop-padding: 1.5rem;
            }

            .sitemap-hero {
                padding-top: calc(var(--nav-height-mobile) + 2.5rem);
                padding-bottom: 11.25rem;
            }

            .sitemap-hero .container {
                padding: 2.5rem var(--desktop-padding);
                padding-bottom: 10rem;
            }

            .sitemap-title {
                font-size: 2.5rem;
                line-height: 3.25rem;
            }

            .sitemap-subtitle {
                font-size: 1.125rem;
                line-height: 1.4625rem;
            }

            .sitemap-content {
                padding: var(--desktop-padding);
                margin-top: -12.5rem;
                margin-bottom: var(--desktop-padding);
            }

            .sitemap-card {
                padding: 0 var(--desktop-padding);
            }

            .sitemap-item {
                gap: 0.75rem;
                padding: 1.125rem 0;
                width: 100%;
            }

            /* Hide icons on mobile to reduce crowding */
            .sitemap-icon {
                display: none;
            }

            .sitemap-label {
                flex: 1;
                font-size: 1.125rem;
                line-height: 1.4625rem;
            }

            /* Touch target meets WCAG 2.5.5 (44x2.75rem minimum) */
            .sitemap-arrow {
                width: 3rem;
                height: 3rem;
                min-width: 3rem;
                border-radius: 1.5rem;
                margin-left: auto;
            }

            .sitemap-arrow svg {
                width: 0.875rem;
                height: 0.875rem;
            }

            .sitemap-divider {
                margin: 0 calc(var(--desktop-padding) * -1);
            }
        }

        /* Small Mobile - 48rem and below */
        @media (max-width: 48rem) {
            .sitemap-content {
                padding: 1rem var(--desktop-padding);
            }

            .sitemap-card {
                padding: 0 1.25rem;
            }

            .sitemap-divider {
                margin: 0 -1.25rem;
            }
        }

        /* Extra Small Mobile - 30rem and below */
        @media (max-width: 30rem) {
            .sitemap-title {
                font-size: 2rem;
                line-height: 2.6rem;
            }

            .sitemap-subtitle {
                font-size: 1rem;
                line-height: 1.3rem;
            }

            .sitemap-label {
                font-size: 1rem;
                line-height: 1.3rem;
            }
        }

/* ===== inline-integrations ===== */
/* =============================================
        INTEGRATIONS PAGE SPECIFIC STYLES
        ============================================= */

    /* Hero Section - Extended for overlap effect */
    .hero-section {
      padding-top: calc(var(--nav-height) + 2.5rem);
      padding-bottom: 20rem;
      background: linear-gradient(180deg, var(--brand-blue) 51%, var(--bg-white) 100%);
      text-align: center;
      display: flex;
      flex-direction: column;
      align-items: center;
      position: relative;
      overflow: visible;
    }

    /* Integrations Section with Overlap */
    .integrations-section {
      padding: 2.5rem var(--desktop-padding);
      display: flex;
      flex-direction: column;
      align-items: center;
      gap: 2rem;
      max-width: var(--max-content-width);
      margin: -20rem auto 0;
      position: relative;
      z-index: 20;
    }

    /* Integrations Grid */
    .integrations-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 2rem;
      width: 100%;
      max-width: 70rem;
      margin: 0 auto;
    }

    .integration-card {
      background: var(--bg-white);
      border: 0.0625rem solid var(--border-light);
      border-radius: 1rem;
      padding: 1.5rem;
      display: flex;
      flex-direction: column;
      gap: 1rem;
      transition: var(--transition);
      box-shadow: 0 0.5rem 1.0625rem rgba(247, 246, 246, 0.10);
    }

    .integration-card:hover {
      box-shadow: 0 0.5rem 1.5rem rgba(0, 0, 0, 0.08);
      transform: translateY(-0.25rem);
    }

    /* Integration Logo Container */
    .integration-logo {
      width: 100%;
      height: 10rem;
      border-radius: 0.5rem;
      display: flex;
      align-items: center;
      justify-content: center;
      background: var(--bg-form);
      overflow: hidden;
    }

    .integration-logo img {
      max-width: 63%;
      max-height: 63%;
      object-fit: contain;
    }

    .integration-card h3 {
      font-size: 1.5rem;
      font-weight: 700;
      color: var(--text-dark);
      line-height: 1.3;
      margin: 0;
      overflow: hidden;
      text-overflow: ellipsis;
      display: -webkit-box;
      -webkit-line-clamp: 1;
      line-clamp: 1;
      /* Standard property for compatibility */
      -webkit-box-orient: vertical;
    }

    .integration-card p {
      font-size: 1rem;
      color: var(--text-body);
      line-height: 1.3;
      margin: 0;
    }

    /* Disclaimer */
    .disclaimer-text {
      max-width: 70rem;
      width: 100%;
      box-sizing: border-box;
      text-align: center;
      font-size: 0.6875rem;
      color: var(--cs-text);
      line-height: 1.3;
      margin: 0 auto;
      padding: 0 var(--desktop-padding);
      overflow-wrap: break-word;
      word-break: break-word;
    }

    .disclaimer-text h2 {
      font-size: 1.5rem;
      margin-bottom: 1rem;
      margin-top: 0;
      word-break: break-word;
    }

    .disclaimer-text p {
      margin: 0;
      word-break: break-word;
    }

    /* Active link colors for Integrations page */
    .navbar-custom:not(.scrolled) .nav-custom-link.active {
      color: var(--brand-bg-light);
      /* Light blue/white for active link when navbar is blue */
    }

    .navbar-custom.scrolled .nav-custom-link.active {
      color: var(--brand-blue);
      /* Brand blue for active link when navbar is white */
    }

    .navbar-custom.scrolled .nav-custom-link.active:hover {
      background: var(--brand-bg-light);
      color: var(--brand-blue);
    }

    /* =============================================
        RESPONSIVE BREAKPOINTS
        ============================================= */

    @media (max-width: 87.5rem) {
      .integrations-section {
        padding: 2.5rem 3.75rem;
      }

      .disclaimer-text {
        padding: 0 var(--desktop-padding-md);
      }
    }

    @media (max-width: 75rem) {
      .integrations-grid {
        grid-template-columns: repeat(2, 1fr);
      }

      .integrations-section {
        padding: 2.5rem 2.5rem;
      }

      .disclaimer-text {
        padding: 0 var(--desktop-padding-md);
      }
    }

    @media (max-width: 62rem) {
      .hero-section {
        padding-bottom: 15rem;
      }

      .integrations-section {
        margin-top: -15rem;
        padding: 1.5rem;
      }

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

      .integration-logo {
        height: 9.125rem;
      }

      .integration-card h3 {
        font-size: 1.125rem;
      }

      .integration-card p {
        font-size: 0.875rem;
      }

      .disclaimer-text {
        padding: 0 var(--desktop-padding-sm);
      }

      .disclaimer-text h2 {
        font-size: 1.25rem;
        margin-bottom: 0.75rem;
      }

      .disclaimer-text p {
        font-size: 0.8125rem;
      }
    }

    .integration-card h3 {
      overflow: hidden;
      text-overflow: ellipsis;
      display: -webkit-box;
      -webkit-line-clamp: 1;
      line-clamp: 1;
      -webkit-box-orient: vertical;
    }

    .integration-card p {
      overflow: hidden;
      text-overflow: ellipsis;
      display: -webkit-box;
      -webkit-line-clamp: 4;
      line-clamp: 4;
      -webkit-box-orient: vertical;
    }

    .integration-logo svg {
      width: 63%;
      height: 63%;
    }

    .integration-card .btn-explore {
      width: 100%;
      margin-top: 1rem;
    }

    /* =============================================
           CTA SECTION STYLES
           ============================================= */
    .cta-section {
      background-image: url('../assets/images/bgd-cta.webp');
      background-size: cover;
      background-position: center center;
      background-repeat: no-repeat;
      display: flex;
      gap: 2.5rem;
      align-items: center;
      justify-content: center;
      overflow: clip;
      padding: 5rem 0;
      position: relative;
      width: 100%;
      min-height: 37.5rem;
    }

    .cta-section-inner {
      width: 100%;
      max-width: 70rem;
      margin: 0 auto;
      padding: 0 1.25rem;
      display: flex;
      gap: 2.5rem;
      align-items: center;
      justify-content: center;
      position: relative;
      z-index: 2;
    }

    .cta-content-wrapper {
      display: flex;
      gap: 2.5rem;
      align-items: center;
      justify-content: center;
      max-width: 100%;
      width: 100%;
      margin: 0 auto;
    }

    .cta-text-content {
      display: flex;
      flex-direction: column;
      gap: 1.25rem;
      align-items: flex-start;
      position: relative;
      flex: 1;
      max-width: 33.75rem;
    }

    .cta-title {
      font-family: 'Sora', sans-serif;
      font-weight: 700;
      line-height: 1.3;
      position: relative;
      color: var(--cs-blue-dark);
      font-size: 2.5rem;
      width: 100%;
      margin: 0;
    }

    .cta-description {
      font-family: 'Sora', sans-serif;
      font-weight: 400;
      line-height: 1.5;
      position: relative;
      color: var(--cs-text);
      font-size: 1.5rem;
      width: 100%;
      margin: 0;
    }

    .cta-buttons {
      display: flex;
      gap: 0.75rem;
      align-items: flex-start;
      position: relative;
    }

    .btn-cta {
      display: flex;
      gap: 0.5rem;
      height: 3.5rem;
      align-items: center;
      justify-content: center;
      padding: 1rem;
      position: relative;
      border-radius: 0.5rem;
      width: 12.5rem;
      border: 0.0625rem solid var(--border-color);
      box-shadow: 0 0.25rem 0.125rem 0 rgba(188, 188, 188, 0);
      font-family: 'Sora', sans-serif;
      font-weight: 600;
      line-height: 1.3;
      font-size: 1.125rem;
      white-space: nowrap;
      text-decoration: none;
      transition: all 0.3s ease;
    }

    .btn-cta.primary {
      background-color: var(--cs-white);
      color: var(--text-body);
    }

    .btn-cta.primary:hover {
      background-color: var(--bg-gray-light);
    }

    .cta-image-container {
      flex: 1;
      max-width: 33.75rem;
      flex-shrink: 0;
      display: flex;
      align-items: center;
      justify-content: center;
    }

    .cta-image-wrapper {
      width: 100%;
      overflow: hidden;
      border-radius: 0.75rem;
      position: relative;
    }

    .cta-image-wrapper .cta-bg-shape {
      width: 90%;
      height: 95%;
      left: 5%;
      top: 5%;
      position: absolute;
      background: var(--brand-blue);
      border-radius: 0.75rem;
    }

    .cta-image-wrapper img {
      width: 100%;
      height: auto;
      display: block;
      position: relative;
      border-radius: 1rem;
    }

    @media (max-width: 87.5rem) {
      .cta-section-inner {
        padding: 0 1.25rem;
      }
    }

    @media (max-width: 75rem) {
      .cta-content-wrapper {
        gap: 2rem;
      }

      .cta-image-container {
        width: 30rem;
      }
    }

    @media (max-width: 68.75rem) {
      .cta-image-container {
        width: 27.5rem;
      }
    }

    @media (max-width: 62rem) {
      .cta-section {
        padding: 2.5rem 1.25rem;
        min-height: 0;
        background-attachment: scroll;
      }

      .cta-section::before {
        background: rgba(230, 241, 249, 0.95);
      }

      .cta-section-inner {
        padding: 0 1.25rem;
        flex-direction: column;
        gap: 1.5rem;
      }

      .cta-content-wrapper {
        flex-direction: column;
        gap: 1.5rem;
      }

      .cta-image-container {
        order: -1;
        width: 100%;
        max-width: 100%;
        position: relative;
        top: auto;
        margin-bottom: 0.5rem;
      }

      .cta-image-wrapper {
        width: 100%;
        height: auto;
      }

      .cta-text-content {
        width: 100%;
        max-width: 100%;
        gap: 1rem;
      }

      .cta-title {
        font-size: 1.75rem;
        margin-top: 0.5rem;
      }

      .cta-description {
        font-size: 1rem;
        line-height: 1.5;
      }

      .cta-buttons {
        flex-direction: column;
        width: 100%;
        gap: 0.75rem;
      }

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

    @media (max-width: 48rem) {
      .integrations-grid {
        grid-template-columns: 1fr;
      }

      .cta-section {
        padding: 2rem 1.25rem;
      }

      .cta-section-inner {
        gap: 1.25rem;
      }

      .cta-content-wrapper {
        gap: 1.25rem;
      }

      .cta-image-container {
        margin-bottom: 0.375rem;
      }

      .cta-text-content {
        gap: 0.75rem;
      }

      .cta-title {
        font-size: 1.625rem;
        margin-top: 0.375rem;
      }

      .disclaimer-text {
        padding: 0 1rem;
      }

      .disclaimer-text h2 {
        font-size: 1.125rem;
        margin-bottom: 0.625rem;
      }

      .disclaimer-text p {
        font-size: 0.75rem;
        line-height: 1.4;
      }

      .cta-buttons {
        gap: 0.625rem;
      }
    }

    @media (max-width: 36rem) {
      .cta-section {
        padding: 1.5rem 1rem;
      }

      .cta-section-inner {
        padding: 0 1rem;
        gap: 1.5rem;
      }

      .cta-content-wrapper {
        gap: 1rem;
      }

      .cta-title {
        font-size: 1.5rem;
        margin-top: 0.25rem;
      }

      .cta-description {
        font-size: 0.9375rem;
      }

      .cta-text-content {
        gap: 0.75rem;
      }

      .cta-buttons {
        gap: 0.5rem;
      }

      .btn-cta {
        height: 2.75rem;
        padding: 0.625rem 1rem;
        font-size: 0.9375rem;
      }

      .disclaimer-text {
        padding: 0 0.75rem;
      }

      .disclaimer-text h2 {
        font-size: 1rem;
        margin-bottom: 0.5rem;
      }

      .disclaimer-text p {
        font-size: 0.6875rem;
        line-height: 1.5;
      }
    }

    /* Ultra-small viewports (20rem) - Critical overflow prevention */
    @media (max-width: 23.75rem) {
      .disclaimer-text {
        padding: 0 0.5rem;
        max-width: 100vw;
      }

      .disclaimer-text h2 {
        font-size: 0.9375rem;
        margin-bottom: 0.375rem;
        line-height: 1.2;
      }

      .disclaimer-text p {
        font-size: 0.625rem;
        line-height: 1.5;
        letter-spacing: -0.0187rem;
      }
    }

/* ===== inline-contact ===== */
/* =============================================
        CONTACT PAGE SPECIFIC STYLES ONLY
        ============================================= */

        /* Additional CSS Variables for Forms */
        :root {
            --text-helper: var(--text-helper);
            --text-label-small: var(--text-label-small);
            --text-prefix: var(--text-prefix);
            --bg-input: var(--bg-form);
            --bg-input-hover: var(--bg-input-hover);
            --error-red: var(--error-red);
            --error-bg: var(--error-bg);
            --error-text: var(--error-text);
            --success-green: var(--success-green);
            --success-bg: var(--success-bg);
            --success-text: var(--success-text);
        }

        /* Active link colors for Contact page */
        .navbar-custom:not(.scrolled) .nav-custom-link.active {
            color: var(--brand-bg-light);
        }

        .navbar-custom.scrolled .nav-custom-link.active {
            color: var(--brand-blue);
        }

        .navbar-custom.scrolled .nav-custom-link.active:hover {
            background: var(--brand-bg-light);
            color: var(--brand-blue);
        }

        /* Hero Section - matches sitemap.html */
        .hero-section {
            padding-top: calc(5.5rem + 2.5rem);
            padding-bottom: 20rem;
            background: linear-gradient(180deg, var(--brand-blue) 51%, var(--bg-white) 100%);
            text-align: center;
            position: relative;
            overflow: visible;
            z-index: 1;
        }

        .hero-section .container {
            max-width: 70rem;
            margin: 0 auto;
            padding: 2.5rem var(--desktop-padding) 7.5rem;
            display: flex;
            flex-direction: column;
            align-items: center;
            gap: 1.5rem;
        }

        .hero-title {
            font-size: 3.5rem;
            font-weight: 700;
            line-height: 4.55rem;
            color: var(--cs-white);
            margin: 0;
        }

        .hero-subtitle {
            font-size: 1.5rem;
            font-weight: 400;
            line-height: 1.95rem;
            color: var(--bg-white);
            max-width: 56.25rem;
            margin: 0;
        }

        /* Tag Container */
        .tag-container {
            display: flex;
            justify-content: center;
            margin-bottom: 2rem;
        }

        /* Contact Section with Overlap */
        .contact-section {
            padding: 2.5rem var(--desktop-padding);
            margin-top: -22.5rem;
            position: relative;
            z-index: 20;
            max-width: var(--max-content-width);
            margin-left: auto;
            margin-right: auto;
            transition: transform 0.24s ease;
            will-change: transform;
        }

        .contact-card {
            background: var(--brand-blue);
            border-radius: 1.5rem;
            padding: 4.5rem 5rem 3rem;
            box-shadow:
                0 0.5rem 1.0625rem rgba(0, 0, 0, 0.1),
                0 1.875rem 1.875rem rgba(0, 0, 0, 0.09);
            width: 100%;
            max-width: 70rem;
            margin: 0 auto;
            position: relative;
        }

        /* NEW: Two-column layout wrapper */
        .contact-top {
            display: flex;
            align-items: flex-start;
            justify-content: space-between;
            gap: 2.5rem;
        }

        .contact-card::before {
            content: '';
            position: absolute;
            left: 0;
            top: -1.75rem;
            width: 100%;
            height: 10rem;
            pointer-events: none;
            background: radial-gradient(closest-side, rgba(var(--brand-blue-rgb), 0.08), transparent 40%);
            filter: blur(1.5rem);
            z-index: -1;
            border-radius: 1rem;
        }

        /* Contact Info */
        .contact-info {
            flex: 1;
            /* Changed from flex: 1 */
            max-width: 26.25rem;
            display: flex;
            flex-direction: column;
            gap: 1.5rem;
        }

        .contact-main-title {
            font-size: 2.5rem;
            font-weight: 700;
            color: var(--bg-white);
            line-height: 1.3;
            margin: 0;
        }

        .contact-description {
            font-size: 1.125rem;
            color: var(--cs-white);
            line-height: 1.3;
            margin: 0;
        }

        /* Form Fields - COMPLETE STYLES */
        .form-fields {
            display: flex;
            flex-direction: column;
            gap: 1.25rem;
        }

        .field-wrapper {
            flex: 1;
            display: flex;
            flex-direction: column;
            gap: 0.375rem;
            position: relative;
            min-height: 5rem;
        }

        .input-container {
            position: relative;
            height: 4rem;
            background: var(--bg-white);
            /* Must be white, not var() */
            border-radius: 0.375rem;
            padding: 0.75rem 1rem;
            transition: background 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease;
            border: 0.0625rem solid transparent;
            cursor: text;
            display: flex;
            flex-direction: column;
            justify-content: center;
            overflow: hidden;
        }

        .input-field {
            width: 100%;
            height: 1.3125rem;
            border: none;
            background: transparent;
            font-family: 'Sora', sans-serif;
            font-size: 1rem;
            font-weight: 400;
            line-height: 1.3rem;
            color: var(--text-dark);
            outline: none;
            padding: 0;
            margin: 0;
            -webkit-appearance: none;
            appearance: none;
            z-index: 2;
            caret-color: var(--brand-blue);
            opacity: 0;
            transition: opacity 0.1s ease;
        }

        .input-field::placeholder {
            color: transparent;
        }

        .input-field::selection {
            background: rgba(0, 114, 198, 0.15);
        }

        .input-label {
            position: absolute;
            left: 1rem;
            top: 50%;
            transform: translateY(-50%);
            pointer-events: none;
            transition: all 0.2s cubic-bezier(0.2, 0, 0.2, 1);
            color: var(--text-muted);
            font-weight: 400;
            font-size: 1rem;
            line-height: 1.3rem;
            z-index: 1;
            transform-origin: left top;
            white-space: nowrap;
        }

        .input-label .required {
            color: var(--error-red);
        }

        .input-field:focus,
        .input-field:not(:placeholder-shown),
        .input-container.has-value .input-field {
            opacity: 1;
            margin-top: 1.125rem;
        }

        .input-field:focus~.input-label,
        .input-field:not(:placeholder-shown)~.input-label,
        .input-container.has-value .input-label {
            top: 0.75rem;
            transform: translateY(0) scale(0.6875);
            font-weight: 400;
            color: var(--text-dark);
            line-height: 0.8938rem;
        }

        .input-field:focus~.input-label {
            color: var(--brand-blue);
        }

        .input-field:-webkit-autofill {
            opacity: 1;
            margin-top: 1.125rem;
        }

        .input-field:-webkit-autofill~.input-label {
            top: 0.75rem;
            transform: translateY(0) scale(0.6875);
            color: var(--text-dark);
        }

        .input-field:-webkit-autofill,
        .input-field:-webkit-autofill:hover,
        .input-field:-webkit-autofill:focus {
            -webkit-text-fill-color: var(--text-dark);
            -webkit-box-shadow: 0 0 0 62.5rem var(--bg-white) inset;
            transition: background-color 5000s ease-in-out 0s;
        }

        .helper-text {
            font-size: 0.75rem;
            font-weight: 400;
            line-height: 0.975rem;
            color: var(--cs-white);
            transition: color 0.2s ease;
            min-height: 0.975rem;
            padding-left: 0.25rem;
        }

        .input-container:hover:not(.disabled) {
            background: var(--bg-white);
            box-shadow: 0 0.0625rem 0.25rem rgba(19, 19, 19, 0.08);
        }

        .input-container:has(.input-field:focus) {
            background: var(--bg-white);
            border-color: var(--brand-blue);
            box-shadow: 0 0.25rem 0.75rem rgba(19, 19, 19, 0.12);
        }

        .field-wrapper.error .input-container {
            background: var(--error-bg);
            border-color: var(--error-red);
        }

        .field-wrapper.error .input-label {
            color: var(--error-red);
        }

        .field-wrapper.error .input-field:focus~.input-label,
        .field-wrapper.error .input-field:not(:placeholder-shown)~.input-label,
        .field-wrapper.error .input-container.has-value .input-label {
            color: var(--error-red);
        }

        .field-wrapper.error .helper-text {
            color: var(--error-border);
        }

        .field-wrapper.error .input-field:-webkit-autofill,
        .field-wrapper.error .input-field:-webkit-autofill:hover,
        .field-wrapper.error .input-field:-webkit-autofill:focus {
            -webkit-box-shadow: 0 0 0 62.5rem var(--error-bg) inset;
        }

        /* Select dropdown */
        .select-container {
            position: relative;
        }

        .select-container .input-field {
            appearance: none;
            -webkit-appearance: none;
            cursor: pointer;
            padding-right: 2.5rem;
        }

        .select-container::after {
            content: '';
            position: absolute;
            right: 1rem;
            top: 50%;
            transform: translateY(-50%);
            width: 1rem;
            height: 1rem;
            pointer-events: none;
            background-image: url("data:image/svg+xml,%3Csvg width='16' height='16' viewBox='0 0 16 16' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M3.61 6L8 10.39L12.39 6' stroke='%23333333' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
            background-repeat: no-repeat;
            background-position: center;
            z-index: 3;
            transition: transform 0.2s ease;
        }

        .input-container:has(.input-field:focus).select-container::after {
            transform: translateY(-50%) rotate(180deg);
        }

        .field-wrapper.error .select-container::after {
            background-image: url("data:image/svg+xml,%3Csvg width='16' height='16' viewBox='0 0 16 16' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M3.61 6L8 10.39L12.39 6' stroke='%23D62828' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
        }

        /* Textarea */
        .textarea-container {
            height: 9.5rem;
            min-height: 9.5rem;
            align-items: flex-start;
            padding-top: 0.75rem;
        }

        .textarea-container .input-field {
            height: auto;
            min-height: 7rem;
            max-height: 7rem;
            resize: none;
            margin-top: 1.125rem;
            opacity: 1;
            overflow-y: auto;
        }

        .textarea-container .input-label {
            top: 1.25rem;
            transform: translateY(0);
        }

        .textarea-container .input-field:focus~.input-label,
        .textarea-container .input-field:not(:placeholder-shown)~.input-label,
        .textarea-container.has-value .input-label {
            top: 0.75rem;
            transform: scale(0.6875);
        }

        /* Submit Button */
        .submit-btn {
            height: 3.5rem;
            width: 100%;
            background: var(--bg-white);
            color: var(--text-dark);
            border: 0.0625rem solid var(--border-color);
            border-radius: 0.5rem;
            font-size: 1.125rem;
            font-weight: 700;
            font-family: 'Karla', sans-serif;
            display: inline-flex;
            align-items: center;
            justify-content: center;
            cursor: pointer;
            transition: var(--transition);
            padding: 1rem 1.5rem;
            line-height: 1;
        }

        .submit-btn:hover:not(:disabled) {
            background: var(--bg-gray-light);
            transform: translateY(-0.125rem);
            box-shadow: 0 0.25rem 0.75rem rgba(0, 0, 0, 0.1);
        }

        .submit-btn:disabled {
            opacity: 0.5;
            cursor: not-allowed;
        }

        .submit-btn.loading::after {
            content: '';
            width: 1rem;
            height: 1rem;
            border: 0.125rem solid rgba(19, 19, 19, 0.3);
            border-top-color: var(--text-dark);
            border-radius: 50%;
            animation: spin 0.6s linear infinite;
            margin-left: 0.75rem;
        }

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

        /* reCAPTCHA Container */
        .recaptcha-container {
            display: flex;
            justify-content: flex-start;
            /* Left-aligned in left column */
            min-height: 4.875rem;
            margin-top: 0.5rem;
        }

        .form-wrapper {
            flex: 1;
        }

        .sr-only {
            position: absolute;
            width: 0.0625rem;
            height: 0.0625rem;
            padding: 0;
            margin: -0.0625rem;
            overflow: hidden;
            clip: rect(0, 0, 0, 0);
            white-space: nowrap;
            border-width: 0;
        }

        /* Responsive Design */
        @media (max-width: 87.5rem) {
            .hero-section .container {
                padding: 2.5rem var(--desktop-padding) 7.5rem;
            }

            .contact-section {
                padding: 2.5rem var(--desktop-padding);
            }
        }

        @media (max-width: 75rem) {
            .contact-card {
                padding: 3rem 2.5rem;
            }

            .contact-section {
                padding: 2.5rem var(--desktop-padding);
            }
        }

        @media (max-width: 62rem) {
            .hero-section {
                padding-top: calc(4.5rem + 2.5rem);
                padding-bottom: 11.25rem;
            }

            .hero-section .container {
                padding: 2.5rem var(--desktop-padding);
                padding-bottom: 10rem;
            }

            .hero-title {
                font-size: 2.5rem;
                line-height: 3.25rem;
            }

            .hero-subtitle {
                font-size: 1.125rem;
                line-height: 1.4625rem;
            }

            .contact-section {
                padding: var(--desktop-padding);
                margin-top: -12.5rem;
                margin-bottom: var(--desktop-padding);
            }

            .contact-card {
                padding: 2rem 1.5rem;
            }

            .contact-top {
                flex-direction: column;
                gap: 2rem;
            }

            .contact-info {
                max-width: 100%;
            }

            .contact-main-title {
                font-size: 2rem;
            }

            .form-fields {
                padding-bottom: 7.5rem;
            }

            .recaptcha-container {
                justify-content: center;
                bottom: 0.5rem;
                right: 0.5rem;
            }
        }

        @media (max-width: 48rem) {
            .hero-title {
                font-size: 2rem;
                line-height: 2.6rem;
            }

            .hero-subtitle {
                font-size: 1rem;
                line-height: 1.3rem;
            }
        }

/* ===== inline-home-cta ===== */
/* =============================================
       CTA SECTION STYLES
       ============================================= */
    .cta-section {
      background-image: url('/assets/images/bgd-cta.webp');
      background-size: cover;
      background-position: center center;
      background-repeat: no-repeat;
      display: flex;
      gap: 2.5rem;
      align-items: center;
      justify-content: center;
      overflow: clip;
      padding: 5rem 0;
      position: relative;
      width: 100%;
      min-height: 37.5rem;
    }

    .cta-section-inner {
      width: 100%;
      max-width: 70rem;
      margin: 0 auto;
      padding: 0 1.25rem;
      display: flex;
      gap: 2.5rem;
      align-items: center;
      justify-content: center;
      position: relative;
      z-index: 2;
    }

    .cta-content-wrapper {
      display: flex;
      gap: 2.5rem;
      align-items: center;
      justify-content: center;
      max-width: 100%;
      width: 100%;
      margin: 0 auto;
    }

    .cta-text-content {
      display: flex;
      flex-direction: column;
      gap: 1.25rem;
      align-items: flex-start;
      position: relative;
      flex: 1;
      max-width: 33.75rem;
    }

    .cta-title {
      font-family: 'Sora', sans-serif;
      font-weight: 700;
      line-height: 1.3;
      position: relative;
      color: #003053;
      font-size: 2.5rem;
      width: 100%;
      margin: 0;
    }

    .cta-description {
      font-family: 'Sora', sans-serif;
      font-weight: 400;
      line-height: 1.5;
      position: relative;
      color: #1e293b;
      font-size: 1.5rem;
      width: 100%;
      margin: 0;
    }

    .cta-buttons {
      display: flex;
      gap: 0.75rem;
      align-items: flex-start;
      position: relative;
    }

    .btn-cta {
      display: flex;
      gap: 0.5rem;
      height: 3.5rem;
      align-items: center;
      justify-content: center;
      padding: 1rem;
      position: relative;
      border-radius: 0.5rem;
      width: 12.5rem;
      border: 0.0625rem solid #dddcdb;
      box-shadow: 0 0.25rem 0.125rem 0 rgba(188, 188, 188, 0);
      font-family: 'Sora', sans-serif;
      font-weight: 600;
      line-height: 1.3;
      font-size: 1.125rem;
      white-space: nowrap;
      text-decoration: none;
      transition: all 0.3s ease;
    }

    .btn-cta.primary {
      background-color: #fefefe;
      color: #333;
    }

    .btn-cta.primary:hover {
      background-color: #f0f0f0;
    }

    .btn-cta.secondary {
      background: transparent;
      color: #333;
    }

    .btn-cta.secondary:hover {
      background-color: rgba(0, 0, 0, 0.05);
    }

    .cta-image-container {
      flex: 1;
      max-width: 33.75rem;
      flex-shrink: 0;
      display: flex;
      align-items: center;
      justify-content: center;
    }

    .cta-image-wrapper {
      width: 100%;
      overflow: hidden;
    }

    .cta-image-wrapper img {
      width: 100%;
      height: auto;
      display: block;
    }

    @media (max-width: 87.5rem) {
      .cta-section-inner {
        padding: 0 1.25rem;
      }
    }

    @media (max-width: 75rem) {
      .cta-content-wrapper {
        gap: 2rem;
      }

      .cta-image-container {
        width: 30rem;
      }
    }

    @media (max-width: 68.75rem) {
      .cta-image-container {
        width: 27.5rem;
      }
    }

    @media (max-width: 62rem) {
      .cta-section {
        padding: 2.5rem 1.25rem;
        min-height: 0;
        background-attachment: scroll;
      }

      .cta-section::before {
        background: rgba(230, 241, 249, 0.95);
      }

      .cta-section-inner {
        padding: 0 1.25rem;
        flex-direction: column;
        gap: 1.5rem;
      }

      .cta-content-wrapper {
        flex-direction: column;
        gap: 1.5rem;
      }

      .cta-image-container {
        order: -1;
        width: 100%;
        max-width: 100%;
        position: relative;
        top: auto;
        margin-bottom: 0.5rem;
      }

      .cta-image-wrapper {
        width: 100%;
        height: auto;
      }

      .cta-image-wrapper img {
        width: 100%;
        height: auto;
      }

      .cta-text-content {
        width: 100%;
        max-width: 100%;
        gap: 1rem;
      }

      .cta-title {
        font-size: 1.75rem;
        margin-top: 0.5rem;
      }

      .cta-description {
        font-size: 1rem;
        line-height: 1.5;
      }

      .cta-buttons {
        flex-direction: column;
        width: 100%;
        gap: 0.75rem;
      }

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

    @media (max-width: 48rem) {
      .cta-section {
        padding: 2rem 1.25rem;
      }

      .cta-section-inner {
        gap: 1.25rem;
      }

      .cta-content-wrapper {
        gap: 1.25rem;
      }

      .cta-image-container {
        margin-bottom: 0.375rem;
      }

      .cta-text-content {
        gap: 0.75rem;
      }

      .cta-title {
        font-size: 1.625rem;
        margin-top: 0.375rem;
      }

      .cta-buttons {
        gap: 0.625rem;
      }
    }

    @media (max-width: 36rem) {
      .cta-section {
        padding: 1.5rem 1rem;
      }

      .cta-section-inner {
        padding: 0 1rem;
        gap: 1.5rem;
      }

      .cta-content-wrapper {
        gap: 1rem;
      }

      .cta-title {
        font-size: 1.5rem;
        margin-top: 0.25rem;
      }

      .cta-description {
        font-size: 0.9375rem;
      }

      .cta-text-content {
        gap: 0.75rem;
      }

      .cta-buttons {
        gap: 0.5rem;
      }

      .btn-cta {
        height: 2.75rem;
        padding: 0.625rem 1rem;
        font-size: 0.9375rem;
      }
    }

    @media (max-width: 25rem) {
      .cta-section {
        padding: 1.25rem 0.75rem;
      }

      .cta-section-inner {
        gap: 1.25rem;
      }

      .cta-content-wrapper {
        gap: 0.75rem;
      }

      .cta-title {
        font-size: 1.375rem;
        margin-top: 0.125rem;
      }

      .cta-description {
        font-size: 0.875rem;
      }

      .cta-text-content {
        gap: 0.5rem;
      }

      .cta-buttons {
        gap: 0.5rem;
      }

      .btn-cta {
        height: 2.5rem;
        padding: 0.5rem 0.75rem;
        font-size: 0.875rem;
      }
    }

    @media (max-width: 22.5rem) {
      .cta-section {
        padding: 1rem 0.75rem;
      }

      .cta-section-inner {
        padding: 0 0.75rem;
        gap: 1rem;
      }

      .cta-content-wrapper {
        gap: 0.75rem;
      }

      .cta-title {
        font-size: 1.25rem;
        margin-top: 0.125rem;
      }

      .cta-description {
        font-size: 0.8125rem;
        line-height: 1.4;
      }

      .cta-text-content {
        gap: 0.5rem;
      }

      .btn-cta {
        height: 2.375rem;
        padding: 0.375rem 0.75rem;
        font-size: 0.8125rem;
      }
    }

/* ===== css/pages/home.css ===== */
/* Developer Handoff:
   File: css/pages/home.css
   Role: page-specific-styles
   Runtime: served-to-browser
   Maintainer Notes: Keep selectors aligned with markup and avoid redefining global tokens outside base/variables.css.
*/
/* =============================================
   HOME PAGE - HERO SECTION
   ============================================= */

/* Hero Section - Desktop Default */
.hero-section {
  width: 100%;
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: calc(var(--nav-height) + 2.5rem) 10rem 0;
  gap: 5rem;
}

.hero-bg {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 87.5rem;
  background: linear-gradient(180deg, var(--brand-blue) 51%, var(--bg-white) 100%);
  pointer-events: none;
}

.hero-content {
  align-self: stretch;
  padding: 2.5rem 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.5rem;
  position: relative;
  z-index: 1;
  text-align: center;
}

/* Hero Image Container */
.hero-image {
  position: relative;
  z-index: 1;
  width: 70rem;
  max-width: 100%;
}

.hero-image img,
.hero-image-img {
  width: 100%;
  height: auto;
  display: block;
}

#integrations-image {
  width: 70rem;
  max-width: 100%;
  margin: 0 auto;
}

#integrations-image img {
  width: 100%;
  height: auto;
}

#integrations {
  overflow-x: hidden;
}

/* =============================================
   HOME PAGE RESPONSIVE STYLES
   ============================================= */

/* Large Desktop (120rem and above) */
@media (min-width: 120rem) {
  .hero-section {
    padding-left: 15rem;
    padding-right: 15rem;
  }

  .hero-content {
    padding: 4rem 0;
    gap: 2rem;
  }

  .hero-image {
    width: 90rem;
  }
}

/* Large Desktop (87.5rem and below) */
@media (max-width: 87.5rem) {
  .hero-section {
    padding-left: 5rem;
    padding-right: 5rem;
    gap: 3.5rem;
  }

  .hero-bg {
    height: 65.5rem;
  }

  .hero-image {
    width: 65rem;
  }
}

/* Desktop (75rem and below) */
@media (max-width: 75rem) {
  .hero-section {
    padding-left: 5rem;
    padding-right: 5rem;
    gap: 3rem;
  }

  .hero-bg {
    height: 65.5rem;
  }

  .hero-image {
    width: 52rem;
  }
}

/* Tablet (62rem and below) */
@media (max-width: 62rem) {
  .hero-section {
    padding: calc(var(--nav-height-mobile) + 2.5rem) 4rem 0;
    gap: 3rem;
  }

  .hero-bg {
    height: 57rem;
  }

  .hero-image {
    width: 52rem;
  }

  #integrations-image {
    width: 52rem;
    max-width: 100%;
    margin: 0 auto;
  }
}

/* Tablet (48rem and below) */
@media (max-width: 48rem) {
  .hero-section {
    padding: calc(var(--nav-height-mobile) + 1.5rem) 1.5rem 0;
    gap: 1.5rem;
  }

  .hero-bg {
    height: 51rem;
  }

  .hero-image {
    width: 40rem;
  }

  #integrations-image {
    width: 100%;
    max-width: 100%;
    margin: 0 auto;
    transform: scale(1.15);
  }
}

/* Mobile (30rem and below) */
@media (max-width: 30rem) {
  .hero-section {
    padding: calc(var(--nav-height-mobile) + 1.5rem) 1.5rem 0;
    gap: 1.5rem;
  }

  .hero-bg {
    height: 60rem;
  }

  .hero-image {
    width: 26.25rem;
  }

  #integrations-image {
    width: 100%;
    max-width: 100%;
    margin: 0 auto;
    transform: scale(1.4);
  }

  #integrations-image img {
    width: 100%;
    height: auto;
  }
}

/* ===== css/pages/features.css ===== */
/* Developer Handoff:
   File: css/pages/features.css
   Role: page-specific-styles
   Runtime: served-to-browser
   Maintainer Notes: Keep selectors aligned with markup and avoid redefining global tokens outside base/variables.css.
*/
/* =============================================
   FEATURES PAGE
   ============================================= */

/* Active link colors for Features page */
.navbar-custom:not(.scrolled) .nav-custom-link.active {
  color: var(--brand-bg-light);
}

.navbar-custom.scrolled .nav-custom-link.active {
  color: var(--brand-blue);
}

.navbar-custom.scrolled .nav-custom-link.active:hover {
  background: var(--brand-bg-light);
  color: var(--brand-blue);
}

/* =============================================
   HERO SECTION
   ============================================= */
.features-hero {
  padding-top: calc(var(--nav-height) + 2.5rem);
  padding-bottom: 20rem !important;
  background: linear-gradient(180deg, var(--brand-blue) 51%, var(--bg-white) 100%);
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  position: relative;
  overflow: visible;
}

.features-hero .container {
  max-width: 70rem;
  margin: 0 auto;
  padding: 2.5rem var(--desktop-padding) 7.5rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.5rem;
}

.features-hero-title {
  color: var(--cs-white);
  font-size: 3.5rem;
  font-weight: 700;
  line-height: 1.3;
  margin: 0;
}

.features-hero-subtitle {
  color: var(--cs-white);
  font-size: 1.5rem;
  line-height: 1.3;
  max-width: 56.25rem;
  margin: 0;
}

/* =============================================
   FEATURED IMAGE
   ============================================= */
.featured-image-section {
  padding: 2.5rem var(--desktop-padding);
  margin-top: -22.5rem;
  position: relative;
  z-index: 20;
  max-width: var(--max-content-width);
  margin-left: auto;
  margin-right: auto;
}

.featured-image-container {
  position: relative;
  width: 100%;
  max-width: 70rem;
  margin: 0 auto;
}

.featured-image-container img {
  width: 100%;
  height: auto;
  display: block;
}

/* =============================================
   TAB NAVIGATION
   ============================================= */
.features-tabs-wrapper {
  width: 100%;
  position: sticky;
  top: var(--nav-height);
  z-index: 1050;
  background: var(--bg-white);
  transition: top 0.3s ease;
  border-bottom: 0.0625rem solid var(--border-color);
}

.features-tabs-wrapper.stuck {
  top: 0;
}

.features-tabs {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  width: 100%;
  max-width: var(--max-content-width);
  padding: 0.75rem var(--desktop-padding);
  margin: 0 auto;
}

.tab-item {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.625rem;
  padding: 0.5rem 0.75rem;
  border-bottom: 0.125rem solid transparent;
  cursor: pointer;
  transition: all 0.3s ease;
  text-decoration: none;
  min-height: 4.5rem;
  color: var(--text-body);
}

.tab-item:hover {
  color: var(--brand-blue);
}

.tab-item.active {
  border-bottom-color: var(--brand-blue);
  color: var(--brand-blue);
}

.tab-icon {
  width: 1.5rem;
  height: 1.5rem;
  position: relative;
}

.tab-icon svg {
  width: 1.5rem;
  height: 1.5rem;
  transition: all 0.3s ease;
}

.tab-item span {
  font-size: 0.875rem;
  font-weight: 600;
  text-align: center;
  line-height: 1.2;
  display: block;
  min-height: 2.125rem;
}

/* =============================================
   CONTENT SECTIONS
   ============================================= */
.content-section {
  width: 100%;
  max-width: var(--max-content-width);
  padding: 5rem var(--desktop-padding);
  margin: 0 auto;
}

.content-section.gray-bg {
  background-color: var(--bg-form);
  max-width: 100%;
  padding-left: 0;
  padding-right: 0;
}

.content-section.gray-bg > * {
  max-width: var(--max-content-width);
  margin-left: auto;
  margin-right: auto;
  padding-left: var(--desktop-padding);
  padding-right: var(--desktop-padding);
}

.content-section.blue-bg {
  background-color: var(--brand-blue);
  max-width: 100%;
  padding-left: 0;
  padding-right: 0;
}

.content-section.blue-bg > * {
  max-width: var(--max-content-width);
  margin-left: auto;
  margin-right: auto;
  padding-left: var(--desktop-padding);
  padding-right: var(--desktop-padding);
}

.content-section.blue-bg .feature-content h3,
.content-section.blue-bg .feature-content p,
.content-section.blue-bg .benefit-item span {
  color: var(--cs-white);
}

.section-header {
  text-align: center;
  margin-bottom: 2.5rem;
}

.section-header h2 {
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 1rem;
  line-height: 1.3;
}

.section-header p {
  font-size: 1.5rem;
  color: var(--text-body);
  line-height: 1.3;
}

/* Feature Row */
.feature-row {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 2.5rem;
  margin-bottom: 2.5rem;
  max-width: 70rem;
  margin-left: auto;
  margin-right: auto;
  min-height: 25rem;
}

.feature-row:last-child {
  margin-bottom: 0;
}

.feature-row.reversed-layout {
  flex-direction: row-reverse;
}

.feature-image {
  width: 33.75rem;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}

.feature-image img {
  width: 100%;
  height: auto;
  display: block;
}

.feature-content {
  flex: 1;
  max-width: 70rem;
  margin-left: auto;
  margin-right: auto;
  display: flex;
  flex-direction: column;
  justify-content: center;
  height: 100%;
}

.feature-content h3 {
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 1.5rem;
  line-height: 1.3;
}

.feature-content p {
  font-size: 1.5rem;
  color: var(--text-body);
  line-height: 1.3;
  margin-bottom: 1rem;
}

.feature-content p:last-child {
  margin-bottom: 0;
}

/* Benefits Row */
.benefits-list {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 1.5rem;
  padding: 2.5rem 0;
  max-width: 70rem;
  margin: 0 auto;
}

.benefit-item {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.benefit-item .benefit-icon {
  width: 1.375rem;
  height: 1.375rem;
  flex-shrink: 0;
}

.benefit-item .benefit-icon svg {
  width: 1.375rem;
  height: 1.375rem;
}

.benefit-item span {
  font-size: 1.125rem;
  color: var(--text-body);
  line-height: 1.3;
}

/* Two-column benefits with divider */
.benefits-columns {
  display: flex;
  align-items: flex-start;
  justify-content: center;
  gap: 2.5rem;
  padding: 1.5rem 0;
  max-width: 70rem;
  margin: 0 auto;
}

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

.benefits-column .benefit-item {
  align-items: flex-start;
}

.benefits-column .benefit-item .benefit-icon {
  margin-top: 0.125rem;
}

.benefits-divider {
  width: 0.0625rem;
  align-self: stretch;
  background-color: var(--border-color);
  border-radius: 0.0625rem;
}

/* Benefits with description (text left + benefits right with divider) */
.benefits-with-desc {
  display: flex;
  align-items: flex-start;
  justify-content: center;
  gap: 2.5rem;
  padding: 1.5rem 0;
  max-width: 70rem;
  margin: 0 auto;
}

.benefits-desc-text {
  flex: 1;
  font-size: 1.125rem;
  color: var(--text-body);
  line-height: 1.3;
}

/* Inline benefits within feature content */
.feature-content .benefits-inline {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin-top: 1rem;
  margin-bottom: 1rem;
}

.feature-content .benefits-inline .benefit-item {
  align-items: flex-start;
}

.feature-content .benefits-inline .benefit-item span {
  font-size: 1.125rem;
}

/* =============================================
   TRUST CARDS GRID
   ============================================= */
.trust-cards-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem;
  max-width: 70rem;
  margin: 2rem auto 0;
}

.trust-card {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 1rem;
  padding: 1.5rem;
  border-radius: 1rem;
  border: 0.0625rem solid var(--border-light);
  background: var(--bg-white);
  transition: all 0.3s ease;
}

.trust-card:hover {
  transform: translateY(-0.125rem);
  box-shadow: var(--shadow-card);
}

.trust-card h4 {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--text-dark);
  line-height: 1.3;
  margin: 0;
}

.trust-card p {
  font-size: 1rem;
  color: var(--text-body);
  line-height: 1.5;
  margin: 0;
}

/* Trailing text after benefits */
.section-trailing-text {
  font-size: 1.5rem;
  color: var(--text-body);
  line-height: 1.3;
  max-width: 70rem;
  margin: 1.5rem auto 0;
}

.section-trailing-text.small {
  font-size: 1.125rem;
  line-height: 1.5;
  margin-top: 2rem;
}

/* Sub-row with top spacing */
.feature-row-spaced {
  margin-top: 2.5rem;
}

/* =============================================
   CTA SECTION (Features page variant)
   ============================================= */
.features-cta-section {
  background-image: url('/assets/images/bgd-cta.webp');
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
  display: flex;
  gap: 2.5rem;
  align-items: center;
  justify-content: center;
  overflow: clip;
  padding: 5rem 0;
  position: relative;
  width: 100%;
  min-height: 37.5rem;
}

.features-cta-section .cta-section-inner {
  width: 100%;
  max-width: 70rem;
  margin: 0 auto;
  padding: 0 1.25rem;
  display: flex;
  gap: 2.5rem;
  align-items: center;
  justify-content: center;
  position: relative;
  z-index: 2;
}

.cta-content-wrapper {
  display: flex;
  gap: 2.5rem;
  align-items: center;
  justify-content: center;
  max-width: 100%;
  width: 100%;
  margin: 0 auto;
}

.cta-text-content {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  align-items: flex-start;
  position: relative;
  flex: 1;
  max-width: 33.75rem;
}

.cta-title {
  font-family: 'Sora', sans-serif;
  font-weight: 700;
  line-height: 1.3;
  position: relative;
  color: var(--cs-blue-dark);
  font-size: 2.5rem;
  width: 100%;
  margin: 0;
}

.cta-description {
  font-family: 'Sora', sans-serif;
  font-weight: 400;
  line-height: 1.5;
  position: relative;
  color: var(--cs-text);
  font-size: 1.5rem;
  width: 100%;
  margin: 0;
}

.cta-buttons {
  display: flex;
  gap: 0.75rem;
  align-items: flex-start;
  position: relative;
}

.btn-cta {
  display: flex;
  gap: 0.5rem;
  height: 3.5rem;
  align-items: center;
  justify-content: center;
  padding: 1rem;
  position: relative;
  border-radius: 0.5rem;
  width: 12.5rem;
  border: 0.0625rem solid var(--border-color);
  box-shadow: 0 0.25rem 0.125rem 0 rgba(188, 188, 188, 0);
  font-family: 'Sora', sans-serif;
  font-weight: 600;
  line-height: 1.3;
  font-size: 1.125rem;
  white-space: nowrap;
  text-decoration: none;
  transition: all 0.3s ease;
}

.btn-cta.primary {
  background-color: var(--cs-white);
  color: var(--text-body);
}

.btn-cta.primary:hover {
  background-color: var(--bg-gray-light);
}

.btn-cta.secondary {
  background: transparent;
  color: var(--text-body);
}

.btn-cta.secondary:hover {
  background-color: rgba(0, 0, 0, 0.05);
}

.cta-image-container {
  flex: 1;
  max-width: 33.75rem;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}

.cta-image-wrapper {
  width: 100%;
  overflow: hidden;
}

.cta-image-wrapper img {
  width: 100%;
  height: auto;
  display: block;
}

/* =============================================
   RESPONSIVE
   ============================================= */
@media (max-width: 87.5rem) {
  .features-tabs {
    padding: 0.75rem 3.75rem;
  }

  .featured-image-section {
    padding: 2.5rem 3.75rem;
  }

  .content-section {
    padding: 5rem 3.75rem;
  }

  .content-section.gray-bg > *,
  .content-section.blue-bg > * {
    padding-left: 3.75rem;
    padding-right: 3.75rem;
  }

  .features-cta-section .cta-section-inner {
    padding: 0 1.25rem;
  }
}

@media (max-width: 62rem) {
  .features-hero {
    padding-top: calc(var(--nav-height-mobile) + 2.5rem);
    padding-bottom: 3.75rem;
  }

  .features-hero .container {
    padding: 2.5rem 1.5rem 10rem;
  }

  .features-hero-title {
    font-size: 2.5rem;
  }

  .features-hero-subtitle {
    font-size: 1.125rem;
  }

  .featured-image-section {
    padding: 1.5rem;
    margin-top: -12.5rem;
  }

  .features-tabs-wrapper {
    top: var(--nav-height-mobile);
    border-bottom: none;
  }

  .features-tabs-wrapper.stuck {
    top: 0;
  }

  .features-tabs {
    flex-wrap: nowrap;
    justify-content: flex-start;
    padding: 0.75rem 1.5rem;
    gap: 0.5rem;
    overflow-x: auto;
    overflow-y: hidden;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    -ms-overflow-style: none;
  }

  .features-tabs::-webkit-scrollbar {
    display: none;
  }

  .tab-item {
    flex: 0 0 auto;
    min-width: 7.5rem;
    min-height: 3.75rem;
  }

  .tab-item span {
    font-size: 0.75rem;
    min-height: auto;
  }

  .content-section {
    padding: 2.5rem 1.5rem;
  }

  .content-section.gray-bg > *,
  .content-section.blue-bg > * {
    padding-left: 1.5rem;
    padding-right: 1.5rem;
  }

  .section-header h2 {
    font-size: 2rem;
  }

  .section-header p {
    font-size: 1.125rem;
  }

  .feature-row {
    flex-direction: column;
    gap: 1.5rem;
    min-height: auto;
    align-items: flex-start;
  }

  .feature-row.reversed-layout {
    flex-direction: column;
  }

  .feature-image {
    width: 100%;
    order: 1;
  }

  .feature-content {
    order: 2;
    justify-content: flex-start;
    height: auto;
  }

  .feature-content h3 {
    font-size: 1.5rem;
  }

  .feature-content p {
    font-size: 1rem;
  }

  .benefits-list {
    flex-direction: column;
    align-items: flex-start;
  }

  .benefit-item span {
    white-space: normal;
  }

  .benefits-columns {
    flex-direction: column;
    gap: 1rem;
  }

  .benefits-divider {
    width: 100%;
    height: 0.0625rem;
    align-self: auto;
  }

  .benefits-with-desc {
    flex-direction: column;
    gap: 1rem;
  }

  .trust-cards-grid {
    grid-template-columns: 1fr;
    gap: 1rem;
  }

  .features-cta-section {
    padding: 2.5rem 1.25rem;
    min-height: 0;
    background-attachment: scroll;
  }

  .features-cta-section .cta-section-inner {
    padding: 0 1.25rem;
    flex-direction: column;
    gap: 1.5rem;
  }

  .cta-content-wrapper {
    flex-direction: column;
    gap: 1.5rem;
  }

  .cta-image-container {
    order: -1;
    width: 100%;
    max-width: 100%;
    margin-bottom: 0.5rem;
  }

  .cta-text-content {
    width: 100%;
    max-width: 100%;
    gap: 1rem;
  }

  .cta-title {
    font-size: 1.75rem;
    margin-top: 0.5rem;
  }

  .cta-description {
    font-size: 1rem;
    line-height: 1.5;
  }

  .cta-buttons {
    flex-direction: column;
    width: 100%;
    gap: 0.75rem;
  }

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

@media (max-width: 30rem) {
  .features-hero-title {
    font-size: 2rem;
  }

  .features-hero-subtitle {
    font-size: 1rem;
  }
}

/* ===== css/pages/pricing.css ===== */
/* Developer Handoff:
   File: css/pages/pricing.css
   Role: page-specific-styles
   Runtime: served-to-browser
   Maintainer Notes: Keep selectors aligned with markup and avoid redefining global tokens outside base/variables.css.
*/
/* =============================================
   PRICING PAGE
   ============================================= */

/* Add pricing page-specific styles here when pricing page is implemented */

/* Placeholder for future pricing page styles:
   - Pricing cards/tiers
   - Pricing comparison tables
   - Pricing toggles (monthly/yearly)
   - ROI calculators
   - Feature comparison lists
*/

/* ===== css/pages/about.css ===== */
/* Developer Handoff:
   File: css/pages/about.css
   Role: page-specific-styles
   Runtime: served-to-browser
   Maintainer Notes: Keep selectors aligned with markup and avoid redefining global tokens outside base/variables.css.
*/
/* =============================================
   CHANNEL SPYDER - ABOUT US PAGE
   ============================================= */
:root {
    --cs-blue: #0072C6;
    --cs-blue-dark: #003053;
    --cs-blue-light: #54A1D9;
    --cs-blue-lighter: #E6F1F9;
    --cs-dark: #131313;
    --cs-gray: #333333;
    --cs-gray-light: #F9F9F9;
    --cs-text: #1E293B;
    --cs-white: #FEFEFE;
    --cs-border: #DDDCDB;
    --nav-height: 5.5rem;
    --nav-height-mobile: 4.5rem;
    --content-max-width: 70rem;
    --section-padding: 5rem 0;
    --transition: all 0.2s ease;
}

/* Hero Section */
.hero-section {
    padding-top: calc(var(--nav-height) + 2.5rem);
    padding-bottom: 20rem;
    background: var(--hero-gradient);
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.hero-container {
    width: 100%;
    max-width: var(--content-max-width);
    margin: 0 auto;
    padding: 2.5rem 1.25rem 7.5rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1.5rem;
}

.hero-title {
    color: var(--cs-white);
    font-size: 3.5rem;
    font-weight: 700;
    line-height: 1.3;
    margin: 0;
}

.hero-subtitle {
    color: var(--cs-white);
    font-size: 1.5rem;
    line-height: 1.5;
    max-width: 56.25rem;
    font-weight: 400;
    margin: 0;
}

/* Featured Image */
.featured-image-section {
    padding: 0 1.25rem;
    margin-top: -22.5rem;
    position: relative;
    z-index: 20;
    max-width: 90rem;
    margin-left: auto;
    margin-right: auto;
}

.featured-image-container {
    width: 100%;
    max-width: var(--content-max-width);
    margin: 0 auto;
}

.featured-image-wrapper {
    width: 100%;
    overflow: hidden;
    border-radius: 1rem;
}

.featured-image-wrapper img {
    width: 100%;
    height: auto;
    display: block;
}

/* Sections */
.section-inner {
    width: 100%;
    max-width: var(--content-max-width);
    margin: 0 auto;
    padding: 0 1.25rem;
    display: flex;
    flex-direction: column;
    gap: 3.75rem;
}

.section-gray {
    padding: var(--section-padding);
    background: var(--cs-gray-light);
}

.section-white {
    padding: var(--section-padding);
    background: #FFFFFF;
}

/* Content Row - Two columns */
.content-row {
    display: flex;
    gap: 2.5rem;
    align-items: center;
    width: 100%;
}

.content-row.reverse {
    flex-direction: row-reverse;
}

/* Image Container - Simplified like Features page */
.image-container {
    flex-shrink: 0;
    width: 33.75rem;
    display: flex;
    align-items: center;
    justify-content: center;
}

.image-wrapper {
    width: 100%;
    border-radius: 1rem;
    overflow: hidden;
}

.image-wrapper img {
    width: 100%;
    height: auto;
    display: block;
}

/* Integration Hub Image - Sticky and centered */
.integration-hub {
    flex: 1;
    max-width: 33.75rem;
    position: sticky;
    top: calc(var(--nav-height) + 1.25rem);
    align-self: flex-start;
    display: flex;
    align-items: flex-start;
    justify-content: center;
}

.integration-hub img {
    width: 100%;
    height: auto;
}

/* Spyder Born Image - Sticky */
.spyder-image-container {
    flex-shrink: 0;
    width: 33.75rem;
    position: sticky;
    top: calc(var(--nav-height) + 1.25rem);
    align-self: flex-start;
    display: flex;
    align-items: flex-start;
    justify-content: center;
}

.spyder-image-wrapper {
    width: 100%;
    border-radius: 1rem;
    overflow: hidden;
}

.spyder-image-wrapper img {
    width: 100%;
    height: auto;
    display: block;
}

.cta-image-container {
    flex: 1;
    max-width: 33.75rem;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
}

.cta-image-wrapper {
    width: 100%;
    overflow: hidden;
}

.cta-image-wrapper img {
    width: 100%;
    height: auto;
    display: block;
}

.text-col {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
}

/* Typography */
.section-title {
    font-size: 2.5rem;
    font-weight: 700;
    line-height: 1.3;
    color: var(--cs-dark);
    margin: 0;
}

.section-desc {
    font-size: 1.5rem;
    line-height: 1.5;
    color: var(--cs-gray);
    font-weight: 400;
    margin: 0;
}

.full-paragraph {
    font-size: 1.5rem;
    line-height: 1.5;
    color: var(--cs-gray);
    font-weight: 400;
    width: 100%;
    margin: 0;
}

/* Image with accent */


/* Numbers Block */
.numbers-block {
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
}

/* Sticky Image */
.sticky-image {
    position: sticky;
    top: calc(var(--nav-height) + 1.25rem);
    align-self: flex-start;
    max-width: 33.75rem;
}

.solutions-row {
    align-items: flex-start;
}

.solutions-text {
    gap: 1.5rem;
}

/* CTA SECTION */
.cta-section {
    padding: var(--section-padding);
    background: var(--cs-blue-lighter);
    overflow: hidden;
}

.cta-row {
    align-items: center;
}

.cta-text {
    max-width: 33.75rem;
    gap: 1.5rem;
}

.cta-title {
    font-size: 2.5rem;
    font-weight: 700;
    line-height: 1.3;
    color: var(--cs-blue-dark);
    margin: 0;
}

.cta-desc {
    font-size: 1.5rem;
    line-height: 1.5;
    color: var(--cs-text);
    font-weight: 400;
    margin: 0;
}

.cta-buttons {
    display: flex;
    gap: 0.75rem;
}

.btn-cta {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    height: 3.5rem;
    width: 12.5rem;
    padding: 1rem;
    background: var(--cs-white);
    color: var(--cs-gray);
    font-family: 'Sora', sans-serif;
    font-size: 1.125rem;
    font-weight: 600;
    line-height: 1.3;
    border-radius: 0.5rem;
    border: 0.0625rem solid var(--cs-border);
    transition: var(--transition);
    text-decoration: none;
}

.btn-cta:hover {
    background: #f0f0f0;
    color: var(--cs-gray);
}

/* Responsive Breakpoints */
@media (max-width: 75rem) {
    .content-row {
        gap: 2rem;
    }

    .image-container,
    .spyder-image-container,
    .cta-image-container {
        width: 30rem;
    }

    .integration-hub {
        max-width: 30rem;
    }
}

@media (max-width: 62rem) {
    .hero-section {
        padding-top: calc(var(--nav-height-mobile) + 2.5rem);
        padding-bottom: 12.5rem;
    }

    .hero-container {
        padding: 2.5rem 1.25rem 6.25rem;
        gap: 1rem;
    }

    .hero-title {
        font-size: 2.25rem;
    }

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

    .featured-image-section {
        margin-top: -12.5rem;
    }

    .section-gray,
    .section-white,
    .cta-section {
        padding: 2.5rem 0;
    }

    .section-inner {
        gap: 2rem;
    }

    .content-row,
    .content-row.reverse,
    .solutions-row,
    .cta-row {
        flex-direction: column;
        gap: 1.5rem;
    }

    .image-container,
    .spyder-image-container,
    .cta-image-container,
    .integration-hub {
        width: 100%;
        max-width: 100%;
        position: relative;
        top: auto;
        margin-bottom: 0.5rem;
    }

    .text-col {
        width: 100%;
        gap: 1rem;
    }

    .section-title,
    .cta-title {
        font-size: 1.75rem;
    }

    .section-desc,
    .full-paragraph,
    .cta-desc {
        font-size: 1rem;
    }

    .cta-text {
        max-width: 100%;
    }

    .cta-buttons {
        flex-direction: column;
        width: 100%;
    }

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

@media (max-width: 36rem) {
    .hero-title {
        font-size: 1.75rem;
    }

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

    .featured-image-section {
        margin-top: -10rem;
    }

    .section-gray,
    .section-white,
    .cta-section {
        padding: 1.5rem 0;
    }

    .section-inner {
        gap: 1.5rem;
        padding: 0 1rem;
    }

    .section-title,
    .cta-title {
        font-size: 1.5rem;
    }

    .section-desc,
    .full-paragraph,
    .cta-desc {
        font-size: 0.9375rem;
    }

    .btn-cta {
        height: 2.75rem;
        font-size: 0.9375rem;
    }
}

@media (max-width: 25rem) {
    .hero-section {
        padding-bottom: 8.75rem;
    }

    .hero-container {
        padding: 1.25rem 0.75rem 3.75rem;
    }

    .hero-title {
        font-size: 1.5rem;
    }

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

    .featured-image-section {
        margin-top: -7.5rem;
        padding: 0 0.75rem;
    }

    .section-inner {
        gap: 1.25rem;
        padding: 0 0.75rem;
    }

    .section-title,
    .cta-title {
        font-size: 1.375rem;
    }

    .section-desc,
    .full-paragraph,
    .cta-desc {
        font-size: 0.875rem;
    }

    .btn-cta {
        height: 2.5rem;
        font-size: 0.875rem;
    }
}

/* Custom Utilities for About Page */
.text-cs-text {
    color: var(--cs-text) !important;
}

.mb-16 {
    margin-bottom: 1rem !important;
}

.mt-40 {
    margin-top: 2.5rem !important;
}

/* ===== css/pages/login.css ===== */
/* Developer Handoff:
   File: css/pages/login.css
   Role: page-specific-styles
   Runtime: served-to-browser
   Maintainer Notes: Keep selectors aligned with markup and avoid redefining global tokens outside base/variables.css.
*/
/* =============================================
   LOGIN PAGE STYLES
   ============================================= */

.login-page {
    background: var(--bg-form);
}

/* =============================================
   LOGIN CARD
   ============================================= */
.login-page .login-card {
    width: 100%;
    max-width: 37.625rem;
    background: var(--bg-white, #FFFFFF);
    border: 0.0625rem solid var(--border-color, #DDDCDB);
    border-radius: 1.5rem;
    overflow: hidden;
    box-shadow: 0 0.375rem 0.875rem rgba(53, 53, 53, 0.05),
        0 1.5625rem 1.5625rem rgba(53, 53, 53, 0.04),
        0 3.5rem 2.0625rem rgba(53, 53, 53, 0.03),
        0 6.1875rem 2.5rem rgba(53, 53, 53, 0.01);
}

.login-page .card-header {
    padding: 1.5rem 2rem;
    border-bottom: 0.0625rem solid var(--border-light, #F3F2F1);
    text-align: center;
}

.login-page .card-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--text-dark);
    margin: 0 0 0.5rem 0;
    line-height: 1.3;
}

.login-page .card-subtitle {
    font-size: 0.75rem;
    color: var(--text-muted);
    margin: 0;
    line-height: 1.3;
}

.login-page .card-body {
    padding: 2rem 7.5rem;
}

/* =============================================
   FLOATING LABEL INPUTS
   ============================================= */

.login-page .field-wrapper {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 0.375rem;
    position: relative;
    min-height: 5.5rem;
    margin-bottom: 1.5rem;
}

.login-page .field-wrapper:last-of-type {
    margin-bottom: 0;
}

.login-page .input-container {
    position: relative;
    height: 4rem;
    background: var(--bg-input);
    border-radius: 0.375rem;
    padding: 0.75rem 1rem;
    transition: background 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease;
    border: 0.0625rem solid transparent;
    cursor: text;
    display: flex;
    flex-direction: column;
    justify-content: center;
    overflow: hidden;
}

.login-page .input-container.has-icon {
    padding-right: 3rem;
}

/* Input field hidden by default, revealed on focus/autofill */
.login-page .input-field {
    width: 100%;
    height: 1.3125rem;
    border: none;
    background: transparent;
    font-family: 'Sora', sans-serif;
    font-size: 1rem;
    font-weight: 400;
    line-height: 1.3rem;
    color: var(--text-dark);
    outline: none;
    padding: 0;
    margin: 0;
    -webkit-appearance: none;
    appearance: none;
    z-index: 2;
    caret-color: var(--brand-blue);
    opacity: 0;
    transition: opacity 0.1s ease;
}

.login-page .input-field::placeholder {
    color: transparent;
}

.login-page .input-field::selection {
    background: rgba(0, 114, 198, 0.15);
}

/* Label floats above when field is active */
.login-page .input-label {
    position: absolute;
    left: 1rem;
    top: 50%;
    transform: translateY(-50%);
    pointer-events: none;
    transition: all 0.2s cubic-bezier(0.2, 0, 0.2, 1);
    color: var(--text-muted);
    font-weight: 400;
    font-size: 1rem;
    line-height: 1.3rem;
    z-index: 1;
    transform-origin: left top;
    white-space: nowrap;
}

.login-page .input-label .required {
    color: var(--error-red);
}

/* Reveal input text when focused or filled */
.login-page .input-field:focus,
.login-page .input-field:not(:placeholder-shown),
.login-page .input-container.has-value .input-field {
    opacity: 1;
    margin-top: 1.125rem;
}

/* Move label up when field is active */
.login-page .input-field:focus~.input-label,
.login-page .input-field:not(:placeholder-shown)~.input-label,
.login-page .input-container.has-value .input-label {
    top: 0.75rem;
    transform: translateY(0) scale(0.6875);
    font-weight: 400;
    color: var(--text-dark);
    line-height: 0.89375rem;
}

.login-page .input-field:focus~.input-label {
    color: var(--brand-blue);
}

/* Browser autofill handling */
.login-page .input-field:-webkit-autofill {
    opacity: 1;
    margin-top: 1.125rem;
}

.login-page .input-field:-webkit-autofill~.input-label {
    top: 0.75rem;
    transform: translateY(0) scale(0.6875);
    color: var(--text-dark);
}

.login-page .input-field:-webkit-autofill,
.login-page .input-field:-webkit-autofill:hover,
.login-page .input-field:-webkit-autofill:focus {
    -webkit-text-fill-color: var(--text-dark);
    -webkit-box-shadow: 0 0 0 62.5rem var(--bg-input) inset;
    transition: background-color 5000s ease-in-out 0s;
}

.login-page .helper-text {
    font-size: 0.75rem;
    font-weight: 400;
    line-height: 0.975rem;
    color: var(--text-helper);
    transition: color 0.2s ease;
    min-height: 0.975rem;
    padding-left: 0.25rem;
}

/* =============================================
   INPUT STATES
   ============================================= */

.login-page .input-container:hover:not(.disabled) {
    background: var(--bg-input-hover);
    box-shadow: 0 0.0625rem 0.25rem rgba(19, 19, 19, 0.08);
}

.login-page .input-container:has(.input-field:focus) {
    background: var(--bg-white, #FFFFFF);
    border-color: var(--brand-blue);
    box-shadow: 0 0.25rem 0.75rem rgba(19, 19, 19, 0.12);
}

.login-page .input-container:has(.input-field:-webkit-autofill) {
    background: var(--bg-input);
}

/* Error state */
.login-page .field-wrapper.error .input-container {
    background: var(--error-bg);
    border-color: var(--error-red);
}

.login-page .field-wrapper.error .input-label {
    color: var(--error-red);
}

.login-page .field-wrapper.error .input-field:focus~.input-label,
.login-page .field-wrapper.error .input-field:not(:placeholder-shown)~.input-label,
.login-page .field-wrapper.error .input-container.has-value .input-label {
    color: var(--error-red);
}

.login-page .field-wrapper.error .helper-text {
    color: var(--error-text);
}

.login-page .field-wrapper.error .input-field:-webkit-autofill,
.login-page .field-wrapper.error .input-field:-webkit-autofill:hover,
.login-page .field-wrapper.error .input-field:-webkit-autofill:focus {
    -webkit-box-shadow: 0 0 0 62.5rem var(--error-bg) inset;
}

/* =============================================
   PASSWORD TOGGLE
   ============================================= */
.login-page .password-toggle {
    position: absolute;
    right: 1rem;
    top: 50%;
    transform: translateY(-50%);
    background: none;
    border: none;
    padding: 0.5rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-muted);
    transition: color 0.2s ease;
    z-index: 3;
}

.login-page .password-toggle:hover {
    color: var(--brand-blue);
}

.login-page .password-toggle i {
    font-size: 1.25rem;
    line-height: 1;
    display: flex;
    align-items: center;
}

/* =============================================
   LOGIN BUTTON
   ============================================= */
.login-page .login-button {
    width: 100%;
    height: 3.5rem;
    background: var(--brand-blue);
    border: none;
    border-radius: 0.5rem;
    color: #FFFFFF;
    font-family: 'Sora', sans-serif;
    font-size: 1.125rem;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
    margin-top: 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
}

.login-page .login-button:hover:not(:disabled) {
    background: #005a9e;
    transform: translateY(-0.125rem);
    box-shadow: 0 0.25rem 0.75rem rgba(0, 114, 198, 0.3);
}

.login-page .login-button:disabled {
    opacity: 0.5;
    cursor: not-allowed;
}

.login-page .login-button.loading::after {
    content: '';
    width: 1rem;
    height: 1rem;
    border: 0.125rem solid rgba(255, 255, 255, 0.3);
    border-top-color: white;
    border-radius: 50%;
    animation: spin 0.6s linear infinite;
}

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

/* =============================================
   CARD FOOTER
   ============================================= */
.login-page .card-footer {
    padding: 2rem 7.5rem;
    border-top: 0.0625rem solid var(--border-light, #F3F2F1);
    text-align: center;
}

.login-page .forgot-password {
    font-size: 0.75rem;
    color: var(--text-dark);
    line-height: 1.3;
}

.login-page .reset-link {
    color: var(--brand-blue);
    text-decoration: none;
    font-weight: 600;
    margin-left: 0.25rem;
    transition: var(--transition);
}

.login-page .reset-link:hover {
    text-decoration: underline;
}

/* =============================================
   RESPONSIVE DESIGN
   ============================================= */

@media (max-width: 48rem) {
    .login-page .top-navbar {
        height: 3.5rem;
        padding: 0 1rem;
    }

    .login-page .nav-section {
        width: 2.25rem;
        min-width: 2.25rem;
        display: flex;
        align-items: center;
        justify-content: center;
    }

    .login-page .nav-section.center {
        flex: 1;
        justify-content: center;
        min-width: auto;
        width: auto;
    }

    /* Icon-only back link on mobile */
    .login-page .back-link {
        width: 2.25rem;
        height: 2.25rem;
        padding: 0.5rem;
        justify-content: center;
        margin: 0;
    }

    .login-page .back-link-text {
        display: none;
    }

    .login-page .back-link i {
        margin: 0;
        font-size: 1rem;
    }

    /* Logo resizes on mobile */
    .login-page .logo-container {
        gap: 0.6875rem;
    }

    .login-page .logo-container .logo-svg {
        height: 2rem;
        width: auto;
        position: static;   /* Maintain override on mobile */
        transform: none;    /* Maintain override on mobile */
    }

    /* Hidden spacer maintains symmetry */
    .login-page .nav-section.right {
        width: 2.25rem;
        min-width: 2.25rem;
        visibility: hidden;
    }

    .login-page .login-card {
        border-radius: 1rem;
    }

    .login-page .card-header {
        padding: 1rem;
    }

    .login-page .card-title {
        font-size: 1.125rem;
    }

    .login-page .card-subtitle {
        font-size: 0.6875rem;
    }

    .login-page .card-body {
        padding: 1rem;
    }

    .login-page .field-wrapper {
        margin-bottom: 1rem;
    }

    .login-page .input-field {
        font-size: 0.875rem;
    }

    .login-page .login-button {
        height: 3rem;
        font-size: 0.875rem;
        margin-top: 1rem;
    }

    .login-page .card-footer {
        padding: 1rem;
    }
}

@media (max-width: 30rem) {
    .login-page .card-title {
        font-size: 1rem;
    }
}

/* ===== css/pages/signup.css ===== */
/* Developer Handoff:
   File: css/pages/signup.css
   Role: page-specific-styles
   Runtime: served-to-browser
   Maintainer Notes: Keep selectors aligned with markup and avoid redefining global tokens outside base/variables.css.
*/
/* =============================================
   SIGNUP PAGE STYLES
   ============================================= */
.signup-page {
    background: var(--bg-form);
}

/* =============================================
   MAIN CONTENT
   ============================================= */
.signup-page .main-content {
    max-width: 100%;
    width: 100%;
    margin: 0 auto;
    padding: 3rem 1.5rem;
    padding-bottom: calc(5rem + 3rem);
    overflow-x: hidden;
}
.signup-page .content-wrapper {
    max-width: 59.5rem;
    width: 100%;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 2.5rem;
}
/* Page Heading */
.signup-page .page-heading {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    max-width: 100%;
}
.signup-page .page-heading h1 {
    font-size: 2.5rem;
    font-weight: 700;
    line-height: 1.3;
    color: var(--text-dark);
    margin: 0;
    word-wrap: break-word;
}
.signup-page .page-heading p {
    font-size: 1.125rem;
    font-weight: 400;
    line-height: 1.3;
    color: var(--text-muted);
    margin: 0;
    word-wrap: break-word;
}
/* Mobile Login Content */
.signup-page .mobile-login-content {
    display: none;
    text-align: center;
    margin-top: 0.5rem;
}
.signup-page .mobile-login-content .account-section {
    display: flex;
    justify-content: center;
    font-size: 0.875rem;
}
.signup-page .mobile-login-content .login-link {
    font-size: 0.875rem;
    padding: 0.25rem 0.75rem;
}
/* =============================================
   FORM CARDS
   ============================================= */
.signup-page .form-card {
    background: var(--bg-white);
    border: 0.0625rem solid var(--border-color);
    border-radius: 1rem;
    overflow: hidden;
    max-width: 100%;
    box-shadow: 0 0.125rem 0.25rem rgba(227, 227, 227, 0.10),
        0 0.4375rem 0.4375rem rgba(227, 227, 227, 0.09),
        0 1rem 0.625rem rgba(227, 227, 227, 0.05);
}
.signup-page .form-card+.form-card {
    margin-top: 2.5rem;
}
/* Card Header */
.signup-page .card-header-custom {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    padding: 1.5rem;
    border-bottom: 0.0625rem solid var(--border-light);
}
.signup-page .card-icon {
    width: 3rem;
    height: 3rem;
    border-radius: 1.5rem;
    background: radial-gradient(ellipse 57.29% 88.69% at 50.00% 100.00%, #CFE8FB 0%, #EEF6FD 100%);
    border: 0.0625rem solid var(--brand-border-light);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}
/* SVG Icon Support for Card Icons */
.signup-page .icon-personal,
.signup-page .icon-business {
    width: 1.5rem;
    height: 1.5rem;
    display: block;
    color: var(--brand-blue);
    fill: currentColor;
}
/* Fallback for IMG tags */
.signup-page .card-icon img {
    width: 1.5rem;
    height: 1.5rem;
    display: block;
}
.signup-page .card-header-custom h2 {
    font-size: 1.5rem;
    font-weight: 700;
    line-height: 1.3;
    color: var(--text-dark);
    margin: 0;
    word-wrap: break-word;
}
/* Card Body */
.signup-page .card-body-custom {
    padding: 1.5rem;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}
/* =============================================
   FORM FIELDS - FLOATING LABELS
   ============================================= */
.signup-page .form-row {
    display: flex;
    gap: 1.5rem;
    max-width: 100%;
}
.signup-page .field-wrapper {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 0.375rem;
    position: relative;
    min-height: 5.5rem;
    max-width: 100%;
}
.signup-page .field-wrapper.full-width {
    width: 100%;
}
/* Input Container */
.signup-page .input-container {
    position: relative;
    height: 4rem;
    background: var(--bg-input);
    border-radius: 0.375rem;
    padding: 0.75rem 1rem;
    transition: background 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease;
    border: 0.0625rem solid transparent;
    cursor: text;
    display: flex;
    flex-direction: column;
    justify-content: center;
    overflow: hidden;
    max-width: 100%;
}
/* Input Field */
.signup-page .input-field {
    width: 100%;
    height: 1.3125rem;
    border: none;
    background: transparent;
    font-family: 'Sora', sans-serif;
    font-size: 1rem;
    font-weight: 400;
    line-height: 1.3rem;
    color: var(--text-dark);
    outline: none;
    padding: 0;
    margin: 0;
    -webkit-appearance: none;
    appearance: none;
    z-index: 2;
    caret-color: var(--brand-blue);
    opacity: 0;
    transition: opacity 0.1s ease;
}
.signup-page .input-field::placeholder {
    color: transparent;
}
.signup-page .input-field::selection {
    background: rgba(0, 114, 198, 0.15);
}
/* Floating Label */
.signup-page .input-label {
    position: absolute;
    left: 1rem;
    top: 50%;
    transform: translateY(-50%);
    pointer-events: none;
    transition: all 0.2s cubic-bezier(0.2, 0, 0.2, 1);
    color: var(--text-muted);
    font-weight: 400;
    font-size: 1rem;
    line-height: 1.3rem;
    z-index: 1;
    transform-origin: left top;
    white-space: nowrap;
    -webkit-user-select: none;
    -moz-user-select: none;
    user-select: none;
}
.signup-page .input-label .required {
    color: var(--error-red);
}
/* Active Input States */
.signup-page .input-field:focus,
.signup-page .input-field:not(:placeholder-shown),
.signup-page .input-container.has-value .input-field {
    opacity: 1;
    margin-top: 1.125rem;
}
/* Active Label States */
.signup-page .input-field:focus~.input-label,
.signup-page .input-field:not(:placeholder-shown)~.input-label,
.signup-page .input-container.has-value .input-label {
    top: 0.75rem;
    transform: translateY(0) scale(0.6875);
    font-weight: 400;
    color: var(--text-dark);
    line-height: 0.8938rem;
}
.signup-page .input-field:focus~.input-label {
    color: var(--brand-blue);
}
/* WebKit Autofill */
.signup-page .input-field:-webkit-autofill {
    opacity: 1;
    margin-top: 1.125rem;
}
.signup-page .input-field:-webkit-autofill~.input-label {
    top: 0.75rem;
    transform: translateY(0) scale(0.6875);
    color: var(--text-dark);
}
.signup-page .input-field:-webkit-autofill,
.signup-page .input-field:-webkit-autofill:hover,
.signup-page .input-field:-webkit-autofill:focus {
    -webkit-text-fill-color: var(--text-dark);
    -webkit-box-shadow: 0 0 0 62.5rem var(--bg-input) inset;
    transition: background-color 5000s ease-in-out 0s;
}
/* Helper Text */
.signup-page .helper-text {
    font-size: 0.75rem;
    font-weight: 400;
    line-height: 0.975rem;
    color: var(--text-helper);
    transition: color 0.2s ease;
    min-height: 0.975rem;
    padding-left: 0.25rem;
}
/* =============================================
   INPUT STATES
   ============================================= */
/* Hover */
.signup-page .input-container:hover:not(.disabled) {
    background: var(--bg-input-hover);
    box-shadow: 0 0.0625rem 0.25rem rgba(19, 19, 19, 0.08);
}
/* Focus */
.signup-page .input-container:has(.input-field:focus) {
    background: var(--bg-white);
    border-color: var(--brand-blue);
    box-shadow: 0 0.25rem 0.75rem rgba(19, 19, 19, 0.12);
}
.signup-page .input-container:has(.input-field:-webkit-autofill) {
    background: var(--bg-input);
}
/* Error State */
.signup-page .field-wrapper.error .input-container {
    background: var(--error-bg);
    border-color: var(--error-red);
}
.signup-page .field-wrapper.error .input-label {
    color: var(--error-red);
}
.signup-page .field-wrapper.error .input-field:focus~.input-label,
.signup-page .field-wrapper.error .input-field:not(:placeholder-shown)~.input-label,
.signup-page .field-wrapper.error .input-container.has-value .input-label {
    color: var(--error-red);
}
.signup-page .field-wrapper.error .helper-text {
    color: var(--error-text);
}
.signup-page .field-wrapper.error .input-field:-webkit-autofill,
.signup-page .field-wrapper.error .input-field:-webkit-autofill:hover,
.signup-page .field-wrapper.error .input-field:-webkit-autofill:focus {
    -webkit-box-shadow: 0 0 0 62.5rem var(--error-bg) inset;
}
/* Success State */
.signup-page .field-wrapper.success .input-container {
    background: var(--success-bg);
    border-color: var(--success-green);
}
.signup-page .field-wrapper.success .input-field:-webkit-autofill,
.signup-page .field-wrapper.success .input-field:-webkit-autofill:hover,
.signup-page .field-wrapper.success .input-field:-webkit-autofill:focus {
    -webkit-box-shadow: 0 0 0 62.5rem var(--success-bg) inset;
}
.signup-page .field-wrapper.disabled .input-container {
    background: var(--border-light);
    border-color: var(--border-light);
    cursor: not-allowed;
}
.signup-page .field-wrapper.disabled .input-field {
    color: var(--text-muted);
    cursor: not-allowed;
}
/* Phone Number Field with Prefix (+1) */
.signup-page .input-container.has-prefix {
    padding-left: 3.625rem;
}
.signup-page .phone-prefix {
    position: absolute;
    left: 1rem;
    top: 50%;
    transform: translateY(-50%);
    font-size: 1rem;
    font-weight: 400;
    color: var(--text-prefix);
    z-index: 2;
    transition: all 0.2s cubic-bezier(0.2, 0, 0.2, 1);
    -webkit-user-select: none;
    -moz-user-select: none;
    user-select: none;
}
.signup-page .input-container.has-prefix .input-label {
    left: 3.625rem;
}
.signup-page .input-field:focus~.phone-prefix,
.signup-page .input-field:not(:placeholder-shown)~.phone-prefix,
.signup-page .input-container.has-value .phone-prefix {
    top: 0.75rem;
    transform: translateY(0) scale(0.6875);
    transform-origin: left top;
}
.signup-page .input-field:focus~.phone-prefix {
    color: var(--brand-blue);
}
.signup-page .input-container.has-prefix.has-value .input-label,
.signup-page .input-container.has-prefix:has(.input-field:focus) .input-label,
.signup-page .input-container.has-prefix:has(.input-field:not(:placeholder-shown)) .input-label {
    left: 3.625rem;
}
/* Select Dropdown */
.signup-page .select-container {
    position: relative;
    height: 4rem;
    background: var(--bg-input);
    border-radius: 0.375rem;
    padding: 0.75rem 1rem;
    transition: background 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease;
    border: 0.0625rem solid transparent;
    cursor: pointer;
    display: flex;
    flex-direction: column;
    justify-content: center;
    overflow: hidden;
}
.signup-page .select-field {
    width: 100%;
    height: 1.3125rem;
    border: none;
    background: transparent;
    font-family: 'Sora', sans-serif;
    font-size: 1rem;
    font-weight: 400;
    line-height: 1.3rem;
    color: var(--text-dark);
    outline: none;
    padding: 0;
    padding-right: 1.5rem;
    margin: 0;
    -webkit-appearance: none;
    appearance: none;
    cursor: pointer;
    z-index: 2;
    opacity: 0;
    transition: opacity 0.1s ease;
}
.signup-page .select-field option {
    background: var(--bg-white);
    color: var(--text-dark);
    padding: 0.5rem;
}
.signup-page .select-label {
    position: absolute;
    left: 1rem;
    top: 50%;
    transform: translateY(-50%);
    pointer-events: none;
    transition: all 0.2s cubic-bezier(0.2, 0, 0.2, 1);
    color: var(--text-muted);
    font-weight: 400;
    font-size: 1rem;
    line-height: 1.3rem;
    z-index: 1;
    transform-origin: left top;
    white-space: nowrap;
    -webkit-user-select: none;
    -moz-user-select: none;
    user-select: none;
}
.signup-page .select-label .required {
    color: var(--error-red);
}
.signup-page .select-field:focus,
.signup-page .select-container.has-value .select-field {
    opacity: 1;
    margin-top: 1.125rem;
}
.signup-page .select-field:focus~.select-label,
.signup-page .select-container.has-value .select-label {
    top: 0.75rem;
    transform: translateY(0) scale(0.6875);
    font-weight: 400;
    color: var(--text-dark);
    line-height: 0.89375rem;
}
.signup-page .select-field:focus~.select-label {
    color: var(--brand-blue);
}
.signup-page .select-arrow {
    position: absolute;
    right: 1rem;
    top: 50%;
    transform: translateY(-50%);
    pointer-events: none;
    z-index: 3;
    color: var(--text-muted);
    font-size: 1rem;
    transition: all 0.2s ease;
}
.signup-page .select-field:focus~.select-arrow {
    color: var(--brand-blue);
}
.signup-page .select-container.has-value .select-arrow {
    top: calc(50% + 0.5625rem);
}
.signup-page .select-container:hover:not(.disabled) {
    background: var(--bg-input-hover);
    box-shadow: 0 0.0625rem 0.25rem rgba(19, 19, 19, 0.08);
}
.signup-page .select-container:has(.select-field:focus) {
    background: var(--bg-white);
    border-color: var(--brand-blue);
    box-shadow: 0 0.25rem 0.75rem rgba(19, 19, 19, 0.12);
}
/* =============================================
   CHANNELS SECTION - CHIP STYLE
   ============================================= */
.signup-page .channels-section {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    max-width: 100%;
}
.signup-page .channels-label {
    font-size: 1rem;
    font-weight: 800;
    color: var(--text-dark);
    line-height: 1.3;
}
.signup-page .channels-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
    max-width: 100%;
}
/* Channel Chip Button */
.signup-page .channel-btn {
    padding: 0.625rem 1rem 0.625rem 0.75rem;
    background: var(--bg-card-inactive);
    border-radius: 1.375rem;
    outline: 0.0625rem solid var(--border-light);
    outline-offset: -0.0625rem;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    transition: all 0.2s cubic-bezier(0.4, 0, 0.2, 1);
    cursor: pointer;
    -webkit-user-select: none;
    -moz-user-select: none;
    user-select: none;
    border: none;
    font-family: 'Sora', sans-serif;
}
.signup-page .channel-btn:hover:not(.active) {
    background: var(--border-light);
    transform: translateY(-0.0625rem);
}
.signup-page .channel-btn.active {
    background: var(--brand-blue);
    outline: none;
}
.signup-page .channel-btn.active .channel-text {
    color: white;
}
.signup-page .channel-text {
    color: var(--text-dark);
    font-size: 1rem;
    font-weight: 600;
    line-height: 1.3;
    transition: color 0.2s ease;
}
/* Channel Icon Container */
.signup-page .channel-icon {
    width: 1.5rem;
    height: 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}
.signup-page .channel-icon img {
    width: 1.5rem;
    height: 1.5rem;
    position: absolute;
    transition: opacity 0.2s ease;
}
/* Icon State Management */
.signup-page .channel-icon .icon-default {
    opacity: 1;
}
.signup-page .channel-icon .icon-selected {
    opacity: 0;
}
.signup-page .channel-btn.active .icon-default {
    opacity: 0;
}
.signup-page .channel-btn.active .icon-selected {
    opacity: 1;
}
.signup-page .channel-btn:focus-visible {
    outline: 0.125rem solid var(--brand-blue);
    outline-offset: 0.125rem;
}
/* =============================================
   CHECKBOXES
   ============================================= */
.signup-page .checkbox-group {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}
.signup-page .checkbox-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    cursor: pointer;
}
.signup-page .checkbox-item input[type="checkbox"] {
    width: 1.5rem;
    height: 1.5rem;
    min-width: 1.5rem;
    border-radius: 0.375rem;
    background: var(--border-light);
    cursor: pointer;
    -webkit-appearance: none;
    appearance: none;
    position: relative;
    transition: var(--transition);
    border: none;
}
.signup-page .checkbox-item input[type="checkbox"]:focus-visible {
    outline: 0.125rem solid var(--brand-blue);
    outline-offset: 0.125rem;
}
.signup-page .checkbox-item input[type="checkbox"]:checked {
    background: var(--brand-blue);
}
.signup-page .checkbox-item input[type="checkbox"]::after {
    content: '';
    position: absolute;
    width: 0.75rem;
    height: 0.5rem;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background-image: url('data:image/svg+xml,<svg width="12" height="8" viewBox="0 0 12 8" fill="none" xmlns="http://www.w3.org/2000/svg"><path d="M1 3.5L4.5 7L11 1" stroke="white" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"/></svg>');
    background-size: contain;
    background-repeat: no-repeat;
    opacity: 0;
}
.signup-page .checkbox-item input[type="checkbox"]:checked::after {
    opacity: 1;
}
.signup-page .checkbox-item label {
    font-size: 1rem;
    font-weight: 600;
    color: var(--text-dark);
    cursor: pointer;
    margin: 0;
    line-height: 1.3;
}
/* =============================================
   BOTTOM BAR
   ============================================= */
.signup-page .bottom-bar {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: var(--bg-white);
    border-top: 0.0625rem solid var(--border-light);
    padding: 1rem 1.5rem;
    z-index: 999;
    max-width: 100vw;
}
.signup-page .bottom-bar-content {
    max-width: 100%;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: center;
}
.signup-page .bottom-bar-inner {
    max-width: 59.5rem;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1.5rem;
}
/* Policy Checkbox */
.signup-page .policy-checkbox {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    flex: 1;
}
.signup-page .policy-checkbox input[type="checkbox"] {
    width: 1.5rem;
    height: 1.5rem;
    min-width: 1.5rem;
    border-radius: 0.375rem;
    background: var(--border-light);
    cursor: pointer;
    -webkit-appearance: none;
    appearance: none;
    position: relative;
    transition: var(--transition);
    border: none;
}
.signup-page .policy-checkbox input[type="checkbox"]:focus-visible {
    outline: 0.125rem solid var(--brand-blue);
    outline-offset: 0.125rem;
}
.signup-page .policy-checkbox input[type="checkbox"]:checked {
    background: var(--brand-blue);
}
.signup-page .policy-checkbox input[type="checkbox"]::after {
    content: '';
    position: absolute;
    width: 0.75rem;
    height: 0.5rem;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background-image: url('data:image/svg+xml,<svg width="12" height="8" viewBox="0 0 12 8" fill="none" xmlns="http://www.w3.org/2000/svg"><path d="M1 3.5L4.5 7L11 1" stroke="white" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"/></svg>');
    background-size: contain;
    background-repeat: no-repeat;
    opacity: 0;
}
.signup-page .policy-checkbox input[type="checkbox"]:checked::after {
    opacity: 1;
}
/* Policy Text */
.signup-page .policy-text {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}
.signup-page .policy-text .main-text {
    font-size: 1rem;
    font-weight: 800;
    color: var(--text-dark);
    line-height: 1.3;
}
.signup-page .policy-text .sub-text {
    font-size: 0.6875rem;
    font-weight: 400;
    color: var(--text-helper);
    line-height: 1.3;
}
/* Submit Button */
.signup-page .submit-btn {
    height: 3.5rem;
    min-width: 13.75rem;
    background: var(--brand-blue);
    color: white;
    border: none;
    border-radius: 0.5rem;
    font-size: 1.125rem;
    font-weight: 600;
    font-family: 'Sora', sans-serif;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    cursor: pointer;
    transition: var(--transition);
    padding: 1rem 1.5rem;
    line-height: 1;
}
.signup-page .submit-btn:hover:not(:disabled) {
    background: #005a9e;
}
.signup-page .submit-btn:disabled {
    opacity: 0.5;
    cursor: not-allowed;
}
.signup-page .submit-btn:focus-visible {
    outline: 0.125rem solid var(--text-dark);
    outline-offset: 0.125rem;
}
.signup-page .submit-btn i {
    font-size: 1rem;
    line-height: 1;
    display: flex;
    align-items: center;
}
/* Loading State */
.signup-page .submit-btn.loading {
    pointer-events: none;
}
.signup-page .submit-btn.loading::after {
    content: '';
    width: 1rem;
    height: 1rem;
    border: 0.125rem solid rgba(255, 255, 255, 0.3);
    border-top-color: white;
    border-radius: 50%;
    animation: spin 0.6s linear infinite;
}
@keyframes spin {
    to {
        transform: rotate(360deg);
    }
}
/* =============================================
   RESPONSIVE DESIGN
   ============================================= */
/* Tablet (62rem and below) - Keep account section visible */
@media (max-width: 62rem) {
    .signup-page .top-navbar {
        height: 4.5rem;
        padding: 0 1rem;
    }
    .signup-page .nav-section {
        min-width: auto;
    }
    /* Keep account section visible at this breakpoint */
    .signup-page .account-section {
        display: flex;
    }
    .signup-page .logo-container img,
    .signup-page .logo-container svg,
    .signup-page .logo-container .logo-svg {
        height: 2.25rem;
        position: static;   /* Maintain override on tablet */
        transform: none;    /* Maintain override on tablet */
    }
    .signup-page .page-heading h1 {
        font-size: 2rem;
    }
    .signup-page .page-heading p {
        font-size: 1rem;
    }
    .signup-page .card-header-custom {
        padding: 1rem;
        gap: 1rem;
    }
    .signup-page .card-header-custom h2 {
        font-size: 1.125rem;
    }
    .signup-page .card-body-custom {
        padding: 1rem;
        gap: 1rem;
    }
    .signup-page .form-row {
        flex-direction: column;
        gap: 1rem;
    }
    .signup-page .main-content {
        padding: 2rem 1.5rem;
        padding-bottom: calc(5rem + 2rem);
    }
}
/* Mobile (48rem and below) - Hide nav account, show centered mobile version */
@media (max-width: 48rem) {
    .signup-page {
        padding-bottom: 0;
    }
    .signup-page .top-navbar {
        height: 3.5rem;
        padding: 0 1rem;
    }
    .signup-page .nav-section {
        width: 2.25rem;
        min-width: 2.25rem;
        display: flex;
        align-items: center;
        justify-content: center;
    }
    .signup-page .nav-section.center {
        flex: 1;
        justify-content: center;
        min-width: auto;
        width: auto;
    }
    /* Hide account section in navigation on mobile */
    .signup-page .account-section {
        display: none;
    }
    .signup-page .back-link {
        width: 2.25rem;
        height: 2.25rem;
        padding: 0.5rem;
        justify-content: center;
        margin: 0;
    }
    .signup-page .back-link-text {
        display: none;
    }
    .signup-page .back-link i,
    .signup-page .back-icon {
        margin: 0;
        font-size: 1rem;
        width: 1rem;
        height: 1rem;
    }
    .signup-page .logo-container {
        display: flex;
        align-items: center;
        gap: 0.6875rem;
    }
    .signup-page .logo-container img,
    .signup-page .logo-container svg,
    .signup-page .logo-container .logo-svg {
        height: 2rem;
        position: static;   /* Maintain override on mobile */
        transform: none;    /* Maintain override on mobile */
    }
    .signup-page .nav-section.right {
        width: 2.25rem;
        min-width: 2.25rem;
        visibility: hidden;
    }
    .signup-page .main-content {
        padding: 1.5rem 1rem;
        padding-bottom: calc(7.5rem + 2.5rem);
    }
    .signup-page .content-wrapper {
        gap: 1.5rem;
    }
    /* Show mobile login content - CENTERED */
    .signup-page .mobile-login-content {
        display: block;
        text-align: center;
        margin-top: 0.5rem;
    }
    .signup-page .mobile-login-content .account-section {
        display: flex;
        justify-content: center;
        align-items: center;
    }
    .signup-page .form-card+.form-card {
        margin-top: 1.5rem;
    }
    .signup-page .page-heading h1 {
        font-size: 1.5rem;
        font-weight: 700;
        line-height: 1.3;
        margin: 0;
    }
    .signup-page .page-heading p {
        font-size: 0.875rem;
        font-weight: 400;
        line-height: 1.3;
    }
    .signup-page .channels-grid {
        gap: 0.5rem;
    }
    .signup-page .channel-btn {
        padding: 0.5rem 0.75rem 0.5rem 0.625rem;
    }
    .signup-page .channel-text {
        font-size: 0.875rem;
    }
    .signup-page .channel-icon {
        width: 1.25rem;
        height: 1.25rem;
    }
    .signup-page .channel-icon img {
        width: 1.25rem;
        height: 1.25rem;
    }
    .signup-page .bottom-bar {
        padding: 1rem;
    }
    .signup-page .bottom-bar-inner {
        flex-direction: column;
        align-items: stretch;
        gap: 1rem;
    }
    .signup-page .submit-btn {
        width: 100%;
        min-width: auto;
        height: 3rem;
        font-size: 0.875rem;
    }
}
/* =============================================
   ACCESSIBILITY
   ============================================= */
.signup-page .sr-only {
    position: absolute;
    width: 0.0625rem;
    height: 0.0625rem;
    padding: 0;
    margin: -0.0625rem;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border-width: 0;
}
/* Touch Device Optimizations */
@media (hover: none) and (pointer: coarse) {
    .signup-page .back-link,
    .signup-page .login-link,
    .signup-page .channel-btn,
    .signup-page .submit-btn {
        min-height: 2.75rem;
    }
    .signup-page .input-field {
        font-size: 1rem;
        /* Prevents iOS zoom on focus */
    }
}
