/* ============================================
   Meridian International Commerce LLC
   Premium Corporate B2B Trading Website
   CSS - Single File Architecture
   ============================================ */

/* ============================================
   TABLE OF CONTENTS
   1. CSS Reset & Base
   2. CSS Custom Properties (Design Tokens)
   3. Typography & Fonts
   4. Utility Classes
   5. Layout (Container, Grid)
   6. Header & Navigation
   7. Footer
   8. Buttons
   9. Cards
   10. Forms
   11. Hero Sections
   12. Page Sections (Home)
   13. Page Sections (Capabilities)
   14. Page Sections (Contact)
   15. 404 Page
   16. Scroll Animations
   17. Mobile Menu
   18. Responsive (Media Queries)
   19. Reduced Motion
   ============================================ */

/* ============================================
   1. CSS Reset & Base
   ============================================ */
*,
*::before,
*::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    -webkit-text-size-adjust: 100%;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    font-size: 17px;
    font-weight: 400;
    line-height: 1.7;
    color: var(--text-dark);
    background-color: var(--white);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    overflow-x: hidden;
}

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

a {
    text-decoration: none;
    color: inherit;
    transition: color 0.3s ease;
}

button {
    cursor: pointer;
    border: none;
    background: none;
    font-family: inherit;
}

ul, ol {
    list-style: none;
}

/* ============================================
   2. CSS Custom Properties (Design Tokens)
   ============================================ */
:root {
    /* Colors */
    --navy: #0C1D3D;
    --white: #FFFFFF;
    --light-gray: #F4F5F7;
    --gold: #C8A55C;
    --gold-light: #D4B76A;
    --gold-muted: rgba(200, 165, 92, 0.15);
    --text-dark: #1A1A2E;
    --text-gray: #6B7280;
    --border-light: #E5E7EB;
    --border-dark: #1A2B4A;
    --navy-dark: #080E1A;

    /* Status Colors */
    --success-bg: #ECFDF5;
    --success-border: #A7F3D0;
    --success-text: #065F46;
    --error-bg: #FEF2F2;
    --error-border: #FECACA;
    --error-text: #991B1B;

    /* Typography Scale */
    --display-size: clamp(2.25rem, 5vw, 4rem);
    --h2-size: clamp(1.75rem, 3.5vw, 2.625rem);
    --h3-size: clamp(1.25rem, 2vw, 1.75rem);
    --body-size: 17px;
    --body-small: 15px;
    --label-size: 12px;
    --button-size: 14px;
    --nav-size: 13px;

    /* Spacing */
    --section-pad-y: 120px;
    --section-pad-x: 48px;
    --section-pad-y-mobile: 64px;
    --section-pad-x-mobile: 20px;
    --container-max: 1200px;
    --container-wide: 1400px;
    --grid-gap: 32px;
    --card-gap: 24px;

    /* Transitions */
    --transition-default: 0.3s ease;
    --transition-slow: 0.5s ease;
    --cubic-smooth: cubic-bezier(0.25, 0.1, 0.25, 1);

    /* Header */
    --header-height: 72px;
    --header-height-mobile: 64px;
    --header-bg: rgba(12, 29, 61, 0.95);
}

/* ============================================
   3. Typography & Fonts
   ============================================ */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700&display=swap');

h1, h2, h3, h4, h5, h6 {
    font-weight: 400;
    line-height: 1.2;
    color: var(--navy);
}

h1 {
    font-size: var(--display-size);
    letter-spacing: -1px;
    line-height: 1.1;
}

h2 {
    font-size: var(--h2-size);
    letter-spacing: -0.5px;
}

h3 {
    font-size: var(--h3-size);
    font-weight: 500;
    line-height: 1.3;
}

/* Label style - overlines, section labels */
.label {
    font-size: var(--label-size);
    font-weight: 600;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: var(--gold);
    display: block;
}

/* Body text */
.body-text {
    font-size: var(--body-size);
    line-height: 1.7;
    color: var(--text-dark);
}

.body-small {
    font-size: var(--body-small);
    line-height: 1.6;
    color: var(--text-gray);
}

/* ============================================
   4. Utility Classes
   ============================================ */
.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border-width: 0;
}

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

/* ============================================
   5. Layout (Container, Grid)
   ============================================ */
.container {
    max-width: var(--container-max);
    margin: 0 auto;
    padding-left: var(--section-pad-x);
    padding-right: var(--section-pad-x);
}

.container-wide {
    max-width: var(--container-wide);
    margin: 0 auto;
    padding-left: var(--section-pad-x);
    padding-right: var(--section-pad-x);
}

.grid-2 {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--grid-gap);
}

.grid-3 {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--card-gap);
}

.grid-4 {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: var(--grid-gap);
}

/* ============================================
   6. Header & Navigation
   ============================================ */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    height: var(--header-height);
    background: var(--navy);
    z-index: 1000;
    transition: background var(--transition-default), box-shadow var(--transition-default);
}

.header.scrolled {
    background: var(--header-bg);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.1);
}

.header__inner {
    max-width: var(--container-wide);
    margin: 0 auto;
    padding: 0 var(--section-pad-x);
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.header__logo {
    display: flex;
    align-items: center;
    gap: 12px;
    white-space: nowrap;
}

.header__logo-img {
    height: 40px !important;
    max-height: 40px;
    width: auto !important;
    max-width: 140px;
    object-fit: contain;
    display: block;
}

.header__logo-text {
    font-size: var(--label-size);
    font-weight: 600;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: var(--white);
}

.header__nav {
    display: flex;
    align-items: center;
    gap: 36px;
}

.header__nav-link {
    font-size: var(--nav-size);
    font-weight: 500;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    color: var(--white);
    opacity: 0.85;
    position: relative;
    padding: 4px 0;
    transition: opacity var(--transition-default);
}

.header__nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--gold);
    transition: width var(--transition-default);
}

.header__nav-link:hover,
.header__nav-link.active {
    opacity: 1;
}

.header__nav-link:hover::after,
.header__nav-link.active::after {
    width: 100%;
}

.header__cta {
    display: inline-block;
    padding: 12px 24px;
    background: var(--gold);
    color: var(--navy);
    font-size: var(--button-size);
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    border-radius: 4px;
    transition: all var(--transition-default);
}

.header__cta:hover {
    background: var(--gold-light);
    transform: scale(1.02);
}

/* Mobile Hamburger */
.hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    padding: 8px;
    z-index: 1002;
}

.hamburger span {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--white);
    transition: all 0.3s ease;
}

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

.hamburger.active span:nth-child(2) {
    opacity: 0;
}

.hamburger.active span:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
}

/* Mobile Menu */
.mobile-menu {
    position: fixed;
    top: 0;
    right: 0;
    width: 100%;
    max-width: 360px;
    height: 100vh;
    background: var(--navy);
    z-index: 1001;
    padding: 100px 40px 40px;
    transform: translateX(100%);
    transition: transform 0.4s ease;
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.mobile-menu.open {
    transform: translateX(0);
}

.mobile-menu__link {
    font-size: 16px;
    font-weight: 500;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    color: var(--white);
    opacity: 0.85;
    padding: 12px 0;
    border-bottom: 1px solid var(--border-dark);
    transition: opacity var(--transition-default), color var(--transition-default);
}

.mobile-menu__link:hover {
    opacity: 1;
    color: var(--gold);
}

.mobile-menu__cta {
    margin-top: 16px;
    display: inline-block;
    padding: 14px 32px;
    background: var(--gold);
    color: var(--navy);
    font-size: var(--button-size);
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    border-radius: 4px;
    text-align: center;
    transition: background var(--transition-default);
}

.mobile-menu__cta:hover {
    background: var(--gold-light);
}

/* Mobile Menu Overlay */
.menu-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    z-index: 999;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease;
}

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

/* ============================================
   7. Footer
   ============================================ */
.footer {
    background: var(--navy-dark);
    padding: 80px var(--section-pad-x) 40px;
}

.footer__inner {
    max-width: var(--container-max);
    margin: 0 auto;
}

.footer__grid {
    display: grid;
    grid-template-columns: 1.2fr 1fr 1fr;
    gap: var(--grid-gap);
    padding-bottom: 48px;
    border-bottom: 1px solid var(--border-dark);
}

.footer__brand {
    font-size: var(--label-size);
    font-weight: 600;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: var(--white);
}

.footer__tagline {
    font-size: var(--body-small);
    color: var(--text-gray);
    margin-top: 8px;
}

.footer__copyright {
    font-size: var(--body-small);
    color: var(--text-gray);
    margin-top: 16px;
    opacity: 0.7;
}

.footer__heading {
    font-size: var(--label-size);
    font-weight: 600;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 20px;
}

.footer__link {
    display: block;
    font-size: var(--nav-size);
    font-weight: 500;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    color: var(--white);
    opacity: 0.7;
    padding: 6px 0;
    transition: opacity var(--transition-default), color var(--transition-default);
}

.footer__link:hover {
    opacity: 1;
    color: var(--gold);
}

.footer__email {
    font-size: var(--body-small);
    color: var(--gold);
    transition: opacity var(--transition-default);
}

.footer__email:hover {
    opacity: 0.8;
}

.footer__disclaimer {
    font-size: 14px;
    color: var(--text-gray);
    opacity: 0.6;
    padding-top: 32px;
    max-width: 900px;
    line-height: 1.6;
}

/* ============================================
   8. Buttons
   ============================================ */
.btn {
    display: inline-block;
    padding: 14px 32px;
    font-size: var(--button-size);
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    border-radius: 4px;
    cursor: pointer;
    transition: all var(--transition-default);
    text-align: center;
    font-family: inherit;
}

.btn--primary {
    background: var(--gold);
    color: var(--navy);
    border: none;
}

.btn--primary:hover {
    background: var(--gold-light);
    transform: translateY(-2px);
    box-shadow: 0 4px 16px rgba(200, 165, 92, 0.3);
}

.btn--secondary {
    background: transparent;
    color: var(--gold);
    border: 1.5px solid var(--gold);
}

.btn--secondary:hover {
    background: var(--gold-muted);
    transform: translateY(-2px);
}

.btn-group {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
}

/* Hero CTA Button - larger, more prominent */
.btn--hero {
    padding: 18px 48px;
    font-size: 15px;
    letter-spacing: 1.5px;
}

/* ============================================
   9. Cards
   ============================================ */
.card {
    background: var(--white);
    border: 1px solid var(--border-light);
    border-radius: 8px;
    padding: 40px;
    transition: transform var(--transition-default), box-shadow var(--transition-default);
}

.card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.06);
}

.card__icon {
    width: 40px;
    height: 40px;
    margin-bottom: 20px;
    color: var(--gold);
}

.card__icon svg {
    width: 100%;
    height: 100%;
    stroke: currentColor;
    stroke-width: 1.5;
    fill: none;
}

.card__title {
    font-size: var(--h3-size);
    font-weight: 500;
    color: var(--navy);
    margin-bottom: 12px;
}

.card__description {
    font-size: var(--body-small);
    line-height: 1.6;
    color: var(--text-gray);
}

/* ============================================
   10. Forms
   ============================================ */
.form-group {
    margin-bottom: 24px;
}

.form-group--half {
    grid-column: span 1;
}

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

.form__label {
    display: block;
    font-size: var(--label-size);
    font-weight: 600;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: var(--navy);
    margin-bottom: 8px;
}

.form__label .required {
    color: var(--error-text);
    margin-left: 2px;
}

.form__input,
.form__select,
.form__textarea {
    width: 100%;
    padding: 14px 16px;
    font-family: inherit;
    font-size: var(--body-small);
    color: var(--text-dark);
    background: var(--white);
    border: 1px solid var(--border-light);
    border-radius: 6px;
    transition: border-color var(--transition-default), box-shadow var(--transition-default);
    outline: none;
}

.form__input:focus,
.form__select:focus,
.form__textarea:focus {
    border-color: var(--gold);
    box-shadow: 0 0 0 3px rgba(200, 165, 92, 0.15);
}

.form__input::placeholder,
.form__textarea::placeholder {
    color: var(--text-gray);
    opacity: 0.6;
}

.form__textarea {
    resize: vertical;
    min-height: 140px;
}

.form__select {
    appearance: none;
    -webkit-appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 24 24' fill='none' stroke='%236B7280' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'%3E%3C/polyline%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 14px center;
    padding-right: 40px;
}

.form__error {
    font-size: 13px;
    color: var(--error-text);
    margin-top: 6px;
    display: none;
}

.form__error.visible {
    display: block;
}

.form__input.error {
    border-color: var(--error-border);
}

/* Honeypot - hidden spam field */
.form__honeypot {
    display: none !important;
}

/* Form Messages */
.form-message {
    padding: 16px;
    border-radius: 6px;
    margin-bottom: 24px;
    display: none;
}

.form-message.visible {
    display: block;
}

.form-message--success {
    background: var(--success-bg);
    border: 1px solid var(--success-border);
    color: var(--success-text);
}

.form-message--error {
    background: var(--error-bg);
    border: 1px solid var(--error-border);
    color: var(--error-text);
}

/* ============================================
   11. Hero Sections
   ============================================ */
.hero {
    position: relative;
    width: 100%;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.hero--small {
    min-height: 50vh;
}

.hero__bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 0;
}

.hero__overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(12, 29, 61, 0.65) 0%, rgba(8, 14, 26, 0.75) 50%, rgba(12, 29, 61, 0.7) 100%);
    z-index: 1;
}

.hero__content {
    position: relative;
    z-index: 2;
    max-width: 900px;
    padding: 0 var(--section-pad-x);
    text-align: center;
}

.hero__label {
    font-size: var(--label-size);
    font-weight: 600;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 24px;
    display: block;
}

.hero__title {
    font-size: var(--display-size);
    font-weight: 400;
    line-height: 1.1;
    letter-spacing: -1px;
    color: var(--white);
}

.hero__subtitle {
    font-size: 18px;
    line-height: 1.7;
    color: var(--white);
    opacity: 0.9;
    max-width: 680px;
    margin: 24px auto 0;
}

.hero__cta {
    margin-top: 40px;
}

/* Scroll Indicator */
.scroll-indicator {
    position: absolute;
    bottom: 32px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 2;
    color: var(--white);
    opacity: 0.5;
    animation: bounce 2s infinite ease-in-out;
}

.scroll-indicator svg {
    width: 24px;
    height: 24px;
}

@keyframes bounce {
    0%, 100% { transform: translateX(-50%) translateY(0); }
    50% { transform: translateX(-50%) translateY(8px); }
}

/* ============================================
   12. Page Sections (Home)
   ============================================ */

/* Section: Global Trade Statement */
.section-statement {
    padding: var(--section-pad-y) var(--section-pad-x);
    background: var(--white);
}

.section-statement__inner {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.gold-line {
    width: 60px;
    height: 2px;
    background: var(--gold);
    margin: 0 auto 32px;
}

/* Section: Split (image + text) */
.section-split {
    padding: var(--section-pad-y) var(--section-pad-x);
}

.section-split__inner {
    max-width: var(--container-max);
    margin: 0 auto;
    display: grid;
    grid-template-columns: 55% 45%;
    gap: 48px;
    align-items: center;
}

.section-split--reverse .section-split__inner {
    grid-template-columns: 45% 55%;
}

.section-split--reverse .section-split__image {
    order: 2;
}

.section-split--reverse .section-split__text {
    order: 1;
}

.section-split__image {
    border-radius: 8px;
    overflow: hidden;
}

.section-split__image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    aspect-ratio: 4/3;
}

.section-split__text .label {
    margin-bottom: 16px;
}

.section-split__text h2 {
    margin-bottom: 20px;
}

.section-split__text p {
    margin-bottom: 16px;
}

.bullet-list {
    margin-top: 24px;
}

.bullet-list__item {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    font-size: var(--body-small);
    color: var(--text-dark);
    margin-bottom: 12px;
    line-height: 1.6;
}

.bullet-list__dot {
    width: 6px;
    height: 6px;
    min-width: 6px;
    border-radius: 50%;
    background: var(--gold);
    margin-top: 8px;
}

/* Section: Product Categories */
.section-categories {
    padding: var(--section-pad-y) var(--section-pad-x);
    background: var(--white);
}

.section-categories__inner {
    max-width: var(--container-max);
    margin: 0 auto;
}

.section-header {
    text-align: center;
    margin-bottom: 64px;
}

.section-header .label {
    margin-bottom: 16px;
}

.disclaimer {
    font-size: var(--body-small);
    color: var(--text-gray);
    font-style: italic;
    max-width: 800px;
    margin: 48px auto 0;
    text-align: center;
    line-height: 1.6;
}

/* Section: Why Work With Us (Dark) */
.section-trust {
    padding: var(--section-pad-y) var(--section-pad-x);
    background: var(--navy);
}

.section-trust__inner {
    max-width: var(--container-max);
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 48px;
    align-items: center;
}

.section-trust__text .label {
    margin-bottom: 16px;
}

.section-trust__text h2 {
    color: var(--white);
    margin-bottom: 20px;
}

.section-trust__text p {
    color: var(--white);
    opacity: 0.9;
    margin-bottom: 32px;
}

.section-trust__image {
    border-radius: 8px;
    overflow: hidden;
}

.section-trust__image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    aspect-ratio: 3/4;
}

.numbered-list {
    display: flex;
    flex-direction: column;
    gap: 28px;
}

.numbered-item {
    display: flex;
    gap: 20px;
}

.numbered-item__number {
    font-size: 48px;
    font-weight: 300;
    line-height: 1;
    color: var(--gold);
    min-width: 56px;
}

.numbered-item__title {
    font-size: var(--h3-size);
    font-weight: 500;
    color: var(--white);
    margin-bottom: 6px;
}

.numbered-item__desc {
    font-size: var(--body-small);
    color: var(--white);
    opacity: 0.7;
    line-height: 1.6;
}

/* Section: Process Steps */
.section-process {
    padding: var(--section-pad-y) var(--section-pad-x);
    background: var(--white);
}

.section-process__inner {
    max-width: var(--container-max);
    margin: 0 auto;
}

.process-grid {
    position: relative;
}

.process-grid::before {
    content: '';
    position: absolute;
    top: 24px;
    left: 12.5%;
    right: 12.5%;
    height: 1px;
    background: var(--border-light);
}

.process-step {
    text-align: center;
    position: relative;
}

.process-step__number {
    font-size: 48px;
    font-weight: 300;
    color: var(--gold);
    line-height: 1;
    margin-bottom: 20px;
}

.process-step__title {
    font-size: var(--h3-size);
    font-weight: 500;
    color: var(--navy);
    margin-bottom: 10px;
}

.process-step__desc {
    font-size: var(--body-small);
    color: var(--text-gray);
    line-height: 1.6;
}

/* Section: Final CTA */
.section-cta {
    padding: 100px var(--section-pad-x);
    background: var(--navy);
}

.section-cta__inner {
    max-width: 700px;
    margin: 0 auto;
    text-align: center;
}

.section-cta__inner h2 {
    color: var(--white);
}

.section-cta__inner p {
    color: var(--white);
    opacity: 0.85;
    max-width: 560px;
    margin: 20px auto 0;
}

.section-cta__inner .btn {
    margin-top: 36px;
}

/* ============================================
   13. Page Sections (Capabilities)
   ============================================ */

/* Capabilities Grid */
.section-capabilities {
    padding: var(--section-pad-y) var(--section-pad-x);
    background: var(--white);
}

.section-capabilities__inner {
    max-width: var(--container-max);
    margin: 0 auto;
}

/* Service Approach */
.section-approach {
    padding: var(--section-pad-y) var(--section-pad-x);
    background: var(--light-gray);
}

.section-approach__inner {
    max-width: var(--container-max);
    margin: 0 auto;
}

.section-approach__header {
    margin-bottom: 48px;
}

.section-approach__header .label {
    margin-bottom: 16px;
}

.approach-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 48px;
}

.approach-column__title {
    font-size: var(--h3-size);
    font-weight: 500;
    color: var(--navy);
    margin-bottom: 20px;
    padding-bottom: 12px;
    border-bottom: 2px solid var(--gold);
    display: inline-block;
}

.check-list__item {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    font-size: var(--body-size);
    color: var(--text-dark);
    margin-bottom: 16px;
    line-height: 1.6;
}

.check-list__icon {
    width: 20px;
    height: 20px;
    min-width: 20px;
    color: var(--gold);
    margin-top: 2px;
}

.check-list__icon svg {
    width: 100%;
    height: 100%;
    stroke: currentColor;
    stroke-width: 2.5;
    fill: none;
}

.info-list__item {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    font-size: var(--body-small);
    color: var(--text-gray);
    margin-bottom: 14px;
    line-height: 1.6;
}

.info-list__icon {
    width: 18px;
    height: 18px;
    min-width: 18px;
    color: var(--text-gray);
    opacity: 0.5;
    margin-top: 2px;
}

.info-list__icon svg {
    width: 100%;
    height: 100%;
    stroke: currentColor;
    stroke-width: 2;
    fill: none;
}

/* Category Tags */
.section-tags {
    padding: 80px var(--section-pad-x);
    background: var(--white);
}

.section-tags__inner {
    max-width: 1000px;
    margin: 0 auto;
    text-align: center;
}

.tags-list {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 12px;
    margin-top: 32px;
}

.tag {
    display: inline-block;
    padding: 10px 24px;
    background: var(--gold-muted);
    border: 1px solid rgba(200, 165, 92, 0.3);
    border-radius: 100px;
    font-size: var(--label-size);
    font-weight: 600;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: var(--navy);
    transition: all var(--transition-default);
}

.tag:hover {
    background: rgba(200, 165, 92, 0.25);
    border-color: rgba(200, 165, 92, 0.5);
}

/* ============================================
   14. Page Sections (Contact)
   ============================================ */

/* Guidelines Section */
.section-guidelines {
    padding: 64px var(--section-pad-x);
    background: var(--light-gray);
}

.section-guidelines__inner {
    max-width: 900px;
    margin: 0 auto;
}

.section-guidelines__inner h3 {
    margin-bottom: 24px;
}

.guidelines-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px 32px;
}

.guideline-item {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 16px;
    color: var(--text-dark);
}

.guideline-item__icon {
    width: 20px;
    height: 20px;
    min-width: 20px;
    color: var(--gold);
}

.guideline-item__icon svg {
    width: 100%;
    height: 100%;
    stroke: currentColor;
    stroke-width: 2.5;
    fill: none;
}

/* Contact Form Section */
.section-form {
    padding: var(--section-pad-y) var(--section-pad-x);
    background: var(--white);
}

.section-form__inner {
    max-width: 900px;
    margin: 0 auto;
}

.form-header {
    margin-bottom: 48px;
}

.form-header h2 {
    margin-bottom: 8px;
}

.form-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0 32px;
}

.form__disclaimer {
    font-size: 14px;
    color: var(--text-gray);
    font-style: italic;
    margin-top: 24px;
    grid-column: 1 / -1;
}

.form__alt-contact {
    font-size: var(--body-small);
    color: var(--text-gray);
    text-align: center;
    margin-top: 32px;
    grid-column: 1 / -1;
}

.form__alt-contact a {
    color: var(--gold);
    text-decoration: underline;
    text-underline-offset: 2px;
}

/* Direct Contact Section */
.section-direct-contact {
    padding: 80px var(--section-pad-x);
    background: var(--navy);
}

.section-direct-contact__inner {
    max-width: 700px;
    margin: 0 auto;
    text-align: center;
}

.contact-details {
    display: flex;
    justify-content: center;
    gap: 48px;
    margin-top: 32px;
}

.contact-detail .label {
    margin-bottom: 8px;
}

.contact-detail p,
.contact-detail a {
    font-size: var(--body-size);
    color: var(--white);
}

.contact-detail a:hover {
    color: var(--gold);
}

/* ============================================
   15. 404 Page
   ============================================ */
.page-404 {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--navy);
    padding: var(--section-pad-x);
}

.page-404__inner {
    text-align: center;
    max-width: 600px;
}

.page-404__code {
    font-size: 120px;
    font-weight: 300;
    color: var(--gold);
    line-height: 1;
    margin-bottom: 16px;
}

.page-404__title {
    font-size: var(--h2-size);
    color: var(--white);
    margin-bottom: 16px;
}

.page-404__desc {
    font-size: var(--body-size);
    color: var(--white);
    opacity: 0.8;
    margin-bottom: 32px;
}

/* ============================================
   16. Scroll Animations
   ============================================ */
.animate {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 600ms var(--cubic-smooth), transform 600ms var(--cubic-smooth);
    will-change: transform, opacity;
}

.animate.fade-in {
    transform: translateY(0);
    transition: opacity 800ms ease-out;
}

.animate.visible {
    opacity: 1;
    transform: translateY(0);
}

/* Stagger children */
.stagger-children .animate:nth-child(1) { transition-delay: 0ms; }
.stagger-children .animate:nth-child(2) { transition-delay: 100ms; }
.stagger-children .animate:nth-child(3) { transition-delay: 200ms; }
.stagger-children .animate:nth-child(4) { transition-delay: 300ms; }
.stagger-children .animate:nth-child(5) { transition-delay: 400ms; }
.stagger-children .animate:nth-child(6) { transition-delay: 500ms; }

/* ============================================
   17. Mobile Menu (additional styles)
   ============================================ */

/* ============================================
   18. Responsive (Media Queries)
   ============================================ */
@media (max-width: 1024px) {
    .grid-3 {
        grid-template-columns: repeat(2, 1fr);
    }

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

    .process-grid::before {
        display: none;
    }

    .section-split__inner,
    .section-trust__inner {
        grid-template-columns: 1fr !important;
        gap: 40px;
    }

    .section-split--reverse .section-split__image,
    .section-split--reverse .section-split__text {
        order: unset;
    }

    .section-split__image img {
        aspect-ratio: 16/9;
    }

    .section-trust__image img {
        aspect-ratio: 16/9;
    }

    .approach-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
}

@media (max-width: 768px) {
    :root {
        --section-pad-y: var(--section-pad-y-mobile);
        --section-pad-x: var(--section-pad-x-mobile);
        --header-height: var(--header-height-mobile);
    }

    .header__nav,
    .header__cta {
        display: none;
    }

    .hamburger {
        display: flex;
    }

    .header__logo-text {
        font-size: 11px;
        letter-spacing: 1px;
    }

    .header__logo-img {
        height: 32px !important;
        max-height: 32px;
        max-width: 110px;
    }

    .grid-2,
    .grid-3,
    .grid-4 {
        grid-template-columns: 1fr;
    }

    .hero {
        min-height: 100vh;
    }

    .hero--small {
        min-height: 40vh;
    }

    .hero__title {
        letter-spacing: -0.5px;
    }

    .hero__subtitle {
        font-size: 16px;
    }

    .btn-group {
        flex-direction: column;
        align-items: center;
    }

    .btn-group .btn {
        width: 100%;
        max-width: 320px;
    }

    .footer {
        padding: 64px var(--section-pad-x) 32px;
    }

    .footer__grid {
        grid-template-columns: 1fr;
        gap: 40px;
        text-align: center;
    }

    .footer__disclaimer {
        text-align: center;
    }

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

    .form-group--half {
        grid-column: 1 / -1;
    }

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

    .contact-details {
        flex-direction: column;
        gap: 32px;
    }

    .section-cta {
        padding: 64px var(--section-pad-x);
    }

    .section-cta__inner .btn {
        width: 100%;
    }

    .tags-list {
        gap: 8px;
    }

    .tag {
        padding: 8px 18px;
        font-size: 11px;
    }

    .page-404__code {
        font-size: 80px;
    }

    .numbered-item {
        gap: 16px;
    }

    .numbered-item__number {
        font-size: 36px;
        min-width: 44px;
    }
}

@media (min-width: 769px) {
    .mobile-menu,
    .menu-overlay {
        display: none !important;
    }
}

/* ============================================
   19. Reduced Motion
   ============================================ */
@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }

    html {
        scroll-behavior: auto;
    }

    .animate {
        opacity: 1;
        transform: none;
    }

    .scroll-indicator {
        animation: none;
    }
}
