/* ========== VARIABLES ========== */
:root {
    --navy-dark: #121857;
    --navy-medium: #1a2375;
    --navy-light: #2a3495;
    --accent-blue: #3b82f6;
    --accent-cyan: #06b6d4;
    --white: #ffffff;
    --gray-50: #f9fafb;
    --gray-100: #f3f4f6;
    --gray-200: #e5e7eb;
    --gray-300: #d1d5db;
    --gray-600: #4b5563;
    --gray-700: #374151;
    --gray-900: #111827;

    --font-sans: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;

    --shadow-sm: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
    --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
    --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
    --shadow-xl: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
}

/* ========== RESET ========== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-sans);
    line-height: 1.6;
    color: var(--gray-900);
    background: var(--white);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

a {
    text-decoration: none;
    color: inherit;
}

/* ========== NAVIGATION ========== */
.nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: var(--white);
    border-bottom: 1px solid var(--gray-200);
    z-index: 1000;
    backdrop-filter: blur(10px);
    background: rgba(255, 255, 255, 0.95);
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 1rem 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.nav-logo {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-weight: 700;
    font-size: 1.25rem;
}

.nav-logo-icon {
    width: 40px;
    height: 40px;
    background: var(--navy-dark);
    color: var(--white);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1rem;
}

.nav-logo-text {
    color: var(--navy-dark);
    letter-spacing: -0.02em;
}

/* ========== BUTTONS ========== */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.75rem 1.5rem;
    border-radius: 8px;
    font-weight: 600;
    font-size: 0.9375rem;
    transition: all 0.2s ease;
    border: none;
    cursor: pointer;
    text-decoration: none;
}

.btn-primary {
    background: var(--navy-dark);
    color: var(--white);
}

.btn-primary:hover {
    background: var(--navy-medium);
    transform: translateY(-1px);
    box-shadow: var(--shadow-md);
}

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

.btn-secondary:hover {
    background: var(--navy-dark);
    color: var(--white);
}

.btn-cta {
    background: linear-gradient(135deg, var(--accent-blue), var(--accent-cyan));
    color: var(--white);
    padding: 1rem 2rem;
    font-size: 1.0625rem;
    box-shadow: var(--shadow-lg);
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

.btn-cta:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-xl);
}

.btn-cta svg {
    flex-shrink: 0;
}

.btn-cta-large {
    background: linear-gradient(135deg, var(--accent-blue), var(--accent-cyan));
    color: var(--white);
    padding: 1.25rem 2.5rem;
    font-size: 1.125rem;
    box-shadow: var(--shadow-xl);
}

.btn-cta-large:hover {
    transform: translateY(-2px);
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
}

/* ========== HERO SECTION ========== */
.hero {
    padding: 120px 2rem 80px;
    background: linear-gradient(180deg, var(--gray-50) 0%, var(--white) 100%);
    min-height: 90vh;
    display: flex;
    align-items: center;
}

.hero-container {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 800;
    line-height: 1.1;
    color: var(--navy-dark);
    margin-bottom: 1.5rem;
    letter-spacing: -0.02em;
}

.hero-title-highlight {
    background: linear-gradient(135deg, var(--accent-blue), var(--accent-cyan));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-subtitle {
    font-size: 1.25rem;
    color: var(--gray-600);
    margin-bottom: 2rem;
    line-height: 1.7;
}

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

.hero-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    padding-top: 2rem;
    border-top: 1px solid var(--gray-200);
}

.stat {
    text-align: center;
}

.stat-number {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--navy-dark);
    margin-bottom: 0.25rem;
}

.stat-label {
    font-size: 0.875rem;
    color: var(--gray-600);
    font-weight: 500;
}

/* ========== HERO QUESTIONS ========== */
.questions-list {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 0.75rem;
    margin: 2rem 0;
}

.question-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1rem;
    background: var(--gray-50);
    border-radius: 12px;
    border: 2px solid var(--gray-200);
    transition: all 0.3s ease;
}

.question-item:hover {
    background: var(--white);
    border-color: var(--accent-blue);
    transform: translateX(4px);
    box-shadow: var(--shadow-md);
}

.question-icon {
    font-size: 1.5rem;
    flex-shrink: 0;
}

.question-text {
    font-size: 0.875rem;
    color: var(--gray-700);
    line-height: 1.4;
}

/* ========== AGENT CHAT CARD (Estilo Atlas de carlosbejar.cl) ========== */
.hero-visual {
    position: relative;
}

.agent-chat-card {
    background: var(--white);
    border-radius: 24px;
    padding: 2.5rem;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.08);
    border: 1px solid #e5e7eb;
    transition: all 0.3s ease;
}

.agent-chat-card:hover {
    box-shadow: 0 12px 48px rgba(0, 0, 0, 0.12);
    transform: translateY(-2px);
}

/* Avatar with Glow Effect */
.agent-avatar-wrapper {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-bottom: 2rem;
    position: relative;
}

.agent-avatar-circle {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #06b6d4 0%, #0ea5e9 100%);
    border: 3px solid #06b6d4;
    box-shadow: 0 0 40px rgba(6, 182, 212, 0.5);
    margin-bottom: 1rem;
}

.avatar-glow {
    position: absolute;
    inset: -10px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(6, 182, 212, 0.3) 0%, transparent 70%);
    animation: glow-pulse 3s ease-in-out infinite;
}

@keyframes glow-pulse {
    0%, 100% { opacity: 0.5; transform: scale(1); }
    50% { opacity: 1; transform: scale(1.1); }
}

.avatar-content {
    font-size: 60px;
    z-index: 1;
}

.demo-pill {
    background: #06b6d4;
    color: var(--white);
    padding: 0.375rem 1rem;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    box-shadow: 0 4px 12px rgba(6, 182, 212, 0.3);
}

/* Description Box */
.agent-description-box {
    text-align: center;
    margin-bottom: 2rem;
}

.agent-intro-title {
    font-size: 1.0625rem;
    font-weight: 400;
    color: #1f2937;
    line-height: 1.7;
    margin-bottom: 1rem;
}

.agent-name-highlight {
    font-weight: 700;
    color: #1f2937;
}

.agent-intro-text {
    font-size: 0.9375rem;
    color: #6b7280;
    line-height: 1.7;
    margin: 0;
}

/* Audio Visualizer */
.audio-visualizer {
    margin-bottom: 1.5rem;
    padding: 1.5rem;
    background: linear-gradient(135deg, rgba(6, 182, 212, 0.03) 0%, rgba(6, 182, 212, 0.08) 100%);
    border-radius: 16px;
    border: 1px solid rgba(6, 182, 212, 0.15);
}

.audio-bars {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 2px;
    height: 64px;
}

.audio-bars .bar {
    width: 3px;
    background: linear-gradient(180deg, #06b6d4 0%, #0891b2 100%);
    border-radius: 3px;
    animation: bar-wave 1.5s ease-in-out infinite;
}

/* Diferentes alturas y delays para cada barra */
.audio-bars .bar:nth-child(1) { animation-delay: 0s; height: 25%; }
.audio-bars .bar:nth-child(2) { animation-delay: 0.05s; height: 45%; }
.audio-bars .bar:nth-child(3) { animation-delay: 0.1s; height: 65%; }
.audio-bars .bar:nth-child(4) { animation-delay: 0.15s; height: 85%; }
.audio-bars .bar:nth-child(5) { animation-delay: 0.2s; height: 100%; }
.audio-bars .bar:nth-child(6) { animation-delay: 0.25s; height: 75%; }
.audio-bars .bar:nth-child(7) { animation-delay: 0.3s; height: 55%; }
.audio-bars .bar:nth-child(8) { animation-delay: 0.35s; height: 90%; }
.audio-bars .bar:nth-child(9) { animation-delay: 0.4s; height: 60%; }
.audio-bars .bar:nth-child(10) { animation-delay: 0.45s; height: 40%; }
.audio-bars .bar:nth-child(11) { animation-delay: 0.5s; height: 80%; }
.audio-bars .bar:nth-child(12) { animation-delay: 0.55s; height: 95%; }
.audio-bars .bar:nth-child(13) { animation-delay: 0.6s; height: 50%; }
.audio-bars .bar:nth-child(14) { animation-delay: 0.65s; height: 70%; }
.audio-bars .bar:nth-child(15) { animation-delay: 0.7s; height: 88%; }
.audio-bars .bar:nth-child(16) { animation-delay: 0.75s; height: 62%; }
.audio-bars .bar:nth-child(17) { animation-delay: 0.8s; height: 35%; }
.audio-bars .bar:nth-child(18) { animation-delay: 0.85s; height: 82%; }
.audio-bars .bar:nth-child(19) { animation-delay: 0.9s; height: 48%; }
.audio-bars .bar:nth-child(20) { animation-delay: 0.95s; height: 72%; }
.audio-bars .bar:nth-child(21) { animation-delay: 1s; height: 92%; }
.audio-bars .bar:nth-child(22) { animation-delay: 1.05s; height: 58%; }
.audio-bars .bar:nth-child(23) { animation-delay: 1.1s; height: 42%; }
.audio-bars .bar:nth-child(24) { animation-delay: 1.15s; height: 78%; }
.audio-bars .bar:nth-child(25) { animation-delay: 1.2s; height: 68%; }
.audio-bars .bar:nth-child(26) { animation-delay: 1.25s; height: 52%; }
.audio-bars .bar:nth-child(27) { animation-delay: 1.3s; height: 86%; }
.audio-bars .bar:nth-child(28) { animation-delay: 1.35s; height: 64%; }
.audio-bars .bar:nth-child(29) { animation-delay: 1.4s; height: 38%; }
.audio-bars .bar:nth-child(30) { animation-delay: 0.12s; height: 76%; }
.audio-bars .bar:nth-child(31) { animation-delay: 0.22s; height: 56%; }
.audio-bars .bar:nth-child(32) { animation-delay: 0.32s; height: 94%; }
.audio-bars .bar:nth-child(33) { animation-delay: 0.42s; height: 46%; }
.audio-bars .bar:nth-child(34) { animation-delay: 0.52s; height: 84%; }
.audio-bars .bar:nth-child(35) { animation-delay: 0.62s; height: 54%; }
.audio-bars .bar:nth-child(36) { animation-delay: 0.72s; height: 74%; }
.audio-bars .bar:nth-child(37) { animation-delay: 0.82s; height: 98%; }
.audio-bars .bar:nth-child(38) { animation-delay: 0.92s; height: 44%; }
.audio-bars .bar:nth-child(39) { animation-delay: 1.02s; height: 66%; }
.audio-bars .bar:nth-child(40) { animation-delay: 1.12s; height: 32%; }

@keyframes bar-wave {
    0%, 100% { transform: scaleY(1); opacity: 0.7; }
    50% { transform: scaleY(1.4); opacity: 1; }
}

/* Input with Mic Button */
.agent-input-wrapper {
    position: relative;
    margin-bottom: 1.25rem;
}

.agent-text-input {
    width: 100%;
    padding: 1rem 3.5rem 1rem 1rem;
    border: 1px solid #d1d5db;
    border-radius: 12px;
    font-size: 0.9375rem;
    color: #1f2937;
    transition: all 0.3s ease;
    font-family: var(--font-sans);
}

.agent-text-input:focus {
    outline: none;
    border-color: #06b6d4;
    box-shadow: 0 0 0 3px rgba(6, 182, 212, 0.1);
}

.agent-text-input::placeholder {
    color: #9ca3af;
}

.mic-button {
    position: absolute;
    right: 0.5rem;
    top: 50%;
    transform: translateY(-50%);
    width: 40px;
    height: 40px;
    background: transparent;
    border: none;
    border-radius: 8px;
    color: #06b6d4;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.2s ease;
}

.mic-button:hover {
    background: rgba(6, 182, 212, 0.1);
    transform: translateY(-50%) scale(1.05);
}

/* Connect Button */
.connect-button {
    width: 100%;
    padding: 1rem 1.5rem;
    background: #1f2937;
    color: var(--white);
    border: none;
    border-radius: 12px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.625rem;
    transition: all 0.3s ease;
    font-family: var(--font-sans);
}

.connect-button:hover {
    background: #111827;
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(31, 41, 55, 0.25);
}

.connect-button svg {
    flex-shrink: 0;
}

/* ========== FEATURES SECTION ========== */
.features {
    padding: 80px 2rem;
    background: var(--white);
}

.features-container {
    max-width: 1200px;
    margin: 0 auto;
}

.section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.section-title {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--navy-dark);
    margin-bottom: 1rem;
    letter-spacing: -0.02em;
}

.section-subtitle {
    font-size: 1.125rem;
    color: var(--gray-600);
}

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

.feature-card {
    padding: 2rem;
    background: var(--gray-50);
    border-radius: 12px;
    transition: all 0.3s ease;
}

.feature-card:hover {
    background: var(--white);
    box-shadow: var(--shadow-lg);
    transform: translateY(-4px);
}

.feature-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--accent-blue), var(--accent-cyan));
    color: var(--white);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
}

.feature-title {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--navy-dark);
    margin-bottom: 0.75rem;
}

.feature-description {
    font-size: 0.9375rem;
    color: var(--gray-600);
    line-height: 1.7;
}

/* ========== CTA SECTION ========== */
.cta-section {
    padding: 80px 2rem;
    background: linear-gradient(135deg, var(--navy-dark), var(--navy-medium));
    text-align: center;
}

.cta-container {
    max-width: 800px;
    margin: 0 auto;
}

.cta-title {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--white);
    margin-bottom: 1rem;
    letter-spacing: -0.02em;
}

.cta-subtitle {
    font-size: 1.25rem;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 2rem;
}

/* ========== SHIPPING LINES SECTION ========== */
.shipping-lines {
    padding: 80px 2rem;
    background: linear-gradient(180deg, var(--white) 0%, var(--gray-50) 100%);
    position: relative;
    overflow: hidden;
}

.shipping-lines-container {
    max-width: 1200px;
    margin: 0 auto;
}

.shipping-lines-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.shipping-line-card {
    position: relative;
    padding: 2rem;
    background: var(--white);
    border-radius: 16px;
    border: 2px solid var(--gray-200);
    transition: all 0.3s ease;
    animation: float 6s ease-in-out infinite;
    text-align: center;
}

/* Diferentes delays de animación para cada tarjeta */
.shipping-line-card:nth-child(1) { animation-delay: 0s; }
.shipping-line-card:nth-child(2) { animation-delay: -1s; }
.shipping-line-card:nth-child(3) { animation-delay: -2s; }
.shipping-line-card:nth-child(4) { animation-delay: -3s; }
.shipping-line-card:nth-child(5) { animation-delay: -4s; }
.shipping-line-card:nth-child(6) { animation-delay: -5s; }
.shipping-line-card:nth-child(7) { animation-delay: -1.5s; }
.shipping-line-card:nth-child(8) { animation-delay: -2.5s; }

@keyframes float {
    0%, 100% {
        transform: translateY(0px) translateX(0px);
    }
    25% {
        transform: translateY(-10px) translateX(5px);
    }
    50% {
        transform: translateY(-5px) translateX(-5px);
    }
    75% {
        transform: translateY(-15px) translateX(3px);
    }
}

.shipping-line-card:hover {
    transform: scale(1.08) translateY(-8px) !important;
    border-color: var(--accent-blue);
    box-shadow:
        0 20px 40px -12px rgba(59, 130, 246, 0.3),
        0 0 60px rgba(59, 130, 246, 0.2);
}

.shipping-line-card.coming-soon {
    opacity: 0.6;
    border-style: dashed;
}

.shipping-line-card.coming-soon:hover {
    opacity: 0.8;
}

.rank-badge {
    position: absolute;
    top: -12px;
    right: 12px;
    background: linear-gradient(135deg, var(--accent-blue), var(--accent-cyan));
    color: var(--white);
    padding: 0.375rem 0.75rem;
    border-radius: 12px;
    font-size: 0.75rem;
    font-weight: 700;
    box-shadow: var(--shadow-md);
}

.logo-container {
    width: 140px;
    height: 140px;
    margin: 0 auto 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    border-radius: 50%;
    background: var(--white);
    border: 1px solid var(--gray-200);
    transition: all 0.3s ease;
}

.shipping-line-card:hover .logo-container {
    background: radial-gradient(
        circle at center,
        rgba(59, 130, 246, 0.1) 0%,
        rgba(59, 130, 246, 0.05) 50%,
        transparent 100%
    );
}

.shipping-logo {
    max-width: 110px;
    max-height: 110px;
    width: auto;
    height: auto;
    object-fit: contain;
    filter: grayscale(0%);
    transition: all 0.3s ease;
}

.shipping-line-card.coming-soon .shipping-logo {
    filter: grayscale(80%);
    opacity: 0.6;
}

.shipping-line-card.coming-soon .logo-placeholder {
    opacity: 0.7;
    filter: saturate(0.5);
}

.shipping-line-card:hover .shipping-logo {
    transform: scale(1.1);
}

.shipping-line-card:hover .logo-placeholder {
    transform: scale(1.05);
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
}

.logo-placeholder {
    width: 110px;
    height: 110px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 800;
    font-size: 1.125rem;
    background: linear-gradient(135deg, var(--accent-blue), var(--accent-cyan));
    color: var(--white);
    border-radius: 12px;
    letter-spacing: 0.05em;
    line-height: 1.2;
}

/* Colores corporativos de cada naviera */
.logo-maersk {
    background: linear-gradient(135deg, #00ADEF, #0088CC);
}

.logo-cosco {
    background: linear-gradient(135deg, #ED1C24, #C41E3A);
}

.logo-agunsa {
    background: linear-gradient(135deg, var(--accent-blue), var(--accent-cyan));
}

.logo-wanhai {
    background: linear-gradient(135deg, #E94E24, #D63E14);
}

.logo-hapag {
    background: linear-gradient(135deg, #FF6600, #E65500);
    font-size: 0.95rem;
}

.logo-msc {
    background: linear-gradient(135deg, #003087, #002266);
}

.logo-cma {
    background: linear-gradient(135deg, #009FE3, #0080C0);
    font-size: 1rem;
}

.logo-one {
    background: linear-gradient(135deg, #E6007E, #C0006A);
    font-size: 1.5rem;
}

.shipping-name {
    font-size: 1rem;
    font-weight: 700;
    color: var(--navy-dark);
    margin-bottom: 0.5rem;
}

.coming-soon-badge {
    display: inline-block;
    margin-top: 0.5rem;
    padding: 0.25rem 0.75rem;
    background: var(--gray-200);
    color: var(--gray-600);
    border-radius: 12px;
    font-size: 0.75rem;
    font-weight: 600;
}


/* ========== FOOTER ========== */
.footer {
    background: var(--gray-900);
    padding: 3rem 2rem 2rem;
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
}

.footer-content {
    text-align: center;
    margin-bottom: 2rem;
}

.footer-logo {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 1rem;
}

.footer-logo-icon {
    width: 40px;
    height: 40px;
    background: var(--white);
    color: var(--navy-dark);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
}

.footer-logo-text {
    color: var(--white);
    font-size: 1.25rem;
    font-weight: 700;
}

.footer-tagline {
    color: var(--gray-300);
    font-size: 0.9375rem;
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    color: var(--gray-400);
    font-size: 0.875rem;
}

/* ========== RESPONSIVE ========== */
@media (max-width: 1024px) {
    .hero-container {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

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

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

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

    .questions-list {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .nav-container {
        padding: 1rem;
    }

    .hero {
        padding: 100px 1rem 60px;
    }

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

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

    .hero-cta {
        flex-direction: column;
    }

    .hero-stats {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

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

    .shipping-lines-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .shipping-line-card {
        padding: 1.5rem;
    }

    .logo-container {
        width: 120px;
        height: 120px;
    }

    .shipping-logo {
        max-width: 95px;
        max-height: 95px;
    }

    .logo-placeholder {
        width: 95px;
        height: 95px;
        font-size: 1rem;
    }

    .logo-hapag {
        font-size: 0.85rem;
    }

    .logo-cma {
        font-size: 0.9rem;
    }

    .logo-one {
        font-size: 1.3rem;
    }

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

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

    .questions-list {
        grid-template-columns: 1fr;
        gap: 0.625rem;
    }

    .question-item {
        padding: 0.875rem;
    }

    .question-text {
        font-size: 0.8125rem;
    }

    .agent-chat-card {
        padding: 2rem;
    }

    .agent-avatar-circle {
        width: 100px;
        height: 100px;
    }

    .avatar-content {
        font-size: 50px;
    }

    .agent-intro-title {
        font-size: 1rem;
    }

    .agent-intro-text {
        font-size: 0.875rem;
    }

    .audio-visualizer {
        padding: 1.25rem;
    }

    .audio-bars {
        height: 56px;
        gap: 1.5px;
    }

    .audio-bars .bar {
        width: 2.5px;
    }

    .agent-text-input {
        font-size: 0.875rem;
    }

    .connect-button {
        font-size: 0.9375rem;
    }
}
