/* ============================================
   AQUA TRADE - Premium Institutional Website
   Design System: Ocean Tech
   ============================================ */

/* ---------- CSS Custom Properties ---------- */
:root {
    /* Primary Colors */
    --navy-deep: #0a1628;
    --navy: #0d1f3c;
    --navy-light: #142d54;
    --navy-mid: #1a3a6b;

    /* Accent Colors */
    --ice-white: #f0f4f8;
    --white: #ffffff;
    --silver: #b8c4d4;
    --graphite: #6b7a8d;
    --graphite-light: #8c9aaf;

    /* Highlight */
    --accent-blue: #2d8cf0;
    --accent-cyan: #00d4ff;
    --accent-gradient: linear-gradient(135deg, #2d8cf0 0%, #00d4ff 100%);
    --gold: #c9a84c;

    /* Status */
    --success: #34d399;
    --whatsapp: #25d366;

    /* Typography */
    --font-heading: 'Outfit', sans-serif;
    --font-body: 'Inter', sans-serif;
    --font-jp: 'Noto Sans JP', sans-serif;

    /* Spacing */
    --section-padding: 120px;
    --container-width: 1200px;
    --container-padding: 24px;

    /* Effects */
    --glass-bg: rgba(10, 22, 40, 0.7);
    --glass-border: rgba(255, 255, 255, 0.08);
    --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.1);
    --shadow-md: 0 8px 32px rgba(0, 0, 0, 0.15);
    --shadow-lg: 0 16px 64px rgba(0, 0, 0, 0.2);
    --shadow-glow: 0 0 40px rgba(45, 140, 240, 0.15);

    /* Transitions */
    --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
    --ease-smooth: cubic-bezier(0.4, 0, 0.2, 1);
    --transition-fast: 0.2s var(--ease-smooth);
    --transition-base: 0.4s var(--ease-out);
    --transition-slow: 0.8s var(--ease-out);

    /* Border Radius */
    --radius-sm: 6px;
    --radius-md: 12px;
    --radius-lg: 20px;
    --radius-xl: 30px;
}

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

html {
    scroll-behavior: smooth;
    font-size: 16px;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

body {
    font-family: var(--font-body);
    background-color: var(--navy-deep);
    color: var(--ice-white);
    line-height: 1.7;
    overflow-x: hidden;
}

/* Japanese font override */
[data-lang="ja"] body {
    font-family: var(--font-jp), var(--font-body);
}

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

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

ul,
ol {
    list-style: none;
}

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

input,
textarea {
    font-family: inherit;
    border: none;
    outline: none;
    background: none;
}

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

/* ---------- Scrollbar ---------- */
::-webkit-scrollbar {
    width: 6px;
}

::-webkit-scrollbar-track {
    background: var(--navy-deep);
}

::-webkit-scrollbar-thumb {
    background: var(--navy-mid);
    border-radius: 3px;
}

::-webkit-scrollbar-thumb:hover {
    background: var(--accent-blue);
}

/* ---------- Selection ---------- */
::selection {
    background: var(--accent-blue);
    color: var(--white);
}

/* ============================================
   NAVIGATION
   ============================================ */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: 20px 0;
    transition: all var(--transition-base);
}

.navbar.scrolled {
    padding: 12px 0;
    background: rgba(10, 22, 40, 0.92);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--glass-border);
}

.nav-container {
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 var(--container-padding);
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.nav-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    z-index: 1001;
}

.logo-icon {
    width: 160px;
    height: 50px;
    flex-shrink: 0;
    transition: transform var(--transition-base);
}

.logo-icon img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    object-position: left center;
}

.nav-logo:hover .logo-icon {
    transform: rotate(15deg);
}

.logo-text {
    font-family: var(--font-heading);
    font-size: 1.3rem;
    font-weight: 700;
    letter-spacing: 3px;
    color: var(--white);
}

.logo-accent {
    color: var(--accent-cyan);
    font-weight: 300;
}

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

.nav-link {
    font-size: 0.82rem;
    font-weight: 500;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: var(--silver);
    position: relative;
    padding: 4px 0;
    transition: color var(--transition-fast);
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 1.5px;
    background: var(--accent-gradient);
    transition: width var(--transition-base);
}

.nav-link:hover,
.nav-link.active {
    color: var(--white);
}

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

.nav-right {
    display: flex;
    align-items: center;
    gap: 16px;
    z-index: 1001;
}

/* Language Selector */
.lang-selector {
    position: relative;
}

.lang-btn {
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 6px 12px;
    border: 1px solid var(--glass-border);
    border-radius: var(--radius-sm);
    color: var(--silver);
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 1px;
    transition: all var(--transition-fast);
    background: rgba(255, 255, 255, 0.03);
}

.lang-btn:hover {
    color: var(--white);
    border-color: rgba(255, 255, 255, 0.2);
    background: rgba(255, 255, 255, 0.06);
}

.lang-arrow {
    width: 12px;
    height: 12px;
    transition: transform var(--transition-fast);
}

.lang-selector.open .lang-arrow {
    transform: rotate(180deg);
}

.lang-dropdown {
    position: absolute;
    top: calc(100% + 8px);
    right: 0;
    min-width: 160px;
    background: var(--navy);
    border: 1px solid var(--glass-border);
    border-radius: var(--radius-md);
    padding: 8px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all var(--transition-fast);
    box-shadow: var(--shadow-lg);
    backdrop-filter: blur(20px);
    z-index: 9999;
}

.lang-selector.open .lang-dropdown {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.lang-option {
    display: flex;
    align-items: center;
    gap: 10px;
    width: 100%;
    padding: 10px 14px;
    border-radius: var(--radius-sm);
    font-size: 0.85rem;
    color: var(--silver);
    transition: all var(--transition-fast);
}

.lang-option:hover {
    background: rgba(255, 255, 255, 0.06);
    color: var(--white);
}

.lang-option.active {
    background: rgba(45, 140, 240, 0.15);
    color: var(--accent-cyan);
}

.lang-flag {
    font-size: 1.1rem;
}

/* Mobile Menu Toggle */
.nav-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    width: 24px;
    padding: 4px 0;
}

.nav-toggle span {
    display: block;
    height: 2px;
    background: var(--white);
    border-radius: 2px;
    transition: all var(--transition-fast);
    transform-origin: center;
}

.nav-toggle.active span:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
}

.nav-toggle.active span:nth-child(2) {
    opacity: 0;
    transform: scaleX(0);
}

.nav-toggle.active span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
}

/* ============================================
   HERO SECTION
   ============================================ */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

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

.hero-bg video,
.hero-bg img,
.hero-bg-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center 30%;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background:
        linear-gradient(180deg,
            rgba(10, 22, 40, 0.6) 0%,
            rgba(10, 22, 40, 0.45) 35%,
            rgba(10, 22, 40, 0.55) 65%,
            rgba(10, 22, 40, 0.92) 100%);
}

/* Salmon accent image - floating card */
.hero-salmon-accent {
    position: absolute;
    right: 5%;
    bottom: 18%;
    width: 280px;
    height: 200px;
    border-radius: var(--radius-lg);
    overflow: hidden;
    border: 2px solid rgba(0, 212, 255, 0.25);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5), 0 0 40px rgba(0, 212, 255, 0.1);
    z-index: 2;
    animation: salmonFloat 6s ease-in-out infinite, heroFadeIn 1.5s var(--ease-out) 0.8s both;
}

.hero-salmon-accent img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

@keyframes salmonFloat {

    0%,
    100% {
        transform: translateY(0) rotate(0deg);
    }

    50% {
        transform: translateY(-12px) rotate(1deg);
    }
}

.hero-content {
    position: relative;
    z-index: 1;
    text-align: center;
    max-width: 860px;
    padding: 0 var(--container-padding);
    animation: heroFadeIn 1.2s var(--ease-out) 0.3s both;
}

@keyframes heroFadeIn {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.hero-badge {
    display: inline-block;
    padding: 8px 24px;
    border: 1px solid rgba(0, 212, 255, 0.3);
    border-radius: var(--radius-xl);
    font-size: 0.72rem;
    font-weight: 600;
    letter-spacing: 4px;
    color: var(--accent-cyan);
    margin-bottom: 28px;
    background: rgba(0, 212, 255, 0.05);
    animation: badgePulse 3s ease-in-out infinite;
}

@keyframes badgePulse {

    0%,
    100% {
        box-shadow: 0 0 0 0 rgba(0, 212, 255, 0.1);
    }

    50% {
        box-shadow: 0 0 20px 4px rgba(0, 212, 255, 0.08);
    }
}

.hero-title {
    font-family: var(--font-heading);
    font-size: clamp(2rem, 5vw, 3.8rem);
    font-weight: 700;
    line-height: 1.15;
    color: var(--white);
    margin-bottom: 24px;
    letter-spacing: -0.5px;
    text-shadow: 0 2px 12px rgba(0, 0, 0, 0.6), 0 1px 3px rgba(0, 0, 0, 0.4);
}

.hero-subtitle {
    font-size: clamp(0.95rem, 1.5vw, 1.15rem);
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.8;
    margin-bottom: 40px;
    max-width: 680px;
    margin-left: auto;
    margin-right: auto;
    font-weight: 400;
    text-shadow: 0 1px 8px rgba(0, 0, 0, 0.5);
}

.hero-actions {
    display: flex;
    justify-content: center;
    gap: 16px;
    flex-wrap: wrap;
    margin-bottom: 64px;
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 16px 36px;
    border-radius: var(--radius-xl);
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    transition: all var(--transition-base);
    position: relative;
    overflow: hidden;
    cursor: pointer;
}

.btn-primary {
    background: var(--accent-gradient);
    color: var(--white);
    border: none;
    box-shadow: 0 4px 20px rgba(45, 140, 240, 0.3);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 32px rgba(45, 140, 240, 0.5);
}

.btn-primary::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.2) 0%, transparent 50%);
    opacity: 0;
    transition: opacity var(--transition-fast);
}

.btn-primary:hover::before {
    opacity: 1;
}

.btn-outline {
    background: transparent;
    color: var(--white);
    border: 1px solid rgba(255, 255, 255, 0.25);
}

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

.btn-full {
    width: 100%;
}

/* Hero Stats */
.hero-stats {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 40px;
}

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

.stat-number {
    display: block;
    font-family: var(--font-heading);
    font-size: 2.6rem;
    font-weight: 700;
    color: var(--white);
    line-height: 1;
    margin-bottom: 6px;
}

.stat-number::after {
    content: '+';
    font-size: 1.5rem;
    color: var(--accent-cyan);
}

.stat-number.special::after {
    content: '%';
}

.stat-label {
    font-size: 0.75rem;
    color: var(--graphite-light);
    letter-spacing: 1px;
    text-transform: uppercase;
    font-weight: 500;
}

.stat-divider {
    width: 1px;
    height: 40px;
    background: rgba(255, 255, 255, 0.15);
}

/* Scroll Indicator */
.hero-scroll {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 2;
}

.scroll-indicator {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    color: var(--graphite-light);
    font-size: 0.7rem;
    letter-spacing: 3px;
    text-transform: uppercase;
    transition: color var(--transition-fast);
}

.scroll-indicator:hover {
    color: var(--accent-cyan);
}

.scroll-line {
    width: 1px;
    height: 40px;
    background: linear-gradient(to bottom, var(--accent-cyan), transparent);
    animation: scrollBounce 2s ease-in-out infinite;
}

@keyframes scrollBounce {

    0%,
    100% {
        transform: translateY(0);
        opacity: 1;
    }

    50% {
        transform: translateY(10px);
        opacity: 0.5;
    }
}

/* ============================================
   SALMON STRIP
   ============================================ */
.salmon-strip {
    background: linear-gradient(135deg, var(--navy-light) 0%, var(--navy-mid) 100%);
    border-top: 1px solid rgba(0, 212, 255, 0.15);
    border-bottom: 1px solid rgba(0, 212, 255, 0.15);
    padding: 24px 0;
    position: relative;
    overflow: hidden;
}

.salmon-strip::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, transparent 0%, rgba(0, 212, 255, 0.04) 50%, transparent 100%);
    pointer-events: none;
}

.strip-content {
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 var(--container-padding);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 40px;
    flex-wrap: wrap;
}

.strip-item {
    display: flex;
    align-items: center;
    gap: 10px;
}

.strip-item svg {
    width: 20px;
    height: 20px;
    color: var(--accent-cyan);
    flex-shrink: 0;
}

.strip-item span {
    font-size: 0.82rem;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: var(--white);
}

.strip-divider {
    width: 1px;
    height: 24px;
    background: rgba(255, 255, 255, 0.15);
}

/* ============================================
   SECTION IMAGE DIVIDER
   ============================================ */
.section-divider-img {
    position: relative;
    height: 300px;
    overflow: hidden;
}

.section-divider-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center 40%;
}

.divider-overlay {
    position: absolute;
    inset: 0;
    background: rgba(10, 22, 40, 0.7);
}

.divider-text {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-heading);
    font-size: clamp(1.2rem, 2.5vw, 1.8rem);
    font-weight: 300;
    font-style: italic;
    color: var(--accent-cyan);
    text-align: center;
    padding: 0 var(--container-padding);
    letter-spacing: 1px;
    z-index: 1;
}

/* ============================================
   SECTION COMMON STYLES
   ============================================ */
.section {
    padding: var(--section-padding) 0;
    position: relative;
}

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

.section-tag {
    display: inline-block;
    font-size: 0.72rem;
    font-weight: 600;
    letter-spacing: 4px;
    text-transform: uppercase;
    color: var(--accent-blue);
    margin-bottom: 16px;
}

.section-header.light .section-tag {
    color: var(--accent-cyan);
}

.section-title {
    font-family: var(--font-heading);
    font-size: clamp(1.8rem, 4vw, 3rem);
    font-weight: 700;
    color: var(--white);
    margin-bottom: 16px;
    letter-spacing: -0.5px;
}

.section-line {
    width: 60px;
    height: 2px;
    background: var(--accent-gradient);
    margin: 0 auto 24px;
    border-radius: 2px;
}

.section-desc {
    font-size: 1.05rem;
    color: var(--graphite-light);
    max-width: 640px;
    margin: 0 auto;
    line-height: 1.8;
    font-weight: 300;
}

/* ============================================
   ABOUT SECTION
   ============================================ */
.about {
    background: linear-gradient(180deg, var(--navy-deep) 0%, var(--navy) 100%);
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.about-img-wrapper {
    position: relative;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}

.about-img-wrapper img {
    width: 100%;
    height: 480px;
    object-fit: cover;
    transition: transform 0.8s var(--ease-out);
}

.about-img-wrapper:hover img {
    transform: scale(1.05);
}

.about-img-accent {
    position: absolute;
    bottom: -2px;
    right: -2px;
    width: 60%;
    height: 60%;
    border: 2px solid var(--accent-cyan);
    border-top: none;
    border-left: none;
    border-radius: 0 0 var(--radius-lg) 0;
    opacity: 0.3;
}

.experience-badge {
    position: absolute;
    bottom: -20px;
    right: -20px;
    width: 120px;
    height: 120px;
    background: var(--accent-gradient);
    border-radius: 50%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    box-shadow: 0 8px 32px rgba(45, 140, 240, 0.4);
    z-index: 2;
}

.about-image {
    position: relative;
}

.exp-number {
    font-family: var(--font-heading);
    font-size: 2rem;
    font-weight: 800;
    color: var(--white);
    line-height: 1;
}

.exp-text {
    font-size: 0.65rem;
    color: rgba(255, 255, 255, 0.85);
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 500;
    text-align: center;
    line-height: 1.3;
    margin-top: 4px;
}

.about-heading {
    font-family: var(--font-heading);
    font-size: 1.6rem;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 20px;
    line-height: 1.3;
}

.about-text {
    color: var(--graphite-light);
    margin-bottom: 16px;
    line-height: 1.8;
    font-weight: 300;
}

.about-highlight {
    display: flex;
    gap: 20px;
    padding: 24px;
    background: rgba(45, 140, 240, 0.06);
    border: 1px solid rgba(45, 140, 240, 0.12);
    border-radius: var(--radius-md);
    margin: 28px 0;
}

.highlight-icon {
    flex-shrink: 0;
    width: 48px;
    height: 48px;
    color: var(--accent-cyan);
}

.highlight-icon svg {
    width: 100%;
    height: 100%;
}

.highlight-content h4 {
    font-family: var(--font-heading);
    font-size: 1rem;
    font-weight: 600;
    color: var(--accent-cyan);
    margin-bottom: 6px;
}

.highlight-content p {
    font-size: 0.9rem;
    color: var(--graphite-light);
    line-height: 1.7;
}

.about-features {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 16px;
    border-radius: var(--radius-sm);
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.04);
    transition: all var(--transition-fast);
}

.feature-item:hover {
    background: rgba(255, 255, 255, 0.05);
    border-color: rgba(45, 140, 240, 0.15);
}

.feature-icon {
    width: 24px;
    height: 24px;
    flex-shrink: 0;
    color: var(--accent-blue);
}

.feature-icon svg {
    width: 100%;
    height: 100%;
}

.feature-item span {
    font-size: 0.82rem;
    font-weight: 500;
    color: var(--silver);
}

/* ============================================
   HOW IT WORKS / TRADING MODEL
   ============================================ */
.how-it-works {
    background: linear-gradient(180deg, var(--navy) 0%, var(--navy-deep) 50%, var(--navy) 100%);
    position: relative;
    overflow: hidden;
}

.how-it-works::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse at 30% 20%, rgba(45, 140, 240, 0.05) 0%, transparent 50%),
        radial-gradient(ellipse at 70% 80%, rgba(0, 212, 255, 0.04) 0%, transparent 50%);
    pointer-events: none;
}

.hiw-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
    margin-bottom: 60px;
    position: relative;
}

.hiw-card {
    position: relative;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: var(--radius-lg);
    padding: 40px 32px 32px;
    transition: all var(--transition-base);
    overflow: hidden;
}

.hiw-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: var(--accent-gradient);
    opacity: 0;
    transition: opacity var(--transition-base);
}

.hiw-card:hover {
    background: rgba(255, 255, 255, 0.05);
    border-color: rgba(45, 140, 240, 0.15);
    transform: translateY(-6px);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3), 0 0 30px rgba(45, 140, 240, 0.08);
}

.hiw-card:hover::before {
    opacity: 1;
}

.hiw-card.featured {
    background: rgba(45, 140, 240, 0.06);
    border-color: rgba(45, 140, 240, 0.15);
}

.hiw-card.featured::before {
    opacity: 1;
}

.hiw-card-icon {
    width: 56px;
    height: 56px;
    color: var(--accent-cyan);
    margin-bottom: 20px;
}

.hiw-card-icon svg {
    width: 100%;
    height: 100%;
}

.hiw-card.featured .hiw-card-icon {
    color: var(--accent-cyan);
    filter: drop-shadow(0 0 12px rgba(0, 212, 255, 0.3));
}

.hiw-card-number {
    position: absolute;
    top: 20px;
    right: 24px;
    font-family: var(--font-heading);
    font-size: 3rem;
    font-weight: 800;
    color: rgba(255, 255, 255, 0.03);
    line-height: 1;
    pointer-events: none;
}

.hiw-card:hover .hiw-card-number {
    color: rgba(45, 140, 240, 0.08);
}

.hiw-card-title {
    font-family: var(--font-heading);
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 14px;
    line-height: 1.3;
}

.hiw-card-text {
    font-size: 0.92rem;
    color: var(--graphite-light);
    line-height: 1.8;
    margin-bottom: 20px;
    font-weight: 300;
}

.hiw-card-highlight {
    display: inline-flex;
    align-items: center;
    padding: 8px 18px;
    background: rgba(0, 212, 255, 0.08);
    border: 1px solid rgba(0, 212, 255, 0.15);
    border-radius: var(--radius-xl);
    font-size: 0.78rem;
    font-weight: 600;
    color: var(--accent-cyan);
    letter-spacing: 0.5px;
}

/* Process Flow */
.hiw-process {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 24px;
    padding: 40px 32px;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: var(--radius-lg);
    position: relative;
}

.hiw-process-step {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
    min-width: 100px;
}

.hiw-step-icon {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.08);
    color: var(--silver);
    transition: all var(--transition-base);
}

.hiw-step-icon svg {
    width: 28px;
    height: 28px;
}

.hiw-step-icon.accent {
    background: var(--accent-gradient);
    border: none;
    color: var(--white);
    box-shadow: 0 4px 24px rgba(45, 140, 240, 0.4);
}

.hiw-step-label {
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: var(--silver);
    text-align: center;
}

.hiw-process-arrow {
    width: 36px;
    height: 36px;
    color: var(--accent-blue);
    opacity: 0.5;
    flex-shrink: 0;
}

.hiw-process-arrow svg {
    width: 100%;
    height: 100%;
}

/* ============================================
   PRODUCTS SECTION
   ============================================ */
.products {
    background: var(--navy);
    position: relative;
    overflow: hidden;
}

.products-bg {
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse at 20% 0%, rgba(45, 140, 240, 0.06) 0%, transparent 60%),
        radial-gradient(ellipse at 80% 100%, rgba(0, 212, 255, 0.04) 0%, transparent 60%);
    pointer-events: none;
}

.products-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
}

/* Products Duo - Two equal cards side by side */
.products-duo {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 32px;
    align-items: stretch;
}

.products-duo .product-card {
    display: flex;
    flex-direction: column;
    height: 100%;
}

.products-duo .product-info {
    flex: 1;
    display: flex;
    flex-direction: column;
}

.products-duo .product-tags {
    margin-top: auto;
    padding-top: 16px;
}

/* Inline badge */
.product-badge-inline {
    display: inline-block;
    padding: 4px 12px;
    background: linear-gradient(135deg, var(--gold), #d4a020);
    color: var(--navy-deep);
    font-size: 0.65rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    border-radius: 4px;
    margin-bottom: 8px;
    text-transform: uppercase;
}

.product-badge-inline.select {
    background: linear-gradient(135deg, var(--teal), var(--accent));
}

/* Product highlights list */
.product-highlights {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 8px;
    margin: 16px 0;
}

.ph-item {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 0.8rem;
    color: var(--graphite-light);
}

.ph-item svg {
    width: 16px;
    height: 16px;
    flex-shrink: 0;
    color: var(--teal);
}

/* Lifecycle Quality Control Banner */
.lifecycle-banner {
    display: flex;
    align-items: flex-start;
    gap: 24px;
    margin-top: 40px;
    padding: 32px 36px;
    background: linear-gradient(135deg, rgba(0, 212, 255, 0.06), rgba(0, 180, 216, 0.03));
    border: 1px solid rgba(0, 212, 255, 0.2);
    border-left: 4px solid var(--teal);
    border-radius: var(--radius-lg);
    backdrop-filter: blur(8px);
}

.lifecycle-icon {
    flex-shrink: 0;
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--teal), var(--accent));
    border-radius: 12px;
    padding: 10px;
}

.lifecycle-icon svg {
    width: 28px;
    height: 28px;
    color: white;
    stroke: white;
}

.lifecycle-title {
    font-family: var(--font-heading);
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--teal);
    margin-bottom: 8px;
    letter-spacing: 0.02em;
}

.lifecycle-text {
    font-size: 0.92rem;
    color: var(--graphite-light);
    line-height: 1.75;
}

.product-featured {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(0, 212, 255, 0.15);
    border-radius: var(--radius-lg);
    overflow: hidden;
    margin-bottom: 16px;
    transition: all var(--transition-base);
    position: relative;
}

.product-featured::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: var(--accent-gradient);
}

.product-featured:hover {
    border-color: rgba(0, 212, 255, 0.3);
    box-shadow: 0 8px 48px rgba(0, 212, 255, 0.1), var(--shadow-lg);
}

.product-featured-image {
    position: relative;
    min-height: 420px;
    overflow: hidden;
}

.product-featured-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.8s var(--ease-out);
}

.product-featured:hover .product-featured-image img {
    transform: scale(1.05);
}

.featured-badge {
    position: absolute;
    top: 20px;
    left: 20px;
    padding: 10px 20px;
    background: linear-gradient(135deg, rgba(201, 168, 76, 0.9) 0%, rgba(218, 165, 32, 0.9) 100%);
    backdrop-filter: blur(10px);
    border-radius: var(--radius-xl);
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 2px;
    color: var(--white);
    box-shadow: 0 4px 20px rgba(201, 168, 76, 0.3);
}

.product-featured-info {
    padding: 48px 40px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.featured-tag {
    display: inline-block;
    width: fit-content;
    padding: 5px 16px;
    border: 1px solid rgba(0, 212, 255, 0.3);
    border-radius: var(--radius-xl);
    font-size: 0.65rem;
    font-weight: 700;
    letter-spacing: 3px;
    color: var(--accent-cyan);
    margin-bottom: 16px;
    background: rgba(0, 212, 255, 0.05);
}

.product-featured-name {
    font-family: var(--font-heading);
    font-size: 2rem;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 4px;
    line-height: 1.2;
}

.product-featured-latin {
    font-size: 0.9rem;
    font-style: italic;
    color: var(--graphite);
    margin-bottom: 20px;
}

.product-featured-desc {
    font-size: 1rem;
    color: var(--graphite-light);
    line-height: 1.8;
    margin-bottom: 24px;
    font-weight: 300;
}

.product-featured-highlights {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
    margin-bottom: 24px;
}

.pf-highlight {
    display: flex;
    align-items: center;
    gap: 8px;
}

.pf-highlight svg {
    width: 18px;
    height: 18px;
    color: var(--accent-cyan);
    flex-shrink: 0;
}

.pf-highlight span {
    font-size: 0.82rem;
    color: var(--silver);
    font-weight: 400;
}

.product-card {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: var(--radius-lg);
    overflow: hidden;
    transition: all var(--transition-base);
    animation-delay: var(--delay, 0s);
}

.product-card:hover {
    transform: translateY(-8px);
    border-color: rgba(45, 140, 240, 0.2);
    box-shadow: var(--shadow-glow);
}

.product-image {
    position: relative;
    height: 260px;
    overflow: hidden;
}

.product-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.8s var(--ease-out);
}

.product-card:hover .product-image img {
    transform: scale(1.08);
}

.product-badge {
    position: absolute;
    top: 16px;
    right: 16px;
    padding: 6px 16px;
    background: rgba(10, 22, 40, 0.8);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(0, 212, 255, 0.3);
    border-radius: var(--radius-xl);
    font-size: 0.65rem;
    font-weight: 700;
    letter-spacing: 2px;
    color: var(--accent-cyan);
}

.product-info {
    padding: 28px;
}

.product-name {
    font-family: var(--font-heading);
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 4px;
}

.product-latin {
    font-size: 0.8rem;
    font-style: italic;
    color: var(--graphite);
    margin-bottom: 14px;
}

.product-desc {
    font-size: 0.9rem;
    color: var(--graphite-light);
    line-height: 1.7;
    margin-bottom: 20px;
    font-weight: 300;
}

.product-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.tag {
    padding: 5px 12px;
    background: rgba(45, 140, 240, 0.08);
    border: 1px solid rgba(45, 140, 240, 0.15);
    border-radius: var(--radius-xl);
    font-size: 0.7rem;
    font-weight: 500;
    color: var(--accent-blue);
    letter-spacing: 0.5px;
}

/* ============================================
   LOGISTICS SECTION
   ============================================ */
.logistics {
    background: linear-gradient(180deg, var(--navy) 0%, var(--navy-deep) 100%);
}

.logistics-map {
    margin-bottom: 72px;
}

.map-container {
    max-width: 900px;
    margin: 0 auto;
    padding: 40px;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: var(--radius-lg);
    position: relative;
    overflow: hidden;
}

.map-container::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 30% 70%, rgba(45, 140, 240, 0.05) 0%, transparent 60%);
    pointer-events: none;
}

.world-map {
    width: 100%;
    height: auto;
}

.continent {
    fill: rgba(45, 140, 240, 0.08);
    stroke: rgba(45, 140, 240, 0.2);
    stroke-width: 1;
    transition: fill var(--transition-fast);
}

.japan-highlight {
    fill: rgba(0, 212, 255, 0.12);
    stroke: rgba(0, 212, 255, 0.3);
}

.route-line {
    fill: none;
    stroke: var(--accent-cyan);
    stroke-width: 2;
    opacity: 0.6;
    animation: dashFlow 2s linear infinite;
}

@keyframes dashFlow {
    to {
        stroke-dashoffset: -24;
    }
}

.route-brazil {
    animation-delay: 0s;
}

.route-usa {
    animation-delay: 0.5s;
}

.route-japan {
    animation-delay: 1s;
}

.map-point {
    transition: all var(--transition-fast);
}

.map-point.origin {
    fill: var(--accent-cyan);
    filter: drop-shadow(0 0 6px rgba(0, 212, 255, 0.5));
}

.map-point-pulse {
    fill: none;
    stroke: var(--accent-cyan);
    stroke-width: 2;
    animation: pointPulse 2s ease-out infinite;
}

@keyframes pointPulse {
    0% {
        r: 8;
        opacity: 0.6;
    }

    100% {
        r: 24;
        opacity: 0;
    }
}

.map-point.dest {
    fill: var(--accent-blue);
    filter: drop-shadow(0 0 4px rgba(45, 140, 240, 0.4));
}

.map-label {
    fill: var(--silver);
    font-size: 13px;
    font-family: var(--font-body);
    font-weight: 500;
}

.map-label.origin-label {
    fill: var(--accent-cyan);
    font-weight: 600;
}

/* Logistics Features */
.logistics-features {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 28px;
}

.log-feature {
    text-align: center;
    padding: 36px 24px;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: var(--radius-lg);
    transition: all var(--transition-base);
    animation-delay: var(--delay, 0s);
}

.log-feature:hover {
    background: rgba(255, 255, 255, 0.04);
    border-color: rgba(45, 140, 240, 0.2);
    transform: translateY(-4px);
}

.log-feature-icon {
    width: 56px;
    height: 56px;
    margin: 0 auto 20px;
    color: var(--accent-cyan);
    opacity: 0.8;
    transition: opacity var(--transition-fast);
}

.log-feature:hover .log-feature-icon {
    opacity: 1;
}

.log-feature-icon svg {
    width: 100%;
    height: 100%;
}

.log-feature h3 {
    font-family: var(--font-heading);
    font-size: 1.05rem;
    font-weight: 600;
    color: var(--white);
    margin-bottom: 10px;
}

.log-feature p {
    font-size: 0.85rem;
    color: var(--graphite-light);
    line-height: 1.7;
    font-weight: 300;
}

/* Contact micro-message */
.contact-micro {
    font-size: 0.82rem;
    font-weight: 600;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: var(--accent-cyan);
    margin-top: 12px;
    opacity: 0.8;
}

/* ============================================
   CONTACT SECTION
   ============================================ */
.contact {
    position: relative;
    overflow: hidden;
}

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

.contact-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.contact-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg,
            rgba(10, 22, 40, 0.95) 0%,
            rgba(10, 22, 40, 0.88) 50%,
            rgba(10, 22, 40, 0.95) 100%);
}

.contact .container {
    position: relative;
    z-index: 1;
}

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

.contact-card {
    padding: 36px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: var(--radius-lg);
    backdrop-filter: blur(10px);
}

.contact-card h3 {
    font-family: var(--font-heading);
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 28px;
}

.contact-detail {
    display: flex;
    gap: 16px;
    margin-bottom: 24px;
}

.contact-detail:last-child {
    margin-bottom: 0;
}

.contact-icon {
    width: 44px;
    height: 44px;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(45, 140, 240, 0.1);
    border-radius: var(--radius-sm);
    color: var(--accent-blue);
}

.contact-icon svg {
    width: 22px;
    height: 22px;
}

.contact-detail h4 {
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--white);
    margin-bottom: 4px;
}

.contact-detail p {
    font-size: 0.9rem;
    color: var(--graphite-light);
}

.contact-detail a {
    color: var(--accent-blue);
    transition: color var(--transition-fast);
}

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

/* Contact Form */
.contact-form {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.form-group {
    position: relative;
}

.form-group label {
    display: block;
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: var(--silver);
    margin-bottom: 10px;
    transition: color var(--transition-fast);
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 14px 0;
    font-size: 0.95rem;
    color: var(--white);
    background: transparent;
    border-bottom: 1px solid rgba(255, 255, 255, 0.12);
    transition: border-color var(--transition-fast);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: transparent;
}

.form-group input:focus,
.form-group textarea:focus {
    border-bottom-color: var(--accent-blue);
}

.form-group input:focus+.form-line,
.form-group textarea:focus+.form-line {
    transform: scaleX(1);
}

.form-line {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 2px;
    background: var(--accent-gradient);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform var(--transition-base);
}

.form-group textarea {
    resize: vertical;
    min-height: 100px;
}

.contact-form .btn {
    margin-top: 8px;
}

/* ============================================
   FOOTER
   ============================================ */
.footer {
    background: var(--navy-deep);
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    padding: 48px 0 24px;
}

.footer-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-bottom: 32px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.footer-desc {
    font-size: 0.85rem;
    color: var(--graphite);
    margin-top: 12px;
    max-width: 300px;
}

.footer-links {
    display: flex;
    gap: 32px;
}

.footer-links a {
    font-size: 0.82rem;
    color: var(--graphite-light);
    font-weight: 500;
    letter-spacing: 0.5px;
    transition: color var(--transition-fast);
}

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

.footer-bottom {
    text-align: center;
    padding-top: 24px;
}

.footer-bottom p {
    font-size: 0.78rem;
    color: var(--graphite);
}

/* ============================================
   WHATSAPP FLOATING BUTTON
   ============================================ */
.whatsapp-float {
    position: fixed;
    bottom: 28px;
    right: 28px;
    z-index: 999;
    width: 60px;
    height: 60px;
    background: var(--whatsapp);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
    transition: all var(--transition-base);
    opacity: 0;
    transform: scale(0.8) translateY(20px);
}

.whatsapp-float.visible {
    opacity: 1;
    transform: scale(1) translateY(0);
}

.whatsapp-float:hover {
    transform: scale(1.08) translateY(-2px);
    box-shadow: 0 8px 32px rgba(37, 211, 102, 0.6);
}

.whatsapp-float svg {
    width: 28px;
    height: 28px;
}

.whatsapp-tooltip {
    position: absolute;
    right: calc(100% + 12px);
    top: 50%;
    transform: translateY(-50%);
    padding: 8px 16px;
    background: var(--white);
    color: var(--navy-deep);
    border-radius: var(--radius-sm);
    font-size: 0.78rem;
    font-weight: 600;
    white-space: nowrap;
    box-shadow: var(--shadow-md);
    opacity: 0;
    visibility: hidden;
    transition: all var(--transition-fast);
    pointer-events: none;
}

.whatsapp-tooltip::after {
    content: '';
    position: absolute;
    right: -6px;
    top: 50%;
    transform: translateY(-50%);
    border-left: 6px solid var(--white);
    border-top: 6px solid transparent;
    border-bottom: 6px solid transparent;
}

.whatsapp-float:hover .whatsapp-tooltip {
    opacity: 1;
    visibility: visible;
}

/* ============================================
   ANIMATIONS & REVEALS
   ============================================ */
.reveal-up,
.reveal-left,
.reveal-right {
    opacity: 0;
    transition: all 0.8s var(--ease-out);
    transition-delay: var(--delay, 0s);
}

.reveal-up {
    transform: translateY(40px);
}

.reveal-left {
    transform: translateX(-40px);
}

.reveal-right {
    transform: translateX(40px);
}

.reveal-up.revealed,
.reveal-left.revealed,
.reveal-right.revealed {
    opacity: 1;
    transform: translate(0);
}

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

/* Tablet */
@media (max-width: 1024px) {
    :root {
        --section-padding: 80px;
    }

    .about-grid {
        gap: 48px;
    }

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

    .products-grid .product-card:last-child {
        grid-column: 1 / -1;
        max-width: 500px;
        margin: 0 auto;
    }

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

/* Mobile Landscape */
@media (max-width: 768px) {
    :root {
        --section-padding: 64px;
    }

    /* Hero Badge - Hide on mobile */
    .hero-badge {
        display: none !important;
    }

    /* Hero Badge - Hide on mobile to avoid logo collision */
    .hero-badge {
        display: none !important;
    }

    /* Mobile Nav */
    .nav-toggle {
        display: flex;
    }

    .nav-links {
        position: fixed;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background: rgba(10, 22, 40, 0.98);
        backdrop-filter: blur(20px);
        flex-direction: column;
        justify-content: center;
        gap: 28px;
        opacity: 0;
        visibility: hidden;
        transition: all var(--transition-base);
    }

    .nav-links.open {
        opacity: 1;
        visibility: visible;
    }

    .nav-link {
        font-size: 1.1rem;
        letter-spacing: 3px;
    }

    /* Hero Fixes for Header Overlap */
    .hero {
        padding-top: 140px;
        /* Push content down properly */
        min-height: auto;
        padding-bottom: 60px;
    }

    .hero-scroll {
        display: none;
    }

    .hero-title {
        font-size: 2.5rem;
        /* Smaller title on mobile */
        margin-bottom: 16px;
    }

    .hero-subtitle {
        font-size: 1rem;
        margin-bottom: 32px;
    }

    .hero-stats {
        gap: 20px;
        flex-wrap: wrap;
        justify-content: center;
        margin-top: 32px;
    }

    .stat-number {
        font-size: 2rem;
    }

    .stat-label {
        font-size: 0.65rem;
    }

    .hero-actions {
        flex-direction: column;
        align-items: center;
    }

    .btn {
        padding: 14px 28px;
        font-size: 0.8rem;
    }

    /* About */
    .about-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .about-img-wrapper img {
        height: 320px;
    }

    .experience-badge {
        width: 100px;
        height: 100px;
        bottom: -16px;
        right: -10px;
    }

    .exp-number {
        font-size: 1.6rem;
    }

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

    /* Hero - Salmon */
    .hero-salmon-accent {
        display: none;
    }

    /* Products */
    .products-duo {
        grid-template-columns: 1fr;
    }

    .product-highlights {
        grid-template-columns: 1fr;
    }

    .product-featured {
        grid-template-columns: 1fr;
    }

    .product-featured-image {
        min-height: 260px;
    }

    .product-featured-info {
        padding: 28px 24px;
    }

    .product-featured-name {
        font-size: 1.5rem;
    }

    .product-featured-highlights {
        grid-template-columns: 1fr;
    }

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

    .products-grid .product-card:last-child {
        max-width: none;
    }

    /* Salmon strip */
    .strip-content {
        flex-direction: column;
        gap: 16px;
    }

    .strip-divider {
        width: 40px;
        height: 1px;
    }

    /* Image divider */
    .section-divider-img {
        height: 200px;
    }

    /* Logistics */
    .logistics-features {
        grid-template-columns: 1fr;
    }

    /* How It Works */
    .hiw-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .hiw-card {
        padding: 28px 24px 24px;
    }

    .hiw-process {
        flex-direction: column;
        gap: 16px;
        padding: 28px 20px;
    }

    .hiw-process-arrow {
        transform: rotate(90deg);
        width: 28px;
        height: 28px;
    }

    .map-container {
        padding: 16px;
    }

    /* Contact */
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    /* Footer */
    .footer-content {
        flex-direction: column;
        text-align: center;
        gap: 28px;
    }

    .footer-desc {
        margin-left: auto;
        margin-right: auto;
    }

    .footer-links {
        flex-wrap: wrap;
        justify-content: center;
        gap: 20px;
    }

    /* New Banners Mobile */
    .lifecycle-banner {
        flex-direction: column;
        align-items: center;
        text-align: center;
        padding: 24px 20px;
        gap: 16px;
    }

    .lifecycle-icon {
        margin: 0 auto;
    }

    /* Map Mobile - Fit Screen */
    .map-container {
        padding: 0;
        overflow: hidden;
        display: flex;
        justify-content: center;
    }

    .world-map {
        width: 100%;
        height: auto;
        min-width: auto;
    }
}

/* Mobile Portrait */
@media (max-width: 480px) {
    :root {
        --section-padding: 48px;
        --container-padding: 16px;
    }

    .hero-stats {
        flex-direction: column;
        gap: 16px;
    }

    .stat-divider {
        width: 40px;
        height: 1px;
    }

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

    .about-highlight {
        flex-direction: column;
        text-align: center;
    }

    .highlight-icon {
        margin: 0 auto;
    }

    .contact-card {
        padding: 24px;
    }

    .whatsapp-float {
        width: 52px;
        height: 52px;
        bottom: 20px;
        right: 20px;
    }

    .whatsapp-float svg {
        width: 24px;
        height: 24px;
    }

    .whatsapp-tooltip {
        display: none;
    }
}

/* High DPI / Retina */
@media (-webkit-min-device-pixel-ratio: 2),
(min-resolution: 192dpi) {
    .world-map {
        image-rendering: -webkit-optimize-contrast;
    }
}

/* Reduce Motion */
@media (prefers-reduced-motion: reduce) {
    * {
        animation-duration: 0.01ms !important;
        transition-duration: 0.01ms !important;
    }

    html {
        scroll-behavior: auto;
    }
}

/* Form submitted state */
.contact-form.submitted {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 300px;
}

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

.form-success svg {
    width: 64px;
    height: 64px;
    color: var(--success);
    margin-bottom: 20px;
}

.form-success h3 {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 10px;
}

.form-success p {
    color: var(--graphite-light);
    font-size: 0.95rem;
}