/* Broadsea - Manufacturing Technology Strategy
 * Brand Colors:
 * - Dark Navy: #0b1c27
 * - Gold: #d4a017
 * - Orange: #ff5e0e
 */

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    line-height: 1.6;
    color: #1d1d1f;
    background: #fff;
}

/* Container */
.container {
    max-width: 980px;
    margin: 0 auto;
    padding: 0 22px;
}

/* Hero Section */
.hero {
    padding: 80px 0 60px;
    text-align: center;
}

.logo {
    max-width: 400px;
    height: auto;
    margin: 0 auto 24px;
    display: block;
}

.hero h1 {
    font-size: 56px;
    font-weight: 600;
    letter-spacing: -0.015em;
    line-height: 1.07;
    margin-bottom: 8px;
    color: #0b1c27;
    display: none; /* Hidden since logo includes text */
}

.hero .subtitle {
    font-size: 28px;
    font-weight: 400;
    line-height: 1.14;
    color: #6e6e73;
    margin-bottom: 12px;
}

.hero .industry-focus {
    font-size: 17px;
    line-height: 1.38;
    color: #d4a017;
    margin-bottom: 24px;
    font-weight: 500;
}

.hero .tagline {
    font-size: 21px;
    line-height: 1.38;
    color: #1d1d1f;
    margin-bottom: 32px;
}

/* Services Section */
.services {
    padding: 80px 0;
    background: #f5f5f7;
}

.section-title {
    font-size: 48px;
    font-weight: 600;
    text-align: center;
    margin-bottom: 60px;
    letter-spacing: -0.015em;
    color: #0b1c27;
}

.service-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 40px;
    margin-bottom: 60px;
}

.service-card {
    background: #fff;
    padding: 40px 32px;
    border-radius: 18px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.service-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 40px rgba(11, 28, 39, 0.1);
}

.service-card h3 {
    font-size: 24px;
    font-weight: 600;
    margin-bottom: 12px;
    line-height: 1.2;
    color: #0b1c27;
}

.service-card .duration {
    font-size: 14px;
    color: #86868b;
    margin-bottom: 20px;
}

.service-card p {
    font-size: 17px;
    line-height: 1.47;
    color: #1d1d1f;
    margin-bottom: 20px;
}

.service-card ul {
    list-style: none;
    margin-bottom: 0;
}

.service-card ul li {
    font-size: 15px;
    line-height: 1.6;
    color: #6e6e73;
    margin-bottom: 8px;
    padding-left: 20px;
    position: relative;
}

.service-card ul li::before {
    content: "\2713";
    position: absolute;
    left: 0;
    color: #d4a017;
    font-weight: 600;
}

/* Credentials Section */
.credentials {
    padding: 80px 0;
}

.credentials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 48px;
    margin-top: 60px;
}

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

.credential-item .icon {
    font-size: 24px;
    margin-bottom: 16px;
    color: #d4a017;
    font-weight: 600;
}

.credential-item h4 {
    font-size: 21px;
    font-weight: 600;
    margin-bottom: 8px;
    color: #0b1c27;
}

.credential-item p {
    font-size: 17px;
    line-height: 1.47;
    color: #6e6e73;
}

/* Value Props Section */
.value-props {
    padding: 80px 0;
    background: #f5f5f7;
}

.value-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 32px;
    margin-top: 48px;
}

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

.value-item h4 {
    font-size: 19px;
    font-weight: 600;
    margin-bottom: 8px;
    color: #0b1c27;
}

.value-item p {
    font-size: 15px;
    line-height: 1.47;
    color: #6e6e73;
}

/* CTA Section */
.cta {
    padding: 100px 0;
    text-align: center;
}

.cta h2 {
    font-size: 48px;
    font-weight: 600;
    margin-bottom: 16px;
    letter-spacing: -0.015em;
    color: #0b1c27;
}

.cta p {
    font-size: 21px;
    line-height: 1.38;
    color: #6e6e73;
    margin-bottom: 32px;
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 12px 24px;
    font-size: 17px;
    font-weight: 400;
    text-decoration: none;
    border-radius: 980px;
    transition: all 0.3s ease;
    cursor: pointer;
}

.btn-primary {
    background: #0b1c27;
    color: #fff;
}

.btn-primary:hover {
    background: #ff5e0e;
}

.btn-secondary {
    background: transparent;
    color: #0b1c27;
    border: 1px solid #0b1c27;
    margin-left: 12px;
}

.btn-secondary:hover {
    background: #0b1c27;
    color: #fff;
}

/* Footer */
footer {
    padding: 40px 0;
    text-align: center;
    background: #f5f5f7;
    border-top: 1px solid #d2d2d7;
}

footer p {
    font-size: 12px;
    color: #86868b;
    margin-bottom: 8px;
}

footer .contact {
    font-size: 14px;
    color: #6e6e73;
    margin-top: 16px;
}

footer a {
    color: #0b1c27;
    text-decoration: none;
    transition: color 0.3s ease;
}

footer a:hover {
    color: #ff5e0e;
    text-decoration: underline;
}

/* Responsive Design */
@media (max-width: 768px) {
    .hero {
        padding: 60px 0 40px;
    }

    .logo {
        max-width: 280px;
    }

    .hero h1 {
        font-size: 40px;
    }

    .hero .subtitle {
        font-size: 24px;
    }

    .hero .tagline {
        font-size: 18px;
    }

    .section-title {
        font-size: 36px;
        margin-bottom: 40px;
    }

    .services,
    .credentials,
    .value-props {
        padding: 60px 0;
    }

    .service-grid {
        grid-template-columns: 1fr;
        gap: 24px;
    }

    .service-card {
        padding: 32px 24px;
    }

    .credentials-grid {
        grid-template-columns: 1fr;
        gap: 32px;
        margin-top: 40px;
    }

    .value-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 24px;
    }

    .cta {
        padding: 60px 0;
    }

    .cta h2 {
        font-size: 36px;
    }

    .cta p {
        font-size: 18px;
    }

    .btn {
        display: block;
        text-align: center;
    }

    .btn-secondary {
        margin-left: 0;
        margin-top: 12px;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 16px;
    }

    .logo {
        max-width: 220px;
    }

    .hero .subtitle {
        font-size: 20px;
    }

    .section-title {
        font-size: 28px;
    }

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

    .cta h2 {
        font-size: 28px;
    }
}

/* Accessibility */
@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }

    html {
        scroll-behavior: auto;
    }
}

/* Focus states for accessibility */
a:focus,
button:focus,
.btn:focus {
    outline: 2px solid #d4a017;
    outline-offset: 2px;
}

/* Print styles */
@media print {
    .hero,
    .services,
    .credentials,
    .value-props,
    .cta,
    footer {
        padding: 40px 0;
    }

    .service-card:hover {
        transform: none;
        box-shadow: none;
    }

    .btn {
        border: 1px solid #0b1c27;
    }
}
