/* Precision Corporate Styles */
.corp-hero {
    background-color: #0f172a;
    background-image: 
        linear-gradient(to right, rgba(15,23,42,0.92) 40%, rgba(15,23,42,0.70) 100%),
        url('/images/hero-bg-optimized.webp');
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
    background-attachment: fixed;
    color: #fff;
    padding: 12rem 0;
    position: relative;
    border-bottom: 1px solid rgba(255,255,255,0.1);
}
.corp-hero h1 {
    font-size: clamp(3.5rem, 6vw, 5.5rem);
    font-weight: 800;
    line-height: 1.15;
    letter-spacing: -0.04em;
    color: #f8fafc;
    margin-bottom: 2rem;
    max-width: 1100px;
}
.corp-hero h1 .typing-text,
.corp-hero h1 .typing-cursor {
    white-space: normal;
    display: inline;
    overflow-wrap: break-word;
    word-wrap: break-word;
    word-break: break-word;
}
.corp-hero-text {
    font-size: 1.25rem;
    color: #94a3b8;
    max-width: 600px;
    margin-bottom: 3rem;
    line-height: 1.6;
}
.corp-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 1rem 2rem;
    font-weight: 600;
    letter-spacing: 0.02em;
    text-decoration: none;
    transition: all 0.2s ease;
    border-radius: 0;
}
.corp-btn-primary {
    background: #2563eb;
    color: white;
    border: 1px solid #2563eb;
}
.corp-btn-primary:hover {
    background: #1d4ed8;
    color: white;
}
.corp-btn-outline {
    background: transparent;
    color: #fff;
    border: 1px solid rgba(255,255,255,0.3);
}
.corp-btn-outline:hover {
    background: white;
    color: #0f172a;
}
.corp-section {
    padding: 8rem 0;
    background: #fff;
}
.corp-section-alt {
    padding: 8rem 0;
    background: #f8fafc;
    border-top: 1px solid #e2e8f0;
    border-bottom: 1px solid #e2e8f0;
}
.corp-section-header {
    margin-bottom: 4rem;
    max-width: 700px;
}
.corp-sm-title {
    font-size: 0.875rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: #2563eb;
    font-weight: 700;
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    gap: 1rem;
}
.corp-sm-title::after {
    content: '';
    height: 1px;
    width: 40px;
    background: #2563eb;
}
.corp-section-header h2 {
    font-size: 3rem;
    font-weight: 800;
    color: #0f172a;
    letter-spacing: -0.02em;
    line-height: 1.1;
    margin-bottom: 1.5rem;
}
.corp-section-header p {
    font-size: 1.125rem;
    color: #64748b;
    line-height: 1.6;
}

/* Services */
.corp-service-card {
    background: #fff;
    border: 1px solid #e2e8f0;
    padding: 3rem;
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    height: 100%;
}
.corp-service-card:hover {
    border-color: #0ea5e9;
    box-shadow: 0 20px 40px -10px rgba(15, 23, 42, 0.05);
    transform: translateY(-5px);
}
.corp-service-icon {
    font-size: 2rem;
    color: #0f172a;
    margin-bottom: 2rem;
}
.corp-service-card h3 {
    font-size: 1.5rem;
    color: #0f172a;
    font-weight: 700;
    margin-bottom: 1rem;
}
.corp-service-card p {
    color: #64748b;
    margin-bottom: 2rem;
    flex: 1;
}
.corp-service-link {
    color: #2563eb;
    font-weight: 600;
    text-transform: uppercase;
    font-size: 0.875rem;
    letter-spacing: 0.05em;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}
.corp-service-link i {
    transition: transform 0.2s;
}
.corp-service-card:hover .corp-service-link i {
    transform: translateX(5px);
}

/* Products Bento */
.bento-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
}
.bento-item {
    background: #0f172a;
    border: 1px solid #334155;
    padding: 3rem;
    position: relative;
    overflow: hidden;
    color: white;
    transition: border-color 0.3s ease;
}
.bento-item:hover {
    border-color: #38bdf8;
}
.bento-item.large {
    grid-column: span 2;
    background: #2563eb;
    border-color: #2563eb;
}
.bento-item.large:hover {
    border-color: #0ea5e9;
}
.bento-tag {
    position: absolute;
    top: 1.5rem;
    right: 1.5rem;
    background: rgba(255,255,255,0.1);
    padding: 0.25rem 0.75rem;
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    border-radius: 4px;
}
.bento-logo {
    height: 40px;
    margin-bottom: 2rem;
    filter: brightness(0) invert(1);
    opacity: 0.9;
}
.bento-item h3 {
    font-size: 1.75rem;
    color: white;
    font-weight: 700;
    margin-bottom: 0.5rem;
}
.bento-item p {
    color: rgba(255,255,255,0.7);
    font-size: 1rem;
}
.bento-arrow {
    margin-top: 2rem;
    display: inline-block;
    color: white;
    background: rgba(255,255,255,0.1);
    width: 40px;
    height: 40px;
    line-height: 40px;
    text-align: center;
    border-radius: 50%;
    transition: transform 0.3s;
}
.bento-item:hover .bento-arrow {
    transform: rotate(-45deg);
    background: white;
    color: #0f172a;
}

/* About Section Split */
.split-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}
.corp-stat-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    border-top: 1px solid #e2e8f0;
    padding-top: 2rem;
    margin-top: 2rem;
}
.corp-stat h4 {
    font-size: 3rem;
    font-weight: 800;
    color: #0f172a;
    line-height: 1;
    margin-bottom: 0.5rem;
}
.corp-stat p {
    color: #64748b;
    font-weight: 500;
    text-transform: uppercase;
    font-size: 0.875rem;
    letter-spacing: 0.05em;
}
/* Tagline Section */
.corp-tagline-section {
    background: #0f172a;
    padding: 7rem 0;
    border-top: 1px solid rgba(255,255,255,0.06);
    border-bottom: 1px solid rgba(255,255,255,0.06);
}
.corp-tagline-brand {
    font-size: clamp(3.5rem, 9vw, 8rem);
    font-weight: 900;
    letter-spacing: -0.04em;
    line-height: 1;
    color: #ffffff;
    text-transform: uppercase;
}
.corp-tagline-line {
    height: 5px;
    width: 140px;
    background: linear-gradient(90deg, #38bdf8, #2563eb, transparent);
    border-radius: 3px;
    margin: 1.5rem 0;
    box-shadow: 0 0 24px rgba(56,189,248,0.6);
}
.corp-tagline-sub {
    font-size: clamp(1.5rem, 3.5vw, 2.5rem);
    color: #38bdf8;
    font-weight: 600;
    letter-spacing: 0.03em;
    font-style: italic;
}
