.info-main {
    min-height: 100vh;
    padding: 120px 60px 80px 220px;
    box-sizing: border-box;
    color: #fff;
}

.info-hero {
    margin-bottom: 64px;
    opacity: 0;
    animation: subpageFadeIn .7s ease-out .1s forwards;
}

.info-tag {
    font-family: Poppins, Arial, sans-serif;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: .25em;
    color: rgba(255,255,255,.4);
    text-transform: uppercase;
    margin: 0 0 16px 0;
}

.info-heading {
    font-family: Kanit, sans-serif;
    font-size: clamp(36px, 5vw, 72px);
    font-weight: 700;
    line-height: 1.1;
    margin: 0 0 20px 0;
    background: linear-gradient(90deg, #fff 0%, #aaa 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.info-sub {
    font-family: Poppins, Arial, sans-serif;
    font-size: 16px;
    color: rgba(255,255,255,.5);
    margin: 0;
    max-width: 500px;
}

.info-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin-bottom: 72px;
}

.info-card {
    background: rgba(255,255,255,.04);
    border: 1px solid rgba(255,255,255,.08);
    border-radius: 16px;
    padding: 28px 24px;
    transition: background .2s, border-color .2s, transform .2s;
    opacity: 0;
    animation: subpageFadeIn .6s ease-out forwards;
}

.info-card:hover {
    background: rgba(255,255,255,.08);
    border-color: rgba(255,255,255,.18);
    transform: translateY(-4px);
}

.info-card:nth-child(1) { animation-delay: .2s; }
.info-card:nth-child(2) { animation-delay: .3s; }
.info-card:nth-child(3) { animation-delay: .4s; }
.info-card:nth-child(4) { animation-delay: .5s; }
.info-card:nth-child(5) { animation-delay: .6s; }
.info-card:nth-child(6) { animation-delay: .7s; }

.info-card-icon {
    width: 44px;
    height: 44px;
    border-radius: 10px;
    background: rgba(255,255,255,.07);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    color: rgba(255,255,255,.8);
    margin-bottom: 16px;
}

.info-card h3 {
    font-family: Poppins, Arial, sans-serif;
    font-size: 14px;
    font-weight: 700;
    margin: 0 0 10px 0;
    color: #fff;
    letter-spacing: .02em;
}

.info-card p {
    font-family: Poppins, Arial, sans-serif;
    font-size: 13px;
    color: rgba(255,255,255,.45);
    line-height: 1.65;
    margin: 0;
}

.info-cta {
    display: flex;
    align-items: center;
    gap: 28px;
    opacity: 0;
    animation: subpageFadeIn .7s ease-out .8s forwards;
}

.info-cta p {
    font-family: Poppins, Arial, sans-serif;
    font-size: 18px;
    font-weight: 600;
    color: rgba(255,255,255,.7);
    margin: 0;
}

@media (max-width: 1100px) {
    .info-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
    .info-main { padding: 100px 20px 60px 20px; }
    .info-grid { grid-template-columns: 1fr; }
    .info-cta { flex-direction: column; align-items: flex-start; }
}
