/* ==========================================================================
   STARTAWAY STYLESHEET
   ========================================================================== */

/* --------------------------------------------------------------------------
   0. CSS Variables
   -------------------------------------------------------------------------- */
:root {
    --primary: #005;
    --primary-dark: #003;
    --secondary: #f90;
    --secondary-dark: #c70;
    --bg: #fff;
    --bg-subtle: #def;
    --text: #005;
    --text-muted: #678;
    --line: rgba(0, 0, 85, 0.1);
    --shadow: 0 4px 16px rgba(0, 0, 85, 0.08);
    --shadow-lg: 0 12px 32px rgba(0, 0, 85, 0.12);
    --shadow-hover: 0 8px 24px rgba(0, 0, 85, 0.15);
    --radius: 12px;
    --radius-lg: 16px;
    --container: 1280px;
    --font: "Jost", -apple-system, BlinkMacSystemFont, sans-serif;
}

/* --------------------------------------------------------------------------
   1. Base & Reset
   -------------------------------------------------------------------------- */
*,
*::before,
*::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}
html {
    scroll-behavior: smooth;
}
body {
    font: 14px/1.4 var(--font);
    background: var(--bg);
    color: var(--text);
    -webkit-font-smoothing: antialiased;
}
a {
    color: inherit;
    text-decoration: none;
    transition: all 0.2s ease;
}

/* --------------------------------------------------------------------------
   2. Layout
   -------------------------------------------------------------------------- */
.container {
    max-width: var(--container);
    margin: 0 auto;
    padding: 0 clamp(20px, 5vw, 80px);
}
.section {
    padding: clamp(80px, 12vw, 140px) 0;
    position: relative;
}
.grid {
    display: grid;
    gap: clamp(20px, 3vw, 32px);
}
.grid-2 {
    grid-template-columns: repeat(2, 1fr);
}
.grid-3 {
    grid-template-columns: repeat(3, 1fr);
}
.grid-4 {
    grid-template-columns: repeat(4, 1fr);
}
.flex {
    display: flex;
}
.flex-center {
    display: flex;
    align-items: center;
    justify-content: center;
}
.flex-between {
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.center {
    display: block;
    margin-left: auto;
    margin-right: auto;
    text-align: center;
}

/* --------------------------------------------------------------------------
   3. Typography
   -------------------------------------------------------------------------- */
.h1 {
    font-size: clamp(17px, 2.1vw, 30px);
    font-weight: 800;
    line-height: 1.1;
    margin: 0 0 24px;
}
.h2 {
    font-size: clamp(22px, 2.8vw, 34px);
    font-weight: 700;
    line-height: 1.2;
    margin: 0 0 20px;
}
.h3 {
    font-size: clamp(17px, 2.1vw, 22px);
    font-weight: 700;
    line-height: 1.3;
    margin: 0 0 16px;
}
.h4 {
    font-size: 14px;
    font-weight: 700;
    line-height: 1.4;
    margin: 0 0 12px;
}
.p {
    font-size: 16px;
    line-height: 1.5;
    color: var(--text-muted);
    margin: 0 0 20px;
    max-width: 68ch;
}
.p2 {
    font-size: 16px;
    line-height: 1.6;
    color: var(--text-muted);
    margin: 0 0 16px;
}
.small {
    font-size: 14px;
    line-height: 1.6;
    color: var(--text-muted);
}
.text-center {
    text-align: center;
}
.text-muted {
    color: var(--text-muted);
}
.text-center-important {
    text-align: center !important;
}
.text-primary {
    color: var(--primary);
}
.text-secondary {
    color: var(--secondary);
}
.subhead {
    font-size: clamp(10px, 0.84vw, 13px);
    line-height: 1.6;
    color: var(--bg);
    font-weight: 400;
}

/* --------------------------------------------------------------------------
   4. Components
   -------------------------------------------------------------------------- */

/* Accent Bar */
.accent-bar {
    width: 60px;
    height: 4px;
    background: var(--secondary);
    border-radius: 2px;
    margin-bottom: 24px;
}
.accent-bar--center {
    margin-left: auto;
    margin-right: auto;
}
.accent-bar--white {
    background: white;
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 14px 28px;
    border-radius: 999px;
    font: 600 15px var(--font);
    cursor: pointer;
    border: none;
    transition: all 0.3s ease;
    white-space: nowrap;
}
.btn--primary {
    background: var(--secondary);
    color: var(--primary);
    font-weight: 700;
    box-shadow: 0 4px 12px rgba(255, 153, 0, 0.35);
}
.btn--primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(255, 153, 0, 0.45);
}
.btn--secondary {
    background: var(--primary);
    color: var(--bg);
    box-shadow: 0 4px 12px rgba(0, 0, 85, 0.25);
}
.btn--secondary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(0, 0, 85, 0.35);
}
.btn--ghost {
    background: transparent;
    border: 2px solid var(--primary);
    color: var(--primary);
    font-weight: 600;
}
.btn--ghost:hover {
    background: var(--primary);
    color: var(--bg);
    transform: translateY(-2px);
}
.btn--ghost-white {
    background: transparent;
    border: 2px solid var(--bg);
    color: var(--bg);
    font-weight: 600;
}
.btn--ghost-white:hover {
    background: var(--bg);
    color: var(--secondary);
    transform: translateY(-2px);
}
.btn--white {
    background: var(--bg);
    border: 2px solid var(--secondary);
    color: var(--secondary);
    font-weight: 600;
}
.btn--white:hover {
    background: var(--bg);
    color: var(--bg);
    transform: translateY(-2px);
}
.btn--large {
    padding: 18px 36px;
    font-size: 16px;
    min-height: 56px;
}

/* Cards */
.card {
    background: var(--bg);
    border: 1px solid var(--line);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow);
    padding: clamp(20px, 3vw, 32px);
    transition: all 0.3s ease;
}
.card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-hover);
    border-color: var(--secondary);
}
.card--highlight {
    border: 2px solid var(--secondary);
    box-shadow: 0 4px 20px rgba(255, 153, 0, 0.15);
}
.card-id {
    position: absolute;
    top: 16px;
    left: 16px;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: var(--secondary);
    color: #000;
    display: flex;
    align-items: center;
    justify-content: center;
    font: 900 14px var(--font);
}

/* Chips & Badges */
.chips {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 24px;
}
.chip {
    display: inline-flex;
    align-items: center;
    padding: 10px 16px;
    border-radius: 999px;
    border: 1px solid var(--line);
    color: var(--text-muted);
    font: 500 14px var(--font);
    background: var(--bg-subtle);
    transition: all 0.2s;
}
.chip:hover {
    border-color: var(--secondary);
    background: rgba(255, 153, 0, 0.08);
    color: var(--secondary-dark);
}
.badge {
    display: inline-flex;
    align-items: center;
    padding: 6px 12px;
    border-radius: 999px;
    background: var(--secondary);
    color: #000;
    font: 700 13px var(--font);
}

/* Icon Box */
.icon-box {
    width: 64px;
    height: 64px;
    border-radius: var(--radius);
    background: var(--secondary);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    box-shadow: 0 4px 16px rgba(255, 153, 0, 0.3);
}

/* Step Number */
.step-number {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: var(--secondary);
    color: var(--text);
    font: 800 20px var(--font);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 16px;
    box-shadow: 0 4px 12px rgba(255, 153, 0, 0.35);
}

/* Lists */
.list {
    margin: 0;
    padding-left: 24px;
    color: var(--text-muted);
    line-height: 1.8;
}
.list li {
    margin: 8px 0;
    padding-left: 8px;
}
.list li::marker {
    color: var(--secondary);
}

/* Forms */
input,
textarea,
select {
    width: 100%;
    padding: 14px 18px;
    border: 2px solid var(--line);
    border-radius: var(--radius);
    font: 15px var(--font);
    color: var(--text);
    background: white;
    transition: all 0.3s ease;
    outline: none;
}
input:focus,
textarea:focus,
select:focus {
    border-color: var(--secondary);
    box-shadow: 0 0 0 3px rgba(255, 153, 0, 0.1);
}
input::placeholder,
textarea::placeholder {
    color: var(--text-muted);
    opacity: 0.6;
}
textarea {
    min-height: 120px;
    resize: vertical;
}
select {
    appearance: none;
    background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%23000055' d='M6 9L1 4h10z'/%3E%3C/svg%3E")
        no-repeat right 16px center;
    padding-right: 40px;
    cursor: pointer;
}
label {
    display: block;
    font: 600 14px var(--font);
    margin-bottom: 8px;
    color: var(--text);
}
.form-group {
    margin-bottom: 24px;
}

/* --------------------------------------------------------------------------
   5. Header & Navigation
   -------------------------------------------------------------------------- */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 100;
    border-bottom: 1px dotted var(--secondary);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
    background: var(--primary-dark);
}
body.page-index .header,
body.page-article .header {
    background: rgba(0, 0, 32, 0.7);
    backdrop-filter: blur(5px) saturate(50%);
}
.header__inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 80px;
    gap: 24px;
}
.logo {
    font: 800 24px var(--font);
    letter-spacing: -0.01em;
    color: white;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
    z-index: 101;
}
.logo:hover {
    transform: scale(1.02);
}
.nav {
    display: flex;
    gap: 32px;
    align-items: center;
}
.nav a {
    color: white;
    font: 500 15px var(--font);
    position: relative;
    padding: 4px 0;
    text-shadow: 0 1px 3px rgba(0, 0, 0, 0.3);
}
.nav a::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--secondary);
    transition: width 0.3s;
}
.nav a:hover {
    color: var(--secondary);
}
.nav a:hover::after {
    width: 100%;
}
.header__cta {
    display: flex;
    align-items: center;
    gap: 16px;
}

/* Mobile Menu Toggle */
.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
    z-index: 101;
    order: -1;
}
.mobile-menu-toggle span {
    width: 25px;
    height: 2px;
    background: white;
    transition: all 0.3s;
    display: block;
}
.mobile-menu-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(7px, 7px);
}
.mobile-menu-toggle.active span:nth-child(2) {
    opacity: 0;
}
.mobile-menu-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -7px);
}

/* Language Selector */
.startaway-lang-switcher {
    position: relative;
    display: inline-block;
    z-index: 101;
}
.startaway-lang-switcher__toggle {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 14px 10px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.15);
    cursor: pointer;
    transition: all 0.3s ease;
    user-select: none;
}
.startaway-lang-switcher__toggle:hover {
    background: rgba(255, 255, 255, 0.12);
    border-color: rgba(255, 255, 255, 0.25);
    transform: translateY(-2px);
}
.startaway-lang-switcher__flag {
    width: 24px;
    height: 18px;
    object-fit: cover;
    border-radius: 4px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
}
.startaway-lang-switcher__label {
    font: 500 14px var(--font);
    color: var(--bg);
    flex-grow: 1;
}
.startaway-lang-switcher__check {
    margin-left: auto;
    width: 16px;
    height: 16px;
}
.startaway-lang-switcher__menu {
    position: absolute;
    top: calc(100% + 12px);
    right: 0;
    background: linear-gradient(
        135deg,
        rgba(0, 0, 32, 0.98) 0%,
        rgba(0, 0, 48, 0.98) 100%
    );
    backdrop-filter: blur(25px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 16px;
    min-width: 180px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-8px) scale(0.95);
    transition: all 0.3s ease;
    box-shadow: 0 25px 60px rgba(0, 0, 0, 0.5);
    overflow: hidden;
    z-index: 1000;
}
.startaway-lang-switcher:hover .startaway-lang-switcher__menu,
.startaway-lang-switcher.active .startaway-lang-switcher__menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0) scale(1);
}
.startaway-lang-switcher__item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 16px;
    color: var(--bg);
    font: 500 14px var(--font);
    transition: all 0.2s ease;
}
.startaway-lang-switcher__item:not(:last-child) {
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}
.startaway-lang-switcher__item:hover {
    background: rgba(255, 255, 255, 0.1);
    color: var(--bg);
    transform: translateX(2px);
}
.startaway-lang-switcher__item--active {
    background: rgba(59, 130, 246, 0.15);
    color: var(--bg);
}

/* --------------------------------------------------------------------------
   6. Hero Section
   -------------------------------------------------------------------------- */
.section--hero {
    padding: 0;
    position: relative;
    overflow: hidden;
    min-height: 118svh;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 1;
}
.hero-container {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 118svh;
    padding: 0 clamp(20px, 5vw, 80px);
}
.hero-container .grid {
    width: 100%;
}
.section--hero .hero-container .grid {
    transform: translateY(-6vh);
}
.hero-video {
    position: absolute;
    top: 50%;
    left: 50%;
    min-width: 100%;
    min-height: 100%;
    width: auto;
    height: auto;
    transform: translate(-50%, -50%);
    z-index: 0;
    object-fit: cover;
    pointer-events: none;
}
.hero-logo {
    width: auto;
    max-width: 100%;
    height: 70%;
    display: block;
    object-fit: contain;
}
.hero-logoLink {
    display: flex;
    align-items: center;
    height: 100%;
    transition: transform 0.3s ease;
}
.hero-logoLink:hover {
    transform: scale(1.1) translateY(-12px);
}
.hero-logo-container {
    display: flex;
    justify-content: flex-end;
    align-items: center;
    justify-self: end;
    width: fit-content;
    max-width: 100%;
    height: 100%;
}

/* Image Background Sections */
.section--image {
    position: relative;
    background-size: cover;
    background-position: center;
    color: white;
}
.section--image::before {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.8);
    z-index: 1;
}
.section--image .container {
    position: relative;
    z-index: 2;
}
.section--image .h1,
.section--image .h2,
.section--image .h3 {
    color: var(--bg);
    font-weight: 800;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.5);
}
.section--image .p,
.section--image .small {
    color: var(--bg);
    font-weight: 500;
    text-shadow: 0 1px 4px rgba(0, 0, 0, 0.4);
}

/* --------------------------------------------------------------------------
   7. Trust Band
   -------------------------------------------------------------------------- */
.section--trust-band {
    background: rgba(0, 0, 32, 0.7);
    backdrop-filter: blur(4px) saturate(45%);
    border-top: 1px dotted var(--secondary);
    border-bottom: 3px solid var(--secondary);
    padding: clamp(18px, 3.75vw, 30px) 0;
    position: relative;
    margin-top: -200px;
    padding-top: 30px;
    z-index: 5;
}
.trust-band-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: clamp(20px, 4vw, 48px);
    max-width: 1200px;
    margin: 0 auto;
}
.trust-band-item {
    text-align: center;
    padding: 20px;
}
.trust-band-number {
    font-size: clamp(36px, 6vw, 64px);
    font-weight: 800;
    line-height: 1;
    background: var(--secondary);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 12px;
}
.trust-band-label {
    margin-top: 4px;
    font: 600 clamp(12px, 1.6vw, 15px) var(--font);
    color: white;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

/* --------------------------------------------------------------------------
   8. Overview Section
   -------------------------------------------------------------------------- */
.section--overview {
    position: relative;
    background: url("/assets/images/overviewbg.png") center/cover no-repeat;
}
.section--overview::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(
        180deg,
        rgba(255, 255, 255, 0.9),
        rgba(255, 255, 255, 0.95)
    );
    pointer-events: none;
}
.section--overview > .container {
    position: relative;
    z-index: 1;
}
.section--overview .grid-4 .card {
    backdrop-filter: blur(6px);
    background: rgba(255, 255, 255, 0.88);
}
.section--overview .h1 {
    color: var(--primary);
}
.section--overview .subhead {
    color: var(--primary);
}
.overview-mediaLink {
    margin-top: 36px;
    display: block;
    width: 100%;
    max-width: 240px;
    border: 1px solid var(--primary);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    margin-left: auto;
    margin-right: auto;
}
.overview-video {
    border: 4px solid var(--secondary);
    display: block;
    width: 100%;
    height: auto;
    aspect-ratio: 9/16;
    object-fit: cover;
}
.overview-cards {
    margin-top: 72px;
    margin-bottom: 32px;
}
.overview-card {
    text-align: center;
    position: relative;
}
.overview-card .icon-box {
    margin: 0 auto 16px;
    width: 48px;
    height: 48px;
}
.overview-card__title {
    font: 800 16px var(--font);
    margin-bottom: 8px;
    color: var(--primary);
}

/* --------------------------------------------------------------------------
   9. How It Works / CTA Section
   -------------------------------------------------------------------------- */
.section--how-it-works {
    background: var(--bg);
}
.cta-panel {
    background: var(--primary-dark);
    border: 1px dotted var(--secondary);
    border-radius: 30px;
    padding: 80px;
    margin-top: -160px;
}
.section--how-it-works .h1,
.section--how-it-works .h2,
.section--how-it-works .h3,
.section--how-it-works .h4 {
    color: var(--bg);
    font-weight: 800;
}
.section--how-it-works .p,
.section--how-it-works .small {
    color: var(--bg);
    font-weight: 400;
}
.how-it-works-content {
    display: grid;
    grid-template-columns: 1fr 45%;
    gap: 40px;
    margin: 32px 0;
}
.how-it-works-list {
    display: flex;
    flex-direction: column;
    gap: 20px;
    width: 90%;
}
.how-it-works-item {
    display: flex;
    gap: 16px;
    align-items: flex-start;
}
.how-it-works-item__number {
    flex-shrink: 0;
    width: 40px;
    height: 40px;
    min-width: 40px;
    min-height: 40px;
    background: rgba(255, 255, 255, 0.2);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font: 800 18px var(--font);
}
.how-it-works-item__content {
    color: var(--bg);
    line-height: 1.6;
}
.how-it-works-list-prices {
    width: 90%;
    background: var(--secondary);
    padding: 30px;
    border: 1px solid var(--bg);
    border-radius: 30px;
    gap: 5px;
}
.pricing-table {
    padding: 40px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    border: 3px dotted var(--bg);
    align-self: start;
    color: var(--secondary);
    font: 800 24px var(--font);
}
.pricing-row {
    display: flex;
    justify-content: space-between;
    padding: 8px 0;
    color: var(--bg);
    font: 15px var(--font);
}
.pricing-row:not(:last-child) {
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}
.button-group {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
    margin-top: 18px;
}

/* --------------------------------------------------------------------------
   10. Logo Marquee
   -------------------------------------------------------------------------- */
.logo-marquee {
    padding: 0;
    border-top: 3px solid var(--secondary);
    border-bottom: 3px solid var(--secondary);
}
.logo-marquee__viewport {
    height: 200px;
    display: flex;
    align-items: center;
    overflow: hidden;
    position: relative;
    mask-image: linear-gradient(
        to right,
        transparent,
        #000 10%,
        #000 90%,
        transparent
    );
    -webkit-mask-image: linear-gradient(
        to right,
        transparent,
        #000 10%,
        #000 90%,
        transparent
    );
}
.logo-marquee__track {
    display: flex;
    flex-wrap: nowrap;
    align-items: center;
    gap: 120px;
    width: max-content;
}
.logo-marquee__track img {
    display: block;
    max-height: 250px;
    max-width: 200px;
    opacity: 0.85;
    transition: all 0.2s ease;
}
.logo-marquee__track img:hover {
    opacity: 1;
    transform: translateY(-1px);
}

/* --------------------------------------------------------------------------
   11. Includes Section
   -------------------------------------------------------------------------- */
.section--includes {
    position: relative;
    overflow: hidden;
    background: var(--primary-dark);
    color: var(--bg);
}
.section--includes::before {
    content: "";
    position: absolute;
    inset: 0;
    background: url("/assets/images/worldbg2.png") center/cover no-repeat;
    opacity: 0.05;
    z-index: 0;
    pointer-events: none;
}
.section--includes .container {
    position: relative;
    z-index: 1;
}
.section--includes .h1,
.section--includes .h2,
.section--includes .h3 {
    text-align: center;
    color: var(--bg);
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}
.section--includes .p,
.section--includes .small {
    text-align: center;
    color: var(--bg);
    max-width: none;
    width: 100%;
    display: block;
}

/* Includes Slider */
.includes-slider {
    position: relative;
    max-width: 1200px;
    margin: 0 auto;
    overflow: hidden;
}
.includes-slider-track {
    display: flex;
    transition: transform 0.5s ease-in-out;
}
.includes-slide {
    min-width: 100%;
    flex-shrink: 0;
}
.includes-card {
    border-radius: var(--radius-lg);
    padding: 48px;
}
.includes-card--light {
    margin-top: 20px;
    background: #f8f8f8;
    border: 1px solid var(--secondary);
}
.includes-content-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 48px;
    align-items: center;
    justify-items: center;
    justify-content: center;
}
.includes-heading {
    font-size: clamp(28px, 4vw, 40px);
    font-weight: 400;
    line-height: 1.2;
    margin-bottom: 24px;
    color: var(--bg);
}
.includes-heading--dark {
    color: var(--text);
}
.includes-divider {
    width: 120px;
    height: 4px;
    background: var(--secondary);
    margin-bottom: 24px;
}
.includes-category {
    font: 700 16px var(--font);
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--secondary);
    margin-bottom: 20px;
    text-align: left;
    word-wrap: break-word;
    overflow-wrap: break-word;
}
.includes-description {
    font: 16px/1.7 var(--font);
    color: var(--bg);
    margin-bottom: 24px;
    text-align: center;
    line-height: 1.6;
}
.includes-category--dark {
    word-wrap: break-word;
    overflow-wrap: break-word;
    text-align: center;
}
.includes-description--dark {
    color: var(--text);
    text-align: center;
}
.includes-image {
    position: relative;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    max-width: 500px;
    height: 300px;
}
.includes-image img {
    width: auto;
    height: auto;
    max-width: 100%;
    max-height: 100%;
    display: block;
    border-radius: var(--radius-lg);
    object-fit: contain;
    object-position: center;
}
.includes-text {
    max-width: 480px;
    width: 95%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    word-wrap: break-word;
    overflow-wrap: break-word;
}
.includes-text p {
    text-align: center;
}
.includes-text--dark {
    color: var(--text);
    width: 95%;
    word-wrap: break-word;
    overflow-wrap: break-word;
}
.includes-text--dark p {
    text-align: center;
}
.includes-nav {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 20px;
    margin-top: 40px;
    padding: 10px;
}
.includes-nav-btn {
    width: 48px;
    height: 48px;
    border: 2px solid #fff;
    background: transparent;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    color: #fff;
}
.includes-nav-btn:hover {
    background: #fff;
    color: var(--primary);
    transform: scale(1.1);
}
.includes-nav-btn--dark {
    border-color: var(--primary);
    color: var(--primary);
}
.includes-nav-btn--dark:hover {
    background: var(--primary);
    color: #fff;
}
.includes-counter {
    font: 600 16px var(--font);
    color: #fff;
    min-width: 60px;
    text-align: center;
}
.includes-counter--dark {
    color: var(--primary);
}

/* --------------------------------------------------------------------------
   12. Partners Section
   -------------------------------------------------------------------------- */
.section--partners {
    position: relative;
    overflow: hidden;
    background: #fff;
    border-top: 5px solid var(--secondary);
}
.section--partners::before {
    content: "";
    position: absolute;
    inset: 0;
    background: url("/assets/images/usabg.jpg") center/cover no-repeat;
    opacity: 0.1;
    z-index: 0;
    pointer-events: none;
}
.section--partners .container {
    position: relative;
    z-index: 1;
}
.section--partners .h2 {
    text-align: center;
}
.partners-description {
    color: var(--primary);
    text-align: center;
    margin-top: 16px;
}
.partners-slider-wrapper {
    margin-top: 48px;
}
.partner-image {
    width: 90%;
    max-width: 400px;
}

/* Partners Carousel */
.partners-carousel {
    position: relative;
    max-width: 800px;
    margin: 0 auto;
    padding: 0 60px;
}
.partners-carousel-track {
    display: flex;
    transition: transform 0.5s ease-in-out;
    gap: 24px;
    touch-action: pan-y;
    user-select: none;
}
.partner-slide {
    min-width: 100%;
    flex-shrink: 0;
}
.carousel-nav {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 16px;
    margin-top: 32px;
}
.carousel-btn {
    width: 48px;
    height: 48px;
    border: 2px solid var(--primary);
    background: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    color: var(--primary);
}
.carousel-btn:hover {
    background: var(--primary);
    color: #fff;
    transform: scale(1.1);
}
.carousel-dots {
    display: flex;
    gap: 8px;
    align-items: center;
}
.carousel-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: var(--primary);
    opacity: 0.3;
    cursor: pointer;
    transition: all 0.3s ease;
}
.carousel-dot.active {
    opacity: 1;
    transform: scale(1.3);
    background: var(--secondary);
}

/* --------------------------------------------------------------------------
   13. FAQ Section
   -------------------------------------------------------------------------- */
#faq {
    background: var(--secondary);
    border-top: 5px solid var(--primary-dark);
    border-bottom: 5px solid var(--primary-dark);
}
#faq .card {
    padding: clamp(5px, 1vw, 8px);
}
.section--faq {
    position: relative;
    overflow: hidden;
}
.section--faq::before {
    content: "";
    position: absolute;
    inset: 0;
    background: url("/assets/images/worldbg2.png") center/cover no-repeat;
    opacity: 0.15;
    z-index: 0;
    pointer-events: none;
}
.section--faq .container,
.section--faq .faq-accordion {
    position: relative;
    z-index: 2;
}
.section--faq .section-header {
    text-align: center;
}
.section--faq .accent-bar {
    margin-left: auto;
    margin-right: auto;
    background: white;
}
.section--faq .h2 {
    color: var(--primary);
    text-align: center;
}
.section--faq .p {
    color: var(--primary);
    text-align: center;
    max-width: none;
    width: 100%;
}
.faq-accordion {
    margin-top: 48px;
    margin-left: auto;
    margin-right: auto;
}
.faq-accordion .card {
    padding: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-bottom: 16px;
    overflow: hidden;
    background: rgba(255, 255, 255, 0.7);
    backdrop-filter: blur(10px);
}
.faq-accordion .card:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(255, 153, 0, 0.2);
}
.faq-question-wrapper {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 10px 24px;
    position: relative;
}
.faq-question-wrapper .card-id {
    position: static;
    margin: 0;
    flex-shrink: 0;
}
.faq-question-text {
    font: 600 17px var(--font);
    color: var(--text);
    flex: 1;
    line-height: 1.4;
}
.faq-toggle {
    flex-shrink: 0;
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--secondary);
    border-radius: 50%;
    transition: transform 0.3s ease;
}
.faq-toggle svg {
    color: #fff;
    transition: transform 0.3s ease;
}
.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition:
        max-height 0.4s ease,
        padding 0.4s ease;
    padding: 0 24px;
}
.faq-answer-content {
    padding-bottom: 10px;
    padding-left: 48px;
    color: var(--text);
    line-height: 1.7;
    font-size: 12px;
}
.faq-item.active .faq-answer {
    max-height: 2000px;
    padding: 0 24px 4px;
}
.faq-item.active .faq-toggle {
    transform: rotate(180deg);
}
.faq-item.active .card {
    background: rgba(255, 255, 255, 1);
    border-color: var(--secondary);
}

/* --------------------------------------------------------------------------
   14. Contact Section
   -------------------------------------------------------------------------- */
#contact {
    position: relative;
    background: url("/assets/images/contact-bg.jpg") center/cover no-repeat;
    border-top: 5px solid var(--secondary);
    border-bottom: 5px solid var(--secondary);
    color: white;
}
#contact::after {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 55, 0.9);
    z-index: 1;
    pointer-events: none;
}
#contact .container {
    position: relative;
    z-index: 2;
}
#contact p,
#contact .h2 {
    color: #fff !important;
}
#contact .card {
    background: rgba(255, 255, 255, 0.9) !important;
    transition: all 0.3s ease;
}
#contact .card:hover {
    background: rgba(255, 255, 255, 1) !important;
    box-shadow: 0 8px 32px rgba(0, 0, 85, 0.15);
}
#contact .card,
#contact .card input,
#contact .card textarea,
#contact .card label {
    border: 1px solid var(--primary) !important;
    color: var(--text-muted);
}
.contact-form-container {
    margin-bottom: 30px;
}

/* --------------------------------------------------------------------------
   15. About Section
   -------------------------------------------------------------------------- */
#about {
    background: var(--bg);
}
.section--about {
    position: relative;
    overflow: hidden;
}
.section--about::before {
    content: "";
    position: absolute;
    inset: 0;
    background: url("/assets/images/worldbg.png") center/cover no-repeat;
    opacity: 0.1;
    z-index: 0;
}
.section--about .container {
    position: relative;
    z-index: 1;
}
.section--about .contact-form-container p {
    margin-bottom: 30px;
}

/* --------------------------------------------------------------------------
   16. Blog Section
   -------------------------------------------------------------------------- */
.blog-cards-grid {
    margin-top: 24px;
}
.blog-card {
    position: relative;
}
.blog-card__image {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-radius: 8px;
    margin-bottom: 16px;
}
.blog-card__genre {
    margin-bottom: 8px;
}
.blog-card__title {
    font-weight: 800;
}
.blog-card__abstract {
    margin-top: 8px;
}
.blog-view-all {
    margin-top: 24px;
}

/* --------------------------------------------------------------------------
   17. Footer
   -------------------------------------------------------------------------- */
.footer {
    padding: 60px 0 0;
    background: var(--primary-dark);
    border-top: 3px solid var(--secondary);
    color: white;
}
.footer__inner {
    display: grid;
    grid-template-columns: 280px 1fr;
    gap: 60px;
    align-items: start;
    margin-bottom: 40px;
}
.footer__brand {
    display: flex;
    flex-direction: column;
    gap: 16px;
    align-items: flex-start;
}
.footer__logo {
    max-width: 100%;
    height: auto;
    width: 280px;
    object-fit: contain;
}
.footer__tagline {
    color: rgba(255, 255, 255, 0.9);
    font: 14px/1.5 var(--font);
    max-width: 250px;
}
.footer__section-title {
    color: white;
    font: 600 16px var(--font);
    margin-bottom: 16px;
    letter-spacing: 0.02em;
}
.footer__legal-text {
    color: rgba(255, 255, 255, 0.85);
    font: 13px/1.6 var(--font);
    margin-bottom: 12px;
}
.footer__legal-text strong {
    color: white;
    font-weight: 600;
}
.footer__nav {
    display: flex;
    flex-wrap: wrap;
    gap: 16px 24px;
    margin-top: 12px;
}
.footer__nav a {
    color: rgba(255, 255, 255, 0.9);
    font: 500 14px var(--font);
    transition: all 0.2s;
}
.footer__nav a:hover {
    color: var(--secondary);
    transform: translateX(2px);
}
.footer__social {
    display: flex;
    gap: 16px;
}
.footer__social-link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: var(--primary-dark);
    color: white;
    transition: all 0.3s ease;
}
.footer__social-link:hover {
    background: var(--secondary);
    color: var(--primary);
    transform: translateY(-3px);
}
.footer__bottom {
    border-top: 2px dotted rgba(255, 153, 0, 0.5);
    padding: 20px 0;
    background: var(--secondary);
}
.footer__copyright {
    text-align: center;
    font: 500 13px var(--font);
    color: var(--primary);
    margin: 0;
}
.footer__regulatory-logos {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 0;
    border-top: 1px dotted var(--secondary);
    padding-top: 20px;
}
.footer__regulatory-logos img {
    width: auto;
    max-width: 100px;
    height: auto;
    object-fit: contain;
    filter: brightness(0) invert(1);
    opacity: 0.8;
    transition: all 0.2s ease;
    flex-shrink: 0;
}
.footer__regulatory-logos img:hover {
    opacity: 1;
    transform: translateY(-2px);
}
.footer__bottom-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
}
.footer__bottom .footer__social-link {
    color: var(--secondary);
    background: var(--primary-dark);
    border-radius: 8px;
}
.footer__bottom .footer__social-link:hover {
    color: white;
    transform: translateY(-2px);
}

/* --------------------------------------------------------------------------
   18. Article Styles
   -------------------------------------------------------------------------- */
.article-hero {
    min-height: 90svh;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}
.article-hero::before {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.85);
    z-index: 1;
}
.article-hero .container {
    position: relative;
    z-index: 2;
}
.article-hero .h1 {
    color: var(--bg);
}
.article-meta {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-top: 24px;
    font: 15px var(--font);
    color: rgba(255, 255, 255, 0.9);
    flex-wrap: wrap;
}
.article-meta__author {
    font-weight: 600;
}
.article-meta__separator {
    color: rgba(255, 255, 255, 0.5);
}
.article-content-section {
    padding: 40px 0;
}
.article-content-section:first-of-type {
    padding-top: 80px;
}
.article-text-columns {
    max-width: 1200px;
    margin: 0 auto;
}
.article-text-columns p {
    column-count: 2;
    column-gap: 40px;
    text-align: left;
    font-size: 1.25em;
    line-height: 1.9;
}
.article-text-columns p strong {
    font-weight: 700;
    color: var(--primary);
}
.reading-progress {
    position: fixed;
    top: 0;
    left: 0;
    width: 0%;
    height: 4px;
    background: var(--secondary);
    z-index: 9999;
    transition:
        width 0.1s ease,
        opacity 0.3s ease;
}
.social-share {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
    padding: 32px 0;
    border-top: 2px solid rgba(0, 0, 85, 0.1);
    border-bottom: 2px solid rgba(0, 0, 85, 0.1);
}
.social-share__title {
    font: 600 18px var(--font);
    color: var(--primary);
    margin-bottom: 20px;
}
.social-share__buttons {
    display: flex;
    justify-content: center;
    gap: 16px;
    flex-wrap: wrap;
}
.social-share__btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 24px;
    border: 2px solid var(--primary);
    border-radius: var(--radius);
    background: white;
    color: var(--primary);
    font: 600 15px var(--font);
    cursor: pointer;
    transition: all 0.3s ease;
}
.social-share__btn:hover {
    background: var(--primary);
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 85, 0.2);
}
.article-cta-box {
    max-width: 800px;
    margin: 48px auto;
    padding: 32px;
    background: linear-gradient(135deg, #000033 0%, #000055 100%);
    border: 2px solid var(--secondary);
    border-radius: var(--radius-lg);
    text-align: center;
}
.article-cta-box__title {
    font: 700 24px var(--font);
    color: var(--bg);
    margin-bottom: 16px;
}
.article-cta-box__text {
    font: 16px/1.6 var(--font);
    color: var(--bg);
    margin-bottom: 24px;
}

/* Article-specific CTA styles */
.article-cta-background {
    margin-top: 150px;
    background: var(--secondary);
    height: 550px;
    position: relative;
}
.article-cta-section {
    position: relative;
    margin-top: -160px;
    margin-bottom: 80px;
}
.article-cta-panel {
    margin-top: -650px;
    background: var(--primary-dark);
    border: 1px dotted var(--secondary);
    border-radius: 30px;
    padding: 80px;
}
.article-cta-section .h1,
.article-cta-section .h2,
.article-cta-section .h3,
.article-cta-section .h4 {
    color: var(--bg);
    font-weight: 800;
}
.article-cta-section .p,
.article-cta-section .small {
    color: var(--bg);
    font-weight: 400;
}
.article-cta-content {
    display: grid;
    grid-template-columns: 1fr 45%;
    gap: 40px;
    margin: 32px 0;
}
.article-cta-list {
    display: flex;
    flex-direction: column;
    gap: 20px;
    width: 90%;
}
.article-cta-list .button-group {
    justify-content: flex-start !important;
}
.article-cta-logo {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 60px 30px;
}
.related-articles {
    margin-top: 64px;
}
.related-articles__title {
    font: 700 32px var(--font);
    color: var(--primary);
    text-align: center;
    margin-bottom: 40px;
}
.related-articles__grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 32px;
}
.related-article-card {
    position: relative;
    display: block;
    transition: transform 0.2s ease;
}
.related-article-card:hover {
    transform: translateY(-4px);
}
.related-article-card__image {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-radius: var(--radius);
    margin-bottom: 16px;
}
.related-article-card__genre {
    font: 700 12px var(--font);
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: var(--secondary);
    margin-bottom: 8px;
}
.related-article-card__title {
    font: 700 20px var(--font);
    color: var(--primary);
    margin-bottom: 12px;
    line-height: 1.3;
    transition: color 0.2s ease;
}
.related-article-card:hover .related-article-card__title {
    color: var(--secondary);
}
.related-article-card__abstract {
    font: 15px/1.6 var(--font);
    color: var(--text-muted);
}

/* --------------------------------------------------------------------------
   19. Builder Page
   -------------------------------------------------------------------------- */
.section--builder {
    background: #fff;
}
.builder {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 32px;
    align-items: start;
}
.sticky {
    position: sticky;
    top: 110px;
    align-self: start;
}
.option {
    cursor: pointer;
    transition: all 0.3s ease;
    border: 2px solid var(--line);
}
.option:hover {
    transform: translateY(-2px);
    border-color: var(--secondary);
    box-shadow: 0 8px 20px rgba(255, 153, 0, 0.15);
}
.option--selected {
    border-color: var(--secondary);
    background: rgba(255, 153, 0, 0.05);
    box-shadow: 0 4px 16px rgba(255, 153, 0, 0.2);
}
.option__top {
    display: flex;
    justify-content: space-between;
    gap: 16px;
    align-items: flex-start;
    margin-bottom: 16px;
}
.builder-results {
    margin-top: 48px;
    padding-top: 48px;
    border-top: 2px solid rgba(0, 0, 0, 0.1);
}
.builder-area {
    max-width: 1000px;
    margin: 0 auto;
}
.builder-step {
    margin-bottom: 48px;
    padding-bottom: 48px;
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}
.builder-step:last-child {
    border-bottom: none;
}
.builder-option {
    background: rgba(255, 255, 255, 0.95);
    border: 2px solid rgba(0, 0, 85, 0.15);
    border-radius: 12px;
    padding: 24px;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
}
.builder-option:hover {
    border-color: var(--primary);
    transform: translateY(-4px);
    box-shadow: 0 8px 24px rgba(0, 0, 85, 0.15);
}
.builder-option--selected {
    border-color: var(--primary);
    border-width: 3px;
    background: rgba(255, 153, 0, 0.05);
    box-shadow: 0 4px 16px rgba(255, 153, 0, 0.2);
}
.builder-option--selected::before {
    content: "✓";
    position: absolute;
    top: 12px;
    right: 12px;
    width: 32px;
    height: 32px;
    background: var(--secondary);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font: 800 18px var(--font);
}
.builder-option__header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 16px;
    gap: 12px;
}
.builder-option__header strong {
    font: 700 18px var(--font);
    color: #000;
}
.chip--price {
    background: var(--secondary);
    color: white;
    padding: 6px 16px;
    border-radius: 20px;
    font: 700 14px var(--font);
    white-space: nowrap;
}
.list-bullets {
    list-style: none;
    padding: 0;
    margin: 0;
}
.list-bullets li {
    padding-left: 24px;
    position: relative;
    margin: 8px 0;
    font: 14px var(--font);
    color: #333;
}
.list-bullets li::before {
    content: "•";
    position: absolute;
    left: 8px;
    color: var(--secondary);
    font-weight: 700;
}

/* Builder Page Utilities */
.builder-hero {
    padding-top: 180px;
}
.builder-grid-spacing {
    margin-top: 48px;
}
.builder-preset-grid {
    margin-top: 24px;
}
.builder-step-card {
    text-align: center;
    position: relative;
}
.builder-step-number {
    margin: 0 auto 20px;
}
.builder-step-title {
    font-weight: 800;
    font-size: 18px;
    margin-bottom: 12px;
}
.builder-preset-description {
    margin-top: 8px;
}
.builder-preset-button-wrapper {
    margin-top: 12px;
}

/* Builder title centering */
.builder-hero .section-header {
    text-align: center;
}

/* Hand emoji for builder results */
.hand-emoji {
    display: inline-block;
    transform-origin: center;
}

.kv {
    display: flex;
    flex-direction: column;
    gap: 8px;
    margin-top: 12px;
}
.kv div {
    display: flex;
    justify-content: space-between;
}
.sep {
    border: none;
    border-top: 1px solid var(--line);
    margin: 20px 0;
}

/* Utility Classes */
.mt-2 {
    margin-top: 2px;
}
.mt-4 {
    margin-top: 4px;
}
.mt-6 {
    margin-top: 6px;
}
.mt-8 {
    margin-top: 8px;
}
.mt-10 {
    margin-top: 10px;
}
.mt-12 {
    margin-top: 12px;
}
.mt-16 {
    margin-top: 16px;
}
.mt-20 {
    margin-top: 20px;
}
.mt-24 {
    margin-top: 24px;
}
.mt-32 {
    margin-top: 32px;
}
.mt-48 {
    margin-top: 48px;
}

.mb-4 {
    margin-bottom: 4px;
}
.mb-6 {
    margin-bottom: 6px;
}
.mb-8 {
    margin-bottom: 8px;
}
.mb-10 {
    margin-bottom: 10px;
}
.mb-12 {
    margin-bottom: 12px;
}
.mb-16 {
    margin-bottom: 16px;
}
.mb-20 {
    margin-bottom: 20px;
}
.mb-24 {
    margin-bottom: 24px;
}
.mb-32 {
    margin-bottom: 32px;
}
.mb-48 {
    margin-bottom: 48px;
}

.fw-400 {
    font-weight: 400;
}
.fw-500 {
    font-weight: 500;
}
.fw-600 {
    font-weight: 600;
}
.fw-700 {
    font-weight: 700;
}
.fw-800 {
    font-weight: 800;
}
.fw-900 {
    font-weight: 900;
}

.fs-14 {
    font-size: 14px;
}
.fs-16 {
    font-size: 16px;
}
.fs-18 {
    font-size: 18px;
}
.fs-20 {
    font-size: 20px;
}
.fs-22 {
    font-size: 22px;
}
.fs-24 {
    font-size: 24px;
}
.fs-32 {
    font-size: 32px;
}
.fs-48 {
    font-size: 48px;
}

.w-100 {
    width: 100%;
}
.w-auto {
    width: auto;
}

.opacity-45 {
    opacity: 0.45;
}
.cursor-not-allowed {
    cursor: not-allowed;
}

.gap-2 {
    gap: 2px;
}
.gap-4 {
    gap: 4px;
}
.gap-6 {
    gap: 6px;
}
.gap-8 {
    gap: 8px;
}
.gap-10 {
    gap: 10px;
}
.gap-12 {
    gap: 12px;
}
.gap-14 {
    gap: 14px;
}
.gap-16 {
    gap: 16px;
}
.gap-20 {
    gap: 20px;
}
.gap-24 {
    gap: 24px;
}
.gap-32 {
    gap: 32px;
}

/* Padding Utilities */
.p-2 {
    padding: 2px;
}
.p-4 {
    padding: 4px;
}
.p-6 {
    padding: 6px;
}
.p-8 {
    padding: 8px;
}
.p-10 {
    padding: 10px;
}
.p-12 {
    padding: 12px;
}
.p-16 {
    padding: 16px;
}
.p-20 {
    padding: 20px;
}
.p-24 {
    padding: 24px;
}
.p-32 {
    padding: 32px;
}
.p-40 {
    padding: 40px;
}
.p-48 {
    padding: 48px;
}

.pt-2 {
    padding-top: 2px;
}
.pt-4 {
    padding-top: 4px;
}
.pt-6 {
    padding-top: 6px;
}
.pt-8 {
    padding-top: 8px;
}
.pt-10 {
    padding-top: 10px;
}
.pt-12 {
    padding-top: 12px;
}
.pt-16 {
    padding-top: 16px;
}
.pt-20 {
    padding-top: 20px;
}
.pt-24 {
    padding-top: 24px;
}
.pt-32 {
    padding-top: 32px;
}
.pt-40 {
    padding-top: 40px;
}
.pt-48 {
    padding-top: 48px;
}

.pr-2 {
    padding-right: 2px;
}
.pr-4 {
    padding-right: 4px;
}
.pr-6 {
    padding-right: 6px;
}
.pr-8 {
    padding-right: 8px;
}
.pr-10 {
    padding-right: 10px;
}
.pr-12 {
    padding-right: 12px;
}
.pr-16 {
    padding-right: 16px;
}
.pr-20 {
    padding-right: 20px;
}
.pr-24 {
    padding-right: 24px;
}
.pr-32 {
    padding-right: 32px;
}
.pr-40 {
    padding-right: 40px;
}
.pr-48 {
    padding-right: 48px;
}

.pb-2 {
    padding-bottom: 2px;
}
.pb-4 {
    padding-bottom: 4px;
}
.pb-6 {
    padding-bottom: 6px;
}
.pb-8 {
    padding-bottom: 8px;
}
.pb-10 {
    padding-bottom: 10px;
}
.pb-12 {
    padding-bottom: 12px;
}
.pb-16 {
    padding-bottom: 16px;
}
.pb-20 {
    padding-bottom: 20px;
}
.pb-24 {
    padding-bottom: 24px;
}
.pb-32 {
    padding-bottom: 32px;
}
.pb-40 {
    padding-bottom: 40px;
}
.pb-48 {
    padding-bottom: 48px;
}

.pl-2 {
    padding-left: 2px;
}
.pl-4 {
    padding-left: 4px;
}
.pl-6 {
    padding-left: 6px;
}
.pl-8 {
    padding-left: 8px;
}
.pl-10 {
    padding-left: 10px;
}
.pl-12 {
    padding-left: 12px;
}
.pl-16 {
    padding-left: 16px;
}
.pl-20 {
    padding-left: 20px;
}
.pl-24 {
    padding-left: 24px;
}
.pl-32 {
    padding-left: 32px;
}
.pl-40 {
    padding-left: 40px;
}
.pl-48 {
    padding-left: 48px;
}

.px-2 {
    padding-left: 2px;
    padding-right: 2px;
}
.px-4 {
    padding-left: 4px;
    padding-right: 4px;
}
.px-6 {
    padding-left: 6px;
    padding-right: 6px;
}
.px-8 {
    padding-left: 8px;
    padding-right: 8px;
}
.px-10 {
    padding-left: 10px;
    padding-right: 10px;
}
.px-12 {
    padding-left: 12px;
    padding-right: 12px;
}
.px-16 {
    padding-left: 16px;
    padding-right: 16px;
}
.px-20 {
    padding-left: 20px;
    padding-right: 20px;
}
.px-24 {
    padding-left: 24px;
    padding-right: 24px;
}
.px-32 {
    padding-left: 32px;
    padding-right: 32px;
}
.px-40 {
    padding-left: 40px;
    padding-right: 40px;
}
.px-48 {
    padding-left: 48px;
    padding-right: 48px;
}

.py-2 {
    padding-top: 2px;
    padding-bottom: 2px;
}
.py-4 {
    padding-top: 4px;
    padding-bottom: 4px;
}
.py-6 {
    padding-top: 6px;
    padding-bottom: 6px;
}
.py-8 {
    padding-top: 8px;
    padding-bottom: 8px;
}
.py-10 {
    padding-top: 10px;
    padding-bottom: 10px;
}
.py-12 {
    padding-top: 12px;
    padding-bottom: 12px;
}
.py-16 {
    padding-top: 16px;
    padding-bottom: 16px;
}
.py-20 {
    padding-top: 20px;
    padding-bottom: 20px;
}
.py-24 {
    padding-top: 24px;
    padding-bottom: 24px;
}
.py-32 {
    padding-top: 32px;
    padding-bottom: 32px;
}
.py-40 {
    padding-top: 40px;
    padding-bottom: 40px;
}
.py-48 {
    padding-top: 48px;
    padding-bottom: 48px;
}

/* --------------------------------------------------------------------------
   20. Responsive Design
   -------------------------------------------------------------------------- */
@media (max-width: 1024px) {
    .grid-4 {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 1366px) {
    /* Adjust hero section for 1366x768 screens */
    .section--hero {
        min-height: 100svh;
    }
    .hero-container {
        min-height: 100svh;
    }
    .section--hero .hero-container .grid {
        transform: translateY(-4vh);
    }

    /* Adjust trustband for 1366px screens */
    .section--trust-band {
        margin-top: -150px;
        padding-top: 20px;
        padding-bottom: 15px;
        backdrop-filter: blur(2px) saturate(30%);
    }
    .trust-band-number {
        font-size: clamp(28px, 4vw, 48px);
    }
    .trust-band-label {
        font-size: clamp(10px, 1.2vw, 13px);
    }
    .trust-band-grid {
        gap: clamp(15px, 2.5vw, 30px);
    }
    .trust-band-item {
        padding: 15px;
    }
    /* Adjust button sizes for 1366px */
    .btn--large {
        padding: 14px 28px;
        font-size: 15px;
        min-height: 48px;
    }
    .button-group {
        gap: 10px;
    }
    .trust-band-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-height: 800px) {
    .section--hero {
        min-height: 100vh;
    }
    .hero-container {
        min-height: 100vh;
        padding: 20px clamp(20px, 5vw, 80px);
    }
    .section--hero .hero-container .grid {
        transform: translateY(0);
    }
    /* Adjust trustband for short screens */
    .section--trust-band {
        margin-top: -100px;
        padding-top: 15px;
        padding-bottom: 10px;
        backdrop-filter: blur(1px) saturate(25%);
    }
    .trust-band-number {
        font-size: clamp(24px, 3.5vw, 36px);
    }
    .trust-band-label {
        font-size: clamp(9px, 1vw, 12px);
    }
    .trust-band-grid {
        gap: 12px;
    }
    .trust-band-item {
        padding: 10px;
    }
    /* Adjust button sizes for short screens */
    .btn--large {
        padding: 12px 24px;
        font-size: 14px;
        min-height: 44px;
    }
    .button-group {
        gap: 8px;
    }
}

@media (max-width: 1366px) and (max-height: 800px) {
    /* Even more aggressive trustband adjustments for 1366x768 screens */
    .section--trust-band {
        margin-top: -80px;
        padding: 4px 0;
        backdrop-filter: none;
    }
    .trust-band-number {
        font-size: clamp(20px, 2.5vw, 28px);
        margin-bottom: 6px;
    }
    .trust-band-label {
        font-size: clamp(8px, 0.9vw, 11px);
    }
    .trust-band-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 10px;
    }
    .trust-band-item {
        padding: 8px;
    }
    /* Most aggressive button adjustments for 1366x768 screens */
    .btn--large {
        padding: 8px 16px;
        font-size: 12px;
        min-height: 36px;
    }
    .button-group {
        gap: 4px;
    }
}

@media (max-width: 1080px) {
    .section--trust-band {
        display: none;
    }
    .trust-band-grid {
        display: none;
    }
}

@media (max-width: 980px) {
    .grid-2 {
        grid-template-columns: 1fr;
    }
    .grid-3 {
        grid-template-columns: repeat(2, 1fr);
    }
    .grid-4 {
        grid-template-columns: repeat(2, 1fr);
    }
    .builder {
        grid-template-columns: 1fr;
    }
    .builder-hero {
        margin-top: 60px;
    }
    .builder-hero .accent-bar {
        display: none;
    }
    .hero-logo-container {
        display: none;
    }
    .header__inner {
        height: 70px;
    }
    .nav {
        display: none;
    }
    .h1 {
        font-size: 36px;
    }
    .h2 {
        font-size: 28px;
    }
    .section {
        padding: 60px 0;
    }
    .section--hero {
        min-height: 100svh;
        display: flex;
        align-items: center;
        justify-content: center;
    }
    .section--hero.section--image {
        border-bottom: 3px solid var(--secondary);
    }
    .hero-container {
        min-height: 100svh;
        padding: 80px clamp(20px, 5vw, 80px);
        display: flex;
        align-items: center;
        justify-content: center;
    }
    .section--hero .hero-container .grid {
        transform: translateY(0);
        display: flex;
        flex-direction: column;
        align-items: center;
        text-align: center;
    }
    .section--hero .accent-bar {
        display: none;
    }
    .section--hero .button-group {
        justify-content: center;
    }
    .section--hero .btn--ghost-white {
        display: none;
    }
    .trust-band-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 32px;
    }
    .footer__inner {
        grid-template-columns: 1fr;
        gap: 32px;
    }
    .sticky {
        position: relative;
        top: 0;
    }
    .how-it-works-content {
        grid-template-columns: 1fr;
        gap: 32px;
    }
    .overview-cards .card {
        min-height: 200px;
        display: flex;
        flex-direction: column;
        justify-content: flex-start;
    }
    .overview-card__title {
        font-size: 17px;
        margin-bottom: 8px;
    }
    .overview-card .small {
        font-size: 14px;
        line-height: 1.5;
        flex-grow: 1;
    }
    .cta-panel {
        padding: 48px;
        margin-top: -100px;
    }
    .article-cta-panel {
        padding: 48px;
    }
    .article-cta-section {
        margin-top: -100px;
        margin-bottom: 60px;
    }
    .article-cta-content {
        grid-template-columns: 1fr;
        gap: 32px;
    }
    .includes-content-wrapper {
        grid-template-columns: 1fr;
        gap: 32px;
    }
    .includes-card {
        padding: 32px 24px;
    }
    .includes-card--light {
        margin-top: 20px;
        background: transparent;
        border: none;
    }
    .includes-image {
        order: -1;
        margin: 0 auto;
        max-width: 350px;
        height: 250px;
    }
    .includes-image img {
        width: auto;
        height: auto;
        max-width: 100%;
        max-height: 100%;
    }
    .includes-text {
        max-width: 320px;
        text-align: center;
        padding: 0 16px;
        display: block;
        word-wrap: break-word;
        overflow-wrap: break-word;
    }
    .includes-category {
        text-align: center;
    }
    .partners-description {
        word-wrap: break-word;
        overflow-wrap: break-word;
        max-width: 100%;
        padding: 0 16px;
    }
    .includes-description {
        text-align: center;
        word-wrap: break-word;
        overflow-wrap: break-word;
    }
    .includes-description--dark {
        text-align: center;
        width: 100%;
    }
    .includes-category--dark {
        text-align: center;
        width: 100%;
    }
    .includes-text--dark {
        width: 100%;
        padding: 0 16px;
    }
    .article-hero {
        min-height: 100svh;
    }
}

@media (max-width: 968px) {
    .nav {
        gap: 24px;
    }
    .nav a {
        font-size: 14px;
    }
    .header__cta .btn {
        padding: 10px 16px;
        font-size: 14px;
    }
}

@media (max-width: 768px) {
    .header__inner {
        height: 68px;
        justify-content: flex-start;
    }
    .logo {
        display: none;
    }
    .mobile-menu-toggle {
        display: flex;
        order: -1;
        margin-right: auto;
    }
    .nav {
        display: none;
        position: fixed;
        top: 68px;
        left: 0;
        right: 0;
        background: rgba(0, 0, 32, 0.98);
        flex-direction: column;
        padding: 24px;
        gap: 0;
        border-bottom: 1px solid var(--secondary);
        box-shadow: 0 8px 16px rgba(0, 0, 0, 0.3);
        max-height: calc(100vh - 68px);
        overflow-y: auto;
    }
    .nav.active {
        display: flex;
    }
    .nav a {
        width: 100%;
        padding: 20px 0;
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
        font-size: 17px;
        min-height: 44px;
        display: flex;
        align-items: center;
    }
    .nav a::after {
        display: none;
    }
    .header__cta {
        gap: 8px;
        margin-left: auto;
    }
    .header__cta .btn {
        padding: 12px 20px;
        font-size: 14px;
        white-space: nowrap;
        min-height: 44px;
        display: inline-flex;
        align-items: center;
        justify-content: center;
    }
    .startaway-lang-switcher__toggle {
        padding: 10px 14px;
        border-radius: 999px;
        min-height: 44px;
        display: inline-flex;
        align-items: center;
        justify-content: center;
    }
    .startaway-lang-switcher__flag {
        width: 20px;
        height: 15px;
    }
    .startaway-lang-switcher__label {
        font-size: 13px;
    }
    .startaway-lang-switcher__check {
        width: 14px;
        height: 14px;
    }
    .startaway-lang-switcher__menu {
        right: auto;
        left: 50%;
        transform: translateX(-50%) translateY(-8px) scale(0.95);
        min-width: 180px;
    }
    .startaway-lang-switcher:hover .startaway-lang-switcher__menu,
    .startaway-lang-switcher.active .startaway-lang-switcher__menu {
        transform: translateX(-50%) translateY(0) scale(1);
    }
    .startaway-lang-switcher__item {
        padding: 14px 16px;
        font-size: 14px;
        min-height: 44px;
        display: flex;
        align-items: center;
        gap: 10px;
    }
    .hero-video {
        position: absolute;
        top: 50%;
        left: 50%;
        min-width: 100%;
        min-height: 100%;
        width: auto;
        height: auto;
        transform: translate(-50%, -50%);
        object-fit: cover;
        display: block;
    }
    .section--hero {
        min-height: 100svh;
        display: flex;
        align-items: center;
        justify-content: center;
    }
    .section--hero.section--image {
        border-bottom: 3px solid var(--secondary);
    }
    .hero-container {
        min-height: 100svh;
        display: flex;
        align-items: center;
        justify-content: center;
        padding: 40px clamp(20px, 5vw, 40px);
    }
    .section--hero .hero-container .grid {
        transform: translateY(0);
        display: flex;
        flex-direction: column;
        align-items: center;
        text-align: center;
        width: 100%;
    }
    .hero-logo {
        display: none;
    }
    .hero-logo-container {
        display: none;
    }
    .section--hero .accent-bar {
        display: none;
    }
    .section--hero .button-group {
        justify-content: center;
        align-items: center;
    }
    .section--hero .btn--ghost-white {
        display: none;
    }
    .trust-band-item {
        text-align: center;
    }
    .trust-band-number {
        font-size: clamp(36px, 8vw, 56px);
        margin-bottom: 8px;
    }
    .trust-band-label {
        font-size: 15px;
    }
    .logo-marquee__viewport {
        height: 120px;
    }
    .logo-marquee__track img {
        max-height: 80px;
        max-width: 120px;
    }
    .article-hero {
        min-height: 100svh;
    }
    .footer {
        padding: 40px 0 0;
    }
    .footer__logo {
        width: 180px;
    }
    .section--overview .accent-bar {
        display: none;
    }
    .section--overview .h1 {
        margin-top: 50px;
        margin-bottom: 0;
        text-align: center;
    }
    .section--overview .subhead {
        text-align: center;
    }
    .footer__nav {
        flex-direction: column;
        gap: 12px;
    }
    .footer__regulatory-logos {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 16px;
        place-items: center;
    }
    .footer__regulatory-logos img {
        max-width: 80px;
    }
    .footer__bottom-content {
        flex-direction: column;
        text-align: center;
        gap: 16px;
    }
    .faq-question-text {
        font-size: 15px;
        line-height: 1.4;
        flex: 1;
        margin-right: 12px;
    }
    .faq-answer-content {
        padding-left: 24px;
        font-size: 14px;
        padding-bottom: 16px;
        line-height: 1.6;
        padding-right: 24px;
    }
    .faq-question-wrapper {
        padding: 20px 24px;
        min-height: 64px;
        display: flex;
        align-items: center;
        cursor: pointer;
    }
    .partners-carousel {
        padding: 0 20px;
    }
    .carousel-btn {
        width: 48px;
        height: 48px;
        min-width: 48px;
        min-height: 48px;
    }
    .includes-nav-btn {
        width: 48px;
        height: 48px;
        min-width: 48px;
        min-height: 48px;
    }
    .includes-block {
        padding: 32px 20px;
    }
    .includes-content-wrapper {
        gap: 32px;
        align-items: center;
    }
    .includes-card {
        padding: 32px 24px;
    }
    .includes-image {
        height: 220px;
        max-width: 300px;
    }
    .includes-image img {
        width: auto;
        height: auto;
        max-width: 100%;
        max-height: 100%;
    }
    .includes-description {
        word-wrap: break-word;
        overflow-wrap: break-word;
        text-align: center;
    }
    .includes-description--dark {
        word-wrap: break-word;
        overflow-wrap: break-word;
        text-align: center;
        width: 100%;
    }
    .partners-description {
        word-wrap: break-word;
        overflow-wrap: break-word;
        max-width: 100%;
        padding: 0 16px;
    }
    .includes-category--dark {
        word-wrap: break-word;
        overflow-wrap: break-word;
        text-align: center;
        width: 100%;
    }
    .includes-text--dark {
        width: 100%;
        padding: 0 16px;
    }
    input,
    textarea,
    select {
        padding: 12px 16px;
        font-size: 16px;
    }
    .article-text-columns p {
        column-count: 1;
    }
    .how-it-works-list-prices {
        display: none;
    }
    .how-it-works-item__number {
        width: 36px;
        height: 36px;
        font-size: 18px;
        min-width: 36px;
        min-height: 36px;
    }
    .pricing-table {
        padding: 28px 20px;
        border-radius: 16px;
        margin-bottom: 20px;
    }
    .pricing-row {
        flex-direction: row;
        gap: 8px;
        padding: 12px 0;
        align-items: center;
        justify-content: space-between;
        border-bottom: 1px solid rgba(255, 255, 255, 0.15);
        font-size: 14px;
    }
    .pricing-row span:last-child {
        align-self: flex-end;
    }
    .pricing-row span[style*="font-weight"] {
        font-size: 17px !important;
        font-weight: 700 !important;
    }
    .how-it-works-list[style*="background: var(--secondary)"] {
        border-radius: 20px !important;
        margin-top: 24px;
    }
    .how-it-works-list {
        align-items: center;
        margin: 0 auto;
    }
    .how-it-works-list h3 {
        text-align: center;
        margin-top: 50px;
        margin-bottom: 20px;
    }
    .button-group {
        flex-direction: column;
        gap: 12px;
        align-items: center;
    }
    .button-group .btn {
        width: 100%;
        min-height: 48px;
    }
    .how-it-works-content .how-it-works-list .button-group {
        justify-content: center !important;
        align-items: center !important;
    }
    .overview-cards {
        margin-top: 48px;
        margin-bottom: 64px;
    }
    .pricing-row:not(:last-child) {
        border-bottom: 1px solid rgba(255, 255, 255, 0.15);
    }
    .pricing-row:last-child {
        border-bottom: none;
        padding-bottom: 0;
    }
    .overview-cards .card {
        padding: 24px;
    }
    .overview-card .icon-box {
        margin-bottom: 16px;
    }
    .builder-teaser-card {
        margin: 32px auto;
    }
    .builder-stat {
        font-size: 20px;
    }
    .partner-image {
        width: 85%;
        max-width: 400px;
        height: auto;
    }
    .blog-card__image {
        height: 200px;
        object-fit: cover;
    }
    .cta-panel {
        margin-top: -120px;
    }
    .article-cta-section {
        margin-top: -120px;
        margin-bottom: 50px;
    }
    .hand-emoji {
        transform: rotate(-90deg);
    }
    .builder-hero {
        padding-top: 60px;
    }
    .builder-hero .accent-bar {
        display: none;
    }
}

@media (max-width: 640px) {
    :root {
        font-size: 15px;
    }
    .h1 {
        font-size: 32px;
    }
    .h2 {
        font-size: 24px;
    }
    .btn {
        width: 100%;
    }
    .trust-band-number {
        font-size: clamp(48px, 12vw, 72px);
    }
    .trust-band-grid {
        grid-template-columns: 1fr;
        gap: 24px;
    }
    .logo-marquee__viewport {
        height: 100px;
    }
    .logo-marquee__track img {
        max-height: 60px;
        max-width: 100px;
    }
    .grid-3,
    .grid-4 {
        grid-template-columns: 1fr;
    }
    .builder-hero {
        padding-top: 60px;
    }
    .builder-hero .accent-bar {
        display: none;
    }
}

@media (max-width: 480px) {
    .header__inner {
        height: 60px;
        gap: 12px;
    }
    .logo {
        font-size: 18px;
    }
    .nav {
        top: 60px;
        max-height: calc(100vh - 60px);
    }
    .header__cta .btn {
        padding: 12px 20px;
        font-size: 14px;
        min-height: 44px;
    }
    .startaway-lang-switcher__menu {
        min-width: 180px;
    }
    .footer {
        padding: 32px 0 0;
    }
    .footer__logo {
        width: 100%;
    }
    .footer__col--brand {
        padding: 0 16px;
    }
    .footer__legal-text {
        font-size: 14px;
        line-height: 1.5;
    }
    .footer__section-title {
        font-size: 17px;
    }
    .footer__regulatory-logos {
        margin-top: 30px;
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 12px;
        padding: 30px 0;
        place-items: center;
    }
    .footer__regulatory-logos img {
        max-width: 70px;
        height: auto;
    }
    .footer__bottom {
        padding: 16px 0;
    }
    .footer__copyright {
        font-size: 13px;
        padding: 0 16px;
        line-height: 1.5;
    }
    .footer__social {
        gap: 12px;
    }
    .footer__bottom .footer__social-link {
        width: 44px;
        height: 44px;
        min-width: 44px;
        min-height: 44px;
    }
    .footer__bottom .footer__social-link svg {
        width: 24px;
        height: 24px;
    }
    .cta-panel {
        padding: 32px 24px;
        margin-top: -80px;
    }
    .article-cta-section {
        margin-top: -80px;
        margin-bottom: 40px;
    }
    .article-cta-panel {
        padding: 32px 24px;
    }
    .includes-content-wrapper {
        gap: 24px;
    }
    .includes-card {
        padding: 24px 0px;
    }
    .includes-image {
        height: 200px;
        max-width: 280px;
    }
    .includes-image img {
        width: auto;
        height: auto;
        max-width: 100%;
        max-height: 100%;
    }
    .includes-description {
        word-wrap: break-word;
        overflow-wrap: break-word;
        text-align: center;
    }
    .includes-description--dark {
        word-wrap: break-word;
        overflow-wrap: break-word;
        text-align: center;
        width: 100%;
    }
    .partners-description {
        word-wrap: break-word;
        overflow-wrap: break-word;
        max-width: 100%;
        padding: 0 16px;
    }
    .includes-category--dark {
        word-wrap: break-word;
        overflow-wrap: break-word;
        text-align: center;
        width: 100%;
    }
    .includes-text--dark {
        width: 100%;
        padding: 0 16px;
    }
    .section--partners {
        display: none;
    }
    .section--hero {
        min-height: 100vh;
    }
    .section--hero.section--image {
        border-bottom: 3px solid var(--secondary);
    }
    .hero-container {
        padding: 30px clamp(16px, 4vw, 30px);
    }
    .h1 {
        font-size: 28px;
        line-height: 1.2;
    }
    .subhead {
        font-size: 16px;
        line-height: 1.4;
    }
    .button-group {
        flex-direction: column;
        gap: 12px;
        width: 100%;
        justify-content: center;
    }
    .button-group .btn {
        width: 100%;
        max-width: 280px;
        min-height: 48px;
    }
    .how-it-works-content .how-it-works-list .button-group {
        justify-content: center !important;
    }
    .pricing-row {
        font-size: 14px;
        padding: 12px 0;
        gap: 8px;
        border-bottom: 1px solid rgba(255, 255, 255, 0.15);
        flex-direction: row;
        align-items: center;
        justify-content: space-between;
    }
    .pricing-row span:last-child {
        font-size: 14px;
        font-weight: 700;
    }
    .pricing-row span[style*="font-weight"] {
        font-size: 14px !important;
        font-weight: 700 !important;
    }
    .pricing-row:not(:last-child) {
        border-bottom: 1px solid rgba(255, 255, 255, 0.15);
    }
    .pricing-row:last-child {
        border-bottom: none;
        padding-bottom: 0;
    }
    .how-it-works-list[style*="background: var(--secondary)"] {
        border-radius: 20px !important;
        margin-top: 24px;
        padding: 24px 16px !important;
    }
    .builder-hero {
        padding-top: 60px;
    }
    .builder-hero .accent-bar {
        display: none;
    }
    .section--hero .accent-bar {
        display: none;
    }
    .section--hero .btn--ghost-white {
        display: none;
    }
}

/* --------------------------------------------------------------------------
   21. Accessibility
   -------------------------------------------------------------------------- */
@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
    .logo-marquee__track {
        animation: none !important;
    }
}

/* Logo marquee mobile optimizations */
@media (max-width: 768px) {
    .logo-marquee__viewport {
        mask-image: linear-gradient(
            to right,
            transparent,
            #000 8%,
            #000 92%,
            transparent
        );
        -webkit-mask-image: linear-gradient(
            to right,
            transparent,
            #000 8%,
            #000 92%,
            transparent
        );
    }
    .logo-marquee__track {
        will-change: transform;
        backface-visibility: hidden;
        -webkit-backface-visibility: hidden;
    }
}
a:focus-visible,
button:focus-visible,
.btn:focus-visible {
    outline: 3px solid var(--secondary);
    outline-offset: 3px;
}

/* --------------------------------------------------------------------------
   22. Animations
   -------------------------------------------------------------------------- */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}
.reveal {
    animation: fadeInUp 0.6s ease-out forwards;
    opacity: 0;
}
.reveal:nth-child(1) {
    animation-delay: 0.1s;
}
.reveal:nth-child(2) {
    animation-delay: 0.2s;
}
.reveal:nth-child(3) {
    animation-delay: 0.3s;
}
.reveal:nth-child(4) {
    animation-delay: 0.4s;
}
.reveal:nth-child(5) {
    animation-delay: 0.5s;
}
.reveal:nth-child(6) {
    animation-delay: 0.6s;
}
.reveal:nth-child(7) {
    animation-delay: 0.7s;
}
.reveal:nth-child(8) {
    animation-delay: 0.8s;
}
.reveal:nth-child(9) {
    animation-delay: 0.9s;
}
.reveal:nth-child(10) {
    animation-delay: 1s;
}
.reveal:nth-child(11) {
    animation-delay: 1.1s;
}
.reveal:nth-child(12) {
    animation-delay: 1.2s;
}

/* Card reveal animation */
.card--reveal {
    animation: fadeInUp 0.6s ease-out forwards;
    opacity: 0;
}

/* Delay utility classes */
.delay-0 {
    animation-delay: 0s;
}
.delay-1 {
    animation-delay: 0.1s;
}
.delay-2 {
    animation-delay: 0.2s;
}
.delay-3 {
    animation-delay: 0.3s;
}
.delay-4 {
    animation-delay: 0.4s;
}
.delay-5 {
    animation-delay: 0.5s;
}
.delay-6 {
    animation-delay: 0.6s;
}
.delay-7 {
    animation-delay: 0.7s;
}
.delay-8 {
    animation-delay: 0.8s;
}
.delay-9 {
    animation-delay: 0.9s;
}
.delay-10 {
    animation-delay: 1s;
}
