:root {
    --uw-blue: #b9820c;
    --uw-navy: #111111;
    --uw-muted: #4B4B4B;
    --uw-border: #E3D7B2;
    --uw-light: #FAFAF8;
}

* { box-sizing: border-box; }

/* ===================== */
/* HERO - LIGHT & CLEAN  */
/* ===================== */
.ind-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;
}

/* Subtle animated gradient orbs */
.ind-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; }
}

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

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

.ind-hero h1 {
    font-family: 'Sora', sans-serif;
    font-size: clamp(36px, 5vw, 52px);
    font-weight: 700;
    color: var(--uw-navy);
    line-height: 1.2;
    margin-bottom: 22px;
    max-width: 680px;
}

.ind-hero p.lead {
    font-size: 17px;
    color: var(--uw-muted);
    line-height: 1.7;
    max-width: 560px;
    margin-bottom: 36px;
}

.ind-hero .hero-btns {
    display: flex;
    gap: 14px;
    flex-wrap: wrap;
}

.btn-hero-primary {
    background: #b9820c;
    color: rgba(0,0,0,0) !important;
    text-shadow: 0 0 0 #fff, 400px 0 0 #fff;
    padding: 13px 28px;
    border-radius: 8px;
    font-size: 15px;
    font-weight: 600;
    text-decoration: none;
    border: none;
    transition: all 0.3s ease;
}
.btn-hero-primary:hover {
    background: #171d28;
    color: rgba(0,0,0,0) !important;
    text-shadow: -400px 0 0 #fff, 0 0 0 #fff;
    transform: none;
}

.btn-hero-outline {
    background: transparent;
    color: var(--uw-navy);
    padding: 13px 28px;
    border-radius: 8px;
    font-size: 15px;
    font-weight: 500;
    text-decoration: none;
    border: 1.5px solid var(--uw-border);
    transition: border-color 0.2s, background 0.2s;
}
.btn-hero-outline:hover { border-color: var(--uw-blue); background: rgba(249,168,37,0.05); color: var(--uw-navy); }

/* Floating stat chips */
.hero-stats {
    display: flex;
    gap: 24px;
    margin-top: 52px;
    flex-wrap: wrap;
}
.stat-chip {
    background: rgba(249,168,37,0.08);
    border: 1px solid var(--uw-border);
    border-radius: 12px;
    padding: 16px 22px;
    backdrop-filter: blur(8px);
}
.stat-chip .num {
    font-family: 'Sora', sans-serif;
    font-size: 26px;
    font-weight: 700;
    color: var(--uw-navy);
    line-height: 1;
    margin-bottom: 4px;
}
.stat-chip .label {
    font-size: 12px;
    color: var(--uw-muted);
    font-weight: 500;
}

/* ===================== */
/* SECTION SHARED        */
/* ===================== */
.sec-label {
    font-size: 11.5px;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--uw-blue);
    margin-bottom: 10px;
}

/* ===================== */
/* INDUSTRIES GRID       */
/* ===================== */
.industries-section {
    padding: 100px 0 80px;
    background: #fff;
}

.industries-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    margin-top: 52px;
}

.ind-card {
    border-radius: 16px;
    overflow: hidden;
    border: 1px solid var(--uw-border);
    transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
    cursor: pointer;
    background: #fff;
    position: relative;
}
.ind-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 20px 40px rgba(249,168,37,0.15);
    border-color: #b9820c;
}

/* Image placeholder */
.ind-card-img {
    width: 100%;
    height: 160px;
    background: linear-gradient(135deg, #F7F7F7 0%, #EEE5C3 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
}
.ind-card-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.ind-card-img::after {
    content: 'IMAGE';
    position: absolute;
    font-size: 10px;
    letter-spacing: 0.1em;
    color: rgba(249,168,37,0.3);
    font-weight: 600;
}
.ind-card-img .img-icon {
    font-size: 44px;
    color: rgba(47,111,237,0.25);
    position: relative;
    z-index: 1;
}
/* Unique gradient per card */
.ind-card:nth-child(1) .ind-card-img { background: linear-gradient(135deg, #F6F1DE, #E7D8A5); }
.ind-card:nth-child(2) .ind-card-img { background: linear-gradient(135deg, #E6F4EA, #BDEACA); }
.ind-card:nth-child(3) .ind-card-img { background: linear-gradient(135deg, #FEF3E2, #FFD9A0); }
.ind-card:nth-child(4) .ind-card-img { background: linear-gradient(135deg, #F3E8FD, #DDB8F8); }
.ind-card:nth-child(5) .ind-card-img { background: linear-gradient(135deg, #E8F8F5, #A9E8D8); }
.ind-card:nth-child(6) .ind-card-img { background: linear-gradient(135deg, #FDE8E8, #FFB8B8); }
.ind-card:nth-child(7) .ind-card-img { background: linear-gradient(135deg, #E8EEF8, #B8CCEE); }
.ind-card:nth-child(8) .ind-card-img { background: linear-gradient(135deg, #FFF8E1, #FFE082); }

.ind-card-body {
    padding: 20px;
}
.ind-card-body h4 {
    font-size: 15px;
    font-weight: 700;
    color: var(--uw-navy);
    margin-bottom: 6px;
}
.ind-card-body p {
    font-size: 13px;
    color: var(--uw-muted);
    line-height: 1.5;
    margin: 0;
}
.ind-tag {
    display: inline-block;
    background: rgba(47,111,237,0.08);
    color: #2F6FED;
    font-size: 11px;
    font-weight: 600;
    padding: 3px 10px;
    border-radius: 20px;
    margin-top: 10px;
}

/* Hover reveal */
.ind-card .hover-bar {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0%;
    height: 3px;
    background: #b9820c;
    transition: width 0.3s ease;
}
.ind-card:hover .hover-bar { width: 100%; }

@media (max-width: 1100px) { .industries-grid { grid-template-columns: repeat(3, 1fr); } }
@media (max-width: 768px)  { .industries-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 480px)  { .industries-grid { grid-template-columns: 1fr; } }

/* ===================== */
/* PLATFORM STRIP        */
/* ===================== */
.platform-strip {
    background: var(--uw-navy);
    padding: 72px 0;
    position: relative;
    overflow: hidden;
}
.platform-strip::before {
    content: none;
    display: none;
}
.platform-strip .row { position: relative; z-index: 1; }
.platform-strip h2 {
    font-family: 'Sora', sans-serif;
    font-size: 32px;
    font-weight: 700;
    color: #fff;
    margin-bottom: 12px;
}
.platform-strip p {
    color: #D0D0D0;
    font-size: 15px;
    line-height: 1.7;
    margin: 0;
}
.platform-strip .feat-list {
    list-style: none;
    padding: 0;
    margin: 0;
}
.platform-strip .feat-list li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    margin-bottom: 18px;
    color: #E1E1E1;
    font-size: 14.5px;
    line-height: 1.5;
}
.platform-strip .feat-list li .check {
    width: 22px;
    height: 22px;
    min-width: 22px;
    background: rgba(47,111,237,0.18);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 1px;
}
.platform-strip .feat-list li .check::after {
    content: '';
    width: 7px;
    height: 4px;
    border-left: 1.5px solid #2F6FED;
    border-bottom: 1.5px solid #2F6FED;
    transform: rotate(-45deg) translateY(-1px);
}

/* ===================== */
/* TABBED SPOTLIGHT      */
/* ===================== */
.spotlight-section {
    padding: 100px 0;
    background: var(--uw-light);
}
.spotlight-tabs {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
    margin-bottom: 40px;
}
.sp-tab {
    padding: 9px 20px;
    border-radius: 30px;
    border: 1px solid var(--uw-border);
    background: #fff;
    font-size: 13.5px;
    font-weight: 500;
    color: var(--uw-muted);
    cursor: pointer;
    transition: all 0.2s;
}
.sp-tab:hover { border-color: #2F6FED; color: #2F6FED; }
.sp-tab.active {
    background: #2F6FED;
    border-color: #2F6FED;
    color: #fff;
    font-weight: 600;
}

.sp-panel { display: none; }
.sp-panel.active { display: flex; gap: 48px; align-items: center; flex-wrap: wrap; }

.sp-visual {
    flex: 1;
    min-width: 280px;
    height: 320px;
    border-radius: 20px;
    background: linear-gradient(135deg, #F7F7F7 0%, #E7D8A5 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 13px;
    color: rgba(249,168,37,0.4);
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    border: 1px solid rgba(249,168,37,0.12);
    overflow: hidden;
}
.sp-visual img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.sp-panel:nth-child(2) .sp-visual { background: linear-gradient(135deg, #EFE7CE, #DCCB96); }
.sp-panel:nth-child(3) .sp-visual { background: linear-gradient(135deg, #F4ECDA, #E8D39B); }
.sp-panel:nth-child(4) .sp-visual { background: linear-gradient(135deg, #EDE7D6, #D9C898); }

.sp-content { flex: 1; min-width: 280px; }
.sp-content h3 {
    font-family: 'Sora', sans-serif;
    font-size: 26px;
    font-weight: 700;
    color: var(--uw-navy);
    margin-bottom: 14px;
}
.sp-content p {
    color: var(--uw-muted);
    font-size: 15px;
    line-height: 1.7;
    margin-bottom: 22px;
}
.sp-pills {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 28px;
}
.sp-pill {
    background: rgba(47, 111, 237, 0.08);
    color: #2F6FED;
    font-size: 12.5px;
    font-weight: 600;
    padding: 6px 15px;
    border-radius: 999px;
    border: 1px solid rgba(47, 111, 237, 0.2);
    box-shadow: none;
}
.sp-link {
    font-size: 14px;
    font-weight: 600;
    color: #b9820c;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    transition: color 0.2s ease;
}
.sp-link:hover {
    gap: 6px;
    color: #d4870e;
    text-shadow: 0 0 0 rgba(0, 0, 0, 0);
}

/* ===================== */
/* WHY SECTION           */
/* ===================== */
.why-section {
    padding: 100px 0;
    background: #fff;
}

.why-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    column-gap: 30px;
    row-gap: 40px; /* Provides vertical space between rows */
    margin-top: 60px;
}

/* Card Styling */
.why-card {
    margin-top: 40px; /* Prevents the floating icon from hitting elements above it */
    padding: 56px 24px 32px; /* Extra top padding for the floating icon */
    border-radius: 16px;
    border: 1px solid var(--uw-border);
    background: #fff;
    box-shadow: 0 10px 30px rgba(0,0,0,0.02);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    position: relative;
    text-align: center; /* Centers the text like the reference */
}

.why-card:hover { 
    transform: translateY(-5px); 
    box-shadow: 0 20px 40px rgba(249,168,37,0.08); /* Original blue hover shadow */
}

/* Floating Centered Icon - Original Blue Style */
.why-icon {
    width: 72px;
    height: 72px;
    background: linear-gradient(155deg, #EAF1FF 0%, #D5E3FF 60%, #B8CEFF 100%);
    border-radius: 50%; /* Keeps it as a circle */
    display: flex;
    align-items: center;
    justify-content: center;
    position: absolute;
    top: -36px; /* Pulls exactly half the icon up to overlap the top border */
    left: 50%;
    transform: translateX(-50%);
    border: 1px solid rgba(47, 111, 237, 0.4);
    box-shadow: 0 8px 18px rgba(17, 17, 17, 0.08), 0 0 18px rgba(47, 111, 237, 0.12);
}

.why-icon i { 
    color: #2F6FED;
    font-size: 24px; 
}

.why-card h4 { 
    font-size: 17px; 
    font-weight: 700; 
    color: var(--uw-navy); 
    margin-bottom: 12px; 
}

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

/* Responsive Adjustments */
@media (max-width: 992px) { 
    .why-grid { 
        grid-template-columns: repeat(2, 1fr); 
    } 
}
@media (max-width: 768px) { 
    .why-grid { 
        grid-template-columns: 1fr; 
        row-gap: 50px; /* Extra gap on mobile for stacked cards */
    } 
}
/* ===================== */
/* CTA BANNER            */
/* ===================== */
.cta-banner {
    background: #0B2545;
    padding: 100px 0;
    text-align: center;
    position: relative;
    overflow: hidden;
}
.cta-banner::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(circle, rgba(185,130,12,0.10) 0%, transparent 70%);
}
.cta-banner .inner { position: relative; z-index: 1; max-width: 600px; margin: 0 auto; }
.cta-banner h2 {
    font-size: 36px;
    font-weight: 700;
    color: #fff;
    margin-bottom: 16px;
}
.cta-banner p { color: #D0D0D0; font-size: 16px; margin-bottom: 32px; }
.cta-banner .btns { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }

.cta-banner .btns .btn-hero-primary,
.cta-banner .btns .btn-hero-outline {
    padding: 12px 28px;
    font-size: 14px !important;
}

.cta-banner .inner.reveal {
    opacity: 1;
    transform: none;
}

.cta-banner .btn-hero-outline {
    color: #fff;
    border-color: rgba(255,255,255,0.7);
}

.cta-banner .btn-hero-outline:hover,
.cta-banner .btn-hero-outline:focus,
.cta-banner .btn-hero-outline:active {
    border-color: #b9820c;
    background: rgba(249,168,37,0.10);
    color: #fff;
}

/* ===================== */
/* REVEAL ANIMATION      */
/* ===================== */
.reveal {
    opacity: 0;
    transform: translateY(28px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}
.reveal.visible {
    opacity: 1;
    transform: translateY(0);
}

@media (max-width: 640px) {
    .cta-banner h2 {
        font-size: 28px;
    }
}
