/* =========================================
   VARIABLES & THEME SETUP
   ========================================= */
:root {
    /* Colors */
    --bg-dark: #0b0b2a;
    /* Exact Figma bg color */
    --bg-darker: #0c0818;
    --primary-purple: #7a22ff;
    /* Vibrant brand purple */
    --text-pure-white: #ffffff;
    --text-light-gray: #b9b5db;
    --text-nav: #b8b8cc;
    /* Color for unselected nav links based on SS */
    --border-dim: rgba(255, 255, 255, 0.1);
    --glass-bg: rgba(255, 255, 255, 0.03);

    /* Typography */
    --font-heading: 'Outfit', sans-serif;
    --font-body: 'Inter', sans-serif;

    /* Layout */
    --container-width: 1280px;
    --nav-height: 100px;
}

/* =========================================
   RESET & BASE STYLES
   ========================================= */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    overflow-x: hidden;
}

body {
    background-color: var(--bg-dark);
    /* Brighter overlapping radial gradients matching design */
    background-image: radial-gradient(circle at 45% 20%, rgba(65, 45, 160, 0.45) 0%, transparent 65%),
        radial-gradient(circle at 75% 65%, rgba(124, 108, 255, 0.25) 0%, transparent 50%);
    background-repeat: no-repeat;
    background-attachment: fixed;
    background-position: center center;
    background-size: cover;
    color: var(--text-pure-white);
    font-family: var(--font-body);
    overflow-x: hidden;
    line-height: 1.6;
}

a {
    text-decoration: none;
    color: inherit;
    transition: all 0.3s ease;
}

ul {
    list-style: none;
}

/* =========================================
   CUSTOM CURSOR
   ========================================= */
.custom-cursor {
    width: 25px;
    height: 25px;
    border: 2px solid var(--primary-purple);
    border-radius: 50%;
    position: fixed;
    top: 0;
    left: 0;
    pointer-events: none;
    z-index: 9999;
    transform: translate(-50%, -50%);
    transition: width 0.3s ease, height 0.3s ease, border-color 0.3s ease, background-color 0.3s ease;
    display: none;
    /* Initially hidden until mouse moves */
}

.custom-cursor-dot {
    width: 4px;
    height: 4px;
    background-color: var(--primary-purple);
    border-radius: 50%;
    position: fixed;
    top: 0;
    left: 0;
    pointer-events: none;
    z-index: 9999;
    transform: translate(-50%, -50%);
    display: none;
}

/* Hover State */
.custom-cursor.cursor-hover {
    width: 32px;
    height: 32px;
    background-color: rgba(122, 34, 255, 0.1);
    border-color: var(--primary-purple);
}

/* Custom cursor visibility on desktop */
@media (min-width: 992px) {

    .custom-cursor,
    .custom-cursor-dot {
        display: block !important;
    }
}

.main-container {
    width: 100%;
    max-width: 1536px;
    /* Increased for larger screens (1920px+) */
    margin: 0 auto;
    padding: 0 80px 0 80px;
    position: relative;
    z-index: 10;
}

/* =========================================
   BACKGROUND GLOW EFFECTS
   ========================================= */
.bg-glow {
    position: absolute;
    border-radius: 50%;
    z-index: -1;
    pointer-events: none;
    background: #8d88fe;
    /* Unified glow color from Figma */
}

/* Glow #1 (Ellipse 18) */
.glow-top-left {
    top: -30px;
    left: -80px;
    width: 250px;
    height: 250px;
    filter: blur(150px);
    opacity: 0.8;
}

/* Glow #2 (Ellipse 21) */
.glow-top-right {
    top: 10px;
    right: -60px;
    width: 440px;
    height: 440px;
    filter: blur(250px);
    opacity: 0.6;
}

/* Glow #3 (Ellipse 19) */
.glow-center-purple {
    top: 320px;
    left: 235px;
    width: 250px;
    height: 250px;
    filter: blur(150px);
    opacity: 0.6;
}

/* =========================================
   NAVBAR WRAPPER (keeps navbar outside main-container stacking context)
   ========================================= */
.navbar-wrapper {
    width: 100%;
    max-width: 1536px;
    margin: 0 auto;
    padding: 46px 80px 0 80px;
    position: relative;
    z-index: 1001;
}

/* =========================================
   NAVIGATION BAR
   ========================================= */
.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    height: 54px;
    margin-top: 0;
    /* Top 46px moved to container padding */
    position: relative;
}

.logo {
    display: flex;
    align-items: center;
}

.nav-links {
    display: flex;
    gap: 48px;
    height: 100%;
    justify-content: center;
    align-items: center;
    /* Ensures strict vertical centering */
}

.nav-links a {
    font-size: 16px;
    font-weight: 500;
    color: var(--text-nav);
    position: relative;
    line-height: 1;
    /* Aligns visually without internal padding */
    display: flex;
    align-items: center;
}

.nav-links a:hover {
    color: var(--text-pure-white);
}

.nav-links a.active {
    color: var(--primary-purple);
}

.btn-outline-glow {
    display: flex;
    align-items: center;
    justify-content: center;
    width: max-content;
    padding: 0 28px;
    height: 54px;
    font-size: 16px;
    font-weight: 400;
    /* Match Figma normal weight */
    border-radius: 60px;
    position: relative;
    color: white;
    background: transparent;
    transition: all 0.3s ease;
    z-index: 1;
}

.btn-outline-glow::before {
    content: "";
    position: absolute;
    inset: 0;
    border-radius: 60px;
    padding: 1px;
    /* border thickness */
    background: linear-gradient(90deg, #7C6CFF, #9A46F5);
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    mask-composite: exclude;
    pointer-events: none;
    z-index: -1;
}

.btn-outline-glow:hover {
    background: linear-gradient(90deg, #7C6CFF, #9A46F5);
    color: #fff;
}

/* Arrow Decoration */
.nav-cta {
    position: relative;
}

.nav-arrow {
    position: absolute;
    right: -20px;
    top: 50px;
    width: 68px;
    height: 123px;
    pointer-events: none;
    animation: arrowBob 2.5s ease-in-out infinite;
    transition: opacity 0.3s ease;
}

/* Hide arrow when sticky */
.navbar-sticky .nav-arrow {
    opacity: 0;
    visibility: hidden;
}

/* =========================================
   STICKY NAVBAR (for inner pages & scroll)
   ========================================= */
.navbar-sticky {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: 0 80px;
    height: 80px;
    max-width: 1536px;
    margin: 0 auto;
    background: transparent;
    animation: slideDown 0.35s ease-out;
    display: flex;
    align-items: center;
}

.navbar-sticky::after {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 100vw;
    height: 100%;
    background: rgba(11, 11, 42, 0.85);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.3);
    z-index: -1;
}

@keyframes slideDown {
    from {
        transform: translateY(-100%);
        opacity: 0;
    }

    to {
        transform: translateY(0);
        opacity: 1;
    }
}

/* Mobile Menu Button - Hidden by default */
.mobile-menu-btn {
    display: none;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 0;
    z-index: 50;
}

@keyframes arrowBob {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(10px);
    }
}


/* =========================================
   HERO SECTION
   ========================================= */
.hero {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 100px 0 50px 0;
}

.hero-content {
    max-width: 750px;
}

/* Availability Badge */
.availability-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(122, 34, 255, 0.15);
    /* #7A22FF 15% opacity */
    border: 1px solid rgba(122, 34, 255, 0.4);
    padding: 10px 20px;
    border-radius: 100px;
    font-size: 14px;
    font-weight: 500;
    color: var(--text-pure-white);
    margin-bottom: 16px;
    animation: fadeInUp 0.8s ease backwards;
    animation-delay: 0.2s;
}

/* Main Typography */
.hero-title {
    font-family: 'Urbanist', sans-serif;
    font-size: 72px;
    font-weight: 800;
    line-height: 82px;
    letter-spacing: 0;
    width: auto;
    max-width: 100%;
    height: auto;
    min-height: 169px;
    margin-bottom: 24px;
    text-transform: capitalize;
    color: var(--text-pure-white);
    animation: fadeInUp 0.8s ease backwards;
    animation-delay: 0.4s;
}

.hero-description {
    font-family: 'Urbanist', sans-serif;
    font-size: 24px;
    font-weight: 400;
    color: var(--text-light-gray);
    margin-bottom: 32px;
    line-height: 32px;
    width: auto;
    max-width: 100%;
    min-height: 42px;
    animation: fadeInUp 0.8s ease backwards;
    animation-delay: 0.6s;
}

/* Buttons */
.hero-actions {
    display: flex;
    gap: 16px;
    animation: fadeInUp 0.8s ease backwards;
    animation-delay: 0.8s;
}

.btn-primary {
    background: linear-gradient(90deg, #7C6CFF, #9A46F5);
    color: var(--text-pure-white);
    padding: 0 40px;
    display: inline-flex;
    justify-content: center;
    align-items: center;
    height: 54px;
    border-radius: 100px;
    font-weight: 500;
    font-size: 16px;
    border: none;
    transition: all 0.3s ease;
    cursor: pointer;
}

.btn-primary:hover {
    background: linear-gradient(90deg, #9A8AFF, #B563FF);
}

.btn-outline {
    display: inline-flex;
    justify-content: center;
    align-items: center;
    gap: 8px;
    background: transparent;
    color: var(--text-pure-white);
    padding: 0 40px;
    height: 54px;
    border-radius: 100px;
    font-weight: 500;
    font-size: 16px;
    transition: all 0.3s ease;
    cursor: pointer;
    position: relative;
    z-index: 1;
    border: none;
}

.btn-outline::before {
    content: "";
    position: absolute;
    inset: 0;
    border-radius: 100px;
    padding: 1px;
    background: linear-gradient(90deg, #9A46F5, #7C6CFF);
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    mask-composite: exclude;
    pointer-events: none;
    z-index: -1;
}

.btn-outline i {
    font-size: 1.2rem;
}

.btn-outline:hover {
    background: rgba(124, 108, 255, 0.15);
    /* Tint color matching the theme */
    border-color: #7C6CFF;
}

/* Hero Image Area */
.hero-image-wrapper {
    position: relative;
    width: 480px;
    height: 550px;
    display: flex;
    justify-content: center;
    align-items: flex-end;
    animation: fadeIn 1.2s ease backwards;
    animation-delay: 0.5s;
}

.hero-image {
    width: 100%;
    height: auto;
    object-fit: cover;
    display: block;
    /* Removes ghost line below image */
    z-index: 2;
    mask-image: linear-gradient(to bottom, black 80%, rgba(0, 0, 0, 0) 100%);
    -webkit-mask-image: linear-gradient(to bottom, black 80%, rgba(0, 0, 0, 0) 100%);
}

/* Figma Background Blur (lightly blurred behind neck) */
.figma-blur-bg {
    position: absolute;
    width: 70px;
    height: 70px;
    top: 45%;
    right: 40px;
    /* Positioned on the right behind the person */
    filter: blur(8px);
    /* Halka blur */
    z-index: 1;
    /* Behind the hero image */
    opacity: 0.9;
    transform: rotate(15deg);
}

/* Responsive constraints (minimal for now) */
@media (max-width: 1100px) {
    .hero-title {
        font-size: 4rem;
    }

    .hero-image-wrapper {
        width: 400px;
    }
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

/* =========================================
   REVEAL ANIMATIONS (Intersection Observer)
   ========================================= */
.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s cubic-bezier(0.2, 0.8, 0.2, 1);
    will-change: opacity, transform;
}

.reveal.active {
    opacity: 1;
    transform: translateY(0);
}

.reveal-left {
    transform: translateX(-30px);
}

.reveal-right {
    transform: translateX(30px);
}

.reveal-scale {
    transform: scale(0.9);
}

.reveal-left.active,
.reveal-right.active {
    transform: translateX(0);
}

.reveal-scale.active {
    transform: scale(1);
}

.portfolio-marquee {
    width: 100%;
    max-width: 100vw;
    overflow: hidden;
    padding: 20px 0 50px 0;
    margin-top: 0;
    display: flex;
    flex-direction: column;
    gap: 30px;
    position: relative;
    z-index: 1;
    background-color: #0b0b2a;
}

.marquee-row {
    display: flex;
    width: max-content;
    user-select: none;
    pointer-events: none;
}

.marquee-content {
    display: flex;
    gap: 24px;
    padding-right: 24px;
    will-change: transform;
    backface-visibility: hidden;
}

.marquee-content img {
    width: 320px;
    height: 240px;
    object-fit: cover;
    border-radius: 15px;
    flex-shrink: 0;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    transition: transform 0.3s ease;
}

/* Animations */
.marquee-left {
    animation: scroll-left 40s linear infinite;
}

.marquee-right {
    animation: scroll-right 40s linear infinite;
}

@keyframes scroll-left {
    from {
        transform: translate3d(0, 0, 0);
    }

    to {
        transform: translate3d(-50%, 0, 0);
    }
}

@keyframes scroll-right {
    from {
        transform: translate3d(-50%, 0, 0);
    }

    to {
        transform: translate3d(0, 0, 0);
    }
}

/* =========================================
   EMBEDDED SERVICES SECTION
   ========================================= */
.embedded-services {
    padding: 50px 0;
    width: 100%;
    display: flex;
    justify-content: center;
    position: relative;
    z-index: 10;
    background-color: #0b0b2a;
}

.embedded-services,
.embedded-services * {
    font-family: 'Outfit', sans-serif !important;
}

.embedded-services .container-services {
    max-width: 1536px;
    padding: 0 80px;
    width: 100%;
    margin: 0 auto;
}

.embedded-services .main-content-services {
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    justify-content: space-between;
    align-items: stretch;
    gap: 70px;
}

.embedded-services .left-side {
    flex: 0 0 580px;
    display: flex;
    flex-direction: column;
}

.embedded-services .badge {
    background-color: #1a1c35;
    color: #ffffff;
    font-size: 14px;
    font-weight: 500;
    padding: 10px 22px;
    border-radius: 30px;
    display: inline-block;
    align-self: flex-start;
    margin-bottom: 25px;
    letter-spacing: 1px;
}

.embedded-services .services-h1 {
    font-family: 'Outfit', sans-serif;
    font-size: 60px;
    line-height: 1.15;
    font-weight: 600;
    margin-bottom: 25px;
    color: #ffffff;
}

.embedded-services .highlight-wrapper {
    position: relative;
    display: inline-block;
    white-space: nowrap;
}

.embedded-services .highlight-text {
    background: linear-gradient(90deg, #7a22ff, #bb88ff);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    font-weight: 600;
    font-style: italic;
}

.embedded-services .sparkle-icon {
    position: absolute;
    right: -42px;
    top: -20px;
    width: 45px;
    height: 45px;
}

.embedded-services .description {
    color: #9ca3af;
    font-size: 18px;
    line-height: 1.6;
    margin-bottom: 45px;
    font-weight: 300;
    max-width: none;
}

.embedded-services .image-section {
    position: relative;
    width: 100%;
    flex-grow: 1;
    min-height: 0;
    margin-top: 0;
}

.embedded-services .image-wrapper {
    position: relative;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.embedded-services .services-local-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    border-radius: 20px;
    pointer-events: none;
    -webkit-user-drag: none;
    -webkit-user-select: none;
    user-select: none;
}

.embedded-services .right-side {
    flex: 1;
    min-width: 0;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    gap: 12px;
}

.embedded-services .service-card {
    position: relative;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.03) 0%, rgba(255, 255, 255, 0.01) 100%);
    border-radius: 13px;
    cursor: pointer;
    transition: all 0.3s ease;
    z-index: 1;
    overflow: hidden;
}

.embedded-services .service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(90deg, #7e3af2, #5a20c1);
    transform: scaleX(0);
    transform-origin: right;
    transition: transform 0.4s ease-in-out;
    z-index: -1;
}

.embedded-services .service-card:hover::before {
    transform: scaleX(1);
    transform-origin: left;
}

.embedded-services .service-card::after {
    content: "";
    position: absolute;
    inset: 0;
    padding: 1px;
    border-radius: 13px;
    background: linear-gradient(135deg, #7C6CFF 0%, #100C35 100%);
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    pointer-events: none;
    z-index: 2;
}

.embedded-services .service-card:hover {
    transform: none;
}

.embedded-services .card-content-wrapper {
    position: relative;
    z-index: 1;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 30px 30px;
}

.embedded-services .card-info {
    display: flex;
    align-items: center;
    gap: 25px;
}

.embedded-services .card-icon {
    width: 48px;
    height: 48px;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: transform 0.5s ease;
}

.embedded-services .service-card:hover .card-icon {
    transform: rotateY(360deg);
}

.embedded-services .card-icon svg {
    width: 36px;
    height: 36px;
    stroke: #ffffff;
    stroke-width: 1.2;
    fill: none;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.embedded-services .card-text h3 {
    font-size: 21px;
    font-weight: 500;
    margin-bottom: 5px;
    color: #ffffff;
    font-family: 'Outfit', sans-serif;
}

.embedded-services .card-text p {
    font-size: 14.5px;
    color: #9ca3af;
    font-weight: 300;
    transition: color 0.3s ease;
    margin-bottom: 0;
}

.embedded-services .service-card:hover .card-text p {
    color: #e2d5f8;
}

.embedded-services .arrow-btn {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.05);
    display: flex;
    justify-content: center;
    align-items: center;
    transition: background-color 0.3s;
    flex-shrink: 0;
}

.embedded-services .arrow-btn svg {
    width: 16px;
    height: 16px;
    stroke: #ffffff;
    stroke-width: 1.5;
    fill: none;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.embedded-services .service-card:hover .arrow-btn {
    background-color: rgba(255, 255, 255, 0.15);
}

.embedded-services .bottom-tags {
    margin-top: 30px;
    width: 100%;
    overflow: hidden;
    position: relative;
    white-space: nowrap;
}

.embedded-services .bottom-tags-track {
    display: flex;
    align-items: center;
    gap: 40px;
    width: max-content;
    animation: marqueeScroll 35s linear infinite;
}

@keyframes marqueeScroll {
    from {
        transform: translate3d(0, 0, 0);
    }

    to {
        transform: translate3d(calc(-50% - 20px), 0, 0);
    }
}

.embedded-services .tag {
    display: flex;
    align-items: center;
    gap: 15px;
    font-size: 15px;
    font-weight: 400;
    color: #ffffff;
}

.embedded-services .tag svg {
    width: 18px;
    height: 18px;
    fill: transparent;
    stroke: white;
    stroke-width: 1.5;
    stroke-linecap: round;
    stroke-linejoin: round;
}

/* =========================================
   HIGHLIGHTS SECTION
   ========================================= */
.highlights-section {
    background-color: #0b0b2a;
    padding: 50px 80px 0 80px;
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    position: relative;
    z-index: 10;
}

.highlights-header {
    text-align: center;
    margin-bottom: 60px;
    position: relative;
}

.highlights-title {
    font-family: 'Outfit', sans-serif;
    font-size: 56px;
    font-weight: 600;
    color: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
}

.highlights-title span {
    font-style: italic;
    position: relative;
}

.highlights-highlight {
    background: linear-gradient(90deg, #7a22ff, #bb88ff);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    display: inline-block;
}

.spark-svg {
    position: absolute;
    top: -25px;
    right: -30px;
    width: 40px;
    height: 40px;
    transform: rotate(15deg);
}

.highlights-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
    width: 100%;
    max-width: 1376px;
    margin-bottom: 0;
}

.highlight-card {
    width: 100%;
    background: rgba(255, 255, 255, 0.03);
    position: relative;
    padding: 24px;
    border-radius: 20px;
    display: flex;
    flex-direction: column;
    gap: 24px;
    transition: transform 0.3s ease, box-shadow 0.3s ease, background 0.3s ease;
    animation: fadeInUp 0.8s ease backwards;
}

/* Card borders - gradient */
.highlight-card::before {
    content: "";
    position: absolute;
    inset: 0;
    padding: 1px;
    border-radius: 20px;
    background: linear-gradient(180deg, #7C6CFF 0%, #100C35 100%);
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    pointer-events: none;
    transition: background 0.3s ease;
}

.highlight-card:hover {
    background: linear-gradient(180deg, rgba(154, 70, 245, 0.4) 0%, rgba(124, 108, 255, 0.1) 100%);
}

.highlight-card:hover::before {
    background: linear-gradient(180deg, #9A46F5 0%, #7C6CFF 100%);
}

.highlight-image-wrapper {
    width: 100%;
    height: 420px;
    background-color: transparent;
    border-radius: 20px;
    overflow: hidden;
    display: flex;
    justify-content: center;
    align-items: center;
}

.highlight-image-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 20px;
}

.highlight-content {
    display: flex;
    flex-direction: column;
    gap: 16px;
    padding: 0 4px;
}

.highlight-title {
    font-family: 'Urbanist', sans-serif;
    font-size: 30px;
    font-weight: 600;
    line-height: 1.2;
    background: linear-gradient(90deg, #7C6CFF, #9A46F5);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.highlight-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.highlight-tag {
    background-color: #1A1A4E;
    color: #ffffff;
    padding: 15px 16px;
    border-radius: 89px;
    font-size: 14px;
    font-family: 'Inter', sans-serif;
    font-weight: 400;
    line-height: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 44px;
    white-space: nowrap;
}

.explore-btn {
    background-color: #ffffff;
    color: #9A46F5;
    border: 1px solid #ffffff;
    font-family: 'Urbanist', sans-serif;
    font-weight: 500;
    font-size: 20px;
    letter-spacing: -0.015em;
    line-height: 100%;
    padding: 15px 30px;
    height: 54px;
    border-radius: 60px;
    display: inline-flex;
    justify-content: center;
    align-items: center;
    text-decoration: none;
    transition: all 0.3s ease;
    margin-top: 60px;
    margin-bottom: 0;
    animation: fadeInUp 0.8s ease backwards;
}

.explore-btn:hover {
    background: linear-gradient(90deg, #7C6CFF, #9A46F5);
    color: #ffffff;
    border-color: transparent;
}

/* ========================================= */
/*       Idea To Interface Section           */
/* ========================================= */

.idea-section {
    width: 100%;
    padding: 50px 80px 50px 80px;
    display: flex;
    flex-direction: column;
    align-items: center;
    background-color: #0b0b2a;
}

.idea-header {
    text-align: center;
    margin-bottom: 60px;
}

.idea-header h2 {
    font-size: 56px;
    font-family: 'Outfit', sans-serif;
    font-weight: 600;
    margin-bottom: 20px;
}

.idea-highlight {
    font-family: 'Urbanist', sans-serif;
    font-size: 50px;
    font-weight: 700;
    font-style: italic;
    line-height: 100%;
    letter-spacing: -1.5%;
    background: linear-gradient(135deg, #7C6CFF 0%, #9A46F5 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    position: relative;
    display: inline-block;
    padding-right: 15px;
}

.idea-sparkle {
    position: absolute;
    top: -5px;
    right: -15px;
    width: 32px;
    height: 32px;
}

.idea-sparkle path {
    stroke: white;
}

.idea-header p {
    font-size: 20px;
    font-family: 'Outfit', sans-serif;
    color: rgba(255, 255, 255, 0.7);
    max-width: 100%;
    margin: 0 auto;
}

.idea-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
    width: 100%;
    max-width: 1376px;
    padding: 0;
    margin: 0 auto;
}

.idea-card {
    position: relative;
    width: 100%;
    height: 340px;
    background-color: rgba(255, 255, 255, 0.03);
    border-radius: 20px;
    padding: 30px;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    box-sizing: border-box;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    overflow: hidden;
}

.idea-card:hover {
    background: linear-gradient(180deg, rgba(154, 70, 245, 0.4) 0%, rgba(124, 108, 255, 0.1) 100%);
}

.idea-card:hover::before {
    background: linear-gradient(180deg, #9A46F5 0%, #7C6CFF 100%);
}

.idea-card::before {
    content: "";
    position: absolute;
    inset: 0;
    border-radius: 20px;
    padding: 1px;
    background: linear-gradient(135deg, #7C6CFF 0%, #100C35 100%);
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    pointer-events: none;
    transition: background 0.3s ease;
}

.idea-card:hover::before {
    background: linear-gradient(180deg, #9A46F5 0%, #7C6CFF 100%);
}

.idea-number {
    position: absolute;
    top: 25px;
    right: 32px;
    font-size: 60px;
    font-family: 'Urbanist', sans-serif;
    font-weight: 900;
    color: rgba(255, 255, 255, 0.15);
    line-height: 1;
}

.idea-icon {
    display: block;
    width: 200px;
    height: 200px;
    margin: -50px auto -45px auto;
    object-fit: contain;
}

.idea-title {
    font-family: 'Urbanist', sans-serif;
    font-size: 32px;
    font-weight: 600;
    margin-bottom: 12px;
    color: #ffffff;
    line-height: 1.2;
}

.idea-desc {
    font-family: 'Urbanist', sans-serif;
    font-size: 22px;
    font-weight: 400;
    line-height: 1.5;
    color: rgba(255, 255, 255, 0.7);
    margin: 0;
}

@media (max-width: 1024px) {
    .idea-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .idea-grid {
        grid-template-columns: 1fr;
    }

    .idea-from {
        display: none;
    }

    .idea-header p {
        display: none !important;
    }

    .idea-header {
        margin-bottom: 30px;
    }

    .idea-highlight {
        font-size: 32px;
        padding-right: 15px;
        display: block !important;
        background: none !important;
        -webkit-text-fill-color: initial !important;
    }

    .idea-text-main {
        color: #ffffff !important;
    }

    .idea-text-accent {
        background: linear-gradient(135deg, #7C6CFF 0%, #9A46F5 100%);
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
        background-clip: text;
    }

    .idea-sparkle {
        width: 24px;
        height: 24px;
        top: -10px;
    }
}

/* ========================================= */
/*         Testimonials Section              */
/* ========================================= */

.testimonials-section {
    width: 100%;
    padding: 50px 80px;
    display: flex;
    flex-direction: column;
    align-items: center;
    background-color: #0b0b2a;
}

.testimonials-header-container {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    width: 100%;
    max-width: 1376px;
    padding: 0;
    margin: 0 auto 60px auto;
}

.testimonials-header {
    max-width: 600px;
}

.testimonials-header h2 {
    font-size: 56px;
    font-family: 'Outfit', sans-serif;
    font-weight: 600;
    margin-bottom: 20px;
    line-height: 1.2;
}

.testimonials-highlight {
    font-style: italic;
    background: linear-gradient(90deg, #7a22ff, #bb88ff);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    position: relative;
    display: inline-block;
}

.testimonials-sparkle {
    position: absolute;
    top: -15px;
    right: -25px;
    width: 32px;
    height: 32px;
}

.testimonials-header p {
    font-size: 18px;
    font-family: 'Outfit', sans-serif;
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.5;
    margin: 0;
}

.testimonials-nav {
    display: none;
    gap: 16px;
    margin-bottom: 10px;
}

.nav-btn {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: #242442;
    color: rgba(255, 255, 255, 0.6);
    border: none;
    font-size: 20px;
    cursor: pointer;
    transition: all 0.3s;
    display: flex;
    align-items: center;
    justify-content: center;
}

.nav-btn:hover {
    background: #3A3A6A;
    color: white;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    width: 100%;
    max-width: 1376px;
    padding: 0;
    margin: 0 auto;
}

.testimonial-card {
    position: relative;
    border-radius: 25px;
    overflow: hidden;
    height: 680px;
    /* Matched from Figma */
    cursor: pointer;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.4);
    transition: transform 0.3s ease;
}

.testimonial-card::before {
    content: "";
    position: absolute;
    inset: 0;
    border-radius: 25px;
    padding: 1px;
    background: linear-gradient(180deg, #7C6CFF, #100C35);
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    mask-composite: exclude;
    pointer-events: none;
    z-index: 3;
    transition: opacity 0.3s ease;
}

.testimonial-card.is-playing::before {
    opacity: 0;
}

.testimonial-card:hover {
    transform: none;
}

.testimonial-thumbnail {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: opacity 0.3s;
}

.testimonial-hover-video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0;
    transition: opacity 0.3s;
    pointer-events: none;
    z-index: 1;
}

.testimonial-card:hover .testimonial-hover-video,
.testimonial-card.is-playing .testimonial-hover-video {
    opacity: 1;
}

.play-video-btn-overlay {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 65px;
    height: 65px;
    background: rgba(255, 255, 255, 0.3);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 2;
    transition: transform 0.3s, opacity 0.3s;
    pointer-events: none;
}

.testimonial-card:hover .play-video-btn-overlay,
.testimonial-card.is-playing .play-video-btn-overlay {
    opacity: 0;
    transform: translate(-50%, -50%) scale(0.8);
}

.testimonial-info-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 80px 30px 30px 30px;
    background: linear-gradient(to top, rgba(31, 23, 105, 0.95) 0%, rgba(31, 23, 105, 0.6) 40%, rgba(31, 23, 105, 0) 100%);
    color: white;
    z-index: 2;
    pointer-events: none;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    transition: opacity 0.3s ease;
}

.testimonial-card:hover .testimonial-info-overlay,
.testimonial-card.is-playing .testimonial-info-overlay {
    opacity: 0;
}

.testimonial-info-overlay h4 {
    font-size: 22px;
    font-family: 'Outfit', sans-serif;
    font-weight: 700;
    color: white;
    margin-bottom: 8px;
}

.testimonial-info-overlay p {
    font-size: 15px;
    font-family: 'Outfit', sans-serif;
    font-weight: 400;
    color: rgba(255, 255, 255, 0.85);
    line-height: 1.5;
    margin: 0;
}

/* =========================================
   CONTACT SECTION
   ========================================= */
.contact-section {
    padding: 50px 80px;
    display: flex;
    justify-content: center;
    background-color: #0B0B2A;
}

.container-contact {
    max-width: 1376px;
    width: 100%;
    padding: 0;
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1.8fr;
    gap: 80px;
    align-items: stretch;
}

/* --- Contact Section Header --- */
.contact-header-section {
    display: none;
    /* Only show on mobile */
}

/* --- Left Info Card --- */
.contact-info-card {
    background: #302064;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 30px;
    padding: 40px;
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    text-align: left;
    gap: 40px;
}

.status-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.2);
    padding: 10px 24px;
    border-radius: 100px;
    font-size: 14px;
    font-weight: 500;
}

.status-badge .dot {
    width: 8px;
    height: 8px;
    background-color: #00ff00;
    border-radius: 50%;
    box-shadow: 0 0 10px #00ff00;
}

.portrait-section {
    width: 100%;
    height: 321px;
    background: rgba(255, 255, 255, 0.05);
    /* White 5% */
    border-radius: 30px;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
}

.portrait-section::before {
    content: "";
    position: absolute;
    inset: 0;
    border-radius: 30px;
    padding: 1px;
    background: linear-gradient(rgba(255, 255, 255, 0.2), rgba(255, 255, 255, 0.2)), linear-gradient(180deg, #7C6CFF 0%, #100C35 100%);
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    mask-composite: exclude;
    pointer-events: none;
    z-index: 1;
}

.circular-frame,
.label-tag {
    z-index: 2;
    position: relative;
}

.circular-frame {
    width: 190.81px;
    height: 190.81px;
    border-radius: 50%;
    position: relative;
    border: 1px solid #FFFFFF;
    background: transparent;
    display: flex;
    justify-content: center;
    align-items: flex-end;
    overflow: visible;
}

.dotted-circle {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 230px;
    height: 230px;
    border: 3px dashed rgba(255, 255, 255, 0.5);
    border-radius: 50%;
    z-index: 1;
    animation: rotateCircle 20s linear infinite;
    pointer-events: none;
}

@keyframes rotateCircle {
    from {
        transform: translate(-50%, -50%) rotate(0deg);
    }

    to {
        transform: translate(-50%, -50%) rotate(360deg);
    }
}

.contact-portrait {
    width: 100%;
    height: auto;
    z-index: 2;
    border-radius: 50%;
}





.label-tag {
    position: absolute;
    width: 100px;
    height: 33px;
    background: rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 96px;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 12px;
    font-weight: 500;
    color: white;
    z-index: 3;
    white-space: nowrap;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.label-tag.ux {
    top: 0px;
    left: -60px;
}

.label-tag.ui {
    top: 35px;
    right: -70px;
}

.label-tag.web {
    bottom: 25px;
    left: -50px;
}

.contact-info-text h2 {
    font-family: var(--font-heading);
    font-size: 38px;
    font-weight: 700;
    line-height: 1.1;
    margin-bottom: 8px;
    display: block;
    white-space: nowrap;
}

.h2-gradient {
    background: linear-gradient(90deg, #9A46F5, #7C6CFF);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.consultation-btn {
    display: block;
    width: 100%;
    border: 1px solid rgba(154, 70, 245, 1);
    background: rgba(154, 70, 245, 0.05);
    padding: 18px 36px;
    border-radius: 100px;
    font-family: 'Urbanist', sans-serif;
    font-size: 20px;
    font-weight: 500;
    line-height: 100%;
    letter-spacing: -0.015em;
    color: var(--text-pure-white);
    cursor: pointer;
    transition: all 0.3s ease;
    text-align: center;
    box-sizing: border-box;
}

.consultation-btn:hover {
    background: linear-gradient(90deg, #7C6CFF, #9A46F5);
    border-color: transparent;
    color: #fff;
}

.stats-row {
    display: flex;
    gap: 15px;
    width: 100%;
}

.stat-item {
    flex: 1;
    position: relative;
    background: rgba(255, 255, 255, 0.03);
    border-radius: 8px;
    height: 69px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.stat-item::before {
    content: "";
    position: absolute;
    inset: 0;
    border-radius: 8px;
    padding: 1px;
    background: linear-gradient(135deg, #7C6CFF 0%, rgba(124, 108, 255, 0) 100%);
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    mask-composite: exclude;
    pointer-events: none;
}

.stat-number {
    font-size: 20px;
    font-weight: 700;
    color: white;
    margin-bottom: 2px;
}

.stat-label {
    font-size: 14px;
    font-weight: 300;
    color: #e5e7eb;
}

.contact-form-container {
    width: 100%;
    height: 100%;
    background: transparent;
    border-radius: 60px;
    padding: 0;
    margin: 0;
    border: none;
    display: flex;
    flex-direction: column;
}

.contact-form {
    display: flex;
    flex-direction: column;
    flex: 1;
    justify-content: space-between;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
}

.form-group label {
    font-size: 20px;
    font-weight: 500;
    color: white;
}

.form-group input {
    background: transparent;
    border: none;
    border-bottom: 1px solid rgba(122, 34, 255, 0.4);
    color: white;
    padding: 10px 0 5px 0;
    font-size: 18px;
    outline: none;
    transition: border-color 0.3s;
}

.form-group textarea {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 12px;
    color: white;
    padding: 16px;
    font-size: 18px;
    outline: none;
    min-height: 120px;
    height: auto;
    resize: both;
    transition: all 0.3s ease;
    box-sizing: border-box;
}

.form-group textarea:focus {
    border-color: rgba(124, 108, 255, 0.5);
    background: rgba(255, 255, 255, 0.05);
}

.selection-section {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.selection-pills {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
}

.selection-label {
    font-size: 20px;
    font-weight: 500;
    color: white;
    margin-bottom: 10px;
}

.pill {
    background: transparent;
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: white;
    padding: 12px 28px;
    border-radius: 100px;
    font-size: 17px;
    cursor: pointer;
    transition: background 0.3s ease, border-color 0.3s ease, transform 0.2s ease;
}

.pill:hover {
    background: linear-gradient(90deg, #7C6CFF, #9A46F5);
    border-color: transparent;
}

.pill.active {
    background: linear-gradient(90deg, #7C6CFF, #9A46F5);
    border-color: transparent;
}

.form-message {
    padding: 15px 20px;
    border-radius: 12px;
    font-size: 16px;
    font-weight: 500;
    margin-bottom: 20px;
    line-height: 1.5;
    animation: fadeInUp 0.5s ease backwards;
}

.form-message.success {
    background: rgba(26, 26, 78, 0.4);
    color: #ffffff;
    border: 1px solid rgba(124, 108, 255, 0.5);
    backdrop-filter: blur(10px);
    box-shadow: 0 0 20px rgba(124, 108, 255, 0.2);
}

.form-message.error {
    background: rgba(255, 71, 87, 0.1);
    color: #ff4757;
    border: 1px solid rgba(255, 71, 87, 0.2);
}

.submit-btn {
    width: fit-content;
    background: #1A1A4E;
    transition: all 0.4s ease;
    color: white;
    border: none;
    padding: 18px 45px;
    border-radius: 100px;
    font-family: 'Urbanist', sans-serif;
    font-size: 20px;
    font-weight: 500;
    line-height: 100%;
    letter-spacing: -0.015em;
    cursor: pointer;
    margin-top: -10px;
    transition: transform 0.3s, box-shadow 0.3s;
}

.submit-btn:hover {
    background: linear-gradient(90deg, #7C6CFF, #9A46F5);
    box-shadow: 0 4px 20px rgba(124, 108, 255, 0.4);
    opacity: 1;
}

@media (max-width: 1100px) {
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 60px;
    }

    .contact-info-card {
        max-width: 500px;
        margin: 0 auto;
    }
}

/* =========================================
   CTA SECTION
   ========================================= */
.cta-section {
    background-color: #0B0B2A;
    padding: 50px 80px 100px 80px;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
}

.cta-container {
    max-width: 722px;
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.cta-icon {
    margin-bottom: 30px;
}

.cta-icon img {
    width: 95px;
    height: 55px;
}

.cta-heading {
    font-family: 'Outfit', sans-serif;
    font-size: 56px;
    font-weight: 700;
    line-height: 1.15;
    color: #ffffff;
    margin-bottom: 24px;
    letter-spacing: -1px;
}

.cta-highlight {
    background: linear-gradient(92.71deg, #7C6CFF 1.95%, #9A46F5 24.36%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    font-style: normal;
}

.cta-description {
    font-family: 'Urbanist', sans-serif;
    font-size: 22px;
    font-weight: 400;
    line-height: 1.5;
    color: #ffffff;
    max-width: 722px;
    margin-bottom: 40px;
    text-align: center;
    letter-spacing: 0;
}

.cta-buttons {
    display: flex;
    gap: 20px;
    align-items: center;
}

.cta-btn-primary {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 156px;
    height: 54px;
    padding: 0 30px;
    background: linear-gradient(90deg, #7C6CFF, #9A46F5);
    color: #ffffff;
    font-family: 'Urbanist', sans-serif;
    font-size: 20px;
    font-weight: 500;
    line-height: 100%;
    letter-spacing: -0.015em;
    border-radius: 60px;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
}

.cta-btn-primary:hover {
    opacity: 0.9;
}

.cta-btn-outline {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 156px;
    height: 54px;
    padding: 0 30px;
    background: #FFFFFF;
    color: #9A46F5;
    font-family: 'Urbanist', sans-serif;
    font-size: 20px;
    font-weight: 500;
    line-height: 100%;
    letter-spacing: -0.015em;
    border-radius: 60px;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
}

/* =========================================
   FOOTER
   ========================================= */
.site-footer {
    background-color: #0E0E30;
    padding: 50px 80px 40px 80px;
    width: 100%;
}

.footer-container {
    max-width: 1376px;
    margin: 0 auto;
    width: 100%;
}

.footer-top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    padding-bottom: 24px;
}

.footer-logo a {
    display: flex;
    align-items: center;
}

.footer-logo img {
    width: 154px;
    height: 37px;
}

.footer-nav ul {
    display: flex;
    align-items: center;
    gap: 40px;
    list-style: none;
    margin: 0;
    padding: 0;
}

.footer-mobile-title {
    display: none;
}

.social-label {
    display: none;
}

.footer-nav ul li a {
    font-family: 'Urbanist', sans-serif;
    font-size: 16px;
    font-weight: 400;
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-nav ul li a:hover {
    color: #ffffff;
}

.footer-nav ul li a.active {
    color: #9A46F5;
}

.footer-socials {
    display: flex;
    align-items: center;
    gap: 20px;
}

.social-links-container {
    display: flex;
    align-items: center;
    gap: 20px;
}

.footer-socials a {
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.footer-socials a:hover {
    transform: translateY(-2px);
}

.footer-socials a img {
    height: 18px;
    width: auto;
    object-fit: contain;
}

/* Removed old SVG styles */

.footer-divider {
    width: 100%;
    height: 1px;
    background: rgba(255, 255, 255, 0.1);
}

.footer-bottom {
    padding-top: 30px;
    text-align: center;
}

.footer-bottom p {
    font-family: 'Urbanist', sans-serif;
    font-size: 16px;
    font-weight: 400;
    color: rgba(255, 255, 255, 0.6);
    margin: 0;
}

@media (max-width: 1100px) {
    .cta-heading {
        font-size: 42px;
    }

    .cta-description {
        font-size: 18px;
    }

    .footer-top {
        flex-direction: column;
        gap: 30px;
        text-align: center;
    }

    .footer-nav ul {
        flex-wrap: wrap;
        justify-content: center;
        gap: 20px;
    }

    .footer-socials {
        justify-content: center;
    }

    /* Ensure consistent section padding at 1100px */
    .main-container,
    .navbar-wrapper,
    .navbar-sticky {
        padding-left: 60px;
        padding-right: 60px;
    }

    .embedded-services .container-services,
    .container-contact {
        padding-left: 60px;
        padding-right: 60px;
    }

    .highlights-section {
        padding-left: 60px;
        padding-right: 60px;
    }

    .testimonials-section {
        padding-left: 60px;
        padding-right: 60px;
    }

    .cta-section {
        padding-left: 60px;
        padding-right: 60px;
    }

    .footer-section {
        padding-left: 60px;
        padding-right: 60px;
    }
}

/* =========================================
   RESPONSIVE - MEDIUM SCREENS (≤900px)
   ========================================= */
@media (max-width: 900px) {

    .main-container,
    .navbar-wrapper,
    .navbar-sticky {
        padding-left: 50px;
        padding-right: 50px;
    }

    .embedded-services .container-services,
    .container-contact {
        padding-left: 50px;
        padding-right: 50px;
    }

    .highlights-section {
        padding-left: 50px;
        padding-right: 50px;
    }

    .testimonials-section {
        padding-left: 50px;
        padding-right: 50px;
    }

    .cta-section {
        padding-left: 50px;
        padding-right: 50px;
    }

    .footer-section {
        padding-left: 50px;
        padding-right: 50px;
    }

    .hero-title {
        font-size: 3rem;
    }

    .hero-description {
        max-width: 100%;
    }

    .hero {
        flex-direction: column;
        padding-top: 60px;
        min-height: auto;
    }

    .hero-image-wrapper {
        width: 100%;
        max-width: 400px;
        height: auto;
        margin-top: 40px;
    }

    .embedded-services .main-content-services {
        flex-direction: column;
        gap: 40px;
    }

    .embedded-services .left-side {
        flex: none;
        width: 100%;
    }

    .contact-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 600px) {
    .hero-actions {
        flex-direction: row;
        width: 100%;
        gap: 8px;
        justify-content: flex-start;
    }

    .hero-actions .btn-primary {
        padding: 0 48px;
    }

    .main-container {
        padding-top: 17px;
        padding-left: 20px;
        padding-right: 20px;
    }

    .navbar-wrapper {
        padding-top: 15px;
        padding-bottom: 5px;
        padding-left: 20px;
        padding-right: 20px;
        background: transparent;
    }

    .navbar {
        height: 60px;
        padding: 0;
        gap: 10px;
    }

    .logo img {
        width: 110px;
        height: auto;
    }

    .nav-cta .btn-outline-glow {
        padding: 0 20px;
        font-size: 14px;
        height: 42px;
        width: 140px;
    }

    .navbar-sticky {
        height: 60px;
        padding: 0 20px;
    }

    .embedded-services .container-services,
    .container-contact {
        padding-left: 24px;
        padding-right: 24px;
    }

    .highlights-section {
        padding-left: 24px;
        padding-right: 24px;
    }

    .testimonials-section {
        padding-left: 24px;
        padding-right: 24px;
    }

    .cta-section {
        padding-left: 24px;
        padding-right: 24px;
        padding-top: 20px;
    }

    .cta-container {
        width: 100%;
        max-width: 319px;
        margin: 0 auto;
    }

    .cta-heading {
        font-size: 35px;
        line-height: 1.1;
        text-align: center;
    }

    .cta-description {
        font-size: 16px;
        line-height: 1.4;
        margin-bottom: 30px;
    }

    .cta-buttons {
        gap: 10px;
        width: 100%;
        justify-content: center;
    }

    .cta-btn-primary,
    .cta-btn-outline {
        width: 140px;
        height: 48px;
        font-size: 16px;
        padding: 0;
    }

    .footer-section {
        padding-left: 24px;
        padding-right: 24px;
    }

    /* Mobile Menu Styles */
    .mobile-menu-btn {
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        gap: 6px;
        width: 45px;
        height: 36px;
        border-radius: 8px;
        position: relative;
    }

    .mobile-menu-btn::before {
        content: "";
        position: absolute;
        inset: 0;
        border-radius: 8px;
        padding: 1px;
        background: linear-gradient(180deg, #7C6CFF, #9A46F5);
        -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
        -webkit-mask-composite: xor;
        mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
        mask-composite: exclude;
        pointer-events: none;
    }

    .mobile-menu-btn span {
        display: block;
        width: 23px;
        height: 2px;
        background-color: white;
        border-radius: 2px;
        transition: all 0.3s ease;
    }

    /* Transform hamburger to X */
    .navbar.menu-open .mobile-menu-btn span:nth-child(1) {
        transform: translateY(8px) rotate(45deg);
    }

    .navbar.menu-open .mobile-menu-btn span:nth-child(2) {
        opacity: 0;
    }

    .navbar.menu-open .mobile-menu-btn span:nth-child(3) {
        transform: translateY(-8px) rotate(-45deg);
    }

    .nav-links {
        display: none;
        position: fixed;
        top: 53px;
        /* 17px + 36px */
        left: 0;
        right: 0;
        bottom: 0;
        height: calc(100vh - 53px);
        background: rgba(11, 11, 42, 0.85);
        /* Project theme dark with opacity */
        backdrop-filter: blur(16px);
        -webkit-backdrop-filter: blur(16px);
        padding: 40px 24px;
        flex-direction: column;
        align-items: center;
        gap: 30px;
        z-index: 1000;
    }

    .nav-links a {
        font-size: 20px;
        font-weight: 600;
        color: var(--text-pure-white);
    }

    /* Override hover/active styles for mobile to remove any background/box */
    .nav-links a.active {
        color: var(--primary-purple);
        background: transparent;
        border: none;
    }

    .navbar.menu-open .nav-links {
        display: flex;
        animation: fadeInUp 0.3s ease forwards;
    }

    body.menu-open {
        overflow: hidden;
    }


    .nav-cta {
        display: none;
        /* Hide Let's Work button and arrow entirely on mobile */
    }

    /* Hero Mobile Overrides */
    .hero {
        padding-top: 24px;
        padding-bottom: 0;
        flex-direction: column;
        align-items: center;
        text-align: center;
        min-height: auto;
    }

    .hero-content {
        display: flex;
        flex-direction: column;
        align-items: center;
        max-width: 100%;
        margin-bottom: 0px;
        /* Removed to reduce space above buttons */
    }

    .availability-badge {
        background: rgba(124, 108, 255, 0.10);
        border: 1px solid rgba(124, 108, 255, 0.3);
        padding: 7px 13px;
        border-radius: 50px;
        gap: 10px;
        font-family: 'Manrope', sans-serif;
        font-size: 12px;
        font-weight: 500;
        letter-spacing: 0;
        color: #7C6CFF;
        margin: 20px auto 16px auto;
        width: fit-content;
        white-space: nowrap;
    }

    .hero-title {
        font-family: 'Urbanist', sans-serif;
        font-size: 35px;
        line-height: 42px;
        font-weight: 800;
        letter-spacing: 0;
        text-transform: capitalize;
        width: 277px;
        text-align: center;
        margin: 0 auto 26px auto;
        min-height: unset;
    }

    .hero-description {
        display: none;
    }

    .hero-actions {
        justify-content: center;
        gap: 10px;
    }

    .btn-primary {
        box-sizing: border-box;
        width: 160px;
        height: 39px;
        padding: 0;
        display: flex;
        justify-content: center;
        align-items: center;
        border-radius: 60px;
        white-space: nowrap;

        /* Typography overrides */
        font-family: 'Urbanist', sans-serif;
        font-weight: 500;
        font-size: 16px;
        line-height: 1;
        letter-spacing: -0.015em;
    }

    .btn-outline {
        box-sizing: border-box;
        width: 154px;
        height: 39px;
        padding: 0;
        display: flex;
        justify-content: center;
        align-items: center;
        gap: 8px;
        /* Slightly tighter gap for mobile */
        border-radius: 89px;
        white-space: nowrap;

        /* Typography overrides */
        font-family: 'Urbanist', sans-serif;
        font-weight: 500;
        font-size: 16px;
        line-height: 1;
        /* Keep simple to avoid wrapping */
        letter-spacing: 0;
    }

    .btn-outline i {
        font-size: 17.69px;
        display: inline-flex;
        align-items: center;
        transform: translateY(0);
    }

    .hero-image-wrapper {
        width: 100%;
        max-width: 390px;
        height: auto;
        margin: 26px auto 0 auto;
        display: flex;
        justify-content: center;
    }

    .hero-image {
        width: 100%;
        height: 100%;
        object-fit: cover;
        object-position: top;
        /* Important so his head isn't pushed down */
    }

    /* =========================================
       SERVICES SECTION MOBILE OVERRIDES 
       ========================================= */
    .embedded-services {
        padding: 60px 0;
        /* Adjust overall padding for mobile */
    }

    .embedded-services .container-services {
        padding: 0 20px;
        /* ~22px left/right */
        display: flex;
        flex-direction: column;
        align-items: center;
        /* Center horizontally */
    }

    .embedded-services .main-content-services {
        flex-direction: column;
        /* Stack vertically on mobile */
        gap: 40px;
    }

    .embedded-services .left-side {
        width: 100%;
        max-width: 319px;
        /* Requested width 319px */
        display: flex;
        flex-direction: column;
        align-items: center;
        /* Center elements within left-side */
        text-align: center;
        margin: 0 auto;
    }

    .embedded-services .right-side {
        width: 100%;
        max-width: 346px;
        /* Requested Width 346px */
        margin: 0 auto;
        gap: 15px;
        /* Adjust gap so total height is approx 365px */
    }

    .embedded-services .service-card {
        width: 100%;
        height: 80px;
        /* Requested Height 80px */
        border-radius: 13px;
        /* Requested Radius 13px */
    }

    .embedded-services .card-content-wrapper {
        padding: 12px 16px;
        height: 100%;
        box-sizing: border-box;
    }

    .embedded-services .card-text h3 {
        font-size: 16px;
        margin-bottom: 2px;
        line-height: 1.1;
    }

    .embedded-services .card-text p {
        font-size: 11px;
        margin-bottom: 0;
        line-height: 1.3;
        display: -webkit-box;
        -webkit-line-clamp: 2;
        line-clamp: 2;
        -webkit-box-orient: vertical;
        overflow: hidden;
    }

    .embedded-services .card-info {
        gap: 15px;
    }

    .embedded-services .card-icon {
        width: 36px;
        height: 36px;
    }

    .embedded-services .badge {
        width: 112px;
        height: 41px;
        padding: 0;
        display: flex;
        justify-content: center;
        align-items: center;
        align-self: center;
        /* Override desktop flex-start */
        border-radius: 89px;
        font-family: 'Urbanist', sans-serif;
        font-weight: 600;
        font-size: 16px;
        line-height: 1;
        letter-spacing: 0;
        text-transform: uppercase;
        margin-bottom: 20px;
        box-sizing: border-box;
    }

    .embedded-services .services-h1 {
        width: 100%;
        max-width: 100%;
        font-family: 'Urbanist', sans-serif;
        font-weight: 600;
        /* SemiBold */
        font-size: 35px;
        line-height: 1.1;
        letter-spacing: -0.015em;
        margin-bottom: 20px;
    }

    .embedded-services .services-h1 .highlight-wrapper {
        white-space: nowrap;
        position: relative;
    }

    .embedded-services .sparkle-icon {
        width: 30px;
        height: 30px;
        top: -15px;
        right: -25px;
    }

    .embedded-services .description {
        width: 100%;
        max-width: 319px;
        text-align: center;
        font-family: 'Urbanist', sans-serif;
        font-weight: 500;
        font-size: 15px;
        line-height: 24px;
        margin-bottom: 30px;
    }

    .embedded-services .image-wrapper {
        width: 100%;
        max-width: 346px;
        /* Requested Width 346px */
        height: 205.88px;
        /* Requested Height 205.88px */
        margin: 0 auto;
    }

    .embedded-services .services-local-image {
        border-radius: 0;
        object-fit: contain;
    }

    /* Portfolio Marquee Mobile Overrides */
    .portfolio-marquee {
        padding: 30px 0;
        /* Updated for 60px gap (30px bottom + 30px top of next section) */
        gap: 15px;
        /* Reduce gap between rows */
    }

    .embedded-services {
        padding: 30px 0 30px 0;
    }

    .marquee-content {
        gap: 12px;
        padding-right: 12px;
    }

    /* Row 1 & Row 2: width ~504px, height 72.25px, left -66.22px */
    .marquee-left,
    .marquee-right {
        margin-left: -66.22px;
    }

    .marquee-left img,
    .marquee-right img {
        height: 100px;
        width: auto;
        border-radius: 4px;
    }


    /* Highlights Section Mobile Overrides */
    .highlights-section {
        padding: 30px 0 30px 0;
    }

    .highlights-header {
        width: 100%;
        max-width: 291px;
        margin: 0 auto 40px auto;
    }

    .highlights-title {
        font-family: 'Urbanist', sans-serif;
        font-weight: 600;
        font-size: 35px;
        line-height: 1;
        letter-spacing: -0.015em;
        justify-content: center;
        flex-wrap: wrap;
    }

    .highlights-title span {
        font-family: 'Urbanist', sans-serif;
        font-weight: 700;
        font-style: italic;
        font-size: 35px;
    }

    .highlights-grid {
        grid-template-columns: 1fr;
        padding: 0 20px;
        gap: 30px;
    }

    .highlight-card {
        width: 100%;
        max-width: 346px;
        height: 345px;
        margin: 0 auto;
        padding: 9px;
        gap: 16px;
    }

    .highlight-image-wrapper {
        width: 100%;
        max-width: 328px;
        height: 246px;
        border-radius: 16px;
        border: 0.5px solid rgba(255, 255, 255, 0.1);
        margin: 0 auto;
    }

    .highlight-image-wrapper img {
        border-radius: 16px;
    }

    .highlight-content {
        padding: 0 10px;
        gap: 12px;
        align-items: flex-start;
    }

    .highlight-content .highlight-title {
        font-family: 'Urbanist', sans-serif;
        font-weight: 700;
        font-size: 17px;
        line-height: 28px;
        letter-spacing: 0;
        text-align: left;
    }

    .highlight-tag {
        font-family: 'Urbanist', sans-serif;
        font-weight: 500;
        font-size: 11px;
        padding: 5px 8px;
        height: auto;
        min-height: 28px;
        text-transform: capitalize;
        white-space: nowrap;
    }

    .highlight-tags {
        flex-wrap: nowrap;
        gap: 6px;
        overflow: hidden;
        justify-content: flex-start;
    }

    /* Idea To Interface Mobile Overrides */
    .idea-header {
        max-width: 269px;
        margin: 0 auto 30px auto;
    }

    .idea-header h2 {
        font-size: 35px;
        line-height: 1.1;
    }

    .idea-header p {
        font-size: 16px;
        display: none;
        /* User specs only mentioned the header text size, often descriptions are hidden or smaller. Let's keep it visible but smaller, actually Figma specifically said Title 269x39px and didn't mention the desc, but I will just make it small */
        display: block;
        /* Need to ensure it matches standard, I'll just set size to 16px */
    }

    .idea-section {
        padding: 30px 20px 50px 20px;
    }

    .idea-grid {
        gap: 20px;
        padding: 0;
    }

    .idea-card {
        width: 346px;
        height: 294px;
        padding: 20px;
        margin: 0 auto;
        border-radius: 20px;
    }

    .idea-icon {
        width: 170px;
        height: 170px;
        margin: -35px auto -25px auto;
    }

    .idea-number {
        font-size: 56px;
        font-weight: 900;
        color: rgba(255, 255, 255, 0.08);
        top: 20px;
        right: 25px;
    }

    .idea-title {
        font-family: 'Urbanist', sans-serif;
        font-weight: 600;
        font-size: 28px;
        line-height: 1;
        margin-bottom: 8px;
    }

    .idea-desc {
        font-size: 18px;
        line-height: 1.3;
    }

    /* Footer Mobile Overrides */
    .site-footer {
        background: radial-gradient(134.34% 134.34% at 50% 0%, #1D1D45 0%, #0E0E30 100%);
        padding: 28px 20px;
    }

    .footer-top {
        flex-direction: column;
        align-items: flex-start;
        text-align: left;
        gap: 16px;
    }

    .footer-logo {
        width: 100%;
        display: flex;
        justify-content: flex-start;
        margin-bottom: 20px;
    }

    .footer-mobile-title {
        display: block;
        font-family: 'Urbanist', sans-serif;
        font-size: 20px;
        font-weight: 600;
        color: white;
        margin-bottom: 10px;
    }

    .footer-nav {
        width: 100%;
    }

    .footer-nav ul {
        flex-direction: column;
        align-items: flex-start;
        gap: 8px;
    }

    .footer-nav ul li a {
        font-size: 16px;
        color: #ffffff;
        opacity: 0.8;
    }

    .footer-socials {
        width: 100%;
        flex-direction: column;
        align-items: flex-start;
    }

    .social-links-container {
        flex-direction: column;
        align-items: flex-start;
        gap: 10px;
    }

    .social-links-container a {
        display: flex;
        align-items: center;
        gap: 12px;
        text-decoration: none;
    }

    .social-label {
        display: block;
        font-family: 'Urbanist', sans-serif;
        font-size: 16px;
        color: #ffffff;
        opacity: 0.8;
    }

    .footer-bottom {
        padding-top: 30px;
        text-align: center;
    }

    .footer-bottom p {
        font-size: 14px;
        opacity: 0.6;
    }

    /* Testimonials Mobile Overrides */
    .testimonials-header-container {
        flex-direction: column;
        align-items: center;
        gap: 30px;
        margin: 0 auto 40px auto;
    }

    .testimonials-header {
        max-width: 269px;
        text-align: center;
    }

    .testimonials-header h2 {
        font-size: 35px;
        line-height: 42px;
        /* Set line height as requested */
        letter-spacing: -0.015em;
        margin-bottom: 0;
        white-space: nowrap;
        /* Ensures "Testimonials That" doesn't wrap */
    }

    .testimonials-section {
        padding: 10px 20px 50px 20px;
    }

    .testimonials-highlight {
        display: table;
        margin: 10px auto 0 auto;
        line-height: 1;
        white-space: normal;
    }

    .testimonials-sparkle {
        top: -18px;
        right: -28px;
        left: auto;
        width: 24px;
        height: 24px;
    }

    .testimonials-grid {
        display: flex;
        flex-direction: row;
        gap: 20px;
        padding: 0 20px 20px;
        overflow-x: auto;
        scroll-snap-type: x mandatory;
        scroll-padding-left: 20px;
        justify-content: flex-start;
        scrollbar-width: none;
        -ms-overflow-style: none;
    }

    .testimonials-grid::-webkit-scrollbar {
        display: none;
        /* Hide scrollbar Chrome/Safari */
    }

    .testimonial-card {
        flex: 0 0 82%;
        scroll-snap-align: start;
        width: 82%;
        max-width: 82%;
        height: 533px;
        margin: 0;
        border-radius: 25px;
    }

    .testimonials-nav {
        display: none;
    }

    /* Contact Section Mobile Overrides */
    .contact-section {
        padding: 10px 0 40px 0;
    }

    .container-contact {
        padding: 0 20px;
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    .contact-header-section {
        display: flex;
        flex-direction: column;
        align-items: center;
        text-align: center;
        margin-bottom: 30px;
    }

    .contact-badge {
        background-color: #1A1A4E;
        border: none;
        color: #ffffff;
        font-family: 'Urbanist', sans-serif;
        font-size: 16px;
        font-weight: 600;
        padding: 15px 16px;
        border-radius: 89px;
        margin-bottom: 20px;
        display: inline-block;
        text-transform: capitalize;
        line-height: 65%;
        letter-spacing: 0%;
    }

    .contact-header-section h2 {
        font-family: 'Outfit', sans-serif;
        font-size: 35px;
        font-weight: 600;
        color: white;
        line-height: 1.1;
        position: relative;
        display: inline-block;
    }

    .contact-header-section .h2-gradient {
        background: linear-gradient(90deg, #7C6CFF, #9A46F5);
        background-clip: text;
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
    }

    .contact-highlight-wrapper {
        position: relative;
        display: inline-block;
        font-style: italic;
        font-weight: 700;
    }

    .contact-sparkle {
        position: absolute;
        top: -18px;
        right: -20px;
        width: 30px;
        height: 30px;
    }

    .contact-grid {
        grid-template-columns: 1fr !important;
        gap: 20px !important;
        max-width: 347px;
        width: 100%;
        margin: 0 auto;
    }

    .contact-info-card {
        width: 100% !important;
        max-width: 347px !important;
        height: auto !important;
        margin: 0 auto;
        padding: 30px 20px !important;
        background: #302064 !important;
        border: none !important;
        border-radius: 30px !important;
        align-items: flex-start !important;
        text-align: left !important;
        gap: 25px !important;
        position: relative;
    }

    .contact-info-card::before {
        content: "";
        position: absolute;
        inset: 0;
        border-radius: 30px;
        padding: 1px;
        background: linear-gradient(135deg, #7C6CFF 0%, #100C35 100%);
        -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
        -webkit-mask-composite: xor;
        mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
        mask-composite: exclude;
        pointer-events: none;
    }

    .contact-info-card .status-badge {
        font-size: 12px;
        padding: 8px 18px;
        margin-bottom: 0 !important;
    }

    .portrait-section {
        width: 100%;
        max-width: 300px;
        height: 220px;
        margin: 0 !important;
        background: rgba(255, 255, 255, 0.05) !important;
        border-radius: 20px !important;
        justify-content: center !important;
        padding: 0 !important;
    }

    .portrait-section::before {
        content: "" !important;
        display: block !important;
        border-radius: 20px !important;
    }

    .circular-frame {
        width: 140px;
        height: 140px;
    }

    .dotted-circle {
        width: 170px;
        height: 170px;
    }

    .label-tag {
        width: 80px;
        height: 28px;
        font-size: 10px;
    }

    .label-tag.ux {
        top: 5px;
        left: -40px;
    }

    .label-tag.ui {
        top: 25px;
        right: -50px;
    }

    .label-tag.web {
        bottom: 15px;
        left: -35px;
    }

    .contact-info-text {
        margin-bottom: 0 !important;
    }

    .contact-info-text h2 {
        font-size: 26px;
        white-space: normal;
    }

    .consultation-btn {
        font-size: 16px;
        padding: 12px 28px;
    }

    .stats-row {
        display: flex !important;
        gap: 10px;
    }

    .stat-item {
        height: 60px;
    }

    .stat-number {
        font-size: 18px;
    }

    .stat-label {
        font-size: 12px;
    }

    /* Form Mobile Styles */
    .contact-form-container {
        width: 100% !important;
        max-width: 347px;
        height: auto !important;
        border: 1px solid rgba(255, 255, 255, 0.1);
        border-radius: 30px;
        padding: 30px 20px;
        background: transparent;
        margin: 0 auto;
    }

    .contact-form {
        flex: none !important;
        justify-content: flex-start !important;
        gap: 22px;
    }

    .form-row {
        grid-template-columns: 1fr;
        gap: 22px;
    }

    .form-group label {
        font-size: 16px;
        font-weight: 600;
    }

    .form-group input {
        font-size: 15px;
        padding: 8px 0 5px 0;
    }

    .form-group input::placeholder,
    .form-group textarea::placeholder {
        font-size: 14px;
        color: rgba(255, 255, 255, 0.3);
    }

    .selection-label {
        font-size: 16px;
        font-weight: 600;
        margin-bottom: 5px;
    }

    .selection-section {
        gap: 10px;
    }

    .selection-pills {
        gap: 8px;
    }

    .pill {
        font-size: 13px;
        padding: 8px 16px;
        border-radius: 100px;
    }

    .form-group textarea {
        min-height: 30px;
        font-size: 14px;
        padding: 8px 0 5px 0;
    }

    .submit-btn {
        width: 100% !important;
        text-align: center;
        display: flex;
        justify-content: center;
        align-items: center;
        padding: 16px 40px;
        font-size: 18px;
        margin-top: 0;
    }

    .form-message {
        font-size: 14px;
        padding: 12px 15px;
    }
}