:root {
  --bg: #f5f3f1;
  --panel: #ffffff;
  --panel-soft: #efeae6;
  --ink: #1d1d1d;
  --muted: #5a5a5a;
  --line: rgba(33, 33, 33, 0.14);
  --deep: #121212;
  --accent: #b7a79a;
  --accent-soft: #efe7e0;
  --shadow: 0 18px 35px rgba(20, 20, 20, 0.08);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Manrope", sans-serif;
  background: var(--bg);
  color: var(--ink);
  line-height: 1.7;
}

.skip-link {
  position: fixed;
  left: 16px;
  top: 12px;
  z-index: 100;
  padding: 10px 14px;
  border-radius: 8px;
  background: var(--deep);
  color: #fff;
  transform: translateY(-160%);
  transition: transform 0.2s ease;
}

.skip-link:focus {
  transform: translateY(0);
}

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

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

.container {
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto;
}

.section {
  padding: 96px 0;
}

.eyebrow {
  display: inline-block;
  margin: 0 0 12px;
  color: var(--ink);
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  font-size: 11px;
}

.eyebrow.accent {
  color: #5a514e;
}

h1,
h2,
h3 {
  margin-top: 0;
  color: var(--ink);
  line-height: 1.15;
}

h1 {
  font-size: clamp(2.6rem, 4vw, 4.7rem);
  margin-bottom: 18px;
}

h2 {
  font-size: clamp(2rem, 3vw, 3rem);
  margin-bottom: 16px;
}

p {
  margin-top: 0;
  color: var(--muted);
}

.top-strip {
  background: var(--deep);
  color: rgba(255, 255, 255, 0.84);
  font-size: 0.8rem;
}

.strip-inner {
  min-height: 42px;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 26px;
  flex-wrap: wrap;
  text-align: center;
}

.header {
  background: rgba(245, 243, 241, 0.96);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid var(--line);
  position: sticky;
  top: 0;
  z-index: 20;
}

.nav-wrap {
  min-height: 94px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  position: relative;
}

.logo-block {
  display: flex;
  align-items: center;
  gap: 16px;
}

.logo-block:focus-visible {
  outline: 3px solid rgba(29, 29, 29, 0.35);
  outline-offset: 5px;
}

.brand-mark {
  width: 128px;
  height: 128px;
  position: relative;
  border-radius: 50%;
  border: 3px solid rgba(29, 29, 29, 0.9);
  display: grid;
  place-items: center;
  background: transparent;
  overflow: hidden;
}

.brand-mark::before {
  content: "";
  position: absolute;
  inset: 8px 8px 8px 8px;
  border-radius: 50%;
  border: 1px solid rgba(29, 29, 29, 0.38);
}

.brand-mark .n,
.brand-mark .j {
  position: absolute;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 5.7rem;
  line-height: 1;
  font-weight: 500;
  letter-spacing: -0.08em;
  color: rgba(29, 29, 29, 0.92);
}

.brand-mark .n {
  left: 20px;
  top: 24px;
}

.brand-mark .j {
  right: 20px;
  bottom: 18px;
}

.brand-text {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.brand-text h2 {
  font-size: clamp(1.6rem, 1.8vw, 2.2rem);
  letter-spacing: 0.12em;
  font-weight: 500;
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  color: rgba(29, 29, 29, 0.94);
}

.brand-text p {
  margin: 0;
  color: rgba(29, 29, 29, 0.75);
  letter-spacing: 0.2em;
  text-transform: uppercase;
  font-size: 0.8rem;
  font-weight: 500;
}

.nav {
  display: flex;
  align-items: center;
  gap: 24px;
  font-weight: 600;
}

.nav a,
.mobile-menu a {
  position: relative;
  color: var(--ink);
}

.mobile-menu-button {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 46px;
  height: 46px;
  border: 1px solid var(--line);
  border-radius: 12px;
  background: var(--panel);
  cursor: pointer;
}

.mobile-menu-button span {
  width: 22px;
  height: 2px;
  display: block;
  background: var(--ink);
  margin: 0 auto;
}

.mobile-menu {
  display: none;
  padding: 0 16px 16px;
  background: rgba(245, 243, 241, 0.98);
  border-top: 1px solid var(--line);
}

.mobile-menu a {
  display: block;
  padding: 12px 0;
  border-bottom: 1px solid var(--line);
  font-weight: 600;
}

.nav a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -8px;
  width: 100%;
  height: 2px;
  background: var(--ink);
  transform: scaleX(0);
  transition: transform 0.2s ease;
}

.nav a:hover::after,
.nav a:focus-visible::after {
  transform: scaleX(1);
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  padding: 0.9rem 1.5rem;
  font-weight: 700;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

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

.btn-primary {
  background: var(--ink);
  color: #fff;
  box-shadow: 0 14px 24px rgba(18, 18, 18, 0.15);
}

.btn-secondary {
  background: transparent;
  border: 1px solid var(--line);
  color: var(--ink);
}

.hero {
  background: linear-gradient(180deg, rgba(245, 243, 241, 0.86), rgba(239, 234, 230, 0.9));
  padding: 82px 0 70px;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 42px;
  align-items: center;
}

.lead {
  font-size: 1.08rem;
  max-width: 650px;
  margin-bottom: 28px;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-bottom: 20px;
}

.hero-points {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 12px;
  color: var(--ink);
  font-weight: 600;
}

.hero-points li::before {
  content: "✓";
  color: var(--ink);
  margin-right: 10px;
}

.hero-panel {
  display: flex;
  justify-content: center;
}

.panel-card {
  width: 100%;
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: 28px;
  box-shadow: var(--shadow);
  padding: 30px 24px;
}

.tag {
  display: inline-block;
  padding: 8px 12px;
  border-radius: 999px;
  background: var(--panel-soft);
  color: var(--ink);
  font-weight: 700;
  letter-spacing: 0.05em;
  font-size: 0.75rem;
  text-transform: uppercase;
}

.panel-card h3 {
  margin-top: 18px;
  font-size: clamp(1.9rem, 2vw, 2.5rem);
}

.stats-row {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
  margin-top: 22px;
}

.stats-row div {
  background: var(--bg);
  border: 1px solid var(--line);
  border-radius: 18px;
  padding: 18px 16px;
}

.stats-row strong {
  display: block;
  color: var(--ink);
  margin-bottom: 6px;
}

.stats-row span {
  color: var(--muted);
}

.trust-bar {
  padding-top: 0;
  margin-top: -18px;
}

.trust-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: 20px;
  box-shadow: var(--shadow);
  padding: 18px 20px;
}

.trust-grid > div {
  text-align: center;
  padding: 14px 8px;
}

.trust-grid strong {
  display: block;
  color: var(--ink);
  font-size: 0.92rem;
}

.trust-grid span {
  color: var(--muted);
  font-size: 0.82rem;
}

.two-col {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 36px;
  align-items: start;
}

.section-heading.center {
  max-width: 760px;
  margin: 0 auto 42px;
  text-align: center;
}

.about-copy {
  display: grid;
  gap: 18px;
}

.why-us,
.process,
.faq {
  background: #f2efed;
}

.feature-grid,
.process-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 24px;
}

.feature-card,
.process-card {
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: 24px;
  padding: 24px 20px;
  box-shadow: 0 12px 22px rgba(18, 18, 18, 0.04);
}

.feature-icon {
  width: 56px;
  height: 56px;
  border-radius: 16px;
  background: var(--panel-soft);
  display: grid;
  place-items: center;
  font-size: 1.7rem;
  margin-bottom: 18px;
}

.step-number {
  display: inline-block;
  margin-bottom: 12px;
  font-weight: 800;
  color: var(--ink);
  letter-spacing: 0.08em;
}

.faq-wrap {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: 30px;
  align-items: start;
}

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

.faq-item {
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: 18px;
  overflow: hidden;
}

.faq-question {
  width: 100%;
  text-align: left;
  background: transparent;
  border: 0;
  padding: 18px 20px;
  font: inherit;
  font-weight: 700;
  color: var(--ink);
  cursor: pointer;
  position: relative;
}

.faq-question::after {
  content: "+";
  position: absolute;
  right: 20px;
  top: 50%;
  transform: translateY(-50%);
  font-size: 1.4rem;
}

.faq-item.active .faq-question::after {
  content: "−";
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.25s ease;
}

.faq-answer p {
  margin: 0;
  padding: 0 20px 18px;
}

.faq-item.active .faq-answer {
  max-height: 200px;
}

.services {
  background: #f2efed;
}

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

.service-card {
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: 24px;
  padding: 24px 20px;
  box-shadow: 0 10px 20px rgba(18, 18, 18, 0.02);
}

.icon {
  width: 62px;
  height: 62px;
  border-radius: 16px;
  background: var(--panel-soft);
  display: grid;
  place-items: center;
  font-size: 1.8rem;
  margin-bottom: 16px;
}

.service-card h3 {
  margin-bottom: 10px;
}

.dgft-section {
  background: var(--panel);
}

.dgft-box {
  background: linear-gradient(180deg, #f8f5f3, #f2efed);
  border: 1px solid var(--line);
  border-radius: 28px;
  padding: 36px 30px;
}

.section-heading.left {
  margin-bottom: 24px;
}

.check-list {
  column-count: 2;
  list-style: none;
  padding: 0;
  margin: 0;
  display: block;
}

.check-list li {
  position: relative;
  padding-left: 26px;
  margin-bottom: 14px;
  color: var(--ink);
  font-weight: 600;
}

.check-list li::before {
  content: "✓";
  position: absolute;
  left: 0;
  top: 0;
}

.team {
  background: #f5f3f1;
}

.team-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 24px;
}

.team-card {
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: 28px;
  padding: 30px 20px;
  text-align: center;
  box-shadow: var(--shadow);
}

.avatar {
  width: 88px;
  height: 88px;
  border-radius: 50%;
  background: linear-gradient(135deg, #1d1d1d, #4b4b4b);
  color: white;
  display: grid;
  place-items: center;
  font-size: 2.1rem;
  margin: 0 auto 18px;
}

.role {
  margin: 0;
  color: var(--muted);
  font-weight: 600;
}

.cta-band {
  padding-top: 0;
}

.cta-box {
  background: var(--deep);
  color: white;
  border-radius: 28px;
  padding: 32px 28px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.cta-box .eyebrow,
.cta-box h2 {
  color: white;
}

.contact-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 32px;
  align-items: start;
}

.contact-list {
  display: grid;
  gap: 18px;
  margin-top: 24px;
}

.contact-list div {
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: 18px;
  padding: 18px 20px;
}

.contact-list strong {
  display: block;
  margin-bottom: 4px;
  color: var(--ink);
}

.contact-form {
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: 24px;
  padding: 24px;
  box-shadow: var(--shadow);
}

.field-row {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
}

label {
  display: block;
  color: var(--ink);
  font-weight: 600;
  margin-bottom: 16px;
}

input,
textarea,
select {
  display: block;
  width: 100%;
  min-height: 54px;
  border: 1px solid rgba(29, 29, 29, 0.18);
  border-radius: 14px;
  padding: 0.9rem 1rem;
  margin-top: 8px;
  background: #faf9f8;
  color: var(--ink);
  font: inherit;
  transition: border-color 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

input:focus,
textarea:focus,
select:focus {
  outline: none;
  border-color: rgba(29, 29, 29, 0.42);
  box-shadow: 0 0 0 4px rgba(29, 29, 29, 0.06);
}

select {
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  background-image: linear-gradient(45deg, transparent 50%, var(--ink) 50%), linear-gradient(135deg, var(--ink) 50%, transparent 50%);
  background-position: calc(100% - 22px) calc(50% - 2px), calc(100% - 16px) calc(50% - 2px);
  background-size: 6px 6px, 6px 6px;
  background-repeat: no-repeat;
  padding-right: 42px;
  cursor: pointer;
}

textarea {
  min-height: 130px;
  resize: vertical;
}

.form-status {
  min-height: 1.7em;
  margin: 14px 0 0;
  font-weight: 600;
}

.form-status.success {
  color: #176b35;
}

.form-status.error {
  color: #a12622;
}

.floating-whatsapp {
  position: fixed;
  right: 18px;
  bottom: 86px;
  z-index: 20;
  background: #25d366;
  color: #fff;
  font-weight: 800;
  border-radius: 999px;
  padding: 14px 18px;
  box-shadow: 0 16px 25px rgba(37, 211, 102, 0.3);
}

.mobile-cta-bar {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 25;
  display: none;
  grid-template-columns: repeat(3, 1fr);
  background: rgba(18, 18, 18, 0.96);
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.mobile-cta-bar a {
  color: #fff;
  text-align: center;
  padding: 14px 10px;
  font-weight: 700;
}

.site-footer {
  background: var(--deep);
  color: rgba(255, 255, 255, 0.8);
  padding: 26px 0 90px;
}

.footer-wrap {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
}

.footer-wrap p {
  margin: 0;
  color: inherit;
}

.reveal {
  opacity: 0;
  transform: translateY(16px);
  transition: opacity 0.45s ease, transform 0.45s ease;
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
  }

  .reveal {
    opacity: 1;
    transform: none;
  }
}

@media (max-width: 980px) {
  .nav,
  .desktop-cta {
    display: none;
  }

  .mobile-menu-button {
    display: flex;
  }

  .mobile-menu.open {
    display: block;
  }

  .hero-grid,
  .two-col,
  .contact-grid,
  .service-grid,
  .feature-grid,
  .process-grid,
  .team-grid,
  .trust-grid,
  .faq-wrap {
    grid-template-columns: 1fr;
  }

  .cta-box,
  .footer-wrap {
    flex-direction: column;
    align-items: flex-start;
  }
}

@media (max-width: 560px) {
  .section {
    padding: 74px 0;
  }

  .field-row,
  .check-list {
    grid-template-columns: 1fr;
    column-count: 1;
  }

  .hero {
    padding-top: 68px;
  }

  .btn {
    width: 100%;
  }

  .hero-actions {
    flex-direction: column;
  }

  .logo-block {
    flex-direction: column;
    text-align: center;
  }

  .brand-mark {
    width: 96px;
    height: 96px;
  }

  .brand-text h2 {
    letter-spacing: 0.08em;
  }

  .mobile-cta-bar {
    display: grid;
  }

  .floating-whatsapp {
    right: 12px;
    bottom: 72px;
  }
}

