/* Modelyo Website Styles */

:root {
    --white: #ffffff;
    --dark-blue-00: #000a14;
    --dark-blue-01: #001f3d;
    --dark-blue-02: #003366;
    --blue-light: #0066cc;
    --bg-light-blue: #ebf8ff;
    --coral: #ff6f61;
    --orange: #ffb347;
    --purpel: #d833ff;
    --teal: #00f5d4;
}

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

html, body {
    margin: 0;
    padding: 0;
    height: 100%;
}

body {
    font-family: 'Poppins', sans-serif;
    background-color: var(--white);
    color: var(--dark-blue-00);
    line-height: 1.6;
    overflow-x: hidden;
    display: flex;
    flex-direction: column;
    min-height: 100vh;
}

main {
    flex: 1;
}

/* Header Styles */
.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(2px);
    box-shadow: 0px 4px 8px 0px rgba(0, 0, 0, 0.06);
    height: 90px;
}

.header-container {
    max-width: 1920px;
    margin: 0 auto;
    padding: 0 clamp(20px, 10.4vw, 200px);
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 100%;
}

.logo {
    height: clamp(28px, 1.8vw, 35px);
    width: clamp(150px, 9.9vw, 190px);
}

.logo img {
    height: 100%;
    width: auto;
}

/* Header Responsive */
.header {
    height: clamp(70px, 4.7vw, 90px);
}

@media (max-width: 1200px) {
    .header {
        height: clamp(70px, 6.7vw, 80px);
    }
}

.nav-menu {
    display: flex;
    gap: clamp(20px, 2.1vw, 40px);
    align-items: center;
}

.nav-link {
    font-weight: 500;
    font-size: 15px;
    color: var(--dark-blue-00);
    text-decoration: none;
    white-space: nowrap;
}

.nav-link:hover {
    opacity: 0.7;
}

.btn-demo {
    border: 1px solid var(--dark-blue-00);
    border-radius: 24px;
    padding: 10px 30px;
    font-weight: 500;
    font-size: 14px;
    color: var(--dark-blue-00);
    text-decoration: none;
    white-space: nowrap;
    transition: all 0.3s;
}

.btn-demo:hover {
    background-color: var(--dark-blue-00);
    color: var(--white);
}

/* Hero Section */
.hero {
    position: relative;
    height: clamp(700px, 56.5vw, 1084px);
    min-height: 100vh;
    width: 100%;
    overflow: hidden;
    background: var(--dark-blue-00);
}

.hero-bg {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero-gradient {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: clamp(250px, 18.5vw, 355px);
    background: linear-gradient(to bottom, rgba(0,10,20,0), #000103);
}

.hero-content {
    position: relative;
    z-index: 10;
    max-width: 1920px;
    margin:  0 auto;
    padding: clamp(100px, 7.6vw, 145px) clamp(20px, 10.4vw, 200px) 0;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.hero-title {
    font-weight: 500;
    font-size: clamp(26px, 3.1vw, 60px);
    line-height: normal;
    color: var(--white);
    margin-bottom: clamp(20px, 1.6vw, 30px);
    letter-spacing: -0.6px;
    max-width: min(791px, 85%);
}

.hero-subtitle {
    font-weight: 300;
    font-size: clamp(16px, 1.15vw, 22px);
    color: var(--white);
    margin-bottom: clamp(30px, 2.1vw, 40px);
    max-width: min(680px, 90%);
    text-align: justify;
}

.btn-gradient {
    background: linear-gradient(to right, var(--coral), var(--purpel) 50%, var(--orange));
    border-radius: clamp(25px, 1.6vw, 30px);
    padding: clamp(8px, 0.5vw, 10px) clamp(25px, 2.1vw, 40px);
    height: clamp(45px, 3.1vw, 60px);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-weight: 500;
    font-size: clamp(14px, 1.05vw, 20px);
    color: var(--white);
    text-decoration: none;
    white-space: nowrap;
    transition: transform 0.3s;
    width: auto;
    line-height: 1.2;
    text-align: center;
    align-self: flex-start;
    margin-top: 0;
}

.btn-gradient:hover {
    transform: translateY(-2px);
}

/* Hero Responsive */
@media (max-width: 768px) {
    .btn-gradient {
        width: 100%;
        max-width: 280px;
    }
}

@media (max-width: 768px) {
  .hero-content {
    justify-content: flex-start;  
    padding-top: 200px;   
    font-size: clamp(14px, 1.05vw, 20px);         
  }
}


.hero-visual {
    position: absolute;
    right: 0;
    top: 0;
    width: 50%;
    height: 100%;
    z-index: 5;
}

.hero-visual img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Section Styles */
.section {
    position: relative;
    width: 100%;
    padding: clamp(60px, 6.25vw, 120px) clamp(20px, 10.4vw, 200px);
}

.section-title {
    font-weight: 300;
    font-size: clamp(28px, 2.6vw, 50px);
    color: var(--white);
    margin-bottom: clamp(20px, 1.8vw, 35px);
    letter-spacing: 0.3955px;
}

.section-title-dark {
    color: var(--dark-blue-00);
}

.section-label {
    font-weight: 600;
    font-size: 14px;
    color: var(--teal);
    text-transform: uppercase;
    letter-spacing: 0.3955px;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.section-label::before {
    content: '';
    width: 30px;
    height: 4px;
    background: var(--dark-blue-00);
}

.section-label::after {
    content: '';
    width: 113px;
    height: 2px;
    background: var(--dark-blue-00);
}

.section-label-gradient {
    position: absolute;
    top: -20px;
    left: 0;
    width: 120px;
    height: 69px;
    background: linear-gradient(to right, var(--coral), var(--purpel) 52.404%, var(--orange));
    z-index: -1;
}

@media (max-width: 768px) {

  .hero-content {
    padding-left: 60px;
    padding-right: 60px;
    margin-right: 40px;
    align-items: flex-start; /* חשוב */
  }

  .hero-title {
    max-width: 100%;
    text-align: left;
    margin-left: 0;
  }

  .hero-subtitle {
    max-width: 100%;
    text-align: left;   /* מבטל justify */
    margin-left: 0;
    font-size: clamp(15px, 1.05vw, 20px);
  }

  .btn-gradient {
    align-self: flex-start;
    margin-left: 0;
  }
}

/* Diagram Section */
.diagram-section {
    position: relative;
    height: clamp(600px, 61vw, 1170px);
    width: 100%;
    overflow: hidden;
    background: var(--dark-blue-00);
}

.diagram-bg {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Diagram Section Mobile */
@media (max-width: 768px) {
    .diagram-bg {
        object-fit: contain !important;
        object-position: center 80%;
    }
    
    .diagram-content {
        padding-top: clamp(20px, 0vw, 60px) !important;
    }
}

.diagram-content {
    position: relative;
    z-index: 10;
    max-width: 1920px;
    margin: 0 auto;
    padding: clamp(80px, 6.25vw, 120px) clamp(20px, 10.4vw, 200px);
    height: 100%;
}

.diagram-title {
    font-weight: 300;
    font-size: clamp(28px, 2.6vw, 50px);
    color: var(--white);
    margin-bottom: clamp(20px, 2.1vw, 40px);
    letter-spacing: 0.3955px;
}

.diagram-text {
    font-weight: 300;
    font-size: clamp(14px, 0.94vw, 18px);
    color: var(--white);
    max-width: min(400px, 90%);
    line-height: 1.6;
}

/* Platform Layers Section - 3D Canvas */
#canvas3d {
    display: block;
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    z-index: 0;
    pointer-events: auto;
    touch-action: pan-y pinch-zoom;
    will-change: transform;
    backface-visibility: hidden;
    /* Removed image-rendering: crisp-edges – hurts 3D motion smoothness */
}

.platform-layers-section {
    position: relative;
    width: 100%;
    min-height: clamp(600px, 56.25vw, 1080px);
    overflow: hidden;
}

.platform-layers-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: clamp(20px, 3.1vw, 60px);
    margin-top: clamp(30px, 3.1vw, 60px);
}

.platform-layers-left {
    display: flex;
    flex-direction: column;
    gap: clamp(20px, 2.1vw, 40px);
}

.platform-layers-right {
    display: flex;
    flex-direction: column;
    gap: clamp(20px, 2.1vw, 40px);
    align-items: flex-end;
}

.platform-layer-item {
    text-align: left;
}

.platform-layer-item-right {
    text-align: right;
}

.platform-layer-number {
    font-size: clamp(40px, 4.7vw, 90px);
    font-weight: 400;
    color: var(--white);
    opacity: 0.1;
    line-height: 1;
    margin: 0;
}

.platform-layer-title {
    font-size: clamp(16px, 1.04vw, 20px);
    font-weight: 500;
    color: var(--white);
    margin-top: clamp(8px, 0.52vw, 10px);
}

/* Platform Layers Responsive */
@media (max-width: 1200px) {
    .platform-layers-section {
        padding: clamp(60px, 5.2vw, 100px) clamp(20px, 3.1vw, 60px) !important;
    }
    
    .platform-layers-grid {
        grid-template-columns: 1fr;
    }
    
    .platform-layers-right {
        align-items: flex-start;
    }
    
    .platform-layer-item-right {
        text-align: left;
    }
}

@media (max-width: 768px) {
    .platform-layers-section {
        min-height: 50vh !important;
        padding: 3% clamp(20px, 10.4vw, 200px) !important;
        overflow: hidden !important;
    }
    
    .platform-layers-section[style] {
        min-height: 50vh !important;
        padding: 3% clamp(20px, 10.4vw, 200px) !important;
    }
    
    #canvas3d {
        height: 50vh !important;
        min-height: 50vh !important;
        max-height: 50vh !important;
    }
    
    .platform-layers-section > div {
        padding: 0 !important;
        min-height: auto !important;
    }
    
    .platform-layers-section .section-title {
        font-size: clamp(20px, 4.5vw, 28px) !important;
        margin-bottom: 2% !important;
    }
    
    .platform-layers-grid {
        grid-template-columns: 1fr !important;
        gap: 2% !important;
        margin-top: 2% !important;
    }
    
    .platform-layers-left,
    .platform-layers-right {
        gap: 1.5% !important;
    }
    
    .platform-layer-item {
        margin-bottom: 1%;
    }
    
    .platform-layer-number {
        font-size: clamp(30px, 8vw, 50px) !important;
    }
    
    .platform-layer-title {
        font-size: clamp(14px, 3.5vw, 18px) !important;
        margin-top: 0.5% !important;
    }
}

/* Why Modelyo Section */
.why-section {
    position: relative;
    min-height: clamp(800px, 61.5vw, 1180px);
    width: 100%;
    background: var(--blue-light);
    padding: clamp(60px, 6.25vw, 120px) clamp(20px, 10.4vw, 200px);
    overflow: hidden;
}


.why-bg {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.why-overlay {
    position: absolute;
}
.why-overlay-card {
    position: absolute;
    inset: 0;
    background-image: url('/images/why-modelyo-card-bg.png');
    background-size: fill;
    background-position: center;
    background-repeat: repeat;
    background-color: rgba(0, 10, 20, 0.6);
    box-shadow: 0px 0px 40px 0px rgba(0, 10, 20, 0.4);
    z-index: 2;
    margin: clamp(3%, 4vw, 8%);
}



.why-section-label span {
    width: min(401px, 100%);
    height: auto;
    font-size: clamp(24px, 2.34vw, 45px);
    font-weight: 50;
    background: linear-gradient(90deg, var(--Coral, #FF6F61) 0%, var(--Purpel, #D833FF) 52.4%, var(--Orange, #FFB347) 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    color: transparent;
    letter-spacing: 0.3955px;
    position: relative;
    z-index: 1;
}

.why-content {
    position: relative;
    z-index: 10;
    max-width: min(1670px, 95%);
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: clamp(30px, 3.1vw, 60px);
    margin-top: clamp(40px, 3.6vw, 70px);
}

.why-card {
    max-width: 100%;
}

.why-card-title {
    font-weight: 500;
    font-size: clamp(20px, 1.25vw, 24px);
    color: var(--white);
    margin-bottom: clamp(15px, 1.05vw, 20px);
}

.why-card-text {
    font-weight: 300;
    font-size: clamp(14px, 0.94vw, 18px);
    color: var(--white);
    line-height: 1.6;
}

/* Why Modelyo Responsive */
@media (max-width: 1200px) {
    .why-content {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .why-section {
        padding: 8% clamp(20px, 10.4vw, 200px);
        min-height: 768px;
    }
    
    .why-overlay-card {
        position: relative !important;
        inset: auto !important;
        background-image: none !important;
        background-color: rgba(0, 10, 20, 0.6) !important;
        box-shadow: 0px 0px 2.5vw 0px rgba(0, 10, 20, 0.4) !important;
        margin: 12% 0 0 0 !important;
        padding: 5% 6% !important;
        min-height: 600px;
        border: 1px solid rgba(255, 255, 255, 0.1);
        border-radius: 1%;
    }
    
    .why-overlay-card .section {
        padding: 0 !important;
    }
    
    .why-section-label {
        margin-bottom: 3%;
    }
    
    .why-section-label span {
        width: 100%;
        max-width: 100%;
        font-size: clamp(18px, 4.5vw, 24px);
        line-height: 1.4;
    }
    
    .why-content {
        grid-template-columns: 1fr !important;
        gap: 2% !important;
        margin-top: 3% !important;
        max-width: 100% !important;
        width: 100% !important;
    }
    
    .why-card {
        width: 100%;
        max-width: 100%;
        margin: 0;
        padding: 3% 2%;
    }
    
    .why-card-title {
        font-size: clamp(15px, 3.5vw, 18px);
        margin-bottom: 2%;
        line-height: 1.4;
    }
    
    .why-card-text {
        font-size: clamp(11px, 2.5vw, 13px);
        line-height: 1.6;
        margin: 0;
    }
}

/* Opportunities Section */
.opportunities-section {
    width: 100%;
    background: #EBF8FF;
    padding: clamp(100px, 11.5vw, 220px) clamp(20px, 10.4vw, 200px);
    min-height: clamp(800px, 61vw, 1170px);
}

/* CARD */
.opportunities-card {
    width: 100%;
    max-width: min(1520px, 95%);
    margin: 0 auto;
    background: linear-gradient(90deg, #FFFFFF 0%, #EBF8FF 100%);
    box-shadow: 0 0 40px rgba(0,0,0,0.08);
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: clamp(20px, 2.1vw, 40px);
    padding: clamp(24px, 1.8vw, 35px) clamp(16px, 1.05vw, 20px);
    min-height: clamp(400px, 26vw, 500px);
    overflow: hidden;
}

@media (max-width: 1200px) {
    .opportunities-card {
        grid-template-columns: 1fr;
        gap: 30px;
        min-height: auto;
    }
    
    .opportunities-image {
        order: -1;
        height: 400px;
        width: 100%;
    }
    
    .opportunities-content {
        order: 1;
        width: 100%;
    }
}

@media (max-width: 1024px) {
    .opportunities-card {
        grid-template-columns: 1fr;
        gap: 30px;
        min-height: auto;
    }
    
    .opportunities-image {
        order: -1;
        height: 400px;
        width: 100%;
    }
    
    .opportunities-content {
        order: 1;
        width: 100%;
    }
}

@media (max-width: 768px) {
    .opportunities-card {
        grid-template-columns: 1fr;
        gap: 15px;
        min-height: auto;
        padding: 20px 15px 0px 15px;
    }
    
    .opportunities-image {
        height: 200px;
        width: 100%;
    }
    
    .opportunities-content {
        width: 100%;
        min-height: 220px;
    }
}

/* LEFT */
.opportunities-content {
    display: flex;
    flex-direction: column;
    min-width: 0;
    width: 100%;
    max-width: 100%;
    overflow: hidden;
    box-sizing: border-box;
    position: relative;
    min-height: clamp(400px, 26vw, 500px);
}

.opportunities-label {
    margin: 5%;
    position: relative;
    display: inline-block;
    font-size: 14px;
    font-weight: 600;
    background: linear-gradient(90deg, #FF6F61, #D833FF, #FFB347);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-left: clamp(0px, 3vw, 50px);
    line-height: normal;
    letter-spacing: 0.396px;
}

@media (max-width: 1024px) {
    .opportunities-label {
        margin-left: 0;
    }
}

@media (max-width: 768px) {
    .opportunities-label {
        margin-left: 0;
    }
}

/* gradient line under the text */
.opportunities-label::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -6px;
    width: 100%;
    height: 2px;
    background: linear-gradient(
        90deg,
        #FF6F61,
        #D833FF,
        #FFB347
    );
    border-radius: 2px;
}

/* OPPORTUNITIES – TITLE */
.opportunities-title {
    color: var(--Dark-Blue-02, #003366);
    font-family: "Poppins", sans-serif;
    font-size: clamp(22px, 2.1vw, 40px);
    font-style: normal;
    font-weight: 600;
    line-height: 1.4;
    letter-spacing: 0.396px;
    margin-bottom: clamp(15px, 1.05vw, 20px);
    margin-left: clamp(0px, 2.6vw, 50px);
    word-wrap: break-word;
    overflow-wrap: break-word;
    max-width: 100%;
    box-sizing: border-box;
    min-height: clamp(50px, 4.4vw, 84px);
    display: flex;
    align-items: flex-start;
    flex-shrink: 0;
}

@media (max-width: 1200px) {
    .opportunities-title {
        margin-left: 0;
        max-width: 100%;
        min-height: clamp(60px, 10vw, 84px);
    }
}

@media (max-width: 1024px) {
    .opportunities-title {
        margin-left: 0;
        max-width: 100%;
        min-height: clamp(60px, 10vw, 84px);
    }
}

@media (max-width: 768px) {
    .opportunities-title {
        margin-left: 0;
        font-size: clamp(20px, 4vw, 24px);
        max-width: 100%;
        min-height: auto;
    }
}

/* OPPORTUNITIES – CONTENT */
.opportunities-text {
    color: var(--Blue-Light, #0066CC);
    text-align: justify;
    font-family: "Poppins", sans-serif;
    font-size: clamp(14px, 0.94vw, 18px);
    font-style: normal;
    font-weight: 400;
    line-height: 1.6;
    letter-spacing: 0.396px;
    max-width: min(520px, 100%);
    width: 100%;
    margin-left: clamp(0px, 2.6vw, 50px);
    margin-right: clamp(0px, 5.2vw, 100px);
    word-wrap: break-word;
    overflow-wrap: break-word;
    box-sizing: border-box;
    min-height: clamp(90px, 7.3vw, 140px);
    overflow: hidden;
    flex-shrink: 0;
}

@media (max-width: 1200px) {
    .opportunities-text {
        margin-left: 0;
        margin-right: 0;
        max-width: 100%;
        width: 100%;
        min-height: clamp(100px, 15vw, 140px);
    }
}

@media (max-width: 1024px) {
    .opportunities-text {
        margin-left: 0;
        margin-right: 0;
        max-width: 100%;
        width: 100%;
        min-height: clamp(100px, 15vw, 140px);
    }
}

@media (max-width: 768px) {
    .opportunities-text {
        margin-left: 0;
        margin-right: 0;
        max-width: 100%;
        width: 100%;
        font-size: clamp(14px, 2vw, 16px);
        min-height: auto;
    }
}

.opp-btn {
    margin-top: clamp(20px, 2.1vw, 40px);
    margin-bottom: 0;
    display: flex;
    width: clamp(140px, 8.3vw, 159px);
    height: clamp(42px, 2.5vw, 48px);
    padding: clamp(8px, 0.5vw, 10px);
    justify-content: center;
    align-items: center;
    gap: clamp(8px, 0.5vw, 10px);
    border: 1.5px solid #0066CC;
    border-radius: 999px;
    color: var(--Dark-Blue-00, #000A14);
    text-align: center;
    font-family: "Poppins", sans-serif;
    font-size: clamp(13px, 0.73vw, 14px);
    font-style: normal;
    font-weight: 500;
    line-height: 1.2;
    background: transparent;
    text-decoration: none;
    cursor: pointer;
    transition: all 0.25s ease;
    margin-left: clamp(0px, 2.6vw, 50px);
    flex-shrink: 0;
    align-self: flex-start;
}

.opp-btn:hover {
    background: rgba(0, 102, 204, 0.06);
}

@media (max-width: 1024px) {
    .opp-btn {
        margin-left: 0;
    }
}

@media (max-width: 768px) {
    .opp-btn {
        margin-left: 0;
        margin-top: auto;
        margin-bottom: 75px;
        width: 100%;
        max-width: 200px;
        text-align: center;
    }
}

/* RIGHT IMAGE */
.opportunities-image {
    width: 100%;
    height: 100%;
    min-height: clamp(300px, 20.8vw, 400px);
    max-width: 100%;
    overflow: hidden;
    box-sizing: border-box;
    position: relative;
}

.opportunities-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    max-width: 100%;
}

@media (max-width: 1200px) {
    .opportunities-image {
        min-height: 400px;
        height: 400px;
        width: 100%;
        max-width: 100%;
    }
}

@media (max-width: 1024px) {
    .opportunities-image {
        min-height: 400px;
        height: 400px;
        width: 100%;
        max-width: 100%;
    }
}

@media (max-width: 768px) {
    .opportunities-section {
        padding: 60px 20px;
        min-height: auto;
    }
    
    .opportunities-image {
        min-height: auto;
        height: 200px;
        width: 100%;
        max-width: 100%;
    }
    
    .opportunities-bottom-tabs {
        flex-wrap: wrap;
        gap: 20px;
        margin-top: 15px;
    }
    
    .opp-tab {
        font-size: 14px;
    }
}

/* OPPORTUNITIES HEADER */
.opportunities-header {
    display: flex-start;
    flex-direction: column;
    gap: 10px;
}

/* BOTTOM TABS */
.opportunities-bottom-tabs {
    display: flex;
    justify-content: center;
    gap: clamp(20px, 2.1vw, 40px);
    margin-top: clamp(30px, 2.5vw, 48px);
    flex-wrap: wrap;
}

.opp-tab {
    background: none;
    border: none;
    font-size: clamp(13px, 0.78vw, 15px);
    font-weight: 500;
    color: #0066CC;
    cursor: pointer;
    position: relative;
    padding-bottom: clamp(4px, 0.31vw, 6px);
}

.opp-tab::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    width: 0;
    height: 2px;
    background: #003366;
    transition: width .3s ease;
}

.opp-tab.active {
    color: #003366;
}

.opp-tab.active::after {
    width: 100%;
}

/* Products Section */
.products-section {
    position: relative;
    min-height: clamp(800px, 61.5vw, 1180px);
    width: 100%;
    background: var(--dark-blue-00);
    padding: clamp(60px, 6.25vw, 120px) clamp(20px, 10.4vw, 200px);
    overflow: hidden;
}

/* Products Section Responsive */
@media (max-width: 1600px) {
    .products-section {
        padding: 120px clamp(20px, 10.4vw, 200px);
    }
}

@media (max-width: 1200px) {
    .products-section {
        padding: 100px clamp(20px, 10.4vw, 200px);
        min-height: auto;
    }
    
    .product-card-wide {
        flex-direction: column;
        padding: 20px;
        min-height: auto;
    }
    
    .product-card-image-wide {
        position: relative;
        width: 100%;
        height: 200px;
        padding-left: 0;
    }
    
    .product-card-content-wide {
        margin-left: 0;
        margin-top: 20px;
    }
    
    .product-card-title-wide {
        font-size: 32px;
    }
    
    .product-card-text-wide {
        font-size: 16px;
    }
    
    .product-card-arrow-wide {
        position: relative;
        bottom: auto;
        right: auto;
        margin-top: 20px;
        align-self: flex-end;
    }
    
    .products-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 30px;
    }
}

@media (max-width: 768px) {
    .products-section {
        padding: 3% clamp(20px, 10.4vw, 200px);
        min-height: auto;
    }
    
    .products-header {
        margin-bottom: 2%;
    }
    
    .section-title {
        margin-bottom: 2%;
    }
    
    .product-card-wide {
        padding: 1% !important;
        margin-bottom: 1.5%;
        flex-direction: column !important;
        min-height: auto;
        align-items: flex-start !important;
        max-width: 100% !important;
        width: 100% !important;
        display: flex !important;
    }
    
    .product-card-image-wide {
        height: 8vh !important;
        min-height: 8vh !important;
        position: relative !important;
        width: 100% !important;
        padding: 0 !important;
        flex-shrink: 0 !important;
        top: auto !important;
        left: auto !important;
        order: 1 !important;
        display: flex !important;
        align-items: center !important;
        justify-content: center !important;
        margin-bottom: 0 !important;
        overflow: hidden !important;
        box-sizing: border-box;
    }
    
    .product-card-image-wide img {
        position: absolute !important;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        object-fit: cover;
        z-index: 1;
    }
    
    .product-card-title-wide {
        font-size: clamp(20px, 4.5vw, 28px) !important;
        position: relative !important;
        z-index: 2 !important;
        margin: 0 !important;
        padding: 0 !important;
        width: 100%;
        font-weight: 300 !important;
        color: var(--white) !important;
        line-height: 1.2 !important;
        text-align: center !important;
    }
    
    .product-card-content-wide {
        margin-left: 0 !important;
        margin-top: 0 !important;
        margin-bottom: 0 !important;
        width: 100% !important;
        flex: 0 0 auto !important;
        order: 2 !important;
        padding: 1.5% !important;
        position: relative !important;
        z-index: 10 !important;
        display: block !important;
        box-sizing: border-box;
    }
    
    .product-card-text-wide {
        font-size: clamp(11px, 2.5vw, 13px);
        line-height: 1.3;
        word-wrap: break-word;
        overflow-wrap: break-word;
        margin: 0;
        padding: 0;
        position: relative;
        z-index: 10;
        display: block;
        width: 100%;
        box-sizing: border-box;
    }
    
    .product-card-arrow-wide {
        position: relative !important;
        bottom: auto !important;
        right: auto !important;
        margin-top: 1% !important;
        align-self: flex-end;
        width: 4%;
        height: auto;
        order: 3 !important;
    }
    
    .products-grid {
        display: grid !important;
        grid-template-columns: 1fr !important;
        gap: 2.5%;
        max-width: 100%;
        width: 100%;
        margin: 0;
    }
    
    .product-card {
        min-height: auto;
        width: 100%;
        max-width: 100%;
    }
    
    .product-card-image {
        height: 8vh;
        min-height: 8vh;
        position: relative;
        width: 100%;
    }
    
    .product-card-content {
        margin-top: 0;
        padding: 1.5%;
        min-height: auto;
        width: 100%;
        box-sizing: border-box;
    }
    
    .product-card-title {
        font-size: clamp(18px, 4vw, 24px);
        padding-left: 1.5%;
        margin-bottom: 1%;
    }
    
    .product-card-subtitle {
        font-size: clamp(14px, 3vw, 18px);
        min-height: auto;
        margin-bottom: 1%;
    }
    
    .product-card-text {
        font-size: clamp(11px, 2.5vw, 13px);
        min-height: auto;
        line-height: 1.3;
    }
    
    .product-card-arrow {
        bottom: 2%;
        right: 2.5%;
        width: 4%;
        height: auto;
    }
}

.products-bg {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    overflow: hidden;
}

.products-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

/* Products Header - Matching Opportunities */
.products-header {
    display: flex-start;
    flex-direction: column;
    gap: 10px;
    margin-bottom:20px
}

.products-label {
    position: relative;
    display: inline-block;
    font-size: 14px;
    font-weight: 600;
    background: linear-gradient(90deg, #FF6F61, #D833FF, #FFB347);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    line-height: normal;
    letter-spacing: 0.396px;
}

@media (max-width: 1024px) {
    .products-label {
        margin-left: 0;
    }
}

@media (max-width: 768px) {
    .products-label {
        margin-left: 0;
    }
}

/* gradient line under the text */
.products-label::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -6px;
    width: 100%;
    height: 2px;
    background: linear-gradient(
        90deg,
        #FF6F61,
        #D833FF,
        #FFB347
    );
    border-radius: 2px;
}

.product-card-wide {
    background: rgba(255, 255, 255, 0.6);
    backdrop-filter: blur(9px);
    box-shadow: 0px 0px 10px 0px rgba(0, 0, 0, 0.04);
    padding: clamp(15px, 1.05vw, 20px) clamp(20px, 2.1vw, 40px);
    min-height: clamp(100px, 6.8vw, 130px);
    position: relative;
    overflow: hidden;
    margin-bottom: clamp(20px, 2.1vw, 40px);
    margin-left: auto;
    margin-right: auto;
    max-width: min(1040px, 95%);
    display: flex;
    align-items: center;
    opacity: 0;
    transform: translateY(50px);
    transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.product-card-wide.landed {
    opacity: 1;
    transform: translateY(0);
}

.product-card-wide.landed:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: 0px 10px 30px 0px rgba(0, 0, 0, 0.15);
}

.product-card-image-wide {
    width: clamp(200px, 20.3vw, 390px);
    height: 100%;
    flex-shrink: 0;
    position: absolute;
    top: 0;
    left: 0;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: left;
    padding-left: clamp(15px, 1.3vw, 25px);
}

.product-card-image-wide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    position: absolute;
    top: 0;
    left: 0;
}

.product-card-title-wide {
    font-weight: 300;
    font-size: clamp(24px, 2.1vw, 40px);
    color: var(--white);
    margin: 0;
    padding: 0;
    line-height: 1.25;
    position: relative;
    z-index: 2;
    text-align: left;
}

.product-card-content-wide {
    margin-left: clamp(0px, 19.8vw, 380px);
    flex: 1;
    position: relative;
    z-index: 2;
}

.product-card-text-wide {
    font-weight: 300;
    font-size: clamp(14px, 0.94vw, 18px);
    max-width: min(850px, 100%);
    color: var(--dark-blue-01);
    line-height: 1.6;
}

.product-card-arrow-wide {
    position: absolute;
    bottom: clamp(15px, 1.05vw, 20px);
    right: clamp(20px, 2.1vw, 40px);
    width: clamp(24px, 1.67vw, 32px);
    height: clamp(24px, 1.67vw, 32px);
    filter: brightness(0) invert(1);
}

.products-grid {
    max-width: min(1330px, 95%);
    margin: auto;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: clamp(20px, 2.1vw, 40px);
}

.product-card {
    background: rgba(255, 255, 255, 0.6);
    backdrop-filter: blur(9px);
    box-shadow: 0px 0px 10px 0px rgba(0, 0, 0, 0.04);
    padding: 0px;
    position: relative;
    overflow: hidden;
    min-height: clamp(400px, 26vw, 500px);
    display: flex;
    flex-direction: column;
    opacity: 0;
    transform: translateY(50px);
    transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.product-card.landed {
    opacity: 1;
    transform: translateY(0);
}

.product-card.landed:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: 0px 10px 30px 0px rgba(0, 0, 0, 0.15);
}

.product-card-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: clamp(150px, 10.9vw, 210px);
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: left;
    flex-shrink: 0;
}

.product-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    position: absolute;
    top: 0;
    left: 0;
}

.product-card-title {
    font-weight: 300;
    font-size: clamp(28px, 2.1vw, 40px);
    color: var(--white);
    margin: 0;
    padding-left: clamp(20px, 1.8vw, 35px);
    line-height: 1.2;
    position: relative;
    z-index: 2;
    text-align: left;
}

.product-card-content {
    padding: clamp(15px, 1.05vw, 20px) clamp(20px, 2.1vw, 40px) clamp(20px, 2.1vw, 40px) clamp(20px, 2.1vw, 40px);
    margin-top: clamp(150px, 10.9vw, 210px);
    flex: 1;
    display: flex;
    flex-direction: column;
    min-height: clamp(200px, 15.1vw, 290px);
    gap: clamp(10px, 0.78vw, 15px);
}

.product-card-subtitle {
    font-weight: 500;
    font-size: clamp(20px, 1.25vw, 24px);
    color: var(--dark-blue-00);
    line-height: 149.978%;
    flex-shrink: 0;
    min-height: clamp(80px, 5.7vw, 110px);
    display: flex;
    align-items: flex-start;
}

.product-card-text {
    font-weight: 300;
    font-size: clamp(14px, 0.94vw, 18px);
    color: var(--dark-blue-00);
    line-height: 149.978%;
    flex-shrink: 0;
    min-height: clamp(60px, 4.3vw, 82px);
    display: flex;
    align-items: flex-start;
}

.product-card-arrow {
    position: absolute;
    bottom: clamp(15px, 1.3vw, 25px);
    right: clamp(20px, 2.1vw, 40px);
    width: clamp(24px, 1.67vw, 32px);
    height: clamp(24px, 1.67vw, 32px);
    filter: brightness(0) invert(1);
}

/* Solutions Section */
.solutions-section {
    position: relative;
    min-height: clamp(1000px, 78.4vw, 1506px);
    width: 100%;
    padding: clamp(60px, 6.25vw, 120px) clamp(20px, 10.4vw, 200px);
    overflow: hidden;
}

.solutions-bg {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.solution-card {
    background: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(9px);
    border: 1.5px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0px 0px 10px 0px rgba(0, 0, 0, 0.04);
    padding: 0;
    margin-bottom: clamp(20px, 2.1vw, 40px);
    display: flex;
    gap: 0;
    min-height: clamp(250px, 15.6vw, 300px);
    position: relative;
    overflow: hidden;
    opacity: 0;
    transform: translateY(50px);
    transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.solution-card.landed {
    opacity: 1;
    transform: translateY(0);
}

.solution-card.landed:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: 0px 10px 30px 0px rgba(0, 0, 0, 0.15);
}

.solution-card-image {
    width: clamp(200px, 15.6vw, 300px);
    height: 100%;
    flex-shrink: 0;
    position: absolute;
    top: 0;
    left: 0;
    overflow: hidden;
}

.solution-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.solution-card-content {
    flex: 1;
    display: flex;
    flex-direction: column;
    margin-left: clamp(0px, 17.7vw, 340px);
    padding: clamp(20px, 2.1vw, 40px) clamp(20px, 2.1vw, 40px) clamp(20px, 2.1vw, 40px) 0;
    position: relative;
    z-index: 2;
}

.solution-card-title {
    font-weight: 600;
    font-size: clamp(22px, 1.56vw, 30px);
    color: var(--dark-blue-02);
    margin-bottom: clamp(15px, 1.05vw, 20px);
}

.solution-card-text {
    font-weight: 400;
    max-width: 85%;
    font-size: clamp(14px, 0.83vw, 16px);
    color: var(--dark-blue-02);
    line-height: 1.6;
    margin-bottom: clamp(15px, 1.05vw, 20px);
}

.solution-card-link {
    font-weight: 500;
    font-size: clamp(13px, 0.73vw, 14px);
    color: var(--dark-blue-02);
    text-decoration: underline;
    display: inline-flex;
    align-items: center;
    gap: clamp(8px, 0.52vw, 10px);
    align-self: flex-end;
    margin-top: auto;
}

/* Solutions Section Responsive */
@media (max-width: 1200px) {
    .solution-card {
        flex-direction: column;
        min-height: auto;
    }
    
    .solution-card-image {
        position: relative;
        width: 100%;
        height: clamp(200px, 13vw, 250px);
    }
    
    .solution-card-content {
        margin-left: 0;
        padding: clamp(20px, 1.56vw, 30px);
    }
    
    .solution-card-text {
        max-width: 100%;
    }
}

@media (max-width: 768px) {
    .solution-card {
        margin-bottom: clamp(20px, 1.56vw, 30px);
    }
    
    .solution-card-image {
        height: clamp(180px, 10.4vw, 200px);
    }
    
    .solution-card-link {
        align-self: flex-end;
    }
}


/* Partners Section */
.partners-section {
    position: relative;
    min-height: clamp(250px, 18.2vw, 350px);
    width: 100%;
    background: var(--white);
    padding: clamp(40px, 4.2vw, 80px) clamp(20px, 10.4vw, 200px) clamp(30px, 2.1vw, 40px) clamp(20px, 10.4vw, 200px);
}

/* Partners Section Responsive */
@media (max-width: 1200px) {
    .partners-grid {
        justify-content: center;
    }
}

.partners-header {
    display: inline-flex;
    flex-direction: column;
    gap: 10px;
    margin-top: 40px;
}

.partners-label {
    position: relative;
    display: inline-block;
    font-size: 14px;
    font-weight: 600;
    background: linear-gradient(90deg, #FF6F61, #D833FF, #FFB347);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    line-height: normal;
    letter-spacing: 0.396px;
}

@media (max-width: 1024px) {
    .partners-label {
        margin-left: 0;
    }
}

@media (max-width: 768px) {
    .partners-label {
        margin-left: 0;
    }
    
    .partners-section {
        padding-bottom: 60px;
    }
}

/* gradient line under the text */
.partners-label::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -6px;
    width: 100%;
    height: 2px;
    background: linear-gradient(
        90deg,
        #FF6F61,
        #D833FF,
        #FFB347
    );
    border-radius: 2px;
}


.partners-grid {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: clamp(25px, 2.1vw, 40px);
    margin-top: clamp(30px, 2.6vw, 50px);
}

.partner-logo {
    transition: opacity 0.3s;
}

.partner-logo:hover {
    opacity: 1;
}

/* NVIDIA */
.partner-logo[alt="NVIDIA"] {
    width: clamp(140px, 11.3vw, 217px);
    height: clamp(26px, 2.1vw, 40px);
    aspect-ratio: 217/40;
}

/* G42 */
.partner-logo[alt="G42"] {
    width: clamp(50px, 3.7vw, 71px);
    height: clamp(26px, 2.1vw, 40px);
    aspect-ratio: 71/40;
}

/* Highrise */
.partner-logo[alt="Highrise"] {
    width: clamp(140px, 11.7vw, 224px);
    height: clamp(26px, 2.1vw, 40px);
    aspect-ratio: 28/5;
}

/* Matrix */
.partner-logo[alt="Matrix"] {
    width: clamp(160px, 12.4vw, 238px);
    height: clamp(70px, 5.2vw, 100px);
    aspect-ratio: 119/50;
}

/* CoreWeave */
.partner-logo[alt="CoreWeave"] {
    width: clamp(180px, 15vw, 289px);
    height: clamp(26px, 2.1vw, 40px);
    aspect-ratio: 289/40;
}

/* Oracle Cloud */
.partner-logo[alt="Oracle Cloud"] {
    width: clamp(100px, 7.1vw, 137px);
    height: clamp(36px, 2.6vw, 50px);
    aspect-ratio: 137/50;
}

@media (max-width: 768px) {
    .partner-logo[alt="NVIDIA"] {
        width: clamp(85px, 11vw, 120px);
        height: clamp(16px, 2.1vw, 23px);
    }
    
    .partner-logo[alt="G42"] {
        width: clamp(30px, 3.9vw, 42px);
        height: clamp(16px, 2.1vw, 23px);
    }
    
    .partner-logo[alt="Highrise"] {
        width: clamp(85px, 11vw, 120px);
        height: clamp(16px, 2.1vw, 23px);
    }
    
    .partner-logo[alt="Matrix"] {
        width: clamp(95px, 12.3vw, 130px);
        height: clamp(42px, 5.4vw, 58px);
    }
    
    .partner-logo[alt="CoreWeave"] {
        width: clamp(100px, 13vw, 140px);
        height: clamp(16px, 2.1vw, 23px);
    }
    
    .partner-logo[alt="Oracle Cloud"] {
        width: clamp(60px, 7.8vw, 85px);
        height: clamp(22px, 2.9vw, 31px);
    }
}

/* Footer */
.footer {
    position: relative;
    width: 100%;
    background: var(--dark-blue-01);
    padding: clamp(30px, 2.1vw, 40px) clamp(20px, 10.4vw, 200px);
}

/* Footer Responsive */
@media (max-width: 1200px) {
    .footer-content {
        grid-template-columns: 1fr 1fr;
    }
    
    .footer-bottom-tagline-wrapper {
        grid-template-columns: 1fr 1fr;
    }
    
    .footer-bottom-tagline-container {
        grid-column: 1 / -1;
    }
    
    .footer-newsletter {
        grid-column: 1 / -1;
    }
    
    .footer-bottom-content {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }
    
    .footer-bottom-left {
        align-items: center;
    }
    
    .footer-legal {
        justify-content: center;
    }
}

@media (max-width: 768px) {
    .footer {
        padding: 3% clamp(20px, 10.4vw, 200px);
        display: flex;
        flex-direction: column;
    }
    
    .footer-top-section {
        margin-bottom: 3%;
        margin-top: 40px;
        order: 0;
        max-width: 100% !important;
        padding: 0 !important;
        margin-left: 0 !important;
        margin-right: 0 !important;
    }
    
    .footer-logo-tagline {
        width: 100% !important;
        gap: 2%;
        padding: 0 !important;
        margin: 0 !important;
        margin-top: 30px !important;
    }
    
    .footer-logo {
        width: clamp(100px, 25vw, 163px);
        height: auto;
        margin: 0;
        padding: 0;
    }
    
    .footer-tagline-container {
        width: 100%;
        margin-bottom: 2%;
        padding: 0;
        margin-left: 0;
    }
    
    .footer-tagline {
        font-size: clamp(12px, 3vw, 14px);
        margin-bottom: 1%;
        padding: 0;
    }
    
    .footer-content {
        display: grid !important;
        grid-template-columns: 1fr 1fr !important;
        gap: 3% 2% !important;
        width: 100%;
        max-width: 100%;
        margin: 0;
        padding: 0;
        margin-left: 0;
        margin-right: 0;
    }
    
    /* Description first - spans both columns */
    .footer-content > div:first-child {
        grid-column: 1 / -1;
        order: 1;
        width: 100%;
    }
    
    .footer-description {
        font-size: clamp(12px, 3vw, 14px);
        margin-top: 0;
        margin-bottom: 0;
        margin-left: 0;
        padding-left: 0;
        line-height: 1.5;
    }
    
    /* Columns in 2 column grid */
    .footer-content > div:not(:first-child) {
        order: 2;
        width: 100%;
    }
    
    .footer-column-title {
        font-size: clamp(14px, 3.5vw, 18px);
        margin-top: 2%;
        margin-bottom: 1.5%;
    }
    
    .footer-link {
        font-size: clamp(12px, 3vw, 14px);
        margin-bottom: 1%;
    }
    
    .footer-bottom-tagline-section {
        margin: 3% 0 0 0;
        order: 3;
        width: 100%;
        max-width: 100%;
    }
    
    .footer-bottom-tagline-wrapper {
        grid-template-columns: 1fr !important;
        gap: 2%;
        max-width: 100%;
    }
    
    .footer-bottom-tagline-container {
        grid-column: 1 !important;
        margin-bottom: 2%;
    }
    
    .footer-bottom-tagline-line {
        height: 1px;
    }
    
    /* Newsletter after columns */
    .footer-newsletter {
        grid-column: 1 !important;
        margin-top: 2%;
        margin-bottom: 2%;
        width: 100%;
        order: 4;
        display: flex !important;
        justify-content: center !important;
        align-items: center !important;
    }
    
    .footer-newsletter .btn-gradient {
        align-self: center;
        margin: 0 auto;
    }
    
    /* Black bar last */
    .footer-bottom {
        order: 5;
        margin-top: 3%;
        margin-left: 0;
        width: 100%;
    }
    
    .footer-bottom-content {
        flex-direction: column;
        align-items: center;
        text-align: center;
        gap: 2%;
        padding: 3% clamp(20px, 10.4vw, 200px);
        max-width: 100%;
    }
    
    .footer-bottom-left {
        align-items: center;
        gap: 2%;
        width: 100%;
    }
    
    .footer-legal {
        flex-direction: column;
        align-items: center;
        gap: 1.5%;
        width: 100%;
    }
    
    .footer-legal-link {
        font-size: clamp(11px, 2.5vw, 14px);
    }
    
    .footer-copyright {
        font-size: clamp(11px, 2.5vw, 14px);
        text-align: center;
    }
    
    .footer-social {
        justify-content: center;
        gap: 3%;
        width: 100%;
    }
    
    .social-icon {
        width: clamp(20px, 5vw, 24px);
        height: clamp(20px, 5vw, 24px);
    }
}

.footer-top-section {
    max-width: 1920px;
    margin: 0 auto 0 auto;
    position: relative;
}

.footer-logo-tagline {
    display: flex;
    width:80%;
    flex-direction: column;
    gap: 15px;
}

.footer-logo {
    width: 163.406px;
    height: 30px;
    aspect-ratio: 163.41/30.00;
}

.footer-bottom {
    background: var(--dark-blue-00);
    margin-bottom: 0;
    padding-bottom: 0;
    position: relative;
    margin-top: 0;
    flex-shrink: 0;
}

.footer-content {
    max-width: 1920px;
    width: 100%;
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr 1fr;
    gap: clamp(30px, 3.1vw, 60px);
    margin: 0 auto;
    padding: 0;
}


.footer-logo {
    width: clamp(120px, 8.5vw, 163.406px);
    height: clamp(22px, 1.56vw, 30px);
    aspect-ratio: 163.41/30.00;
}

.footer-tagline-container {
    display: inline-block;
    width: 80%;
    margin-bottom: clamp(20px, 1.56vw, 30px);
}

.footer-tagline {
    text-align: left;
    font-weight: 300;
    font-size: clamp(14px, 0.83vw, 16px);
    color: var(--bg-light-blue);
    margin: 0;
    padding: 0;
    line-height: 1.4;
    width: 100%;
}

.footer-tagline-line {
    position: absolute;
    left: 0;
    width: 100%;
    height: 1px;
    opacity: 0.2;
    background: rgba(255, 255, 255, 1);
    margin-top: 20px;
    padding: 0;
}

.footer-bottom-tagline-section {
    max-width: 1920px;
    margin: 40px auto 0 auto;
    position: relative;
    padding: 0;
}

.footer-bottom-tagline-wrapper {
    max-width: 1920px;
    width: 100%;
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr 1fr;
    gap: clamp(30px, 3.1vw, 60px);
    align-items: flex-start;
    margin: 0 auto;
    padding: 0;
}

.footer-bottom-tagline-container {
    grid-column: 2 / -1;
    position: relative;
    margin-bottom: 10px;
    width: 100%;
    margin: 0;
    padding: 0;
}

.footer-bottom-tagline-line {
    width: 100%;
    height: 1px;
    opacity: 0.2;
    background: rgba(255, 255, 255, 1);
    margin: 0;
    padding: 0;
}

.footer-newsletter {
    margin-top: 10px;
    margin-bottom: 10px;
    text-align: center;
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    grid-column: 1 / -1;
}

.footer-description {
    font-weight: 400;
    font-size: clamp(14px, 0.83vw, 16px);
    color: var(--bg-light-blue);
    line-height: 1.6;
    margin-top: clamp(15px, 1.05vw, 20px);
}

.footer-column-title {
    font-weight: 600;
    font-size: clamp(18px, 1.04vw, 20px);
    color: var(--white);
    margin-top: clamp(15px, 1.05vw, 20px);
    margin-bottom: clamp(15px, 1.05vw, 20px);
    padding: 0;
}

.footer-link {
    font-weight: 400;
    font-size: clamp(14px, 0.83vw, 16px);
    color: var(--bg-light-blue);
    text-decoration: none;
    display: block;
    margin-bottom: clamp(10px, 0.78vw, 15px);
    transition: color 0.3s;
}

.footer-link:hover {
    color: var(--white);
}

.footer-newsletter {
    margin-top: 40px;
}

/* Book a Demo Modal (Desktop Only) */
.book-demo-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 10000;
    display: flex;
    align-items: center;
    justify-content: center;
}

.book-demo-modal-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7);
    backdrop-filter: blur(4px);
}

.book-demo-modal-content {
    position: relative;
    background: var(--dark-blue-00);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: clamp(20px, 2.08vw, 40px);
    padding: clamp(40px, 4.17vw, 60px);
    width: 90%;
    max-width: min(550px, 90vw);
    z-index: 10001;
    box-shadow: 0px 10px 40px rgba(0, 0, 0, 0.5);
    margin: auto;
}

.book-demo-modal-close {
    position: absolute;
    top: clamp(15px, 1.56vw, 20px);
    right: clamp(15px, 1.56vw, 20px);
    background: transparent;
    border: none;
    color: var(--white);
    font-size: clamp(32px, 3.13vw, 40px);
    line-height: 1;
    cursor: pointer;
    padding: 0;
    width: clamp(30px, 3.13vw, 40px);
    height: clamp(30px, 3.13vw, 40px);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: opacity 0.3s;
    z-index: 10002;
}

.book-demo-modal-close:hover {
    opacity: 0.7;
}

.book-demo-modal-title {
    font-weight: 400;
    font-size: clamp(28px, 2.6vw, 36px);
    color: var(--white);
    margin-bottom: clamp(30px, 3.13vw, 40px);
    margin-top: 0;
    text-align: center;
}

.book-demo-form {
    display: flex;
    flex-direction: column;
    gap: clamp(20px, 2.08vw, 24px);
    width: 100%;
}

.book-demo-input {
    width: 100%;
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: clamp(15px, 1.3vw, 20px);
    padding: clamp(14px, 1.3vw, 18px) clamp(20px, 1.56vw, 24px);
    font-weight: 400;
    font-size: clamp(14px, 0.94vw, 16px);
    color: var(--white);
    background: rgba(255, 255, 255, 0.05);
    font-family: 'Poppins', sans-serif;
    box-sizing: border-box;
    transition: border-color 0.3s, background 0.3s;
}

.book-demo-input:focus {
    outline: none;
    border-color: var(--white);
    background: rgba(255, 255, 255, 0.1);
}

.book-demo-input::placeholder {
    color: rgba(255, 255, 255, 0.6);
}

.book-demo-textarea {
    resize: vertical;
    min-height: 120px;
    font-family: 'Poppins', sans-serif;
}

.book-demo-submit {
    width: 100%;
    margin-top: clamp(10px, 1.04vw, 15px);
}

.book-demo-thank-you {
    text-align: center;
}

.book-demo-thank-you-message {
    font-weight: 300;
    font-size: clamp(16px, 1.04vw, 18px);
    color: var(--white);
    line-height: 1.6;
    margin: 0;
}

.newsletter-title {
    font-weight: 400;
    font-size: clamp(14px, 0.83vw, 16px);
    color: var(--white);
    margin-bottom: clamp(15px, 1.05vw, 20px);
    text-align: center;
}

.newsletter-form {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: clamp(8px, 0.52vw, 10px);
    margin-bottom: 0;
    width: 100%;
    max-width: min(500px, 90%);
}

.newsletter-input {
    flex: 1;
    border: 1px solid var(--white);
    border-radius: clamp(20px, 1.3vw, 25px);
    padding: clamp(8px, 0.52vw, 10px) clamp(20px, 1.56vw, 30px);
    font-weight: 400;
    font-size: clamp(14px, 0.83vw, 16px);
    color: var(--white);
    background: transparent;
}

.newsletter-input::placeholder {
    color: var(--white);
    opacity: 0.7;
}

.newsletter-submit {
    background: linear-gradient(to right, var(--coral), var(--purpel) 50%, var(--orange));
    border: none;
    border-radius: clamp(20px, 1.3vw, 25px);
    padding: clamp(8px, 0.52vw, 10px) clamp(20px, 1.56vw, 30px);
    font-weight: 400;
    font-size: clamp(14px, 0.83vw, 16px);
    color: var(--white);
    cursor: pointer;
    white-space: nowrap;
    transition: transform 0.3s;
}

.newsletter-submit:hover {
    transform: translateY(-2px);
}

.footer-bottom-content {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    flex-wrap: wrap;
    gap: clamp(15px, 1.05vw, 20px);
    padding: clamp(30px, 2.1vw, 40px) clamp(20px, 10.4vw, 200px);
    margin: 0;
    margin-bottom: 0;
    padding-bottom: clamp(30px, 2.1vw, 40px);
    max-width: 1920px;
    margin-left: auto;
    margin-right: auto;
}

.footer-bottom-left {
    display: flex;
    flex-direction: column;
    gap: 15px;
    margin-bottom: 0;
    padding-bottom: 0;
}

.footer-legal {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
}

.footer-legal-link {
    font-weight: 400;
    font-size: 16px;
    color: var(--bg-light-blue);
    text-decoration: none;
}

.footer-legal-link:hover {
    color: var(--white);
}

.footer-copyright {
    font-weight: 400;
    font-size: 14px;
    color: var(--bg-light-blue);
    margin-bottom: 0;
    padding-bottom: 0;
}

.footer-social {
    display: flex;
    gap: 20px;
    align-items: center;
    margin-bottom: 0;
    padding-bottom: 0;
}

.footer-social a {
    display: inline-block;
    text-decoration: none;
    transition: opacity 0.3s ease;
}

.footer-social a:hover {
    opacity: 0.8;
}

.social-icon {
    opacity: 0.7;
    transition: opacity 0.3s;
}

.social-icon-x {
    width: clamp(24px, 1.56vw, 30px);
    height: clamp(24px, 1.56vw, 30px);
}

.social-icon-linkedin {
    width: clamp(24px, 1.56vw, 30px);
    height: clamp(24px, 1.56vw, 30px);
}

.social-icon-instagram {
    width: clamp(24px, 1.56vw, 30px);
    height: clamp(24px, 1.56vw, 30px);
}

.social-icon:hover {
    opacity: 1;
}

/* Additional Responsive Utilities - All sizes now use clamp() for fluid scaling */

