﻿:root {
  --ink: #172132;
  --muted: #647085;
  --paper: #f5f1eb;
  --paper-blue: #edf4ff;
  --paper-orange: #fff0e6;
  --panel: rgba(255, 255, 255, .82);
  --line: rgba(23, 33, 50, .13);
  --blue: #2f63d8;
  --blue-soft: #dfe9ff;
  --orange: #f06a1a;
  --orange-soft: #ffe1cd;
  --navy: #111a2b;
  --radius: 8px;
  --shadow: 0 18px 46px rgba(17, 26, 43, .12);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: Arial, Helvetica, sans-serif;
  color: var(--ink);
  --scroll-progress: 0%;
  background:
    radial-gradient(circle at 12% 8%, rgba(47, 99, 216, .12), transparent 34%),
    radial-gradient(circle at 82% 14%, rgba(240, 106, 26, .1), transparent 30%),
    linear-gradient(180deg, #f7f2ec 0%, #eef4ff 54%, #fff6ef 100%);
  line-height: 1.55;
  overflow-x: hidden;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  background:
    radial-gradient(circle at 24% 30%, rgba(47, 99, 216, .13), transparent 31%),
    radial-gradient(circle at 76% 62%, rgba(240, 106, 26, .08), transparent 28%),
    linear-gradient(124deg, transparent 0 58%, rgba(47, 99, 216, .08) 58.2% 69%, transparent 69.2% 100%);
  background-size: 120% 120%, 130% 130%, 120% 120%;
  animation: pageLight 18s ease-in-out infinite alternate;
}

@keyframes pageLight {
  from { background-position: 0% 0%, 100% 0%, 0% 0%; }
  to { background-position: 100% 20%, 0% 18%, 100% 12%; }
}

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

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

button,
input,
textarea {
  font: inherit;
}

button {
  cursor: pointer;
}

.skip {
  position: fixed;
  top: 10px;
  left: 10px;
  z-index: 80;
  transform: translateY(-160%);
  padding: 10px 14px;
  border-radius: var(--radius);
  background: #fff;
  color: var(--blue);
  font-weight: 800;
}

.skip:focus {
  transform: none;
}

.shell {
  position: relative;
  z-index: 1;
  min-height: 100vh;
}

.topline {
  position: sticky;
  top: 0;
  z-index: 100;
  border-bottom: 1px solid rgba(47, 99, 216, .09);
  background: rgba(255, 255, 255, .72);
  backdrop-filter: blur(18px);
}

.topline::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -1px;
  width: var(--scroll-progress);
  height: 2px;
  background: linear-gradient(90deg, var(--blue), rgba(47, 99, 216, .62));
  transition: width .12s linear;
}

.nav {
  width: min(1180px, calc(100% - 32px));
  min-height: 64px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 28px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-weight: 900;
  color: var(--navy);
}

.brand-logo {
  width: 238px;
  height: 56px;
  padding: 0;
  object-fit: contain;
  object-position: center;
  border-radius: 0;
  box-shadow: none;
}

.brand-mark {
  display: inline-grid;
  place-items: center;
  width: 42px;
  height: 42px;
  border-radius: var(--radius);
  background: #fff;
  color: var(--blue);
  box-shadow: var(--shadow);
  font-weight: 900;
}

.nav-links {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 28px;
}

.nav-links a,
.nav-actions a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 36px;
  padding: 0 4px;
  border: 1px solid transparent;
  border-radius: 999px;
  background: transparent;
  color: rgba(23, 33, 50, .74);
  font-family: "Segoe UI", Arial, sans-serif;
  font-size: 13.5px;
  font-weight: 650;
  letter-spacing: 0;
  transition: color .22s ease, background .22s ease, border-color .22s ease;
}

.nav-actions {
  display: inline-flex;
  align-items: center;
  gap: 10px;
}

.nav-links a:hover,
.nav-links a[aria-current="page"] {
  color: var(--blue);
  border-color: transparent;
  background: transparent;
}

.nav-cta {
  background: var(--blue) !important;
  color: #fff !important;
  border-color: transparent !important;
  min-width: 112px;
  min-height: 42px !important;
  padding: 0 20px !important;
  box-shadow: 0 8px 18px rgba(47, 99, 216, .18);
}

.nav-toggle {
  display: none;
  width: 42px;
  height: 42px;
  border: 1px solid rgba(47, 99, 216, .16);
  border-radius: 999px;
  background: rgba(255, 255, 255, .84);
  box-shadow: 0 8px 18px rgba(17, 26, 43, .08);
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 4px;
}

.nav-toggle span {
  width: 17px;
  height: 2px;
  border-radius: 999px;
  background: var(--navy);
  transition: transform .22s ease, opacity .22s ease;
}

.nav.is-open .nav-toggle span:nth-child(1) {
  transform: translateY(6px) rotate(45deg);
}

.nav.is-open .nav-toggle span:nth-child(2) {
  opacity: 0;
}

.nav.is-open .nav-toggle span:nth-child(3) {
  transform: translateY(-6px) rotate(-45deg);
}

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

.hero {
  position: relative;
  min-height: calc(100svh - 54px);
  display: grid;
  align-items: center;
  padding: clamp(34px, 7vh, 76px) 0 clamp(42px, 6vh, 70px);
  overflow: hidden;
  background:
    radial-gradient(circle at 16% 18%, rgba(47, 99, 216, .16), transparent 32%),
    radial-gradient(circle at 84% 24%, rgba(240, 106, 26, .12), transparent 28%),
    linear-gradient(116deg, rgba(247, 242, 236, .98) 0%, rgba(237, 244, 255, .92) 54%, rgba(255, 240, 230, .72) 100%);
}

.hero::before {
  content: "";
  position: absolute;
  inset: -12% -8%;
  background:
    linear-gradient(128deg, transparent 0 49%, rgba(47, 99, 216, .16) 49.3% 62%, transparent 62.3%),
    linear-gradient(146deg, transparent 0 70%, rgba(240, 106, 26, .14) 70.2% 72.4%, transparent 72.6%),
    radial-gradient(circle at 72% 46%, rgba(47, 99, 216, .12), transparent 32%);
  transform: translate3d(0, 0, 0);
  animation: heroDrift 14s ease-in-out infinite alternate;
}

.scroll-cue {
  position: absolute;
  left: 50%;
  bottom: 24px;
  z-index: 2;
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  gap: 24px;
  transform: translateX(-50%);
  color: rgba(23, 33, 50, .72);
  font-family: "Segoe UI", Arial, sans-serif;
  font-size: 12px;
  font-weight: 650;
  letter-spacing: .06em;
  text-transform: uppercase;
}

.scroll-cue-mark {
  position: relative;
  order: 2;
  width: 24px;
  height: 24px;
  border: 1px solid rgba(47, 99, 216, .22);
  border-radius: 999px;
  background: rgba(255, 255, 255, .62);
  box-shadow: 0 10px 22px rgba(17, 26, 43, .08);
  animation: cueFloat 1.7s ease-in-out infinite;
}

.scroll-cue-mark::before,
.scroll-cue-mark::after {
  content: "";
  position: absolute;
}

.scroll-cue-mark::before {
  left: 50%;
  top: 7px;
  width: 8px;
  height: 8px;
  border-right: 2px solid var(--blue);
  border-bottom: 2px solid var(--orange);
  transform: translateX(-50%) rotate(45deg);
}

.scroll-cue-mark::after {
  left: 50%;
  top: -18px;
  width: 2px;
  height: 10px;
  border-radius: 999px;
  background: rgba(47, 99, 216, .42);
  transform: translateX(-50%);
}

@keyframes cueFloat {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(6px); }
}

@keyframes heroDrift {
  from { transform: translate3d(-18px, -10px, 0) scale(1.01); }
  to { transform: translate3d(18px, 12px, 0) scale(1.04); }
}

.hero-inner {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, .98fr) minmax(300px, .72fr);
  gap: clamp(18px, 4vw, 56px);
  align-items: center;
}

.hero-copy {
  max-width: 760px;
  min-width: 0;
}

.signature {
  width: min(560px, 100%);
  display: grid;
  gap: 7px;
  margin-bottom: 12px;
  position: relative;
  isolation: isolate;
}

.hero-brand {
  width: min(660px, 100%);
  justify-self: center;
  align-self: center;
  margin: 0;
  transform: translateY(-2px);
}

.signature::before {
  content: "";
  position: absolute;
  left: -28px;
  top: -18px;
  z-index: -1;
  width: min(470px, 88vw);
  height: 165px;
  border-radius: 999px;
  background:
    radial-gradient(circle at 28% 48%, rgba(47, 99, 216, .2), transparent 58%),
    radial-gradient(circle at 82% 52%, rgba(240, 106, 26, .1), transparent 55%);
  filter: blur(24px);
  opacity: .82;
}

.hero-brand::before {
  left: -46px;
  top: -34px;
  width: min(620px, 92vw);
  height: 245px;
  opacity: .9;
  filter: blur(28px);
}

.signature img {
  width: min(390px, 82vw);
  height: auto;
  padding: 0;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
  filter: drop-shadow(0 18px 26px rgba(47, 99, 216, .12));
}

.hero-brand img {
  width: min(510px, 40vw);
  max-width: 100%;
  justify-self: center;
  filter: drop-shadow(0 22px 34px rgba(47, 99, 216, .14));
}

.hero-brand .hero-logo-img {
  width: min(650px, 45vw);
  height: auto;
  aspect-ratio: auto;
  border: 0;
  border-radius: 0;
  object-fit: contain;
  object-position: center;
  box-shadow: none;
  filter: contrast(1.03) saturate(1.05) drop-shadow(0 18px 30px rgba(47, 99, 216, .12));
}

.brand-card {
  width: min(390px, 92%);
  justify-self: center;
  display: grid;
  gap: 7px;
  justify-items: center;
  text-align: center;
  padding: 12px 16px 13px;
  border: 1px solid rgba(47, 99, 216, .16);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, .62);
  box-shadow: 0 14px 34px rgba(17, 26, 43, .09);
  backdrop-filter: blur(14px);
}

.signature span,
.brand-card span {
  color: var(--blue);
  font-family: "Segoe UI", Arial, sans-serif;
  font-size: 13.5px;
  font-weight: 650;
  letter-spacing: 0;
  text-transform: uppercase;
}

.brand-card p {
  margin: 0;
  color: var(--orange);
  font-family: "Segoe UI", Arial, sans-serif;
  font-size: 13.5px;
  font-weight: 650;
  letter-spacing: 0;
  line-height: 1.35;
  text-transform: uppercase;
}

.eyebrow {
  margin: 0 0 8px;
  color: var(--orange);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: .13em;
  text-transform: uppercase;
}

h1,
h2 {
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-weight: 500;
  letter-spacing: 0;
  line-height: .97;
  overflow-wrap: normal;
  word-break: normal;
  hyphens: none;
}

h1 {
  font-size: clamp(44px, 6.4vw, 86px);
  max-width: 760px;
}

.h1-mobile {
  display: none;
}

h1 span,
h2 span {
  color: var(--blue);
}

.h1-desktop,
.h1-mobile {
  color: inherit;
}

.accent {
  color: var(--orange);
}

.hero-text {
  max-width: 680px;
  margin: 14px 0 0;
  color: var(--muted);
  font-size: clamp(16px, 1.45vw, 20px);
}

.actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 22px;
}

.hero-points {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 18px;
}

.hero-points span {
  min-height: 30px;
  display: inline-flex;
  align-items: center;
  padding: 0 10px;
  border: 1px solid rgba(47, 99, 216, .14);
  border-radius: 999px;
  background: rgba(255, 255, 255, .56);
  color: var(--navy);
  font-family: "Segoe UI", Arial, sans-serif;
  font-size: 13.5px;
  font-weight: 650;
  letter-spacing: 0;
  box-shadow: 0 8px 18px rgba(17, 26, 43, .06);
}

.button {
  min-height: 48px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0 18px;
  border: 1px solid transparent;
  border-radius: var(--radius);
  background: #285fce;
  color: #fff;
  font-family: "Segoe UI", Arial, sans-serif;
  font-size: 13.5px;
  font-weight: 650;
  letter-spacing: 0;
  box-shadow: 0 10px 24px rgba(47, 99, 216, .18);
  transition: transform .22s cubic-bezier(.22, 1, .36, 1), background .22s ease, box-shadow .22s ease;
}

.button:hover,
.button:focus-visible {
  background: #214fae;
  transform: translateY(-1px);
  box-shadow: 0 12px 26px rgba(47, 99, 216, .22);
}

.button.secondary {
  background: #fff;
  color: var(--navy);
  border-color: var(--line);
  box-shadow: 0 8px 18px rgba(17, 26, 43, .08);
}

.framer-touch {
  padding: 58px 0 0;
  position: relative;
  z-index: 2;
}

.services-showcase {
  padding-top: 78px;
}

.services-showcase .section-head {
  margin-bottom: 26px;
}

.offer-focus {
  display: grid;
  grid-template-columns: minmax(0, .9fr) minmax(0, 1.1fr);
  gap: 18px;
  align-items: stretch;
}

.offer-main,
.offer-item,
.offer-summary {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, .76);
  box-shadow: var(--shadow);
  backdrop-filter: blur(14px);
}

.offer-main {
  min-height: 470px;
  padding: clamp(24px, 4vw, 36px);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  background:
    linear-gradient(135deg, rgba(237, 244, 255, .95), rgba(255, 246, 239, .86)),
    rgba(255, 255, 255, .78);
}

.offer-main h2 {
  font-size: clamp(34px, 4.8vw, 66px);
}

.offer-main p:not(.eyebrow) {
  max-width: 620px;
  margin: 18px 0 0;
  color: var(--muted);
  font-size: 18px;
}

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

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

.offer-item {
  min-height: 190px;
  padding: 20px;
  display: grid;
  align-content: start;
  gap: 10px;
}

.offer-item span {
  display: inline-grid;
  place-items: center;
  width: 38px;
  height: 38px;
  border-radius: var(--radius);
  background: var(--paper-blue);
  color: var(--blue);
  font-family: "Segoe UI", Arial, sans-serif;
  font-size: 13px;
  font-weight: 800;
}

.offer-item:nth-child(even) span {
  background: var(--paper-orange);
  color: var(--orange);
}

.offer-item strong {
  color: var(--navy);
  font-size: 20px;
  line-height: 1.12;
}

.offer-item p {
  margin: 0;
  color: var(--muted);
  font-size: 14.5px;
}

.offer-summary {
  grid-column: 1 / -1;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 20px;
  background:
    linear-gradient(128deg, rgba(47, 99, 216, .92), rgba(47, 99, 216, .76) 54%, rgba(240, 106, 26, .78)),
    var(--navy);
  color: #fff;
}

.offer-summary strong {
  display: block;
  font-size: 22px;
  line-height: 1.15;
}

.offer-summary p {
  max-width: 680px;
  margin: 8px 0 0;
  color: rgba(255, 255, 255, .78);
}

.offer-summary .button {
  flex: 0 0 auto;
  background: #fff;
  color: var(--blue);
  box-shadow: 0 14px 28px rgba(17, 26, 43, .18);
}

.services-stage {
  align-items: stretch;
}

.services-stage > div {
  display: flex;
  flex-direction: column;
}

.services-mini-row .framer-mini {
  min-height: 132px;
}

.framer-stage {
  display: grid;
  grid-template-columns: minmax(0, .9fr) minmax(320px, 1.1fr);
  gap: 18px;
  align-items: stretch;
}

.framer-copy,
.framer-board,
.framer-mini {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, .74);
  box-shadow: var(--shadow);
  backdrop-filter: blur(14px);
}

.framer-copy {
  padding: 26px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  min-height: 330px;
}

.services-showcase .framer-copy {
  min-height: 100%;
}

.framer-copy h2 {
  margin: 0;
  font-size: clamp(32px, 4.2vw, 58px);
}

.framer-copy p {
  margin: 18px 0 0;
  color: var(--muted);
  font-size: 17px;
}

.framer-board {
  min-height: 330px;
  padding: 16px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  background:
    radial-gradient(circle at 18% 18%, rgba(47, 99, 216, .13), transparent 34%),
    radial-gradient(circle at 82% 72%, rgba(240, 106, 26, .075), transparent 30%),
    rgba(255, 255, 255, .8);
}

.framer-shot {
  min-height: 170px;
  border-radius: var(--radius);
  border: 1px solid rgba(23, 33, 50, .12);
  background: #fff;
  overflow: hidden;
  position: relative;
  transition: transform .42s cubic-bezier(.22, 1, .36, 1), box-shadow .42s ease;
}

.framer-shot:hover {
  transform: translateY(-5px);
  box-shadow: 0 18px 34px rgba(17, 26, 43, .13);
}

.framer-shot.wide {
  grid-column: 1 / -1;
}

.framer-shot img {
  width: 100%;
  height: 100%;
  position: absolute;
  inset: 0;
  object-fit: cover;
}

.framer-shot .shot-fill {
  height: 100%;
  display: grid;
  align-content: end;
  padding: 18px;
  background: linear-gradient(135deg, var(--blue-soft), var(--orange-soft));
}

.shot-fill strong {
  font-family: Georgia, "Times New Roman", serif;
  font-size: 34px;
  line-height: .98;
  color: var(--navy);
}

.shot-fill span {
  display: block;
  margin-top: 8px;
  color: var(--muted);
  font-size: 13px;
  font-weight: 700;
}

.framer-mini-row {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  margin-top: 18px;
}

.framer-mini {
  min-height: 116px;
  padding: 16px;
}

.framer-mini strong {
  display: block;
  margin-bottom: 8px;
  color: var(--blue);
}

.framer-mini:nth-child(even) strong {
  color: var(--orange);
}

.framer-mini span {
  color: var(--muted);
  font-size: 14px;
}

.project-board {
  grid-template-columns: 1fr 1fr;
}

.project-preview {
  min-height: 0;
  border-radius: var(--radius);
  border: 1px solid rgba(23, 33, 50, .12);
  background: #fff;
  overflow: hidden;
  position: relative;
  display: grid;
  grid-template-rows: 178px auto;
  transition: transform .42s cubic-bezier(.22, 1, .36, 1), box-shadow .42s ease;
}

.project-preview:hover,
.project-preview:focus-visible {
  transform: translateY(-5px);
  box-shadow: 0 18px 34px rgba(17, 26, 43, .13);
}

.project-preview img {
  width: 100%;
  height: 178px;
  object-fit: contain;
  padding: 28px;
  background: linear-gradient(135deg, rgba(237, 244, 255, .96), rgba(255, 246, 239, .88));
}

.project-preview-jardins img {
  padding: 10px;
}

.project-preview-drimi img {
  padding: 34px;
  background: linear-gradient(135deg, rgba(245, 250, 255, .98), rgba(237, 244, 255, .88));
}

.project-label {
  display: grid;
  gap: 4px;
  padding: 13px 14px 14px;
  border-top: 1px solid rgba(23, 33, 50, .1);
  background: rgba(255, 255, 255, .92);
}

.project-label b {
  color: var(--navy);
  font-size: 14px;
}

.project-label small {
  color: var(--muted);
  font-size: 12px;
  line-height: 1.35;
}

.project-label em {
  display: inline-flex;
  width: fit-content;
  margin-top: 4px;
  color: var(--blue);
  font-size: 12px;
  font-style: normal;
  font-weight: 850;
}

.service-proof-row {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  margin-top: 14px;
}

.service-proof {
  min-height: 158px;
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, .74);
  box-shadow: var(--shadow);
  backdrop-filter: blur(14px);
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 6px 12px;
  align-content: start;
}

.service-proof strong {
  display: block;
  align-self: center;
  margin: 0;
  color: var(--blue);
  font-size: 17px;
  line-height: 1.15;
}

.service-proof:nth-child(1) strong,
.service-proof:nth-child(3) strong {
  color: var(--orange);
}

.service-proof span {
  color: var(--muted);
  font-size: 14px;
}

.service-proof .proof-index {
  display: inline-grid;
  place-items: center;
  width: 38px;
  height: 38px;
  border-radius: var(--radius);
  background: var(--paper-blue);
  color: var(--blue);
  font-size: 13px;
  font-weight: 900;
}

.service-proof:nth-child(1) .proof-index,
.service-proof:nth-child(3) .proof-index {
  background: var(--paper-orange);
  color: var(--orange);
}

.service-proof p {
  grid-column: 1 / -1;
  margin: 4px 0 0;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.45;
}
.button.secondary:hover,
.button.secondary:focus-visible {
  background: var(--paper-blue);
  box-shadow: 0 10px 22px rgba(17, 26, 43, .1);
}

.section {
  padding: 88px 0;
}

.section.services-showcase {
  padding: 78px 0 88px;
}

.section.alt {
  background: rgba(255, 255, 255, .72);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.about-section {
  position: relative;
  overflow: hidden;
  background:
    linear-gradient(128deg, transparent 0 43%, rgba(47, 99, 216, .13) 43.2% 58%, transparent 58.3%),
    linear-gradient(132deg, transparent 0 71%, rgba(240, 106, 26, .16) 71.2% 72.8%, transparent 73%),
    radial-gradient(circle at 18% 22%, rgba(47, 99, 216, .1), transparent 28%),
    linear-gradient(116deg, rgba(255, 255, 255, .96), rgba(238, 245, 255, .88) 54%, rgba(255, 247, 241, .76));
}

.about-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(128deg, transparent 0 50%, rgba(47, 99, 216, .08) 50.2% 50.8%, transparent 51%),
    linear-gradient(128deg, transparent 0 56%, rgba(240, 106, 26, .12) 56.1% 56.6%, transparent 56.8%);
  pointer-events: none;
}

.about-section .wrap {
  position: relative;
  z-index: 1;
}


.section.dark {
  background: var(--navy);
  color: #fff;
}

.section-head {
  display: grid;
  grid-template-columns: minmax(0, .95fr) minmax(280px, .55fr);
  gap: 30px;
  align-items: end;
  margin-bottom: 32px;
}

.section h2 {
  font-size: clamp(38px, 5.4vw, 72px);
}

.lead {
  margin: 0;
  color: var(--muted);
  font-size: 18px;
}

.section.dark .lead {
  color: rgba(255, 255, 255, .68);
}

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

.offer,
.case,
.step {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--panel);
  box-shadow: var(--shadow);
}

.offer {
  min-height: 340px;
  padding: 22px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  position: relative;
  overflow: hidden;
  transition: transform .42s cubic-bezier(.22, 1, .36, 1), box-shadow .42s ease;
}

.offer:hover {
  transform: translateY(-5px);
  box-shadow: 0 22px 52px rgba(17, 26, 43, .14);
}

.offer::before {
  content: "";
  position: absolute;
  inset: 0 0 auto;
  height: 7px;
  background: var(--blue);
}

.offer.is-accent::before {
  background: var(--orange);
}


.offer-num {
  display: inline-grid;
  place-items: center;
  width: 48px;
  height: 48px;
  border-radius: var(--radius);
  background: var(--paper-blue);
  color: var(--blue);
  font-weight: 900;
}

.offer.is-accent .offer-num {
  background: var(--paper-orange);
  color: var(--orange);
}

.offer h3 {
  margin: 28px 0 10px;
  font-size: 25px;
}

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

.tags {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-top: 22px;
}

.tag {
  min-height: 30px;
  display: inline-flex;
  align-items: center;
  padding: 0 10px;
  border-radius: 999px;
  background: var(--paper-blue);
  color: var(--blue);
  font-family: "Segoe UI", Arial, sans-serif;
  font-size: 13.5px;
  font-weight: 650;
  letter-spacing: 0;
}

.tag.accent {
  background: var(--paper-orange);
  color: var(--orange);
}

.workbench {
  display: grid;
  grid-template-columns: minmax(0, .95fr) minmax(320px, .7fr);
  gap: 18px;
  align-items: stretch;
}

.workbench-main {
  min-height: 470px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background:
    linear-gradient(135deg, rgba(47, 99, 216, .12), rgba(240, 106, 26, .1)),
    #fff;
  overflow: hidden;
  box-shadow: var(--shadow);
  position: relative;
}

.workbench-main img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  mix-blend-mode: multiply;
  opacity: .86;
}

.workbench-label {
  position: absolute;
  left: 22px;
  bottom: 22px;
  max-width: 430px;
  padding: 18px;
  border-radius: var(--radius);
  background: rgba(255, 255, 255, .86);
  backdrop-filter: blur(12px);
}

.workbench-label strong {
  display: block;
  margin-bottom: 6px;
  font-size: 22px;
}

.workbench-label span {
  color: var(--muted);
}

.workbench-side {
  display: grid;
  gap: 18px;
}

.note {
  min-height: 226px;
  padding: 22px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, .84);
  box-shadow: var(--shadow);
}

.note span {
  display: inline-grid;
  place-items: center;
  width: 38px;
  height: 38px;
  margin-bottom: 18px;
  border-radius: var(--radius);
  background: var(--paper-blue);
  color: var(--blue);
  font-weight: 900;
}

.note strong {
  display: block;
  margin-bottom: 8px;
  color: var(--blue);
  font-size: 20px;
}

.note.accent span {
  background: var(--paper-orange);
  color: var(--orange);
}

.note.accent strong {
  color: var(--orange);
}

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

.profile-workbench {
  grid-template-columns: minmax(0, .98fr) minmax(320px, .72fr);
}

.profile-card img {
  opacity: .92;
}

.profile-label {
  display: grid;
  gap: 7px;
}

.profile-label span {
  color: var(--orange);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: .12em;
  text-transform: uppercase;
}

.profile-label strong {
  margin: 0;
}

.profile-label p {
  margin: 0;
  color: var(--muted);
}

.method-intro {
  padding: 20px 22px;
  border: 1px solid rgba(47, 99, 216, .16);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, .76);
  box-shadow: var(--shadow);
  backdrop-filter: blur(14px);
}

.method-intro .eyebrow {
  margin-bottom: 10px;
}

.method-intro strong {
  display: block;
  color: var(--navy);
  font-size: 24px;
  line-height: 1.08;
}

.method-intro span {
  display: block;
  margin-top: 8px;
  color: var(--muted);
}

.profile-points .note {
  position: relative;
  overflow: hidden;
}

.profile-points .note::before {
  content: "";
  position: absolute;
  inset: 0 auto 0 0;
  width: 5px;
  background: var(--blue);
}

.profile-points .note.accent::before {
  background: var(--orange);
}
.profile-points {
  grid-template-rows: auto repeat(3, minmax(0, 1fr));
}

.profile-points .note {
  min-height: 0;
}

.case-list {
  display: grid;
  gap: 18px;
}

.case {
  display: grid;
  grid-template-columns: minmax(280px, .78fr) minmax(0, 1fr);
  min-height: 360px;
  overflow: hidden;
  transition: transform .42s cubic-bezier(.22, 1, .36, 1), box-shadow .42s ease;
}

.case:hover {
  transform: translateY(-5px);
  box-shadow: 0 24px 56px rgba(17, 26, 43, .14);
}

.case-media {
  position: relative;
  min-height: 320px;
  background: var(--paper-blue);
}

.case-media img {
  width: 100%;
  height: 100%;
  position: absolute;
  inset: 0;
  object-fit: cover;
  transition: transform .8s ease;
}

.case:hover .case-media img {
  transform: scale(1.04);
}

.case-placeholder {
  min-height: 100%;
  display: grid;
  align-content: end;
  padding: 28px;
  background:
    linear-gradient(135deg, rgba(47, 99, 216, .9), rgba(240, 106, 26, .78)),
    var(--navy);
  color: #fff;
}

.case-placeholder strong {
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(46px, 8vw, 98px);
  font-weight: 500;
  line-height: .9;
}

.case-body {
  padding: 28px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.case-kicker {
  margin: 0 0 10px;
  color: var(--orange);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: .12em;
  text-transform: uppercase;
}

.case h3 {
  margin: 0;
  font-size: clamp(32px, 4vw, 54px);
  line-height: 1;
}

.case p {
  margin: 14px 0 0;
  color: var(--muted);
}

.portfolio-showcase {
  padding-top: 82px;
}

.client-cases {
  gap: 22px;
}

.client-case {
  min-height: 390px;
}

.logo-media {
  display: grid;
  place-items: center;
  padding: 34px;
  background:
    radial-gradient(circle at 18% 18%, rgba(47, 99, 216, .14), transparent 34%),
    linear-gradient(135deg, rgba(237, 244, 255, .96), rgba(255, 246, 239, .86));
}

.logo-media img {
  position: static;
  width: min(360px, 82%);
  height: auto;
  object-fit: contain;
  transform: none !important;
}

.jardins-media img {
  width: min(430px, 94%);
}

.drimi-media img {
  width: min(340px, 82%);
}

.case-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
  margin-top: 18px;
}

.case-meta span {
  min-height: 28px;
  display: inline-flex;
  align-items: center;
  padding: 0 9px;
  border-radius: 999px;
  background: var(--paper-blue);
  color: var(--blue);
  font-family: "Segoe UI", Arial, sans-serif;
  font-size: 12.5px;
  font-weight: 650;
  letter-spacing: 0;
}

.case-meta span:nth-child(even) {
  background: var(--paper-orange);
  color: var(--orange);
}

.case-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 28px;
}

.case-actions .button[aria-disabled="true"],
.case-actions .button:not([href]) {
  opacity: .72;
  cursor: not-allowed;
}

.portfolio-cta-section {
  padding-top: 0;
}

.portfolio-cta {
  grid-template-columns: minmax(0, 1fr) auto;
}

.portfolio-cta .button {
  background: #fff;
  color: var(--blue);
  box-shadow: 0 14px 28px rgba(17, 26, 43, .18);
}
.steps {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}

.step {
  padding: 22px;
  background: rgba(255, 255, 255, .06);
  border-color: rgba(255, 255, 255, .14);
  box-shadow: none;
}

.step span {
  color: var(--orange-soft);
  font-weight: 900;
}

.step h3 {
  margin: 16px 0 8px;
  font-size: 23px;
}

.step p {
  margin: 0;
  color: rgba(255, 255, 255, .68);
}

.contact-section {
  padding-top: 82px;
}

.contact-panel {
  position: relative;
  overflow: hidden;
  display: grid;
  grid-template-columns: minmax(0, .82fr) minmax(360px, 1fr);
  gap: clamp(24px, 5vw, 58px);
  align-items: center;
  padding: clamp(28px, 5vw, 58px);
  border: 1px solid rgba(47, 99, 216, .16);
  border-radius: var(--radius);
  background:
    linear-gradient(128deg, rgba(47, 99, 216, .92), rgba(47, 99, 216, .76) 48%, rgba(240, 106, 26, .82)),
    var(--navy);
  box-shadow: 0 28px 70px rgba(17, 26, 43, .18);
  color: #fff;
}

.contact-panel::before {
  content: "";
  position: absolute;
  inset: -20%;
  background:
    linear-gradient(128deg, transparent 0 52%, rgba(255, 255, 255, .14) 52.2% 61%, transparent 61.2%),
    radial-gradient(circle at 18% 18%, rgba(255, 255, 255, .18), transparent 28%);
  pointer-events: none;
}

.contact-panel > * {
  position: relative;
  z-index: 1;
}

.contact-intro h2 {
  font-size: clamp(38px, 5vw, 66px);
}

.contact-intro p:not(.eyebrow) {
  margin: 16px 0 0;
  color: rgba(255, 255, 255, .78);
  font-size: 17px;
}

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

.contact-card {
  display: grid;
  gap: 5px;
  padding: 15px 16px;
  border: 1px solid rgba(255, 255, 255, .22);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, .1);
  color: #fff;
  box-shadow: 0 12px 26px rgba(17, 26, 43, .1);
  transition: transform .22s ease, background .22s ease, border-color .22s ease;
}

.contact-card:hover,
.contact-card:focus-visible {
  transform: translateY(-2px);
  border-color: rgba(255, 255, 255, .38);
  background: rgba(255, 255, 255, .16);
}

.contact-card span {
  color: rgba(255, 255, 255, .72);
  font-family: "Segoe UI", Arial, sans-serif;
  font-size: 12px;
  font-weight: 650;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.contact-card strong {
  color: #fff;
  font-family: "Segoe UI", Arial, sans-serif;
  font-size: clamp(18px, 2vw, 23px);
  font-weight: 750;
  letter-spacing: 0;
  line-height: 1.15;
  overflow-wrap: anywhere;
}

.contact-card:nth-child(1) span {
  color: var(--orange-soft);
}

.contact-card:nth-child(2) span {
  color: var(--blue-soft);
}

.contact-trust {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 24px;
}

.contact-trust span {
  min-height: 30px;
  display: inline-flex;
  align-items: center;
  padding: 0 10px;
  border: 1px solid rgba(255, 255, 255, .22);
  border-radius: 999px;
  background: rgba(255, 255, 255, .12);
  color: #fff;
  font-size: 13px;
  font-weight: 650;
}

.contact-form {
  display: grid;
  gap: 14px;
  padding: 18px;
  border: 1px solid rgba(255, 255, 255, .18);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, .16);
  backdrop-filter: blur(16px);
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}

.contact-form label {
  display: grid;
  gap: 7px;
}

.contact-form label span {
  color: rgba(255, 255, 255, .82);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.contact-form small {
  color: rgba(255, 255, 255, .58);
  font-size: 11px;
  letter-spacing: 0;
  text-transform: none;
}

.contact-form input:not([type="checkbox"]),
.contact-form select,
.contact-form textarea {
  width: 100%;
  border: 1px solid rgba(255, 255, 255, .28);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, .12);
  color: #fff;
  min-height: 44px;
  padding: 0 13px;
  outline: none;
  transition: border-color .22s ease, background .22s ease, box-shadow .22s ease;
}

.contact-form textarea {
  min-height: 112px;
  padding: 12px 13px;
  resize: vertical;
}

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

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

.contact-form input:not([type="checkbox"]):focus,
.contact-form select:focus,
.contact-form textarea:focus {
  border-color: rgba(255, 255, 255, .72);
  background: rgba(255, 255, 255, .18);
  box-shadow: 0 0 0 3px rgba(255, 255, 255, .12);
}


.form-legal {
  margin: 0;
  padding: 11px 12px;
  border: 1px solid rgba(255, 255, 255, .18);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, .08);
  color: rgba(255, 255, 255, .74);
  font-size: 12px;
  font-weight: 650;
  line-height: 1.45;
}

.form-legal a {
  color: #fff;
  font-weight: 650;
  text-decoration: underline;
  text-decoration-thickness: 1px;
  text-underline-offset: 3px;
}

.form-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
}

.form-bottom p {
  margin: 0;
  color: rgba(255, 255, 255, .76);
  font-size: 13px;
  font-weight: 700;
}

.contact-form .button {
  border: 0;
  background: #fff;
  color: var(--blue);
  cursor: pointer;
  box-shadow: 0 14px 28px rgba(17, 26, 43, .18);
}

.footer {
  padding: 26px 0;
  color: var(--muted);
  border-top: 1px solid var(--line);
  background: rgba(255, 255, 255, .5);
}

.footer-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
  font-size: 13px;
}

.footer-brand {
  display: inline-flex;
  align-items: center;
  flex: 0 0 auto;
}

.footer-brand img {
  width: 198px;
  height: 48px;
  border-radius: 0;
  object-fit: contain;
  object-position: center;
}

.footer a:not(.footer-brand) {
  color: var(--muted);
  font-family: Arial, Helvetica, sans-serif;
  font-weight: 400;
}

.footer .legal-link {
  text-decoration: underline;
  text-decoration-thickness: 1px;
  text-underline-offset: 4px;
}

.legal-page {
  min-height: calc(100vh - 148px);
}

.legal-page h1 {
  font-size: clamp(44px, 6vw, 82px);
}

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

.legal-block {
  min-height: 230px;
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, .78);
  box-shadow: var(--shadow);
}

.legal-block h2 {
  margin: 0 0 14px;
  color: var(--navy);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 30px;
  line-height: 1;
}

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

.legal-block a {
  color: var(--blue);
  font-weight: 850;
}

.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity .86s ease, transform .86s cubic-bezier(.22, 1, .36, 1);
}

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

@media (max-width: 920px) {
  .nav {
    min-height: 62px;
    display: grid;
    grid-template-columns: auto 1fr auto;
    justify-content: initial;
    gap: 12px;
    padding: 6px 0;
    position: relative;
  }

  .brand-logo {
    width: 176px;
    height: 42px;
  }

  .nav-actions {
    margin-left: auto;
  }

  .nav-links {
    position: absolute;
    top: calc(100% + 8px);
    right: 0;
    width: min(260px, calc(100vw - 32px));
    display: grid;
    gap: 6px;
    justify-content: stretch;
    padding: 10px;
    border: 1px solid rgba(47, 99, 216, .12);
    border-radius: var(--radius);
    background: rgba(255, 255, 255, .94);
    box-shadow: 0 18px 42px rgba(17, 26, 43, .14);
    backdrop-filter: blur(16px);
    opacity: 0;
    pointer-events: none;
    transform: translateY(-8px);
    transition: opacity .22s ease, transform .22s ease;
  }

  .nav-links a {
    min-height: 40px;
    justify-content: flex-start;
    padding: 0 12px;
    font-size: 13.5px;
  }

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

  .nav-toggle {
    display: inline-flex;
  }

  .hero {
    min-height: calc(100svh - 62px);
    padding: 24px 0 58px;
  }

  .hero-inner,
  .section-head,
  .framer-stage,
  .offer-focus,
  .workbench,
  .steps,
  .contact-panel,
  .form-row {
    grid-template-columns: 1fr;
  }

  .hero-brand {
    order: -1;
    justify-self: start;
    margin-bottom: 4px;
  }

  .hero-brand .hero-logo-img {
    justify-self: start;
    width: min(330px, 84vw);
  }

  .brand-card {
    justify-self: start;
    width: min(330px, 84vw);
  }

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

  .framer-mini-row,
  .service-proof-row,
  .legal-content {
    grid-template-columns: 1fr;
  }

  .offer-main {
    min-height: auto;
  }

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

@media (max-width: 560px) {
  .brand-logo {
    width: 148px;
    height: 36px;
  }

  .signature img {
    width: min(286px, 86vw);
  }

  .actions .button {
    width: 100%;
  }

  .scroll-cue {
    position: relative;
    left: auto;
    bottom: auto;
    transform: none;
    width: fit-content;
    margin: 28px auto 0;
    gap: 26px;
  }

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

  .h1-desktop {
    display: none;
  }

  .h1-mobile {
    display: inline;
  }

  .section {
    padding: 66px 0;
  }

  .framer-board {
    grid-template-columns: 1fr;
  }

  .framer-shot.wide {
    grid-column: auto;
  }

  .offer-details {
    grid-template-columns: 1fr;
  }

  .offer-main,
  .offer-item,
  .offer-summary {
    padding: 20px;
    background-color: rgba(255, 255, 255, .92);
  }

  .offer-main h2 {
    font-size: 34px;
  }

  .services-showcase .section-head {
    gap: 18px;
    margin-bottom: 22px;
  }

  .services-showcase .section-head h2 {
    font-size: 38px;
    line-height: 1.03;
  }

  .services-showcase .lead {
    font-size: 16px;
  }

  .offer-summary .button {
    width: 100%;
  }
}




















































