
/* ========================================================================
   AQUASTUDIO PRO — INFORMATION PAGES
   Uses the existing cyber-store.css as the visual base.
   ======================================================================== */

.about-page {
    min-height: 100vh;
    background: #13131F;
}

.about-container {
    width: min(1180px, 92vw);
    margin: 0 auto;
}

.about-header {
    position: relative;
    padding: 125px 20px 35px;
    text-align: center;
}

.about-header .about-logo {
    position: absolute;
    top: 25px;
    left: 25px;
    width: 55px;
    height: 55px;
    border: 1px solid #00FFCC;
    border-radius: 50%;
    display: grid;
    place-items: center;
    color: #00FFCC;
    font-size: 18px;
    font-weight: bold;
    box-shadow: 0 0 18px rgba(0,255,204,.18);
}

.about-nav {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 24px;
    margin-top: 28px;
}

.about-nav a {
    color: #7777AA;
    text-decoration: none;
    font-size: 11px;
    letter-spacing: 2px;
    transition: .3s;
}

.about-nav a:hover,
.about-nav a.active {
    color: #00FFCC;
    text-shadow: 0 0 8px rgba(0,255,204,.45);
}

.about-eyebrow,
.about-tag {
    color: #00FFCC;
    font-size: 10px;
    font-weight: bold;
    letter-spacing: 3px;
    text-transform: uppercase;
}

.about-hero {
    padding: 70px 20px 100px;
    text-align: center;
}

.about-hero h1 {
    margin: 18px 0 28px;
    color: #FFFFFF;
    font-size: clamp(2rem, 4.2vw, 4.2rem);
    line-height: 1.08;
    letter-spacing: 5px;
}

.about-hero p,
.about-section p {
    color: #7777AA;
    line-height: 1.75;
    font-size: 14px;
}

.about-hero p {
    max-width: 760px;
    margin: 12px auto;
}

.about-section {
    padding: 85px 20px;
}

.about-section-heading {
    margin-bottom: 42px;
}

.about-section-heading > span {
    color: #7777AA;
    font-size: 11px;
    letter-spacing: 3px;
}

.about-section-heading h2 {
    color: #FFFFFF;
    font-size: clamp(1.7rem, 3vw, 2.8rem);
    margin: 12px 0 0;
    letter-spacing: 2px;
}

.about-section-heading p {
    max-width: 760px;
    margin-top: 18px;
}

.about-card-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0,1fr));
    gap: 28px;
}

.about-card {
    position: relative;
    min-height: 280px;
    padding: 34px;
    box-sizing: border-box;
    background: #18182B;
    border: 1px solid #3a3a60;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: inset 6px 0 0 #00b3a1,
                0 0 28px rgba(0,255,204,.08);
    transition: .3s ease;
}

.about-card:nth-child(2n) {
    box-shadow: inset 6px 0 0 #8e00e6,
                0 0 28px rgba(189,0,255,.08);
}

.about-card:nth-child(3n) {
    box-shadow: inset 6px 0 0 #cc3c00,
                0 0 28px rgba(255,85,0,.08);
}

.about-card::after {
    content: '';
    position: absolute;
    inset: 0;
    pointer-events: none;
    background: linear-gradient(
        115deg,
        transparent 0%,
        rgba(255,255,255,.025) 48%,
        transparent 52%
    );
}

.about-card:hover {
    transform: translateY(-5px);
    border-color: #00FFCC;
}

.about-card:nth-child(2n):hover {
    border-color: #bd00ff;
}

.about-card:nth-child(3n):hover {
    border-color: #ff5500;
}

.about-card h3,
.about-timeline h3,
.about-tech-card h3 {
    color: #FFFFFF;
    margin: 13px 0 16px;
    letter-spacing: 1px;
}

.about-card p {
    margin: 0 0 14px;
}

.about-feature {
    background: #18182B;
    border: 1px solid #3a3a60;
    border-left: 8px solid #00FFCC;
    border-radius: 8px;
    padding: 42px;
    box-sizing: border-box;
    box-shadow: 0 0 35px rgba(0,255,204,.08);
}

.about-feature h2 {
    color: #FFFFFF;
    margin: 12px 0 20px;
    font-size: clamp(1.8rem,3vw,3rem);
}

.about-feature p {
    max-width: 850px;
}

.about-timeline {
    display: grid;
    gap: 20px;
}

.about-timeline-item {
    display: grid;
    grid-template-columns: 70px 1fr;
    gap: 24px;
    padding: 28px 30px;
    background: #18182B;
    border: 1px solid #2d2d4d;
    border-left: 3px solid #00FFCC;
    border-radius: 6px;
}

.about-timeline-number {
    color: #00FFCC;
    font-size: 22px;
    font-weight: bold;
    letter-spacing: 2px;
}

.about-timeline-item p {
    margin: 0 0 12px;
}

.about-tech-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0,1fr));
    gap: 18px;
}

.about-tech-card {
    background: #18182B;
    border: 1px solid #3a3a60;
    border-radius: 6px;
    padding: 24px;
    min-height: 190px;
    box-sizing: border-box;
}

.about-tech-icon {
    width: 42px;
    height: 42px;
    border: 1px solid #00FFCC;
    color: #00FFCC;
    display: grid;
    place-items: center;
    font-size: 12px;
    font-weight: bold;
    margin-bottom: 18px;
}

.about-tech-card p {
    margin: 0;
    font-size: 12px;
}

.about-architecture {
    display: grid;
    grid-template-columns: repeat(3, minmax(0,1fr));
    gap: 18px;
}

.about-architecture-item {
    padding: 28px;
    background: #18182B;
    border: 1px solid #3a3a60;
    border-radius: 6px;
}

.about-architecture-item > span {
    color: #00FFCC;
    font-size: 11px;
    letter-spacing: 2px;
}

.about-architecture-item h3 {
    color: #FFFFFF;
    margin: 12px 0;
}

.about-architecture-item p {
    margin: 0;
    font-size: 12px;
}

.about-quote {
    padding: 65px 20px;
    text-align: center;
}

.about-quote h2 {
    color: #FFFFFF;
    font-size: clamp(2rem, 4vw, 4rem);
    line-height: 1.1;
    letter-spacing: 4px;
}

.about-quote p {
    max-width: 760px;
    margin: 22px auto 0;
    color: #7777AA;
    line-height: 1.8;
}

.about-buttons {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 15px;
    margin-top: 35px;
}

.about-button {
    display: inline-block;
    padding: 13px 22px;
    border: 1px solid #00FFCC;
    color: #00FFCC;
    background: #0F0F1E;
    text-decoration: none;
    font-size: 11px;
    letter-spacing: 1.5px;
    transition: .3s;
}

.about-button:hover {
    background: #00FFCC;
    color: #13131F;
    box-shadow: 0 0 20px rgba(0,255,204,.3);
}

.about-footer {
    border-top: 1px solid #22223A;
    background: #0F0F1E;
    padding: 40px 20px;
    text-align: center;
    color: #4E4E6A;
    font-size: 11px;
    letter-spacing: 1px;
}

.about-footer a {
    color: #7777AA;
    text-decoration: none;
    margin: 0 12px;
}

.about-footer a:hover {
    color: #00FFCC;
}

@media (max-width: 900px) {
    .about-tech-grid {
        grid-template-columns: repeat(2, minmax(0,1fr));
    }

    .about-architecture {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 700px) {
    .about-header {
        padding-top: 100px;
    }

    .about-header .about-logo {
        width: 45px;
        height: 45px;
        font-size: 15px;
    }

    .about-card-grid,
    .about-tech-grid {
        grid-template-columns: 1fr;
    }

    .about-timeline-item {
        grid-template-columns: 1fr;
        gap: 8px;
    }

    .about-feature,
    .about-card {
        padding: 25px;
    }

    .about-hero {
        padding-top: 45px;
    }

    .about-nav {
        gap: 14px;
    }
}