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

body {
    font-family: 'Arial', 'Helvetica', sans-serif;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    background: linear-gradient(135deg, #f5f7fa 0%, #c3cfe2 100%);
    padding: 40px 20px 80px;
}

.page {
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 88px;
}

.container {
    max-width: 1000px;
    width: 100%;
    margin: 0 auto;
    text-align: center;
}

.hero {
    padding-top: 20px;
}

.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    border: 0;
}

h1 {
    font-size: clamp(3rem, 8vw, 6rem);
    font-weight: 900;
    letter-spacing: 0.2em;
    color: #000;
    margin-bottom: 1.5rem;
    text-transform: uppercase;
    animation: fadeIn 1s ease-out;
}

.image-container {
    background: white;
    padding: 2rem;
    border-radius: 20px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1);
    display: inline-block;
    animation: slideUp 1s ease-out;
    margin-bottom: 2rem;
}

#mainImage {
    max-height: min(50vh, 50vw);
    max-width: min(50vh, 50vw);
    display: block;
    border-radius: 10px;
}

.subtitle {
    font-family: 'Roboto', sans-serif;
    font-size: clamp(1.5rem, 3vw, 2.5rem);
    font-weight: 300;
    color: #1f2937;
    letter-spacing: 0.05em;
    animation: fadeIn 1.5s ease-out;
}

.subtitle span {
    display: inline-block;
    margin: 0 0.5rem;
}

.subtitle span::first-letter {
    color: #0f172a;
    font-weight: 700;
}

.subtitle span {
    color: #1f2937;
}

.about {
    text-align: left;
}

.section-header {
    margin-bottom: 2rem;
}

.eyebrow {
    font-size: 0.95rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: #334155;
    margin-bottom: 0.8rem;
}

.about h2 {
    font-size: clamp(2rem, 4vw, 3.2rem);
    color: #0f172a;
    line-height: 1.15;
}

.about-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 2rem;
    background: rgba(255, 255, 255, 0.8);
    border-radius: 24px;
    padding: 2.5rem;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.08);
    animation: slideUp 1.2s ease-out;
    position: relative;
    overflow: hidden;
    border: 1px solid rgba(15, 23, 42, 0.08);
}

.about-grid::before {
    content: "";
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 20% 20%, rgba(255, 255, 255, 0.7), transparent 55%);
    opacity: 0.7;
    pointer-events: none;
}

.about-grid p {
    font-size: 1.05rem;
    line-height: 1.7;
    color: #1f2937;
}

.deliver {
    text-align: left;
    margin-top: 16px;
}

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

.deliver-card {
    background: rgba(255, 255, 255, 0.9);
    border-radius: 20px;
    padding: 1.75rem;
    box-shadow: 0 18px 50px rgba(0, 0, 0, 0.08);
    border: 1px solid rgba(15, 23, 42, 0.08);
    animation: fadeIn 1.2s ease-out;
    position: relative;
    overflow: hidden;
    transition: transform 0.35s ease, box-shadow 0.35s ease;
}

.deliver-card::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(120deg, rgba(255, 255, 255, 0.5), rgba(255, 255, 255, 0));
    opacity: 0;
    transition: opacity 0.35s ease;
    pointer-events: none;
}

.deliver-card h3 {
    font-size: 1.15rem;
    color: #0f172a;
    margin-bottom: 0.75rem;
}

.deliver-card p {
    font-size: 1rem;
    line-height: 1.6;
    color: #1f2937;
}

.deliver-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 28px 70px rgba(0, 0, 0, 0.14);
}

.deliver-card:hover::after {
    opacity: 0.75;
}

.deliver-card:nth-child(1) { animation-delay: 0.1s; }
.deliver-card:nth-child(2) { animation-delay: 0.2s; }
.deliver-card:nth-child(3) { animation-delay: 0.3s; }
.deliver-card:nth-child(4) { animation-delay: 0.4s; }
.deliver-card:nth-child(5) { animation-delay: 0.5s; }
.deliver-card:nth-child(6) { animation-delay: 0.6s; }

.footer {
    text-align: left;
    margin-top: 12px;
}

.footer-card {
    background: rgba(255, 255, 255, 0.9);
    border-radius: 20px;
    padding: 2rem;
    box-shadow: 0 18px 50px rgba(0, 0, 0, 0.08);
    border: 1px solid rgba(15, 23, 42, 0.08);
    animation: slideUp 1.2s ease-out;
}

.footer-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 2rem;
}

.footer-name {
    font-weight: 700;
    font-size: 1.2rem;
    color: #0f172a;
    margin-bottom: 0.5rem;
}

.footer-logo {
    width: 120px;
    height: auto;
    opacity: 0.9;
}

.footer a {
    color: #0f172a;
    text-decoration: none;
    border-bottom: 1px solid rgba(15, 23, 42, 0.2);
}

.footer a:hover {
    border-bottom-color: rgba(15, 23, 42, 0.6);
}

.footer p + p {
    margin-top: 12px;
}

.footer a:focus-visible,
.contact-link:focus-visible {
    outline: 2px solid rgba(15, 23, 42, 0.7);
    outline-offset: 3px;
    border-bottom-color: transparent;
    border-radius: 6px;
    background: rgba(15, 23, 42, 0.06);
}

.contact-link {
    display: inline-flex;
    align-items: center;
    gap: 0.6rem;
}

.contact-icon {
    display: inline-flex;
    width: 20px;
    height: 20px;
    border-radius: 6px;
    background: rgba(15, 23, 42, 0.08);
    align-items: center;
    justify-content: center;
}

.contact-icon svg {
    width: 14px;
    height: 14px;
    fill: #0f172a;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(-20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes slideUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.floating-cta {
    position: fixed;
    bottom: 28px;
    right: 28px;
    z-index: 1000;
    background: #2c3e6b;
    color: #fff;
    text-decoration: none;
    font-family: 'Arial', 'Helvetica', sans-serif;
    font-size: 0.85rem;
    font-weight: 600;
    line-height: 1.4;
    padding: 14px 20px;
    border-radius: 12px;
    box-shadow: 0 4px 18px rgba(44, 62, 107, 0.35);
    max-width: 260px;
    text-align: center;
    transition: background 0.2s, box-shadow 0.2s, transform 0.15s;
}

.floating-cta:hover,
.floating-cta:focus {
    background: #1a2a55;
    box-shadow: 0 6px 24px rgba(44, 62, 107, 0.5);
    transform: translateY(-2px);
    outline: 3px solid #fff;
    outline-offset: 2px;
}

@keyframes floatIn {
    from { opacity: 0; transform: translateY(16px); }
    to   { opacity: 1; transform: translateY(0); }
}

@media (max-width: 768px) {
    .image-container {
        padding: 1rem;
        margin-bottom: 1.5rem;
    }

    h1 {
        margin-bottom: 2rem;
    }

    .subtitle {
        font-size: clamp(1.2rem, 4vw, 1.8rem);
    }

    .page {
        gap: 48px;
    }

    .about-grid {
        grid-template-columns: 1fr;
        padding: 1.8rem;
    }

    .about h2 {
        font-size: clamp(1.8rem, 6vw, 2.4rem);
    }

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

    .footer-content {
        flex-direction: column;
        align-items: flex-start;
    }

    .footer-logo {
        width: 100px;
    }
}

@media (prefers-reduced-motion: reduce) {
    * {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
        scroll-behavior: auto !important;
    }
}
