:root {
  --brand-blue: #1f4e79;
  --brand-sky: #2f7fb0;
  --brand-green: #25d366;
  --text: #ffffff;
  --bg: #0e1f39;
  --surface: rgba(255, 255, 255, 0.07);
  --shadow: 0 14px 40px rgba(0, 0, 0, 0.22);
  --radius: 18px;
  --gap: 24px;
}

* {
  box-sizing: border-box;
}

html,
body {
  margin: 0;
  padding: 0;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Arial, sans-serif;
  color: #f2f7ff;
  background: radial-gradient(circle at top, rgba(47, 127, 176, 0.8), transparent 55%),
    linear-gradient(180deg, #0b152a 0%, #0b152a 55%, #0f2040 100%);
  min-height: 100vh;
}

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

button,
a.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  border: none;
  border-radius: 46px;
  padding: 14px 20px;
  font-weight: 700;
  cursor: pointer;
  transition: transform 120ms ease, box-shadow 120ms ease, filter 120ms ease;
  text-decoration: none;
}

button:focus,
a.btn:focus {
  outline: 3px solid rgba(255, 255, 255, 0.55);
  outline-offset: 3px;
}

a.btn-primary {
  background: linear-gradient(135deg, var(--brand-green), #10b159);
  color: var(--bg);
  box-shadow: 0 18px 30px rgba(0, 0, 0, 0.25);
}

a.btn-primary:hover {
  transform: translateY(-1px);
  box-shadow: 0 22px 36px rgba(0, 0, 0, 0.32);
}

a.btn-secondary {
  background: rgba(255, 255, 255, 0.18);
  color: var(--text);
  border: 1px solid rgba(255, 255, 255, 0.32);
}

a.btn-secondary:hover {
  background: rgba(255, 255, 255, 0.25);
}

.site-header {
  padding: 36px 22px 0;
  position: relative;
  overflow: hidden;
}

.header-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding-bottom: 40px;
}

.logo {
  max-width: 320px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 6px;
}

.logo h1 {
  margin: 0;
  font-size: 22px;
  line-height: 1.1;
  letter-spacing: -0.4px;
}

.logo span {
  display: block;
  font-size: 18px;
  letter-spacing: -0.2px;
  color: rgba(255, 255, 255, 0.92);
}

.hero {
  max-width: 1100px;
  margin: 0 auto 80px;
  display: grid;
  grid-template-columns: 1.25fr 1fr;
  gap: 40px;
  align-items: center;
  padding: 0 20px 60px;
}

.hero-content h2 {
  margin: 0;
  font-size: clamp(2rem, 4vw, 3.2rem);
  line-height: 1.1;
  max-width: 520px;
}

.hero-content p {
  margin: 18px 0 30px;
  font-size: 1.1rem;
  max-width: 520px;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.85);
}

.hero-visual {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
  justify-items: center;
  max-width: 300px;
}

.hero-image {
  width: 100%;
  max-width: 280px;
  aspect-ratio: 1 / 1;
  border-radius: 24px;
  box-shadow: var(--shadow);
  border: 2px solid rgba(255, 255, 255, 0.18);
  overflow: hidden;
  background: rgba(255, 255, 255, 0.04);
}

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

.section {
  padding: 80px 20px;
}

.section-inner {
  max-width: 1100px;
  margin: 0 auto;
}

.section h2 {
  margin: 0 0 18px;
  font-size: 2rem;
  text-align: center;
  letter-spacing: 0.8px;
}

.reasons {
  list-style: none;
  padding: 0;
  margin: 0 auto;
  max-width: 700px;
  display: grid;
  gap: 12px;
}

.reasons li {
  background: rgba(255, 255, 255, 0.08);
  padding: 14px 18px;
  border-radius: 14px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 1.05rem;
}

.reasons li::before {
  content: "✓";
  display: inline-flex;
  width: 26px;
  height: 26px;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: var(--brand-green);
  color: var(--bg);
  font-weight: 700;
}

.cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 20px;
  margin-top: 24px;
}

.card {
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: var(--radius);
  padding: 20px 18px;
  box-shadow: rgba(0, 0, 0, 0.18) 0 14px 26px;
  min-height: 180px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.testimonial-card {
  min-height: 0;
  padding: 18px 16px;
  justify-content: flex-start;
  gap: 14px;
}

.card h3 {
  margin: 0 0 12px;
  font-size: 1.25rem;
}

.card p {
  margin: 0 0 18px;
  color: rgba(255, 255, 255, 0.82);
  line-height: 1.5;
}

.card video,
.service-video,
.service-image {
  width: 100%;
  border-radius: 14px;
  box-shadow: rgba(0, 0, 0, 0.22) 0 10px 20px;
  max-height: 210px;
  object-fit: cover;
  display: block;
}

/* Responsive rules */
@media (max-width: 1024px) {
  .site-header {
    padding: 20px 14px 0;
  }

  .header-inner {
    flex-wrap: wrap;
    justify-content: center;
    gap: 12px;
    padding-bottom: 22px;
  }

  .hero {
    grid-template-columns: 1fr;
    margin-bottom: 40px;
    gap: 18px;
    padding-bottom: 30px;
  }

  .hero-visual {
    max-width: 100%;
    grid-template-columns: repeat(2, minmax(120px, 1fr));
    gap: 12px;
  }

  .hero-image {
    max-width: 100%;
  }

  .section {
    padding: 60px 14px;
  }

  .section h2 {
    font-size: clamp(1.7rem, 6vw, 2rem);
  }

  .reasons li {
    font-size: 1rem;
  }

  .cards {
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 14px;
  }

  .card {
    padding: 16px;
  }

  .card h3 {
    font-size: 1.15rem;
  }
 }

@media (max-width: 720px) {
  html,
  body {
    font-size: 15px;
  }

  .header-inner {
    justify-content: center;
  }

  .hero-content h2 {
    font-size: clamp(1.8rem, 8vw, 2.3rem);
  }

  .hero-content p {
    font-size: 1rem;
    line-height: 1.5;
  }

  .hero-visual {
    grid-template-columns: 1fr;
    max-width: 320px;
    margin: 0 auto;
  }

  .hero {
    padding-bottom: 20px;
  }

  .section {
    padding: 50px 12px;
  }

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

  .card p {
    font-size: 0.95rem;
  }

  .site-footer {
    padding: 24px 12px;
  }

  .footer-inner {
    display: grid;
    gap: 14px;
    text-align: center;
  }
}


.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 20px;
  margin-top: 24px;
  align-items: start;
}

.testimonial-video {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 20px 18px;
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.12);
  box-shadow: rgba(0, 0, 0, 0.18) 0 14px 26px;
}

.testimonial-video h3 {
  margin: 0 0 16px;
  font-size: 1.25rem;
}

.testimonial-video video {
  width: 100%;
  max-width: 460px;
  border-radius: 16px;
  box-shadow: var(--shadow);
}

.contact {
  background: rgba(255, 255, 255, 0.06);
  border-top: 1px solid rgba(255, 255, 255, 0.12);
}

.contact .section-inner {
  display: grid;
  grid-template-columns: 1fr 320px;
  gap: 32px;
  align-items: center;
}

.contact p {
  font-size: 1.1rem;
  color: rgba(255, 255, 255, 0.85);
  margin: 20px 0 30px;
  max-width: 620px;
}

.site-footer {
  padding: 40px 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
}

.footer-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
  text-align: center;
  color: rgba(255, 255, 255, 0.72);
}

.footer-inner .small {
  font-size: 0.95rem;
}

.footer-brands {
  max-width: 840px;
  text-align: center;
  margin: 10px auto 0;
  color: rgba(255, 255, 255, 0.78);
}

.footer-brands h3 {
  margin: 0 0 6px;
  font-size: 1.1rem;
}

.footer-brands p {
  margin: 0;
  font-size: 0.95rem;
  color: rgba(255, 255, 255, 0.7);
}

.social a{
  display:flex;
  align-items:center;
  gap:8px;
  color:white;
  font-weight:600;
}

.social a:hover{
  opacity:0.8;
}

.social img{
  width:20px;
  height:20px;
}

.whatsapp-float {
  position: fixed;
  bottom: 20px;
  right: 20px;
  background: #25D366;
  color: white;
  padding: 14px 18px;
  border-radius: 50px;
  font-weight: bold;
  box-shadow: 0 8px 20px rgba(0,0,0,0.3);
}

.whatsapp-float:hover{
  transform:scale(1.05);
}

@media (max-width: 900px) {
  .hero {
    grid-template-columns: 1fr;
  }

  .header-inner {
    flex-direction: column;
    align-items: flex-start;
    gap: 18px;
  }

  .contact .section-inner {
    grid-template-columns: 1fr;
  }

  .contact .btn {
    margin-top: 12px;
    width: 100%;
  }
}

@media (max-width: 520px) {
  .hero-visual {
    grid-template-columns: repeat(3, 1fr);
  }

  .hero-image {
    width: 100%;
    height: 180px;
  }

  .reasons li {
    font-size: 1rem;
  }
}
