:root {
    /* Backgrounds */
    --bg: #ffffff;
    --surface: #f1f5f9;
    --section-alt: #f8fafc;
    --panel-hover: #e9eef3;

    /* Text */
    --ink: #1f2937;
    --paragraph: #4b5563;
    --label: #737373;
    --strong: #444444;

    /* Brand / Headings */
    --heading: #17416f;
    --primary: #05aff2;
    --primary-hover: #0ea5e9;
    --orange: #f26522;
    --secondary: #f26522;
    --secondary-hover: #e25318;

    /* Links & Effects */
    --link: #3b82f6;
    --glow: #89e7ff;
    --bk: #000;
    --grn: #A0B524;

    /* Borders / Dividers */
    --divider: #e5e7eb;
    --border: #d1d5db;

    /* System */
    --radius: 25px;
    --max: 1240px;
    --shadow-soft: 0 14px 35px rgba(15, 23, 42, 0.08);


    /* Fallbacks for Tailwind color vars used in the aurora.
     Remove these if your Tailwind plugin already sets them. */
    --blue-500: #3b82f6;
    --indigo-300: #a5b4fc;
    --blue-300: #93c5fd;
    --violet-200: #ddd6fe;
    --blue-400: #60a5fa;
}

*,
*::before,
*::after {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    font-family: "Roboto", Arial, Helvetica, sans-serif;
    background: var(--bg);
    color: var(--ink);
    font-size: 16px;
    line-height: 1.5;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    overflow-x: hidden;
    text-align: justify;
}

a {
    text-decoration: none;
    color: inherit;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

main {
    display: block;
}

.container {
    width: min(var(--max), calc(100% - 40px));
    margin: 0 auto;
    gap: 15px;
}

.section {
    padding: 50px 0;
}

.section-title {
    margin-bottom: 32px;
}

/* Typography */
h1,
h2,
h3,
h4 {
    margin: 0;
    color: var(--heading);
    letter-spacing: -0.03em;
}

h1 {
    font-size: clamp(24px, 2.4vw, 34px);
    font-weight: 700;
    line-height: 0.96;
}

h2 {
    font-size: clamp(20px, 2vw, 28px);
    font-weight: 600;
    line-height: 1.05;
}

h3 {
    font-size: clamp(18px, 1.6vw, 22px);
    font-weight: 600;
    line-height: 1.15;
}

h4 {
    font-size: clamp(16px, 1.3vw, 20px);
    font-weight: 500;
    line-height: 1.2;
}

p {
    margin: 0;
    color: var(--paragraph);
    font-size: 16px;
    line-height: 1.75;
    font-weight: 400;
}


.cmn-btn {
    display: inline-block;
    background-color: var(--bg);
    padding: 10px 25px;
    font-weight: bold;
    color: var(--primary);
    border: 1px solid var(--primary);
    border-radius: 25px;
    text-decoration: none;
    transition: all 0.3s ease;
}

.cmn-btn:hover {
    background: var(--primary);
    color: var(--bg);
    border-color: var(--primary);
    transition: background-color 0.3s ease, color 0.3s ease, border-color 0.3s ease;
}

/* ---------- Header / Navbar ---------- */
.site-header {
    position: sticky;
    top: 0;
    z-index: 50;
    background: var(--bg);
    box-shadow: 0 1px 5px rgba(0, 0, 0, 0.08);
}

.navbar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    padding: 8px 25px;
    min-height: 72px;
}

.navbar-left {
    display: flex;
    align-items: center;
    gap: 20px;
    padding: 10px 0;
    flex-shrink: 0;
}

.brand-link {
    display: inline-flex;
    align-items: center;
}

.logo {
    height: 50px;
    width: auto;
}

.vertical-divider {
    width: 1px;
    height: 44px;
    background: var(--border);
}

/* ---------- Navigation ---------- */
.nav-links {
    list-style: none;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 28px;
    flex: 1 1 auto;
    margin: 0;
    padding: 0;
}

.nav-links>li {
    position: relative;
    display: flex;
    align-items: center;
}

.nav-links>li>a {
    color: var(--label);
    font-size: 15px;
    padding: 10px 2px;
    transition: color 0.25s ease;
    white-space: nowrap;
}

.nav-links>li>a:hover {
    color: var(--heading);
}

/* ---------- Dropdown ---------- */
.popup {
    position: absolute;
    top: calc(100% + 22px);
    left: -70px;
    min-width: 220px;
    background: var(--bg);
    border: 1px solid var(--border);
    border-top: 3px solid var(--primary);
    border-radius: 0 0 10px 10px;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
    padding: 4px 0;
    visibility: hidden;
    opacity: 0;
    transition: opacity 0.25s ease, visibility 0.25s ease;
    z-index: 1000;
}

.nav-links li:hover .popup {
    visibility: visible;
    opacity: 1;
}

.popup a {
    display: flex;
    align-items: center;
    min-height: 42px;
    padding: 0 14px;
    font-size: 14px;
    font-weight: 400;
    color: var(--label);
    border-bottom: 1px solid var(--divider);
    transition: background 0.25s ease, color 0.25s ease;
}

.popup a:last-child {
    border-bottom: none;
}

.popup a:hover {
    background: var(--panel-hover);
    color: var(--heading);
}

/* Sub dropdown container */
.has-sub-dropdown {
    position: relative;
	min-height: 40px;
	padding-top: 5px;
	cursor: pointer;
}
.has-sub-dropdown span{
	color: var(--label);
	padding: 0px 14px;
	font-size: 14px;
}

/* Sub menu (hidden by default) */
.sub-popup {
    position: absolute;
    top: 0;
    left: 100%;
    background: #fff;
    border-radius: 10px;
    padding: 10px 0;
    min-width: 220px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    opacity: 0;
    visibility: hidden;
    transform: translateX(10px);
    transition: all 0.3s ease;
}

/* Show on hover */
.has-sub-dropdown:hover .sub-popup {
    opacity: 1 ;
    visibility: visible;
    transform: translateX(0);
}

/* ---------- Right Side ---------- */
.navbar-right {
    display: flex;
    align-items: center;
    flex-shrink: 0;
    padding: 10px 0;
}

.top-right {
    display: flex;
    align-items: center;
    gap: 18px;
    flex-wrap: nowrap;
}

.utility-link {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    color: var(--label);
    font-size: 14px;
    transition: color 0.25s ease;
    white-space: nowrap;
}

.utility-link:hover {
    color: var(--heading);
}

.icon img {
    height: 26px;
    width: auto;
}

/* ---------- Hamburger ---------- */
.hamburger {
    display: none;
    background: transparent;
    border: none;
    color: var(--heading);
    font-size: 28px;
    line-height: 1;
    cursor: pointer;
    padding: 0;
}

/* ---------- Focus States ---------- */
a:focus-visible,
button:focus-visible {
    outline: 2px solid var(--primary);
    outline-offset: 2px;
    border-radius: 4px;
}

.visually-hidden {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

/* Mobile menu */
.mobile-menu {
    position: fixed;
    top: 72px;
    left: 0;
    width: 100%;
    height: calc(100vh - 72px);
    display: flex;
    flex-direction: column;
    padding: 14px 12px 24px;
    background: var(--bg);
    z-index: 999;
    border-top: 1px solid var(--border);
    transform: translateY(-110%);
    opacity: 0;
    pointer-events: none;
    transition: transform 250ms ease, opacity 200ms ease;
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
}

.mobile-menu.active {
    transform: translateY(0);
    opacity: 1;
    pointer-events: auto;
}

.mobile-menu.active::before {
    content: "";
    position: fixed;
    inset: 0;
    z-index: -1;
}

body.menu-open {
    overflow: hidden;
}

.mobile-section {
    display: flex;
    flex-direction: column;
    padding-top: 10px;
}

.mobile-section h4 {
    color: var(--heading);
    font-size: 18px;
    font-weight: 600;
    padding: 10px 12px;
    margin: 0;
}

.mobile-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    width: 100%;
    text-align: left;
}

.mobile-list a {
    color: var(--label);
    text-decoration: none;
    display: block;
    padding: 10px 16px;
    border-bottom: 1px solid rgba(0, 0, 0, 0.12);
}

.mobile-close {
    position: absolute;
    top: 10px;
    right: 12px;
    width: 40px;
    height: 40px;
    line-height: 36px;
    font-size: 28px;
    font-weight: 400;
    border: none;
    border-radius: 8px;
    background: transparent;
    color: var(--heading);
    cursor: pointer;
}

.mobile-close:hover,
.mobile-close:focus {
    background: rgba(0, 0, 0, 0.06);
    outline: none;
}

/* Nested mobile dropdown */
.has-mobile-dropdown .mobile-list,
.has-mobile-submenu .mobile-submenu {
    display: none;
}

.has-mobile-dropdown.active .mobile-list {
    display: flex;
}

.has-mobile-submenu.active .mobile-submenu {
    display: flex;
    flex-direction: column;
}

.mobile-dropdown-toggle {
    color: var(--heading);
    font-size: 18px;
    font-weight: 600;
    padding: 10px 12px;
    margin: 0;
    display: flex;
    align-items: center;
    justify-content: space-between;
    cursor: pointer;
}

.mobile-submenu-toggle {
    width: 100%;
    border: none;
    background: transparent;
    color: var(--label);
    text-align: left;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 10px 16px;
    border-bottom: 1px solid rgba(0, 0, 0, 0.12);
    font: inherit;
    cursor: pointer;
}

.mobile-submenu {
    list-style: none;
    padding: 0;
    margin: 0;
}

.mobile-submenu a {
    padding-left: 30px;
    font-size: 14px;
}

.mobile-arrow {
    font-size: 18px;
    line-height: 1;
    transition: transform 0.3s ease;
}

.has-mobile-dropdown.active>.mobile-dropdown-toggle .mobile-arrow,
.has-mobile-submenu.active>.mobile-submenu-toggle .mobile-arrow {
    transform: rotate(45deg);
}


/* ---------- Hero Section ---------- */
.hero-wrap {
    width: 100%;
    min-height: 87vh;
    background: var(--bg);
    background-image: url('../LTimg/other_imgs/Hero-banner.webp');
    background-position: center center;
    background-size: cover;
    background-repeat: no-repeat;
    border-top: 1px solid transparent;
    display: flex;
    align-items: center;
}

.hero-wrap .container {
    width: min(var(--max), calc(100% - 40px));
    margin: 0 auto;
}

.hero {
    margin-top: 0;
    display: flex;
    gap: 2rem;
    padding: 4rem 0;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    color: var(--ink);
    text-align: center;
}

.hero-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    white-space: nowrap;
    border-radius: var(--radius);
    padding: 5px;
    font-weight: 600;
    color: var(--label);
    line-height: 1;
    transition: background-color .15s ease, color .15s ease, border-color .15s ease, transform .05s ease, box-shadow .15s ease;
    box-shadow: 0 0 0 0 transparent;
    border: 1px solid var(--label);
    text-align: center;
}

.hero-btn:hover {
    background-color: #73737336;
    border: 1px solid var(--label);
    color: var(--label);
}

.hero-btn:focus-visible {
    outline: none;
    box-shadow: 0 0 0 2px var(--primary), 0 0 0 4px #fff;
}

.hero-btn:active {
    transform: scale(0.98);
}

.hero-btn-sm {
    min-height: 2.25rem;
    padding: 0.7rem 1rem;
}

.hero-btn-lg {
    min-height: 2.9rem;
    padding: 0.9rem 1.8rem;
}

.gap-4 {
    gap: .75rem;
}

.hero-btn-secondary {
    border: 2px solid var(--secondary);
    padding: 0.85rem 1.1rem;
    color: var(--orange);
}

.hero-btn-secondary p {
    color: var(--orange);
    margin: 0;
    font-size: 0.95rem;
    line-height: 1.2;
}

.hero-btn-outline {
    background: transparent;
}

.hero-btn-primary {
    background: var(--primary);
    border-color: var(--primary);
    color: #fff;
}

.hero-btn-primary:hover {
    background: var(--primary-hover);
    border-color: var(--primary-hover);
    color: #fff;
}

/* Hero content */
.pill {
    display: flex;
    justify-content: center;
    width: 100%;
}

.title-wrap {
    display: flex;
    gap: 15px;
    flex-direction: column;
    align-items: center;
    text-align: center;
    width: 100%;
}

.title {
    font-weight: 400;
    letter-spacing: -0.03em;
    line-height: 1.05;
    max-width: 16ch;
    font-size: clamp(2.4rem, 5.2vw, 4.25rem);
    margin: 0;
}

.accent {
    color: var(--ink);
    display: inline-block;
}

.rotator {
    position: relative;
    display: inline-flex;
    min-width: 15ch;
    justify-content: center;
    align-items: center;
    overflow: hidden;
    text-align: center;
    padding-top: .3rem;
    padding-bottom: 1rem;
    min-height: 1.25em;
    color: var(--primary);
}

.rot-word {
    position: absolute;
    font-weight: 700;
    transform: translateY(150%);
    opacity: 0;
    transition: transform .6s cubic-bezier(.22, 1, .36, 1), opacity .6s ease;
    will-change: transform, opacity;
    white-space: nowrap;
}

.rot-word.enter {
    transform: translateY(0);
    opacity: 1;
}

.rot-word.leave-up {
    transform: translateY(-150%);
    opacity: 0;
}

.rot-word.active {
    transform: translateY(0);
    opacity: 1;
}

.lead {
    font-size: clamp(1rem, 2vw, 1.1rem);
    color: #737373dc;
    line-height: 1.6;
    letter-spacing: .01em;
    max-width: 750px;
    margin: 0 auto;
}

.cta {
    display: flex;
    gap: .75rem;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
}



/* ========== Partner Section ========== */
.p-container {
    margin-top: 20px;
}

#partners-heading {
    padding-bottom: 10px;
}

.partners-txt {
    padding-top: 20px;
    text-align: center;
    gap: 25px;
}

.partners-carousel {
    position: relative;
    overflow: hidden;
    width: 100%;
    padding: 5px;
    border-radius: 12px;
    box-shadow: 0 20px 30px rgba(0, 0, 0, 0.10);
    margin: 20px auto;
}

.partners-container {
    display: flex;
    width: min-content;
    animation: scroll 30s linear infinite;
}

.partner-item {
    display: flex;
    align-items: center;
    justify-content: center;
    min-width: 200px;
    height: 100px;
    padding: 0 20px;
    margin: 0 15px;
    background: var(--bg);
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.03);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.partner-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
}

.partner-logo {
    max-width: 80%;
    max-height: 80%;
    object-fit: contain;
    transition: filter 0.3s ease;
}


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

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

/* ===== SOLUTION SECTION ===== */
.ia-section {
    max-width: 1560px;
    margin: 20px auto 60px;
    padding: 25px;
    background: var(--section-alt);
    color: var(--ink);
    border-radius: 28px;
    border: 1px solid var(--divider);
}

.ia-wrap {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 28px;
}

.ia-head {
    max-width: 1020px;
    text-align: center;
    padding: 6px 6px 0;
}

.ia-head h2 {
    margin-bottom: 12px;
}

.ia-lead {
    color: var(--paragraph);
}

/* Grid */
.ia-solution-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 28px;
}

/* Card */
.ia-solution-card {
    gap: 10px;
    padding: 38px 38px 34px;
    background: #fbfbfc;
    border: 1px solid var(--divider);
    border-radius: 20px;
    box-shadow: 0 8px 24px rgba(15, 23, 42, 0.04);
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
    position: relative;
}

.ia-solution-card:hover {
    transform: translateY(-6px);
    border-color: rgba(5, 175, 242, 0.45);
    box-shadow: 0 18px 38px rgba(5, 175, 242, 0.10);
}

ia-solution-card {
    gap: 10px;
    padding: 38px 38px 34px;
    background: #fbfbfc;
    border: 1px solid var(--divider);
    border-radius: 20px;
    box-shadow: 0 8px 24px rgba(15, 23, 42, 0.04);
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
    position: relative;
}

.ia-solution-card:hover {
    transform: translateY(-6px);
    border-color: rgba(5, 175, 242, 0.45);
    box-shadow: 0 18px 38px rgba(5, 175, 242, 0.10);
}

.ia-solution-card::after {
    content: "";
    position: absolute;
    left: 17px;
    bottom: 0;
    width: 92%;
    height: 5px;
    border-radius: 55px;
    border-radius: 0 0 20px 20px;
    background: transparent;
    transition: background 0.3s ease;
}

.ia-solution-card::after {
    content: "";
    position: absolute;
    left: 17px;
    bottom: 0;
    width: 92%;
    height: 5px;
    border-radius: 55px;
    border-radius: 0 0 20px 20px;
    background: transparent;
    transition: background 0.3s ease;
}

.ia-solution-card:hover::after,
.ia-solution-card-featured::after {
    background: var(--primary);
}

.ia-solution-icon {
    width: 78px;
    height: 78px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    /* margin-bottom: 26px; */
}

.ia-solution-icon img {
    width: 62px;
    height: 62px;
    object-fit: contain;
}

.ia-solution-card h3 {
    /* margin: 0 0 14px; */
    color: var(--bk);
    /* font-size: clamp(22px, 2vw, 28px); */
    font-weight: 600;
    line-height: 1.2;
    letter-spacing: -0.03em;
}

.ia-solution-card p {
    margin: 0;
    color: #5a6472;
    font-size: 16px;
    line-height: 1.75;
    max-width: 320px;
}

.ia-solution-link {
    /* margin-top: auto; */
    display: inline-flex;
    align-items: center;
    gap: 10px;
    /* padding-top: 28px; */
    color: var(--primary);
    font-weight: 500;
    transition: color 0.3s ease;
}

.ia-solution-link:hover {
    color: var(--primary-hover);
}

.ia-solution-link span {
    font-size: 22px;
    line-height: 1;
}

/* Optional featured card */
.ia-solution-card-featured {
    border-color: rgba(5, 175, 242, 0.3);
    box-shadow: 0 16px 30px rgba(5, 175, 242, 0.08);
}


/* ===== INDUSTRY SECTION ===== */
.industry-section {
    max-width: 1350px;
    margin: auto;
    padding: 40px 20px;
    border-top: 2px solid rgba(0, 0, 0, 0.05);
    border-bottom: 2px solid rgba(0, 0, 0, 0.05);
}

.industry-header {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 30px;
    gap: 20px;
    width: 100%;
}

.industry-header h3 {
    font-weight: 700;
    padding-top: 10px;
    flex: 1 1 420px;
    margin: 0;
    line-height: 1.25;
}

.industry-header span {
    color: var(--grn);
}

.industry-header p {
    font-size: clamp(14px, 1.5vw, 16px);
    text-align: justify;
    padding-top: 8px;
    flex: 1 1 420px;
    margin: 0;
}

/* ===== Tabs ===== */
.industry-tabs-container {
    border-bottom: 2px solid var(--panel-hover);
    position: relative;
    width: 100%;
}

.industry-tabs {
    display: flex;
    flex-wrap: wrap;
    gap: 0;
    font-size: clamp(14px, 1.2vw, 16px);
}

.industry-tabs::-webkit-scrollbar {
    height: 4px;
}

.industry-tabs::-webkit-scrollbar-track {
    background: var(--surface);
}

.industry-tabs::-webkit-scrollbar-thumb {
    background: var(--primary);
    border-radius: 4px;
}

.industry-tab {
    background: transparent;
    border: none;
    font-size: clamp(14px, 1.2vw, 16px);
    font-weight: 500;
    padding: 12px 20px;
    cursor: pointer;
    color: var(--label);
    transition: all 0.3s ease;
    white-space: nowrap;
    border-bottom: 3px solid transparent;
    position: relative;
    flex-shrink: 0;
}

.industry-tab:hover {
    color: var(--heading);
    background-color: rgba(3, 120, 166, 0.05);
}

.industry-tab.active {
    color: var(--primary);
    border-bottom-color: var(--primary);
    font-weight: 600;
}

.view-more-link {
    margin-top: 15px;
    display: inline-block;
    font-weight: 700;
    color: var(--primary);
    text-decoration: none;
    font-size: clamp(14px, 1.4vw, 16px);
    padding-left: 0;
}

.view-more-link:hover {
    text-decoration: underline;
}

/* ===== Content Area ===== */
.industry-content {
    position: relative;
    margin-top: 30px;
}

.industry-panel {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 28px;
    animation: fadeIn 0.4s ease;
}

.industry-panel.is-hidden {
    display: none;
}

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

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

.industry-image-wrapper {
    flex: 0 1 32%;
    padding-left: 0;
}

.industry-image-wrapper img {
    width: 100%;
    height: 260px;
    object-fit: cover;
    border-radius: 16px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    display: block;
}

.industry-info {
    flex: 1 1 52%;
}

.industry-info p {
    line-height: 1.8;
    margin-bottom: 20px;
    text-align: justify;
}

.industry-explore-btn {
    display: inline-block;
    padding: 12px 28px;
    font-size: clamp(15px, 1.4vw, 16px);
    font-weight: 600;
    color: var(--primary);
    border: 1px solid var(--primary);
    border-radius: 10px;
    text-decoration: none;
    transition: all 0.3s ease;
    min-height: 50px;
    box-shadow: 0 4px 8px rgba(3, 120, 166, 0.2);
}

.industry-explore-btn:hover {
    background: var(--primary);
    color: var(--bg);
}

/* ========== CLIENT SECTION ========== */
.clients-txt {
    text-align: center;
    padding-top: 10px;
}

h2#clients-heading {
    padding-bottom: 10px;
}


/*==== CTA SECTION ==== */
.sf-wrap {
    position: relative;
    max-width: 72rem;
    margin: 1rem auto;
    padding-left: 2.5rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 30rem;
    border: 1px solid var(--border);
    background: var(--bg);
    overflow: hidden;
    border-radius: 1.5rem;
    color: var(--ink);
}

.sf-left {
    width: 50%;
    position: relative;
    z-index: 1;
    color: var(--label);
}

.sf-title {
    /* font-size: clamp(1.8rem, 1.5vw, 3.75rem); */
    line-height: 1.1;
    margin: 0 0 0.75rem 0;
}

.sf-lead {
    color: var(--muted);
    max-width: 36rem;
    margin: 0 0 1.5rem 0;
    line-height: 1.6;
}

.sf-cta {
    display: flex;
    gap: 0.75rem;
    align-items: center;
}

.sf-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    white-space: nowrap;
    border-radius: 0.5rem;
    font-size: 0.95rem;
    font-weight: 600;
    line-height: 1;
    border: 1px solid transparent;
    padding: 0.75rem 1.25rem;
    cursor: pointer;
    text-decoration: none;
    transition: background .15s ease, color .15s ease, border-color .15s ease, transform .05s ease, box-shadow .15s ease;
}

.sf-btn:active {
    transform: scale(0.98);
}

.sf-btn-primary {
    background: var(--primary) !important;
    color: var(--bg) !important;
}

.sf-btn-primary:hover {
    background-color: var(--bg) !important;
    color: var(--primary) !important;
    border: 1px solid var(--primary) !important;
    transform: none;
}

.sf-btn-outline {
    background: transparent;
    color: var(--label) !important;
    border-color: var(--label) !important;
}

.sf-btn-outline:hover {
    background: #7373733e !important;
    /* color:var(--bg) !important; */
}

/* Right quarter with cropped orbit */
.sf-right {
    position: relative;
    width: 50%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    overflow: hidden;
}

.sf-orbit-stage {
    position: relative;
    width: 50rem;
    height: 50rem;
    transform: translateX(50%);
    display: flex;
    align-items: center;
    justify-content: center;
}

.sf-center {
    width: 6rem;
    height: 6rem;
    border-radius: 9999px;
    background: var(--divider);
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, .1), 0 4px 6px -4px rgba(0, 0, 0, .1);
    display: flex;
    align-items: center;
    justify-content: center;
}

.sf-react {
    width: 3rem;
    height: 3rem;
    color: var(--primary);
}

.sf-ring {
    position: absolute;
    border: 2px dotted #d1d5db;
    border-radius: 9999px;
    animation-name: sf-spin;
    animation-timing-function: linear;
    animation-iteration-count: infinite;
}

.sf-icon {
    position: absolute;
    background: var(--bg);
    border-radius: 9999px;
    padding: .25rem;
    box-shadow: 0 4px 10px rgba(0, 0, 0, .12);
    transform: translate(-50%, -50%);
    width: 3rem;
    height: 3rem;
    display: flex;
    align-items: center;
    justify-content: center;
}

.sf-icon img {
    width: 2rem;
    height: 2rem;
    object-fit: contain;
    display: block;
}

@keyframes sf-spin {
    from {
        transform: rotate(0deg);
    }

    to {
        transform: rotate(360deg);
    }
}

/* ========== CASE STUDY SECTION ========== */
.case-studies-section {
    padding: 10px 10px 40px;
    background: var(--bg);
    max-width: 95%;
    margin: auto;
}

.case-studies-header {
    text-align: center;
    max-width: 860px;
    margin: 0 auto 20px;
}

.case-heading {
    font-weight: 700;
    padding-bottom: 10px;
}

.text-btm h3 {
    margin-bottom: 10px;
}

.case-studies-grid {
    padding-top: 10px;
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    justify-content: flex-start;
}

.home-case-card {
    background: var(--bg);
    border: 1px solid var(--border);
    border-radius: 12px;
    padding: 24px;
    flex: 1 1 calc(33.333% - 20px);
    max-width: calc(33.333% - 14px);
    min-width: 260px;
    box-shadow: 0 1px 6px rgba(0, 0, 0, 0.05);
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
}

.case-icon {
    width: 60px;
    height: 60px;
    object-fit: contain;
    /* margin-bottom: 15px; */
}

.home-case-card h3 {
    font-size: 18px;
    font-weight: 700;
    margin: 0;
}

.home-case-card p {
    flex-grow: 1;
    font-size: 15px;
    line-height: 1.6;
    margin: 0;
}

.case-btn {
    padding: 8px 12px !important;
    margin-top: 8px;
}

.view-more-btn {
    margin-top: 15px;
    display: inline-block;
    padding: 8px 16px;
    font-weight: 700;
    border: 2px solid var(--primary);
    border-radius: 8px;
    color: var(--primary);
    text-decoration: none;
    transition: 0.3s ease;
}

.view-more-btn:hover {
    background: var(--primary);
    color: var(--bg);
}


/* ====== TESTIMONIAL SECTION ======= */
.testimonial-section {
    border-bottom: 2px solid rgba(0, 0, 0, 0.08);
    border-top: 2px solid rgba(0, 0, 0, 0.05);
    padding: 30px 50px;
    background: var(--bg);
}

.testimonial-wrapper {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    max-width: 95%;
    margin: auto;
    gap: 20px;
}

.testimonial-left {
    flex: 1 1 40%;
    position: relative;
}

.testimonial-left h2 {
    color: var(--bk);
    font-weight: bold;
    line-height: 1.4;
    margin-bottom: 10px;
}

.highlight-green {
    color: var(--grn);
    font-size: clamp(22px, 2.5vw, 30px);

}

.testimonial-left .subheading {
    color: var(--label);
    gap: 10px;
    padding-bottom: 10px;
}



.testimonial-right {
    flex: 1 1 40%;
    position: relative;
}

.testimonial-card {
    background-color: var(--bg);
    border-radius: 16px;
    padding: 30px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
    border: 1px solid var(--border);
    display: none;
}

.testimonial-card.active {
    display: block;
}

.testimonial-icon {
    width: 60px;
    height: 60px;
    border: 2px solid var(--label);
    border-radius: 50%;
    margin-bottom: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.testimonial-icon img {
    width: 100%;
    height: 100%;
}

.testimonial-text {
    line-height: 1.8;
    color: var(--label);
    margin-bottom: 20px;
}

.author {
    font-weight: bold;
    color: var(--bk);
}

.author small {
    display: block;
    font-weight: normal;
    margin-top: 2px;
    color: var(--label);
}

/* ==== CONTACT FORM SECTION ==== */
.c-main {
    padding: 2rem 0;
    background: linear-gradient(135deg,
            var(--section-alt) 0%,
            #eef6fb 40%,
            #f5fbff 100%);
}

.c-container {
    max-width: 1110px;
    margin: 0 auto;
    padding: 0 1rem;
    background-color: var(--bg);
    color: var(--ink);
    border-radius: 20px;
    font-family: "Roboto", Arial, Helvetica, sans-serif;
}

.c-layout {
    display: flex;
    flex-direction: row;
    align-items: stretch;
    gap: 20px;
}

.c-info {
    flex: 0 0 32rem;
    max-width: 32rem;
    padding: 30px 0 10px 20px;
}

.c-subtitle {
    padding-top: 20px;
    margin: 0;
    color: var(--heading);
    font-size: clamp(24px, 2.2vw, 32px);
    font-weight: 700;
    font-family: "Roboto", Arial, Helvetica, sans-serif;
    font-style: normal;
}

.c-title {
    margin: 8px 0 0;
    color: var(--label);
    font-size: 1rem;
    font-weight: 500;
    font-family: "Roboto", Arial, Helvetica, sans-serif;
    font-style: normal;
}

.c-text {
    margin-top: 0.75rem;
    color: var(--paragraph);
    line-height: 1.6;
    font-size: 16px;
    font-weight: 400;
    font-family: "Roboto", Arial, Helvetica, sans-serif;
    font-style: normal;
}

.c-contact-list {
    display: flex;
    flex-wrap: wrap;
    gap: 1.5rem 2.5rem;
    margin-top: 1.5rem;
    margin-left: 0;
    padding-left: 0;
    list-style: none;
}

.c-contact-item {
    display: flex;
    gap: 0.75rem;
    align-items: flex-start;
    max-width: 100%;
}

.c-contact-item p,
.c-contact-item a,
.c-contact-item address {
    margin: 0;
    color: var(--paragraph);
    font-size: 15px;
    line-height: 1.6;
    font-weight: 400;
    font-family: "Roboto", Arial, Helvetica, sans-serif;
    font-style: normal;
    text-decoration: none;
}

.c-contact-item a:hover {
    color: var(--primary);
}

.c-icon {
    flex: none;
    color: var(--label);
}

.c-svg {
    width: 1.5rem;
    height: 1.5rem;
}

.c-form-wrap {
    flex: 1;
    padding: 30px 20px 20px 20px;
    margin: 20px;
    background: rgba(255, 255, 255, 0.55);
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
    border: 1px solid rgba(255, 255, 255, 0.4);
    border-radius: 20px;
    box-shadow:
        0 10px 30px rgba(0, 0, 0, 0.08),
        0 4px 10px rgba(0, 0, 0, 0.05);
    color: var(--ink);
    font-family: "Roboto", Arial, Helvetica, sans-serif;
    transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.c-form {
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
}

.c-field {
    display: flex;
    flex-direction: column;
}

.c-label {
    color: var(--label);
    font-size: 15px;
    font-weight: 600;
    font-family: "Roboto", Arial, Helvetica, sans-serif;
    font-style: normal;
}

.c-input,
.c-textarea,
.c-btn {
    font-style: normal;
}

.c-input,
.c-textarea {
    margin-top: 0.5rem;
    padding: 0.6rem 0.85rem;
    color: var(--strong);
    background: rgba(255, 255, 255, 0.6);
    border: 1px solid rgba(0, 0, 0, 0.15);
    border-radius: 0.5rem;
    outline: none;
    backdrop-filter: blur(6px);
    font-size: 15px;
    font-weight: 400;
    transition: border-color 0.2s, box-shadow 0.2s;
}

.c-input::placeholder,
.c-textarea::placeholder {
    color: var(--label);
    font-style: normal;
}

.c-input:focus,
.c-textarea:focus {
    border-color: var(--primary);
    box-shadow: 0 0 0 2px rgba(5, 175, 242, 0.15);
}

.c-textarea {
    resize: none;
    min-height: 9rem;
}

.c-btn {
    height: 40px !important;
    width: 100%;
    background-color: var(--bg);
    font-weight: 500;
    font-size: 1rem;
    transition: background 0.2s, color 0.2s, border-color 0.2s;
    cursor: pointer;
}


/* ==== FOOTER SECTION ==== */
.site-footer {
    background: var(--bg);
    color: var(--label);
}

.footer-header {
    background: var(--bg);
    padding: 14px 50px;
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    align-items: center;
    gap: 16px;
    border-bottom: 1px solid var(--divider);
}

.footer-header h3 {
    margin: 0;
    color: var(--heading);
    font-size: 22px;
    font-weight: 600;
    text-align: left;
}

.social-icons {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
}

.social-icons a {
    width: 40px;
    height: 40px;
    border: 1px solid var(--border);
    border-radius: 50%;
    background: var(--bg);
    color: var(--label);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    font-weight: 600;
    transition: background-color 0.3s ease, color 0.3s ease, border-color 0.3s ease;
}

.social-icons a:hover {
    background: var(--primary);
    color: var(--bg);
    border-color: var(--primary);
}

.email-link {
    justify-self: end;
    color: var(--link);
    text-decoration: none;
    font-size: 15px;
    font-weight: 500;
    text-align: right;
    transition: color 0.3s ease;
}

.email-link:hover {
    color: var(--primary-hover);
}

/* ---------- Footer Middle ---------- */
.footer-middle {
    background: var(--bg);
    padding: 60px 60px 20px;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(5, minmax(0, 1fr));
    gap: 40px;
}

.footer-column {
    min-width: 0;
}

.footer-column h3 {
    margin: 0 0 20px;
    color: var(--heading);
    font-size: 18px;
    font-weight: 600;
    line-height: 1.3;
}

.footer-subheading {
    margin-top: 30px !important;
}

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

.footer-column ul li {
    margin-bottom: 12px;
}

.footer-column ul li a {
    color: var(--label);
    text-decoration: none;
    font-size: 14px;
    line-height: 1.6;
    transition: color 0.3s ease;
}

.footer-column ul li a:hover {
    color: var(--primary);
}

/* ---------- Office Info ---------- */
.office-info {
    margin-bottom: 25px;
}

.office-info h4 {
    margin: 0 0 8px;
    color: var(--heading);
    font-size: 16px;
    font-weight: 600;
    line-height: 1.4;
}

.office-info p {
    margin: 4px 0;
    font-size: 14px;
    line-height: 1.6;
}

.office-spacer {
    margin-top: 10px !important;
}

/* ---------- Connect Column ---------- */
.footer-connect {
    display: flex;
    flex-direction: column;
}

.connect-copy h3 {
    margin-bottom: 12px;
}

.connect-copy p {
    margin: 0 0 16px;
    font-size: 14px;
    line-height: 1.6;
}

.connect-form {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.email-input {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid var(--border);
    border-radius: 8px;
    background: var(--bg);
    color: var(--ink);
    font-size: 14px;
    font-family: "Roboto", Arial, Helvetica, sans-serif;
    transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

.email-input::placeholder {
    color: var(--label);
}

.email-input:focus {
    outline: none;
    border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(5, 175, 242, 0.12);
}

.footer-submit-btn {
    min-height: 42px;
    width: 100%;
    border: 1px solid var(--primary);
    border-radius: 10px;
    background: var(--primary);
    color: var(--bg);
    font-size: 14px;
    font-weight: 500;
    font-family: "Roboto", Arial, Helvetica, sans-serif;
    cursor: pointer;
    transition: background-color 0.3s ease, border-color 0.3s ease;
}

.footer-submit-btn:hover {
    background: var(--primary-hover);
    border-color: var(--primary-hover);
}

/* ---------- Map ---------- */
.map-container {
    width: 100%;
    height: 180px;
    margin-top: 20px;
    overflow: hidden;
    border: 1px solid var(--divider);
    border-radius: 10px;
    background: var(--surface);
}

.map-container iframe {
    width: 100%;
    height: 100%;
    display: block;
}

/* ---------- Footer Bottom ---------- */
.footer-bottom {
    background: var(--bg);
}

.copyright {
    text-align: center;
    padding: 15px 20px 20px;
    color: var(--paragraph);
    font-size: 14px;
    line-height: 1.5;
    border-top: 1px solid var(--divider);
}

.footer-column,
.office-info,
.connect-copy,
.email-link {
    min-width: 0;
    word-wrap: break-word;
}




/* ==================== CONTACT US PAGE ==================== */

/* Contact Hero Banner */
.sub-hero {
    width: 100%;
    min-height: 550px;
    background-color: var(--heading);
    display: flex;
    align-items: flex-end;
    padding: 40px;
}

.hero-content {
    width: 100%;
    max-width: 1240px;
    margin: 0 auto;
}

.hero-content h1 {
    margin: 0;
    color: var(--bg);
    font-weight: 700;
    line-height: 1.1;
}

.hero-subtext {
    margin: 12px 0 0;
    max-width: 680px;
    color: var(--bg);
    line-height: 1.6;
}

/* Decorative Wave Section */
.contact-dsgn {
    width: 100%;
    overflow: hidden;
    background-color: var(--section-alt);
}

.contact-dsgn img {
    width: 100%;
    height: 100px;
    display: block;
    object-fit: cover;
}

/* Contact Form & Address */
.contact-form-section {
    background-color: var(--divider);
    padding: 40px 5%;
}

.form-container {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 40px;
    flex-wrap: wrap;
    max-width: 1240px;
    margin: 0 auto;
}

.form-left {
    flex: 1 1 60%;
    min-width: 0;
}

.form-left .highlight-blue {
    color: var(--primary);
    font-size: inherit;
}

.form-left h3,
.form-left .form-intro {
    padding-bottom: 20px;
    padding: 15px 0px;
}

.form-intro {
    max-width: 760px;
}

#contactForm {
    border: 1px solid #e0e0e0;
    border-radius: 12px;
    padding: 20px;
    background: var(--bg);
    box-shadow: rgba(0, 0, 0, 0.05) 0 0 0 1px;
}

.form-row {
    display: flex;
    gap: 20px;
    margin-bottom: 15px;
}

.form-field {
    width: 100%;
}

.form-field label {
    display: block;
    margin-bottom: 6px;
    font-size: 14px;
    color: var(--ink);
    font-weight: 500;
}

.form-row input,
.form-row textarea {
    width: 100%;
    padding: 12px;
    border: 1px solid rgba(0, 0, 0, 0.114);
    border-radius: 4px;
    background-color: var(--bg);
    color: var(--ink);
    font-family: "Roboto", Arial, Helvetica, sans-serif;
    font-size: 15px;
}

.form-row input:focus,
.form-row textarea:focus {
    outline: none;
    border-color: var(--primary);
    box-shadow: 0 0 0 2px rgba(5, 175, 242, 0.15);
}

.form-row textarea {
    min-height: 100px;
    resize: vertical;
}

.checkbox-group {
    margin: 15px 0;
}

.checkbox-group label {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    font-size: 14px;
    margin-bottom: 10px;
    color: var(--paragraph);
    line-height: 1.6;
}

.checkbox-group input[type="checkbox"] {
    margin-top: 2px;
    flex-shrink: 0;
}

.privacy-policy {
    display: inline-block;
    margin-bottom: 15px;
    text-decoration: underline;
    color: var(--label);
}

.privacy-policy:hover {
    color: var(--primary);
}

.form-actions {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 16px;
    margin-top: 15px;
    flex-wrap: wrap;
}

.submit-btn {
    background-color: var(--bg);
    padding: 12px 25px;
    cursor: pointer;
    transition: 0.3s;
}

.submit-btn:hover {
    background-color: var(--primary);
    color: var(--bg);
}

.form-right {
    margin-top: 70px;
    flex: 1 1 30%;
    min-width: 0;
}

.office-info {
    margin-bottom: 20px;
}

.office-info h3 {
    font-size: clamp(22px, 2vw, 26px);
    color: var(--label);
    margin-bottom: 6px;
}

.office-info strong {
    display: block;
    margin: 5px 0;
    color: var(--heading);
}

.office-info address {
    font-style: normal;
    line-height: 1.6;
    color: var(--paragraph);
}

.office-info a {
    color: inherit;
    text-decoration: none;
}

.office-info a:hover {
    color: var(--primary);
}

/* Global Presence */
.global-presence {
    box-shadow: rgba(9, 30, 66, 0.25) 0px 4px 8px -2px,
        rgba(9, 30, 66, 0.08) 0px 0px 0px 1px;
    border-radius: 20px;
    padding: 50px;
    max-width: 90%;
    margin: 40px auto;
    background: var(--bg);
    display: flex;
    flex-wrap: wrap;
    flex-direction: column;
    align-items: flex-start;
    gap: 14px;
}

.global-presence h3 {
    font-weight: 700;
    margin-right: 10px;
    flex: 0 0 auto;
}

/* Accordion */
.accordion-item {
    border: 1px solid var(--divider);
    border-radius: 6px;
    overflow: hidden;
    margin-bottom: 10px;
    margin-right: 0;
    flex: 0 0 auto;
    min-width: 70%;
    background: var(--bg);
}

.accordion-btn {
    width: 100%;
    text-align: left;
    padding: 16px 44px 16px 20px;
    font-size: 16px;
    background: var(--bg);
    border: none;
    cursor: pointer;
    position: relative;
    font-weight: 500;
    border-bottom: 1px solid rgba(0, 0, 0, 0.182);
    color: var(--ink);
}

.accordion-btn::after {
    content: '⌄';
    position: absolute;
    right: 20px;
    top: 50%;
    transform: translateY(-50%) rotate(0deg);
    font-size: 18px;
    transition: transform 0.2s ease;
}

.accordion-btn.active::after {
    transform: translateY(-50%) rotate(180deg);
}


.accordion-content address {
    font-style: normal;
    line-height: 1.6;
    margin: 15px;
    color: var(--paragraph);
}

.accordion-content a {
    color: inherit;
    text-decoration: none;
}

.accordion-content a:hover {
    color: var(--primary);
}


/* ---------- Leadership Page ---------- */

/* ================= LEADERSHIP TEAM SECTION ================= */
.leadership-team-section {
    padding: 48px 20px;
    background: var(--bg);
}

.leadership-team-container {
    max-width: 1240px;
    margin: 0 auto;
}

.leadership-team-header {
    max-width: 760px;
    margin: 0 auto 28px;
    text-align: center;
}

.leadership-team-desc {
    color: var(--paragraph);
    font-size: 16px;
    line-height: 1.75;
    margin: 0;
}

.leadership-team-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 24px;
}

.leadership-team-card {
    background: var(--bg);
    border: 1px solid var(--divider);
    border-radius: 22px;
    padding: 22px 18px 18px;
    box-shadow: var(--shadow-soft);
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    min-width: 0;
    transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
}

.leadership-team-card:hover {
    transform: translateY(-4px);
    border-color: rgba(5, 175, 242, 0.22);
    box-shadow: 0 18px 38px rgba(15, 23, 42, 0.10);
}

.leadership-team-avatar {
    width: 132px;
    height: 132px;
    border-radius: 50%;
    overflow: hidden;
    background: var(--section-alt);
    margin-bottom: 16px;
    flex-shrink: 0;
    border: 1px solid var(--divider);
}

.leadership-team-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.leadership-team-meta {
    display: flex;
    flex-direction: column;
    gap: 6px;
    width: 100%;
}

.leadership-team-meta a {
    text-decoration: none;
    color: inherit;
}

.leadership-team-name {
    margin: 0;
    color: var(--ink);
    font-size: 20px;
    font-weight: 600;
    line-height: 1.3;
    word-break: break-word;
}

.leadership-team-role {
    margin: 0;
    color: var(--paragraph);
    font-size: 14px;
}

.leadership-team-social {
    list-style: none;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 0;
    /* margin: 16px 0 0; */
}

.leadership-team-social li {
    margin: 0;
    padding: 0;
}

.leadership-team-iconlink {
    width: 40px;
    height: 40px;
    border: 1px solid var(--divider);
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: var(--heading);
    background: var(--bg);
    transition: all 0.25s ease;
}

.leadership-team-iconlink:hover {
    background: var(--primary);
    border-color: var(--primary);
    color: var(--bg);
}

.leadership-team-icon {
    width: 18px;
    height: 18px;
    fill: currentColor;
    display: block;
}



/* ========== AI SUITE =========== */
.aurora-section {
    position: relative;
    min-height: 85vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(180deg, var(--bg) 0%, var(--section-alt) 100%);
    overflow: hidden;
    isolation: isolate;
    padding: 110px 0 80px;
}

/* Aurora background layer */
.aurora-overlay {
    position: absolute;
    inset: 0;
    overflow: hidden;
    pointer-events: none;
}

/* Stronger aurora colors */
.aurora-bg {
    position: absolute;
    inset: -20px;
    opacity: 0.5;
    filter: blur(22px);
    background-image:
        repeating-linear-gradient(100deg,
            rgba(255, 255, 255, 0.88) 0%,
            rgba(255, 255, 255, 0.88) 6%,
            transparent 9%,
            transparent 12%,
            rgba(255, 255, 255, 0.88) 16%),
        repeating-linear-gradient(100deg,
            #d5e8fe 10%,
            #b2d1f3 18%,
            #8cc0f1 25%,
            #85bdf1 32%,
            #a9c7e2 40%,
            #599ee8 48%);
    background-size: 300%, 200%;
    background-position: 30% 30%, 50% 50%;
    animation: aurora 55s linear infinite;
    mask-image: radial-gradient(ellipse at 100% 0%, black 15%, transparent 72%);
    -webkit-mask-image: radial-gradient(ellipse at 100% 0%, black 15%, transparent 72%);
    will-change: background-position;
}

/* second animated layer for richer glow */
.aurora-bg::after {
    content: "";
    position: absolute;
    inset: 0;
    background-image:
        repeating-linear-gradient(100deg,
            #05aff2 12%,
            #3b82f6 18%,
            #60a5fa 24%,
            #0ea5e9 30%,
            rgba(242, 101, 34, 0.28) 38%);
    background-size: 220% 120%;
    animation: aurora 60s linear infinite;
    mix-blend-mode: screen;
    opacity: 0.9;
}

/* Content */
.aurora-content {
    position: relative;
    z-index: 2;
    width: min(var(--max), calc(100% - 40px));
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 15px;
    padding: 40px 20px;
    text-align: center;
}

.aurora-content h1 {
    font-size: clamp(48px, 3vw, 72px);
    line-height: 1.2;
    max-width: 1100px;
    margin: 0;
}

.aurora-content h2 {
    max-width: 950px;
}

.aurora-content p {
    max-width: 950px;
    margin: 0 auto;
}

.aurora-btns {
    display: flex;
    gap: 15px;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    margin-top: 8px;
}

/* Aurora animation */
@keyframes aurora {
    from {
        background-position: 50% 50%, 50% 50%;
    }

    to {
        background-position: 350% 50%, 350% 50%;
    }
}

/* Fade-up animation */
.reveal {
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

.reveal.show {
    opacity: 1;
    transform: translateY(0);
}



.ai-interaction {
    padding: 60px 20px;
    background-color: var(--bg);
    border-bottom: 2px solid rgba(0, 0, 0, 0.05);
}

.ai-interaction p {
    width: 1200px;
    color: var(--label);
    text-align: center;
}

.ai-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
    width: 100%;
    max-width: 1200px;
}

.ai-card {
    box-shadow: rgba(60, 64, 67, 0.3) 0px 1px 2px 0px, rgba(60, 64, 67, 0.15) 0px 1px 3px 1px;
    border-radius: 10px;
    padding: 20px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: center;
    height: 100%;
    gap: 10px;
}

.ai-card img {
    height: 25px;
    width: max-content;

}

.ai-card h3 {
    margin: 12px 0 8px;
    /* margin-bottom: 10px; */
    font-weight: 700;
    color: var(--label);
}

.ai-card h3 span {
    color: var(--ble);
}

.ai-card p {
    flex-grow: 1;
    color: var(--label);
    font-size: 14px;
    width: 100%;
    max-width: 100%;
    word-wrap: break-word;
    overflow-wrap: break-word;
    white-space: normal;
}

/* Copilot Card */
.ai-card-copilot {
    background: linear-gradient(145deg, #ffffff, #f4f9ff);
    border: 1px solid rgba(0, 164, 239, 0.25);
    position: relative;
    overflow: hidden;
}

.ai-card-copilot::before {
    content: "";
    position: absolute;
    top: -40px;
    right: -40px;
    width: 120px;
    height: 120px;
    background: radial-gradient(circle, rgba(0, 164, 239, 0.25), transparent 70%);
}

.ai-title-copilot {
    color: var(--ble);
}

.ai-text-copilot {
    text-align: center;
}

.ai-btn-copilot {
    background: linear-gradient(90deg, var(--primary) var(--ble));
    color: var(--bg);
    border: none;
}

.ai-btn-copilot:hover {
    background: linear-gradient(90deg var(--ble), var(--primary));
}

/* Gemini Card */
.ai-card-gemini {
    position: relative;
    overflow: hidden;
    padding: 28px 24px;
    background: linear-gradient(145deg, var(--bg) 0%, var(--divider) 100%);
    border: 1px solid rgba(123, 92, 255, 0.16);
}

.ai-card-gemini::before {
    content: "";
    position: absolute;
    top: -40px;
    right: -40px;
    width: 120px;
    height: 120px;
    background: radial-gradient(circle, rgba(123, 92, 255, 0.22) 0%, rgba(123, 92, 255, 0) 70%);
}

.ai-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 15px;
}

.ai-card-badge-gemini {
    display: inline-block;
    font-size: 12px;
    font-weight: 600;
    color: #6b4dff;
    background: rgba(123, 92, 255, 0.10);
    border: 1px solid rgba(123, 92, 255, 0.16);
    padding: 6px 12px;
    border-radius: 999px;
    margin-bottom: 18px;
    z-index: 1;
}

.ai-card-logo-gemini {
    width: 56px;
    height: 56px;
    border-radius: 16px;
    background: linear-gradient(135deg, #ffffff 0%, #f3eeff 100%);
    border: 1px solid rgba(123, 92, 255, 0.14);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 18px;
    box-shadow: 0 6px 16px rgba(123, 92, 255, 0.10);
    z-index: 1;
}

.ai-text-gemini {
    color: var(--label);
    font-size: 15px;
    line-height: 1.7;
    z-index: 1;
    flex-grow: 1;
}

.built-differently {
    padding: 60px 20px 0px 20px;
    background-color: var(--bg);
}

#built-differently-heading {
    padding-bottom: 20px;
}

.built-differently h3 {
    width: 100%;
    text-align: left;
    margin-bottom: 30px;
}

.container .highlight-green {
    color: #A0B524;
}


.content-wrapper {
    display: flex;
    gap: 40px;
    flex-wrap: wrap;
}

.accordion-section {
    flex: 1;
    min-width: 300px;
}

.built-differently .content-wrapper {
    display: grid;
    grid-template-columns: 1fr 500px;
    gap: 40px;
    align-items: start;
    position: relative;
}

/* Image section stays fixed height */
.built-differently .image-section {
    width: 100%;
    height: 280px;
    border-radius: 12px;
    overflow: hidden;
    background: url(LTimg/other_imgs/DE_CTA.webp) center/cover no-repeat;
    flex-shrink: 0;
    position: relative;
    box-shadow: rgba(0, 0, 0, 0.25) 0px 0.0625em 0.0625em, rgba(0, 0, 0, 0.25) 0px 0.125em 0.5em, rgba(255, 255, 255, 0.1) 0px 0px 0px 1px inset;
}

.image-placeholder {
    width: 100%;
    height: 300px;
    border: 1px solid rgba(0, 0, 0, 0.1);
    border-radius: 25px;
    background-color: var(--bg);
}

.accordion-item {
    border: 1px solid var(--divider);
    margin-bottom: 10px;
    border-radius: 4px;
    overflow: hidden;
}

.accordion-btn {
    width: 100%;
    background: var(--bg);
    border: none;
    padding: 15px;
    text-align: left;
    cursor: pointer;
    position: relative;
    font-weight: 500;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.toggle-icon {
    font-size: 20px;
    font-weight: bold;
}

.accordion-content {
    background-color: var(--bg);
    font-size: 14px;
    color: var(--label);
    line-height: 1.6;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
    border-top: 1px solid rgba(0, 0, 0, 0.137);
}

.accordion-content p {
    margin: 10px 15px;
}

.accordion-item.active .accordion-content {
    border-top: 2px solid rgba(0, 0, 0, 0.05);
    max-height: 150px;
    padding: 15px;
}

.accordion-item.active .toggle-icon {
    transform: rotate(45deg);
}

/* Bottom color line */
.bottom-line {
    display: flex;
    width: 100%;
    height: 6px;
    margin-top: 20px;
}

.line-grey {
    background-color: var(--label);
    width: 33%;
}

.line-orange {
    background-color: var(--orange);
    width: 33%;
}

.line-blue {
    background-color: var(--primary);
    width: 33%;
}

/* ================= INDUSTRIES PAGE =================== */
.industry-grid {
    display: flex;
    flex-direction: column;
    gap: 50px;
}

.industry-sector-section {
    background: var(--bg);
}

.industry-sector-title-wrap {
    max-width: 860px;
}

.industry-sector-subtext {
    max-width: 760px;
    margin-top: 14px;
}

.industry-sector-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 24px;
    align-items: stretch;
}

.industry-sector-card {
    background: var(--bg);
    border: 1px solid var(--divider);
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: var(--shadow-soft);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.industry-sector-card:hover {
    box-shadow: 0 18px 38px rgba(15, 23, 42, 0.12);
}

.industry-sector-image-wrap {
    overflow: hidden;
    background: var(--surface);
    aspect-ratio: 16 / 11;
}

.industry-sector-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.45s ease;
}

.industry-sector-card:hover .industry-sector-image {
    transform: translateX(10px) scale(1.02);
}

.industry-sector-content {
    padding: 22px 22px 24px;
    display: flex;
    flex-direction: column;
    min-height: 230px;
}

.industry-sector-content h3 {
    font-size: clamp(22px, 2.4vw, 24px);

}

.industry-sector-content h4 {
    margin-bottom: 12px;
    color: var(--heading);
}

.industry-sector-content p {
    margin-bottom: 18px;
    flex-grow: 1;
}

.industry-sector-content .cmn-btn {
    align-self: flex-start;
    margin-top: auto;
    min-height: 44px;
    padding: 10px 18px;
    text-align: center;
    display: flex;
    justify-content: center;
    align-items: center;
    font-weight: 300;
}

/* ===== NEWSROOM SECTION ===== */
.newsroom-section {
    background: var(--bg);
}

.newsroom-title-wrap {
    max-width: 760px;
}

.newsroom-subtext {
    margin-top: 12px;
    max-width: 680px;
}

.newsroom-head-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 24px;
    align-items: start;
}

.newsroom-grid {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.newsroom-card {
    background: var(--bg);
    border: 1px solid var(--divider);
    border-radius: 22px;
    overflow: hidden;
    box-shadow: var(--shadow-soft);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    min-width: 0;
}

.newsroom-card:hover {
    box-shadow: 0 18px 38px rgba(15, 23, 42, 0.12);
}

.newsroom-card-link {
    display: flex;
    flex-direction: column;
    height: 100%;
}

.newsroom-image-wrap {
    overflow: hidden;
    background: var(--surface);
    aspect-ratio: 17 / 9;
}

.newsroom-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.45s ease;
}

.newsroom-card:hover .newsroom-image {
    transform: scale(1.04);
}

.newsroom-content {
    padding: 18px 18px 20px;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.newsroom-label {
    display: inline-flex;
    align-self: flex-start;
    padding: 6px 10px;
    border-radius: 999px;
    background: rgba(5, 175, 242, 0.085);
    color: var(--primary);
    font-size: 8px;
    letter-spacing: 0.04em;
}

.newsroom-content h4 {
    margin: 0;
    color: var(--heading);
    line-height: 1.35;
}

.newsroom-date {
    margin: 0;
    color: var(--label);
    font-size: 12px;
    line-height: 1.5;
}

.newsroom-card.is-hidden {
    display: none;
}

.newsroom-toggle-wrap {
    display: flex;
    justify-content: center;
    margin-top: 24px;
}

.newsroom-toggle-btn {
    min-width: 150px;
    text-align: center;
}

/* ================= CAREERS SEARCH SECTION ================= */

.visually-hidden {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

.careers-search-section {
    background: var(--bg);
    padding-top: 20px;
    padding-bottom: 60px;
}

.careers-search-wrap {
    background: var(--section-alt);
    border: 1px solid var(--divider);
    border-radius: 999px;
    box-shadow: var(--shadow-soft);
}

.careers-search-bar {
    display: grid;
    justify-content: center;
    align-items: center;
    grid-template-columns: 1.4fr 0.9fr 0.9fr 0.9fr auto;
    min-height: 82px;
}

.career-search-field {
    position: relative;
    min-height: 56px;
    display: flex;
    align-items: center;
    padding: 0 26px;
}

.career-search-field:not(:last-child) {
    border-right: 1px solid var(--divider);
}

.career-search-keyword {
    padding-left: 18px;
    gap: 14px;
}

.career-search-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: #7b87b4;
    flex-shrink: 0;
}

.career-search-field input {
    width: 100%;
    border: 0;
    outline: 0;
    background: transparent;
    color: var(--ink);
    font-size: 17px;
    font-weight: 400;
    font-family: inherit;
}

.career-search-field input::placeholder {
    color: #7b87b4;
    opacity: 1;
}

.career-filter-toggle {
    width: 100%;
    border: 0;
    outline: 0;
    background: transparent;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    cursor: pointer;
    font-size: 17px;
    font-family: inherit;
    color: #7b87b4;
    padding: 0;
}

.career-filter-toggle svg {
    flex-shrink: 0;
}

.career-search-action {
    display: flex;
    justify-content: flex-end;
    padding-left: 18px;
}

.career-search-btn {
    border: 0;
    outline: 0;
    background: #2f5eea;
    color: #fff;
    font-size: 17px;
    font-weight: 600;
    font-family: inherit;
    padding: 16px 40px;
    border-radius: 999px;
    cursor: pointer;
    transition: transform 0.3s ease, background-color 0.3s ease;
    min-width: 104px;
    margin-right: 20px;
}

.career-search-btn:hover {
    background: #214fda;
    transform: translateY(-1px);
}

.career-filter-dropdown {
    position: absolute;
    top: calc(100% + 14px);
    left: 0;
    min-width: 230px;
    background: var(--bg);
    border: 1px solid var(--divider);
    border-radius: 20px;
    box-shadow: 0 20px 45px rgba(15, 23, 42, 0.12);
    padding: 10px;
    display: none;
    z-index: 20;
}

.career-filter-dropdown.show {
    display: block;
}

.career-option {
    width: 100%;
    text-align: left;
    border: 0;
    background: transparent;
    color: var(--ink);
    font-size: 15px;
    font-family: inherit;
    padding: 12px 14px;
    border-radius: 12px;
    cursor: pointer;
    transition: background-color 0.25s ease, color 0.25s ease;
}

.career-option:hover {
    background: var(--surface);
    color: var(--heading);
}

.career-selected-filters {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    /* padding: 12px 8px 0; */
}

.career-filter-chip {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: #edf6fe;
    color: var(--heading);
    border: 1px solid #ccecff;
    border-radius: 999px;
    padding: 8px 14px;
    font-size: 14px;
    font-weight: 500;
}

.career-filter-chip button {
    border: 0;
    background: transparent;
    color: inherit;
    cursor: pointer;
    font-size: 14px;
    line-height: 1;
    padding: 0;
}

.career-results-wrap {
    padding-top: 36px;
}

.career-results-head {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 16px;
    margin-bottom: 22px;
}

.career-results-head p {
    line-height: 1.4;
}

.career-jobs-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 24px;
}

.career-job-card {
    background: var(--bg);
    border: 1px solid var(--divider);
    border-radius: 24px;
    padding: 24px;
    box-shadow: var(--shadow-soft);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.career-job-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 18px 40px rgba(15, 23, 42, 0.10);
}

.career-job-card h4 {
    margin-bottom: 8px;
    color: var(--heading);
}

.career-job-meta {
    font-size: 15px;
    color: var(--label);
    margin-bottom: 12px;
    line-height: 1.5;
}

.career-job-desc {
    font-size: 15px;
    line-height: 1.7;
    margin-bottom: 16px;
}

.career-job-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.career-job-tags span {
    display: inline-flex;
    align-items: center;
    padding: 8px 12px;
    border-radius: 999px;
    background: var(--surface);
    color: var(--heading);
    font-size: 13px;
    font-weight: 500;
}

.career-no-results {
    padding: 24px 0 0;
    text-align: center;
}

/* ====================== ABOUT US ======================= */
.quote-wrap {
    background: var(--bg);
    border-bottom: 1px solid var(--divider);
}

.quote-block {
    padding: 20px 0 20px;
    text-align: center;
}

.quote {
    max-width: 1280px;
    margin: 0 auto 18px;
    color: var(--ink);
    letter-spacing: -0.03em;
}

.quote p {
    font-size: clamp(22px, 1.5vw, 26px);
    line-height: 1.3;
    font-weight: 200;

}

.quote-author {
    color: var(--label);
    font-size: 18px;
    font-weight: 500;
}


.intro-copy {
    display: grid;
    gap: 18px;
}

.intro-card {
    display: grid;
    margin-top: 25px;
    gap: 18px;
    padding: 28px;
    border: 1px solid var(--divider);
    border-radius: 26px;
    background: linear-gradient(180deg, var(--bg) 0%, var(--section-alt) 100%);
    box-shadow: var(--shadow-soft);
}

.intro-card h3,
.strip-card h4,
.capability-card h3 {
    color: var(--ink);
    letter-spacing: -0.02em;
}

.intro-list {
    display: grid;
    gap: 14px;
}

.intro-list div {
    position: relative;
    padding-left: 18px;
    color: var(--paragraph);
    line-height: 1.65;
}

.intro-list div::before {
    content: "";
    position: absolute;
    top: 11px;
    left: 0;
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--primary);
}

/* ========== LAGOZON IDENTITY SECTION ========== */
.lz-identity-section {
    background: var(--bg);
    padding-top: 20px;
}

/* Container */
.lz-identity-container {
    width: min(1240px, calc(100% - 40px));
    margin: 0 auto;
}

/* Grid */
.lz-identity-grid {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 32px;
    align-items: start;
    padding-bottom: 32px;
    border-bottom: 1px solid var(--divider);
}

/* Copy */
.lz-identity-copy {
    display: grid;
    gap: 18px;
}

.lz-identity-eyebrow {
    display: inline-block;
    padding: 7px 14px;
    border-radius: 999px;
    border: 1px solid rgba(5, 175, 242, 0.18);
    background: rgba(5, 175, 242, 0.06);
    color: var(--primary);
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    width: max-content;
}

.lz-identity-copy h2 {
    color: var(--heading);
    line-height: 1.05;
    letter-spacing: -0.04em;
    text-align: center;
}

.lz-identity-copy p {
    color: var(--paragraph);
    /* font-size: 17px; */
    line-height: 1.85;
}

/* Card */
.lz-identity-card {
    display: grid;
    gap: 18px;
    margin-top: 25px;
    padding: 28px;
    border-radius: 26px;
    border: 1px solid var(--divider);
    background: linear-gradient(180deg, var(--bg) 0%, var(--section-alt) 100%);
    box-shadow: var(--shadow-soft);
}

.lz-identity-card h3 {
    color: var(--ink);
}

/* Points */
.lz-identity-points {
    display: grid;
    gap: 14px;
}

.lz-identity-points div {
    position: relative;
    padding-left: 18px;
    color: var(--paragraph);
    line-height: 1.7;
}

.lz-identity-points div::before {
    content: "";
    position: absolute;
    top: 11px;
    left: 0;
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--primary);
}

/* Showcase */
.lz-identity-showcase {
    display: grid;
    grid-template-columns: 360px 1fr;
    gap: 32px;
    align-items: center;
    padding: 40px 0;
    border-bottom: 1px solid var(--divider);
}

.lz-identity-showcase-card {
    position: relative;
    overflow: hidden;
    min-height: 220px;
    padding: 26px;
    border-radius: 24px;
    background: linear-gradient(135deg, #1f2937 0%, #17416f 100%);
    color: #ffffff;
    box-shadow: var(--shadow-soft);
}

.lz-identity-showcase-card::after {
    content: "";
    position: absolute;
    top: 0;
    right: 0;
    width: 72px;
    height: 100%;
    background: linear-gradient(180deg, var(--primary), var(--orange));
}

.lz-identity-mini {
    margin-bottom: 26px;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    opacity: 0.9;
}

.lz-identity-showcase-card h3 {
    font-size: clamp(34px, 4vw, 44px);
    line-height: 0.95;
    color: var(--bg);
}

/* Showcase text */
.lz-identity-showcase-text {
    display: grid;
    gap: 18px;
}

.lz-identity-showcase-text p {
    color: var(--paragraph);
    line-height: 1.85;
}

/* Link */
.lz-identity-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--primary);
    font-weight: 600;
    transition: all 0.3s ease;
}

.lz-identity-link::after {
    content: "→";
}

.lz-identity-link:hover {
    color: var(--primary-hover);
    transform: translateX(3px);
}


/* ===================== AGENT SECTION ======================= */
/* ---------- AGENT.AI — Hero | Lagozon + Microsoft Copilot ---------- */
.agent-hero {
    position: relative;
    overflow: hidden;
    background: var(--bg);
    height: 88vh;
    display: grid;
    place-items: center;
}

.agent-hero-inner {
    position: relative;
    width: min(1120px, 92vw);
    margin-inline: auto;
    padding: clamp(40px, 6vw, 80px) clamp(16px, 4vw, 24px);
    display: flex;
    flex-direction: column;
    gap: clamp(14px, 2.4vw, 24px);
    z-index: 2;
}

.agent-hero-bg {
    position: absolute;
    inset: 0;
    z-index: 0;
    background:
        radial-gradient(1100px 560px at 84% 10%, rgba(0, 120, 212, 0.20) 0%, transparent 58%),
        radial-gradient(900px 520px at 42% 8%, rgba(80, 156, 255, 0.16) 0%, transparent 60%),
        radial-gradient(780px 420px at 10% 24%, rgba(80, 200, 255, 0.14) 0%, transparent 58%),
        linear-gradient(180deg, #f5faff 0%, #ffffff 62%);
}

.agent-blob {
    position: absolute;
    width: 60vmax;
    height: 60vmax;
    border-radius: 50%;
    filter: blur(60px);
    opacity: 0.24;
    transform: translate(-50%, -50%) scale(1);
    animation: agent-float 12s ease-in-out infinite;
    pointer-events: none;
    z-index: 1;
}

.agent-blob-a {
    left: 18%;
    top: 24%;
    background: radial-gradient(closest-side,
            rgba(80, 156, 255, 0.72) 0%,
            rgba(80, 156, 255, 0.24) 40%,
            transparent 72%);
    animation-delay: 0.2s;
}

.agent-blob-b {
    right: -10%;
    top: 10%;
    background: radial-gradient(closest-side,
            rgba(0, 120, 212, 0.78) 0%,
            rgba(80, 200, 255, 0.22) 42%,
            transparent 72%);
    animation-duration: 14s;
}

@keyframes agent-float {

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

    50% {
        transform: translate(-45%, -48%) scale(1.06);
    }
}

.agent-grain {
    position: absolute;
    inset: 0;
    pointer-events: none;
    opacity: 0.05;
    background-image:
        repeating-linear-gradient(45deg,
            rgba(0, 0, 0, 0.018) 0px,
            rgba(0, 0, 0, 0.018) 1px,
            transparent 1px,
            transparent 4px);
}

.agent-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 8px 14px;
    border-radius: 999px;
    border: 1px solid rgba(0, 120, 212, 0.16);
    background: rgba(255, 255, 255, 0.80);
    backdrop-filter: saturate(120%) blur(8px);
    width: fit-content;
    transform: translateY(-6px);
    box-shadow: 0 10px 30px rgba(0, 120, 212, 0.08);
}

.agent-badge-label {
    font: 600 10px/1 ui-sans-serif, system-ui, -apple-system;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: #0078d4;
    opacity: 0.95;
}

.agent-badge-dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: #50c8ff;
    opacity: 0.95;
}

.agent-badge-text {
    font: 400 12px/1 ui-sans-serif, system-ui, -apple-system;
    color: var(--ink);
    opacity: 0.82;
}

.agent-hero-title {
    width: max-content;
    color: var(--heading);
    font-weight: 700;
    letter-spacing: -0.01em;
    line-height: 1.06;
    font-size: clamp(34px, 6vw, 56px);
    margin: 0;
    transform: translateY(12px);
    isolation: isolate;
}

.agent-hero-desc {
    max-width: 65vw;
    color: var(--paragraph);
    font-weight: 400;
    line-height: 1.7;
    font-size: clamp(16px, 2.2vw, 18px);
    margin: 0;
    transform: translateY(10px);
}

.agent-hero-cta {
    display: flex;
    gap: 12px;
    padding-top: 6px;
    transform: translateY(8px);
}

.agent-hero-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 12px 18px;
    border-radius: var(--radius);
    border: 1px solid var(--border);
    font: 500 14px/1 ui-sans-serif, system-ui, -apple-system;
    text-decoration: none;
    transition: box-shadow 0.2s ease, background-color 0.2s ease, border-color 0.2s ease, transform 0.2s ease;
    color: var(--ink);
    background: var(--bg);
}

.agent-hero-btn:hover {
    transform: translateY(-1px);
    box-shadow: 0 8px 28px rgba(2, 6, 23, 0.08);
}

.agent-hero-btn-primary {
    color: #fff;
    background: linear-gradient(90deg, #0078d4 0%, #2899f5 52%, #50c8ff 100%);
    border-color: transparent;
    box-shadow: 0 12px 30px rgba(0, 120, 212, 0.18);
}

.agent-hero-btn-primary:hover {
    background: linear-gradient(90deg, #006cbe 0%, #1f8ae6 52%, #44bff6 100%);
}

.agent-hero-btn-ghost {
    background: rgba(255, 255, 255, 0.72);
    border-color: rgba(0, 120, 212, 0.16);
}

.agent-micro {
    display: flex;
    flex-wrap: wrap;
    gap: 18px 22px;
    margin: 8px 0 0 0;
    padding: 0;
    list-style: none;
    color: var(--label);
    font: 300 12px/1.4 ui-sans-serif, system-ui, -apple-system;
    transform: translateY(6px);
}

.agent-dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: #0078d4;
    display: inline-block;
    margin-right: 8px;
}

.agent-bottom-fade {
    position: absolute;
    inset-inline: 0;
    bottom: 0;
    height: 90px;
    background: linear-gradient(to top, rgba(255, 255, 255, 0.96), transparent);
    z-index: 1;
    pointer-events: none;
}


/* =============== GEMINI HERO SECTION ================ */
.gemini-hero-bg {
    position: absolute;
    inset: 0;
    z-index: 0;
    background:
        radial-gradient(1100px 560px at 82% 12%, rgba(71, 150, 227, 0.20) 0%, transparent 58%),
        radial-gradient(900px 520px at 46% 10%, rgba(145, 119, 199, 0.18) 0%, transparent 60%),
        radial-gradient(780px 420px at 8% 24%, rgba(202, 102, 115, 0.14) 0%, transparent 58%),
        linear-gradient(180deg, #f7f9fe 0%, #ffffff 62%);
}

.gemini-blob-a {
    left: 20%;
    top: 24%;
    background: radial-gradient(closest-side,
            rgba(145, 119, 199, 0.75) 0%,
            rgba(145, 119, 199, 0.26) 38%,
            transparent 72%);
    animation-delay: 0.2s;
}

.gemini-blob-b {
    right: -10%;
    top: 10%;
    background: radial-gradient(closest-side,
            rgba(71, 150, 227, 0.82) 0%,
            rgba(202, 102, 115, 0.22) 42%,
            transparent 72%);
    animation-duration: 14s;
}

.gemini-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 8px 14px;
    border-radius: 999px;
    border: 1px solid rgba(145, 119, 199, 0.24);
    background: rgba(255, 255, 255, 0.78);
    backdrop-filter: saturate(120%) blur(8px);
    width: fit-content;
    transform: translateY(-6px);
    box-shadow: 0 10px 30px rgba(145, 119, 199, 0.08);
}

.gemini-badge-label {
    font: 600 10px/1 ui-sans-serif, system-ui, -apple-system;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: #9177c7;
    opacity: 0.95;
}

.gemini-badge-dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: #ca6673;
    opacity: 0.95;
}

.gemini-hero-btn-primary {
    color: #fff;
    background: linear-gradient(90deg, #4796e3 0%, #9177c7 52%, #ca6673 100%);
    border-color: transparent;
    box-shadow: 0 12px 30px rgba(145, 119, 199, 0.18);
}

.gemini-hero-btn-primary:hover {
    background: linear-gradient(90deg, #3c8ddd 0%, #866cc0 52%, #c55f6d 100%);
}

.gemini-grain {
    position: absolute;
    inset: 0;
    pointer-events: none;
    opacity: 0.06;

    background-image:
        repeating-linear-gradient(45deg,
            rgba(0, 0, 0, 0.02) 0px,
            rgba(0, 0, 0, 0.02) 1px,
            transparent 1px,
            transparent 4px);
}

/* ======== INTRODUCTION SECTION ========= */
.intro-section {
    display: flex;
    justify-content: center;
    padding: 48px 0;
    border-top: 1px solid var(--divider);
    border-bottom: 1px solid var(--divider);
    text-align: center;
}

.intro-grid-container {
    margin: 0 auto;
}

.intro-grid {
    display: flex;
    flex-direction: column;
    /* KEY FIX */
    align-items: center;
    gap: 16px;
}

/* Heading */
.intro-grid h2 {
    margin: 0;
    color: var(--heading);
    line-height: 1.2;
}

/* Paragraph */
.intro-grid p {
    color: var(--paragraph);
    line-height: 1.8;
    margin: 0;
}

/* ---------- copilot.AI — Feature Section ---------- */
.copilot-feature-section {
    background-color: var(--surface);
    padding: clamp(20px, 3vw, 96px) 10px;
}

.copilot-feature-container {
    max-width: 1120px;
    margin: 0 auto;
}

.copilot-feature-title h3 {
    margin-bottom: 20px;
}

.copilot-feature-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 20px;
}

.copilot-feature-card {
    background-color: var(--bg);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 25px 25px;
    position: relative;
    transition: transform 0.25s ease, box-shadow 0.25s ease;
    min-width: 0;
}

.copilot-feature-card::after {
    content: "";
    position: absolute;
    left: 0;
    top: 28px;
    height: 26px;
    width: 3px;
    background: #d4d4d8;
    border-top-right-radius: 999px;
    border-bottom-right-radius: 999px;
    transition: height 0.25s ease, background 0.25s ease;
}

.copilot-feature-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 10px 20px rgba(2, 6, 23, 0.08);
}

.copilot-feature-card:hover::after {
    height: 36px;
    background: var(--primary);
}

.copilot-feature-icon {
    color: #6b7280;
    margin-bottom: 14px;
}

.copilot-feature-title {
    font-size: 1.125rem;
    font-weight: 700;
    color: var(--ink);
    transition: transform 0.2s ease;
    padding-bottom: 16px;
    margin: 0;
    line-height: 1.35;
}

.copilot-feature-card:hover .copilot-feature-title {
    transform: translateX(2px);
}

.copilot-feature-desc {
    font-size: 0.9375rem;
    color: var(--paragraph);
    line-height: 1.65;
    margin: 0;
}

.copilot-feature-card:focus-within {
    outline: 2px solid var(--primary);
    outline-offset: 2px;
}

.copilot-icon {
    color: var(--paragraph);
}

/* ========== ADVANTAGES SECTION ========== */
.advantage-section {
    background: linear-gradient(180deg, var(--bg) 0%, var(--section-alt) 100%);
}

.advantage-container {
    display: flex;
    flex-direction: column;
    gap: 34px;
}

.advantage-head {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 18px;
    padding-top: 6px;
}

.advantage-badge-wrap {
    display: inline-flex;
}

.advantage-badge {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 7px 14px;
    border-radius: 999px;
    background: rgba(5, 175, 242, 0.10);
    color: var(--primary);
    border: 1px solid rgba(5, 175, 242, 0.16);
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.03em;
    text-transform: uppercase;
}

.advantage-copy {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.advantage-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 28px 36px;
    align-items: start;
}

.advantage-item {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    width: 100%;
    padding: 10px 0;
    transition: transform 0.3s ease;
}

.advantage-item:hover {
    transform: translateY(-2px);
}

.advantage-icon {
    width: 30px;
    height: 30px;
    min-width: 30px;
    border-radius: 999px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-top: 2px;
    color: var(--primary);
    background: rgba(5, 175, 242, 0.08);
    border: 1px solid rgba(5, 175, 242, 0.14);
}

.advantage-text {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.advantage-text h4 {
    color: var(--ink);
    font-size: 17px;
    font-weight: 600;
    line-height: 1.35;
}

.advantage-text p {
    color: var(--paragraph);
    font-size: 14px;
    line-height: 1.75;
}

/* reveal animation */
.reveal-up {
    opacity: 0;
    transform: translateY(26px);
    transition: opacity 0.65s ease, transform 0.65s ease;
}

.reveal-up.is-visible {
    opacity: 1;
    transform: translateY(0);
}

/* =========== AGENTS CTA SECTION =============== */
.agent-cta-section {
    background: var(--bg);
    padding: 20px;
    text-align: center;
    color: var(--ink);
    border-bottom: 1px solid rgba(0, 0, 0, 0.093);
}

.agent-cta-container {
    max-width: 1080px;
    margin: 0 auto;
}

.agent-cta-subtext {
    color: var(--paragraph);
    margin-bottom: 12px;
    letter-spacing: 0.5px;
    font-size: 15px;
    line-height: 1.6;
}

.agent-cta-heading {
    font-size: clamp(28px, 4vw, 34px);
    font-weight: 700;
    color: var(--ink);
    margin-bottom: 16px;
    line-height: 1.4;
}

.agent-cta-heading span {
    color: var(--bk);
}

.agent-cursor {
    display: inline-block;
    color: var(--primary);
    font-weight: bold;
    animation: agent-blink 1s infinite;
}

@keyframes agent-blink {
    50% {
        opacity: 0;
    }
}

.agent-cta-description {
    color: var(--paragraph);
    line-height: 1.7;
    margin-bottom: 28px;
    /* font-size: 16px; */
}

.agent-cta-buttons {
    display: flex;
    justify-content: center;
    gap: 16px;
    flex-wrap: wrap;
}

.agent-btn {
    text-decoration: none;
    padding: 12px 28px;
    border-radius: var(--radius);
    font-weight: 600;
    transition: all 0.3s ease;
    font-size: clamp(14px, 1.2vw, 16px);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.agent-btn-primary {
    background-color: var(--primary);
    color: #fff;
    border: 2px solid transparent;
}

.agent-btn-primary:hover {
    background-color: var(--primary-hover);
}

.agent-btn-outline {
    background: var(--bg);
    border: 2px solid var(--secondary);
    color: var(--secondary);
}

.agent-btn-outline:hover {
    background: var(--secondary-hover);
    color: var(--bg);
}



/* ===================== SUB-INDUSTRY ============================ */
.sub-ind-hero {
    background: linear-gradient(180deg, var(--bg) 0%, var(--section-alt) 100%);
    padding: 10px 0 60px;
    min-height: 85vh;
    display: flex;
    align-items: center;
}

.sub-ind-hero-container {
    padding-top: 30px;
    padding-bottom: 30px;
}

.sub-ind-hero-layout {
    display: grid;
    grid-template-columns: 1.05fr 0.95fr;
    gap: 40px;
    align-items: center;
}

.sub-ind-hero-content {
    max-width: 900px;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    gap: 20px;
}

.sub-ind-hero-content h1 {
    margin: 0;
    max-width: 780px;
    font-size: clamp(38px, 5vw, 55px);
    line-height: 1.1;
    font-weight: 600;
    color: var(--heading);
    letter-spacing: -0.05em;
}

.sub-ind-hero-content p {
    max-width: 760px;
    font-size: 18px;
    line-height: 1.75;
    color: var(--paragraph);
}

.sub-ind-hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
    padding-top: 8px;
}

.sub-ind-btn-primary,
.sub-ind-btn-outline {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 48px;
    padding: 12px 22px;
    border-radius: 12px;
    font-size: 15px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.sub-ind-btn-primary {
    background: var(--primary);
    color: var(--bg);
    border: 1px solid var(--primary);
    box-shadow: 0 12px 24px rgba(5, 175, 242, 0.18);
}

.sub-ind-btn-primary:hover {
    background: var(--primary-hover);
    border-color: var(--primary-hover);
    transform: translateY(-2px);
}

.sub-ind-btn-outline {
    background: var(--bg);
    color: var(--heading);
    border: 1px solid var(--border);
    box-shadow: var(--shadow-soft);
}

.sub-ind-btn-outline:hover {
    transform: translateY(-2px);
    border-color: var(--primary);
    color: var(--primary);
}

/* ===== Right Side Image Layout ===== */
.sub-ind-hero-visual {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 22px;
    align-items: stretch;
}

.sub-ind-hero-visual-left {
    display: grid;
    grid-template-rows: 1fr 1fr;
    gap: 22px;
}

.sub-ind-hero-visual-right {
    display: flex;
}

.sub-ind-hero-img-card {
    overflow: hidden;
    border-radius: 16px;
    background: var(--surface);
    border: 1px solid var(--divider);
    box-shadow: var(--shadow-soft);
    height: 10%;
}

.sub-ind-hero-img-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.45s ease;
}

.sub-ind-hero-img-card:hover img {
    transform: scale(1.04);
}

.sub-ind-hero-img-top,
.sub-ind-hero-img-bottom {
    min-height: 260px;
}

.sub-ind-hero-img-tall {
    min-height: 542px;
    width: 100%;
}

/* ================= OVERVIEW SECTION ================= */
.sub-ind-overview {
    padding: 60px 0;
    background: var(--bg);
}

.sub-ind-overview .container {
    max-width: 980px;
}

.sub-ind-overview h2 {
    margin-bottom: 16px;
}

.sub-ind-overview p {
    max-width: 900px;
}

/* ================= SOLUTIONS SECTION ================= */
.sub-ind-solutions {
    padding: 60px 0;
    background: linear-gradient(180deg, var(--bg) 0%, var(--section-alt) 100%);
}

.sub-ind-solutions h2 {
    margin-bottom: 28px;
}

.sub-ind-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 24px;
}

.sub-ind-card {
    padding: 24px;
    background: var(--bg);
    border: 1px solid var(--divider);
    border-radius: 20px;
    box-shadow: var(--shadow-soft);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.sub-ind-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 18px 40px rgba(15, 23, 42, 0.10);
}

.sub-ind-card h3 {
    margin-bottom: 10px;
    color: var(--heading);
}

.sub-ind-card p {
    color: var(--paragraph);
    font-size: 15px;
    line-height: 1.75;
}

/* ================= CTA SECTION ================= */
.sub-ind-cta {
    padding: 70px 0;
    background: var(--heading);
    text-align: center;
}

.sub-ind-cta-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
}

.sub-ind-cta h2 {
    color: var(--bg);
    max-width: 760px;
}

.sub-ind-cta .sub-ind-btn-primary {
    background: var(--orange);
    border-color: var(--orange);
    box-shadow: 0 12px 24px rgba(242, 101, 34, 0.22);
}

.sub-ind-cta .sub-ind-btn-primary:hover {
    background: var(--secondary-hover);
    border-color: var(--secondary-hover);
}

/* ================= OVERVIEW SECTION ================= */
.sub-ind-overview {
    padding: 60px 0;
    background: var(--bg);
}

.sub-ind-overview .container {
    max-width: 980px;
}

.sub-ind-overview h2 {
    margin-bottom: 16px;
}

.sub-ind-overview p {
    max-width: 900px;
}

/* ================= SOLUTIONS SECTION ================= */
.sub-ind-solutions {
    padding: 60px 0;
    background: linear-gradient(180deg, var(--bg) 0%, var(--section-alt) 100%);
}

.sub-ind-solutions h2 {
    margin-bottom: 28px;
}

.sub-ind-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 24px;
}

.sub-ind-card {
    padding: 24px;
    background: var(--bg);
    border: 1px solid var(--divider);
    border-radius: 20px;
    box-shadow: var(--shadow-soft);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.sub-ind-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 18px 40px rgba(15, 23, 42, 0.10);
}

.sub-ind-card h3 {
    margin-bottom: 10px;
    color: var(--heading);
}

.sub-ind-card p {
    color: var(--paragraph);
    font-size: 15px;
    line-height: 1.75;
}

/* ================= AI CONSULTATION SECTION ================= */
.sub-ind-consult {
    padding: 70px 0;
    background: var(--bg);
}

.sub-ind-consult-wrap {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
    align-items: stretch;
}

.sub-ind-consult-copy {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.sub-ind-consult-copy h2 {
    margin-bottom: 4px;
}

.sub-ind-consult-copy p {
    max-width: 640px;
}

.sub-ind-consult-points {
    margin: 8px 0 0;
    padding-left: 20px;
    color: var(--paragraph);
    line-height: 1.9;
}

.sub-ind-consult-box {
    background: linear-gradient(180deg, var(--bg) 0%, var(--section-alt) 100%);
    border: 1px solid var(--divider);
    border-radius: 20px;
    box-shadow: var(--shadow-soft);
    padding: 24px;
}

.sub-ind-consult-form {
    display: flex;
    flex-direction: column;
    gap: 14px;
    height: 100%;
}

.sub-ind-form-label {
    font-size: 15px;
    font-weight: 600;
    color: var(--heading);
}

.sub-ind-consult-form textarea {
    width: 100%;
    min-height: 180px;
    resize: vertical;
    border: 1px solid var(--border);
    border-radius: 16px;
    padding: 16px;
    font-family: inherit;
    font-size: 15px;
    line-height: 1.7;
    color: var(--ink);
    background: var(--bg);
    outline: none;
    transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

.sub-ind-consult-form textarea:focus {
    border-color: var(--primary);
    box-shadow: 0 0 0 4px rgba(5, 175, 242, 0.12);
}

.sub-ind-consult-form textarea::placeholder {
    color: var(--label);
}

.sub-ind-consult-actions {
    padding-top: 4px;
}

/* ================= WHY LAGOZON ================= */
.sub-ind-why {
    padding: 70px 0;
    background: linear-gradient(180deg, var(--bg) 0%, var(--section-alt) 100%);
}

.sub-ind-why-head {
    max-width: 860px;
    margin-bottom: 28px;
}

.sub-ind-why-head h2 {
    margin-bottom: 14px;
}

.sub-ind-why-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 24px;
}

.sub-ind-why-card {
    padding: 24px;
    background: var(--bg);
    border: 1px solid var(--divider);
    border-radius: 20px;
    box-shadow: var(--shadow-soft);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.sub-ind-why-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 18px 40px rgba(15, 23, 42, 0.10);
}

.sub-ind-why-card h3 {
    margin-bottom: 10px;
    color: var(--heading);
}

.sub-ind-why-card p {
    color: var(--paragraph);
    font-size: 15px;
    line-height: 1.75;
}

/* ================= INSIGHTS SECTION ================= */
.sub-ind-insights {
    padding: 70px 0;
    background: var(--bg);
}

.sub-ind-insights-head {
    max-width: 860px;
    margin-bottom: 28px;
}

.sub-ind-insights-head h2 {
    margin-bottom: 14px;
}

.sub-ind-insights-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 24px;
}

.sub-ind-insight-card {
    padding: 24px;
    background: var(--bg);
    border: 1px solid var(--divider);
    border-radius: 20px;
    box-shadow: var(--shadow-soft);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.sub-ind-insight-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 18px 40px rgba(15, 23, 42, 0.10);
}

.sub-ind-insight-card h3 {
    margin-bottom: 12px;
    color: var(--heading);
}

.sub-ind-insight-card p {
    margin-bottom: 18px;
    color: var(--paragraph);
    font-size: 15px;
    line-height: 1.75;
}

.sub-ind-insight-link {
    display: inline-flex;
    align-items: center;
    font-size: 15px;
    font-weight: 600;
    color: var(--primary);
    transition: color 0.3s ease;
}

.sub-ind-insight-link:hover {
    color: var(--primary-hover);
}

/* ================= CTA SECTION ================= */
.sub-ind-cta {
    padding: 70px 0;
    background: var(--heading);
    text-align: center;
}

.sub-ind-cta-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
}

.sub-ind-cta h2 {
    color: var(--bg);
    max-width: 760px;
}

.sub-ind-cta .sub-ind-btn-primary {
    background: var(--orange);
    border-color: var(--orange);
    box-shadow: 0 12px 24px rgba(242, 101, 34, 0.22);
}

.sub-ind-cta .sub-ind-btn-primary:hover {
    background: var(--secondary-hover);
    border-color: var(--secondary-hover);
}




/* ======== INSIGHTAGENT-AI PAGE HERO ======== */
.insightagent-hero {
    position: relative;
    isolation: isolate;
    min-height: clamp(540px, 85vh, 880px);
    display: grid;
    place-items: center;
    overflow: hidden;
    background: var(--surface);
    color: var(--ink);
}

.insightagent-hero-bg {
    position: absolute;
    inset: 0;
    z-index: 0;
    overflow: hidden;
    background:
        radial-gradient(1200px 600px at 100% 0%, rgba(5, 175, 242, 0.16) 0%, transparent 60%),
        radial-gradient(1200px 600px at 0% 100%, rgba(5, 175, 242, 0.12) 0%, transparent 60%),
        var(--bg);
}

.insightagent-aurora {
    position: absolute;
    inset: -12px;
    pointer-events: none;
    opacity: 0.55;
    filter: blur(12px);
    will-change: transform, background-position;

    background-image:
        repeating-linear-gradient(100deg,
            rgba(5, 175, 242, 0.10) 0%,
            rgba(5, 175, 242, 0.10) 8%,
            transparent 10%,
            transparent 14%,
            rgba(5, 175, 242, 0.08) 18%),
        repeating-linear-gradient(100deg,
            rgba(5, 175, 242, 0.20) 10%,
            rgba(99, 102, 241, 0.16) 18%,
            rgba(96, 165, 250, 0.18) 26%,
            rgba(191, 219, 254, 0.14) 34%,
            rgba(59, 130, 246, 0.18) 42%);

    background-size: 300% 300%, 200% 200%;
    background-position: 50% 50%, 50% 50%;
    mask-image: radial-gradient(ellipse at 100% 0%, black 10%, transparent 70%);
    -webkit-mask-image: radial-gradient(ellipse at 100% 0%, black 10%, transparent 70%);

    animation: insightagent-auroraMove 18s linear infinite;
}

@keyframes insightagent-auroraMove {
    0% {
        background-position: 0% 50%, 0% 50%;
        transform: translate3d(0, 0, 0) scale(1);
    }

    50% {
        background-position: 100% 50%, 100% 50%;
        transform: translate3d(0, -8px, 0) scale(1.03);
    }

    100% {
        background-position: 0% 50%, 0% 50%;
        transform: translate3d(0, 0, 0) scale(1);
    }
}

.insightagent-hero-inner {
    position: relative;
    z-index: 1;
    max-width: 1100px;
    width: 100%;
    padding: clamp(32px, 5vw, 64px) clamp(20px, 4vw, 40px);
    text-align: center;
}

.insightagent-eyebrow {
    display: inline-block;
    margin-bottom: 18px;
    padding: 8px 16px;
    border: 1px solid rgba(5, 175, 242, 0.20);
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.7);
    color: var(--primary);
    font-size: 14px;
    font-weight: 500;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.insightagent-title {
    margin: 0 0 18px;
    font-size: clamp(38px, 3vw, 82px);
    line-height: 1;
    font-weight: 600;
    color: var(--heading);
}

.insightagent-accent {
    display: inline-block;
    margin-top: 10px;
    color: var(--primary);
    font-size: inherit;
    font-weight: inherit;
}

.insightagent-subcopy {
    max-width: 760px;
    margin: 0 auto 10px;
    font-size: clamp(16px, 2vw, 20px);
    line-height: 1.7;
    color: var(--paragraph);
}

.insightagent-trust {
    margin: 10px 0 0;
    font-size: 14px;
    line-height: 1.6;
    color: var(--label);
}

.insightagent-cta-row {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    gap: 14px;
    margin-top: 8px;
}

.insightagent-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 180px;
    padding: 14px 28px;
    border-radius: 999px;
    border: 1px solid rgba(5, 175, 242, 0.22);
    text-decoration: none;
    font-size: 16px;
    font-weight: 400;
    line-height: 1;
    transition: all 0.3s ease;
    box-shadow: none;
}

.insightagent-btn-primary {
    background: #ffffff;
    color: var(--primary);
}

.insightagent-btn-primary:hover {
    background: var(--primary);
    color: #ffffff;
    border-color: var(--primary);
    transform: translateY(-2px);
}

.insightagent-btn-secondary {
    background: transparent;
    color: var(--heading);
}

.insightagent-btn-secondary:hover {
    background: rgba(5, 175, 242, 0.08);
    color: var(--primary);
    border-color: rgba(5, 175, 242, 0.35);
    transform: translateY(-2px);
}

/* ---------- IntelliDoc.AI — Feature Section ---------- */
.intellidoc-hero-bg {
    background:
        linear-gradient(rgba(0, 0, 0, 0.02) 1px, transparent 1px),
        linear-gradient(90deg, rgba(0, 0, 0, 0.02) 1px, transparent 1px),
        var(--bg);
    background-size: 36px 36px;
}

.intellidoc-mesh {
    position: absolute;
    inset: 0;
}

.intellidoc-hero-bg::before {
    content: "";
    position: absolute;
    inset: -20%;
    background:
        radial-gradient(circle at 20% 30%, rgba(16, 185, 129, 0.08), transparent 40%),
        /* soft teal */
        radial-gradient(circle at 80% 20%, rgba(139, 92, 246, 0.07), transparent 45%),
        /* soft violet */
        radial-gradient(circle at 30% 80%, rgba(5, 175, 242, 0.06), transparent 50%);
    /* very light blue */
    filter: blur(48px);
    opacity: 0.85;
}

.intellidoc-hero-bg::after {
    content: "";
    position: absolute;
    inset: -10%;
    background:
        radial-gradient(circle at 70% 60%, rgba(16, 185, 129, 0.05), transparent 50%);
    filter: blur(70px);
    animation: intellidoc-meshMove 20s ease-in-out infinite alternate;
}

.intellidoc-feature-section {
    background-color: var(--bg);
    padding: clamp(48px, 4vw, 96px) 12px;
    border-top: 1px solid var(--border);
}

.intellidoc-feature-container {
    max-width: 1290px;
    margin: 0 auto;
}

.intellidoc-feature-grid {
    padding-top: 20px;
    display: grid;
    align-items: center;
    justify-content: center;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 20px;
}

.intellidoc-feature-card {
    background-color: var(--bg);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 18px 22px;
    position: relative;
    transition: transform 0.25s ease, box-shadow 0.25s ease;
    min-width: 0;
    text-align: left;

}

.intellidoc-feature-card::after {
    content: "";
    position: absolute;
    left: 0;
    top: 28px;
    height: 26px;
    width: 3px;
    background: var(--divider);
    border-top-right-radius: 999px;
    border-bottom-right-radius: 999px;
    transition: height 0.25s ease, background 0.25s ease;
}

.intellidoc-feature-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(2, 6, 23, 0.08);
}

.intellidoc-feature-card:hover::after {
    height: 36px;
    background: var(--primary);
}

.intellidoc-feature-icon {
    color: #6b7280;
    margin-bottom: 12px;
}

.intellidoc-feature-title {
    font-size: 18px;
    font-weight: 700;
    color: var(--ink);
    margin-bottom: 5px;
    transition: transform 0.2s ease;
    line-height: 1.2;
}

.intellidoc-feature-title {
    line-height: 1.5;
}

.intellidoc-feature-desc {
    font-size: 14px;
    color: var(--paragraph);
    line-height: 1.8;
    max-width: 34ch;
    margin: 0;
}

.intellidoc-feature-card:focus-within {
    outline: 2px solid var(--primary);
    outline-offset: 2px;
}

.intellidoc-icon {
    color: var(--paragraph);
}

/* ======== DBQUERY HERO BACKGROUND (DATABASE THEME - LIGHT) ======== */
.dbquery-hero-bg {
    position: absolute;
    inset: 0;
    z-index: 0;
    overflow: hidden;
    background: var(--bg);
    background-image:
        radial-gradient(circle, rgba(5, 175, 242, 0.15) 1px, transparent 1px);
    background-size: 120px 120px;
}

/* grid pattern */
.dbquery-hero-bg::before {
    content: "";
    position: absolute;
    inset: 0;

    background:
        linear-gradient(rgba(5, 175, 242, 0.05) 1px, transparent 1px),
        linear-gradient(90deg, rgba(5, 175, 242, 0.05) 1px, transparent 1px);

    background-size: 48px 48px;
    opacity: 0.6;
}

/* connection nodes + glow */
.dbquery-hero-bg::after {
    content: "";
    position: absolute;
    inset: -10%;

    background:
        radial-gradient(circle at 20% 30%, rgba(5, 175, 242, 0.12), transparent 40%),
        radial-gradient(circle at 80% 40%, rgba(5, 175, 242, 0.10), transparent 45%),
        radial-gradient(circle at 50% 75%, rgba(14, 165, 233, 0.08), transparent 50%);

    filter: blur(50px);
    opacity: 0.7;

    animation: dbquery-bg-move 20s ease-in-out infinite alternate;
}

/* subtle motion */
@keyframes dbquery-bg-move {
    0% {
        transform: translate(0, 0) scale(1);
    }

    100% {
        transform: translate(-30px, -20px) scale(1.05);
    }
}

/* ---------- INSIGHTAGENT CTA Section ---------- */
.insightagent-cta-section {
    position: relative;
    overflow: hidden;
    padding: 50px 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;

    /* Gradient using Lagozon palette */
    background: linear-gradient(
        135deg,
        #e6f7ff 0%,
        #f0fbff 30%,
        #ffffff 60%
    );
}

/* Soft glowing blobs (AI vibe) */
.insightagent-cta-section::before,
.insightagent-cta-section::after {
    content: "";
    position: absolute;
    width: 280px;
    height: 280px;
    border-radius: 50%;
    filter: blur(60px);
    opacity: 0.25;
    z-index: 0;
}

.insightagent-cta-section::before {
    background: var(--primary);
    top: -80px;
    left: -80px;
}

.insightagent-cta-section::after {
    background: var(--primary);
    bottom: -80px;
    right: -80px;
}

/* subtle animated shimmer line */
.insightagent-cta-section::marker { content: ""; } /* safe reset */

.insightagent-cta-container {
    max-width: 900px;
    color: var(--ink);
    position: relative;
    z-index: 1;
}

.insightagent-cta-heading {
    font-weight: 700;
    font-size: clamp(24px, 3vw, 30px);
    color: var(--heading);
    margin-bottom: 8px;
}

.insightagent-cta-subtext {
    font-size: 1.05rem;
    margin-bottom: 14px;
    color: var(--paragraph);
}

.insightagent-cta-button {
    display: inline-block;
    color: #fff;
    background: linear-gradient(135deg, var(--primary), var(--primary-hover));
    border-radius: var(--radius);
    padding: 12px 28px;
    margin: 14px 0;
    font-size: 1rem;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.25s ease;
    box-shadow: 0 8px 20px rgba(5, 175, 242, 0.25);
}

.insightagent-cta-button:hover {
    transform: translateY(-2px) scale(1.02);
    box-shadow: 0 12px 28px rgba(5, 175, 242, 0.35);
}

.insightagent-cta-footer {
    font-size: 0.95rem;
    color: var(--label);
}

/* ---------- IntelliDoc.AI — Business Section ---------- */
.intellidoc-business-section {
    background: var(--bg);
    padding: 40px 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.intellidoc-business-container {
    max-width: 1220px;
    margin: 0 auto;
    width: 100%;
}

.intellidoc-business-heading {
    color: var(--ink);
    font-size: clamp(22px, 2.5vw, 28px);
    font-weight: 600;
    margin-bottom: 38px;
}

.intellidoc-business-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 24px;
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    justify-items: center;
}

.intellidoc-business-card {
    border: 1.5px dashed var(--border);
    border-radius: var(--radius);
    background: #fff;
    padding: 20px 18px;
    box-shadow: 0 6px 16px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    width: 100%;
    max-width: 360px;
    min-width: 0;
}

.intellidoc-business-card:hover {
    transform: translateY(-6px);
    border-color: var(--primary);
    box-shadow: 0 10px 24px rgba(5, 175, 242, 0.15);
}

.intellidoc-business-icon {
    text-align: center;
    font-size: 40px;
    color: var(--primary);
    margin-bottom: 16px;
}

.intellidoc-business-card h3 {
    font-size: clamp(18px, 1vw, 20px);
    font-weight: 600;
    color: var(--ink);
    margin-bottom: 12px;
    width: 100%;
    line-height: 1.35;
}

.intellidoc-business-card p {
    color: var(--paragraph);
    line-height: 1.7;
    max-width: 95%;
    margin: 0;
}

/* -------- AI TOOL CASE STUDY --------------- */
.genai-case-studies-section {
    padding: 40px 10px;
    background: var(--bg);
    max-width: 100%;
    margin: auto;
    overflow: hidden;
}

.genai-case-heading {
    text-align: center;
    font-weight: bold;
    margin-bottom: 20px;
}

.genai-carousel-container {
    position: relative;
    width: 100%;
    overflow: hidden;
}

.genai-carousel-track {
    display: flex;
    transition: transform 0.5s ease-in-out;
    will-change: transform;
}

.genai-case-card {
    flex: 0 0 calc(33.333% - 20px);
    margin: 0 10px;
    background: var(--bg);
    border: 1px solid var(--divider);
    border-radius: 12px;
    padding: 24px;
    box-shadow: 0 1px 6px rgba(0, 0, 0, 0.05);
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    margin-bottom: 35px;
    gap: 5px;
}

.genai-case-icon {
    width: 60px;
    height: 60px;
    object-fit: contain;
}

.genai-case-card h3 {
    font-weight: bold;
    margin-bottom: 10px;
}

.genai-case-card p {
    flex-grow: 1;
    line-height: 1.6;
    color: var(--label);
}

.genai-carousel-dots {
    display: flex;
    justify-content: center;
    margin-top: 15px;
}

.genai-carousel-dots .genai-dot {
    width: 3px;
    height: 12px;
    border: 1px solid var(--label);
    background: var(--bg);
    border-radius: 50%;
    margin: 0 5px;
    cursor: pointer;
    transition: background 0.3s;
}

.genai-carousel-dots .genai-dot.active {
    background: var(--label);
}

.genai-carousel-container {
    position: relative;
}

.genai-arrow {
    position: absolute;
    top: 89%;
    transform: translateX(100%);
    background: rgba(255, 255, 255, 0.9);
    border: 1px solid var(--divider);
    width: 36px;
    height: 36px;
    border-radius: 50%;
    display: grid;
    place-items: center;
    cursor: pointer;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
}

.genai-prev {
    left: 10px;
}

.genai-next {
    right: 50px;
}

.genai-arrow:hover {
    background: var(--bg);
}

/* ============================= QLIK PAGE =================================== */
.qlik-hero-inner {
    width: 80%;
    text-align: center;
}

.qlik-badge {
    border-color: rgba(132, 204, 22, 0.22);
    box-shadow: 0 10px 30px rgba(132, 204, 22, 0.08);
}

.qlik-badge-label {
    color: #65a30d;
}

.qlik-badge-dot {
    background: #84cc16;
}

.qlik-hero-btn-primary {
    background: linear-gradient(90deg, #65a30d 0%, #84cc16 52%, #22c55e 100%);
    border-color: transparent;
    box-shadow: 0 12px 30px rgba(132, 204, 22, 0.18);
}

.qlik-hero-btn-primary:hover {
    background: linear-gradient(90deg, #5b950c 0%, #76b814 52%, #1fb154 100%);
}

.qlik-hero-bg {
    background:
        radial-gradient(1100px 560px at 84% 10%, rgba(132, 204, 22, 0.16) 0%, transparent 58%),
        radial-gradient(900px 520px at 42% 8%, rgba(34, 197, 94, 0.12) 0%, transparent 60%),
        radial-gradient(780px 420px at 10% 24%, rgba(163, 230, 53, 0.10) 0%, transparent 58%),
        linear-gradient(180deg, #fbfef7 0%, #ffffff 62%);
}

.qlik-blob-a {
    background: radial-gradient(closest-side,
            rgba(132, 204, 22, 0.55) 0%,
            rgba(132, 204, 22, 0.18) 40%,
            transparent 72%);
}

.qlik-blob-b {
    background: radial-gradient(closest-side,
            rgba(34, 197, 94, 0.50) 0%,
            rgba(163, 230, 53, 0.16) 42%,
            transparent 72%);
}


/* ========== QLIK ELITE PARTNER ANNOUNCEMENT BANNER ========== */
.qlik-elite-banner {
    position: relative;
    overflow: hidden;
    padding: 25px 0;
    background:
        linear-gradient(90deg,
            rgba(132, 204, 22, 0.08) 0%,
            rgba(5, 175, 242, 0.06) 52%,
            rgba(132, 204, 22, 0.08) 100%),
        #ffffff;
    border: 1px solid rgba(132, 204, 22, 0.18);
    border-radius: 20px;
    box-shadow: 0 10px 24px rgba(15, 23, 42, 0.06);
}

.qlik-elite-banner::before {
    content: "";
    position: absolute;
    inset: 0;
    background:
        linear-gradient(90deg,
            transparent 0%,
            rgba(132, 204, 22, 0.08) 25%,
            rgba(5, 175, 242, 0.08) 50%,
            rgba(132, 204, 22, 0.08) 75%,
            transparent 100%);
    opacity: 0.8;
    pointer-events: none;
}

.qlik-elite-inner {
    position: relative;
    z-index: 2;
    width: min(1320px, calc(90% - 12px));
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 28px;
}

.qlik-elite-left {
    display: flex;
    flex-direction: column;
    align-items: left;
    justify-content: left;
    gap: 18px;
    flex: 1;
    min-width: 0;
}

.qlik-elite-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 14px;
    border-radius: 999px;
    background: rgba(132, 204, 22, 0.10);
    border: 1px solid rgba(132, 204, 22, 0.24);
    color: #4d7c0f;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    white-space: nowrap;
    width: max-content;
    flex-shrink: 0;
}

.qlik-elite-badge-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #84cc16;
    box-shadow: 0 0 0 4px rgba(132, 204, 22, 0.14);
}

.qlik-elite-copy {
    display: flex;
    flex-direction: column;
    gap: 4px;
    min-width: 0;
}

.qlik-elite-copy h2 {
    margin: 0;
    color: var(--heading);
    font-size: clamp(24px, 2.3vw, 34px);
    line-height: 1.15;
    font-weight: 700;
    letter-spacing: -0.03em;
}

.qlik-elite-copy p {
    margin: 0;
    color: var(--paragraph);
    font-size: 16px;
    line-height: 1.6;
    max-width: 760px;
}

.qlik-elite-right {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.qlik-elite-logo {
    width: 300px;
    height: auto;
    object-fit: contain;
}
/* ===== 360 DEGREE ROTATING LOGO ===== */
.qlik-logo-3d {
    animation: qlikLogoRotate 6s linear infinite;
    transform-style: preserve-3d;
    filter: drop-shadow(0 10px 12px rgba(0, 0, 0, 0.14));
}

@keyframes qlikLogoRotate {
    0% {
        transform: rotateY(0deg);
    }

    100% {
        transform: rotateY(360deg);
    }
}


/* ============================= DATA ENGINEERING ============================ */
/* Data Engineering Hero section */
.de-hero {
    position: relative;
    overflow: hidden;
    background:
        radial-gradient(circle at top center, rgba(5, 175, 242, 0.156) 0%, transparent 42%),
        linear-gradient(180deg, var(--section-alt) 0%, var(--bg) 72%);
    min-height: 75vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 90px 0 70px;
}

.de-hero::before {
    content: "";
    position: absolute;
    inset: 0;
    background:
        linear-gradient(90deg, transparent 0%, rgba(5, 175, 242, 0.03) 50%, transparent 100%);
    pointer-events: none;
}

.de-hero-container {
    position: relative;
    z-index: 2;
}

.de-hero-content {
    max-width: 920px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 22px;
}

.de-hero-eyebrow {
    display: inline-block;
    font-size: 16px;
    font-weight: 700;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--orange);
}

.de-hero-title {
    font-weight: 600;
    line-height: 1.2;
    letter-spacing: -0.04em;
    color: var(--ink);
    max-width: 980px;
}

.de-hero-desc {
    max-width: 100%;
    line-height: 1.55;
    color: var(--ink);
    font-weight: 400;
}

.de-hero-actions {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 16px;
    margin-top: 12px;
}

.de-hero-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 210px;
    padding: 14px 28px;
    border-radius: 6px;
    font-size: 17px;
    font-weight: 600;
    line-height: 1;
    transition: all 0.3s ease;
}

.de-hero-btn-primary {
    background: var(--orange);
    color: var(--bg);
    border: 1px solid var(--orange);
}

.de-hero-btn-primary:hover {
    background: var(--secondary-hover);
    border-color: var(--secondary-hover);
    transform: translateY(-2px);
}

.de-hero-btn-secondary {
    background: #173647;
    color: var(--bg);
    border: 1px solid #173647;
}

.de-hero-btn-secondary:hover {
    background: #0f2733;
    border-color: #0f2733;
    transform: translateY(-2px);
}

/* Interactive Section */
.de-tabs-section {
    padding: 60px 0;
    background: var(--bg);
    color: var(--bk);
}

.de-tabs-wrap {
    display: flex;
    flex-direction: column;
    gap: 18px;
}

.de-tabs-nav {
    display: flex;
    gap: 12px;
    overflow-x: auto;
    padding-bottom: 6px;
    scrollbar-width: none;
}

.de-tabs-nav::-webkit-scrollbar {
    display: none;
}

.de-tab {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    min-width: max-content;
    border: 1px solid var(--divider);
    background: var(--section-alt);
    color: var(--label);
    border-radius: 16px;
    padding: 14px 18px;
    font: inherit;
    font-size: 14px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
}

.de-tab:hover {
    border-color: rgba(5, 175, 242, 0.30);
    color: var(--heading);
    background: #f8fcff;
}

.de-tab.is-active {
    color: var(--heading);
    background: #eef8fe;
    border-color: rgba(5, 175, 242, 0.35);
    box-shadow: 0 10px 24px rgba(5, 175, 242, 0.10);
}

.de-tab-icon {
    width: 34px;
    height: 34px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 10px;
    background: rgba(5, 175, 242, 0.08);
    color: var(--primary);
    flex-shrink: 0;
}

.de-tab.is-active .de-tab-icon {
    background: rgba(5, 175, 242, 0.14);
    color: var(--primary);
}

.de-tabs-main {
    display: grid;
    grid-template-columns: minmax(0, 1.95fr) minmax(300px, 0.95fr);
    gap: 16px;
    align-items: start;
}

.de-tabs-content-area {
    background: linear-gradient(180deg, #fafdff 0%, #f2f9fe 100%);
    border: 1px solid rgba(5, 175, 242, 0.14);
    border-radius: 18px;
    padding: 36px;
    min-height: 720px;
    overflow-y: auto;
    box-shadow: var(--shadow-soft);
}

.de-panel {
    display: none;
}

.de-panel.is-active {
    display: block;
}

.de-panel-inner {
    width: 100%;
}

.de-panel-copy {
    display: flex;
    flex-direction: column;
    gap: 22px;
    max-width: 880px;
}

.de-panel-label {
    display: inline-flex;
    width: fit-content;
    padding: 7px 12px;
    border-radius: 999px;
    background: rgba(5, 175, 242, 0.08);
    color: var(--primary);
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    border: 1px solid rgba(5, 175, 242, 0.14);
}

.de-panel-copy h2 {
    line-height: 1.08;
    letter-spacing: 0.01em;
    max-width: 820px;
}

.de-panel-lead {
    color: var(--paragraph);
    line-height: 1.75;
    max-width: 800px;
}

.de-panel-card {
    background: var(--bg);
    border: 1px solid var(--divider);
    border-radius: 18px;
    padding: 22px 22px 20px;
    box-shadow: 0 10px 30px rgba(15, 23, 42, 0.05);
    max-width: 860px;
}

.de-panel-card h3 {
    margin-bottom: 8px;
    color: var(--heading);
}

.de-panel-card p {
    color: var(--paragraph);
    line-height: 1.75;
}

.de-panel-points {
    display: grid;
    gap: 14px;
    max-width: 860px;
}

.de-point {
    position: relative;
    padding: 18px 18px 18px 52px;
    background: var(--bg);
    border: 1px solid rgba(5, 175, 242, 0.12);
    border-radius: 16px;
    color: var(--ink);
    font-size: 16px;
    line-height: 1.7;
}

.de-point::before {
    content: "";
    position: absolute;
    top: 26px;
    left: 26px;
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: var(--primary);
    box-shadow: 0 0 0 6px rgba(5, 175, 242, 0.10);
}

/* Sticky CTA */
.de-tabs-cta {
    position: sticky;
    top: 110px;
    align-self: start;
}

.de-tabs-cta-card {
    background: rgba(242, 101, 34, 0.08);
    border: 1px solid rgba(5, 175, 242, 0.16);
    border-radius: 18px;
    padding: 34px 34px 32px;
    color: var(--ink);
    box-shadow: var(--shadow-soft);
}

.de-tabs-cta-card h3 {
    color: var(--bk);
    font-size: clamp(26px, 2.2vw, 30px);
    letter-spacing: -0.04em;
    margin-bottom: 16px;
}

.de-tabs-cta-highlight {
    background: #eef8fe;
    background: rgba(242, 100, 34, 0.134);
    border-radius: 16px;
    padding: 18px 16px;
    margin-bottom: 20px;
}

.de-tabs-cta-highlight h4 {
    color: var(--bk);
    line-height: 1.2;
    font-weight: 600;
    margin-bottom: 8px;
}

.de-tabs-cta-highlight p {
    color: var(--paragraph);
    font-size: 15px;
    line-height: 1.65;
}

.de-tabs-cta-link {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    color: var(--orange);
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 28px;
    transition: color 0.3s ease;
}

.de-tabs-cta-link:hover {
    color: var(--primary-hover);
}

.de-tabs-cta-link span {
    font-size: 22px;
    line-height: 1;
}

.de-tabs-cta-divider {
    height: 1px;
    background: var(--divider);
    margin-bottom: 28px;
}

.de-tabs-cta-list h4 {
    color: var(--heading);
    font-size: clamp(18px, 1.8vw, 26px);
    line-height: 1.3;
    margin-bottom: 18px;
}

.de-tabs-cta-item {
    position: relative;
    padding-left: 30px;
    color: var(--paragraph);
    font-size: 15px;
    line-height: 1.7;
    margin-bottom: 16px;
}

.de-tabs-cta-item::before {
    content: "○";
    position: absolute;
    left: 0;
    top: 0;
    color: var(--primary);
    font-size: 18px;
    line-height: 1.2;
}

/* Partners With Lagozon  */
.lz-partner-section {
    /* padding: 50px 0; */
    background: var(--bg);
}

.lz-partner-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: stretch;
    overflow: hidden;
    border-radius: 24px;
    background: var(--bg);
    border: 1px solid var(--divider);
    box-shadow: var(--shadow-soft);
}

.lz-partner-content {
    background: var(--heading);
    padding: 30px 40px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.lz-partner-label {
    display: inline-flex;
    width: fit-content;
    margin-bottom: 18px;
    padding: 8px 14px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.12);
    color: var(--bg);
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 0.04em;
}

.lz-partner-content h2 {
    margin: 0 0 18px;
    color: var(--bg);
    line-height: 1.08;
    letter-spacing: 0.01em;
    max-width: 620px;
}

.lz-partner-content p {
    margin: 0 0 22px;
    color: rgba(255, 255, 255, 0.92);
    line-height: 1.7;
    max-width: 560px;
}

.lz-partner-points {
    list-style: none;
    margin: 0;
    padding: 0;
    display: grid;
    gap: 14px;
}

.lz-partner-points li {
    position: relative;
    padding-left: 28px;
    color: rgba(255, 255, 255, 0.95);
    line-height: 1.7;
}

.lz-partner-points li::before {
    content: "";
    position: absolute;
    left: 0;
    top: 10px;
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: var(--primary);
    box-shadow: 0 0 0 5px rgba(5, 175, 242, 0.16);
}

.lz-partner-visual {
    min-height: 100%;
    background: linear-gradient(180deg, var(--section-alt) 0%, var(--surface) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.lz-partner-visual img {
    width: 100%;
    height: 100%;
    object-fit: fit;
    display: block;
}
.coming-soon-page {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 24px;
}

.coming-soon-wrap {
    width: 100%;
    display: flex;
    justify-content: center;
}

.coming-soon-container {
    width: min(760px, 100%);
    text-align: center;
    background: rgba(255, 255, 255, 0.86);
    border: 1px solid var(--divider);
    border-radius: 24px;
    box-shadow: var(--shadow-soft);
    padding: 48px 36px;
    backdrop-filter: blur(10px);
}

.coming-soon-logo {
    width: 180px;
    margin: 0 auto 30px;
}

.coming-soon-container h1 {
    margin: 0;
    color: var(--heading);
    font-size: clamp(34px, 5vw, 52px);
    line-height: 1.05;
    font-weight: 700;
    letter-spacing: -0.03em;
    animation: fadeUp 1s ease forwards;
    opacity: 0;
    animation-delay: 0.2s;
}

.coming-soon-divider {
    width: 72px;
    height: 4px;
    background: linear-gradient(90deg, var(--primary) 0%, var(--orange) 100%);
    margin: 24px auto 26px;
    border-radius: 999px;
    animation: fadeUp 1s ease forwards;
    opacity: 0;
    animation-delay: 0.45s;
}

.coming-soon-text {
    margin: 0 auto 18px;
    max-width: 620px;
    font-size: 18px;
    line-height: 1.8;
    color: var(--paragraph);
    animation: fadeUp 1s ease forwards;
    opacity: 0;
    animation-delay: 0.6s;
}

.coming-soon-highlight {
    color: var(--primary);
    font-weight: 600;
}

.coming-soon-cta {
    margin-top: 28px;
    display: flex;
    flex-direction: column;
    gap: 6px;
    align-items: center;
    font-size: 14px;
    color: var(--label);
    animation: fadeUp 1s ease forwards;
    opacity: 0;
    animation-delay: 0.8s;
}

.coming-soon-email {
    color: var(--primary);
    font-weight: 600;
    transition: color 0.3s ease;
}

.coming-soon-email:hover {
    color: var(--primary-hover);
    text-decoration: underline;
}

@keyframes fadeUp {
    from {
        transform: translateY(18px);
        opacity: 0;
    }

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

/* Responsive */
@media (max-width: 767px) {
    .coming-soon-page {
        padding: 16px;
    }

    .coming-soon-container {
        padding: 36px 22px;
        border-radius: 18px;
    }

    .coming-soon-logo {
        width: 150px;
        margin-bottom: 24px;
    }

    .coming-soon-text {
        font-size: 16px;
        line-height: 1.75;
    }
	
}
/* =========================
   UNIFYAPPS PAGE STYLES
========================= */

.ua-hero-section,
.ua-capabilities-section,
.ua-value-section {
    position: relative;
    padding: 90px 0;
    background: #f7f7fb;
    overflow: hidden;
}

.ua-hero-section{
    min-height: 87vh;
}

.ua-capabilities-section {
    background: linear-gradient(180deg, #f7f7fb 0%, #f2f0ff 100%);
}

.ua-value-section {
    background: #fbfaff;
}

.ua-hero-section::before,
.ua-capabilities-section::before,
.ua-value-section::before {
    content: "";
    position: absolute;
    inset: 0;
    background:
        radial-gradient(circle at top left, rgba(117, 89, 255, 0.08), transparent 30%),
        radial-gradient(circle at bottom right, rgba(162, 119, 255, 0.08), transparent 30%);
    pointer-events: none;
}

.ua-hero-grid,
.ua-value-grid {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 48px;
    align-items: center;
}

.ua-section-head {
    position: relative;
    z-index: 1;
    max-width: 900px;
    margin: 0 auto 50px;
    text-align: center;
}

.ua-section-label,
.ua-mini-label,
.ua-stat-label {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.ua-section-label {
    color: #6b4eff;
    margin-bottom: 14px;
}

.ua-section-head h1{
    line-height: 1.2;
}

.ua-hero-content h1,
.ua-section-head h2,
.ua-value-content h2 {
    margin: 0 0 18px;
    color: #0a1633;
    font-weight: 800;
    line-height: 1.12;
    letter-spacing: -0.02em;
}

.ua-hero-content h1 {
    max-width: 760px;
}

.ua-section-head h2,
.ua-value-content h2 {
	text-align: left;
}

.ua-hero-content p,
.ua-section-head p,
.ua-value-content p,
.ua-cap-card p,
.ua-hero-card p,
.ua-stat-card p {
    margin: 0;
    color: #42506d;
    line-height: 1.8;
}

.ua-hero-points {
    margin-top: 28px;
    display: grid;
    gap: 14px;
}

.ua-hero-point {
    position: relative;
    padding-left: 22px;
    color: #17233c;
    line-height: 1.7;
    font-weight: 500;
}

.ua-hero-point::before {
    content: "";
    position: absolute;
    left: 0;
    top: 10px;
    width: 9px;
    height: 9px;
    border-radius: 50%;
    background: linear-gradient(135deg, #6b4eff, #9b7cff);
    box-shadow: 0 0 0 6px rgba(107, 78, 255, 0.10);
}

.ua-hero-visual,
.ua-value-visual {
    display: grid;
    gap: 22px;
}

.ua-hero-card,
.ua-stat-card,
.ua-cap-card {
    position: relative;
    z-index: 1;
    background: rgba(255, 255, 255, 0.78);
    border: 1px solid rgba(107, 78, 255, 0.12);
    border-radius: 24px;
    box-shadow: 0 18px 45px rgba(20, 22, 61, 0.08);
    backdrop-filter: blur(14px);
}

.ua-hero-card {
    padding: 28px 28px 24px;
}

.ua-hero-card h3,
.ua-cap-card h3,
.ua-stat-card h3 {
    margin: 10px 0 12px;
    color: #0f1d40;
    font-size: 1.3rem;
    line-height: 1.3;
    font-weight: 700;
}

.ua-card-one {
    transform: translateY(-10px);
}

.ua-card-two {
    margin-left: 48px;
}

.ua-mini-label,
.ua-stat-label {
    color: #7a62ff;
}

.ua-capabilities-grid {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 28px;
}

.ua-cap-card {
    padding: 32px 28px;
    transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}

.ua-cap-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 22px 50px rgba(20, 22, 61, 0.12);
    border-color: rgba(107, 78, 255, 0.22);
}

.ua-cap-icon {
    width: 54px;
    height: 54px;
    border-radius: 16px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 18px;
    font-weight: 800;
    color: #fff;
    background: linear-gradient(135deg, #6b4eff 0%, #9f7dff 100%);
    box-shadow: 0 12px 24px rgba(107, 78, 255, 0.22);
}

.ua-value-points {
    margin: 24px 0 0;
    padding: 0;
    list-style: none;
    display: grid;
    gap: 14px;
}

.ua-value-points li {
    position: relative;
    padding-left: 22px;
    color: #1a2746;
    font-size: 0.98rem;
    line-height: 1.7;
    font-weight: 500;
}

.ua-value-points li::before {
    content: "";
    position: absolute;
    left: 0;
    top: 10px;
    width: 9px;
    height: 9px;
    border-radius: 50%;
    background: linear-gradient(135deg, #6b4eff, #9b7cff);
}

.ua-stat-card {
    padding: 28px;
}

.ua-stat-card h3 {
    font-size: 1.25rem;
}