:root {
    --uw-blue: #b9820c;
    --uw-navy: #0B2545;
    --uw-muted: #5C677A;
    --uw-border: #E4E8EE;
    --uw-light: #F7F9FC;
}

* { box-sizing: border-box; }

/* ===== HERO ===== */
.about-hero {
    min-height: 90vh;
    background: linear-gradient(135deg, #fff 0%, #EAF1FF 100%);
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
    padding: 130px 0 80px;
}

.about-hero::before {
    content: '';
    position: absolute;
    top: -40%;
    right: -10%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(249,168,37,0.08) 0%, transparent 65%);
    border-radius: 50%;
    animation: pulse 6s ease-in-out infinite;
}

@keyframes pulse {
    0%, 100% { transform: scale(1); opacity: 1; }
    50% { transform: scale(1.1); opacity: 0.7; }
}

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

.about-hero .hero-inner {
    position: relative;
    z-index: 2;
}

.about-hero .eyebrow {
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--uw-blue);
    margin-bottom: 18px;
}

.about-hero h1 {
    font-size: clamp(36px, 5vw, 52px);
    font-weight: 700;
    color: var(--uw-navy);
    line-height: 1.2;
    margin-bottom: 22px;
}

.about-hero p {
    font-size: 17px;
    color: var(--uw-muted);
    line-height: 1.7;
    margin-bottom: 32px;
}

.hero-image-box {
    position: relative;
    height: 450px;
    background: linear-gradient(135deg, #F7F7F7 0%, #E7D8A5 100%);
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 30px 60px rgba(249,168,37,0.15);
    border: 1px solid rgba(249,168,37,0.1);
    animation: slideUp 0.8s ease-out;
}

@keyframes slideUp {
    from {
        opacity: 0;
        transform: translateY(40px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.hero-image-box img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* ===== MISSION SECTION ===== */
.mission-section {
    padding: 120px 0;
    background: linear-gradient(135deg, #f8f9fc 0%, #f0f3fa 100%);
}

.mission-container {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    padding: 0 20px;
}

.mission-image {
    height: 420px;
    background: linear-gradient(135deg, #FEF3E2 0%, #FFD9A0 100%);
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 30px 60px rgba(249,168,37,0.12);
    position: relative;
}

.mission-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.mission-content {
    padding: 0;
}

.mission-content h2 {
    font-size: 42px;
    font-weight: 700;
    color: var(--uw-navy);
    margin-bottom: 32px;
    line-height: 1.2;
}

.mission-content p {
    font-size: 16px;
    color: var(--uw-muted);
    line-height: 1.8;
    margin-bottom: 24px;
}

.mission-cards {
    display: flex;
    flex-direction: column;
    gap: 16px;
    margin-top: 40px;
}

.mission-card {
    background: #fff;
    padding: 24px;
    border-radius: 16px;
    border-left: 5px solid #2F6FED;
    box-shadow: 0 4px 16px rgba(47,111,237,0.06);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.mission-card:hover {
    transform: translateX(8px);
    box-shadow: 0 8px 24px rgba(47,111,237,0.12);
}

.mission-card h3 {
    font-size: 18px;
    font-weight: 700;
    color: var(--uw-navy);
    margin-bottom: 8px;
}

.mission-card p {
    font-size: 14px;
    color: var(--uw-muted);
    margin: 0;
    line-height: 1.6;
}

/* ===== VISION SECTION ===== */
.vision-section {
    padding: 120px 0;
    background: #111111 !important;
    color: #fff;
    position: relative;
    overflow: hidden;
}

.vision-section::before,
.vision-section::after {
    content: none !important;
    display: none !important;
}

.vision-container {
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
    padding: 0 20px;
}

.vision-top {
    margin-bottom: 80px;
}

.vision-top h2 {
    font-size: 42px;
    font-weight: 700;
    color: #fff;
    margin-bottom: 20px;
    line-height: 1.2;
}

.vision-top p {
    font-size: 18px;
    color: #ECECEC;
    line-height: 1.8;
    max-width: 720px;
    margin: 0;
}

.vision-pillars {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
    margin-top: 60px;
}

.vision-pillar {
    background: linear-gradient(160deg, rgba(255,255,255,0.09) 0%, rgba(255,255,255,0.03) 100%);
    border: 1px solid rgba(249,168,37,0.32);
    border-radius: 16px;
    padding: 32px 24px;
    text-align: center;
    transition: transform 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease;
    backdrop-filter: blur(10px);
    box-shadow: 0 12px 26px rgba(0, 0, 0, 0.28);
}

.vision-pillar:hover {
    transform: translateY(-8px);
    border-color: #b9820c;
    background: linear-gradient(160deg, rgba(249,168,37,0.2) 0%, rgba(249,168,37,0.08) 100%);
    box-shadow: 0 18px 34px rgba(0, 0, 0, 0.35);
}

.vision-pillar-number {
    font-size: 34px;
    font-weight: 700;
    color: #2F6FED;
    margin-bottom: 12px;
    text-shadow: 0 2px 10px rgba(0,0,0,0.35);
}

.vision-pillar h3 {
    font-size: 16px;
    font-weight: 700;
    color: #FFFFFF;
    margin: 0;
    line-height: 1.4;
}

/* ===== PRODUCTS SECTION ===== */
.products-section {
    padding: 100px 0;
    background: var(--uw-light);
}

.products-head {
    text-align: center;
    max-width: 640px;
    margin: 0 auto 60px;
}

.products-head .label {
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--uw-blue);
    margin-bottom: 12px;
}

.products-head h2 {
    font-size: 36px;
    font-weight: 700;
    color: var(--uw-navy);
    margin-bottom: 16px;
}

.products-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
}

.product-card {
    background: #fff;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(249,168,37,0.08);
    border: 1px solid var(--uw-border);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.product-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 50px rgba(249,168,37,0.15);
}

.product-image {
    width: 100%;
    height: 240px;
    background: linear-gradient(135deg, #F6F1DE 0%, #E7D8A5 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
    color: rgba(249,168,37,0.3);
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
}

.product-card:nth-child(2) .product-image {
    background: linear-gradient(135deg, #FEF3E2 0%, #FFD9A0 100%);
}

.product-body {
    padding: 36px 32px;
}

.product-body h3 {
    font-size: 24px;
    font-weight: 700;
    color: var(--uw-navy);
    margin-bottom: 12px;
}

.product-body p {
    font-size: 15px;
    color: var(--uw-muted);
    line-height: 1.7;
    margin-bottom: 24px;
}

.product-features {
    list-style: none;
    padding: 0;
    margin: 24px 0;
}

.product-features li {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 14px;
    color: var(--uw-muted);
    margin-bottom: 10px;
}

.product-features i {
    color: #2F6FED;
    font-size: 14px;
}

.product-cta {
    display: inline-flex;
    gap: 12px;
    flex-wrap: wrap;
    margin-top: 20px;
}

/* ===== BUTTONS ===== */
.btn-primary {
    background: #b9820c;
    color: rgba(0,0,0,0) !important;
    text-shadow: 0 0 0 #fff, 400px 0 0 #fff;
    padding: 12px 28px;
    border-radius: 8px;
    font-size: 14px;
    font-weight: 600;
    text-decoration: none;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-primary:hover {
    background: #171d28;
    color: rgba(0,0,0,0) !important;
    text-shadow: -400px 0 0 #fff, 0 0 0 #fff;
}

.btn-outline {
    background: transparent;
    color: var(--uw-navy);
    padding: 12px 28px;
    border-radius: 8px;
    font-size: 14px;
    font-weight: 600;
    text-decoration: none;
    border: 1.5px solid var(--uw-border);
    cursor: pointer;
    transition: all 0.2s;
}

.btn-outline:hover {
    border-color: var(--uw-blue);
    background: rgba(249,168,37,0.05);
    color: var(--uw-navy);
}

/* ===== CTA BANNER ===== */
.about-cta {
    padding: 100px 0;
    background: var(--uw-navy);
    text-align: center;
    position: relative;
    overflow: hidden;
}

.about-cta::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(circle, rgba(185,130,12,0.10) 0%, transparent 70%);
}

.about-cta .inner {
    position: relative;
    z-index: 1;
    max-width: 600px;
    margin: 0 auto;
}

.about-cta h2 {
    font-size: 36px;
    font-weight: 700;
    color: #fff;
    margin-bottom: 16px;
}

.about-cta p {
    color: #D0D0D0;
    font-size: 16px;
    margin-bottom: 32px;
}

.about-cta .btns {
    display: flex;
    gap: 14px;
    justify-content: center;
    flex-wrap: wrap;
}
.about-cta .btn-outline {
    border-color: rgba(255,255,255,0.7);
    color: #fff;
}
.about-cta .btn-outline:hover,
.about-cta .btn-outline:focus,
.about-cta .btn-outline:active {
    background: rgba(249,168,37,0.10);
    border-color: #b9820c !important;
    color: #fff !important;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
    .about-hero .hero-grid,
    .products-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .mission-container {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .vision-pillars {
        grid-template-columns: repeat(2, 1fr);
    }

    .about-hero {
        padding: 100px 0 60px;
    }

    .mission-section,
    .vision-section,
    .products-section {
        padding: 60px 0;
    }
}

@media (max-width: 640px) {
    .about-hero h1 {
        font-size: 32px;
    }

    .mission-content h2,
    .vision-top h2,
    .about-cta h2 {
        font-size: 28px;
    }

    .vision-pillars {
        grid-template-columns: 1fr;
    }

    .products-head h2 {
        font-size: 28px;
    }
}
