/**
 * Eurabelt Fuels Ltd - Main Stylesheet
 * @package    EurabeltFuels
 * @copyright  2024-2025 Eurabelt Fuels Ltd
 */

:root {
    --navy-deep: #0a1628;
    --navy-mid: #142238;
    --navy-light: #1e3a5f;
    --gold-primary: #c9a227;
    --gold-light: #d4b84a;
    --gold-dark: #9a7b1c;
    --gold-muted: rgba(201, 162, 39, 0.3);
    --white: #ffffff;
    --text-primary: #ffffff;
    --text-secondary: rgba(255, 255, 255, 0.85);
    --text-muted: rgba(255, 255, 255, 0.6);
    --success: #28a745;
    --error: #dc3545;
    --font-heading: 'Cormorant Garamond', Georgia, serif;
    --font-body: 'Montserrat', -apple-system, sans-serif;
    --transition: 0.3s ease;
    --shadow-lg: 0 10px 30px rgba(0, 0, 0, 0.2);
}

*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; font-size: 16px; }

body {
    font-family: var(--font-body);
    background: var(--navy-deep);
    color: var(--text-primary);
    line-height: 1.6;
    overflow-x: hidden;
    min-height: 100vh;
}

body::before {
    content: '';
    position: fixed;
    top: 0; left: 0; width: 100%; height: 100%;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 400 400' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
    opacity: 0.03;
    pointer-events: none;
    z-index: 1000;
}

h1, h2, h3, h4, h5, h6 { font-family: var(--font-heading); font-weight: 600; line-height: 1.2; margin-bottom: 1rem; }
h1 { font-size: clamp(2.5rem, 6vw, 4.5rem); }
h2 { font-size: clamp(2rem, 4vw, 3rem); }
h3 { font-size: clamp(1.5rem, 3vw, 2rem); }
p { margin-bottom: 1rem; }
a { color: var(--gold-primary); text-decoration: none; transition: color var(--transition); }
a:hover { color: var(--gold-light); }

.container { width: 100%; max-width: 1400px; margin: 0 auto; padding: 0 2rem; }
.text-center { text-align: center; }
.text-gold { color: var(--gold-primary); }

.eyebrow {
    font-size: 0.7rem;
    letter-spacing: 4px;
    text-transform: uppercase;
    color: var(--gold-primary);
    margin-bottom: 1rem;
    font-family: var(--font-body);
    font-weight: 600;
}

.divider { width: 60px; height: 2px; background: var(--gold-primary); margin: 1.5rem 0; }
.divider-center { margin-left: auto; margin-right: auto; }

/* Header */
.header {
    position: fixed;
    top: 0; left: 0; width: 100%;
    padding: 1.5rem 2rem;
    z-index: 99;
    background: linear-gradient(to bottom, var(--navy-deep), transparent);
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: background var(--transition);
}

.header.scrolled {
    background: rgba(10, 22, 40, 0.95);
    backdrop-filter: blur(10px);
}

.logo { display: flex; align-items: center; gap: 1rem; }

.logo-icon {
    width: 50px; height: 50px;
    background: linear-gradient(135deg, var(--gold-primary), var(--gold-dark));
    border-radius: 8px;
    display: flex; align-items: center; justify-content: center;
    font-family: var(--font-heading);
    font-size: 1.5rem; font-weight: 700;
    color: var(--navy-deep);
}

.logo-text { font-family: var(--font-heading); font-size: 1.4rem; font-weight: 600; letter-spacing: 2px; }
.logo-text span { color: var(--gold-primary); }

.main-nav { display: flex; align-items: center; gap: 2rem; }
.nav-links { display: flex; gap: 1.5rem; list-style: none; }

.nav-links a {
    font-size: 0.85rem; font-weight: 500; letter-spacing: 1px;
    text-transform: uppercase; color: var(--text-secondary);
    padding: 0.5rem 0; position: relative; transition: color var(--transition);
}

.nav-links a::after {
    content: ''; position: absolute; bottom: 0; left: 0;
    width: 0; height: 2px; background: var(--gold-primary);
    transition: width var(--transition);
}

.nav-links a:hover, .nav-links a.active { color: var(--gold-primary); }
.nav-links a:hover::after, .nav-links a.active::after { width: 100%; }

.nav-toggle {
    display: none;
    flex-direction: column; gap: 5px;
    background: none; border: none; cursor: pointer; padding: 0.5rem;
}

.nav-toggle span { width: 25px; height: 2px; background: var(--gold-primary); transition: var(--transition); }

/* Floating Nav */
.floating-nav {
    position: fixed; top: 50%; right: 30px;
    transform: translateY(-50%); z-index: 100;
    display: flex; flex-direction: column; gap: 8px;
}

.nav-dot {
    width: 12px; height: 12px; border-radius: 50%;
    background: var(--gold-muted); border: 1px solid var(--gold-primary);
    cursor: pointer; transition: all var(--transition); position: relative;
}

.nav-dot:hover, .nav-dot.active { background: var(--gold-primary); transform: scale(1.3); }

.nav-dot::after {
    content: attr(data-label);
    position: absolute; right: 25px; top: 50%; transform: translateY(-50%);
    white-space: nowrap; font-size: 0.7rem; font-weight: 500;
    letter-spacing: 1px; text-transform: uppercase;
    opacity: 0; transition: opacity var(--transition); color: var(--gold-light);
}

.nav-dot:hover::after { opacity: 1; }

/* Hero */
.hero {
    min-height: 100vh;
    display: flex; flex-direction: column; justify-content: center; align-items: center;
    text-align: center; padding: 120px 2rem 80px; position: relative; overflow: hidden;
}

.hero::before {
    content: ''; position: absolute; top: 0; left: 0; width: 100%; height: 100%;
    background: radial-gradient(ellipse at center top, rgba(201, 162, 39, 0.08) 0%, transparent 60%);
    pointer-events: none;
}

.hero-prelude {
    font-size: 0.75rem; letter-spacing: 4px; text-transform: uppercase;
    color: var(--gold-primary); margin-bottom: 2rem;
    opacity: 0; animation: fadeInUp 1s ease forwards 0.3s;
}

.hero-title {
    font-size: clamp(3rem, 8vw, 6rem); font-weight: 700; margin-bottom: 1.5rem;
    opacity: 0; animation: fadeInUp 1s ease forwards 0.6s;
}

.hero-title span { color: var(--gold-primary); display: block; }

.hero-subtitle {
    font-size: clamp(1.1rem, 2.5vw, 1.5rem); font-weight: 300;
    color: var(--text-secondary); max-width: 700px; margin-bottom: 3rem;
    opacity: 0; animation: fadeInUp 1s ease forwards 0.9s;
}

.hero-divider {
    width: 100px; height: 2px;
    background: linear-gradient(90deg, transparent, var(--gold-primary), transparent);
    margin-bottom: 3rem;
    opacity: 0; animation: fadeInUp 1s ease forwards 1.2s;
}

.hero-credentials {
    display: flex; flex-wrap: wrap; justify-content: center; gap: 3rem;
    opacity: 0; animation: fadeInUp 1s ease forwards 1.5s;
}

.hero-credential { text-align: center; }
.hero-credential-value { font-family: var(--font-heading); font-size: 2rem; font-weight: 700; color: var(--gold-primary); }
.hero-credential-label { font-size: 0.65rem; letter-spacing: 2px; text-transform: uppercase; color: var(--text-muted); margin-top: 0.25rem; }

.scroll-indicator {
    position: absolute; bottom: 40px; left: 50%; transform: translateX(-50%);
    display: flex; flex-direction: column; align-items: center; gap: 0.5rem;
    color: var(--text-muted); font-size: 0.7rem; letter-spacing: 2px; text-transform: uppercase;
    animation: bounce 2s infinite;
}

.scroll-indicator svg { width: 24px; height: 24px; stroke: var(--gold-primary); }

/* Sections */
.section { padding: 6rem 2rem; position: relative; }
.section-alt { background: linear-gradient(180deg, var(--navy-mid) 0%, var(--navy-deep) 100%); }

.section::before {
    content: ''; position: absolute; top: 0; left: 0; width: 100%; height: 1px;
    background: linear-gradient(90deg, transparent, var(--gold-primary), transparent);
}

.section-header { text-align: center; margin-bottom: 4rem; }
.section-title { font-size: clamp(2rem, 5vw, 3.5rem); margin-bottom: 1.5rem; }

/* Vision Timeline */
.vision-content { max-width: 900px; margin: 0 auto; }

.vision-timeline { position: relative; padding-left: 40px; margin-bottom: 4rem; }

.vision-timeline::before {
    content: ''; position: absolute; left: 10px; top: 0; bottom: 0;
    width: 2px; background: linear-gradient(to bottom, var(--gold-primary), var(--gold-muted));
}

.timeline-item { position: relative; margin-bottom: 2.5rem; padding-left: 30px; }

.timeline-marker {
    position: absolute; left: -30px; top: 5px;
    width: 12px; height: 12px; border-radius: 50%;
    background: var(--navy-deep); border: 2px solid var(--gold-primary);
}

.timeline-item.active .timeline-marker { background: var(--gold-primary); box-shadow: 0 0 20px var(--gold-primary); }

.timeline-content h3 { font-size: 1.25rem; color: var(--gold-primary); margin-bottom: 0.5rem; }
.timeline-content p { color: var(--text-secondary); }

.vision-statement {
    background: linear-gradient(135deg, var(--navy-light), var(--navy-mid));
    border-left: 4px solid var(--gold-primary); padding: 2rem; border-radius: 8px;
}

.vision-statement blockquote { font-family: var(--font-heading); font-size: 1.25rem; font-style: italic; color: var(--text-secondary); }
.vision-statement cite { display: block; margin-top: 1rem; font-size: 0.85rem; color: var(--gold-light); font-style: normal; }

/* About */
.about-content { max-width: 1000px; margin: 0 auto; }
.about-lead { font-size: 1.2rem; text-align: center; margin-bottom: 3rem; color: var(--text-secondary); }

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

.about-card {
    background: linear-gradient(135deg, var(--navy-mid), var(--navy-deep));
    border: 1px solid rgba(201, 162, 39, 0.2); border-radius: 12px;
    padding: 2rem; text-align: center; transition: all var(--transition);
}

.about-card:hover { border-color: var(--gold-primary); transform: translateY(-5px); }

.about-card-icon { margin-bottom: 1.5rem; }
.about-card-icon svg { width: 48px; height: 48px; stroke: var(--gold-primary); }
.about-card h3 { font-size: 1.25rem; margin-bottom: 1rem; }
.about-card p { font-size: 0.9rem; color: var(--text-muted); }

.about-products { text-align: center; }
.about-products h3 { margin-bottom: 0.5rem; }
.about-products > p { color: var(--text-muted); margin-bottom: 1.5rem; }

.product-tags { display: flex; flex-wrap: wrap; justify-content: center; gap: 0.75rem; }

.product-tag {
    background: rgba(201, 162, 39, 0.15); color: var(--gold-light);
    padding: 0.5rem 1rem; border-radius: 20px; font-size: 0.8rem;
    border: 1px solid rgba(201, 162, 39, 0.3); transition: all var(--transition);
}

.product-tag:hover { background: var(--gold-primary); color: var(--navy-deep); }

/* Chairman */
.chairman-container { display: grid; grid-template-columns: 1fr 2fr; gap: 4rem; align-items: start; max-width: 1100px; margin: 0 auto; }

.chairman-photo { position: relative; }

.chairman-photo-frame {
    width: 280px; height: 350px;
    background: linear-gradient(135deg, var(--navy-light), var(--navy-deep));
    border: 3px solid var(--gold-primary); border-radius: 12px;
    display: flex; align-items: center; justify-content: center;
    position: relative; z-index: 2;
}

.chairman-photo-placeholder { text-align: center; color: var(--text-muted); }
.chairman-photo-placeholder svg { width: 80px; height: 80px; stroke: var(--gold-primary); opacity: 0.5; margin-bottom: 1rem; }
.chairman-photo-placeholder span { font-size: 0.75rem; letter-spacing: 2px; text-transform: uppercase; }

.chairman-photo-accent {
    position: absolute; top: 20px; left: 20px; width: 280px; height: 350px;
    border: 2px solid var(--gold-muted); border-radius: 12px; z-index: 1;
}

.chairman-role { font-size: 0.7rem; letter-spacing: 3px; text-transform: uppercase; color: var(--gold-primary); margin-bottom: 0.5rem; font-family: var(--font-body); }
.chairman-name { font-size: 2.5rem; margin-bottom: 0.5rem; }
.chairman-title { color: var(--gold-light); font-style: italic; margin-bottom: 2rem; }
.chairman-bio { color: var(--text-secondary); margin-bottom: 2rem; line-height: 1.8; }

.chairman-credentials { display: flex; flex-wrap: wrap; gap: 0.5rem; margin-bottom: 2rem; }

.chairman-credential {
    background: rgba(201, 162, 39, 0.1); color: var(--gold-light);
    padding: 0.35rem 0.75rem; border-radius: 4px; font-size: 0.7rem;
    letter-spacing: 0.5px; border: 1px solid rgba(201, 162, 39, 0.2);
}

.chairman-contact { display: flex; align-items: center; gap: 0.75rem; margin-bottom: 1.5rem; }
.chairman-contact svg { width: 20px; height: 20px; stroke: var(--gold-primary); }
.chairman-contact a { font-size: 0.9rem; }

.chairman-sanctions { display: flex; align-items: center; gap: 1rem; flex-wrap: wrap; }

.sanctions-badge {
    display: flex; align-items: center; gap: 0.5rem;
    background: rgba(40, 167, 69, 0.15); color: var(--success);
    padding: 0.5rem 1rem; border-radius: 4px; font-size: 0.75rem; font-weight: 600;
}

.sanctions-badge svg { width: 16px; height: 16px; stroke: var(--success); }
.sanctions-info { font-size: 0.75rem; color: var(--text-muted); }

/* Team Grid */
.team-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(320px, 1fr)); gap: 2rem; }

.team-card {
    background: linear-gradient(135deg, var(--navy-mid), var(--navy-deep));
    border: 1px solid rgba(201, 162, 39, 0.2); border-radius: 12px;
    padding: 2rem 1.5rem; text-align: center; position: relative;
    overflow: hidden; cursor: pointer; transition: all 0.4s ease;
}

.team-card::before {
    content: ''; position: absolute; top: 0; left: 0; width: 100%; height: 3px;
    background: linear-gradient(90deg, var(--gold-dark), var(--gold-primary), var(--gold-dark));
    transform: scaleX(0); transition: transform 0.4s ease;
}

.team-card:hover { transform: translateY(-10px); border-color: var(--gold-primary); box-shadow: var(--shadow-lg); }
.team-card:hover::before { transform: scaleX(1); }

.team-card-photo {
    width: 120px; height: 120px; border-radius: 50%;
    background: linear-gradient(135deg, var(--navy-light), var(--navy-deep));
    border: 3px solid var(--gold-primary); margin: 0 auto 1.5rem;
    display: flex; align-items: center; justify-content: center; overflow: hidden;
}

.team-card-photo img { width: 100%; height: 100%; object-fit: cover; }
.team-card-photo svg { width: 50px; height: 50px; stroke: var(--gold-primary); opacity: 0.5; }

.team-card-region { font-size: 0.65rem; letter-spacing: 3px; text-transform: uppercase; color: var(--gold-primary); margin-bottom: 0.5rem; }
.team-card-name { font-size: 1.5rem; margin-bottom: 0.5rem; }
.team-card-title { font-size: 0.8rem; color: var(--text-muted); margin-bottom: 1.5rem; line-height: 1.5; }
.team-card-divider { width: 40px; height: 1px; background: var(--gold-primary); margin: 0 auto 1.5rem; }
.team-card-products { font-size: 0.7rem; color: var(--text-secondary); letter-spacing: 1px; }

.team-card-sanctions {
    display: flex; align-items: center; justify-content: center; gap: 0.5rem;
    margin-top: 1rem; font-size: 0.65rem; color: var(--success);
}

.team-card-sanctions svg { width: 14px; height: 14px; stroke: var(--success); }

.team-card-cta {
    margin-top: 1.5rem; font-size: 0.7rem; letter-spacing: 2px; text-transform: uppercase;
    color: var(--gold-primary); display: flex; align-items: center; justify-content: center; gap: 0.5rem;
    opacity: 0; transition: opacity var(--transition);
}

.team-card:hover .team-card-cta { opacity: 1; }
.team-card-cta svg { width: 16px; height: 16px; }

.team-notice {
    text-align: center; margin-top: 3rem; padding: 1.5rem;
    background: rgba(201, 162, 39, 0.1); border-radius: 8px;
    border: 1px solid rgba(201, 162, 39, 0.2);
}

.team-notice p { font-size: 0.85rem; color: var(--text-secondary); margin: 0; }

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

.region-card {
    background: var(--navy-deep); border: 1px solid rgba(201, 162, 39, 0.15);
    border-radius: 8px; padding: 2rem 1.5rem; text-align: center;
    transition: all var(--transition);
}

.region-card:hover { border-color: var(--gold-primary); transform: translateY(-5px); }

.region-flag { font-size: 3rem; margin-bottom: 1.5rem; }
.region-name { font-size: 1.25rem; margin-bottom: 0.5rem; }
.region-coverage { font-size: 0.7rem; letter-spacing: 2px; text-transform: uppercase; color: var(--gold-primary); margin-bottom: 1.5rem; }
.region-details { font-size: 0.8rem; color: var(--text-muted); line-height: 1.8; }

.region-code {
    display: inline-block; background: rgba(201, 162, 39, 0.15);
    padding: 0.25rem 0.5rem; border-radius: 4px; font-size: 0.65rem;
    letter-spacing: 1px; margin-top: 1rem; color: var(--gold-light);
}

/* Credentials */
.credentials-intro { text-align: center; max-width: 800px; margin: 0 auto 4rem; color: var(--text-secondary); }
.credentials-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(350px, 1fr)); gap: 2rem; }

.credential-card {
    background: linear-gradient(135deg, var(--navy-mid), var(--navy-deep));
    border: 1px solid rgba(201, 162, 39, 0.2); border-radius: 12px;
    padding: 2.5rem; transition: all var(--transition);
}

.credential-card:hover { border-color: var(--gold-primary); transform: translateY(-5px); }

.credential-icon { margin-bottom: 1.5rem; height: 60px; display: flex; align-items: center; }
.credential-icon img { max-height: 50px; opacity: 0.8; }
.credential-card h3 { font-size: 1.25rem; margin-bottom: 1rem; }
.credential-card > p { font-size: 0.9rem; color: var(--text-muted); margin-bottom: 1.5rem; }

.credential-codes { margin-bottom: 1.5rem; }

.code-item {
    display: flex; justify-content: space-between; padding: 0.5rem 0;
    border-bottom: 1px solid rgba(201, 162, 39, 0.1); font-size: 0.85rem;
}

.code-item span { color: var(--gold-primary); }

.credential-verify {
    display: inline-flex; align-items: center; gap: 0.5rem;
    font-size: 0.75rem; letter-spacing: 1px; text-transform: uppercase;
    color: var(--gold-primary); font-weight: 600;
}

/* CTA Section */
.section-cta { text-align: center; padding: 6rem 2rem; }
.cta-content { max-width: 600px; margin: 0 auto; }
.cta-content h2 { margin-bottom: 1rem; }
.cta-content p { color: var(--text-secondary); margin-bottom: 2rem; }

/* Forms */
.form-container { max-width: 800px; margin: 0 auto; }
.form-intro { text-align: center; margin-bottom: 3rem; }
.form-intro p { color: var(--text-secondary); }

.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 1.5rem; }
.form-group { margin-bottom: 1.5rem; }
.form-group.full-width { grid-column: 1 / -1; }

.form-label {
    display: block; font-size: 0.75rem; letter-spacing: 1px;
    text-transform: uppercase; color: var(--gold-primary);
    margin-bottom: 0.5rem; font-weight: 500;
}

.form-input, .form-select, .form-textarea {
    width: 100%; padding: 1rem 1.5rem;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(201, 162, 39, 0.3); border-radius: 8px;
    color: var(--text-primary); font-family: var(--font-body); font-size: 1rem;
    transition: all var(--transition);
}

.form-input:focus, .form-select:focus, .form-textarea:focus {
    outline: none; border-color: var(--gold-primary);
    background: rgba(255, 255, 255, 0.08);
}

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

.form-select {
    cursor: pointer; appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' viewBox='0 0 24 24' fill='none' stroke='%23c9a227' stroke-width='2'%3E%3Cpath d='M6 9l6 6 6-6'/%3E%3C/svg%3E");
    background-repeat: no-repeat; background-position: right 1rem center; background-size: 20px;
    padding-right: 3rem;
}

.form-select option { background: var(--navy-deep); color: var(--text-primary); }
.form-textarea { min-height: 150px; resize: vertical; }

.form-required { color: var(--error); margin-left: 0.25rem; }
.form-help { font-size: 0.75rem; color: var(--text-muted); margin-top: 0.5rem; }

.form-message {
    padding: 1rem 1.5rem; border-radius: 8px; margin-bottom: 2rem;
    font-size: 0.9rem; text-align: center;
}

.form-message-success { background: rgba(40, 167, 69, 0.15); color: var(--success); border: 1px solid var(--success); }
.form-message-error { background: rgba(220, 53, 69, 0.15); color: var(--error); border: 1px solid var(--error); }

/* Buttons */
.btn {
    display: inline-flex; align-items: center; justify-content: center; gap: 0.5rem;
    padding: 1rem 2rem; font-family: var(--font-body); font-size: 0.85rem;
    font-weight: 600; letter-spacing: 1px; text-transform: uppercase;
    border: none; border-radius: 8px; cursor: pointer; transition: all var(--transition);
}

.btn-primary {
    background: linear-gradient(135deg, var(--gold-primary), var(--gold-dark));
    color: var(--navy-deep);
}

.btn-primary:hover {
    background: linear-gradient(135deg, var(--gold-light), var(--gold-primary));
    transform: translateY(-2px); box-shadow: var(--shadow-lg);
}

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

.btn-secondary:hover { background: var(--gold-primary); color: var(--navy-deep); }
.btn-lg { padding: 1.25rem 2.5rem; font-size: 1rem; }
.btn:disabled { opacity: 0.6; cursor: not-allowed; }

/* Modal */
.modal-overlay {
    position: fixed; top: 0; left: 0; width: 100%; height: 100%;
    background: rgba(10, 22, 40, 0.95); z-index: 200;
    opacity: 0; visibility: hidden; transition: all 0.4s ease;
    overflow-y: auto; padding: 3rem;
}

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

.modal-close {
    position: fixed; top: 30px; right: 30px;
    width: 50px; height: 50px; background: transparent;
    border: 1px solid var(--gold-primary); border-radius: 50%;
    cursor: pointer; display: flex; align-items: center; justify-content: center;
    transition: all var(--transition); z-index: 201;
}

.modal-close:hover { background: var(--gold-primary); }
.modal-close svg { width: 20px; height: 20px; stroke: var(--gold-primary); transition: stroke var(--transition); }
.modal-close:hover svg { stroke: var(--navy-deep); }

.modal-content {
    max-width: 1000px; margin: 0 auto;
    transform: translateY(30px); opacity: 0; transition: all 0.4s ease 0.2s;
}

.modal-overlay.active .modal-content { transform: translateY(0); opacity: 1; }

/* Footer */
.footer { padding: 6rem 2rem 2rem; text-align: center; position: relative; }
.footer-logo { font-family: var(--font-heading); font-size: 1.75rem; font-weight: 600; margin-bottom: 1rem; }
.footer-logo span { color: var(--gold-primary); }
.footer-tagline { font-size: 0.75rem; letter-spacing: 3px; text-transform: uppercase; color: var(--text-muted); margin-bottom: 2rem; }

.footer-codes { display: flex; justify-content: center; gap: 2rem; margin-bottom: 2rem; flex-wrap: wrap; }
.footer-code { font-size: 0.65rem; letter-spacing: 2px; color: var(--text-muted); }
.footer-code span { color: var(--gold-primary); }

.footer-links { display: flex; justify-content: center; gap: 2rem; margin-bottom: 2rem; flex-wrap: wrap; }
.footer-links a { font-size: 0.8rem; color: var(--text-muted); }
.footer-links a:hover { color: var(--gold-primary); }

.footer-copyright { font-size: 0.8rem; color: var(--text-muted); }

/* Page Header */
.page-header {
    padding: 160px 2rem 80px; text-align: center;
    background: linear-gradient(180deg, var(--navy-mid) 0%, var(--navy-deep) 100%);
    position: relative;
}

.page-header::after {
    content: ''; position: absolute; bottom: 0; left: 0; width: 100%; height: 1px;
    background: linear-gradient(90deg, transparent, var(--gold-primary), transparent);
}

.page-header h1 { margin-bottom: 1rem; }
.page-header p { color: var(--text-secondary); max-width: 600px; margin: 0 auto; }

/* Animations */
@keyframes fadeInUp {
    from { opacity: 0; transform: translateY(30px); }
    to { opacity: 1; transform: translateY(0); }
}

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

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

@media (max-width: 992px) {
    .form-grid { grid-template-columns: 1fr; }
    .chairman-container { grid-template-columns: 1fr; text-align: center; }
    .chairman-photo { display: flex; justify-content: center; }
    .chairman-credentials { justify-content: center; }
    .chairman-contact { justify-content: center; }
    .chairman-sanctions { justify-content: center; }
    
    .main-nav {
        position: fixed; top: 0; left: 0; width: 100%; height: 100vh;
        background: var(--navy-deep); flex-direction: column; justify-content: center;
        transform: translateX(-100%); transition: transform var(--transition);
    }
    
    .main-nav.active { transform: translateX(0); }
    .nav-links { flex-direction: column; text-align: center; gap: 2rem; }
    .nav-links a { font-size: 1.2rem; }
    .nav-toggle { display: flex; }
}

@media (max-width: 768px) {
    .header { padding: 1rem 1.5rem; }
    .section { padding: 4rem 1.5rem; }
    .floating-nav { right: 15px; }
    .regions-grid { grid-template-columns: 1fr; }
    .team-grid { grid-template-columns: 1fr; }
    .modal-overlay { padding: 1.5rem; }
    .hero-credentials { gap: 1.5rem; }
    .credentials-grid { grid-template-columns: 1fr; }
}

/* Page Header */
.page-header {
    padding: 160px 2rem 80px;
    text-align: center;
    background: linear-gradient(180deg, var(--navy-mid) 0%, var(--navy-deep) 100%);
    position: relative;
}

.page-header::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--gold-primary), transparent);
}

.page-header h1 { margin-bottom: 1rem; }
.page-header p { color: var(--text-secondary); max-width: 700px; margin: 0 auto; }

/* Page Hero (alias) */
.page-hero { padding: 160px 2rem 80px; text-align: center; background: linear-gradient(180deg, var(--navy-mid) 0%, var(--navy-deep) 100%); }
.page-hero::after { content: ''; position: absolute; bottom: 0; left: 0; width: 100%; height: 1px; background: linear-gradient(90deg, transparent, var(--gold-primary), transparent); }
.page-title { margin-bottom: 1rem; }
.page-subtitle { color: var(--text-secondary); max-width: 700px; margin: 0 auto; }

/* Lead Text */
.lead-text { font-size: 1.2rem; line-height: 1.8; color: var(--text-secondary); margin-bottom: 2rem; }

/* Contact Page Layout */
.contact-layout { display: grid; grid-template-columns: 2fr 1fr; gap: 4rem; }

.contact-form-container { background: linear-gradient(135deg, var(--navy-mid), var(--navy-deep)); border: 1px solid rgba(201, 162, 39, 0.2); border-radius: 12px; padding: 3rem; }
.form-header { margin-bottom: 2rem; }
.form-header h2 { margin-bottom: 0.5rem; }
.form-header p { color: var(--text-muted); }

.form-fieldset { border: 1px solid rgba(201, 162, 39, 0.15); border-radius: 8px; padding: 2rem; margin-bottom: 2rem; }
.form-fieldset legend { color: var(--gold-primary); font-weight: 600; padding: 0 1rem; font-size: 0.85rem; letter-spacing: 1px; text-transform: uppercase; }

.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1.5rem; }
.form-hint { font-size: 0.75rem; color: var(--text-muted); margin-top: 0.5rem; }

.form-checkbox-group { margin-top: 1.5rem; }
.form-checkbox { display: flex; align-items: flex-start; gap: 0.75rem; cursor: pointer; }
.form-checkbox input { width: 18px; height: 18px; accent-color: var(--gold-primary); margin-top: 0.15rem; }
.checkbox-label { font-size: 0.85rem; color: var(--text-secondary); line-height: 1.5; }

.form-actions { text-align: center; margin-top: 2rem; }
.form-actions .btn svg { width: 18px; height: 18px; }
.form-note { font-size: 0.75rem; color: var(--text-muted); margin-top: 1rem; }

/* Contact Sidebar */
.contact-sidebar { display: flex; flex-direction: column; gap: 2rem; }

.sidebar-card { background: linear-gradient(135deg, var(--navy-mid), var(--navy-deep)); border: 1px solid rgba(201, 162, 39, 0.2); border-radius: 12px; padding: 2rem; }
.sidebar-card h3 { font-size: 1.1rem; margin-bottom: 1rem; }
.sidebar-card p { font-size: 0.9rem; color: var(--text-secondary); margin-bottom: 1rem; }

.card-icon { margin-bottom: 1rem; }
.card-icon svg { width: 40px; height: 40px; stroke: var(--gold-primary); }

.verification-card .card-icon svg { stroke: var(--success); }
.warning-card .card-icon svg { stroke: #ffc107; }

.sidebar-link { font-size: 0.8rem; color: var(--gold-primary); font-weight: 600; }

.region-contact { display: flex; align-items: center; gap: 1rem; padding: 1rem 0; border-bottom: 1px solid rgba(201, 162, 39, 0.1); }
.region-contact:last-child { border-bottom: none; }
.region-flag { font-size: 2rem; }
.region-info { display: flex; flex-direction: column; gap: 0.25rem; }
.region-info strong { font-size: 0.9rem; }
.region-info span { font-size: 0.7rem; color: var(--text-muted); }
.region-ncage { color: var(--gold-primary) !important; }

.compliance-email { display: block; margin-top: 1rem; font-weight: 600; color: var(--gold-primary); }

/* Fraud Notice */
.fraud-notice { background: rgba(255, 193, 7, 0.1); border: 1px solid rgba(255, 193, 7, 0.3); border-radius: 12px; padding: 3rem; text-align: center; max-width: 800px; margin: 0 auto; }
.fraud-notice .notice-icon { margin-bottom: 1.5rem; }
.fraud-notice .notice-icon svg { width: 50px; height: 50px; stroke: #ffc107; }
.fraud-notice h3 { margin-bottom: 1rem; }
.fraud-notice p { color: var(--text-secondary); }

/* About Page */
.about-intro { max-width: 900px; margin: 0 auto 4rem; text-align: center; }
.about-mission { margin-bottom: 4rem; }
.mission-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 2rem; }
.mission-card { background: linear-gradient(135deg, var(--navy-mid), var(--navy-deep)); border: 1px solid rgba(201, 162, 39, 0.2); border-radius: 12px; padding: 2rem; }
.mission-card h3 { color: var(--gold-primary); margin-bottom: 1rem; }
.mission-card p { color: var(--text-secondary); font-size: 0.9rem; }

.values-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 2rem; margin-top: 3rem; }
.value-item { text-align: center; }
.value-number { font-family: var(--font-heading); font-size: 2.5rem; color: var(--gold-muted); margin-bottom: 1rem; }
.value-item h4 { margin-bottom: 0.75rem; }
.value-item p { font-size: 0.85rem; color: var(--text-muted); }

.why-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 2rem; }
.why-card { background: var(--navy-deep); border: 1px solid rgba(201, 162, 39, 0.15); border-radius: 12px; padding: 2rem; display: flex; gap: 1.5rem; align-items: flex-start; }
.why-icon svg { width: 40px; height: 40px; stroke: var(--gold-primary); flex-shrink: 0; }
.why-card h3 { margin-bottom: 0.5rem; }
.why-card p { font-size: 0.9rem; color: var(--text-muted); margin: 0; }

/* Products Page */
.products-intro { text-align: center; max-width: 800px; margin: 0 auto 4rem; }
.product-category { margin-bottom: 4rem; }
.product-category h2 { margin-bottom: 0.5rem; }
.products-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); gap: 1.5rem; margin-top: 2rem; }
.product-card { background: linear-gradient(135deg, var(--navy-mid), var(--navy-deep)); border: 1px solid rgba(201, 162, 39, 0.2); border-radius: 8px; padding: 1.5rem; }
.product-header { margin-bottom: 1rem; }
.product-code { display: inline-block; background: var(--gold-primary); color: var(--navy-deep); padding: 0.25rem 0.5rem; border-radius: 4px; font-size: 0.7rem; font-weight: 700; margin-bottom: 0.5rem; }
.product-card h3 { font-size: 1rem; margin-bottom: 0; }
.product-spec { font-size: 0.75rem; color: var(--text-muted); margin: 0; }

.quantities-info { text-align: center; }
.quantity-grid { display: flex; justify-content: center; gap: 4rem; margin-top: 3rem; }
.quantity-item { text-align: center; }
.quantity-value { display: block; font-family: var(--font-heading); font-size: 2rem; color: var(--gold-primary); margin-bottom: 0.5rem; }
.quantity-label { font-size: 0.75rem; color: var(--text-muted); letter-spacing: 1px; text-transform: uppercase; }

/* Regions Page */
.region-detail { margin-bottom: 4rem; padding-bottom: 4rem; border-bottom: 1px solid rgba(201, 162, 39, 0.15); }
.region-detail:last-child { border-bottom: none; }
.region-header { display: flex; align-items: center; gap: 2rem; margin-bottom: 2rem; flex-wrap: wrap; }
.region-flag-large { font-size: 4rem; }
.region-title h2 { margin-bottom: 0.25rem; }
.region-company { color: var(--gold-light); font-style: italic; }
.region-badges { display: flex; gap: 0.75rem; flex-wrap: wrap; }
.badge { background: rgba(201, 162, 39, 0.15); color: var(--gold-light); padding: 0.35rem 0.75rem; border-radius: 4px; font-size: 0.7rem; letter-spacing: 0.5px; }

.region-info-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 2rem; margin-bottom: 2rem; }
.region-info-card { background: linear-gradient(135deg, var(--navy-mid), var(--navy-deep)); border: 1px solid rgba(201, 162, 39, 0.15); border-radius: 8px; padding: 1.5rem; }
.region-info-card h4 { color: var(--gold-primary); margin-bottom: 1rem; font-size: 0.9rem; }
.region-info-card ul { list-style: none; }
.region-info-card li { padding: 0.35rem 0; font-size: 0.85rem; color: var(--text-secondary); border-bottom: 1px solid rgba(255,255,255,0.05); }
.region-info-card li:last-child { border-bottom: none; }

.region-address { background: rgba(201, 162, 39, 0.05); border-left: 3px solid var(--gold-primary); padding: 1.5rem; }
.region-address h4 { margin-bottom: 0.75rem; font-size: 0.85rem; }
.region-address address { font-style: normal; font-size: 0.9rem; color: var(--text-secondary); line-height: 1.8; }

/* Credentials Page */
.sanctions-info { display: grid; grid-template-columns: 2fr 1fr; gap: 3rem; }
.sanctions-content p { color: var(--text-secondary); margin-bottom: 2rem; }
.sanctions-process { display: grid; grid-template-columns: repeat(2, 1fr); gap: 1.5rem; }
.process-step { background: var(--navy-deep); border: 1px solid rgba(201, 162, 39, 0.15); border-radius: 8px; padding: 1.5rem; }
.step-number { width: 36px; height: 36px; background: var(--gold-primary); color: var(--navy-deep); border-radius: 50%; display: flex; align-items: center; justify-content: center; font-weight: 700; margin-bottom: 1rem; }
.process-step h4 { margin-bottom: 0.5rem; }
.process-step p { font-size: 0.85rem; color: var(--text-muted); margin: 0; }

.sanctions-request { background: linear-gradient(135deg, var(--navy-mid), var(--navy-deep)); border: 1px solid rgba(201, 162, 39, 0.2); border-radius: 12px; padding: 2rem; text-align: center; }
.sanctions-request h3 { margin-bottom: 1rem; }
.sanctions-request p { color: var(--text-secondary); margin-bottom: 1.5rem; }

.importance-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 2rem; margin-top: 3rem; }
.importance-card { text-align: center; }
.importance-card h4 { margin-bottom: 0.75rem; }
.importance-card p { font-size: 0.85rem; color: var(--text-muted); }

.code-row { display: flex; align-items: center; gap: 1rem; padding: 0.75rem 0; border-bottom: 1px solid rgba(201, 162, 39, 0.1); }
.code-row:last-child { border-bottom: none; }
.code-flag { font-size: 1.5rem; }
.code-country { flex: 1; font-size: 0.9rem; }
.code-value { font-family: monospace; font-size: 0.9rem; color: var(--gold-primary); background: rgba(201, 162, 39, 0.1); padding: 0.25rem 0.5rem; border-radius: 4px; }

/* Modal Profile Styles */
.profile-modal { padding: 2rem; }
.profile-header { text-align: center; margin-bottom: 3rem; }
.profile-photo { width: 150px; height: 150px; border-radius: 50%; background: linear-gradient(135deg, var(--navy-light), var(--navy-deep)); border: 3px solid var(--gold-primary); margin: 0 auto 1.5rem; display: flex; align-items: center; justify-content: center; }
.profile-photo svg { width: 60px; height: 60px; stroke: var(--gold-primary); opacity: 0.5; }
.profile-title { color: var(--gold-light); font-style: italic; }

.profile-section { margin-bottom: 2rem; }
.profile-section h3 { font-size: 1rem; color: var(--gold-primary); margin-bottom: 1rem; text-transform: uppercase; letter-spacing: 1px; }
.profile-section p { color: var(--text-secondary); line-height: 1.8; }

.responsibilities-list { list-style: none; }
.responsibilities-list li { padding: 0.5rem 0; padding-left: 1.5rem; position: relative; color: var(--text-secondary); border-bottom: 1px solid rgba(255,255,255,0.05); }
.responsibilities-list li::before { content: '→'; position: absolute; left: 0; color: var(--gold-primary); }

.credentials-tags, .credential-tag { display: flex; flex-wrap: wrap; gap: 0.5rem; }
.credential-tag { background: rgba(201, 162, 39, 0.1); color: var(--gold-light); padding: 0.35rem 0.75rem; border-radius: 4px; font-size: 0.75rem; border: 1px solid rgba(201, 162, 39, 0.2); }

.region-details p { margin-bottom: 0.5rem; color: var(--text-secondary); }
.region-details strong { color: var(--gold-primary); }

.profile-contact { text-align: center; }
.contact-email { display: inline-flex; align-items: center; gap: 0.75rem; color: var(--gold-primary); font-size: 1rem; }
.contact-email svg { width: 20px; height: 20px; }

.profile-sanctions { text-align: center; }
.sanctions-verified { display: inline-flex; align-items: center; gap: 1rem; background: rgba(40, 167, 69, 0.15); border: 1px solid var(--success); border-radius: 8px; padding: 1rem 2rem; }
.sanctions-verified svg { width: 24px; height: 24px; stroke: var(--success); }
.sanctions-verified strong { display: block; color: var(--success); }
.sanctions-verified span { font-size: 0.75rem; color: var(--text-muted); }

/* Responsive for new pages */
@media (max-width: 1200px) {
    .values-grid { grid-template-columns: repeat(2, 1fr); }
    .importance-grid { grid-template-columns: repeat(2, 1fr); }
    .headquarters-grid { grid-template-columns: repeat(2, 1fr); }
    .portals-grid { grid-template-columns: repeat(3, 1fr); }
}

@media (max-width: 992px) {
    .contact-layout { grid-template-columns: 1fr; }
    .mission-grid { grid-template-columns: 1fr; }
    .sanctions-info { grid-template-columns: 1fr; }
    .sanctions-process { grid-template-columns: 1fr; }
    .region-info-grid { grid-template-columns: 1fr; }
    .why-grid { grid-template-columns: 1fr; }
    .domain-grid { grid-template-columns: repeat(2, 1fr); }
    .policy-declarations { grid-template-columns: 1fr; }
    .headquarters-grid { grid-template-columns: 1fr; }
    .portals-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
    .form-row { grid-template-columns: 1fr; }
    .quantity-grid { flex-direction: column; gap: 2rem; }
    .region-header { flex-direction: column; text-align: center; }
    .values-grid { grid-template-columns: 1fr; }
    .importance-grid { grid-template-columns: 1fr; }
    .domain-grid { grid-template-columns: 1fr; }
    .portals-grid { grid-template-columns: 1fr; }
}

/* ============================================
   OFFICIAL COMMUNICATIONS SECTION
   ============================================ */
.official-communications { padding-top: 2rem; }

.communications-banner {
    background: linear-gradient(135deg, var(--navy-mid), var(--navy-deep));
    border: 2px solid var(--gold-primary);
    border-radius: 16px;
    padding: 3rem;
    text-align: center;
}

.banner-icon { margin-bottom: 1.5rem; }
.banner-icon svg { width: 60px; height: 60px; stroke: var(--gold-primary); }
.communications-banner h2 { margin-bottom: 0.5rem; }
.banner-subtitle { color: var(--text-secondary); margin-bottom: 3rem; }

.official-domains { margin-bottom: 3rem; }
.official-domains h3 { 
    font-size: 1rem; 
    letter-spacing: 2px; 
    text-transform: uppercase; 
    color: var(--gold-primary); 
    margin-bottom: 1.5rem; 
}

.domain-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 1rem;
}

.domain-item {
    background: rgba(201, 162, 39, 0.1);
    border: 1px solid rgba(201, 162, 39, 0.3);
    border-radius: 8px;
    padding: 1.25rem 1rem;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.domain-item.master {
    background: rgba(201, 162, 39, 0.2);
    border-color: var(--gold-primary);
}

.domain-label {
    font-size: 0.65rem;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: var(--text-muted);
}

.domain-name {
    font-family: 'Courier New', monospace;
    font-size: 0.9rem;
    color: var(--gold-primary);
    font-weight: 600;
}

.domain-alt {
    font-family: 'Courier New', monospace;
    font-size: 0.8rem;
    color: var(--gold-light);
}

.policy-declarations {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
}

.policy-card {
    background: rgba(10, 22, 40, 0.5);
    border: 1px solid rgba(220, 53, 69, 0.3);
    border-radius: 12px;
    padding: 1.5rem;
    text-align: left;
}

.policy-card.warning { border-color: rgba(220, 53, 69, 0.4); }

.policy-icon { margin-bottom: 1rem; }
.policy-icon svg { width: 32px; height: 32px; stroke: var(--error); }

.policy-card h4 { 
    color: var(--error); 
    font-size: 1rem; 
    margin-bottom: 0.75rem; 
}

.policy-card p { 
    font-size: 0.85rem; 
    color: var(--text-muted); 
    margin: 0; 
    line-height: 1.6; 
}

/* ============================================
   HEADQUARTERS GRID
   ============================================ */
.headquarters-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
}

.hq-card {
    background: linear-gradient(135deg, var(--navy-deep), var(--navy-mid));
    border: 1px solid rgba(201, 162, 39, 0.2);
    border-radius: 12px;
    overflow: hidden;
    transition: all var(--transition);
}

.hq-card:hover {
    border-color: var(--gold-primary);
    transform: translateY(-5px);
}

.hq-header {
    background: rgba(201, 162, 39, 0.1);
    padding: 1.5rem;
    display: flex;
    align-items: center;
    gap: 1rem;
    border-bottom: 1px solid rgba(201, 162, 39, 0.15);
}

.hq-flag { font-size: 2.5rem; }

.hq-title h3 { margin-bottom: 0.25rem; font-size: 1.1rem; }
.hq-coverage { 
    font-size: 0.65rem; 
    letter-spacing: 1px; 
    text-transform: uppercase; 
    color: var(--gold-primary); 
}

.hq-body { padding: 1.5rem; }

.hq-company { 
    margin-bottom: 1rem; 
    padding-bottom: 1rem; 
    border-bottom: 1px solid rgba(255, 255, 255, 0.05); 
}
.hq-company strong { font-size: 0.9rem; }

.hq-address {
    font-style: normal;
    font-size: 0.85rem;
    color: var(--text-secondary);
    line-height: 1.7;
    margin-bottom: 1.5rem;
}

.hq-contact { margin-bottom: 1.5rem; }

.contact-row {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 0.5rem;
}

.contact-row svg { 
    width: 16px; 
    height: 16px; 
    stroke: var(--gold-primary); 
    flex-shrink: 0; 
}

.contact-row a { 
    font-size: 0.85rem; 
    color: var(--gold-primary); 
    word-break: break-all; 
}

.contact-row span { 
    font-size: 0.85rem; 
    color: var(--text-secondary); 
}

.hq-credentials {
    background: rgba(201, 162, 39, 0.05);
    border-radius: 8px;
    padding: 1rem;
}

.credential-row {
    display: flex;
    justify-content: space-between;
    padding: 0.35rem 0;
    font-size: 0.75rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.credential-row:last-child { border-bottom: none; }

.cred-label { color: var(--text-muted); }
.cred-value { 
    color: var(--gold-primary); 
    font-family: monospace; 
    font-weight: 600; 
}

/* ============================================
   TEAM DIRECTORY
   ============================================ */
.team-directory { max-width: 1000px; margin: 0 auto; }
.section-subtitle { color: var(--text-muted); max-width: 600px; margin: 1rem auto 0; }

.directory-section {
    margin-bottom: 2rem;
    background: linear-gradient(135deg, var(--navy-mid), var(--navy-deep));
    border: 1px solid rgba(201, 162, 39, 0.15);
    border-radius: 12px;
    overflow: hidden;
}

.directory-section h3 {
    background: rgba(201, 162, 39, 0.1);
    padding: 1rem 1.5rem;
    margin: 0;
    font-size: 1rem;
    border-bottom: 1px solid rgba(201, 162, 39, 0.15);
}

.directory-list { padding: 0.5rem 0; }

.directory-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 1.5rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    transition: background var(--transition);
}

.directory-item:last-child { border-bottom: none; }
.directory-item:hover { background: rgba(201, 162, 39, 0.05); }

.member-info { display: flex; flex-direction: column; gap: 0.25rem; }
.member-info strong { font-size: 0.95rem; }
.member-title { font-size: 0.75rem; color: var(--text-muted); }

.member-email {
    font-family: 'Courier New', monospace;
    font-size: 0.85rem;
    color: var(--gold-primary);
    background: rgba(201, 162, 39, 0.1);
    padding: 0.35rem 0.75rem;
    border-radius: 4px;
    transition: all var(--transition);
}

.member-email:hover {
    background: var(--gold-primary);
    color: var(--navy-deep);
}

/* ============================================
   PORTALS GRID
   ============================================ */
.portals-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
}

.portal-card {
    background: linear-gradient(135deg, var(--navy-mid), var(--navy-deep));
    border: 1px solid rgba(201, 162, 39, 0.2);
    border-radius: 12px;
    padding: 2rem 1.5rem;
    text-align: center;
    text-decoration: none;
    transition: all var(--transition);
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.portal-card:hover {
    border-color: var(--gold-primary);
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.portal-card.coming-soon {
    opacity: 0.7;
    pointer-events: none;
}

.portal-icon { font-size: 2.5rem; margin-bottom: 1rem; }

.portal-card h4 { 
    color: var(--text-primary); 
    margin-bottom: 0.5rem; 
    font-size: 1.1rem; 
}

.portal-url {
    font-family: 'Courier New', monospace;
    font-size: 0.75rem;
    color: var(--gold-primary);
    margin-bottom: 0.75rem;
}

.portal-card p {
    font-size: 0.8rem;
    color: var(--text-muted);
    margin: 0;
    line-height: 1.5;
}

.portal-badge {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: var(--gold-primary);
    color: var(--navy-deep);
    font-size: 0.6rem;
    font-weight: 700;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    padding: 0.25rem 0.5rem;
    border-radius: 4px;
}

/* ============================================
   INQUIRY FORM ENHANCEMENTS
   ============================================ */
.inquiry-container { max-width: 900px; margin: 0 auto; }

.form-notice {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    background: rgba(23, 162, 184, 0.1);
    border: 1px solid rgba(23, 162, 184, 0.3);
    border-radius: 8px;
    padding: 1.5rem;
    margin-bottom: 2rem;
}

.form-notice svg {
    width: 24px;
    height: 24px;
    stroke: var(--info);
    flex-shrink: 0;
    margin-top: 0.1rem;
}

.form-notice p {
    font-size: 0.9rem;
    color: var(--text-secondary);
    margin: 0;
    line-height: 1.6;
}

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

/* ============================================
   FRAUD WARNING SECTION
   ============================================ */
.section-warning { padding: 4rem 2rem; }

.fraud-alert {
    background: rgba(255, 193, 7, 0.1);
    border: 2px solid rgba(255, 193, 7, 0.4);
    border-radius: 16px;
    padding: 3rem;
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

.alert-icon { margin-bottom: 1.5rem; }
.alert-icon svg { width: 60px; height: 60px; stroke: #ffc107; }

.fraud-alert h3 { margin-bottom: 1rem; }
.fraud-alert p { color: var(--text-secondary); margin-bottom: 1rem; }

.alert-email {
    display: inline-block;
    font-family: 'Courier New', monospace;
    font-size: 1.25rem;
    color: var(--gold-primary);
    background: rgba(201, 162, 39, 0.15);
    padding: 0.75rem 1.5rem;
    border-radius: 8px;
    margin-top: 0.5rem;
    transition: all var(--transition);
}

.alert-email:hover {
    background: var(--gold-primary);
    color: var(--navy-deep);
}

@media print {
    body::before, .floating-nav, .header, .modal-overlay { display: none !important; }
    body { background: white; color: black; }
}

/* ============================================
   CRITICAL NOTICE SECTION
   ============================================ */
.critical-notice-section { padding-top: 2rem; padding-bottom: 0; }

.critical-notice {
    background: linear-gradient(135deg, rgba(220, 53, 69, 0.15), rgba(220, 53, 69, 0.05));
    border: 2px solid var(--error);
    border-radius: 16px;
    overflow: hidden;
}

.notice-header {
    background: rgba(220, 53, 69, 0.2);
    padding: 1.5rem 2rem;
    display: flex;
    align-items: center;
    gap: 1rem;
    border-bottom: 1px solid rgba(220, 53, 69, 0.3);
}

.notice-header svg { width: 40px; height: 40px; stroke: var(--error); flex-shrink: 0; }
.notice-header h2 { margin: 0; font-size: 1.25rem; color: var(--error); }

.notice-body { padding: 2rem; }
.notice-body p { margin-bottom: 1rem; color: var(--text-secondary); }
.notice-body ul { list-style: none; margin: 1.5rem 0; padding-left: 0; }

.notice-body li {
    padding: 0.5rem 0 0.5rem 2rem;
    position: relative;
    color: var(--text-secondary);
}

.notice-body li::before {
    content: '✕';
    position: absolute;
    left: 0;
    color: var(--error);
    font-weight: bold;
}

.notice-emphasis {
    background: rgba(220, 53, 69, 0.1);
    padding: 1rem;
    border-radius: 8px;
    border-left: 4px solid var(--error);
}

.notice-body a { color: var(--gold-primary); }

/* ============================================
   BUYER/SELLER TOGGLE
   ============================================ */
.inquiry-type-toggle {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
    margin-top: 1rem;
}

.type-option { cursor: pointer; }
.type-option input { display: none; }

.type-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 2rem;
    background: rgba(201, 162, 39, 0.05);
    border: 2px solid rgba(201, 162, 39, 0.3);
    border-radius: 12px;
    text-align: center;
    transition: all var(--transition);
}

.type-card svg { width: 48px; height: 48px; stroke: var(--gold-primary); margin-bottom: 1rem; }
.type-card strong { font-size: 1.25rem; margin-bottom: 0.5rem; color: var(--text-primary); }
.type-card span { font-size: 0.85rem; color: var(--text-muted); }

.type-option input:checked + .type-card {
    background: rgba(201, 162, 39, 0.2);
    border-color: var(--gold-primary);
    box-shadow: 0 0 20px rgba(201, 162, 39, 0.3);
}

.type-option:hover .type-card { border-color: var(--gold-primary); }

/* ============================================
   MULTI-PRODUCT ENTRIES
   ============================================ */
.fieldset-intro {
    font-size: 0.9rem;
    color: var(--text-muted);
    margin-bottom: 1.5rem;
}

.product-entry {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(201, 162, 39, 0.15);
    border-radius: 8px;
    padding: 1.5rem;
    margin-bottom: 1rem;
}

.product-entry-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1rem;
    padding-bottom: 0.75rem;
    border-bottom: 1px solid rgba(201, 162, 39, 0.1);
}

.product-number {
    font-weight: 600;
    color: var(--gold-primary);
    font-size: 0.9rem;
}

.btn-remove-product {
    background: rgba(220, 53, 69, 0.1);
    border: 1px solid rgba(220, 53, 69, 0.3);
    color: var(--error);
    padding: 0.35rem 0.75rem;
    border-radius: 4px;
    font-size: 0.75rem;
    cursor: pointer;
    transition: all var(--transition);
}

.btn-remove-product:hover {
    background: var(--error);
    color: white;
}

.btn-add-product {
    margin-top: 1rem;
    width: 100%;
    justify-content: center;
}

.btn-add-product svg { margin-right: 0.5rem; }

/* ============================================
   SANCTIONS & ONBOARDING SECTION
   ============================================ */
.screening-info-box {
    background: rgba(40, 167, 69, 0.1);
    border: 1px solid rgba(40, 167, 69, 0.3);
    border-radius: 12px;
    padding: 1.5rem;
    margin-bottom: 2rem;
}

.screening-info-box h4 {
    color: var(--success);
    margin-bottom: 1rem;
}

.info-points { display: flex; flex-direction: column; gap: 0.75rem; }

.info-point {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.info-point svg { width: 20px; height: 20px; stroke: var(--success); flex-shrink: 0; }
.info-point span { font-size: 0.9rem; color: var(--text-secondary); }

.radio-group { display: flex; flex-direction: column; gap: 0.75rem; margin-top: 0.75rem; }

.radio-option {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    cursor: pointer;
    padding: 1rem;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(201, 162, 39, 0.15);
    border-radius: 8px;
    transition: all var(--transition);
}

.radio-option:hover { border-color: var(--gold-primary); }

.radio-option input {
    width: 18px;
    height: 18px;
    accent-color: var(--gold-primary);
}

.radio-option span { font-size: 0.9rem; color: var(--text-secondary); }

.conditional-section {
    margin-top: 1.5rem;
    padding: 1.5rem;
    background: rgba(201, 162, 39, 0.05);
    border-radius: 8px;
    border-left: 3px solid var(--gold-primary);
}

.screening-disclaimer {
    margin-top: 2rem;
    padding: 1.5rem;
    background: rgba(255, 193, 7, 0.1);
    border: 1px solid rgba(255, 193, 7, 0.3);
    border-radius: 12px;
    display: flex;
    gap: 1rem;
}

.disclaimer-icon svg { width: 40px; height: 40px; stroke: #ffc107; flex-shrink: 0; }

.disclaimer-content h5 { color: #ffc107; margin-bottom: 0.75rem; }
.disclaimer-content p { font-size: 0.85rem; color: var(--text-secondary); margin-bottom: 0.5rem; }
.disclaimer-content p:last-child { margin-bottom: 0; }

/* ============================================
   LEGAL / PRIVACY POLICY PAGE
   ============================================ */
.legal-page .page-header p { font-style: italic; }

.legal-content { padding: 4rem 2rem; }

.legal-document {
    max-width: 900px;
    margin: 0 auto;
    background: linear-gradient(135deg, var(--navy-mid), var(--navy-deep));
    border: 1px solid rgba(201, 162, 39, 0.2);
    border-radius: 16px;
    padding: 3rem;
}

.legal-intro { margin-bottom: 3rem; }
.legal-intro > p { font-size: 1.1rem; color: var(--text-secondary); line-height: 1.8; }

.coverage-box {
    background: rgba(201, 162, 39, 0.1);
    border: 1px solid rgba(201, 162, 39, 0.3);
    border-radius: 12px;
    padding: 2rem;
    margin-top: 2rem;
}

.coverage-box h3 { color: var(--gold-primary); margin-bottom: 1rem; }
.coverage-box > p { color: var(--text-secondary); margin-bottom: 1.5rem; }

.coverage-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1rem;
}

.coverage-item {
    background: rgba(10, 22, 40, 0.5);
    padding: 1rem;
    border-radius: 8px;
    text-align: center;
}

.coverage-item strong { display: block; margin-bottom: 0.5rem; font-size: 0.9rem; }
.coverage-item span { display: block; font-family: monospace; font-size: 0.8rem; color: var(--gold-primary); }
.coverage-item small { display: block; margin-top: 0.5rem; font-size: 0.7rem; color: var(--text-muted); }

.legal-nav {
    background: rgba(201, 162, 39, 0.05);
    border: 1px solid rgba(201, 162, 39, 0.15);
    border-radius: 8px;
    padding: 1.5rem;
    margin-bottom: 3rem;
}

.legal-nav h3 { font-size: 1rem; margin-bottom: 1rem; color: var(--gold-primary); }

.legal-nav ol {
    list-style: decimal;
    padding-left: 1.5rem;
    columns: 2;
    column-gap: 2rem;
}

.legal-nav li { padding: 0.35rem 0; font-size: 0.85rem; }
.legal-nav a { color: var(--text-secondary); }
.legal-nav a:hover { color: var(--gold-primary); }

.legal-section {
    margin-bottom: 3rem;
    padding-bottom: 3rem;
    border-bottom: 1px solid rgba(201, 162, 39, 0.1);
}

.legal-section:last-of-type { border-bottom: none; }

.legal-section h2 {
    color: var(--gold-primary);
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
    padding-bottom: 0.75rem;
    border-bottom: 2px solid var(--gold-primary);
}

.legal-section h3 {
    font-size: 1.1rem;
    margin: 1.5rem 0 1rem;
    color: var(--text-primary);
}

.legal-section p {
    color: var(--text-secondary);
    line-height: 1.8;
    margin-bottom: 1rem;
}

.legal-section ul, .legal-section ol {
    margin: 1rem 0;
    padding-left: 1.5rem;
    color: var(--text-secondary);
}

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

.legal-section a { color: var(--gold-primary); }

.highlight-box {
    background: rgba(40, 167, 69, 0.1);
    border: 1px solid rgba(40, 167, 69, 0.3);
    border-radius: 8px;
    padding: 1.5rem;
    margin: 1.5rem 0;
}

.highlight-box p { margin-bottom: 0.75rem; }
.highlight-box ul { margin-bottom: 0.5rem; }

.contact-methods {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
    margin-top: 1.5rem;
}

.contact-method {
    background: rgba(201, 162, 39, 0.05);
    border: 1px solid rgba(201, 162, 39, 0.15);
    border-radius: 8px;
    padding: 1.5rem;
}

.contact-method h4 { color: var(--gold-primary); margin-bottom: 0.75rem; font-size: 1rem; }
.contact-method p, .contact-method address { font-size: 0.9rem; color: var(--text-secondary); font-style: normal; line-height: 1.7; margin: 0; }

.legal-footer {
    margin-top: 3rem;
    padding-top: 2rem;
    border-top: 2px solid var(--gold-primary);
    text-align: center;
}

.legal-footer p { font-size: 0.9rem; color: var(--text-muted); margin-bottom: 0.5rem; }

/* Form notice variations */
.form-notice.info { border-color: rgba(23, 162, 184, 0.3); background: rgba(23, 162, 184, 0.1); }
.form-notice.info svg { stroke: #17a2b8; }

/* Responsive for new sections */
@media (max-width: 768px) {
    .inquiry-type-toggle { grid-template-columns: 1fr; }
    .legal-nav ol { columns: 1; }
    .screening-disclaimer { flex-direction: column; }
    .notice-header { flex-direction: column; text-align: center; }
    .notice-header h2 { font-size: 1.1rem; }
}

/* ============================================
   PRODUCTS PAGE STYLES
   ============================================ */

/* Facilitator Banner */
.facilitator-notice { padding-top: 2rem; padding-bottom: 0; }

.facilitator-banner {
    background: linear-gradient(135deg, rgba(23, 162, 184, 0.15), rgba(23, 162, 184, 0.05));
    border: 2px solid rgba(23, 162, 184, 0.4);
    border-radius: 16px;
    padding: 2.5rem;
    display: flex;
    gap: 2rem;
    align-items: flex-start;
}

.facilitator-banner .banner-icon svg {
    width: 60px;
    height: 60px;
    stroke: var(--info);
    flex-shrink: 0;
}

.facilitator-banner h2 {
    color: var(--info);
    margin-bottom: 1rem;
}

.disclaimer-text p {
    color: var(--text-secondary);
    margin-bottom: 1rem;
    line-height: 1.7;
}

.disclaimer-text ul {
    list-style: none;
    margin: 1rem 0 1.5rem;
    padding-left: 0;
}

.disclaimer-text li {
    padding: 0.5rem 0 0.5rem 1.5rem;
    position: relative;
    color: var(--text-secondary);
}

.disclaimer-text li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--success);
    font-weight: bold;
}

.disclaimer-text .highlight {
    background: rgba(23, 162, 184, 0.15);
    padding: 1rem;
    border-radius: 8px;
    border-left: 4px solid var(--info);
    margin-top: 1rem;
}

/* Category Navigation */
.category-nav {
    text-align: center;
}

.category-nav h3 {
    margin-bottom: 1.5rem;
    color: var(--text-muted);
    font-size: 0.85rem;
    letter-spacing: 2px;
    text-transform: uppercase;
}

.category-tabs {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 1rem;
}

.category-tab {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1rem 1.5rem;
    background: rgba(201, 162, 39, 0.1);
    border: 1px solid rgba(201, 162, 39, 0.3);
    border-radius: 50px;
    text-decoration: none;
    transition: all var(--transition);
}

.category-tab:hover {
    background: rgba(201, 162, 39, 0.2);
    border-color: var(--gold-primary);
    transform: translateY(-2px);
}

.tab-icon { font-size: 1.5rem; }
.tab-name { color: var(--text-primary); font-weight: 500; }

/* Product Category Section */
.product-category-section { padding: 4rem 2rem; }
.product-category-section:nth-child(even) { background: var(--navy-mid); }

.section-intro {
    max-width: 800px;
    margin: 1rem auto 0;
    color: var(--text-secondary);
    line-height: 1.7;
}

/* Products Grid */
.products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 1.5rem;
    margin-top: 3rem;
}

.product-card {
    background: linear-gradient(135deg, var(--navy-deep), var(--navy-mid));
    border: 1px solid rgba(201, 162, 39, 0.2);
    border-radius: 12px;
    text-decoration: none;
    overflow: hidden;
    transition: all var(--transition);
    display: flex;
    flex-direction: column;
}

.product-card:hover {
    border-color: var(--gold-primary);
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.3);
}

.product-card-header {
    background: rgba(201, 162, 39, 0.1);
    padding: 1rem 1.5rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 1px solid rgba(201, 162, 39, 0.15);
}

.product-code {
    font-family: 'Courier New', monospace;
    font-size: 1rem;
    font-weight: 700;
    color: var(--gold-primary);
    letter-spacing: 1px;
}

.product-category-badge { font-size: 1.5rem; }

.product-card-body {
    padding: 1.5rem;
    flex-grow: 1;
}

.product-card-body h3 {
    font-size: 1.1rem;
    margin-bottom: 0.75rem;
    color: var(--text-primary);
}

.product-card-body p {
    font-size: 0.85rem;
    color: var(--text-muted);
    line-height: 1.6;
    margin: 0;
}

.product-card-footer {
    padding: 1rem 1.5rem;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.product-standards {
    font-size: 0.7rem;
    color: var(--text-muted);
    font-family: monospace;
}

.view-details {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.8rem;
    color: var(--gold-primary);
    font-weight: 500;
}

.view-details svg {
    width: 16px;
    height: 16px;
    transition: transform var(--transition);
}

.product-card:hover .view-details svg {
    transform: translateX(4px);
}

/* Process Steps */
.process-steps {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    margin-top: 3rem;
}

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

.process-step::after {
    content: '';
    position: absolute;
    top: 30px;
    right: -1rem;
    width: calc(100% - 60px);
    height: 2px;
    background: linear-gradient(90deg, var(--gold-primary), transparent);
}

.process-step:last-child::after { display: none; }

.step-number {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--gold-primary), var(--gold-dark));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--navy-deep);
    margin: 0 auto 1.5rem;
    position: relative;
    z-index: 1;
}

.process-step h4 {
    margin-bottom: 0.75rem;
    color: var(--text-primary);
}

.process-step p {
    font-size: 0.85rem;
    color: var(--text-muted);
    line-height: 1.6;
}

/* CTA Box */
.cta-box {
    background: linear-gradient(135deg, rgba(201, 162, 39, 0.15), rgba(201, 162, 39, 0.05));
    border: 1px solid rgba(201, 162, 39, 0.3);
    border-radius: 16px;
    padding: 3rem;
    text-align: center;
    margin-top: 4rem;
}

.cta-box h3 { margin-bottom: 0.75rem; }
.cta-box p { color: var(--text-secondary); margin-bottom: 1.5rem; }

/* Verification Notice */
.verification-notice {
    background: linear-gradient(135deg, rgba(40, 167, 69, 0.1), rgba(40, 167, 69, 0.05));
    border: 1px solid rgba(40, 167, 69, 0.3);
    border-radius: 16px;
    padding: 2.5rem;
    display: flex;
    gap: 2rem;
    align-items: flex-start;
}

.verification-notice .notice-icon svg {
    width: 60px;
    height: 60px;
    stroke: var(--success);
    flex-shrink: 0;
}

.verification-notice h3 {
    color: var(--success);
    margin-bottom: 1rem;
}

.verification-notice p {
    color: var(--text-secondary);
    margin-bottom: 1rem;
}

.verification-notice ul {
    list-style: none;
    margin: 1rem 0;
    padding: 0;
}

.verification-notice li {
    padding: 0.5rem 0;
    color: var(--text-secondary);
}

/* ============================================
   PRODUCT DETAIL PAGE STYLES
   ============================================ */

/* Breadcrumb */
.breadcrumb-section {
    background: var(--navy-mid);
    padding: 1rem 2rem;
    border-bottom: 1px solid rgba(201, 162, 39, 0.1);
}

.breadcrumb {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.85rem;
}

.breadcrumb a {
    color: var(--text-muted);
    text-decoration: none;
}

.breadcrumb a:hover { color: var(--gold-primary); }
.breadcrumb .separator { color: var(--text-muted); }
.breadcrumb .current { color: var(--gold-primary); }

/* Product Header */
.product-header .product-header-content { max-width: 800px; }

.product-badge {
    display: inline-block;
    background: rgba(201, 162, 39, 0.2);
    color: var(--gold-primary);
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.85rem;
    margin-bottom: 1rem;
}

.product-code-large {
    font-size: 1.1rem;
    color: var(--text-secondary);
    margin-bottom: 1rem;
}

.product-code-large strong {
    font-family: 'Courier New', monospace;
    color: var(--gold-primary);
    font-size: 1.25rem;
}

.product-intro {
    font-size: 1.25rem;
    color: var(--text-secondary);
    line-height: 1.7;
}

/* Inline Disclaimer */
.disclaimer-banner-section { padding: 1rem 2rem; }

.inline-disclaimer {
    background: rgba(255, 193, 7, 0.1);
    border: 1px solid rgba(255, 193, 7, 0.3);
    border-radius: 8px;
    padding: 1rem 1.5rem;
    display: flex;
    align-items: flex-start;
    gap: 1rem;
}

.inline-disclaimer svg {
    width: 24px;
    height: 24px;
    stroke: #ffc107;
    flex-shrink: 0;
    margin-top: 0.1rem;
}

.inline-disclaimer p {
    font-size: 0.85rem;
    color: var(--text-secondary);
    margin: 0;
    line-height: 1.6;
}

/* Product Layout */
.product-layout {
    display: grid;
    grid-template-columns: 1fr 380px;
    gap: 3rem;
    align-items: start;
}

/* Product Main Content */
.product-main { min-width: 0; }

.product-section {
    margin-bottom: 3rem;
    padding-bottom: 3rem;
    border-bottom: 1px solid rgba(201, 162, 39, 0.1);
}

.product-section:last-child {
    border-bottom: none;
    margin-bottom: 0;
}

.product-section h2 {
    color: var(--gold-primary);
    font-size: 1.5rem;
    margin-bottom: 1.25rem;
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.product-description {
    font-size: 1.05rem;
    color: var(--text-secondary);
    line-height: 1.8;
}

.specs-note {
    font-size: 0.85rem;
    color: var(--text-muted);
    font-style: italic;
    margin-bottom: 1.5rem;
}

/* Specifications Table */
.specs-table {
    width: 100%;
    border-collapse: collapse;
    background: rgba(201, 162, 39, 0.03);
    border-radius: 8px;
    overflow: hidden;
}

.specs-table th,
.specs-table td {
    padding: 1rem 1.25rem;
    text-align: left;
    border-bottom: 1px solid rgba(201, 162, 39, 0.1);
}

.specs-table th {
    background: rgba(201, 162, 39, 0.1);
    color: var(--gold-primary);
    font-weight: 600;
    font-size: 0.8rem;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.specs-table td {
    color: var(--text-secondary);
    font-size: 0.9rem;
}

.specs-table td:last-child {
    font-family: 'Courier New', monospace;
    color: var(--text-primary);
}

.specs-table tr:last-child td { border-bottom: none; }
.specs-table tr:hover td { background: rgba(201, 162, 39, 0.05); }

/* Standards Grid */
.standards-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 1rem;
    margin-top: 1rem;
}

.standard-card {
    background: rgba(201, 162, 39, 0.05);
    border: 1px solid rgba(201, 162, 39, 0.2);
    border-radius: 8px;
    padding: 1rem 1.25rem;
    display: flex;
    flex-direction: column;
    gap: 0.35rem;
}

.standard-code {
    font-family: 'Courier New', monospace;
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--gold-primary);
}

.standard-name {
    font-size: 0.8rem;
    color: var(--text-muted);
}

/* Applications & Packaging Lists */
.applications-list,
.packaging-list {
    list-style: none;
    margin: 1rem 0 0;
    padding: 0;
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 0.75rem;
}

.applications-list li,
.packaging-list li {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.75rem 1rem;
    background: rgba(201, 162, 39, 0.03);
    border-radius: 6px;
    color: var(--text-secondary);
    font-size: 0.9rem;
}

.applications-list svg,
.packaging-list svg {
    width: 18px;
    height: 18px;
    stroke: var(--success);
    flex-shrink: 0;
}

.packaging-list svg { stroke: var(--gold-primary); }

/* Product Sidebar */
.product-sidebar { position: sticky; top: 100px; }

.sidebar-card {
    background: linear-gradient(135deg, var(--navy-mid), var(--navy-deep));
    border: 1px solid rgba(201, 162, 39, 0.2);
    border-radius: 12px;
    padding: 1.5rem;
    margin-bottom: 1.5rem;
}

.sidebar-card h3 {
    font-size: 1.1rem;
    margin-bottom: 1rem;
    color: var(--gold-primary);
}

.sidebar-card h4 {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 1rem;
    margin-bottom: 0.75rem;
}

.sidebar-card h4 svg {
    width: 20px;
    height: 20px;
}

.sidebar-card p {
    font-size: 0.85rem;
    color: var(--text-muted);
    margin-bottom: 0.75rem;
    line-height: 1.6;
}

.sidebar-card p:last-child { margin-bottom: 0; }

/* Quick Facts */
.quick-facts { display: flex; flex-direction: column; gap: 0.75rem; }

.fact {
    display: flex;
    justify-content: space-between;
    padding: 0.5rem 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.fact:last-child { border-bottom: none; }
.fact-label { font-size: 0.8rem; color: var(--text-muted); }
.fact-value { font-size: 0.85rem; color: var(--text-primary); font-weight: 500; }

/* CTA Card */
.cta-card {
    background: linear-gradient(135deg, rgba(201, 162, 39, 0.2), rgba(201, 162, 39, 0.1));
    border-color: var(--gold-primary);
}

.cta-card h3 { color: var(--text-primary); }

.btn-block { width: 100%; justify-content: center; }

.cta-note {
    text-align: center;
    font-size: 0.75rem !important;
    color: var(--gold-light) !important;
    margin-top: 0.75rem !important;
}

/* Warning Card */
.warning-card {
    background: rgba(255, 193, 7, 0.1);
    border-color: rgba(255, 193, 7, 0.3);
}

.warning-card h4 { color: #ffc107; }
.warning-card h4 svg { stroke: #ffc107; }

/* Verification Card */
.verification-card { text-align: center; }

.verification-badge {
    width: 60px;
    height: 60px;
    background: rgba(40, 167, 69, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
}

.verification-badge svg {
    width: 30px;
    height: 30px;
    stroke: var(--success);
}

.verification-card h4 { color: var(--success); justify-content: center; }

/* Related Products */
.related-products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 1.5rem;
}

.product-card.related { min-height: auto; }

/* Back Navigation */
.back-navigation {
    display: flex;
    justify-content: center;
    gap: 1rem;
    flex-wrap: wrap;
}

.btn-outline {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem 1.5rem;
    border: 2px solid rgba(201, 162, 39, 0.5);
    border-radius: 8px;
    color: var(--gold-primary);
    text-decoration: none;
    font-weight: 500;
    transition: all var(--transition);
}

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

.btn-outline svg { width: 18px; height: 18px; }

/* Responsive */
@media (max-width: 1200px) {
    .process-steps { grid-template-columns: repeat(2, 1fr); }
    .process-step::after { display: none; }
}

@media (max-width: 992px) {
    .product-layout { grid-template-columns: 1fr; }
    .product-sidebar { position: static; display: grid; grid-template-columns: repeat(2, 1fr); gap: 1rem; }
    .sidebar-card { margin-bottom: 0; }
    .facilitator-banner { flex-direction: column; }
    .verification-notice { flex-direction: column; }
}

@media (max-width: 768px) {
    .process-steps { grid-template-columns: 1fr; }
    .products-grid { grid-template-columns: 1fr; }
    .product-sidebar { grid-template-columns: 1fr; }
    .category-tabs { flex-direction: column; align-items: stretch; }
    .category-tab { justify-content: center; }
    .standards-grid { grid-template-columns: 1fr; }
    .applications-list, .packaging-list { grid-template-columns: 1fr; }
    .back-navigation { flex-direction: column; }
    .btn-outline { justify-content: center; }
}

/* ============================================
   CREDENTIALS PAGE UPDATES
   ============================================ */
.credentials-grid-4 {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
}

.credential-card.featured {
    grid-column: span 2;
    background: linear-gradient(135deg, rgba(201, 162, 39, 0.15), rgba(201, 162, 39, 0.05));
    border-color: var(--gold-primary);
}

.credential-verify-multi {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin-top: 1.5rem;
}

.btn-sm {
    padding: 0.5rem 1rem;
    font-size: 0.8rem;
}

.credentials-table-wrapper { overflow-x: auto; }

.credentials-table {
    width: 100%;
    border-collapse: collapse;
    background: rgba(201, 162, 39, 0.03);
    border-radius: 8px;
    overflow: hidden;
}

.credentials-table th,
.credentials-table td {
    padding: 1rem;
    text-align: left;
    border-bottom: 1px solid rgba(201, 162, 39, 0.1);
}

.credentials-table th {
    background: rgba(201, 162, 39, 0.15);
    color: var(--gold-primary);
    font-size: 0.75rem;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.credentials-table td { font-size: 0.85rem; color: var(--text-secondary); }
.credentials-table .mono { font-family: 'Courier New', monospace; color: var(--gold-primary); }
.credentials-table .na { color: var(--text-muted); }
.flag-cell { margin-right: 0.5rem; }

/* ============================================
   VERIFY ACCESS PAGE
   ============================================ */
.verify-container {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 3rem;
    align-items: start;
}

.verify-info {
    background: rgba(201, 162, 39, 0.1);
    border: 1px solid rgba(201, 162, 39, 0.3);
    border-radius: 16px;
    padding: 2rem;
}

.verify-info .info-icon {
    width: 60px;
    height: 60px;
    background: rgba(201, 162, 39, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
}

.verify-info .info-icon svg { width: 30px; height: 30px; stroke: var(--gold-primary); }
.verify-info h3 { margin-bottom: 1rem; }
.verify-info p { color: var(--text-secondary); margin-bottom: 1rem; }
.verify-info ul { list-style: none; padding: 0; margin: 0; }

.verify-info li {
    padding: 0.5rem 0 0.5rem 1.5rem;
    position: relative;
    color: var(--text-muted);
    font-size: 0.9rem;
}

.verify-info li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--success);
}

.verify-form-container {
    background: linear-gradient(135deg, var(--navy-mid), var(--navy-deep));
    border: 1px solid rgba(201, 162, 39, 0.2);
    border-radius: 16px;
    padding: 2.5rem;
}

.verify-form-container h2 { margin-bottom: 1.5rem; }

.code-input {
    font-family: 'Courier New', monospace;
    font-size: 1.25rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    text-align: center;
}

.verify-footer {
    margin-top: 2rem;
    padding-top: 1.5rem;
    border-top: 1px solid rgba(201, 162, 39, 0.1);
    text-align: center;
}

.verify-footer p { font-size: 0.85rem; color: var(--text-muted); margin: 0.5rem 0; }
.verify-footer a { color: var(--gold-primary); }

.security-notice { text-align: center; }
.security-notice h3 { margin-bottom: 2rem; }

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

.notice-item {
    padding: 1.5rem;
    background: rgba(201, 162, 39, 0.05);
    border-radius: 12px;
}

.notice-item svg { width: 40px; height: 40px; stroke: var(--gold-primary); margin-bottom: 1rem; }
.notice-item h4 { margin-bottom: 0.5rem; font-size: 1rem; }
.notice-item p { font-size: 0.85rem; color: var(--text-muted); margin: 0; }

/* ============================================
   SECURE PROFILE PAGE
   ============================================ */
.secure-access-banner {
    background: linear-gradient(90deg, rgba(40, 167, 69, 0.2), rgba(40, 167, 69, 0.1));
    border-bottom: 2px solid var(--success);
    padding: 0.75rem 2rem;
}

.secure-access-banner .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.access-info { display: flex; align-items: center; gap: 2rem; }

.access-status {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--success);
    font-weight: 600;
}

.access-status svg { width: 20px; height: 20px; }

.access-details {
    display: flex;
    align-items: center;
    gap: 1rem;
    font-size: 0.85rem;
    color: var(--text-secondary);
}

.access-details .separator { color: var(--text-muted); }

.time-remaining {
    display: flex;
    align-items: center;
    gap: 0.35rem;
}

.time-remaining svg { width: 16px; height: 16px; }

.btn-outline-light {
    border-color: rgba(255, 255, 255, 0.3);
    color: var(--text-secondary);
}

.btn-outline-light:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: var(--text-primary);
    color: var(--text-primary);
}

.secure-header .profile-title {
    color: var(--gold-primary);
    font-style: italic;
    font-size: 1.25rem;
}

.confidential-notice {
    background: rgba(220, 53, 69, 0.1);
    border: 1px solid rgba(220, 53, 69, 0.3);
    border-radius: 12px;
    padding: 1.5rem;
    display: flex;
    gap: 1rem;
    margin-bottom: 3rem;
}

.confidential-notice svg { width: 40px; height: 40px; stroke: var(--error); flex-shrink: 0; }
.confidential-notice h4 { color: var(--error); margin-bottom: 0.5rem; }
.confidential-notice p { font-size: 0.85rem; color: var(--text-secondary); margin: 0; }

.profile-layout {
    display: grid;
    grid-template-columns: 1fr 350px;
    gap: 3rem;
    align-items: start;
}

.profile-section {
    background: linear-gradient(135deg, var(--navy-mid), var(--navy-deep));
    border: 1px solid rgba(201, 162, 39, 0.2);
    border-radius: 12px;
    padding: 2rem;
    margin-bottom: 2rem;
}

.profile-section h2 {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-size: 1.25rem;
    margin-bottom: 1.5rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid rgba(201, 162, 39, 0.2);
}

.profile-section h2 svg { width: 24px; height: 24px; stroke: var(--gold-primary); }

.info-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
}

.info-item label {
    display: block;
    font-size: 0.75rem;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 0.35rem;
}

.info-item span { font-size: 1rem; color: var(--text-primary); }
.info-item a { color: var(--gold-primary); }
.info-item.full-width { grid-column: span 2; }

.documents-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
}

.document-card {
    background: rgba(201, 162, 39, 0.05);
    border: 1px solid rgba(201, 162, 39, 0.2);
    border-radius: 12px;
    padding: 1.5rem;
    text-align: center;
}

.document-card.has-document { border-color: var(--success); }
.document-card.no-document { opacity: 0.7; }

.doc-icon {
    width: 60px;
    height: 60px;
    background: rgba(201, 162, 39, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
}

.doc-icon svg { width: 28px; height: 28px; stroke: var(--gold-primary); }
.document-card h4 { margin-bottom: 0.5rem; font-size: 1rem; }

.doc-status {
    font-size: 0.8rem;
    padding: 0.25rem 0.75rem;
    border-radius: 20px;
    display: inline-block;
    margin-bottom: 0.75rem;
}

.doc-status.available { background: rgba(40, 167, 69, 0.2); color: var(--success); }
.doc-status.pending { background: rgba(255, 193, 7, 0.2); color: #ffc107; }
.doc-note { font-size: 0.75rem; color: var(--text-muted); }

.profile-sidebar .sidebar-card {
    margin-bottom: 1.5rem;
}

.verification-status {
    text-align: center;
    background: rgba(40, 167, 69, 0.1);
    border-color: rgba(40, 167, 69, 0.3);
}

.status-badge.verified {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    color: var(--success);
    font-weight: 600;
    margin-bottom: 1rem;
}

.status-badge.verified svg { width: 24px; height: 24px; }

.access-log { margin-top: 1rem; }

.log-item {
    display: flex;
    justify-content: space-between;
    padding: 0.5rem 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    font-size: 0.85rem;
}

.log-item:last-child { border-bottom: none; }
.log-label { color: var(--text-muted); }
.log-value { color: var(--text-primary); }

.legal-disclaimer {
    background: rgba(255, 193, 7, 0.1);
    border: 1px solid rgba(255, 193, 7, 0.3);
    border-radius: 12px;
    padding: 2rem;
}

.legal-disclaimer h4 { color: #ffc107; margin-bottom: 1rem; }
.legal-disclaimer p { font-size: 0.9rem; color: var(--text-secondary); margin-bottom: 1rem; }
.legal-disclaimer ul { padding-left: 1.5rem; margin: 1rem 0; }
.legal-disclaimer li { font-size: 0.85rem; color: var(--text-muted); margin-bottom: 0.5rem; }

/* ============================================
   ADMIN PAGES
   ============================================ */
.admin-login-container {
    max-width: 450px;
    margin: 0 auto;
}

.admin-login-card {
    background: linear-gradient(135deg, var(--navy-mid), var(--navy-deep));
    border: 1px solid rgba(201, 162, 39, 0.3);
    border-radius: 16px;
    padding: 2.5rem;
    text-align: center;
}

.admin-login-card h2 { margin-bottom: 0.5rem; }
.admin-login-card > p { color: var(--text-muted); margin-bottom: 2rem; }

.admin-login-form { text-align: left; }

.admin-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 1.5rem;
    background: rgba(201, 162, 39, 0.1);
    border-radius: 8px;
    margin-bottom: 2rem;
}

.admin-user { font-size: 0.9rem; color: var(--text-secondary); }

.admin-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    margin-bottom: 2rem;
}

.admin-card {
    background: linear-gradient(135deg, var(--navy-mid), var(--navy-deep));
    border: 1px solid rgba(201, 162, 39, 0.2);
    border-radius: 12px;
    padding: 2rem;
}

.admin-card h3 {
    margin-bottom: 1.5rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid rgba(201, 162, 39, 0.2);
}

.generated-code-display {
    background: rgba(40, 167, 69, 0.1);
    border: 1px solid rgba(40, 167, 69, 0.3);
    border-radius: 8px;
    padding: 1.5rem;
    margin-bottom: 1.5rem;
    text-align: center;
}

.generated-code-display p { margin-bottom: 1rem; color: var(--text-secondary); }

.code-box {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
}

.code-box code {
    background: var(--navy-deep);
    padding: 1rem 1.5rem;
    border-radius: 8px;
    font-size: 1.5rem;
    font-family: 'Courier New', monospace;
    color: var(--gold-primary);
    letter-spacing: 2px;
}

.code-note { font-size: 0.8rem; color: var(--gold-primary); margin-top: 1rem; }

.no-codes {
    text-align: center;
    padding: 2rem;
    color: var(--text-muted);
}

.code-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem;
    background: rgba(201, 162, 39, 0.03);
    border-radius: 8px;
    margin-bottom: 0.75rem;
    border-left: 3px solid;
}

.code-item.status-active { border-left-color: var(--success); }
.code-item.status-used { border-left-color: var(--gold-primary); }
.code-item.status-revoked { border-left-color: var(--error); opacity: 0.6; }
.code-item.status-expired { border-left-color: var(--text-muted); opacity: 0.6; }

.code-email { display: block; font-weight: 500; }
.code-company { display: block; font-size: 0.85rem; color: var(--text-secondary); }
.code-meta { display: block; font-size: 0.75rem; color: var(--text-muted); margin-top: 0.35rem; }

.code-status { display: flex; align-items: center; gap: 1rem; }

.status-badge {
    padding: 0.25rem 0.75rem;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 500;
}

.status-badge.active { background: rgba(40, 167, 69, 0.2); color: var(--success); }
.status-badge.used { background: rgba(201, 162, 39, 0.2); color: var(--gold-primary); }
.status-badge.revoked { background: rgba(220, 53, 69, 0.2); color: var(--error); }
.status-badge.expired { background: rgba(108, 117, 125, 0.2); color: var(--text-muted); }

.btn-danger {
    background: var(--error);
    border-color: var(--error);
    color: white;
}

.btn-danger:hover { background: #c82333; }

.revoke-form { display: inline; }

.admin-instructions {
    background: rgba(201, 162, 39, 0.05);
    border: 1px solid rgba(201, 162, 39, 0.2);
    border-radius: 12px;
    padding: 2rem;
}

.admin-instructions h3 { margin-bottom: 1rem; }
.admin-instructions ol { padding-left: 1.5rem; }
.admin-instructions li { margin-bottom: 0.75rem; color: var(--text-secondary); }
.admin-instructions code { background: var(--navy-deep); padding: 0.25rem 0.5rem; border-radius: 4px; font-size: 0.85rem; }

/* Additional Responsive */
@media (max-width: 1200px) {
    .credentials-grid-4 { grid-template-columns: 1fr; }
    .credential-card.featured { grid-column: span 1; }
}

@media (max-width: 992px) {
    .verify-container { grid-template-columns: 1fr; }
    .profile-layout { grid-template-columns: 1fr; }
    .admin-grid { grid-template-columns: 1fr; }
    .notice-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
    .notice-grid { grid-template-columns: 1fr; }
    .documents-grid { grid-template-columns: 1fr; }
    .info-grid { grid-template-columns: 1fr; }
    .info-item.full-width { grid-column: span 1; }
    .secure-access-banner .container { flex-direction: column; gap: 1rem; }
    .access-info { flex-direction: column; gap: 0.5rem; }
    .access-details { flex-direction: column; }
    .access-details .separator { display: none; }
}

/* ============================================
   PAYMENTS PAGE
   ============================================ */
.payments-header {
    background: linear-gradient(135deg, var(--navy-deep), var(--navy-mid));
}

.differentiator-section { padding-top: 2rem; }

.differentiator-banner {
    background: linear-gradient(135deg, rgba(201, 162, 39, 0.2), rgba(201, 162, 39, 0.05));
    border: 2px solid var(--gold-primary);
    border-radius: 20px;
    padding: 3rem;
    display: flex;
    gap: 2.5rem;
    align-items: flex-start;
}

.diff-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--gold-primary), var(--gold-dark));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.diff-icon svg { width: 40px; height: 40px; stroke: var(--navy-deep); }

.diff-content h2 { margin-bottom: 1rem; color: var(--gold-primary); }
.diff-content .lead { font-size: 1.15rem; margin-bottom: 1rem; }
.diff-content p { color: var(--text-secondary); line-height: 1.7; }

/* CAO-PAY Cards */
.cao-pay-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
    margin-top: 3rem;
}

.cao-pay-card {
    background: linear-gradient(135deg, var(--navy-deep), var(--navy-mid));
    border: 1px solid rgba(201, 162, 39, 0.3);
    border-radius: 16px;
    padding: 2rem;
    text-align: center;
    transition: all var(--transition);
}

.cao-pay-card:hover {
    border-color: var(--gold-primary);
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.3);
}

.card-flag { font-size: 3rem; margin-bottom: 1rem; }
.cao-pay-card h3 { font-size: 1.1rem; margin-bottom: 1.5rem; }

.cao-code {
    background: rgba(201, 162, 39, 0.15);
    border-radius: 8px;
    padding: 1rem;
    margin-bottom: 1.5rem;
}

.code-label {
    display: block;
    font-size: 0.7rem;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 0.5rem;
}

.cao-code code {
    font-family: 'Courier New', monospace;
    font-size: 0.85rem;
    color: var(--gold-primary);
    font-weight: 600;
    letter-spacing: 0.5px;
}

.card-details { text-align: left; }

.detail-row {
    display: flex;
    justify-content: space-between;
    padding: 0.5rem 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    font-size: 0.8rem;
}

.detail-row:last-child { border-bottom: none; }
.detail-row span:first-child { color: var(--text-muted); }
.detail-row span:last-child { color: var(--text-primary); font-family: monospace; }

/* CAO Explanation */
.cao-explanation .lead {
    font-size: 1.2rem;
    margin-bottom: 1.5rem;
    color: var(--text-primary);
}

.cao-explanation > .explanation-content > p {
    color: var(--text-secondary);
    margin-bottom: 1.5rem;
    line-height: 1.7;
}

.advantages-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
    margin-top: 2rem;
}

.advantage-card {
    background: rgba(201, 162, 39, 0.05);
    border: 1px solid rgba(201, 162, 39, 0.2);
    border-radius: 12px;
    padding: 1.5rem;
    text-align: center;
}

.adv-icon {
    width: 50px;
    height: 50px;
    background: rgba(40, 167, 69, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
}

.adv-icon svg { width: 24px; height: 24px; stroke: var(--success); }
.advantage-card h4 { font-size: 1rem; margin-bottom: 0.5rem; }
.advantage-card p { font-size: 0.85rem; color: var(--text-muted); margin: 0; line-height: 1.5; }

/* Coverage Regions */
.compliance-intro {
    max-width: 800px;
    margin: 0 auto 3rem;
    text-align: center;
}

.compliance-intro .lead { font-size: 1.15rem; margin-bottom: 1rem; }
.compliance-intro p { color: var(--text-secondary); }

.coverage-map {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
}

.coverage-region {
    background: rgba(201, 162, 39, 0.05);
    border: 1px solid rgba(201, 162, 39, 0.2);
    border-radius: 12px;
    padding: 1.5rem;
}

.coverage-region h4 { font-size: 1rem; margin-bottom: 0.75rem; }
.coverage-region p { font-size: 0.85rem; color: var(--text-muted); margin: 0; line-height: 1.6; }

/* Partner Benefits */
.partner-benefits { }

.benefit-section {
    background: linear-gradient(135deg, var(--navy-mid), var(--navy-deep));
    border: 1px solid rgba(201, 162, 39, 0.2);
    border-radius: 16px;
    padding: 2rem;
    margin-bottom: 2rem;
}

.benefit-section.featured {
    background: linear-gradient(135deg, rgba(201, 162, 39, 0.15), rgba(201, 162, 39, 0.05));
    border-color: var(--gold-primary);
}

.benefit-section h3 {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-size: 1.25rem;
    margin-bottom: 1.5rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid rgba(201, 162, 39, 0.2);
}

.benefit-section h3 svg { width: 28px; height: 28px; stroke: var(--gold-primary); }

.benefit-list { }

.benefit-item {
    display: flex;
    gap: 1rem;
    padding: 1rem 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.benefit-item:last-child { border-bottom: none; }

.benefit-icon {
    width: 30px;
    height: 30px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    font-size: 1rem;
}

.benefit-icon.check {
    background: rgba(40, 167, 69, 0.2);
    color: var(--success);
}

.benefit-text h5 { font-size: 1rem; margin-bottom: 0.35rem; }
.benefit-text p { font-size: 0.9rem; color: var(--text-muted); margin: 0; line-height: 1.6; }

/* Commission Section */
.commission-intro {
    max-width: 700px;
    margin: 0 auto 2.5rem;
    text-align: center;
}

.commission-intro .lead { font-size: 1.1rem; margin-bottom: 1rem; }

.commission-comparison {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    margin-bottom: 2rem;
}

.comparison-card {
    border-radius: 12px;
    padding: 2rem;
}

.comparison-card.problem {
    background: rgba(220, 53, 69, 0.1);
    border: 1px solid rgba(220, 53, 69, 0.3);
}

.comparison-card.solution {
    background: rgba(40, 167, 69, 0.1);
    border: 1px solid rgba(40, 167, 69, 0.3);
}

.comparison-card h4 { margin-bottom: 1.5rem; }
.comparison-card.problem h4 { color: var(--error); }
.comparison-card.solution h4 { color: var(--success); }

.comparison-card ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.comparison-card li {
    padding: 0.5rem 0 0.5rem 1.5rem;
    position: relative;
    color: var(--text-secondary);
    font-size: 0.9rem;
}

.comparison-card.problem li::before {
    content: '×';
    position: absolute;
    left: 0;
    color: var(--error);
    font-weight: bold;
}

.comparison-card.solution li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--success);
    font-weight: bold;
}

.commission-note {
    background: rgba(23, 162, 184, 0.1);
    border: 1px solid rgba(23, 162, 184, 0.3);
    border-radius: 8px;
    padding: 1.5rem;
    display: flex;
    align-items: flex-start;
    gap: 1rem;
}

.commission-note svg { width: 24px; height: 24px; stroke: var(--info); flex-shrink: 0; }
.commission-note p { font-size: 0.9rem; color: var(--text-secondary); margin: 0; }

/* Payment Table */
.credentials-summary-table { overflow-x: auto; margin-bottom: 2rem; }

.payment-table {
    width: 100%;
    border-collapse: collapse;
    background: rgba(201, 162, 39, 0.03);
    border-radius: 8px;
    overflow: hidden;
}

.payment-table th,
.payment-table td {
    padding: 1rem 1.25rem;
    text-align: left;
    border-bottom: 1px solid rgba(201, 162, 39, 0.1);
}

.payment-table th {
    background: rgba(201, 162, 39, 0.15);
    color: var(--gold-primary);
    font-size: 0.75rem;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.payment-table td { font-size: 0.85rem; color: var(--text-secondary); }
.payment-table .mono { font-family: 'Courier New', monospace; }
.payment-table .highlight { color: var(--gold-primary); font-weight: 600; }
.payment-table .flag { margin-right: 0.5rem; }
.payment-table tr:hover td { background: rgba(201, 162, 39, 0.05); }

.verify-links { text-align: center; }
.verify-links p { color: var(--text-muted); margin-bottom: 1rem; }

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

/* CTA Section */
.section-cta {
    background: linear-gradient(135deg, rgba(201, 162, 39, 0.2), rgba(201, 162, 39, 0.05));
}

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

.cta-content h2 { margin-bottom: 1rem; }
.cta-content p { color: var(--text-secondary); margin-bottom: 2rem; font-size: 1.1rem; }

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

/* Payments Responsive */
@media (max-width: 1200px) {
    .cao-pay-grid { grid-template-columns: repeat(2, 1fr); }
    .advantages-grid { grid-template-columns: repeat(2, 1fr); }
    .coverage-map { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
    .differentiator-banner { flex-direction: column; text-align: center; padding: 2rem; }
    .diff-icon { margin: 0 auto; }
    .cao-pay-grid { grid-template-columns: 1fr; }
    .advantages-grid { grid-template-columns: 1fr; }
    .coverage-map { grid-template-columns: 1fr; }
    .commission-comparison { grid-template-columns: 1fr; }
    .cta-buttons { flex-direction: column; align-items: center; }
}

/* ============================================
   LOGOUT PAGE
   ============================================ */
.logout-section {
    min-height: 60vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 4rem 2rem;
}

.logout-card {
    background: linear-gradient(135deg, var(--navy-mid), var(--navy-deep));
    border: 1px solid rgba(201, 162, 39, 0.3);
    border-radius: 20px;
    padding: 3rem;
    text-align: center;
    max-width: 500px;
    width: 100%;
}

.logout-icon {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
}

.logout-icon.success {
    background: rgba(40, 167, 69, 0.2);
    border: 2px solid var(--success);
}

.logout-icon svg { width: 40px; height: 40px; stroke: var(--success); }

.logout-card h1 { font-size: 1.75rem; margin-bottom: 1rem; }

.logout-message {
    color: var(--text-secondary);
    margin-bottom: 2rem;
    line-height: 1.6;
}

.logout-info {
    display: flex;
    justify-content: center;
    gap: 2rem;
    margin-bottom: 2rem;
    padding: 1.5rem;
    background: rgba(201, 162, 39, 0.05);
    border-radius: 12px;
}

.logout-info .info-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.85rem;
    color: var(--text-muted);
}

.logout-info svg { width: 18px; height: 18px; stroke: var(--gold-primary); }

.logout-actions {
    display: flex;
    gap: 1rem;
    justify-content: center;
    margin-bottom: 1.5rem;
}

.logout-actions .btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

.logout-actions svg { width: 18px; height: 18px; }

.logout-note {
    font-size: 0.85rem;
    color: var(--text-muted);
}

.logout-note a { color: var(--gold-primary); }

/* ============================================
   PROFILE MANAGEMENT PAGE
   ============================================ */
.admin-actions {
    display: flex;
    gap: 0.75rem;
}

.profile-preview-box {
    background: linear-gradient(135deg, rgba(40, 167, 69, 0.15), rgba(40, 167, 69, 0.05));
    border: 1px solid rgba(40, 167, 69, 0.3);
    border-radius: 12px;
    padding: 1.5rem;
    margin-bottom: 2rem;
}

.profile-preview-box h4 {
    color: var(--success);
    margin-bottom: 0.5rem;
}

.profile-preview-box > p {
    font-size: 0.9rem;
    color: var(--text-secondary);
    margin-bottom: 1rem;
}

.url-box {
    display: flex;
    align-items: center;
    gap: 1rem;
    background: var(--navy-deep);
    padding: 1rem;
    border-radius: 8px;
    margin-bottom: 0.75rem;
}

.url-box code {
    flex: 1;
    font-family: 'Courier New', monospace;
    font-size: 0.85rem;
    color: var(--gold-primary);
    word-break: break-all;
}

.url-note {
    font-size: 0.8rem;
    color: var(--text-muted);
}

.url-note a { color: var(--gold-primary); }

.profile-form { }

.form-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    margin-bottom: 2rem;
}

.form-section {
    background: linear-gradient(135deg, var(--navy-mid), var(--navy-deep));
    border: 1px solid rgba(201, 162, 39, 0.2);
    border-radius: 12px;
    padding: 2rem;
}

.form-section h3 {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 1.5rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid rgba(201, 162, 39, 0.2);
}

.form-section h3 svg { width: 24px; height: 24px; stroke: var(--gold-primary); }

.section-intro {
    font-size: 0.9rem;
    color: var(--text-muted);
    margin-bottom: 1.5rem;
}

.form-textarea {
    width: 100%;
    padding: 0.875rem 1rem;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(201, 162, 39, 0.3);
    border-radius: 8px;
    color: var(--text-primary);
    font-family: inherit;
    font-size: 0.95rem;
    resize: vertical;
    transition: all var(--transition);
}

.form-textarea:focus {
    outline: none;
    border-color: var(--gold-primary);
    box-shadow: 0 0 0 3px rgba(201, 162, 39, 0.15);
}

/* Upload Groups */
.upload-group {
    margin-bottom: 1.5rem;
    padding-bottom: 1.5rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.upload-group:last-of-type { border-bottom: none; }

.upload-label {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 0.75rem;
}

.upload-title {
    font-weight: 500;
    color: var(--text-primary);
}

.upload-status {
    font-size: 0.8rem;
    padding: 0.25rem 0.75rem;
    border-radius: 20px;
}

.upload-status.uploaded {
    background: rgba(40, 167, 69, 0.2);
    color: var(--success);
}

.upload-status.pending {
    background: rgba(255, 193, 7, 0.2);
    color: #ffc107;
}

.upload-area {
    position: relative;
}

.upload-area input[type="file"] {
    position: absolute;
    left: -9999px;
    opacity: 0;
}

.upload-button {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem 1.5rem;
    background: rgba(201, 162, 39, 0.1);
    border: 1px dashed rgba(201, 162, 39, 0.5);
    border-radius: 8px;
    color: var(--gold-primary);
    cursor: pointer;
    transition: all var(--transition);
}

.upload-button:hover {
    background: rgba(201, 162, 39, 0.2);
    border-color: var(--gold-primary);
}

.upload-button svg { width: 18px; height: 18px; }

.current-file {
    display: block;
    margin-top: 0.5rem;
    font-size: 0.8rem;
    color: var(--success);
}

.last-updated {
    margin-top: 1.5rem;
    padding-top: 1rem;
    border-top: 1px solid rgba(201, 162, 39, 0.1);
    font-size: 0.8rem;
    color: var(--text-muted);
}

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

.form-actions .btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

.form-actions svg { width: 20px; height: 20px; }

/* Responsive */
@media (max-width: 992px) {
    .form-grid { grid-template-columns: 1fr; }
}

@media (max-width: 768px) {
    .logout-info { flex-direction: column; gap: 1rem; }
    .logout-actions { flex-direction: column; }
    .admin-header { flex-direction: column; gap: 1rem; text-align: center; }
    .admin-actions { justify-content: center; }
    .url-box { flex-direction: column; text-align: center; }
}

/* ============================================
   ADMIN PREVIEW MODE
   ============================================ */
.secure-access-banner.admin-preview {
    background: linear-gradient(90deg, rgba(23, 162, 184, 0.2), rgba(23, 162, 184, 0.1));
    border-bottom-color: var(--info);
}

.secure-access-banner.admin-preview .access-status {
    color: var(--info);
}

.admin-preview-notice {
    background: rgba(255, 193, 7, 0.15);
    border-bottom: 1px solid rgba(255, 193, 7, 0.3);
    padding: 0.75rem 2rem;
}

.admin-preview-notice .container {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-size: 0.9rem;
    color: #ffc107;
}

.admin-preview-notice svg {
    width: 20px;
    height: 20px;
    flex-shrink: 0;
}

.admin-preview-notice a {
    color: var(--gold-primary);
    font-weight: 500;
}

/* Preview button in admin */
.preview-profile-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    margin-top: 1rem;
}

.preview-profile-btn svg {
    width: 18px;
    height: 18px;
}

/* ============================================

/* ============================================
   SECURE DOCUMENT MODAL (scoped styles)
   ============================================ */
.secure-doc-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 10000;
    display: none;
    align-items: center;
    justify-content: center;
}

.secure-doc-modal.active {
    display: flex;
}

.secure-doc-modal .sdm-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.95);
    cursor: pointer;
}

.secure-doc-modal .sdm-container {
    position: relative;
    width: 90%;
    max-width: 900px;
    max-height: 90vh;
    background: linear-gradient(135deg, var(--navy-deep), var(--navy-mid));
    border: 2px solid var(--gold-primary);
    border-radius: 16px;
    display: flex;
    flex-direction: column;
    overflow: hidden;
    box-shadow: 0 25px 80px rgba(0, 0, 0, 0.5);
    z-index: 10001;
}

.secure-doc-modal .sdm-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1rem 1.5rem;
    background: linear-gradient(135deg, rgba(201, 162, 39, 0.2), rgba(201, 162, 39, 0.1));
    border-bottom: 1px solid rgba(201, 162, 39, 0.3);
}

.secure-doc-modal .sdm-branding {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.secure-doc-modal .sdm-logo {
    width: 36px;
    height: 36px;
    background: linear-gradient(135deg, var(--gold-primary), var(--gold-dark));
    border-radius: 6px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 0.9rem;
    color: var(--navy-deep);
}

.secure-doc-modal .sdm-branding span {
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: 0.9rem;
    color: var(--gold-primary);
    letter-spacing: 1px;
}

.secure-doc-modal .sdm-header h3 {
    font-size: 1.1rem;
    margin: 0;
    color: var(--text-primary);
}

.secure-doc-modal .sdm-close {
    width: 40px;
    height: 40px;
    background: rgba(220, 53, 69, 0.2);
    border: 1px solid rgba(220, 53, 69, 0.4);
    border-radius: 8px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all var(--transition);
}

.secure-doc-modal .sdm-close:hover {
    background: rgba(220, 53, 69, 0.4);
    border-color: var(--error);
}

.secure-doc-modal .sdm-close svg {
    width: 20px;
    height: 20px;
    stroke: var(--error);
}

.secure-doc-modal .sdm-body {
    flex: 1;
    position: relative;
    overflow: hidden;
    min-height: 400px;
    max-height: 60vh;
    background: #0a0a12;
    display: flex;
    align-items: center;
    justify-content: center;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    -webkit-touch-callout: none;
}

.secure-doc-modal .doc-viewer {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    z-index: 1;
}

.secure-doc-modal .doc-loading {
    text-align: center;
    color: var(--text-muted);
}

.secure-doc-modal .spinner {
    width: 50px;
    height: 50px;
    border: 3px solid rgba(201, 162, 39, 0.2);
    border-top-color: var(--gold-primary);
    border-radius: 50%;
    animation: spin 1s linear infinite;
    margin: 0 auto 1rem;
}

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

.secure-doc-modal .secure-doc-image {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
    pointer-events: none;
    -webkit-user-drag: none;
    user-drag: none;
}

.secure-doc-modal .secure-doc-pdf {
    width: 100%;
    height: 100%;
    border: none;
    min-height: 500px;
}

.secure-doc-modal .pdf-notice {
    text-align: center;
    padding: 2rem;
    color: var(--text-muted);
    position: absolute;
    top: 1rem;
    left: 50%;
    transform: translateX(-50%);
    background: rgba(0, 0, 0, 0.8);
    border-radius: 8px;
    z-index: 5;
}

.secure-doc-modal .pdf-notice svg {
    width: 40px;
    height: 40px;
    stroke: var(--gold-primary);
    margin-bottom: 0.5rem;
}

.secure-doc-modal .watermark-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 10;
    overflow: hidden;
    opacity: 0.15;
}

.secure-doc-modal .watermark-text {
    position: absolute;
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--gold-primary);
    white-space: nowrap;
    transform: rotate(-30deg);
    letter-spacing: 3px;
}

.secure-doc-modal .watermark-text:nth-child(1) { top: 10%; left: 5%; }
.secure-doc-modal .watermark-text:nth-child(2) { top: 35%; left: 40%; }
.secure-doc-modal .watermark-text:nth-child(3) { top: 60%; left: 10%; }
.secure-doc-modal .watermark-text:nth-child(4) { top: 80%; left: 50%; }

.secure-doc-modal .sdm-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1rem 1.5rem;
    background: rgba(0, 0, 0, 0.3);
    border-top: 1px solid rgba(201, 162, 39, 0.2);
}

.secure-doc-modal .sdm-security-notice {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    color: var(--text-muted);
    font-size: 0.85rem;
}

.secure-doc-modal .sdm-security-notice svg {
    width: 20px;
    height: 20px;
    stroke: var(--gold-primary);
    flex-shrink: 0;
}

/* Docs security note on page */
.docs-security-note {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1rem 1.5rem;
    background: rgba(40, 167, 69, 0.1);
    border: 1px solid rgba(40, 167, 69, 0.3);
    border-radius: 8px;
    margin-bottom: 1.5rem;
    font-size: 0.9rem;
    color: var(--success);
}

.docs-security-note svg {
    width: 20px;
    height: 20px;
    flex-shrink: 0;
}

/* Admin Preview Mode */
.secure-access-banner.admin-preview {
    background: linear-gradient(90deg, rgba(23, 162, 184, 0.2), rgba(23, 162, 184, 0.1));
    border-bottom-color: var(--info);
}

.secure-access-banner.admin-preview .access-status {
    color: var(--info);
}

.admin-preview-notice {
    background: rgba(255, 193, 7, 0.15);
    border-bottom: 1px solid rgba(255, 193, 7, 0.3);
    padding: 0.75rem 2rem;
}

.admin-preview-notice .container {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-size: 0.9rem;
    color: #ffc107;
}

.admin-preview-notice svg {
    width: 20px;
    height: 20px;
    flex-shrink: 0;
}

.admin-preview-notice a {
    color: var(--gold-primary);
    font-weight: 500;
}

/* Responsive secure modal */
@media (max-width: 768px) {
    .secure-doc-modal .sdm-container {
        width: 95%;
        max-height: 95vh;
    }
    
    .secure-doc-modal .sdm-header {
        flex-wrap: wrap;
        gap: 0.5rem;
    }
    
    .secure-doc-modal .sdm-header h3 {
        order: 3;
        width: 100%;
        text-align: center;
        font-size: 1rem;
        margin-top: 0.5rem;
    }
    
    .secure-doc-modal .sdm-footer {
        flex-direction: column;
        gap: 1rem;
        text-align: center;
    }
    
    .secure-doc-modal .watermark-text {
        font-size: 1rem;
    }
}

/* Print protection */
@media print {
    .secure-doc-modal {
        display: none !important;
    }
}
/* Alert Success */
.alert-success {
    background: rgba(40, 167, 69, 0.15);
    border: 1px solid rgba(40, 167, 69, 0.4);
    color: var(--success);
}

.alert-success svg {
    stroke: var(--success);
}

/* ============================================
   EURABELT FUELS - COMPLETE MOBILE OVERHAUL
   ============================================
   Professional mobile-first responsive design
   Optimized for readability and touch interaction
   ============================================ */

/* ============================================
   MOBILE BASE RESETS (max-width: 768px)
   ============================================ */
@media (max-width: 768px) {
    
    /* Base Typography - Smaller, more readable */
    html {
        font-size: 14px;
    }
    
    body {
        line-height: 1.5;
    }
    
    /* Headings - Significantly reduced for mobile */
    h1 {
        font-size: 1.75rem !important;
        line-height: 1.2;
        margin-bottom: 0.75rem;
    }
    
    h2 {
        font-size: 1.5rem !important;
        margin-bottom: 0.75rem;
    }
    
    h3 {
        font-size: 1.25rem !important;
        margin-bottom: 0.5rem;
    }
    
    h4 {
        font-size: 1.1rem !important;
    }
    
    p {
        font-size: 0.9rem;
        margin-bottom: 0.75rem;
    }
    
    /* Container - Less padding */
    .container {
        padding: 0 1rem;
    }
    
    /* Eyebrow text */
    .eyebrow {
        font-size: 0.6rem;
        letter-spacing: 2px;
        margin-bottom: 0.5rem;
    }
    
    /* Divider */
    .divider {
        width: 40px;
        margin: 1rem 0;
    }
    
    /* ============================================
       HEADER & NAVIGATION
       ============================================ */
    .header {
        padding: 0.75rem 1rem;
        background: rgba(10, 22, 40, 0.98) !important;
    }
    
    .logo-icon {
        width: 38px;
        height: 38px;
        font-size: 1rem;
        border-radius: 6px;
    }
    
    .logo-text {
        font-size: 1rem;
        letter-spacing: 0.5px;
    }
    
    .logo-text span {
        display: block;
        font-size: 0.7rem;
        letter-spacing: 1px;
    }
    
    /* Mobile Navigation Toggle */
    .nav-toggle {
        display: flex !important;
        flex-direction: column;
        justify-content: center;
        gap: 5px;
        width: 36px;
        height: 36px;
        background: transparent;
        border: 1px solid var(--gold-primary);
        border-radius: 6px;
        cursor: pointer;
        padding: 8px;
    }
    
    .nav-toggle span {
        display: block;
        width: 100%;
        height: 2px;
        background: var(--gold-primary);
        transition: all 0.3s ease;
    }
    
    /* Mobile Navigation Menu */
    .main-nav {
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100vh;
        background: var(--navy-deep);
        transform: translateX(-100%);
        transition: transform 0.3s ease;
        z-index: 98;
        display: flex;
        flex-direction: column;
        justify-content: center;
        padding: 2rem;
    }
    
    .main-nav.active {
        transform: translateX(0);
    }
    
    .nav-links {
        flex-direction: column;
        align-items: center;
        gap: 0;
    }
    
    .nav-links li {
        width: 100%;
        text-align: center;
        border-bottom: 1px solid rgba(201, 162, 39, 0.1);
    }
    
    .nav-links a {
        display: block;
        padding: 1rem;
        font-size: 1.1rem;
        color: var(--text-primary);
    }
    
    .nav-links a:hover,
    .nav-links a.active {
        background: rgba(201, 162, 39, 0.1);
        color: var(--gold-primary);
    }
    
    /* ============================================
       HERO SECTION
       ============================================ */
    .hero {
        min-height: 80vh;
        padding: 100px 1rem 60px;
        text-align: center;
    }
    
    .hero-prelude {
        font-size: 0.6rem;
        letter-spacing: 2px;
        margin-bottom: 1rem;
    }
    
    .hero-title {
        font-size: 2rem !important;
        margin-bottom: 1rem;
    }
    
    .hero-title span {
        font-size: 1.1rem;
        display: block;
        margin-top: 0.5rem;
    }
    
    .hero-subtitle {
        font-size: 0.9rem;
        padding: 0 0.5rem;
        margin-bottom: 1.5rem;
    }
    
    .hero-divider {
        width: 60px;
        margin: 1.5rem auto;
    }
    
    .hero-credentials {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem;
        padding: 0;
    }
    
    .hero-credential {
        padding: 0.75rem;
    }
    
    .hero-credential-value {
        font-size: 1.75rem;
    }
    
    .hero-credential-label {
        font-size: 0.6rem;
        letter-spacing: 1px;
    }
    
    .scroll-indicator {
        display: none;
    }
    
    /* ============================================
       SECTIONS
       ============================================ */
    .section {
        padding: 3rem 1rem;
    }
    
    .section-header {
        margin-bottom: 2rem;
    }
    
    .section-title {
        font-size: 1.5rem !important;
    }
    
    .section-intro {
        font-size: 0.9rem;
        padding: 0;
    }
    
    /* ============================================
       PAGE HEADER
       ============================================ */
    .page-header {
        padding: 100px 1rem 50px;
    }
    
    .page-header h1 {
        font-size: 1.75rem !important;
    }
    
    .page-header p {
        font-size: 0.9rem;
        padding: 0 0.5rem;
    }
    
    /* ============================================
       FLOATING NAV DOTS
       ============================================ */
    .floating-nav {
        right: 10px;
        gap: 8px;
    }
    
    .nav-dot {
        width: 8px;
        height: 8px;
    }
    
    .nav-dot::before {
        display: none;
    }
    
    /* ============================================
       CHAIRMAN SECTION
       ============================================ */
    .chairman-container {
        grid-template-columns: 1fr;
        gap: 2rem;
        text-align: center;
    }
    
    .chairman-photo {
        justify-content: center;
    }
    
    .chairman-photo-frame {
        width: 180px;
        height: 180px;
    }
    
    .chairman-role {
        font-size: 0.65rem;
    }
    
    .chairman-name {
        font-size: 1.5rem !important;
    }
    
    .chairman-title {
        font-size: 0.9rem;
    }
    
    .chairman-bio {
        font-size: 0.85rem;
        text-align: left;
    }
    
    .chairman-credentials {
        justify-content: center;
        flex-wrap: wrap;
        gap: 0.5rem;
    }
    
    .chairman-credential {
        font-size: 0.65rem;
        padding: 0.35rem 0.75rem;
    }
    
    .chairman-contact {
        justify-content: center;
    }
    
    .chairman-contact a {
        font-size: 0.85rem;
    }
    
    .chairman-sanctions {
        justify-content: center;
    }
    
    /* ============================================
       TEAM GRID
       ============================================ */
    .team-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .team-card {
        padding: 1.5rem;
    }
    
    .team-card-photo {
        width: 70px;
        height: 70px;
    }
    
    .team-card-photo svg {
        width: 35px;
        height: 35px;
    }
    
    .team-card-region {
        font-size: 0.6rem;
    }
    
    .team-card-name {
        font-size: 1.1rem !important;
    }
    
    .team-card-title {
        font-size: 0.8rem;
    }
    
    .team-card-products {
        font-size: 0.75rem;
    }
    
    .team-card-sanctions {
        font-size: 0.7rem;
    }
    
    .team-card-cta {
        font-size: 0.75rem;
        padding-top: 0.75rem;
    }
    
    .team-notice {
        padding: 1rem;
        font-size: 0.8rem;
    }
    
    /* ============================================
       REGIONS GRID
       ============================================ */
    .regions-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .region-card {
        padding: 1.5rem;
    }
    
    .region-flag {
        font-size: 2.5rem;
    }
    
    .region-name {
        font-size: 1.1rem !important;
    }
    
    .region-coverage {
        font-size: 0.7rem;
    }
    
    .region-details {
        font-size: 0.85rem;
    }
    
    .region-code {
        font-size: 0.7rem;
    }
    
    /* ============================================
       CREDENTIALS
       ============================================ */
    .credentials-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .credential-card {
        padding: 1.5rem;
    }
    
    .credential-card h3 {
        font-size: 1.1rem !important;
    }
    
    .credential-card p {
        font-size: 0.85rem;
    }
    
    .credential-codes {
        gap: 0.5rem;
    }
    
    .code-item {
        font-size: 0.75rem;
        padding: 0.35rem 0.75rem;
    }
    
    .credential-verify {
        font-size: 0.75rem;
    }
    
    .credentials-intro p {
        font-size: 0.9rem;
    }
    
    /* Credentials page specific */
    .credentials-grid-4 {
        grid-template-columns: 1fr !important;
    }
    
    .credential-verify-multi {
        flex-direction: column;
        gap: 0.5rem;
    }
    
    .credentials-table {
        font-size: 0.7rem;
    }
    
    .credentials-table th,
    .credentials-table td {
        padding: 0.5rem;
    }
    
    /* ============================================
       PRODUCTS
       ============================================ */
    .products-hero {
        padding: 100px 1rem 50px;
    }
    
    .products-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .product-card {
        padding: 1.25rem;
    }
    
    .product-card-icon {
        width: 50px;
        height: 50px;
    }
    
    .product-card h3 {
        font-size: 1rem !important;
    }
    
    .product-card p {
        font-size: 0.8rem;
    }
    
    .product-category {
        font-size: 0.6rem;
    }
    
    /* Product detail page */
    .product-detail-grid {
        grid-template-columns: 1fr;
    }
    
    .product-specs-table {
        font-size: 0.8rem;
    }
    
    .product-specs-table th,
    .product-specs-table td {
        padding: 0.75rem;
    }
    
    /* ============================================
       BUTTONS
       ============================================ */
    .btn {
        padding: 0.75rem 1.25rem;
        font-size: 0.85rem;
        width: 100%;
        justify-content: center;
    }
    
    .btn-lg {
        padding: 0.875rem 1.5rem;
        font-size: 0.9rem;
    }
    
    .btn-sm {
        padding: 0.5rem 1rem;
        font-size: 0.75rem;
    }
    
    .btn svg {
        width: 16px;
        height: 16px;
    }
    
    /* ============================================
       FORMS
       ============================================ */
    .form-grid {
        grid-template-columns: 1fr !important;
        gap: 1rem;
    }
    
    .form-group {
        margin-bottom: 1rem;
    }
    
    .form-label {
        font-size: 0.8rem;
        margin-bottom: 0.35rem;
    }
    
    .form-input,
    .form-select,
    .form-textarea {
        padding: 0.875rem 1rem;
        font-size: 16px; /* Prevents zoom on iOS */
        border-radius: 6px;
    }
    
    .form-hint {
        font-size: 0.7rem;
    }
    
    .form-checkbox label {
        font-size: 0.8rem;
    }
    
    /* Contact form specific */
    .contact-grid {
        grid-template-columns: 1fr !important;
    }
    
    .contact-info-card {
        padding: 1.25rem;
    }
    
    .contact-info-card h3 {
        font-size: 1rem !important;
    }
    
    .inquiry-type-toggle {
        flex-direction: column;
        gap: 0.5rem;
    }
    
    .type-btn {
        padding: 0.75rem;
        font-size: 0.85rem;
    }
    
    /* ============================================
       MODALS
       ============================================ */
    .modal-overlay {
        padding: 1rem;
    }
    
    .modal-close {
        top: 15px;
        right: 15px;
        width: 40px;
        height: 40px;
    }
    
    .modal-content {
        max-height: 85vh;
        overflow-y: auto;
    }
    
    .profile-modal {
        padding: 1.25rem;
    }
    
    .profile-modal .profile-header {
        text-align: center;
    }
    
    .profile-modal .profile-photo {
        width: 80px;
        height: 80px;
        margin: 0 auto 1rem;
    }
    
    .profile-modal h2 {
        font-size: 1.25rem !important;
    }
    
    .profile-modal .profile-title {
        font-size: 0.85rem;
    }
    
    .profile-modal .profile-section {
        margin-bottom: 1.25rem;
    }
    
    .profile-modal .profile-section h3 {
        font-size: 0.9rem !important;
        margin-bottom: 0.5rem;
    }
    
    .profile-modal .profile-section p {
        font-size: 0.85rem;
    }
    
    .profile-modal .responsibilities-list {
        font-size: 0.8rem;
    }
    
    .profile-modal .credential-tag {
        font-size: 0.65rem;
        padding: 0.25rem 0.5rem;
    }
    
    .profile-modal .contact-email {
        font-size: 0.85rem;
    }
    
    .profile-modal .sanctions-verified {
        font-size: 0.8rem;
    }
    
    /* ============================================
       SECURE PROFILE PAGE
       ============================================ */
    .secure-access-banner {
        padding: 0.75rem 1rem;
    }
    
    .secure-access-banner .container {
        flex-direction: column;
        gap: 0.75rem;
        text-align: center;
    }
    
    .access-info {
        flex-direction: column;
        gap: 0.5rem;
    }
    
    .access-status {
        font-size: 0.8rem;
    }
    
    .access-details {
        flex-direction: column;
        gap: 0.25rem;
        font-size: 0.75rem;
    }
    
    .access-details .separator {
        display: none;
    }
    
    .time-remaining {
        margin-top: 0.25rem;
    }
    
    .admin-preview-notice .container {
        flex-direction: column;
        text-align: center;
        font-size: 0.8rem;
    }
    
    .confidential-notice {
        flex-direction: column;
        text-align: center;
        padding: 1rem;
        gap: 0.75rem;
    }
    
    .confidential-notice svg {
        width: 40px;
        height: 40px;
    }
    
    .confidential-notice h4 {
        font-size: 1rem;
    }
    
    .confidential-notice p {
        font-size: 0.8rem;
    }
    
    .profile-layout {
        grid-template-columns: 1fr !important;
        gap: 1.5rem;
    }
    
    .profile-section {
        padding: 1.25rem;
    }
    
    .profile-section h2 {
        font-size: 1.1rem !important;
        gap: 0.5rem;
    }
    
    .profile-section h2 svg {
        width: 20px;
        height: 20px;
    }
    
    .info-grid {
        grid-template-columns: 1fr !important;
        gap: 0.75rem;
    }
    
    .info-item label {
        font-size: 0.65rem;
    }
    
    .info-item span {
        font-size: 0.85rem;
    }
    
    .documents-grid {
        grid-template-columns: 1fr !important;
        gap: 1rem;
    }
    
    .document-card {
        padding: 1.25rem;
    }
    
    .document-card h4 {
        font-size: 1rem;
    }
    
    .doc-status {
        font-size: 0.7rem;
    }
    
    .docs-security-note {
        flex-direction: column;
        text-align: center;
        font-size: 0.8rem;
        padding: 1rem;
    }
    
    .profile-sidebar {
        position: relative !important;
        top: auto !important;
    }
    
    .sidebar-card {
        padding: 1.25rem;
    }
    
    .sidebar-card h4 {
        font-size: 1rem;
    }
    
    .status-badge {
        font-size: 0.8rem;
    }
    
    .access-log .log-item {
        font-size: 0.8rem;
    }
    
    .legal-disclaimer {
        padding: 1.25rem;
    }
    
    .legal-disclaimer h4 {
        font-size: 1rem;
    }
    
    .legal-disclaimer p,
    .legal-disclaimer li {
        font-size: 0.8rem;
    }
    
    /* Secure Document Modal */
    .secure-doc-modal .sdm-container {
        width: 98%;
        max-height: 95vh;
        border-radius: 12px;
    }
    
    .secure-doc-modal .sdm-header {
        padding: 0.75rem 1rem;
        flex-wrap: wrap;
    }
    
    .secure-doc-modal .sdm-branding span {
        display: none;
    }
    
    .secure-doc-modal .sdm-logo {
        width: 32px;
        height: 32px;
        font-size: 0.8rem;
    }
    
    .secure-doc-modal .sdm-header h3 {
        font-size: 0.9rem;
        flex: 1;
        text-align: center;
    }
    
    .secure-doc-modal .sdm-close {
        width: 36px;
        height: 36px;
    }
    
    .secure-doc-modal .sdm-body {
        min-height: 300px;
        max-height: 50vh;
    }
    
    .secure-doc-modal .watermark-text {
        font-size: 0.9rem;
    }
    
    .secure-doc-modal .sdm-footer {
        flex-direction: column;
        gap: 0.75rem;
        padding: 0.75rem 1rem;
    }
    
    .secure-doc-modal .sdm-security-notice {
        font-size: 0.7rem;
        text-align: center;
    }
    
    /* ============================================
       ADMIN PAGES
       ============================================ */
    .admin-login-container {
        padding: 1rem;
    }
    
    .admin-login-card {
        padding: 1.5rem;
    }
    
    .admin-login-card h2 {
        font-size: 1.25rem !important;
    }
    
    .admin-header {
        flex-direction: column;
        gap: 0.75rem;
        text-align: center;
        padding: 1rem;
    }
    
    .admin-user {
        font-size: 0.85rem;
    }
    
    .admin-actions {
        flex-wrap: wrap;
        justify-content: center;
        gap: 0.5rem;
    }
    
    .admin-grid {
        grid-template-columns: 1fr !important;
        gap: 1.5rem;
    }
    
    .admin-card {
        padding: 1.25rem;
    }
    
    .admin-card h3 {
        font-size: 1.1rem !important;
    }
    
    .generated-code-display {
        padding: 1rem;
    }
    
    .code-box code {
        font-size: 1rem;
        word-break: break-all;
    }
    
    .codes-list .code-item {
        padding: 1rem;
    }
    
    .code-meta {
        flex-direction: column;
        gap: 0.25rem;
    }
    
    .profile-preview-box {
        padding: 1rem;
    }
    
    .url-box {
        flex-direction: column;
        gap: 0.75rem;
    }
    
    .url-box code {
        font-size: 0.7rem;
        word-break: break-all;
    }
    
    .upload-group {
        padding-bottom: 1rem;
        margin-bottom: 1rem;
    }
    
    .upload-label {
        flex-direction: column;
        gap: 0.5rem;
        align-items: flex-start;
    }
    
    .upload-button {
        width: 100%;
        justify-content: center;
    }
    
    /* ============================================
       VERIFY ACCESS PAGE
       ============================================ */
    .verify-container {
        grid-template-columns: 1fr !important;
        gap: 1.5rem;
    }
    
    .verify-info {
        padding: 1.5rem;
    }
    
    .verify-info h3 {
        font-size: 1.1rem !important;
    }
    
    .verify-info p {
        font-size: 0.85rem;
    }
    
    .verify-info ul li {
        font-size: 0.8rem;
    }
    
    .verify-form-container {
        padding: 1.5rem;
    }
    
    .verify-form-container h2 {
        font-size: 1.25rem !important;
    }
    
    .code-input {
        font-size: 1.1rem !important;
        letter-spacing: 2px;
        padding: 1rem;
    }
    
    .security-notice {
        grid-template-columns: 1fr 1fr !important;
        gap: 0.75rem;
    }
    
    .notice-item {
        padding: 1rem;
    }
    
    .notice-item h4 {
        font-size: 0.8rem;
    }
    
    .notice-item p {
        font-size: 0.7rem;
    }
    
    /* ============================================
       LOGOUT PAGE
       ============================================ */
    .logout-section {
        padding: 2rem 1rem;
    }
    
    .logout-card {
        padding: 1.5rem;
    }
    
    .logout-card h1 {
        font-size: 1.5rem !important;
    }
    
    .logout-message {
        font-size: 0.85rem;
    }
    
    .logout-info {
        flex-direction: column;
        gap: 0.75rem;
        padding: 1rem;
    }
    
    .logout-info .info-item {
        font-size: 0.75rem;
    }
    
    .logout-actions {
        flex-direction: column;
        gap: 0.75rem;
    }
    
    /* ============================================
       PAYMENTS PAGE
       ============================================ */
    .differentiator-banner {
        flex-direction: column;
        text-align: center;
        padding: 1.5rem;
        gap: 1.5rem;
    }
    
    .diff-icon {
        width: 60px;
        height: 60px;
        margin: 0 auto;
    }
    
    .diff-icon svg {
        width: 30px;
        height: 30px;
    }
    
    .diff-content h2 {
        font-size: 1.25rem !important;
    }
    
    .diff-content .lead {
        font-size: 0.95rem;
    }
    
    .cao-pay-grid {
        grid-template-columns: 1fr !important;
        gap: 1rem;
    }
    
    .cao-pay-card {
        padding: 1.5rem;
    }
    
    .card-flag {
        font-size: 2rem;
    }
    
    .cao-pay-card h3 {
        font-size: 1rem !important;
    }
    
    .cao-code code {
        font-size: 0.75rem;
    }
    
    .detail-row {
        font-size: 0.7rem;
    }
    
    .advantages-grid {
        grid-template-columns: 1fr !important;
        gap: 1rem;
    }
    
    .advantage-card {
        padding: 1.25rem;
    }
    
    .advantage-card h4 {
        font-size: 0.9rem;
    }
    
    .coverage-map {
        grid-template-columns: 1fr !important;
        gap: 1rem;
    }
    
    .coverage-region {
        padding: 1.25rem;
    }
    
    .coverage-region h4 {
        font-size: 0.9rem;
    }
    
    .partner-benefits .benefit-section {
        padding: 1.25rem;
    }
    
    .benefit-section h3 {
        font-size: 1.1rem !important;
    }
    
    .benefit-item {
        padding: 0.75rem 0;
    }
    
    .benefit-text h5 {
        font-size: 0.9rem;
    }
    
    .benefit-text p {
        font-size: 0.8rem;
    }
    
    .commission-comparison {
        grid-template-columns: 1fr !important;
        gap: 1rem;
    }
    
    .comparison-card {
        padding: 1.25rem;
    }
    
    .comparison-card h4 {
        font-size: 1rem;
    }
    
    .comparison-card li {
        font-size: 0.8rem;
    }
    
    .commission-note {
        flex-direction: column;
        text-align: center;
        gap: 0.75rem;
        padding: 1rem;
    }
    
    .payment-table {
        display: block;
        overflow-x: auto;
        white-space: nowrap;
        font-size: 0.7rem;
    }
    
    .payment-table th,
    .payment-table td {
        padding: 0.5rem 0.75rem;
    }
    
    .verify-buttons {
        flex-direction: column;
        gap: 0.5rem;
    }
    
    .cta-content h2 {
        font-size: 1.25rem !important;
    }
    
    .cta-content p {
        font-size: 0.9rem;
    }
    
    .cta-buttons {
        flex-direction: column;
        gap: 0.75rem;
    }
    
    /* ============================================
       PRIVACY & ABOUT PAGES
       ============================================ */
    .privacy-content,
    .about-content {
        padding: 0;
    }
    
    .privacy-section,
    .about-section {
        margin-bottom: 2rem;
    }
    
    .privacy-section h2,
    .about-section h2 {
        font-size: 1.25rem !important;
    }
    
    .privacy-section h3,
    .about-section h3 {
        font-size: 1rem !important;
    }
    
    .privacy-section p,
    .privacy-section li,
    .about-section p,
    .about-section li {
        font-size: 0.85rem;
    }
    
    /* ============================================
       CTA SECTION
       ============================================ */
    .section-cta {
        padding: 2.5rem 1rem;
    }
    
    .cta-content {
        text-align: center;
    }
    
    .cta-content h2 {
        font-size: 1.5rem !important;
    }
    
    .cta-content p {
        font-size: 0.9rem;
        margin-bottom: 1.5rem;
    }
    
    /* ============================================
       FOOTER
       ============================================ */
    .footer {
        padding: 3rem 1rem 2rem;
    }
    
    .footer-logo {
        font-size: 1.25rem;
    }
    
    .footer-tagline {
        font-size: 0.6rem;
        letter-spacing: 1.5px;
    }
    
    .footer-codes {
        flex-direction: column;
        gap: 0.5rem;
    }
    
    .footer-code {
        font-size: 0.6rem;
    }
    
    .footer-links {
        flex-direction: column;
        gap: 0.75rem;
    }
    
    .footer-links a {
        font-size: 0.85rem;
    }
    
    .footer-copyright {
        font-size: 0.7rem;
    }
    
    /* ============================================
       ALERTS
       ============================================ */
    .alert {
        padding: 1rem;
        font-size: 0.85rem;
        flex-direction: row;
        align-items: flex-start;
    }
    
    .alert svg {
        width: 20px;
        height: 20px;
        flex-shrink: 0;
    }
    
    /* ============================================
       TABLES - Make scrollable
       ============================================ */
    table {
        display: block;
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
    }
    
    /* ============================================
       FRAUD NOTICE
       ============================================ */
    .fraud-notice {
        padding: 1.5rem;
        text-align: center;
    }
    
    .fraud-notice .notice-icon {
        margin-bottom: 1rem;
    }
    
    .fraud-notice h3 {
        font-size: 1.1rem !important;
    }
    
    .fraud-notice p {
        font-size: 0.85rem;
    }
    
    /* ============================================
       VISION TIMELINE
       ============================================ */
    .vision-timeline {
        padding-left: 1rem;
    }
    
    .timeline-item {
        padding-left: 1.5rem;
        margin-bottom: 1.5rem;
    }
    
    .timeline-content h3 {
        font-size: 1rem !important;
    }
    
    .timeline-content p {
        font-size: 0.85rem;
    }
    
    /* ============================================
       TOUCH TARGETS
       ============================================ */
    /* Ensure all interactive elements are at least 44px */
    button,
    .btn,
    .nav-links a,
    .team-card,
    input[type="checkbox"] + label,
    input[type="radio"] + label {
        min-height: 44px;
    }
    
}

/* ============================================
   EXTRA SMALL DEVICES (max-width: 480px)
   ============================================ */
@media (max-width: 480px) {
    
    html {
        font-size: 13px;
    }
    
    .container {
        padding: 0 0.75rem;
    }
    
    h1 {
        font-size: 1.5rem !important;
    }
    
    h2 {
        font-size: 1.25rem !important;
    }
    
    .hero {
        padding: 90px 0.75rem 50px;
    }
    
    .hero-title {
        font-size: 1.75rem !important;
    }
    
    .hero-credentials {
        grid-template-columns: 1fr 1fr;
        gap: 0.75rem;
    }
    
    .hero-credential-value {
        font-size: 1.5rem;
    }
    
    .section {
        padding: 2rem 0.75rem;
    }
    
    .page-header {
        padding: 90px 0.75rem 40px;
    }
    
    .team-card {
        padding: 1.25rem;
    }
    
    .security-notice {
        grid-template-columns: 1fr !important;
    }
    
    .credential-card,
    .region-card {
        padding: 1.25rem;
    }
    
    .btn {
        padding: 0.75rem 1rem;
        font-size: 0.8rem;
    }
    
    .form-input,
    .form-select,
    .form-textarea {
        padding: 0.75rem;
    }
    
    .code-input {
        font-size: 0.95rem !important;
        letter-spacing: 1px;
    }
    
}

/* ============================================
   LANDSCAPE ORIENTATION FIXES
   ============================================ */
@media (max-height: 500px) and (orientation: landscape) {
    
    .hero {
        min-height: auto;
        padding: 80px 1rem 40px;
    }
    
    .hero-credentials {
        display: flex;
        flex-wrap: wrap;
        justify-content: center;
    }
    
    .main-nav {
        padding: 1rem;
        overflow-y: auto;
    }
    
    .nav-links a {
        padding: 0.75rem;
        font-size: 1rem;
    }
    
}
