:root {
  --navy: #0F172A;
  --navy-2: #172554;
  --gold: #D4AF37;
  --gold-2: #F1D27A;
  --ink: #111827;
  --muted: #64748B;
  --line: #E2E8F0;
  --soft: #F8FAFC;
  --white: #FFFFFF;
  --shadow: 0 24px 70px rgba(15, 23, 42, 0.16);
  --shadow-strong: 0 32px 90px rgba(15, 23, 42, 0.26);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--soft);
  color: var(--ink);
  font-family: Inter, Arial, sans-serif;
  line-height: 1.5;
}

body.menu-open {
  overflow: hidden;
}

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

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

button,
input,
select,
textarea {
  font: inherit;
}

.site-header {
  position: fixed;
  z-index: 20;
  inset: 0 0 auto;
  display: grid;
  grid-template-columns: minmax(250px, 0.85fr) minmax(420px, 1.3fr) minmax(250px, 0.85fr);
  align-items: center;
  gap: 18px;
  min-height: 76px;
  padding: 8px clamp(18px, 5vw, 70px);
  background: rgba(15, 23, 42, 0.96);
  border-bottom: 1px solid rgba(212, 175, 55, 0.24);
  backdrop-filter: blur(18px);
}

.brand,
.main-nav,
.hero-actions,
.trust-strip,
.site-footer,
.contact-cards {
  display: flex;
  align-items: center;
}

.brand {
  gap: 11px;
  align-items: center;
  font-weight: 900;
}

.brand-logo {
  width: auto;
  height: clamp(56px, 6vw, 72px);
  max-height: 72px;
  flex: 0 0 auto;
  border-radius: 0;
  object-fit: contain;
  filter: drop-shadow(0 10px 24px rgba(212, 175, 55, 0.18));
}

.brand-text {
  letter-spacing: 0;
  white-space: nowrap;
}

.brand-copy {
  display: grid;
  gap: 1px;
  color: var(--white);
  line-height: 1.05;
}

.brand-copy strong {
  font-size: 0.92rem;
  letter-spacing: 0;
}

.brand-copy small,
.brand-copy span {
  color: #cbd5e1;
  font-size: 0.7rem;
  font-weight: 700;
}

.brand-copy span {
  color: var(--gold);
}

.main-nav {
  justify-content: center;
  justify-self: center;
  gap: 24px;
  color: #e2e8f0;
  font-size: 0.94rem;
  font-weight: 700;
}

.main-nav a:hover {
  color: var(--gold);
}

.button {
  min-height: 46px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 0;
  border-radius: 8px;
  cursor: pointer;
  font-weight: 800;
}

.menu-button {
  display: none;
  width: 44px;
  height: 44px;
  place-items: center;
  gap: 5px;
  border: 1px solid rgba(212, 175, 55, 0.36);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.08);
}

.menu-button span {
  width: 20px;
  height: 2px;
  display: block;
  background: var(--white);
}

.hero {
  min-height: 720px;
  position: relative;
  display: flex;
  align-items: center;
  overflow: hidden;
  padding: 104px clamp(20px, 6vw, 80px) 58px;
}

.hero-image,
.hero-shade {
  position: absolute;
  inset: 0;
}

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

.hero-shade {
  background:
    linear-gradient(90deg, rgba(15, 23, 42, 0.97) 0%, rgba(15, 23, 42, 0.86) 42%, rgba(15, 23, 42, 0.24) 100%),
    linear-gradient(0deg, rgba(15, 23, 42, 0.42), rgba(15, 23, 42, 0));
}

.hero-content {
  position: relative;
  width: min(560px, 100%);
}

.hero-message {
  width: min(540px, 100%);
  margin-bottom: 20px;
  padding: clamp(20px, 2vw, 26px);
  border: 1px solid rgba(212, 175, 55, 0.46);
  border-radius: 10px;
  background: rgba(15, 23, 42, 0.86);
  box-shadow: 0 18px 44px rgba(2, 6, 23, 0.3), inset 0 1px 0 rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(10px);
}

.eyebrow {
  margin: 0 0 14px;
  color: var(--gold);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0;
  text-transform: uppercase;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1 {
  margin-bottom: 22px;
  font-size: clamp(2.7rem, 6vw, 5.7rem);
  line-height: 0.95;
  letter-spacing: 0;
}

.hero h1 {
  color: var(--white);
  margin-bottom: 12px;
  font-size: clamp(1.8rem, 2.5vw, 2.55rem);
  line-height: 1.12;
}

h2 {
  margin-bottom: 16px;
  font-size: clamp(2rem, 4vw, 3.6rem);
  line-height: 1.04;
  letter-spacing: 0;
}

h3 {
  margin-bottom: 10px;
  font-size: 1.16rem;
}

.hero-copy {
  max-width: 500px;
  margin-bottom: 0;
  color: #d7dde7;
  font-size: clamp(0.96rem, 1.05vw, 1.04rem);
  line-height: 1.55;
}

.hero-benefits {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px 14px;
  width: min(590px, 100%);
  margin: 0 0 24px;
  padding: 0;
  list-style: none;
}

.hero-benefits li {
  position: relative;
  min-height: 40px;
  display: flex;
  align-items: center;
  padding: 9px 13px 9px 36px;
  border: 1px solid rgba(212, 175, 55, 0.28);
  border-radius: 8px;
  color: var(--white);
  background: rgba(255, 255, 255, 0.08);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.08);
  font-weight: 700;
}

.hero-benefits li::before {
  content: "✓";
  position: absolute;
  left: 14px;
  color: var(--gold);
  font-weight: 900;
}

.hero-actions {
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 26px;
}

.button {
  padding: 0 22px;
}

.button.primary {
  color: var(--navy);
  background: linear-gradient(135deg, var(--gold-2), var(--gold));
  box-shadow: 0 16px 36px rgba(212, 175, 55, 0.26);
}

.button.secondary {
  color: var(--white);
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.32);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.12);
}

.button.full {
  width: 100%;
}

.trust-strip {
  width: min(590px, 100%);
  gap: 1px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--line);
  box-shadow: var(--shadow-strong);
}

.trust-strip div {
  flex: 1;
  min-width: 0;
  padding: 16px;
  background: rgba(255, 255, 255, 0.92);
}

.trust-strip strong {
  display: block;
  color: var(--gold);
  font-size: 1.2rem;
}

.trust-strip span,
.section-head p,
.service-card p,
.calculator-copy p,
.about-content p,
.mission-grid p,
.value-grid p,
.testimonial-grid span,
.faq-list p,
.contact-copy p,
.site-footer p,
.site-footer a {
  color: var(--muted);
}

.section {
  width: min(1160px, calc(100% - 40px));
  margin: 0 auto;
  padding: 58px 0;
}

.intro-band {
  padding: 26px 0 0;
}

.intro-band p {
  margin: 0;
  padding: 34px;
  border-left: 5px solid var(--gold);
  border-radius: 8px;
  color: var(--navy);
  background: var(--white);
  box-shadow: var(--shadow);
  font-size: clamp(1.15rem, 2vw, 1.55rem);
  font-weight: 700;
}

.section-head {
  max-width: 720px;
  margin-bottom: 28px;
}

.section-head.compact {
  max-width: 620px;
}

.service-grid,
.value-grid,
.testimonial-grid,
.mission-grid {
  display: grid;
  gap: 18px;
}

.service-grid {
  grid-template-columns: repeat(5, 1fr);
  gap: 22px;
}

.service-card,
.value-grid article,
.testimonial-grid article,
.mission-grid article,
.calculator,
.faq-list details,
.contact-form {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  box-shadow: 0 16px 44px rgba(15, 23, 42, 0.08);
}

.service-card,
.value-grid article,
.testimonial-grid article,
.mission-grid article,
.calculator,
.faq-list details,
.contact-form {
  transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease;
}

.service-card:hover,
.value-grid article:hover,
.testimonial-grid article:hover,
.mission-grid article:hover,
.faq-list details:hover {
  border-color: rgba(212, 175, 55, 0.52);
  box-shadow: 0 28px 70px rgba(15, 23, 42, 0.16);
  transform: translateY(-5px);
}

.service-card {
  min-height: 360px;
  overflow: hidden;
  padding: 0 0 26px;
}

.service-image {
  width: 100%;
  aspect-ratio: 4 / 3;
  height: auto;
  object-fit: cover;
  border-radius: 8px 8px 0 0;
  border-bottom: 1px solid rgba(212, 175, 55, 0.18);
  background: var(--navy);
  transition: transform 260ms ease, filter 260ms ease;
}

.service-card:hover .service-image {
  transform: scale(1.035);
  filter: saturate(1.05) contrast(1.03);
}

.service-card h3,
.service-card p {
  padding-right: 24px;
  padding-left: 24px;
}

.service-card h3 {
  margin-top: 24px;
  margin-bottom: 12px;
  color: var(--navy);
  font-size: 1.18rem;
  line-height: 1.18;
}

.service-card p {
  margin-bottom: 0;
  line-height: 1.58;
}

.calculator-section,
.about-section,
.contact-section {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 48px;
  align-items: center;
}

.calculator {
  padding: 28px;
}

.calculator label,
.contact-form label {
  display: grid;
  gap: 10px;
  margin-bottom: 18px;
  color: var(--navy);
  font-weight: 800;
}

input,
select,
textarea {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 8px;
  color: var(--ink);
  background: #fbfcfb;
}

input,
select {
  min-height: 48px;
  padding: 0 14px;
}

textarea {
  resize: vertical;
  padding: 14px;
}

input[type="range"] {
  height: 8px;
  min-height: 8px;
  padding: 0;
  accent-color: var(--gold);
}

output {
  color: var(--gold);
  font-weight: 900;
}

.estimate {
  display: grid;
  grid-template-columns: 1fr;
  gap: 18px;
  margin: 22px 0;
  padding: 24px;
  border-radius: 8px;
  color: var(--white);
  background:
    radial-gradient(circle at top right, rgba(212, 175, 55, 0.28), transparent 35%),
    linear-gradient(135deg, var(--navy), var(--navy-2));
  box-shadow: var(--shadow);
}

.estimate span,
.estimate small {
  display: block;
  color: rgba(255, 255, 255, 0.78);
}

.estimate strong {
  display: block;
  margin: 4px 0;
  font-size: clamp(1.65rem, 3vw, 2.45rem);
}

.estimate small {
  padding-top: 14px;
  border-top: 1px solid rgba(255, 255, 255, 0.14);
}

.calculator-legal {
  margin: -4px 0 20px;
  color: var(--muted);
  font-size: 0.92rem;
}

.about-image-wrap {
  overflow: hidden;
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.about-image-wrap img {
  width: 100%;
  height: 560px;
  object-fit: cover;
}

.mission-grid {
  grid-template-columns: repeat(2, 1fr);
  margin-top: 28px;
}

.founder-section {
  display: grid;
  grid-template-columns: 1fr;
  align-items: stretch;
  width: min(1040px, calc(100% - 40px));
  padding-top: 44px;
  padding-bottom: 44px;
}

.founder-content {
  width: 100%;
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(260px, 0.85fr) minmax(0, 1.15fr);
  gap: clamp(24px, 5vw, 64px);
  align-items: center;
  padding: clamp(26px, 4vw, 40px);
  border: 1px solid rgba(212, 175, 55, 0.42);
  border-radius: 10px;
  background: var(--white);
  box-shadow: 0 18px 50px rgba(15, 23, 42, 0.1);
}

.founder-heading .eyebrow {
  margin-bottom: 10px;
}

.founder-heading h2 {
  margin-bottom: 10px;
}

.founder-heading strong {
  display: block;
  color: var(--navy);
  font-size: 1.05rem;
}

.founder-text {
  padding-left: clamp(20px, 4vw, 40px);
  border-left: 2px solid rgba(212, 175, 55, 0.38);
}

.founder-text p {
  max-width: 760px;
  margin-bottom: 0;
  color: #334155;
  font-size: clamp(1rem, 1.55vw, 1.18rem);
  line-height: 1.62;
  font-weight: 650;
}

.mission-grid article,
.value-grid article,
.testimonial-grid article {
  padding: 24px;
}

.value-grid,
.testimonial-grid {
  grid-template-columns: repeat(4, 1fr);
}

.testimonial-grid article {
  min-height: 220px;
}

.testimonial-grid p {
  color: var(--navy);
  font-size: 1.02rem;
  font-weight: 700;
}

.testimonial-grid strong,
.testimonial-grid span {
  display: block;
}

.testimonial-grid strong {
  color: var(--gold);
  font-size: clamp(1.25rem, 2vw, 1.85rem);
  line-height: 1.05;
}

.faq-section {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 46px;
  align-items: start;
}

.faq-list {
  display: grid;
  gap: 12px;
}

.faq-list details {
  padding: 20px 22px;
}

.faq-list summary {
  cursor: pointer;
  color: var(--navy);
  font-weight: 900;
}

.faq-list p {
  margin: 14px 0 0;
}

.contact-section {
  align-items: start;
  padding: 46px;
  margin-bottom: 54px;
  border-radius: 8px;
  color: var(--white);
  background:
    radial-gradient(circle at top right, rgba(212, 175, 55, 0.22), transparent 34%),
    linear-gradient(135deg, rgba(15, 23, 42, 0.98), rgba(23, 37, 84, 0.95)),
    var(--navy);
  box-shadow: var(--shadow-strong);
}

.contact-section .eyebrow,
.contact-section p {
  color: #dbe3ef;
}

.contact-cards {
  align-items: stretch;
  flex-direction: column;
  gap: 10px;
  margin-top: 26px;
}

.contact-cards a,
.contact-cards span {
  padding: 14px 16px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 8px;
  color: var(--white);
  background: rgba(255, 255, 255, 0.08);
}

.contact-form {
  padding: 26px;
  box-shadow: none;
}

.contact-form label {
  color: var(--navy);
}

.floating-whatsapp {
  position: fixed;
  z-index: 30;
  right: 22px;
  bottom: 22px;
  width: 58px;
  height: 58px;
  display: grid;
  place-items: center;
  border-radius: 999px;
  color: #FFFFFF;
  background: #25D366;
  border: 0;
  box-shadow: 0 14px 30px rgba(15, 23, 42, 0.24), 0 8px 18px rgba(37, 211, 102, 0.28);
  transition: transform 180ms ease, box-shadow 180ms ease, background-color 180ms ease;
}

.floating-whatsapp:hover,
.floating-whatsapp:focus-visible {
  background: #20bd5a;
  transform: translateY(-2px);
  box-shadow: 0 18px 40px rgba(15, 23, 42, 0.24), 0 12px 28px rgba(37, 211, 102, 0.34);
}

.floating-whatsapp svg {
  width: 34px;
  height: 34px;
  fill: #FFFFFF;
}

.site-footer {
  width: min(1180px, calc(100% - 32px));
  display: grid;
  grid-template-columns: 1.35fr repeat(4, minmax(150px, 0.85fr));
  align-items: stretch;
  gap: 18px;
  margin: 40px auto 28px;
  padding: clamp(24px, 3.6vw, 38px);
  border: 1px solid rgba(212, 175, 55, 0.42);
  border-top: 4px solid var(--gold);
  border-radius: 12px;
  color: var(--white);
  background:
    linear-gradient(135deg, rgba(15, 23, 42, 0.98), rgba(23, 37, 84, 0.92)),
    var(--navy);
  box-shadow: 0 18px 50px rgba(15, 23, 42, 0.18);
}

.site-footer > div {
  display: grid;
  align-content: start;
  gap: 12px;
  min-width: 0;
  padding: 20px;
  border: 1px solid rgba(212, 175, 55, 0.28);
  border-left: 3px solid rgba(212, 175, 55, 0.62);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.05);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.05);
}

.footer-brand {
  margin-bottom: 8px;
}

.footer-brand .brand-copy,
.footer-brand .brand-copy small,
.footer-brand .brand-copy span {
  color: #cbd5e1;
}

.footer-brand .brand-copy strong {
  color: var(--white);
}

.site-footer strong {
  margin-bottom: 2px;
  color: var(--gold);
  font-size: 0.95rem;
  text-transform: uppercase;
}

.site-footer p,
.site-footer a,
.site-footer span {
  color: #cbd5e1;
  overflow-wrap: anywhere;
  line-height: 1.45;
}

@media (max-width: 1020px) {
  .site-header {
    grid-template-columns: minmax(0, 1fr) auto;
    min-height: 72px;
  }

  .menu-button {
    display: grid;
    justify-self: end;
  }

  .main-nav {
    position: fixed;
    top: 72px;
    right: 0;
    left: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0;
    width: 100%;
    padding: 24px 22px 28px;
    border: 0;
    border-top: 1px solid rgba(212, 175, 55, 0.22);
    border-radius: 0;
    color: var(--white);
    background: rgba(15, 23, 42, 0.98);
    box-shadow: 0 28px 70px rgba(15, 23, 42, 0.34);
    opacity: 0;
    pointer-events: none;
    transform: translateY(-12px);
    transition: opacity 180ms ease, transform 180ms ease;
  }

  .main-nav.is-open {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
  }

  .main-nav a {
    width: min(360px, 100%);
    padding: 15px 12px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    color: var(--white);
    text-align: center;
    font-size: 1.05rem;
  }

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

  .calculator-section,
  .about-section,
  .founder-section,
  .faq-section,
  .contact-section {
    grid-template-columns: 1fr;
  }

  .founder-content {
    grid-template-columns: 1fr;
    gap: 22px;
  }

  .founder-text {
    padding-left: 0;
    padding-top: 20px;
    border-left: 0;
    border-top: 2px solid rgba(212, 175, 55, 0.34);
  }

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

  .about-image-wrap img {
    height: 420px;
  }
}

@media (max-width: 700px) {
  .site-header {
    padding: 13px 16px;
    gap: 12px;
  }

  .brand-text {
    font-size: 0.86rem;
  }

  .brand-logo {
    height: 58px;
    max-height: 58px;
  }

  .brand-copy span {
    display: none;
  }

  .hero {
    min-height: 860px;
    padding: 112px 20px 64px;
  }

  .hero-shade {
    background: linear-gradient(180deg, rgba(15, 23, 42, 0.98) 0%, rgba(15, 23, 42, 0.9) 56%, rgba(15, 23, 42, 0.4) 100%);
  }

  .hero-message {
    padding: 20px;
  }

  .hero h1 {
    font-size: clamp(1.85rem, 10vw, 2.55rem);
    line-height: 1.08;
  }

  .hero-actions,
  .hero-benefits,
  .trust-strip {
    flex-direction: column;
    align-items: stretch;
  }

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

  .trust-strip div {
    width: 100%;
  }

  .section {
    width: calc(100% - 28px);
    padding: 48px 0;
  }

  .intro-band {
    padding-top: 18px;
  }

  .intro-band p,
  .contact-section {
    padding: 24px;
  }

  .founder-section {
    padding-top: 34px;
    padding-bottom: 34px;
  }

  .founder-content {
    padding: 24px;
  }

  .site-footer {
    grid-template-columns: 1fr;
    gap: 14px;
    padding: 34px 16px;
  }

  .service-grid,
  .value-grid,
  .testimonial-grid,
  .mission-grid {
    grid-template-columns: 1fr;
  }

  .service-card,
  .testimonial-grid article {
    min-height: auto;
  }

  .calculator,
  .contact-form {
    padding: 20px;
  }

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

  .about-image-wrap img {
    height: 320px;
  }

  .floating-whatsapp {
    right: 16px;
    bottom: 16px;
  }
}
