:root {
  --black: #070707;
  --black-2: #111111;
  --black-3: #191919;
  --orange: #e86a1c;
  --orange-2: #ff8a3d;
  --copper: #a64a13;
  --gold: #d99a45;
  --cream: #fff8ef;
  --white: #ffffff;
  --gray-50: #f7f7f7;
  --gray-100: #ededed;
  --gray-400: #8b8b8b;
  --gray-700: #424242;
  --shadow: 0 24px 70px rgba(0, 0, 0, 0.13);
  --shadow-dark: 0 24px 80px rgba(0, 0, 0, 0.35);
  --border: rgba(232, 106, 28, 0.20);
  --radius: 28px;
  --radius-sm: 18px;
  --container: 1160px;
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 96px;
}

body {
  font-family: "Inter", Arial, sans-serif;
  color: var(--gray-700);
  background: var(--white);
  line-height: 1.65;
  overflow-x: hidden;
}

body.menu-open {
  overflow: hidden;
}

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

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

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

button {
  border: 0;
}

ul {
  list-style-position: inside;
}

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

.skip-link {
  position: fixed;
  top: 12px;
  left: 12px;
  z-index: 9999;
  padding: 10px 14px;
  color: var(--black);
  background: var(--white);
  border-radius: 999px;
  transform: translateY(-180%);
  transition: transform 0.2s ease;
}

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

.site-header {
  position: relative;
  z-index: 100;
}

.topbar {
  color: rgba(255, 255, 255, 0.78);
  background: var(--black);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  font-size: 0.88rem;
}

.topbar__inner {
  min-height: 42px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
}

.topbar__links {
  display: flex;
  align-items: center;
  gap: 18px;
  white-space: nowrap;
}

.topbar a,
.footer a,
.nav-menu a {
  transition: color 0.2s ease, opacity 0.2s ease;
}

.topbar a:hover,
.footer a:hover,
.nav-menu a:hover,
.nav-menu a.active {
  color: var(--gold);
}

.navbar {
  position: sticky;
  top: 0;
  background: rgba(7, 7, 7, 0.88);
  backdrop-filter: blur(18px);
  color: var(--white);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: 0 16px 46px rgba(0, 0, 0, 0.22);
}

.navbar.is-scrolled {
  background: rgba(7, 7, 7, 0.96);
}

.navbar__inner {
  min-height: 82px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 13px;
  min-width: 0;
}

.brand__logo {
  width: 58px;
  height: 58px;
  object-fit: cover;
  border-radius: 18px;
  border: 1px solid rgba(232, 106, 28, 0.62);
  box-shadow: 0 0 0 4px rgba(232, 106, 28, 0.08);
}

.brand__copy {
  display: flex;
  flex-direction: column;
  line-height: 1.1;
}

.brand__copy strong {
  font-family: "Poppins", Arial, sans-serif;
  font-size: 1.06rem;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.brand__copy small {
  margin-top: 5px;
  color: rgba(255, 255, 255, 0.68);
  font-size: 0.76rem;
}

.nav-menu {
  list-style: none;
  display: flex;
  align-items: center;
  gap: 24px;
  font-size: 0.94rem;
  font-weight: 700;
}

.menu-toggle {
  display: none;
  width: 46px;
  height: 46px;
  border-radius: 15px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  background: rgba(255, 255, 255, 0.04);
  cursor: pointer;
}

.menu-toggle span {
  width: 22px;
  height: 2px;
  display: block;
  margin: 5px auto;
  border-radius: 99px;
  background: var(--white);
  transition: transform 0.22s ease, opacity 0.22s ease;
}

.menu-toggle.active span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.menu-toggle.active span:nth-child(2) {
  opacity: 0;
}

.menu-toggle.active span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

.section {
  padding: 104px 0;
}

.section-dark {
  color: var(--white);
  background: var(--black);
}

.section-label,
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 16px;
  color: var(--orange-2);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.section-label::before,
.eyebrow::before {
  content: "";
  width: 32px;
  height: 2px;
  border-radius: 99px;
  background: linear-gradient(90deg, var(--orange), var(--gold));
}

h1,
h2,
h3 {
  font-family: "Poppins", Arial, sans-serif;
  color: var(--black);
  line-height: 1.12;
  letter-spacing: -0.03em;
}

.section-dark h1,
.section-dark h2,
.section-dark h3,
.feature--dark h2,
.cta h2 {
  color: var(--white);
}

h1 {
  font-size: clamp(2.65rem, 6vw, 5.25rem);
}

h2 {
  font-size: clamp(2rem, 4vw, 3.25rem);
}

h3 {
  font-size: 1.2rem;
}

.section-heading {
  max-width: 760px;
  margin-bottom: 42px;
}

.section-heading p:not(.section-label) {
  margin-top: 16px;
  font-size: 1.06rem;
  color: var(--gray-700);
}

.section-heading--side {
  margin-bottom: 0;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 13px 23px;
  border-radius: 999px;
  font-weight: 900;
  letter-spacing: -0.01em;
  cursor: pointer;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease, color 0.2s ease, border-color 0.2s ease;
}

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

.btn--primary {
  color: var(--white);
  background: linear-gradient(135deg, var(--orange), var(--copper));
  box-shadow: 0 18px 42px rgba(232, 106, 28, 0.28);
}

.btn--primary:hover {
  box-shadow: 0 22px 52px rgba(232, 106, 28, 0.35);
}

.btn--ghost {
  color: var(--white);
  background: rgba(255, 255, 255, 0.07);
  border: 1px solid rgba(255, 255, 255, 0.16);
}

.btn--ghost:hover {
  background: rgba(255, 255, 255, 0.12);
}

.btn--secondary {
  color: var(--black);
  background: var(--white);
  border: 1px solid rgba(0, 0, 0, 0.08);
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.08);
}

.btn--full {
  width: 100%;
}

.link-button {
  margin-top: auto;
  color: var(--orange);
  background: none;
  font-weight: 900;
  cursor: pointer;
  text-align: left;
}

.link-button::after {
  content: " →";
}

.hero {
  position: relative;
  min-height: 720px;
  display: grid;
  align-items: center;
  padding: 108px 0 92px;
  overflow: hidden;
  isolation: isolate;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -3;
  background:
    radial-gradient(circle at 86% 12%, rgba(232, 106, 28, 0.34), transparent 32%),
    radial-gradient(circle at 12% 78%, rgba(217, 154, 69, 0.14), transparent 24%),
    linear-gradient(135deg, rgba(7, 7, 7, 0.98), rgba(17, 17, 17, 0.94));
}

.hero__texture {
  position: absolute;
  inset: 0;
  z-index: -2;
  opacity: 0.14;
  background-image:
    linear-gradient(90deg, rgba(255, 255, 255, 0.10) 1px, transparent 1px),
    linear-gradient(rgba(255, 255, 255, 0.10) 1px, transparent 1px);
  background-size: 76px 76px;
  mask-image: linear-gradient(to bottom, black, transparent 78%);
}

.hero__grid {
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(340px, 0.72fr);
  align-items: center;
  gap: 58px;
}

.hero__content {
  max-width: 770px;
}

.hero__lead {
  max-width: 690px;
  margin-top: 24px;
  color: rgba(255, 255, 255, 0.76);
  font-size: clamp(1.02rem, 2vw, 1.18rem);
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 34px;
}

.hero__proof {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 30px;
}

.hero__proof span {
  padding: 9px 13px;
  color: rgba(255, 255, 255, 0.84);
  border: 1px solid rgba(255, 255, 255, 0.11);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.05);
  font-size: 0.9rem;
  font-weight: 700;
}

.hero-card {
  position: relative;
  padding: 26px;
  border: 1px solid rgba(232, 106, 28, 0.30);
  border-radius: 34px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.10), rgba(255, 255, 255, 0.045));
  box-shadow: var(--shadow-dark);
  backdrop-filter: blur(16px);
  overflow: hidden;
}

.hero-card::before {
  content: "";
  position: absolute;
  inset: 18px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 26px;
  pointer-events: none;
}

.hero-card__glow {
  position: absolute;
  width: 230px;
  height: 230px;
  right: -90px;
  top: -90px;
  background: rgba(232, 106, 28, 0.35);
  filter: blur(50px);
}

.hero-card__top {
  position: relative;
  display: flex;
  align-items: center;
  gap: 16px;
}

.hero-card__top img {
  width: 112px;
  height: 112px;
  object-fit: cover;
  border-radius: 28px;
  border: 1px solid rgba(232, 106, 28, 0.58);
}

.hero-card__top strong {
  display: block;
  color: var(--white);
  font-family: "Poppins", Arial, sans-serif;
  font-size: 1.35rem;
}

.hero-card__top span {
  display: block;
  margin-top: 5px;
  color: rgba(255, 255, 255, 0.62);
  font-size: 0.92rem;
}

.hero-card__line {
  height: 1px;
  margin: 24px 0;
  background: linear-gradient(90deg, transparent, rgba(232, 106, 28, 0.70), transparent);
}

.hero-card__items {
  display: grid;
  gap: 14px;
}

.hero-card__items div {
  padding: 16px;
  border: 1px solid rgba(255, 255, 255, 0.10);
  border-radius: 20px;
  background: rgba(0, 0, 0, 0.20);
}

.hero-card__items small {
  display: block;
  color: var(--orange-2);
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.hero-card__items strong {
  display: block;
  margin-top: 3px;
  color: var(--white);
}

.hero-card__items span {
  display: block;
  margin-top: 4px;
  color: rgba(255, 255, 255, 0.66);
  font-size: 0.92rem;
}

.trust-strip {
  position: relative;
  z-index: 3;
  margin-top: -48px;
  padding-bottom: 44px;
}

.trust-strip__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}

.trust-card {
  min-height: 170px;
  padding: 24px;
  border: 1px solid rgba(0, 0, 0, 0.06);
  border-radius: var(--radius-sm);
  background: var(--white);
  box-shadow: var(--shadow);
}

.trust-card span,
.process-step span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  margin-bottom: 18px;
  color: var(--white);
  border-radius: 50%;
  background: linear-gradient(135deg, var(--orange), var(--copper));
  font-weight: 900;
}

.trust-card strong {
  display: block;
  color: var(--black);
  font-size: 1.03rem;
}

.trust-card p {
  margin-top: 8px;
  font-size: 0.95rem;
}

.about {
  background: var(--white);
}

.about__grid,
.why__grid,
.financials__grid,
.contact__grid,
.feature__grid {
  display: grid;
  grid-template-columns: 0.86fr 1.14fr;
  gap: 56px;
  align-items: start;
}

.about__content {
  padding: 36px;
  border: 1px solid rgba(0, 0, 0, 0.06);
  border-radius: var(--radius);
  background:
    linear-gradient(135deg, rgba(232, 106, 28, 0.06), transparent 40%),
    var(--gray-50);
}

.about__content p + p {
  margin-top: 18px;
}

.about__mini-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  margin-top: 28px;
}

.about__mini-cards div {
  padding: 16px;
  border-radius: 18px;
  background: var(--white);
  box-shadow: 0 14px 30px rgba(0, 0, 0, 0.06);
}

.about__mini-cards strong {
  display: block;
  color: var(--black);
  font-family: "Poppins", Arial, sans-serif;
}

.about__mini-cards span {
  display: block;
  margin-top: 3px;
  color: var(--gray-400);
  font-size: 0.9rem;
}

.services {
  background: var(--gray-50);
}

.services__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.service-card {
  min-height: 100%;
  display: flex;
  flex-direction: column;
  gap: 16px;
  padding: 28px;
  border: 1px solid rgba(0, 0, 0, 0.055);
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: 0 18px 44px rgba(0, 0, 0, 0.06);
  transition: transform 0.22s ease, box-shadow 0.22s ease, border-color 0.22s ease;
}

.service-card:hover {
  transform: translateY(-6px);
  border-color: rgba(232, 106, 28, 0.34);
  box-shadow: 0 28px 64px rgba(0, 0, 0, 0.11);
}

.service-card--wide {
  grid-column: span 3;
  min-height: auto;
}

.service-card__icon {
  width: 58px;
  height: 58px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--orange);
  border-radius: 18px;
  background: rgba(232, 106, 28, 0.09);
}

.service-card__icon svg {
  width: 31px;
  height: 31px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.9;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.service-card p {
  color: var(--gray-700);
}

.service-card ul,
.financials__list ul {
  display: grid;
  gap: 8px;
  list-style: none;
}

.service-card li,
.financials__list li {
  position: relative;
  padding-left: 24px;
}

.service-card li::before,
.financials__list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.65em;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--orange), var(--gold));
  transform: translateY(-50%);
}

.inline-list {
  display: flex !important;
  flex-wrap: wrap;
  gap: 10px 18px !important;
}

.feature {
  background:
    radial-gradient(circle at 14% 20%, rgba(232, 106, 28, 0.24), transparent 30%),
    linear-gradient(135deg, var(--black), var(--black-2));
}

.feature__grid {
  grid-template-columns: minmax(0, 1fr) minmax(320px, 0.78fr);
  align-items: center;
}

.feature__content p:not(.section-label) {
  color: rgba(255, 255, 255, 0.72);
  margin-top: 18px;
  max-width: 640px;
}

.feature__checks {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  margin: 28px 0;
}

.feature__checks span {
  position: relative;
  padding: 14px 14px 14px 42px;
  color: rgba(255, 255, 255, 0.86);
  border: 1px solid rgba(255, 255, 255, 0.10);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.055);
  font-weight: 700;
}

.feature__checks span::before {
  content: "✓";
  position: absolute;
  left: 14px;
  top: 13px;
  color: var(--gold);
  font-weight: 900;
}

.feature-panel {
  padding: 32px;
  border: 1px solid rgba(232, 106, 28, 0.32);
  border-radius: 34px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.12), rgba(255, 255, 255, 0.055));
  box-shadow: var(--shadow-dark);
}

.feature-panel__amount {
  color: var(--white);
  font-family: "Poppins", Arial, sans-serif;
  font-size: clamp(2.4rem, 5vw, 4.2rem);
  font-weight: 800;
  letter-spacing: -0.05em;
}

.feature-panel p {
  margin-top: 10px;
  color: rgba(255, 255, 255, 0.68);
}

.feature-panel__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
  margin-top: 24px;
}

.feature-panel__grid div {
  padding: 16px;
  border-radius: 18px;
  background: rgba(0, 0, 0, 0.22);
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.feature-panel__grid strong {
  color: var(--orange-2);
}

.feature-panel__grid span {
  display: block;
  margin-top: 4px;
  color: rgba(255, 255, 255, 0.66);
  font-size: 0.92rem;
}

.financials {
  background: var(--cream);
}

.financials__grid {
  grid-template-columns: 0.9fr 1.1fr;
  align-items: center;
}

.financials__card {
  padding: 36px;
  border-radius: 34px;
  background: var(--black);
  box-shadow: var(--shadow);
}

.financials__card h2,
.financials__card p {
  color: var(--white);
}

.financials__card p:not(.section-label) {
  margin: 18px 0 28px;
  color: rgba(255, 255, 255, 0.72);
}

.financials__list {
  padding: 34px;
  border-radius: 34px;
  background: var(--white);
  box-shadow: var(--shadow);
}

.financials__list li {
  padding-top: 8px;
  padding-bottom: 8px;
  border-bottom: 1px solid rgba(0, 0, 0, 0.06);
  font-weight: 700;
  color: var(--black-3);
}

.financials__list li:last-child {
  border-bottom: 0;
}

.process {
  background: var(--white);
}

.process__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}

.process-step {
  padding: 26px;
  border: 1px solid rgba(0, 0, 0, 0.06);
  border-radius: var(--radius);
  background: var(--gray-50);
}

.process-step h3 {
  margin-bottom: 10px;
}

.why {
  background: var(--gray-50);
}

.why__items {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
}

.why-item {
  padding: 22px;
  border-radius: 22px;
  background: var(--white);
  border: 1px solid rgba(0, 0, 0, 0.055);
}

.why-item strong {
  display: block;
  color: var(--black);
  font-family: "Poppins", Arial, sans-serif;
  margin-bottom: 6px;
}

.why-item span {
  display: block;
}

.cta {
  padding: 84px 0;
  background:
    radial-gradient(circle at 78% 24%, rgba(232, 106, 28, 0.24), transparent 28%),
    var(--black);
}

.cta__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  padding: 40px;
  border: 1px solid rgba(255, 255, 255, 0.10);
  border-radius: 34px;
  background: rgba(255, 255, 255, 0.055);
}

.cta__inner p:not(.section-label) {
  max-width: 700px;
  margin-top: 14px;
  color: rgba(255, 255, 255, 0.72);
}

.contact {
  background: var(--white);
}

.contact__grid {
  grid-template-columns: 0.92fr 1.08fr;
  align-items: start;
}

.contact__info p:not(.section-label) {
  margin-top: 18px;
  font-size: 1.04rem;
}

.contact-cards {
  display: grid;
  gap: 12px;
  margin-top: 28px;
}

.contact-cards a,
.contact-cards div {
  padding: 18px;
  border-radius: 20px;
  background: var(--gray-50);
  border: 1px solid rgba(0, 0, 0, 0.06);
  transition: border-color 0.2s ease, transform 0.2s ease;
}

.contact-cards a:hover {
  border-color: rgba(232, 106, 28, 0.34);
  transform: translateY(-2px);
}

.contact-cards span {
  display: block;
  color: var(--orange);
  font-size: 0.82rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.contact-cards strong {
  display: block;
  margin-top: 4px;
  color: var(--black);
  word-break: break-word;
}

.contact-form {
  padding: 34px;
  border-radius: 34px;
  color: var(--white);
  background:
    linear-gradient(135deg, rgba(232, 106, 28, 0.16), transparent 36%),
    var(--black);
  box-shadow: var(--shadow-dark);
}

.contact-form h3 {
  color: var(--white);
  font-size: 1.55rem;
}

.contact-form p {
  margin-top: 8px;
  margin-bottom: 24px;
  color: rgba(255, 255, 255, 0.68);
}

.contact-form label {
  display: block;
  margin: 15px 0 7px;
  color: rgba(255, 255, 255, 0.82);
  font-weight: 800;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
  width: 100%;
  color: var(--white);
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 16px;
  padding: 14px 15px;
  outline: none;
  transition: border-color 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.contact-form select option {
  color: var(--black);
}

.contact-form input::placeholder,
.contact-form textarea::placeholder {
  color: rgba(255, 255, 255, 0.42);
}

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
  border-color: rgba(232, 106, 28, 0.8);
  box-shadow: 0 0 0 4px rgba(232, 106, 28, 0.14);
  background: rgba(255, 255, 255, 0.11);
}

.contact-form .btn {
  margin-top: 22px;
}

.footer {
  color: rgba(255, 255, 255, 0.72);
  background: var(--black);
  padding: 58px 0 24px;
}

.footer__grid {
  display: grid;
  grid-template-columns: 1.45fr 0.75fr 0.9fr;
  gap: 36px;
  padding-bottom: 38px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.10);
}

.footer__brand {
  display: flex;
  align-items: flex-start;
  gap: 16px;
}

.footer__brand img {
  width: 80px;
  height: 80px;
  object-fit: cover;
  border-radius: 20px;
  border: 1px solid rgba(232, 106, 28, 0.52);
}

.footer strong,
.footer h3 {
  color: var(--white);
}

.footer__brand strong {
  font-family: "Poppins", Arial, sans-serif;
  font-size: 1.2rem;
}

.footer__brand p {
  max-width: 420px;
  margin-top: 6px;
}

.footer ul {
  display: grid;
  gap: 9px;
  margin-top: 16px;
  list-style: none;
}

.footer__bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding-top: 22px;
  font-size: 0.92rem;
}

.whatsapp-float {
  position: fixed;
  right: 20px;
  bottom: 20px;
  z-index: 90;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 128px;
  height: 54px;
  padding: 0 18px;
  color: var(--white);
  border-radius: 999px;
  background: #25d366;
  font-weight: 900;
  box-shadow: 0 20px 44px rgba(37, 211, 102, 0.32);
  transition: transform 0.2s ease;
}

.whatsapp-float:hover {
  transform: translateY(-3px);
}

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

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

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

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

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

@media (max-width: 1080px) {
  .hero__grid,
  .about__grid,
  .why__grid,
  .financials__grid,
  .contact__grid,
  .feature__grid {
    grid-template-columns: 1fr;
  }

  .hero-card {
    max-width: 620px;
  }

  .trust-strip__grid,
  .process__grid {
    grid-template-columns: repeat(2, 1fr);
  }

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

  .service-card--wide {
    grid-column: span 2;
  }

  .section-heading--side {
    max-width: 780px;
  }

  .cta__inner {
    align-items: flex-start;
    flex-direction: column;
  }
}

@media (max-width: 820px) {
  .topbar__inner {
    align-items: flex-start;
    flex-direction: column;
    padding: 10px 0;
    gap: 8px;
  }

  .topbar__links {
    flex-wrap: wrap;
    gap: 8px 14px;
  }

  .navbar__inner {
    min-height: 74px;
  }

  .brand__logo {
    width: 50px;
    height: 50px;
    border-radius: 15px;
  }

  .brand__copy small {
    display: none;
  }

  .menu-toggle {
    display: block;
  }

  .nav-menu {
    position: fixed;
    top: 116px;
    left: 16px;
    right: 16px;
    display: grid;
    gap: 0;
    padding: 12px;
    border: 1px solid rgba(255, 255, 255, 0.10);
    border-radius: 22px;
    background: rgba(7, 7, 7, 0.97);
    box-shadow: 0 22px 54px rgba(0, 0, 0, 0.34);
    opacity: 0;
    visibility: hidden;
    transform: translateY(-8px);
    transition: opacity 0.22s ease, visibility 0.22s ease, transform 0.22s ease;
  }

  .nav-menu.active {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
  }

  .nav-menu a {
    display: block;
    padding: 14px;
    border-radius: 14px;
  }

  .nav-menu a:hover,
  .nav-menu a.active {
    background: rgba(255, 255, 255, 0.06);
  }

  .section {
    padding: 78px 0;
  }

  .hero {
    min-height: auto;
    padding: 76px 0 86px;
  }

  .hero__grid {
    gap: 36px;
  }

  .hero-card__top {
    align-items: flex-start;
    flex-direction: column;
  }

  .trust-strip {
    margin-top: -28px;
  }

  .services__grid,
  .trust-strip__grid,
  .process__grid,
  .why__items,
  .feature__checks,
  .feature-panel__grid,
  .about__mini-cards {
    grid-template-columns: 1fr;
  }

  .service-card--wide {
    grid-column: span 1;
  }

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

  .footer__bottom {
    align-items: flex-start;
    flex-direction: column;
  }
}

@media (max-width: 520px) {
  .container {
    width: min(100% - 24px, var(--container));
  }

  h1 {
    font-size: clamp(2.25rem, 13vw, 3.25rem);
  }

  h2 {
    font-size: clamp(1.75rem, 9vw, 2.45rem);
  }

  .hero__actions,
  .hero__proof,
  .inline-list {
    flex-direction: column;
    align-items: stretch;
  }

  .btn,
  .hero__proof span,
  .whatsapp-float {
    width: 100%;
  }

  .hero-card,
  .about__content,
  .financials__card,
  .financials__list,
  .feature-panel,
  .contact-form,
  .cta__inner {
    padding: 24px;
    border-radius: 24px;
  }

  .service-card,
  .process-step,
  .trust-card,
  .why-item {
    padding: 22px;
    border-radius: 22px;
  }

  .whatsapp-float {
    right: 12px;
    left: 12px;
    bottom: 12px;
  }

  .footer {
    padding-bottom: 84px;
  }
}
