:root {
  --black: #070707;
  --ink: #171717;
  --muted: #626262;
  --muted-2: #8a8a8a;
  --line: #e8e8e8;
  --soft: #f7f7f7;
  --white: #ffffff;
  --red: #d71920;
  --red-dark: #a90f15;
  --shadow: 0 20px 60px rgba(0, 0, 0, 0.09);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Poppins", Arial, sans-serif;
  color: var(--ink);
  background:
    radial-gradient(circle at top left, rgba(215, 25, 32, 0.07), transparent 26rem),
    var(--white);
  line-height: 1.6;
}

img {
  display: block;
  max-width: 100%;
}

a {
  color: inherit;
  text-decoration: none;
}

.container {
  width: min(1120px, calc(100% - 40px));
  margin: 0 auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(255, 255, 255, 0.9);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(18px);
}

.navbar {
  min-height: 76px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 22px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-weight: 700;
  letter-spacing: 0;
  white-space: nowrap;
}

.brand-mark {
  width: 38px;
  height: 38px;
  display: grid;
  place-items: center;
  color: var(--white);
  background: var(--black);
  border: 1px solid #2b2b2b;
  box-shadow: inset 0 -4px 0 var(--red);
  border-radius: 8px;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 26px;
  color: var(--muted);
  font-size: 14px;
  font-weight: 500;
}

.nav-links a {
  position: relative;
  padding: 26px 0;
  transition: color 180ms ease;
}

.nav-links a::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 18px;
  height: 2px;
  background: var(--red);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 180ms ease;
}

.nav-links a:hover,
.nav-links a.active {
  color: var(--black);
}

.nav-links a:hover::after,
.nav-links a.active::after {
  transform: scaleX(1);
}

.nav-toggle {
  display: none;
  width: 42px;
  height: 42px;
  border: 1px solid var(--line);
  background: var(--white);
  border-radius: 8px;
  padding: 10px;
}

.nav-toggle span {
  display: block;
  height: 2px;
  margin: 5px 0;
  background: var(--black);
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 22px;
  border: 1px solid var(--red);
  border-radius: 8px;
  color: var(--white);
  background: var(--red);
  font-weight: 600;
  font-size: 14px;
  box-shadow: 0 12px 26px rgba(215, 25, 32, 0.24);
  transition: transform 180ms ease, box-shadow 180ms ease, background 180ms ease;
}

.btn:hover {
  transform: translateY(-2px);
  background: var(--red-dark);
  box-shadow: 0 14px 30px rgba(215, 25, 32, 0.28);
}

.btn-small {
  min-height: 40px;
  padding: 0 16px;
}

.btn-ghost {
  color: var(--black);
  background: var(--white);
  border-color: var(--line);
  box-shadow: none;
}

.btn-ghost:hover {
  color: var(--white);
  border-color: var(--black);
  background: var(--black);
  box-shadow: none;
}

.hero {
  position: relative;
  padding: 84px 0 70px;
  background:
    linear-gradient(135deg, rgba(215, 25, 32, 0.08), transparent 36%),
    linear-gradient(180deg, var(--white), #fafafa);
  overflow: hidden;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background-image:
    linear-gradient(rgba(0, 0, 0, 0.045) 1px, transparent 1px),
    linear-gradient(90deg, rgba(0, 0, 0, 0.045) 1px, transparent 1px);
  background-size: 44px 44px;
  mask-image: linear-gradient(180deg, black, transparent 78%);
}

.hero-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(360px, 0.92fr);
  gap: 54px;
  align-items: center;
}

.eyebrow {
  margin: 0 0 14px;
  color: var(--red);
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.13em;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1 {
  max-width: 720px;
  margin-bottom: 18px;
  color: var(--black);
  font-size: clamp(36px, 5vw, 62px);
  line-height: 1.06;
  letter-spacing: 0;
}

h2 {
  margin-bottom: 16px;
  color: var(--black);
  font-size: clamp(26px, 3vw, 40px);
  line-height: 1.16;
}

.hero-rotator {
  margin-bottom: 18px;
  color: var(--muted);
  font-size: 20px;
  font-weight: 500;
  transition: opacity 180ms ease;
}

.hero-rotator span {
  color: var(--red);
  font-weight: 700;
}

.hero-text {
  max-width: 610px;
  margin-bottom: 28px;
  color: var(--muted);
  font-size: 16px;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

.trust-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 26px;
}

.trust-row span {
  padding: 8px 12px;
  border: 1px solid var(--line);
  border-radius: 999px;
  color: var(--muted);
  background: rgba(255, 255, 255, 0.72);
  font-size: 12px;
  font-weight: 600;
}

.slider-shell {
  position: relative;
}

.slider {
  position: relative;
  height: 430px;
  overflow: hidden;
  border: 1px solid rgba(0, 0, 0, 0.08);
  border-radius: 8px;
  background: var(--black);
  box-shadow: var(--shadow);
}

.slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transform: scale(1.02);
  transition: opacity 500ms ease, transform 800ms ease;
}

.slide.active {
  opacity: 1;
  transform: scale(1);
}

.slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.slide::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.05), rgba(0, 0, 0, 0.74));
}

.slide-caption {
  position: absolute;
  left: 24px;
  right: 24px;
  bottom: 24px;
  z-index: 2;
  color: var(--white);
}

.slide-caption span {
  display: block;
  margin-bottom: 6px;
  color: #ffb3b6;
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.12em;
}

.slide-caption strong {
  display: block;
  max-width: 430px;
  font-size: 24px;
  line-height: 1.2;
}

.slider-dots {
  display: flex;
  gap: 8px;
  justify-content: center;
  margin-top: 16px;
}

.dot {
  width: 28px;
  height: 4px;
  border: 0;
  border-radius: 999px;
  background: #c9c9c9;
  cursor: pointer;
}

.dot.active {
  background: var(--red);
}

.section {
  padding: 78px 0;
  border: 1px solid var(--line);
  color: var(--black);
}

.section-heading {
  max-width: 640px;
  margin-bottom: 28px;
}

.services-preview {
  padding-top: 0;
}

.mini-service-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.mini-card {
  position: relative;
  min-height: 190px;
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background:
    linear-gradient(145deg, #ffffff, #fbfbfb);
  overflow: hidden;
  transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease;
}

.mini-card::after {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 4px;
  height: 100%;
  background: var(--red);
  transform: scaleY(0.24);
  transform-origin: top;
  transition: transform 180ms ease;
}

.mini-card:hover {
  transform: translateY(-4px);
  border-color: rgba(215, 25, 32, 0.38);
  box-shadow: var(--shadow);
}

.mini-card:hover::after {
  transform: scaleY(1);
}

.mini-card span {
  display: block;
  margin-bottom: 28px;
  color: var(--red);
  font-weight: 700;
}

.mini-card strong {
  display: block;
  margin-bottom: 8px;
  color: var(--black);
  font-size: 20px;
}

.mini-card p {
  margin-bottom: 0;
  color: var(--muted);
}

.section-muted {
  background: var(--soft);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.intro-grid {
  display: grid;
  grid-template-columns: 0.9fr 1fr;
  gap: 56px;
  align-items: start;
}

.intro-grid p:last-child {
  color: var(--muted);
  font-size: 17px;
}

.feature-strip {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--line);
  box-shadow: 0 12px 34px rgba(0, 0, 0, 0.04);
}

.feature-strip > div {
  padding: 30px;
  background: var(--white);
}

.metric {
  display: block;
  margin-bottom: 10px;
  color: var(--black);
  font-size: 30px;
  font-weight: 700;
}

.feature-strip p {
  margin-bottom: 0;
  color: var(--muted);
}

.page-banner {
  position: relative;
  padding: 64px 0;
  color: var(--white);
  background:
    linear-gradient(135deg, rgba(215, 25, 32, 0.24), transparent 42%),
    var(--black);
  overflow: hidden;
}

.page-banner::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.06) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.06) 1px, transparent 1px);
  background-size: 42px 42px;
  mask-image: linear-gradient(90deg, black, transparent 80%);
}

.page-banner .container {
  position: relative;
  z-index: 1;
}

.page-banner h1 {
  margin-bottom: 0;
  color: var(--white);
  font-size: clamp(34px, 4vw, 54px);
}

.banner-copy {
  max-width: 680px;
  margin: 18px 0 0;
  color: #d7d7d7;
  font-size: 16px;
}

.banner-grid {
  display: grid;
  grid-template-columns: 1fr 360px;
  gap: 40px;
  align-items: center;
}

.banner-grid img {
  width: 100%;
  height: 210px;
  object-fit: cover;
  border-radius: 8px;
  border: 1px solid rgba(255, 255, 255, 0.16);
}

.service-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}

.service-card {
  position: relative;
  min-height: 260px;
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(250, 250, 250, 0.98));
  overflow: hidden;
  transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease;
}

.service-card::before {
  content: "";
  position: absolute;
  inset: 0 0 auto;
  height: 3px;
  background: var(--red);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 180ms ease;
}

.service-card:hover {
  transform: translateY(-4px);
  border-color: rgba(215, 25, 32, 0.4);
  box-shadow: var(--shadow);
}

.service-card:hover::before {
  transform: scaleX(1);
}

.service-number {
  display: inline-flex;
  margin-bottom: 28px;
  color: var(--red);
  font-weight: 700;
}

.service-card h2 {
  margin-bottom: 12px;
  font-size: 22px;
}

.service-card p {
  color: var(--muted);
}

.service-card a {
  color: var(--red);
  font-weight: 700;
  font-size: 14px;
}

.founder-grid,
.contact-grid {
  display: grid;
  grid-template-columns: 0.85fr 1fr;
  gap: 54px;
  align-items: center;
}

.founder-image img {
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  border-radius: 8px;
  box-shadow: var(--shadow);
  border-style: var(--red-dark);
}

.founder-copy p {
  color: var(--muted);
}

.founder-copy .btn {
  margin-top: 10px;
}

.faq-wrap {
  max-width: 860px;
}

.faq-item {
  border-bottom: 1px solid var(--line);
  background: var(--white);
}

.faq-question {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 24px 0;
  border: 0;
  color: var(--black);
  background: transparent;
  font: inherit;
  font-weight: 600;
  text-align: left;
  cursor: pointer;
}

.faq-question span {
  position: relative;
  flex: 0 0 22px;
  width: 22px;
  height: 22px;
}

.faq-question span::before,
.faq-question span::after {
  content: "";
  position: absolute;
  top: 10px;
  left: 3px;
  width: 16px;
  height: 2px;
  background: var(--red);
  transition: transform 180ms ease;
}

.faq-question span::after {
  transform: rotate(90deg);
}

.faq-item.open .faq-question span::after {
  transform: rotate(0);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 260ms ease;
}

.faq-answer p {
  margin-bottom: 24px;
  color: var(--muted);
}

.contact-panel {
  padding: 34px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background:
    linear-gradient(180deg, #ffffff, #fbfbfb);
  box-shadow: var(--shadow);
}

.contact-list {
  display: grid;
  gap: 18px;
  margin: 26px 0;
}

.contact-list p {
  margin: 0;
}

.contact-list strong {
  display: block;
  margin-bottom: 5px;
  color: var(--black);
}

.contact-list span {
  display: block;
  color: var(--muted);
}

.contact-list a {
  color: var(--red);
  font-weight: 600;
}

.map-frame {
  min-height: 430px;
  border: 1px solid var(--line);
  border-radius: 8px;
  overflow: hidden;
  box-shadow: var(--shadow);
}

.map-frame iframe {
  width: 100%;
  height: 430px;
  border: 0;
}

.site-footer {
  padding: 28px 0;
  color: #d9d9d9;
  background: var(--black);
}

.floating-whatsapp {
  position: fixed;
  right: 22px;
  bottom: 22px;
  z-index: 60;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 0 18px;
  border-radius: 999px;
  color: var(--white);
  background: var(--black);
  border: 1px solid rgba(255, 255, 255, 0.16);
  box-shadow: 0 14px 34px rgba(0, 0, 0, 0.22);
  font-size: 13px;
  font-weight: 700;
  transition: transform 180ms ease, background 180ms ease;
}

.floating-whatsapp:hover {
  transform: translateY(-2px);
  background: var(--red);
}

.footer-grid {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.footer-grid p {
  margin: 0;
}

.footer-grid a {
  color: var(--white);
  font-weight: 600;
}

.reveal {
  opacity: 0;
  transform: translateY(18px);
  animation: reveal 650ms ease forwards;
}

@keyframes reveal {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@media (max-width: 920px) {
  .navbar {
    flex-wrap: wrap;
  }

  .nav-toggle {
    display: block;
    margin-left: auto;
  }

  .navbar > .btn-small {
    display: none;
  }

  .nav-links {
    width: 100%;
    display: none;
    flex-direction: column;
    align-items: flex-start;
    gap: 0;
    padding: 8px 0 18px;
  }

  .nav-links.open {
    display: flex;
  }

  .nav-links a {
    width: 100%;
    padding: 12px 0;
  }

  .nav-links a::after {
    bottom: 6px;
    right: auto;
    width: 42px;
  }

  .hero-grid,
  .intro-grid,
  .banner-grid,
  .founder-grid,
  .contact-grid {
    grid-template-columns: 1fr;
  }

  .slider {
    height: 360px;
  }

  .service-grid,
  .feature-strip,
  .mini-service-grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 620px) {
  .container {
    width: min(100% - 28px, 1120px);
  }

  .brand span:last-child {
    max-width: 190px;
    white-space: normal;
    line-height: 1.2;
  }

  .hero,
  .section {
    padding: 52px 0;
  }

  .page-banner {
    padding: 44px 0;
  }

  h1 {
    font-size: 36px;
  }

  .hero-rotator {
    font-size: 17px;
  }

  .slider {
    height: 310px;
  }

  .slide-caption strong {
    font-size: 20px;
  }

  .service-grid,
  .feature-strip,
  .mini-service-grid {
    grid-template-columns: 1fr;
  }

  .floating-whatsapp {
    right: 14px;
    bottom: 14px;
  }

  .service-card {
    min-height: auto;
  }

  .contact-panel {
    padding: 24px;
  }

  .footer-grid {
    align-items: flex-start;
    flex-direction: column;
  }
}

/* BANNER */
.rating-banner{
    background:linear-gradient(90deg,#ff7a00,#ff9a3c);
    color:white;
    text-align:center;
    padding:60px 20px;
}

/* MAIN */
.rating-main{
    padding:80px 8%;
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(250px,1fr));
    gap:25px;
    background:#f5f5f5;
}

/* CARD */
.rating-card{
    background:white;
    padding:25px;
    border-radius:12px;
    box-shadow:0 10px 25px rgba(0,0,0,0.08);
}

.stars{
    color:#ffb400;
    font-size:18px;
    margin-bottom:10px;
}

.rating-card p{
    color:#555;
    margin-bottom:15px;
}

.rating-card h4{
    font-weight:500;
}

/* CTA */
.rating-cta{
    text-align:center;
    padding:60px;
    background:#0b0b0b;
    color:white;
}

.rating-cta a{
    display:inline-block;
    margin-top:15px;
    padding:12px 25px;
    background:#25D366;
    color:white;
    border-radius:6px;
    text-decoration:none;
}