/* ===================================================
   OTEGRITY CONSULTING — STYLES
   =================================================== */

/* --- Custom Properties --- */
:root {
    --primary-navy: #003366;
    --primary-blue: #0A94DB;
    --primary-blue-hover: #0880C2;
    --accent-gold: #FFEE00;
    --accent-gold-hover: #E6D600;
    --accent-orange: #E6D600;
    --emblem-blue: #0000FF;
    --text-dark: #1A1A2E;
    --text-heading: #0D1B2A;
    --text-body: #475569;
    --text-light: #94A3B8;
    --bg-white: #FFFFFF;
    --bg-light: #F5F7FA;
    --bg-dark: #003366;
    --border-light: #E2E8F0;
    --border-card: #EDF0F4;
    --shadow-sm: 0 1px 3px rgba(0,0,0,0.08);
    --shadow-md: 0 4px 16px rgba(0,0,0,0.1);
    --shadow-lg: 0 8px 32px rgba(0,0,0,0.12);
    --shadow-card: 0 2px 12px rgba(0,0,0,0.06);
    --radius-sm: 6px;
    --radius-md: 10px;
    --radius-lg: 16px;
    --radius-xl: 24px;
    --radius-full: 9999px;
    --font-heading: 'Poppins', sans-serif;
    --font-body: 'Inter', sans-serif;
    --transition: 0.3s ease;
    --container-max: 1240px;
}

/* --- Reset --- */
*,
*::before,
*::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    -webkit-text-size-adjust: 100%;
    overflow-x: hidden;
    scrollbar-width: thin;
    scrollbar-color: rgba(10,22,40,0.15) transparent;
}

body {
    font-family: var(--font-body);
    font-size: 16px;
    line-height: 1.6;
    color: var(--text-body);
    background: var(--bg-white);
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

/* Scrollbar styling */
::-webkit-scrollbar {
    width: 6px;
}
::-webkit-scrollbar-track {
    background: transparent;
}
::-webkit-scrollbar-thumb {
    background: rgba(10,22,40,0.15);
    border-radius: 3px;
}
::-webkit-scrollbar-thumb:hover {
    background: rgba(10,22,40,0.3);
}

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

a {
    text-decoration: none;
    color: inherit;
    transition: color var(--transition);
}

ul, ol {
    list-style: none;
}

button {
    cursor: pointer;
    border: none;
    background: none;
    font-family: inherit;
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    color: var(--text-heading);
    line-height: 1.2;
    font-weight: 700;
}

/* --- Container --- */
.container {
    width: 100%;
    max-width: var(--container-max);
    margin: 0 auto;
    padding: 0 24px;
}

/* --- Utility Classes --- */
.text-blue { color: var(--primary-blue); }
.text-gold { color: var(--accent-gold); }

.text-underline {
    position: relative;
    display: inline-block;
}
.text-underline::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: -4px;
    width: 100%;
    height: 3px;
    background: var(--accent-gold);
    border-radius: 2px;
}

/* --- Buttons --- */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: 14px;
    padding: 12px 24px;
    border-radius: var(--radius-full);
    transition: all var(--transition);
    white-space: nowrap;
}

.btn-primary {
    background: linear-gradient(135deg, #0A94DB, #0759A8);
    color: #fff;
    padding: 15px 16px 15px 30px;
    font-size: 15px;
    font-weight: 600;
    letter-spacing: 0.3px;
    border-radius: var(--radius-full);
    box-shadow:
        0 6px 24px rgba(10,148,219,0.28),
        0 2px 6px rgba(0,0,0,0.08),
        inset 0 1px 0 rgba(255,255,255,0.15);
    position: relative;
    overflow: hidden;
    gap: 16px;
}
.btn-primary::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.15), transparent);
    transition: left 0.5s ease;
}
.btn-primary:hover {
    background: linear-gradient(135deg, #1BA8F0 0%, #0A94DB 100%);
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(10,148,219,0.35), 0 2px 6px rgba(0,0,0,0.1);
}
.btn-primary:hover::before {
    left: 100%;
}

.btn-nav {
    background: var(--primary-blue);
    color: white;
    font-size: 14px;
    padding: 10px 10px 10px 22px;
    font-weight: 600;
    letter-spacing: 0.2px;
    gap: 10px;
}
.btn-nav:hover {
    background: var(--primary-blue-hover);
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(10,148,219,0.3);
}

.btn-outline-white {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: 14px;
    padding: 12px 28px;
    border-radius: var(--radius-full);
    border: 2px solid white;
    color: white;
    background: transparent;
    transition: all var(--transition);
}
.btn-outline-white:hover {
    background: white;
    color: var(--primary-navy);
}

/* ===================================================
   HEADER
   =================================================== */
.header {
    position: fixed;
    top: 14px;
    left: 50%;
    transform: translateX(-50%);
    width: calc(100% - 40px);
    max-width: 1320px;
    z-index: 1000;
    background: rgba(255,255,255,0.95);
    border: 1px solid rgba(226,232,240,0.5);
    border-radius: 50px;
    box-shadow: 0 4px 30px rgba(0,0,0,0.07), 0 0 0 1px rgba(10,148,219,0.05);
    padding: 0 10px;
    transition: background 0.4s cubic-bezier(0.4, 0, 0.2, 1),
                border-color 0.4s cubic-bezier(0.4, 0, 0.2, 1),
                box-shadow 0.4s cubic-bezier(0.4, 0, 0.2, 1),
                backdrop-filter 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}
.header.scrolled {
    background: rgba(255,255,255,0.95);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-color: rgba(226,232,240,0.5);
    box-shadow: 0 4px 30px rgba(0,0,0,0.07), 0 0 0 1px rgba(10,148,219,0.05);
}
.header .nav-link {
    color: #0a1628;
    font-weight: 600;
    transition: color var(--transition);
}
.header .nav-link:hover,
.header .nav-link.active {
    color: #0A94DB;
}
.header .nav-link.active::after {
    width: 100%;
    height: 3px;
    background: #0A94DB;
    bottom: -2px;
}
.header .mobile-toggle span {
    background: #0a1628;
}
.header .btn-nav {
    background: var(--primary-blue);
    color: #fff;
}
.header .btn-nav:hover {
    background: var(--primary-blue-hover);
}

.nav {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 60px;
}

.logo {
    display: flex;
    align-items: center;
    gap: 10px;
    flex-shrink: 0;
}
.logo-icon {
    height: 40px;
    width: auto;
    object-fit: contain;
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 36px;
}

.nav-link {
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: 16px;
    color: var(--text-body);
    padding: 8px 0;
    position: relative;
    display: inline-flex;
    align-items: center;
    gap: 4px;
    letter-spacing: 0.2px;
}
.nav-link::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 0;
    height: 2.5px;
    background: var(--primary-blue);
    border-radius: 2px;
    transition: width var(--transition);
}
.nav-link:hover,
.nav-link.active {
    color: var(--primary-blue);
}
.nav-link:hover::after,
.nav-link.active::after {
    width: 100%;
}

.has-dropdown {
    position: relative;
}
.dropdown {
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%) translateY(12px);
    min-width: 440px;
    background: rgba(255,255,255,0.96);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-radius: 16px;
    border: 1px solid rgba(226,232,240,0.6);
    box-shadow: 0 12px 48px rgba(0,0,0,0.1), 0 0 0 1px rgba(10,148,219,0.06), 0 0 24px rgba(10,148,219,0.04);
    padding: 10px;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 100;
}
.dropdown::before {
    content: '';
    position: absolute;
    top: -7px;
    left: 50%;
    transform: translateX(-50%) rotate(45deg);
    width: 14px;
    height: 14px;
    background: rgba(255,255,255,0.96);
    border-left: 1px solid rgba(226,232,240,0.6);
    border-top: 1px solid rgba(226,232,240,0.6);
    border-radius: 3px 0 0 0;
}
.has-dropdown:hover .dropdown {
    opacity: 1;
    visibility: visible;
    transform: translateX(-50%) translateY(4px);
}
.dropdown li + li {
    border-top: 1px solid rgba(226,232,240,0.5);
}
.dropdown li a {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 14px 16px;
    font-size: 14px;
    color: #0a1628;
    border-radius: 12px;
    transition: all 0.25s ease;
}
.dropdown li a:hover {
    background: rgba(10,148,219,0.05);
    color: #0a1628;
    padding-left: 16px;
}
.dropdown-icon {
    width: 46px;
    height: 46px;
    border-radius: 12px;
    background: rgba(10,148,219,0.07);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    color: #0A94DB;
    transition: all 0.3s ease;
}
.dropdown li a:hover .dropdown-icon {
    background: rgba(10,148,219,0.12);
}
.dropdown-icon svg {
    width: 22px;
    height: 22px;
}
.dropdown-text {
    flex: 1;
    min-width: 0;
}
.dropdown-title {
    font-weight: 700;
    font-size: 15px;
    color: #0a1628;
    display: block;
    margin-bottom: 2px;
}
.dropdown-desc {
    font-size: 13px;
    color: #64748b;
    font-weight: 400;
}
.dropdown-chevron {
    flex-shrink: 0;
    color: #c0c8d4;
    transition: all 0.25s ease;
}
.dropdown li a:hover .dropdown-chevron {
    color: #0A94DB;
    transform: translateX(3px);
}
.dropdown-active-bar {
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 3px;
    height: 32px;
    background: #0A94DB;
    border-radius: 0 3px 3px 0;
}

.mobile-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    padding: 8px;
    z-index: 1001;
}
.mobile-toggle span {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--text-heading);
    border-radius: 2px;
    transition: all var(--transition);
}
.mobile-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}
.mobile-toggle.active span:nth-child(2) {
    opacity: 0;
}
.mobile-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
}

/* ===================================================
   HERO
   =================================================== */
.hero {
    position: sticky;
    top: 0;
    padding-top: 76px;
    background: url('../assets/images/hero/hero1.webp') center center/cover no-repeat;
    background-color: #eaf4fb;
    overflow: hidden;
    height: 100vh;
    min-height: 700px;
    max-height: 100vh;
    display: flex;
    flex-direction: column;
    z-index: 1;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background:
        linear-gradient(
            to right,
            rgba(234,244,251,0.88) 0%,
            rgba(234,244,251,0.75) 18%,
            rgba(255,255,255,0.45) 38%,
            rgba(255,255,255,0.15) 55%,
            rgba(255,255,255,0.05) 70%,
            transparent 85%
        ),
        linear-gradient(
            to bottom,
            rgba(234,244,251,0.1) 0%,
            transparent 30%,
            transparent 80%,
            rgba(234,244,251,0.08) 100%
        );
    z-index: 1;
}

.hero::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 5%;
    width: 320px;
    height: 320px;
    background: radial-gradient(circle, rgba(10,148,219,0.08) 0%, transparent 70%);
    border-radius: 50%;
    z-index: 1;
    pointer-events: none;
}

.main-content-wrapper {
    position: relative;
    z-index: 5;
    background: #fff;
    border-radius: 24px 24px 0 0;
    margin-top: 0;
    box-shadow: 0 -8px 40px rgba(0,0,0,0.08);
}

.hero-container {
    position: relative;
    z-index: 2;
    flex: 1;
    display: flex;
    align-items: center;
    padding-top: 10px;
    padding-bottom: 40px;
}

.hero-content {
    max-width: 600px;
    position: relative;
    padding-top: 20px;
}

.hero-subtitle {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 12px;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: #078FD3;
    margin-bottom: 16px;
    padding: 10px 22px;
    position: relative;
    background: rgba(10, 148, 219, 0.06);
    border: 1px solid rgba(10, 148, 219, 0.12);
    border-radius: 50px;
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
}
.subtitle-dash {
    display: inline-block;
    width: 28px;
    height: 3px;
    background: #FFD800;
    border-radius: 2px;
    flex-shrink: 0;
}

.hero-title {
    font-size: 52px;
    font-weight: 800;
    line-height: 1.08;
    color: #0a1628;
    margin-bottom: 14px;
    letter-spacing: -1px;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.04);
}
.hero-title .text-blue {
    color: #0A94DB;
    -webkit-text-fill-color: #0A94DB;
}

.hero-desc {
    font-size: 16px;
    color: #1a2a3f;
    margin-bottom: 16px;
    line-height: 1.7;
    font-weight: 500;
    max-width: 520px;
}

.hero-pillars {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 16px;
    flex-wrap: wrap;
}
.pillar {
    display: flex;
    align-items: center;
    gap: 10px;
    background: linear-gradient(135deg, rgba(255,255,255,0.95), rgba(240,248,255,0.9));
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    padding: 10px 20px 10px 10px;
    border-radius: 12px;
    border: 1px solid rgba(10, 148, 219, 0.12);
    box-shadow: 0 4px 16px rgba(10, 148, 219, 0.08), 0 1px 3px rgba(0, 0, 0, 0.04);
    transition: all 0.3s ease;
}
.pillar:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 28px rgba(10, 148, 219, 0.15), 0 2px 6px rgba(0, 0, 0, 0.06);
    border-color: rgba(10, 148, 219, 0.3);
}
.pillar-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 10px;
    background: linear-gradient(135deg, #0A94DB, #0670a8);
    flex-shrink: 0;
    box-shadow: 0 3px 10px rgba(10, 148, 219, 0.25);
}
.pillar-icon svg {
    stroke: #fff !important;
}
.pillar-icon svg circle,
.pillar-icon svg path,
.pillar-icon svg rect,
.pillar-icon svg line {
    stroke: #fff !important;
}
.pillar span {
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 12px;
    letter-spacing: 1.8px;
    color: #0a1628;
}
.pillar-plus {
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 20px;
    color: var(--primary-blue);
    opacity: 0.5;
}

.hero-body {
    font-size: 15px;
    color: #1a2a3f;
    line-height: 1.7;
    margin-bottom: 20px;
    max-width: 540px;
    font-weight: 400;
}

.hero-cta {
    display: flex;
    align-items: center;
    gap: 24px;
    flex-wrap: wrap;
}

.btn-arrow-circle {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 34px;
    height: 34px;
    border-radius: 50%;
    background: rgba(255,255,255,0.2);
    flex-shrink: 0;
    transition: all var(--transition);
}
.btn-primary .btn-arrow-circle {
    background: rgba(255,255,255,0.2);
}
.btn-primary:hover .btn-arrow-circle {
    background: rgba(255,255,255,0.35);
    transform: translateX(2px);
}
.btn-nav .btn-arrow-circle {
    width: 28px;
    height: 28px;
    background: rgba(255,255,255,0.2);
}
.header .btn-nav .btn-arrow-circle {
    background: rgba(255,255,255,0.2);
    color: #fff;
}


/* ===================================================
   HERO FLOATING CONTACT CARD
   =================================================== */
.hero-contact-card {
    position: relative;
    z-index: 6;
    padding: 32px 0 0;
}

.contact-card-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    background: #fff;
    border-radius: var(--radius-xl);
    padding: 24px 36px;
    box-shadow:
        0 12px 40px rgba(0,0,0,0.08),
        0 4px 12px rgba(0,0,0,0.04);
    border: 1px solid rgba(226,232,240,0.6);
    position: relative;
}

.contact-card-left {
    display: flex;
    align-items: center;
    gap: 16px;
}

.contact-strip-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 48px;
    height: 48px;
    background: linear-gradient(135deg, #0A94DB, #0759A8);
    border-radius: var(--radius-md);
    flex-shrink: 0;
    color: #fff;
}

.contact-strip-title {
    font-size: 17px;
    font-weight: 700;
    color: #071A3D;
    margin-bottom: 3px;
    letter-spacing: -0.2px;
}
.contact-strip-text {
    font-size: 13px;
    color: #405675;
}

.contact-card-right {
    display: flex;
    align-items: center;
    gap: 16px;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 14px;
    color: #405675;
    padding: 10px 16px;
    transition: all var(--transition);
    white-space: nowrap;
    border-radius: var(--radius-md);
    border: 1px solid rgba(226,232,240,0.6);
}
.contact-item:hover {
    color: #0A94DB;
    border-color: rgba(10,148,219,0.3);
    background: rgba(10,148,219,0.04);
}
.contact-item-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 32px;
    height: 32px;
    background: rgba(10,148,219,0.08);
    border-radius: 50%;
    flex-shrink: 0;
    color: #0A94DB;
}

.contact-card-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 24px;
    background: linear-gradient(135deg, #0A94DB, #0759A8);
    color: #fff;
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: 14px;
    border-radius: var(--radius-full);
    transition: all var(--transition);
    white-space: nowrap;
    letter-spacing: 0.2px;
    box-shadow: 0 4px 16px rgba(10,148,219,0.25);
}
.contact-card-btn:hover {
    transform: translateY(-1px);
    box-shadow: 0 6px 24px rgba(10,148,219,0.35);
}

/* ===================================================
   SERVICES
   =================================================== */
.services {
    padding: 80px 0 60px;
    background: linear-gradient(180deg, #ffffff 0%, #f0f6fc 100%);
}

.section-label {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 12px;
    letter-spacing: 3px;
    color: var(--primary-blue);
    text-align: center;
    margin-bottom: 14px;
    text-transform: uppercase;
}
.section-label-line {
    display: inline-block;
    width: 28px;
    height: 2px;
    background: var(--primary-blue);
    border-radius: 2px;
}
.services .container {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.section-title {
    text-align: center;
    font-size: 36px;
    font-weight: 800;
    color: #0a1628;
    margin-bottom: 14px;
    line-height: 1.2;
    letter-spacing: -0.5px;
}
.section-title .text-blue {
    color: var(--primary-blue);
}

.section-subtitle {
    text-align: center;
    font-size: 16px;
    line-height: 1.7;
    color: #64748b;
    max-width: 600px;
    margin: 0 auto 44px;
}

.services-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
    max-width: 940px;
    margin: 0 auto;
}
.services-grid .service-card {
    width: calc(33.333% - 14px);
}

.service-card {
    --card-accent: #0A94DB;
    background: var(--bg-white);
    border-radius: 16px;
    border: 1px solid rgba(226, 232, 240, 0.5);
    transition: all 0.35s ease;
    display: flex;
    flex-direction: column;
    box-shadow: 0 4px 24px rgba(10, 148, 219, 0.08), 0 2px 8px rgba(0,0,0,0.04);
    overflow: hidden;
}
.service-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 16px 48px rgba(10,148,219,0.15), 0 4px 12px rgba(0,0,0,0.06);
    border-color: transparent;
}

.card-staffing { --card-accent: #0A94DB; }
.card-sap { --card-accent: #7C3AED; }
.card-ai { --card-accent: #2563EB; }
.card-accounting { --card-accent: #059669; }
.card-financial { --card-accent: #EA580C; }

.service-card-img {
    position: relative;
    height: 160px;
    overflow: visible;
}
.service-card-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
    border-radius: 16px 16px 0 0;
}
.service-card:hover .service-card-img img {
    transform: scale(1.06);
}

.service-card-badge {
    position: absolute;
    bottom: -20px;
    left: 50%;
    transform: translateX(-50%);
    width: 42px;
    height: 42px;
    background: var(--card-accent);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 16px rgba(0,0,0,0.15);
    z-index: 4;
    border: 3px solid #fff;
}
.service-card-badge svg {
    width: 20px;
    height: 20px;
}
.service-card-badge svg circle,
.service-card-badge svg path,
.service-card-badge svg rect {
    stroke: #fff;
}
.service-card-badge svg circle[fill="white"],
.service-card-badge svg rect[fill="white"] {
    fill: #fff;
}

.service-card-body {
    position: relative;
    z-index: 3;
    background: #fff;
    border-radius: 16px 16px 0 0;
    margin-top: -14px;
    padding: 36px 16px 14px;
    text-align: center;
    flex: 1;
    display: flex;
    flex-direction: column;
}
.service-card-body h3 {
    font-size: 15px;
    font-weight: 700;
    margin-bottom: 8px;
    color: var(--text-heading);
    line-height: 1.3;
}

.service-card-divider {
    width: 30px;
    height: 3px;
    background: var(--card-accent);
    border-radius: 2px;
    margin: 0 auto 6px;
}

.service-card-body p {
    font-size: 12px;
    line-height: 1.55;
    color: var(--text-body);
    margin-bottom: 10px;
    flex: 1;
    display: -webkit-box;
    -webkit-line-clamp: 4;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.service-link {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: 12px;
    color: var(--card-accent);
    transition: gap var(--transition), color var(--transition);
    margin-top: auto;
}
.service-link:hover {
    gap: 10px;
}

a.service-card-link {
    text-decoration: none;
    color: inherit;
    cursor: pointer;
}

.service-card::after {
    content: '';
    display: block;
    height: 4px;
    background: var(--card-accent);
}

/* ===================================================
   OTEGRITY DIFFERENCE
   =================================================== */
.difference {
    position: relative;
    padding: 56px 0 48px;
    background: #06102b;
    overflow: hidden;
}
.difference::before {
    content: '';
    position: absolute;
    inset: 0;
    background: url('../assets/images/others/otegrity_difference_background_image.webp') center/cover no-repeat;
    opacity: 0.85;
}
.difference::after {
    content: '';
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse 60% 50% at 10% 90%, rgba(59, 130, 246, 0.12) 0%, transparent 70%),
        radial-gradient(ellipse 40% 40% at 85% 15%, rgba(59, 130, 246, 0.08) 0%, transparent 60%);
    pointer-events: none;
}
.difference > .container {
    position: relative;
    z-index: 2;
}

.difference-grid {
    display: grid;
    grid-template-columns: 0.85fr 1.15fr;
    gap: 56px;
    align-items: center;
}

.difference-label {
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: 13px;
    letter-spacing: 3px;
    color: var(--accent-gold);
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    gap: 14px;
}
.difference-label-line {
    display: inline-block;
    width: 36px;
    height: 2px;
    background: var(--accent-gold);
}

.difference-title {
    font-size: 40px;
    font-weight: 800;
    color: white;
    line-height: 1.18;
    margin-bottom: 16px;
}

.difference-desc {
    font-size: 14.5px;
    line-height: 1.65;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 28px;
    max-width: 420px;
}

.difference-cta {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 14px 32px;
    border: 2px solid var(--primary-blue);
    border-radius: 50px;
    color: #fff;
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: 15px;
    text-decoration: none;
    transition: all 0.3s ease;
    background: transparent;
}
.difference-cta .cta-arrow {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 28px;
    height: 28px;
    background: var(--primary-blue);
    border-radius: 50%;
    color: #fff;
    font-size: 16px;
    transition: transform 0.3s ease;
}
.difference-cta:hover {
    background: var(--primary-blue);
    border-color: var(--primary-blue);
}
.difference-cta:hover .cta-arrow {
    transform: translateX(3px);
}

.difference-cards {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}

.diff-card {
    --diff-accent: #3b82f6;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 16px;
    padding: 24px 20px 18px;
    transition: all 0.35s ease;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    position: relative;
    overflow: hidden;
}
.diff-card::before {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: 16px;
    background: linear-gradient(180deg, rgba(255,255,255,0.03) 0%, transparent 60%);
    pointer-events: none;
}
.diff-card:hover {
    transform: translateY(-6px);
    background: rgba(255, 255, 255, 0.07);
    border-color: rgba(255, 255, 255, 0.15);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.diff-card-blue { --diff-accent: #3b82f6; }
.diff-card-purple { --diff-accent: #9333ea; }
.diff-card-teal { --diff-accent: #14b8a6; }
.diff-card-orange { --diff-accent: #f97316; }

.diff-card-icon {
    width: 62px;
    height: 62px;
    border: 2px solid var(--diff-accent);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 12px;
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.15), 0 0 30px color-mix(in srgb, var(--diff-accent) 15%, transparent);
    position: relative;
}

.diff-card-dot {
    display: block;
    width: 5px;
    height: 5px;
    border-radius: 50%;
    background: var(--diff-accent);
    margin-bottom: 10px;
    box-shadow: 0 0 8px color-mix(in srgb, var(--diff-accent) 60%, transparent);
}

.diff-card h3 {
    font-size: 16px;
    font-weight: 700;
    color: #fff;
    margin-bottom: 10px;
    line-height: 1.3;
}

.diff-card-divider {
    width: 32px;
    height: 2.5px;
    background: var(--diff-accent);
    margin: 0 auto 12px;
    border-radius: 2px;
}

.diff-card p {
    font-size: 13.5px;
    line-height: 1.65;
    color: rgba(255, 255, 255, 0.6);
    flex: 1;
}


/* ===================================================
   FAQ
   =================================================== */
.faq {
    padding: 72px 0;
    background: linear-gradient(180deg, #f5f9ff 0%, #edf3fb 100%);
    border-radius: 28px;
}

.faq-header {
    margin-bottom: 28px;
}

.faq-grid {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 40px;
    align-items: stretch;
}

.faq-label {
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 13px;
    letter-spacing: 3px;
    color: var(--primary-blue);
    margin-bottom: 8px;
}

.faq-heading {
    font-size: 32px;
    font-weight: 800;
    letter-spacing: -0.3px;
    color: var(--text-heading);
    margin-bottom: 28px;
    line-height: 1.2;
}

.faq-list {
    display: flex;
    flex-direction: column;
    gap: 0;
}

.faq-item {
    border: 1px solid rgba(226, 232, 240, 0.6);
    border-left: 3px solid var(--primary-blue);
    border-radius: 10px;
    margin-bottom: 10px;
    background: #fff;
    overflow: hidden;
    transition: all 0.3s ease;
    box-shadow: 0 1px 4px rgba(0, 0, 0, 0.03);
}
.faq-item:hover {
    border-color: rgba(10, 148, 219, 0.3);
    border-left-color: var(--primary-blue);
    box-shadow: 0 4px 16px rgba(10, 148, 219, 0.08);
}

.faq-question {
    display: flex;
    align-items: center;
    gap: 14px;
    width: 100%;
    padding: 16px 20px;
    font-family: var(--font-body);
    font-weight: 600;
    font-size: 15px;
    color: var(--text-heading);
    text-align: left;
    cursor: pointer;
    transition: all 0.3s ease;
}

.faq-q-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 32px;
    height: 32px;
    min-width: 32px;
    border-radius: 50%;
    background: #e8f4fd;
    font-size: 15px;
    font-weight: 700;
    color: var(--primary-blue);
    font-family: var(--font-heading);
}

.faq-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 26px;
    height: 26px;
    min-width: 26px;
    border-radius: 50%;
    background: #e8f4fd;
    font-size: 16px;
    font-weight: 500;
    color: var(--primary-blue);
    flex-shrink: 0;
    margin-left: auto;
    transition: all 0.3s ease;
}

.faq-item.active .faq-icon {
    background: var(--primary-blue);
    color: white;
    transform: rotate(45deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease, padding 0.3s ease;
}
.faq-answer p {
    padding: 0 20px 16px 66px;
    font-size: 14px;
    line-height: 1.7;
    color: var(--text-body);
}
.faq-item.active .faq-answer {
    max-height: 300px;
}

.faq-view-all {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: 14px;
    color: var(--primary-blue);
    margin-top: 20px;
    transition: gap 0.3s ease;
}
.faq-view-all:hover {
    gap: 12px;
}

/* FAQ CTA Card */
.faq-cta-card {
    position: relative;
    background: linear-gradient(160deg, #0a1628 0%, #0e2352 50%, #0a1a3a 100%);
    border-radius: 20px;
    overflow: hidden;
    padding: 44px 36px;
    display: flex;
    align-items: flex-start;
}

.faq-cta-bg {
    position: absolute;
    inset: 0;
    background: url('../assets/images/others/faq_section_card_background_image.webp') center bottom/cover no-repeat;
    opacity: 0.7;
}

.faq-cta-content {
    position: relative;
    z-index: 1;
}

.faq-cta-label {
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 12px;
    letter-spacing: 3px;
    color: var(--accent-gold);
    margin-bottom: 16px;
}

.faq-cta-divider {
    width: 40px;
    height: 3px;
    background: var(--primary-blue);
    margin-bottom: 24px;
    border-radius: 2px;
}

.faq-cta-title {
    font-size: 32px;
    font-weight: 800;
    color: white;
    line-height: 1.25;
    margin-bottom: 18px;
}

.faq-cta-text {
    font-size: 15px;
    line-height: 1.65;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 32px;
    max-width: 380px;
}

.faq-cta-btn {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 14px 32px;
    border: 2px solid rgba(255, 255, 255, 0.35);
    border-radius: 50px;
    color: #fff;
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: 15px;
    text-decoration: none;
    transition: all 0.3s ease;
    background: transparent;
    backdrop-filter: blur(8px);
}
.faq-cta-btn-arrow {
    font-size: 18px;
    transition: transform 0.3s ease;
}
.faq-cta-btn:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.6);
}
.faq-cta-btn:hover .faq-cta-btn-arrow {
    transform: translateX(3px);
}

/* ===================================================
   FOOTER
   =================================================== */
.footer {
    background: linear-gradient(180deg, #0a1628 0%, #060e1f 100%);
    color: rgba(255, 255, 255, 0.7);
    padding-top: 64px;
    position: relative;
    overflow: hidden;
}
.footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent 0%, rgba(10, 148, 219, 0.4) 50%, transparent 100%);
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.4fr 0.8fr 0.8fr 1fr;
    gap: 48px;
    padding-bottom: 48px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.07);
}

.footer-logo {
    margin-bottom: 20px;
}
.footer-logo .logo-icon {
    width: 200px;
    height: auto;
    object-fit: contain;
}
.footer-logo .logo-name {
    color: white;
    font-size: 20px;
}
.footer-logo .logo-sub {
    color: rgba(255, 255, 255, 0.5);
}

.footer-desc {
    font-size: 14px;
    line-height: 1.7;
    margin-bottom: 24px;
    color: rgba(255, 255, 255, 0.55);
}

.footer-socials {
    display: flex;
    gap: 10px;
}
.social-link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 38px;
    height: 38px;
    border-radius: 10px;
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
}
.social-link:hover {
    transform: translateY(-2px);
}
.social-link-linkedin {
    color: #0A66C2;
}
.social-link-linkedin:hover {
    background: rgba(10,102,194,0.15);
    border-color: rgba(10,102,194,0.3);
}
.social-link-facebook {
    color: #1877F2;
}
.social-link-facebook:hover {
    background: rgba(24,119,242,0.15);
    border-color: rgba(24,119,242,0.3);
}
.social-link-instagram {
    color: #E4405F;
}
.social-link-instagram:hover {
    background: rgba(228,64,95,0.15);
    border-color: rgba(228,64,95,0.3);
}

.footer-links h4,
.footer-contact h4 {
    font-size: 15px;
    font-weight: 700;
    color: white;
    margin-bottom: 22px;
    letter-spacing: 0.3px;
    position: relative;
    padding-bottom: 12px;
}
.footer-links h4::after,
.footer-contact h4::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 24px;
    height: 2px;
    background: var(--primary-blue);
    border-radius: 2px;
}
.footer-links ul {
    display: flex;
    flex-direction: column;
    gap: 12px;
}
.footer-links a {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.5);
    transition: all 0.3s ease;
}
.footer-links a:hover {
    color: white;
    padding-left: 4px;
}

.footer-contact ul {
    display: flex;
    flex-direction: column;
    gap: 16px;
}
.footer-contact li {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 14px;
    color: rgba(255, 255, 255, 0.5);
}
.footer-contact li svg {
    flex-shrink: 0;
    color: var(--primary-blue);
    opacity: 0.7;
}
.footer-contact a {
    color: rgba(255, 255, 255, 0.5);
    transition: color 0.3s ease;
}
.footer-contact a:hover {
    color: white;
}

.footer-bottom {
    padding: 22px 0;
}
.footer-bottom .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.footer-bottom p {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.35);
}
.footer-credit {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.35);
}
.footer-credit a {
    color: rgba(10, 148, 219, 0.7);
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
}
.footer-credit a:hover {
    color: var(--primary-blue);
}

/* ===================================================
   ANIMATIONS
   =================================================== */
[data-animate] {
    opacity: 0;
    transform: translateY(24px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}
[data-animate].visible {
    opacity: 1;
    transform: translateY(0);
}

/* ===================================================
   RESPONSIVE — TABLET (max-width: 1024px)
   =================================================== */
@media (max-width: 1024px) {
    .header {
        top: 10px;
        width: calc(100% - 24px);
        padding: 0 6px;
    }
    .nav-links {
        display: none;
        position: fixed;
        top: 76px;
        left: 0;
        right: 0;
        bottom: 0;
        background: var(--bg-white);
        flex-direction: column;
        align-items: flex-start;
        gap: 0;
        padding: 20px 24px;
        overflow-y: auto;
        z-index: 999;
    }
    .nav-links.open {
        display: flex;
    }
    .nav-links li {
        width: 100%;
    }
    .header .nav-link {
        display: flex;
        width: 100%;
        padding: 16px 0;
        font-size: 18px;
        border-bottom: 1px solid var(--border-light);
        color: var(--text-heading);
    }
    .header .nav-link.active {
        color: var(--primary-blue);
    }
    .nav-link::after { display: none; }

    .has-dropdown .dropdown {
        position: static;
        box-shadow: none;
        opacity: 1;
        visibility: visible;
        transform: none;
        display: none;
        padding: 8px 0 0 0;
        min-width: 0;
        border: none;
        background: transparent;
        backdrop-filter: none;
        -webkit-backdrop-filter: none;
        border-radius: 0;
    }
    .has-dropdown .dropdown::before { display: none; }
    .has-dropdown.open .dropdown {
        display: block;
    }
    .dropdown li + li { border-top: none; }
    .dropdown li a {
        padding: 10px 0;
        border-bottom: 1px solid var(--border-light);
        border-radius: 0;
        gap: 12px;
    }
    .dropdown-icon { width: 36px; height: 36px; }
    .dropdown-icon svg { width: 18px; height: 18px; }
    .dropdown-chevron { display: none; }
    .dropdown-active-bar { display: none; }

    .btn-nav {
        display: inline-flex;
        padding: 7px 7px 7px 16px;
        font-size: 12px;
        order: 2;
    }
    .btn-nav .btn-arrow-circle {
        width: 24px;
        height: 24px;
    }

    .mobile-toggle {
        display: flex;
        order: 3;
    }

    .nav .logo {
        order: 1;
        flex: 1;
    }
    .nav .logo .logo-icon {
        height: 40px;
    }

    .hero {
        height: 100vh;
        min-height: 600px;
        background-size: cover;
        background-position: center right;
    }
    .hero-container {
        padding-bottom: 40px;
    }
    .hero-content {
        max-width: 100%;
    }
    .hero-title {
        font-size: 42px;
        letter-spacing: -0.5px;
    }
    .hero-desc {
        font-size: 15px;
        color: #1a2a3f;
    }
    .hero-body {
        font-size: 14px;
        color: #1a2a3f;
    }
    .pillar {
        padding: 8px 16px 8px 8px;
        border-radius: 10px;
    }
    .pillar-icon {
        width: 36px;
        height: 36px;
        border-radius: 9px;
    }
    .pillar span {
        font-size: 11.5px;
    }
    .hero-overlay {
        background:
            linear-gradient(
                to right,
                rgba(245,249,255,0.96) 0%,
                rgba(245,249,255,0.88) 25%,
                rgba(255,255,255,0.6) 50%,
                rgba(255,255,255,0.25) 75%,
                rgba(255,255,255,0.05) 100%
            ),
            linear-gradient(
                to bottom,
                rgba(255,255,255,0.15) 0%,
                rgba(255,255,255,0) 50%,
                rgba(255,255,255,0.1) 100%
            );
    }

    .contact-card-inner {
        flex-direction: column;
        gap: 20px;
        text-align: center;
        padding: 28px 24px;
    }
    .contact-card-left {
        flex-direction: column;
    }
    .contact-card-right {
        flex-direction: column;
        gap: 10px;
        width: 100%;
    }
    .contact-item {
        justify-content: center;
        width: 100%;
    }
    .contact-card-btn {
        width: 100%;
        justify-content: center;
    }

    .services-grid {
        gap: 16px;
    }
    .services-grid .service-card {
        width: calc(33.333% - 12px);
    }

    .difference-grid {
        grid-template-columns: 1fr;
        gap: 40px;
        text-align: center;
    }
    .difference-label {
        justify-content: center;
    }
    .difference-desc {
        margin-left: auto;
        margin-right: auto;
    }
    .difference-cta {
        margin: 0 auto;
    }

    .faq-grid {
        grid-template-columns: 1fr;
    }
    .faq-cta-card {
        min-height: 400px;
    }

    .footer-grid {
        grid-template-columns: 1fr 1fr;
    }
}

/* ===================================================
   RESPONSIVE — MOBILE (max-width: 768px)
   =================================================== */
@media (max-width: 768px) {
    .container {
        padding: 0 16px;
    }

    .hero {
        position: relative;
        height: auto;
        min-height: 100vh;
        background-size: cover;
        background-position: center bottom;
    }
    .main-content-wrapper {
        margin-top: 0;
        border-radius: 0;
        box-shadow: none;
    }
    .hero-container {
        padding-top: 16px;
        padding-bottom: 40px;
    }
    .hero-content {
        text-align: center;
        display: flex;
        flex-direction: column;
        align-items: center;
    }
    .hero-overlay {
        background:
            linear-gradient(
                to bottom,
                rgba(245,249,255,0.97) 0%,
                rgba(245,249,255,0.94) 25%,
                rgba(248,251,255,0.86) 50%,
                rgba(255,255,255,0.55) 75%,
                rgba(255,255,255,0.18) 100%
            );
    }
    .hero-title {
        font-size: 34px;
        letter-spacing: -0.5px;
    }
    .hero-subtitle {
        font-size: 10px;
        margin-bottom: 18px;
        letter-spacing: 2px;
        padding: 8px 20px;
    }
    .subtitle-dash {
        display: none;
    }
    .hero-desc {
        font-size: 14.5px;
        margin-bottom: 18px;
        color: #1a2a3f;
        max-width: 440px;
    }
    .hero-body {
        font-size: 13.5px;
        margin-bottom: 24px;
        line-height: 1.7;
        color: #1a2a3f;
        max-width: 440px;
    }
    .hero-pillars {
        margin-bottom: 20px;
        gap: 10px;
        justify-content: center;
    }
    .pillar {
        padding: 10px 16px 10px 10px;
        border-radius: 12px;
    }
    .pillar-icon {
        width: 36px;
        height: 36px;
        border-radius: 9px;
    }
    .pillar span {
        font-size: 11.5px;
        letter-spacing: 1.5px;
    }
    .pillar-plus {
        font-size: 16px;
    }
    .nav .logo .logo-icon {
        height: 36px;
    }
    .btn-nav {
        padding: 6px 6px 6px 14px;
        font-size: 11px;
        gap: 6px;
    }
    .btn-nav .btn-arrow-circle {
        width: 22px;
        height: 22px;
    }
    .btn-nav .btn-arrow-circle svg {
        width: 11px;
        height: 11px;
    }
    .hero-cta {
        flex-direction: column;
        align-items: center;
        gap: 16px;
        width: 100%;
        max-width: 380px;
    }
    .btn-primary {
        width: 100%;
        justify-content: center;
        padding: 13px 14px 13px 22px;
        font-size: 14px;
    }

    .services {
        padding: 60px 0 40px;
    }
    .services-grid {
        gap: 14px;
    }
    .services-grid .service-card {
        width: calc(50% - 8px);
    }
    .section-title {
        font-size: 28px;
    }
    .section-subtitle {
        font-size: 14px;
        margin-bottom: 28px;
    }
    .service-card-img {
        height: 140px;
    }
    .service-card-badge {
        width: 42px;
        height: 42px;
        bottom: -20px;
    }
    .service-card-badge svg {
        width: 18px;
        height: 18px;
    }
    .service-card-body {
        padding: 32px 12px 12px;
        margin-top: -12px;
    }
    .service-card-body h3 {
        font-size: 14px;
        margin-bottom: 6px;
    }
    .service-card-body p {
        font-size: 12px;
        margin-bottom: 8px;
    }
    .service-link {
        font-size: 12px;
    }

    .difference {
        padding: 48px 0;
    }
    .difference-title {
        font-size: 28px;
    }
    .difference-desc {
        font-size: 14px;
    }
    .difference-cards {
        grid-template-columns: 1fr;
        gap: 16px;
    }
    .diff-card {
        padding: 24px 20px 20px;
    }
    .diff-card-icon {
        width: 60px;
        height: 60px;
    }

    .faq {
        padding: 48px 0;
        border-radius: 20px;
    }
    .faq-heading {
        font-size: 24px;
    }
    .faq-question {
        font-size: 14px;
        padding: 14px 16px;
        gap: 10px;
    }
    .faq-q-icon {
        width: 28px;
        height: 28px;
        min-width: 28px;
        font-size: 13px;
    }
    .faq-answer p {
        padding-left: 54px;
    }
    .faq-cta-card {
        padding: 32px 24px;
        min-height: 340px;
    }
    .faq-cta-title {
        font-size: 24px;
    }
    .faq-cta-btn {
        padding: 12px 24px;
        font-size: 14px;
    }

    .footer-grid {
        grid-template-columns: 1fr;
        gap: 32px;
    }
    .footer-bottom .container {
        flex-direction: column;
        gap: 8px;
        text-align: center;
    }
}

/* ===================================================
   RESPONSIVE — SMALL MOBILE (max-width: 480px)
   =================================================== */
@media (max-width: 480px) {
    .hero-title {
        font-size: 28px;
        margin-bottom: 12px;
        letter-spacing: -0.3px;
    }
    .hero-subtitle {
        font-size: 9px;
        letter-spacing: 1.5px;
        margin-bottom: 14px;
        padding: 7px 16px;
    }
    .hero-desc {
        font-size: 13px;
        margin-bottom: 14px;
        max-width: 100%;
    }
    .hero-body {
        font-size: 12.5px;
        margin-bottom: 18px;
        max-width: 100%;
    }
    .hero-pillars {
        gap: 8px;
        margin-bottom: 14px;
    }
    .pillar {
        padding: 8px 12px 8px 8px;
        border-radius: 10px;
    }
    .pillar-icon {
        width: 32px;
        height: 32px;
        border-radius: 8px;
    }
    .pillar span {
        font-size: 10.5px;
        letter-spacing: 1.2px;
    }
    .pillar-plus {
        font-size: 14px;
    }
    .nav .logo .logo-icon {
        height: 32px;
    }
    .btn-nav {
        padding: 5px 5px 5px 12px;
        font-size: 10px;
    }
    .btn-nav .btn-arrow-circle {
        width: 20px;
        height: 20px;
    }
    .hero-cta {
        max-width: 100%;
    }
    .btn-primary {
        padding: 12px 12px 12px 20px;
        font-size: 13px;
    }
    .btn-primary .btn-arrow-circle {
        width: 30px;
        height: 30px;
    }

    .services-grid .service-card {
        width: 100%;
    }
    .section-title {
        font-size: 24px;
    }
    .section-label {
        font-size: 11px;
        letter-spacing: 3px;
    }
    .service-card-img {
        height: 140px;
    }

}
