:root {
  --yellow: #f47a00;
  --yellow-dark: #cf6100;
  --black: #070707;
  --ink: #161616;
  --muted: #686868;
  --line: #e8e8e8;
  --white: #fff;
  --radius: 8px;
  --soft: #fff7ef;
  --condensed: "Montserrat", Arial, sans-serif;
  --body: "Montserrat", Arial, Helvetica, sans-serif;
  --fs-body: 16px;
  --fs-small: 12px;
  --fs-nav: 14px;
  --fs-eyebrow: 12px;
  --fs-lead: 18px;
  --fs-hero: clamp(42px, 4.4vw, 58px);
  --fs-title: clamp(30px, 3.2vw, 42px);
  --fs-subtitle: 24px;
  --fs-card-title: 22px;
  --fs-card-text: 15px;
  --fs-button: 14px;
  --lh-tight: 1.08;
  --lh-title: 1.16;
  --lh-text: 1.6;
}

* {
  box-sizing: border-box;
}

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

body {
  margin: 0;
  color: var(--ink);
  background: #fff;
  font-family: var(--body);
  line-height: 1.6;
}

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

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

button,
input,
select {
  font: inherit;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  gap: 28px;
  min-height: 84px;
  padding: 10px clamp(24px, 5vw, 58px);
  border-bottom: 3px solid var(--yellow);
  background: #fff;
  color: #070707;
}

.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  min-width: 270px;
}

.image-brand {
  min-width: 190px;
}

.image-brand img {
  width: 190px;
  height: auto;
}

.brand-mark {
  position: relative;
  width: 70px;
  height: 70px;
  border: 3px solid #111;
  border-radius: 50%;
  transform: none;
}

.brand-mark::before,
.brand-mark::after,
.brand-mark span {
  content: "";
  position: absolute;
  background: var(--yellow);
}

.brand-mark::before {
  width: 48px;
  height: 25px;
  left: 12px;
  top: 24px;
  border-radius: 0 22px 22px 0;
  background: #111;
  clip-path: polygon(0 10%, 76% 10%, 100% 58%, 31% 58%);
}

.brand-mark::after {
  width: 29px;
  height: 10px;
  left: 19px;
  top: 29px;
  background: #fff;
  border-radius: 0 12px 12px 0;
}

.brand-mark span {
  width: 86px;
  height: 4px;
  left: 30px;
  top: 56px;
  border-radius: 6px;
  background: #111;
}

.brand-text {
  display: grid;
  line-height: 1;
  text-transform: uppercase;
}

.brand-text small {
  font-family: var(--condensed);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0;
}

.brand-text strong {
  font-family: var(--condensed);
  color: var(--yellow);
  font-size: 38px;
  font-weight: 900;
}

.brand-text em {
  margin-top: 4px;
  font-size: 10px;
  font-style: normal;
  text-transform: none;
  color: #111;
}

.main-nav {
  display: flex;
  justify-content: center;
  gap: clamp(18px, 2.4vw, 34px);
  flex: 1;
  white-space: nowrap;
}

.main-nav a {
  font-family: var(--condensed);
  font-size: 15px;
  font-weight: 900;
  text-transform: uppercase;
  color: #111;
}

.main-nav .active {
  color: var(--yellow);
}

.nav-toggle {
  display: none;
  cursor: pointer;
  width: 40px;
  height: 32px;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 6px;
}

.nav-toggle span {
  display: block;
  width: 100%;
  height: 3px;
  background: #111;
  border-radius: 999px;
  transition: transform .3s ease, opacity .3s ease;
}

.nav-toggle-control:checked + .nav-toggle span:nth-child(1) {
  transform: translateY(8px) rotate(45deg);
}

.nav-toggle-control:checked + .nav-toggle span:nth-child(2) {
  opacity: 0;
}

.nav-toggle-control:checked + .nav-toggle span:nth-child(3) {
  transform: translateY(-8px) rotate(-45deg);
}

.social-top,
.footer-social {
  display: flex;
  gap: 12px;
}

@media (max-width: 760px) {
  .site-header {
    position: sticky;
    top: 0;
    z-index: 30;
    align-items: flex-start;
    padding: 14px 18px;
  }

  .brand {
    min-width: 0;
    margin-right: auto;
  }

  .nav-toggle {
    display: flex;
    order: 2;
    margin-left: auto;
    z-index: 31;
  }

  .main-nav {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: #fff;
    flex-direction: column;
    gap: 0;
    padding: 16px 18px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, .08);
  }

  .nav-toggle-control:checked + .nav-toggle + .main-nav {
    display: flex;
  }

  .main-nav a {
    display: block;
    width: 100%;
    padding: 14px 0;
    border-top: 1px solid rgba(0, 0, 0, .08);
    background: #fff;
  }

  .main-nav a:first-child {
    border-top: 0;
  }

  .social-top {
    order: 4;
    width: 100%;
    justify-content: flex-start;
    padding-top: 12px;
  }
}

.social {
  display: grid;
  place-items: center;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  color: #fff;
  font-weight: 900;
}

.facebook {
  background: #2f68d8;
}

.instagram {
  background: linear-gradient(135deg, #f9c842, #e23b86 48%, #673acb);
}

.hero {
  position: relative;
  isolation: isolate;
  min-height: 448px;
  overflow: hidden;
  background: #f2f2f2;
  color: #111;
}

.hero-bg {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: -3;
  background-image: url("assets/hero-ideal-wide.png");
  background-repeat: no-repeat;
  background-position: center center;
  background-size: cover;
  filter: saturate(1.08) contrast(1.05);
}

.hero-overlay {
  position: absolute;
  inset: 0;
  z-index: -2;
  background:
    linear-gradient(90deg, rgba(255, 255, 255, .94) 0%, rgba(255, 255, 255, .78) 28%, rgba(255, 255, 255, .12) 42%, rgba(255, 255, 255, 0) 58%, rgba(0, 0, 0, .22) 100%),
    linear-gradient(0deg, rgba(255, 122, 0, .08), rgba(255, 255, 255, 0));
}

.hero-content {
  display: grid;
  grid-template-columns: minmax(500px, 46vw) minmax(315px, 340px);
  align-items: center;
  justify-content: space-between;
  gap: clamp(34px, 5vw, 72px);
  width: min(1320px, calc(100% - 56px));
  min-height: 448px;
  margin: 0 auto;
  padding: 22px 0;
}

.hero-copy {
  max-width: 520px;
}

.hero h1 {
  margin: 0;
  font-family: var(--condensed);
  font-size: clamp(40px, 4.4vw, 52px);
  line-height: .96;
  font-weight: 900;
  text-transform: uppercase;
}

.hero h1 span {
  display: block;
  margin-top: 8px;
  color: var(--yellow);
}

.hero-copy > p {
  max-width: 430px;
  margin: 22px 0 26px;
  font-family: var(--condensed);
  font-size: 18px;
  font-weight: 800;
}

.hero-benefits {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  max-width: 500px;
  margin-bottom: 25px;
}

.hero-benefits article {
  display: grid;
  gap: 10px;
  align-items: start;
}

.hero-benefits svg {
  width: 36px;
  height: 36px;
  fill: var(--yellow);
}

.hero-benefits strong {
  font-family: var(--condensed);
  font-size: 14px;
  line-height: 1.12;
  text-transform: none;
}

.primary-cta,
.outline-btn,
.signup-card button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 45px;
  border-radius: 7px;
  font-family: var(--condensed);
  font-weight: 900;
  text-transform: uppercase;
}

.primary-cta {
  gap: 22px;
  padding: 0 28px;
  background: #0b0b0b;
  color: var(--yellow);
  box-shadow: 0 6px 0 rgba(0, 0, 0, .18);
}

.primary-cta span {
  font-size: 36px;
  line-height: 0;
}

.signup-card {
  position: relative;
  z-index: 2;
  width: 315px;
  margin-left: auto;
  overflow: hidden;
  border-radius: 8px;
  background: #fff;
  color: #111;
  box-shadow: 0 24px 60px rgba(0, 0, 0, .3);
}

.hero-form-stage {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  min-height: 448px;
  isolation: isolate;
}

.signup-head {
  display: flex;
  gap: 18px;
  align-items: center;
  padding: 16px 22px;
  background: linear-gradient(180deg, #ff9300, #f27800);
  color: #fff;
}

.signup-head svg {
  width: 36px;
  height: 36px;
  flex: 0 0 auto;
  fill: #fff;
}

.signup-head h2 {
  margin: 0;
  font-family: var(--condensed);
  font-size: 21px;
  line-height: 1;
  text-transform: uppercase;
}

.signup-head p {
  margin: 6px 0 0;
  font-size: 13px;
  font-weight: 800;
  line-height: 1.2;
}

.signup-card form {
  display: grid;
  gap: 10px;
  padding: 16px 20px 18px;
}

.signup-card form > label:not(.privacy) > span {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0 0 0 0);
}

.signup-card input,
.signup-card select {
  width: 100%;
  height: 41px;
  border: 1px solid #ddd;
  border-radius: 2px;
  padding: 0 16px;
  color: #777;
  background: #fff;
  outline: 0;
}

.privacy {
  display: flex;
  gap: 8px;
  align-items: center;
  color: #777;
  font-size: 11px;
}

.privacy input {
  width: 16px;
  height: 16px;
  padding: 0;
}

.privacy a {
  color: #111;
  text-decoration: underline;
}

.signup-card button {
  width: 100%;
  border: 0;
  background: linear-gradient(180deg, #ff9300, #f07800);
  color: #fff;
  cursor: pointer;
}

.signup-card button:disabled {
  background: #c9c9c9;
  color: #777;
  cursor: not-allowed;
  box-shadow: none;
}

.section-inner {
  width: min(890px, calc(100% - 64px));
  margin: 0 auto;
}

.why {
  padding: 26px 0 30px;
  background: #fff;
}

.why h2,
.title-rule h2,
.testimonials h2 {
  margin: 0;
  font-family: var(--condensed);
  font-size: clamp(24px, 3vw, 29px);
  line-height: 1;
  font-weight: 900;
  text-align: center;
  text-transform: uppercase;
}

.why-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 34px;
  margin-top: 28px;
}

.why-grid article {
  display: grid;
  justify-items: center;
  gap: 18px;
  min-height: 118px;
  text-align: center;
}

.why-grid strong {
  font-family: var(--condensed);
  font-size: 18px;
  line-height: 1.16;
}

.line-icon {
  position: relative;
  width: 68px;
  height: 68px;
  color: var(--yellow);
}

.line-icon::before,
.line-icon::after {
  content: "";
  position: absolute;
}

.checked::before {
  inset: 9px;
  border: 6px solid currentColor;
  border-radius: 50%;
  outline: 4px dashed currentColor;
  outline-offset: 2px;
}

.checked::after {
  width: 22px;
  height: 12px;
  left: 23px;
  top: 26px;
  border-left: 5px solid currentColor;
  border-bottom: 5px solid currentColor;
  transform: rotate(-45deg);
}

.calendar::before {
  inset: 9px;
  border: 6px solid currentColor;
  border-radius: 4px;
}

.calendar::after {
  left: 9px;
  right: 9px;
  top: 24px;
  height: 6px;
  background: currentColor;
  box-shadow: 14px -16px 0 -1px currentColor, 38px -16px 0 -1px currentColor;
}

.pin::before {
  width: 42px;
  height: 42px;
  left: 13px;
  top: 4px;
  border-radius: 50% 50% 50% 0;
  background: currentColor;
  transform: rotate(-45deg);
}

.pin::after {
  width: 14px;
  height: 14px;
  left: 27px;
  top: 18px;
  border-radius: 50%;
  background: #fff;
}

.shield::before {
  width: 50px;
  height: 58px;
  left: 9px;
  top: 4px;
  background: currentColor;
  clip-path: polygon(50% 0, 88% 12%, 88% 48%, 50% 100%, 12% 48%, 12% 12%);
}

.shield::after {
  width: 28px;
  height: 32px;
  left: 20px;
  top: 16px;
  border: 5px solid #fff;
  border-radius: 2px;
  clip-path: polygon(50% 0, 100% 12%, 100% 54%, 50% 100%, 0 54%, 0 12%);
}

.card::before {
  inset: 10px 5px;
  border: 6px solid currentColor;
  border-radius: 4px;
}

.card::after {
  left: 11px;
  right: 11px;
  top: 25px;
  height: 6px;
  background: currentColor;
  box-shadow: 0 15px 0 -1px currentColor;
}

.social-section {
  padding: 0 0 10px;
  background: #fff;
}

.title-rule {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  gap: 24px;
  align-items: center;
}

.title-rule span {
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(244, 122, 0, .9), transparent);
}

.social-columns {
  display: grid;
  grid-template-columns: 450px 364px;
  gap: 54px;
  align-items: start;
  margin-top: 20px;
}

.social-panel h3 {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  margin: 0 0 12px;
  font-family: var(--condensed);
  font-size: 27px;
  text-transform: uppercase;
}

.social-reference {
  display: block;
  width: 100%;
  border-radius: 6px;
}

.social-preview-link {
  display: block;
}

.instagram-reference {
  aspect-ratio: 450 / 359;
}

.facebook-reference {
  display: block;
  width: 100%;
  aspect-ratio: 364 / 359;
}

.social-live-frame {
  border-radius: 6px;
  background: #f4f4f4;
}

.instagram-badge,
.facebook-badge {
  display: grid;
  place-items: center;
  width: 28px;
  height: 28px;
  border-radius: 7px;
  color: #fff;
  font-family: var(--body);
  font-size: 22px;
}

.instagram-badge {
  background: linear-gradient(135deg, #f9c842, #e23b86 48%, #673acb);
}

.facebook-badge {
  border-radius: 4px;
  background: #2f75dd;
  font-weight: 900;
}

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

.insta-post {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  min-height: 184px;
  overflow: hidden;
  border-radius: 7px;
  padding: 16px;
  background: #111;
  color: #fff;
}

.insta-post::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
  background:
    linear-gradient(180deg, rgba(0, 0, 0, .18), rgba(0, 0, 0, .82)),
    var(--post-bg, linear-gradient(135deg, #252525, #000));
  background-size: cover;
  background-position: center;
}

.insta-post strong,
.insta-post small {
  position: relative;
  z-index: 1;
}

.insta-post strong {
  color: var(--yellow);
  font-family: var(--condensed);
  font-size: 19px;
  line-height: 1.05;
  text-transform: uppercase;
}

.insta-post small {
  margin-top: 8px;
  font-size: 11px;
  font-weight: 700;
}

.photo-one {
  --post-bg: url("assets/hero-ideal.png");
}

.people {
  --post-bg: url("assets/student-approved.png");
}

.sign {
  --post-bg: radial-gradient(circle at 80% 45%, #f47a00 0 9%, transparent 10%), linear-gradient(135deg, #1b2328, #020202 64%);
}

.car {
  --post-bg: url("assets/student-approved.png");
}

.categories {
  --post-bg: radial-gradient(circle at 34% 72%, #f47a00 0 9%, transparent 10%), radial-gradient(circle at 52% 72%, #f47a00 0 9%, transparent 10%), radial-gradient(circle at 70% 72%, #ececec 0 9%, transparent 10%), linear-gradient(135deg, #252525, #000);
}

.night {
  --post-bg: linear-gradient(135deg, #17202a, #050505 65%);
}

.outline-btn {
  width: min(208px, 100%);
  min-height: 38px;
  margin: 10px auto 0;
  border: 2px solid #111;
  color: #111;
  background: #fff;
}

.facebook-card {
  overflow: hidden;
  border: 1px solid #ddd;
  border-radius: 4px;
  background: #fff;
  box-shadow: 0 8px 24px rgba(0, 0, 0, .07);
}

.facebook-card header {
  display: flex;
  align-items: center;
  gap: 12px;
  min-height: 86px;
  padding: 12px;
  color: #fff;
  background:
    linear-gradient(90deg, rgba(0, 0, 0, .9), rgba(0, 0, 0, .68)),
    url("assets/hero-ideal.png") center / cover;
}

.mini-logo,
.avatar {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  background: var(--yellow);
  border: 4px solid #111;
}

.facebook-card header div:nth-child(2) {
  display: grid;
  line-height: 1.1;
  flex: 1;
}

.facebook-card header small,
.fb-post-head small {
  color: #cfcfcf;
  font-size: 12px;
}

.facebook-card header button {
  height: 28px;
  border: 0;
  border-radius: 2px;
  padding: 0 10px;
  background: #f4f7ff;
  color: #244b8c;
  font-size: 12px;
  font-weight: 800;
}

.fb-post-head {
  display: flex;
  gap: 10px;
  align-items: center;
  padding: 18px 18px 8px;
}

.avatar {
  width: 42px;
  height: 42px;
}

.fb-post-head div {
  display: grid;
  line-height: 1.15;
}

.facebook-card p {
  margin: 0;
  padding: 0 18px 16px;
  color: #222;
}

.facebook-card p span {
  color: #3478c8;
}

.facebook-card img {
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
}

.testimonials {
  position: relative;
  display: flex;
  align-items: center;
  gap: 24px;
  padding: 22px clamp(24px, 5vw, 58px) 24px;
  background: linear-gradient(180deg, #f68b00, #ef7400);
  color: #fff;
}

.anchor-target {
  display: block;
  height: 0;
  scroll-margin-top: 128px;
}

.testimonials-inner {
  width: min(890px, 100%);
  margin: 0 auto;
}

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

.testimonial-grid article {
  position: relative;
  min-height: 86px;
  padding: 0 26px 0 34px;
  border-right: 1px solid rgba(255, 255, 255, .36);
}

.testimonial-grid article:last-child {
  border-right: 0;
}

.testimonial-grid span {
  position: absolute;
  left: 0;
  top: -12px;
  font-family: Georgia, serif;
  font-size: 60px;
  line-height: 1;
}

.testimonial-grid p {
  margin: 0 0 10px;
  font-size: 13px;
  font-weight: 700;
}

.testimonial-grid strong {
  display: block;
  margin-bottom: 4px;
  font-family: var(--condensed);
}

.testimonial-grid small {
  color: #fff;
  letter-spacing: 3px;
}

.arrow {
  width: 34px;
  height: 56px;
  border: 0;
  background: transparent;
  color: #fff;
  font-size: 64px;
  line-height: 1;
  cursor: pointer;
}

.site-footer {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  padding: 92px clamp(44px, 4.5vw, 72px) 42px;
  background:
    linear-gradient(90deg, rgba(5, 6, 8, .98), rgba(5, 6, 8, .92) 38%, rgba(5, 6, 8, .72)),
    url("assets/footer-services-bg.png") center / cover no-repeat,
    #08090b;
  color: #fff;
}

.site-footer::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    radial-gradient(circle at 14% 20%, rgba(244, 122, 0, .18), transparent 32%),
    linear-gradient(180deg, rgba(244, 122, 0, .95) 0 4px, transparent 4px);
}

.footer-inner {
  display: grid;
  grid-template-columns: minmax(250px, 1.12fr) minmax(150px, .68fr) minmax(230px, .92fr) minmax(330px, 1.18fr);
  gap: clamp(22px, 3vw, 44px);
  width: 100%;
  max-width: none;
  margin: 0 auto;
  align-items: stretch;
}

.site-footer section {
  min-height: 252px;
  padding: clamp(24px, 2.3vw, 34px);
  border: 1px solid rgba(255, 255, 255, .1);
  border-radius: 8px;
  background: rgba(8, 9, 11, .58);
  box-shadow: 0 20px 60px rgba(0, 0, 0, .22);
  backdrop-filter: blur(4px);
}

.footer-brand {
  min-width: 0;
}

.footer-brand img {
  width: min(320px, 100%);
}

.footer-brand .brand-mark {
  border-color: #fff;
}

.footer-brand .brand-mark::before,
.footer-brand .brand-mark span {
  background: #fff;
}

.footer-brand .brand-mark::after {
  background: #08090b;
}

.footer-brand .brand-text em,
.footer-brand .brand-text small {
  color: #fff;
}

.site-footer p {
  color: rgba(255, 255, 255, .82);
}

.site-footer section > p {
  max-width: 300px;
}

.site-footer h2 {
  margin: 0 0 22px;
  font-family: var(--condensed);
  font-size: 25px;
  text-transform: uppercase;
  color: #fff;
}

.site-footer section {
  display: grid;
  align-content: start;
  gap: 14px;
}

.site-footer section a:not(.brand):not(.social) {
  color: rgba(255, 255, 255, .82);
  transition: color .2s ease, transform .2s ease;
}

.site-footer section a:not(.brand):not(.social):hover {
  color: #fff;
  transform: translateX(3px);
}

.contact-line {
  position: relative;
  margin: 0;
  padding-left: 42px;
}

.contact-line span {
  position: absolute;
  left: 0;
  top: 0;
  display: grid;
  place-items: center;
  width: 28px;
  height: 28px;
  border-radius: 8px;
  background: var(--yellow);
  color: #08090b;
  font-weight: 900;
  box-shadow: 0 10px 24px rgba(244, 122, 0, .25);
}

.contact-line span::before,
.contact-line span::after {
  content: "";
  display: block;
}

.contact-line span svg {
  display: block;
  width: 17px;
  height: 17px;
  fill: currentColor;
}

.contact-line .icon-phone::before,
.contact-line .icon-phone::after,
.contact-line .icon-whatsapp::before,
.contact-line .icon-whatsapp::after {
  content: none;
}

.icon-location::before {
  width: 13px;
  height: 13px;
  border-radius: 50% 50% 50% 0;
  background: currentColor;
  transform: rotate(-45deg);
}

.icon-location::after {
  position: absolute;
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: #08090b;
}

.icon-phone::before {
  width: 14px;
  height: 14px;
  border: 3px solid currentColor;
  border-top-color: transparent;
  border-right-color: transparent;
  border-radius: 50%;
  transform: rotate(-45deg);
}

.icon-whatsapp::before {
  width: 16px;
  height: 16px;
  border: 2px solid currentColor;
  border-radius: 50%;
}

.icon-whatsapp::after {
  position: absolute;
  width: 6px;
  height: 6px;
  left: 9px;
  bottom: 7px;
  border-left: 2px solid currentColor;
  border-bottom: 2px solid currentColor;
  transform: rotate(-18deg);
}

.icon-mail::before {
  width: 16px;
  height: 12px;
  border: 2px solid currentColor;
  border-radius: 2px;
}

.icon-mail::after {
  position: absolute;
  width: 10px;
  height: 10px;
  border-left: 2px solid currentColor;
  border-bottom: 2px solid currentColor;
  transform: translateY(-2px) rotate(-45deg);
}

.icon-clock::before {
  width: 16px;
  height: 16px;
  border: 2px solid currentColor;
  border-radius: 50%;
}

.icon-clock::after {
  position: absolute;
  width: 6px;
  height: 7px;
  border-left: 2px solid currentColor;
  border-bottom: 2px solid currentColor;
  transform: translate(2px, -2px);
}

.footer-social {
  margin-top: 8px;
}

.footer-social .social {
  width: 38px;
  height: 38px;
  border: 1px solid rgba(255, 255, 255, .24);
  box-shadow: 0 10px 24px rgba(0, 0, 0, .28);
}

.footer-whatsapp {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 42px;
  width: fit-content;
  margin-top: 8px;
  border-radius: 7px;
  padding: 0 16px;
  background: #25d366;
  color: #fff !important;
  font-size: var(--fs-button);
  font-weight: 900;
  text-transform: uppercase;
}

.copyright {
  margin: 30px 0 0;
  color: rgba(255, 255, 255, .72);
  text-align: center;
  font-size: 13px;
}

.whatsapp-float {
  position: fixed;
  right: 22px;
  bottom: 20px;
  z-index: 30;
  display: flex;
  align-items: center;
  gap: 10px;
  min-height: 58px;
  padding: 8px 18px 8px 10px;
  border-radius: 999px;
  background: #26c857;
  color: #fff;
  box-shadow: 0 12px 28px rgba(0, 0, 0, .28);
}

.whatsapp-float span {
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  border: 3px solid #fff;
  border-radius: 50%;
  font-size: 25px;
  font-weight: 900;
}

.whatsapp-float strong {
  font-size: 14px;
  line-height: 1.1;
}

.privacy-modal {
  position: fixed;
  inset: 0;
  z-index: 80;
  display: none;
  place-items: center;
  padding: 24px;
  background: rgba(0, 0, 0, .68);
}

.privacy-modal.open {
  display: grid;
}

.privacy-dialog {
  position: relative;
  width: min(760px, 100%);
  max-height: min(82vh, 760px);
  overflow: hidden;
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 30px 80px rgba(0, 0, 0, .42);
}

.privacy-close {
  position: absolute;
  top: 14px;
  right: 14px;
  z-index: 2;
  display: grid;
  place-items: center;
  width: 40px;
  height: 40px;
  border: 0;
  border-radius: 50%;
  background: #111;
  color: #fff;
  font-size: 28px;
  line-height: 1;
  cursor: pointer;
}

.privacy-content {
  max-height: min(82vh, 760px);
  overflow-y: auto;
  padding: 44px;
}

.privacy-content > span {
  color: var(--yellow);
  font-size: var(--fs-eyebrow);
  font-weight: 900;
  text-transform: uppercase;
}

.privacy-content h2 {
  margin: 10px 48px 18px 0;
  font-family: var(--condensed);
  font-size: var(--fs-title);
  line-height: var(--lh-title);
  text-transform: uppercase;
}

.privacy-content h3 {
  margin: 26px 0 8px;
  font-size: var(--fs-card-title);
  line-height: var(--lh-title);
}

.privacy-content p {
  margin: 0;
  color: #4f4f4f;
  font-size: var(--fs-card-text);
  line-height: var(--lh-text);
}

body.modal-open {
  overflow: hidden;
}

/* Modern landing page rhythm */
.hero {
  min-height: 560px;
}

.hero-bg {
  background-position: center center;
  background-size: cover;
}

.hero-content {
  gap: clamp(34px, 4vw, 64px);
  width: min(1320px, calc(100% - 56px));
  min-height: 560px;
  padding: 56px 0;
}

.hero h1 {
  line-height: 1.04;
}

.hero-copy > p {
  margin: 28px 0 34px;
  font-family: var(--body);
  font-size: 20px;
  line-height: 1.38;
}

.hero-benefits {
  gap: 24px;
  margin-bottom: 36px;
}

.primary-cta,
.outline-btn,
.signup-card button {
  min-height: 48px;
}

.hero-form-stage {
  min-height: 560px;
}

.signup-card form {
  gap: 12px;
  padding: 20px 20px 22px;
}

.signup-card input,
.signup-card select {
  height: 44px;
}

.section-inner {
  width: min(980px, calc(100% - 64px));
}

.wide-inner {
  width: min(1120px, calc(100% - 64px));
}

.why,
.services-section,
.journey-section,
.social-section,
.faq-section {
  padding: 86px 0;
}

.why {
  background:
    linear-gradient(180deg, #fff, #fffaf4 70%, #fff);
}

.services-section {
  background: #fff;
}

.journey-section {
  background: #111;
  color: #fff;
}

.faq-section {
  background: #fffaf4;
}

.why h2,
.title-rule h2,
.testimonials h2,
.section-heading h2,
.cta-band h2 {
  font-family: var(--condensed);
  font-size: clamp(30px, 3.3vw, 44px);
  line-height: 1.12;
  letter-spacing: 0;
}

.section-lead {
  max-width: 680px;
  margin: 18px auto 0;
  color: #555;
  font-size: 18px;
  line-height: 1.55;
  text-align: center;
}

.section-heading {
  display: grid;
  justify-items: center;
  gap: 14px;
  max-width: 780px;
  margin: 0 auto 42px;
  text-align: center;
}

.section-heading span,
.cta-band span {
  color: var(--yellow);
  font-size: 13px;
  font-weight: 900;
  letter-spacing: 0;
  text-transform: uppercase;
}

.section-heading h2,
.cta-band h2 {
  margin: 0;
  text-transform: uppercase;
}

.section-heading p,
.cta-band p {
  margin: 0;
  color: #5d5d5d;
  font-size: 18px;
  line-height: 1.55;
}

.compact-heading {
  margin-bottom: 36px;
}

.why-grid {
  gap: 24px;
  margin-top: 52px;
}

.why-grid article {
  min-height: 168px;
  padding: 28px 20px;
  border: 1px solid #eee;
  border-radius: 8px;
  background: linear-gradient(180deg, #fff, #fff8f0);
  box-shadow: 0 14px 34px rgba(0, 0, 0, .05);
}

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

.service-card {
  display: grid;
  align-content: start;
  gap: 18px;
  min-height: 350px;
  padding: 26px;
  border: 1px solid #eee;
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 16px 36px rgba(0, 0, 0, .06);
}

.service-card.featured {
  border-color: rgba(244, 122, 0, .34);
  background: linear-gradient(180deg, #fff8ef, #fff);
  box-shadow: 0 22px 46px rgba(244, 122, 0, .14);
}

.service-card small {
  width: fit-content;
  border-radius: 999px;
  padding: 6px 10px;
  background: rgba(244, 122, 0, .12);
  color: var(--yellow);
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}

.service-card h3,
.journey-grid h3 {
  margin: 0;
  font-family: var(--condensed);
  font-size: 28px;
  line-height: 1.1;
  text-transform: uppercase;
}

.service-card p,
.journey-grid p,
.faq-card p {
  margin: 0;
  color: #5a5a5a;
}

.service-card ul {
  display: grid;
  gap: 10px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.service-card li {
  position: relative;
  padding-left: 22px;
  font-weight: 700;
}

.service-card li::before {
  content: "";
  position: absolute;
  left: 0;
  top: .65em;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--yellow);
}

.service-card a,
.cta-band a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  width: fit-content;
  border-radius: 7px;
  padding: 0 18px;
  background: #111;
  color: #fff;
  font-weight: 900;
  text-transform: uppercase;
}

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

.journey-grid article {
  display: grid;
  gap: 14px;
  min-height: 240px;
  padding: 28px;
  border: 1px solid rgba(255, 255, 255, .12);
  border-radius: 8px;
  background: linear-gradient(180deg, rgba(255, 255, 255, .08), rgba(255, 255, 255, .03));
}

.journey-grid span {
  color: var(--yellow);
  font-family: var(--condensed);
  font-size: 42px;
  font-weight: 900;
}

.journey-grid p {
  color: #d8d8d8;
}

.cta-band {
  padding: 64px 0;
  background: linear-gradient(135deg, #f47a00, #ff9d21);
  color: #fff;
}

.cta-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
}

.cta-band span,
.cta-band p {
  color: #fff;
}

.cta-band a {
  flex: 0 0 auto;
  background: #080808;
}

.social-section {
  padding-top: 86px;
  padding-bottom: 90px;
}

.social-columns {
  margin-top: 34px;
}

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

.faq-card {
  display: grid;
  align-content: start;
  gap: 16px;
  min-height: 170px;
  padding: 24px;
  border: 1px solid #ecd9c8;
  border-radius: 8px;
  background: #fff;
}

.faq-card h3 {
  margin: 0;
  color: #111;
  font-family: var(--condensed);
  font-size: 22px;
  font-weight: 900;
  line-height: 1.15;
  text-transform: uppercase;
}

.faq-card p {
  margin: 0;
  color: #5a5a5a;
}

.faq-card a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: fit-content;
  min-height: 42px;
  margin-top: 4px;
  border-radius: 7px;
  padding: 0 16px;
  background: var(--yellow);
  color: #fff;
  font-size: var(--fs-button);
  font-weight: 900;
  text-transform: uppercase;
}

.testimonials {
  padding-top: 64px;
  padding-bottom: 68px;
}

.testimonial-grid {
  margin-top: 36px;
}

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

.reviews-heading {
  display: grid;
  justify-items: center;
  gap: 10px;
  text-align: center;
}

.reviews-heading span {
  color: #fff;
  font-size: var(--fs-eyebrow);
  font-weight: 900;
  text-transform: uppercase;
}

.reviews-heading p {
  max-width: 640px;
  margin: 0;
  font-size: var(--fs-card-text);
  line-height: var(--lh-text);
}

.reviews-rating {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  margin-top: 24px;
}

.reviews-rating strong {
  font-size: var(--fs-subtitle);
}

.reviews-rating span {
  letter-spacing: 2px;
}

.reviews-rating small {
  font-size: var(--fs-small);
  font-weight: 800;
  text-transform: uppercase;
}

.reviews-viewport {
  overflow: hidden;
  margin-top: 34px;
}

.reviews-track {
  display: grid;
  gap: 28px;
  margin-top: 0;
  transition: transform .35s ease;
}

.reviews-track article {
  border-right: 1px solid rgba(255, 255, 255, .36);
}

.reviews-track em {
  display: block;
  margin-top: 6px;
  font-size: var(--fs-small);
  font-style: normal;
  font-weight: 700;
}

.reviews-dots {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-top: 26px;
}

.reviews-dots button {
  width: 10px;
  height: 10px;
  border: 0;
  border-radius: 50%;
  background: rgba(255, 255, 255, .42);
  cursor: pointer;
}

.reviews-dots button.active {
  width: 28px;
  border-radius: 999px;
  background: #fff;
}

@media (max-width: 1050px) {
  .site-header {
    flex-wrap: wrap;
    justify-content: center;
  }

  .brand {
    margin-right: auto;
  }

  .main-nav {
    order: 3;
    width: 100%;
    overflow-x: auto;
    justify-content: flex-start;
    padding-bottom: 4px;
  }

  .hero-content {
    grid-template-columns: 1fr;
    padding: 48px 0 60px;
  }

  .hero-overlay {
    background:
      linear-gradient(90deg, rgba(255, 255, 255, .94) 0%, rgba(255, 255, 255, .72) 34%, rgba(255, 255, 255, .16) 58%, rgba(255, 255, 255, .04) 100%),
      linear-gradient(0deg, rgba(255, 122, 0, .08), rgba(255, 255, 255, 0));
  }

  .hero-bg {
    background-position: 70% center;
    background-size: cover;
  }

  .signup-card {
    width: min(315px, 100%);
    max-width: 430px;
  }

  .hero-form-stage {
    width: min(430px, 100%);
    min-height: 430px;
    justify-content: flex-end;
  }

  .social-columns,
  .footer-inner {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 1240px) and (min-width: 1051px) {
  .site-footer {
    padding-inline: clamp(28px, 3.5vw, 46px);
  }

  .footer-inner {
    grid-template-columns: minmax(260px, 1.1fr) minmax(150px, .62fr) minmax(220px, .86fr) minmax(300px, 1fr);
    gap: 22px;
  }

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

@media (max-width: 760px) {
  .site-header {
    min-height: 0;
    padding: 14px 18px;
  }

  .brand {
    min-width: 0;
  }

  .image-brand {
    min-width: 180px;
  }

  .image-brand img {
    width: 180px;
  }

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

  .brand-mark::before {
    width: 34px;
    height: 18px;
    left: 8px;
    top: 17px;
  }

  .brand-mark::after {
    width: 20px;
    height: 7px;
    left: 13px;
    top: 21px;
  }

  .brand-mark span {
    width: 58px;
    left: 20px;
    top: 39px;
  }

  .brand-text strong {
    font-size: 23px;
  }

  .social-top {
    display: none;
  }

  .hero,
  .hero-content {
    min-height: auto;
  }

  .hero-bg {
    opacity: .42;
    background-image: url("assets/hero-ideal-wide.png");
    background-position: center center;
    background-size: cover;
    background-repeat: no-repeat;
  }

  .hero-form-stage {
    justify-content: center;
    min-height: auto;
    padding-top: 164px;
  }

  .signup-card {
    width: 100%;
  }

  .hero-content,
  .section-inner {
    width: min(100% - 32px, 560px);
  }

  .hero-content {
    grid-template-columns: 1fr;
    justify-items: center;
    text-align: center;
  }

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

  .hero h1 {
    font-size: clamp(38px, 12vw, 54px);
  }

  .hero-copy > p {
    font-size: 19px;
  }

  .hero-benefits,
  .why-grid,
  .post-grid,
  .testimonial-grid,
  .social-columns,
  .footer-inner {
    grid-template-columns: 1fr;
  }

  .hero-benefits {
    gap: 18px;
    max-width: 560px;
    margin: 0 auto 24px;
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .hero-benefits article {
    display: grid;
    place-items: center;
    gap: 12px;
    text-align: center;
  }

  .hero-benefits svg {
    margin: 0 auto;
  }

  .primary-cta {
    margin-top: 16px;
  }

  .hero-benefits article strong {
    width: 100%;
    text-align: center;
  }

  .why-grid {
    gap: 18px;
  }

  .why-grid article {
    min-height: 0;
  }

  .title-rule {
    grid-template-columns: 1fr;
  }

  .title-rule span {
    display: none;
  }

  .insta-post {
    min-height: 210px;
  }

  .testimonials {
    padding-inline: 16px;
  }

  .arrow {
    display: none;
  }

  .testimonial-grid article {
    border-right: 0;
    border-bottom: 1px solid rgba(0, 0, 0, .18);
    padding-bottom: 22px;
  }

  .testimonial-grid article:last-child {
    border-bottom: 0;
  }

  .site-footer {
    padding-top: 42px;
    padding-bottom: 104px;
  }

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

@media (max-width: 440px) {
  .main-nav a {
    font-size: 13px;
  }

  .signup-head {
    padding: 20px;
  }

  .signup-card form {
    padding: 20px;
  }

  .primary-cta,
  .outline-btn,
  .signup-card button {
    width: 100%;
  }
}

@media (max-width: 1050px) {
  .service-grid,
  .journey-grid,
  .faq-grid {
    grid-template-columns: 1fr;
  }

  .service-card,
  .journey-grid article,
  .faq-card {
    min-height: 0;
  }

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

@media (max-width: 760px) {
  .why,
  .services-section,
  .journey-section,
  .social-section,
  .faq-section {
    padding: 58px 0;
  }

  .wide-inner,
  .section-inner {
    width: min(100% - 32px, 560px);
    margin-left: auto;
    margin-right: auto;
  }

  .section-heading {
    margin-bottom: 28px;
  }

  .section-lead,
  .section-heading p,
  .cta-band p {
    font-size: 16px;
  }

  .why h2,
  .title-rule h2,
  .testimonials h2,
  .section-heading h2,
  .cta-band h2 {
    font-size: clamp(27px, 9vw, 36px);
  }

  .service-card,
  .journey-grid article,
  .faq-card {
    padding: 22px;
  }

  .cta-band {
    padding: 46px 0;
  }

  .cta-band a {
    width: 100%;
  }

  .site-footer {
    background:
      linear-gradient(180deg, rgba(5, 6, 8, .97), rgba(5, 6, 8, .9)),
      url("assets/footer-services-bg.png") center bottom / cover no-repeat,
      #08090b;
  }

  .site-footer section {
    min-height: auto;
    padding: 18px;
  }

  .footer-brand img {
    width: min(260px, 100%);
  }

  .footer-whatsapp {
    width: 100%;
  }
}

/* Universal type scale and icon alignment */
body {
  font-size: var(--fs-body);
  line-height: var(--lh-text);
}

.main-nav a {
  font-size: var(--fs-nav);
}

.hero h1 {
  font-size: var(--fs-hero);
  line-height: var(--lh-tight);
}

.hero-copy > p,
.section-lead,
.section-heading p,
.cta-band p {
  font-size: var(--fs-lead);
  line-height: var(--lh-text);
}

.why h2,
.title-rule h2,
.testimonials h2,
.section-heading h2,
.cta-band h2 {
  font-size: var(--fs-title);
  line-height: var(--lh-title);
}

.social-panel h3,
.service-card h3,
.journey-grid h3,
.site-footer h2 {
  font-size: var(--fs-subtitle);
  line-height: var(--lh-title);
}

.faq-card h3,
.signup-head h2 {
  font-size: var(--fs-card-title);
  line-height: var(--lh-title);
}

.hero-benefits strong,
.why-grid strong,
.service-card p,
.service-card li,
.journey-grid p,
.faq-card p,
.testimonial-grid p,
.site-footer p,
.site-footer a,
.contact-line {
  font-size: var(--fs-card-text);
  line-height: var(--lh-text);
}

.section-heading span,
.cta-band span,
.service-card small,
.signup-head p,
.privacy,
.testimonial-grid small {
  font-size: var(--fs-small);
}

.primary-cta,
.outline-btn,
.signup-card button,
.service-card a,
.cta-band a {
  font-size: var(--fs-button);
}

.hero-benefits article,
.why-grid article {
  align-items: start;
  justify-items: center;
  text-align: center;
}

.hero-benefits svg,
.line-icon {
  display: grid;
  place-items: center;
  width: 58px;
  height: 58px;
}

.hero-benefits svg {
  padding: 10px;
  border-radius: 50%;
  background: rgba(244, 122, 0, .12);
  box-shadow: inset 0 0 0 1px rgba(244, 122, 0, .18);
}

.line-icon {
  border-radius: 18px;
  background: rgba(244, 122, 0, .1);
  box-shadow: inset 0 0 0 1px rgba(244, 122, 0, .18);
}

.line-icon svg {
  position: relative;
  z-index: 1;
  display: block;
  width: 34px;
  height: 34px;
  fill: currentColor;
}

.error-page {
  min-height: 100vh;
  background:
    linear-gradient(90deg, rgba(255, 255, 255, .95), rgba(255, 255, 255, .72) 45%, rgba(8, 9, 11, .35)),
    url("assets/footer-services-bg.png") center / cover no-repeat;
}

.error-shell {
  display: grid;
  align-content: center;
  gap: 42px;
  width: min(1120px, calc(100% - 48px));
  min-height: 100vh;
  margin: 0 auto;
  padding: 48px 0;
}

.error-shell .image-brand img {
  width: min(280px, 72vw);
}

.error-panel {
  max-width: 620px;
}

.error-panel span {
  display: inline-grid;
  place-items: center;
  min-width: 86px;
  min-height: 52px;
  margin-bottom: 18px;
  border-radius: 8px;
  background: var(--yellow);
  color: #fff;
  font-size: 28px;
  font-weight: 900;
}

.error-panel h1 {
  margin: 0 0 18px;
  font-size: clamp(42px, 7vw, 76px);
  line-height: .96;
  text-transform: uppercase;
}

.error-panel p {
  max-width: 520px;
  margin: 0 0 30px;
  color: var(--ink);
  font-size: 18px;
}

.error-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

.error-actions .outline-btn {
  background: #fff;
}

.checked::before {
  inset: 16px;
  border-width: 4px;
  outline-width: 3px;
}

.checked::after {
  left: 22px;
  top: 26px;
  width: 18px;
  height: 9px;
  border-left-width: 4px;
  border-bottom-width: 4px;
}

.calendar::before {
  inset: 15px 12px 12px;
  border-width: 4px;
}

.calendar::after {
  left: 12px;
  right: 12px;
  top: 26px;
  height: 4px;
  box-shadow: 10px -13px 0 -1px currentColor, 32px -13px 0 -1px currentColor;
}

.shield::before {
  width: 38px;
  height: 45px;
  left: 10px;
  top: 7px;
}

.shield::after {
  width: 20px;
  height: 24px;
  left: 19px;
  top: 17px;
  border-width: 4px;
}

.card::before {
  inset: 17px 11px 14px;
  border-width: 4px;
}

.card::after {
  left: 15px;
  right: 15px;
  top: 29px;
  height: 4px;
  box-shadow: 0 11px 0 -1px currentColor;
}

.service-card li::before {
  top: .72em;
}

@media (max-width: 760px) {
  :root {
    --fs-body: 15px;
    --fs-small: 11px;
    --fs-nav: 13px;
    --fs-lead: 16px;
    --fs-hero: clamp(34px, 11vw, 44px);
    --fs-title: clamp(26px, 8vw, 34px);
    --fs-subtitle: 22px;
    --fs-card-title: 20px;
    --fs-card-text: 14px;
    --fs-button: 13px;
  }

  .hero-benefits article {
    justify-items: start;
    text-align: left;
  }

  .hero-benefits svg {
    width: 48px;
    height: 48px;
  }
}
