/* ==========================================================================
   Tonic VPS - About Us Custom CSS (Hetzner-Inspired Modern Simplistic Stack)
   ========================================================================== */

/* Story Section styling */
.about-story-text {
    font-size: 18px;
    line-height: 1.8;
    color: #494c55;
    margin-bottom: 24px;
}

/* Mission & Vision cards */
.premium-card-gradient {
    background: #ffffff;
    border: 1px solid #e1e6f0;
    border-radius: 16px;
    padding: 40px;
    transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
    height: 100%;
}
.premium-card-gradient:hover {
    transform: translateY(-6px);
    border-color: #3795fc;
    box-shadow: 0 12px 30px rgba(55, 149, 252, 0.08);
}
.premium-card-icon {
    font-size: 32px;
    margin-bottom: 20px;
    display: inline-block;
}

/* Approach & Who We Serve cards */
.approach-card, .serve-card {
    background: #ffffff;
    border: 1px solid #e1e6f0;
    border-radius: 12px;
    padding: 30px 24px;
    transition: all 0.3s ease;
    height: 100%;
}
.approach-card:hover, .serve-card:hover {
    transform: translateY(-4px);
    border-color: #3795fc;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.04);
}
.approach-card .icon, .serve-card .icon {
    font-size: 28px;
    margin-bottom: 16px;
}

/* Differentiators Grid */
.diff-card {
    background: #ffffff;
    border: 1px solid #e1e6f0;
    border-radius: 12px;
    padding: 24px;
    transition: all 0.3s ease;
    height: 100%;
}
.diff-card:hover {
    border-color: #3795fc;
    background: #ecf5ff;
}

/* Infrastructure Sections */
.infra-card {
    background: #0a0b0f;
    border: 1px solid #343641;
    border-radius: 16px;
    padding: 35px 30px;
    color: #ffffff;
    transition: all 0.3s ease;
    height: 100%;
}
.infra-card:hover {
    border-color: #3795fc;
    box-shadow: 0 10px 30px rgba(55, 149, 252, 0.15);
}
.infra-card h3.title {
    color: #ffffff;
    font-size: 18px;
    font-weight: 700;
    letter-spacing: 1px;
}
.infra-card p {
    color: #b1b5bf;
    margin-bottom: 0;
}

/* Tech Stack brand logos styling */
.tech-logo-item {
    background: #ffffff;
    border: 1px solid #e1e6f0;
    border-radius: 12px;
    padding: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 80px;
    transition: all 0.3s ease;
}
.tech-logo-item:hover {
    border-color: #3795fc;
}
.tech-logo-item img {
    max-height: 35px;
    width: auto;
    filter: grayscale(1);
    opacity: 0.7;
    transition: all 0.3s ease;
}
.tech-logo-item:hover img {
    filter: grayscale(0);
    opacity: 1;
}

/* Company dual-office layouts */
.office-card {
    background: #ffffff;
    border: 1px solid #e1e6f0;
    border-radius: 16px;
    padding: 40px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.02);
    height: 100%;
}
.office-card h3 {
    font-size: 20px;
    font-weight: 700;
    color: #131415;
    border-bottom: 2px solid #3795fc;
    padding-bottom: 12px;
    margin-bottom: 24px;
}
.office-card ul li {
    display: flex;
    align-items: flex-start;
    margin-bottom: 16px;
    font-size: 15px;
    color: #404248;
}
.office-card ul li i {
    color: #3795fc;
    margin-right: 12px;
    margin-top: 5px;
    width: 16px;
}
.office-card ul li a {
    color: #404248;
}
.office-card ul li a:hover {
    color: #3795fc;
}

/* Trust Banner styling */
.trust-banner-strip {
    background: linear-gradient(135deg, #ecf5ff 0%, #ffffff 100%);
    border-top: 1px solid #e1e6f0;
    border-bottom: 1px solid #e1e6f0;
    padding: 60px 0;
    text-align: center;
}
.trust-banner-strip h2 {
    font-size: 28px;
    font-weight: 700;
    color: #0e104b;
    margin-bottom: 0;
    line-height: 1.4;
}

/* Call to Action updates */
.about-cta-box {
    background: #0a0b0f;
    border-radius: 24px;
    padding: 80px 40px;
    color: #ffffff;
    position: relative;
    overflow: hidden;
    z-index: 1;
}
.about-cta-box::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(55,149,252,0.15) 0%, transparent 70%);
    z-index: -1;
    border-radius: 50%;
}
.about-cta-box h2 {
    color: #ffffff;
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 16px;
}
.about-cta-box p {
    color: #b1b5bf;
    font-size: 18px;
    max-width: 600px;
    margin: 0 auto 35px;
}
