:root {
    /* Color Palette */
    --primary-blue: #0052CC;
    --primary-action: #4A90E2;
    --accent-orange: #FF6B35;
    --accent-orange-hover: #E55A24;
    --accent-purple: #575ECF;
    --interactive-purple: #7C3AED;
    --button-hover-blue: #5A67D8;

    /* Neutrals */
    --text-primary: #1B1B1B;
    --text-secondary: #575757;
    --text-tertiary: #9CA3AF;
    --bg-light: #FFFFFF;
    --bg-subtle: #F9FAFB;
    --border-default: #E5E7EB;
    --border-light: #F3F4F6;
    --border-warm: #DCDAD5;

    /* Typography */
    --font-main: 'Be Vietnam Pro', -apple-system, BlinkMacSystemFont, sans-serif;
    --font-code: 'Menlo', 'Monaco', 'Courier New', monospace;

    /* Border Radius Scale */
    --radius-input: 10px;
    --radius-card: 16px;
    --radius-btn: 20px;
    --radius-feature: 24px;
    --radius-full: 9999px;
    --radius: .75rem;

    /* Elevation & Shadows */
    --shadow-subtle: 0px 2px 8px rgba(87, 94, 207, 0.08);
    --shadow-elevated: 0px 4px 24px -8px rgba(87, 94, 207, 0.08);
    --shadow-raised: 0px 8px 32px rgba(87, 94, 207, 0.12);
    --shadow-prominent: 0px 12px 40px -12px rgba(87, 94, 207, 0.15);
    --shadow-extreme: 0px 20px 60px -20px rgba(87, 94, 207, 0.2);
    --shadow-orange: 0px 4px 12px rgba(255, 107, 53, 0.3);
    --shadow-orange-hover: 0px 6px 16px rgba(255, 107, 53, 0.4);
    --shadow-blue: 0px 2px 8px rgba(0, 82, 204, 0.1);
    --shadow-accent: 0px 8px 32px rgba(87, 94, 207, 0.3);

    /* Transitions */
    --transition-default: all 0.2s ease-in-out;
    --spacing: 4px;
}

*, *::before, *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

.mt-1 {
    font-size: 20px;
    font-weight: 600;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-main);
    background-color: var(--bg-light);
    color: var(--text-primary);
    line-height: 1.5;
    -webkit-font-smoothing: antialiased;
}

a {
    color: inherit;
    text-decoration: none;
}
a:hover, a:focus{
    outline: none;
      text-decoration: none;
}

button {
    font-family: inherit;
    cursor: pointer;
    border: none;
    background: none;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

/* Layout Container */
.container {
    width: 100%;
    max-width: 1280px;
    margin-left: auto;
    margin-right: auto;
    padding-left: 32px;
    padding-right: 32px;
}

/* Typography System */
.display-h1 {
    font-size: 64px;
    font-weight: 800;
    line-height: 1.1;
    letter-spacing: -0.5px;
}

.heading-h2 {
    font-size: 43px;
    font-weight: 700;
    line-height: 1.2;
    letter-spacing: -0.3px;
}

.heading-h2 span {
    background-image: linear-gradient(135deg, oklch(55% .24 260) 0%, oklch(72% .19 50) 100%);
    color: #0000;
    -webkit-background-clip: text;
    background-clip: text;
    display: inline;
}

.subheading-h3 {
    font-size: 20px;
    font-weight: 700;
    line-height: 28px;
    letter-spacing: -0.2px;
    /* color: #fff; */
    margin: 0px;
}

.text-body {
    font-size: 16px;
    font-weight: 400;
    line-height: 24px;
}

.text-small {
    font-size: 14px;
    font-weight: 500;
    line-height: 20px;
}

.text-caption {
    font-size: 14px;
    font-weight: 500;
    line-height: 19px;
}

.text-accent {
    color: oklch(72% .19 50);
    text-transform: uppercase;
    font-weight: 600;

}

/* Grid Utilities */
.grid-2 {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
}

.grid-3 {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
}

.grid-4 {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}

.grid-6 {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 16px;
}

/* Buttons */
.btn-primary {
    background: linear-gradient(135deg, #FF6B35 0%, #FF8F5B 100%);
    color: #FFFFFF;
    padding: 12px 24px;
    font-size: 16px;
    font-weight: 600;
    line-height: 24px;
    border: 1px solid #FF6B35;
    border-radius: var(--radius-btn);
    box-shadow: var(--shadow-orange);
    transition: var(--transition-default);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.btn-primary:hover {
    background: linear-gradient(135deg, #E55A24 0%, #FF7A45 100%);
    box-shadow: var(--shadow-orange-hover);
    transform: translateY(-1px);
}

.btn-secondary {
    background: #FFFFFF;
    color: var(--primary-blue);
    border: 1px solid var(--primary-blue);
    border-radius: 20px;
    box-shadow: var(--shadow-blue);
    transition: var(--transition-default);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.video-section .btn-secondary svg {
    width: calc(var(--spacing) * 10) !important;
    height: calc(var(--spacing) * 10) !important;
}

.video-section .btn-secondary {
    left: 50%;
    position: absolute;
    top: 50%;
    width: calc(var(--spacing) * 24);
    height: calc(var(--spacing) * 24);
    transform: translate(-50%, -50%);
    border-radius: 50%;
}

.btn-secondary:hover {
    background: #F0F7FF;
    box-shadow: 0px 4px 12px rgba(0, 82, 204, 0.15);
    transform: translateY(-1px);
}

.video-section .btn-secondary:hover {
    transform: translate(-50%, -78%);
}

.btn-ghost {
    background: transparent;
    color: #fff;
    padding: 12px 24px;
    font-size: 14px;
    font-weight: 600;
    border-radius: var(--radius-btn);
    transition: var(--transition-default);
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: linear-gradient(135deg, oklch(55% .24 260) 0%, oklch(72% .19 50) 100%);
}

.btn-ghost:hover {
    background: rgba(0, 82, 204, 0.08);
}

/* Badges */
.badge-purple {
    background: rgb(253 253 255 / 10%);
    color: var(--accent-purple);
    border: 1px solid rgba(87, 94, 207, 0.3);
    border-radius: var(--radius-btn);
    padding: 4px 12px;
    font-size: 12px;
    font-weight: 500;
    display: inline-flex;
    align-items: center;
    gap: 6px;
}

/* Cards */
.steps-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    /* Mobile: 2 cÃƒÆ’Ã†â€™Ãƒâ€ Ã¢â‚¬â„¢ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â¡ÃƒÆ’Ã†â€™ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â»ÃƒÆ’Ã†â€™Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬Ãƒâ€¦Ã‚Â¾ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â¢t */
    gap: 1.5rem;
    max-width: 1200px;
    margin: 0 auto;
}

/* Tablet & Desktop (md: 6 cÃƒÆ’Ã†â€™Ãƒâ€ Ã¢â‚¬â„¢ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â¡ÃƒÆ’Ã†â€™ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â»ÃƒÆ’Ã†â€™Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬Ãƒâ€¦Ã‚Â¾ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â¢t) */
@media (min-width: 768px) {
    .steps-grid {
        grid-template-columns: repeat(6, 1fr);
    }
}

/* 3. Khung tÃƒÆ’Ã†â€™Ãƒâ€ Ã¢â‚¬â„¢ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â¡ÃƒÆ’Ã†â€™ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â»ÃƒÆ’Ã†â€™ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â«ng bÃƒÆ’Ã†â€™Ãƒâ€ Ã¢â‚¬â„¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬Ãƒâ€šÃ‚Â ÃƒÆ’Ã†â€™ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â°ÃƒÆ’Ã†â€™Ãƒâ€ Ã¢â‚¬â„¢ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â¡ÃƒÆ’Ã†â€™ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â»ÃƒÆ’Ã†â€™Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡Ãƒâ€šÃ‚Â¬ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Âºc (Step Item) */
.step-item {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

/* 4. VÃƒÆ’Ã†â€™Ãƒâ€ Ã¢â‚¬â„¢ÃƒÆ’Ã¢â‚¬Â ÃƒÂ¢Ã¢â€šÂ¬Ã¢â€žÂ¢ÃƒÆ’Ã†â€™ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â²ng trÃƒÆ’Ã†â€™Ãƒâ€ Ã¢â‚¬â„¢ÃƒÆ’Ã¢â‚¬Â ÃƒÂ¢Ã¢â€šÂ¬Ã¢â€žÂ¢ÃƒÆ’Ã†â€™ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â²n Icon Gradient */
.step-icon-wrapper {
    position: relative;
    z-index: 10;
    display: flex;
    height: calc(var(--spacing) * 14);
    /* 56px */
    width: calc(var(--spacing) * 14);
    align-items: center;
    justify-content: center;
    border-radius: 9999px;
    box-shadow: 0 20px 60px -20px color-mix(in oklab, oklch(55% .24 260) 45%, transparent);
    transition: transform 0.2s ease;
    background-image: linear-gradient(135deg, oklch(55% .24 260) 0%, oklch(72% .19 50) 100%);
    color: #fff;
}

.step-item:hover .step-icon-wrapper {
    transform: translateY(-2px);
}

.step-icon-wrapper svg {
    width: calc(var(--spacing) * 6);
    /* 24px */
    height: calc(var(--spacing) * 6);
}

/* 5. NhÃƒÆ’Ã†â€™Ãƒâ€ Ã¢â‚¬â„¢ÃƒÆ’Ã¢â‚¬Â ÃƒÂ¢Ã¢â€šÂ¬Ã¢â€žÂ¢ÃƒÆ’Ã†â€™ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â£n BÃƒÆ’Ã†â€™Ãƒâ€ Ã¢â‚¬â„¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬Ãƒâ€šÃ‚Â ÃƒÆ’Ã†â€™ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â°ÃƒÆ’Ã†â€™Ãƒâ€ Ã¢â‚¬â„¢ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â¡ÃƒÆ’Ã†â€™ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â»ÃƒÆ’Ã†â€™Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡Ãƒâ€šÃ‚Â¬ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Âºc & TÃƒÆ’Ã†â€™Ãƒâ€ Ã¢â‚¬â„¢ÃƒÆ’Ã¢â‚¬Â ÃƒÂ¢Ã¢â€šÂ¬Ã¢â€žÂ¢ÃƒÆ’Ã†â€™ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Âªn BÃƒÆ’Ã†â€™Ãƒâ€ Ã¢â‚¬â„¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬Ãƒâ€šÃ‚Â ÃƒÆ’Ã†â€™ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â°ÃƒÆ’Ã†â€™Ãƒâ€ Ã¢â‚¬â„¢ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â¡ÃƒÆ’Ã†â€™ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â»ÃƒÆ’Ã†â€™Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡Ãƒâ€šÃ‚Â¬ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Âºc */
.step-label {
    margin-top: 12px;
    font-size: 12px;
    /* 12px */
    font-weight: 700;
    color: oklch(72% .19 50);
    letter-spacing: 0.05em;
    text-transform: uppercase;
}

.step-title {
    margin-top: 0.25rem;
    font-size: 16px;
    font-weight: 600;
}

.bg-gradient-brand {

    background-image: linear-gradient(135deg, oklch(55% .24 260) 0%, oklch(72% .19 50) 100%);

    position: absolute;

    height: calc(var(--spacing) * .5);

    left: calc(var(--spacing) * 0);

    right: calc(var(--spacing) * 0);

    /* top: calc(var(--spacing) * 7); */

    display: block;

    margin-top: 25px;
}

/* Header Navigation */
.site-header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 64px;
    background-color: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid var(--border-default);
    z-index: 50;
}

.header-content {
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.brand-logo {
    display: flex;
    align-items: center;
    gap: 12px;
    font-weight: 800;
    font-size: 18px;
    color: var(--text-primary);
}

.logo-icon {
    width: 100%;
    height: 100%;
    max-width: 100px;
    position: relative;
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 24px;
}

.nav-link {
    font-size: 15px;
    font-weight: 500;
    color: var(--text-primary);
    transition: var(--transition-default);
}

.nav-link:hover {
    color: var(--primary-blue);
}

.header-actions {
    display: flex;
    align-items: center;
    gap: 12px;
}

.menu-toggle {
    display: none;
    padding: 8px;
    border-radius: 8px;
    color: var(--text-primary);
}

.mobile-drawer {
    display: none;
    position: absolute;
    top: 64px;
    left: 0;
    width: 100%;
    background-color: var(--bg-light);
    border-bottom: 1px solid var(--border-default);
    padding: 24px;
    box-shadow: var(--shadow-prominent);
    flex-direction: column;
    gap: 16px;
}

.mobile-drawer.active {
    display: flex;
}

/* Hero Section */
.hero-section {
    position: relative;
    padding-top: 140px;
    padding-bottom: 112px;
    color: #FFFFFF;
    overflow: hidden;
    text-align: center;

    background-image: url(https://abs-tech.lovable.app/assets/hero-bg-6kLSgVzc.jpg);
    object-fit: cover;
    background-repeat: no-repeat;
    background-size: cover;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
}

.hero-ambient {
    position: absolute;
    inset: 0;
    pointer-events: none;
    background-image: linear-gradient(135deg, oklch(22% .16 265 / .94), oklch(32% .19 260 / .9) 55%, oklch(50% .22 255 / .85));
}

.hero-glow-1 {
    position: absolute;
    top: calc(var(--spacing) * 20);
    left: calc(var(--spacing) * -32);
    width: calc(var(--spacing) * 96);
    height: calc(var(--spacing) * 96);
    background-color: oklch(55% .24 260);
    border-radius: 50%;
    filter: blur(101px);
    animation: pulse 2s cubic-bezier(.4, 0, .6, 1) infinite;
    z-index: 1;
}

.hero-glow-2 {
    position: absolute;
    bottom: calc(var(--spacing) * 10);
    right: calc(var(--spacing) * -32);
    width: calc(var(--spacing) * 96);
    height: calc(var(--spacing) * 96);
    background-color: oklch(72% .19 50);
    border-radius: 50%;
    filter: blur(168px);
    z-index: 1;
}

.hero-glow-3 {
    position: absolute;
    background-image: linear-gradient(oklch(100% 0 0 / .3) 1px, #0000 1px), linear-gradient(90deg, oklch(100% 0 0 / .3) 1px, #0000 1px);
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 10;
    background-size: 60px 60px;
    opacity: .15;
}

.hero-container {
    position: relative;
    z-index: 10;
    text-align: left;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 6px 16px;
    border-radius: var(--radius-btn);
    background-color: rgba(255, 255, 255, 0.12);
    border: 1px solid rgba(255, 255, 255, 0.25);
    font-size: 13px;
    font-weight: 600;
    margin-bottom: 28px;
}

.hero-title {
    color: #FFFFFF;
    margin-bottom: 24px;
}

.hero-title-highlight {
    background: linear-gradient(135deg, oklch(90% .15 60), oklch(70% .22 45) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.hero-subtitle {
    font-size: 20px;
    color: rgba(255, 255, 255, 0.9);
    max-width: 760px;
    margin: 0 0 40px;
    font-weight: 400;
}

.hero-buttons {
    display: flex;
    align-items: center;
    /* justify-content: center; */
    gap: 16px;
    margin-bottom: 64px;
}

.hero-metrics {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 16px;
    padding-top: 32px;
    border-top: 1px solid rgba(255, 255, 255, 0.2);
}

.hero-orbit-wrapper {
    position: relative;
    margin-left: auto;
    margin-right: auto;
    display: none;
    aspect-ratio: 1 / 1;
    width: 100%;
    max-width: 440px;
}

@media (min-width: 992px) {
    .hero-orbit-wrapper {
        display: block;
    }
}

.orbit-ring-0 {
    position: absolute;
    inset: 0;
    border-radius: 9999px;
    border: 1px solid rgba(255, 255, 255, 0.18);
}

.orbit-ring-1 {
    position: absolute;
    inset: 3rem;
    border-radius: 9999px;
    border: 1px dashed rgba(255, 255, 255, 0.22);
    animation: spinOrbit 40s linear infinite;
}

.orbit-ring-2 {
    position: absolute;
    inset: 6rem;
    border-radius: 9999px;
    border: 1px solid rgba(255, 255, 255, 0.15);
}

@keyframes spinOrbit {
    from {
        transform: rotate(0deg);
    }

    to {
        transform: rotate(360deg);
    }
}

.orbit-center-core {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    display: flex;
    height: 120px;
    width: 120px;
    align-items: center;
    justify-content: center;
    border-radius: 24px;
    background: linear-gradient(135deg, var(--primary-blue) 0%, var(--accent-orange) 100%);
    font-size: 28px;
    font-weight: 800;
    color: #FFFFFF;
    letter-spacing: -0.5px;
    box-shadow: 0 0 50px rgba(255, 107, 53, 0.5), inset 0 0 15px rgba(255, 255, 255, 0.3);
    z-index: 2;
}

.orbit-node {
    position: absolute;
    display: flex;
    height: 80px;
    width: 80px;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    border-radius: 18px;
    border: 1px solid rgba(255, 255, 255, 0.25);
    background: rgba(255, 255, 255, 0.12);
    color: #FFFFFF;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.2);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    transform: translate(-50%, -50%);
    transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    cursor: pointer;
    z-index: 3;
}

.orbit-node:hover {
    transform: translate(-50%, -50%) scale(1.12);
    background: rgba(255, 255, 255, 0.25);
    border-color: var(--accent-orange);
    box-shadow: 0 12px 40px rgba(255, 107, 53, 0.4);
}

.orbit-node svg {
    color: #FFD2A8;
    transition: color 0.2s ease;
}

.orbit-node:hover svg {
    color: #FFFFFF;
}

.orbit-node span {
    margin-top: 4px;
    font-size: 11px;
    font-weight: 600;
    line-height: 1.2;
    text-align: center;
}


/* Section Header Common */
.section-header {
    text-align: center;
    max-width: 768px;
    margin: 0 auto 56px;
}

.section-header .heading-h2 {
    margin-top: 12px;
    color: var(--text-primary);
}

.section-header p {
    margin-top: 16px;
    color: var(--text-secondary);
    font-size: 16px;
}

/* About Section */
.about-section {
    padding: 96px 0;
    background-color: var(--bg-light);
    border-bottom: 1px solid var(--border-default);
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 48px;
    align-items: center;
}

.about-visual {
    position: relative;
    /* border-radius: var(--radius-feature); */
    /* overflow: hidden; */
    border: 1px solid var(--border-default);
    box-shadow: var(--shadow-prominent);
}

.about-img {
    width: 100%;
    height: 420px;
    object-fit: cover;
    transition: transform 0.5s ease;
    border-radius: var(--radius-feature);
}

.about-visual:hover .about-img {
    transform: scale(1.03);
}

.about-float-card {
    position: absolute;
    bottom: -24px;
    right: -24px;
    border-radius: var(--radius-card);
    padding: 20px;
    box-shadow: var(--shadow-prominent);
    display: inline;
    width: auto;
    background-image: linear-gradient(135deg, oklch(55% .24 260) 0%, oklch(72% .19 50) 100%);
    text-align: left;
}

.about-tags {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 10px;
    margin-top: 16px;
}

.tag-item {
    padding: calc(var(--spacing) * 3);
    background-color: #fff;
    border: 1px solid oklch(92% .015 250);
    border-radius: 8px;
    font-size: 13px;
    font-weight: 500;
    color: var(--text-primary);
    display: flex;
    align-items: center;
    gap: 6px;
    transition: var(--transition-default);
    box-shadow: 0 4px 24px -8px oklch(20% .05 260/.08);
}

.tag-item:hover {
    border-color: var(--primary-blue);
    color: var(--primary-blue);
}

/* Solutions Section */
.solutions-section {
    padding: 96px 0;
    background-image: linear-gradient(180deg, oklch(98% .01 250) 0%, oklch(100% 0 0) 100%);
}

section#solutions .card-feature {
    padding: 32px;
}

.icon-box {
    width: 55px;
    height: 55px;
    border-radius: var(--radius-card);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 24px;
    transition: var(--transition-default);
    background-image: linear-gradient(135deg, oklch(55% .24 260) 0%, oklch(72% .19 50) 100%);
    color: #fff;
}

.card-feature:hover .icon-blue {
    background-color: var(--primary-blue);
    color: #FFFFFF;
}

.card-feature:hover .icon-orange {
    background-color: var(--accent-orange);
    color: #FFFFFF;
}

.card-feature:hover .icon-purple {
    background-color: var(--accent-purple);
    color: #FFFFFF;
}

.solution-list {
    list-style: none;
    margin-top: 20px;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.solution-list li {
    font-size: 13px;
    font-weight: 500;
    color: var(--text-secondary);
    display: flex;
    align-items: center;
    gap: 8px;
}

.card-link {
    margin-top: 24px;
    padding-top: 16px;
    border-top: 1px solid var(--border-default);
    font-size: 13px;
    font-weight: 700;
    color: var(--primary-blue);
    display: inline-flex;
    align-items: center;
    gap: 6px;
}

/* Industry Section */
.industries-section {
    padding: 96px 0;
    background-color: var(--bg-light);
    border-bottom: 1px solid var(--border-default);
}

/* 2. LÃƒÆ’Ã†â€™Ãƒâ€ Ã¢â‚¬â„¢ÃƒÆ’Ã¢â‚¬Â ÃƒÂ¢Ã¢â€šÂ¬Ã¢â€žÂ¢ÃƒÆ’Ã†â€™Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡Ãƒâ€šÃ‚Â¬ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â ÃƒÆ’Ã†â€™Ãƒâ€ Ã¢â‚¬â„¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬Ãƒâ€¦Ã‚Â¡ÃƒÆ’Ã†â€™ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â°ÃƒÆ’Ã†â€™Ãƒâ€ Ã¢â‚¬â„¢ÃƒÆ’Ã¢â‚¬Â ÃƒÂ¢Ã¢â€šÂ¬Ã¢â€žÂ¢ÃƒÆ’Ã†â€™ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â¡ÃƒÆ’Ã†â€™Ãƒâ€ Ã¢â‚¬â„¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬Ãƒâ€¦Ã‚Â¡ÃƒÆ’Ã†â€™ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â»ÃƒÆ’Ã†â€™Ãƒâ€ Ã¢â‚¬â„¢ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã†â€™Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬Ãƒâ€¦Ã‚Â¡ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â¬ÃƒÆ’Ã†â€™ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Âºi Responsive Grid */
.industries-section .grid-container {
    margin-top: 3rem;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
}

@media (min-width: 640px) {
    .industries-section .grid-container {
        grid-template-columns: repeat(3, 1fr);
    }
}

/* Responsive cho MÃƒÆ’Ã†â€™Ãƒâ€ Ã¢â‚¬â„¢ÃƒÆ’Ã¢â‚¬Â ÃƒÂ¢Ã¢â€šÂ¬Ã¢â€žÂ¢ÃƒÆ’Ã†â€™ÃƒÂ¢Ã¢â€šÂ¬Ã‚Â ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬ÃƒÂ¢Ã¢â‚¬Å¾Ã‚Â¢ÃƒÆ’Ã†â€™Ãƒâ€ Ã¢â‚¬â„¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬Ãƒâ€¦Ã‚Â¡ÃƒÆ’Ã†â€™ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â n hÃƒÆ’Ã†â€™Ãƒâ€ Ã¢â‚¬â„¢ÃƒÆ’Ã¢â‚¬Â ÃƒÂ¢Ã¢â€šÂ¬Ã¢â€žÂ¢ÃƒÆ’Ã†â€™ÃƒÂ¢Ã¢â€šÂ¬Ã‚Â ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬ÃƒÂ¢Ã¢â‚¬Å¾Ã‚Â¢ÃƒÆ’Ã†â€™Ãƒâ€ Ã¢â‚¬â„¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬Ãƒâ€¦Ã‚Â¡ÃƒÆ’Ã†â€™ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â¬nh lÃƒÆ’Ã†â€™Ãƒâ€ Ã¢â‚¬â„¢ÃƒÆ’Ã¢â‚¬Â ÃƒÂ¢Ã¢â€šÂ¬Ã¢â€žÂ¢ÃƒÆ’Ã†â€™ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â¡ÃƒÆ’Ã†â€™Ãƒâ€ Ã¢â‚¬â„¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬Ãƒâ€¦Ã‚Â¡ÃƒÆ’Ã†â€™ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â»ÃƒÆ’Ã†â€™Ãƒâ€ Ã¢â‚¬â„¢ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã†â€™Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬Ãƒâ€¦Ã‚Â¡ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â¬ÃƒÆ’Ã†â€™ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Âºn (Md: >= 768px) */
@media (min-width: 768px) {
    .industries-section .grid-container {
        grid-template-columns: repeat(4, 1fr);
    }
}

/* 3. Style NÃƒÆ’Ã†â€™Ãƒâ€ Ã¢â‚¬â„¢ÃƒÆ’Ã¢â‚¬Â ÃƒÂ¢Ã¢â€šÂ¬Ã¢â€žÂ¢ÃƒÆ’Ã†â€™ÃƒÂ¢Ã¢â€šÂ¬Ã‚Â ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬ÃƒÂ¢Ã¢â‚¬Å¾Ã‚Â¢ÃƒÆ’Ã†â€™Ãƒâ€ Ã¢â‚¬â„¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬Ãƒâ€¦Ã‚Â¡ÃƒÆ’Ã†â€™ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Âºt / ThÃƒÆ’Ã†â€™Ãƒâ€ Ã¢â‚¬â„¢ÃƒÆ’Ã¢â‚¬Â ÃƒÂ¢Ã¢â€šÂ¬Ã¢â€žÂ¢ÃƒÆ’Ã†â€™ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â¡ÃƒÆ’Ã†â€™Ãƒâ€ Ã¢â‚¬â„¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬Ãƒâ€¦Ã‚Â¡ÃƒÆ’Ã†â€™ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚ÂºÃƒÆ’Ã†â€™Ãƒâ€ Ã¢â‚¬â„¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬Ãƒâ€¦Ã‚Â¡ÃƒÆ’Ã†â€™ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â» (Card Button) */
.industries-section .card-btn {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.75rem;
    border-radius: calc(var(--radius) + 8px);
    border: 1px solid oklch(92% .015 250);
    background-color: #ffffff;
    padding: calc(var(--spacing) * 6);
    box-shadow: 0 4px 24px -8px oklch(20% .05 260/.08);
    transition: all 0.2s cubic-bezier(0.4, 0, 0.2, 1);
    cursor: pointer;
    outline: none;
    width: 100%;
}

.industries-section .card-btn:hover {
    transform: translateY(-0.25rem);
    border-color: rgba(37, 99, 235, 0.4);
    box-shadow: var(--shadow-hover);
}

/* 4. Khung chÃƒÆ’Ã†â€™Ãƒâ€ Ã¢â‚¬â„¢ÃƒÆ’Ã¢â‚¬Â ÃƒÂ¢Ã¢â€šÂ¬Ã¢â€žÂ¢ÃƒÆ’Ã†â€™ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â¡ÃƒÆ’Ã†â€™Ãƒâ€ Ã¢â‚¬â„¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬Ãƒâ€¦Ã‚Â¡ÃƒÆ’Ã†â€™ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â»ÃƒÆ’Ã†â€™Ãƒâ€ Ã¢â‚¬â„¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬Ãƒâ€¦Ã‚Â¡ÃƒÆ’Ã†â€™ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â©a BiÃƒÆ’Ã†â€™Ãƒâ€ Ã¢â‚¬â„¢ÃƒÆ’Ã¢â‚¬Â ÃƒÂ¢Ã¢â€šÂ¬Ã¢â€žÂ¢ÃƒÆ’Ã†â€™ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â¡ÃƒÆ’Ã†â€™Ãƒâ€ Ã¢â‚¬â„¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬Ãƒâ€¦Ã‚Â¡ÃƒÆ’Ã†â€™ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â»ÃƒÆ’Ã†â€™Ãƒâ€ Ã¢â‚¬â„¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬Ãƒâ€šÃ‚Â ÃƒÆ’Ã†â€™Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡Ãƒâ€šÃ‚Â¬ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¾Ãƒâ€šÃ‚Â¢u tÃƒÆ’Ã†â€™Ãƒâ€ Ã¢â‚¬â„¢ÃƒÆ’Ã¢â‚¬Â ÃƒÂ¢Ã¢â€šÂ¬Ã¢â€žÂ¢ÃƒÆ’Ã†â€™Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡Ãƒâ€šÃ‚Â¬ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â ÃƒÆ’Ã†â€™Ãƒâ€ Ã¢â‚¬â„¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬Ãƒâ€¦Ã‚Â¡ÃƒÆ’Ã†â€™ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â°ÃƒÆ’Ã†â€™Ãƒâ€ Ã¢â‚¬â„¢ÃƒÆ’Ã¢â‚¬Â ÃƒÂ¢Ã¢â€šÂ¬Ã¢â€žÂ¢ÃƒÆ’Ã†â€™ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â¡ÃƒÆ’Ã†â€™Ãƒâ€ Ã¢â‚¬â„¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬Ãƒâ€¦Ã‚Â¡ÃƒÆ’Ã†â€™ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â»ÃƒÆ’Ã†â€™Ãƒâ€ Ã¢â‚¬â„¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬Ãƒâ€¦Ã‚Â¡ÃƒÆ’Ã†â€™ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â£ng Icon */
.industries-section .icon-wrapper {
    display: flex;
    height: calc(var(--spacing) * 14);
    width: calc(var(--spacing) * 14);
    align-items: center;
    justify-content: center;
    border-radius: 0.75rem;
    background-color: rgba(37, 99, 235, 0.1);
    color: #2563eb;
    transition: background-color 0.2s ease, color 0.2s ease;
}

.industries-section .card-btn:hover .icon-wrapper {
    color: #ffffff;
    background-image: linear-gradient(135deg, oklch(55% .24 260) 0%, oklch(72% .19 50) 100%);
}

.industries-section .icon-wrapper svg {
    width: calc(var(--spacing) * 7);
    height: calc(var(--spacing) * 7);
}

/* 5. NhÃƒÆ’Ã†â€™Ãƒâ€ Ã¢â‚¬â„¢ÃƒÆ’Ã¢â‚¬Â ÃƒÂ¢Ã¢â€šÂ¬Ã¢â€žÂ¢ÃƒÆ’Ã†â€™ÃƒÂ¢Ã¢â€šÂ¬Ã‚Â ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬ÃƒÂ¢Ã¢â‚¬Å¾Ã‚Â¢ÃƒÆ’Ã†â€™Ãƒâ€ Ã¢â‚¬â„¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬Ãƒâ€¦Ã‚Â¡ÃƒÆ’Ã†â€™ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â£n vÃƒÆ’Ã†â€™Ãƒâ€ Ã¢â‚¬â„¢ÃƒÆ’Ã¢â‚¬Â ÃƒÂ¢Ã¢â€šÂ¬Ã¢â€žÂ¢ÃƒÆ’Ã†â€™Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡Ãƒâ€šÃ‚Â¬ÃƒÆ’Ã¢â‚¬Â¦Ãƒâ€šÃ‚Â¾ÃƒÆ’Ã†â€™Ãƒâ€ Ã¢â‚¬â„¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬Ãƒâ€šÃ‚Â ÃƒÆ’Ã†â€™Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡Ãƒâ€šÃ‚Â¬ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¾Ãƒâ€šÃ‚Â¢n bÃƒÆ’Ã†â€™Ãƒâ€ Ã¢â‚¬â„¢ÃƒÆ’Ã¢â‚¬Â ÃƒÂ¢Ã¢â€šÂ¬Ã¢â€žÂ¢ÃƒÆ’Ã†â€™ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â¡ÃƒÆ’Ã†â€™Ãƒâ€ Ã¢â‚¬â„¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬Ãƒâ€¦Ã‚Â¡ÃƒÆ’Ã†â€™ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚ÂºÃƒÆ’Ã†â€™Ãƒâ€ Ã¢â‚¬â„¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬Ãƒâ€¦Ã‚Â¡ÃƒÆ’Ã†â€™ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â£n */
.industries-section .card-label {
    font-size: 14px;
    font-weight: 600;
    color: #1f2937;
}

/* Reasons Section */
.reasons-section {
    padding: 96px 0;
    background-image: linear-gradient(180deg, oklch(98% .01 250) 0%, oklch(100% 0 0) 100%);
}

/* Workflow Section */
.workflow-section {
    padding: 60px 0;
    background-color: var(--bg-light);
    border-bottom: 1px solid var(--border-default);
}

.step-num {
    font-size: 32px;
    font-weight: 800;
    margin-bottom: 4px;
}

.step-num.blue {
    color: var(--primary-blue);
}

.step-num.orange {
    color: var(--accent-orange);
}

.step-tag {
    font-size: 10px;
    font-weight: 800;
    color: var(--text-tertiary);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    display: block;
    margin-bottom: 6px;
}

/* Case Studies */
.casestudies-section {
    padding: 96px 0;
    background-color: var(--bg-subtle);
    border-bottom: 1px solid var(--border-default);
}

.case-box {
    /* background-color: var(--bg-subtle); */
    /* padding: 16px; */
    /* border-radius: var(--radius-card); */
    /* border: 1px solid var(--border-default); */
    margin-bottom: 12px;
}

.case-label {
    font-size: 13px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    display: block;
    margin-bottom: 4px;
}

.case-label.orange {
    color: #777777;
}

.case-label.blue {
    color: #626262;
}

.case-metric {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 13px;
    font-weight: 600;
    color: var(--text-secondary);
    margin-top: 6px;
}

.card-standard {
    background: var(--bg-light);
    border: 1px solid var(--border-default);
    border-radius: var(--radius-card);
    padding: 24px;
    box-shadow: var(--shadow-elevated);
    transition: var(--transition-default);
}

.card-standard:hover {
    box-shadow: var(--shadow-raised);
    transform: translateY(-2px);
}

.card-feature {
    background: var(--bg-light);
    border: 1px solid var(--border-default);
    border-radius: var(--radius-feature);
    /* padding: 32px; */
    box-shadow: var(--shadow-elevated);
    transition: var(--transition-default);
    overflow: hidden;
}

.card-feature .item {
    background-image: linear-gradient(135deg, oklch(55% .24 260) 0%, oklch(72% .19 50) 100%);
    aspect-ratio: 16 / 10;
    position: relative;
    overflow: hidden;
}

.card-feature .iframe {
    padding: 30px;
}

.card-feature .iframe .subheading-h3 {
    color: oklch(72% .19 50);
    font-size: 14px;
    font-weight: 500;
    text-transform: uppercase;
}

.card-feature .item .bg-gradient-brands .absolute_bg {
    background-image: linear-gradient(oklch(100% 0 0 / .4) 1px, #0000 1px), linear-gradient(90deg, oklch(100% 0 0 / .4) 1px, #0000 1px);
    inset: calc(var(--spacing) * 0);
    position: absolute;
    background-size: 24px 24px;
    opacity: .2;
}

.card-feature .item .bg-gradient-brands .badge-purple {
    position: absolute;
    bottom: 10px;
    left: 20px;
    background: #fff;
    z-index: 20;
    font-weight: 600;
    font-size: 15px;
    color: oklch(55% .24 260);
}

.card-feature:hover {
    box-shadow: var(--shadow-prominent);
    transform: translateY(-4px);
}

.card-gradient-accent {
    text-align: center;
}

.card-gradient-accent .bg-absolute {
    background-color: color-mix(in oklab, #000 30%, transparent);
    inset: calc(var(--spacing) * 0);
    position: absolute;
}

.card-gradient-accent .bg-absolute1 {
    opacity: .2;
    background-size: 40px 40px;
    background-image: linear-gradient(oklch(100% 0 0 / .4) 1px, #0000 1px), linear-gradient(90deg, oklch(100% 0 0 / .4) 1px, #0000 1px);
    inset: calc(var(--spacing) * 0);
    position: absolute;
}

.card-gradient-accent .bg-absolutes {
    background: linear-gradient(135deg, oklch(32% .18 265) 0%, oklch(50% .22 260) 55%, oklch(68% .2 50) 100%);
    box-shadow: 0 20px 60px -20px color-mix(in oklab, oklch(55% .24 260) 45%, transparent);
    border-radius: 1.5rem;
    overflow: hidden;
    aspect-ratio: 16 / 9;
    position: relative;
    max-width: 1024px;
    margin: auto;
    margin-top: 40px;
}

.card-gradient-accent .text-white {
    position: absolute;
    color: #ffffff;
    left: calc(var(--spacing) * 6);
    bottom: calc(var(--spacing) * 6);
    text-align: left;
}

.card-gradient-accent .text-white .text-xs {
    opacity: .8;
    text-transform: uppercase;
    font-weight: 600;
}

/* Video Showcase */
.video-section {
    padding: 64px 0;
    background-color: var(--bg-light);
    border-bottom: 1px solid var(--border-default);
}

/* Clients Marquee */
.clients-section {
    padding: 64px 0;
    text-align: center;
    background-image: linear-gradient(180deg, oklch(98% .01 250) 0%, oklch(100% 0 0) 100%);
    border-bottom: 1px solid var(--border-default);
}

.clients-grid {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 48px;
    flex-wrap: wrap;
    opacity: 0.7;
    margin-top: 50px;
}

.client-logo {
    font-size: 14px;
    font-weight: 800;
    color: #1b1b1b;
    transition: var(--transition-default);
    background: var(--bg-light);
    border: 1px solid var(--border-default);
    border-radius: var(--radius-card);
    padding: 24px;
    display: block;
    margin: 0px 15px;
}

.client-logo:hover {
    color: var(--primary-blue);
}

/* Blog Insights */
.insights-section {
    padding: 96px 0;
    background-color: var(--bg-light);
    border-bottom: 1px solid var(--border-default);
}
.blog-section {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #f8fafc;
}

section.blog-section .tag-item {
    /* border: none; */
    background: transparent;
    box-shadow: none;
    border-radius: 20px;
}

.blog-header {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-end;
  justify-content: space-between;
  gap: 1.5rem;
}

.blog-card {
    padding: 0;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.blog-thumb {
    height: 200px;
    position: relative;
    overflow: hidden;
    background-color: var(--bg-subtle);
}

.blog-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.blog-card:hover .blog-thumb img {
    transform: scale(1.05);
}

.blog-badge {
    position: absolute;
    top: 16px;
    left: 16px;
    padding: 4px 12px;
    border-radius: var(--radius-btn);
    font-size: 10px;
    font-weight: 800;
    color: #FFFFFF;
    text-transform: uppercase;
}

.blog-content {
    padding: 24px;
}

/* Call To Action Banner */
.cta-section {
    padding: 80px 0;
    color: #FFFFFF;
    text-align: center;
    background-image: linear-gradient(135deg, oklch(24% .16 265), oklch(32% .19 260));
}

section.cta-section .hero-buttons {
    justify-content: center;
}

/* Footer */
.site-footer {
    background-color: var(--bg-light);
    color: var(--text-secondary);
    padding-top: 64px;
    padding-bottom: 32px;
    border-top: 1px solid var(--border-default);
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 40px;
    padding-bottom: 48px;
    border-bottom: 1px solid var(--border-default);
}

.footer-col h4 {
    font-size: 12px;
    font-weight: 700;
    color: var(--text-primary);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 16px;
}

.footer-links {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 10px;
    font-size: 13px;
    font-weight: 500;
}

.footer-links li {
    display: flex;
    align-items: center;
    font-size: 14px;
}

.footer-links li svg {
    width: calc(var(--spacing) * 4);
    height: calc(var(--spacing) * 4);
    margin-right: 10px;
}

.footer-links a:hover {
    color: var(--primary-blue);
}

.footer-bottom {
    padding-top: 32px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    font-size: 12px;
}

/* Modals */
.modal {
    position: fixed;
    inset: 0;
    z-index: 100;
    background-color: rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(4px);
    display: none;
    align-items: center;
    justify-content: center;
    padding: 16px;
}

.modal.active {
    display: flex;
}

.modal-card {
    position: relative;
    width: 100%;
    max-width: 520px;
    background-color: var(--bg-light);
    border: 1px solid var(--border-default);
    border-radius: var(--radius-feature);
    padding: 32px;
    box-shadow: var(--shadow-extreme);
}

.modal-close {
    position: absolute;
    top: 20px;
    right: 20px;
    padding: 8px;
    border-radius: 50%;
    color: var(--text-tertiary);
    transition: var(--transition-default);
}

.modal-close:hover {
    color: var(--text-primary);
    background-color: var(--bg-subtle);
}

.form-group {
    margin-bottom: 16px;
    text-align: left;
}

.form-group label {
    display: block;
    font-size: 13px;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 6px;
}

.input-text, .select-box {
    width: 100%;
    padding: 12px 16px;
    border-radius: var(--radius-input);
    border: 1px solid var(--border-default);
    font-size: 14px;
    font-family: inherit;
    color: var(--text-primary);
    outline: none;
    transition: var(--transition-default);
}

.input-text:focus, .select-box:focus {
    border-color: var(--primary-blue);
    box-shadow: 0px 0px 0px 3px rgba(0, 82, 204, 0.1);
}
.sub-title {
  font-size: 0.875rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--accent);
}

.main-title {
  margin-top: 0.75rem;
  font-size: 1.875rem;
  font-weight: 700;
  color: var(--text-main);
  line-height: 1.2;
}

.tag-list {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.tag-item:hover {
  border-color: var(--primary);
  color: var(--primary);
}

/* --- Blog Grid --- */
.blog-grid {
  margin-top: 2.5rem;
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
}

/* --- Article Cards --- */
.article-card {
  border: 1px solid oklch(92% .015 250);
  border-radius: 1rem;
  overflow: hidden;
  box-shadow: var(--shadow-card);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  cursor: pointer;
}

.article-card:hover {
  transform: translateY(-0.25rem);
  box-shadow: var(--shadow-brand);
}

.card-thumbnail {
  width: 100%;
  aspect-ratio: 16 / 10;
  background: linear-gradient(135deg, oklch(55% .24 260) 0%, oklch(72% .19 50) 100%);
}

.card-body {
  padding: 1.5rem;
}

.category {
  font-size: 14px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: oklch(72% .19 50);
}

.article-title {
  margin-top: 0.5rem;
  font-size: 18px;
  font-weight: 700;
  line-height: 1.375;
  transition: color 0.2s ease;
}

.article-card:hover .article-title {
  color: oklch(55% .24 260);
}

.article-desc {
  margin-top: 0.5rem;
  font-size: 14px;
  line-height: 1.5;
  color: oklch(50% .03 260);
}

/* --- Responsive (Tablet & Desktop) --- */
@media (min-width: 768px) {
  .blog-section {
    padding-top: 7rem;
    padding-bottom: 7rem;
  }

  .main-title {
    font-size: 3rem;
  }

  .blog-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}


/* Responsive Media Queries */
@media (max-width: 1024px) {
    .display-h1 {
        font-size: 48px;
    }

    .heading-h2 {
        font-size: 32px;
    }

    .grid-3, .grid-4 {
        grid-template-columns: repeat(2, 1fr);
    }

    .grid-6 {
        grid-template-columns: repeat(3, 1fr);
    }

    .about-grid {
        grid-template-columns: 1fr;
    }

    .footer-grid {
        grid-template-columns: 1fr 1fr;
    }

    .nav-links {
        display: none;
    }

    .menu-toggle {
        display: block;
    }
}

@media (max-width: 768px) {
    .container {
        padding-left: 16px;
        padding-right: 16px;
    }

    .display-h1 {
        font-size: 36px;
    }

    .heading-h2 {
        font-size: 28px;
    }

    .hero-subtitle {
        font-size: 16px;
    }

    .grid-2, .grid-3, .grid-4, .grid-6 {
        grid-template-columns: 1fr;
    }

    .hero-buttons {
        flex-direction: column;
        width: 100%;
    }

    .hero-buttons .btn-primary, .hero-buttons .btn-secondary {
        width: 100%;
    }

    .hero-metrics ,.about-tags{
        grid-template-columns: repeat(2, 1fr);
    }

    .footer-grid {
        grid-template-columns: 1fr;
    }

    .footer-bottom {
        flex-direction: column;
        gap: 12px;
        text-align: center;
    }
    .bg-gradient-brand{
        display: none;
    }
    .about-float-card{
        right: 0;
    }
}

.slider-wrapper {
    overflow: hidden;
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
}