:root {
  --bg: #f6f1e8;
  --surface: #fffaf2;
  --surface-strong: #ffffff;
  --text: #1f2421;
  --muted: #5f665f;
  --line: rgba(31, 36, 33, 0.12);
  --brand: #a11d23;
  --brand-dark: #77151a;
  --gold: #d8a437;
  --brand-soft: #f8e4e5;
  --brand-deep: #5f1015;
  --shadow: 0 24px 50px rgba(40, 31, 18, 0.12);
  --radius: 24px;
  --container: 1180px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "DM Sans", sans-serif;
  color: var(--text);
}

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

img {
  display: block;
  max-width: 100%;
}

.container {
  width: min(var(--container), calc(100% - 2rem));
  margin: 0 auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  backdrop-filter: blur(14px);
  background: rgba(246, 241, 232, 0.86);
  border-bottom: 1px solid rgba(31, 36, 33, 0.08);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1rem 0;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.9rem;
}

.brand img {
  width: 178px;
  height: auto;
  display: block;
}

.brand-copy {
  font-size: 0.82rem;
  color: var(--muted);
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.nav {
  display: flex;
  align-items: center;
  gap: 1.25rem;
  font-size: 0.96rem;
  color: var(--muted);
}

.nav a:hover,
.nav a:focus-visible {
  color: var(--brand);
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.55rem;
  border: 0;
  border-radius: 999px;
  padding: 0.95rem 1.45rem;
  font: inherit;
  font-weight: 700;
  cursor: pointer;
  transition: transform 180ms ease, box-shadow 180ms ease, background 180ms ease;
}

.btn:hover,
.btn:focus-visible {
  transform: translateY(-2px);
}

.btn-primary {
  color: #fff;
  background: linear-gradient(135deg, var(--brand), #c5333a);
  box-shadow: 0 16px 30px rgba(161, 29, 35, 0.28);
}

.btn-secondary {
  color: var(--brand);
  background: rgba(161, 29, 35, 0.08);
}

.hero {
  padding: 3.4rem 0 2.4rem;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.9fr;
  gap: 2rem;
  align-items: stretch;
}

.hero-copy {
  padding: 1.2rem 0;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.45rem 0.8rem;
  border-radius: 999px;
  background: rgba(161, 29, 35, 0.1);
  color: var(--brand);
  font-weight: 700;
  font-size: 0.85rem;
  letter-spacing: 0.02em;
}

h1 {
  margin: 1rem 0 1rem;
  font-size: clamp(2.7rem, 6vw, 5rem);
  line-height: 0.95;
  letter-spacing: -0.05em;
  max-width: 11ch;
}

.hero-copy p {
  max-width: 62ch;
  color: var(--muted);
  font-size: 1.08rem;
  line-height: 1.75;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem;
  margin-top: 1.6rem;
}

.hero-points {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.9rem;
  margin-top: 2rem;
}

.point {
  background: rgba(255, 255, 255, 0.7);
  border: 1px solid rgba(31, 36, 33, 0.08);
  border-radius: 18px;
  padding: 1rem;
  box-shadow: var(--shadow);
}

.point strong {
  display: block;
  margin-bottom: 0.35rem;
  font-size: 1rem;
}

.point span {
  color: var(--muted);
  font-size: 0.92rem;
  line-height: 1.55;
}

.hero-card {
  position: relative;
  overflow: hidden;
  padding: 1.4rem;
  border-radius: 28px;
  background:
    linear-gradient(150deg, rgba(136, 38, 45, 0.507), rgba(161, 29, 36, 0.774)),
    url("assets/image copy.png") center/cover;
  min-height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  box-shadow: var(--shadow);
  color: #fff;
}

.hero-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(56, 8, 12, 0.08), rgba(56, 8, 12, 0.9)),
    linear-gradient(125deg, rgba(216, 164, 55, 0.2), transparent 40%);
}

.hero-card > * {
  position: relative;
  z-index: 1;
}

.hero-card-top {
  margin-bottom: auto;
  display: flex;
  justify-content: space-between;
  gap: 1rem;
}

.tag {
  display: inline-flex;
  width: fit-content;
  padding: 0.42rem 0.75rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.14);
  border: 1px solid rgba(255, 255, 255, 0.18);
  font-size: 0.84rem;
  font-weight: 700;
}

.mini-card {
  margin-top: 7rem;
  padding: 1.25rem;
  border-radius: 24px;
  background: rgba(255, 250, 242, 0.14);
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.mini-card h2 {
  margin: 0 0 0.65rem;
  font-size: 1.45rem;
}

.mini-card p {
  margin: 0 0 1rem;
  color: rgba(255, 255, 255, 0.86);
  line-height: 1.65;
}

.mini-list {
  display: grid;
  gap: 0.7rem;
  margin: 0 0 1.2rem;
  padding: 0;
  list-style: none;
}

.mini-list li {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  color: rgba(255, 255, 255, 0.94);
}

.mini-list li::before {
  content: "";
  width: 0.6rem;
  height: 0.6rem;
  border-radius: 50%;
  background: var(--gold);
  box-shadow: 0 0 0 6px rgba(216, 164, 55, 0.16);
  flex: 0 0 auto;
}

.section {
  padding: 4.8rem 0;
}

.section-alt {
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.52), rgba(255, 255, 255, 0.75)),
    transparent;
}

.section-header {
  max-width: 760px;
  margin-bottom: 2rem;
}

.section-header span {
  color: var(--brand);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-size: 0.84rem;
}

.section-header h2 {
  margin: 0.7rem 0 0.8rem;
  font-size: clamp(2rem, 4vw, 3.3rem);
  line-height: 1.02;
  letter-spacing: -0.04em;
}

.section-header p {
  margin: 0;
  color: var(--muted);
  font-size: 1.02rem;
  line-height: 1.7;
}

.about-grid,
.cta-grid,
.footer-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1.5rem;
}

.panel {
  background: var(--surface-strong);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 1.5rem;
  box-shadow: var(--shadow);
}

.panel h3 {
  margin: 0 0 0.6rem;
  font-size: 1.4rem;
}

.media-panel {
  overflow: hidden;
  padding: 0;
  min-height: 100%;
}

.media-panel img {
  width: 100%;
  height: 100%;
  min-height: 320px;
  object-fit: cover;
  display: block;
}

.panel p {
  margin: 0;
  color: var(--muted);
  line-height: 1.7;
}

.service-grid,
.trust-grid,
.steps,
.testimonial-grid,
.faq-grid {
  display: grid;
  gap: 1.2rem;
}

.service-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.service-card {
  padding: 1.55rem;
  border-radius: var(--radius);
  background: var(--surface-strong);
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.service-thumb {
  width: calc(100% + 3.1rem);

  height: 220px;
  object-fit: cover;
  display: block;
  border-radius: 24px 24px 5px 5px;
}

.service-icon,
.step-number {
  width: 3rem;
  height: 3rem;
  border-radius: 16px;
  display: grid;
  place-items: center;
  font-weight: 800;
  color: var(--brand);
  background: rgba(161, 29, 35, 0.08);
}

.service-card h3,
.step h3,
.trust-card h3,
.testimonial h3,
.faq h3 {
  margin: 0;
  font-size: 1.28rem;
}

.service-card p,
.step p,
.trust-card p,
.testimonial p,
.faq p {
  margin: 0;
  color: var(--muted);
  line-height: 1.68;
}

.service-card .btn,
.panel .btn {
  margin-top: auto;
  width: fit-content;
}

.trust-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.trust-card,
.step,
.testimonial,
.faq {
  background: var(--surface-strong);
  border: 1px solid var(--line);
  border-radius: 22px;
  padding: 1.35rem;
  box-shadow: var(--shadow);
}

.feature-strip {
  margin-top: 1.3rem;
  border-radius: 28px;
  overflow: hidden;
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
}

.feature-strip img {
  width: 100%;
  height: 360px;
  object-fit: cover;
  display: block;
}

.steps {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.step {
  position: relative;
  overflow: hidden;
}

.step::after {
  content: "";
  position: absolute;
  inset: auto -40px -40px auto;
  width: 130px;
  height: 130px;
  border-radius: 50%;
  background: rgba(216, 164, 55, 0.12);
}

.step-number {
  margin-bottom: 0.9rem;
  background: rgba(161, 29, 35, 0.1);
  color: var(--brand);
}

.testimonial-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.rating {
  color: var(--gold);
  letter-spacing: 0.14em;
  font-size: 0.94rem;
}

.client {
  display: flex;
  flex-direction: column;
  gap: 0.18rem;
  margin-top: 0.9rem;
  font-weight: 700;
}

.client span {
  color: var(--muted);
  font-weight: 500;
  font-size: 0.94rem;
}

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

.cta-shell {
  padding: 2rem;
  border-radius: 30px;
  background:
    linear-gradient(135deg, rgba(161, 29, 35, 0.96), rgba(119, 21, 26, 0.96)),
    radial-gradient(circle at top right, rgba(216, 164, 55, 0.35), transparent 26%);
  color: #fff;
  box-shadow: var(--shadow);
}

.cta-shell h2,
.cta-shell p,
.cta-shell li,
.footer-copy p {
  color: inherit;
}

.cta-list {
  display: grid;
  gap: 0.85rem;
  padding: 0;
  list-style: none;
  margin: 1.2rem 0 0;
}

.cta-list li {
  display: flex;
  align-items: center;
  gap: 0.7rem;
}

.cta-list li::before {
  content: "";
  width: 0.65rem;
  height: 0.65rem;
  border-radius: 50%;
  background: #fff;
  flex: 0 0 auto;
}

.contact-card {
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 26px;
  padding: 1.4rem;
}

.contact-list {
  display: grid;
  gap: 1rem;
  margin: 1rem 0 0;
}

.contact-item strong {
  display: block;
  margin-bottom: 0.24rem;
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

footer {
  padding: 2.2rem 0 6.5rem;
}

.footer-shell {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  align-items: flex-start;
  padding-top: 1.4rem;
  border-top: 1px solid rgba(31, 36, 33, 0.12);
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  color: var(--muted);
}

.footer-copy {
  max-width: 390px;
}

.footer-copy p {
  margin: 0.85rem 0 0;
  color: var(--muted);
  line-height: 1.7;
}

.floating-actions {
  position: fixed;
  left: 50%;
  bottom: 1rem;
  transform: translateX(-50%);
  z-index: 30;
  display: flex;
  align-items: center;
  gap: 0.85rem;
  width: min(92%, 632px);
}

.sticky-apply {
  width: min(100%, 560px);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.9rem;
  border-radius: 999px;
  background: rgba(31, 36, 33, 0.94);
  color: #fff;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.22);
}

.sticky-apply strong {
  display: block;
  font-size: 0.96rem;
}

.sticky-apply span {
  display: block;
  font-size: 0.84rem;
  color: rgba(255, 255, 255, 0.78);
}

.sticky-apply .btn {
  flex: 0 0 auto;
  padding: 0.8rem 1.15rem;
}

.whatsapp-float {
  width: 65px;
  height: 65px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: rgba(31, 36, 33, 0.94);
  color: #fff;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.22);
  flex: 0 0 65px;
}

.whatsapp-float:hover,
.whatsapp-float:focus-visible {
  transform: translateY(-2px);
}

.whatsapp-float-icon {
  width: 1.8rem;
  height: 1.8rem;
  display: block;
}

@media (max-width: 1080px) {
  .hero-grid,
  .service-grid,
  .trust-grid,
  .steps,
  .testimonial-grid,
  .faq-grid,
  .about-grid,
  .cta-grid {
    grid-template-columns: 1fr;
  }

  .hero-points {
    grid-template-columns: 1fr;
  }

  .nav {
    display: none;
  }

  h1 {
    max-width: 12ch;
  }
}

@media (max-width: 720px) {
  .hero {
    padding-top: 2rem;
  }

  h1 {
    font-size: 2.55rem;
  }

  .header-inner,
  .hero-actions,
  .footer-shell,
  .sticky-apply,
  .floating-actions {
    flex-direction: column;
    align-items: stretch;
  }

  .sticky-apply {
    border-radius: 26px;
  }

  .sticky-apply .btn,
  .btn {
    width: 100%;
  }

  .floating-actions {
    width: min(92%, 560px);
  }

  .whatsapp-float {
    align-self: flex-end;
  }

  .section {
    padding: 3.8rem 0;
  }

  .site-header .btn{
    display: none;
  }
  .site-header .brand{
    display: flex;
    justify-content: center;
  }

  .whatsapp-float {
  order: -1; 
}
}
