/* ===================================
   Reset & Base Styles
   =================================== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Onest', -apple-system, Roboto, Helvetica, sans-serif;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

/* ===================================
   Hero Section
   =================================== */
.hero {
    width: 100vw;
    height: 100vh;
    min-height: 960px;
    position: relative;
    overflow: hidden;
    background: #000;
}

/* Background Video */
.hero__video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 0;
}

/* Dark Overlay */
.hero__overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

/* ===================================
   Header & Navigation
   =================================== */
.header {
    position: absolute;
    top: 24px;
    left: 0;
    right: 0;
    z-index: 10;
}

.header__container {
    max-width: 1920px;
    margin: 0 auto;
    padding: 0 160px;
}

.header__content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
}

/* Logo */
.logo {
    display: flex;
    align-items: center;
}

.logo__svg {
    width: 161.255px;
    height: 60px;
}

/* Navigation */
.nav {
    display: flex;
    align-items: center;
    gap: 16px;
}

.nav__container {
    display: flex;
    padding: 10px;
    align-items: center;
    gap: 4px;
    border-radius: 5000px;
    border: 1px solid rgba(255, 255, 255, 0.10);
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
}

.nav__item {
    display: flex;
    padding: 8px 20px;
    justify-content: center;
    align-items: center;
    gap: 8px;
    border-radius: 110px;
    font-size: 18px;
    font-weight: 400;
    line-height: normal;
    color: #FFF;
    text-decoration: none;
    cursor: pointer;
    transition: all 0.3s ease;
}

.nav__item:hover {
    background: rgba(255, 255, 255, 0.1);
}

.nav__item--active {
    background: #FFF;
    color: #181818;
    font-weight: 600;
}

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

.nav__item svg {
    width: 16px;
    height: 16px;
}

/* ===================================
   Buttons
   =================================== */
.btn {
    display: flex;
    padding: 10px 20px;
    justify-content: center;
    align-items: center;
    gap: 10px;
    border-radius: 1000px;
    font-family: 'Onest', sans-serif;
    font-size: 14px;
    font-weight: 600;
    line-height: normal;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn--primary {
    background: #F66415;
    color: #FFF;
}

.btn--primary:hover {
    background: #e55a12;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(246, 100, 21, 0.3);
}

.btn--secondary {
    background: transparent;
    color: #FFF;
    border: 1px solid rgba(255, 255, 255, 0.40);
}

.btn--secondary:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.6);
}

.btn--large {
    padding: 15px 30px;
}

.btn--with-icon {
    display: flex;
    gap: 8px;
}

.btn--with-icon svg {
    width: 24px;
    height: 24px;
}

/* ===================================
   Hero Content
   =================================== */
.hero__content {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    z-index: 5;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 30px;
    max-width: 1254px;
    width: 100%;
    padding: 0 20px;
}

.hero__text {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 16px;
}

.hero__title {
    width: 100%;
    max-width: 1254px;
    font-family: 'Onest', sans-serif;
    font-size: 80px;
    font-weight: 600;
    line-height: 87px;
    text-align: center;
    color: #F66415;
    margin: 0;
}

.hero__title-light {
    font-weight: 300;
    color: rgba(255, 255, 255, 1);
}

.hero__title-accent {
    font-weight: 600;
    color: rgba(246, 100, 21, 1);
}

.hero__subtitle {
    max-width: 716px;
    color: #EEE;
    text-align: center;
    font-family: 'Onest', sans-serif;
    font-size: 20px;
    font-weight: 300;
    line-height: 30px;
    margin: 0;
}

.hero__cta {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 16px;
    width: 100%;
    flex-wrap: wrap;
}

/* ===================================
   Floating Chat Button
   =================================== */
.floating-btn {
    position: absolute;
    right: 120px;
    bottom: 122px;
    width: 80px;
    height: 80px;
    padding: 15px;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 100px;
    background: #FFF;
    border: none;
    box-shadow: 0 0 10px 0 rgba(0, 0, 0, 0.08);
    cursor: pointer;
    transition: all 0.3s ease;
    z-index: 20;
}

.floating-btn:hover {
    transform: translateY(-4px);
    box-shadow: 0 6px 20px 0 rgba(0, 0, 0, 0.15);
}

.floating-btn svg {
    width: 40px;
    height: 40px;
}

/* ===================================
   License Information
   =================================== */
.hero__license {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 10;
    padding: 20px 0;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
}

.hero__license p {
    text-align: center;
    font-family: 'Onest', sans-serif;
    font-size: 16px;
    font-weight: 400;
    line-height: 24px;
    color: #181818;
    margin: 0;
}

/* ===================================
   Responsive Design
   =================================== */
@media (max-width: 1600px) {
    .header__container {
        padding: 0 80px;
    }
}

@media (max-width: 1400px) {
    .header__container {
        padding: 0 40px;
    }

    .hero__title {
        font-size: 64px;
        line-height: 70px;
    }
}

@media (max-width: 1200px) {
    .header__container {
        padding: 0 24px;
    }

    .logo__svg {
        width: 120px;
        height: 45px;
    }

    .nav__item {
        font-size: 16px;
        padding: 6px 16px;
    }

    .hero__title {
        font-size: 56px;
        line-height: 62px;
    }

    .hero__subtitle {
        font-size: 18px;
        line-height: 27px;
    }

    .floating-btn {
        right: 40px;
        bottom: 40px;
    }
}

@media (max-width: 992px) {
    .nav__container {
        display: none;
    }

    .hero__title {
        font-size: 48px;
        line-height: 54px;
    }

    .hero__cta {
        flex-direction: column;
        width: 100%;
        max-width: 400px;
    }

    .btn {
        width: 100%;
        font-size: 18px;
    }
}

@media (max-width: 768px) {
    .hero {
        min-height: 100vh;
    }

    .header {
        top: 16px;
    }

    .header__container {
        padding: 0 16px;
    }

    .logo__svg {
        width: 100px;
        height: 38px;
    }

    .hero__title {
        font-size: 40px;
        line-height: 46px;
    }

    .hero__subtitle {
        font-size: 16px;
        line-height: 24px;
    }

    .btn {
        font-size: 16px;
        padding: 12px 24px;
    }

    .floating-btn {
        width: 60px;
        height: 60px;
        right: 20px;
        bottom: 20px;
    }

    .floating-btn svg {
        width: 30px;
        height: 30px;
    }

    .hero__license p {
        font-size: 14px;
        line-height: 20px;
        padding: 0 16px;
    }
}

@media (max-width: 576px) {
    .hero__content {
        padding: 0 16px;
    }

    .hero__title {
        font-size: 32px;
        line-height: 38px;
    }

    .hero__subtitle {
        font-size: 14px;
        line-height: 21px;
    }

    .btn--primary {
        font-size: 14px;
        padding: 10px 20px;
    }

    .hero__license p {
        font-size: 12px;
        line-height: 18px;
    }
}

/* ===================================
   Benefits Section
   =================================== */
.benefits {
    background: #F5F5F5;
    padding: 120px 160px;
    min-height: 100vh;
    display: flex;
    align-items: center;
    box-sizing: border-box;
    width: 100%;
}

.benefits__container {
    max-width: 1920px;
    margin: 0 auto;
    display: flex;
    width: 100%;
    flex-direction: column;
    gap: 80px;
}

.benefits__license {
    color: #181818;
    font-family: 'Onest', -apple-system, Roboto, Helvetica, sans-serif;
    font-size: 20px;
    font-weight: 300;
    line-height: 30px;
    margin: 0;
}

.benefits__content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 80px;
}

.benefits__title {
    color: #181818;
    text-align: center;
    font-family: 'Onest', -apple-system, Roboto, Helvetica, sans-serif;
    font-size: 44px !important;
    font-weight: 600;
    line-height: 56px !important;
    margin: 0;
}

.benefits__title-light {
    font-weight: 300;
}

.benefits__title-bold {
    font-weight: 600;
}

.benefits__grid {
    display: flex;
    gap: 40px;
    width: 100%;
}

.benefits__card {
    display: flex;
    padding: 40px;
    flex-direction: column;
    gap: 60px;
    flex: 1;
    background: #FFF;
    border-radius: 24px;
}

.benefits__icon {
    display: flex;
    width: 80px;
    height: 80px;
    padding: 15px 22px;
    justify-content: center;
    align-items: center;
    border-radius: 122px;
    background: #F66415;
}

.benefits__icon svg {
    width: 40px;
    height: 40px;
}

.benefits__card-content {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.benefits__card-title {
    color: #181818;
    font-family: 'Onest', -apple-system, Roboto, Helvetica, sans-serif;
    font-size: 24px;
    font-weight: 600;
    line-height: normal;
    margin: 0;
}

.benefits__card-description {
    color: #555;
    font-family: 'Onest', -apple-system, Roboto, Helvetica, sans-serif;
    font-size: 20px;
    font-weight: 300;
    line-height: normal;
    margin: 0;
}

/* ===================================
   Benefits Section - Responsive
   =================================== */
@media (max-width: 1600px) {
    .benefits {
        padding: 80px 80px;
    }
}

@media (max-width: 1400px) {
    .benefits {
        padding: 60px 40px;
    }

    .benefits__container {
        gap: 60px;
    }

    .benefits__title {
        font-size: 48px;
        line-height: 64px;
    }

    .benefits__content {
        gap: 60px;
    }
}

@media (max-width: 1200px) {
    .benefits {
        padding: 60px 24px;
    }

    .benefits__title {
        font-size: 40px;
        line-height: 56px;
    }

    .benefits__grid {
        gap: 24px;
    }

    .benefits__card {
        padding: 32px;
        gap: 40px;
    }

    .benefits__card-title {
        font-size: 28px;
    }

    .benefits__card-description {
        font-size: 18px;
    }
}

@media (max-width: 992px) {
    .benefits {
        padding: 40px 24px;
    }

    .benefits__container {
        gap: 40px;
    }

    .benefits__content {
        gap: 40px;
    }

    .benefits__title {
        font-size: 36px;
        line-height: 48px;
    }

    .benefits__grid {
        flex-direction: column;
        gap: 24px;
    }

    .benefits__card {
        padding: 32px;
    }
}

@media (max-width: 768px) {
    .benefits {
        padding: 40px 16px;
    }

    .benefits__license {
        font-size: 16px;
        line-height: 24px;
    }

    .benefits__title {
        font-size: 32px;
        line-height: 44px;
    }

    .benefits__card {
        padding: 24px;
        gap: 32px;
    }

    .benefits__icon {
        width: 64px;
        height: 64px;
        padding: 12px 18px;
    }

    .benefits__icon svg {
        width: 32px;
        height: 32px;
    }

    .benefits__card-title {
        font-size: 24px;
    }

    .benefits__card-description {
        font-size: 16px;
    }
}

@media (max-width: 576px) {
    .benefits__title {
        font-size: 28px;
        line-height: 38px;
    }

    .benefits__card {
        padding: 20px;
        gap: 24px;
    }

    .benefits__card-title {
        font-size: 20px;
    }

    .benefits__card-description {
        font-size: 14px;
    }
}

/* ===================================
   Prefab Interiors Section
   =================================== */
.prefab {
    background: #FFF;
    position: relative;
    overflow: hidden;
    min-height: 100vh;
}

.prefab__container {
    display: flex;
    max-width: 1920px;
    margin: 0 auto;
    padding: 160px 0 160px 160px;
    align-items: center;
    gap: 120px;
    position: relative;
    min-height: 100vh;
}

.prefab__content {
    flex: 0 0 auto;
    max-width: 600px;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 52px;
}

.prefab__title {
    color: #181818;
    font-family: 'Onest', -apple-system, Roboto, Helvetica, sans-serif;
    font-size: 44px;
    line-height: 56px;
    margin: 0;
}

.prefab__title-light {
    font-weight: 300;
}

.prefab__title-bold {
    font-weight: 600;
}

.prefab__description {
    color: #555;
    font-family: 'Onest', -apple-system, Roboto, Helvetica, sans-serif;
    font-size: 20px;
    font-weight: 300;
    line-height: 30px;
    margin: 0;
}

.prefab__services {
    display: flex;
    flex-direction: column;
    gap: 0;
    margin: 0;
    width: 100%;
}

.prefab__service-item {
    border-bottom: 1px solid rgba(24, 24, 24, 0.12);
}

.prefab__service-item:first-child {
    border-top: 1px solid rgba(24, 24, 24, 0.12);
}

.prefab__service-title {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    background: none;
    border: none;
    outline: none;
    box-shadow: none;
    -webkit-appearance: none;
    cursor: pointer;
    color: #181818;
    font-family: 'Onest', -apple-system, Roboto, Helvetica, sans-serif;
    font-size: 18px;
    font-weight: 700;
    line-height: 24px;
    padding: 18px 0;
    text-align: left;
    transition: color 0.2s ease;
}

.prefab__service-title:hover {
    color: #F66415;
}

.prefab__service-title:focus {
    outline: none;
    box-shadow: none;
}

.prefab__service-icon {
    font-size: 22px;
    font-weight: 300;
    color: #F66415;
    flex-shrink: 0;
    margin-left: 12px;
}

.prefab__service-desc {
    display: none !important;
    color: #555;
    font-family: 'Onest', -apple-system, Roboto, Helvetica, sans-serif;
    font-size: 16px;
    font-weight: 300;
    line-height: 24px;
    margin: 0;
    padding: 0 0 18px 0;
}

.prefab__service-desc.open {
    display: block !important;
}

.prefab__image {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    margin-right: -160px;
}

.prefab__image img {
    width: 100%;
    min-width: 600px;
    height: auto;
    object-fit: cover;
    border-radius: 24px 0 0 24px;
}

/* ===================================
   Prefab Interiors Section - Responsive
   =================================== */
@media (max-width: 1600px) {
    .prefab__container {
        padding: 100px 0 100px 80px;
        gap: 80px;
    }

    .prefab__image {
        margin-right: -80px;
    }
}

@media (max-width: 1400px) {
    .prefab__container {
        padding: 80px 0 80px 40px;
        gap: 60px;
    }

    .prefab__image {
        margin-right: -40px;
    }

    .prefab__content {
        max-width: 500px;
    }

    .prefab__title {
        font-size: 48px;
        line-height: 64px;
    }
}

@media (max-width: 1200px) {
    .prefab__container {
        padding: 60px 24px;
        gap: 40px;
    }

    .prefab__image {
        margin-right: -24px;
    }

    .prefab__image img {
        min-width: 500px;
    }

    .prefab__content {
        max-width: 450px;
    }

    .prefab__title {
        font-size: 40px;
        line-height: 56px;
    }

    .prefab__description {
        font-size: 18px;
        line-height: 27px;
    }
}

@media (max-width: 992px) {
    .prefab__container {
        flex-direction: column;
        padding: 40px 24px;
        gap: 40px;
    }

    .prefab__content {
        max-width: 100%;
    }

    .prefab__image {
        margin-right: -24px;
        margin-left: -24px;
        width: calc(100% + 48px);
    }

    .prefab__image img {
        min-width: 100%;
        border-radius: 24px;
    }

    .prefab__title {
        font-size: 36px;
        line-height: 48px;
    }
}

@media (max-width: 768px) {
    .prefab__container {
        padding: 40px 16px;
    }

    .prefab__content {
        gap: 24px;
    }

    .prefab__image {
        margin-right: -16px;
        margin-left: -16px;
        width: calc(100% + 32px);
    }

    .prefab__title {
        font-size: 32px;
        line-height: 44px;
    }

    .prefab__description {
        font-size: 16px;
        line-height: 24px;
    }
}

@media (max-width: 576px) {
    .prefab__title {
        font-size: 28px;
        line-height: 38px;
    }

    .prefab__description {
        font-size: 14px;
        line-height: 21px;
    }

    .prefab__image img {
        min-width: auto;
    }
}

/* ===================================
   Our Solutions Section
   =================================== */
.solutions {
    background: #FFF;
    position: relative;
    overflow: hidden;
    height: 100vh;
    min-height: 100vh;
    display: flex;
    align-items: stretch;
}

.solutions__container {
    display: flex;
    width: 100%;
    max-width: 1920px;
    margin: 0 auto;
    padding: 60px 120px 60px 0;
    align-items: stretch;
    gap: 80px;
    position: relative;
}

.solutions__image {
    flex: 1;
    display: flex;
    align-items: stretch;
    justify-content: flex-end;
    margin-left: -160px;
}

.solutions__image img {
    width: 100%;
    min-width: 600px;
    height: 100%;
    object-fit: cover;
    border-radius: 0 24px 24px 0;
}

.solutions__content {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-start;
    padding-top: 80px;
    gap: 64px;
}

.solutions__header {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 20px;
    align-self: stretch;
}

.solutions__title {
    color: #181818;
    font-family: 'Onest', -apple-system, Roboto, Helvetica, sans-serif;
    font-size: 44px;
    font-weight: 600;
    line-height: 56px;
    margin: 0;
    align-self: stretch;
}

.solutions__title-light {
    font-weight: 300;
}

.solutions__title-bold {
    font-weight: 600;
}

.solutions__description {
    color: #555;
    font-family: 'Onest', -apple-system, Roboto, Helvetica, sans-serif;
    font-size: 20px;
    font-weight: 300;
    line-height: 30px;
    margin: 0;
    align-self: stretch;
}

.solutions__features {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 16px;
    width: 100%;
    max-width: 763px;
}

.solutions__feature {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 4px;
    align-self: stretch;
}

.solutions__feature-header {
    display: flex;
    align-items: center;
    gap: 10px;
    align-self: stretch;
}

.solutions__checkmark {
    display: flex;
    width: 34px;
    height: 34px;
    padding: 4px;
    justify-content: center;
    align-items: center;
    flex-shrink: 0;
    border-radius: 10000px;
    background: #F66415;
}

.solutions__checkmark svg {
    width: 24px;
    height: 24px;
}

.solutions__feature-title {
    color: #181818;
    font-family: 'Onest', -apple-system, Roboto, Helvetica, sans-serif;
    font-size: 24px;
    font-weight: 600;
    line-height: normal;
    margin: 0;
    flex: 1;
}

.solutions__feature-description {
    color: #181818;
    font-family: 'Onest', -apple-system, Roboto, Helvetica, sans-serif;
    font-size: 16px;
    font-weight: 300;
    line-height: 24px;
    margin: 0;
    padding-left: 44px;
    align-self: stretch;
}

/* ===================================
   Our Solutions Section - Responsive
   =================================== */
@media (max-width: 1600px) {
    .solutions__container {
        padding: 100px 80px 100px 0;
        gap: 80px;
    }

    .solutions__image {
        margin-left: -80px;
    }
}

@media (max-width: 1400px) {
    .solutions__container {
        padding: 80px 40px 80px 0;
        gap: 60px;
    }

    .solutions__image {
        margin-left: -40px;
    }

    .solutions__title {
        font-size: 48px;
        line-height: 64px;
    }
}

@media (max-width: 1200px) {
    .solutions__container {
        padding: 60px 24px;
        gap: 40px;
    }

    .solutions__image {
        margin-left: -24px;
    }

    .solutions__image img {
        min-width: 500px;
    }

    .solutions__title {
        font-size: 40px;
        line-height: 56px;
    }

    .solutions__description {
        font-size: 18px;
        line-height: 27px;
    }

    .solutions__feature-title {
        font-size: 22px;
    }

    .solutions__feature-description {
        font-size: 18px;
        line-height: 27px;
    }
}

@media (max-width: 992px) {
    .solutions__container {
        flex-direction: column;
        padding: 40px 24px;
        gap: 40px;
    }

    .solutions__image {
        order: 2;
        margin-left: -24px;
        margin-right: -24px;
        width: calc(100% + 48px);
    }

    .solutions__content {
        order: 1;
    }

    .solutions__image img {
        min-width: 100%;
        border-radius: 24px;
    }

    .solutions__title {
        font-size: 36px;
        line-height: 48px;
    }

    .solutions__features {
        max-width: 100%;
    }
}

@media (max-width: 768px) {
    .solutions__container {
        padding: 40px 16px;
    }

    .solutions__image {
        margin-left: -16px;
        margin-right: -16px;
        width: calc(100% + 32px);
    }

    .solutions__content {
        gap: 24px;
    }

    .solutions__title {
        font-size: 32px;
        line-height: 44px;
    }

    .solutions__description {
        font-size: 16px;
        line-height: 24px;
    }

    .solutions__features {
        gap: 24px;
    }

    .solutions__checkmark {
        width: 30px;
        height: 30px;
        padding: 3px;
    }

    .solutions__checkmark svg {
        width: 20px;
        height: 20px;
    }

    .solutions__feature-title {
        font-size: 20px;
    }

    .solutions__feature-description {
        font-size: 16px;
        line-height: 24px;
        padding-left: 40px;
    }
}

@media (max-width: 576px) {
    .solutions__title {
        font-size: 28px;
        line-height: 38px;
    }

    .solutions__description {
        font-size: 14px;
        line-height: 21px;
    }

    .solutions__feature-title {
        font-size: 18px;
    }

    .solutions__feature-description {
        font-size: 14px;
        line-height: 21px;
        padding-left: 36px;
    }

    .solutions__image img {
        min-width: auto;
    }
}

/* ===================================
   How It Works Section
   =================================== */
.how-it-works {
    background: #FFF;
    padding: 120px 160px;
}

.how-it-works__container {
    max-width: 1920px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 80px;
}

.how-it-works__header {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 30px;
}

.how-it-works__title {
    color: #181818;
    font-family: 'Onest', -apple-system, Roboto, Helvetica, sans-serif;
    font-size: 44px;
    font-weight: 600;
    line-height: 56px;
    margin: 0;
}

.how-it-works__title-light {
    font-weight: 300;
}

.how-it-works__title-bold {
    font-weight: 600;
}

.how-it-works__flow {
    width: 100%;
    height: 932px;
    position: relative;
}

/* Background Numbers */
.how-it-works__numbers {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
}

.how-it-works__number {
    position: absolute;
    color: #181818;
    font-family: 'Onest', -apple-system, Roboto, Helvetica, sans-serif;
    font-size: 130px;
    font-weight: 700;
    line-height: normal;
    opacity: 0.05;
}

/* Curved Path */
.how-it-works__path {
    position: absolute;
    left: 20px;
    top: 170px;
    width: 1560px;
    height: 609px;
    pointer-events: none;
}

/* Phase Items */
.how-it-works__phase {
    position: absolute;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 4px;
    max-width: 244px;
}

.how-it-works__icon-wrapper {
    position: absolute;
    width: 80px;
    height: 80px;
}

.how-it-works__icon {
    width: 80px;
    height: 80px;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 102px;
    background: #F66415;
    padding: 20px;
}

.how-it-works__icon svg {
    width: 40px;
    height: 40px;
}

.how-it-works__phase-content {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.how-it-works__phase-title {
    color: #181818;
    font-family: 'Onest', -apple-system, Roboto, Helvetica, sans-serif;
    font-size: 24px;
    font-weight: 600;
    line-height: normal;
    margin: 0;
}

.how-it-works__phase-description {
    color: #555;
    font-family: 'Onest', -apple-system, Roboto, Helvetica, sans-serif;
    font-size: 18px;
    font-weight: 300;
    line-height: 27px;
    margin: 0;
}

.how-it-works__phase-link {
    color: #F66415;
    font-family: 'Onest', -apple-system, Roboto, Helvetica, sans-serif;
    font-size: 16px;
    font-weight: 300;
    line-height: 24px;
    text-decoration: underline;
    transition: opacity 0.3s ease;
}

.how-it-works__phase-link:hover {
    opacity: 0.8;
}

/* Special positioning for phase with offset icon */
.how-it-works__phase--offset {
    display: block;
}

.how-it-works__phase--offset .how-it-works__phase-content {
    position: relative;
    z-index: 1;
    max-width: 150px;
    padding-right: 10px;
}

/* ===================================
   How It Works Section - Responsive
   =================================== */
@media (max-width: 1600px) {
    .how-it-works {
        padding: 100px 80px;
    }

    .how-it-works__flow {
        transform: scale(0.9);
        transform-origin: top left;
        height: 839px;
    }
}

@media (max-width: 1400px) {
    .how-it-works {
        padding: 80px 40px;
    }

    .how-it-works__container {
        gap: 60px;
    }

    .how-it-works__title {
        font-size: 48px;
    }

    .how-it-works__flow {
        transform: scale(0.8);
        height: 746px;
    }
}

@media (max-width: 1200px) {
    .how-it-works {
        padding: 60px 24px;
    }

    .how-it-works__title {
        font-size: 40px;
    }

    .how-it-works__flow {
        transform: scale(0.7);
        height: 653px;
    }
}

@media (max-width: 992px) {
    .how-it-works {
        padding: 60px 24px;
    }

    .how-it-works__container {
        gap: 40px;
    }

    .how-it-works__header {
        gap: 20px;
        width: 100%;
    }

    .how-it-works__title {
        font-size: 36px;
    }

    /* Switch to vertical layout for mobile */
    .how-it-works__flow {
        position: relative;
        height: auto;
        display: flex;
        flex-direction: column;
        gap: 40px;
        transform: none;
    }

    .how-it-works__numbers,
    .how-it-works__path {
        display: none;
    }

    .how-it-works__phase {
        position: relative;
        left: 0 !important;
        top: 0 !important;
        max-width: 100%;
        padding-left: 100px;
        min-height: 80px;
    }

    .how-it-works__icon-wrapper {
        left: 0 !important;
        top: 0 !important;
    }

    .how-it-works__phase-content {
        padding-top: 0;
    }

    /* Reset offset styling for mobile */
    .how-it-works__phase--offset .how-it-works__phase-content {
        max-width: 100%;
        padding-right: 0;
    }
}

@media (max-width: 768px) {
    .how-it-works {
        padding: 40px 16px;
    }

    .how-it-works__title {
        font-size: 32px;
    }

    .how-it-works__phase {
        padding-left: 90px;
    }

    .how-it-works__icon-wrapper {
        width: 70px;
        height: 70px;
    }

    .how-it-works__icon {
        width: 70px;
        height: 70px;
        padding: 17px;
    }

    .how-it-works__icon svg {
        width: 35px;
        height: 35px;
    }

    .how-it-works__phase-title {
        font-size: 22px;
    }

    .how-it-works__phase-description {
        font-size: 16px;
        line-height: 24px;
    }

    .how-it-works__phase-link {
        font-size: 14px;
        line-height: 21px;
    }
}

@media (max-width: 576px) {
    .how-it-works__title {
        font-size: 28px;
    }

    .how-it-works__phase {
        padding-left: 80px;
    }

    .how-it-works__icon-wrapper {
        width: 60px;
        height: 60px;
    }

    .how-it-works__icon {
        width: 60px;
        height: 60px;
        padding: 15px;
    }

    .how-it-works__icon svg {
        width: 30px;
        height: 30px;
    }

    .how-it-works__phase-title {
        font-size: 20px;
    }

    .how-it-works__phase-description {
        font-size: 14px;
        line-height: 21px;
    }
}

/* ===================================
   Industries We Serve Section
   =================================== */
.industries {
    background-color: #f5f5f5;
    height: 100vh;
    min-height: 100vh;
    display: flex;
    align-items: center;
}

.industries__container {
    max-width: 1920px;
    margin: 0 auto;
    padding: 0 160px;
    width: 100%;
}

.industries__section {
    max-width: 1600px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 40px;
}

.industries__header {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
    width: 100%;
}

.industries__title {
    color: #181818;
    font-size: 44px;
    font-weight: 300;
    line-height: 56px;
    text-align: center;
    width: 100%;
}

.industries__title--bold {
    font-weight: 600;
}

.industries__subtitle {
    color: #555555;
    font-size: 20px;
    font-weight: 300;
    line-height: 28px;
    text-align: center;
    width: 100%;
}

.industries__grid {
    display: flex;
    gap: 20px;
    width: 100%;
}

.industries__large-card {
    width: 600px;
    height: 480px;
    background-size: cover;
    background-position: center;
    border-radius: 24px;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 16px;
    position: relative;
    overflow: hidden;
    flex-shrink: 0;
}

.industries__large-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(180deg, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.4) 100%);
}

.industries__right-column {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.industries__row {
    display: flex;
    gap: 20px;
    flex: 1;
}

.industries__small-card {
    flex: 1;
    background-size: cover;
    background-position: center;
    border-radius: 24px;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 16px;
    position: relative;
    overflow: hidden;
    min-height: 0;
}

.industries__small-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(180deg, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.4) 100%);
}

.industries__card-content {
    background-color: white;
    border-radius: 10px;
    padding: 10px 12px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 8px;
    position: relative;
    z-index: 1;
    height: 72px;
    text-decoration: none;
    overflow: hidden;
}

.industries__card-text {
    display: flex;
    flex-direction: column;
    gap: 2px;
    flex: 1;
    min-width: 0;
}

.industries__card-title {
    color: #181818;
    font-size: 13px;
    font-weight: 600;
    line-height: 1.2;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.industries__card-subtitle {
    color: #555;
    font-size: 11px;
    font-weight: 300;
    line-height: 16px;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.industries__arrow-button {
    background-color: #181818;
    width: 34px;
    height: 34px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.industries__arrow-icon {
    width: 16px;
    height: 16px;
    transform: rotate(45deg);
}

/* Industries - Tablet */
@media (max-width: 1400px) {
    .industries__container {
        padding: 0 60px;
    }

    .industries__grid {
        flex-direction: column;
    }

    .industries__large-card {
        width: 100%;
        height: 600px;
    }
}

/* Industries - Mobile */
@media (max-width: 768px) {
    .industries {
        padding: 60px 0;
    }

    .industries__container {
        padding: 0 20px;
    }

    .industries__section {
        gap: 60px;
    }

    .industries__title {
        font-size: 40px;
        line-height: 50px;
    }

    .industries__subtitle {
        font-size: 18px;
    }

    .industries__row {
        flex-direction: column;
    }

    .industries__large-card {
        height: 500px;
    }

    .industries__small-card {
        min-height: 300px;
    }

    .industries__card-title {
        font-size: 20px;
    }

    .industries__card-subtitle {
        font-size: 16px;
    }
}

/* ===================================
   Testimonials Section
   =================================== */
.testimonials {
    background-color: #F5F5F5;
    display: flex;
    max-width: 1920px;
    width: 100%;
    margin: 0 auto;
    padding: 120px 160px;
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
    box-sizing: border-box;
    min-height: 100vh;
    justify-content: center;
}

.testimonials__content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 100px;
    width: 100%;
}

.testimonials__left {
    max-width: 550px;
    flex: 0 0 auto;
    display: flex;
    flex-direction: column;
    gap: 30px;
    align-items: flex-start;
}

.testimonials__header {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.testimonials__title {
    font-family: 'Onest', sans-serif;
    font-size: 44px;
    font-weight: 300;
    line-height: 56px;
    color: #181818;
    margin: 0;
}

.testimonials__subtitle {
    font-family: 'Onest', sans-serif;
    font-size: 20px;
    font-weight: 300;
    line-height: 29px;
    color: #555555;
    margin: 0;
}

.testimonials__right {
    flex: 1;
    max-width: 800px;
}

.testimonials__card {
    display: flex;
    flex-direction: column;
    gap: 24px;
    background-color: #fff;
    padding: 50px 40px;
    border-radius: 20px;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.08);
}

.testimonials__quote-icon {
    width: 40px;
    height: 40px;
}

.testimonials__quote {
    font-family: 'Onest', sans-serif;
    font-size: 36px;
    font-weight: 300;
    line-height: 1.4;
    color: #181818;
    margin: 0;
    word-wrap: break-word;
}

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

.testimonials__avatar {
    width: 60px;
    height: 60px;
    border-radius: 88px;
    background-color: #e0e0e0;
    flex-shrink: 0;
    object-fit: cover;
}

.testimonials__author-info {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.testimonials__name {
    font-family: 'Onest', sans-serif;
    font-size: 20px;
    font-weight: 500;
    color: #181818;
}

.testimonials__role {
    font-family: 'Onest', sans-serif;
    font-size: 16px;
    font-weight: 300;
    color: #181818;
    opacity: 0.8;
}

.testimonials__nav {
    display: flex;
    align-items: center;
    gap: 16px;
}

.testimonials__arrow {
    width: 50px;
    height: 50px;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 48.125px;
    border: 0.625px solid #181818;
    background: transparent;
    cursor: pointer;
    transition: all 0.3s ease;
    padding: 5px;
}

.testimonials__arrow--left {
    opacity: 0.4;
}

.testimonials__arrow--left:hover {
    opacity: 0.6;
    background-color: rgba(24, 24, 24, 0.05);
}

.testimonials__arrow--right {
    background-color: #181818;
    border: none;
}

.testimonials__arrow--right:hover {
    background-color: #333;
}

.testimonials__arrow svg {
    width: 19px;
    height: 19px;
}

/* Responsive Testimonials */
@media screen and (max-width: 1200px) {
    .testimonials {
        padding: 80px 60px;
    }

    .testimonials__content {
        gap: 60px;
    }

    .testimonials__left,
    .testimonials__right {
        width: auto;
        flex: 1;
    }

    .testimonials__title {
        font-size: 44px;
        line-height: 56px;
    }

    .testimonials__quote {
        font-size: 32px;
    }
}

@media screen and (max-width: 768px) {
    .testimonials {
        padding: 60px 30px;
    }

    .testimonials__content {
        flex-direction: column;
        gap: 40px;
    }

    .testimonials__left,
    .testimonials__right {
        width: 100%;
    }

    .testimonials__title {
        font-size: 36px;
        line-height: 48px;
    }

    .testimonials__subtitle {
        font-size: 18px;
        line-height: 26px;
    }

    .testimonials__quote {
        font-size: 24px;
    }

    .testimonials__name {
        font-size: 18px;
    }

    .testimonials__role {
        font-size: 14px;
    }
}

/* ===================================
   FAQ Section Styles
   =================================== */

.faq {
    background-color: #F5F5F5;
    padding: 160px 160px 120px;
}

.faq__container {
    max-width: 1600px;
    margin: 0 auto;
}

.faq__header {
    text-align: center;
    margin-bottom: 80px;
}

.faq__title {
    font-size: 44px;
    line-height: 56px;
    margin-bottom: 16px;
}

.faq__title-light {
    font-weight: 300;
    color: #181818;
}

.faq__title-bold {
    font-weight: 600;
    color: #181818;
}

.faq__subtitle {
    font-size: 20px;
    line-height: 30px;
    color: #555555;
    font-weight: 300;
}

.faq__content {
    max-width: 1000px;
    margin: 0 auto;
}

.faq__item {
    border-bottom: 1px solid #E8E8E8;
    margin-bottom: 0;
}

.faq__question {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 30px 0;
    background: none;
    border: none;
    cursor: pointer;
    font-family: 'Onest', sans-serif;
    font-size: 24px;
    font-weight: 500;
    color: #181818;
    text-align: left;
    transition: color 0.3s ease;
}

.faq__question:hover {
    color: #F66415;
}

.faq__icon {
    flex-shrink: 0;
    transition: transform 0.3s ease;
    color: #181818;
}

.faq__item--active .faq__icon {
    transform: rotate(45deg);
    color: #F66415;
}

.faq__answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease, padding 0.3s ease;
}

.faq__item--active .faq__answer {
    max-height: 500px;
    padding-bottom: 30px;
}

.faq__answer p {
    font-size: 18px;
    line-height: 28px;
    color: #555555;
    font-weight: 300;
    margin: 0;
}

.faq__cta {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    margin-top: 60px;
    padding-top: 60px;
    border-top: 1px solid #E8E8E8;
    width: 100%;
}

.faq__cta .btn {
    width: fit-content;
    padding: 15px 30px;
    font-size: 18px;
}

.faq__cta-text {
    font-size: 24px;
    line-height: 32px;
    color: #181818;
    font-weight: 500;
    margin-bottom: 24px;
    text-align: center;
}

/* FAQ Responsive Styles */
@media screen and (max-width: 1440px) {
    .faq {
        padding: 100px 80px;
    }

    .faq__title {
        font-size: 44px;
        line-height: 56px;
    }

    .faq__question {
        font-size: 22px;
    }

    .faq__answer p {
        font-size: 17px;
        line-height: 26px;
    }
}

@media screen and (max-width: 1024px) {
    .faq {
        padding: 80px 60px;
    }

    .faq__header {
        margin-bottom: 60px;
    }

    .faq__title {
        font-size: 44px;
        line-height: 56px;
    }

    .faq__subtitle {
        font-size: 18px;
        line-height: 28px;
    }

    .faq__question {
        font-size: 20px;
        padding: 24px 0;
    }

    .faq__answer p {
        font-size: 16px;
        line-height: 24px;
    }

    .faq__item--active .faq__answer {
        padding-bottom: 24px;
    }
}

@media screen and (max-width: 768px) {
    .faq {
        padding: 60px 30px;
    }

    .faq__header {
        margin-bottom: 40px;
    }

    .faq__title {
        font-size: 36px;
        line-height: 48px;
    }

    .faq__subtitle {
        font-size: 16px;
        line-height: 24px;
    }

    .faq__question {
        font-size: 18px;
        padding: 20px 0;
    }

    .faq__icon {
        width: 20px;
        height: 20px;
    }

    .faq__answer p {
        font-size: 15px;
        line-height: 22px;
    }

    .faq__item--active .faq__answer {
        padding-bottom: 20px;
    }

    .faq__cta {
        margin-top: 40px;
        padding-top: 40px;
    }

    .faq__cta-text {
        font-size: 20px;
        line-height: 28px;
    }
}

/* ===================================
   Latest Blogs Section
   =================================== */
.latest-blogs {
    background-color: #ffffff;
    padding: 120px 160px;
}

.latest-blogs__container {
    max-width: 1600px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 60px;
}

.latest-blogs__title {
    font-size: 44px;
    line-height: 56px;
    color: #181818;
    text-align: center;
    width: 100%;
}

.latest-blogs__title-light {
    font-weight: 300;
}

.latest-blogs__title-bold {
    font-weight: 600;
}

.latest-blogs__grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 40px;
    width: 100%;
}

.latest-blogs__card {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 24px;
    width: 100%;
}

.latest-blogs__image {
    height: 260px;
    width: 100%;
    border-radius: 30px;
    object-fit: cover;
    display: block;
}

.latest-blogs__content {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 16px;
    width: 100%;
}

.latest-blogs__label {
    display: inline-flex;
    padding: 6px 14px;
    justify-content: center;
    align-items: center;
    border-radius: 1000px;
    background: #F66415;
    font-size: 13px;
    font-weight: 500;
    color: #fff;
    opacity: 1;
}

.latest-blogs__card-title {
    font-size: 24px;
    font-weight: 500;
    line-height: 34px;
    color: #181818;
    width: 100%;
}

/* Latest Blogs Responsive Styles */
@media screen and (max-width: 1440px) {
    .latest-blogs {
        padding: 100px 80px;
    }

    .latest-blogs__title {
        font-size: 52px;
    }
}

@media screen and (max-width: 1024px) {
    .latest-blogs {
        padding: 80px 60px;
    }

    .latest-blogs__title {
        font-size: 44px;
    }

    .latest-blogs__card-title {
        font-size: 22px;
        line-height: 30px;
    }
}

@media screen and (max-width: 768px) {
    .latest-blogs {
        padding: 60px 30px;
    }

    .latest-blogs__container {
        gap: 40px;
    }

    .latest-blogs__title {
        font-size: 36px;
    }

    .latest-blogs__grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .latest-blogs__image {
        height: 260px;
    }

    .latest-blogs__card-title {
        font-size: 20px;
        line-height: 28px;
    }

    .latest-blogs__label {
        font-size: 14px;
        padding: 8px 16px;
    }
}

/* ===================================
   Print Styles
   =================================== */
@media print {
    .floating-btn {
        display: none;
    }
}
/* ===================================
   Footer Styles
   =================================== */
.footer {
    background: #1F1F1F;
    color: #fff;
    width: 100%;
}

.footer-container {
    max-width: 1600px;
    margin: 0 auto;
    padding: 60px 160px 20px;
}

.footer-content {
    display: grid;
    grid-template-columns: 1fr auto auto;
    gap: 60px;
    margin-bottom: 40px;
}

.footer-brand {
    display: flex;
    flex-direction: column;
    gap: 12px;
    max-width: 360px;
}

.footer-logo {
    margin-bottom: 8px;
}

.footer-tagline {
    color: #fff;
    font-family: Onest, -apple-system, Roboto, Helvetica, sans-serif;
    font-size: 16px;
    font-weight: 300;
    line-height: 24px;
    opacity: 0.9;
}

.footer-section {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.footer-heading {
    color: #fff;
    font-family: Onest, -apple-system, Roboto, Helvetica, sans-serif;
    font-size: 18px;
    font-weight: 700;
    line-height: 24px;
    margin: 0;
}

.footer-links-columns {
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    gap: 48px;
    align-items: flex-start;
}

.footer-links-columns .footer-links {
    flex-shrink: 0;
}

.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.footer-links a {
    color: #fff;
    font-family: Onest, -apple-system, Roboto, Helvetica, sans-serif;
    font-size: 18px;
    font-weight: 300;
    line-height: 24px;
    text-decoration: none;
    transition: opacity 0.3s ease;
}

.footer-links a:hover {
    opacity: 0.7;
}

.footer-contact {
    gap: 24px;
}

.contact-group {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.contact-group p {
    color: #fff;
    font-family: Onest, -apple-system, Roboto, Helvetica, sans-serif;
    font-size: 18px;
    font-weight: 300;
    line-height: 24px;
    margin: 0;
}

.footer-icon {
    display: flex;
    align-items: flex-start;
    justify-content: flex-end;
}

.footer-copyright {
    padding-top: 24px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    text-align: center;
}

.footer-copyright p {
    color: #fff;
    font-family: Onest, -apple-system, Roboto, Helvetica, sans-serif;
    font-size: 16px;
    font-weight: 400;
    line-height: normal;
    opacity: 0.7;
    margin: 0;
}

/* Footer - Responsive Design */
@media (max-width: 1440px) {
    .footer-container {
        padding: 60px 80px 20px;
    }

    .footer-content {
        gap: 40px;
    }
}

@media (max-width: 1024px) {
    .footer-container {
        padding: 60px 40px 20px;
    }

    .footer-content {
        grid-template-columns: 1fr 1fr;
        gap: 40px;
    }

    .footer-icon {
        display: none;
    }
}

@media (max-width: 768px) {
    .footer-container {
        padding: 40px 20px 20px;
    }

    .footer-content {
        grid-template-columns: 1fr;
        gap: 32px;
    }

    .footer-brand {
        max-width: 100%;
    }
}
