/* =========================================
   1. VARIABLES & SETUP
   ========================================= */
:root {
    /* Colors */
    --bg-primary: #FFFFFF;
    --bg-secondary: #F9FAFB;
    /* Gray 50 */
    --text-primary: #111827;
    /* Grey 900 */
    --text-secondary: #4B5563;
    /* Grey 600 */

    /* Logo Match: Teal (Primary) */
    --primary: #019d98;
    /* Teal from logo */
    --primary-hover: #018580;
    /* Darker teal */

    /* Logo Match: Teal (Accent/Secondary) */
    --accent: #019d98;
    /* Teal from logo */
    --accent-hover: #018580;
    /* Darker teal */
    --accent-light: #E0F7F6;
    /* Light teal tint */

    --white: #FFFFFF;
    --border-color: #E5E7EB;
    /* Grey 200 */

    /* Shadows */
    --shadow-sm: 0 1px 2px 0 rgb(0 0 0 / 0.05);
    --shadow-md: 0 4px 6px -1px rgb(0 0 0 / 0.1), 0 2px 4px -2px rgb(0 0 0 / 0.1);
    --shadow-lg: 0 10px 15px -3px rgb(0 0 0 / 0.1), 0 4px 6px -4px rgb(0 0 0 / 0.1);

    /* Typography */
    --font-heading: 'Inter', sans-serif;
    --font-body: 'DM Sans', sans-serif;

    /* Spacing */
    --container-padding: 2rem;
    --max-width: 1200px;
    --radius: 0.75rem;
}

/* Reset & Base */
*,
*::before,
*::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: var(--font-body);
    background-color: var(--bg-primary);
    color: var(--text-primary);
    line-height: 1.6;
    overflow-x: hidden;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: var(--font-heading);
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 1rem;
}

p {
    margin-bottom: 1rem;
    color: var(--text-secondary);
}

a {
    text-decoration: none;
    color: inherit;
    transition: color 0.2s ease;
}

ul {
    list-style: none;
}

img,
svg {
    max-width: 100%;
    display: block;
}

/* =========================================
   2. UTILITIES & LAYOUT
   ========================================= */
.container {
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 0 var(--container-padding);
}

.section {
    padding: 5rem 0;
}

.bg-secondary {
    background-color: var(--bg-secondary);
}

.text-center {
    text-align: center;
}

.text-primary {
    color: var(--primary);
}

.text-accent {
    color: var(--accent);
}

.grid {
    display: grid;
    gap: 2rem;
}

.grid-2 {
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
}

.grid-3 {
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
}

.flex {
    display: flex;
    gap: 1rem;
}

.flex-center {
    display: flex;
    align-items: center;
    justify-content: center;
}

.flex-between {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.flex-col {
    flex-direction: column;
}

.btn {
    display: inline-block;
    padding: 0.75rem 1.5rem;
    border-radius: var(--radius);
    font-weight: 600;
    text-align: center;
    cursor: pointer;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.btn-primary {
    background-color: var(--primary);
    color: var(--white);
}

.btn-primary:hover {
    background-color: var(--primary-hover);
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

.btn-outline {
    border-color: var(--primary);
    color: var(--primary);
    background-color: transparent;
}

.btn-outline:hover {
    background-color: var(--primary);
    color: var(--white);
}

.btn-contact {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: var(--primary);
    color: var(--white);
    border: 1px solid var(--primary);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.12);
}

.btn-contact:hover {
    background: var(--primary-hover);
    border-color: var(--primary-hover);
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

.btn-contact .btn-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 1.25rem;
    height: 1.25rem;
    color: var(--white);
}

/* =========================================
   3. COMPONENTS
   ========================================= */

/* =========================================
   3. COMPONENTS
   ========================================= */

/* Sticky Header Wrapper - Contains both announcement bar and header */
.sticky-header-wrapper {
    position: sticky;
    top: 0;
    z-index: 999;
    background: var(--white);
}

/* Announcement Bar */
.announcement-bar {
    background: linear-gradient(90deg, #019d98 0%, #01c4be 100%);
    color: var(--white);
    text-align: center;
    padding: 0.5rem 1rem;
    font-size: 0.875rem;
    font-weight: 600;
}

/* Main Header */
.site-header {
    background: var(--white);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
}

.site-header.scrolled {
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.12);
}


/* Utility Nav (Top Right) */
.nav-utility {
    display: flex;
    justify-content: flex-end;
    align-items: center;
    gap: 1.5rem;
    font-size: 0.75rem;
    color: var(--text-secondary);
    margin-bottom: 0.5rem;
    padding-right: 0.5rem;
}

.nav-utility a {
    font-weight: 500;
}

.nav-utility a:hover {
    color: var(--primary);
}

.utility-icon {
    width: 16px;
    height: 16px;
    stroke-width: 2px;
}

/* Main Nav Row */
.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: relative;
    width: 100%;
    gap: 1.5rem;
    padding: 0.75rem 0px;
}

/* Desktop spacing */
@media (min-width: 901px) {
    .nav-container {
        gap: 2rem;
    }

}

.logo {
    height: 32px;
}

/* Desktop Menu */
.desktop-menu {
    display: flex;
    gap: 2rem;
    align-items: center;
}

.nav-link {
    font-weight: 500;
    color: var(--text-primary);
    font-size: 0.95rem;
    display: flex;
    align-items: center;
    gap: 4px;
}

.nav-link:hover,
.nav-link.active {
    color: var(--accent);
    /* Violet 500 */
}

/* Dropdown Arrow */
.chevron-down {
    width: 14px;
    height: 14px;
    transition: transform 0.2s;
}

.nav-link:hover .chevron-down {
    transform: rotate(180deg);
}

/* Button Group */
.nav-actions {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.btn-sm {
    padding: 0.5rem 1rem;
    font-size: 0.875rem;
}

.btn-brand {
    background-color: var(--accent);
    color: var(--white);
    border: 1px solid var(--accent);
}

.btn-brand:hover {
    background-color: var(--accent-hover);
    border-color: var(--accent-hover);
    box-shadow: var(--shadow-md);
}

.btn-outline-dark {
    background: transparent;
    color: var(--text-primary);
    border: 1px solid var(--text-primary);
}

.btn-outline-dark:hover {
    background: var(--text-primary);
    color: var(--white);
}

/* Mobile Menu Button - Hidden by default on desktop */
.mobile-menu-btn {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
    position: relative;
    z-index: 1001;
    visibility: visible;
    opacity: 1;
}

.mobile-menu-btn span {
    display: block;
    width: 25px;
    height: 2px;
    background-color: var(--text-primary);
    margin: 5px 0;
    transition: all 0.3s ease;
    transform-origin: center;
    visibility: visible;
    opacity: 1;
    position: relative;
}

/* Mobile menu - Hidden on desktop */
.nav-links-mobile {
    display: none;
}

/* Responsive */
/* Desktop - Ensure mobile menu is hidden */
@media (min-width: 901px) {
    .mobile-menu-btn {
        display: none !important;
    }

    .nav-links-mobile {
        display: none !important;
    }

    .desktop-menu,
    .nav-actions {
        display: flex;
    }
}

@media (max-width: 900px) {

    /* Announcement bar - show but make it smaller */
    .announcement-bar {
        padding: 0.4rem 1rem;
        font-size: 0.75rem;
    }

    /* Hide desktop navigation elements */
    .nav-utility,
    .desktop-menu {
        display: none !important;
    }

    .nav-actions {
        display: none !important;
    }

    /* Nav container adjustments for mobile */
    .nav-container {
        gap: 0.75rem;
        justify-content: space-between;
        align-items: center;
    }

    /* Logo sizing for mobile */
    .logo {
        height: 28px;
    }

    /* Logo link - ensure it doesn't shrink too much */
    .logo-link {
        flex-shrink: 0;
        margin-right: auto;
    }

    /* Ensure mobile menu button has proper flex behavior */
    .mobile-menu-btn {
        flex-shrink: 0;
        margin-left: auto;
    }

    /* Show mobile menu button */
    .mobile-menu-btn {
        display: flex !important;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        width: 40px;
        height: 40px;
        z-index: 1001;
        position: relative;
        background: transparent;
        border: none;
        cursor: pointer;
        visibility: visible !important;
        opacity: 1 !important;
        transition: all 0.3s ease !important;
    }

    /* Ensure mobile menu button spans are visible */
    .mobile-menu-btn span {
        display: block !important;
        opacity: 1 !important;
        visibility: visible !important;
        width: 25px !important;
        height: 2px !important;
        background-color: var(--text-primary) !important;
        margin: 5px 0 !important;
        transition: all 0.3s ease !important;
        transform-origin: center !important;
    }

    /* Hamburger to X animation when menu is open */
    .mobile-menu-btn[aria-expanded="true"] {
        background: transparent !important;
        border: none !important;
        border-radius: 0 !important;
        box-shadow: none !important;
    }

    .mobile-menu-btn[aria-expanded="true"] span:nth-child(1) {
        transform: rotate(45deg) translate(0px, 0px) !important;
        margin-bottom: 0 !important;
        margin-top: 0 !important;
        position: absolute !important;
        top: 50% !important;
        left: 50% !important;
        width: 20px !important;
        height: 2px !important;
        margin-left: -10px !important;
        margin-top: -1px !important;
    }

    .mobile-menu-btn[aria-expanded="true"] span:nth-child(2) {
        opacity: 0 !important;
        transform: translateX(-20px) !important;
        width: 0 !important;
        margin: 0 !important;
    }

    .mobile-menu-btn[aria-expanded="true"] span:nth-child(3) {
        transform: rotate(-45deg) translate(0px, 0px) !important;
        margin-top: 0 !important;
        margin-bottom: 0 !important;
        position: absolute !important;
        top: 50% !important;
        left: 50% !important;
        width: 20px !important;
        height: 2px !important;
        margin-left: -10px !important;
        margin-top: -1px !important;
    }

    /* Mobile Dropdown Logic - Hidden by default, shown when active */
    .nav-links-mobile {
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background: var(--white);
        display: none !important;
        border-bottom: 1px solid var(--border-color);
        box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
        z-index: 1000;
        max-height: calc(100vh - 100px);
        overflow-y: auto;
        -webkit-overflow-scrolling: touch;
        opacity: 0;
        visibility: hidden;
        transition: opacity 0.3s ease, visibility 0.3s ease;
    }

    .nav-links-mobile.active {
        display: block !important;
        opacity: 1;
        visibility: visible;
    }

    .mobile-nav-content {
        display: flex;
        flex-direction: column;
        padding: 1.5rem;
        gap: 0.75rem;
    }

    .nav-links-mobile .nav-link {
        padding: 0.875rem 1rem;
        border-radius: 0.5rem;
        transition: background-color 0.2s ease, color 0.2s ease;
        display: block;
        width: 100%;
        text-align: left;
        font-size: 0.95rem;
        font-weight: 500;
    }

    .nav-links-mobile .nav-link:hover,
    .nav-links-mobile .nav-link.active {
        background-color: rgba(1, 196, 190, 0.1);
        color: var(--accent);
    }

    .mobile-nav-actions {
        display: flex;
        flex-direction: column;
        gap: 0.75rem;
        margin-top: 0.75rem;
        padding-top: 1rem;
        border-top: 1px solid var(--border-color);
    }

    .mobile-nav-actions .btn {
        width: 100%;
        justify-content: center;
        text-align: center;
        padding: 0.75rem 1rem;
    }
}

/* Very small screens */
@media (max-width: 480px) {
    .announcement-bar {
        padding: 0.35rem 0.75rem;
        font-size: 0.7rem;
        line-height: 1.3;
    }

    .announcement-bar {
        padding: 0.35rem 0.75rem;
        font-size: 0.7rem;
        line-height: 1.3;
    }

    .nav-container {
        gap: 0.5rem;
    }

    .logo {
        height: 24px;
    }

    .mobile-menu-btn {
        width: 36px !important;
        height: 36px !important;
        display: flex !important;
        visibility: visible !important;
        opacity: 1 !important;
    }

    .mobile-menu-btn span {
        width: 22px !important;
        height: 2px !important;
        margin: 4px 0 !important;
        display: block !important;
        visibility: visible !important;
        opacity: 1 !important;
        background-color: var(--text-primary) !important;
        transition: all 0.3s ease !important;
        transform-origin: center !important;
    }

    /* X animation for small screens */
    .mobile-menu-btn[aria-expanded="true"] {
        background: transparent !important;
        border: none !important;
        border-radius: 0 !important;
        box-shadow: none !important;
    }

    .mobile-menu-btn[aria-expanded="true"] span:nth-child(1) {
        transform: rotate(45deg) translate(0px, 0px) !important;
        margin-bottom: 0 !important;
        margin-top: 0 !important;
        position: absolute !important;
        top: 50% !important;
        left: 50% !important;
        width: 18px !important;
        height: 2px !important;
        margin-left: -9px !important;
        margin-top: -1px !important;
    }

    .mobile-menu-btn[aria-expanded="true"] span:nth-child(2) {
        opacity: 0 !important;
        transform: translateX(-20px) !important;
        width: 0 !important;
        margin: 0 !important;
    }

    .mobile-menu-btn[aria-expanded="true"] span:nth-child(3) {
        transform: rotate(-45deg) translate(0px, 0px) !important;
        margin-top: 0 !important;
        margin-bottom: 0 !important;
        position: absolute !important;
        top: 50% !important;
        left: 50% !important;
        width: 18px !important;
        height: 2px !important;
        margin-left: -9px !important;
        margin-top: -1px !important;
    }

    .mobile-nav-content {
        padding: 1.25rem 1rem;
        gap: 0.625rem;
    }

    .nav-links-mobile .nav-link {
        padding: 0.75rem 0.875rem;
        font-size: 0.9rem;
    }

    .mobile-nav-actions {
        margin-top: 0.5rem;
        padding-top: 0.875rem;
        gap: 0.625rem;
    }

    .mobile-nav-actions .btn {
        padding: 0.625rem 0.875rem;
        font-size: 0.875rem;
    }
}

/* =========================================
   HERO DARK DESIGN
   ========================================= */
.hero-dark {
    position: relative;
    background: linear-gradient(135deg, #F8FAFC 0%, #EEF2FF 50%, #F8FAFC 100%);
    padding: 6rem 0 4rem;
    min-height: 85vh;
    display: flex;
    align-items: center;
    text-align: center;
    overflow: hidden;
}

/* Diagonal accent stripe */
.hero-dark::before {
    content: '';
    position: absolute;
    top: 0;
    right: -10%;
    width: 40%;
    height: 100%;
    background: linear-gradient(135deg, rgba(139, 92, 246, 0.08) 0%, rgba(79, 70, 229, 0.05) 100%);
    transform: skewX(-15deg);
    pointer-events: none;
}

.hero-dark-content {
    position: relative;
    z-index: 10;
    max-width: 900px;
    margin: 0 auto;
}

.hero-dark-title {
    font-size: 3.5rem;
    font-weight: 700;
    line-height: 1.2;
    color: #111827;
    margin-bottom: 1.5rem;
    letter-spacing: -0.02em;
}

.hero-dark-title .text-accent {
    color: #019d98;
    /* Indigo accent for light background */
}

.hero-dark-subtitle {
    font-size: 1.125rem;
    color: #4B5563;
    margin-bottom: 3rem;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.hero-buttons {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 1rem;
    flex-wrap: wrap;
}

.hero-buttons .btn {
    min-width: 180px;
}

/* Hero Buttons Inline - Single Line Layout */
.hero-buttons-inline {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 1rem;
    flex-wrap: nowrap;
    max-width: 600px;
    margin: 0 auto;
}

/* Teal Contact Button Styling */
.btn-contact-teal {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.625rem;
    background: var(--primary);
    color: var(--white);
    border: none;
    padding: 1rem 2rem;
    font-size: 1rem;
    font-weight: 600;
    border-radius: 0.5rem;
    box-shadow: 0 4px 12px rgba(1, 157, 152, 0.2);
    transition: all 0.3s ease;
    min-width: 200px;
    flex: 1;
    max-width: 280px;
}

.btn-contact-teal:hover {
    background: var(--primary-hover);
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(1, 157, 152, 0.3);
}

.btn-contact-teal .btn-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 1.25rem;
    height: 1.25rem;
    color: var(--white);
}

/* Responsive adjustments for inline buttons - keep them in one line on mobile */
@media (max-width: 768px) {
    .hero-buttons-inline {
        gap: 0.5rem;
        max-width: 100%;
        padding: 0 1rem;
    }

    .btn-contact-teal {
        padding: 0.875rem 1.25rem;
        font-size: 0.9rem;
        min-width: auto;
        flex: 1;
    }
}

@media (max-width: 480px) {
    .hero-buttons-inline {
        gap: 0.5rem;
    }

    .btn-contact-teal {
        padding: 0.75rem 1rem;
        font-size: 0.85rem;
        gap: 0.5rem;
    }

    .btn-contact-teal .btn-icon {
        width: 1rem;
        height: 1rem;
    }
}


/* Certification Badge */
.cert-badge {
    display: inline-flex;
    flex-direction: column;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 4rem;
}

.cert-badge p {
    font-size: 0.9rem;
    color: #6B7280;
    margin: 0;
}

/* Brands Section */
.brands-section {
    margin-top: 4rem;
}

.brands-section h3 {
    font-size: 1.125rem;
    font-weight: 600;
    color: #111827;
    margin-bottom: 1.5rem;
}

.brands-divider {
    width: 60px;
    height: 2px;
    background: #D1D5DB;
    margin: 0 auto 2rem;
}

/* =========================================
   SLICK SLIDER FOR CLIENT LOGOS
   ========================================= */
.slick-slide {
    margin: 0px 10px;
}

.slick-slide img {
    width: 100%;
    max-height: 80px;
    object-fit: contain;
}

.slick-slider {
    position: relative;
    display: block;
    box-sizing: border-box;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    -webkit-touch-callout: none;
    -khtml-user-select: none;
    -ms-touch-action: pan-y;
    touch-action: pan-y;
    -webkit-tap-highlight-color: transparent;
}

.slick-list {
    position: relative;
    display: block;
    overflow: hidden;
    margin: 0;
    padding: 0;
}

.slick-list:focus {
    outline: none;
}

.slick-list.dragging {
    cursor: pointer;
    cursor: hand;
}

.slick-slider .slick-track,
.slick-slider .slick-list {
    -webkit-transform: translate3d(0, 0, 0);
    -moz-transform: translate3d(0, 0, 0);
    -ms-transform: translate3d(0, 0, 0);
    -o-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
}

.slick-track {
    position: relative;
    top: 0;
    left: 0;
    display: block;
}

.slick-track:before,
.slick-track:after {
    display: table;
    content: '';
}

.slick-track:after {
    clear: both;
}

.slick-loading .slick-track {
    visibility: hidden;
}

.slick-slide {
    display: none;
    float: left;
    height: 100%;
    min-height: 1px;
}

[dir='rtl'] .slick-slide {
    float: right;
}

.slick-slide img {
    display: block;
}

.slick-slide.slick-loading img {
    display: none;
}

.slick-slide.dragging img {
    pointer-events: none;
}

.slick-initialized .slick-slide {
    display: block;
}

.slick-loading .slick-slide {
    visibility: hidden;
}

.slick-vertical .slick-slide {
    display: block;
    height: auto;
    border: 1px solid transparent;
}

.slick-arrow.slick-hidden {
    display: none;
}

/* =========================================
   LATEST NEWS & EVENTS SECTION
   ========================================= */
.latest-news {
    background: #F9FAFB;
    padding: 5rem 0;
}

.news-title {
    font-size: 2rem;
    font-weight: 700;
    color: #111827;
    margin-bottom: 3rem;
}

.news-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.news-card {
    background: white;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    cursor: pointer;
}

.news-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
}

.news-image {
    position: relative;
    height: 180px;
    overflow: hidden;
}

.news-gradient {
    width: 100%;
    height: 100%;
    position: relative;
}

.gradient-1 {
    background: linear-gradient(135deg, #019d98 0%, #01c4be 50%, #7dd3d0 100%);
    position: relative;
    overflow: hidden;
}

.gradient-1::before {
    content: '';
    position: absolute;
    top: -20%;
    left: -20%;
    width: 80%;
    height: 140%;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.4) 0%, transparent 60%);
    transform: skewX(-15deg);
}

.gradient-2 {
    background: linear-gradient(135deg, #019d98 0%, #01c4be 100%);
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 40px;
}

.gradient-2::before {
    content: '';
    position: absolute;
    width: 90px;
    height: 90px;
    background: linear-gradient(to right, #019d98 0%, #019d98 48%, transparent 48%, transparent 52%, #019d98 52%),
        linear-gradient(to bottom, #019d98 0%, #019d98 48%, transparent 48%, transparent 52%, #019d98 52%);
    border-radius: 8px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
}

.gradient-2::after {
    content: none;
}

.gradient-3 {
    background: linear-gradient(135deg, #0A0A1F 0%, #1A1A2E 100%);
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.gradient-3::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 80px;
    height: 1px;
    background: linear-gradient(90deg, transparent 0%, #019d98 50%, transparent 100%);
    box-shadow: 0 0 15px rgba(1, 157, 152, 0.8), 0 0 30px rgba(1, 157, 152, 0.4);
}

.gradient-3::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 1px;
    height: 80px;
    background: linear-gradient(180deg, transparent 0%, #019d98 50%, transparent 100%);
    box-shadow: 0 0 15px rgba(1, 157, 152, 0.8), 0 0 30px rgba(1, 157, 152, 0.4);
}

/* Prism element in bottom right of card 3 */
.news-card:nth-child(3) .news-image::after {
    content: '';
    position: absolute;
    bottom: 15%;
    right: 15%;
    width: 0;
    height: 0;
    border-left: 20px solid transparent;
    border-right: 20px solid transparent;
    border-bottom: 35px solid rgba(139, 92, 246, 0.5);
    transform: rotate(180deg);
    filter: blur(0.5px);
}

.news-badge {
    position: absolute;
    top: 12px;
    left: 12px;
    background: #111827;
    color: white;
    padding: 4px 12px;
    border-radius: 4px;
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.5px;
}

.news-content {
    padding: 1.5rem;
}

.news-content h3 {
    font-size: 1.125rem;
    font-weight: 600;
    color: #111827;
    margin-bottom: 1rem;
    line-height: 1.4;
}

.news-link {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: #019d98;
    font-size: 0.875rem;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
}

.news-link:hover {
    gap: 0.75rem;
    color: #019d98;
}

.news-link svg {
    transition: transform 0.3s ease;
}

.news-link:hover svg {
    transform: translateX(4px);
}

/* Responsive for News Section */
@media (max-width: 1024px) {
    .news-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .news-grid {
        grid-template-columns: 1fr;
    }

    .news-title {
        font-size: 1.75rem;
    }
}

/* =========================================
   TESTIMONIAL/RECOGNITION SECTION
   ========================================= */
.testimonial-section {
    background: #F3F4F6;
    padding: 4rem 0;
}

.testimonial-card {
    background: white;
    border-radius: 16px;
    padding: 3rem;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08);
    position: relative;
}

.testimonial-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 2.5rem;
    flex-wrap: wrap;
    gap: 1.5rem;
}

.testimonial-source h4 {
    font-size: 1.25rem;
    font-weight: 700;
    color: #111827;
    margin: 0 0 0.25rem 0;
}

.testimonial-source p {
    font-size: 1.125rem;
    color: #6B7280;
    margin: 0;
}

.highlight-blue {
    color: #019d98;
}

.testimonial-rating {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.stars {
    display: flex;
    gap: 4px;
}

.rating-text {
    font-size: 1.25rem;
    font-weight: 700;
    color: #111827;
}

.testimonial-content h2 {
    font-size: 2.5rem;
    font-weight: 700;
    color: #111827;
    margin-bottom: 1rem;
    line-height: 1.2;
}

.testimonial-description {
    font-size: 1.125rem;
    color: #6B7280;
    line-height: 1.6;
    margin-bottom: 2rem;
    max-width: 800px;
}

.btn-read-reviews {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: #019d98;
    color: white;
    padding: 0.75rem 1.5rem;
    border-radius: 8px;
    font-size: 0.9375rem;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
}

.btn-read-reviews:hover {
    background: #018580;
    gap: 0.75rem;
    box-shadow: 0 4px 12px rgba(1, 157, 152, 0.3);
}

.btn-read-reviews svg {
    transition: transform 0.3s ease;
}

.btn-read-reviews:hover svg {
    transform: translateX(4px);
}

.testimonial-dots {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 0.5rem;
    margin-top: 2rem;
    padding-bottom: 0;
    position: relative;
}

.testimonial-dots .slick-dots {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 0.5rem;
    list-style: none;
    padding: 0;
    margin: 0;
}

.testimonial-dots .slick-dots li {
    margin: 0;
    padding: 0;
}

.testimonial-dots .slick-dots li button {
    display: none;
}

.dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #D1D5DB;
    transition: all 0.3s ease;
    cursor: pointer;
    display: block;
}

.testimonial-dots .slick-active .dot,
.dot.active {
    background: #111827;
    border-radius: 4px;
}

.dot:hover {
    background: #9CA3AF;
}

/* Responsive for Testimonial Section */
@media (max-width: 768px) {
    .testimonial-card {
        padding: 2rem 1.5rem;
    }

    .testimonial-header {
        flex-direction: column;
        align-items: flex-start;
    }

    .testimonial-content h2 {
        font-size: 1.875rem;
    }

    .testimonial-description {
        font-size: 1rem;
    }
}

/* Responsive */
@media (max-width: 768px) {
    .hero-dark-title {
        font-size: 2.25rem;
    }

    .hero-dark-subtitle {
        font-size: 1rem;
    }

    .brands-grid {
        gap: 1.5rem;
    }

    .hero-dark::before {
        opacity: 0.5;
    }
}

/* =========================================
   WHO WE ARE SECTION
   ========================================= */
.who-we-are {
    background: var(--bg-secondary);
    padding: 5rem 0;
}

.who-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 4rem;
    margin-bottom: 4rem;
}

.who-title {
    font-size: 3rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 0;
    flex: 0 0 auto;
    max-width: 450px;
    line-height: 1.2;
}

.who-content {
    flex: 1;
    max-width: 500px;
}

.who-description {
    font-size: 1rem;
    color: var(--text-secondary);
    line-height: 1.7;
    margin-bottom: 1.5rem;
}

.who-description:last-child {
    margin-bottom: 0;
}

/* Stats/Features Grid - Full Width Below */
.who-features {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
}

.feature-stat {
    background: var(--white);
    padding: 2rem;
    border-radius: 1rem;
    text-align: center;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.feature-stat:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
}

.stat-number {
    font-size: 3rem;
    font-weight: 700;
    background: linear-gradient(135deg, var(--accent) 0%, var(--primary) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 0.5rem;
    line-height: 1;
}

.stat-label {
    font-size: 0.95rem;
    color: var(--text-secondary);
    font-weight: 500;
}

/* Responsive */
@media (max-width: 968px) {
    .who-grid {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .who-content {
        max-width: 100%;
    }

    .who-title {
        font-size: 2rem;
    }
}

@media (max-width: 600px) {
    .who-features {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
}

/* =========================================
   SERVICES PLATFORM SECTION
   ========================================= */
.services-platform {
    background: #FFFFFF;
    padding: 5rem 0;
}

.platform-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 4rem;
    margin-bottom: 4rem;
}

.platform-title {
    font-size: 3rem;
    font-weight: 700;
    line-height: 1.2;
    color: #111827;
    margin-bottom: 0;
    flex: 0 0 auto;
    max-width: 450px;
}

.platform-desc {
    font-size: 1rem;
    color: #6B7280;
    line-height: 1.6;
    flex: 1;
    max-width: 500px;
    margin: 0;
}

.services-grid-4 {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
}

/* Service Cards */
.service-card {
    position: relative;
    border-radius: 1.25rem;
    padding: 2rem;
    min-height: 420px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    cursor: pointer;
}

.service-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

/* Gradient Backgrounds */
.card-gradient-purple {
    background: linear-gradient(135deg, #019d98 0%, #018580 100%);
    color: #FFFFFF;
}

.card-gradient-blue {
    background: linear-gradient(135deg, #019d98 0%, #018580 100%);
    color: #FFFFFF;
}

.card-gradient-dark {
    background: linear-gradient(135deg, #1F2937 0%, #111827 100%);
    color: #FFFFFF;
}

.card-gradient-violet {
    background: linear-gradient(135deg, #019d98 0%, #01c4be 100%);
    color: #FFFFFF;
}

.service-card-content {
    position: relative;
    z-index: 10;
}

.service-card-content h3 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    color: inherit;
}

.service-card-content p {
    font-size: 0.95rem;
    opacity: 0.9;
    line-height: 1.5;
}

/* Visual Elements */
.service-card-visual {
    position: relative;
    z-index: 5;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 2rem 0;
    min-height: 150px;
}

/* Dashboard Mock */
.dashboard-mock {
    background: rgba(0, 0, 0, 0.2);
    border-radius: 0.75rem;
    padding: 1rem;
    width: 100%;
    backdrop-filter: blur(10px);
}

.dash-header {
    height: 8px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 4px;
    margin-bottom: 1rem;
}

.dash-metrics {
    display: flex;
    gap: 1rem;
}

.metric-item {
    flex: 1;
    background: rgba(255, 255, 255, 0.1);
    padding: 0.75rem;
    border-radius: 0.5rem;
}

.metric-label {
    font-size: 0.7rem;
    opacity: 0.7;
    margin-bottom: 0.25rem;
}

.metric-value {
    font-size: 1.5rem;
    font-weight: 700;
}

/* Cloud Icon */
.cloud-icon {
    opacity: 0.8;
}

/* Terminal Mock */
.terminal-mock {
    background: rgba(0, 0, 0, 0.3);
    border-radius: 0.75rem;
    overflow: hidden;
    width: 100%;
    backdrop-filter: blur(10px);
}

.terminal-header {
    background: rgba(0, 0, 0, 0.2);
    padding: 0.5rem 1rem;
}

.terminal-dots {
    display: flex;
    gap: 0.4rem;
}

.terminal-dots span {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.3);
}

.terminal-body {
    padding: 1rem;
    font-family: 'Courier New', monospace;
    font-size: 0.8rem;
}

.terminal-line {
    margin-bottom: 0.5rem;
    opacity: 0.8;
}

.terminal-success {
    color: #10B981;
    opacity: 1;
}

/* Wave Visual */
.wave-visual {
    opacity: 0.9;
}

/* Service Card Button */
.service-card-btn {
    position: absolute;
    bottom: 2rem;
    right: 2rem;
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.2);
    border: 1px solid rgba(255, 255, 255, 0.3);
    backdrop-filter: blur(10px);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    color: #FFFFFF;
}

.service-card-btn:hover {
    background: rgba(255, 255, 255, 0.3);
    transform: scale(1.1);
}

/* Responsive */
@media (max-width: 1200px) {
    .services-grid-4 {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .platform-header {
        flex-direction: column;
        gap: 2rem;
    }

    .platform-title {
        font-size: 2rem;
        max-width: 100%;
    }

    .platform-desc {
        max-width: 100%;
    }

    .services-grid-4 {
        grid-template-columns: 1fr;
    }

    .service-card {
        min-height: 350px;
    }
}

/* Cards */
.card {
    background: var(--white);
    padding: 2rem;
    border-radius: var(--radius);
    box-shadow: var(--shadow-sm);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 1px solid var(--border-color);
}

.card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.card-icon {
    width: 50px;
    height: 50px;
    background: var(--accent-light);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    color: var(--accent);
}

/* =========================================
   4. PRE-FOOTER CTA
   ========================================= */
.pre-footer-cta {
    padding-bottom: 2rem;
}

.cta-header {
    margin-bottom: 3rem;
    flex-wrap: wrap;
    gap: 2rem;
}

.cta-title {
    font-size: 2.5rem;
    line-height: 1.1;
    color: var(--text-primary);
    max-width: 600px;
}

.cta-desc {
    max-width: 400px;
    font-size: 1rem;
    color: var(--text-secondary);
}

.cta-card {
    border-radius: 1rem;
    padding: 3rem 2rem 0;
    /* padding bottom is 0 to let image flush */
    color: var(--white);
    height: 190px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    overflow: hidden;
    position: relative;
    transition: transform 0.3s ease;
}

.cta-card:hover {
    transform: translateY(-5px);
}

.card-gradient-1 {
    background: linear-gradient(135deg, #019d98 0%, #018580 100%);
}

.card-gradient-2 {
    background: linear-gradient(135deg, #01c4be 0%, #019d98 100%);
}

.cta-content {
    position: relative;
    z-index: 2;
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 2rem;
}

.cta-content h3 {
    font-size: 1.75rem;
    max-width: 250px;
    margin-bottom: 0;
}

.btn-cta {
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
    color: var(--white);
    border: 1px solid rgba(255, 255, 255, 0.4);
    border-radius: 2rem;
    padding: 0.75rem 1.5rem;
    font-size: 0.9rem;
    transition: all 0.2s;
}

.btn-cta:hover {
    background: var(--white);
    color: var(--accent);
}

/* CSS Dashboard Mockups */
.cta-image-mockup {
    background: #111827;
    /* Dark theme dashboard */
    border-top-left-radius: 0.5rem;
    border-top-right-radius: 0.5rem;
    box-shadow: 0 -10px 30px rgba(0, 0, 0, 0.3);
    height: 100%;
    width: 100%;
    transform: translateY(10px);
    padding: 1rem;
    position: relative;
}

/* Mockup 1 Details */
.dashboard-header-mock {
    height: 20px;
    background: #1F2937;
    border-radius: 4px;
    margin-bottom: 1rem;
    width: 100%;
}

.dashboard-body-mock {
    display: flex;
    gap: 1rem;
}

.metric-box {
    flex: 1;
    height: 60px;
    background: #1F2937;
    border-radius: 4px;
}

.profile-mock {
    width: 80px;
    height: 60px;
    background: #374151;
    border-radius: 4px;
    border: 1px solid #019d98;
}

/* Mockup 2 Details */
.mockup-2 {
    display: flex;
    gap: 1rem;
}

.dashboard-sidebar-mock {
    width: 40px;
    height: 100%;
    background: #1F2937;
    border-radius: 4px;
}

.dashboard-main-mock {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.chart-circle-mock {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    border: 8px solid #019d98;
    border-right-color: #019d98;
    margin: 0 auto;
}

.list-lines-mock {
    height: 8px;
    background: #374151;
    border-radius: 4px;
    width: 100%;
    margin-bottom: 0.5rem;
}

/* Footer */
.footer {
    background: #1a1a2e;
    color: #FFFFFF;
    padding: 4rem 0 2rem;
    font-size: 0.875rem;
}

.footer-main-content {
    display: flex;
    gap: 5rem;
    margin-bottom: 3rem;
    align-items: flex-start;
}

.footer-brand-section {
    flex: 0 0 320px;
    max-width: 320px;
}

.footer-logo-link {
    display: inline-block;
    margin-bottom: 1.5rem;
    text-decoration: none;
}

.footer-logo {
    height: 40px;
    width: auto;
}

.footer-description {
    color: rgba(255, 255, 255, 0.75);
    font-size: 0.9375rem;
    line-height: 1.7;
    margin: 0;
    margin-bottom: 1.5rem;
}

.footer-columns-wrapper {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    flex: 1;
}

.footer-col {
    min-width: 0;
}

.footer-heading {
    font-weight: 700;
    color: #FFFFFF;
    margin-bottom: 1.5rem;
    font-size: 0.9375rem;
    letter-spacing: 0.01em;
}

.footer-links-list {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.footer-links-list a {
    color: rgba(255, 255, 255, 0.7);
    transition: color 0.2s ease;
    font-size: 0.875rem;
    text-decoration: none;
    line-height: 1.5;
}

.footer-links-list a:hover {
    color: #FFFFFF;
}

/* Footer Bottom Row */
.footer-bottom-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    flex-wrap: wrap;
    gap: 1.5rem;
}

.footer-logo-legal {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.footer-logo-legal p {
    margin: 0;
    font-size: 0.8125rem;
    color: rgba(255, 255, 255, 0.6);
}

.legal-links {
    display: flex;
    gap: 1.5rem;
    flex-wrap: wrap;
}

.legal-links a {
    font-size: 0.8125rem;
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    transition: color 0.2s ease;
}

.legal-links a:hover {
    color: #FFFFFF;
    text-decoration: underline;
}

.footer-social {
    display: flex;
    gap: 1.25rem;
}

.footer-social a {
    color: rgba(255, 255, 255, 0.7);
    transition: color 0.2s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.footer-social a:hover {
    color: #FFFFFF;
}

.mt-4 {
    margin-top: 2rem;
}

/* Form */
.form-group {
    margin-bottom: 1.5rem;
}

.form-label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 500;
    color: var(--text-primary);
}

.form-input,
.form-textarea {
    width: 100%;
    padding: 0.75rem;
    border: 1px solid var(--border-color);
    border-radius: var(--radius);
    font-family: inherit;
    font-size: 1rem;
    transition: border-color 0.2s;
}

.form-input:focus,
.form-textarea:focus {
    outline: none;
    border-color: var(--primary);
    box-shadow: 0 0 0 3px var(--accent-light);
}

/* Animations */
.fade-up {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}

.fade-up.visible {
    opacity: 1;
    transform: translateY(0);
}

/* Responsive */
@media (max-width: 768px) {
    .cta-header {
        flex-direction: column;
        gap: 1rem;
    }

    .cta-title {
        font-size: 2rem;
    }

    .cta-content {
        flex-direction: column;
        gap: 1rem;
    }

    .cta-card {
        height: auto;
        padding-bottom: 2rem;
    }

    .cta-image-mockup {
        display: none;
        /* Hide complex mockups on mobile to save space/complexity */
    }

    /* Mobile menu button is already handled in main responsive section */
    .grid-2,
    .grid-3 {
        grid-template-columns: 1fr;
    }

    /* Footer responsive */
    .footer-main-content {
        flex-direction: column;
        gap: 3rem;
    }

    .footer-brand-section {
        max-width: 100%;
        margin-bottom: 1rem;
    }

    .footer-columns-wrapper {
        width: 100%;
        grid-template-columns: repeat(2, 1fr);
        gap: 2rem;
    }
}

@media (max-width: 480px) {
    .footer-columns-wrapper {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
}