/* ========================================
   ASTIN - Aspire to Inspire
   Light Blue & Dark Blue Premium Theme
   ======================================== */

/* CSS Custom Properties */
:root {
    /* Primary Colors - Dark Blue */
    --primary-dark: #0B1D3A;
    --primary-darker: #071428;
    --primary-deep: #0E2240;
    --primary-navy: #132D4F;
    --primary-medium: #1A3A5C;

    /* Accent Colors - Light Blue */
    --accent: #4DA8DA;
    --accent-light: #7EC8E3;
    --accent-bright: #50B4E6;
    --accent-dark: #2E86C1;
    --accent-muted: #3498DB;
    --accent-pale: #D6EAF8;
    --accent-glow: #85C1E9;

    /* Gradient Definitions */
    --gradient-accent: linear-gradient(135deg, #7EC8E3 0%, #4DA8DA 50%, #2E86C1 100%);
    --gradient-accent-shine: linear-gradient(135deg, #AED6F1 0%, #7EC8E3 25%, #4DA8DA 50%, #2E86C1 75%, #1A5276 100%);
    --gradient-dark: linear-gradient(180deg, #0B1D3A 0%, #071428 100%);
    --gradient-dark-radial: radial-gradient(ellipse at center, #1A3A5C 0%, #0B1D3A 70%);
    --gradient-hero: linear-gradient(135deg, #0B1D3A 0%, #132D4F 40%, #1A3A5C 100%);

    /* Text Colors */
    --text-light: #ffffff;
    --text-muted: rgba(255, 255, 255, 0.7);
    --text-subtle: rgba(255, 255, 255, 0.5);
    --text-dark: #0B1D3A;
    --text-body: #2C3E50;

    /* Surface Colors */
    --surface-dark: rgba(255, 255, 255, 0.05);
    --surface-darker: rgba(255, 255, 255, 0.03);
    --surface-light: rgba(255, 255, 255, 0.1);
    --surface-accent: rgba(77, 168, 218, 0.1);
    --surface-accent-hover: rgba(77, 168, 218, 0.15);
    --surface-white: #F8FBFE;
    --surface-blue-light: #EBF5FB;

    /* Border Colors */
    --border-subtle: rgba(255, 255, 255, 0.1);
    --border-medium: rgba(255, 255, 255, 0.2);
    --border-accent: rgba(77, 168, 218, 0.3);
    --border-accent-bright: rgba(77, 168, 218, 0.5);
    --border-light: #D4E6F1;

    /* Status Colors */
    --success: #10B981;
    --warning: #F59E0B;
    --error: #EF4444;
    --info: #3B82F6;

    /* Typography */
    --font-display: 'Playfair Display', Georgia, serif;
    --font-primary: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;

    /* Spacing */
    --spacing-xs: 0.25rem;
    --spacing-sm: 0.5rem;
    --spacing-md: 1rem;
    --spacing-lg: 1.5rem;
    --spacing-xl: 2rem;
    --spacing-2xl: 3rem;
    --spacing-3xl: 4rem;
    --spacing-4xl: 6rem;

    /* Border Radius */
    --radius-sm: 0.375rem;
    --radius-md: 0.5rem;
    --radius-lg: 0.75rem;
    --radius-xl: 1rem;
    --radius-2xl: 1.5rem;
    --radius-full: 9999px;

    /* Shadows */
    --shadow-accent: 0 4px 20px rgba(77, 168, 218, 0.3);
    --shadow-accent-lg: 0 8px 32px rgba(77, 168, 218, 0.4);
    --shadow-dark: 0 4px 20px rgba(0, 0, 0, 0.15);
    --shadow-card: 0 8px 32px rgba(0, 0, 0, 0.08);
    --shadow-soft: 0 2px 12px rgba(11, 29, 58, 0.08);

    /* Transitions */
    --transition-fast: 150ms ease;
    --transition-base: 250ms ease;
    --transition-slow: 400ms ease;

    /* Container */
    --container-max: 1280px;
    --container-padding: 1.5rem;
}

/* Reset & Base Styles */
*, *::before, *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

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

body {
    font-family: var(--font-primary);
    color: var(--text-body);
    background-color: #ffffff;
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    overflow-x: hidden;
}

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

a {
    text-decoration: none;
    color: inherit;
    transition: color var(--transition-base);
}

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

/* ========================================
   Announcement Bar
   ======================================== */
.announcement-bar {
    background: linear-gradient(90deg, var(--primary-dark), var(--primary-navy));
    color: var(--text-light);
    padding: 0.5rem 0;
    text-align: center;
    font-size: 0.85rem;
    letter-spacing: 0.02em;
}

.announcement-bar p {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    flex-wrap: wrap;
}

.announcement-bar i {
    color: var(--accent-light);
}

.announcement-bar .divider {
    opacity: 0.4;
    margin: 0 0.5rem;
}

/* ========================================
   Header & Navigation
   ======================================== */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(11, 29, 58, 0.95);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--border-subtle);
    transition: all var(--transition-base);
    padding: 0.75rem 0;
}

.header.scrolled {
    background: rgba(11, 29, 58, 0.98);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
    padding: 0.5rem 0;
}

.navbar {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.logo {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    text-decoration: none;
}

.logo-img {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    object-fit: cover;
}

.logo-text-wrap {
    display: flex;
    flex-direction: column;
}

.logo-text {
    font-family: var(--font-display);
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--text-light);
    letter-spacing: 0.08em;
    line-height: 1.1;
}

.logo-tagline {
    font-size: 0.65rem;
    color: var(--accent-light);
    letter-spacing: 0.15em;
    text-transform: uppercase;
    font-weight: 400;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 0.25rem;
}

.nav-link {
    color: var(--text-muted);
    padding: 0.5rem 1rem;
    font-size: 0.9rem;
    font-weight: 500;
    border-radius: var(--radius-md);
    transition: all var(--transition-base);
    display: flex;
    align-items: center;
    gap: 0.35rem;
}

.nav-link:hover,
.nav-link.active {
    color: var(--text-light);
    background: var(--surface-light);
}

.nav-link i {
    font-size: 0.65rem;
    transition: transform var(--transition-base);
}

/* Dropdown */
.dropdown {
    position: relative;
}

.dropdown-menu {
    position: absolute;
    top: calc(100% + 0.5rem);
    left: 0;
    background: var(--primary-dark);
    border: 1px solid var(--border-subtle);
    border-radius: var(--radius-lg);
    padding: 0.5rem;
    min-width: 220px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all var(--transition-base);
    box-shadow: var(--shadow-dark);
}

.dropdown:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.dropdown-menu a {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.75rem 1rem;
    color: var(--text-muted);
    font-size: 0.875rem;
    border-radius: var(--radius-md);
    transition: all var(--transition-base);
}

.dropdown-menu a:hover {
    color: var(--text-light);
    background: var(--surface-light);
}

.dropdown-menu a i {
    color: var(--accent);
    width: 16px;
    text-align: center;
}

/* Nav Actions */
.nav-actions {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 0.625rem 1.25rem;
    font-size: 0.875rem;
    font-weight: 600;
    border-radius: var(--radius-full);
    border: 2px solid transparent;
    cursor: pointer;
    transition: all var(--transition-base);
    white-space: nowrap;
    text-decoration: none;
}

.btn-primary {
    background: var(--gradient-accent);
    color: var(--text-light);
    border-color: transparent;
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-accent-lg);
    filter: brightness(1.1);
}

.btn-outline {
    background: transparent;
    color: var(--accent-light);
    border-color: var(--accent);
}

.btn-outline:hover {
    background: rgba(77, 168, 218, 0.15);
    color: var(--text-light);
    transform: translateY(-2px);
}

.btn-outline-light {
    background: transparent;
    color: var(--text-light);
    border-color: rgba(255, 255, 255, 0.4);
}

.btn-outline-light:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.6);
    transform: translateY(-2px);
}

.btn-lg {
    padding: 0.875rem 1.75rem;
    font-size: 1rem;
}

.btn-block {
    display: flex;
    width: 100%;
}

/* Hamburger */
.hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
}

.hamburger span {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--text-light);
    border-radius: 2px;
    transition: all var(--transition-base);
}

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

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

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

/* Mobile Menu */
.mobile-menu {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: var(--primary-dark);
    z-index: 999;
    transform: translateX(100%);
    transition: transform var(--transition-slow);
    padding-top: 100px;
}

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

.mobile-menu-content {
    padding: 2rem;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.mobile-nav-link {
    display: block;
    padding: 1rem;
    color: var(--text-muted);
    font-size: 1.1rem;
    font-weight: 500;
    border-radius: var(--radius-lg);
    transition: all var(--transition-base);
}

.mobile-nav-link:hover,
.mobile-nav-link.active {
    color: var(--text-light);
    background: var(--surface-light);
}

.mobile-actions {
    margin-top: 2rem;
}

/* ========================================
   Hero Section
   ======================================== */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding-top: 100px;
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    inset: 0;
    z-index: 0;
}

.hero-gradient {
    position: absolute;
    inset: 0;
    background: var(--gradient-hero);
}

.hero-particles {
    position: absolute;
    inset: 0;
    background-image:
        radial-gradient(2px 2px at 20% 30%, rgba(77, 168, 218, 0.3) 0%, transparent 100%),
        radial-gradient(2px 2px at 40% 70%, rgba(126, 200, 227, 0.2) 0%, transparent 100%),
        radial-gradient(1px 1px at 60% 20%, rgba(77, 168, 218, 0.3) 0%, transparent 100%),
        radial-gradient(1px 1px at 80% 50%, rgba(126, 200, 227, 0.2) 0%, transparent 100%),
        radial-gradient(2px 2px at 10% 80%, rgba(77, 168, 218, 0.2) 0%, transparent 100%),
        radial-gradient(1px 1px at 90% 10%, rgba(126, 200, 227, 0.3) 0%, transparent 100%);
    animation: particleFloat 20s ease-in-out infinite;
}

@keyframes particleFloat {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-20px); }
}

.hero-content {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.hero-poem {
    font-style: italic;
    color: var(--accent-light);
    font-size: 0.95rem;
    margin-bottom: 1.5rem;
    line-height: 1.8;
    opacity: 0.9;
}

.hero-title {
    font-family: var(--font-display);
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 800;
    color: var(--text-light);
    line-height: 1.15;
    margin-bottom: 0.75rem;
}

.hero-subtitle {
    font-family: var(--font-display);
    font-size: clamp(1.2rem, 2.5vw, 1.8rem);
    font-weight: 600;
    color: var(--accent-light);
    margin-bottom: 1.5rem;
    line-height: 1.3;
}

.hero-description {
    font-size: 1.1rem;
    color: var(--text-muted);
    line-height: 1.8;
    max-width: 600px;
    margin-bottom: 2rem;
}

.hero-cta {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    margin-bottom: 2rem;
}

.hero-countries {
    display: flex;
    align-items: center;
    gap: 1rem;
    flex-wrap: wrap;
}

.hero-countries > span {
    color: var(--text-subtle);
    font-size: 0.875rem;
    font-weight: 500;
}

.country-flags {
    display: flex;
    gap: 0.5rem;
    flex-wrap: wrap;
}

.flag {
    font-size: 1.5rem;
    cursor: default;
    transition: transform var(--transition-base);
}

.flag:hover {
    transform: scale(1.2);
}

.hero-visual {
    display: flex;
    justify-content: center;
    align-items: center;
}

.hero-globe {
    position: relative;
    width: 350px;
    height: 350px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.globe-image {
    width: 280px;
    height: 280px;
    border-radius: 50%;
    object-fit: cover;
    box-shadow: 0 0 60px rgba(77, 168, 218, 0.3), 0 0 120px rgba(77, 168, 218, 0.1);
    animation: globePulse 4s ease-in-out infinite;
}

@keyframes globePulse {
    0%, 100% { box-shadow: 0 0 60px rgba(77, 168, 218, 0.3), 0 0 120px rgba(77, 168, 218, 0.1); }
    50% { box-shadow: 0 0 80px rgba(77, 168, 218, 0.5), 0 0 160px rgba(77, 168, 218, 0.2); }
}

.hero-scroll-indicator {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    color: var(--text-subtle);
    font-size: 0.8rem;
    animation: scrollBounce 2s ease-in-out infinite;
}

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

/* ========================================
   Section Shared Styles
   ======================================== */
.section-header {
    text-align: center;
    margin-bottom: 3rem;
}

.section-badge {
    display: inline-block;
    padding: 0.35rem 1rem;
    background: var(--surface-accent);
    color: var(--accent-dark);
    border: 1px solid var(--border-accent);
    border-radius: var(--radius-full);
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    margin-bottom: 0.75rem;
}

.section-title {
    font-family: var(--font-display);
    font-size: clamp(1.75rem, 3vw, 2.5rem);
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 0.5rem;
    line-height: 1.2;
}

.highlight-text {
    color: var(--accent-dark);
}

.section-subtitle {
    font-size: 1.05rem;
    color: var(--text-body);
    opacity: 0.8;
}

/* Dark section overrides */
.hero .section-badge,
.cta-section .section-badge {
    background: rgba(77, 168, 218, 0.2);
    border-color: rgba(77, 168, 218, 0.4);
    color: var(--accent-light);
}

/* ========================================
   Why ASTIN Section
   ======================================== */
.why-astin {
    padding: 5rem 0;
    background: var(--surface-white);
}

.features-grid {
    display: grid;
    gap: 1.5rem;
}

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

.features-grid.five-col {
    grid-template-columns: repeat(5, 1fr);
}

.feature-card {
    background: #ffffff;
    border: 1px solid var(--border-light);
    border-radius: var(--radius-xl);
    padding: 2rem 1.5rem;
    text-align: center;
    transition: all var(--transition-base);
}

.feature-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-accent);
    border-color: var(--accent);
}

.feature-icon {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: var(--gradient-accent);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.25rem;
    font-size: 1.4rem;
    color: var(--text-light);
}

.feature-card h3 {
    font-size: 1rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 0.5rem;
}

.feature-card p {
    font-size: 0.875rem;
    color: var(--text-body);
    opacity: 0.8;
    line-height: 1.5;
}

/* ========================================
   Platform Capabilities Section
   ======================================== */
.platform-capabilities {
    padding: 5rem 0;
    background: #ffffff;
}

.capability-card {
    background: var(--surface-blue-light);
    border: 1px solid var(--border-light);
    border-radius: var(--radius-xl);
    padding: 1.75rem 1.25rem;
    text-align: center;
    transition: all var(--transition-base);
}

.capability-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-accent);
    border-color: var(--accent);
}

.capability-icon {
    width: 55px;
    height: 55px;
    border-radius: var(--radius-lg);
    background: var(--primary-dark);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
    font-size: 1.25rem;
    color: var(--accent-light);
}

.capability-card h3 {
    font-size: 0.95rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 0.35rem;
}

.capability-card p {
    font-size: 0.825rem;
    color: var(--text-body);
    opacity: 0.75;
}

/* ========================================
   Seller Ecosystem Section
   ======================================== */
.seller-ecosystem {
    padding: 5rem 0;
    background: var(--primary-dark);
    color: var(--text-light);
}

.seller-ecosystem .section-title {
    color: var(--text-light);
}

.seller-ecosystem .section-subtitle {
    color: var(--text-muted);
}

.seller-ecosystem .section-badge {
    background: rgba(77, 168, 218, 0.2);
    border-color: rgba(77, 168, 218, 0.4);
    color: var(--accent-light);
}

.ecosystem-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
}

.ecosystem-heading {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--accent-light);
    margin-bottom: 1.5rem;
    padding-bottom: 0.75rem;
    border-bottom: 2px solid rgba(77, 168, 218, 0.3);
}

.seller-types-list,
.seller-benefits-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.seller-types-list li,
.seller-benefits-list li {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-size: 1rem;
    color: var(--text-muted);
    padding: 0.75rem 1rem;
    background: rgba(255, 255, 255, 0.05);
    border-radius: var(--radius-lg);
    border: 1px solid rgba(255, 255, 255, 0.08);
    transition: all var(--transition-base);
}

.seller-types-list li:hover,
.seller-benefits-list li:hover {
    background: rgba(77, 168, 218, 0.1);
    border-color: rgba(77, 168, 218, 0.3);
    color: var(--text-light);
}

.seller-types-list li i {
    color: var(--accent);
    font-size: 1.1rem;
}

.seller-benefits-list li i {
    color: var(--accent-light);
    font-size: 1.1rem;
    width: 20px;
    text-align: center;
}

/* ========================================
   Business Model Section
   ======================================== */
.business-model {
    padding: 5rem 0;
    background: var(--surface-white);
}

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

.model-card {
    background: #ffffff;
    border: 1px solid var(--border-light);
    border-radius: var(--radius-xl);
    padding: 2rem 1.5rem;
    text-align: center;
    transition: all var(--transition-base);
}

.model-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-accent);
    border-color: var(--accent);
}

.model-card.highlight-card {
    background: var(--primary-dark);
    color: var(--text-light);
    border-color: var(--accent);
}

.model-card.highlight-card h3 {
    color: var(--text-light);
}

.model-card.highlight-card p {
    color: var(--text-muted);
}

.model-icon {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: var(--surface-accent);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.25rem;
    font-size: 1.4rem;
    color: var(--accent-dark);
}

.highlight-card .model-icon {
    background: rgba(77, 168, 218, 0.2);
    color: var(--accent-light);
}

.model-card h3 {
    font-size: 1rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 0.5rem;
}

.model-card p {
    font-size: 0.875rem;
    color: var(--text-body);
    opacity: 0.8;
    line-height: 1.5;
}

/* ========================================
   Multi-App Ecosystem Section
   ======================================== */
.multi-app {
    padding: 5rem 0;
    background: #ffffff;
}

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

.app-card {
    background: var(--surface-blue-light);
    border: 1px solid var(--border-light);
    border-radius: var(--radius-2xl);
    padding: 2.5rem 2rem;
    text-align: center;
    transition: all var(--transition-base);
}

.app-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-accent);
    border-color: var(--accent);
}

.app-icon {
    width: 70px;
    height: 70px;
    border-radius: var(--radius-xl);
    background: var(--gradient-accent);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    font-size: 1.75rem;
    color: var(--text-light);
}

.app-card h3 {
    font-size: 1.15rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 0.5rem;
}

.app-card p {
    font-size: 0.925rem;
    color: var(--text-body);
    opacity: 0.8;
    line-height: 1.5;
}

/* ========================================
   Expansion Roadmap Section
   ======================================== */
.expansion-roadmap {
    padding: 5rem 0;
    background: var(--surface-white);
}

.roadmap-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
}

.roadmap-phase {
    background: #ffffff;
    border: 2px solid var(--border-light);
    border-radius: var(--radius-2xl);
    padding: 2.5rem;
    text-align: center;
}

.phase-current {
    border-color: var(--accent);
    box-shadow: var(--shadow-accent);
}

.phase-label {
    font-size: 0.85rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--accent-dark);
    margin-bottom: 1.5rem;
    padding: 0.35rem 1rem;
    display: inline-block;
    background: var(--surface-accent);
    border-radius: var(--radius-full);
}

.phase-route {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    padding: 0.75rem;
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--text-dark);
}

.phase-route i {
    color: var(--accent);
    font-size: 1.25rem;
}

.route-from,
.route-to {
    padding: 0.5rem 1.25rem;
    background: var(--surface-blue-light);
    border-radius: var(--radius-lg);
    border: 1px solid var(--border-light);
}

.phase-routes {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

/* ========================================
   Our Journey (Timeline) Section
   ======================================== */
.our-journey {
    padding: 5rem 0;
    background: var(--primary-dark);
    color: var(--text-light);
}

.our-journey .section-title {
    color: var(--text-light);
}

.our-journey .section-subtitle {
    color: var(--text-muted);
}

.our-journey .section-badge {
    background: rgba(77, 168, 218, 0.2);
    border-color: rgba(77, 168, 218, 0.4);
    color: var(--accent-light);
}

.timeline {
    position: relative;
    max-width: 700px;
    margin: 0 auto;
    padding-left: 3rem;
}

.timeline::before {
    content: '';
    position: absolute;
    left: 14px;
    top: 0;
    bottom: 0;
    width: 2px;
    background: linear-gradient(to bottom, var(--accent), rgba(77, 168, 218, 0.2));
}

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

.timeline-item:last-child {
    margin-bottom: 0;
}

.timeline-dot {
    position: absolute;
    left: -2.55rem;
    top: 0.5rem;
    width: 16px;
    height: 16px;
    background: var(--accent);
    border-radius: 50%;
    border: 3px solid var(--primary-dark);
    box-shadow: 0 0 0 3px var(--accent);
}

.timeline-dot.future {
    background: transparent;
    border-color: var(--accent);
    box-shadow: 0 0 0 3px rgba(77, 168, 218, 0.3);
}

.timeline-year {
    font-size: 0.85rem;
    font-weight: 700;
    color: var(--accent-light);
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.timeline-content h3 {
    font-size: 1.15rem;
    font-weight: 600;
    color: var(--text-light);
    margin-top: 0.25rem;
}

/* ========================================
   Our Values Section
   ======================================== */
.our-values {
    padding: 5rem 0;
    background: #ffffff;
}

.values-list {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    max-width: 700px;
    margin: 0 auto;
}

.value-item {
    display: flex;
    align-items: center;
    gap: 1.25rem;
    padding: 1.25rem 1.5rem;
    background: var(--surface-blue-light);
    border: 1px solid var(--border-light);
    border-radius: var(--radius-xl);
    transition: all var(--transition-base);
}

.value-item:hover {
    transform: translateX(5px);
    box-shadow: var(--shadow-soft);
    border-color: var(--accent);
}

.value-item .value-icon {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: var(--gradient-accent);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    color: var(--text-light);
    flex-shrink: 0;
}

.value-text h3 {
    font-size: 1.05rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 0.15rem;
}

.value-text p {
    font-size: 0.9rem;
    color: var(--text-body);
    opacity: 0.75;
}

/* ========================================
   Values That Unite Us Section
   ======================================== */
.values-unite {
    padding: 5rem 0;
    background: var(--surface-white);
}

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

.unite-card {
    background: #ffffff;
    border: 1px solid var(--border-light);
    border-radius: var(--radius-xl);
    padding: 2rem 1.5rem;
    text-align: center;
    transition: all var(--transition-base);
}

.unite-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-accent);
    border-color: var(--accent);
}

.unite-icon {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: var(--surface-accent);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.25rem;
    font-size: 1.4rem;
    color: var(--accent-dark);
}

.unite-card h3 {
    font-size: 1rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 0.5rem;
}

.unite-card p {
    font-size: 0.85rem;
    color: var(--text-body);
    line-height: 1.6;
    opacity: 0.8;
}

/* ========================================
   Vision Section
   ======================================== */
.vision-section {
    padding: 5rem 0;
    background: #ffffff;
}

.vision-content {
    max-width: 850px;
    margin: 0 auto;
}

.vision-text {
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--text-body);
    margin-bottom: 2.5rem;
    text-align: center;
}

.vision-block {
    margin-bottom: 2.5rem;
    padding: 2rem;
    background: var(--surface-blue-light);
    border-radius: var(--radius-xl);
    border-left: 4px solid var(--accent);
}

.vision-block.centered {
    text-align: center;
    border-left: none;
    border: 2px solid var(--accent);
    background: var(--surface-accent);
}

.vision-block h3 {
    font-family: var(--font-display);
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 0.75rem;
}

.vision-block p {
    font-size: 0.95rem;
    color: var(--text-body);
    line-height: 1.7;
    margin-bottom: 0.75rem;
}

.vision-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    margin-top: 1rem;
}

.vision-list li {
    padding: 0.75rem 1rem;
    background: rgba(255, 255, 255, 0.7);
    border-radius: var(--radius-lg);
    font-size: 0.925rem;
    line-height: 1.6;
    color: var(--text-body);
}

.vision-block blockquote {
    font-family: var(--font-display);
    font-size: 1.15rem;
    font-style: italic;
    color: var(--accent-dark);
    padding: 1.5rem;
    background: rgba(255, 255, 255, 0.7);
    border-radius: var(--radius-lg);
    text-align: center;
    margin-top: 1rem;
    border-left: 3px solid var(--accent);
}

/* ========================================
   ASTIN Story Section
   ======================================== */
.astin-story {
    padding: 5rem 0;
    background: var(--primary-dark);
    color: var(--text-light);
    text-align: center;
}

.astin-story .section-title {
    color: var(--text-light);
}

.story-content {
    max-width: 700px;
    margin: 0 auto;
}

.story-tagline {
    font-family: var(--font-display);
    font-size: 1.35rem;
    font-style: italic;
    color: var(--accent-light);
    margin-top: 1.5rem;
    margin-bottom: 1.5rem;
    line-height: 1.5;
}

.story-text {
    font-size: 1.05rem;
    color: var(--text-muted);
    margin-bottom: 0.75rem;
    line-height: 1.6;
}

.launch-note {
    margin-top: 1.5rem;
    padding: 1.25rem;
    background: rgba(77, 168, 218, 0.15);
    border: 1px solid rgba(77, 168, 218, 0.3);
    border-radius: var(--radius-xl);
    color: var(--accent-light);
    font-weight: 500;
}

/* ========================================
   Leadership Section
   ======================================== */
.leadership {
    padding: 5rem 0;
    background: var(--surface-white);
}

.leader-card {
    max-width: 800px;
    margin: 0 auto 3rem;
    background: #ffffff;
    border: 1px solid var(--border-light);
    border-radius: var(--radius-2xl);
    padding: 2.5rem;
    box-shadow: var(--shadow-soft);
}

.leader-info h3 {
    font-family: var(--font-display);
    font-size: 1.75rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 0.25rem;
}

.leader-title {
    display: inline-block;
    font-size: 0.95rem;
    color: var(--accent-dark);
    font-weight: 600;
    margin-bottom: 1.5rem;
    padding: 0.25rem 0.75rem;
    background: var(--surface-accent);
    border-radius: var(--radius-full);
}

.leader-info p {
    font-size: 0.95rem;
    color: var(--text-body);
    line-height: 1.7;
    margin-bottom: 1rem;
}

.leader-info p:last-child {
    margin-bottom: 0;
}

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

.poem-text {
    font-family: var(--font-display);
    font-size: 1.15rem;
    font-style: italic;
    color: var(--text-body);
    line-height: 2;
    opacity: 0.8;
    padding: 2rem;
    background: var(--surface-blue-light);
    border-radius: var(--radius-xl);
    border: 1px solid var(--border-light);
}

/* ========================================
   CTA Section
   ======================================== */
.cta-section {
    padding: 5rem 0;
    background: linear-gradient(135deg, var(--primary-dark), var(--primary-navy));
    color: var(--text-light);
    text-align: center;
}

.cta-content h2 {
    font-family: var(--font-display);
    font-size: clamp(1.75rem, 3vw, 2.5rem);
    font-weight: 700;
    margin-bottom: 1rem;
}

.cta-content > p {
    font-size: 1.1rem;
    color: var(--text-muted);
    margin-bottom: 2rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

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

.cta-contact {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 2rem;
}

.cta-contact > p {
    font-size: 0.9rem;
    color: var(--text-subtle);
    margin-bottom: 0.75rem;
}

.contact-links {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
}

.contact-links a {
    color: var(--text-muted);
    font-size: 0.9rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    transition: color var(--transition-base);
}

.contact-links a:hover {
    color: var(--accent-light);
}

.contact-links a i {
    color: var(--accent);
    width: 16px;
    text-align: center;
}

/* ========================================
   Footer
   ======================================== */
.footer {
    background: var(--primary-darker);
    color: var(--text-muted);
    padding: 4rem 0 0;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1.5fr;
    gap: 2.5rem;
    padding-bottom: 2.5rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.footer-logo {
    display: flex;
    flex-direction: column;
    margin-bottom: 1rem;
}

.footer-logo .logo-text {
    font-family: var(--font-display);
    font-size: 1.75rem;
    font-weight: 700;
    color: var(--text-light);
    letter-spacing: 0.08em;
}

.footer-logo .logo-tagline {
    font-size: 0.65rem;
    color: var(--accent-light);
    letter-spacing: 0.15em;
    text-transform: uppercase;
}

.footer-brand p {
    font-size: 0.875rem;
    line-height: 1.6;
    margin-bottom: 0.35rem;
}

.company-reg {
    font-size: 0.75rem !important;
    color: var(--text-subtle) !important;
    font-family: monospace;
}

.footer-social {
    display: flex;
    gap: 0.75rem;
    margin-top: 1.25rem;
}

.footer-social a {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.08);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-muted);
    transition: all var(--transition-base);
}

.footer-social a:hover {
    background: var(--accent);
    color: var(--text-light);
    transform: translateY(-3px);
}

.footer-links h4 {
    font-size: 0.9rem;
    font-weight: 700;
    color: var(--text-light);
    margin-bottom: 1rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.footer-links ul {
    list-style: none;
}

.footer-links li {
    margin-bottom: 0.5rem;
}

.footer-links a {
    font-size: 0.85rem;
    color: var(--text-muted);
    transition: color var(--transition-base);
}

.footer-links a:hover {
    color: var(--accent-light);
}

.footer-countries {
    padding: 1.5rem 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    text-align: center;
}

.footer-countries h4 {
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--text-subtle);
    margin-bottom: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.countries-list {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 1rem;
}

.countries-list span {
    font-size: 0.85rem;
    color: var(--text-muted);
}

.footer-bottom {
    padding: 1.5rem 0;
    text-align: center;
}

.footer-bottom p {
    font-size: 0.8rem;
    color: var(--text-subtle);
}

/* ========================================
   Page Hero (Sub Pages)
   ======================================== */
.page-hero {
    position: relative;
    padding: 10rem 0 4rem;
    overflow: hidden;
    text-align: center;
}

.page-hero .hero-bg {
    position: absolute;
    inset: 0;
    z-index: 0;
}

.page-hero .hero-gradient {
    position: absolute;
    inset: 0;
    background: var(--gradient-hero);
}

.page-hero .hero-particles {
    position: absolute;
    inset: 0;
    background-image:
        radial-gradient(2px 2px at 20% 30%, rgba(77, 168, 218, 0.3) 0%, transparent 100%),
        radial-gradient(2px 2px at 40% 70%, rgba(126, 200, 227, 0.2) 0%, transparent 100%),
        radial-gradient(1px 1px at 60% 20%, rgba(77, 168, 218, 0.3) 0%, transparent 100%),
        radial-gradient(1px 1px at 80% 50%, rgba(126, 200, 227, 0.2) 0%, transparent 100%);
    animation: particleFloat 20s ease-in-out infinite;
}

.page-hero-content {
    position: relative;
    z-index: 1;
    max-width: 800px;
    margin: 0 auto;
}

.page-hero .hero-badge,
.page-hero .page-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1.25rem;
    background: rgba(77, 168, 218, 0.2);
    border: 1px solid rgba(77, 168, 218, 0.4);
    border-radius: var(--radius-full);
    color: var(--accent-light);
    font-size: 0.85rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: 1.25rem;
}

.page-hero .page-title,
.page-hero h1 {
    font-family: var(--font-display);
    font-size: clamp(2rem, 4.5vw, 3.5rem);
    font-weight: 800;
    color: var(--text-light);
    line-height: 1.2;
    margin-bottom: 1rem;
}

.page-hero .page-subtitle,
.page-hero p {
    font-size: 1.1rem;
    color: var(--text-muted);
    line-height: 1.7;
    max-width: 650px;
    margin: 0 auto 1.5rem;
}

.page-hero .highlight-text {
    color: var(--accent-light);
}

.page-hero-cta {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
    margin-top: 2rem;
}

/* ========================================
   Sell Page - Key Benefits
   ======================================== */
.key-benefits {
    padding: var(--spacing-4xl) 0;
    background: var(--surface-white);
}

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

.benefit-card {
    background: #ffffff;
    border-radius: var(--radius-xl);
    padding: 2rem;
    border: 1px solid var(--border-light);
    transition: all var(--transition-base);
    box-shadow: var(--shadow-soft);
}

.benefit-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-card);
    border-color: var(--accent);
}

.benefit-card.featured {
    grid-column: 1 / -1;
    display: grid;
    grid-template-columns: auto 1fr;
    gap: 2rem;
    align-items: center;
    background: linear-gradient(135deg, var(--primary-dark), var(--primary-navy));
    color: var(--text-light);
    border-color: transparent;
}

.benefit-card.featured h3 {
    color: var(--text-light);
}

.benefit-card.featured p {
    color: var(--text-muted);
}

.benefit-icon-large {
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--surface-accent);
    border-radius: var(--radius-lg);
    font-size: 1.5rem;
    color: var(--accent);
    flex-shrink: 0;
    margin-bottom: 1rem;
}

.benefit-card.featured .benefit-icon-large {
    width: 80px;
    height: 80px;
    font-size: 2rem;
    background: rgba(77, 168, 218, 0.2);
    color: var(--accent-light);
    margin-bottom: 0;
}

.benefit-content h3 {
    font-family: var(--font-display);
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 0.5rem;
}

.benefit-content p {
    font-size: 0.95rem;
    line-height: 1.6;
    color: var(--text-body);
    opacity: 0.85;
}

.benefit-highlight {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-top: 1.5rem;
    padding-top: 1.5rem;
    border-top: 1px solid rgba(255, 255, 255, 0.15);
}

.highlight-number {
    font-family: var(--font-display);
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--accent-light);
}

.highlight-label {
    font-size: 1rem;
    color: var(--text-muted);
}

/* ========================================
   Commission Section
   ======================================== */
.commission-section {
    padding: var(--spacing-4xl) 0;
    background: var(--surface-blue-light);
}

.commission-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
}

.commission-content h2 {
    font-family: var(--font-display);
    font-size: clamp(1.5rem, 3vw, 2.25rem);
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 1rem;
}

.commission-intro {
    font-size: 1.05rem;
    color: var(--text-body);
    margin-bottom: 1.5rem;
    line-height: 1.7;
}

.commission-features {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    margin-bottom: 2rem;
}

.commission-feature {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-size: 0.95rem;
    color: var(--text-body);
}

.commission-feature i {
    color: var(--success);
    font-size: 1.1rem;
}

.commission-calculator {
    background: #ffffff;
    border-radius: var(--radius-xl);
    overflow: hidden;
    box-shadow: var(--shadow-card);
    border: 1px solid var(--border-light);
}

.calc-header {
    background: var(--primary-dark);
    color: var(--text-light);
    padding: 1rem 1.5rem;
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-weight: 600;
}

.calc-header i {
    color: var(--accent-light);
}

.calc-body {
    padding: 1.5rem;
}

.calc-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.75rem 0;
}

.calc-row.highlight {
    color: var(--error);
}

.calc-row.total {
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--success);
}

.calc-divider {
    height: 1px;
    background: var(--border-light);
    margin: 0.5rem 0;
}

.calc-footer {
    padding: 1rem 1.5rem;
    background: var(--surface-blue-light);
    border-top: 1px solid var(--border-light);
}

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

.payout-info i {
    color: var(--accent);
}

/* ========================================
   Seller Process / Timeline
   ======================================== */
.seller-process {
    padding: var(--spacing-4xl) 0;
    background: #ffffff;
}

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

.process-timeline .timeline-item {
    position: relative;
    background: var(--surface-white);
    border-radius: var(--radius-xl);
    padding: 2rem;
    border: 1px solid var(--border-light);
    transition: all var(--transition-base);
    text-align: center;
}

.process-timeline .timeline-item:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-card);
    border-color: var(--accent);
}

.timeline-number {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--gradient-accent);
    color: var(--text-light);
    font-weight: 700;
    font-size: 1rem;
    border-radius: 50%;
    margin: 0 auto 1rem;
}

.timeline-icon {
    font-size: 1.5rem;
    color: var(--accent);
    margin-bottom: 1rem;
}

.process-timeline .timeline-content h3 {
    font-family: var(--font-display);
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 0.5rem;
}

.process-timeline .timeline-content p {
    font-size: 0.9rem;
    color: var(--text-body);
    line-height: 1.6;
    opacity: 0.85;
}

.process-cta,
.section-cta {
    text-align: center;
    margin-top: 2rem;
}

/* ========================================
   Seller Reach & Ecosystem (Sell Page)
   ======================================== */
.seller-reach {
    padding: var(--spacing-4xl) 0;
    background: var(--surface-blue-light);
}

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

.reach-card {
    background: #ffffff;
    border-radius: var(--radius-xl);
    padding: 2rem;
    text-align: center;
    border: 1px solid var(--border-light);
    transition: all var(--transition-base);
    box-shadow: var(--shadow-soft);
}

.reach-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-card);
    border-color: var(--accent);
}

.reach-flag {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: var(--accent);
}

.reach-card h3 {
    font-family: var(--font-display);
    font-size: 1.15rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 0.5rem;
}

.reach-card p {
    font-size: 0.9rem;
    color: var(--text-body);
    line-height: 1.6;
}

.reach-currency {
    font-weight: 600;
    color: var(--accent-dark);
    margin-bottom: 0.5rem;
}

.reach-advantage {
    font-size: 0.85rem;
    opacity: 0.75;
}

/* ========================================
   Seller Categories
   ======================================== */
.seller-categories {
    padding: var(--spacing-4xl) 0;
    background: #ffffff;
}

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

.seller-category-card {
    background: var(--surface-white);
    border-radius: var(--radius-xl);
    padding: 2rem;
    text-align: center;
    border: 1px solid var(--border-light);
    transition: all var(--transition-base);
}

.seller-category-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-card);
    border-color: var(--accent);
}

.seller-category-icon {
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--surface-accent);
    border-radius: var(--radius-lg);
    font-size: 1.5rem;
    color: var(--accent);
    margin: 0 auto 1rem;
}

.seller-category-card h3 {
    font-family: var(--font-display);
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 0.5rem;
}

.seller-category-card p {
    font-size: 0.9rem;
    color: var(--text-body);
    line-height: 1.6;
    margin-bottom: 1rem;
}

.demand-badge {
    display: inline-block;
    padding: 0.25rem 0.75rem;
    border-radius: var(--radius-full);
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.demand-badge.high {
    background: rgba(16, 185, 129, 0.1);
    color: var(--success);
    border: 1px solid rgba(16, 185, 129, 0.3);
}

.demand-badge.medium {
    background: rgba(245, 158, 11, 0.1);
    color: var(--warning);
    border: 1px solid rgba(245, 158, 11, 0.3);
}

/* ========================================
   Seller Trust Section
   ======================================== */
.seller-trust {
    padding: var(--spacing-4xl) 0;
    background: linear-gradient(135deg, var(--primary-dark), var(--primary-navy));
    color: var(--text-light);
}

.trust-content {
    display: grid;
    grid-template-columns: 1.5fr 1fr;
    gap: 3rem;
    align-items: center;
}

.trust-message h2 {
    font-family: var(--font-display);
    font-size: clamp(1.5rem, 3vw, 2.25rem);
    font-weight: 700;
    color: var(--text-light);
    margin-bottom: 1.5rem;
}

.trust-message .highlight-text {
    color: var(--accent-light);
}

.trust-message blockquote {
    font-style: italic;
    font-size: 1.05rem;
    line-height: 1.8;
    color: var(--text-muted);
    border-left: 3px solid var(--accent);
    padding-left: 1.5rem;
    margin-bottom: 1.5rem;
}

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

.author-avatar {
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(77, 168, 218, 0.2);
    border-radius: 50%;
    color: var(--accent-light);
    font-size: 1.25rem;
}

.author-details strong {
    display: block;
    color: var(--text-light);
    font-size: 1rem;
}

.author-details span {
    font-size: 0.85rem;
    color: var(--text-subtle);
}

.trust-stats {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.trust-stat {
    text-align: center;
    padding: 1.5rem;
    background: rgba(255, 255, 255, 0.05);
    border-radius: var(--radius-lg);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.trust-stat .stat-number {
    font-family: var(--font-display);
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--accent-light);
}

.trust-stat .stat-label {
    font-size: 0.85rem;
    color: var(--text-muted);
    margin-top: 0.25rem;
}

/* ========================================
   Seller FAQ Preview
   ======================================== */
.seller-faq-preview {
    padding: var(--spacing-4xl) 0;
    background: var(--surface-white);
}

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

.faq-item {
    background: #ffffff;
    border-radius: var(--radius-xl);
    padding: 1.5rem;
    border: 1px solid var(--border-light);
}

.faq-question {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 0.75rem;
}

.faq-question i {
    color: var(--accent);
    font-size: 1.1rem;
}

.faq-question h4 {
    font-family: var(--font-display);
    font-size: 1rem;
    font-weight: 700;
    color: var(--text-dark);
}

.faq-item p {
    font-size: 0.9rem;
    color: var(--text-body);
    line-height: 1.6;
    opacity: 0.85;
}

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

/* ========================================
   Registration Page
   ======================================== */
.registration-section {
    position: relative;
    padding: 8rem 0 4rem;
    min-height: 100vh;
}

.registration-bg {
    position: absolute;
    inset: 0;
    z-index: 0;
}

.registration-bg .hero-gradient {
    position: absolute;
    inset: 0;
    background: var(--gradient-hero);
}

.registration-bg .hero-particles {
    position: absolute;
    inset: 0;
    background-image:
        radial-gradient(2px 2px at 20% 30%, rgba(77, 168, 218, 0.3) 0%, transparent 100%),
        radial-gradient(2px 2px at 40% 70%, rgba(126, 200, 227, 0.2) 0%, transparent 100%);
    animation: particleFloat 20s ease-in-out infinite;
}

.registration-grid {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: start;
}

.registration-info {
    padding-top: 2rem;
    color: var(--text-light);
}

.registration-info h1 {
    font-family: var(--font-display);
    font-size: clamp(1.75rem, 3.5vw, 2.75rem);
    font-weight: 800;
    color: var(--text-light);
    line-height: 1.2;
    margin-bottom: 1rem;
}

.registration-info .highlight-text {
    color: var(--accent-light);
}

.registration-intro {
    font-size: 1.05rem;
    color: var(--text-muted);
    line-height: 1.7;
    margin-bottom: 2rem;
}

.registration-benefits {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-bottom: 2rem;
}

.reg-benefit {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
}

.reg-benefit-icon {
    width: 28px;
    height: 28px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(77, 168, 218, 0.2);
    border-radius: 50%;
    color: var(--accent-light);
    font-size: 0.75rem;
    flex-shrink: 0;
    margin-top: 0.125rem;
}

.reg-benefit-text strong {
    display: block;
    color: var(--text-light);
    font-size: 0.95rem;
    margin-bottom: 0.125rem;
}

.reg-benefit-text span {
    font-size: 0.85rem;
    color: var(--text-muted);
}

.registration-trust {
    display: flex;
    gap: 1.5rem;
    flex-wrap: wrap;
}

.trust-badge {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.85rem;
    color: var(--text-subtle);
}

.trust-badge i {
    color: var(--accent-light);
}

.registration-form-container {
    position: relative;
}

.form-card {
    background: #ffffff;
    border-radius: var(--radius-xl);
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
}

.form-header {
    padding: 1.5rem 2rem;
    background: var(--primary-dark);
    color: var(--text-light);
}

.form-header h2 {
    font-family: var(--font-display);
    font-size: 1.35rem;
    font-weight: 700;
    margin-bottom: 0.25rem;
}

.form-header p {
    font-size: 0.9rem;
    color: var(--text-muted);
}

.form-step {
    padding: 2rem;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
}

.form-group {
    margin-bottom: 1.25rem;
}

.form-group label {
    display: block;
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 0.4rem;
}

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

.form-group input,
.form-group textarea,
.form-group select {
    width: 100%;
    padding: 0.7rem 1rem;
    font-family: var(--font-primary);
    font-size: 0.9rem;
    color: var(--text-dark);
    background: var(--surface-white);
    border: 1px solid var(--border-light);
    border-radius: var(--radius-md);
    transition: all var(--transition-fast);
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
    outline: none;
    border-color: var(--accent);
    box-shadow: 0 0 0 3px rgba(77, 168, 218, 0.15);
}

.form-group input.error {
    border-color: var(--error);
}

.error-message {
    display: block;
    font-size: 0.8rem;
    color: var(--error);
    margin-top: 0.25rem;
    min-height: 1rem;
}

.phone-input {
    display: grid;
    grid-template-columns: 120px 1fr;
    gap: 0.5rem;
}

.form-actions {
    margin-top: 0.5rem;
}

.form-success {
    padding: 3rem 2rem;
    text-align: center;
}

.form-success .success-icon {
    font-size: 3rem;
    color: var(--success);
    margin-bottom: 1rem;
}

.form-success h3 {
    font-family: var(--font-display);
    font-size: 1.5rem;
    color: var(--text-dark);
    margin-bottom: 0.75rem;
}

.form-success p {
    color: var(--text-body);
    margin-bottom: 0.5rem;
}

/* Registration Help */
.registration-help {
    padding: var(--spacing-3xl) 0;
    background: var(--surface-white);
}

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

.help-item {
    text-align: center;
    padding: 1.5rem;
    background: #ffffff;
    border-radius: var(--radius-xl);
    border: 1px solid var(--border-light);
}

.help-icon {
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--surface-accent);
    border-radius: 50%;
    font-size: 1.25rem;
    color: var(--accent);
    margin: 0 auto 1rem;
}

.help-item h4 {
    font-family: var(--font-display);
    font-size: 1rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 0.5rem;
}

.help-item p {
    font-size: 0.85rem;
    color: var(--text-body);
}

.help-item a {
    color: var(--accent-dark);
    font-weight: 500;
}

.help-item a:hover {
    color: var(--accent);
}

/* ========================================
   How It Works Page
   ======================================== */
.quick-nav {
    padding: var(--spacing-3xl) 0;
    background: var(--surface-white);
    margin-top: -2rem;
    position: relative;
    z-index: 2;
}

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

.quick-nav-card {
    text-align: center;
    padding: 2rem 1.5rem;
    background: #ffffff;
    border-radius: var(--radius-xl);
    border: 1px solid var(--border-light);
    transition: all var(--transition-base);
    box-shadow: var(--shadow-soft);
}

.quick-nav-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-card);
    border-color: var(--accent);
}

.quick-nav-icon {
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--surface-accent);
    border-radius: var(--radius-lg);
    font-size: 1.5rem;
    color: var(--accent);
    margin: 0 auto 1rem;
}

.quick-nav-card h3 {
    font-family: var(--font-display);
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 0.25rem;
}

.quick-nav-card p {
    font-size: 0.85rem;
    color: var(--text-body);
    opacity: 0.75;
}

.how-section {
    padding: var(--spacing-4xl) 0;
    background: #ffffff;
}

.how-section.alternate {
    background: var(--surface-blue-light);
}

.steps-visual {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    margin-bottom: 2rem;
}

.step-visual-item {
    display: grid;
    grid-template-columns: 50px 60px 1fr;
    gap: 1.5rem;
    align-items: start;
    padding: 2rem;
    background: #ffffff;
    border-radius: var(--radius-xl);
    border: 1px solid var(--border-light);
    transition: all var(--transition-base);
}

.how-section.alternate .step-visual-item {
    background: #ffffff;
}

.step-visual-item:hover {
    box-shadow: var(--shadow-card);
    border-color: var(--accent);
}

.step-visual-number {
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--gradient-accent);
    color: var(--text-light);
    font-weight: 800;
    font-size: 1.25rem;
    border-radius: 50%;
    flex-shrink: 0;
}

.step-visual-icon {
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--surface-accent);
    border-radius: var(--radius-lg);
    font-size: 1.5rem;
    color: var(--accent);
    flex-shrink: 0;
}

.step-visual-content h3 {
    font-family: var(--font-display);
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 0.5rem;
}

.step-visual-content p {
    font-size: 0.95rem;
    color: var(--text-body);
    line-height: 1.7;
    margin-bottom: 1rem;
}

.step-currencies {
    display: flex;
    gap: 0.5rem;
    flex-wrap: wrap;
}

.step-currencies span {
    padding: 0.25rem 0.5rem;
    background: var(--surface-accent);
    border-radius: var(--radius-sm);
    font-size: 0.8rem;
    font-weight: 500;
    color: var(--accent-dark);
}

.step-features {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 0.4rem;
}

.step-features li {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.9rem;
    color: var(--text-body);
}

.step-features li i {
    color: var(--success);
    font-size: 0.85rem;
}

.combo-shipping-tip,
.order-info-card,
.delivery-time-note {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1rem;
    background: rgba(77, 168, 218, 0.08);
    border-radius: var(--radius-md);
    border: 1px solid var(--border-accent);
    font-size: 0.9rem;
    color: var(--text-body);
}

.combo-shipping-tip i,
.order-info-card i,
.delivery-time-note i {
    color: var(--accent);
    font-size: 1.1rem;
    flex-shrink: 0;
}

.requirement-list,
.packing-tips {
    margin-top: 0.5rem;
}

.requirement-list h4,
.packing-tips h4 {
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 0.5rem;
}

.requirement-list ul,
.packing-tips ul {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 0.3rem;
}

.requirement-list li,
.packing-tips li {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.85rem;
    color: var(--text-body);
}

.requirement-list li i,
.packing-tips li i {
    color: var(--success);
    font-size: 0.8rem;
}

.pickup-info {
    display: flex;
    gap: 1.5rem;
    flex-wrap: wrap;
}

.pickup-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.9rem;
    color: var(--text-body);
}

.pickup-item i {
    color: var(--accent);
}

.payout-breakdown {
    background: var(--surface-white);
    border-radius: var(--radius-md);
    padding: 1rem;
    border: 1px solid var(--border-light);
}

.payout-row {
    display: flex;
    justify-content: space-between;
    padding: 0.4rem 0;
    font-size: 0.9rem;
}

.payout-row.commission {
    color: var(--error);
}

.payout-row.total {
    font-weight: 700;
    color: var(--success);
    padding-top: 0.75rem;
    margin-top: 0.5rem;
    border-top: 1px solid var(--border-light);
}

.payout-timeline {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.8rem;
    color: var(--text-body);
    opacity: 0.75;
    margin-top: 0.75rem;
    padding-top: 0.75rem;
    border-top: 1px solid var(--border-light);
}

.payout-timeline i {
    color: var(--accent);
}

.tracking-stages {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    align-items: center;
}

.tracking-stage {
    display: flex;
    align-items: center;
    gap: 0.4rem;
    font-size: 0.8rem;
    color: var(--text-body);
}

.stage-dot {
    width: 8px;
    height: 8px;
    background: var(--accent);
    border-radius: 50%;
}

/* Shipping Flow */
.shipping-flow {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    flex-wrap: wrap;
    margin-bottom: 3rem;
    padding: 2rem;
    background: linear-gradient(135deg, var(--primary-dark), var(--primary-navy));
    border-radius: var(--radius-xl);
}

.shipping-flow-item {
    text-align: center;
    padding: 1rem;
    min-width: 120px;
}

.flow-icon {
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(77, 168, 218, 0.2);
    border-radius: 50%;
    font-size: 1.2rem;
    color: var(--accent-light);
    margin: 0 auto 0.75rem;
}

.flow-content h3 {
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--text-light);
    margin-bottom: 0.25rem;
}

.flow-content p {
    font-size: 0.75rem;
    color: var(--text-muted);
}

.flow-arrow {
    color: var(--accent-light);
    font-size: 1rem;
    opacity: 0.5;
}

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

.shipping-info-card {
    background: #ffffff;
    border-radius: var(--radius-xl);
    padding: 2rem;
    border: 1px solid var(--border-light);
    box-shadow: var(--shadow-soft);
}

.shipping-info-card .info-icon {
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--surface-accent);
    border-radius: var(--radius-lg);
    font-size: 1.25rem;
    color: var(--accent);
    margin-bottom: 1rem;
}

.shipping-info-card h3 {
    font-family: var(--font-display);
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 0.5rem;
}

.shipping-info-card p {
    font-size: 0.9rem;
    color: var(--text-body);
    line-height: 1.6;
    margin-bottom: 1rem;
}

.weight-tiers {
    display: flex;
    gap: 0.75rem;
}

.tier {
    flex: 1;
    text-align: center;
    padding: 0.75rem;
    background: var(--surface-blue-light);
    border-radius: var(--radius-md);
}

.tier-weight {
    display: block;
    font-weight: 700;
    color: var(--accent-dark);
    font-size: 0.85rem;
}

.tier-label {
    font-size: 0.75rem;
    color: var(--text-body);
    opacity: 0.7;
}

.delivery-times {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.time-row {
    display: flex;
    justify-content: space-between;
    padding: 0.5rem 0;
    font-size: 0.85rem;
    color: var(--text-body);
    border-bottom: 1px solid var(--border-light);
}

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

.info-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 0.4rem;
}

.info-list li {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.85rem;
    color: var(--text-body);
}

.info-list li i {
    color: var(--success);
}

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

.payment-section-card {
    background: #ffffff;
    border-radius: var(--radius-xl);
    overflow: hidden;
    box-shadow: var(--shadow-soft);
    border: 1px solid var(--border-light);
}

.payment-header {
    padding: 1.25rem 1.5rem;
    background: var(--accent);
    color: var(--text-light);
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.payment-header.seller {
    background: var(--primary-dark);
}

.payment-header h3 {
    font-family: var(--font-display);
    font-size: 1.15rem;
    font-weight: 700;
}

.payment-content {
    padding: 1.5rem;
}

.payment-points {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.payment-points li {
    display: flex;
    gap: 0.75rem;
    align-items: flex-start;
}

.payment-points li > i {
    color: var(--success);
    font-size: 1rem;
    margin-top: 0.2rem;
    flex-shrink: 0;
}

.payment-points li strong {
    display: block;
    font-size: 0.95rem;
    color: var(--text-dark);
    margin-bottom: 0.125rem;
}

.payment-points li p {
    font-size: 0.85rem;
    color: var(--text-body);
    line-height: 1.5;
}

.payment-methods {
    display: flex;
    gap: 1rem;
    font-size: 1.75rem;
    color: var(--text-body);
    opacity: 0.5;
}

.commission-visual .commission-circle {
    text-align: center;
    padding: 2rem;
    background: var(--surface-accent);
    border-radius: 50%;
    width: 120px;
    height: 120px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    margin: 0 auto;
}

.commission-circle .big-number {
    font-family: var(--font-display);
    font-size: 2rem;
    font-weight: 800;
    color: var(--accent-dark);
}

.commission-circle .label {
    font-size: 0.75rem;
    color: var(--text-body);
    font-weight: 600;
}

/* FAQ Accordion */
.how-faq {
    padding: var(--spacing-4xl) 0;
    background: var(--surface-white);
}

.faq-accordion {
    max-width: 800px;
    margin: 0 auto 2rem;
}

.faq-accordion-item {
    margin-bottom: 0.75rem;
    background: #ffffff;
    border-radius: var(--radius-lg);
    border: 1px solid var(--border-light);
    overflow: hidden;
}

.faq-accordion-header {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.25rem 1.5rem;
    background: none;
    border: none;
    cursor: pointer;
    font-family: var(--font-primary);
    font-size: 1rem;
    font-weight: 600;
    color: var(--text-dark);
    text-align: left;
    transition: all var(--transition-base);
}

.faq-accordion-header:hover {
    background: var(--surface-blue-light);
}

.faq-accordion-header i {
    color: var(--accent);
    transition: transform var(--transition-base);
}

.faq-accordion-item.active .faq-accordion-header i {
    transform: rotate(180deg);
}

.faq-accordion-body {
    max-height: 0;
    overflow: hidden;
    transition: max-height var(--transition-slow);
}

.faq-accordion-item.active .faq-accordion-body {
    max-height: 500px;
}

.faq-accordion-body p {
    padding: 0 1.5rem 1.25rem;
    font-size: 0.95rem;
    color: var(--text-body);
    line-height: 1.7;
}

/* ========================================
   Countries Page
   ======================================== */
.countries-overview {
    padding: var(--spacing-4xl) 0;
    background: #ffffff;
}

.overview-intro {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 3rem;
}

.overview-intro h2 {
    font-family: var(--font-display);
    font-size: clamp(1.5rem, 3vw, 2.25rem);
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 0.75rem;
}

.overview-intro p {
    font-size: 1.05rem;
    color: var(--text-body);
    line-height: 1.7;
}

.country-region {
    margin-bottom: 3rem;
}

.region-header {
    margin-bottom: 1.5rem;
}

.region-header h3 {
    font-family: var(--font-display);
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--text-dark);
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.region-header h3 i {
    color: var(--accent);
}

.region-header p {
    font-size: 0.95rem;
    color: var(--text-body);
    opacity: 0.75;
    margin-top: 0.25rem;
}

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

.country-detail-card {
    background: var(--surface-white);
    border-radius: var(--radius-xl);
    padding: 1.5rem;
    border: 1px solid var(--border-light);
    transition: all var(--transition-base);
}

.country-detail-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-card);
    border-color: var(--accent);
}

.country-detail-card.featured {
    position: relative;
    border-color: var(--accent);
    box-shadow: var(--shadow-accent);
}

.featured-badge {
    position: absolute;
    top: -10px;
    right: 1rem;
    padding: 0.25rem 0.75rem;
    background: var(--gradient-accent);
    color: var(--text-light);
    font-size: 0.7rem;
    font-weight: 700;
    text-transform: uppercase;
    border-radius: var(--radius-full);
}

.country-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1rem;
}

.country-flag-large {
    font-size: 2.5rem;
}

.country-title h4 {
    font-family: var(--font-display);
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--text-dark);
}

.country-currency-tag {
    font-size: 0.8rem;
    color: var(--accent-dark);
    font-weight: 500;
}

.country-info {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    margin-bottom: 1rem;
}

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

.country-info .info-item i {
    color: var(--accent);
    font-size: 0.85rem;
    width: 16px;
    text-align: center;
}

.country-info .info-item.highlight {
    color: var(--success);
    font-weight: 600;
}

.country-info .info-item.highlight i {
    color: var(--success);
}

.country-benefits {
    display: flex;
    gap: 0.5rem;
    flex-wrap: wrap;
}

.benefit-tag {
    padding: 0.2rem 0.6rem;
    background: var(--surface-accent);
    color: var(--accent-dark);
    border-radius: var(--radius-full);
    font-size: 0.7rem;
    font-weight: 500;
}

/* Currency Advantage */
.currency-advantage {
    padding: var(--spacing-4xl) 0;
    background: var(--surface-blue-light);
}

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

.currency-card {
    background: #ffffff;
    border-radius: var(--radius-xl);
    padding: 2rem;
    text-align: center;
    border: 1px solid var(--border-light);
    transition: all var(--transition-base);
    box-shadow: var(--shadow-soft);
}

.currency-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-card);
}

.currency-flag {
    font-size: 2.5rem;
    margin-bottom: 0.75rem;
}

.currency-name {
    font-family: var(--font-display);
    font-size: 1rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 0.5rem;
}

.currency-rate {
    font-size: 0.85rem;
    color: var(--accent-dark);
    font-weight: 600;
    margin-bottom: 1rem;
}

.currency-example {
    padding: 0.75rem;
    background: var(--surface-blue-light);
    border-radius: var(--radius-md);
    font-size: 0.8rem;
    color: var(--text-body);
}

.currency-example strong {
    display: block;
    color: var(--success);
    font-size: 0.85rem;
    margin-top: 0.25rem;
}

/* ========================================
   About Page
   ======================================== */
.about-mission {
    padding: var(--spacing-4xl) 0;
    background: #ffffff;
}

.mission-grid {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 3rem;
    align-items: start;
}

.mission-content h2 {
    font-family: var(--font-display);
    font-size: clamp(1.5rem, 3vw, 2.25rem);
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 1rem;
}

.mission-text {
    font-size: 1.05rem;
    color: var(--text-body);
    line-height: 1.8;
    margin-bottom: 1rem;
}

.mission-values {
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
    margin-top: 2rem;
}

.mission-values .value-item,
.value-item {
    display: flex;
    gap: 1rem;
    align-items: flex-start;
}

.value-icon {
    width: 45px;
    height: 45px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--surface-accent);
    border-radius: var(--radius-lg);
    font-size: 1.1rem;
    color: var(--accent);
    flex-shrink: 0;
}

.value-content h4 {
    font-family: var(--font-display);
    font-size: 1rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 0.2rem;
}

.value-content p {
    font-size: 0.9rem;
    color: var(--text-body);
    line-height: 1.5;
}

.mission-visual {
    position: sticky;
    top: 100px;
}

.about-stats {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
}

.stat-card {
    text-align: center;
    padding: 1.5rem;
    background: var(--surface-white);
    border-radius: var(--radius-xl);
    border: 1px solid var(--border-light);
    transition: all var(--transition-base);
}

.stat-card:hover {
    box-shadow: var(--shadow-card);
    border-color: var(--accent);
}

.stat-card .stat-icon {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--surface-accent);
    border-radius: 50%;
    font-size: 1rem;
    color: var(--accent);
    margin: 0 auto 0.75rem;
}

.stat-card .stat-number {
    font-family: var(--font-display);
    font-size: 2rem;
    font-weight: 800;
    color: var(--accent-dark);
}

.stat-card .stat-label {
    font-size: 0.8rem;
    color: var(--text-body);
    opacity: 0.75;
    margin-top: 0.25rem;
}

/* About CEO */
.about-ceo {
    padding: var(--spacing-4xl) 0;
    background: linear-gradient(135deg, var(--primary-dark), var(--primary-navy));
    color: var(--text-light);
}

.ceo-card {
    display: grid;
    grid-template-columns: 1.5fr 1fr;
    gap: 3rem;
    align-items: center;
}

.ceo-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1rem;
    background: rgba(77, 168, 218, 0.2);
    border: 1px solid rgba(77, 168, 218, 0.3);
    border-radius: var(--radius-full);
    color: var(--accent-light);
    font-size: 0.85rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
}

.ceo-content blockquote {
    font-style: italic;
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--text-muted);
    border-left: 3px solid var(--accent);
    padding-left: 1.5rem;
    margin-bottom: 1.5rem;
}

.ceo-philosophy {
    font-size: 0.95rem;
    line-height: 1.7;
    color: var(--text-subtle);
}

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

.ceo-avatar {
    width: 100px;
    height: 100px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(77, 168, 218, 0.2);
    border: 2px solid rgba(77, 168, 218, 0.4);
    border-radius: 50%;
    color: var(--accent-light);
    font-size: 2.5rem;
    margin: 0 auto 1rem;
}

.ceo-info h3 {
    font-family: var(--font-display);
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--text-light);
    margin-bottom: 0.25rem;
}

.ceo-title {
    display: block;
    font-size: 0.9rem;
    color: var(--accent-light);
    margin-bottom: 1rem;
}

.ceo-contact {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.ceo-contact a {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    font-size: 0.85rem;
    color: var(--text-muted);
    transition: color var(--transition-base);
}

.ceo-contact a:hover {
    color: var(--accent-light);
}

/* About Values */
.about-values {
    padding: var(--spacing-4xl) 0;
    background: var(--surface-white);
}

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

.value-card {
    text-align: center;
    padding: 2rem 1.5rem;
    background: #ffffff;
    border-radius: var(--radius-xl);
    border: 1px solid var(--border-light);
    transition: all var(--transition-base);
}

.value-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-card);
    border-color: var(--accent);
}

.value-card .value-icon {
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--surface-accent);
    border-radius: var(--radius-lg);
    font-size: 1.5rem;
    color: var(--accent);
    margin: 0 auto 1rem;
}

.value-card h3 {
    font-family: var(--font-display);
    font-size: 1.05rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 0.5rem;
}

.value-card p {
    font-size: 0.85rem;
    color: var(--text-body);
    line-height: 1.5;
}

/* About Why */
.about-why {
    padding: var(--spacing-4xl) 0;
    background: var(--surface-blue-light);
}

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

.why-card {
    background: #ffffff;
    border-radius: var(--radius-xl);
    padding: 2rem;
    text-align: center;
    border: 1px solid var(--border-light);
    transition: all var(--transition-base);
    box-shadow: var(--shadow-soft);
}

.why-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-card);
    border-color: var(--accent);
}

.why-icon {
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--surface-accent);
    border-radius: var(--radius-lg);
    font-size: 1.5rem;
    color: var(--accent);
    margin: 0 auto 1rem;
}

.why-card h3 {
    font-family: var(--font-display);
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 0.5rem;
}

.why-card p {
    font-size: 0.9rem;
    color: var(--text-body);
    line-height: 1.6;
}

/* About Journey */
.about-journey {
    padding: var(--spacing-4xl) 0;
    background: #ffffff;
}

.timeline {
    position: relative;
    max-width: 800px;
    margin: 0 auto;
    padding-left: 3rem;
}

.timeline::before {
    content: '';
    position: absolute;
    left: 15px;
    top: 0;
    bottom: 0;
    width: 2px;
    background: var(--border-accent);
}

.about-journey .timeline-item {
    position: relative;
    margin-bottom: 2.5rem;
    padding-left: 2rem;
}

.about-journey .timeline-item:last-child {
    margin-bottom: 0;
}

.timeline-marker {
    position: absolute;
    left: -3rem;
    top: 0;
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--gradient-accent);
    border-radius: 50%;
    color: var(--text-light);
    font-size: 0.8rem;
    z-index: 1;
}

.about-journey .timeline-content {
    background: var(--surface-white);
    border-radius: var(--radius-xl);
    padding: 1.5rem;
    border: 1px solid var(--border-light);
    transition: all var(--transition-base);
}

.about-journey .timeline-content:hover {
    box-shadow: var(--shadow-card);
    border-color: var(--accent);
}

.about-journey .timeline-content h3 {
    font-family: var(--font-display);
    font-size: 1.15rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 0.5rem;
}

.about-journey .timeline-content p {
    font-size: 0.9rem;
    color: var(--text-body);
    line-height: 1.6;
}

/* About Vision */
.about-vision {
    padding: var(--spacing-4xl) 0;
    background: linear-gradient(135deg, var(--primary-dark), var(--primary-navy));
    text-align: center;
    color: var(--text-light);
}

.about-vision h2 {
    font-family: var(--font-display);
    font-size: clamp(1.5rem, 3vw, 2.25rem);
    font-weight: 700;
    color: var(--text-light);
    margin-bottom: 1rem;
}

.about-vision p {
    font-size: 1.15rem;
    color: var(--text-muted);
    line-height: 1.8;
    max-width: 700px;
    margin: 0 auto;
}

/* ========================================
   CTA Contact Links
   ======================================== */
.cta-contact {
    margin-top: 2rem;
    padding-top: 1.5rem;
    border-top: 1px solid rgba(255, 255, 255, 0.15);
}

.cta-contact p {
    font-size: 0.9rem;
    color: var(--text-subtle);
    margin-bottom: 0.75rem;
}

.contact-links {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    flex-wrap: wrap;
}

.contact-links a {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--accent-light);
    font-size: 0.9rem;
    transition: color var(--transition-base);
}

.contact-links a:hover {
    color: var(--text-light);
}

/* Company Reg in Footer */
.company-reg {
    font-size: 0.8rem;
    color: var(--text-subtle);
    font-family: monospace;
    letter-spacing: 0.05em;
}

/* ========================================
   Contact Page
   ======================================== */
.contact-section {
    padding: var(--spacing-4xl) 0;
    background: #ffffff;
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: start;
}

.contact-info h2 {
    font-family: var(--font-display);
    font-size: clamp(1.5rem, 3vw, 2.25rem);
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 0.75rem;
}

.contact-info > p {
    font-size: 1rem;
    color: var(--text-body);
    line-height: 1.7;
    margin-bottom: 2rem;
}

.contact-methods {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.contact-method {
    display: flex;
    gap: 1rem;
    align-items: flex-start;
}

.method-icon {
    width: 45px;
    height: 45px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--surface-accent);
    border-radius: var(--radius-lg);
    color: var(--accent);
    font-size: 1.1rem;
    flex-shrink: 0;
}

.method-content h4 {
    font-family: var(--font-display);
    font-size: 1rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 0.25rem;
}

.method-content a {
    display: block;
    font-size: 0.9rem;
    color: var(--accent-dark);
    transition: color var(--transition-base);
}

.method-content a:hover {
    color: var(--accent);
}

.method-content p {
    font-size: 0.8rem;
    color: var(--text-body);
    opacity: 0.75;
    margin-top: 0.2rem;
}

.ceo-direct {
    padding: 1.5rem;
    background: var(--surface-blue-light);
    border-radius: var(--radius-xl);
    border: 1px solid var(--border-accent);
}

.ceo-direct .ceo-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.4rem 0.85rem;
    background: var(--surface-accent);
    border-radius: var(--radius-full);
    color: var(--accent-dark);
    font-size: 0.8rem;
    font-weight: 600;
    margin-bottom: 0.75rem;
}

.ceo-direct p {
    font-size: 0.9rem;
    color: var(--text-body);
    line-height: 1.6;
}

.contact-form-container .form-card {
    position: sticky;
    top: 100px;
}

.contact-form .form-group select {
    width: 100%;
    padding: 0.75rem 1rem;
    border: 1px solid var(--border-light);
    border-radius: var(--radius-md);
    font-family: var(--font-primary);
    font-size: 0.95rem;
    color: var(--text-dark);
    background: #ffffff;
    transition: all var(--transition-base);
    appearance: none;
    -webkit-appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%236b7280' d='M6 8L1 3h10z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 1rem center;
}

.contact-form .form-group select:focus {
    outline: none;
    border-color: var(--accent);
    box-shadow: 0 0 0 3px rgba(77, 168, 218, 0.15);
}

.form-success {
    text-align: center;
    padding: 2rem;
}

.form-success .success-icon {
    font-size: 3rem;
    color: var(--success);
    margin-bottom: 1rem;
}

.form-success h3 {
    font-family: var(--font-display);
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 0.75rem;
}

.form-success p {
    font-size: 0.95rem;
    color: var(--text-body);
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

/* Help Topics */
.help-topics {
    padding: var(--spacing-4xl) 0;
    background: var(--surface-blue-light);
}

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

.topic-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 2rem 1.5rem;
    background: #ffffff;
    border-radius: var(--radius-xl);
    border: 1px solid var(--border-light);
    transition: all var(--transition-base);
    text-decoration: none;
    box-shadow: var(--shadow-soft);
}

.topic-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-card);
    border-color: var(--accent);
}

.topic-icon {
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--surface-accent);
    border-radius: var(--radius-lg);
    font-size: 1.5rem;
    color: var(--accent);
    margin-bottom: 1rem;
}

.topic-card h3 {
    font-family: var(--font-display);
    font-size: 1.05rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 0.5rem;
}

.topic-card p {
    font-size: 0.85rem;
    color: var(--text-body);
}

/* ========================================
   Shipping Page
   ======================================== */
.shipping-overview {
    padding: var(--spacing-4xl) 0;
    background: #ffffff;
}

.shipping-pricing {
    padding: var(--spacing-4xl) 0;
    background: var(--surface-blue-light);
}

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

.tier-card {
    position: relative;
    background: #ffffff;
    border-radius: var(--radius-xl);
    padding: 2rem;
    text-align: center;
    border: 1px solid var(--border-light);
    transition: all var(--transition-base);
    box-shadow: var(--shadow-soft);
}

.tier-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-card);
    border-color: var(--accent);
}

.tier-card.featured {
    border-color: var(--accent);
    box-shadow: var(--shadow-accent);
}

.tier-badge {
    position: absolute;
    top: -10px;
    left: 50%;
    transform: translateX(-50%);
    padding: 0.25rem 1rem;
    background: var(--gradient-accent);
    color: var(--text-light);
    font-size: 0.7rem;
    font-weight: 700;
    text-transform: uppercase;
    border-radius: var(--radius-full);
    white-space: nowrap;
}

.tier-icon {
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--surface-accent);
    border-radius: 50%;
    font-size: 1.5rem;
    color: var(--accent);
    margin: 0 auto 1rem;
}

.tier-card h3 {
    font-family: var(--font-display);
    font-size: 1.25rem;
    font-weight: 800;
    color: var(--text-dark);
    margin-bottom: 0.25rem;
}

.tier-description {
    font-size: 0.85rem;
    color: var(--text-body);
    opacity: 0.75;
    margin-bottom: 1.25rem;
}

.tier-items {
    list-style: none;
    text-align: left;
    margin-bottom: 1.25rem;
}

.tier-items li {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.4rem 0;
    font-size: 0.9rem;
    color: var(--text-body);
}

.tier-items li i {
    color: var(--success);
    font-size: 0.8rem;
}

.tier-tip {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem;
    background: var(--surface-accent);
    border-radius: var(--radius-md);
    font-size: 0.8rem;
    color: var(--accent-dark);
    font-weight: 500;
}

.tier-tip i {
    color: var(--accent);
}

.shipping-note {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    margin-top: 2rem;
    padding: 1.25rem;
    background: var(--surface-accent);
    border-radius: var(--radius-lg);
    border: 1px solid var(--border-accent);
}

.shipping-note > i {
    color: var(--accent);
    font-size: 1.1rem;
    margin-top: 0.15rem;
    flex-shrink: 0;
}

.shipping-note p {
    font-size: 0.9rem;
    color: var(--text-body);
    line-height: 1.6;
}

/* Delivery Times */
.delivery-times {
    padding: var(--spacing-4xl) 0;
    background: #ffffff;
}

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

.time-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 1.5rem;
    background: var(--surface-white);
    border-radius: var(--radius-xl);
    border: 1px solid var(--border-light);
    transition: all var(--transition-base);
}

.time-card:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-card);
    border-color: var(--accent);
}

.time-card .flag {
    font-size: 2rem;
    margin-bottom: 0.5rem;
}

.time-card h4 {
    font-family: var(--font-display);
    font-size: 0.95rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 0.35rem;
}

.time-card .days {
    font-size: 0.85rem;
    color: var(--accent-dark);
    font-weight: 600;
}

.times-disclaimer {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    margin-top: 2rem;
    padding: 1rem 1.25rem;
    background: var(--surface-blue-light);
    border-radius: var(--radius-lg);
    border: 1px solid var(--border-light);
}

.times-disclaimer > i {
    color: var(--accent);
    flex-shrink: 0;
    margin-top: 0.15rem;
}

.times-disclaimer p {
    font-size: 0.85rem;
    color: var(--text-body);
    line-height: 1.6;
}

/* Shipping Policies */
.shipping-policies {
    padding: var(--spacing-4xl) 0;
    background: var(--surface-blue-light);
}

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

.policy-card {
    background: #ffffff;
    border-radius: var(--radius-xl);
    padding: 2rem;
    text-align: center;
    border: 1px solid var(--border-light);
    transition: all var(--transition-base);
    box-shadow: var(--shadow-soft);
}

.policy-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-card);
    border-color: var(--accent);
}

.policy-icon {
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--surface-accent);
    border-radius: var(--radius-lg);
    font-size: 1.5rem;
    color: var(--accent);
    margin: 0 auto 1rem;
}

.policy-card h3 {
    font-family: var(--font-display);
    font-size: 1.05rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 0.5rem;
}

.policy-card p {
    font-size: 0.85rem;
    color: var(--text-body);
    line-height: 1.5;
}

/* ========================================
   FAQ Page
   ======================================== */
.faq-section {
    padding: var(--spacing-4xl) 0;
    background: #ffffff;
}

.faq-tabs {
    display: flex;
    gap: 0.5rem;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 2.5rem;
}

.faq-tab {
    padding: 0.6rem 1.5rem;
    border: 1px solid var(--border-light);
    border-radius: var(--radius-full);
    background: #ffffff;
    font-family: var(--font-primary);
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--text-body);
    cursor: pointer;
    transition: all var(--transition-base);
}

.faq-tab:hover {
    border-color: var(--accent);
    color: var(--accent-dark);
}

.faq-tab.active {
    background: var(--accent);
    border-color: var(--accent);
    color: var(--text-light);
}

.faq-panel {
    display: none;
}

.faq-panel.active {
    display: block;
}

/* ========================================
   Responsive Design
   ======================================== */
@media (max-width: 1024px) {
    .hero-content {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 2.5rem;
    }

    .hero-text {
        order: 1;
    }

    .hero-visual {
        order: 0;
    }

    .hero-description {
        margin-left: auto;
        margin-right: auto;
    }

    .hero-cta {
        justify-content: center;
    }

    .hero-countries {
        justify-content: center;
    }

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

    .features-grid.five-col {
        grid-template-columns: repeat(3, 1fr);
    }

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

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

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

    .footer-grid {
        grid-template-columns: 1fr 1fr;
        gap: 2rem;
    }

    /* Sub-page responsive - 1024px */
    .page-hero h1 {
        font-size: 2rem;
    }

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

    .commission-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

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

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

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

    .trust-content {
        grid-template-columns: 1fr;
        text-align: center;
    }

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

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

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

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

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

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

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

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

    .mission-visual {
        position: static;
    }

    .ceo-card {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .values-grid {
        grid-template-columns: repeat(3, 1fr);
    }

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

    /* Contact, Shipping, FAQ - 1024px */
    .contact-grid {
        grid-template-columns: 1fr;
    }

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

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

    .tier-card.featured {
        grid-column: 1 / -1;
    }

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

    .times-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 768px) {
    .nav-menu,
    .nav-actions {
        display: none;
    }

    .hamburger {
        display: flex;
    }

    .hero {
        min-height: auto;
        padding-top: 100px;
        padding-bottom: 4rem;
    }

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

    .hero-subtitle {
        font-size: 1.2rem;
    }

    .globe-image {
        width: 200px;
        height: 200px;
    }

    .hero-globe {
        width: 250px;
        height: 250px;
    }

    .features-grid.four-col,
    .features-grid.five-col {
        grid-template-columns: 1fr;
    }

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

    .ecosystem-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

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

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

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

    .footer-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .hero-scroll-indicator {
        display: none;
    }

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

    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }

    /* Sub-page responsive - 768px */
    .page-hero {
        padding: 120px 0 3rem;
    }

    .page-hero h1 {
        font-size: 1.75rem;
    }

    .page-hero p {
        font-size: 1rem;
    }

    .benefits-showcase {
        grid-template-columns: 1fr;
    }

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

    .commission-calculator {
        padding: 1.5rem;
    }

    .process-timeline {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .timeline-step {
        flex-direction: row;
        text-align: left;
        gap: 1.25rem;
    }

    .timeline-number {
        width: 50px;
        height: 50px;
        font-size: 1rem;
        flex-shrink: 0;
    }

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

    .seller-categories-grid {
        grid-template-columns: 1fr;
    }

    .trust-content {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .trust-stats {
        justify-content: center;
    }

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

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

    .registration-benefits {
        order: 1;
    }

    .form-card {
        order: 0;
    }

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

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

    .quick-nav-grid {
        grid-template-columns: 1fr;
    }

    .steps-visual {
        gap: 1.5rem;
    }

    .step-visual-item {
        flex-direction: column;
        text-align: center;
    }

    .step-number {
        width: 50px;
        height: 50px;
        font-size: 1.1rem;
    }

    .step-content {
        padding-right: 0;
    }

    .step-arrow {
        display: none;
    }

    .shipping-flow {
        flex-direction: column;
        gap: 1rem;
    }

    .shipping-flow .flow-arrow {
        transform: rotate(90deg);
    }

    .shipping-info-grid {
        grid-template-columns: 1fr;
    }

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

    .countries-detail-grid {
        grid-template-columns: 1fr;
    }

    .currency-comparison {
        grid-template-columns: 1fr;
    }

    .mission-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .mission-visual {
        position: static;
    }

    .about-stats {
        grid-template-columns: 1fr 1fr;
    }

    .ceo-card {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 2rem;
    }

    .ceo-content blockquote {
        font-size: 1rem;
    }

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

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

    .timeline {
        padding-left: 2.5rem;
    }

    .contact-links {
        flex-direction: column;
        align-items: center;
        gap: 0.75rem;
    }

    .about-vision p {
        font-size: 1rem;
    }

    /* Contact, Shipping, FAQ - 768px */
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .contact-form-container .form-card {
        position: static;
    }

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

    .weight-tiers {
        grid-template-columns: 1fr;
    }

    .tier-card.featured {
        grid-column: auto;
    }

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

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

    .faq-tabs {
        gap: 0.35rem;
    }

    .faq-tab {
        padding: 0.5rem 1rem;
        font-size: 0.8rem;
    }
}

@media (max-width: 480px) {
    .hero-poem {
        font-size: 0.85rem;
    }

    .hero-title {
        font-size: 1.75rem;
    }

    .hero-description {
        font-size: 0.95rem;
    }

    .btn-lg {
        padding: 0.75rem 1.25rem;
        font-size: 0.9rem;
    }

    .announcement-bar {
        font-size: 0.75rem;
    }

    .announcement-bar .divider {
        display: none;
    }

    /* Sub-page responsive - 480px */
    .page-hero {
        padding: 100px 0 2rem;
    }

    .page-hero h1 {
        font-size: 1.5rem;
    }

    .page-hero p {
        font-size: 0.9rem;
    }

    .page-hero .hero-cta {
        flex-direction: column;
        gap: 0.75rem;
    }

    .benefit-card {
        padding: 1.5rem;
    }

    .benefit-icon {
        width: 50px;
        height: 50px;
        font-size: 1.25rem;
    }

    .commission-details {
        gap: 0.75rem;
    }

    .detail-item {
        padding: 0.75rem;
    }

    .timeline-step {
        padding: 1rem;
    }

    .reach-card {
        padding: 1.5rem;
    }

    .form-card {
        padding: 1.5rem;
    }

    .form-group label {
        font-size: 0.85rem;
    }

    .form-group input,
    .form-group select,
    .form-group textarea {
        padding: 0.65rem 0.85rem;
        font-size: 0.9rem;
    }

    .phone-input {
        flex-direction: column;
    }

    .phone-input select {
        width: 100%;
    }

    .quick-nav-card {
        padding: 1.5rem;
    }

    .step-number {
        width: 40px;
        height: 40px;
        font-size: 1rem;
    }

    .shipping-flow-step {
        padding: 1rem;
    }

    .faq-accordion-header {
        padding: 1rem 1.25rem;
        font-size: 0.9rem;
    }

    .faq-accordion-body p {
        padding: 0 1.25rem 1rem;
        font-size: 0.85rem;
    }

    .country-detail-card {
        padding: 1.25rem;
    }

    .currency-card {
        padding: 1.5rem;
    }

    .about-stats {
        grid-template-columns: 1fr;
    }

    .stat-card {
        padding: 1.25rem;
    }

    .ceo-avatar {
        width: 80px;
        height: 80px;
        font-size: 2rem;
    }

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

    .value-card {
        padding: 1.5rem 1rem;
    }

    .why-card {
        padding: 1.5rem;
    }

    .timeline {
        padding-left: 2rem;
    }

    .timeline-marker {
        width: 26px;
        height: 26px;
        font-size: 0.7rem;
        left: -2rem;
    }

    .about-journey .timeline-content {
        padding: 1.25rem;
    }

    .about-vision h2 {
        font-size: 1.5rem;
    }

    .about-vision p {
        font-size: 0.9rem;
    }

    .contact-links a {
        font-size: 0.8rem;
    }

    /* Contact, Shipping, FAQ - 480px */
    .contact-method {
        flex-direction: column;
        text-align: center;
        align-items: center;
    }

    .method-content a {
        text-align: center;
    }

    .topic-card {
        padding: 1.5rem 1rem;
    }

    .tier-card {
        padding: 1.5rem;
    }

    .time-card {
        padding: 1rem;
    }

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

    .policy-card {
        padding: 1.5rem;
    }

    .faq-tab {
        padding: 0.4rem 0.75rem;
        font-size: 0.75rem;
    }

    .faq-accordion-header {
        padding: 1rem;
        font-size: 0.85rem;
    }

    .faq-accordion-body p {
        padding: 0 1rem 1rem;
        font-size: 0.85rem;
    }

    .ceo-direct {
        padding: 1.25rem;
    }
}
