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

body{
  font-family:'Poppins', sans-serif;
  background:#f8f2e7;
  color:#111827;
}

a{
  text-decoration:none;
  color:inherit;
}

/* TOP BAR */

.topbar{
  background:#b91c1c;
  color:white;
  display:flex;
  justify-content:space-between;
  padding:10px 50px;
  font-size:14px;
}

.topbar-left,
.topbar-right{
  display:flex;
  gap:24px;
  align-items:center;
}

.topbar-right span{
  cursor:pointer;
  transition:0.3s;
}

.topbar-right span:hover{
  color:#fde8e8;
}

/* NAVBAR */

nav{
  background:white;
  display:flex;
  justify-content:space-between;
  align-items:center;
  padding:16px 50px;
  box-shadow:0 2px 12px rgba(0,0,0,0.08);
  position:sticky;
  top:0;
  z-index:100;
}

.logo{
  font-size:clamp(22px,2.2vw,32px);
  font-weight:800;
  color:#1a0505;
  letter-spacing:-1px;
  white-space:nowrap;
}

.logo span{
  color:#b91c1c;
}

.menu{
  display:flex;
  gap:clamp(10px,1.4vw,28px);
  align-items:center;
  flex-wrap:wrap;
  justify-content:flex-end;
}

.menu a{
  font-weight:600;
  font-size:clamp(12px,1vw,15px);
  color:#1a0505;
  transition:0.3s;
  white-space:nowrap;
}

.menu a:hover{
  color:#b91c1c;
}

/* BUTTONS */

.btn{
  background:#b91c1c;
  color:white;
  padding:16px 36px;
  border-radius:12px;
  font-weight:700;
  font-size:16px;
  transition:0.3s;
  display:inline-block;
  cursor:pointer;
  border:none;
}

.btn:hover{
  background:#991b1b;
  transform:translateY(-2px);
  box-shadow:0 6px 18px rgba(185,28,28,0.4);
}

.btn-beige{
  background:#f0e8d8;
  color:#b91c1c;
  padding:16px 36px;
  border-radius:12px;
  font-weight:700;
  font-size:16px;
  transition:0.3s;
  display:inline-block;
  cursor:pointer;
}

.btn-beige:hover{
  background:#e5d8c0;
  transform:translateY(-2px);
}

.btn-secondary{
  border:3px solid white;
  color:white;
  padding:16px 36px;
  border-radius:12px;
  font-weight:700;
  font-size:16px;
  transition:0.3s;
  display:inline-block;
  cursor:pointer;
}

.btn-secondary:hover{
  background:rgba(255,255,255,0.15);
  transform:translateY(-2px);
}

/* HERO */

.hero{
  height:72vh;
  position:relative;
  overflow:hidden;
  display:flex;
  align-items:center;
  justify-content:center;
  padding:0 50px;
  color:white;
  text-align:center;
}

.hero-video{
  position:absolute;
  top:0;
  left:0;
  width:100%;
  height:100%;
  object-fit:cover;
  z-index:0;
}

.hero-overlay{
  position:absolute;
  top:0;
  left:0;
  width:100%;
  height:100%;
  background:linear-gradient(to right, rgba(120,10,10,0.75), rgba(120,10,10,0.4));
  z-index:1;
}

.hero-content{
  max-width:700px;
  position:relative;
  z-index:2;
}

.subtitle{
  text-transform:uppercase;
  letter-spacing:3px;
  margin-bottom:16px;
  font-size:13px;
  color:#f0e8d8;
}

.hero h1{
  font-size:clamp(28px,4.5vw,58px);
  line-height:1.15;
  margin-bottom:20px;
  font-weight:800;
}

.hero h1 span{
  color:#fca5a5;
}

.hero p{
  font-size:clamp(14px,1.4vw,18px);
  line-height:1.8;
  margin-bottom:30px;
  color:#fde8e8;
}

.hero-buttons{
  display:flex;
  gap:16px;
  flex-wrap:wrap;
  justify-content:center;
}

.green{ color:#16a34a; }
.red{   color:#dc2626; }
.blue{  color:#1e40af; }

/* COMBINED SECTION */

.combined{
  margin-top:-50px;
  padding:0 50px;
  position:relative;
  z-index:10;
}

.combined-container{
  background:white;
  border-radius:24px;
  padding:36px 30px;
  display:grid;
  grid-template-columns:repeat(6,1fr);
  gap:16px;
  box-shadow:0 16px 40px rgba(0,0,0,0.08);
}

.service{
  text-align:center;
  padding:10px 6px;
  border-right:1px solid #f0e8d8;
}

.service:last-child{
  border-right:none;
}

.service-icon{
  width:68px;
  height:68px;
  border-radius:50%;
  background:#fff0f0;
  border:3px solid #b91c1c;
  display:flex;
  justify-content:center;
  align-items:center;
  margin:0 auto 14px;
  font-size:28px;
}

.service-icon.ok   { background:#f0fff4; border-color:#16a34a; }
.service-icon.warn { background:#fff0f0; border-color:#dc2626; }
.service-icon.info { background:#eff6ff; border-color:#1e40af; }

.service h3{
  margin-bottom:6px;
  font-size:16px;
  color:#1a0505;
}

.service p{
  color:#6b7280;
  line-height:1.5;
  font-size:13px;
}

/* ABOUT */

.about{
  padding:70px 50px;
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:50px;
  align-items:center;
}

.about img{
  width:100%;
  border-radius:24px;
  box-shadow:0 16px 36px rgba(0,0,0,0.14);
}

.section-subtitle{
  color:#b91c1c;
  font-weight:700;
  margin-bottom:14px;
  text-transform:uppercase;
  letter-spacing:3px;
  font-size:13px;
}

.about h2{
  font-size:46px;
  line-height:1.2;
  margin-bottom:18px;
  color:#1a0505;
}

.about h2 span{
  color:#b91c1c;
}

.about p{
  color:#6b7280;
  line-height:1.8;
  margin-bottom:28px;
  font-size:17px;
}

.about-buttons{
  display:flex;
  gap:16px;
  flex-wrap:wrap;
}

/* STATS */

.stats{
  padding:40px 50px 70px;
}

.stats-container{
  background:#b91c1c;
  border-radius:24px;
  padding:42px 30px;
  display:grid;
  grid-template-columns:repeat(4,1fr);
  text-align:center;
  box-shadow:0 10px 36px rgba(185,28,28,0.3);
}

.stat h2{
  font-size:clamp(32px,3.5vw,50px);
  color:white;
  margin-bottom:8px;
  font-weight:800;
}

.stat p{
  color:rgba(255,255,255,0.8);
  font-size:15px;
  font-weight:500;
}

.stat{
  border-right:1px solid rgba(255,255,255,0.2);
  padding:0 16px;
}

.stat:last-child{
  border-right:none;
}

/* FOOTER */

footer{
  background:#b91c1c;
  color:white;
  padding:50px 50px 36px;
  text-align:center;
}

footer h2{
  font-size:38px;
  font-weight:800;
  margin-bottom:8px;
  letter-spacing:-1px;
}

footer h2 span{
  color:#f0e8d8;
}

.footer-tagline{
  color:rgba(255,255,255,0.85);
  margin-bottom:6px;
  font-size:17px;
}

.footer-contact{
  color:rgba(255,255,255,0.65);
  margin-bottom:28px;
  font-size:14px;
}

.footer-buttons{
  display:flex;
  gap:16px;
  justify-content:center;
  flex-wrap:wrap;
}

.btn-outline{
  border:3px solid white;
  color:white;
  padding:16px 36px;
  border-radius:12px;
  font-weight:700;
  font-size:16px;
  transition:0.3s;
  display:inline-block;
  cursor:pointer;
}

.btn-outline:hover{
  background:rgba(255,255,255,0.15);
  transform:translateY(-2px);
}

.footer-copy{
  margin-top:36px;
  padding-top:24px;
  border-top:1px solid rgba(255,255,255,0.2);
  color:rgba(255,255,255,0.5);
  font-size:13px;
}

/* PROBLEM SECTION */

.problem{
  padding:70px 50px;
  background:white;
}

.problem-label{
  color:#b91c1c;
  font-weight:700;
  text-transform:uppercase;
  letter-spacing:3px;
  font-size:13px;
  margin-bottom:28px;
}

.problem-grid{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:60px;
  align-items:center;
}

.problem-grid img{
  width:100%;
  border-radius:20px;
  box-shadow:0 16px 36px rgba(0,0,0,0.12);
}

.problem-content p{
  color:#374151;
  line-height:1.8;
  font-size:16px;
  margin-bottom:16px;
}

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

.problem-stats li{
  padding:10px 0;
  font-size:16px;
  color:#374151;
  border-bottom:1px solid #f0e8d8;
  line-height:1.5;
}

.problem-stats li strong{
  color:#b91c1c;
}

.problem-quote{
  background:#fff0f0;
  border-left:4px solid #b91c1c;
  padding:16px 20px;
  border-radius:8px;
  color:#374151;
  font-size:15px;
  line-height:1.7;
  font-style:italic;
}

/* REMOTE SUPPORT SECTION */

.remote{
  padding:70px 50px;
  background:#f8f2e7;
}

.remote-grid{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:60px;
  align-items:center;
}

.remote-grid img{
  width:100%;
  border-radius:20px;
  box-shadow:0 16px 36px rgba(0,0,0,0.12);
}

.remote-label{
  color:#b91c1c;
  font-weight:700;
  text-transform:uppercase;
  letter-spacing:3px;
  font-size:13px;
  margin-bottom:16px;
}

.remote-content h2{
  font-size:36px;
  font-weight:800;
  color:#1a0505;
  margin-bottom:16px;
  line-height:1.2;
}

.remote-content h3{
  font-size:18px;
  font-weight:700;
  color:#1a0505;
  margin-bottom:12px;
}

.remote-content p{
  color:#6b7280;
  line-height:1.8;
  font-size:16px;
  margin-bottom:14px;
}

/* SOMEONE NARRATIVE SECTION */

.someone-narrative{
  padding:70px 50px;
  background:white;
}

.someone-narrative-grid{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:60px;
  align-items:center;
}

.someone-narrative-grid img{
  width:100%;
  border-radius:20px;
  box-shadow:0 16px 36px rgba(0,0,0,0.12);
}

.someone-narrative-label{
  color:#b91c1c;
  font-weight:700;
  text-transform:uppercase;
  letter-spacing:3px;
  font-size:13px;
  margin-bottom:16px;
}

.someone-narrative h2{
  font-size:36px;
  font-weight:800;
  color:#1a0505;
  margin-bottom:20px;
  line-height:1.2;
}

.someone-narrative-content p{
  color:#374151;
  line-height:1.8;
  font-size:16px;
  margin-bottom:16px;
}

.someone-list{
  list-style:none;
  margin:16px 0 20px;
  border-left:3px solid #b91c1c;
  padding-left:20px;
}

.someone-list li{
  font-size:17px;
  color:#374151;
  padding:5px 0;
  font-weight:500;
}

.someone-list li.bold{
  font-weight:800;
  color:#b91c1c;
  font-size:18px;
}

/* PROMISE SECTION */

.promise{
  padding:60px 50px;
  text-align:center;
  background:white;
}

.promise-label{
  color:#b91c1c;
  font-weight:700;
  text-transform:uppercase;
  letter-spacing:3px;
  font-size:13px;
  margin-bottom:10px;
}

.promise h2{
  font-size:38px;
  color:#1a0505;
  margin-bottom:40px;
  font-weight:800;
}

.promise-grid{
  display:grid;
  grid-template-columns:repeat(4,1fr);
  gap:24px;
  margin-bottom:40px;
  max-width:1100px;
  margin-left:auto;
  margin-right:auto;
}

.promise-card{
  background:#fafafa;
  border-radius:20px;
  padding:36px 20px;
  border:1px solid #f0e8d8;
  transition:0.3s;
}

.promise-card:hover{
  box-shadow:0 8px 28px rgba(185,28,28,0.12);
  transform:translateY(-4px);
}

.promise-card-icon{
  width:80px;
  height:80px;
  border-radius:50%;
  background:#fff0f0;
  border:3px solid #b91c1c;
  display:flex;
  justify-content:center;
  align-items:center;
  margin:0 auto 20px;
  font-size:34px;
}

.promise-card h3{
  font-size:22px;
  color:#1a0505;
  margin-bottom:12px;
  font-weight:700;
}

.promise-card p{
  color:#6b7280;
  line-height:1.7;
  font-size:15px;
}

/* ABOUT DETAILED */

.about-detail{
  padding:60px 50px;
  background:#f8f2e7;
}

.about-detail-label{
  color:#b91c1c;
  font-weight:700;
  text-transform:uppercase;
  letter-spacing:3px;
  font-size:13px;
  margin-bottom:28px;
}

.about-detail-grid{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:50px;
  align-items:start;
  margin-bottom:50px;
}

.about-detail-grid img{
  width:100%;
  border-radius:20px;
  box-shadow:0 16px 36px rgba(0,0,0,0.14);
}

.about-detail-content p{
  color:#374151;
  line-height:1.8;
  font-size:16px;
  margin-bottom:16px;
}

.about-detail-content ul{
  margin:8px 0 16px 24px;
  color:#374151;
  line-height:2;
  font-size:15px;
}

.about-detail-content strong{
  color:#1a0505;
}

.knowledge-box{
  background:white;
  border-radius:24px;
  padding:50px;
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:50px;
  align-items:center;
  box-shadow:0 8px 30px rgba(0,0,0,0.06);
}

.knowledge-box img{
  width:100%;
  border-radius:20px;
}

.knowledge-content h3{
  font-size:20px;
  font-weight:700;
  color:#b91c1c;
  margin-bottom:16px;
  text-transform:uppercase;
  letter-spacing:2px;
}

.knowledge-content p{
  color:#6b7280;
  line-height:1.8;
  font-size:15px;
  margin-bottom:14px;
}

.knowledge-content ul{
  margin:8px 0 16px 24px;
  color:#6b7280;
  line-height:2;
  font-size:15px;
}

/* MEMBERSHIP */

.membership{
  padding:60px 50px;
  background:white;
}

.membership-label{
  color:#b91c1c;
  font-weight:700;
  text-transform:uppercase;
  letter-spacing:3px;
  font-size:13px;
  margin-bottom:28px;
}

.membership-grid{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:50px;
  align-items:center;
  max-width:1100px;
  margin:0 auto;
}

.membership-grid img{
  width:100%;
  border-radius:20px;
  box-shadow:0 16px 36px rgba(0,0,0,0.14);
}

.membership-price{
  font-size:52px;
  font-weight:800;
  color:#b91c1c;
  line-height:1;
  margin-bottom:6px;
}

.membership-price span{
  font-size:18px;
  color:#6b7280;
  font-weight:500;
}

.membership-tagline{
  font-size:17px;
  font-weight:700;
  color:#1a0505;
  margin-bottom:16px;
}

.membership-promise{
  background:#fff0f0;
  border-left:4px solid #b91c1c;
  padding:14px 18px;
  border-radius:8px;
  color:#374151;
  font-size:15px;
  margin-bottom:20px;
  line-height:1.6;
}

.membership-list{
  list-style:none;
  margin-bottom:24px;
}

.membership-list li{
  padding:9px 0;
  color:#374151;
  font-size:15px;
  border-bottom:1px solid #f0e8d8;
  display:flex;
  align-items:center;
  gap:10px;
}

.membership-list li::before{
  content:"✓";
  color:#b91c1c;
  font-weight:800;
  font-size:16px;
  flex-shrink:0;
}

.membership-note{
  color:#6b7280;
  font-size:14px;
  line-height:1.7;
  margin-bottom:24px;
}

/* SOMEONE IS ALWAYSHOME */

.someone{
  padding:60px 50px;
  background:#f8f2e7;
}

.someone-label{
  color:#b91c1c;
  font-weight:700;
  text-transform:uppercase;
  letter-spacing:3px;
  font-size:13px;
  margin-bottom:28px;
  text-align:center;
}

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

.someone-card{
  background:white;
  border-radius:20px;
  overflow:hidden;
  box-shadow:0 8px 28px rgba(0,0,0,0.08);
  transition:0.3s;
}

.someone-card:hover{
  transform:translateY(-4px);
  box-shadow:0 16px 40px rgba(185,28,28,0.15);
}

.someone-card-icon{
  width:100%;
  height:180px;
  background:linear-gradient(135deg,#b91c1c,#7f1d1d);
  display:flex;
  align-items:center;
  justify-content:center;
  font-size:64px;
}

.someone-card-body{
  padding:28px 24px;
  text-align:center;
}

.someone-card-body h3{
  font-size:22px;
  font-weight:700;
  color:#1a0505;
  margin-bottom:14px;
}

.someone-card-body p{
  color:#6b7280;
  line-height:1.7;
  font-size:14px;
  margin-bottom:10px;
}

.someone-card-body .highlight{
  color:#1a0505;
  font-weight:700;
  font-size:14px;
  font-style:italic;
}

/* RESPONSIVE — tablet landscape */

@media(max-width:1100px){

  nav{ padding:14px 24px; }

  .topbar{
    flex-direction:column;
    gap:6px;
    padding:10px 20px;
    text-align:center;
    font-size:13px;
  }

  .topbar-left,
  .topbar-right{ flex-wrap:wrap; justify-content:center; gap:12px; }

  .combined{ padding:0 24px; }
  .combined-container{ grid-template-columns:repeat(3,1fr); }
  .service{ border-right:none; border-bottom:1px solid #f0e8d8; padding-bottom:14px; }
  .service:nth-last-child(-n+3){ border-bottom:none; }

  .problem,
  .remote,
  .someone-narrative,
  .promise,
  .about-detail,
  .membership,
  .someone{ padding:50px 24px; }

  .about{ padding:50px 24px; }
  .stats{ padding:40px 24px 50px; }
  footer{ padding:40px 24px 28px; }

  .about{ grid-template-columns:1fr; }
  .about-buttons{ justify-content:center; }

  .stats-container{ grid-template-columns:repeat(2,1fr); }
  .stat{
    border-right:none;
    border-bottom:1px solid rgba(255,255,255,0.2);
    padding:16px 0;
  }
  .stat:nth-child(2n){ border-right:none; }
  .stat:last-child{ border-bottom:none; }

  .problem-grid,
  .remote-grid,
  .someone-narrative-grid,
  .about-detail-grid,
  .membership-grid,
  .knowledge-box{ grid-template-columns:1fr; }

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

  .someone-grid{ grid-template-columns:repeat(2,1fr); }
  .someone-card:last-child{ grid-column:1 / -1; max-width:420px; margin:0 auto; }

}

/* RESPONSIVE — tablet portrait / large phones */

@media(max-width:768px){

  nav{
    flex-direction:column;
    gap:12px;
    padding:14px 16px;
  }

  .menu{
    justify-content:center;
    gap:10px;
  }

  .menu a{ font-size:13px; }

  .btn{ padding:12px 24px; font-size:14px; }
  .btn-beige{ padding:12px 24px; font-size:14px; }
  .btn-secondary{ padding:12px 24px; font-size:14px; }
  .btn-outline{ padding:12px 24px; font-size:14px; }

  .hero{ padding:50px 20px; min-height:70vh; height:auto; }
  .hero p{ font-size:15px; }

  .combined{ padding:0 16px; margin-top:-30px; }
  .combined-container{ grid-template-columns:repeat(2,1fr); padding:24px 16px; }
  .service:nth-last-child(-n+3){ border-bottom:1px solid #f0e8d8; }
  .service:nth-last-child(-n+2){ border-bottom:none; }

  .problem,
  .remote,
  .someone-narrative,
  .promise,
  .about-detail,
  .membership,
  .someone{ padding:40px 16px; }

  .about{ padding:40px 16px; }
  .stats{ padding:30px 16px 40px; }
  footer{ padding:36px 16px 24px; }

  .stats-container{ grid-template-columns:repeat(2,1fr); padding:28px 16px; }

  .promise-grid{ gap:16px; }
  .promise-card{ padding:24px 14px; }
  .promise-card h3{ font-size:18px; }

  .someone-grid{ grid-template-columns:1fr; }
  .someone-card:last-child{ grid-column:auto; max-width:none; }

  .someone-card-icon{ height:140px; font-size:52px; }

  .membership-price{ font-size:40px; }

  footer h2{ font-size:30px; }

  .remote-content h2,
  .someone-narrative h2{ font-size:28px; }

  .about h2{ font-size:32px; }

  .knowledge-box{ padding:30px 20px; }

}

/* RESPONSIVE — phones */

@media(max-width:480px){

  .topbar{ font-size:12px; gap:4px; }
  .topbar-left{ gap:8px; }

  .logo{ font-size:22px; }

  .combined-container{ grid-template-columns:1fr; }
  .service:nth-last-child(-n+2){ border-bottom:1px solid #f0e8d8; }
  .service:last-child{ border-bottom:none; }

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

  .stats-container{ grid-template-columns:1fr; }
  .stat{ border-right:none; border-bottom:1px solid rgba(255,255,255,0.2); padding:14px 0; }

  .hero{ min-height:60vh; }

  .membership-price{ font-size:34px; }

  .footer-buttons{ flex-direction:column; align-items:center; }

}
