/* ===== REDESIGNED ABOUT HERO STYLES (BRAND STYLE) ===== */
.about-hero-redesigned {
    padding: 90px 0 80px;
    background: #FFFFFF;
    position: relative;
    overflow: hidden;
}

.hero-layout {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: var(--spacing-4xl);
    align-items: center;
}

/* Left Content */
.hero-content-left {
    position: relative;
    z-index: 5;
}

.trust-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(16, 185, 129, 0.08);
    padding: 8px 16px;
    border-radius: 100px;
    margin-bottom: var(--spacing-xl);
}

.badge-icon {
    color: #10B981;
    font-size: 0.9rem;
}

.badge-text {
    color: #10B981;
    font-weight: 600;
    font-size: 0.9rem;
}

.hero-title-main {
    font-size: clamp(2.5rem, 5vw, 4.2rem);
    font-weight: 900;
    line-height: 1.1;
    color: var(--base-dark);
    margin-bottom: var(--spacing-xl);
    letter-spacing: -1px;
}

.text-accent-cyan {
    color: #25D7E3;
}

.hero-description-main {
    font-size: 1.15rem;
    line-height: 1.6;
    color: #4B5563;
    max-width: 550px;
    margin-bottom: var(--spacing-2xl);
}

.hero-actions-main {
    display: flex;
    gap: var(--spacing-lg);
    margin-bottom: var(--spacing-3xl);
}

.btn-hero-primary {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: var(--base-dark);
    color: var(--white);
    padding: 16px 32px;
    border-radius: var(--radius-lg);
    font-weight: 700;
    text-decoration: none;
    transition: all 0.3s ease;
}

.btn-hero-primary:hover {
    background: #1e293b;
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

.btn-hero-outline {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: transparent;
    color: var(--base-dark);
    padding: 16px 32px;
    border: 1px solid #E5E7EB;
    border-radius: var(--radius-lg);
    font-weight: 700;
    text-decoration: none;
    transition: all 0.3s ease;
}

.btn-hero-outline:hover {
    background: #F9FAFB;
}

.hero-metrics-main {
    display: flex;
    align-items: center;
    gap: var(--spacing-xl);
}

.metric-item {
    display: flex;
    flex-direction: column;
}

.metric-value {
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--base-dark);
}

.metric-label {
    font-size: 0.85rem;
    color: #6B7280;
    font-weight: 500;
}

.metric-divider {
    width: 1px;
    height: 40px;
    background: #E5E7EB;
}

/* Right Visual */
.hero-visual-right {
    position: relative;
    display: flex;
    justify-content: flex-end;
}

.visual-wrapper {
    position: relative;
    width: 90%;
}

.main-image-frame {
    width: 100%;
    aspect-ratio: 4/3;
    border-radius: var(--radius-3xl);
    overflow: hidden;
    box-shadow: 0 40px 80px rgba(0, 0, 0, 0.08);
    position: relative;
    z-index: 2;
}

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

/* Floating Cards */
.floating-card {
    position: absolute;
    background: var(--white);
    padding: 16px;
    border-radius: var(--radius-xl);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.06);
    display: flex;
    align-items: center;
    gap: 12px;
    z-index: 10;
    animation: floatingEffect 4s ease-in-out infinite;
}

.stat-card-top {
    top: -20px;
    right: -20px;
    padding: 12px 20px;
    background: var(--white);
}

.stat-arrow {
    color: var(--base-dark);
    font-weight: 800;
}

.stat-number {
    font-size: 1.25rem;
    font-weight: 800;
    color: var(--base-dark);
}

.task-card-bottom {
    bottom: -30px;
    left: -40px;
    padding: 16px 24px;
}

.task-check {
    color: #10B981;
    font-size: 1.5rem;
}

.task-number {
    font-weight: 800;
    color: var(--base-dark);
}

.task-sub {
    font-size: 0.8rem;
    color: #6B7280;
}

.visual-glow-effect {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 120%;
    height: 120%;
    background: radial-gradient(circle, rgba(37, 215, 227, 0.05) 0%, transparent 70%);
    z-index: 1;
}

@keyframes floatingEffect {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-10px);
    }
}

/* Responsive */
@media (max-width: 1024px) {
    .hero-layout {
        grid-template-columns: 1fr;
        gap: var(--spacing-4xl);
        text-align: center;
    }

    .hero-description-main {
        margin-left: auto;
        margin-right: auto;
    }

    .hero-actions-main {
        justify-content: center;
    }

    .hero-metrics-main {
        justify-content: center;
    }

    .hero-visual-right {
        justify-content: center;
        margin-top: 40px;
    }

    .visual-wrapper {
        width: 100%;
        max-width: 500px;
    }
}

@media (max-width: 768px) {
    .about-hero-redesigned {
        padding: 100px 0 60px;
    }

    .hero-metrics-main {
        flex-wrap: wrap;
        gap: var(--spacing-lg);
    }

    .metric-divider {
        display: none;
    }

    .task-card-bottom {
        left: -10px;
    }
}

/* Contact Information Section */
.contact-info {
    padding: var(--spacing-4xl) 0;
    background: var(--base-dark);
}

.contact-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: var(--spacing-3xl);
    margin-top: var(--spacing-2xl);
}

.contact-card {
    background: var(--base-dark);
    color: var(--white);
    border-radius: var(--radius-2xl);
    box-shadow: var(--shadow-lg);
    padding: var(--spacing-3xl);
    text-align: center;
    position: relative;
    z-index: 2;
    border: 1.5px solid transparent;
    transition: all var(--transition-normal);
}

.contact-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-xl);
    border-color: var(--primary);
}

.contact-icon {
    width: 80px;
    height: 80px;
    background: var(--primary);
    border-radius: var(--radius-2xl);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto var(--spacing-xl);
    font-size: 2rem;
    color: var(--base-dark);
    box-shadow: var(--shadow-primary);
}

.contact-card h3 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: var(--spacing-lg);
    color: var(--primary);
}

.contact-card p {
    font-size: 1.1rem;
    line-height: 1.6;
    color: var(--white);
    opacity: 0.92;
    margin-bottom: 0.5rem;
}

.contact-card p:last-child {
    margin-bottom: 0;
}

/* Contact Main Section */
.contact-main {
    padding: var(--spacing-4xl) 0;
    background: var(--base-dark);
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--spacing-4xl);
    align-items: start;
}

.contact-form-section h2,
.contact-map-section h2 {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: var(--spacing-lg);
    color: var(--primary);
}

.contact-form-section p {
    font-size: 1.1rem;
    line-height: 1.6;
    color: var(--white);
    opacity: 0.92;
    margin-bottom: var(--spacing-xl);
}

.map-placeholder {
    background: var(--base-dark);
    border: 2px dashed var(--primary);
    border-radius: var(--radius-2xl);
    padding: var(--spacing-3xl);
    text-align: center;
    color: var(--white);
}

.map-content i {
    font-size: 3rem;
    color: var(--primary);
    margin-bottom: var(--spacing-lg);
}

.map-content h3 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: var(--spacing-md);
    color: var(--primary);
}

.map-content p {
    font-size: 1.1rem;
    line-height: 1.6;
    color: var(--white);
    opacity: 0.92;
    margin-bottom: var(--spacing-xl);
}

/* Responsive Design */
@media (max-width: 768px) {
    .contact-content {
        grid-template-columns: 1fr;
        gap: var(--spacing-3xl);
    }

    .contact-grid {
        grid-template-columns: 1fr;
        gap: var(--spacing-2xl);
    }

    .contact-card {
        padding: var(--spacing-2xl);
    }
}

/* Google Maps Container */
.map-container {
    position: relative;
    border-radius: var(--radius-2xl);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    border: 1.5px solid var(--primary);
}

.map-container iframe {
    display: block;
    width: 100%;
    height: 400px;
    border: none;
    border-radius: var(--radius-2xl);
}

.map-overlay {
    position: absolute;
    top: 20px;
    left: 20px;
    background: rgba(10, 30, 63, 0.95);
    backdrop-filter: blur(10px);
    border-radius: var(--radius-xl);
    padding: var(--spacing-lg);
    border: 1px solid var(--primary);
    max-width: 300px;
}

.map-info h3 {
    font-size: 1.2rem;
    font-weight: 700;
    margin-bottom: var(--spacing-sm);
    color: var(--primary);
}

.map-info h3 i {
    margin-right: var(--spacing-sm);
}

.map-info p {
    font-size: 0.95rem;
    color: var(--white);
    opacity: 0.9;
    margin-bottom: var(--spacing-md);
}

.btn-sm {
    padding: var(--spacing-sm) var(--spacing-md);
    font-size: 0.9rem;
}

/* RSS Feed Section */
.rss-feed-section {
    padding: var(--spacing-4xl) 0;
    background: var(--base-dark);
}

.rss-feed-container {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: var(--spacing-3xl);
    margin-top: var(--spacing-2xl);
}

.rss-feed {
    background: var(--base-dark);
    border-radius: var(--radius-2xl);
    padding: var(--spacing-3xl);
    border: 1.5px solid transparent;
    transition: all var(--transition-normal);
}

.rss-feed:hover {
    border-color: var(--primary);
    box-shadow: var(--shadow-lg);
}

.rss-loading {
    text-align: center;
    color: var(--white);
    opacity: 0.8;
}

.rss-loading i {
    font-size: 2rem;
    color: var(--primary);
    margin-bottom: var(--spacing-md);
}

.rss-item {
    display: flex;
    align-items: flex-start;
    gap: var(--spacing-lg);
    padding: var(--spacing-lg) 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    transition: all var(--transition-normal);
}

.rss-item:last-child {
    border-bottom: none;
}

.rss-item:hover {
    transform: translateX(10px);
}

.rss-item-image {
    width: 80px;
    height: 80px;
    border-radius: var(--radius-lg);
    overflow: hidden;
    flex-shrink: 0;
    background: var(--primary);
    display: flex;
    align-items: center;
    justify-content: center;
}

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

.rss-item-image i {
    font-size: 1.5rem;
    color: var(--base-dark);
}

.rss-item-content h4 {
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: var(--spacing-sm);
    color: var(--primary);
}

.rss-item-content p {
    font-size: 0.95rem;
    color: var(--white);
    opacity: 0.8;
    line-height: 1.5;
    margin-bottom: var(--spacing-sm);
}

.rss-item-meta {
    display: flex;
    align-items: center;
    gap: var(--spacing-md);
    font-size: 0.85rem;
    color: var(--white);
    opacity: 0.6;
}

.rss-item-meta i {
    color: var(--primary);
}

/* RSS Actions Sidebar */
.rss-actions {
    display: flex;
    flex-direction: column;
    gap: var(--spacing-2xl);
}

.rss-subscribe {
    background: var(--base-dark);
    border-radius: var(--radius-2xl);
    padding: var(--spacing-2xl);
    border: 1.5px solid var(--primary);
    text-align: center;
}

.rss-subscribe h4 {
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: var(--spacing-sm);
    color: var(--primary);
}

.rss-subscribe p {
    font-size: 0.95rem;
    color: var(--white);
    opacity: 0.8;
    margin-bottom: var(--spacing-lg);
}

.rss-form {
    display: flex;
    flex-direction: column;
    gap: var(--spacing-md);
}

.rss-form input[type="email"] {
    padding: var(--spacing-sm) var(--spacing-md);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: var(--radius-lg);
    background: rgba(255, 255, 255, 0.05);
    color: var(--white);
    font-size: 0.95rem;
}

.rss-form input[type="email"]:focus {
    outline: none;
    border-color: var(--primary);
    box-shadow: 0 0 0 2px rgba(0, 188, 212, 0.2);
}

.rss-form input[type="email"]::placeholder {
    color: rgba(255, 255, 255, 0.5);
}

.rss-form button {
    padding: var(--spacing-sm) var(--spacing-lg);
    background: var(--primary);
    color: var(--base-dark);
    border: none;
    border-radius: var(--radius-lg);
    font-weight: 600;
    cursor: pointer;
    transition: all var(--transition-normal);
}

.rss-form button:hover {
    background: var(--primary-dark);
    transform: translateY(-2px);
}

/* RSS Feed Responsive */
@media (max-width: 768px) {
    .rss-feed-container {
        grid-template-columns: 1fr;
        gap: var(--spacing-2xl);
    }

    .rss-item {
        flex-direction: column;
        text-align: center;
    }

    .rss-item-image {
        align-self: center;
    }

    .map-overlay {
        position: relative;
        top: auto;
        left: auto;
        margin-top: var(--spacing-lg);
        max-width: none;
    }
}

/* Company Story */
.company-story {
    padding: var(--spacing-4xl) 0;
    background: var(--base-dark);
}

.story-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--spacing-4xl);
    align-items: center;
}

.story-content,
.value-card,
.team-member,
.timeline-content,
.mv-card {
    background: var(--base-dark);
    color: var(--white);
    border-radius: var(--radius-2xl);
    box-shadow: var(--shadow-lg);
    padding: var(--spacing-3xl);
    position: relative;
    z-index: 2;
    border: 1.5px solid transparent;
    transition: box-shadow 0.3s, border-color 0.3s;
}

.story-content h2,
.value-card h3,
.team-member h3,
.timeline-title,
.mv-card h3 {
    color: var(--primary);
}

.story-content p,
.value-card p,
.team-member p,
.timeline-description,
.mv-card p {
    color: var(--white);
    opacity: 0.92;
}

/* Mobile: Spread out text in Our Story section */
@media (max-width: 768px) {
    .story-content p {
        line-height: 1.8 !important;
        /* Increased line height for better spacing */
        margin-bottom: 1.5rem !important;
        /* More space between paragraphs */
        letter-spacing: 0.3px;
        /* Slight letter spacing for readability */
    }

    .story-intro {
        line-height: 1.8 !important;
        margin-bottom: 2rem !important;
    }

    .story-content {
        padding: var(--spacing-2xl) !important;
        /* More padding on mobile */
    }
}

.story-intro {
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--primary);
    margin-bottom: var(--spacing-lg);
    line-height: 1.6;
}

.story-image {
    position: relative;
    border-radius: var(--radius-2xl);
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 255, 255, 0.2);
    background: none;
    padding: 0;
    border: 1.5px solid var(--primary);
}

.story-image::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: var(--gradient-primary);
    opacity: 0.1;
    z-index: 1;
}

.story-image img {
    width: 100%;
    height: auto;
    display: block;
    transition: transform var(--transition-normal);
}

.story-image:hover img {
    transform: scale(1.05);
}

/* Mission & Vision */
.mission-vision {
    padding: var(--spacing-4xl) 0;
    background: var(--base-dark);
}

.mv-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: var(--spacing-3xl);
}

.mv-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--gradient-primary);
    transform: scaleX(0);
    transition: transform var(--transition-normal);
}

.mv-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-xl);
}

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

.mv-icon {
    width: 80px;
    height: 80px;
    background: var(--primary);
    border-radius: var(--radius-2xl);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto var(--spacing-xl);
    font-size: 2rem;
    color: var(--base-dark);
    box-shadow: var(--shadow-primary);
}

.mv-card h3 {
    font-size: 1.75rem;
    font-weight: 700;
    margin-bottom: var(--spacing-lg);
    color: var(--primary);
}

.mv-card p {
    font-size: 1.125rem;
    line-height: 1.6;
    color: var(--white);
    opacity: 0.92;
}

/* Values */
.values {
    padding: var(--spacing-4xl) 0;
    background: var(--base-dark);
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: var(--spacing-2xl);
    margin-top: var(--spacing-3xl);
}

.value-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: var(--gradient-primary);
    transform: scaleX(0);
    transition: transform var(--transition-normal);
}

.value-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
    background: var(--base-dark);
}

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

.value-icon {
    width: 60px;
    height: 60px;
    background: var(--primary);
    border-radius: var(--radius-xl);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto var(--spacing-lg);
    font-size: 1.5rem;
    color: var(--base-dark);
    box-shadow: var(--shadow-primary);
}

.value-card h3 {
    color: var(--primary);
}

.value-card p {
    color: var(--white);
    opacity: 0.92;
}

/* Team */
.team {
    padding: var(--spacing-4xl) 0;
    background: #ffffff !important;
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: var(--spacing-2xl);
    margin-top: var(--spacing-3xl);
}

.team-member {
    background: #f8fbff !important;
    border-radius: var(--radius-2xl);
    overflow: hidden;
    box-shadow: none !important;
    border: 1px solid #e2e8f0 !important;
    transition: all var(--transition-normal);
    position: relative;
    display: flex;
    flex-direction: column;
    height: 100%;
}

.team-member:hover {
    transform: translateY(-10px);
    box-shadow: none !important;
}

.member-image {
    position: relative;
    overflow: hidden;
    height: 250px;
    flex-shrink: 0;
}

.member-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform var(--transition-normal);
}

/* Founder image with sky blue background */
.founder-image {
    background: linear-gradient(135deg, #87CEEB 0%, #B0E0E6 50%, #ADD8E6 100%);
    position: relative;
}

.founder-image::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(135, 206, 235, 0.3) 0%, rgba(176, 224, 230, 0.3) 50%, rgba(173, 216, 230, 0.3) 100%);
    z-index: 1;
}

.founder-image img {
    position: relative;
    z-index: 2;
    mix-blend-mode: normal;
}

.team-member:hover .member-image img {
    transform: scale(1.1);
}

.member-info {
    padding: var(--spacing-xl);
    text-align: center;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.member-name {
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: var(--spacing-xs);
    color: #0A1E3F !important;
}

.member-position {
    font-size: 1rem;
    color: #0A1E3F !important;
    opacity: 0.8 !important;
    font-weight: 500;
    margin-bottom: var(--spacing-md);
}

.member-bio {
    color: #4a5568 !important;
    opacity: 1 !important;
    line-height: 1.6;
    margin-bottom: var(--spacing-lg);
    flex-grow: 1;
}

.member-social {
    display: flex;
    justify-content: center;
    gap: var(--spacing-md);
    margin-top: auto;
}

.social-link {
    width: 35px;
    height: 35px;
    background: rgba(0, 255, 255, 0.1);
    border-radius: var(--radius-lg);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary);
    text-decoration: none;
    transition: all var(--transition-normal);
}

.social-link:hover {
    background: var(--primary);
    color: var(--base-dark);
    transform: translateY(-2px);
}

/* Stats */
.stats {
    padding: var(--spacing-4xl) 0;
    background: var(--base-dark);
    color: var(--white);
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: var(--spacing-3xl);
    text-align: center;
}

.stat-item {
    position: relative;
}

.stat-item::after {
    content: '';
    position: absolute;
    top: 50%;
    right: -50%;
    width: 100%;
    height: 1px;
    background: rgba(255, 255, 255, 0.2);
    transform: translateY(-50%);
}

.stat-item:last-child::after {
    display: none;
}

.stat-number {
    display: block;
    font-size: clamp(2.5rem, 5vw, 3.5rem);
    font-weight: 800;
    color: var(--primary);
    margin-bottom: var(--spacing-sm);
    line-height: 1;
}

.stat-label {
    font-size: 1.125rem;
    color: var(--white);
    opacity: 0.9;
    font-weight: 500;
}

/* Timeline */
.timeline {
    padding: var(--spacing-4xl) 0;
    background: var(--base-dark);
}

.timeline-container {
    position: relative;
    margin-top: var(--spacing-3xl);
}

.timeline-container::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    width: 2px;
    height: 100%;
    background: var(--gradient-primary);
    transform: translateX(-50%);
}

.timeline-item {
    position: relative;
    margin-bottom: var(--spacing-3xl);
    display: flex;
    align-items: center;
}

.timeline-item:nth-child(odd) {
    flex-direction: row;
}

.timeline-item:nth-child(even) {
    flex-direction: row-reverse;
}

.timeline-content {
    flex: 1;
    background: var(--base-dark);
    padding: var(--spacing-2xl);
    border-radius: var(--radius-2xl);
    box-shadow: 0 10px 30px rgba(0, 255, 255, 0.2);
    position: relative;
    max-width: 45%;
    border: 1.5px solid var(--primary);
}

.timeline-item:nth-child(odd) .timeline-content {
    margin-right: var(--spacing-2xl);
}

.timeline-item:nth-child(even) .timeline-content {
    margin-left: var(--spacing-2xl);
}

.timeline-content::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--gradient-primary);
    border-radius: var(--radius-2xl) var(--radius-2xl) 0 0;
}

.timeline-dot {
    width: 20px;
    height: 20px;
    background: var(--primary);
    border: 4px solid var(--base-dark);
    border-radius: 50%;
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    z-index: 3;
    box-shadow: 0 0 0 4px rgba(0, 255, 255, 0.2);
    transition: all var(--transition-normal);
}

.timeline-item:hover .timeline-dot {
    background: var(--white);
    box-shadow: 0 0 0 6px rgba(0, 255, 255, 0.4);
    transform: translateX(-50%) scale(1.2);
}

.timeline-date {
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--primary);
    margin-bottom: var(--spacing-xs);
    opacity: 0.9;
}

.timeline-title {
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: var(--spacing-sm);
    color: var(--primary);
}

.timeline-description {
    color: var(--white);
    opacity: 0.92;
    line-height: 1.6;
}

/* Animation Classes */
.fade-in-up {
    animation: fadeInUp 0.6s ease-out;
}

.fade-in-left {
    animation: fadeInLeft 0.6s ease-out;
}

.fade-in-right {
    animation: fadeInRight 0.6s ease-out;
}

/* Loading States */
.loading {
    opacity: 0.6;
    pointer-events: none;
}

.loading::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 20px;
    height: 20px;
    border: 2px solid var(--primary);
    border-top: 2px solid transparent;
    border-radius: 50%;
    animation: spin 1s linear infinite;
    transform: translate(-50%, -50%);
}

@keyframes spin {
    0% {
        transform: translate(-50%, -50%) rotate(0deg);
    }

    100% {
        transform: translate(-50%, -50%) rotate(360deg);
    }
}

/* Compact Header Styles */
.navbar {
    position: absolute !important;
    top: 0;
    left: 0;
    right: 0;
    background: var(--base-dark) !important;
    backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(0, 255, 255, 0.2);
    z-index: 1000;
    transition: all var(--transition-normal);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.navbar.scrolled {
    background: rgba(255, 255, 255, 0.98);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.15);
}

.nav-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 1.5rem;
    gap: var(--spacing-lg);
    height: 70px;
}

.nav-logo {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-weight: 700;
    font-size: 1.3rem;
    color: var(--white);
    text-decoration: none;
    transition: all var(--transition-normal);
    flex-shrink: 0;
}

.logo-text {
    font-family: var(--font-display);
    font-weight: 800;
    font-size: 1.5rem;
    letter-spacing: 0.5px;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.nav-actions {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 1rem;
    flex-wrap: nowrap;
}

.nav-menu {
    display: flex;
    align-items: center;
    gap: 0.125rem;
    margin-left: 0;
}

.nav-link {
    color: var(--white);
    text-decoration: none;
    font-weight: 500;
    font-size: 0.95rem;
    padding: var(--spacing-xs) var(--spacing-sm);
    border-radius: var(--radius-lg);
    transition: all var(--transition-normal);
    position: relative;
    overflow: hidden;
    white-space: nowrap;
    min-width: 48px;
}

.nav-link:hover,
.nav-link.active {
    color: var(--primary);
    background: rgba(0, 255, 255, 0.1);
    transform: translateY(-2px);
}

.nav-cta {
    display: flex;
    align-items: center;
    gap: 0.125rem;
    margin-left: 0.25rem;
}

.nav-cta .btn {
    padding: 0.25rem 0.6rem;
    font-size: 0.85rem;
}

.nav-toggle {
    margin-left: 0.5rem;
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .nav-menu {
        display: none;
    }

    .nav-menu.active {
        display: flex;
        flex-direction: column;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: rgba(255, 255, 255, 0.98);
        backdrop-filter: blur(20px);
        padding: var(--spacing-lg);
        box-shadow: 0 8px 30px rgba(0, 0, 0, 0.15);
    }

    .nav-toggle {
        display: flex;
    }

    .nav-cta {
        display: none;
    }
}

/* Freelancing Banner */
.freelance-banner {
    background: var(--soft-gray);
    overflow: hidden;
    padding: 0;
    border-top: 1px solid #e0e0e0;
    border-bottom: 1px solid #e0e0e0;
}

.banner-track {
    display: flex;
    white-space: nowrap;
    animation: scroll-banner 18s linear infinite;
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--base-dark);
    letter-spacing: 2px;
    padding: 0.75rem 0;
    gap: 3rem;
}

.banner-track span {
    display: inline-block;
}

@keyframes scroll-banner {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-33.33%);
    }
}

@media (max-width: 600px) {
    .banner-track {
        font-size: 1rem;
        gap: 1.5rem;
        padding: 0.5rem 0;
    }
}

/* Section Headers */
.section-header {
    text-align: center;
    margin-bottom: var(--spacing-3xl);
}

.section-header h2 {
    font-size: clamp(2rem, 4vw, 2.5rem);
    font-weight: 700;
    margin-bottom: var(--spacing-lg);
    color: var(--primary);
    position: relative;
    text-shadow: 0 0 20px rgba(0, 255, 255, 0.3);
}

.section-header h2::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background: var(--gradient-primary);
    border-radius: 2px;
    box-shadow: 0 0 15px rgba(0, 255, 255, 0.5);
}

.section-header p {
    font-size: 1.125rem;
    color: var(--white);
    opacity: 0.9;
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.6;
}

/* Ensure all cards have proper cyan accents */
.value-card,
.team-member,
.timeline-content,
.mv-card {
    border-color: var(--primary);
    box-shadow: 0 10px 30px rgba(0, 255, 255, 0.2);
}

.section-divider {
    width: 100px;
    height: 4px;
    margin: 0 auto var(--spacing-xl) auto;
    background: linear-gradient(90deg, var(--primary), #fff 80%);
    border-radius: 2px;
    box-shadow:
        0 0 12px 2px rgba(0, 255, 255, 0.25),
        0 2px 4px rgba(0, 0, 0, 0.3),
        0 4px 8px rgba(0, 0, 0, 0.2),
        inset 0 1px 0 rgba(255, 255, 255, 0.4),
        inset 0 -1px 0 rgba(0, 0, 0, 0.2);
    opacity: 0.95;
    position: relative;
    transform: perspective(100px) rotateX(5deg);
}

.section-divider::before {
    content: '';
    position: absolute;
    top: -1px;
    left: -1px;
    right: -1px;
    bottom: -1px;
    background: linear-gradient(90deg, rgba(0, 255, 255, 0.8), rgba(255, 255, 255, 0.6) 80%);
    border-radius: 3px;
    z-index: -1;
    filter: blur(1px);
}

/* Enhanced Button Hover Effects */
.cta .btn-primary {
    background: var(--gradient-primary);
    color: var(--base-dark);
    box-shadow: var(--shadow-primary);
    font-weight: 700;
    transition: all 0.3s ease;
}

.cta .btn-primary:hover {
    transform: translateY(-8px) scale(1.08);
    box-shadow: 0 15px 35px rgba(0, 255, 255, 0.4), 0 0 25px rgba(0, 255, 255, 0.3);
}

.cta .btn-outline {
    background: var(--primary);
    color: var(--base-dark);
    border: 2px solid var(--primary);
    font-weight: 600;
    transition: all 0.3s ease;
}

.cta .btn-outline:hover {
    background: var(--white);
    color: var(--primary);
    transform: translateY(-8px) scale(1.08);
    box-shadow: 0 15px 35px rgba(0, 255, 255, 0.4), 0 0 25px rgba(0, 255, 255, 0.3);
}

/* Enhanced Footer Styling */
.footer {
    background: var(--base-dark);
    color: var(--white);
    padding: var(--spacing-4xl) 0 var(--spacing-2xl) 0;
    position: relative;
    overflow: hidden;
}

.footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--primary), transparent);
    box-shadow: 0 0 10px rgba(0, 255, 255, 0.5);
}

.footer-content {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: var(--spacing-3xl);
    margin-bottom: var(--spacing-3xl);
    position: relative;
}

.footer-brand {
    position: relative;
}

.footer-brand::after {
    content: '';
    position: absolute;
    top: 0;
    right: -2rem;
    width: 1px;
    height: 100%;
    background: linear-gradient(180deg, transparent, var(--primary), transparent);
    box-shadow: 0 0 8px rgba(0, 255, 255, 0.3);
}

.footer-logo {
    display: flex;
    align-items: center;
    margin-bottom: var(--spacing-lg);
    transition: all var(--transition-normal);
}

.footer-logo:hover {
    transform: scale(1.02);
}

.footer-logo span {
    font-family: var(--font-display);
    font-weight: 800;
    font-size: 1.8rem;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    letter-spacing: 0.5px;
}

.footer-description {
    color: var(--white);
    opacity: 0.9;
    line-height: 1.6;
    margin-bottom: var(--spacing-xl);
    font-size: 1.05rem;
}

.social-links {
    display: flex;
    gap: var(--spacing-md);
    margin-top: var(--spacing-lg);
}

.social-links a {
    width: 45px;
    height: 45px;
    background: rgba(0, 255, 255, 0.1);
    border: 1px solid rgba(0, 255, 255, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary);
    text-decoration: none;
    transition: all var(--transition-normal);
    position: relative;
    overflow: hidden;
}

.social-links a::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: var(--gradient-primary);
    transition: all var(--transition-normal);
    z-index: 1;
}

.social-links a:hover::before {
    left: 0;
}

.social-links a i {
    position: relative;
    z-index: 2;
    transition: all var(--transition-normal);
}

.social-links a:hover {
    transform: translateY(-5px) scale(1.1);
    box-shadow: 0 10px 25px rgba(0, 255, 255, 0.4);
    border-color: var(--primary);
}

.social-links a:hover i {
    color: var(--base-dark);
}

.footer-column h3 {
    color: var(--primary);
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: var(--spacing-lg);
    position: relative;
    padding-bottom: var(--spacing-sm);
}

.footer-column h3::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 30px;
    height: 2px;
    background: var(--gradient-primary);
    border-radius: 1px;
    box-shadow: 0 0 8px rgba(0, 255, 255, 0.5);
}

.footer-column ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-column ul li {
    margin-bottom: var(--spacing-sm);
}

.footer-column ul li a {
    color: var(--white);
    opacity: 0.8;
    text-decoration: none;
    transition: all var(--transition-normal);
    position: relative;
    padding-left: 0;
    display: block;
    line-height: 1.6;
}

.footer-column ul li a::before {
    content: '→';
    position: absolute;
    left: -15px;
    color: var(--primary);
    opacity: 0;
    transform: translateX(-5px);
    transition: all var(--transition-normal);
}

.footer-column ul li a:hover {
    color: var(--primary);
    opacity: 1;
    transform: translateX(5px);
}

.footer-column ul li a:hover::before {
    opacity: 1;
    transform: translateX(0);
}

.footer-bottom {
    border-top: 1px solid rgba(0, 255, 255, 0.2);
    padding-top: var(--spacing-xl);
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: var(--spacing-md);
}

.footer-bottom p {
    color: var(--white);
    opacity: 0.8;
    margin: 0;
}

.footer-legal {
    display: flex;
    gap: var(--spacing-lg);
    flex-wrap: wrap;
}

.footer-legal a {
    color: var(--white);
    opacity: 0.7;
    text-decoration: none;
    transition: all var(--transition-normal);
    position: relative;
}

.footer-legal a::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 1px;
    background: var(--primary);
    transition: all var(--transition-normal);
}

.footer-legal a:hover {
    color: var(--primary);
    opacity: 1;
}

.footer-legal a:hover::after {
    width: 100%;
}

/* Newsletter Section */
.footer-newsletter-section {
    margin: var(--spacing-3xl) 0;
    padding: var(--spacing-2xl) 0;
    border-top: 1px solid rgba(0, 255, 255, 0.1);
    border-bottom: 1px solid rgba(0, 255, 255, 0.1);
}

.footer-newsletter {
    background: rgba(0, 255, 255, 0.05);
    border: 1px solid rgba(0, 255, 255, 0.1);
    border-radius: var(--radius-xl);
    padding: var(--spacing-2xl);
    backdrop-filter: blur(10px);
    transition: all var(--transition-normal);
    max-width: 600px;
    margin: 0 auto;
    text-align: center;
}

.footer-newsletter h3 {
    color: var(--primary);
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: var(--spacing-sm);
}

.footer-newsletter p {
    color: var(--white);
    opacity: 0.8;
    margin-bottom: var(--spacing-xl);
    font-size: 1rem;
}

.footer-newsletter:hover {
    border-color: rgba(0, 255, 255, 0.3);
    box-shadow: 0 10px 30px rgba(0, 255, 255, 0.1);
}

.newsletter-form {
    display: flex;
    gap: var(--spacing-sm);
    justify-content: center;
    max-width: 400px;
    margin: 0 auto;
}

.newsletter-form input[type="email"] {
    flex: 1;
    padding: var(--spacing-md) var(--spacing-lg);
    border: 1px solid rgba(0, 255, 255, 0.2);
    border-radius: var(--radius-lg);
    background: rgba(255, 255, 255, 0.05);
    color: var(--white);
    transition: all var(--transition-normal);
    font-size: 1rem;
}

.newsletter-form input[type="email"]:focus {
    outline: none;
    border-color: var(--primary);
    box-shadow: 0 0 15px rgba(0, 255, 255, 0.3);
}

.newsletter-form input[type="email"]::placeholder {
    color: rgba(255, 255, 255, 0.6);
}

.newsletter-form button {
    padding: var(--spacing-md) var(--spacing-xl);
    background: var(--gradient-primary);
    color: var(--base-dark);
    border: none;
    border-radius: var(--radius-lg);
    font-weight: 600;
    cursor: pointer;
    transition: all var(--transition-normal);
    font-size: 1rem;
    white-space: nowrap;
}

.newsletter-form button:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(0, 255, 255, 0.4);
}

/* Responsive Design for Newsletter */
@media (max-width: 768px) {
    .footer-newsletter {
        margin: 0 var(--spacing-md);
        padding: var(--spacing-xl);
    }

    .newsletter-form {
        flex-direction: column;
        max-width: 100%;
    }

    .newsletter-form button {
        width: 100%;
    }
}

/* Responsive Design */
@media (max-width: 1024px) {
    .footer-content {
        grid-template-columns: 1fr 1fr;
        gap: var(--spacing-2xl);
    }

    .footer-brand {
        grid-column: 1 / -1;
    }

    .footer-brand::after {
        display: none;
    }
}

@media (max-width: 768px) {
    .footer-content {
        grid-template-columns: 1fr;
        gap: var(--spacing-xl);
    }

    .footer-bottom {
        flex-direction: column;
        text-align: center;
    }

    .footer-legal {
        justify-content: center;
    }

    .newsletter-form {
        flex-direction: column;
    }
}

.story-content h2 {
    color: var(--primary);
    position: relative;
    text-shadow: 0 0 20px rgba(0, 255, 255, 0.3);
}

.story-content h2::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 0;
    width: 60px;
    height: 3px;
    background: var(--gradient-primary);
    border-radius: 2px;
    box-shadow: 0 0 15px rgba(0, 255, 255, 0.5);
}

.cta-title {
    position: relative;
    text-shadow: 0 0 20px rgba(0, 255, 255, 0.3);
}

.cta-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background: var(--gradient-primary);
    border-radius: 2px;
    box-shadow: 0 0 15px rgba(0, 255, 255, 0.5);
}

/* FAQ Section */
.faq-section {
    padding: var(--spacing-4xl) 0;
    background: var(--base-dark);
}

.faq-grid {
    display: flex;
    flex-direction: column;
    gap: var(--spacing-lg);
    margin-top: var(--spacing-2xl);
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.faq-item {
    background: var(--base-dark);
    border-radius: var(--radius-xl);
    border: 1.5px solid rgba(255, 255, 255, 0.1);
    overflow: hidden;
    transition: all var(--transition-normal);
}

.faq-item:hover {
    border-color: var(--primary);
    box-shadow: var(--shadow-lg);
}

.faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: var(--spacing-xl) var(--spacing-2xl);
    cursor: pointer;
    transition: all var(--transition-normal);
    background: rgba(255, 255, 255, 0.02);
}

.faq-question:hover {
    background: rgba(0, 188, 212, 0.05);
}

.faq-question h3 {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--white);
    margin: 0;
    flex: 1;
}

.faq-question i {
    color: var(--primary);
    font-size: 1rem;
    transition: transform var(--transition-normal);
    margin-left: var(--spacing-lg);
}

.faq-item.active .faq-question i {
    transform: rotate(180deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height var(--transition-normal), padding var(--transition-normal);
    background: rgba(255, 255, 255, 0.02);
}

.faq-item.active .faq-answer {
    max-height: 300px;
    padding: 0 var(--spacing-2xl) var(--spacing-xl);
}

.faq-answer p {
    color: var(--white);
    opacity: 0.9;
    line-height: 1.6;
    margin: 0;
    padding-top: var(--spacing-lg);
}

.faq-answer a {
    color: var(--primary);
    text-decoration: none;
    font-weight: 500;
}

.faq-answer a:hover {
    text-decoration: underline;
}

/* FAQ Responsive */
@media (max-width: 768px) {
    .faq-question {
        padding: var(--spacing-lg);
    }

    .faq-question h3 {
        font-size: 1rem;
    }

    .faq-item.active .faq-answer {
        padding: 0 var(--spacing-lg) var(--spacing-lg);
    }
}

/* Scroll to Top Button */
.scroll-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    background: var(--primary);
    color: var(--base-dark);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    box-shadow: var(--shadow-lg);
    transition: all var(--transition-normal);
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px);
    z-index: 1000;
}

.scroll-to-top.visible {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.scroll-to-top:hover {
    background: var(--primary-dark);
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(0, 188, 212, 0.4);
}

.scroll-to-top i {
    font-size: 1.2rem;
    font-weight: 600;
}

/* Scroll to Top Responsive */
@media (max-width: 768px) {
    .scroll-to-top {
        bottom: 20px;
        right: 20px;
        width: 45px;
        height: 45px;
    }

    .scroll-to-top i {
        font-size: 1rem;
    }
}

/* Ebook Promo Section */
.ebook-promo-section {
    padding: var(--spacing-4xl) 0;
    background: linear-gradient(90deg, var(--primary) 0%, #0A1E3F 100%);
    text-align: center;
    color: var(--white);
    margin-bottom: var(--spacing-2xl);
}

.ebook-promo-content {
    max-width: 600px;
    margin: 0 auto;
    padding: var(--spacing-2xl) var(--spacing-lg);
    background: rgba(10, 30, 63, 0.85);
    border-radius: var(--radius-2xl);
    box-shadow: var(--shadow-lg);
}

.ebook-promo-section h2 {
    font-size: 2rem;
    font-weight: 800;
    margin-bottom: var(--spacing-lg);
    color: var(--white);
}

.ebook-promo-section p {
    font-size: 1.15rem;
    margin-bottom: var(--spacing-xl);
    color: var(--white);
    opacity: 0.95;
}

.ebook-shop-link {
    color: var(--primary);
    font-weight: 600;
    text-decoration: underline;
    transition: color 0.2s;
}

.ebook-shop-link:hover {
    color: var(--primary-dark);
}

.ebook-promo-section .btn-primary {
    font-size: 1.1rem;
    padding: 0.9em 2.2em;
    border-radius: var(--radius-lg);
    margin-top: var(--spacing-md);
}

@media (max-width: 600px) {
    .ebook-promo-content {
        padding: var(--spacing-lg) var(--spacing-sm);
    }

    .ebook-promo-section h2 {
        font-size: 1.3rem;
    }

    .ebook-promo-section p {
        font-size: 1rem;
    }
}

/* ===== USP SECTION REDESIGNED ===== */
.usp-section-redesigned {
    padding: var(--spacing-4xl) 0;
    background: linear-gradient(180deg, var(--base-dark) 0%, rgba(10, 30, 63, 0.95) 100%);
    position: relative;
    overflow: hidden;
}

.usp-section-redesigned::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background:
        radial-gradient(circle at 20% 30%, rgba(0, 255, 255, 0.08) 0%, transparent 50%),
        radial-gradient(circle at 80% 70%, rgba(0, 255, 255, 0.08) 0%, transparent 50%);
    pointer-events: none;
    z-index: 1;
}

.usp-section-redesigned .section-header {
    position: relative;
    z-index: 2;
}

.usp-grid-redesigned {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: var(--spacing-3xl);
    margin-top: var(--spacing-4xl);
    position: relative;
    z-index: 2;
}

.usp-card-redesigned {
    perspective: 1000px;
    height: 100%;
}

.usp-card-inner {
    background: linear-gradient(145deg, rgba(10, 30, 63, 0.95) 0%, rgba(22, 36, 71, 0.95) 100%);
    border: 2px solid rgba(0, 255, 255, 0.3);
    border-radius: var(--radius-2xl);
    padding: var(--spacing-4xl);
    text-align: center;
    transition: all 0.5s cubic-bezier(0.22, 1, 0.36, 1);
    position: relative;
    overflow: hidden;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    backdrop-filter: blur(10px);
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3), 0 0 0 1px rgba(0, 255, 255, 0.1);
}

.usp-card-inner::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(0, 255, 255, 0.05) 0%, transparent 100%);
    opacity: 0;
    transition: opacity 0.5s ease;
}

.usp-card-redesigned:hover .usp-card-inner {
    transform: translateY(-15px) rotateX(5deg);
    border-color: var(--primary);
    box-shadow:
        0 25px 60px rgba(0, 255, 255, 0.3),
        0 0 40px rgba(0, 255, 255, 0.2),
        inset 0 0 30px rgba(0, 255, 255, 0.1);
}

.usp-card-redesigned:hover .usp-card-inner::before {
    opacity: 1;
}

.usp-icon-wrapper {
    position: relative;
    width: 120px;
    height: 120px;
    margin: 0 auto var(--spacing-2xl);
    z-index: 2;
}

.usp-icon-bg {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100%;
    height: 100%;
    background: var(--gradient-primary);
    border-radius: 50%;
    opacity: 0.2;
    animation: pulse-glow 3s ease-in-out infinite;
}

.usp-icon-redesigned {
    position: relative;
    width: 100%;
    height: 100%;
    background: var(--gradient-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 3rem;
    color: var(--base-dark);
    box-shadow:
        0 15px 40px rgba(0, 255, 255, 0.4),
        0 0 30px rgba(0, 255, 255, 0.3),
        inset 0 0 20px rgba(255, 255, 255, 0.2);
    transition: all 0.5s cubic-bezier(0.22, 1, 0.36, 1);
    z-index: 2;
}

.usp-card-redesigned:hover .usp-icon-redesigned {
    transform: rotate(360deg) scale(1.15);
    box-shadow:
        0 20px 60px rgba(0, 255, 255, 0.5),
        0 0 50px rgba(0, 255, 255, 0.4),
        inset 0 0 30px rgba(255, 255, 255, 0.3);
}

@keyframes pulse-glow {

    0%,
    100% {
        transform: translate(-50%, -50%) scale(1);
        opacity: 0.2;
    }

    50% {
        transform: translate(-50%, -50%) scale(1.2);
        opacity: 0.4;
    }
}

.usp-content {
    position: relative;
    z-index: 2;
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.usp-content h3 {
    font-size: 1.85rem;
    font-weight: 800;
    color: var(--primary) !important;
    margin-bottom: var(--spacing-lg);
    text-shadow:
        0 0 25px rgba(0, 255, 255, 0.8),
        0 0 50px rgba(0, 255, 255, 0.4),
        0 2px 10px rgba(0, 255, 255, 0.5);
    line-height: 1.3;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    font-family: var(--font-display);
}

.usp-content p {
    display: none;
}

.usp-accent-line {
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 4px;
    background: var(--gradient-primary);
    transition: width 0.5s ease;
    border-radius: 2px;
    box-shadow: 0 0 20px rgba(0, 255, 255, 0.6);
}

.usp-card-redesigned:hover .usp-accent-line {
    width: 80%;
}

/* ===== BRANDS SECTION ===== */
.brands {
    padding: var(--spacing-4xl) 0;
    background: #FFFFFF;
    position: relative;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(10, 30, 63, 0.15);
}

.brands-label {
    text-align: center;
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--base-dark);
    margin-bottom: var(--spacing-3xl);
    text-transform: uppercase;
    letter-spacing: 2px;
}

.brands-container {
    overflow: hidden;
    position: relative;
}

.brands-grid {
    display: flex;
    gap: var(--spacing-3xl);
    animation: scroll-brands 30s linear infinite;
    width: fit-content;
}

.brand-item {
    flex-shrink: 0;
    width: 200px;
    height: 120px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #FFFFFF;
    border: 1px solid rgba(10, 30, 63, 0.1);
    border-radius: var(--radius-xl);
    padding: var(--spacing-lg);
    transition: all 0.4s ease;
    box-shadow: 0 5px 15px rgba(10, 30, 63, 0.1);
}

.brand-item:hover {
    transform: translateY(-5px) scale(1.05);
    border-color: var(--base-dark);
    box-shadow: 0 15px 35px rgba(10, 30, 63, 0.2);
    background: #FFFFFF;
}

.brand-logo {
    max-width: 100%;
    max-height: 100%;
    width: auto;
    height: auto;
    object-fit: contain;
    filter: none;
    opacity: 1;
    transition: all 0.4s ease;
}

.brand-item:hover .brand-logo {
    filter: none;
    opacity: 1;
    transform: scale(1.1);
}

@keyframes scroll-brands {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-50%);
    }
}

/* ===== TRUST SECTION ===== */
.trust-section {
    padding: var(--spacing-4xl) 0;
    background: var(--base-dark);
    position: relative;
}

.trust-testimonials {
    margin-bottom: var(--spacing-4xl);
}

.trust-subtitle {
    font-size: 1.75rem;
    font-weight: 700;
    color: var(--primary);
    text-align: center;
    margin-bottom: var(--spacing-3xl);
    text-shadow: 0 0 15px rgba(0, 255, 255, 0.3);
}

.trust-testimonials-grid-redesigned {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: var(--spacing-2xl);
}

.trust-testimonial-card-redesigned {
    background: linear-gradient(145deg, rgba(10, 30, 63, 0.98) 0%, rgba(22, 36, 71, 0.98) 100%);
    border: 2px solid rgba(0, 255, 255, 0.3);
    border-radius: var(--radius-2xl);
    padding: var(--spacing-2xl);
    transition: all 0.5s cubic-bezier(0.22, 1, 0.36, 1);
    position: relative;
    overflow: visible;
    backdrop-filter: blur(10px);
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.3), 0 0 0 1px rgba(0, 255, 255, 0.1);
    height: auto;
    display: flex;
    flex-direction: column;
    animation: float-card 6s ease-in-out infinite;
}

.trust-testimonial-card-redesigned:nth-child(1) {
    animation-delay: 0s;
}

.trust-testimonial-card-redesigned:nth-child(2) {
    animation-delay: 2s;
}

.trust-testimonial-card-redesigned:nth-child(3) {
    animation-delay: 4s;
}

@keyframes float-card {

    0%,
    100% {
        transform: translateY(0px);
    }

    50% {
        transform: translateY(-15px);
    }
}

.trust-testimonial-card-redesigned::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(0, 255, 255, 0.15) 0%, transparent 70%);
    opacity: 0;
    transition: opacity 0.5s ease;
}

.trust-testimonial-card-redesigned:hover {
    transform: translateY(-12px);
    border-color: var(--primary);
    box-shadow:
        0 25px 70px rgba(0, 255, 255, 0.3),
        0 0 50px rgba(0, 255, 255, 0.2),
        inset 0 0 30px rgba(0, 255, 255, 0.1);
}

.trust-testimonial-card-redesigned:hover::before {
    opacity: 1;
}

.testimonial-quote-icon {
    position: absolute;
    top: var(--spacing-xl);
    right: var(--spacing-xl);
    width: 60px;
    height: 60px;
    background: rgba(0, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: var(--primary);
    opacity: 0.5;
    transition: all 0.5s ease;
}

.trust-testimonial-card-redesigned:hover .testimonial-quote-icon {
    opacity: 1;
    transform: rotate(15deg) scale(1.1);
    background: rgba(0, 255, 255, 0.2);
}

.trust-rating-redesigned {
    display: flex;
    gap: 0.5rem;
    margin-bottom: var(--spacing-xl);
    color: #FFD700;
    font-size: 1.3rem;
    position: relative;
    z-index: 2;
    justify-content: center;
}

.trust-rating-redesigned i {
    filter: drop-shadow(0 0 5px rgba(255, 215, 0, 0.5));
    animation: star-twinkle 2s ease-in-out infinite;
}

.trust-rating-redesigned i:nth-child(2) {
    animation-delay: 0.2s;
}

.trust-rating-redesigned i:nth-child(3) {
    animation-delay: 0.4s;
}

.trust-rating-redesigned i:nth-child(4) {
    animation-delay: 0.6s;
}

.trust-rating-redesigned i:nth-child(5) {
    animation-delay: 0.8s;
}

@keyframes star-twinkle {

    0%,
    100% {
        opacity: 1;
        transform: scale(1);
    }

    50% {
        opacity: 0.7;
        transform: scale(1.1);
    }
}

.trust-quote-redesigned {
    color: #FFFFFF !important;
    font-size: 1rem !important;
    line-height: 1.7 !important;
    margin-bottom: var(--spacing-lg);
    font-style: italic;
    position: relative;
    z-index: 2;
    font-weight: 400;
    flex: 1;
    text-align: left;
    opacity: 1 !important;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.5);
}

.trust-author-redesigned {
    position: relative;
    z-index: 2;
    padding-top: var(--spacing-xl);
    border-top: 1px solid rgba(0, 255, 255, 0.2);
}

.author-info-wrapper strong {
    color: var(--primary) !important;
    font-size: 1.2rem;
    font-weight: 700;
    display: block;
    margin-bottom: 0.5rem;
    text-shadow: 0 0 15px rgba(0, 255, 255, 0.5);
}

.author-info-wrapper span {
    color: #FFFFFF !important;
    opacity: 0.9 !important;
    font-size: 1rem;
    font-weight: 500;
}

.author-info-wrapper {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.trust-author-redesigned strong {
    color: var(--primary);
    font-size: 1.25rem;
    font-weight: 700;
    text-shadow: 0 0 10px rgba(0, 255, 255, 0.3);
}

.trust-author-redesigned span {
    color: var(--white);
    opacity: 0.85;
    font-size: 1rem;
    font-weight: 500;
}

.testimonial-accent {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 4px;
    background: var(--gradient-primary);
    transition: width 0.5s ease;
    box-shadow: 0 0 20px rgba(0, 255, 255, 0.6);
}

.trust-testimonial-card-redesigned:hover .testimonial-accent {
    width: 100%;
}

.trust-certifications,
.trust-awards {
    margin-top: var(--spacing-4xl);
}

.certifications-grid-redesigned {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: var(--spacing-3xl);
}

.certification-item-redesigned {
    background: linear-gradient(145deg, #FFFFFF 0%, #F5F5F5 100%);
    border: 3px solid var(--primary);
    border-radius: var(--radius-2xl);
    padding: var(--spacing-3xl);
    text-align: center;
    transition: all 0.5s cubic-bezier(0.22, 1, 0.36, 1);
    position: relative;
    overflow: hidden;
    box-shadow: 0 15px 50px rgba(10, 30, 63, 0.2), 0 0 0 1px rgba(0, 255, 255, 0.3);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-height: 200px;
}

.certification-item-redesigned::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(0, 255, 255, 0.15) 0%, transparent 70%);
    opacity: 0;
    transition: opacity 0.5s ease;
}

.certification-item-redesigned:hover {
    transform: translateY(-12px) scale(1.05);
    border-color: var(--primary);
    box-shadow:
        0 25px 70px rgba(0, 255, 255, 0.4),
        0 0 50px rgba(0, 255, 255, 0.3),
        inset 0 0 30px rgba(0, 255, 255, 0.1);
    background: linear-gradient(145deg, #FFFFFF 0%, #E8F4F8 100%);
}

.certification-item-redesigned:hover::before {
    opacity: 1;
}

.cert-badge {
    width: 100px;
    height: 100px;
    margin: 0 auto var(--spacing-xl);
    background: var(--gradient-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.5rem;
    color: var(--base-dark);
    box-shadow:
        0 15px 40px rgba(0, 255, 255, 0.4),
        0 0 30px rgba(0, 255, 255, 0.3);
    transition: all 0.5s ease;
    position: relative;
    z-index: 2;
}

.certification-item-redesigned:hover .cert-badge {
    transform: rotate(360deg) scale(1.15);
    box-shadow:
        0 20px 60px rgba(0, 255, 255, 0.5),
        0 0 50px rgba(0, 255, 255, 0.4);
}

.cert-content {
    position: relative;
    z-index: 2;
}

.cert-content h4 {
    font-size: 1.3rem;
    font-weight: 800;
    color: var(--base-dark) !important;
    margin-bottom: var(--spacing-md);
    text-shadow: none;
    line-height: 1.4;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.cert-content p {
    color: var(--base-dark) !important;
    opacity: 0.8 !important;
    font-size: 0.95rem;
    line-height: 1.7;
    font-weight: 500;
    text-shadow: none;
}

.awards-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: var(--spacing-2xl);
}

.award-item {
    background: linear-gradient(145deg, rgba(10, 30, 63, 0.9) 0%, rgba(22, 36, 71, 0.9) 100%);
    border: 1.5px solid rgba(0, 255, 255, 0.2);
    border-radius: var(--radius-2xl);
    padding: var(--spacing-2xl);
    text-align: center;
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}

.certification-item:hover,
.award-item:hover {
    transform: translateY(-8px);
    border-color: var(--primary);
    box-shadow: 0 20px 40px rgba(0, 255, 255, 0.2);
}

.cert-icon,
.award-icon {
    width: 70px;
    height: 70px;
    margin: 0 auto var(--spacing-lg);
    background: var(--gradient-primary);
    border-radius: var(--radius-xl);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: var(--base-dark);
    box-shadow: 0 10px 30px rgba(0, 255, 255, 0.3);
    transition: all 0.4s ease;
}

.certification-item:hover .cert-icon,
.award-item:hover .award-icon {
    transform: rotate(5deg) scale(1.1);
    box-shadow: 0 15px 40px rgba(0, 255, 255, 0.4);
}

.award-item h4 {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--primary) !important;
    margin-bottom: var(--spacing-sm);
    text-shadow: 0 0 15px rgba(0, 255, 255, 0.5);
}

.award-item p {
    color: #FFFFFF !important;
    opacity: 0.9 !important;
    font-size: 0.95rem;
    line-height: 1.6;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

/* Responsive Design for USP and Trust Sections */
@media (max-width: 768px) {
    .usp-grid-redesigned {
        grid-template-columns: 1fr;
        gap: var(--spacing-xl);
    }

    .trust-testimonials-grid-redesigned {
        grid-template-columns: 1fr;
    }

    .certifications-grid-redesigned,
    .awards-grid {
        grid-template-columns: 1fr;
    }

    .brand-item {
        width: 150px;
        height: 90px;
    }

    .usp-content h3 {
        font-size: 1.5rem;
    }

    .usp-content p {
        font-size: 1rem;
    }

    .trust-quote-redesigned {
        font-size: 1.1rem !important;
    }

    .cert-content h4 {
        font-size: 1.2rem;
    }
}

/* ===== MODERN HORIZON STORY REDESIGN (V3) ===== */
.story-horizon {
    position: relative;
    padding: var(--spacing-4xl) 0;
    margin-top: 100px;
}

.horizon-wrapper {
    display: flex;
    align-items: center;
    position: relative;
    padding: 20px 0;
}

/* Image Side - DOMINANT */
.horizon-image-container {
    flex: 0 0 60%;
    /* Takes 60% of width */
    position: relative;
    z-index: 1;
    border-radius: 20px;
    box-shadow: 0 30px 80px rgba(0, 0, 0, 0.6);
    aspect-ratio: 16/9;
    overflow: hidden;
}

.horizon-image-container img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.7s ease;
}

.horizon-image-container:hover img {
    transform: scale(1.03);
}

.horizon-glow {
    position: absolute;
    inset: 0;
    background: linear-gradient(to right, rgba(0, 0, 0, 0.2), transparent);
    z-index: 2;
}

.horizon-badge {
    position: absolute;
    top: 30px;
    left: 30px;
    background: var(--primary);
    color: var(--base-dark);
    padding: 10px 20px;
    border-radius: 50px;
    font-weight: 800;
    z-index: 3;
    box-shadow: 0 10px 20px rgba(0, 255, 255, 0.4);
    display: flex;
    gap: 10px;
    align-items: center;
}

/* Content Side - COMPACT & OVERLAPPING */
.horizon-content-card {
    flex: 0 0 49%;
    /* Slightly less than 50% */
    margin-left: -10%;
    /* The Overlap Magic */
    background: rgba(10, 30, 63, 0.85);
    /* Darker, more premium glass */
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.4);
    padding: 50px;
    border-radius: 20px;
    z-index: 99;
    /* Sits on top */
    position: relative;
}

.horizon-title {
    font-size: 2.5rem;
    color: var(--white);
    margin-bottom: 25px;
    font-weight: 900;
}

.horizon-text {
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.7;
    font-size: 1.05rem;
    margin-bottom: 30px;
}

.horizon-stats {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 25px;
}

.h-stat {
    display: flex;
    flex-direction: column;
}

.hs-num {
    font-size: 1.5rem;
    color: var(--primary);
    font-weight: 800;
}

.hs-label {
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.6);
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Mobile Responsiveness */
@media (max-width: 991px) {
    .horizon-wrapper {
        flex-direction: column;
    }

    .horizon-image-container {
        flex: none;
        width: 100%;
        margin-bottom: -50px;
        /* Pull content up */
        z-index: 1;
    }

    .horizon-content-card {
        flex: none;
        width: 90%;
        margin-left: 0;
        z-index: 2;
        padding: 30px;
        background: rgba(10, 30, 63, 0.95);
        /* More solid on mobile */
    }

    .horizon-title {
        font-size: 2rem;
    }
}

/* ===== BRAND PHILOSOPHY CONSOLIDATED SECTION (PHASE 2) ===== */
.about-philosophy-redesigned {
    padding: 100px 0;
    position: relative;
    background: transparent;
}

.bg-overlay-dark-deep {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(10, 30, 63, 0.95) 0%, rgba(10, 30, 63, 0.85) 100%);
    z-index: 1;
}

.relative-z {
    position: relative;
    z-index: 5;
}

.philosophy-layout {
    display: grid;
    grid-template-columns: 0.8fr 1.2fr;
    gap: var(--spacing-4xl);
    align-items: center;
}

/* CEO Feature Styles */
.ceo-feature {
    display: flex;
    justify-content: center;
}

.ceo-image-container {
    position: relative;
    width: 380px;
    height: 480px;
}

.ceo-frame-accent {
    position: absolute;
    top: 20px;
    left: -20px;
    width: 100%;
    height: 100%;
    border: 3px solid var(--primary);
    border-radius: var(--radius-2xl);
    z-index: 1;
}

.ceo-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: var(--radius-2xl);
    position: relative;
    z-index: 2;
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.4);
    filter: contrast(1.1) brightness(1.05);
}

.ceo-label {
    position: absolute;
    bottom: 30px;
    left: -20px;
    background: var(--base-dark);
    padding: 20px 35px;
    border-radius: var(--radius-xl);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.3);
    border: 1px solid rgba(255, 255, 255, 0.1);
    z-index: 3;
    display: flex;
    flex-direction: column;
}

.ceo-name {
    font-size: 1.4rem;
    font-weight: 800;
    color: var(--white);
    letter-spacing: 0.5px;
    margin-bottom: 4px;
}

.ceo-title {
    font-size: 1rem;
    color: var(--primary);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Philosophy Content Styles */
.mission-vision-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--spacing-xl);
    margin-bottom: var(--spacing-3xl);
}

.dna-card {
    background: rgba(10, 30, 63, 0.8);
    padding: 40px;
    border-radius: var(--radius-2xl);
    border: 1px solid rgba(255, 255, 255, 0.05);
    position: relative;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.dna-card:hover {
    transform: translateY(-8px);
    border-color: rgba(37, 215, 227, 0.4);
    background: rgba(10, 30, 63, 1);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
}

.dna-icon {
    font-size: 2.5rem;
    margin-bottom: var(--spacing-lg);
    color: var(--primary);
    text-shadow: 0 0 15px rgba(37, 215, 227, 0.3);
}

.dna-card h3 {
    font-size: 1.6rem;
    font-weight: 800;
    margin-bottom: var(--spacing-md);
    color: var(--white);
}

.dna-card p {
    font-size: 1.1rem;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.85);
    margin: 0;
}

.dna-accent-cyan {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 5px;
    background: var(--primary);
    box-shadow: 0 0 10px var(--primary);
}

.dna-accent-gold {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 5px;
    background: #FFD700;
    box-shadow: 0 0 10px #FFD700;
}

/* Values Redesigned */
.values-redesigned {
    margin-top: var(--spacing-2xl);
    padding: 40px;
    background: rgba(10, 30, 63, 0.5);
    border-radius: var(--radius-2xl);
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.values-header-mini {
    display: flex;
    align-items: center;
    gap: 25px;
    margin-bottom: var(--spacing-2xl);
}

.values-header-mini h2 {
    font-size: 2rem;
    font-weight: 900;
    color: var(--white);
    white-space: nowrap;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.header-line {
    flex-grow: 1;
    height: 2px;
    background: linear-gradient(90deg, var(--primary) 0%, #FFD700 50%, transparent 100%);
}

.values-grid-mini {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: var(--spacing-xl);
}

/* Fallback/Default for dynamic values */
.value-card {
    padding: 20px;
    border-left: 4px solid var(--primary);
    background: rgba(255, 255, 255, 0.03);
    transition: all 0.3s ease;
    border-radius: 0 12px 12px 0;
}

.value-card:hover {
    background: rgba(255, 255, 255, 0.08);
    padding-left: 25px;
    border-left-color: #FFD700;
}

/* Responsive Philosophies */
@media (max-width: 1024px) {
    .philosophy-layout {
        grid-template-columns: 1fr;
        gap: var(--spacing-4xl);
    }

    .ceo-feature {
        margin-bottom: 50px;
    }

    .ceo-image-container {
        width: 100%;
        max-width: 380px;
    }
}

@media (max-width: 768px) {
    .mission-vision-grid {
        grid-template-columns: 1fr;
    }

    .ceo-image-container {
        height: 420px;
    }

    .ceo-label {
        left: 20px;
        right: 20px;
        bottom: -30px;
        text-align: center;
        padding: 15px;
    }

    .values-redesigned {
        padding: 25px;
    }

    .values-header-mini h2 {
        font-size: 1.5rem;
    }
}

/* ===== PHASE 3: HORIZONTAL USP SECTION ===== */
.about-usp-horizontal {
    padding: 100px 0;
    background: var(--white);
    overflow: hidden;
}

.usp-horizontal-wrapper {
    margin-top: 50px;
    position: relative;
}

.usp-scroll-container {
    display: flex;
    gap: 30px;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    padding: 20px 0 40px;
    scrollbar-width: none;
    /* Firefox */
    -ms-overflow-style: none;
    /* IE and Edge */
}

.usp-scroll-container::-webkit-scrollbar {
    display: none;
    /* Chrome, Safari and Opera */
}

.usp-card-sleek {
    flex: 0 0 350px;
    scroll-snap-align: center;
    background: #0A1E3F !important;
    padding: 40px;
    border-radius: var(--radius-2xl);
    position: relative;
    border: 1px solid rgba(255, 255, 255, 0.1) !important;
    transition: all 0.3s ease;
    box-shadow: none !important;
}

.usp-card-sleek:hover {
    transform: translateY(-10px);
    border-color: #fadb24 !important;
    box-shadow: none !important;
}

.usp-card-number {
    position: absolute;
    top: 30px;
    right: 40px;
    font-size: 3rem;
    font-weight: 900;
    color: rgba(255, 255, 255, 0.03);
    line-height: 1;
}

.usp-icon-box {
    width: 60px;
    height: 60px;
    background: rgba(250, 219, 36, 0.1) !important;
    color: #fadb24 !important;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 12px;
    font-size: 1.5rem;
    margin-bottom: 25px;
}

.usp-card-sleek h3 {
    color: #ffffff !important;
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 15px;
}

.usp-card-sleek p {
    font-size: 1rem;
    line-height: 1.6;
    color: #cbd5e1 !important;
    margin: 0;
}

/* Scroll Indicator */
.scroll-indicator {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 15px;
    margin-top: 20px;
}

.indicator-track {
    width: 200px;
    height: 4px;
    background: rgba(10, 30, 63, 0.05);
    border-radius: 2px;
    position: relative;
}

.indicator-thumb {
    position: absolute;
    left: 0;
    top: 0;
    height: 100%;
    width: 30%;
    background: var(--primary);
    border-radius: 2px;
}

.scroll-hint {
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--base-dark);
    display: flex;
    align-items: center;
    gap: 8px;
}

/* ===== PHASE 3: VERTICAL HERITAGE TIMELINE ===== */
.about-heritage-vertical {
    padding: 100px 0;
    background: var(--base-dark);
    color: var(--white);
    position: relative;
}

.container-narrow {
    max-width: 800px;
}

.section-header-centered {
    text-align: center;
    margin-bottom: 70px;
}

.heritage-title {
    font-size: 2.5rem;
    font-weight: 900;
    margin-bottom: 15px;
}

.milestone-path {
    position: relative;
    padding-left: 50px;
}

.path-line {
    position: absolute;
    left: 14px;
    top: 0;
    bottom: 0;
    width: 2px;
    background: rgba(255, 255, 255, 0.1);
}

.milestone-item {
    position: relative;
    margin-bottom: 60px;
}

.milestone-item:last-child {
    margin-bottom: 0;
}

.milestone-dot {
    position: absolute;
    left: -43px;
    top: 10px;
    width: 14px;
    height: 14px;
    background: var(--white);
    border-radius: 50%;
    border: 3px solid var(--base-dark);
    z-index: 2;
}

.dot-cyan {
    background: var(--primary);
}

.dot-gold {
    background: #FFD700;
}

.milestone-year {
    font-size: 1rem;
    font-weight: 800;
    color: var(--primary);
    margin-bottom: 8px;
    display: block;
}

.milestone-content {
    background: rgba(255, 255, 255, 0.03);
    padding: 30px;
    border-radius: var(--radius-xl);
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.milestone-content h3 {
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 10px;
}

.milestone-content p {
    font-size: 1.1rem;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.7);
    margin: 0;
}

.milestone-highlight {
    border-left: 4px solid #FFD700;
    background: rgba(255, 215, 0, 0.05);
}

/* Responsive Path */
@media (max-width: 768px) {
    .usp-card-sleek {
        flex: 0 0 280px;
        padding: 30px;
    }

    .heritage-title {
        font-size: 2rem;
    }

    .milestone-path {
        padding-left: 40px;
    }

    .milestone-dot {
        left: -33px;
    }

    .path-line {
        left: 24px;
    }
}

/* ===== PHASE 4: REFINEMENTS ===== */

/* Team Initials Styling */
.member-initials {
    display: flex !important;
    align-items: center;
    justify-content: center;
    background: var(--base-dark);
    color: var(--primary);
    font-size: 2.2rem;
    font-weight: 900;
    border: 3px solid var(--primary);
    border-radius: 50% !important;
    width: 100px !important;
    height: 100px !important;
    margin: 0 auto 20px;
    box-shadow: 0 0 20px rgba(37, 215, 227, 0.1);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.team-member:hover .member-initials {
    background: var(--primary);
    color: var(--base-dark);
    transform: scale(1.1) rotate(5deg);
    box-shadow: 0 0 30px rgba(37, 215, 227, 0.3);
}

/* USP Auto-Scroll Animation */
@keyframes autoScrollUSP {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(calc(-350px * 5 - 30px * 5));
    }
}

.usp-scroll-container {
    animation: autoScrollUSP 40s linear infinite;
    /* Slower, smoother scroll */
    width: max-content;
    display: flex;
    gap: 30px;
}

.usp-scroll-container:hover {
    animation-play-state: paused;
}

/* Brands Static Redesign */
.about-brands-static {
    padding: 80px 0;
    background: #fdfdfd;
    text-align: center;
    border-top: 1px solid rgba(0, 0, 0, 0.03);
    border-bottom: 1px solid rgba(0, 0, 0, 0.03);
}

.brands-static-label {
    font-size: 0.9rem;
    color: #888;
    margin-bottom: 50px;
    font-weight: 500;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.brands-static-grid {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 70px;
    flex-wrap: wrap;
}

.brand-item-static {
    display: flex;
    align-items: center;
    gap: 15px;
    color: #333;
    opacity: 0.7;
    transition: all 0.3s ease;
    filter: grayscale(1);
}

.brand-item-static:hover {
    opacity: 1;
    filter: grayscale(0);
    transform: translateY(-5px);
}

.brand-item-static i {
    font-size: 2.2rem;
}

.brand-item-static span {
    font-size: 1.3rem;
    font-weight: 800;
    letter-spacing: -0.5px;
}

/* Ensure Heritage title is prominent */
.heritage-title {
    color: var(--white) !important;
}

.milestone-highlight h3 {
    color: #FFD700 !important;
}

/* ===== PHASE 5: PHILOSOPHY TABS ===== */

.philosophy-tabs-container {
    background: var(--base-dark);
    border: 1px solid rgba(37, 215, 227, 0.2);
    border-radius: 20px;
    padding: 30px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.5);
    min-height: 400px;
}

.philosophy-tabs-nav {
    display: flex;
    gap: 15px;
    margin-bottom: 40px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    padding-bottom: 20px;
}

.tab-btn {
    flex: 1;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    padding: 15px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 5px;
    cursor: pointer;
    transition: all 0.3s ease;
    color: var(--white);
}

.tab-btn .tab-number {
    font-size: 0.8rem;
    font-weight: 700;
    color: var(--primary);
    opacity: 0.6;
}

.tab-btn .tab-text {
    font-size: 1.1rem;
    font-weight: 800;
}

.tab-btn:hover {
    background: rgba(37, 215, 227, 0.05);
    border-color: var(--primary);
}

.tab-btn.active {
    background: var(--primary);
    color: var(--base-dark);
    border-color: var(--primary);
}

.tab-btn.active .tab-number {
    color: var(--base-dark);
    opacity: 0.8;
}

.philosophy-tabs-content {
    position: relative;
    overflow: hidden;
}

.tab-panel {
    display: none;
    animation: fadeInSlide 0.5s ease forwards;
}

.tab-panel.active {
    display: block;
}

@keyframes fadeInSlide {
    from {
        opacity: 0;
        transform: translateY(10px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.panel-header {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-bottom: 25px;
}

.panel-header .dna-icon {
    font-size: 2.5rem;
    color: var(--primary);
}

.panel-header h3 {
    font-size: 1.8rem;
    font-weight: 900;
    margin: 0;
    color: var(--white);
}

.tab-panel p {
    font-size: 1.2rem;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 30px;
}

.tab-accent-line {
    width: 60px;
    height: 4px;
    background: var(--primary);
    border-radius: 2px;
}

.line-gold {
    background: var(--secondary) !important;
}

.line-red {
    background: #ff4d4d !important;
}

.values-list-compact {
    list-style: none;
    padding: 0;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.values-list-compact li {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 1.1rem;
    color: var(--white);
    font-weight: 600;
}

.values-list-compact li i {
    color: var(--primary);
}

/* Adjust CEO image frame for Phase 5 */
.ceo-image-container {
    filter: drop-shadow(0 20px 50px rgba(0, 0, 0, 0.8));
}

@media (max-width: 768px) {
    .philosophy-tabs-nav {
        flex-direction: column;
    }

    .values-list-compact {
        grid-template-columns: 1fr;
    }
}