:root {
  --navy: #07182f;
  --navy-2: #0b2342;
  --ink: #111827;
  --muted: #5a6575;
  --line: #e4e9f0;
  --soft: #f5f7fa;
  --white: #ffffff;
  --yellow: #f4b000;
  --yellow-deep: #8a6100;
  --radius: 8px;
  --shadow: 0 20px 50px rgba(7, 24, 47, .12);
  --ease-out: cubic-bezier(.2, .8, .2, 1);
}

* { box-sizing: border-box; }
html {
  scroll-behavior: smooth;
  scroll-padding-top: 92px;
}

body {
  margin: 0;
  font-family: Arial, "Noto Sans Hebrew", "Segoe UI", sans-serif;
  color: var(--ink);
  background: var(--white);
  line-height: 1.65;
  text-rendering: optimizeLegibility;
  padding-bottom: 84px;
}

body.nav-open { overflow: hidden; }
a { color: inherit; text-decoration: none; }
img { display: block; max-width: 100%; }
button, input, select, textarea { font: inherit; }

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(255, 255, 255, .96);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(14px);
  transition: box-shadow .22s var(--ease-out), background .22s var(--ease-out);
}

.site-header.is-scrolled {
  background: rgba(255, 255, 255, .98);
  box-shadow: 0 12px 30px rgba(7, 24, 47, .08);
}

.header-inner {
  min-height: 72px;
  display: flex;
  align-items: center;
  gap: 18px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  min-width: 215px;
  color: var(--navy);
}

.brand img {
  width: 52px;
  height: 42px;
  object-fit: contain;
  transition: transform .25s var(--ease-out), filter .25s var(--ease-out);
}

.brand:hover img,
.brand:focus-visible img {
  transform: translateY(-1px) scale(1.04);
}

.brand strong,
.brand small {
  display: block;
}

.brand strong {
  font-size: 1rem;
  line-height: 1.2;
}

.brand small {
  color: var(--muted);
  font-size: .78rem;
}

.main-nav {
  display: none;
  gap: 20px;
  margin-inline-start: auto;
  color: #273244;
  font-size: .94rem;
  font-weight: 800;
}

.main-nav a,
.header-cta {
  transition: color .18s ease, border-color .18s ease, background .18s ease;
}

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

.header-cta {
  display: none;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 9px 14px;
  color: var(--navy);
  font-weight: 900;
}

.nav-toggle {
  width: 42px;
  height: 42px;
  display: inline-flex;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  margin-inline-start: auto;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
}

.nav-toggle span {
  width: 20px;
  height: 2px;
  margin-inline: auto;
  background: var(--navy);
}

.hero {
  background: var(--navy);
  color: var(--white);
  padding: 68px 0;
}

.hero-layout {
  display: grid;
  gap: 34px;
}

.eyebrow {
  margin: 0 0 12px;
  color: var(--yellow);
  font-size: .92rem;
  font-weight: 900;
}

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

.hero h1 {
  max-width: 880px;
  margin-bottom: 22px;
  font-size: clamp(2.55rem, 11vw, 5.2rem);
  line-height: 1.04;
  letter-spacing: 0;
}

.hero-lead {
  max-width: 760px;
  color: rgba(255, 255, 255, .88);
  font-size: 1.14rem;
}

.hero-actions {
  display: grid;
  gap: 12px;
  margin-top: 30px;
}

.btn {
  min-height: 50px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid transparent;
  border-radius: var(--radius);
  padding: 12px 18px;
  font-weight: 900;
  text-align: center;
  line-height: 1.25;
  cursor: pointer;
  transition: transform .22s var(--ease-out), box-shadow .22s var(--ease-out), background .22s var(--ease-out), border-color .22s var(--ease-out);
}

.btn:hover,
.btn:focus-visible,
.header-cta:hover,
.header-cta:focus-visible {
  transform: translateY(-2px);
  box-shadow: 0 16px 32px rgba(7, 24, 47, .16);
}

.btn.primary {
  background: var(--yellow);
  color: #1e1500;
}

.btn.secondary {
  border-color: rgba(255, 255, 255, .42);
  color: var(--white);
}

.btn.light {
  border-color: var(--line);
  background: var(--white);
  color: var(--navy);
}

.hero-proof {
  display: grid;
  gap: 8px;
  margin-top: 28px;
  color: rgba(255, 255, 255, .82);
  font-weight: 800;
}

.hero-proof span {
  border-right: 3px solid var(--yellow);
  padding-right: 10px;
}

.hero-media {
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, .16);
  border-radius: var(--radius);
  background: #0d213f;
  box-shadow: 0 28px 70px rgba(0, 0, 0, .25);
}

.hero-media img {
  width: 100%;
  height: min(72vw, 520px);
  object-fit: cover;
}

.media-note {
  position: absolute;
  inset-inline: 16px;
  bottom: 16px;
  border-radius: var(--radius);
  padding: 14px;
  background: rgba(7, 24, 47, .86);
  color: var(--white);
}

.media-note strong,
.media-note span {
  display: block;
}

.media-note span {
  color: rgba(255, 255, 255, .78);
  font-size: .92rem;
}

.trust-strip {
  background: var(--white);
  border-bottom: 1px solid var(--line);
}

.trust-grid {
  display: grid;
  gap: 1px;
  background: var(--line);
}

.trust-grid div {
  background: var(--white);
  padding: 22px;
}

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

.trust-grid strong {
  color: var(--navy);
  line-height: 1.35;
}

.trust-grid span {
  margin-top: 5px;
  color: var(--muted);
}

.section {
  padding: 78px 0;
}

.search-intent-section {
  background: #fbfcfe;
  border-bottom: 1px solid var(--line);
}

.intent-grid {
  display: grid;
  gap: 14px;
}

.intent-grid a {
  display: grid;
  gap: 8px;
  border: 1px solid #d7e4f2;
  border-radius: var(--radius);
  background: var(--white);
  padding: 20px;
  box-shadow: 0 12px 30px rgba(7, 24, 47, .05);
}

.intent-grid strong {
  color: var(--navy);
  font-size: 1.08rem;
  line-height: 1.3;
}

.intent-grid span {
  color: var(--muted);
}

.muted {
  background: var(--soft);
}

.section-head {
  max-width: 760px;
  margin-bottom: 34px;
}

.section-head h2,
.split-title h2,
.problem-layout h2,
.standards-layout h2,
.contact-copy h2,
.page-hero h1,
.article-layout h1 {
  margin-bottom: 14px;
  color: var(--navy);
  font-size: clamp(2rem, 8vw, 3.35rem);
  line-height: 1.1;
  letter-spacing: 0;
}

.section-head p,
.split-title p,
.problem-layout p,
.standards-list span,
.contact-copy p,
.page-hero p,
.article-layout p {
  color: var(--muted);
  font-size: 1.06rem;
}

.service-grid,
.solution-grid,
.article-grid,
.standards-list {
  display: grid;
  gap: 16px;
}

.service-tile,
.article-card,
.standard-card {
  display: block;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
  padding: 24px;
  box-shadow: 0 14px 34px rgba(7, 24, 47, .06);
}

.intent-grid a,
.service-tile,
.article-card,
.standard-card,
.work-card,
.path-card,
.project-card,
.catalog-card,
.field-grid figure,
.content-card {
  transition: transform .28s var(--ease-out), box-shadow .28s var(--ease-out), border-color .28s var(--ease-out);
}

.work-card img,
.path-card img,
.project-card img,
.field-grid img,
.hero-image-card img,
.page-hero img {
  transition: transform .7s var(--ease-out), filter .7s var(--ease-out);
}

@media (hover: hover) {
  .intent-grid a:hover,
  .service-tile:hover,
  .article-card:hover,
  .standard-card:hover,
  .work-card:hover,
  .path-card:hover,
  .project-card:hover,
  .catalog-card:hover,
  .field-grid figure:hover,
  .content-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 24px 54px rgba(7, 24, 47, .13);
    border-color: rgba(244, 176, 0, .42);
  }

  .work-card:hover img,
  .path-card:hover img,
  .project-card:hover img,
  .field-grid figure:hover img,
  .page-hero img:hover {
    transform: scale(1.035);
    filter: saturate(1.06) contrast(1.03);
  }
}

.service-tile.featured {
  background: var(--navy);
  color: var(--white);
  border-color: var(--navy);
}

.service-tile span {
  display: inline-flex;
  margin-bottom: 18px;
  color: var(--yellow-deep);
  font-weight: 900;
}

.service-tile.featured span,
.service-tile.featured p {
  color: rgba(255, 255, 255, .86);
}

.service-tile h3,
.article-card h3,
.standard-card h3 {
  margin-bottom: 10px;
  color: inherit;
  font-size: 1.26rem;
  line-height: 1.28;
}

.service-tile p,
.article-card p {
  margin: 0;
  color: var(--muted);
}

.service-tile.featured p {
  color: rgba(255, 255, 255, .82);
}

.problem-band,
.contact-section {
  background: var(--navy);
  color: var(--white);
}

.problem-layout,
.split-title,
.standards-layout,
.contact-layout {
  display: grid;
  gap: 28px;
}

.problem-layout h2,
.problem-layout p,
.contact-copy h2,
.contact-copy p {
  color: var(--white);
}

.problem-layout p,
.contact-copy p {
  color: rgba(255, 255, 255, .84);
}

.text-cta {
  color: var(--yellow);
  font-weight: 900;
}

.work-section {
  background: var(--white);
}

.work-grid {
  display: grid;
  gap: 16px;
}

.work-card {
  position: relative;
  min-height: 330px;
  overflow: hidden;
  border-radius: var(--radius);
  background: var(--navy);
  box-shadow: var(--shadow);
}

.work-card img {
  width: 100%;
  height: 100%;
  min-height: 330px;
  object-fit: cover;
}

.work-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 36%, rgba(7, 24, 47, .9));
}

.work-card div {
  position: absolute;
  inset-inline: 0;
  bottom: 0;
  z-index: 1;
  padding: 22px;
  color: var(--white);
}

.work-card span {
  color: var(--yellow);
  font-weight: 900;
}

.work-card h3 {
  margin: 6px 0 0;
  max-width: 360px;
  font-size: 1.22rem;
}

.solution-grid a {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
  padding: 20px;
  color: var(--navy);
  font-weight: 900;
  box-shadow: 0 12px 30px rgba(7, 24, 47, .05);
}

.section-action {
  margin-top: 24px;
}

.standards-section {
  border-block: 1px solid var(--line);
  background: var(--white);
}

.season-section {
  background: var(--soft);
  border-top: 1px solid var(--line);
}

.priority-grid {
  display: grid;
  gap: 16px;
}

.priority-grid article {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
  padding: 24px;
  box-shadow: 0 12px 30px rgba(7, 24, 47, .05);
}

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

.priority-grid strong {
  color: var(--navy);
  font-size: 1.18rem;
  line-height: 1.3;
}

.priority-grid span {
  margin-top: 8px;
  color: var(--muted);
}

.price-section {
  background: var(--soft);
}

.price-card {
  display: grid;
  gap: 24px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
  padding: 28px;
  box-shadow: var(--shadow);
}

.price-card h2 {
  margin: 0;
  color: var(--navy);
  font-size: clamp(2.4rem, 10vw, 4.4rem);
  line-height: 1;
}

.price-card p {
  color: var(--muted);
  font-size: 1.08rem;
}

.standards-list div {
  border-right: 4px solid var(--yellow);
  padding: 0 16px 0 0;
}

.standards-list strong,
.standards-list span {
  display: block;
}

.article-card span {
  display: block;
  margin-bottom: 12px;
  color: var(--yellow-deep);
  font-size: .92rem;
  font-weight: 900;
}

.lead-form {
  display: grid;
  gap: 14px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
  padding: 24px;
  box-shadow: var(--shadow);
}

label {
  display: grid;
  gap: 6px;
  color: var(--ink);
  font-weight: 800;
}

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

textarea { resize: vertical; }

input:focus,
select:focus,
textarea:focus {
  outline: 3px solid rgba(244, 176, 0, .22);
  border-color: var(--yellow);
}

.phone-link {
  display: inline-flex;
  color: var(--yellow);
  font-size: 1.35rem;
  font-weight: 900;
}

.site-footer {
  background: #061226;
  color: var(--white);
  padding: 58px 0 108px;
  scroll-margin-top: 92px;
}

.footer-grid {
  display: grid;
  gap: 28px;
}

.footer-brand {
  max-width: 420px;
}

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

.footer-logo {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 18px;
}

.footer-logo img {
  width: 76px;
  height: 54px;
  object-fit: contain;
  padding: 8px 10px;
  background: var(--white);
  border: 1px solid rgba(255, 255, 255, .16);
  border-radius: 10px;
  box-shadow: 0 16px 30px rgba(0, 0, 0, .22);
}

.footer-logo strong,
.footer-logo small,
.footer-col strong,
.footer-contact a,
.footer-bottom span {
  display: block;
}

.footer-logo strong {
  font-size: 1.1rem;
  line-height: 1.2;
}

.footer-logo small {
  color: rgba(255, 255, 255, .68);
  font-size: .82rem;
}

.footer-brand p,
.footer-col p,
.footer-bottom {
  color: rgba(255, 255, 255, .74);
}

.footer-brand p,
.footer-col p {
  margin-bottom: 18px;
}

.footer-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.footer-actions a {
  min-height: 42px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  border: 1px solid rgba(255, 255, 255, .16);
  border-radius: var(--radius);
  padding: 8px 14px;
  font-weight: 900;
}

.footer-actions a:first-child,
.footer-actions .footer-whatsapp {
  background: #128c5a;
  border-color: #128c5a;
  color: var(--white);
  box-shadow: 0 14px 28px rgba(18, 140, 90, .22);
}

.footer-whatsapp-icon {
  width: 24px;
  height: 24px;
  flex: 0 0 24px;
  max-width: 24px;
  max-height: 24px;
  display: inline-block;
  object-fit: contain;
  filter: brightness(0) invert(1);
}

.footer-col strong {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 12px;
  color: var(--white);
  font-size: 1rem;
}

.footer-col strong::before,
.footer-contact a::before {
  content: "";
  width: 19px;
  height: 19px;
  flex: 0 0 19px;
  background: var(--yellow);
  -webkit-mask: url("assets/icon-services.svg") center / contain no-repeat;
  mask: url("assets/icon-services.svg") center / contain no-repeat;
}

.footer-col[aria-label="ניווט"] strong::before {
  -webkit-mask-image: url("assets/icon-navigation.svg");
  mask-image: url("assets/icon-navigation.svg");
}

.footer-col[aria-label="פרטי קשר ואזורי שירות"] strong::before {
  -webkit-mask-image: url("assets/icon-location.svg");
  mask-image: url("assets/icon-location.svg");
}

.footer-col nav,
.footer-contact {
  display: grid;
  gap: 9px;
}

.footer-col a,
.footer-col span {
  color: rgba(255, 255, 255, .78);
  font-weight: 800;
  overflow-wrap: anywhere;
}

.footer-col a:hover,
.footer-col a:focus-visible {
  color: var(--yellow);
}

.footer-contact a {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  direction: ltr;
  text-align: right;
  unicode-bidi: plaintext;
  overflow-wrap: anywhere;
}

.footer-contact a[href^="tel:"]::before {
  background: var(--yellow);
  -webkit-mask-image: url("assets/icon-phone.svg");
  mask-image: url("assets/icon-phone.svg");
}

.footer-contact a[href*="wa.me"]::before {
  background: #25d366;
  -webkit-mask-image: url("assets/icon-whatsapp.svg");
  mask-image: url("assets/icon-whatsapp.svg");
}

.footer-contact a[href^="mailto:"]::before {
  background: #8fb8ff;
  -webkit-mask-image: url("assets/icon-mail.svg");
  mask-image: url("assets/icon-mail.svg");
}

.footer-bottom {
  display: grid;
  gap: 8px;
  margin-top: 34px;
  padding-top: 22px;
  border-top: 1px solid rgba(255, 255, 255, .12);
  font-size: .92rem;
}

.sticky-whatsapp {
  position: fixed;
  inset-inline: 16px;
  bottom: 16px;
  z-index: 60;
  min-height: 50px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: var(--radius);
  background: #128c5a;
  color: var(--white);
  font-weight: 900;
  box-shadow: var(--shadow);
}

.page-hero {
  background: var(--soft);
  padding: 64px 0;
}

.page-hero-layout {
  display: grid;
  gap: 28px;
  align-items: center;
}

.page-hero img {
  width: 100%;
  max-height: 440px;
  object-fit: cover;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.content-grid {
  display: grid;
  gap: 24px;
}

.content-card {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
  padding: 24px;
}

.content-card h2,
.content-card h3 {
  color: var(--navy);
}

.content-card ul {
  margin: 0;
  padding-inline-start: 20px;
  color: var(--muted);
}

.article-page {
  background: var(--soft);
  min-height: calc(100vh - 72px);
  padding: 52px 0 108px;
}

.article-layout {
  max-width: 820px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
  padding: 28px;
  box-shadow: var(--shadow);
}

.back-link {
  display: inline-flex;
  margin-bottom: 20px;
  color: var(--yellow-deep);
  font-weight: 900;
}

.article-layout h2 {
  margin-top: 34px;
  color: var(--navy);
}

.article-cta {
  margin-top: 24px;
}

@media (max-width: 899px) {
  .main-nav {
    position: fixed;
    inset: 72px 0 auto 0;
    display: none;
    grid-template-columns: 1fr;
    padding: 18px;
    max-height: calc(100vh - 72px);
    overflow-y: auto;
    background: var(--white);
    border-bottom: 1px solid var(--line);
    box-shadow: var(--shadow);
  }

  .main-nav.is-open {
    display: grid;
  }
}

@media (min-width: 700px) {
  .hero-actions,
  .hero-proof {
    display: flex;
    flex-wrap: wrap;
  }

  .btn {
    width: auto;
  }

  .trust-grid,
  .service-grid,
  .solution-grid,
  .article-grid,
  .priority-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .work-grid {
    grid-template-columns: 1.15fr .85fr;
  }

  .work-card.large {
    grid-row: span 2;
  }

  .work-card.large,
  .work-card.large img {
    min-height: 676px;
  }

  .problem-layout,
  .split-title,
  .standards-layout,
  .contact-layout,
  .price-card,
  .page-hero-layout,
  .content-grid {
    grid-template-columns: 1fr 1fr;
    align-items: start;
  }

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

  .footer-brand {
    max-width: none;
    grid-column: 1 / -1;
  }

  .footer-bottom {
    grid-template-columns: 1fr auto;
    align-items: center;
  }

  .sticky-whatsapp {
    inset-inline: auto 22px;
    min-width: 150px;
    padding-inline: 22px;
  }

  .article-layout {
    padding: 44px;
  }
}

@media (min-width: 900px) {
  .nav-toggle { display: none; }
  .main-nav { display: flex; }
  .header-cta { display: inline-flex; }

  .footer-grid {
    grid-template-columns: minmax(260px, 1.35fr) repeat(3, minmax(0, .7fr));
  }

  .footer-brand {
    grid-column: auto;
  }

  .hero {
    padding: 96px 0;
  }

  .hero-layout {
    grid-template-columns: minmax(0, 1.08fr) minmax(360px, .72fr);
    align-items: center;
  }
}

@media (min-width: 1060px) {
  .trust-grid,
  .service-grid {
    grid-template-columns: repeat(4, 1fr);
  }

  .solution-grid,
  .article-grid,
  .priority-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

/* Homepage rebuild: customer-first copy, contextual images, and cleaner conversion blocks. */
.home-page .site-header {
  box-shadow: 0 1px 0 rgba(7, 24, 47, .04);
}

.home-page .site-header.is-scrolled {
  box-shadow: 0 12px 30px rgba(7, 24, 47, .08);
}

.premium-hero {
  padding: 60px 0;
  background: var(--navy);
}

.premium-hero-layout {
  display: grid;
  gap: 34px;
  align-items: center;
}

.premium-hero h1 {
  max-width: 820px;
  margin-bottom: 22px;
  font-size: clamp(2.25rem, 6.8vw, 4.1rem);
  line-height: 1.04;
}

.premium-hero .hero-lead {
  max-width: 740px;
  color: rgba(255, 255, 255, .88);
  font-size: clamp(1.04rem, 2.6vw, 1.22rem);
}

.hero-note {
  margin-top: 22px;
  max-width: 620px;
  color: rgba(255, 255, 255, .72);
  font-weight: 800;
}

.hero-image-card {
  position: relative;
  overflow: hidden;
  margin: 0;
  border: 1px solid rgba(255, 255, 255, .16);
  border-radius: var(--radius);
  background: #0d213f;
  box-shadow: 0 28px 70px rgba(0, 0, 0, .28);
}

.hero-image-card img {
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  object-position: center center;
  animation: heroImageDrift 16s var(--ease-out) infinite alternate;
}

.hero-field-card img {
  object-position: center top;
}

.hero-image-card figcaption {
  position: absolute;
  inset-inline: 14px;
  bottom: 14px;
  border-radius: var(--radius);
  padding: 14px;
  background: rgba(7, 24, 47, .9);
  color: var(--white);
}

.hero-image-card strong,
.hero-image-card span {
  display: block;
}

.hero-image-card span {
  margin-top: 4px;
  color: rgba(255, 255, 255, .78);
  font-size: .92rem;
}

.hero-proof-panel {
  border: 1px solid rgba(255, 255, 255, .16);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, .06);
  padding: 26px;
  color: var(--white);
  box-shadow: 0 28px 70px rgba(0, 0, 0, .18);
}

.hero-proof-panel h2 {
  margin-bottom: 20px;
  font-size: clamp(1.45rem, 4vw, 2rem);
  line-height: 1.15;
}

.hero-proof-panel ol {
  display: grid;
  gap: 14px;
  margin: 0;
  padding: 0;
  list-style: none;
  counter-reset: proof;
}

.hero-proof-panel li {
  position: relative;
  padding: 14px 48px 14px 14px;
  border: 1px solid rgba(255, 255, 255, .13);
  border-radius: var(--radius);
  background: rgba(7, 24, 47, .28);
  counter-increment: proof;
}

.hero-proof-panel li::before {
  content: counter(proof);
  position: absolute;
  inset-block-start: 16px;
  inset-inline-start: auto;
  inset-inline-end: 14px;
  width: 24px;
  height: 24px;
  display: grid;
  place-items: center;
  border-radius: 999px;
  background: var(--yellow);
  color: #1e1500;
  font-weight: 900;
  font-size: .85rem;
}

.hero-proof-panel strong,
.hero-proof-panel span {
  display: block;
}

.hero-proof-panel span {
  margin-top: 3px;
  color: rgba(255, 255, 255, .76);
}

.hero-proof-panel a {
  width: 100%;
  min-height: 48px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-top: 18px;
  border-radius: var(--radius);
  background: var(--yellow);
  color: #1e1500;
  font-weight: 900;
}

.paths-section {
  background: #eef6ff;
  border-block: 1px solid #d9e8f7;
}

.home-page .section-head h2 {
  font-size: clamp(1.9rem, 5vw, 2.8rem);
}

.path-grid {
  display: grid;
  gap: 18px;
}

.path-card {
  position: relative;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: 0 16px 42px rgba(7, 24, 47, .08);
}

.paths-section .path-card::before {
  content: "";
  position: absolute;
  inset-block-start: 0;
  inset-inline: 0;
  height: 4px;
  background: var(--yellow);
}

.paths-section .path-card:nth-child(2)::before {
  background: #159a72;
}

.paths-section .path-card:nth-child(3)::before {
  background: var(--navy);
}

.path-card img {
  width: 100%;
  height: 260px;
  object-fit: cover;
}

.path-card div {
  padding: 24px;
}

.path-card span {
  display: inline-flex;
  margin-bottom: 12px;
  color: #8a6100;
  font-weight: 900;
}

.path-card h3 {
  margin-bottom: 10px;
  color: var(--navy);
  font-size: 1.35rem;
  line-height: 1.25;
}

.path-card p {
  color: var(--muted);
}

.path-card a {
  display: inline-flex;
  margin-top: 8px;
  color: var(--navy);
  font-weight: 900;
  border-bottom: 2px solid var(--yellow);
}

.featured-path {
  border-color: rgba(244, 176, 0, .48);
  background: #fffaf0;
}

.choice-grid {
  align-items: stretch;
}

.choice-card {
  display: grid;
}

.choice-card div {
  display: grid;
  align-content: start;
  min-height: 300px;
}

.choice-card a {
  align-self: end;
}

.project-context-section {
  background: var(--soft);
  border-block: 1px solid var(--line);
}

.project-showcase {
  display: grid;
  gap: 18px;
}

.project-card {
  display: flex;
  flex-direction: column;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: 0 16px 42px rgba(7, 24, 47, .08);
}

.project-card img {
  width: 100%;
  height: 250px;
  object-fit: cover;
  object-position: center;
  background: #dfe7ef;
}

.project-card div {
  flex: 1;
  padding: 22px;
}

.project-card span {
  display: inline-flex;
  margin-bottom: 10px;
  color: var(--yellow-deep);
  font-weight: 900;
}

.project-card h3 {
  margin-bottom: 10px;
  color: var(--navy);
  font-size: 1.35rem;
  line-height: 1.25;
}

.project-card p {
  margin: 0;
  color: var(--muted);
}

.project-cta {
  display: grid;
  gap: 12px;
  margin-top: 28px;
}

.sharp-problem {
  border-block: 0;
}

.sharp-problem .problem-layout {
  align-items: center;
}

.services-section {
  background: var(--white);
}

.service-grid-six .service-tile {
  min-height: 210px;
}

.season-layout {
  display: grid;
  gap: 28px;
  align-items: center;
}

.season-layout figure {
  overflow: hidden;
  margin: 0;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.season-layout img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
}

.season-layout h2 {
  color: var(--navy);
  font-size: clamp(1.85rem, 4.8vw, 2.8rem);
  line-height: 1.1;
}

.season-layout p {
  color: var(--muted);
  font-size: 1.06rem;
}

.solutions-section {
  background: #f7fbff;
  border-block: 1px solid #d9e8f7;
}

.solutions-section .eyebrow {
  display: inline-flex;
  border: 1px solid rgba(244, 176, 0, .35);
  border-radius: 999px;
  background: #fff6d8;
  color: #7a5400;
  padding: 4px 12px;
}

.catalog-grid {
  display: grid;
  gap: 16px;
}

.catalog-card {
  position: relative;
  overflow: hidden;
  display: grid;
  gap: 8px;
  align-content: start;
  min-height: 180px;
  border: 1px solid #d7e4f2;
  border-radius: var(--radius);
  background: var(--white);
  padding: 22px;
  box-shadow: 0 12px 30px rgba(7, 24, 47, .05);
}

.catalog-card::before {
  content: "";
  position: absolute;
  inset-block-start: 0;
  inset-inline: 0;
  height: 4px;
  background: var(--yellow);
}

.catalog-card:nth-child(3n + 2)::before {
  background: #159a72;
}

.catalog-card:nth-child(3n)::before {
  background: var(--navy);
}

.catalog-card:first-child {
  border-color: rgba(244, 176, 0, .55);
  background: #fffaf0;
}

.catalog-card strong {
  color: var(--navy);
  font-size: 1.15rem;
  line-height: 1.3;
}

.catalog-card span {
  color: var(--muted);
}

.catalog-card em {
  align-self: end;
  margin-top: 12px;
  color: var(--yellow-deep);
  font-style: normal;
  font-weight: 900;
}

.field-section {
  background: var(--white);
}

.home-page .price-card h2 {
  font-size: clamp(2rem, 5vw, 3.2rem);
}

.field-grid {
  display: grid;
  gap: 16px;
}

.field-grid figure {
  overflow: hidden;
  margin: 0;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: 0 14px 34px rgba(7, 24, 47, .06);
}

.field-grid img {
  width: 100%;
  height: 260px;
  object-fit: cover;
}

.field-grid figcaption {
  padding: 16px 18px;
  color: var(--navy);
  font-weight: 900;
  line-height: 1.45;
}

.knowledge-section {
  background: var(--soft);
}

.article-card strong {
  display: inline-flex;
  margin-top: 16px;
  color: var(--navy);
  border-bottom: 2px solid var(--yellow);
}

.faq-section {
  background: var(--white);
}

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

.faq-list details {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fbfcfe;
  padding: 18px 20px;
  box-shadow: 0 10px 28px rgba(7, 24, 47, .05);
}

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

.faq-list p {
  margin: 12px 0 0;
  color: var(--muted);
}

.email-link {
  display: block;
  margin-top: 8px;
  font-size: 1rem;
}

.sticky-actions {
  position: fixed;
  inset-inline: 16px;
  bottom: 16px;
  z-index: 70;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
}

.sticky-actions a {
  min-height: 50px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  border-radius: var(--radius);
  font-weight: 900;
  box-shadow: var(--shadow);
  transition: transform .22s var(--ease-out), box-shadow .22s var(--ease-out), background .22s var(--ease-out);
}

.sticky-actions a::before {
  content: "";
  width: 20px;
  height: 20px;
  flex: 0 0 20px;
  background: currentColor;
  -webkit-mask: url("assets/icon-phone.svg") center / contain no-repeat;
  mask: url("assets/icon-phone.svg") center / contain no-repeat;
}

.sticky-actions .sticky-whatsapp::before {
  -webkit-mask-image: url("assets/icon-whatsapp.svg");
  mask-image: url("assets/icon-whatsapp.svg");
}

.sticky-actions a:hover,
.sticky-actions a:focus-visible {
  transform: translateY(-2px);
  box-shadow: 0 18px 36px rgba(7, 24, 47, .22);
}

.sticky-actions .sticky-phone {
  background: var(--navy);
  color: var(--white);
}

.sticky-actions .sticky-whatsapp {
  position: static;
  inset: auto;
  min-width: 0;
  background: #128c5a;
  color: var(--white);
}

@media (min-width: 700px) {
  .path-grid,
  .catalog-grid,
  .intent-grid,
  .field-grid {
    grid-template-columns: repeat(2, 1fr);
  }

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

  .project-cta {
    display: flex;
    justify-content: center;
  }

  .project-cta .btn {
    min-width: 230px;
  }

  .main-project {
    grid-column: span 2;
    display: grid;
    grid-template-columns: 1.15fr .85fr;
    align-items: stretch;
  }

  .main-project img {
    height: 100%;
    min-height: 360px;
  }

  .season-layout {
    grid-template-columns: .95fr 1.05fr;
  }

  .sticky-actions {
    inset-inline: auto 22px;
    width: 330px;
  }
}

@media (min-width: 900px) {
  .premium-hero {
    padding: 92px 0;
  }

  .premium-hero-layout {
    grid-template-columns: minmax(0, 1.08fr) minmax(360px, .72fr);
  }

  .hero-image-card img {
    height: 580px;
    aspect-ratio: auto;
  }
}

@media (min-width: 1040px) {
  .path-grid,
  .catalog-grid,
  .service-grid-six {
    grid-template-columns: repeat(3, 1fr);
  }

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

  .project-showcase {
    grid-template-columns: 1.2fr .9fr .9fr;
  }

  .main-project {
    grid-row: span 2;
    grid-column: auto;
    grid-template-columns: 1fr;
  }

  .main-project img {
    min-height: 430px;
  }
}

@media (max-width: 899px) {
  .season-layout {
    grid-template-columns: 1fr;
  }

  .home-page .price-card {
    grid-template-columns: 1fr;
  }
}

@keyframes heroImageDrift {
  from {
    transform: scale(1.02) translate3d(0, 0, 0);
  }
  to {
    transform: scale(1.07) translate3d(-10px, 8px, 0);
  }
}

@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(18px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.premium-hero .eyebrow,
.premium-hero h1,
.premium-hero .hero-lead,
.premium-hero .hero-actions,
.premium-hero .hero-note,
.premium-hero .hero-image-card {
  animation: fadeUp .7s var(--ease-out) both;
}

.premium-hero h1 { animation-delay: .08s; }
.premium-hero .hero-lead { animation-delay: .16s; }
.premium-hero .hero-actions { animation-delay: .24s; }
.premium-hero .hero-note { animation-delay: .3s; }
.premium-hero .hero-image-card { animation-delay: .18s; }

.js-enabled .reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity .62s var(--ease-out), transform .62s var(--ease-out);
  transition-delay: var(--reveal-delay, 0ms);
}

.js-enabled .reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: .001ms !important;
    animation-iteration-count: 1 !important;
    scroll-behavior: auto !important;
    transition-duration: .001ms !important;
  }

  .hero-image-card img {
    animation: none;
    transform: none;
  }

  .js-enabled .reveal {
    opacity: 1;
    transform: none;
  }
}
