/* ================================
   ABOUT SECTION (Aligned to Global)
================================ */

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

/* LEFT */
.about-intro p {
    font-size: 16px;
    line-height: 1.75;
    color: #444;
    margin-bottom: 18px;
    text-align: justify;
    text-justify: inter-word;
}

/* Highlight card */
.about-highlight {
    margin-top: 40px;
    display: grid;
    grid-template-columns: 80px 1fr;
    gap: 26px;
    padding: 36px;
    border-radius: 24px;
    background: rgba(255, 255, 255, 0.75);
    backdrop-filter: blur(6px);

    box-shadow:
        0 12px 35px rgba(0, 0, 0, 0.05),
        0 4px 12px rgba(0, 0, 0, 0.03);
}

.highlight-icon img {
    width: 64px;
}

.highlight-content h4 {
    font-size: 20px;
    font-weight: 800;
    margin-bottom: 14px;
}

.highlight-content p {
    font-size: 15.5px;
    line-height: 1.7;
    color: #444;
    margin-bottom: 14px;
    text-align: justify;
    text-justify: inter-word;
}

/* RIGHT */
.about-right {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.about-image-card {
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 25px 60px rgba(0, 0, 0, 0.15);
    max-width: 85%;
}

.about-image-card img {
    width: 100%;
    display: block;
}

/* Responsive */
@media (max-width: 992px) {
    .about-grid {
        grid-template-columns: 1fr;
    }
}

/* ================================
   FEATURE SECTION (Aligned System)
================================ */

.feature-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    margin-top: 60px;
}

/* Tabs */
.feature-tabs {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

/* Buttons behave like cards */
.feature-btn {
    padding: 28px;
    border-radius: 22px;
    background: #fff;
    border: none;
    text-align: left;
    cursor: pointer;

    font-size: 18px;
    font-weight: 700;

    box-shadow:
        0 8px 25px rgba(0, 0, 0, 0.05),
        0 2px 6px rgba(0, 0, 0, 0.03);

    transition: all 0.3s ease;
}

.feature-btn span {
    display: block;
    font-size: 14.5px;
    font-weight: 500;
    color: #666;
    margin-top: 8px;
}

/* Active / hover feedback */
.feature-btn:hover,
.feature-btn.active {
    transform: translateY(-4px);
    box-shadow:
        0 18px 45px rgba(0, 0, 0, 0.12),
        0 6px 16px rgba(0, 0, 0, 0.08);
}

/* Image panel */
.feature-visual img {
    width: 100%;
    border-radius: 22px;
    box-shadow: 0 25px 60px rgba(0, 0, 0, 0.18);
}

/* Responsive */
@media (max-width: 992px) {
    .feature-grid {
        grid-template-columns: 1fr;
        gap: 50px;
    }
}

/* =========================
   HERO MATCHING CTA STYLE
========================= */

.page-hero {
    position: relative;
    padding: 110px 0 80px; /* hero is special: allowed custom spacing */
    overflow: hidden;

    background: linear-gradient(90deg, #fa33a1 0%, #553add 100%);
    box-shadow: 0 35px 80px rgba(85, 58, 221, 0.35);
}

/* Container */
.page-hero-inner {
    position: relative;
    z-index: 3;
}

.page-hero-content {
    max-width: 720px;
}

/* Eyebrow */
.page-eyebrow {
    display: inline-block;
    font-size: 12px;
    letter-spacing: 2px;
    text-transform: uppercase;
    font-weight: 700;
    color: #ffd6ef;
    margin-bottom: 14px;
}

/* Title */
.page-hero h1 {
    font-style: normal;
    font-weight: 700;
    font-size: 50px;
    line-height: 60px;
    color: #fff;
    margin-bottom: 18px;
}

/* Subtitle */
.page-hero p {
    font-size: 18px;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.92);
    max-width: 620px;
}

/* =========================
   PARTICLES LAYER
========================= */

.hero-particles {
    position: absolute;
    inset: 0;
    pointer-events: none;
    z-index: 1;
}

.page-hero .icons-one {
    position: absolute;
    left: 40px;
    top: 60px;
    width: 300px;
    height: 350px;
    background: url(../images/icons/icon-4.png) no-repeat;
    animation: floatY 6s ease-in-out infinite;
    opacity: 0.28;
}

.page-hero .icons-two {
    position: absolute;
    right: 60px;
    bottom: 40px;
    width: 260px;
    height: 280px;
    background: url(../images/icons/icon-5.png) no-repeat;
    animation: floatYReverse 7s ease-in-out infinite;
    opacity: 0.25;
}

/* Depth overlay */
.page-hero::after {
    content: "";
    position: absolute;
    inset: 0;
    background:
        radial-gradient(
            circle at top left,
            rgba(255, 255, 255, 0.12),
            transparent 60%
        ),
        radial-gradient(
            circle at bottom right,
            rgba(0, 0, 0, 0.2),
            transparent 60%
        );
    z-index: 2;
}

/* Mobile */
@media (max-width: 768px) {
    .page-hero {
        padding: 90px 0 60px;
    }

    .page-hero h1 {
        font-size: 36px;
        line-height: 46px;
    }

    .page-hero p {
        font-size: 16px;
    }

    .page-hero .icons-one,
    .page-hero .icons-two {
        display: none;
    }
}
