.video-bg {
  position: relative;
  height: 100vh;
  overflow: hidden;
}

.video-bg video {
  position: absolute;
  top: 50%;
  left: 50%;
  min-width: 100%;
  min-height: 100%;
  transform: translate(-50%, -50%);
  object-fit: cover;
  z-index: -1;
}

.video-bg .content {
  position: relative;
  z-index: 1;
  color: white;
  text-align: center;
}

.video-hero-section {
  position: relative;
  height: 100vh;
  overflow: hidden;
  color: #fff;
}

/* 🎬 VIDEO */
.bg-video {
  position: absolute;
  top: 50%;
  left: 50%;
  min-width: 100%;
  min-height: 100%;
  transform: translate(-50%, -50%);
  object-fit: cover;
  z-index: -2;
}

/* 🔲 OVERLAY */
.overlay {
  position: absolute;
  width: 100%;
  height: 100%;
  background: rgba(0,0,0,0.55);
  top: 0;
  left: 0;
  z-index: -1;
}

/* 🔥 CONTENT */
.hero-container {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: 1200px;
  margin: auto;
  height: 100%;
  padding: 20px;
  flex-wrap: wrap;
}

.hero-image img {
  max-width: 400px;
}

.hero-content {
  max-width: 500px;
}

.hero-content h1 {
  font-size: 48px;
}

.subtitle {
  color: #ccc;
  margin-bottom: 20px;
}

/* LIST */
.feature-list {
  list-style: none;
  padding: 0;
}

.feature-list li {
  margin: 10px 0;
  padding-left: 20px;
  position: relative;
}

.feature-list li::before {
  content: "●";
  position: absolute;
  left: 0;
  color: #00c3ff;
}

/* 🔻 BOTTOM SECTION */
.bottom-features {
  background: #1f2230;
  padding: 60px 20px;
  display: flex;
  justify-content: space-around;
  flex-wrap: wrap;
}

.feature-box {
  width: 30%;
  min-width: 250px;
  color: #fff;
}

.feature-box .icon {
  font-size: 30px;
  color: #00c3ff;
}

.feature-box h3 {
  color: #00c3ff;
}
.hero-slideshow {
  position: relative;
  height: 100vh;
  overflow: hidden;
  color: #fff;
}

/* 🖼️ SLIDES */
.slides-tour {
  position: absolute;
  width: 100%;
  height: 100%;
  z-index: -2;
}

.slide-tour {
  position: absolute;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  opacity: 0;
  animation: slideShow 15s infinite;
}

/* delay แต่ละภาพ */
.slide-tour:nth-child(1) { animation-delay: 0s; }
.slide-tour:nth-child(2) { animation-delay: 5s; }
.slide-tour:nth-child(3) { animation-delay: 10s; }

/* 🎬 ANIMATION */
@keyframes slideShow {
  0%   { opacity: 0; transform: scale(1); }
  10%  { opacity: 1; }
  30%  { opacity: 1; transform: scale(1.1); } /* Ken Burns */
  40%  { opacity: 0; }
  100% { opacity: 0; }
}

/* 🔲 OVERLAY */
.overlay {
  position: absolute;
  width: 100%;
  height: 100%;
  background: linear-gradient(to right, rgba(0,0,0,0.8), rgba(0,0,0,0.3));
  z-index: -1;
}

/* 🔥 CONTENT */
.hero-content {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: 1200px;
  margin: auto;
  height: 100%;
  padding: 20px;
  flex-wrap: wrap;
}

/* LEFT */
.left {
  max-width: 500px;
}

.left h1 {
  font-size: 56px;
  font-weight: 800;
}

.subtitle {
  margin: 15px 0;
  color: #ccc;
}

/* BUTTON */
.btn-video {
  display: inline-block;
  padding: 12px 24px;
  background: #fff;
  color: #000;
  border-radius: 30px;
  text-decoration: none;
  margin: 15px 0;
  transition: 0.3s;
}

.btn-video:hover {
  background: #00c3ff;
  color: #fff;
}

/* QUOTE */
.quote {
  font-size: 14px;
  color: #ffffff;
}

/* RIGHT IMAGE */
.right img {
  max-width: 450px;
}

/* 📱 MOBILE */
@media (max-width: 768px) {
  .hero-content {
    flex-direction: column;
    text-align: center;
  }

  .left h1 {
    font-size: 36px;
  }

  .right {
    margin-top: 20px;
  }
}

.tour-section {
  padding: 60px 20px;
  background: #0f111a;
}

.tour-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  max-width: 1200px;
  margin: auto;
}

/* 🎬 Responsive iframe */
.tour-item {
  position: relative;
  width: 100%;
  padding-top: 56.25%; /* 16:9 */
  overflow: hidden;
  border-radius: 12px;
}

.tour-item iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: 0;
}

/* 📱 Mobile */
@media (max-width: 768px) {
  .tour-grid {
    grid-template-columns: 1fr;
  }
}
.pricing-section {
  padding: 80px 20px;
  background: linear-gradient(#1a1a1a, #2a2a2a);
  color: #fff;
  text-align: center;
}

.section-title {
  font-size: 42px;
  margin-bottom: 50px;
}

/* GRID */
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  max-width: 1200px;
  margin: auto;
}

/* CARD */
.pricing-card {
  padding: 50px 30px;
  transition: 0.3s;
}

.pricing-card h2 {
  letter-spacing: 2px;
}

.pricing-card .icon {
  font-size: 40px;
  margin: 20px 0;
}

.subtitle {
  margin-bottom: 20px;
  color: #ddd;
}

/* LIST */
.pricing-card ul {
  list-style: none;
  padding: 0;
}

.pricing-card li {
  margin: 10px 0;
}

/* COLORS */
.standard {
  background: #3b4b7c;
}

.deluxe {
  background: linear-gradient(135deg, #4c5bb3, #4aa3c7);
}

.platinum {
  background: linear-gradient(135deg, #2b8ac6, #4a6cff);
}

/* HOVER */
.pricing-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 40px rgba(0,0,0,0.4);
}

/* MOBILE */
@media (max-width: 768px) {
  .pricing-grid {
    grid-template-columns: 1fr;
  }
}

.scan-section {
  padding: 80px 20px;
  background: linear-gradient(135deg, #1f2230, #2c2f3f);
  color: #fff;
  text-align: center;
}

.title {
  font-size: 42px;
  margin-bottom: 10px;
}

.subtitle {
  color: #ccc;
  margin-bottom: 40px;
}

/* 🔥 MAIN */
.scan-main {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 60px;
  flex-wrap: wrap;
}

.scan-image img {
  max-width: 300px;
}

/* LIST */
.scan-features ul {
  list-style: none;
  padding: 0;
  text-align: left;
}

.scan-features li {
  margin: 12px 0;
  padding-left: 20px;
  position: relative;
}

.scan-features li::before {
  content: "●";
  position: absolute;
  left: 0;
  color: #00c3ff;
}

/* 🔻 BOTTOM */
.scan-bottom {
  display: flex;
  justify-content: center;
  gap: 40px;
  margin-top: 60px;
  flex-wrap: wrap;
}

.scan-bottom .item {
  max-width: 300px;
}

.icon {
  font-size: 30px;
  margin-bottom: 10px;
  color: #00c3ff;
}

.scan-bottom h3 {
  color: #00c3ff;
}

/* 📱 MOBILE */
@media (max-width: 768px) {
  .scan-main {
    flex-direction: column;
  }

  .scan-features ul {
    text-align: center;
  }
}
.cta-section {
  padding: 60px 20px;
  background: #e5e5e5;
  text-align: center;
}

.cta-text {
  font-size: 22px;
  letter-spacing: 2px;
  color: #333;
  margin-bottom: 20px;
}

/* BUTTON */
.cta-button {
  display: inline-block;
  padding: 10px 20px;
  background: #222;
  color: #fff;
  border-radius: 20px;
  text-decoration: none;
  font-size: 14px;
  transition: 0.3s;
}

.cta-button:hover {
  background: #00c3ff;
}

.vi-hero{
position:relative;
min-height:100vh;
overflow:hidden;
display:flex;
align-items:center;
justify-content:center;
text-align:center;
color:white;
}

.hero-video{
position:absolute;
top:50%;
left:50%;
min-width:100%;
min-height:100%;
transform:translate(-50%,-50%);
object-fit:cover;
z-index:-2;
}

.overlay{
position:absolute;
inset:0;
background:rgba(0,0,0,.55);
z-index:-1;
}

.hero-content{
max-width:900px;
padding:40px;
}

.hero-device{
width:280px;
margin-bottom:25px;
}

.vi-hero h1{
font-size:72px;
font-weight:800;
margin-bottom:15px;
}

.lead{
font-size:20px;
max-width:700px;
margin:auto;
opacity:.95;
}

.hero-buttons{
margin-top:35px;
display:flex;
justify-content:center;
gap:18px;
flex-wrap:wrap;
}


/* ---------- BUTTONS ---------- */

.btn{
padding:14px 30px;
border-radius:35px;
text-decoration:none;
font-weight:700;
transition:.3s;
display:inline-block;
}

.btn.primary{
background:#00b9ff;
color:#fff;
}

.btn.primary:hover{
transform:translateY(-4px);
}

.btn.ghost{
background:rgba(255,255,255,.15);
backdrop-filter:blur(10px);
color:white;
border:1px solid rgba(255,255,255,.3);
}

.btn.dark{
background:#222;
color:white;
}


/* ---------- SHOWCASE ---------- */

.video-showcase{
padding:90px 20px;
background:#10131d;
color:#fff;
}

.video-grid{
max-width:1200px;
margin:auto;
display:grid;
grid-template-columns:1fr 1fr;
gap:60px;
align-items:center;
}

.video-wrapper{
position:relative;
padding-top:56.25%;
border-radius:20px;
overflow:hidden;
box-shadow:0 30px 60px rgba(0,0,0,.35);
}

.video-wrapper iframe{
position:absolute;
inset:0;
width:100%;
height:100%;
border:0;
}

.feature{
display:flex;
gap:20px;
margin-bottom:35px;
align-items:flex-start;
}

.icon{
font-size:36px;
min-width:50px;
}

.feature h3{
margin-bottom:8px;
}


/* ---------- CTA ---------- */

.quote-cta{
background:#ececec;
text-align:center;
padding:70px 20px;
}

.quote-cta h2{
color:#222;
letter-spacing:4px;
margin-bottom:30px;
}


/* ---------- MOBILE ---------- */

@media(max-width:900px){

.vi-hero h1{
font-size:28px;
}

.video-grid{
grid-template-columns:1fr;
}

.hero-device{
width:220px;
}

}
.firstaid-hero{
margin:0;
min-height:520px;
position:relative;
display:flex;
align-items:center;
justify-content:center;
overflow:hidden;

background:
linear-gradient(rgba(255,255,255,.55),rgba(255,255,255,.55)),
url('/user/images/medical-bg.jpg');

background-size:cover;
background-position:center;
}

/* blur glass overlay feeling */
.firstaid-hero::before{
content:"";
position:absolute;
inset:0;
backdrop-filter:blur(5px);
}

.hero-wrap{
position:relative;
z-index:2;
max-width:1200px;
width:100%;
display:flex;
justify-content:space-between;
align-items:center;
padding:20px 20px;
gap:30px;
}

.hero-left{
flex:1;
text-align:center;
}

.hero-left h1{
font-size:72px;
font-weight:800;
color:white;
text-shadow:
0 4px 10px rgba(0,0,0,.15);
margin-bottom:12px;
}

.subtitle{
font-size:22px;
color:#174c66
font-weight:400;
margin-bottom:25px;
}

.cta-btn{
display:inline-block;
background:white;
padding:14px 32px;
border-radius:8px;
font-weight:700;
text-decoration:none;
color:#2c5f3f;
box-shadow:0 8px 20px rgba(0,0,0,.12);
transition:.3s;
}

.cta-btn:hover{
transform:translateY(-3px);
background:#eafdf4;
}


/* Logo card */
.hero-right{
flex:1;
display:flex;
justify-content:center;
}

.logo-card{
background:rgba(255,255,255,.25);
border:1px solid rgba(0,180,255,.35);
backdrop-filter:blur(10px);
padding:20px;
border-radius:8px;
box-shadow:0 20px 40px rgba(0,0,0,.12);
}

.logo-card img{
width:260px;
display:block;
}


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

.hero-wrap{
flex-direction:column;
text-align:center;
}

.hero-left h1{
font-size:48px;
}

.logo-card img{
width:180px;
}

}
.fa-feature{
background:#f4f4fa;
padding:80px 20px;
text-align:center;
}

.fa-feature h2{
font-size:42px;
color:#999;
margin-bottom:50px;
}

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

.feature-card{
padding:20px;
}

.feature-card .icon{
font-size:54px;
margin-bottom:15px;
}

.feature-card h3{
color:#31739c;
margin-bottom:10px;
}

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


/* ---------- HERO ---------- */

.firstaid-banner{
position:relative;
min-height:650px;

background:
linear-gradient(rgba(255,255,255,.55),rgba(255,255,255,.55)),
url('/user/images/medical-bg.jpg');

background-size:cover;
background-position:center;

display:flex;
align-items:center;
justify-content:center;
}

.firstaid-banner::before{
content:"";
position:absolute;
inset:0;
backdrop-filter:blur(4px);
}

.banner-content{
position:relative;
z-index:2;
max-width:1200px;
width:100%;
display:flex;
justify-content:space-between;
align-items:center;
padding:40px;
}

.left{
text-align:center;
flex:1;
}

.left h1{
font-size:72px;
font-weight:800;
color:#fff;
text-shadow:0 4px 12px rgba(0,0,0,.2);
margin-bottom:15px;
}

.left p{
font-size:24px;
margin-bottom:25px;
color:#ffffff;
font-weight:600;
}

.contact-btn{
display:inline-block;
padding:14px 30px;
background:#fff;
border-radius:8px;
text-decoration:none;
font-weight:700;
color:rgb(246, 248, 248);
box-shadow:0 8px 20px rgba(0,0,0,.12);
}

.right{
flex:1;
display:flex;
justify-content:center;
}

.right img{
width:260px;
}


/* ---------- MOBILE ---------- */

@media(max-width:900px){

.feature-grid{
grid-template-columns:1fr;
}

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

.left h1{
font-size:46px;
}

.right img{
width:180px;
}

}
.feature-section {
  padding: 60px 20px;
  background: #ffffff;
  text-align: center;
  font-family: sans-serif;
}

.feature-title {
  color: #22a8e8;
  font-size: 44px;
  font-weight: 800;
  letter-spacing: 4px;
  margin-bottom: 60px;
}

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

.feature-card {
  text-align: center;
}

.feature-icon {
  width: 64px;
  height: 64px;
  margin: 0 auto 20px;
  background: #22a8e8;
  color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 34px;
  font-weight: bold;
}

.feature-card h3 {
  color: #0099e5;
  font-size: 15px;
  line-height: 1.55;
  font-weight: 500;
  margin: 0 0 8px;
}

.feature-card p {
  color: #000000;
  font-size: 13px;
  line-height: 1.65;
  font-weight: 600;
  margin: 0;
}

@media (max-width: 768px) {
  .feature-grid {
    grid-template-columns: 1fr;
    gap: 50px;
  }

  .feature-title {
    font-size: 36px;
  }
}
.smart-forms-page {
  background: #fff;
  color: #333;
}

.sf-hero {
  min-height: 430px;
  background: linear-gradient(135deg, #ffe600, #fff000);
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  overflow: hidden;
}

.sf-logo img {
  width: 120px;
  margin-bottom: 35px;
}

.sf-hero h1 {
  font-size: 56px;
  color: #fff;
  font-weight: 900;
  margin: 0;
  letter-spacing: 1px;
}

.sf-hero p {
  color: #fff;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 2px;
}

.sf-feature {
  padding: 45px 20px 70px;
  text-align: center;
  background: #fff;
}

.sf-feature h2 {
  font-size: 28px;
  color: #555;
  font-weight: 900;
  margin-bottom: 35px;
}

.sf-feature-grid {
  max-width: 650px;
  margin: auto;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 35px 80px;
}

.sf-feature-item h3 {
  font-size: 13px;
  margin: 8px 0 4px;
  color: #333;
}

.sf-feature-item p {
  font-size: 10px;
  color: #777;
  margin: 0;
}

.sf-icon {
  font-size: 30px;
  color: #9be000;
  font-weight: bold;
}

.sf-video-section {
  padding: 0 20px 80px;
  background: linear-gradient(90deg, #fff000 0%, #fff000 25%, #fff 25%, #fff 75%, #fff000 75%);
  text-align: center;
}

.sf-video-card {
  max-width: 660px;
  margin: auto;
  background: #fff;
}

.sf-small-logo img {
  width: 120px;
}

.sf-small-logo p {
  font-size: 13px;
  font-weight: 700;
  margin: 0 0 10px;
}

.sf-video-cover {
  position: relative;
}

.sf-video-cover img {
  width: 100%;
  display: block;
}

.sf-video-cover h2 {
  position: absolute;
  inset: 0;
  display: flex;
  justify-content: center;
  align-items: center;
  color: #eee;
  font-size: 34px;
  font-weight: 900;
  text-shadow: 2px 2px 4px #000;
}

.sf-cta {
  padding: 100px 20px;
  text-align: center;
  background: linear-gradient(90deg, rgba(255,255,255,.9), rgba(240,240,240,.95));
}

.sf-cta h2 {
  font-size: 18px;
  color: #333;
  margin-bottom: 20px;
}

.sf-btn {
  display: inline-block;
  border: 1px solid #333;
  padding: 6px 18px;
  color: #333;
  font-size: 12px;
  text-decoration: none;
  background: #fff;
}

.sf-btn:hover {
  background: #ffe600;
  color: #111;
}

@media (max-width: 768px) {
  .sf-hero h1 {
    font-size: 38px;
  }

  .sf-feature-grid {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .sf-video-section {
    background: #fff000;
  }
}
.parcel-management-page {
  margin: 0;
  color: #222;
}

.pm-wrap {
  max-width: 980px;
  margin: auto;
  padding: 0 24px;
}

.pm-hero {
  min-height: 430px;
  background:
    linear-gradient(rgba(190, 72, 72, .78), rgba(190, 72, 72, .78)),
    url('/user/pages/images/parcel-bg.jpg') center/cover no-repeat;
  color: #fff;
  display: flex;
  align-items: center;
}

.pm-hero-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 50px;
}

.pm-hero h1 {
  font-size: 56px;
  line-height: 1.05;
  margin: 0 0 16px;
  font-weight: 900;
}

.pm-line {
  width: 250px;
  height: 1px;
  background: #fff;
  margin: 16px 0;
}

.pm-hero p {
  font-size: 14px;
  line-height: 1.5;
  max-width: 380px;
  font-weight: 700;
}

.pm-hero h3 {
  font-size: 14px;
  margin: 0 0 18px;
  font-weight: 800;
}

.pm-hero-image img {
  max-width: 300px;
  width: 100%;
  display: block;
  margin: auto;
}

.pm-btn {
  display: inline-block;
  text-decoration: none;
  border-radius: 4px;
  font-weight: 700;
  font-size: 12px;
  padding: 10px 18px;
}

.pm-btn-light {
  background: #fff;
  color: #111;
}

.pm-btn-dark {
  background: #222;
  color: #fff;
}

.pm-store-group {
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
}

.pm-feature {
  padding: 15px 20px 40px;
  background: #fff;
  text-align: center;
}

.pm-feature h2 {
  font-size: 34px;
  margin: 0 0 25px;
  font-weight: 500;
  color: #111;
}

.pm-feature-grid {
  max-width: 820px;
  margin: auto;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 28px 80px;
}

.pm-feature-item h3 {
  font-size: 18px;
  margin: 8px 0;
  font-weight: 500;
}

.pm-feature-item p {
  color: #777;
  font-size: 12px;
  line-height: 1.6;
  margin: 0;
}

.pm-icon {
  color: #e61852;
  font-size: 36px;
  line-height: 1;
}

.pm-cta {
  padding: 55px 20px 28px;
  text-align: center;
  color: #fff;
  background:
    linear-gradient(rgba(190, 72, 72, .76), rgba(190, 72, 72, .76)),
    url('/user/pages/images/parcel-bg.jpg') center/cover no-repeat;
}

.pm-cta h2 {
  font-size: 46px;
  margin: 0 0 8px;
  font-weight: 800;
  text-shadow: 0 3px 8px rgba(0,0,0,.25);
}

.pm-cta p {
  margin: 0 0 18px;
  font-size: 14px;
  font-weight: 700;
}

@media (max-width: 768px) {
  .pm-hero {
    padding: 70px 0;
  }

  .pm-hero-grid,
  .pm-feature-grid {
    grid-template-columns: 1fr;
  }

  .pm-hero h1 {
    font-size: 42px;
  }

  .pm-line {
    width: 100%;
  }

  .pm-cta h2 {
    font-size: 34px;
  }
}
#organic-composter-page {
  font-family: sans-serif;
  color: #222;
}

#organic-composter-page * {
  box-sizing: border-box;
}

#organic-composter-page .oc-container {
  max-width: 1120px;
  margin: 0 auto;
  padding: 0 24px;
}

#organic-composter-page .oc-hero {
  min-height: 420px;
  background:
    linear-gradient(rgba(7, 61, 31, .88), rgba(7, 61, 31, .88)),
    url('https://www.smartmachine.co.th/wp-content/uploads/2022/06/รูป4.png') center/cover no-repeat;
  display: flex;
  align-items: center;
  color: #fff;
}

#organic-composter-page .oc-hero-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 50px;
}

#organic-composter-page .oc-logo {
  width: 130px;
  margin-bottom: 10px;
}

#organic-composter-page h1 {
  font-size: 46px;
  line-height: 1;
  margin: 0 0 10px;
  font-weight: 900;
  letter-spacing: -1px;
}

#organic-composter-page .oc-subtitle,
#organic-composter-page .oc-quote {
  color: #fff;
  font-weight: 700;
  letter-spacing: 2px;
  font-size: 13px;
}

#organic-composter-page .oc-quote {
  margin-top: 30px;
}

#organic-composter-page .oc-product img {
  width: 100%;
  max-width: 430px;
  display: block;
  margin: auto;
}

#organic-composter-page .oc-feature {
  background: #fff;
  padding: 55px 0 60px;
}

#organic-composter-page .oc-feature-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 70px;
  align-items: center;
}

#organic-composter-page .oc-video-box {
  text-align: center;
}

#organic-composter-page .oc-mini-text {
  color: #555;
  font-size: 14px;
  margin-bottom: 12px;
}

#organic-composter-page .oc-video {
  position: relative;
  width: 100%;
  padding-bottom: 56.25%;
  background: #ddd;
  overflow: hidden;
}

#organic-composter-page .oc-video iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

#organic-composter-page .oc-btn {
  display: inline-block;
  margin-top: 18px;
  padding: 10px 28px;
  background: #147a38;
  color: #fff;
  border-radius: 30px;
  text-decoration: none;
  font-size: 13px;
  font-weight: 800;
}

#organic-composter-page .oc-feature-box h2 {
  text-align: center;
  color: #3f7c4d;
  font-size: 34px;
  margin: 0 0 40px;
  font-weight: 900;
}

#organic-composter-page .oc-feature-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 40px 50px;
  text-align: center;
}

#organic-composter-page .oc-icon {
  font-size: 42px;
  color: #18bd4b;
  margin-bottom: 12px;
}

#organic-composter-page .oc-item h3 {
  color: #18a944;
  margin: 0 0 10px;
  font-size: 17px;
}

#organic-composter-page .oc-item p {
  color: #555;
  font-size: 13px;
  line-height: 1.7;
  margin: 0;
}

#organic-composter-page .oc-cta {
  padding: 60px 0 50px;
  text-align: center;
  color: #fff;
  background:
    linear-gradient(rgba(5, 67, 31, .9), rgba(5, 67, 31, .9)),
    url('https://www.smartmachine.co.th/wp-content/uploads/2022/06/รูป3.png') center/cover no-repeat;
}

#organic-composter-page .oc-soil-logo {
  width: 120px;
  display: block;
  margin: 0 auto 12px;
}

#organic-composter-page .oc-btn-white {
  background: #fff;
  color: #147a38;
}

#organic-composter-page .oc-cta h2 {
  margin: 25px 0 0;
  font-size: 20px;
  color: #fff;
  font-weight: 900;
}

@media (max-width: 768px) {
  #organic-composter-page .oc-hero {
    padding: 70px 0;
    text-align: center;
  }

  #organic-composter-page .oc-hero-grid,
  #organic-composter-page .oc-feature-grid,
  #organic-composter-page .oc-feature-list {
    grid-template-columns: 1fr;
  }

  #organic-composter-page h1 {
    font-size: 36px;
  }

  #organic-composter-page .oc-feature-box h2 {
    font-size: 30px;
  }
}
/* key */
#smart-key-page {
  font-family: sans-serif;
  color: #222;
}

#smart-key-page * {
  box-sizing: border-box;
}

#smart-key-page .sk-container {
  max-width: 1050px;
  margin: 0 auto;
  padding: 0 24px;
}

#smart-key-page .sk-center {
  text-align: center;
}

#smart-key-page .sk-hero {
  min-height: 430px;
  display: flex;
  align-items: center;
  background:
    linear-gradient(rgba(0,0,0,.72), rgba(0,0,0,.72)),
    url('https://www.smartmachine.co.th/wp-content/uploads/2024/04/20344.jpg') center/cover no-repeat;
  color: #fff;
}

#smart-key-page .sk-logo {
  width: 760px;
  max-width: 90%;
  display: block;
  margin: 0 auto 30px;
}

#smart-key-page .sk-subtitle {
  font-size: 12px;
  letter-spacing: 4px;
  font-weight: 800;
  margin-bottom: 14px;
}

#smart-key-page .sk-actions {
  display: flex;
  justify-content: center;
  gap: 12px;
  flex-wrap: wrap;
}

#smart-key-page .sk-btn {
  display: inline-block;
  padding: 8px 16px;
  border-radius: 3px;
  text-decoration: none;
  font-size: 12px;
  font-weight: 800;
}

#smart-key-page .sk-btn-green {
  background: #8cbf22;
  color: #fff;
}

#smart-key-page .sk-btn-white {
  background: #fff;
  color: #111;
}

#smart-key-page .sk-intro {
  background: #f5f5f5;
  padding: 55px 0;
}

#smart-key-page .sk-intro-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 45px;
  align-items: center;
}

#smart-key-page .sk-intro h2 {
  font-size: 20px;
  margin: 0 0 15px;
  font-weight: 900;
}

#smart-key-page .sk-intro p {
  font-size: 13px;
  line-height: 1.7;
  color: #555;
}

#smart-key-page .sk-intro img {
  width: 100%;
  max-width: 420px;
  display: block;
  margin: auto;
}

#smart-key-page .sk-video {
  background: #fff;
  padding: 20px 0;
}

#smart-key-page .sk-video-frame {
  position: relative;
  width: 560px;
  max-width: 100%;
  margin: auto;
  padding-bottom: 31.5%;
  min-height: 260px;
  overflow: hidden;
  background: #ddd;
}

#smart-key-page .sk-video-frame iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

#smart-key-page .sk-feature {
  background: #fff;
  text-align: center;
  padding: 10px 0 55px;
}

#smart-key-page .sk-line {
  width: 230px;
  height: 1px;
  background: #111;
  margin: 20px auto;
}

#smart-key-page .sk-feature h2 {
  font-size: 26px;
  letter-spacing: 2px;
  margin: 0 0 30px;
}

#smart-key-page .sk-feature-grid {
  max-width: 680px;
  margin: auto;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 30px 80px;
}

#smart-key-page .sk-icon {
  font-size: 30px;
  margin-bottom: 8px;
}

#smart-key-page .sk-feature-item h3 {
  font-size: 13px;
  margin: 0 0 8px;
  font-weight: 800;
}

#smart-key-page .sk-feature-item p {
  font-size: 11px;
  line-height: 1.6;
  color: #666;
  margin: 0;
}

#smart-key-page .sk-cta {
  padding: 70px 0;
  color: #fff;
  background:
    linear-gradient(rgba(0,0,0,.62), rgba(0,0,0,.62)),
    url('https://www.smartmachine.co.th/wp-content/uploads/2024/04/2150911424.jpg') center/cover no-repeat;
}

#smart-key-page .sk-cta-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
  align-items: center;
}

#smart-key-page .sk-small-logo {
  width: 170px;
  max-width: 80%;
  margin-bottom: 12px;
}

#smart-key-page .sk-cta p {
  font-size: 13px;
  font-weight: 700;
}

#smart-key-page .sk-cta-text h2 {
  font-size: 30px;
  line-height: 1.2;
  margin: 0 0 15px;
  font-weight: 900;
}

#smart-key-page .sk-cta-text p {
  letter-spacing: 3px;
  line-height: 1.8;
}

@media (max-width: 768px) {
  #smart-key-page .sk-hero {
    min-height: 340px;
  }

  #smart-key-page .sk-intro-grid,
  #smart-key-page .sk-feature-grid,
  #smart-key-page .sk-cta-grid {
    grid-template-columns: 1fr;
    text-align: center;
  }

  #smart-key-page .sk-video-frame {
    padding-bottom: 56.25%;
    min-height: auto;
  }

  #smart-key-page .sk-cta-text h2 {
    font-size: 24px;
  }
}
/* Rebott */
#rebott-page {
  font-family:  sans-serif;
  background: #eaf4ff;
  color: #111827;
}

#rebott-page * {
  box-sizing: border-box;
}

#rebott-page .rb-container {
  max-width: 960px;
  margin: 0 auto;
  padding: 0 24px;
}

#rebott-page .rb-hero {
  min-height: 360px;
  padding: 48px 0 30px;
  background: #eaf4ff;
}

#rebott-page .rb-hero-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: start;
  gap: 70px;
}

#rebott-page .rb-text {
  padding-top: 28px;
}

#rebott-page .rb-text h1 {
  margin: 0;
  font-size: 28px;
  color: #1e9af0;
  font-weight: 900;
}

#rebott-page .rb-text h2 {
  margin: 4px 0 10px;
  font-size: 25px;
  line-height: 1.2;
  color: #111827;
  font-weight: 900;
}

#rebott-page .rb-text p {
  max-width: 330px;
  margin: 0 0 16px;
  font-size: 13px;
  line-height: 1.75;
  color: #111827;
}

#rebott-page .rb-text h3 {
  margin: 0 0 15px;
  color: #179245;
  font-size: 15px;
  font-weight: 900;
}

#rebott-page .rb-btn {
  display: inline-block;
  padding: 10px 18px;
  background: #1e9af0;
  color: #fff;
  border-radius: 6px;
  text-decoration: none;
  font-size: 13px;
  font-weight: 800;
  box-shadow: 0 8px 18px rgba(30, 154, 240, .22);
}

#rebott-page .rb-machine img {
  width: 220px;
  max-width: 100%;
  display: block;
  margin: 0 auto;
}

#rebott-page .rb-why {
  padding: 90px 0 70px;
  background: #eaf4ff;
}

#rebott-page .rb-why-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 85px;
}

#rebott-page .rb-machine-large img {
  width: 270px;
  max-width: 100%;
  display: block;
  margin: 0 auto;
}

#rebott-page .rb-feature h2 {
  margin: 0 0 4px;
  font-size: 22px;
  font-weight: 900;
}

#rebott-page .rb-subtitle {
  margin: 0 0 20px;
  color: #1e9af0;
  font-size: 13px;
  font-weight: 700;
}

#rebott-page .rb-card {
  display: flex;
  align-items: center;
  gap: 16px;
  width: 330px;
  max-width: 100%;
  min-height: 70px;
  margin-bottom: 14px;
  padding: 12px 18px;
  background: #fff;
  border-radius: 16px;
  box-shadow: 0 7px 18px rgba(49, 76, 108, .08);
}

#rebott-page .rb-icon {
  width: 48px;
  height: 48px;
  flex: 0 0 48px;
  display: grid;
  place-items: center;
  font-size: 28px;
  border-radius: 14px;
  background: #eaf4ff;
}

#rebott-page .rb-card h3 {
  margin: 0 0 4px;
  font-size: 17px;
  color: #1f2937;
  font-weight: 900;
}

#rebott-page .rb-card p {
  margin: 0;
  color: #1e9af0;
  font-size: 13px;
}

#rebott-page .rb-contact {
  padding: 70px 0;
  background: #fff;
  text-align: center;
}

#rebott-page .rb-contact h2 {
  margin: 0 0 8px;
  color: #111827;
  font-size: 28px;
  font-weight: 900;
}

#rebott-page .rb-contact p {
  margin: 0 0 20px;
  color: #64748b;
}

@media (max-width: 768px) {
  #rebott-page .rb-hero-grid,
  #rebott-page .rb-why-grid {
    grid-template-columns: 1fr;
    gap: 35px;
    text-align: center;
  }

  #rebott-page .rb-text p {
    margin-left: auto;
    margin-right: auto;
  }

  #rebott-page .rb-card {
    margin-left: auto;
    margin-right: auto;
    text-align: left;
  }

  #rebott-page .rb-why {
    padding-top: 50px;
  }
}
