*{margin:0;padding:0;box-sizing:border-box;font-family:'Prompt',sans-serif;}
body{background:#ffffff;color:#1f2937;line-height:1.8;}
section{padding:80px 8%;}
h1,h2,h3{margin-bottom:20px;}
p{margin-bottom:20px;color:#374151;}
.container{max-width:1100px;margin:auto;}

.hero{
    padding:120px 8%;
    text-align:center;
    background:linear-gradient(135deg,#e0f2fe,#ffffff);
}
.hero h1{
    font-size:42px;
    font-weight:700;
}
.hero p{
    font-size:18px;
}

.box{
    background:#ffffff;box-shadow:0 10px 30px rgba(0,0,0,0.05);border:1px solid #e2e8f0;
    padding:30px;
    border-radius:20px;
    margin-bottom:30px;
    backdrop-filter:blur(10px);
}

.btn{
    display:inline-block;
    padding:14px 35px;
    border-radius:30px;
    background:linear-gradient(90deg,#38bdf8,#6366f1);
    color:#1f2937;
    text-decoration:none;
    font-weight:600;
    margin-top:20px;
}
.btn:hover{opacity:.9;}

ul{margin-left:20px;margin-bottom:20px;}
li{margin-bottom:10px;}

footer{
    text-align:center;
    padding:40px;
    color:#94a3b8;
}

.navbar{
  position:fixed;
  width:100%;
  background:linear-gradient(90deg,#2563eb,#1d4ed8);
  padding:2px 5%;
  z-index:999;
  box-shadow:0 5px 20px rgba(0,0,0,0.15);
}

.nav-container{
  display:flex;
  justify-content:space-between;
  align-items:center;
}

.logo{
  font-weight:700;
  font-size:20px;
  color:#ffffff;
}

.menu{

  list-style:none;
  display:flex;
  gap:25px;
  padding-top:30px;
}

.menu li{
  position:relative;
}

.menu a{
  color:#ffffff;
  text-decoration:none;
  font-size:14px;
  transition:.3s;
}

.menu a:hover{
  color:#93c5fd;
}

/* Mega Menu */
.mega-menu{
  position:absolute;
  top:40px;
  left:-300px;
  width:900px;
  background:#f8fafc;
  display:flex;
  gap:40px;
  padding:30px;
  border-radius:15px;
  opacity:0;
  visibility:hidden;
  transition:.3s;
  box-shadow:0 20px 40px rgba(0,0,0,0.6);
}

.has-mega:hover .mega-menu{
  opacity:1;
  visibility:visible;
}

.mega-column{
  display:flex;
  flex-direction:column;
}

.mega-column h4{
  margin-bottom:10px;
  color:#93c5fd;
  font-size:14px;
}

.mega-column a{
  margin-bottom:6px;
  font-size:13px;
  color:#374151;
}

.mega-column a:hover{
  color:#1f2937;
}

.intro-section{
    padding:80px 8%;
    background:#f8fafc;
}

.intro-section h2{
    font-size:32px;
    margin-bottom:30px;
    font-weight:700;
    line-height:1.4;
}

.intro-section p{
    color:#374151;
    margin-bottom:25px;
    font-size:16px;
}

.problem-section{
    padding:100px 8%;
    background:linear-gradient(135deg,#ffffff,#e0f2fe);
}

.problem-box{
    background:#ffffff;box-shadow:0 10px 30px rgba(0,0,0,0.05);border:1px solid #e2e8f0;
    padding:60px;
    border-radius:25px;
    text-align:center;
    backdrop-filter:blur(15px);
    border:1px solid rgba(255,255,255,0.08);
    box-shadow:0 0 40px rgba(99,102,241,0.25);
}

.problem-box h2{
    font-size:32px;
    margin-bottom:30px;
    background:linear-gradient(90deg,#38bdf8,#6366f1);
    -webkit-background-clip:text;
    -webkit-text-fill-color:transparent;
}

.problem-list{
    list-style:none;
    margin-bottom:40px;
}

.problem-list li{
    margin-bottom:15px;
    font-size:18px;
    color:#374151;
    position:relative;
}

.problem-list li::before{
    content:"✦";
    color:#93c5fd;
    margin-right:10px;
}

.solution-text{
    max-width:800px;
    margin:auto;
    margin-bottom:30px;
    font-size:16px;
    color:#374151;
}

.strategy-section{
    padding:100px 8%;
    background:#ffffff;
}

.strategy-wrapper{
    display:flex;
    gap:60px;
    align-items:center;
    flex-wrap:wrap;
}

.strategy-text{
    flex:1;
    min-width:300px;
}

.strategy-text h2{
    font-size:32px;
    margin-bottom:25px;
    background:linear-gradient(90deg,#38bdf8,#6366f1);
    -webkit-background-clip:text;
    -webkit-text-fill-color:transparent;
}

.strategy-text h3{
    font-size:22px;
    margin-top:25px;
    margin-bottom:15px;
    color:#1f2937;
}

.strategy-text p{
    color:#374151;
    margin-bottom:15px;
}

.strategy-highlight{
    flex:1;
    min-width:300px;
    display:grid;
    gap:20px;
}

.highlight-card{
    background:#ffffff;box-shadow:0 10px 30px rgba(0,0,0,0.05);border:1px solid #e2e8f0;
    padding:25px;
    border-radius:18px;
    border:1px solid rgba(255,255,255,0.08);
    backdrop-filter:blur(12px);
    transition:.3s;
}

.highlight-card:hover{
    transform:translateY(-5px);
    box-shadow:0 0 25px rgba(99,102,241,0.4);
}

.highlight-card h4{
    margin-bottom:10px;
    color:#93c5fd;
}

.highlight-card p{
    font-size:14px;
    color:#374151;
}

.services-section{
    padding:120px 8%;
    background:linear-gradient(135deg,#f8fafc,#ffffff);
}

.section-header{
    text-align:center;
    margin-bottom:60px;
}

.section-header h2{
    font-size:36px;
    margin-bottom:15px;
    background:linear-gradient(90deg,#38bdf8,#6366f1);
    -webkit-background-clip:text;
    -webkit-text-fill-color:transparent;
}

.section-header p{
    color:#374151;
    font-size:16px;
}

.services-grid{
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(280px,1fr));
    gap:30px;
}

.service-card{
    background:#ffffff;box-shadow:0 10px 30px rgba(0,0,0,0.05);border:1px solid #e2e8f0;
    padding:40px 30px;
    border-radius:20px;
    border:1px solid rgba(255,255,255,0.08);
    backdrop-filter:blur(15px);
    transition:.4s;
}

.service-card:hover{
    transform:translateY(-8px);
    box-shadow:0 0 35px rgba(99,102,241,0.4);
}

.service-card h3{
    font-size:20px;
    margin-bottom:15px;
    color:#93c5fd;
}

.service-card p{
    font-size:15px;
    color:#374151;
}

.popular-section{
    padding:120px 8%;
    background:radial-gradient(circle at top,#f8fafc,#ffffff);
}

.popular-header{
    text-align:center;
    margin-bottom:70px;
}

.popular-header h2{
    font-size:40px;
    font-weight:700;
    margin-bottom:15px;
    background:linear-gradient(90deg,#38bdf8,#6366f1);
    -webkit-background-clip:text;
    -webkit-text-fill-color:transparent;
}

.popular-header p{
    color:#94a3b8;
    font-size:16px;
}

.popular-grid{
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(280px,1fr));
    gap:35px;
}

.popular-card{
    position:relative;
    padding:45px 35px;
    border-radius:25px;
    background:#ffffff;box-shadow:0 10px 30px rgba(0,0,0,0.05);border:1px solid #e2e8f0;
    border:1px solid rgba(255,255,255,0.1);
    backdrop-filter:blur(20px);
    transition:.4s;
}

.popular-card::before{
    content:"";
    position:absolute;
    inset:0;
    border-radius:25px;
    padding:1px;
    background:linear-gradient(135deg,#38bdf8,#6366f1);
    -webkit-mask:
      linear-gradient(#fff 0 0) content-box,
      linear-gradient(#fff 0 0);
    -webkit-mask-composite:xor;
    mask-composite:exclude;
    opacity:0;
    transition:.4s;
}

.popular-card:hover::before{
    opacity:1;
}

.popular-card:hover{
    transform:translateY(-10px);
    box-shadow:0 0 40px rgba(99,102,241,0.4);
}

.popular-card h3{
    font-size:22px;
    margin-bottom:20px;
    color:#93c5fd;
}

.popular-card ul{
    list-style:none;
}

.popular-card ul li{
    margin-bottom:12px;
    color:#374151;
    font-size:15px;
    position:relative;
    padding-left:20px;
}

.popular-card ul li::before{
    content:"✦";
    position:absolute;
    left:0;
    color:#6366f1;
}

/* Highlight Card (Marketplace) */
.highlight{
    background:linear-gradient(135deg,#e0f2fe,#f8fafc);
    box-shadow:0 0 50px rgba(99,102,241,0.3);
}

.why-section{
    padding:120px 8%;
    background:#ffffff;
}

.why-header{
    text-align:center;
    margin-bottom:70px;
}

.why-header h2{
    font-size:38px;
    font-weight:700;
    margin-bottom:15px;
    background:linear-gradient(90deg,#38bdf8,#6366f1);
    -webkit-background-clip:text;
    -webkit-text-fill-color:transparent;
}

.why-header p{
    color:#94a3b8;
}

.why-grid{
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(280px,1fr));
    gap:40px;
}

.why-card{
    position:relative;
    padding:50px 35px;
    border-radius:20px;
    background:#ffffff;box-shadow:0 10px 30px rgba(0,0,0,0.05);border:1px solid #e2e8f0;
    border:1px solid rgba(255,255,255,0.08);
    backdrop-filter:blur(15px);
    transition:.4s;
}

.why-card:hover{
    transform:translateY(-8px);
    box-shadow:0 0 35px rgba(99,102,241,0.4);
}

.why-number{
    font-size:50px;
    font-weight:700;
    background:linear-gradient(135deg,#38bdf8,#6366f1);
    -webkit-background-clip:text;
    -webkit-text-fill-color:transparent;
    display:block;
    margin-bottom:20px;
}

.why-card h3{
    font-size:20px;
    margin-bottom:15px;
    color:#1f2937;
}

.why-card p{
    font-size:15px;
    color:#374151;
}

.final-cta{
    padding:140px 8%;
    text-align:center;
    background:linear-gradient(135deg,#ffffff,#e0f2fe);
    position:relative;
    overflow:hidden;
}

/* Glow Background Effect */
.final-cta::before{
    content:"";
    position:absolute;
    width:600px;
    height:600px;
    background:radial-gradient(circle,#6366f1 0%,transparent 70%);
    top:-200px;
    left:-200px;
    opacity:0.3;
}

.final-cta::after{
    content:"";
    position:absolute;
    width:600px;
    height:600px;
    background:radial-gradient(circle,#38bdf8 0%,transparent 70%);
    bottom:-200px;
    right:-200px;
    opacity:0.3;
}

.cta-container{
    position:relative;
    z-index:2;
    max-width:900px;
    margin:auto;
}

.final-cta h2{
    font-size:42px;
    font-weight:700;
    margin-bottom:25px;
    background:linear-gradient(90deg,#38bdf8,#6366f1);
    -webkit-background-clip:text;
    -webkit-text-fill-color:transparent;
}

.final-cta p{
    font-size:18px;
    color:#374151;
    margin-bottom:40px;
    line-height:1.8;
}

.cta-button{
    display:inline-block;
    padding:18px 50px;
    border-radius:50px;
    font-size:18px;
    font-weight:600;
    text-decoration:none;
    background:linear-gradient(90deg,#38bdf8,#6366f1);
    color:#1f2937;
    transition:.4s;
    box-shadow:0 0 30px rgba(99,102,241,0.5);
}

.cta-button:hover{
    transform:scale(1.07);
    box-shadow:0 0 50px rgba(99,102,241,0.8);
}


.why-us{
padding:60px 20px;
background:#f7f9fc;
text-align:center;
}

.why-us h2{
font-size:32px;
margin-bottom:40px;
}

.why-grid{
display:grid;
grid-template-columns:repeat(4,1fr);
gap:30px;
max-width:1200px;
margin:auto;
}

.why-item{
background:white;
padding:30px 20px;
border-radius:10px;
box-shadow:0 5px 20px rgba(0,0,0,0.05);
}

.why-item h3{
font-size:20px;
margin-bottom:10px;
}

.why-item p{
color:#555;
line-height:1.6;
}

.features{
padding:80px 20px;
background:#ffffff;
text-align:center;
}

.features h2{
font-size:32px;
margin-bottom:50px;
}

.feature-grid{
display:grid;
grid-template-columns:repeat(3,1fr);
gap:30px;
max-width:1100px;
margin:auto;
}

.feature-card{
background:#f6f8fb;
padding:30px;
border-radius:12px;
transition:all .3s ease;
}

.feature-card:hover{
transform:translateY(-5px);
box-shadow:0 10px 30px rgba(0,0,0,0.08);
}

.icon{
font-size:40px;
margin-bottom:15px;
}

.feature-card h3{
font-size:20px;
margin-bottom:10px;
}

.feature-card p{
color:#555;
line-height:1.6;
}


/* =========================
   NAV RESPONSIVE ADD-ON
   ========================= */

/* hamburger */
.hamburger{
  display:none;
  font-size:26px;
  cursor:pointer;
  color:#fff;
}

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

  .hamburger{
    display:block;
  }

  .menu{
    position:fixed;
    top:60px;
    left:-100%;
    width:100%;
    height:100vh;
    background:#1d4ed8;
    flex-direction:column;
    gap:15px;
   
    transition:0.3s;
  }

  .menu.active{
    left:0;
  }

  .menu li{
    width:100%;
  }

  .menu a{
    display:block;
    padding:10px 0;
    font-size:16px;
  }

  /* mega menu mobile */
  .mega-menu{
    position:static;
    width:100%;
    flex-direction:column;
    gap:10px;
    padding:10px 0;
    opacity:1;
    visibility:visible;
    display:none;
    background:#1e40af;
  }

  .has-mega.active .mega-menu{
    display:block;
  }

  .mega-column{
    margin-bottom:10px;
  }

}

@media (max-width:1024px){
  .mega-menu{
    max-width:95%;
    gap:20px;
  }
}

@media (max-width:768px){

  .menu{
    flex-direction:column;
    gap:15px;
    padding:20px;
    background:#1d4ed8;
    position:absolute;
    top:60px;
    left:0;
    right:0;
    display:none;
  }

  .menu.active{
    display:flex;
  }

  .mega-menu{
    position:static;
    transform:none;
    width:100%;
    max-width:100%;

    flex-direction:column;
    gap:15px;

    padding:20px;
    margin-top:10px;
    box-shadow:none;
  }
  .mega-menu a{ color:#374151 !important; }
.mega-menu{ max-height:80vh; overflow-y:auto; }
}

@media (max-width:768px){
  .mega-menu a{
    color:#ffffff !important;
  }
}

@media (max-width:768px){
  .menu{
    max-height:100vh;
    overflow-y:auto;
  }
}

@media (max-width:768px){
  .mega-menu{
    max-height:60vh;   /* 🔥 สำคัญ */
    overflow-y:auto;

    background:#1d4ed8; /* ให้เข้ากับ mobile */
    border-radius:10px;
  }
}

/* =========================
   TABLET
========================= */
@media (max-width: 1024px) {

    .hero-container,
    .website-container,
    .features,
    .why-us {
        padding-left: 30px;
        padding-right: 30px;
    }

    .hero-service h1 {
        font-size: 42px;
        line-height: 1.3;
    }

    .hero-service h2 {
        font-size: 28px;
    }

    .feature-grid,
    .why-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }

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


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

    body {
        overflow-x: hidden;
    }

    img {
        max-width: 100%;
        height: auto;
    }

    .hero-service {
        margin-top: 0 !important;
        padding: 50px 20px;
    }

    .hero-container,
    .website-container,
    .features,
    .why-us {
        padding-left: 20px;
        padding-right: 20px;
    }

    .hero-service h1 {
        font-size: 32px;
        line-height: 1.4;
        text-align: center;
    }

    .hero-service h1 span {
        display: block;
        margin-top: 8px;
    }

    .hero-service h2 {
        font-size: 24px;
        line-height: 1.5;
        text-align: center;
    }

    .hero-desc,
    .hero-service p,
    .website-text p {
        font-size: 16px;
        line-height: 1.8;
        text-align: left;
    }

    .feature-grid,
    .why-grid,
    .website-list {
        grid-template-columns: 1fr;
        gap: 16px;
    }

    .feature-card,
    .why-item,
    .type-card {
        padding: 20px;
        border-radius: 16px;
    }

    .feature-card h3,
    .why-item h3 {
        font-size: 20px;
    }

    .feature-card p,
    .why-item p,
    .type-card {
        font-size: 15px;
        line-height: 1.7;
    }

    .icon {
        font-size: 40px;
    }

    section {
        padding-top: 50px;
        padding-bottom: 50px;
    }

}


/* =========================
   SMALL MOBILE
========================= */
@media (max-width: 480px) {

    .hero-service h1 {
        font-size: 26px;
    }

    .hero-service h2 {
        font-size: 20px;
    }

    .hero-desc,
    .hero-service p,
    .website-text p {
        font-size: 15px;
    }

    .feature-card,
    .why-item,
    .type-card {
        padding: 16px;
    }

}



/* =========================
   SECTION
========================= */

.website-type {
    padding: 80px 0;
    background: #f8fafc;
}

.website-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 40px;
}


/* =========================
   TEXT
========================= */

.website-text {
    margin-bottom: 40px;
}

.website-text h2 {
    font-size: 48px;
    line-height: 1.3;
    margin-bottom: 20px;
    color: #111827;
    font-weight: 700;
}

.website-text p {
    font-size: 18px;
    line-height: 1.9;
    color: #4b5563;
}


/* =========================
   GRID
========================= */

.website-list {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}


/* =========================
   CARD
========================= */

.type-card {
    background: #ffffff;
    border-radius: 20px;
    padding: 24px;
    font-size: 17px;
    line-height: 1.8;
    color: #1f2937;
    box-shadow: 0 6px 24px rgba(0,0,0,.06);

    transition: all .3s ease;
}

.type-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 30px rgba(0,0,0,.10);
}


/* =========================
   TABLET
========================= */

@media (max-width: 1024px) {

    .website-container {
        padding: 0 30px;
    }

    .website-text h2 {
        font-size: 38px;
    }

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

}


/* =========================
   MOBILE
========================= */

@media (max-width: 768px) {

    .website-type {
        padding: 60px 0;
    }

    .website-container {
        padding: 0 20px;
    }

    .website-text {
        margin-bottom: 30px;
    }

    .website-text h2 {
        font-size: 30px;
        line-height: 1.4;
        text-align: center;
    }

    .website-text p {
        font-size: 16px;
        line-height: 1.8;
        text-align: left;
    }

    .website-list {
        grid-template-columns: 1fr;
        gap: 16px;
    }

    .type-card {
        padding: 20px;
        border-radius: 16px;
        font-size: 15px;
        line-height: 1.7;
    }

}


/* =========================
   SMALL MOBILE
========================= */

@media (max-width: 480px) {

    .website-text h2 {
        font-size: 24px;
    }

    .website-text p {
        font-size: 15px;
    }

    .type-card {
        padding: 18px;
        font-size: 14px;
    }

}

/* =========================
   2026 HOME PAGE RESPONSIVE
========================= */

@media (max-width: 1024px) {
    .home-hero {
        min-height: 560px;
        padding: 130px 6% 72px;
    }

    .home-hero h1 {
        font-size: 44px;
    }

    .home-intro__layout,
    .home-ecosystem__layout {
        grid-template-columns: 1fr;
        gap: 32px;
    }

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

@media (max-width: 768px) {
    .package-cta {
        padding: 38px 20px 54px;
    }

    .package-cta__inner {
        align-items: stretch;
        flex-direction: column;
        gap: 20px;
        padding: 24px 22px 22px;
    }

    .package-cta h2 {
        font-size: 23px;
        word-break: break-word;
        overflow-wrap: break-word;
    }

    .package-cta__button {
        width: 100%;
        min-height: 48px;
        white-space: normal;
    }

    .home-hero {
        min-height: auto;
        padding: 118px 20px 62px;
        background:
            linear-gradient(90deg, rgba(15, 23, 42, .88), rgba(15, 23, 42, .62)),
            url("../images/rawpixel-desk-3139127_640.jpg") center / cover no-repeat;
    }

    .home-hero__content {
        width: 100%;
        max-width: 100%;
        min-width: 0;
    }

    .home-hero h1 {
        max-width: 100%;
        font-size: 32px;
        line-height: 1.28;
        word-break: break-all;
        overflow-wrap: anywhere;
    }

    .home-hero h1 span {
        display: block;
    }

    .home-hero p {
        max-width: 100%;
        font-size: 16px;
        word-break: break-all;
        overflow-wrap: anywhere;
    }

    .home-intro__layout > *,
    .home-ecosystem__layout > * {
        min-width: 0;
    }

    .home-intro h2,
    .home-ecosystem h2,
    .home-section-header h2,
    .home-strength-card h3,
    .home-service-card h3 {
        word-break: break-word;
        overflow-wrap: break-word;
    }

    .home-hero__actions {
        align-items: flex-start;
        flex-direction: column;
        gap: 12px;
    }

    .home-proof,
    .home-strength-grid,
    .home-service-grid {
        grid-template-columns: 1fr;
    }

    .home-proof__item {
        min-height: 0;
        padding: 26px 20px;
    }

    .home-intro h2,
    .home-ecosystem h2 {
        font-size: 28px;
    }

    .home-section-header h2 {
        font-size: 28px;
    }

    .home-strength-card {
        min-height: 0;
        padding: 22px;
    }

    .home-service-card p {
        min-height: 0;
    }

    .home-ecosystem__image img {
        aspect-ratio: 16 / 10;
    }

    .home-problem .problem-box {
        padding: 32px 22px;
    }
}

@media (max-width: 480px) {
    .home-hero h1 {
        font-size: 27px;
        line-height: 1.34;
    }

    .home-hero p {
        font-size: 15px;
        line-height: 1.75;
    }

    .home-proof__item strong {
        font-size: 24px;
    }

    .home-service-card div {
        padding: 20px;
    }

    .home-final-cta {
        padding: 70px 20px;
    }
}

@media (max-width: 768px) {
    html,
    body {
        max-width: 100%;
        overflow-x: hidden;
    }

    main,
    section,
    .container {
        max-width: 100%;
        min-width: 0;
    }

    .navbar {
        padding: 10px 5%;
    }

    .nav-container {
        min-height: 58px;
        width: 100%;
    }

    .hamburger {
        align-items: center;
        background: rgba(255, 255, 255, 0.14);
        border: 1px solid rgba(255, 255, 255, 0.28);
        border-radius: 8px;
        color: #ffffff;
        cursor: pointer;
        display: inline-flex !important;
        flex: 0 0 44px;
        font-size: 0;
        height: 44px;
        justify-content: center;
        line-height: 1;
        margin-left: auto;
        padding: 0;
        position: fixed;
        right: 18px;
        top: 16px;
        width: 44px;
        z-index: 1001;
    }

    .hamburger::before {
        content: "\2630";
        font-size: 26px;
        font-weight: 700;
        line-height: 1;
    }

    .menu {
        background: #1d4ed8;
        border-radius: 8px;
        box-shadow: 0 16px 40px rgba(15, 23, 42, 0.24);
        display: none;
        flex-direction: column;
        gap: 12px;
        height: auto;
        left: 12px;
        max-height: calc(100vh - 96px);
        overflow-y: auto;
        padding: 18px;
        position: fixed;
        right: 12px;
        top: 82px;
        width: auto;
        z-index: 1000;
    }

    .menu.active {
        display: flex;
        left: 12px;
    }

    .home-intro__layout,
    .home-ecosystem__layout {
        grid-template-columns: minmax(0, 1fr);
    }

    .home-intro__layout > *,
    .home-ecosystem__layout > *,
    .home-intro__text,
    .home-ecosystem__content {
        max-width: 100%;
        min-width: 0;
        overflow: hidden;
    }

    .home-intro h2,
    .home-intro p,
    .home-ecosystem h2,
    .home-ecosystem p,
    .home-section-header h2,
    .home-section-header p,
    .home-strength-card h3,
    .home-strength-card p,
    .home-service-card h3,
    .home-service-card p,
    .home-problem h2,
    .home-problem li,
    .home-problem p,
    .home-final-cta h2,
    .home-final-cta p {
        max-width: 100% !important;
        overflow-wrap: anywhere !important;
        word-break: break-all !important;
    }

    .home-intro h2,
    .home-ecosystem h2,
    .home-section-header h2,
    .home-problem h2,
    .home-final-cta h2 {
        font-size: 26px !important;
        line-height: 1.45 !important;
    }
}
