:root {
    color-scheme: light;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    color-scheme: light;
}

#scrollTopBtn {
    position: fixed;
    bottom: 30px;
    right: 30px;
    z-index: 999;

    color: black;
    background: rgba(0, 0, 0, 0.15);
    display: none;
    border: none;
    outline: none;

    padding: 6px 11px;
    border-radius: 25%;
    font-size: 18px;

    cursor: pointer;

    transition: all 0.3s ease;
}

body {
    background: #FBFAFB;
    position: relative;
    color-scheme: light;
}

/* GRID LINES */
body::before {
    content: "";
    position: fixed;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 1400px;
    max-width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 0;

    background:
        linear-gradient(#EFEEEF, #EFEEEF) 20% 0/1px 100% no-repeat,
        linear-gradient(#EFEEEF, #EFEEEF) 40% 0/1px 100% no-repeat,
        linear-gradient(#EFEEEF, #EFEEEF) 60% 0/1px 100% no-repeat,
        linear-gradient(#EFEEEF, #EFEEEF) 80% 0/1px 100% no-repeat;
}

/* MAIN GRID */
.main {
    position: relative;
    z-index: 1;
    width: 1400px;
    max-width: 100%;
    margin: auto;
    padding-top: 30px;
    display: grid;
    grid-template-columns: repeat(5, 1fr);
}

/* NAVBAR */
.navbar-wrapper {
    grid-column: 2 / 5;
    display: flex;
    justify-content: center;

    position: sticky;
    top: 10px;
    z-index: 999;
}

.navbar {
    display: flex;
    align-items: center;
    gap: 16px;
    background: #ffffff;
    padding: 15px 16px;
    border-radius: 16px;
    border: 0.1px solid rgba(199, 199, 204, 0.5);
    position: relative;
}

.navbar::after {
    content: "";
    position: absolute;
    top: 4px;
    left: 4px;
    right: 4px;
    bottom: 4px;
    border: 0.1px solid #C7C7CC;
    border-radius: 12px;
    box-shadow: 0 8px 8px -4px rgba(10, 13, 18, 0.04);
    pointer-events: none;
}

.logo-box {
    width: 28px;
    height: 32px;
    padding-right: 40px;
    align-items: center;
    justify-content: center;
}

.logo-box img {
    display: block;
    width: auto;
    height: 100%;
    max-width: 28px;
    object-fit: contain;
}

.menu {
    display: flex;
    gap: 5px;
    margin-left: 5px;
}

.menu a {
    display: flex;
    align-items: center;
    padding: 6px 8px;
    text-decoration: none;
    color: #141414;
    font-size: 14px;
    font-family: 'Segoe UI', system-ui, -apple-system, sans-serif;
    font-weight: 400;
    border-radius: 4px;
    transition: all 0.3s ease;
}

.menu a:hover {
    background-color: #F5F5F5;
    transform: translateY(-1px);
}



.vertical-line {
    width: 1px;
    height: 24px;
    background: #C7C7CC80;
    align-self: center;
}

.cv-btn {
    width: 61px;
    height: 32px;
    display: flex;
    align-items: center;
    gap: 6px;
    border: 1px solid #ddd;
    padding: 6px 8px;
    border-radius: 8px;
    background: #ffffff;
    font-size: 14px;
    font-weight: 600;
    color: #141414;
    cursor: pointer;
    box-shadow: 0px 1px 3px 0px rgba(177, 183, 192, 0.24);
    font-family: 'Inter', sans-serif;
    transition: all 0.3s ease;
}

.cv-btn:hover {
    box-shadow: 0px 6px 12px rgba(177, 183, 192, 0.3);
    transform: translateY(-1px);
}

.book-btn {
    width: 106px;
    height: 32px;
    border: none;
    border-radius: 8px;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    color: #FFFFFF;
    font-family: 'Inter', sans-serif;

    background:
        radial-gradient(109.32% 72.43% at 50% 12.35%, #101010 0%, #242424 100%),
        radial-gradient(75.97% 70.09% at 86.36% 93.51%, rgba(208, 208, 208, 0.2) 0%, rgba(255, 255, 255, 0) 100%);

    box-shadow:
        0px 0px 0px 0.5px #000000,
        2px 2px 3.5px 0px #00000066,
        -0.5px -0.5px 0.2px 0px #00000099 inset,
        0.5px 0.7px 0.4px 0px #FFFFFF80 inset;

    padding: 7.5px 16px;
    transition: all 0.3s ease;
}

.book-btn:hover {
    background:
        radial-gradient(109.32% 72.43% at 50% 12.35%, #1a1a1a 0%, #333333 100%),
        radial-gradient(75.97% 70.09% at 86.36% 93.51%, rgba(255, 255, 255, 0.15) 0%, rgba(255, 255, 255, 0) 100%);
    box-shadow:
        0px 0px 1px 0.5px #000000,
        3px 3px 6px 0px #00000088,
        -0.5px -0.5px 0.2px 0px #000000aa inset,
        0.5px 0.7px 0.4px 0px #FFFFFF99 inset;
    transform: translateY(-1px);
}

/* HAMBURGER & MOBILE TITLE */
.hamburger {
    display: none;
    cursor: pointer;
    user-select: none;
    transition: transform 0.2s ease;
}

.hamburger:active {
    transform: scale(0.9);
}

.mobile-title {
    display: none;
}

.mobile-buttons {
    display: none;
}

/* HERO LOCK */
.hero {
    grid-column: 2 / 5;
    margin-top: 82px;
}

.hero-badge-wrapper {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 24px;
}

.hero-badge-left {
    border: 0.1px solid rgba(199, 199, 204, 0.5);
    position: relative;
    background: #ffffff;
    padding: 8px 16px;
    border-radius: 999px;
}

.hero-badge-left::after {
    content: "";
    position: absolute;
    top: 4px;
    left: 4px;
    right: 4px;
    bottom: 4px;
    inset: 2px;
    border: 0.1px solid #C7C7CC;
    box-shadow: 0 8px 8px -4px rgba(10, 13, 18, 0.04);
    border-radius: 999px;
    pointer-events: none;
}

.hero-badge-left .light-text {
    color: #6B7280;
    font-size: 14px;
    font-weight: 500;
    font-family: 'Segoe UI', system-ui, -apple-system, sans-serif;
}

.wave {
    display: inline-block;
    transform-origin: 70% 70%;
    animation: waveAnim 2.5s infinite;
}

@keyframes waveAnim {
    0% {
        transform: rotate(0deg);
    }

    10% {
        transform: rotate(15deg);
    }

    20% {
        transform: rotate(-10deg);
    }

    30% {
        transform: rotate(15deg);
    }

    40% {
        transform: rotate(-5deg);
    }

    50% {
        transform: rotate(10deg);
    }

    60% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(0deg);
    }

    /* pause */
}

.hero-badge-left .dark-text {
    color: #000000;
    margin-left: 2px;
    font-size: 14px;
    font-weight: 500;
    font-family: 'Segoe UI', system-ui, -apple-system, sans-serif;
}

.hero-badge-right {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 12px;
    color: #000000;
    font-weight: 400;
    font-family: 'Segoe UI', system-ui, -apple-system, sans-serif;
}

.hero-badge-right .dot {
    width: 10px;
    height: 10px;
    background: #259700;
    border-radius: 50%;
    box-shadow: 0 0 0 3px rgba(34, 197, 94, 0.15);
}

.hero-title {
    font-size: 36px;
    font-weight: 400;
    color: #141414;
    margin-bottom: 24px;
    max-width: 58%;
    font-family: "Instrument Serif", serif;
}

.hero-desc {
    font-size: 16px;
    line-height: 1.6;
    color: rgba(69, 69, 69, 0.8);
    font-weight: 400;
    margin-bottom: 24px;
    max-width: 58%;
    font-family: 'Segoe UI', system-ui, -apple-system, sans-serif;
}

.tools p {
    font-size: 20px;
    color: #141414;
    font-weight: 400;
    margin-bottom: 16px;
    font-family: "Instrument Serif", serif;
}

.tool-icons {
    gap: 10px;
    display: flex;
    flex-wrap: wrap;
}

.tool-icons img {
    width: 40px;
    height: 40px;
    border-radius: 10px;
    transition: all 0.35s ease;
    cursor: pointer;
}

.tool-icons img:hover {
    transform: translateY(-6px) scale(1.15);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
    filter: brightness(1.1);
}

.project {
    grid-column: 2 / 5;
}

/* MAIN IMAGE */
.image-wrapper {
    position: relative;
    width: 100%;
    margin: auto;
}

.image-wrapper img {
    width: 100%;
    height: auto;
    object-fit: cover;
    display: block;
    border-radius: 12px;
}

.curve-arrows {
    position: absolute;
    top: 11px;
    right: 8px;

    display: flex;
    gap: 8px;
    padding: 8px;
    border-radius: 12px;

    background: rgba(0, 0, 0, 0.15);
}

/* BUTTON */
.arrowSlider {
    display: flex;
    align-items: center;
    justify-content: center;

    width: 40px;
    height: 40px;

    background: #FFFFFF;
    backdrop-filter: blur(10px);
    border: none;
    border-radius: 10px;
    color: black;
    font-size: 20px;
    cursor: pointer;
    transition: all 0.25s ease;
    transform: translateY(0);
}

.arrowSlider:hover {
    transform: translateY(-2px) scale(1.02);
    background: #C8F135;
}

.arrowSlider img {
    height: 12px;
    width: 13px;
}

/* FROSTED BAR */
.glass-bar {
    position: absolute;
    bottom: 0;
    width: 100%;
    height: 57px;

    display: flex;
    justify-content: space-between;
    align-items: center;

    padding: 0 16px;

    /* 🔥 darker glass */
    background: rgba(0, 0, 0, 0.2);
    /* darker tint */
    backdrop-filter: blur(16px);
    /* stronger blur */
    -webkit-backdrop-filter: blur(16px);

    border-radius: 8px;
}

/* BUTTONS */
.actions button {
    position: relative;
    padding: 6px 8px;
    height: 29px;
    margin-left: 10px;
    font-size: 12px;
    font-weight: 600;
    font-family: 'Segoe UI', system-ui, -apple-system, sans-serif;
    color: white;
    cursor: pointer;
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.2);
    border: none;
    z-index: 1;
}

/* pseudo element for the border */
.actions button::before {
    content: "";
    position: absolute;
    top: -1px;
    left: -1px;
    right: -1px;
    bottom: -1px;
    border-radius: 8px;
    /* same as button */
    padding: 1px;
    /* thickness of the border */
    background: conic-gradient(from 102.21deg at 52.75% 38.75%,
            rgba(249, 249, 249, 0.5) -32.95deg,
            rgba(64, 64, 64, 0.5) 10.52deg,
            rgba(64, 64, 64, 0.35) 32.12deg,
            rgba(255, 255, 255, 0.5) 60.28deg,
            rgba(255, 255, 255, 0.5) 107.79deg,
            rgba(64, 64, 64, 0.35) 187.59deg,
            #F9F9F9 207.58deg,
            rgba(255, 255, 255, 0.5) 287.31deg,
            rgba(249, 249, 249, 0.5) 327.05deg,
            rgba(64, 64, 64, 0.5) 370.52deg);
    -webkit-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: -1;
}

.logo img {
    width: 100%;
    height: 33px;
}

/* SLIDER */
.slider-wrapper {
    grid-column: 2/5;
    position: relative;
    overflow: hidden;
}

.slider {
    margin-top: 20px;
    display: flex;
    gap: 40px;
    overflow-x: auto;
    scrollbar-width: none;
    -ms-overflow-style: none;

    /* 🔥 BALANCED FADE */
    -webkit-mask-image: linear-gradient(to right,
            transparent 0%,
            black 12%,
            black 88%,
            transparent 100%);
    mask-image: linear-gradient(to right,
            transparent 0%,
            black 12%,
            black 88%,
            transparent 100%);
}

.slider::-webkit-scrollbar {
    display: none;
}

.slider img {
    height: 250px;
    object-fit: cover;
    border-radius: 8px;
    cursor: pointer;
    /* opacity: 0.6; */
    pointer-events: none;
}

.slider img.active {
    border: 2px solid white;
    opacity: 1;
}

.offer-section {
    margin: 1px;
    grid-column: 2/5;
    background-color: #FBFAFB;
    border-bottom: 1px solid #EFEEEF;
}

.offer-header {
    padding: 24px;
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    border-top: 1px solid #EFEEEF;
    border-bottom: 1px solid #EFEEEF;
}

.offer-left-text h2 {
    font-size: 36px;
    font-weight: 400;
    font-family: "Instrument Serif", serif;
}

.offer-right-text {
    display: flex;
    flex-direction: column;
    gap: 8px;
    text-align: right;
}

.offer-right-text .text1 {
    font-size: 48px;
    font-weight: 700;
    color: #141414;
    font-family: 'Segoe UI', system-ui, -apple-system, sans-serif;
}

.offer-right-text .text2 {
    font-size: 14px;
    font-weight: 400;
    color: rgba(69, 69, 69, 0.8);
    font-family: 'Segoe UI', system-ui, -apple-system, sans-serif;
}

.offer-right-text .text3 {
    background-color: #C8F135;
    padding: 4px 8px;
    text-align: center;
    border-radius: 99px;
    font-size: 14px;
    font-weight: 400;
    color: #141414;
    font-family: 'Segoe UI', system-ui, -apple-system, sans-serif;
}

.offer-para {
    padding: 24px;
    font-size: 16px;
    font-weight: 400;
    color: rgba(69, 69, 69, 0.8);
    font-family: 'Segoe UI', system-ui, -apple-system, sans-serif;
}

.offer-grid {
    border-bottom: 1px solid #EFEEEF;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 26px;
    padding-left: 30px;
    padding-right: 30px;
    padding-bottom: 24px;
}

.offer-item {
    margin-top: 40px;
    position: relative;
}

.box-icon {
    position: absolute;
    top: -45px;
    left: 10px;
    width: 80px;
    height: 80px;
    z-index: 0;
    opacity: 0;
    transform: translateY(10px) scale(0.98);
    filter: blur(2px);
    transition:
        opacity 500ms ease,
        transform 600ms cubic-bezier(0.2, 0.8, 0.2, 1),
        filter 600ms ease;
    transition-delay: var(--offer-icon-delay, 0ms);
}

.offer-item.is-visible .box-icon {
    opacity: 1;
    transform: translateY(0) scale(1);
    filter: blur(0);
}

.offer-item {
    --offer-icon-delay: 0ms;
}

.offer-box {
    position: relative;
    z-index: 1;

    padding: 16px;
    border-radius: 12px;

    background: rgba(255, 255, 255, 0.05);

    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    box-shadow:
        0px 0px 22px rgba(242, 242, 242, 1) inset,
        0px 0px 0px 1px rgba(242, 242, 242, 1) inset,
        -2px -2px 1px -2px rgba(102, 102, 102, 1) inset,
        2px 2px 1px -2px rgba(102, 102, 102, 1) inset,
        3px 3px 0.5px -3.5px rgba(242, 242, 242, 1) inset;
}

.offer-box h3 {
    font-size: 14px;
    color: #0F0F0F;
    font-weight: 600;
    font-family: 'Segoe UI', system-ui, -apple-system, sans-serif;
    display: -webkit-box;
    -webkit-line-clamp: 1;
    /* 🔥 max 2 lines */
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.offer-box p {
    margin-top: 5px;
    font-size: 12px;
    color: #454545;
    font-weight: 400;
    font-family: 'Segoe UI', system-ui, -apple-system, sans-serif;
    display: -webkit-box;
    -webkit-line-clamp: 1;
    /* 🔥 max 2 lines */
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.stats-row {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
    width: 100%;
    padding: 24px;
}

.stat {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.stat h2 {
    margin: 0;
    font-size: 24px;
    font-weight: 700;
    color: #0F0F0F;
    font-family: 'Segoe UI', system-ui, -apple-system, sans-serif;
}

.stat p {
    margin: 4px 0 0;
    font-size: 12px;
    font-weight: 400;
    color: #888888;
    font-family: 'Segoe UI', system-ui, -apple-system, sans-serif;
}

.v-line {
    width: 1px;
    height: 32px;
    background: #E8E8E8;
}

.stat-btn {
    margin-left: auto;

    display: flex;
    align-items: center;
    gap: 16px;

    padding: 15px 12px;
    border-radius: 8px;
    color: white;
    cursor: pointer;
    font-size: 14px;
    font-weight: 600;

    transition: all 0.25s ease;
    transform: translateY(0);

    background:
        radial-gradient(109.32% 72.43% at 50% 12.35%, #101010 0%, #242424 100%),
        radial-gradient(75.97% 70.09% at 86.36% 93.51%, rgba(208, 208, 208, 0.2) 0%, rgba(255, 255, 255, 0) 100%);

    box-shadow:
        0px 0px 0px 0.5px #000000,
        2px 2px 3.5px 0px #00000066,
        -0.5px -0.5px 0.2px 0px #00000099 inset,
        /* 0.5px 0.7px 0.4px 0px #FFFFFF80 inset; */
}

.stat-btn:hover {
    transform: translateY(-2px) scale(1.02);
}

.stat-btn .dot {
    width: 20px;
    height: 20px;
    background: #C8F135;
    border-radius: 99px;
}

.stats-lines {
    display: flex;
    justify-content: center;
    gap: 12px;
    margin-top: 24px;
    padding: 0 16px;

}

.h-line {
    width: 235px;
    height: 10px;
    border-radius: 12px;
    border: 1px solid #E8E8E8;
    background: #FBFAFB;
}

.offer-card {
    margin-top: 49px;
    margin-left: 24px;
    margin-right: 24px;
    background: black;
    padding: 24px;
    border-radius: 16px;
    display: flex;
    justify-content: space-between;
    gap: 40px;
    margin-bottom: 24px;

    background-image: url('images/offerCard.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

/* LEFT SIDE */
.offer-card-left {
    flex: 1;
}

.offer-card-left .subtitle {
    font-size: 12px;
    font-weight: 500;
    color: #666666;
    font-family: 'Inter', sans-serif;
    margin-bottom: 12px;
}

.offer-card-left .title {
    font-size: 36px;
    font-weight: 400;
    font-family: "Instrument Serif", serif;
    color: white;
    margin-bottom: 12px;
}

/* TEXT ROW */
.offer-card-left .text-row {
    font-size: 36px;
    font-weight: 400;
    font-family: "Instrument Serif", serif;
    color: white;
    margin-bottom: 12px;
}

.offer-card-left .text-row span {
    background: #C8F135;
    border-radius: 6px;
    padding: 4px;
    color: #0F0F0F;
    font-size: 36px;
    font-weight: 400;
    font-family: "Instrument Serif", serif;
}

/* CHIP ROW */
.offer-card-left .chip-row {
    display: flex;
    gap: 8px;
    margin-bottom: 12px;
}

/* FIRST 3 - SAME COLOR */
.offer-card-left .chip.primary {
    text-align: center;
    padding: 6px 12px;
    border-radius: 99px;
    background: #C8F135;
    color: #0F0F0F;
    font-size: 12px;
    font-weight: 600;
    font-family: 'Segoe UI', system-ui, -apple-system, sans-serif;
}

/* NEXT 3 - DIFFERENT COLOR */
.offer-card-left .chip.secondary {
    text-align: center;
    padding: 6px 12px;
    border-radius: 99px;
    border: 1px solid #404040;
    color: #FFFFFF;
    font-size: 12px;
    font-weight: 600;
    font-family: 'Segoe UI', system-ui, -apple-system, sans-serif;
}

/* RIGHT SIDE */
.offer-card-right {
    /* width: 200px; */
    display: flex;
    align-items: flex-end;
    justify-content: flex-end;
}

/* BUTTON */
.offer-card-right .btn {
    padding: 14px 24px;
    border: 1px solid #404040;
    background: black;
    color: #000;
    border-radius: 8px;
    cursor: pointer;
    font-weight: 500;
    font-size: 13px;
    color: white;
    font-family: 'Inter', sans-serif;
}

.offer-card-right .btn:hover {
    background: #C8F135;
    color: black;
}

.testimonial {
    grid-column: 2 / 5;
}

.testimonial-container {
    margin: auto;
    display: flex;
    align-items: center;
    gap: 32px;
}

/* LEFT IMAGE */
.testimonial-image img {
    width: 280px;
    height: 414px;
    object-fit: cover;
    border-radius: 12px;
}

/* RIGHT CONTENT */
.testimonial-content {
    flex: 1;
    position: relative;
}

.testimonial-content p {
    font-size: 16px;
    margin-top: 23px;
    margin-bottom: 16px;
    font-weight: 400;
    color: rgba(20, 20, 20, 1);
    font-family: 'Segoe UI', system-ui, -apple-system, sans-serif;
}

.testimonial-content h4 {
    font-size: 14px;
    font-weight: 400;
    color: rgba(69, 69, 69, 0.8);
    font-family: 'Segoe UI', system-ui, -apple-system, sans-serif;
}

/* ARROWS */
.arrows {
    margin-top: 24px;
}

.arrows button {
    border: none;
    margin-right: 10px;
    background: transparent;
    cursor: pointer;
    transition: transform 0.25s ease, opacity 0.25s ease;
}

.arrows button:hover {
    transform: translateY(-2px) scale(1.1);
    opacity: 0.8;
}

/* ANIMATION */
.fade {
    animation: fade 0.4s ease;
}

@keyframes fade {
    from {
        opacity: 0;
        transform: translateX(20px);
    }

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

/* WORK */
.work-desktop {
    grid-column: 2/5;
}

.work-container {
    display: flex;
    background: #FBFAFB;
}

.work-tablet {
    display: none;
}

.work-mobile {
    display: none;
}

.box1 {
    width: 45%;
    border-top: 1px solid rgba(226, 226, 226, 0.5);
    border-bottom: 1px solid rgba(226, 226, 226, 0.5);
    border-right: 1px solid rgba(226, 226, 226, 0.5);
    border-left: 1px solid rgba(226, 226, 226, 0.5);
    padding: 16px;
    display: flex;
    flex-direction: column;
}

.box2 {
    width: 55%;
    border-top: 1px solid rgba(226, 226, 226, 0.5);
    border-bottom: 1px solid rgba(226, 226, 226, 0.5);
    border-right: 1px solid rgba(226, 226, 226, 0.5);
    padding: 16px;
    display: flex;
    flex-direction: column;
}

.box3 {
    width: 53%;
    border-bottom: 1px solid rgba(226, 226, 226, 0.5);
    border-right: 1px solid rgba(226, 226, 226, 0.5);
    border-left: 1px solid rgba(226, 226, 226, 0.5);
    /* padding: 16px; */
    display: flex;
    flex-direction: column;
}

.box4 {
    width: 47%;
    border-bottom: 1px solid rgba(226, 226, 226, 0.5);
    border-right: 1px solid rgba(226, 226, 226, 0.5);
    padding: 16px;
    display: flex;
    flex-direction: column;
}

.box5 {
    width: 100%;
    border-bottom: 1px solid rgba(226, 226, 226, 0.5);
    border-left: 1px solid rgba(226, 226, 226, 0.5);
    border-right: 1px solid rgba(226, 226, 226, 0.5);
    padding-left: 16px;
    padding-right: 30px;
    padding-top: 16px;
    display: flex;
    flex-direction: column;
}

.top {
    display: flex;
    align-items: center;
    gap: 8px;
}

.top3 {
    padding-left: 16px;
    padding-right: 16px;
    padding-top: 16px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.box .number {
    padding: 2px 8px;
    background: rgba(20, 20, 20, 1);
    color: white;
    border-radius: 4px;
    font-weight: 400;
    font-size: 20px;
    font-style: italic;
    font-family: "Instrument Serif", serif;
}

.box .heading {
    color: rgba(20, 20, 20, 1);
    font-size: 20px;
    font-weight: 400;
    font-family: "Instrument Serif", serif;
}

/* text */
.box .text {
    margin-top: 8px;
    color: rgba(69, 69, 69, 0.8);
    font-size: 16px;
    font-weight: 400;
    font-family: 'Segoe UI', system-ui, -apple-system, sans-serif;
    margin-bottom: 30px;
}

.box .text3 {
    padding-left: 16px;
    padding-right: 16px;
    margin-top: 8px;
    color: rgba(69, 69, 69, 0.8);
    font-size: 16px;
    font-weight: 400;
    font-family: 'Segoe UI', system-ui, -apple-system, sans-serif;
    margin-bottom: 11px;
}

/* image bottom */
.box img {
    width: 100%;
    /* max-width: 150px; */
    margin-top: auto;
    align-self: flex-end;
}

/* HIGHLIGHT TEXT */
.text-container {
    display: flex;
    justify-content: space-between;
    align-items: start;
    margin-bottom: 40px;
    grid-column: 2 / 5;
}

.left-text {
    font-size: 20px;
    font-weight: 400;
    font-family: 'Instrument Serif', serif;
    color: rgba(20, 20, 20, 1);
}

.right-text {
    margin-left: auto;
    text-align: right;
    font-size: 28px;
    font-weight: 400;
    font-family: 'Instrument Serif', serif;
    color: rgba(20, 20, 20, 1);
}

.highlight {
    background-color: greenyellow;
    font-size: 28px;
    font-weight: 400;
    border-radius: 4px;
    font-family: 'Instrument Serif', serif;
    color: rgba(20, 20, 20, 1);
    font-style: italic;
    padding: 2px 6px;
    margin-left: 0px;
}

.highlight6 {
    background-color: #C8F135;
    font-size: 28px;
    font-weight: 400;
    border-radius: 4px;
    font-family: 'Instrument Serif', serif;
    color: rgba(20, 20, 20, 1);
    font-style: italic;
    padding: 0px 6px;
    margin-left: 0px;
}

.highlight3 {
    background-color: rgba(252, 190, 22, 1);
    font-size: 28px;
    font-weight: 400;
    border-radius: 4px;
    font-family: 'Instrument Serif', serif;
    color: rgba(20, 20, 20, 1);
    font-style: italic;
    padding: 0px 6px;
    margin-left: 0px;
}

.highlight4 {
    background-color: rgba(183, 215, 255, 1);
    font-size: 28px;
    font-weight: 400;
    border-radius: 4px;
    font-family: 'Instrument Serif', serif;
    color: rgba(20, 20, 20, 1);
    font-style: italic;
    padding: 0px 6px;
    margin-left: 0px;
}

.highlight5 {
    background-color: rgba(47, 204, 85, 1);
    font-size: 28px;
    font-weight: 400;
    border-radius: 4px;
    font-family: 'Instrument Serif', serif;
    color: rgba(20, 20, 20, 1);
    font-style: italic;
    padding: 0px 6px;
    margin-left: 0px;
}

.highlight2 {
    background-color: #FAA071;
    font-size: 28px;
    font-weight: 400;
    border-radius: 4px;
    font-family: 'Instrument Serif', serif;
    color: rgba(20, 20, 20, 1);
    font-style: italic;
    padding: 0px 6px;
    margin-left: 0px;
}

/* FAQ */
.faq {
    grid-column: 2 / 5;
}

.faq-item {
    border-bottom: 1px solid rgba(239, 238, 239, 1);
    border-left: 0.2px solid rgba(239, 238, 239, 1);
    border-right: 0.2px solid rgba(239, 238, 239, 1);
    overflow: hidden;
    opacity: 0;
    transform: translateY(40px);
    transition: all 0.6s ease;
}

/* visible state */
.faq-item.show {
    opacity: 1;
    transform: translateY(0);
}

.faq-item:first-child {
    border-top: 1px solid rgba(239, 238, 239, 1);
}

.faq-item:nth-child(1) { transition-delay: 0.1s; }
.faq-item:nth-child(2) { transition-delay: 0.2s; }
.faq-item:nth-child(3) { transition-delay: 0.3s; }
.faq-item:nth-child(4) { transition-delay: 0.4s; }
.faq-item:nth-child(5) { transition-delay: 0.5s; }
.faq-item:nth-child(6) { transition-delay: 0.6s; }
.faq-item:nth-child(7) { transition-delay: 0.7s; }
.faq-item:nth-child(8) { transition-delay: 0.8s; }

.faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 16px 16px;
    cursor: pointer;
    background: #FBFAFB;
    margin-right: 1px;
}

.left-faq {
    display: flex;
    align-items: center;
    gap: 12px;
}

.faq-item.active .left-faq img {
    opacity: 0;
    transform: scale(0);
    width: 0;
    transition: 0.3s ease;
}

.faq-item.active .left-faq {
    gap: 0;
}

.faq-question h3 {
    font-size: 18px;
    color: #141414;
    font-weight: 500;
    font-family: 'Segoe UI', system-ui, -apple-system, sans-serif;
}

.arrow img {
    transition: transform 0.3s ease;
}

.faq-item.active .arrow img {
    transform: rotate(180deg);
}

.faq-answer {
    height: 0;
    overflow: hidden;
    background: #FBFAFB;
    padding: 0 16px;
    opacity: 0;
    transition: height 0.4s ease, opacity 0.3s ease, padding 0.3s ease;
}

.faq-item.active .faq-answer {
    opacity: 1;
    padding: 0px 16px 24px 16px;
}

.faq-answer p {
    padding-bottom: 24px;
    font-size: 16px;
    font-weight: 400;
    color: rgba(69, 69, 69, 0.8);
    font-family: 'Segoe UI', system-ui, -apple-system, sans-serif;
}

.faq-item.active .faq-answer {
    max-height: 500px;
}

.faq-item.active .arrow {
    transform: rotate(180deg);
}

/* CONTACT */
.contact-section {
    margin-top: 120px;
    grid-column: 2 / 5;
    padding: 24px;
    border-radius: 24px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 40px;
    background: #353535;
    color: white;
    position: relative;
    overflow: hidden;
    margin-bottom: 64px;

    /* ADD THIS */
    background-image: url('images/csbg.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;

    box-shadow:
        0px -4.93px 5.15px rgba(255, 255, 255, 0.25) inset,
        0px 4.49px 5.15px rgba(0, 0, 0, 0.36) inset;
}



.contact-section>* {
    position: relative;
}

.left h1 {
    font-size: 48px;
    line-height: 48px;
    font-weight: 400;
    color: #FFFFFF;
    font-family: 'Instrument Serif', serif;
}

.left p {
    margin-top: 8px;
    color: rgba(255, 255, 255, 0.8);
    font-size: 16px;
    font-weight: 400;
    font-family: 'Segoe UI', system-ui, -apple-system, sans-serif;
}

.right {
    width: 320px;
}

.right label {
    display: block;
    margin-bottom: 8px;
    font-family: 'Segoe UI', system-ui, -apple-system, sans-serif;
    font-size: 14px;
    line-height: 1;
}

.input-box {
    height: 44px;
    background: #FFFFFF;
    border-radius: 12px;
    display: flex;
    align-items: center;
    padding-left: 14px;
    margin-bottom: 8px;
    border-radius: 8px;
}

.input-box input {
    border: none;
    outline: none;
    background: transparent;
    flex: 1;
    font-size: 16px;
    color: #555;
    min-width: 0;
}

.input-box input::placeholder {
    color: rgba(158, 165, 173, 1);
    opacity: 1;
}

.mail-icon {
    width: 44px;
    height: 44px;
    background: rgba(246, 247, 249, 1);
    border-top-right-radius: 8px;
    border-bottom-right-radius: 8px;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;

    font-size: 16px;
}

.submitbtn {
    width: 100%;
    height: 38px;
    border-radius: 8px;
    cursor: pointer;
    font-family: 'Inter', sans-serif;
    font-weight: 600;
    font-size: 12px;
    color: #fff;

    border: 1px solid transparent;

    background:
        linear-gradient(#5a5a5a, #3a3a3a) padding-box,
        conic-gradient(from 102.21deg at 52.75% 38.75%,
            rgba(249, 249, 249, 0.5) -32.95deg,
            rgba(64, 64, 64, 0.5) 10.52deg,
            rgba(64, 64, 64, 0.35) 32.12deg,
            rgba(255, 255, 255, 0.5) 60.28deg,
            rgba(255, 255, 255, 0.5) 107.79deg,
            rgba(64, 64, 64, 0.35) 187.59deg,
            /* #F9F9F9 207.58deg, */
            rgba(255, 255, 255, 0.5) 287.31deg,
            rgba(249, 249, 249, 0.5) 327.05deg,
            rgba(64, 64, 64, 0.5) 370.52deg) border-box;
}

.submitbtn:hover {
    opacity: 0.9;
}

.submitbtn:disabled {
    opacity: 0.6;
    cursor: not-allowed;
}

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

.cta-form-status {
    margin-top: 10px;
    margin-bottom: 0;
    font-family: 'Segoe UI', system-ui, -apple-system, sans-serif;
    font-size: 14px;
    line-height: 1.35;
    color: rgba(255, 255, 255, 0.95);
    min-height: 1.35em;
}

/* FOOTER */
footer {
    grid-column: 2 / 5;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 16px 16px;
    background-color: #FBFAFB;
    border-top: 1px solid #EFEEEF;
    border-bottom: 1px solid #EFEEEF;
    border-left: 0.2px solid #EFEEEF;
    border-radius: 0.2px solid #EFEEEF;
    margin-right: 1px;
    flex-wrap: wrap;
    margin-bottom: 85px;
}

.footer-logo img {
    height: 40px;
}

.footer-text {
    text-align: center;
    flex: 1;
    font-size: 14px;
    font-weight: 400;
    color: #141414;
    font-family: 'Segoe UI', system-ui, -apple-system, sans-serif;
}

.footer-social a {
    margin-left: 16px;
    display: inline-block;
    text-decoration: none;
}

.footer-social img {
    width: 24px;
    height: 24px;
    display: block;
    transition: all 0.3s ease;
}

.footer-social a:hover img {
    transform: translateY(-5px) scale(1.15);
    filter: brightness(1.2);
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.2);
    border-radius: 6px;
}

.lastName {
    width: 100%;
    max-width: 680px;
    height: auto;
    object-fit: contain;
}

/* LAST IMAGE LOCK */
.lastName-wrapper {
    grid-column: 2 / 5;
    display: flex;
    justify-content: center;
    align-items: center;

    width: 100%;
}

/* DIVIDER */
.fancy-divider {
    margin-top: 80px;
    grid-column: 2 / 5;
    position: relative;
    width: 100%;
    height: 40px;
    border-top: 1px solid rgba(239, 238, 239, 1);
    border-bottom: 1px solid rgba(239, 238, 239, 1);
    overflow: hidden;
    background: transparent;
    margin-bottom: 80px;
}

/* vertical italic lines with smaller gap */
.fancy-divider::before {
    content: "";
    position: absolute;
    top: -2px;
    left: -50px;
    width: calc(100% + 100px);
    height: calc(100% + 4px);
    background-image: repeating-linear-gradient(to right,
            transparent,
            transparent 10px,
            rgba(239, 238, 239, 1) 10px,
            rgba(239, 238, 239, 1) 12px);
    transform: skewX(-45deg);
    pointer-events: none;
}

/* RESPONSIVE TABLET */
@media (max-width: 1200px) {

    .offer-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .project-main {
        display: flex;
        flex-direction: column;
    }

    .logo {
        width: 100%;
    }

    .logo img {
        height: 30px;
        width: 100px;
    }

    .actions {
        display: flex;
        flex-direction: row;
        gap: 3px;
        width: 100%;
    }

    .actions button {
        font-size: 10px;
        width: 100%;
        margin-left: 0;
        text-align: center;
    }

    .image-wrapper img {
        height: auto;
    }

    .slider-wrapper {
        margin-top: 25px;
    }

    .slider img {
        height: 190px;
        pointer-events: none;
    }

    .arrowSlider {
        width: 32px;
        height: 32px;
    }
}

@media (max-width: 1024px) {
    .testimonial-image img {
        width: 220px;
        height: 414px;
        object-fit: cover;
        border-radius: 12px;
    }

    footer {
        display: flex;
        flex-wrap: wrap;
        align-items: flex-start;
    }

    .footer-logo {
        order: 1;
    }

    .footer-social {
        order: 2;
        margin-left: auto;
        display: flex;
        gap: 16px;
    }

    .footer-text {
        order: 3;
        margin-left: auto;
        text-align: right;
        width: auto;
        flex: 0 0 auto;
        font-size: 12px;
    }

    .left h1 {
        font-size: 36px;
        font-weight: 400;
        color: #FFFFFF;
        font-family: 'Instrument Serif', serif;
    }

    .right {
        width: 220px;
    }


    .offer-card {
        margin-top: 20px;
        flex-direction: column;
        gap: 20px;
    }

    /* make both rows act like one */
    .offer-card-left .chip-row {
        display: contents;
        /* 🔥 removes row wrapper */
    }

    /* parent becomes wrapping container */
    .offer-card-left {
        display: flex;
        flex-wrap: wrap;
        gap: 6px;
    }

    /* keep text full width */
    .offer-card-left>.subtitle,
    .offer-card-left>.title,
    .offer-card-left>.text-row {
        width: 100%;
    }

    /* BUTTON FIX */
    .offer-card-right {
        width: 100%;
        justify-content: flex-start;
        /* move left on mobile */
    }

    .offer-card-right .btn {
        width: 100%;
        /* full width button */
        justify-content: center;
        text-align: center;
    }

}

/* RESPONSIVE MOBILE */
@media (max-width: 768px) {

    .main {
        display: block;
        margin-top: 40px;
        padding-left: 47px;
        padding-right: 47px;
    }

    body::before {
        content: "";
        position: fixed;
        top: 0;
        left: 50%;
        transform: translateX(-50%);
        width: calc(100% - 94px);
        /* padding match */
        height: 100%;
        pointer-events: none;
        z-index: 0;

        background:
            linear-gradient(#EFEEEF, #EFEEEF) 0% 0/1px 100% no-repeat,
            linear-gradient(#EFEEEF, #EFEEEF) 33.33% 0/1px 100% no-repeat,
            linear-gradient(#EFEEEF, #EFEEEF) 66.66% 0/1px 100% no-repeat,
            linear-gradient(#EFEEEF, #EFEEEF) 100% 0/1px 100% no-repeat;
    }

    /* HERO LOCK */
    .hero-title {
        font-size: 36px;
        font-weight: 400;
        color: #141414;
        margin-bottom: 24px;
        max-width: 70%;
        font-family: "Instrument Serif", serif;
    }

    .hero-desc {
        font-size: 16px;
        line-height: 1.6;
        color: rgba(69, 69, 69, 0.8);
        font-weight: 400;
        margin-bottom: 24px;
        max-width: 70%;
        font-family: 'Segoe UI', system-ui, -apple-system, sans-serif;
    }

    .project-main {
        display: flex;
        flex-direction: column;
    }

    .glass-bar {
        margin-top: 8px;
        background-color: #000000;
        position: static;
        flex-direction: column;
        align-items: stretch;
        gap: 6px;
        border-radius: 8px;
        padding: 12px;
        height: auto;
    }

    .logo {
        width: 100%;
    }

    .logo img {
        height: 20px;
        width: auto;
    }

    .actions {
        display: flex;
        flex-direction: row;
        gap: 3px;
        width: 100%;
    }

    .actions button {
        font-size: 10px;
        width: 50%;
        margin-left: 0;
        text-align: center;
    }

    .slider-wrapper {
        margin-top: 25px;
    }

    .slider img {
        height: 190px;
        pointer-events: none;
    }

    .work-desktop {
        display: none;
    }

    .work-mobile {
        display: none;
    }

    .work-tablet {
        display: block;
    }

    /* WORK */
    .work-container {
        /* grid-column: 2/5; */
        display: flex;
        background: #FBFAFB;
    }

    .box1 {
        width: 66.75%;
        border-top: 1px solid rgba(226, 226, 226, 0.5);
        border-bottom: 1px solid rgba(226, 226, 226, 0.5);
        border-right: 1px solid rgba(226, 226, 226, 0.5);
        border-left: 1px solid rgba(226, 226, 226, 0.5);
        padding: 16px;
        display: flex;
        flex-direction: column;
    }

    .box2 {
        width: 32.35%;
        border-top: 1px solid rgba(226, 226, 226, 0.5);
        border-bottom: 1px solid rgba(226, 226, 226, 0.5);
        border-right: 1px solid rgba(226, 226, 226, 0.5);
        padding: 16px;
        display: flex;
        flex-direction: column;
    }

    .box3 {
        width: 32.35%;
        border-bottom: 1px solid rgba(226, 226, 226, 0.5);
        border-right: 1px solid rgba(226, 226, 226, 0.5);
        border-left: 1px solid rgba(226, 226, 226, 0.5);
        /* padding: 16px; */
        display: flex;
        flex-direction: column;
    }

    .box6 {
        width: 66.75%;
        border-bottom: 1px solid rgba(226, 226, 226, 0.5);
        border-right: 1px solid rgba(226, 226, 226, 0.5);
        border-left: 1px solid rgba(226, 226, 226, 0.5);
        /* padding: 16px; */
        display: flex;
        flex-direction: column;
    }

    .box4 {
        width: 66.75%;
        border-bottom: 1px solid rgba(226, 226, 226, 0.5);
        border-right: 1px solid rgba(226, 226, 226, 0.5);
        padding: 16px;
        display: flex;
        flex-direction: column;
    }

    .box5 {
        width: 100%;
        border-bottom: 1px solid rgba(226, 226, 226, 0.5);
        border-left: 1px solid rgba(226, 226, 226, 0.5);
        border-right: 1px solid rgba(226, 226, 226, 0.5);
        padding-left: 16px;
        padding-right: 30px;
        padding-top: 16px;
        display: flex;
        flex-direction: column;
    }

    .top {
        display: flex;
        align-items: center;
        gap: 8px;
    }

    .top3 {
        padding-left: 16px;
        padding-right: 16px;
        padding-top: 16px;
        display: flex;
        align-items: center;
        gap: 8px;
    }

    .box .number {
        padding: 2px 8px;
        background: rgba(20, 20, 20, 1);
        color: white;
        border-radius: 4px;
        font-weight: 400;
        font-size: 20px;
        font-style: italic;
        font-family: "Instrument Serif", serif;
    }

    .box .heading {
        color: rgba(20, 20, 20, 1);
        font-size: 20px;
        font-weight: 400;
        font-family: "Instrument Serif", serif;
    }

    /* text */
    .box .text {
        margin-top: 8px;
        color: rgba(69, 69, 69, 0.8);
        font-size: 16px;
        font-weight: 400;
        font-family: 'Segoe UI', system-ui, -apple-system, sans-serif;
        margin-bottom: 30px;
    }

    .box .text3 {
        padding-left: 16px;
        padding-right: 16px;
        margin-top: 8px;
        color: rgba(69, 69, 69, 0.8);
        font-size: 16px;
        font-weight: 400;
        font-family: 'Segoe UI', system-ui, -apple-system, sans-serif;
        margin-bottom: 11px;
    }

    /* image bottom */
    .box img {
        width: 100%;
        /* max-width: 150px; */
        margin-top: auto;
        align-self: flex-end;
    }

    .offer-grid {
        grid-template-columns: repeat(2, 1fr);
        padding-left: 20px;
        padding-right: 20px;
    }
}

@media (max-width: 450px) {

    .main {
        display: block;
        margin-top: 40px;
        padding-left: 17px;
        padding-right: 17px;
    }

    body::before {
        content: "";
        position: fixed;
        top: 0;
        left: 50%;
        transform: translateX(-50%);
        width: calc(100% - 34px);
        /* padding match */
        height: 100%;
        pointer-events: none;
        z-index: 0;

        background:
            linear-gradient(#EFEEEF, #EFEEEF) 0% 0/1px 100% no-repeat,
            linear-gradient(#EFEEEF, #EFEEEF) 33.33% 0/1px 100% no-repeat,
            linear-gradient(#EFEEEF, #EFEEEF) 66.66% 0/1px 100% no-repeat,
            linear-gradient(#EFEEEF, #EFEEEF) 100% 0/1px 100% no-repeat;
    }

    /* NAVBAR */
    .mobile-title img {
        max-height: 15px;
    }

    /* HERO LOCK */
    .hero-badge-left .light-text {
        color: #6B7280;
        font-size: 12px;
        font-weight: 500;
        font-family: 'Segoe UI', system-ui, -apple-system, sans-serif;
    }

    .hero-badge-left .dark-text {
        color: #000000;
        margin-left: 2px;
        font-size: 12px;
        font-weight: 500;
        font-family: 'Segoe UI', system-ui, -apple-system, sans-serif;
    }

    .hero-badge-right {
        font-size: 10px;
        margin-left: auto;
    }

    .hero-title {
        font-size: 24px;
        font-weight: 400;
        color: #141414;
        margin-bottom: 24px;
        max-width: 100%;
        font-family: "Instrument Serif", serif;
    }

    .hero-desc {
        font-size: 14px;
        line-height: 1.6;
        color: rgba(69, 69, 69, 0.8);
        font-weight: 400;
        margin-bottom: 24px;
        max-width: 100%;
        font-family: 'Segoe UI', system-ui, -apple-system, sans-serif;
    }

    .tools p {
        font-size: 16px;
        color: #141414;
        font-weight: 400;
        margin-bottom: 16px;
        font-family: "Instrument Serif", serif;
    }

    .tool-icons img {
        width: 32px;
        height: 32px;
        border-radius: 10px;
        transition: all 0.35s ease;
        cursor: pointer;
    }

    .tool-icons img:hover {
        transform: translateY(-6px) scale(1.15);
        box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
        filter: brightness(1.1);
    }

    /* WORK */
    .work-desktop {
        display: none;
    }

    .work-tablet {
        display: none;
    }

    .work-mobile {
        display: block;
    }

    /* WORK */
    .work-container {
        /* grid-column: 2/5; */
        display: flex;
        flex-direction: column;
        background: #FBFAFB;
    }

    .box1 {
        width: 100%;
        /* border-top: 1px solid rgba(226, 226, 226, 0.5);
        border-bottom: 1px solid rgba(226, 226, 226, 0.5); */
        padding: 8px;
        display: flex;
        flex-direction: column;
    }

    .box2 {
        width: 100%;
        /* border-bottom: 1px solid rgba(226, 226, 226, 0.5); */
        border-left: 1px solid rgba(226, 226, 226, 0.5);
        padding: 8px;
        display: flex;
        flex-direction: column;
    }

    .box3 {
        width: 100%;
        border-bottom: 1px solid rgba(226, 226, 226, 0.5);
        /* padding: 16px; */
        display: flex;
        flex-direction: column;
    }

    .box4 {
        width: 100%;
        border-bottom: 1px solid rgba(226, 226, 226, 0.5);
        border-left: 1px solid rgba(226, 226, 226, 0.5);
        padding: 8px;
        display: flex;
        flex-direction: column;
    }

    .box5 {
        width: 100%;
        border-bottom: 1px solid rgba(226, 226, 226, 0.5);
        padding-left: 16px;
        padding-right: 30px;
        padding-top: 8px;
        display: flex;
        flex-direction: column;
    }

    .top {
        display: flex;
        align-items: center;
        gap: 8px;
    }

    .top3 {
        padding-left: 8px;
        padding-right: 8px;
        padding-top: 8px;
        display: flex;
        align-items: center;
        gap: 8px;
    }

    .box .number {
        padding: 2px 8px;
        background: rgba(20, 20, 20, 1);
        color: white;
        border-radius: 4px;
        font-weight: 400;
        font-size: 16px;
        font-style: italic;
        font-family: "Instrument Serif", serif;
    }

    .box .heading {
        color: rgba(20, 20, 20, 1);
        font-size: 16px;
        font-weight: 400;
        font-family: "Instrument Serif", serif;
    }

    /* text */
    .box .text {
        margin-top: 8px;
        color: rgba(69, 69, 69, 0.8);
        font-size: 12px;
        font-weight: 400;
        font-family: 'Segoe UI', system-ui, -apple-system, sans-serif;
        margin-bottom: 30px;
    }

    .box .text3 {
        padding-left: 8px;
        padding-right: 8px;
        margin-top: 8px;
        color: rgba(69, 69, 69, 0.8);
        font-size: 12px;
        font-weight: 400;
        font-family: 'Segoe UI', system-ui, -apple-system, sans-serif;
        margin-bottom: 11px;
    }

    /* image bottom */
    .box img {
        width: 100%;
        /* max-width: 150px; */
        margin-top: auto;
        align-self: flex-end;
    }

    /* HIGHLIGHT TEXT */
    .left-text {
        font-size: 16px;
        font-weight: 400;
        font-family: 'Instrument Serif', serif;
        color: rgba(20, 20, 20, 1);
    }

    .right-text {
        margin-left: auto;
        text-align: right;
        font-size: 20px;
        font-weight: 400;
        font-family: 'Instrument Serif', serif;
        color: rgba(20, 20, 20, 1);
    }

    .highlight {
        background-color: greenyellow;
        font-size: 20px;
        font-weight: 400;
        border-radius: 4px;
        font-family: 'Instrument Serif', serif;
        color: rgba(20, 20, 20, 1);
        font-style: italic;
        padding: 2px 6px;
        margin-left: 0px;
    }

    .highlight6 {
        background-color: #C8F135;
        font-size: 20px;
        font-weight: 400;
        border-radius: 4px;
        font-family: 'Instrument Serif', serif;
        color: rgba(20, 20, 20, 1);
        font-style: italic;
        padding: 0px 6px;
        margin-left: 0px;
    }

    .highlight3 {
        background-color: rgba(252, 190, 22, 1);
        font-size: 20px;
        font-weight: 400;
        border-radius: 4px;
        font-family: 'Instrument Serif', serif;
        color: rgba(20, 20, 20, 1);
        font-style: italic;
        padding: 0px 6px;
        margin-left: 0px;
    }

    .highlight4 {
        background-color: rgba(183, 215, 255, 1);
        font-size: 20px;
        font-weight: 400;
        border-radius: 4px;
        font-family: 'Instrument Serif', serif;
        color: rgba(20, 20, 20, 1);
        font-style: italic;
        padding: 0px 6px;
        margin-left: 0px;
    }

    .highlight5 {
        background-color: rgba(47, 204, 85, 1);
        font-size: 20px;
        font-weight: 400;
        border-radius: 4px;
        font-family: 'Instrument Serif', serif;
        color: rgba(20, 20, 20, 1);
        font-style: italic;
        padding: 0px 6px;
        margin-left: 0px;
    }

    .highlight2 {
        background-color: #FAA071;
        font-size: 20px;
        font-weight: 400;
        border-radius: 4px;
        font-family: 'Instrument Serif', serif;
        color: rgba(20, 20, 20, 1);
        font-style: italic;
        padding: 0px 6px;
        margin-left: 0px;
    }

    /* FAQ */

    .faq-question h3 {
        font-size: 14px;
        color: #141414;
        font-weight: 500;
        font-family: 'Segoe UI', system-ui, -apple-system, sans-serif;
    }

    .faq-answer p {
        padding-bottom: 24px;
        font-size: 12px;
        font-weight: 400;
        color: rgba(69, 69, 69, 0.8);
        font-family: 'Segoe UI', system-ui, -apple-system, sans-serif;
    }

    /* FOOTER */
    footer {
        display: flex;
        flex-direction: column;
        align-items: flex-start;
        gap: 8px;
        padding: 16px;
    }

    .footer-logo {
        order: 1;
        margin-left: 0;
    }

    .footer-social {
        order: 2;
        display: flex;
        gap: 16px;
        justify-content: flex-start;
        margin-left: 0;
        margin-bottom: 8px;
    }

    .footer-social a {
        margin-left: 0;
    }

    .footer-text {
        order: 3;
        text-align: left;
        font-size: 12px;
        margin-left: 0;
    }

    .lastName {
        width: 100%;
    }

    .offer-grid {
        grid-template-columns: repeat(1, 1fr);
        padding-left: 20px;
        padding-right: 20px;
    }

    .offer-header {
        padding: 16px;
        flex-direction: column;
        align-items: flex-start;
        gap: 16px;
    }

    .offer-right-text {
        text-align: left;
    }

    .offer-left-text h2 {
        font-size: 24px;
        font-weight: 400;
        font-family: "Instrument Serif", serif;
    }

    .offer-right-text .text1 {
        font-size: 24px;
        font-weight: 700;
        color: #141414;
        font-family: 'Segoe UI', system-ui, -apple-system, sans-serif;
    }

    .offer-right-text .text2 {
        font-size: 12px;
        font-weight: 400;
        color: rgba(69, 69, 69, 0.8);
        font-family: 'Segoe UI', system-ui, -apple-system, sans-serif;
    }

    .offer-right-text .text3 {
        background-color: #C8F135;
        padding: 4px 8px;
        border-radius: 99px;
        font-size: 12px;
        font-weight: 400;
        color: #141414;
        font-family: 'Segoe UI', system-ui, -apple-system, sans-serif;
    }

    .offer-para {
        padding: 16px;
        font-size: 12px;
        font-weight: 400;
        color: rgba(69, 69, 69, 0.8);
        font-family: 'Segoe UI', system-ui, -apple-system, sans-serif;
        margin-bottom: 8px;
    }
}

@media (max-width: 600px) {
    .testimonial-container {
        flex-direction: column;
        align-items: center;
        text-align: start;
        gap: 30px;
    }

    .testimonial-image img {
        width: 100%;
        max-width: 500px;
        height: auto;
    }

    .testimonial-content {
        width: 100%;
    }

    .arrows {
        justify-content: start;
        display: flex;
    }

    .offer-grid {
        grid-template-columns: repeat(1, 1fr);
    }

    .stats-row {
        flex-wrap: wrap;
    }

    .stat {
        flex: 1;
    }

    .stat-btn {
        margin: 0;
        justify-content: center;
        width: 100%;
    }
}

/* ONLY RESPONSIVE FOR NAVBAR */
@media (max-width: 1080px) {
    .navbar-wrapper .navbar {
        width: 100%;
        justify-content: space-between;
        position: relative;
        padding: 16px 12px;
        display: flex;
        align-items: center;
    }

    .hamburger {
        display: block;
        z-index: 1001;
    }

    .mobile-title {
        display: block;
        position: absolute;
        left: 50%;
        transform: translateX(-50%);
        z-index: 1000;
    }

    .mobile-title img {
        max-height: 20px;
    }

    .vertical-line,
    .cv-btn,
    .book-btn {
        display: none;
    }

    .mobile-buttons {
        display: flex;
        flex-direction: column;
        gap: 8px;
        margin-top: 8px;
    }

    .mobile-buttons .cv-btn,
    .mobile-buttons .book-btn {
        display: flex;
        justify-content: center;
        width: 100%;
    }

    .menu a {
        text-align: center;
        width: 100%;
        font-family: 'Segoe UI', system-ui, -apple-system, sans-serif;
        font-weight: 600;
        font-size: 16px;
    }

    .menu {
        position: absolute;
        top: 80px;
        left: 0px;
        right: 0px;
        width: auto;
        flex-direction: column;
        background: transparent;
        backdrop-filter: blur(10px);
        padding: 16px;
        border-radius: 12px;
        display: none;
        gap: 24px;
        border: 0.58px solid rgba(199, 199, 204, 0.5);
        z-index: 999;
    }

    .menu.active {
        display: flex;
    }

    .menu a:first-child {
        padding-left: 0;
        margin-left: 0;
    }

    .menu a:first-child::before {
        display: none;
        content: none;
    }

    .logo-box {
        padding-right: 0;
    }
}

@media (max-width: 570px) {
    .contact-section {
        flex-direction: column;
        align-items: flex-start;
        /* move content to left */
        text-align: left;
        gap: 16px;
    }

    .left h1 {
        font-size: 24px;
        line-height: 24px;
        font-weight: 400;
        color: #FFFFFF;
        font-family: 'Instrument Serif', serif;
    }

    .left p {
        margin-top: 8px;
        color: rgba(255, 255, 255, 0.8);
        font-size: 14px;
        font-weight: 400;
        font-family: 'Segoe UI', system-ui, -apple-system, sans-serif;
    }

    .right {
        margin-top: 0px;
        width: 100%;
    }

    .offer-left-text h2 {
        font-size: 26px;
        font-weight: 400;
        font-family: "Instrument Serif", serif;
    }

    .offer-right-text .text1 {
        font-size: 38px;
        font-weight: 700;
        color: #141414;
        font-family: 'Segoe UI', system-ui, -apple-system, sans-serif;
    }

    .offer-right-text .text2 {
        font-size: 12px;
        font-weight: 400;
        color: rgba(69, 69, 69, 0.8);
        font-family: 'Segoe UI', system-ui, -apple-system, sans-serif;
    }

    .offer-right-text .text3 {
        background-color: #C8F135;
        padding: 4px 8px;
        border-radius: 99px;
        font-size: 12px;
        font-weight: 400;
        color: #141414;
        font-family: 'Segoe UI', system-ui, -apple-system, sans-serif;
    }

    .offer-card {
        margin: 16px;
    }

    .offer-card-left .subtitle {
        font-size: 10px;
        font-weight: 500;
        color: #666666;
        font-family: 'Inter', sans-serif;
        margin-bottom: 12px;
    }

    .offer-card-left .title {
        font-size: 20px;
        font-weight: 400;
        font-family: "Instrument Serif", serif;
        color: white;
        margin-bottom: 12px;
    }

    /* TEXT ROW */
    .offer-card-left .text-row {
        font-size: 20px;
        font-weight: 400;
        font-family: "Instrument Serif", serif;
        color: white;
        margin-bottom: 12px;
    }

    .offer-card-left .text-row span {
        background: #C8F135;
        border-radius: 6px;
        padding: 4px;
        color: #0F0F0F;
        font-size: 20px;
        font-weight: 400;
        font-family: "Instrument Serif", serif;
    }

    .offer-card-left .chip.chip.primary {
        font-size: 10px;
    }

    .offer-card-left .chip.secondary {
        font-size: 10px;
    }
}

@media (max-width: 350px) {
    .stats-row {
        flex-direction: column;
        /* 🔥 vertical stack */
        align-items: center;
        text-align: center;
    }

    .stat {
        width: 100%;
        margin-bottom: 12px;
    }

    .v-line {
        display: none;
        /* ❌ remove lines */
    }

    .stat-btn {
        margin: 0;
        width: 100%;
        justify-content: center;
    }
}