/* =======================
   RESET
======================= */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: "Segoe UI", sans-serif;
}

/* =======================
   BODY
======================= */
body {
    background: #F7F7FB;
    color: #2B2B2B;
}

/* =======================
   ADVANCED NAVBAR
======================= */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;

    transition:
        background 0.35s ease,
        backdrop-filter 0.35s ease,
        box-shadow 0.35s ease;
}


.glass {
    background: rgba(255, 255, 255, 0.75);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.nav-container {
    max-width: 1200px;
    margin: auto;
    padding: 14px 40px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}
/* =======================
   NAVBAR SCROLL STATE
======================= */
.navbar.scrolled {
    background: rgba(255, 255, 255, 0.85);
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
    box-shadow: 0 8px 30px rgba(0,0,0,0.08);
}

/* Text color changes after scroll */
.navbar.scrolled .nav-links a {
    color: #2B2B2B;
}

.navbar.scrolled .nav-links a::after {
    background: linear-gradient(90deg, #7A2D8C, #A45BBF);
}

.navbar.scrolled .code {
    color: #7A2D8C;
}

.logo-text {
    display: flex;
    align-items: center;
    gap: 8px;
    cursor: pointer;
}


.logo-text .code {
    font-size: 40px; /* BIGGER */
    font-weight: 800;
    color: #ffffff;
}


.logo-text .brand {
    font-size: 32px;
    font-weight: 500;
    margin-left: 10px;

    background: linear-gradient(90deg, #7A2D8C, #A45BBF);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;

    opacity: 0;
    transform: translateX(-12px);
    transition: opacity 0.35s ease 0.2s,
                transform 0.35s cubic-bezier(0.22, 1, 0.36, 1) 0.2s;
}

.logo-text:hover .brand {
    opacity: 1;
    transform: translateX(0);
}
.navbar-hero {
    position: absolute;
    top: 0;
    width: 100%;
    z-index: 10;
    background: transparent;
}

.navbar-hero .nav-links a {
    color: #ffffff;
}

.navbar-hero .nav-links a::after {
    background: linear-gradient(90deg, #ffffff, #A45BBF);
}

.navbar-hero .nav-cta {
    background: linear-gradient(135deg, #7A2D8C, #A45BBF);
}
.hero-video {
    position: relative;
    height: 100vh;
    width: 100%;
    overflow: hidden;
    color: #ffffff;
}

/* Video */
.hero-bg-video {
    position: absolute;
    top: 50%;
    left: 50%;
    min-width: 100%;
    min-height: 100%;
    transform: translate(-50%, -50%);
    object-fit: cover;
    z-index: 1;
}

/* Dark overlay */
.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        90deg,
        rgba(0,0,0,0.75),
        rgba(0,0,0,0.3)
    );
    z-index: 2;
}

/* Content */
.hero-content {
    position: relative;
    z-index: 3;
    max-width: 900px;
    padding: 140px 80px;
}

.hero-content h1 {
    font-size: 4.5rem;
    font-weight: 800;
    line-height: 1.05;
    margin-bottom: 25px;
}

.hero-content .accent {
    color: #A45BBF;
}

.hero-content p {
    font-size: 1.3rem;
    max-width: 520px;
    line-height: 1.6;
}
.btn-hero {
    display: inline-block;
    margin-top: 35px;
    padding: 14px 34px;
    font-size: 1rem;
    font-weight: 600;

    background: transparent;
    color: #ffffff;
    border: 2px solid #A45BBF;
    border-radius: 30px;

    transition: background 0.3s ease, color 0.3s ease;
}

.btn-hero:hover {
    background: #A45BBF;
    color: #000;
}



/* NAV MENU */
.nav-menu {
    display: flex;
    align-items: center;
    gap: 30px;
}

/* NAV LINKS */
.nav-links {
    list-style: none;
    display: flex;
    gap: 26px;
}

.nav-links a {
    position: relative;
    text-decoration: none;
    color: #2B2B2B;
    font-weight: 500;
    padding: 6px 0;
    transition: color 0.3s ease;
}

/* UNDERLINE ANIMATION */
.nav-links a::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -4px;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, #7A2D8C, #A45BBF);
    transition: width 0.3s ease;
}

.nav-links a:hover::after,
.nav-links a.active::after {
    width: 100%;
}

.nav-links a:hover,
.nav-links a.active {
    color: #7A2D8C;
}

/* CTA BUTTON */
.nav-cta {
    padding: 10px 22px;
    border-radius: 30px;
    text-decoration: none;
    font-weight: 600;
    color: #ffffff;

    background: linear-gradient(135deg, #7A2D8C, #A45BBF);
    box-shadow: 0 8px 20px rgba(122, 45, 140, 0.3);

    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.nav-cta:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 30px rgba(122, 45, 140, 0.4);
}

/* =======================
   ENTERPRISE HERO (NO VIDEO)
======================= */
.hero-enterprise {
    position: relative;
    min-height: 100vh;
    padding: 180px 80px 120px;
    color: #ffffff;
    overflow: hidden;
}

/* Gradient Base */
.hero-bg-gradient {
    position: absolute;
    inset: 0;
    background: radial-gradient(
        circle at 20% 30%,
        rgba(164, 91, 191, 0.35),
        transparent 55%
    ),
    linear-gradient(
        135deg,
        #0f0f14 0%,
        #151520 40%,
        #0b0b12 100%
    );
    z-index: 1;
}

/* Subtle Grid Overlay */
.hero-bg-grid {
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(255,255,255,0.04) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255,255,255,0.04) 1px, transparent 1px);
    background-size: 60px 60px;
    opacity: 0.4;
    z-index: 2;
}

/* Content */
.hero-enterprise-content {
    position: relative;
    z-index: 3;
    max-width: 880px;
}

/* Eyebrow */
.hero-eyebrow {
    display: inline-block;
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 1.2px;
    text-transform: uppercase;
    color: #A45BBF;
    margin-bottom: 22px;
}

/* Headline */
.hero-enterprise h1 {
    font-size: 4.2rem;
    font-weight: 800;
    line-height: 1.05;
    margin-bottom: 26px;
}

.hero-enterprise .accent {
    color: #A45BBF;
}

/* Description */
.hero-enterprise p {
    font-size: 1.3rem;
    line-height: 1.7;
    max-width: 640px;
    color: #e0e0e0;
}

/* Actions */
.hero-actions {
    display: flex;
    gap: 20px;
    margin-top: 40px;
}

/* Primary CTA */
.btn-primary {
    padding: 14px 36px;
    font-weight: 600;
    border-radius: 30px;
    background: linear-gradient(135deg, #7A2D8C, #A45BBF);
    color: #ffffff;
    text-decoration: none;
    box-shadow: 0 12px 35px rgba(164,91,191,0.4);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 18px 50px rgba(164,91,191,0.55);
}

/* Secondary CTA */
.btn-secondary {
    padding: 14px 34px;
    border-radius: 30px;
    border: 1px solid rgba(255,255,255,0.35);
    color: #ffffff;
    text-decoration: none;
    font-weight: 500;
    transition: background 0.3s ease, border 0.3s ease;
}

.btn-secondary:hover {
    background: rgba(255,255,255,0.1);
    border-color: rgba(255,255,255,0.6);
}

/* Trust Strip */
.hero-trust {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
    margin-top: 60px;
}

.hero-trust span {
    padding: 8px 16px;
    font-size: 0.85rem;
    border-radius: 20px;
    background: rgba(255,255,255,0.08);
    border: 1px solid rgba(255,255,255,0.15);
    color: #dcdcdc;
}
/* =======================
   EXPERTISE – ENTERPRISE DESIGN
======================= */
.expertise {
    padding: 140px 60px;
    background: #ffffff;
}

.expertise-header {
    max-width: 820px;
    margin-bottom: 90px;
}

.expertise-header h2 {
    font-size: 3.2rem;
    font-weight: 800;
    margin-bottom: 20px;
}

.expertise-header .accent {
    color: #7A2D8C;
}

.expertise-header p {
    font-size: 1.25rem;
    color: #444;
    line-height: 1.7;
}

/* GRID */
.expertise-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 50px;
}

/* ITEM */
.expertise-item {
    position: relative;
    padding: 40px 36px;
    background: #f8f8fc;
    border-left: 4px solid #7A2D8C;
    transition: transform 0.35s ease, box-shadow 0.35s ease;
}

.expertise-item:hover {
    transform: translateY(-6px);
    box-shadow: 0 22px 50px rgba(0,0,0,0.08);
}

/* INDEX */
.expertise-index {
    font-size: 0.85rem;
    font-weight: 700;
    color: #A45BBF;
    letter-spacing: 1px;
}

/* TITLE */
.expertise-item h3 {
    font-size: 1.45rem;
    margin: 14px 0 12px;
}

/* DESCRIPTION */
.expertise-item p {
    font-size: 1.05rem;
    color: #555;
    line-height: 1.6;
    margin-bottom: 16px;
}

/* LIST */
.expertise-item ul {
    padding-left: 18px;
}

.expertise-item li {
    margin-bottom: 8px;
    font-size: 0.95rem;
    color: #555;
}

/* TAG STRIP */
.expertise-tags {
    margin-top: 70px;
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
}

.expertise-tags span {
    padding: 10px 18px;
    font-size: 0.9rem;
    border-radius: 30px;
    background: #ffffff;
    border: 1px solid rgba(0,0,0,0.08);
    box-shadow: 0 8px 22px rgba(0,0,0,0.05);
}

/* Responsive */
@media (max-width: 900px) {
    .hero-enterprise {
        padding: 160px 40px 100px;
    }

    .hero-enterprise h1 {
        font-size: 3.2rem;
    }

    .hero-actions {
        flex-direction: column;
        align-items: flex-start;
    }
}

/* =======================
   HERO SECTION
======================= */
.hero {
    height: 80vh;
    background: linear-gradient(135deg, #7A2D8C, #A45BBF);
    color: #ffffff;

    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;

    padding: 20px;
}

.hero h1 {
    font-size: 3rem;
    margin-bottom: 15px;
}

.hero p {
    font-size: 1.2rem;
    max-width: 600px;
}

/* BUTTON */
.btn {
    margin-top: 25px;
    padding: 12px 30px;
    background: #F7931E;
    color: #ffffff;
    text-decoration: none;
    border-radius: 30px;
    font-weight: 600;
    transition: background 0.3s ease;
}

.btn:hover {
    background: #e68110;
}
.capabilities {
    padding: 120px 60px;
    background: #ffffff;
}

.capabilities-header {
    max-width: 800px;
    margin-bottom: 70px;
}

.capabilities-header h2 {
    font-size: 3rem;
    font-weight: 800;
    margin-bottom: 20px;
}

.capabilities-header .accent {
    color: #7A2D8C;
}

.capabilities-header p {
    font-size: 1.2rem;
    line-height: 1.7;
    color: #444;
}

.capabilities-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 40px;
}

.cap-card {
    padding: 35px;
    border-left: 4px solid #7A2D8C;
    background: #f8f8fc;
    transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.cap-card h3 {
    font-size: 1.3rem;
    margin-bottom: 12px;
}

.cap-card p {
    font-size: 1rem;
    line-height: 1.6;
    color: #555;
}

.cap-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.08);
}
.case-studies {
    padding: 120px 60px;
    background: #0c0c0c;
    color: #ffffff;
}

.case-header h2 {
    font-size: 3rem;
    font-weight: 800;
    margin-bottom: 70px;
}

.case-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
}

.case-card {
    background: #151515;
    padding: 40px;
    border-radius: 12px;
    transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.case-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 30px 60px rgba(164,91,191,0.25);
}

.case-tag {
    display: inline-block;
    margin-bottom: 15px;
    font-size: 0.85rem;
    color: #A45BBF;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.case-card h3 {
    font-size: 1.4rem;
    margin-bottom: 15px;
}

.case-card p {
    font-size: 1rem;
    line-height: 1.6;
    opacity: 0.9;
}
.approach {
    padding: 140px 60px;
    background: linear-gradient(
        180deg,
        #ffffff 0%,
        #f6f6fb 100%
    );
}

.approach-header {
    max-width: 800px;
    margin-bottom: 80px;
}

.approach-header h2 {
    font-size: 3.2rem;
    font-weight: 800;
    margin-bottom: 20px;
}

.approach-header .accent {
    color: #7A2D8C;
}

.approach-header p {
    font-size: 1.25rem;
    color: #444;
    line-height: 1.7;
}

/* Steps */
.approach-steps {
    position: relative;
    isolation: isolate;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 50px;
}

.step {
    position: relative;
    z-index: 2;
    padding: 40px 30px;
    background: #ffffff;
    border-radius: 16px;
    box-shadow: 0 15px 40px rgba(0,0,0,0.08);
    transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.step::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    height: 4px;
    width: 100%;
    background: linear-gradient(90deg, #7A2D8C, #A45BBF);
    border-radius: 16px 16px 0 0;
}

.step span {
    font-size: 2.4rem;
    font-weight: 900;
    color: #A45BBF;
}

.step h3 {
    margin: 15px 0 10px;
    font-size: 1.4rem;
}

.step p {
    color: #555;
    line-height: 1.6;
}

.step:hover {
    transform: translateY(-10px);
    box-shadow: 0 30px 60px rgba(0,0,0,0.12);
}

/* =======================
   SECURITY & COMPLIANCE
======================= */
.security {
    padding: 140px 60px;
    background: #0f0f14;
    color: #ffffff;
}

.security-content h2 {
    font-size: 3.2rem;
    font-weight: 800;
    margin-bottom: 25px;
}

.security .accent {
    color: #A45BBF;
}

.security-intro {
    font-size: 1.25rem;
    line-height: 1.7;
    opacity: 0.9;
    margin-bottom: 70px;
    max-width: 700px;
}

/* Grid */
.security-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 40px;
}

.security-item {
    background: linear-gradient(
        180deg,
        #1a1a22,
        #12121a
    );
    padding: 40px 35px;
    border-radius: 16px;
    border: 1px solid rgba(255,255,255,0.05);
    transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.security-item h3 {
    font-size: 1.35rem;
    margin-bottom: 12px;
    color: #A45BBF;
}

.security-item p {
    color: #d0d0d0;
    line-height: 1.6;
}

.security-item:hover {
    transform: translateY(-8px);
    box-shadow: 0 30px 60px rgba(164,91,191,0.25);
}


/* =======================
   SERVICES
======================= */
.services {
    padding: 70px 60px;
    text-align: center;
}

.services h2 {
    font-size: 2.2rem;
    margin-bottom: 40px;
    color: #7A2D8C;
}

.service-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 25px;
}

.card {
    background: #ffffff;
    padding: 30px;
    border-radius: 15px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
}

.card h3 {
    margin-bottom: 10px;
    color: #7A2D8C;
}
/* =======================
   FINAL CTA
======================= */
.final-cta {
    padding: 140px 60px;
    background: linear-gradient(
        135deg,
        #7A2D8C,
        #A45BBF
    );
    color: #ffffff;
}

.final-cta-content {
    max-width: 900px;
}

.final-cta h2 {
    font-size: 3.8rem;
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 25px;
}

.final-cta .accent {
    color: #ffffff;
}

.final-cta p {
    font-size: 1.3rem;
    max-width: 600px;
    line-height: 1.7;
    margin-bottom: 40px;
}

.cta-btn {
    display: inline-block;
    padding: 14px 38px;
    font-size: 1rem;
    font-weight: 600;

    background: #ffffff;
    color: #7A2D8C;
    text-decoration: none;
    border-radius: 30px;

    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.cta-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 30px rgba(0,0,0,0.25);
}
.container {
    max-width: 1200px;
    margin: auto;
}
/* =======================
   FLIP CARDS – EXPERTISE
======================= */

.flip-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 35px;
    margin-top: 60px;
}

/* Card container */
.flip-card {
    perspective: 1200px;
    height: 360px;
}

/* Inner wrapper */
.flip-inner {
    position: relative;
    width: 100%;
    height: 100%;
    transition: transform 0.8s cubic-bezier(0.4, 0.2, 0.2, 1);
    transform-style: preserve-3d;
}

/* Flip on hover */
.flip-card:hover .flip-inner {
    transform: rotateY(180deg);
}

/* Front & Back */
.flip-front,
.flip-back {
    position: absolute;
    inset: 0;
    border-radius: 18px;
    backface-visibility: hidden;
    overflow: hidden;
    box-shadow: 0 20px 45px rgba(0,0,0,0.12);
}

/* FRONT */
.flip-front {
    background: #000;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
}

.flip-front img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: brightness(0.6);
}

.flip-front h3 {
    position: relative;
    z-index: 2;
    padding: 22px;
    font-size: 1.4rem;
    color: #ffffff;
}

/* BACK */
.flip-back {
    background: linear-gradient(
        135deg,
        #7A2D8C,
        #A45BBF
    );
    color: #ffffff;
    transform: rotateY(180deg);

    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 35px;
}

.flip-back h3 {
    font-size: 1.5rem;
    margin-bottom: 15px;
}

.flip-back p {
    font-size: 1.05rem;
    line-height: 1.6;
    opacity: 0.95;
}
.extra-expertise {
    margin-top: 60px;
    text-align: center;
}

.extra-expertise span {
    display: block;
    font-size: 1.1rem;
    font-weight: 600;
    color: #7A2D8C;
    margin-bottom: 25px;
}

.expertise-tags {
    display: flex;
    justify-content: center;
    gap: 25px;
    flex-wrap: wrap;
}

.tag {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 14px 22px;
    border-radius: 40px;

    background: #ffffff;
    box-shadow: 0 10px 30px rgba(0,0,0,0.08);

    font-weight: 500;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.tag img {
    width: 22px;
    height: 22px;
}

.tag:hover {
    transform: translateY(-4px);
    box-shadow: 0 20px 40px rgba(164,91,191,0.25);
}

/* =======================
   FOOTER
======================= */
/* =======================
   ENTERPRISE FOOTER
======================= */
.enterprise-footer {
    background: #000;
    color: #d0d0d0;
    padding: 100px 60px 40px;
}

.footer-container {
    max-width: 1400px;
    margin: auto;
    display: grid;
    grid-template-columns: 1.6fr 1fr 1fr 1fr;
    gap: 80px;
}

/* LEFT */
.footer-left h2 {
    font-size: 2.8rem;
    font-weight: 300;
    margin-bottom: 35px;
    color: #ffffff;
}

.footer-left ul {
    list-style: none;
}

.footer-left li {
    margin-bottom: 18px;
}

.footer-left a {
    text-decoration: none;
    color: #bdbdbd;
    font-size: 1.15rem;
}

.footer-left a:hover {
    color: #ffffff;
}

/* COLUMNS */
.footer-column h4 {
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 25px;
    color: #ffffff;
}

.footer-column ul {
    list-style: none;
}

.footer-column li {
    margin-bottom: 14px;
    font-size: 0.95rem;
    color: #bdbdbd;
}

/* BOTTOM */
.footer-bottom {
    max-width: 1400px;
    margin: 80px auto 30px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.footer-brand {
    display: flex;
    align-items: center;
    gap: 10px;
}

.footer-brand .code {
    font-size: 30px;
    font-weight: 800;
    color: #A45BBF;
}

.footer-brand .brand {
    font-size: 22px;
    color: #ffffff;
}

.footer-social {
    display: flex;
    align-items: center;
    gap: 18px;
}

.footer-social span {
    margin-right: 8px;
    font-size: 0.9rem;
}

.footer-social img {
    width: 18px;
    filter: invert(1);
    opacity: 0.75;
}

.footer-social img:hover {
    opacity: 1;
}
/* =======================
   FOOTER LINK INTERACTIONS
======================= */
.enterprise-footer a {
    position: relative;
    display: inline-block;
    color: #bdbdbd;
    text-decoration: none;
    font-size: 0.95rem;
    transition: color 0.3s ease;
    cursor: pointer;
}

/* underline animation (same as navbar) */
.enterprise-footer a::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -5px;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, #7A2D8C, #A45BBF);
    transition: width 0.3s ease;
}

.enterprise-footer a:hover {
    color: #ffffff;
}

.enterprise-footer a:hover::after {
    width: 100%;
}
.footer-column li {
    margin-bottom: 14px;
}

.footer-column li:hover {
    transform: translateX(2px);
    transition: transform 0.25s ease;
}
.footer-left a {
    font-size: 1.15rem;
}

/* COPYRIGHT */
.footer-copy {
    text-align: center;
    font-size: 0.85rem;
    color: #888;
    margin-top: 30px;
}

/* =======================
   SERVICES HERO (DARK)
======================= */
/* =======================
   ANIMATED GRADIENT HERO
======================= */
.services-hero {
    position: relative;
    height: 80vh;
    padding: 160px 40px 60px;

    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;

    color: #ffffff;
    overflow: hidden;

    background: linear-gradient(
        120deg,
        #0c0c0f,
        #1a1a22,
        #3a1c5c,
        #7A2D8C
    );
    background-size: 300% 300%;
    animation: gradientShift 14s ease infinite;
}

/* Soft animated overlay glow */
.services-hero::before {
    content: "";
    position: absolute;
    inset: -20%;

    background: radial-gradient(
        circle at var(--x, 50%) var(--y, 50%),
        rgba(164,91,191,0.35),
        transparent 60%
    );

    transition: background-position 0.15s ease-out;
    z-index: 1;
}


/* Content stays above animation */
.services-hero h1,
.services-hero p {
    position: relative;
    z-index: 2;
}

/* Typography */
.services-hero h1 {
    font-size: 3.8rem;
    font-weight: 800;
    margin-bottom: 20px;
}

.services-hero .accent {
    color: #A45BBF;
}

.services-hero p {
    font-size: 1.25rem;
    max-width: 640px;
    line-height: 1.7;
    opacity: 0.95;
}
/* =======================
   NOISE TEXTURE OVERLAY
======================= */
.services-hero::after {
    content: "";
    position: absolute;
    inset: 0;

    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='2' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.04'/%3E%3C/svg%3E");

    mix-blend-mode: overlay;
    pointer-events: none;
    z-index: 2;

    animation: noiseShift 6s steps(8) infinite;
}

@keyframes noiseShift {
    0%   { transform: translate(0,0); }
    25%  { transform: translate(-2%, 1%); }
    50%  { transform: translate(1%, -2%); }
    75%  { transform: translate(-1%, -1%); }
    100% { transform: translate(0,0); }
}


/* =======================
   ANIMATIONS
======================= */
@keyframes gradientShift {
    0%   { background-position: 0% 50%; }
    50%  { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}

@keyframes glowMove {
    0%   { transform: translate(-5%, -5%); }
    100% { transform: translate(5%, 5%); }
}

.service-expand {
    padding: 120px 60px;
    background: #0b0b12;
    color: #fff;
}

.service-expand h2 {
    font-size: 3rem;
    margin-bottom: 50px;
}

.service-accordion {
    max-width: 900px;
}

.service-item {
    margin-bottom: 20px;
    border-radius: 14px;
    overflow: hidden;
    background: rgba(255,255,255,0.04);
    backdrop-filter: blur(10px);
}

.service-toggle {
    width: 100%;
    padding: 22px 26px;
    background: none;
    border: none;
    color: #fff;
    font-size: 1.15rem;
    display: flex;
    justify-content: space-between;
    cursor: pointer;
}

.service-toggle span {
    font-size: 1.5rem;
    color: #A45BBF;
}

.service-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease;
    padding: 0 26px;
}

.service-content ul {
    padding: 20px 0;
    line-height: 1.8;
    color: #d0d0d0;
}
/* =======================
   SERVICE DEEP DIVE (VIDEO STYLE)
======================= */
.service-expand {
    padding: 140px 60px;
    background: radial-gradient(
        circle at top left,
        #151526,
        #07070d
    );
    color: #ffffff;
}

.service-expand h2 {
    font-size: 3rem;
    margin-bottom: 60px;
}

/* Accordion container */
.service-accordion {
    max-width: 900px;
}

/* Item */
.service-item {
    position: relative;
    margin-bottom: 22px;
    border-radius: 18px;
    overflow: hidden;

    background: rgba(255,255,255,0.04);
    backdrop-filter: blur(14px);

    border-left: 4px solid transparent;
    transition: 
        border-color 0.35s ease,
        box-shadow 0.35s ease,
        transform 0.35s ease;
}

/* Hover glow */
.service-item:hover {
    border-color: #A45BBF;
    box-shadow: 0 20px 60px rgba(164,91,191,0.25);
    transform: translateY(-3px);
}

/* Toggle button */
.service-toggle {
    width: 100%;
    padding: 26px 30px;
    background: none;
    border: none;
    color: #ffffff;

    display: flex;
    justify-content: space-between;
    align-items: center;

    font-size: 1.15rem;
    cursor: pointer;
}

/* Title */
.service-toggle .title {
    font-weight: 500;
}

/* Plus / Minus icon */
.service-toggle .icon {
    font-size: 1.6rem;
    color: #A45BBF;
    transition: transform 0.35s ease;
}

/* Active icon rotation */
.service-item.active .icon {
    transform: rotate(45deg);
}

/* Content */
.service-content {
    max-height: 0;
    overflow: hidden;
    opacity: 0;
    transform: translateY(-6px);

    transition:
        max-height 0.5s ease,
        opacity 0.4s ease,
        transform 0.4s ease;

    padding: 0 30px;
}

/* Active content */
.service-item.active .service-content {
    opacity: 1;
    transform: translateY(0);
    padding-bottom: 24px;
}

/* List */
.service-content ul {
    padding: 10px 0 20px;
    line-height: 1.9;
    color: #d0d0d0;
}

/* Bullet style */
.service-content li {
    position: relative;
    padding-left: 20px;
}

.service-content li::before {
    content: "•";
    position: absolute;
    left: 0;
    color: #A45BBF;
}
/* =======================
   SERVICE INSIGHTS (ACCENTURE STYLE)
======================= */
.service-insights {
    padding: 140px 60px;
    background: #000;
    color: #fff;
}

.service-insights h2 {
    font-size: 3rem;
    font-weight: 800;
    margin-bottom: 70px;
}

/* GRID */
.insights-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 40px;
}

/* CARD */
.insight-card {
    position: relative;
    height: 420px;
    padding: 36px;
    border-radius: 16px;

    display: flex;
    flex-direction: column;
    justify-content: flex-end;

    background: linear-gradient(135deg, #1a1a22, #0b0b12);
    box-shadow: 0 20px 60px rgba(0,0,0,0.6);

    transition:
        transform 0.4s ease,
        box-shadow 0.4s ease;
    overflow: hidden;
}

/* HOVER */
.insight-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 40px 80px rgba(164,91,191,0.35);
}

/* TAG */
.insight-tag {
    font-size: 0.75rem;
    letter-spacing: 1px;
    font-weight: 600;
    color: #d8b4ff;
    margin-bottom: 12px;
}

/* TITLE */
.insight-card h3 {
    font-size: 1.6rem;
    line-height: 1.25;
    margin-bottom: 14px;
}

/* DESC */
.insight-card p {
    font-size: 1rem;
    line-height: 1.6;
    color: #d0d0d0;
}

/* =======================
   GRADIENT VARIANTS
======================= */
.gradient-1 {
    background:
        radial-gradient(circle at top left, rgba(164,91,191,0.35), transparent 60%),
        linear-gradient(135deg, #0c0c1a, #07070d);
}

.gradient-2 {
    background:
        radial-gradient(circle at bottom right, rgba(122,45,140,0.35), transparent 60%),
        linear-gradient(135deg, #120a1f, #07070d);
}

.gradient-3 {
    background:
        radial-gradient(circle at top right, rgba(100,160,255,0.35), transparent 60%),
        linear-gradient(135deg, #0a1322, #050509);
}

.gradient-4 {
    background:
        radial-gradient(circle at bottom left, rgba(80,200,160,0.3), transparent 60%),
        linear-gradient(135deg, #081a14, #050509);
}

.timeline {
    padding: 140px 60px;
    background: linear-gradient(180deg, #0b0b12, #050509);
    color: #fff;
}

.timeline h2 {
    font-size: 3rem;
    margin-bottom: 70px;
}

.timeline-track {
    border-left: 3px solid #7A2D8C;
    padding-left: 50px;
    max-width: 900px;
}

.timeline-step {
    margin-bottom: 60px;
    position: relative;
}

.timeline-step span {
    position: absolute;
    left: -65px;
    top: 0;
    font-size: 1.8rem;
    color: #A45BBF;
    font-weight: 800;
}

.timeline-step h3 {
    font-size: 1.4rem;
    margin-bottom: 10px;
}

.timeline-step p {
    color: #cfcfcf;
}
.faq {
    padding: 120px 60px;
    background: #000;
    color: #fff;
}

.faq h2 {
    font-size: 3rem;
    margin-bottom: 50px;
}

.faq details {
    border-bottom: 1px solid rgba(255,255,255,0.1);
    padding: 18px 0;
}

.faq summary {
    font-size: 1.1rem;
    cursor: pointer;
    list-style: none;
}

.faq summary::marker {
    display: none;
}

.faq p {
    margin-top: 12px;
    color: #cfcfcf;
    line-height: 1.7;
}
/* =======================
   HORIZONTAL INSIGHTS CAROUSEL
======================= */
.insights-scroll {
    display: flex;
    gap: 40px;
    overflow-x: auto;
    padding-bottom: 20px;
    scroll-snap-type: x mandatory;
}

.insights-scroll::-webkit-scrollbar {
    height: 6px;
}

.insights-scroll::-webkit-scrollbar-thumb {
    background: linear-gradient(90deg, #7A2D8C, #A45BBF);
    border-radius: 6px;
}

/* CARD */
.insight-card {
    flex: 0 0 320px;
    height: 420px;
    scroll-snap-align: start;
    cursor: pointer;

    position: relative;
    padding: 36px;
    border-radius: 18px;

    display: flex;
    flex-direction: column;
    justify-content: flex-end;

    box-shadow: 0 20px 60px rgba(0,0,0,0.6);
    overflow: hidden;

    transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.insight-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 40px 80px rgba(164,91,191,0.35);
}

/* Animated gradient movement */
.insight-card::before {
    content: "";
    position: absolute;
    inset: -30%;
    background: radial-gradient(
        circle at 30% 30%,
        rgba(255,255,255,0.08),
        transparent 60%
    );
    animation: gradientDrift 12s linear infinite;
}

@keyframes gradientDrift {
    0% { transform: translate(0,0); }
    50% { transform: translate(10%, 10%); }
    100% { transform: translate(0,0); }
}

.insight-card * {
    position: relative;
    z-index: 2;
}

/* =======================
   MODAL
======================= */
.insight-modal {
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.75);
    backdrop-filter: blur(10px);

    display: flex;
    justify-content: center;
    align-items: center;

    opacity: 0;
    pointer-events: none;
    transition: opacity 0.35s ease;
    z-index: 2000;
}

.insight-modal.active {
    opacity: 1;
    pointer-events: all;
}

.modal-content {
    background: linear-gradient(135deg, #0f0f18, #07070d);
    border-radius: 18px;
    padding: 50px;
    max-width: 520px;
    color: #fff;
    box-shadow: 0 40px 100px rgba(0,0,0,0.8);
    position: relative;
}

.modal-tag {
    display: block;
    font-size: 0.75rem;
    letter-spacing: 1px;
    color: #A45BBF;
    margin-bottom: 12px;
}

.modal-title {
    font-size: 1.8rem;
    margin-bottom: 18px;
}

.modal-text {
    color: #d0d0d0;
    line-height: 1.7;
}

.modal-close {
    position: absolute;
    top: 18px;
    right: 22px;
    background: none;
    border: none;
    font-size: 2rem;
    color: #fff;
    cursor: pointer;
}
/* =======================
   DELIVERY PILLARS
======================= */
.delivery-pillars {
    padding: 160px 60px;
    background: radial-gradient(circle at top, #111118, #050509);
    color: #fff;
    position: relative;
}

.pillars-header {
    max-width: 720px;
    margin-bottom: 90px;
}

.pillars-header h2 {
    font-size: 3.2rem;
    font-weight: 800;
}

.pillars-header p {
    font-size: 1.25rem;
    opacity: 0.85;
}

/* TRACK */
.pillars-track {
    position: relative;
    isolation: isolate;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 50px;
}

/* FLOW LINE */
.pillar-flow {
    position: absolute;
    top: 78px;              /* aligns with number */
    left: 5%;
    width: 90%;
    height: 2px;

    background: linear-gradient(
        90deg,
        transparent,
        #A45BBF,
        transparent
    );

    opacity: 0.35;
    z-index: 0;
    pointer-events: none;
}


@keyframes flowPulse {
    0% { opacity: 0.25; }
    50% { opacity: 0.6; }
    100% { opacity: 0.25; }
}

/* PILLAR */
.pillar {
    position: relative;
    z-index: 2; 
    padding: 40px 30px;
    border-radius: 20px;

    background: rgba(255,255,255,0.04);
    backdrop-filter: blur(14px);

    box-shadow: 0 30px 70px rgba(0,0,0,0.6);
    transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.pillar:hover {
    transform: translateY(-10px);
    box-shadow: 0 40px 90px rgba(164,91,191,0.35);
}

.pillar-index {
    display: block;
    font-size: 2.2rem;
    font-weight: 800;
    color: #A45BBF;
    margin-bottom: 14px;
}

.pillar h3 {
    font-size: 1.4rem;
    margin-bottom: 12px;
}

.pillar p {
    font-size: 1rem;
    line-height: 1.6;
    color: #d0d0d0;
}
/* =======================
   DELIVERY STREAM
======================= */
.delivery-stream {
    padding: 160px 60px;
    background: #000;
    color: #fff;
}

.stream-title {
    font-size: 3rem;
    font-weight: 800;
    margin-bottom: 90px;
}

/* TRACK */
.stream-track {
    position: relative;
    isolation: isolate;
    display: flex;
    justify-content: space-between;
    align-items: stretch; 
    gap: 40px;
}

/* FLOW LINE */
.stream-track::before {
    content: "";
    position: absolute;

    top: 78px;              /* SAME VALUE */
    left: 0;
    width: 100%;
    height: 2px;

    background: linear-gradient(
        90deg,
        rgba(122,45,140,0.2),
        rgba(164,91,191,0.6),
        rgba(122,45,140,0.2)
    );

    z-index: 0;
    pointer-events: none;
}
/* NODE */
.stream-node {
    position: relative;
    z-index: 2; 
    width: 260px;
    padding: 36px;
    border-radius: 18px;

    display: flex;
    flex-direction: column;
    justify-content: space-between; 

    background: linear-gradient(135deg, #1a1a22, #07070d);
    box-shadow: 0 25px 60px rgba(0,0,0,0.7);

    transition: transform 0.4s ease, box-shadow 0.4s ease;
}


.stream-node:hover {
    transform: translateY(-12px);
    box-shadow: 0 40px 80px rgba(164,91,191,0.35);
}

/* STEP NUMBER */
.step-index {
    display: block;
    font-size: 1.9rem;
    font-weight: 800;
    color: #A45BBF;
    margin-bottom: 14px;
}

/* TEXT */
.stream-node h3 {
    font-size: 1.3rem;
    margin-bottom: 10px;
}

.stream-node p {
    font-size: 0.95rem;
    line-height: 1.6;
    color: #cfcfcf;
}
.approach-steps {
    position: relative;
    display: flex;
    justify-content: space-between;
    align-items: stretch;
    gap: 40px;
}

/* Horizontal connector line */
.approach-steps::before {
    content: "";
    position: absolute;
    top: 50%;
    left: 0;
    right: 0;
    height: 2px;

    background: linear-gradient(
        90deg,
        transparent,
        #7A2D8C,
        transparent
    );

    z-index: 0;          /* BELOW everything */
    transform: translateY(-50%);
    pointer-events: none;
}

 /* About Page Styling Begins */

 /* =======================
   ABOUT HERO (VIDEO)
======================= */
.about-hero {
    position: relative;
    height: 100vh;
    width: 100%;
    overflow: hidden;
    color: #ffffff;
}

/* VIDEO */
.about-hero-video {
    position: absolute;
    top: 50%;
    left: 50%;
    min-width: 100%;
    min-height: 100%;
    transform: translate(-50%, -50%);
    object-fit: cover;
    z-index: 1;
}

/* OVERLAY */
.about-hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        90deg,
        rgba(0,0,0,0.75),
        rgba(0,0,0,0.35),
        rgba(0,0,0,0.15)
    );
    z-index: 2;
}

/* CONTENT */
.about-hero-content {
    position: relative;
    z-index: 3;
    max-width: 720px;
    padding: 160px 80px;

    display: flex;
    flex-direction: column;
    justify-content: center;
}

/* HEADLINE */
.about-hero-content h1 {
    font-size: 4.2rem;
    font-weight: 800;
    line-height: 1.05;
    margin-bottom: 25px;
}

.about-hero-content .accent {
    color: #A45BBF;
}

/* TEXT */
.about-hero-content p {
    font-size: 1.25rem;
    line-height: 1.7;
    max-width: 520px;
    opacity: 0.95;
}

/* CTA */
.about-hero-content .btn-hero {
    margin-top: 35px;
    width: fit-content;
}

/* =======================
   RESPONSIVE
======================= */
@media (max-width: 900px) {
    .about-hero-content {
        padding: 140px 40px;
    }

    .about-hero-content h1 {
        font-size: 3.2rem;
    }
}

@media (max-width: 600px) {
    .about-hero-content h1 {
        font-size: 2.6rem;
    }

    .about-hero-content p {
        font-size: 1.1rem;
    }
}
/* =======================
   WHO WE ARE – ABOUT
======================= */
.about-identity {
    padding: 160px 60px;
    background: radial-gradient(
        circle at top right,
        #12121a,
        #050509
    );
    color: #ffffff;
}

.about-identity-container {
    max-width: 1200px;
    margin: auto;

    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 80px;
    align-items: center;
}

/* LEFT CONTENT */
.about-identity-content .section-eyebrow {
    display: inline-block;
    margin-bottom: 18px;
    font-size: 0.9rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: #A45BBF;
}

.about-identity-content h2 {
    font-size: 3.2rem;
    font-weight: 800;
    line-height: 1.15;
    margin-bottom: 28px;
}

.about-identity-content .accent {
    color: #A45BBF;
}

.about-identity-content .lead {
    font-size: 1.35rem;
    line-height: 1.7;
    margin-bottom: 22px;
    color: #e5e5e5;
}

.about-identity-content p {
    font-size: 1.05rem;
    line-height: 1.75;
    color: #cfcfcf;
    margin-bottom: 18px;
}

/* RIGHT VISUAL */
.about-identity-visual {
    display: flex;
    justify-content: center;
}

/* GLASS CARD */
.identity-glass-card {
    width: 100%;
    max-width: 420px;
    padding: 42px 38px;
    border-radius: 22px;

    background: rgba(255,255,255,0.06);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);

    border: 1px solid rgba(255,255,255,0.08);
    box-shadow: 0 40px 90px rgba(0,0,0,0.65);

    position: relative;
    overflow: hidden;
}

/* Subtle gradient glow */
.identity-glass-card::before {
    content: "";
    position: absolute;
    inset: -40%;
    background: radial-gradient(
        circle at top left,
        rgba(164,91,191,0.35),
        transparent 60%
    );
    z-index: 0;
}

.identity-glass-card * {
    position: relative;
    z-index: 2;
}

.card-tag {
    display: inline-block;
    margin-bottom: 20px;
    font-size: 0.75rem;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: #d8b4ff;
}

/* LIST */
.identity-list {
    list-style: none;
}

.identity-list li {
    font-size: 1.05rem;
    padding: 14px 0;
    border-bottom: 1px solid rgba(255,255,255,0.1);
    color: #e0e0e0;
}

.identity-list li:last-child {
    border-bottom: none;
}

/* =======================
   RESPONSIVE
======================= */
@media (max-width: 900px) {
    .about-identity-container {
        grid-template-columns: 1fr;
        gap: 60px;
    }

    .about-identity-content h2 {
        font-size: 2.6rem;
    }

    .about-identity {
        padding: 120px 40px;
    }
}
/* =======================
   MISSION & VISION
======================= */
.mission-vision {
    padding: 160px 60px;
    background: radial-gradient(
        circle at bottom left,
        #12121a,
        #050509
    );
    color: #ffffff;
}

.mission-vision-container {
    max-width: 1200px;
    margin: auto;
}

/* HEADER */
.mission-vision-header {
    max-width: 700px;
    margin-bottom: 90px;
}

.mission-vision-header .section-eyebrow {
    display: inline-block;
    margin-bottom: 18px;
    font-size: 0.9rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: #A45BBF;
}

.mission-vision-header h2 {
    font-size: 3.2rem;
    font-weight: 800;
    line-height: 1.15;
}

.mission-vision-header .accent {
    color: #A45BBF;
}

/* GRID */
.mission-vision-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 60px;
}

/* CARD */
.mv-card {
    position: relative;
    padding: 48px 42px;
    border-radius: 24px;

    background: rgba(255,255,255,0.06);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);

    border: 1px solid rgba(255,255,255,0.08);
    box-shadow: 0 40px 90px rgba(0,0,0,0.65);

    overflow: hidden;
    transition: transform 0.4s ease, box-shadow 0.4s ease;
}

/* Subtle gradient glow */
.mv-card::before {
    content: "";
    position: absolute;
    inset: -40%;
    background: radial-gradient(
        circle at top right,
        rgba(164,91,191,0.35),
        transparent 60%
    );
    z-index: 0;
}

.mv-card * {
    position: relative;
    z-index: 2;
}

.mv-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 60px 120px rgba(164,91,191,0.35);
}

/* TAG */
.mv-tag {
    display: inline-block;
    margin-bottom: 18px;
    font-size: 0.75rem;
    letter-spacing: 1.6px;
    text-transform: uppercase;
    color: #d8b4ff;
}

/* TITLE */
.mv-card h3 {
    font-size: 1.6rem;
    margin-bottom: 18px;
    line-height: 1.3;
}

/* TEXT */
.mv-card p {
    font-size: 1.05rem;
    line-height: 1.75;
    color: #d0d0d0;
    margin-bottom: 16px;
}

/* =======================
   RESPONSIVE
======================= */
@media (max-width: 900px) {
    .mission-vision {
        padding: 120px 40px;
    }

    .mission-vision-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .mission-vision-header h2 {
        font-size: 2.6rem;
    }
}
/* =======================
   HOW WE WORK
======================= */
.how-we-work {
    padding: 160px 60px;
    background: linear-gradient(
        180deg,
        #050509,
        #0b0b12
    );
    color: #ffffff;
}

.how-header {
    max-width: 720px;
    margin-bottom: 100px;
}

.section-eyebrow {
    display: inline-block;
    margin-bottom: 18px;
    font-size: 0.85rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: #A45BBF;
}

.how-header h2 {
    font-size: 3.2rem;
    font-weight: 800;
    margin-bottom: 18px;
}

.how-header .accent {
    color: #A45BBF;
}

.how-header p {
    font-size: 1.2rem;
    line-height: 1.7;
    color: #cfcfcf;
}

/* TRACK */
.work-track {
    position: relative;
    display: flex;
    justify-content: space-between;
    gap: 40px;
    isolation: isolate;
}

/* CONNECTOR LINE */
.work-line {
    position: absolute;
    top: 48px;
    left: 0;
    width: 100%;
    height: 2px;

    background: linear-gradient(
        90deg,
        transparent,
        rgba(164,91,191,0.6),
        transparent
    );

    z-index: 0;
    pointer-events: none;
}

/* STEP */
.work-step {
    position: relative;
    z-index: 2;

    width: 260px;
    padding: 40px 32px;
    border-radius: 20px;

    background: rgba(255,255,255,0.05);
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);

    border: 1px solid rgba(255,255,255,0.08);
    box-shadow: 0 30px 70px rgba(0,0,0,0.65);

    transition:
        transform 0.4s ease,
        box-shadow 0.4s ease;
}

.work-step:hover {
    transform: translateY(-10px);
    box-shadow: 0 50px 100px rgba(164,91,191,0.35);
}

/* INDEX */
.work-step .step-index {
    display: block;
    font-size: 2rem;
    font-weight: 800;
    color: #A45BBF;
    margin-bottom: 16px;
}

/* TITLE */
.work-step h3 {
    font-size: 1.4rem;
    margin-bottom: 12px;
}

/* TEXT */
.work-step p {
    font-size: 1rem;
    line-height: 1.65;
    color: #d0d0d0;
}

/* =======================
   RESPONSIVE
======================= */
@media (max-width: 1024px) {
    .work-track {
        flex-wrap: wrap;
        gap: 50px;
    }

    .work-line {
        display: none;
    }

    .work-step {
        width: 100%;
        max-width: 420px;
    }
}
/* =======================
   CORE PRINCIPLES
======================= */
.core-principles {
    padding: 160px 60px;
    background: radial-gradient(
        circle at top,
        #0b0b12,
        #050509
    );
    color: #ffffff;
}

.principles-header {
    max-width: 720px;
    margin-bottom: 100px;
}

.principles-header .section-eyebrow {
    display: inline-block;
    margin-bottom: 18px;
    font-size: 0.85rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: #A45BBF;
}

.principles-header h2 {
    font-size: 3.2rem;
    font-weight: 800;
    margin-bottom: 18px;
}

.principles-header .accent {
    color: #A45BBF;
}

.principles-header p {
    font-size: 1.2rem;
    line-height: 1.7;
    color: #cfcfcf;
}

/* GRID */
.principles-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 40px;
}

/* CARD */
.principle-card {
    position: relative;
    padding: 44px 36px;
    border-radius: 22px;

    background: rgba(255,255,255,0.05);
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);

    border: 1px solid rgba(255,255,255,0.08);
    box-shadow: 0 30px 70px rgba(0,0,0,0.6);

    transition:
        transform 0.4s ease,
        box-shadow 0.4s ease;
}

.principle-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 50px 100px rgba(164,91,191,0.35);
}

/* INDEX */
.principle-index {
    display: block;
    font-size: 2.2rem;
    font-weight: 800;
    color: #A45BBF;
    margin-bottom: 18px;
}

/* TITLE */
.principle-card h3 {
    font-size: 1.45rem;
    margin-bottom: 12px;
}

/* TEXT */
.principle-card p {
    font-size: 1rem;
    line-height: 1.65;
    color: #d0d0d0;
}

/* =======================
   RESPONSIVE
======================= */
@media (max-width: 1024px) {
    .principles-grid {
        gap: 30px;
    }
}

@media (max-width: 768px) {
    .core-principles {
        padding: 120px 30px;
    }
}
/* =======================
   INDUSTRIES & CLIENTS
======================= */
.industries-clients {
    padding: 160px 60px;
    background: linear-gradient(
        180deg,
        #050509,
        #0b0b12
    );
    color: #ffffff;
}

.industries-header {
    max-width: 760px;
    margin-bottom: 100px;
}

.industries-header .section-eyebrow {
    display: inline-block;
    margin-bottom: 18px;
    font-size: 0.85rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: #A45BBF;
}

.industries-header h2 {
    font-size: 3.2rem;
    font-weight: 800;
    margin-bottom: 18px;
}

.industries-header .accent {
    color: #A45BBF;
}

.industries-header p {
    font-size: 1.2rem;
    line-height: 1.7;
    color: #cfcfcf;
}

/* INDUSTRIES GRID */
.industries-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 40px;
    margin-bottom: 110px;
}

/* INDUSTRY CARD */
.industry-card {
    padding: 46px 38px;
    border-radius: 22px;

    background: rgba(255,255,255,0.05);
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);

    border: 1px solid rgba(255,255,255,0.08);
    box-shadow: 0 30px 70px rgba(0,0,0,0.6);

    transition:
        transform 0.4s ease,
        box-shadow 0.4s ease;
}

.industry-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 50px 100px rgba(164,91,191,0.35);
}

.industry-card h3 {
    font-size: 1.45rem;
    margin-bottom: 14px;
}

.industry-card p {
    font-size: 1rem;
    line-height: 1.65;
    color: #d0d0d0;
}

/* CLIENT TYPES */
.client-types {
    max-width: 900px;
}

.client-types-title {
    font-size: 1.8rem;
    font-weight: 700;
    margin-bottom: 30px;
}

/* TAGS */
.client-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 18px;
}

.client-tag {
    padding: 14px 22px;
    border-radius: 40px;

    background: rgba(255,255,255,0.08);
    backdrop-filter: blur(10px);

    font-size: 0.95rem;
    font-weight: 500;
    color: #ffffff;

    border: 1px solid rgba(255,255,255,0.12);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.client-tag:hover {
    transform: translateY(-4px);
    box-shadow: 0 20px 40px rgba(164,91,191,0.3);
}

/* =======================
   RESPONSIVE
======================= */
@media (max-width: 768px) {
    .industries-clients {
        padding: 120px 30px;
    }

    .industries-grid {
        margin-bottom: 80px;
    }
}
/* =======================
   SECURITY & COMPLIANCE
======================= */
.security-commitments {
    padding: 160px 60px;
    background: radial-gradient(
        circle at top,
        #0b0b12,
        #050509
    );
    color: #ffffff;
}

.security-header {
    max-width: 780px;
    margin-bottom: 110px;
}

.security-header .section-eyebrow {
    display: inline-block;
    margin-bottom: 18px;
    font-size: 0.85rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: #A45BBF;
}

.security-header h2 {
    font-size: 3.2rem;
    font-weight: 800;
    margin-bottom: 18px;
}

.security-header .accent {
    color: #A45BBF;
}

.security-header p {
    font-size: 1.2rem;
    line-height: 1.7;
    color: #cfcfcf;
}

/* GRID */
.security-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 40px;
    margin-bottom: 120px;
}

/* CARD */
.security-card {
    position: relative;
    padding: 48px 40px;
    border-radius: 22px;

    background: rgba(255,255,255,0.05);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);

    border: 1px solid rgba(255,255,255,0.08);
    box-shadow: 0 35px 80px rgba(0,0,0,0.65);

    transition:
        transform 0.4s ease,
        box-shadow 0.4s ease;
}

.security-card:hover {
    transform: translateY(-12px);
    box-shadow: 0 55px 110px rgba(164,91,191,0.35);
}

/* INDEX */
.security-index {
    display: block;
    font-size: 2.2rem;
    font-weight: 900;
    color: #A45BBF;
    margin-bottom: 18px;
}

.security-card h3 {
    font-size: 1.45rem;
    margin-bottom: 14px;
}

.security-card p {
    font-size: 1rem;
    line-height: 1.7;
    color: #d0d0d0;
}

/* STANDARDS STRIP */
.standards-strip {
    max-width: 1000px;
}

.standards-strip h3 {
    font-size: 1.8rem;
    font-weight: 700;
    margin-bottom: 28px;
}

/* TAGS */
.standards-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 18px;
}

.standards-tags span {
    padding: 14px 24px;
    border-radius: 40px;

    background: rgba(255,255,255,0.08);
    backdrop-filter: blur(12px);

    font-size: 0.95rem;
    font-weight: 500;
    color: #ffffff;

    border: 1px solid rgba(255,255,255,0.12);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.standards-tags span:hover {
    transform: translateY(-4px);
    box-shadow: 0 20px 40px rgba(164,91,191,0.3);
}

/* =======================
   RESPONSIVE
======================= */
@media (max-width: 768px) {
    .security-commitments {
        padding: 120px 30px;
    }

    .security-header {
        margin-bottom: 80px;
    }

    .security-grid {
        margin-bottom: 90px;
    }
}
/* =======================
   WHY CHOOSE EVOLETRIX
======================= */
.why-evoletrix {
    padding: 170px 60px;
    background: linear-gradient(
        180deg,
        #050509,
        #0b0b12
    );
    color: #ffffff;
}

.why-wrapper {
    display: grid;
    grid-template-columns: 1.1fr 1.4fr;
    gap: 120px;
    align-items: flex-start;
}

/* LEFT */
.why-intro {
    position: sticky;
    top: 140px;
}

.why-eyebrow {
    display: inline-block;
    font-size: 0.85rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: #A45BBF;
    margin-bottom: 22px;
}

.why-intro h2 {
    font-size: 3.4rem;
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 26px;
}

.why-intro .accent {
    color: #A45BBF;
}

.why-intro p {
    font-size: 1.25rem;
    line-height: 1.7;
    color: #cfcfcf;
    max-width: 520px;
}

/* RIGHT */
.why-reasons {
    position: relative;
    padding-left: 50px;
}

/* Vertical rail */
.why-reasons::before {
    content: "";
    position: absolute;
    left: 8px;
    top: 0;
    bottom: 0;
    width: 2px;
    background: linear-gradient(
        180deg,
        transparent,
        #A45BBF,
        transparent
    );
    opacity: 0.5;
}

/* ITEM */
.why-item {
    display: flex;
    gap: 30px;
    margin-bottom: 70px;
    position: relative;
}

/* Marker */
.why-marker {
    width: 18px;
    height: 18px;
    border-radius: 50%;
    margin-top: 6px;

    background: #A45BBF;
    box-shadow: 0 0 0 6px rgba(164,91,191,0.15),
                0 0 25px rgba(164,91,191,0.6);

    flex-shrink: 0;
}

/* Content */
.why-content h3 {
    font-size: 1.45rem;
    margin-bottom: 12px;
}

.why-content p {
    font-size: 1.05rem;
    line-height: 1.7;
    color: #d0d0d0;
    max-width: 620px;
}

/* =======================
   RESPONSIVE
======================= */
@media (max-width: 1024px) {
    .why-wrapper {
        grid-template-columns: 1fr;
        gap: 80px;
    }

    .why-intro {
        position: relative;
        top: auto;
    }

    .why-reasons {
        padding-left: 30px;
    }
}

@media (max-width: 768px) {
    .why-evoletrix {
        padding: 120px 30px;
    }

    .why-intro h2 {
        font-size: 2.6rem;
    }
}
/* =======================
   FOUNDERS NOTE
======================= */
.founders-note {
    padding: 170px 60px;
    background: linear-gradient(
        180deg,
        #0b0b12,
        #050509
    );
    color: #ffffff;
}

.founders-wrapper {
    display: grid;
    grid-template-columns: 1.4fr 1fr;
    gap: 120px;
    align-items: center;
}

/* LEFT */
.founder-eyebrow {
    display: inline-block;
    font-size: 0.85rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: #A45BBF;
    margin-bottom: 22px;
}

.founder-message h2 {
    font-size: 3.4rem;
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 40px;
}

.founder-message .accent {
    color: #A45BBF;
}

/* Quote */
.founder-message blockquote {
    font-size: 1.6rem;
    font-weight: 500;
    line-height: 1.6;
    color: #e6d8ff;

    padding-left: 30px;
    border-left: 4px solid #A45BBF;
    margin-bottom: 40px;
}

/* Text */
.founder-message p {
    font-size: 1.15rem;
    line-height: 1.8;
    color: #d0d0d0;
    margin-bottom: 22px;
    max-width: 680px;
}

/* Signature */
.founder-signature {
    margin-top: 40px;
}

.founder-signature strong {
    display: block;
    font-size: 1.15rem;
    color: #ffffff;
}

.founder-signature span {
    font-size: 0.95rem;
    color: #A45BBF;
}

/* RIGHT */
.founder-values {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

/* Value Cards */
.value-card {
    position: relative;
    padding: 34px 32px;
    border-radius: 18px;

    background: rgba(255,255,255,0.04);
    backdrop-filter: blur(14px);

    box-shadow: 0 30px 70px rgba(0,0,0,0.6);
    transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.value-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 40px 90px rgba(164,91,191,0.35);
}

/* Index */
.value-index {
    display: block;
    font-size: 2rem;
    font-weight: 800;
    color: #A45BBF;
    margin-bottom: 12px;
}

.value-card h4 {
    font-size: 1.3rem;
    margin-bottom: 10px;
}

.value-card p {
    font-size: 1rem;
    color: #cfcfcf;
    line-height: 1.6;
}

/* =======================
   RESPONSIVE
======================= */
@media (max-width: 1024px) {
    .founders-wrapper {
        grid-template-columns: 1fr;
        gap: 80px;
    }
}

@media (max-width: 768px) {
    .founders-note {
        padding: 120px 30px;
    }

    .founder-message h2 {
        font-size: 2.6rem;
    }

    .founder-message blockquote {
        font-size: 1.3rem;
    }
}
/* =======================
   CAREERS & CULTURE
======================= */
.careers-culture {
    padding: 160px 60px;
    background: #ffffff;
    color: #1f1f1f;
}

/* HEADER */
.culture-header {
    max-width: 820px;
    margin-bottom: 100px;
}

.culture-eyebrow {
    display: inline-block;
    font-size: 0.85rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: #7A2D8C;
    margin-bottom: 20px;
}

.culture-header h2 {
    font-size: 3.4rem;
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 25px;
}

.culture-header .accent {
    color: #7A2D8C;
}

.culture-header p {
    font-size: 1.25rem;
    line-height: 1.7;
    color: #444;
}

/* GRID */
.culture-grid {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 100px;
    margin-bottom: 120px;
}

/* LEFT CONTENT */
.culture-content h3 {
    font-size: 2.2rem;
    margin-bottom: 20px;
}

.culture-content p {
    font-size: 1.15rem;
    line-height: 1.8;
    color: #555;
    margin-bottom: 22px;
    max-width: 520px;
}

/* STATS */
.culture-stats {
    display: flex;
    gap: 40px;
    margin-top: 40px;
}

.stat strong {
    display: block;
    font-size: 2.2rem;
    font-weight: 800;
    color: #7A2D8C;
}

.stat span {
    font-size: 0.9rem;
    color: #666;
}

/* RIGHT CARDS */
.culture-cards {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
}

.culture-card {
    padding: 32px 28px;
    border-radius: 18px;
    background: #f6f6fb;
    box-shadow: 0 20px 40px rgba(0,0,0,0.08);
    transition: transform 0.35s ease, box-shadow 0.35s ease;
}

.culture-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 30px 60px rgba(122,45,140,0.25);
}

.culture-card h4 {
    font-size: 1.3rem;
    margin-bottom: 12px;
    color: #7A2D8C;
}

.culture-card p {
    font-size: 1rem;
    line-height: 1.6;
    color: #555;
}

/* CTA */
.culture-cta {
    text-align: center;
    padding-top: 80px;
    border-top: 1px solid rgba(0,0,0,0.08);
}

.culture-cta h3 {
    font-size: 2.4rem;
    margin-bottom: 15px;
}

.culture-cta p {
    font-size: 1.15rem;
    color: #555;
    margin-bottom: 35px;
}

/* BUTTON */
.culture-btn {
    display: inline-block;
    padding: 14px 38px;
    border-radius: 30px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1rem;

    background: linear-gradient(135deg, #7A2D8C, #A45BBF);
    color: #ffffff;

    box-shadow: 0 15px 35px rgba(122,45,140,0.35);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.culture-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 25px 55px rgba(122,45,140,0.45);
}

/* =======================
   RESPONSIVE
======================= */
@media (max-width: 1024px) {
    .culture-grid {
        grid-template-columns: 1fr;
        gap: 70px;
    }

    .culture-cards {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .careers-culture {
        padding: 120px 30px;
    }

    .culture-header h2 {
        font-size: 2.6rem;
    }

    .culture-cta h3 {
        font-size: 2rem;
    }
}
/* =======================
   LIFE AT EVOLETRIX
======================= */
.life-evoletrix {
    padding: 160px 60px;
    background: #0b0b12;
    color: #ffffff;
}

/* HEADER */
.life-header {
    max-width: 700px;
    margin-bottom: 100px;
}

.life-header h2 {
    font-size: 3.2rem;
    font-weight: 800;
    margin-bottom: 20px;
}

.life-header .accent {
    color: #A45BBF;
}

.life-header p {
    font-size: 1.2rem;
    line-height: 1.7;
    color: #d0d0d0;
}

/* GRID */
.life-grid {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 90px;
}

/* VISUALS */
.life-visuals {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
}

.life-image {
    border-radius: 18px;
    background: linear-gradient(
        135deg,
        #1a1a22,
        #07070d
    );
    box-shadow: 0 25px 60px rgba(0,0,0,0.6);
    position: relative;
    overflow: hidden;
}

/* Placeholder subtle glow */
.life-image::after {
    content: "";
    position: absolute;
    inset: 0;
    background: radial-gradient(
        circle at 30% 30%,
        rgba(164,91,191,0.25),
        transparent 60%
    );
}

/* Sizes */
.life-image.large {
    grid-column: span 2;
    height: 280px;
}

.life-image.small {
    height: 200px;
}

/* QUOTES */
.life-quotes {
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.life-quotes blockquote {
    font-size: 1.15rem;
    line-height: 1.7;
    color: #e0e0e0;
    padding-left: 24px;
    border-left: 3px solid #A45BBF;
}

.life-quotes span {
    display: block;
    margin-top: 12px;
    font-size: 0.9rem;
    color: #bdbdbd;
}

/* =======================
   RESPONSIVE
======================= */
@media (max-width: 1024px) {
    .life-grid {
        grid-template-columns: 1fr;
        gap: 70px;
    }
}

@media (max-width: 768px) {
    .life-evoletrix {
        padding: 120px 30px;
    }

    .life-header h2 {
        font-size: 2.6rem;
    }
}
/* =======================
   FINAL ABOUT CTA
======================= */
.about-final-cta {
    padding: 160px 60px;
    background: linear-gradient(
        135deg,
        #0c0c12,
        #1a1a22
    );
    color: #ffffff;
    text-align: center;
    position: relative;
    overflow: hidden;
}

/* Subtle glow */
.about-final-cta::before {
    content: "";
    position: absolute;
    inset: -20%;
    background: radial-gradient(
        circle at center,
        rgba(164,91,191,0.25),
        transparent 60%
    );
}

/* CONTENT */
.about-cta-content {
    position: relative;
    max-width: 900px;
    margin: auto;
    z-index: 2;
}

.about-cta-content h2 {
    font-size: 3.8rem;
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 25px;
}

.about-cta-content .accent {
    color: #A45BBF;
}

.about-cta-content p {
    font-size: 1.3rem;
    line-height: 1.7;
    color: #d0d0d0;
    max-width: 720px;
    margin: 0 auto 50px;
}

/* ACTIONS */
.about-cta-actions {
    display: flex;
    justify-content: center;
    gap: 26px;
    flex-wrap: wrap;
}

/* PRIMARY */
.cta-primary {
    padding: 16px 40px;
    border-radius: 40px;
    font-size: 1rem;
    font-weight: 600;
    text-decoration: none;
    color: #000;

    background: linear-gradient(135deg, #A45BBF, #7A2D8C);
    box-shadow: 0 15px 40px rgba(164,91,191,0.4);

    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.cta-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 25px 60px rgba(164,91,191,0.6);
}

/* SECONDARY */
.cta-secondary {
    padding: 16px 36px;
    border-radius: 40px;
    font-size: 1rem;
    font-weight: 500;
    text-decoration: none;
    color: #ffffff;

    border: 1.5px solid rgba(255,255,255,0.4);
    transition: background 0.3s ease, border-color 0.3s ease;
}

.cta-secondary:hover {
    background: rgba(255,255,255,0.1);
    border-color: #A45BBF;
}

/* RESPONSIVE */
@media (max-width: 768px) {
    .about-final-cta {
        padding: 120px 30px;
    }

    .about-cta-content h2 {
        font-size: 2.8rem;
    }

    .about-cta-content p {
        font-size: 1.1rem;
    }
}

/* =======================
   CONTACT Page Styling Begins
======================= */

/* =======================
   CONTACT HERO
======================= */
.contact-hero {
    position: relative;
    min-height: 80vh;
    padding: 180px 60px 120px;

    display: flex;
    align-items: center;

    background: #050509;
    color: #ffffff;
    overflow: hidden;
}

/* Background gradient */
.contact-hero-bg {
    position: absolute;
    inset: 0;

    background:
        radial-gradient(circle at 20% 30%, rgba(164,91,191,0.35), transparent 55%),
        radial-gradient(circle at 80% 70%, rgba(122,45,140,0.25), transparent 60%),
        linear-gradient(180deg, #0b0b12, #050509);

    z-index: 1;
}

/* Content */
.contact-hero-content {
    position: relative;
    z-index: 2;
    max-width: 900px;
}

/* Eyebrow */
.contact-hero .section-eyebrow {
    display: inline-block;
    font-size: 0.9rem;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: #A45BBF;
    margin-bottom: 20px;
}

/* Heading */
.contact-hero h1 {
    font-size: 4rem;
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 25px;
}

.contact-hero .accent {
    color: #A45BBF;
}

/* Description */
.contact-hero p {
    font-size: 1.25rem;
    max-width: 620px;
    line-height: 1.7;
    color: #d0d0d0;
}

/* Meta strip */
.contact-hero-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 25px;
    margin-top: 35px;
}

.contact-hero-meta span {
    font-size: 0.95rem;
    color: #bdbdbd;
    display: flex;
    align-items: center;
    gap: 8px;
}
/* =======================
   ENGAGEMENT TYPE SELECTOR
======================= */
.engagement-types {
    padding: 160px 60px;
    background: linear-gradient(180deg, #050509, #0b0b12);
    color: #ffffff;
}

.engagement-header {
    max-width: 800px;
    margin-bottom: 80px;
}

.engagement-header .section-eyebrow {
    display: inline-block;
    font-size: 0.85rem;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: #A45BBF;
    margin-bottom: 16px;
}

.engagement-header h2 {
    font-size: 3.2rem;
    font-weight: 800;
    margin-bottom: 20px;
}

.engagement-header .accent {
    color: #A45BBF;
}

.engagement-header p {
    font-size: 1.2rem;
    line-height: 1.7;
    color: #cfcfcf;
}

/* GRID */
.engagement-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 40px;
}

/* CARD */
.engagement-card {
    position: relative;
    padding: 42px 36px;
    border-radius: 20px;

    background: rgba(255,255,255,0.04);
    backdrop-filter: blur(14px);
    border: 1px solid rgba(255,255,255,0.06);

    transition:
        transform 0.4s ease,
        box-shadow 0.4s ease,
        border-color 0.4s ease;
}

.engagement-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 40px 90px rgba(164,91,191,0.35);
    border-color: rgba(164,91,191,0.6);
}

/* TAG */
.engagement-tag {
    display: inline-block;
    font-size: 0.75rem;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: #A45BBF;
    margin-bottom: 16px;
}

/* TITLE */
.engagement-card h3 {
    font-size: 1.6rem;
    margin-bottom: 14px;
}

/* DESCRIPTION */
.engagement-card p {
    font-size: 1.05rem;
    line-height: 1.7;
    color: #d0d0d0;
    margin-bottom: 22px;
}

/* LIST */
.engagement-card ul {
    list-style: none;
}

.engagement-card li {
    position: relative;
    padding-left: 20px;
    margin-bottom: 10px;
    font-size: 0.95rem;
    color: #bdbdbd;
}

.engagement-card li::before {
    content: "•";
    position: absolute;
    left: 0;
    color: #A45BBF;
}
/* =======================
   SECURE CONTACT FORM
======================= */
.secure-contact {
    padding: 160px 60px;
    background: radial-gradient(circle at top, #0b0b12, #050509);
    color: #ffffff;
}

/* HEADER */
.contact-header {
    max-width: 820px;
    margin-bottom: 90px;
}

.contact-header h2 {
    font-size: 3.2rem;
    font-weight: 800;
    margin-bottom: 20px;
}

.contact-header .accent {
    color: #A45BBF;
}

.contact-header p {
    font-size: 1.2rem;
    line-height: 1.7;
    color: #cfcfcf;
}

/* WRAPPER */
.contact-wrapper {
    display: grid;
    grid-template-columns: 1.4fr 0.9fr;
    gap: 80px;
}

/* FORM */
.contact-form {
    background: rgba(255,255,255,0.04);
    backdrop-filter: blur(16px);
    border-radius: 22px;
    padding: 50px;
    border: 1px solid rgba(255,255,255,0.06);
}

.form-row {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
}

.form-group {
    display: flex;
    flex-direction: column;
}

.form-group.full {
    margin-top: 30px;
}

.form-group label {
    font-size: 0.9rem;
    margin-bottom: 8px;
    color: #bdbdbd;
}

/* INPUTS */
.contact-form input,
.contact-form select,
.contact-form textarea {
    padding: 14px 16px;
    border-radius: 10px;
    background: rgba(255,255,255,0.06);
    border: 1px solid rgba(255,255,255,0.08);
    color: #ffffff;
    font-size: 0.95rem;
}

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
    outline: none;
    border-color: #A45BBF;
    box-shadow: 0 0 0 2px rgba(164,91,191,0.25);
}

/* FOOTER */
.form-footer {
    margin-top: 40px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 30px;
}

.privacy-note {
    font-size: 0.85rem;
    color: #9a9a9a;
    max-width: 320px;
}

/* BUTTON */
.submit-btn {
    padding: 14px 34px;
    border-radius: 30px;
    background: linear-gradient(135deg, #7A2D8C, #A45BBF);
    color: #ffffff;
    font-weight: 600;
    border: none;
    cursor: pointer;

    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.submit-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 20px 40px rgba(164,91,191,0.4);
}

/* TRUST PANEL */
.contact-trust {
    padding: 40px 36px;
}

.contact-trust h3 {
    font-size: 1.6rem;
    margin-bottom: 20px;
}

.contact-trust ul {
    list-style: none;
    margin-bottom: 30px;
}

.contact-trust li {
    margin-bottom: 12px;
    padding-left: 18px;
    position: relative;
    color: #d0d0d0;
}

.contact-trust li::before {
    content: "•";
    position: absolute;
    left: 0;
    color: #A45BBF;
}

/* TRUST BOX */
.trust-box {
    display: flex;
    flex-direction: column;
    gap: 12px;
    padding: 22px;
    border-radius: 14px;
    background: rgba(255,255,255,0.03);
    border: 1px solid rgba(255,255,255,0.06);
}

.trust-box span {
    font-size: 0.9rem;
    color: #bdbdbd;
}
/* =======================
   COMPLIANCE & SECURITY ASSURANCE
======================= */
.compliance-assurance {
    padding: 160px 60px;
    background: radial-gradient(circle at top, #0f0f18, #050509);
    color: #ffffff;
}

/* HEADER */
.assurance-header {
    max-width: 860px;
    margin-bottom: 90px;
}

.assurance-header h2 {
    font-size: 3.2rem;
    font-weight: 800;
    margin-bottom: 20px;
}

.assurance-header .accent {
    color: #A45BBF;
}

.assurance-header p {
    font-size: 1.2rem;
    line-height: 1.7;
    color: #cfcfcf;
}

/* GRID */
.assurance-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 40px;
}

/* CARD */
.assurance-card {
    position: relative;
    padding: 40px 34px;
    border-radius: 18px;

    background: rgba(255,255,255,0.04);
    backdrop-filter: blur(14px);
    border: 1px solid rgba(255,255,255,0.06);

    box-shadow: 0 25px 60px rgba(0,0,0,0.6);
    transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.assurance-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 40px 90px rgba(164,91,191,0.35);
}

/* INDEX */
.assurance-index {
    display: block;
    font-size: 2rem;
    font-weight: 800;
    color: #A45BBF;
    margin-bottom: 14px;
}

/* TEXT */
.assurance-card h3 {
    font-size: 1.35rem;
    margin-bottom: 12px;
}

.assurance-card p {
    font-size: 1rem;
    line-height: 1.6;
    color: #d0d0d0;
}

/* STRIP */
.assurance-strip {
    margin-top: 100px;
    padding-top: 50px;
    border-top: 1px solid rgba(255,255,255,0.08);
}

.assurance-strip h3 {
    font-size: 1.6rem;
    margin-bottom: 30px;
}

/* TAGS */
.assurance-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 18px;
}

.assurance-tags span {
    padding: 12px 22px;
    border-radius: 40px;
    font-size: 0.9rem;

    background: rgba(255,255,255,0.04);
    border: 1px solid rgba(255,255,255,0.08);
    color: #bdbdbd;

    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.assurance-tags span:hover {
    transform: translateY(-4px);
    box-shadow: 0 20px 40px rgba(164,91,191,0.25);
}
/* =======================
   OFFICE & BUSINESS PRESENCE
======================= */
.office-presence {
    padding: 140px 60px;
    background: #ffffff;
    color: #2b2b2b;
}

/* HEADER */
.presence-header {
    max-width: 820px;
    margin-bottom: 80px;
}

.presence-header h2 {
    font-size: 3rem;
    font-weight: 800;
    margin-bottom: 18px;
}

.presence-header .accent {
    color: #7A2D8C;
}

.presence-header p {
    font-size: 1.15rem;
    line-height: 1.7;
    color: #444;
}

/* GRID */
.presence-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 40px;
}

/* CARD */
.presence-card {
    padding: 38px 36px;
    border-radius: 14px;

    background: #f8f8fc;
    border-left: 4px solid #7A2D8C;

    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.presence-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.08);
}

/* LABEL */
.presence-label {
    display: block;
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: #7A2D8C;
    margin-bottom: 12px;
}

/* TITLE */
.presence-card h3 {
    font-size: 1.4rem;
    margin-bottom: 14px;
}

/* MAIN TEXT */
.presence-text {
    font-size: 1.05rem;
    line-height: 1.7;
    margin-bottom: 16px;
    color: #333;
}

/* NOTE */
.presence-note {
    font-size: 0.95rem;
    line-height: 1.6;
    color: #666;
}

/* FOOTNOTE */
.presence-footnote {
    margin-top: 80px;
    padding-top: 40px;
    border-top: 1px solid #e6e6ee;
    max-width: 720px;
}

.presence-footnote p {
    font-size: 1.05rem;
    color: #555;
}
/* =======================
   ALTERNATE CONTACT CHANNELS
======================= */
.alternate-channels {
    padding: 140px 60px;
    background: #f7f7fb;
    color: #2b2b2b;
}

/* HEADER */
.channels-header {
    max-width: 820px;
    margin-bottom: 80px;
}

.channels-header h2 {
    font-size: 3rem;
    font-weight: 800;
    margin-bottom: 18px;
}

.channels-header .accent {
    color: #7A2D8C;
}

.channels-header p {
    font-size: 1.15rem;
    line-height: 1.7;
    color: #444;
}

/* GRID */
.channels-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 40px;
}

/* CARD */
.channel-card {
    padding: 40px 36px;
    border-radius: 16px;

    background: #ffffff;
    border: 1px solid rgba(0,0,0,0.05);

    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.channel-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 20px 45px rgba(0,0,0,0.08);
}

/* LABEL */
.channel-label {
    display: block;
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: #7A2D8C;
    margin-bottom: 14px;
}

/* TITLE */
.channel-card h3 {
    font-size: 1.45rem;
    margin-bottom: 14px;
}

/* TEXT */
.channel-text {
    font-size: 1.05rem;
    line-height: 1.7;
    margin-bottom: 18px;
    color: #333;
}

/* CONTACT */
.channel-contact {
    font-size: 1rem;
    margin-bottom: 14px;
}

.channel-contact a {
    color: #7A2D8C;
    text-decoration: none;
    font-weight: 500;
}

.channel-contact a:hover {
    text-decoration: underline;
}

/* NOTE */
.channel-note {
    font-size: 0.95rem;
    color: #666;
    line-height: 1.6;
}

/* FOOTNOTE */
.channels-footnote {
    margin-top: 80px;
    padding-top: 40px;
    border-top: 1px solid #e6e6ee;
    max-width: 720px;
}

.channels-footnote p {
    font-size: 1.05rem;
    color: #555;
}






