/* =====================================================
   ABOUT.CSS — Wonder Digimech Upgraded Style
   Premium high-tech industrial design with glassmorphism,
   custom animations, and rich interactive layouts.
   ===================================================== */



/* ---- HERO SECTION ---- */
@keyframes gradMove {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}

.page-hero.animated-gradient {
    padding: 100px 0 100px;
    background: linear-gradient(-45deg, #020617, #0b1528, #0f172a, #030712);
    background-size: 400% 400%;
    animation: gradMove 12s ease infinite;
    position: relative;
    overflow: hidden;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.page-hero.animated-gradient::before {
    content: '';
    position: absolute;
    top: -30%;
    left: -20%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(13, 148, 136, 0.12) 0%, transparent 65%);
    filter: blur(80px);
    pointer-events: none;
}

.page-hero.animated-gradient::after {
    content: '';
    position: absolute;
    bottom: -30%;
    right: -10%;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(56, 189, 248, 0.1) 0%, transparent 65%);
    filter: blur(80px);
    pointer-events: none;
}

/* ---- COMPANY STORY (Light Section with Glowing Assets) ---- */
.company-story.bg-light-section {
    padding: 50px 0;
    background-color: #fbfcfd;
    position: relative;
    overflow: hidden;
}

/* Glowing Radial Blobs for modern depth */
.about-glow-blob {
    position: absolute;
    border-radius: 50%;
    filter: blur(140px);
    opacity: 0.15;
    pointer-events: none;
    z-index: 1;
}
.blob-teal {
    top: 10%;
    left: -10%;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, #0d9488 0%, transparent 70%);
}
.blob-blue {
    bottom: 20%;
    right: -10%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, #38bdf8 0%, transparent 70%);
}
.about-grid-overlay {
    position: absolute;
    inset: 0;
    background-image: linear-gradient(rgba(13, 148, 136, 0.03) 1px, transparent 1px),
                      linear-gradient(90deg, rgba(13, 148, 136, 0.03) 1px, transparent 1px);
    background-size: 40px 40px;
    background-position: center;
    pointer-events: none;
    z-index: 2;
}

.company-story .container {
    position: relative;
    z-index: 3;
}

.company-intro-grid {
    display: grid;
    grid-template-columns: 1.15fr 0.85fr;
    gap: 60px;
    align-items: center;
    margin-bottom: 50px;
}

/* Center the section-subtitle badge in the intro text column */
.company-intro-text {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.company-intro-text .section-subtitle {
    display: inline-flex !important;
    align-self: center;
    margin-bottom: 20px;
}

.company-intro-text .intro-lead {
    font-size: 1.45rem;
    line-height: 1.7;
    color: #0f172a;
    font-weight: 800;
    margin-bottom: 24px;
    background: linear-gradient(135deg, #0f172a 0%, #1e293b 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.company-intro-text p {
    font-size: 1.05rem;
    line-height: 1.85;
    color: #475569;
    margin-bottom: 35px;
}

.intro-badge-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
}

.intro-badge {
    display: flex;
    align-items: center;
    gap: 18px;
    background: rgba(255, 255, 255, 0.7);
    backdrop-filter: blur(8px);
    border: 2px solid rgba(226, 232, 240, 0.8);
    padding: 20px;
    border-radius: 21px;
    box-shadow: 0 4px 20px rgba(15, 23, 42, 0.01);
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    position: relative;
}

.intro-badge::before {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: 20px;
    padding: 1.5px;
    background: linear-gradient(135deg, rgba(13, 148, 136, 0.3), rgba(56, 189, 248, 0.3));
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    opacity: 0;
    transition: opacity 0.4s ease;
}

.intro-badge:hover::before {
    opacity: 1;
}

.intro-badge:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(13, 148, 136, 0.08);
    background: #ffffff;
}

.badge-icon-wrapper {
    width: 52px;
    height: 52px;
    border-radius: 14px;
    background: rgba(13, 148, 136, 0.05);
    border: 1px solid rgba(13, 148, 136, 0.12);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #0d9488;
    font-size: 1.25rem;
    transition: all 0.3s ease;
}

.intro-badge:hover .badge-icon-wrapper {
    background: var(--primary-gradient);
    color: #ffffff;
    border-color: transparent;
    transform: rotate(8deg) scale(1.08);
}

.intro-badge span {
    font-size: 0.95rem;
    font-weight: 700;
    color: #1e293b;
    line-height: 1.4;
}

/* Stats Cards Redesign */
.company-intro-stats {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.stat-glass-card {
    background: #ffffff;
    backdrop-filter: blur(12px);
    border: 2px solid #e8eef5;
    padding: 36px 30px;
    border-radius: 24px;
    box-shadow: 0 4px 20px rgba(15, 23, 42, 0.06);
    position: relative;
    overflow: hidden;
    transition: all 0.35s cubic-bezier(0.16, 1, 0.3, 1);
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
}

.stat-card-glow {
    position: absolute;
    width: 180px;
    height: 180px;
    background: radial-gradient(circle, rgba(13, 148, 136, 0.10) 0%, transparent 70%);
    border-radius: 50%;
    bottom: -60px;
    right: -40px;
    pointer-events: none;
    transition: all 0.6s ease;
}

.stat-glass-card::before {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: 24px;
    padding: 1.5px;
    background: linear-gradient(135deg, rgba(13, 148, 136, 0.3), rgba(56, 189, 248, 0.3));
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    opacity: 0;
    transition: opacity 0.4s ease;
}

.stat-glass-card:hover::before {
    opacity: 1;
}

.stat-glass-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 20px 50px rgba(13, 148, 136, 0.14);
    border-color: rgba(13, 148, 136, 0.2);
}

.stat-glass-card:hover .stat-card-glow {
    transform: scale(1.6) translate(-10px, 10px);
}

.stat-card-content {
    position: relative;
    z-index: 2;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    gap: 10px;
    width: 100%;
}

.stat-number {
    display: block;
    font-family: var(--font-display);
    font-size: 4.2rem;
    font-weight: 800;
    line-height: 1;
    background: linear-gradient(135deg, #0d9488 0%, #38bdf8 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    letter-spacing: -2px;
    text-align: center;
    width: 100%;
}

.stat-label {
    font-size: 0.78rem;
    font-weight: 800;
    color: #64748b;
    text-transform: uppercase;
    letter-spacing: 2.5px;
    text-align: center;
    width: 100%;
}

/* ---- TIMELINE (Milestones Redesign) ---- */
.timeline-title-wrapper {
    margin-top: 40px;
    margin-bottom: 10px;
}

.timeline-main-title {
    font-family: var(--font-display);
    font-size: clamp(2.2rem, 5vw, 3.2rem);
    font-weight: 800;
    color: #0f172a;
    margin-bottom: 15px;
    letter-spacing: -1px;
    background: linear-gradient(135deg, #0f172a 30%, #0d9488 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.timeline-title-wrapper p {
    color: #64748b;
    font-size: 1.15rem;
}

.timeline {
    position: relative;
    max-width: 1000px;
    margin: 0 auto 20px;
    padding: 40px 0;
}

/* Glowing Neon Line */
.timeline::before {
    content: '';
    position: absolute;
    top: 0; bottom: 0;
    left: 50%;
    width: 6px;
    background: linear-gradient(180deg, 
        rgba(13, 148, 136, 0.05) 0%, 
        #0d9488 15%, 
        #38bdf8 50%, 
        #0d9488 85%, 
        rgba(13, 148, 136, 0.05) 100%
    );
    transform: translateX(-50%);
    border-radius: 10px;
    box-shadow: 0 0 20px rgba(13, 148, 136, 0.3), 0 0 40px rgba(56, 189, 248, 0.15);
}

.timeline-item {
    position: relative;
    width: 50%;
    padding: 20px 60px;
    box-sizing: border-box;
    z-index: 10;
}

.timeline-item:nth-child(odd)  { left: 0;   text-align: right; }
.timeline-item:nth-child(even) { left: 50%; text-align: left; }

/* Pulsing multi-ring neon timeline dot */
.timeline-dot {
    position: absolute;
    top: 36px;
    width: 24px;
    height: 24px;
    background: #ffffff;
    border: 5px solid #0d9488;
    border-radius: 50%;
    z-index: 15;
    box-shadow: 0 0 0 6px rgba(13, 148, 136, 0.15), 0 0 15px rgba(13, 148, 136, 0.4);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.timeline-dot::after {
    content: '';
    position: absolute;
    inset: -12px;
    border-radius: 50%;
    border: 2px solid rgba(56, 189, 248, 0.3);
    opacity: 0.8;
    animation: pulseDot 2.5s infinite;
}

@keyframes pulseDot {
    0% { transform: scale(0.85); opacity: 0.8; box-shadow: 0 0 0 0 rgba(56, 189, 248, 0.3); }
    70% { transform: scale(1.3); opacity: 0; box-shadow: 0 0 0 12px rgba(56, 189, 248, 0); }
    100% { transform: scale(0.85); opacity: 0; box-shadow: 0 0 0 0 rgba(56, 189, 248, 0); }
}

.timeline-item:nth-child(odd)  .timeline-dot { right: -12px; }
.timeline-item:nth-child(even) .timeline-dot { left: -12px; }

.timeline-item:hover .timeline-dot {
    background: #ffffff;
    border-color: #38bdf8;
    transform: scale(1.3);
    box-shadow: 0 0 0 8px rgba(56, 189, 248, 0.25), 0 0 25px rgba(56, 189, 248, 0.6);
}

.timeline-item:hover .timeline-dot::after {
    animation: none;
    border-color: #38bdf8;
}

/* Glassmorphic Timeline Content Cards */
.timeline-content.glass-card {
    background: rgba(255, 255, 255, 0.7);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border: 3px solid rgba(226, 232, 240, 0.7);
    padding: 35px;
    border-radius: 20px;
    box-shadow: 0 10px 40px rgba(15, 23, 42, 0.02);
    position: relative;
    overflow: hidden;
    transition: all 0.6s cubic-bezier(0.165, 0.84, 0.44, 1);
}

/* Color Accent Top Band */
.timeline-content.glass-card::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #0d9488, #38bdf8);
}

.timeline-content.glass-card:hover {
    transform: translateY(-10px);
    border-color: rgba(13, 148, 136, 0.35);
    background: #ffffff;
    box-shadow: 0 25px 50px rgba(13, 148, 136, 0.15);
}

.timeline-year {
    display: inline-block;
    padding: 6px 16px;
    background: linear-gradient(135deg, rgba(13, 148, 136, 0.08) 0%, rgba(56, 189, 248, 0.05) 100%);
    border: 1px solid rgba(13, 148, 136, 0.2);
    color: #0d9488;
    font-weight: 800;
    border-radius: 100px;
    font-size: 0.85rem;
    letter-spacing: 1.5px;
    margin-bottom: 16px;
    box-shadow: inset 0 2px 4px rgba(13, 148, 136, 0.03);
}

.timeline-content h3 {
    font-family: var(--font-display);
    font-size: 1.45rem;
    font-weight: 800;
    color: #0f172a;
    margin-bottom: 12px;
}

.timeline-content p {
    font-size: 0.98rem;
    color: #475569;
    line-height: 1.75;
    margin: 0;
}

/* Animations for timeline entrance (via reveal-up class) */
.timeline-item.reveal-up {
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 0.8s ease, transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

.timeline-item.reveal-up.active {
    opacity: 1;
    transform: translateY(0);
}

/* Specific side entries */
.timeline-item.odd.reveal-up {
    transform: translate3d(-50px, 0, 0);
}
.timeline-item.even.reveal-up {
    transform: translate3d(50px, 0, 0);
}
.timeline-item.odd.reveal-up.active,
.timeline-item.even.reveal-up.active {
    transform: translate3d(0, 0, 0);
}

/* ---- LEADERSHIP (Founders) ---- */
.founder-section-header {
    margin-top: 2px;
    margin-bottom: 60px;
}

.founder-grid-new {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 36px;
}

.founder-card-new.glass-panel {
    background: #ffffff !important;
    border: 5px solid #e2e8f0 !important;
    border-radius: var(--radius-xl);
    padding: 40px;
    box-shadow: 0 10px 30px rgba(15, 23, 42, 0.03) !important;
    display: flex;
    gap: 28px;
    transition: all 0.5s cubic-bezier(0.16, 1, 0.3, 1);
    backdrop-filter: none !important;
}

.founder-card-new.glass-panel:hover {
    transform: translateY(-6px);
    border-color: rgba(56, 189, 248, 0.3) !important;
    box-shadow: 0 25px 45px rgba(56, 189, 248, 0.1) !important;
}

.founder-avatar-wrapper {
    flex-shrink: 0;
}

.founder-avatar-placeholder {
    width: 90px;
    height: 90px;
    background: linear-gradient(135deg, rgba(13, 148, 136, 0.08) 0%, rgba(56, 189, 248, 0.05) 100%);
    color: var(--primary-color);
    border-radius: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.2rem;
    border: 1px solid rgba(13, 148, 136, 0.15);
    transition: all 0.3s ease;
}

.founder-card-new:hover .founder-avatar-placeholder {
    background: var(--primary-gradient);
    color: #ffffff;
    border-color: transparent;
    transform: scale(1.06) rotate(5deg);
    box-shadow: 0 10px 20px rgba(13, 148, 136, 0.2);
}

.founder-info-new h3 {
    font-family: var(--font-display);
    font-size: 1.35rem;
    font-weight: 800;
    color: #0f172a;
    margin-bottom: 6px;
}

.founder-role {
    display: block;
    font-size: 0.8rem;
    color: var(--primary-color);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    margin-bottom: 15px;
}

.founder-bio {
    font-size: 0.95rem;
    color: #475569;
    line-height: 1.75;
    margin-bottom: 20px;
}

.founder-quote {
    padding-left: 20px;
    border-left: 2px solid var(--secondary-color);
    position: relative;
}

.founder-quote i {
    position: absolute;
    left: 0; top: 4px;
    font-size: 0.85rem;
    color: var(--secondary-color);
    opacity: 0.6;
}

.founder-quote span {
    font-size: 0.9rem;
    font-style: italic;
    color: #64748b;
    line-height: 1.65;
    display: block;
}

/* ---- MISSION & VISION (Dark Section) ---- */
.mission-vision.bg-dark-section {
    padding: 100px 0;
    background: radial-gradient(circle at 20% 80%, rgba(13, 148, 136, 0.04) 0%, transparent 50%), #050914;
}

.mv-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    margin-top: 30px;
}

.mv-card.glass-panel {
    padding: 40px 40px;
    transition: all 0.5s cubic-bezier(0.16, 1, 0.3, 1);
    position: relative;
    overflow: hidden;
    background: rgba(15, 23, 42, 0.4);
    border: 5px solid rgba(255, 255, 255, 0.05);
}

.mv-card.glass-panel::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 2px;
    background: var(--primary-gradient);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.5s ease;
}

.mv-card.glass-panel:hover::before {
    transform: scaleX(1);
}

.mv-card.glass-panel:hover {
    transform: translateY(-8px);
    border-color: rgba(13, 148, 136, 0.25);
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.4);
    background: rgba(15, 23, 42, 0.7);
}

.mv-icon {
    font-size: 2.8rem;
    background: var(--primary-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 24px;
    display: inline-block;
    transition: transform 0.3s ease;
}

.mv-card:hover .mv-icon {
    transform: scale(1.15) rotate(-5deg);
}

.mv-card h3 {
    font-family: var(--font-display);
    font-size: 1.75rem;
    font-weight: 800;
    color: #ffffff;
    margin-bottom: 16px;
}

.mv-card p {
    font-size: 1.05rem;
    line-height: 1.8;
    color: var(--text-secondary);
    margin: 0;
}

/* ---- ACHIEVEMENTS (Light Section) ---- */
.achievements.bg-light-section {
    padding: 100px 0;
    background: #f8fafc;
}

.achievement-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 36px;
    margin-top: 60px;
}

.counter-card {
    background: #ffffff;
    border: 1px solid #e2e8f0;
    padding: 50px 36px;
    border-radius: var(--radius-xl);
    text-align: center;
    box-shadow: 0 10px 30px rgba(15, 23, 42, 0.03);
    transition: all 0.5s cubic-bezier(0.16, 1, 0.3, 1);
    position: relative;
    overflow: hidden;
}

.counter-card::before {
    content: '';
    position: absolute;
    bottom: 0; left: 0;
    width: 100%; height: 3px;
    background: var(--primary-gradient);
    transform: scaleX(0);
    transform-origin: center;
    transition: transform 0.45s ease;
}

.counter-card:hover::before {
    transform: scaleX(1);
}

.counter-card:hover {
    transform: translateY(-6px);
    border-color: rgba(13, 148, 136, 0.25);
    box-shadow: 0 20px 40px rgba(13, 148, 136, 0.1);
}

.counter-card .counter {
    font-family: var(--font-display);
    font-size: 3.8rem;
    font-weight: 800;
    line-height: 1;
    background: var(--primary-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 12px;
}

.counter-card p {
    font-size: 0.88rem;
    font-weight: 700;
    color: #64748b;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin: 0;
}

/* ---- WHY PARTNER (Dark Section) ---- */
.why-us.bg-dark-section {
    padding: 110px 0;
}

.why-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 36px;
    margin-top: 60px;
}

.why-card {
    padding: 44px 36px;
    border-radius: var(--radius-xl);
    transition: all 0.5s cubic-bezier(0.16, 1, 0.3, 1);
    position: relative;
    overflow: hidden;
    background: rgba(15, 23, 42, 0.4);
    border: 3px solid rgba(255, 255, 255, 0.05);
}

.why-card::before {
    content: attr(data-num);
    position: absolute;
    top: -10px; right: 20px;
    font-family: var(--font-display);
    font-size: 7rem;
    font-weight: 900;
    color: rgba(255, 255, 255, 0.02);
    line-height: 1;
    pointer-events: none;
    transition: color 0.4s ease;
}

.why-card:hover::before {
    color: rgba(13, 148, 136, 0.07);
}

.why-card:hover {
    transform: translateY(-8px);
    border-color: rgba(13, 148, 136, 0.2);
    background: rgba(15, 23, 42, 0.7);
    box-shadow: var(--shadow-lg);
}

.icon-box {
    font-size: 1.8rem;
    color: var(--primary-color);
    background: rgba(13, 148, 136, 0.08);
    width: 60px; height: 60px;
    border-radius: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 24px;
    border: 1px solid rgba(13, 148, 136, 0.15);
    transition: all 0.3s ease;
}

.why-card:hover .icon-box {
    background: var(--primary-gradient);
    color: #ffffff;
    border-color: transparent;
    transform: scale(1.1) rotate(8deg);
}

.why-card h3 {
    font-family: var(--font-display);
    font-size: 1.35rem;
    font-weight: 800;
    color: #ffffff;
    margin-bottom: 12px;
}

.why-card p {
    font-size: 0.98rem;
    line-height: 1.75;
    color: var(--text-secondary);
    margin: 0;
}

/* ---- INDUSTRIAL SHOWCASE (Light Section) ---- */
.industrial-showcase.bg-light-section {
    padding: 110px 0;
}

.industrial-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
    margin-top: 60px;
}

.industrial-item {
    border-radius: var(--radius-xl);
    overflow: hidden;
    background: #ffffff;
    border: 3px solid #e2e8f0;
    box-shadow: 0 4px 15px rgba(15, 23, 42, 0.03);
    transition: all 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}

.industrial-item:hover {
    transform: translateY(-8px);
    border-color: var(--primary-color);
    box-shadow: 0 20px 40px rgba(13, 148, 136, 0.1);
}

.industrial-img-wrapper {
    height: 250px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #f8fafc;
    padding: 24px;
    overflow: hidden;
}

.industrial-img-wrapper img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
    transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
    filter: drop-shadow(0 8px 16px rgba(15, 23, 42, 0.06));
}

.industrial-item:hover .industrial-img-wrapper img {
    transform: scale(1.08) translateY(-4px);
    filter: drop-shadow(0 12px 24px rgba(13, 148, 136, 0.12));
}

.industrial-overlay {
    padding: 28px;
}

.industrial-info .ind-tag {
    display: inline-block;
    padding: 4px 12px;
    background: rgba(13, 148, 136, 0.06);
    border: 1px solid rgba(13, 148, 136, 0.15);
    color: var(--primary-color);
    font-size: 0.72rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    border-radius: var(--radius-full);
    margin-bottom: 12px;
}

.industrial-info h4 {
    font-family: var(--font-display);
    font-size: 1.2rem;
    font-weight: 800;
    color: #0f172a;
    margin-bottom: 8px;
}

.industrial-info p {
    font-size: 0.9rem;
    line-height: 1.65;
    color: #64748b;
    margin-bottom: 18px;
}

.ind-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-family: var(--font-display);
    font-size: 0.88rem;
    font-weight: 700;
    color: var(--primary-color);
    transition: all var(--transition-fast);
}

.industrial-item:hover .ind-btn {
    gap: 12px;
    color: var(--primary-hover);
}

/* ---- CTA BANNER (Dark) ---- */
.cta-banner .btn-secondary {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 16px 44px;
    background: var(--primary-gradient);
    color: #ffffff;
    font-weight: 700;
    font-family: var(--font-display);
    font-size: 1rem;
    border-radius: var(--radius-full);
    box-shadow: 0 10px 30px rgba(13, 148, 136, 0.25);
    border: none;
    transition: all var(--transition-md);
}

.cta-banner .btn-secondary:hover {
    transform: translateY(-4px);
    box-shadow: 0 20px 45px rgba(13, 148, 136, 0.4);
}

/* Responsive */
@media (max-width: 1024px) {
    .company-intro-grid { grid-template-columns: 1fr; gap: 50px; }
    .founder-grid-new { grid-template-columns: 1fr; }
    .mv-grid { grid-template-columns: 1fr; }
}

@media (max-width: 991px) {
    .achievement-grid { grid-template-columns: repeat(2, 1fr); }
    .why-grid { grid-template-columns: 1fr; }
    .industrial-grid { grid-template-columns: 1fr; }
}

@media (max-width: 768px) {
    .timeline::before { left: 28px; }
    .timeline-item { width: 100%; padding-left: 65px; padding-right: 20px; }
    .timeline-item:nth-child(odd),
    .timeline-item:nth-child(even) { left: 0; text-align: left; }
    .timeline-dot { left: 18px !important; right: auto !important; }
    .intro-badge-grid { grid-template-columns: 1fr; }
    .founder-card-new.glass-panel { flex-direction: column; align-items: center; text-align: center; padding: 32px 24px; }
    .founder-quote { padding-left: 0; border-left: none; border-top: 2px solid var(--secondary-color); padding-top: 14px; margin-top: 14px; }
    .founder-quote i { position: static; display: inline-block; margin-bottom: 6px; }
    .achievement-grid { grid-template-columns: 1fr; max-width: 400px; margin: 60px auto 0; }
}

/* Top Header Hover Fix */
.top-contact a:hover { color: var(--primary-color) !important; }
