@import url('https://fonts.googleapis.com/css2?family=Inter:ital,opsz,wght@0,14..32,100..900;1,14..32,100..900&display=swap');

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: "Inter", sans-serif;
}

body {
    overflow-x: hidden;
}

/* ─────────────────────────────────────────
   PAGE LOADER
───────────────────────────────────────── */
#page-loader {
    position: fixed;
    inset: 0;
    background: #0A0A0A;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 28px;
    z-index: 9999;
    transition: opacity 0.7s cubic-bezier(0.4, 0, 0.2, 1),
                visibility 0.7s ease;
}

#page-loader.fade-out {
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
}

.loader-logo {
    width: 88px;
    height: 88px;
    border-radius: 50%;
    animation: loaderPulse 1.6s ease-in-out infinite;
}

.loader-ring {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    border: 3px solid rgba(250, 208, 8, 0.15);
    border-top-color: #FAD008;
    animation: loaderSpin 0.8s linear infinite;
}

@keyframes loaderSpin {
    to { transform: rotate(360deg); }
}

@keyframes loaderPulse {
    0%, 100% { transform: scale(1);    opacity: 1; }
    50%       { transform: scale(0.93); opacity: 0.75; }
}

/* ─────────────────────────────────────────
   BANNER HERO ENTRANCE
───────────────────────────────────────── */
.home-banner-headline {
    animation: heroFadeUp 0.75s cubic-bezier(0.4, 0, 0.2, 1) 0.85s both;
}

.home-banner-sublines {
    animation: heroFadeUp 0.75s cubic-bezier(0.4, 0, 0.2, 1) 1.05s both;
}

.home-banner-cta {
    animation: heroFadeUp 0.75s cubic-bezier(0.4, 0, 0.2, 1) 1.22s both;
}

@keyframes heroFadeUp {
    from { opacity: 0; transform: translateY(30px); }
    to   { opacity: 1; transform: translateY(0); }
}

/* ─────────────────────────────────────────
   SCROLL REVEAL
───────────────────────────────────────── */
[data-reveal] {
    opacity: 0;
    will-change: opacity, transform;
    transition: opacity 0.8s cubic-bezier(0.4, 0, 0.2, 1),
                transform 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

[data-reveal="up"]    { transform: translateY(44px); }
[data-reveal="left"]  { transform: translateX(-56px); }
[data-reveal="right"] { transform: translateX(56px); }
[data-reveal="scale"] { transform: scale(0.86); }
[data-reveal="fade"]  { transform: none; }

[data-reveal-delay="100"] { transition-delay: 0.10s; }
[data-reveal-delay="150"] { transition-delay: 0.15s; }
[data-reveal-delay="200"] { transition-delay: 0.20s; }
[data-reveal-delay="250"] { transition-delay: 0.25s; }
[data-reveal-delay="300"] { transition-delay: 0.30s; }
[data-reveal-delay="400"] { transition-delay: 0.40s; }
[data-reveal-delay="500"] { transition-delay: 0.50s; }

[data-reveal].is-visible {
    opacity: 1;
    transform: none;
}

.navbar-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 100%;
    position: relative;
    z-index: 10;
    animation: navbarSlideDown 0.6s cubic-bezier(0.4, 0, 0.2, 1) 0.6s both;
}

@keyframes navbarSlideDown {
    from { opacity: 0; transform: translateY(-100%); }
    to   { opacity: 1; transform: translateY(0); }
}

.navbar-top {
    display: flex;
    flex-direction: row;
    width: 100%;
    height: 40px;
    background: #1A1A1A;
}

.navbar-main {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    height: 72px;
    background: #FAD008;
    width: 100%;
    padding: 0 10%;
}

.navbar-list {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 32px;
    flex: 1;
}

.navbar-list a {
    font-weight: 400;
    font-size: 16px;
    line-height: 24px;
    letter-spacing: -0.31px;
    color: #1A1A1A;
    text-decoration: none;
    position: relative;
    transition: color 0.25s ease;
}

.navbar-list a::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: -3px;
    width: 0;
    height: 2px;
    background: #1A1A1A;
    transition: width 0.25s ease;
}

.navbar-list a:hover {
    color: #000;
}

.navbar-list a:hover::after {
    width: 100%;
}

.navbar-logo {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    /* top: 0; */
    top: 8px;
    z-index: 10;
}

.navbar-logo img {
    width: 136px;
    height: 136px;
    border-radius: 70px;
}

.navbar-btns {
    display: flex;
    justify-content: flex-end;
    flex: 1;
}

.navbar-btns button {
    background: #1A1A1A;
    color: #FFFFFF;
    padding: 10px 20px;
    border: none;
    border-radius: 6px;
    font-weight: 600;
    font-size: 14px;
    cursor: pointer;
    white-space: nowrap;
    transition: background 0.25s ease, transform 0.2s ease, box-shadow 0.25s ease;
}

.navbar-btns button:hover {
    background: #333333;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.25);
}

.navbar-btns button:active {
    transform: translateY(0);
    box-shadow: none;
}

.home-banner-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 83px 0 0;
    background: url(../img/home-banner-bg.jpg) center/cover no-repeat;
    width: 100%;
    position: relative;
}

.home-banner-container::before {
    content: '';
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.55);
    z-index: 0;
}

.home-banner-texts {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 27px;
    width: 100%;
    padding-bottom: 101px;
    position: relative;
    z-index: 1;
}

.home-banner-headline {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.home-banner-headline img {
    width: 669px;
    height: auto;
    filter: drop-shadow(0 4px 16px rgba(0, 0, 0, 0.5));
}

.home-banner-sublines {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 18px;
}

.home-banner-subline {
    font-weight: 700;
    font-size: 48px;
    line-height: 36px;
    letter-spacing: 0.4px;
    text-align: center;
    color: #FFFFFF;
    text-shadow: 0 2px 12px rgba(0, 0, 0, 0.7);
}

.home-banner-subline.yellow {
    color: #FAD008;
    text-shadow: 0 2px 12px rgba(0, 0, 0, 0.6);
}

.home-banner-cta {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.home-banner-cta a {
    text-decoration: none;
    padding: 11px 32px;
    background: #FAD008;
    border-radius: 4px;
    font-weight: 700;
    font-size: 20px;
    line-height: 28px;
    letter-spacing: -0.45px;
    color: #000000;
    text-align: center;
    transition: transform 0.25s ease, box-shadow 0.25s ease, background 0.25s ease;
}

.home-banner-cta a:hover {
    background: #ffd900;
    transform: translateY(-3px);
    box-shadow: 0 8px 24px rgba(250, 208, 8, 0.5);
}

.home-banner-cta a:active {
    transform: translateY(0);
    box-shadow: none;
}

.home-banner-wave {
    width: 100%;
    height: auto;
    display: block;
    position: relative;
    z-index: 1;
    margin-bottom: -2px;
}

.home-our-services-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background: #E5E5E5;
    width: 100%;
    gap: 32px;
    position: relative;
    /* padding: 48px 0 200px; */
    /* padding: 0 0 50px; */
    padding: 0;
}

.home-our-services-headline {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 17px;
    width: 70%;
    position: relative;
    z-index: 1;
}

.our-services-headline {
    font-weight: 900;
    font-size: 64px;
    line-height: 48px;
    letter-spacing: 0.35px;
    text-align: center;
    color: #1A1A1A;
    width: 100%;
}

.our-services-subline {
    font-weight: 400;
    font-size: 16px;
    line-height: 24px;
    letter-spacing: -0.31px;
    text-align: center;
    color: #364153;
    width: 60%;
}

.home-our-services-list {
    display: flex;
    flex-direction: row;
    align-items: stretch;
    justify-content: center;
    gap: 24px;
    /* width: 70%; */
    position: relative;
    z-index: 1;
}

.home-our-services-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    gap: 11px;
    background: #FFFFFF;
    border-radius: 10px;
    box-shadow: 0px 4px 6px -4px rgba(0,0,0,0.1), 0px 10px 15px -3px rgba(0,0,0,0.1);
    padding: 20px 32px;
    width: 30%;
}

.home-our-services-item img {
    height: 115px;
    width: auto;
}

.home-our-services-item h3 {
    font-weight: 700;
    font-size: 24px;
    line-height: 32px;
    letter-spacing: 0.07px;
    text-align: center;
    color: #0A0A0A;
}

.our-services-item-subline {
    font-weight: 400;
    font-size: 16px;
    line-height: 24px;
    letter-spacing: -0.31px;
    text-align: center;
    color: #4A5565;
}

.home-services-wave {
    width: 100%;
    height: auto;
    display: block;
    position: absolute;
    bottom: -4px;
    left: 0;
    z-index: 0;
}

.about-us-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 80px;
    width: 100%;
    background: #0A0A0A;
    padding: 80px 48px;
}

.about-us-contexts-image {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    gap: 64px;
    width: 100%;
}

.about-us-context {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    gap: 24px;
    width: 50%;
}

.about-us-headline {
    font-weight: 900;
    font-size: 48px;
    line-height: 48px;
    letter-spacing: 0.35px;
    color: #FAD008;
}

.about-us-subline-1 {
    font-weight: 400;
    font-size: 18px;
    line-height: 29.25px;
    letter-spacing: -0.44px;
    color: #FFFFFF;
}

.about-us-subline-2 {
    font-weight: 400;
    font-size: 16px;
    line-height: 26px;
    letter-spacing: -0.31px;
    color: #D1D5DC;
}

.about-us-image {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 560px;
    height: 500px;
    box-shadow: 0px 25px 50px -12px #00000040;
}

.about-us-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 10px;
}

.about-us-analytics {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    gap: 48px;
    width: 100%;
}

.about-us-analytics-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 8px;
    width: 30%;
}

.analytics-num {
    font-weight: 900;
    font-size: 72px;
    line-height: 72px;
    letter-spacing: 0.12px;
    text-align: center;
    color: #FFC800;
}

.analytics-subline {
    font-weight: 700;
    font-size: 18px;
    line-height: 28px;
    letter-spacing: -0.44px;
    text-align: center;
    color: #FFFFFF;
}

.choose-us-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 80px 50px;
    gap: 64px;
}

.choose-us-title {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 16px;
}

.choose-us-headline {
    font-weight: 900;
    font-size: 48px;
    line-height: 48px;
    letter-spacing: 0.35px;
    text-align: center;
    color: #101828;
}

.choose-us-subline {
    font-weight: 400;
    font-size: 16px;
    line-height: 24px;
    letter-spacing: -0.31px;
    text-align: center;
    color: #4A5565;
}

.choose-us-list {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    gap: 32px;
}

.choose-us-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 12px;
    width: 30%;
}

.choose-us-item img {
    width: 96px;
    height: 96px;
}

.choose-us-item-headline {
    font-weight: 900;
    font-size: 20px;
    line-height: 28px;
    letter-spacing: -0.45px;
    text-align: center;
    color: #101828;
}

.choose-us-item-subline {
    font-weight: 400;
    font-size: 16px;
    line-height: 26px;
    letter-spacing: -0.31px;
    text-align: center;
    color: #4A5565;
}

.choose-us-icon-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 24px;
    background: #FFC800;
    border-radius: 50%;
    box-shadow: 0px 8px 10px -6px #0000001A;
    box-shadow: 0px 20px 25px -5px #0000001A;
    width: 96px;
    height: 96px;
}

.choose-us-icon-container img {
    width: 48px;
    height: 48px;
}

.work-in-action-container {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    gap: 64px;
    padding: 80px 0;
    width: 100%;
    background: #171717;
}

.work-in-action-context {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    gap: 24px;
    width: 560px;
}

.work-in-action-headline {
    font-weight: 900;
    font-size: 48px;
    line-height: 48px;
    letter-spacing: 0.35px;
    text-align: left;
    color: #FFFFFF;
}

.work-in-action-subline {
    font-weight: 400;
    font-size: 18px;
    line-height: 29.25px;
    letter-spacing: -0.44px;
    text-align: left;
    color: #FFFFFF;
}

.work-in-action-subline-2 {
    font-weight: 400;
    font-size: 16px;
    line-height: 26px;
    letter-spacing: -0.31px;
    text-align: left;
    color: #D1D5DC;
}

.work-in-action-bullets {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    gap: 16px;
}

.work-in-action-bullet-item {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: flex-start;
    gap: 12px;
}

.work-in-action-bullet-item img {
    width: 24px;
    height: 24px;
}

.wia-bullet-label {
    font-weight: 400;
    font-size: 16px;
    line-height: 24px;
    letter-spacing: -0.31px;
    text-align: left;
    color: #FFFFFF;
}

.work-in-action-cta {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 12px 32px;
    background: #FFC800;
    font-weight: 700;
    font-size: 16px;
    line-height: 24px;
    letter-spacing: -0.31px;
    text-align: center;
    color: #000000;
    text-decoration: none;
}

.work-in-action-image {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 560px;
    height: 315px;
}

.work-in-action-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.our-projects-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 64px;
    padding: 80px 0;
    width: 100%;
}

.our-projects-title {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 16px;
}

.our-projects-headline {
    font-weight: 900;
    font-size: 48px;
    line-height: 48px;
    letter-spacing: 0.35px;
    text-align: center;
    color: #101828;
}

.our-projects-subline {
    font-weight: 400;
    font-size: 16px;
    line-height: 24px;
    letter-spacing: -0.31px;
    text-align: center;
    color: #4A5565;
}

.our-projects-list {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    gap: 24px;
}

.our-projects-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 278px;
    height: 256px;
    box-shadow: 0px 4px 6px -4px #0000001A;
    box-shadow: 0px 10px 15px -3px #0000001A;
    position: relative;
    overflow: hidden;
}

.our-projects-item::after {
    content: '';
    position: absolute;
    inset: 0;
    background: #00000066;
}

.our-projects-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.clients-say-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 64px;
    padding: 80px 0;
    width: 100%;
    background: #F9FAFB;
}

.clients-say-title {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 16px;
}

.clients-say-headline {
    font-weight: 900;
    font-size: 48px;
    line-height: 48px;
    letter-spacing: 0.35px;
    text-align: center;
    color: #101828;
}

.clients-say-subline {
    font-weight: 400;
    font-size: 16px;
    line-height: 24px;
    letter-spacing: -0.31px;
    text-align: center;
    color: #4A5565;
}

.clients-say-list {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    gap: 32px;
}

.client-say-item {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    gap: 24px;
    padding: 32px;
    width: 374px;
    height: 278px;
    background: #FFFFFF;
    box-shadow: 0px 4px 6px -4px #0000001A;
    box-shadow: 0px 10px 15px -3px #0000001A;
}

.client-say-quote {
    font-weight: 400;
    font-style: italic;
    font-size: 18px;
    line-height: 29.25px;
    letter-spacing: -0.44px;
    text-align: left;
    color: #364153;
}

.client-say-id {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: flex-start;
    gap: 16px;
    border-top: 1px solid #E5E7EB;
    padding-top: 25px;
    width: 100%;
}

.client-say-id img {
    width: 48px;
    height: 48px;
}

.client-say-name-title {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
}

.client-say-name {
    font-weight: 700;
    font-size: 16px;
    line-height: 24px;
    letter-spacing: -0.31px;
    color: #000000;
}

.client-say-title {
    font-weight: 400;
    font-size: 14px;
    line-height: 20px;
    letter-spacing: -0.15px;
    color: #6A7282;
}

.our-process-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 64px;
    padding: 80px 0;
    width: 100%;
}

.our-process-title {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 16px;
}

.our-process-headline {
    font-weight: 900;
    font-size: 48px;
    line-height: 48px;
    letter-spacing: 0.35px;
    text-align: center;
    color: #101828;
}

.our-process-subline {
    font-weight: 400;
    font-size: 16px;
    line-height: 24px;
    letter-spacing: -0.31px;
    text-align: center;
    color: #4A5565;
}

.our-process-list {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    gap: 24px;
}

.our-process-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 24px;
    width: 278px;
    height: 278px;
    background: #FFC800;
    padding: 32px;
}

.our-process-item-no {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background: #000000;
    width: 64px;
    height: 64px;
}

.our-process-item-no p {
    font-weight: 900;
    font-size: 36px;
    line-height: 40px;
    letter-spacing: 0.37px;
    text-align: center;
    color: #FFC800;
}

.our-process-context {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 16px;
}

.our-process-heading {
    font-weight: 900;
    font-size: 24px;
    line-height: 32px;
    letter-spacing: 0.07px;
    text-align: center;
    color: #000000;
}

.our-process-description {
    font-weight: 400;
    font-size: 16px;
    line-height: 26px;
    letter-spacing: -0.31px;
    text-align: center;
    color: #000000CC;
}

.faq-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 64px;
    padding: 80px 0;
    width: 100%;
    background: #F9FAFB;
}

.faq-title {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 16px;
}

.faq-headline {
    font-weight: 900;
    font-size: 48px;
    line-height: 48px;
    letter-spacing: 0.35px;
    text-align: center;
    color: #101828;
}

.faq-subline {
    font-weight: 400;
    font-size: 16px;
    line-height: 24px;
    letter-spacing: -0.31px;
    text-align: center;
    color: #4A5565;
}

.faq-list {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 16px;
    width: 80%;
}

.faq-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 100%;
}

.faq-question {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    padding: 20px 32px;
    background: #FFFFFF;
    box-shadow: 0px 2px 4px -2px #0000001A, 0px 4px 6px -1px #0000001A;
    cursor: pointer;
    border-radius: 10px;
    transition: background 0.25s ease, border-radius 0.25s ease;
}

.faq-item.open .faq-question {
    border-radius: 10px 10px 0 0;
    background: #FFFFFF;
}

.faq-question-text {
    font-weight: 700;
    font-size: 18px;
    line-height: 28px;
    letter-spacing: -0.44px;
    text-align: left;
    color: #101828;
}

.faq-question img {
    width: 12px;
    transition: transform 0.3s ease;
    flex-shrink: 0;
}

.faq-item.open .faq-question img {
    transform: rotate(180deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease, opacity 0.3s ease;
    opacity: 0;
    width: 100%;
    background: #ffc80070;
    box-shadow: 0px 2px 4px -2px #0000001A, 0px 4px 6px -1px #0000001A;
    border-radius: 0 0 10px 10px;
}

.faq-item.open .faq-answer {
    max-height: 300px;
    opacity: 1;
}

.faq-answer-inner {
    padding: 16px 32px;
}

.home-quote-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 64px;
    padding: 80px 0;
    width: 100%;
    background: url(../img/about-us-bg.jpg) center/cover no-repeat;
    position: relative;
}

.home-quote-container::before {
    content: '';
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.65);
    z-index: 0;
}

.home-quote-title {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 16px;
    position: relative;
    z-index: 1;
}

.home-quote-headline {
    font-weight: 900;
    font-size: 48px;
    line-height: 48px;
    letter-spacing: 0.35px;
    text-align: center;
    color: #FFFFFF;
}

.home-quote-subline {
    font-weight: 400;
    font-size: 16px;
    line-height: 24px;
    letter-spacing: -0.31px;
    text-align: center;
    color: #D1D5DC;
}

.home-quote-contexts {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    gap: 64px;
    width: 100%;
}

.home-quote-more-info-list {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-start;
    gap: 36px;
    position: relative;
    z-index: 1;
    width: 40%;
}

.home-quote-more-info-item {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    gap: 24px;
    text-decoration: none;
}

.home-quote-item-icon {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 48px;
    height: 48px;
    background: #FFC800;
}

.home-quote-item-icon img {
    width: 24px;
    height: 24px;
}

.home-quote-item-info {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    gap: 4px;
}

.home-quote-item-heading {
    font-weight: 700;
    font-size: 16px;
    line-height: 24px;
    letter-spacing: -0.31px;
    text-align: left;
    color: #FFC800;
}

.home-quote-item-subline {
    font-weight: 400;
    font-size: 16px;
    line-height: 24px;
    letter-spacing: -0.31px;
    text-align: left;
    color: #D1D5DC;
}

.home-quote-form {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 40%;
    padding: 32px;
    background: #FFFFFF;
    box-shadow: 0px 25px 50px -12px #00000040;
    position: relative;
    z-index: 1;
}

.home-quote-form form {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 24px;
    width: 100%;
}

.home-quote-form form input,
.home-quote-form form textarea {
    width: 100%;
    padding: 12px 16px;
    border: 2px solid #D1D5DC;
    font-weight: 400;
    font-size: 16px;
    line-height: 100%;
    letter-spacing: -0.31px;
    background: #F9FAFB;
    outline: none;
    transition: border-color 0.25s ease, background 0.25s ease, box-shadow 0.25s ease;
}

.home-quote-form form input:focus,
.home-quote-form form textarea:focus {
    border-color: #FFC800;
    background: #FFFFFF;
    box-shadow: 0 0 0 4px #FFC80030;
}

.home-quote-form form input::placeholder,
.home-quote-form form textarea::placeholder {
    color: #6A7282;
    transition: opacity 0.2s ease;
}

.home-quote-form form input:focus::placeholder,
.home-quote-form form textarea:focus::placeholder {
    opacity: 0.4;
}

.home-quote-cta {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 16px 0;
    background: #FFC800;
    width: 100%;
    font-weight: 700;
    font-size: 18px;
    line-height: 28px;
    letter-spacing: -0.44px;
    text-align: center;
    color: #000000;
    border: none;
    cursor: pointer;
    transition: background 0.25s ease, transform 0.15s ease, box-shadow 0.25s ease;
}

.home-quote-cta:hover {
    background: #e6b400;
    box-shadow: 0 6px 20px #FFC80050;
    transform: translateY(-2px);
}

.home-quote-cta:active {
    background: #cc9f00;
    transform: translateY(0px);
    box-shadow: 0 2px 8px #FFC80040;
}

/* ── Honeypot (invisible to humans) ─────────────────────────────────────────── */
.form-honeypot {
    position: absolute;
    left: -9999px;
    opacity: 0;
    pointer-events: none;
    height: 0;
    width: 0;
}

/* ── Submit button loading state ─────────────────────────────────────────────── */
.home-quote-cta {
    position: relative;
    overflow: hidden;
}

.btn-spinner {
    display: none;
    width: 20px;
    height: 20px;
    border: 3px solid rgba(0,0,0,0.2);
    border-top-color: #000;
    border-radius: 50%;
    animation: btn-spin 0.7s linear infinite;
    position: absolute;
}

@keyframes btn-spin {
    to { transform: rotate(360deg); }
}

.home-quote-cta.loading .btn-label { opacity: 0; }
.home-quote-cta.loading .btn-spinner { display: inline-block; }
.home-quote-cta.loading { pointer-events: none; opacity: 0.8; }

/* ── Form feedback overlay ───────────────────────────────────────────────────── */
.form-feedback-overlay {
    position: absolute;
    inset: 0;
    background: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: opacity 0.35s ease, visibility 0.35s ease;
    z-index: 10;
}

.form-feedback-overlay.show {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
}

.form-feedback-inner {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
    padding: 32px;
    text-align: center;
}

.form-feedback-icon {
    width: 72px;
    height: 72px;
}

/* Checkmark SVG animation */
.checkmark,
.crossmark {
    display: none;
    width: 72px;
    height: 72px;
}

.form-feedback-overlay.success .checkmark { display: block; }
.form-feedback-overlay.error   .crossmark { display: block; }

.checkmark-circle {
    stroke: #22c55e;
    stroke-width: 2;
    stroke-dasharray: 166;
    stroke-dashoffset: 166;
    stroke-miterlimit: 10;
}

.checkmark-check {
    stroke: #22c55e;
    stroke-width: 3;
    stroke-linecap: round;
    stroke-linejoin: round;
    stroke-dasharray: 48;
    stroke-dashoffset: 48;
}

.form-feedback-overlay.show.success .checkmark-circle {
    animation: stroke 0.5s cubic-bezier(0.65, 0, 0.45, 1) 0.1s forwards;
}

.form-feedback-overlay.show.success .checkmark-check {
    animation: stroke 0.35s cubic-bezier(0.65, 0, 0.45, 1) 0.55s forwards;
}

.crossmark-circle {
    stroke: #ef4444;
    stroke-width: 2;
    stroke-dasharray: 166;
    stroke-dashoffset: 166;
    stroke-miterlimit: 10;
}

.crossmark-x {
    stroke: #ef4444;
    stroke-width: 3;
    stroke-linecap: round;
    stroke-dasharray: 60;
    stroke-dashoffset: 60;
}

.form-feedback-overlay.show.error .crossmark-circle {
    animation: stroke 0.5s cubic-bezier(0.65, 0, 0.45, 1) 0.1s forwards;
}

.form-feedback-overlay.show.error .crossmark-x {
    animation: stroke 0.35s cubic-bezier(0.65, 0, 0.45, 1) 0.55s forwards;
}

@keyframes stroke {
    to { stroke-dashoffset: 0; }
}

.form-feedback-message {
    font-size: 16px;
    line-height: 24px;
    font-weight: 500;
    color: #111827;
    max-width: 280px;
}

.form-feedback-back {
    background: none;
    border: 2px solid #FFC800;
    padding: 10px 24px;
    font-size: 14px;
    font-weight: 600;
    color: #000;
    cursor: pointer;
    transition: background 0.2s ease;
}

.form-feedback-back:hover {
    background: #FFC800;
}

/* ── Quote Modal ─────────────────────────────────────────────────────────────── */
body.modal-open { overflow: hidden; }

.quote-modal-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.65);
    z-index: 9000;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 24px 16px;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease;
}

.quote-modal-overlay.open {
    opacity: 1;
    visibility: visible;
}

.quote-modal {
    background: #fff;
    width: 100%;
    max-width: 520px;
    max-height: 90vh;
    overflow-y: auto;
    padding: 40px 36px 36px;
    position: relative;
    box-shadow: 0 25px 60px rgba(0, 0, 0, 0.35);
    transform: translateY(24px) scale(0.97);
    transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.quote-modal-overlay.open .quote-modal {
    transform: translateY(0) scale(1);
}

.quote-modal-close {
    position: absolute;
    top: 14px;
    right: 16px;
    background: none;
    border: none;
    font-size: 28px;
    line-height: 1;
    cursor: pointer;
    color: #6A7282;
    padding: 4px 8px;
    transition: color 0.2s ease;
}

.quote-modal-close:hover { color: #000; }

.quote-modal-title {
    font-size: 28px;
    font-weight: 900;
    line-height: 1.1;
    letter-spacing: 0.2px;
    color: #0A0A0A;
    margin-bottom: 6px;
}

.quote-modal-subtitle {
    font-size: 14px;
    color: #6A7282;
    margin-bottom: 24px;
    line-height: 1.5;
}

.quote-modal-form-wrap {
    position: relative;
}

.quote-modal-form-wrap form {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.quote-modal-form-wrap form input,
.quote-modal-form-wrap form textarea {
    width: 100%;
    padding: 12px 16px;
    border: 2px solid #D1D5DC;
    font-size: 15px;
    line-height: 1.4;
    letter-spacing: -0.2px;
    background: #F9FAFB;
    outline: none;
    transition: border-color 0.25s ease, background 0.25s ease, box-shadow 0.25s ease;
    font-family: inherit;
}

.quote-modal-form-wrap form input:focus,
.quote-modal-form-wrap form textarea:focus {
    border-color: #FFC800;
    background: #fff;
    box-shadow: 0 0 0 4px #FFC80030;
}

.quote-modal-form-wrap form input::placeholder,
.quote-modal-form-wrap form textarea::placeholder {
    color: #6A7282;
}

.quote-modal-form-wrap .form-feedback-overlay {
    border-radius: 0;
}

/* ── Footer ──────────────────────────────────────────────────────────────────── */
.footer-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 48px;
    padding: 64px 0;
    width: 100%;
    background: #000000;
}

.footer-top {
    display: flex;
    flex-direction: row;
    align-items: flex-start;
    justify-content: center;
    gap: 48px;
    width: 80%;
}

.footer-col {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-start;
    gap: 16px;
    width: 25%;
}

.footer-company-info {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-start;
    gap: 24px;
}

.footer-company-title {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: flex-start;
    gap: 12px;
}

.footer-company-icon {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 48px;
    height: 48px;
    background: #FFC800;
}

.footer-company-icon img {
    width: 28px;
    height: 28px;
}

.footer-company-name {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
}

.footer-company-name h2 {
    font-weight: 900;
    font-size: 20px;
    line-height: 28px;
    letter-spacing: -0.45px;
    text-align: left;
    color: #FFFFFF;
}

.footer-company-name h3 {
    font-weight: 700;
    font-size: 9px;
    line-height: 13.5px;
    letter-spacing: 1.97px;
    text-align: left;
    color: #FFC800;
}

.footer-company-description {
    font-weight: 400;
    font-size: 14px;
    line-height: 22.75px;
    letter-spacing: -0.15px;
    text-align: left;
    color: #99A1AF;
}

.footer-col-heading {
    font-weight: 700;
    font-size: 18px;
    line-height: 27px;
    letter-spacing: -0.44px;
    text-align: left;
    color: #FFFFFF;
}

.footer-col-a {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    gap: 8px;
}

.footer-col-a a {
    text-decoration: none;
    font-weight: 400;
    font-size: 14px;
    line-height: 20px;
    letter-spacing: -0.15px;
    color: #99A1AF;
    position: relative;
    transition: color 0.25s ease;
}

.footer-col-a a::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: -2px;
    width: 0;
    height: 1px;
    background: #FFC800;
    transition: width 0.25s ease;
}

.footer-col-a a:hover {
    color: #FFC800;
}

.footer-col-a a:hover::after {
    width: 100%;
}

.footer-bottom {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    width: 80%;
    border-top: 1px solid #1E2939;
    padding: 16px 0;
}

.footer-bottom-left {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
}

.copyright {
    font-weight: 400;
    font-size: 14px;
    line-height: 20px;
    letter-spacing: -0.15px;
    text-align: left;
    color: #6A7282;
}

.footer-bottom-right {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: flex-end;
    gap: 24px;
}

.footer-bottom-right a {
    text-decoration: none;
    font-weight: 400;
    font-size: 14px;
    line-height: 20px;
    letter-spacing: -0.15px;
    text-align: left;
    color: #6A7282;
    position: relative;
    transition: color 0.25s ease;
}

.footer-bottom-right a::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: -2px;
    width: 0;
    height: 1px;
    background: #FFC800;
    transition: width 0.25s ease;
}

.footer-bottom-right a:hover {
    color: #FFC800;
}

.footer-bottom-right a:hover::after {
    width: 100%;
}

/* ─────────────────────────────────────────
   HAMBURGER / MOBILE NAV
───────────────────────────────────────── */
.navbar-hamburger {
    display: none;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 5px;
    width: 40px;
    height: 40px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 6px;
    margin-left: auto;
    flex-shrink: 0;
    z-index: 20;
}

.navbar-hamburger span {
    display: block;
    width: 22px;
    height: 2px;
    background: #1A1A1A;
    border-radius: 2px;
    transition: transform 0.3s ease, opacity 0.3s ease;
}

.navbar-hamburger.open span:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
}

.navbar-hamburger.open span:nth-child(2) {
    opacity: 0;
    transform: scaleX(0);
}

.navbar-hamburger.open span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
}

.mobile-nav-dropdown {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    width: 100%;
    background: #1A1A1A;
    border-top: 3px solid #FAD008;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.45);
    overflow: hidden;
    max-height: 0;
    opacity: 0;
    pointer-events: none;
    transition: max-height 0.38s cubic-bezier(0.4, 0, 0.2, 1),
                opacity 0.25s ease;
    z-index: 100;
}

.mobile-nav-dropdown.open {
    max-height: 480px;
    opacity: 1;
    pointer-events: auto;
}

.mobile-nav-links {
    display: flex;
    flex-direction: column;
    padding: 6px 0 2px;
}

.mobile-nav-links a {
    font-weight: 500;
    font-size: 15px;
    line-height: 22px;
    color: #D1D5DC;
    text-decoration: none;
    padding: 13px 24px;
    letter-spacing: -0.2px;
    border-left: 3px solid transparent;
    transition: color 0.2s ease,
                background 0.2s ease,
                border-color 0.2s ease;
}

.mobile-nav-links a:hover {
    color: #FAD008;
    background: rgba(255, 255, 255, 0.04);
    border-left-color: #FAD008;
}

.mobile-nav-cta {
    display: block;
    width: calc(100% - 48px);
    margin: 6px 24px 20px;
    background: #FAD008;
    color: #000000;
    padding: 11px 0;
    border: none;
    border-radius: 6px;
    font-weight: 700;
    font-size: 14px;
    cursor: pointer;
    text-align: center;
    letter-spacing: -0.1px;
    transition: background 0.25s ease;
}

.mobile-nav-cta:hover {
    background: #ffd900;
}

/* ─────────────────────────────────────────
   BASE FIXES (all screen sizes)
───────────────────────────────────────── */

/* Services section: padding-bottom reserves space for the absolute wave */
.home-our-services-container {
    padding-top: 48px;
    padding-bottom: 150px;
}

/* ─────────────────────────────────────────
   2K+ WIDE SCREENS (≥ 1920px)
───────────────────────────────────────── */
@media (min-width: 1920px) {
    .navbar-main {
        padding: 0 16%;
    }

    .home-banner-headline img {
        width: min(940px, 50vw);
    }

    .home-banner-subline {
        font-size: 60px;
        line-height: 56px;
    }

    .home-banner-cta a {
        font-size: 22px;
        padding: 14px 42px;
    }

    .home-our-services-container {
        padding-top: 64px;
        padding-bottom: 240px;
    }

    .home-our-services-headline {
        width: 60%;
    }

    .our-services-headline {
        font-size: 80px;
        line-height: 64px;
    }

    .home-our-services-item {
        width: 24%;
        padding: 28px 40px;
    }

    .home-our-services-item img {
        height: 140px;
    }

    .home-our-services-item h3 {
        font-size: 28px;
    }

    .about-us-container {
        padding: 100px 10%;
    }

    .about-us-headline {
        font-size: 64px;
        line-height: 64px;
    }

    .about-us-subline-1 {
        font-size: 20px;
        line-height: 34px;
    }

    .about-us-image {
        width: 680px;
        height: 600px;
    }

    .analytics-num {
        font-size: 96px;
        line-height: 96px;
    }

    .analytics-subline {
        font-size: 22px;
    }

    /* Choose Us */
    .choose-us-container {
        padding: 100px 80px;
        gap: 80px;
    }

    .choose-us-headline {
        font-size: 64px;
        line-height: 56px;
    }

    .choose-us-item {
        width: 22%;
    }

    /* Work in Action */
    .work-in-action-context {
        width: 640px;
    }

    .work-in-action-image {
        width: 640px;
        height: 360px;
    }

    .work-in-action-headline {
        font-size: 56px;
        line-height: 56px;
    }

    /* Our Projects */
    .our-projects-container {
        padding: 100px 0;
        gap: 80px;
    }

    .our-projects-headline {
        font-size: 64px;
        line-height: 56px;
    }

    .our-projects-item {
        width: 340px;
        height: 300px;
    }

    /* Clients Say */
    .clients-say-container {
        padding: 100px 0;
        gap: 80px;
    }

    .clients-say-headline {
        font-size: 64px;
        line-height: 56px;
    }

    .client-say-item {
        width: 440px;
        height: auto;
    }

    /* Our Process */
    .our-process-container {
        padding: 100px 0;
        gap: 80px;
    }

    .our-process-headline {
        font-size: 64px;
        line-height: 56px;
    }

    .our-process-item {
        width: 340px;
        height: 340px;
    }

    /* FAQ */
    .faq-container {
        padding: 100px 0;
        gap: 80px;
    }

    .faq-headline {
        font-size: 64px;
        line-height: 56px;
    }

    /* Home Quote */
    .home-quote-headline {
        font-size: 64px;
        line-height: 56px;
    }

    /* Footer */
    .footer-top {
        width: 72%;
    }

    .footer-bottom {
        width: 72%;
    }
}

/* ─────────────────────────────────────────
   TABLET / SMALL DESKTOP (≤ 1024px)
───────────────────────────────────────── */
@media (max-width: 1024px) {
    .navbar-main {
        padding: 0 6%;
    }

    .navbar-list {
        gap: 18px;
    }

    .navbar-list a {
        font-size: 14px;
    }

    .navbar-logo img {
        width: 112px;
        height: 112px;
    }

    .home-banner-subline {
        font-size: 38px;
        line-height: 44px;
    }

    .home-our-services-container {
        padding-top: 40px;
        padding-bottom: 180px;
    }

    .home-our-services-headline {
        width: 88%;
    }

    .our-services-headline {
        font-size: 52px;
        line-height: 44px;
    }

    .our-services-subline {
        width: 80%;
    }

    .home-our-services-list {
        flex-wrap: wrap;
        padding: 0 32px;
        gap: 20px;
        justify-content: center;
    }

    .home-our-services-item {
        width: 44%;
    }

    .about-us-container {
        padding: 64px 40px;
        gap: 56px;
    }

    .about-us-contexts-image {
        flex-direction: column;
        gap: 40px;
    }

    .about-us-context {
        width: 100%;
    }

    .about-us-image {
        width: 100%;
        height: 420px;
    }

    .about-us-analytics {
        gap: 24px;
    }

    .analytics-num {
        font-size: 56px;
        line-height: 56px;
    }

    /* Choose Us */
    .choose-us-container {
        padding: 64px 40px;
        gap: 48px;
    }

    .choose-us-headline {
        font-size: 40px;
        line-height: 44px;
    }

    .choose-us-list {
        flex-wrap: wrap;
        gap: 24px;
    }

    .choose-us-item {
        width: 44%;
    }

    /* Work in Action */
    .work-in-action-container {
        flex-direction: column;
        padding: 64px 40px;
        gap: 40px;
    }

    .work-in-action-context {
        width: 100%;
    }

    .work-in-action-image {
        width: 100%;
        height: 300px;
    }

    .work-in-action-headline {
        font-size: 40px;
        line-height: 44px;
    }

    /* Our Projects */
    .our-projects-container {
        padding: 64px 40px;
        gap: 48px;
    }

    .our-projects-headline {
        font-size: 40px;
        line-height: 44px;
    }

    .our-projects-list {
        flex-wrap: wrap;
        gap: 20px;
    }

    .our-projects-item {
        width: calc(50% - 10px);
        height: 240px;
    }

    /* Clients Say */
    .clients-say-container {
        padding: 64px 40px;
        gap: 48px;
    }

    .clients-say-headline {
        font-size: 40px;
        line-height: 44px;
    }

    .clients-say-list {
        flex-wrap: wrap;
        gap: 24px;
    }

    .client-say-item {
        width: calc(50% - 12px);
        height: auto;
    }

    /* Our Process */
    .our-process-container {
        padding: 64px 40px;
        gap: 48px;
    }

    .our-process-headline {
        font-size: 40px;
        line-height: 44px;
    }

    .our-process-list {
        flex-wrap: wrap;
        gap: 20px;
    }

    .our-process-item {
        width: calc(50% - 10px);
        height: auto;
        min-height: 260px;
    }

    /* FAQ */
    .faq-container {
        padding: 64px 40px;
        gap: 48px;
    }

    .faq-headline {
        font-size: 40px;
        line-height: 44px;
    }

    .faq-list {
        width: 96%;
    }

    /* Home Quote */
    .home-quote-container {
        padding: 64px 40px;
        gap: 48px;
    }

    .home-quote-headline {
        font-size: 40px;
        line-height: 44px;
    }

    .home-quote-contexts {
        flex-direction: column;
        align-items: center;
        gap: 40px;
    }

    .home-quote-more-info-list {
        width: 100%;
    }

    .home-quote-form {
        width: 100%;
    }

    /* Footer */
    .footer-top {
        flex-wrap: wrap;
        width: 90%;
        gap: 32px;
    }

    .footer-col {
        width: calc(50% - 16px);
    }

    .footer-bottom {
        width: 90%;
    }
}

/* ─────────────────────────────────────────
   TABLET PORTRAIT / LARGE PHONE (≤ 768px)
───────────────────────────────────────── */
@media (max-width: 768px) {
    /* Navbar: show hamburger, hide desktop items */
    .navbar-hamburger {
        display: flex;
    }

    .navbar-list,
    .navbar-btns {
        display: none;
    }

    .navbar-top {
        height: 36px;
    }

    .navbar-main {
        padding: 0 20px;
        height: 64px;
    }

    .navbar-logo {
        top: 6px;
    }

    .navbar-logo img {
        width: 96px;
        height: 96px;
    }

    /* Banner */
    .home-banner-container {
        padding-top: 60px;
    }

    .home-banner-headline img {
        width: min(460px, 88vw);
    }

    .home-banner-subline {
        font-size: 30px;
        line-height: 38px;
    }

    .home-banner-texts {
        gap: 20px;
        padding-bottom: 80px;
        padding-left: 20px;
        padding-right: 20px;
    }

    .home-banner-cta a {
        font-size: 16px;
        padding: 10px 24px;
    }

    /* Services */
    .home-our-services-container {
        gap: 24px;
        padding-top: 32px;
        padding-bottom: 160px;
    }

    .home-our-services-headline {
        width: 92%;
        gap: 12px;
    }

    .our-services-headline {
        font-size: 40px;
        line-height: 36px;
    }

    .our-services-subline {
        width: 92%;
        font-size: 15px;
    }

    .home-our-services-list {
        flex-direction: column;
        align-items: center;
        padding: 0 20px;
        gap: 16px;
    }

    .home-our-services-item {
        width: 100%;
        max-width: 480px;
    }

    /* About Us */
    .about-us-container {
        padding: 48px 20px;
        gap: 40px;
    }

    .about-us-contexts-image {
        gap: 28px;
    }

    .about-us-context {
        width: 100%;
        gap: 16px;
        align-items: center;
        text-align: center;
    }

    .about-us-headline {
        font-size: 40px;
        line-height: 44px;
    }

    .about-us-subline-1 {
        font-size: 16px;
        line-height: 26px;
    }

    .about-us-subline-2 {
        font-size: 15px;
        line-height: 24px;
    }

    .about-us-image {
        width: 100%;
        height: 280px;
    }

    /* Analytics: stack vertically with dividers */
    .about-us-analytics {
        flex-direction: column;
        gap: 0;
    }

    .about-us-analytics-item {
        width: 100%;
        padding: 28px 0;
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    }

    .about-us-analytics-item:last-child {
        border-bottom: none;
        padding-bottom: 0;
    }

    .analytics-num {
        font-size: 56px;
        line-height: 56px;
    }

    .analytics-subline {
        font-size: 16px;
    }

    /* Choose Us */
    .choose-us-container {
        padding: 48px 20px;
        gap: 36px;
    }

    .choose-us-headline {
        font-size: 32px;
        line-height: 36px;
    }

    .choose-us-list {
        flex-direction: column;
        align-items: center;
    }

    .choose-us-item {
        width: 100%;
        max-width: 420px;
    }

    /* Work in Action */
    .work-in-action-container {
        padding: 48px 20px;
        gap: 28px;
    }

    .work-in-action-headline {
        font-size: 32px;
        line-height: 36px;
    }

    .work-in-action-image {
        height: 220px;
    }

    /* Our Projects */
    .our-projects-container {
        padding: 48px 20px;
        gap: 32px;
    }

    .our-projects-headline {
        font-size: 32px;
        line-height: 36px;
    }

    .our-projects-list {
        flex-direction: column;
        align-items: center;
        gap: 16px;
    }

    .our-projects-item {
        width: 100%;
        max-width: 480px;
        height: 220px;
    }

    /* Clients Say */
    .clients-say-container {
        padding: 48px 20px;
        gap: 32px;
    }

    .clients-say-headline {
        font-size: 32px;
        line-height: 36px;
    }

    .clients-say-list {
        flex-direction: column;
        align-items: center;
        gap: 20px;
    }

    .client-say-item {
        width: 100%;
        height: auto;
    }

    /* Our Process */
    .our-process-container {
        padding: 48px 20px;
        gap: 32px;
    }

    .our-process-headline {
        font-size: 32px;
        line-height: 36px;
    }

    .our-process-list {
        flex-direction: column;
        align-items: center;
        gap: 16px;
    }

    .our-process-item {
        width: 100%;
        max-width: 420px;
        min-height: unset;
    }

    /* FAQ */
    .faq-container {
        padding: 48px 20px;
        gap: 32px;
    }

    .faq-headline {
        font-size: 32px;
        line-height: 36px;
    }

    .faq-list {
        width: 100%;
    }

    .faq-question {
        padding: 16px 20px;
    }

    .faq-answer-inner {
        padding: 14px 20px;
    }

    /* Home Quote */
    .home-quote-container {
        padding: 48px 20px;
        gap: 36px;
    }

    .home-quote-headline {
        font-size: 32px;
        line-height: 36px;
    }

    .home-quote-more-info-list {
        width: 100%;
    }

    .home-quote-form {
        width: 100%;
        padding: 24px 20px;
    }

    /* Footer */
    .footer-top {
        flex-direction: column;
        width: 92%;
        gap: 32px;
    }

    .footer-col {
        width: 100%;
    }

    .footer-bottom {
        flex-direction: column;
        align-items: center;
        gap: 12px;
        width: 92%;
        text-align: center;
    }

    .footer-bottom-left {
        align-items: center;
    }

    .footer-bottom-right {
        justify-content: center;
        flex-wrap: wrap;
        gap: 16px;
    }
}

/* ─────────────────────────────────────────
   SMALL PHONES (≤ 480px)
───────────────────────────────────────── */
@media (max-width: 480px) {
    .navbar-top {
        height: 28px;
    }

    .navbar-main {
        height: 56px;
        padding: 0 16px;
    }

    .navbar-logo {
        top: 2px;
    }

    .navbar-logo img {
        width: 80px;
        height: 80px;
    }

    .home-banner-subline {
        font-size: 24px;
        line-height: 32px;
    }

    .home-banner-cta a {
        font-size: 15px;
        padding: 9px 20px;
    }

    .home-our-services-container {
        padding-top: 28px;
        padding-bottom: 130px;
    }

    .our-services-headline {
        font-size: 32px;
        line-height: 32px;
    }

    .about-us-container {
        padding: 40px 16px;
    }

    .about-us-headline {
        font-size: 32px;
        line-height: 36px;
    }

    .analytics-num {
        font-size: 48px;
        line-height: 48px;
    }

    /* Choose Us */
    .choose-us-container {
        padding: 40px 16px;
    }

    .choose-us-headline {
        font-size: 28px;
        line-height: 32px;
    }

    /* Work in Action */
    .work-in-action-container {
        padding: 40px 16px;
    }

    .work-in-action-headline {
        font-size: 28px;
        line-height: 32px;
    }

    /* Our Projects */
    .our-projects-container {
        padding: 40px 16px;
    }

    .our-projects-headline {
        font-size: 28px;
        line-height: 32px;
    }

    /* Clients Say */
    .clients-say-container {
        padding: 40px 16px;
    }

    .clients-say-headline {
        font-size: 28px;
        line-height: 32px;
    }

    /* Our Process */
    .our-process-container {
        padding: 40px 16px;
    }

    .our-process-headline {
        font-size: 28px;
        line-height: 32px;
    }

    /* FAQ */
    .faq-container {
        padding: 40px 16px;
    }

    .faq-headline {
        font-size: 28px;
        line-height: 32px;
    }

    .faq-question-text {
        font-size: 15px;
        line-height: 22px;
    }

    /* Home Quote */
    .home-quote-container {
        padding: 40px 16px;
    }

    .home-quote-headline {
        font-size: 28px;
        line-height: 32px;
    }

    /* Footer */
    .footer-top {
        width: 100%;
        padding: 0 16px;
    }

    .footer-bottom {
        width: 100%;
        padding: 16px;
    }
}