:root {
  --navy: #081d35;
  --navy-soft: #102a48;
  --lime: #746ae5;
  --lime-dark: #6258cf;
  --ink: #24303e;
  --muted: #66717e;
  --line: #e4e7eb;
  --paper: #ffffff;
  --wash: #f7f8fb;
  --violet: #746ae5;
  --violet-soft: #958dec;
  --teal: #18aaa6;
  --teal-soft: #50bcbc;
  --slate: #445368;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: "Segoe UI", Arial, Helvetica, sans-serif;
  -webkit-font-smoothing: antialiased;
}

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

button,
a {
  -webkit-tap-highlight-color: transparent;
}

svg {
  display: block;
}

.site-header {
  height: 78px;
  color: white;
  background: #081d35;
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
  position: sticky;
  top: 0;
  z-index: 50;
  backdrop-filter: blur(12px);
}

.header-inner,
.hero-inner,
.projects-inner,
.contact-inner,
.footer-inner {
  width: min(1420px, calc(100% - 56px));
  margin: 0 auto;
}

.header-inner {
  height: 100%;
  display: flex;
  align-items: center;
  gap: 40px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 11px;
  font-size: 22px;
  font-weight: 800;
  letter-spacing: -0.8px;
  color: white;
  white-space: nowrap;
}

.brand-symbol {
  width: 38px;
  height: 38px;
  display: grid;
  place-items: center;
  border-radius: 12px 9px 12px 9px;
  color: white;
  background: var(--lime);
  font-size: 22px;
  font-weight: 900;
  transform: rotate(-6deg);
  box-shadow: 0 5px 14px rgba(91, 131, 0, 0.16);
}

.brand-name span {
  color: var(--lime);
}

.uy-flag {
  position: relative;
  width: 25px;
  height: 17px;
  display: inline-block;
  flex: 0 0 auto;
  overflow: hidden;
  border: 0;
  border-radius: 3px;
  background: repeating-linear-gradient(
    to bottom,
    #ffffff 0 2px,
    #4a8fd8 2px 4px
  );
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.16);
}

.uy-flag::before {
  content: "";
  position: absolute;
  left: 2px;
  top: 2px;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #f5c842;
  box-shadow: 0 0 0 2px rgba(255, 255, 255, 0.82);
}

nav {
  display: flex;
  align-items: center;
  gap: 28px;
  margin-left: auto;
  font-size: 13px;
  color: #bac6d2;
}

nav a {
  position: relative;
  padding: 29px 0 25px;
}

nav a::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 20px;
  height: 2px;
  background: var(--violet);
  transform: scaleX(0);
  transition: transform 0.2s ease;
}

nav a:hover,
nav a.active {
  color: white;
}

nav a:hover::after,
nav a.active::after {
  transform: scaleX(1);
}

.header-cta {
  display: inline-flex;
  align-items: center;
  gap: 13px;
  background: var(--violet);
  color: white;
  padding: 12px 17px;
  border-radius: 8px;
  font-size: 13px;
  font-weight: 700;
}

.hero {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(circle at 10% 16%, rgba(149, 141, 236, 0.23) 0 72px, transparent 74px),
    radial-gradient(circle at 58% 28%, rgba(80, 188, 188, 0.16) 0 210px, transparent 212px),
    radial-gradient(circle at 88% 74%, rgba(68, 83, 104, 0.13) 0 185px, transparent 187px),
    linear-gradient(115deg, #f3f1ff 0%, #fbfbff 42%, #f1faf9 100%);
}

.hero::before {
  content: "";
  position: absolute;
  left: -95px;
  bottom: 38px;
  width: 290px;
  height: 150px;
  border-radius: 48% 52% 70% 30%;
  background: rgba(113, 102, 232, 0.13);
  transform: rotate(-13deg);
}

.hero::after {
  content: "";
  position: absolute;
  right: 34px;
  top: 75px;
  width: 145px;
  height: 145px;
  opacity: 0.36;
  background-image: radial-gradient(circle, #7166e8 2px, transparent 2.5px);
  background-size: 18px 18px;
}

.hero-inner {
  position: relative;
  z-index: 2;
  min-height: 680px;
  display: grid;
  grid-template-columns: minmax(420px, 0.9fr) minmax(620px, 1.1fr);
  align-items: center;
  gap: 42px;
  padding: 55px 0 35px;
}

.eyebrow {
  margin: 0 0 18px;
  display: flex;
  align-items: center;
  gap: 10px;
  color: #5d6672;
  text-transform: uppercase;
  letter-spacing: 1.7px;
  font-size: 11px;
  font-weight: 800;
}

.hero-copy .eyebrow {
  width: fit-content;
  padding: 9px 13px;
  border: 1px solid rgba(113, 102, 232, 0.18);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.72);
  box-shadow: 0 7px 20px rgba(70, 63, 138, 0.07);
}

.eyebrow.light {
  color: #b8c5d3;
}

.eyebrow-dot {
  width: 25px;
  height: 3px;
  border-radius: 4px;
  background: var(--teal);
}

.hero h1 {
  max-width: 650px;
  margin: 0;
  color: var(--navy);
  font-size: clamp(52px, 4.7vw, 76px);
  line-height: 0.99;
  letter-spacing: -3.6px;
  font-weight: 800;
}

.hero-copy {
  position: relative;
}

.hero-copy::after {
  content: "";
  position: absolute;
  left: -33px;
  top: 108px;
  width: 12px;
  height: 85px;
  border-radius: 20px;
  background: linear-gradient(var(--violet) 0 31%, transparent 31% 40%, var(--teal) 40% 68%, transparent 68% 77%, var(--navy) 77%);
  opacity: 0.75;
}

.hero h1 em {
  position: relative;
  color: var(--violet);
  font-style: normal;
}

.hero h1 em::after {
  display: none;
}

.hero-lead {
  max-width: 610px;
  margin: 28px 0 0;
  color: #5e6875;
  font-size: 18px;
  line-height: 1.65;
}

.hero-actions {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-top: 32px;
}

.button {
  min-height: 52px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 18px;
  padding: 0 22px;
  border-radius: 8px;
  font-weight: 700;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

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

.button-primary {
  color: white;
  background: var(--navy);
  box-shadow: 0 12px 26px rgba(8, 29, 53, 0.18);
}

.button-secondary {
  color: var(--navy);
  background: white;
  border: 1px solid #cdd3da;
}

.hero-trust {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  margin-top: 27px;
  color: #6c7681;
  font-size: 12px;
}

.hero-trust b {
  margin-right: 5px;
  color: var(--violet);
}

.hero-trust span:nth-child(2) b {
  color: var(--teal);
}

.hero-trust span:nth-child(3) b {
  color: var(--lime-dark);
}

.device-scene {
  position: relative;
  height: 570px;
  min-width: 0;
}

.hero-real-visual {
  position: absolute;
  z-index: 12;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center;
  filter: drop-shadow(0 22px 26px rgba(8, 29, 53, 0.14));
}

.device-scene > :not(.hero-real-visual) {
  display: none !important;
}

.device-scene::before {
  display: none;
  position: absolute;
  z-index: 1;
  left: 18px;
  top: 88px;
  width: 128px;
  height: 128px;
  border: 2px dashed rgba(113, 102, 232, 0.24);
  border-radius: 50%;
}

.device-scene::after {
  display: none;
  position: absolute;
  z-index: 1;
  right: -35px;
  top: 170px;
  width: 82px;
  height: 140px;
  border-radius: 80% 20% 70% 30%;
  background: rgba(113, 102, 232, 0.86);
  transform: rotate(24deg);
}

.decor {
  position: absolute;
  z-index: 0;
  pointer-events: none;
}

.decor-one {
  width: 570px;
  height: 430px;
  left: 80px;
  top: 55px;
  border-radius: 46% 54% 44% 56% / 55% 44% 56% 45%;
  background: linear-gradient(145deg, #e8e4ff, #f6f3ff);
  transform: rotate(-7deg);
  box-shadow: 0 30px 70px rgba(72, 65, 150, 0.12);
}

.decor-two {
  width: 310px;
  height: 160px;
  right: -75px;
  bottom: 12px;
  border-radius: 75% 25% 0 65%;
  background: linear-gradient(135deg, var(--lime), #e7ff93);
  transform: rotate(-12deg);
  opacity: 0.94;
}

.decor-two::before,
.decor-two::after {
  content: "";
  position: absolute;
  right: 45px;
  top: -58px;
  width: 72px;
  height: 125px;
  border-radius: 100% 0 100% 0;
  background: var(--violet);
  transform: rotate(34deg);
}

.decor-two::after {
  right: 112px;
  top: -88px;
  width: 56px;
  height: 115px;
  background: var(--teal);
  transform: rotate(-8deg);
}

.decor-three {
  width: 155px;
  height: 155px;
  left: 25px;
  bottom: 0;
  border-radius: 55% 45% 60% 40%;
  background: var(--teal);
  transform: rotate(18deg);
  opacity: 0.94;
  box-shadow: 0 20px 40px rgba(16, 184, 179, 0.18);
}

.decor-three::before,
.decor-three::after {
  content: "";
  position: absolute;
  left: 10px;
  top: -77px;
  width: 55px;
  height: 115px;
  border-radius: 100% 0 100% 0;
  background: var(--teal);
  transform: rotate(-18deg);
}

.decor-three::after {
  left: 70px;
  top: -58px;
  width: 48px;
  height: 100px;
  background: var(--lime);
  transform: rotate(26deg);
}

.desktop {
  position: absolute;
  z-index: 3;
  width: 555px;
  height: 405px;
  top: 56px;
  right: 24px;
  filter: drop-shadow(0 26px 25px rgba(20, 29, 38, 0.22));
}

.desktop-camera {
  position: absolute;
  z-index: 2;
  left: 50%;
  top: 8px;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: #66717d;
}

.desktop-screen {
  position: relative;
  z-index: 1;
  height: 330px;
  padding: 18px 20px;
  overflow: hidden;
  border: 12px solid #20262c;
  border-radius: 17px 17px 5px 5px;
  color: var(--navy);
  background: #f7f3e9;
}

.mini-header {
  display: flex;
  justify-content: flex-end;
  gap: 14px;
  align-items: center;
  color: #53606c;
  font-size: 6px;
}

.mini-logo {
  margin-right: auto;
  color: var(--navy);
  font-size: 10px;
  font-weight: 900;
  letter-spacing: 2px;
}

.mini-hero {
  height: 188px;
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 8px;
  align-items: center;
  margin-top: 11px;
}

.mini-hero small {
  font-size: 5px;
  letter-spacing: 1.7px;
  color: #6d7b88;
}

.mini-hero strong {
  display: block;
  margin: 12px 0 10px;
  font-size: 24px;
  line-height: 1.02;
  letter-spacing: -1px;
}

.mini-hero i {
  display: block;
  width: 34px;
  height: 3px;
  margin-bottom: 13px;
  background: var(--lime-dark);
}

.mini-hero button {
  padding: 8px 11px;
  border: 0;
  color: white;
  background: var(--navy);
  font-size: 6px;
}

.mini-photo {
  position: relative;
  height: 100%;
  overflow: hidden;
  background:
    linear-gradient(143deg, transparent 0 43%, var(--navy-soft) 44% 100%),
    linear-gradient(35deg, #e9e3d5 0 48%, var(--lime) 49% 100%);
}

.mini-photo::before,
.mini-photo::after {
  content: "";
  position: absolute;
  left: 52px;
  bottom: 25px;
  width: 120px;
  height: 80px;
  border-radius: 0 90px 0 0;
  background: rgba(255, 255, 255, 0.12);
  transform: rotate(-16deg);
}

.mini-photo::after {
  left: 98px;
  bottom: 9px;
  width: 115px;
  height: 112px;
  border-radius: 100% 0 0 0;
  background: rgba(255, 255, 255, 0.08);
}

.mini-photo b {
  position: absolute;
  right: 12px;
  bottom: 12px;
  color: white;
  font-size: 25px;
}

.mini-features {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 7px;
}

.mini-features > span {
  display: grid;
  place-items: center;
  gap: 4px;
  padding: 9px;
  color: var(--navy);
  background: white;
}

.mini-features svg {
  width: 17px;
  height: 17px;
  color: var(--lime-dark);
}

.mini-features small {
  font-size: 6px;
}

.desktop-chin {
  position: absolute;
  left: 0;
  right: 0;
  top: 330px;
  height: 44px;
  border-radius: 0 0 16px 16px;
  background: linear-gradient(#3b4147, #171c21);
}

.desktop-stand {
  position: absolute;
  z-index: -1;
  left: 220px;
  top: 350px;
  width: 118px;
  height: 64px;
  clip-path: polygon(20% 0, 80% 0, 100% 100%, 0 100%);
  background: linear-gradient(90deg, #30363c, #6c7175 50%, #242a30);
}

.desktop-base {
  position: absolute;
  z-index: -1;
  left: 165px;
  top: 407px;
  width: 230px;
  height: 14px;
  border-radius: 50%;
  background: #272d32;
}

.tablet {
  position: absolute;
  z-index: 5;
  width: 240px;
  height: 340px;
  right: 0;
  bottom: 5px;
  padding: 16px;
  overflow: hidden;
  border: 8px solid #2b3137;
  border-radius: 21px;
  background: #faf8f0;
  box-shadow: 0 25px 35px rgba(15, 24, 32, 0.24);
}

.tablet-top,
.phone-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  color: var(--navy);
  font-size: 8px;
}

.tablet-top i,
.phone-head i {
  width: 11px;
  height: 11px;
  background: var(--lime);
}

.shop-cover {
  position: relative;
  height: 103px;
  margin-top: 13px;
  overflow: hidden;
  background: #e8dfce;
}

.shop-cover::before {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 29px;
  background: #d3c3ab;
}

.shop-vase {
  position: absolute;
  left: 54px;
  bottom: 18px;
  width: 48px;
  height: 52px;
  border-radius: 42% 42% 48% 48%;
  background: #ad9e84;
}

.shop-vase::before {
  content: "";
  position: absolute;
  left: 18px;
  top: -16px;
  width: 12px;
  height: 20px;
  background: #ad9e84;
}

.shop-plant {
  position: absolute;
  left: 125px;
  bottom: 17px;
  width: 5px;
  height: 60px;
  background: #64704e;
  transform: rotate(10deg);
}

.shop-plant::before,
.shop-plant::after {
  content: "";
  position: absolute;
  width: 25px;
  height: 10px;
  border-radius: 100%;
  background: #75825c;
  transform: rotate(-30deg);
}

.shop-plant::before {
  left: -20px;
  top: 14px;
}

.shop-plant::after {
  left: 0;
  top: 30px;
  transform: rotate(30deg);
}

.shop-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 7px;
  margin-top: 10px;
}

.shop-grid span {
  height: 73px;
  border-radius: 4px;
  background: linear-gradient(145deg, #e7e3d9, #b6b09f);
}

.shop-grid span:nth-child(2) { background: linear-gradient(145deg, #f1dfc2, #ae7c56); }
.shop-grid span:nth-child(3) { background: linear-gradient(145deg, #bdcaa2, #697555); }
.shop-grid span:nth-child(4) { background: linear-gradient(145deg, #d6c5ae, #8b6b4e); }
.shop-grid span:nth-child(5) { background: linear-gradient(145deg, #d4dfcf, #809379); }
.shop-grid span:nth-child(6) { background: linear-gradient(145deg, #ded4c8, #9b8570); }

.phone {
  position: absolute;
  z-index: 6;
  width: 150px;
  height: 305px;
  left: 56px;
  bottom: 0;
  padding: 20px 12px 13px;
  overflow: hidden;
  border: 7px solid #292f35;
  border-radius: 28px;
  color: var(--navy);
  background: white;
  box-shadow: 0 24px 35px rgba(15, 24, 32, 0.26);
  transform: rotate(-2deg);
}

.phone-speaker {
  position: absolute;
  left: 56px;
  top: 7px;
  width: 29px;
  height: 3px;
  border-radius: 5px;
  background: #20252a;
}

.phone strong {
  display: block;
  margin: 31px 0 13px;
  font-size: 17px;
  line-height: 1.05;
}

.phone strong em {
  color: var(--lime-dark);
  font-style: normal;
}

.phone-art {
  height: 125px;
  margin: 0 -12px 12px;
  background:
    linear-gradient(148deg, transparent 0 48%, var(--navy) 49% 100%),
    linear-gradient(33deg, #e8e1d2 0 56%, var(--lime) 57% 100%);
}

.phone-button {
  display: block;
  padding: 8px;
  color: white;
  background: var(--navy);
  text-align: center;
  font-size: 7px;
}

.scene-badge {
  position: absolute;
  z-index: 8;
  padding: 10px 14px;
  border: 1px solid #e4e6e9;
  border-radius: 9px;
  color: var(--navy);
  background: white;
  box-shadow: 0 12px 25px rgba(8, 29, 53, 0.13);
  font-size: 10px;
  font-weight: 800;
}

.badge-web {
  right: 10px;
  top: 26px;
}

.badge-shop {
  right: 178px;
  bottom: 12px;
}

.hero-note {
  position: relative;
  z-index: 2;
  width: min(1320px, calc(100% - 56px));
  margin: 0 auto;
  padding: 22px 0 28px;
  border-top: 1px solid rgba(113, 102, 232, 0.18);
  color: var(--navy);
  background: rgba(255, 255, 255, 0.5);
  text-align: center;
  font-size: 16px;
  font-weight: 700;
}

.hero-note::before,
.hero-note::after {
  content: "✦";
  margin: 0 18px;
  color: var(--violet);
}

.hero-note::after {
  color: var(--teal);
}

.service-strip,
.benefits,
.process,
.faq {
  padding: 95px max(28px, calc((100% - 1380px) / 2));
}

.section-intro {
  max-width: 650px;
}

.section-intro.centered {
  margin: 0 auto;
  text-align: center;
}

.section-intro.centered .eyebrow {
  justify-content: center;
}

.section-intro h2,
.projects-copy h2,
.contact h2 {
  margin: 0;
  color: var(--navy);
  font-size: clamp(38px, 4.2vw, 60px);
  line-height: 1.03;
  letter-spacing: -2.7px;
}

.section-intro > p:last-child {
  margin: 18px 0 0;
  color: var(--muted);
  font-size: 16px;
  line-height: 1.65;
}

.service-icons {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  margin-top: 58px;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.service-icon-card {
  min-height: 360px;
  padding: 40px 28px 30px;
  border-left: 1px solid var(--line);
  text-align: center;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.service-icon-card:last-child {
  border-right: 1px solid var(--line);
}

.service-icon-card:hover {
  position: relative;
  z-index: 2;
  transform: translateY(-5px);
  background: white;
  box-shadow: 0 18px 45px rgba(8, 29, 53, 0.1);
}

.illustrated-icon {
  position: relative;
  width: 92px;
  height: 92px;
  display: grid;
  place-items: center;
  margin: 0 auto 24px;
  border: 3px solid currentColor;
  border-radius: 47% 53% 56% 44% / 48% 43% 57% 52%;
  transform: rotate(-3deg);
}

.illustrated-icon::before {
  content: "";
  position: absolute;
  inset: 11px;
  border-radius: 50%;
  background: currentColor;
  opacity: 0.16;
}

.illustrated-icon svg {
  position: relative;
  width: 48px;
  height: 48px;
  transform: rotate(3deg);
}

.illustrated-icon.violet { color: var(--violet); }
.illustrated-icon.teal { color: var(--teal); }
.illustrated-icon.coral { color: var(--slate); }
.illustrated-icon.yellow { color: var(--violet); }
.illustrated-icon.blue { color: var(--teal); }

.icon-spark {
  position: absolute;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: currentColor;
}

.spark-a {
  right: -15px;
  top: 5px;
}

.spark-b {
  left: -10px;
  bottom: 8px;
  width: 4px;
  height: 4px;
}

.service-icon-card h3 {
  margin: 0;
  color: #303945;
  font-size: 18px;
}

.service-icon-card p {
  min-height: 70px;
  margin: 13px 0 0;
  color: #717984;
  font-size: 14px;
  line-height: 1.55;
}

.service-icon-card a {
  color: var(--navy);
  font-size: 12px;
  font-weight: 800;
}

.service-icon-card a span {
  color: var(--violet);
}

.projects {
  padding: 105px 0;
  overflow: hidden;
  color: white;
  background:
    radial-gradient(circle at 80% 25%, rgba(198, 255, 53, 0.14), transparent 24%),
    var(--navy);
}

.projects-inner {
  display: grid;
  grid-template-columns: 0.82fr 1.18fr;
  align-items: center;
  gap: 90px;
}

.projects-copy h2 {
  color: white;
}

.projects-copy h2 em {
  color: var(--lime);
  font-style: normal;
}

.projects-copy > p:not(.eyebrow) {
  margin: 24px 0;
  color: #b6c1cd;
  font-size: 17px;
  line-height: 1.7;
}

.projects-copy ul {
  display: grid;
  gap: 16px;
  margin: 30px 0 34px;
  padding: 0;
  list-style: none;
}

.projects-copy li {
  display: flex;
  align-items: center;
  gap: 14px;
  color: #aebbc7;
  font-size: 14px;
}

.projects-copy li b {
  color: white;
}

.projects-copy li svg {
  width: 24px;
  height: 24px;
  color: var(--lime);
  flex: 0 0 auto;
}

.projects-copy li > b {
  width: 24px;
  height: 24px;
  display: grid;
  place-items: center;
  flex: 0 0 auto;
  color: var(--lime);
  font-size: 20px;
}

.button-light {
  color: var(--navy);
  background: white;
}

.project-board {
  position: relative;
  min-height: 540px;
}

.project-board::before {
  content: "";
  position: absolute;
  width: 480px;
  height: 480px;
  left: 100px;
  top: 20px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 50%;
}

.project-card {
  position: absolute;
  overflow: hidden;
  color: var(--navy);
  background: #fbfaf5;
  border: 8px solid #fff;
  box-shadow: 0 30px 50px rgba(0, 0, 0, 0.28);
}

.project-a {
  width: 510px;
  height: 380px;
  left: 20px;
  top: 20px;
  transform: rotate(-2deg);
}

.project-b {
  width: 370px;
  height: 278px;
  right: 0;
  bottom: 10px;
  z-index: 3;
  transform: rotate(3deg);
}

.project-real-image {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  object-position: center;
}

.project-nav {
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 18px;
  font-size: 7px;
}

.project-nav b {
  letter-spacing: 2px;
  font-size: 10px;
}

.project-image {
  position: relative;
  overflow: hidden;
}

.architecture {
  height: 255px;
  background:
    linear-gradient(135deg, transparent 0 35%, rgba(255, 255, 255, 0.17) 36% 38%, transparent 39%),
    linear-gradient(155deg, #e4ddd0 0 46%, #284963 47% 74%, var(--lime) 75% 100%);
}

.architecture i {
  position: absolute;
  bottom: 0;
  width: 105px;
  height: 170px;
  background: rgba(255, 255, 255, 0.18);
  border-left: 2px solid rgba(255, 255, 255, 0.38);
}

.architecture i:nth-child(1) { left: 175px; transform: skew(-16deg); }
.architecture i:nth-child(2) { left: 295px; height: 215px; transform: skew(8deg); }
.architecture i:nth-child(3) { right: 5px; height: 130px; transform: skew(-8deg); }

.organic {
  height: 240px;
  background:
    radial-gradient(circle at 50% 45%, #eee1c9 0 48px, transparent 50px),
    linear-gradient(145deg, #a3b887 0 35%, #e3d8c6 36% 68%, #2e5647 69%);
}

.organic i {
  position: absolute;
  left: 97px;
  bottom: 40px;
  width: 70px;
  height: 85px;
  border-radius: 45% 45% 50% 50%;
  background: #a68d6d;
}

.organic i:nth-child(2) {
  left: 130px;
  bottom: 104px;
  width: 8px;
  height: 70px;
  border-radius: 0;
  background: #506d4d;
  transform: rotate(8deg);
}

.project-meta {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 18px;
  font-size: 8px;
}

.project-meta b {
  font-size: 15px;
}

.project-sticker {
  position: absolute;
  z-index: 5;
  left: 380px;
  bottom: 42px;
  padding: 11px 15px;
  border-radius: 8px;
  color: white;
  background: var(--violet);
  color: var(--navy);
  box-shadow: 0 12px 25px rgba(0, 0, 0, 0.2);
  font-size: 10px;
  font-weight: 800;
}

.benefits {
  background: #fbfbfc;
}

.benefits .section-intro {
  max-width: 720px;
}

.benefit-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
  margin-top: 52px;
}

.benefit-grid article {
  position: relative;
  min-height: 320px;
  padding: 30px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 13px;
  background: white;
}

.benefit-number {
  position: absolute;
  right: 20px;
  top: 18px;
  color: #dce1e6;
  font-size: 34px;
  font-weight: 800;
}

.benefit-icon {
  width: 60px;
  height: 60px;
  display: grid;
  place-items: center;
  margin: 45px 0 35px;
  border-radius: 50%;
}

.benefit-icon svg {
  width: 31px;
  height: 31px;
}

.benefit-icon {
  font-size: 28px;
  font-weight: 700;
}

.benefit-1 { color: var(--violet); background: #eeecff; }
.benefit-2 { color: var(--teal); background: #e2f8f7; }
.benefit-3 { color: var(--slate); background: #edf0f4; }
.benefit-4 { color: var(--violet); background: #f1efff; }

.benefit-grid h3 {
  margin: 0 0 12px;
  color: var(--navy);
  font-size: 20px;
}

.benefit-grid p {
  margin: 0;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.6;
}

.process {
  border-top: 1px solid var(--line);
  background: white;
}

.steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  margin-top: 60px;
}

.steps article {
  position: relative;
  padding-right: 32px;
}

.steps article > b {
  width: 48px;
  height: 48px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  color: var(--navy);
  background: var(--violet);
  font-size: 14px;
}

.steps article:nth-child(2) > b {
  background: var(--teal);
}

.steps article:nth-child(3) > b {
  color: white;
  background: var(--slate);
}

.steps article:nth-child(4) > b {
  background: var(--violet);
}

.steps article > span {
  position: absolute;
  left: 57px;
  right: 8px;
  top: 23px;
  height: 1px;
  border-top: 1px dashed #c6cdd5;
}

.steps h3 {
  margin: 24px 0 10px;
  color: var(--navy);
  font-size: 20px;
}

.steps p {
  max-width: 270px;
  margin: 0;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.6;
}

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

.contact-inner {
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  gap: 60px;
}

.contact h2 {
  color: white;
}

.contact-inner > div:first-child > p:last-child {
  max-width: 720px;
  margin: 20px 0 0;
  color: #b3bfcb;
  font-size: 16px;
  line-height: 1.65;
}

.contact-actions {
  display: grid;
  justify-items: center;
  gap: 12px;
}

.button-lime {
  color: white;
  background: var(--violet);
  box-shadow: 0 14px 32px rgba(113, 102, 232, 0.22);
}

.contact-actions > span {
  color: #93a3b2;
  font-size: 12px;
}

.faq {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: 85px;
}

.faq-list details {
  border-top: 1px solid #d5d9de;
}

.faq-list details:last-child {
  border-bottom: 1px solid #d5d9de;
}

.faq-list summary {
  min-height: 70px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  color: var(--navy);
  font-size: 17px;
  font-weight: 700;
  list-style: none;
  cursor: pointer;
}

.faq-list summary::-webkit-details-marker {
  display: none;
}

.faq-list summary span {
  color: var(--violet);
  font-size: 27px;
  font-weight: 400;
  transition: transform 0.2s ease;
}

.faq-list details[open] summary span {
  transform: rotate(45deg);
}

.faq-list p {
  margin: -3px 50px 22px 0;
  color: var(--muted);
  line-height: 1.65;
}

footer {
  padding: 38px 0;
  border-top: 1px solid #1f3650;
  color: #93a3b2;
  background: #05172b;
}

.footer-inner {
  display: grid;
  grid-template-columns: auto 1fr auto auto;
  align-items: center;
  gap: 45px;
  font-size: 12px;
}

.footer-brand {
  color: white;
}

.footer-links {
  display: flex;
  gap: 24px;
}

.footer-links a:hover {
  color: white;
}

.whatsapp {
  position: fixed;
  z-index: 40;
  right: 22px;
  bottom: 22px;
  width: 54px;
  height: 54px;
  display: grid;
  place-items: center;
  border: 4px solid white;
  border-radius: 50%;
  color: white;
  background: #25d366;
  box-shadow: 0 10px 28px rgba(12, 42, 23, 0.28);
}

.whatsapp svg {
  width: 24px;
  height: 24px;
}

@media (max-width: 1180px) {
  nav {
    display: none;
  }

  .header-cta {
    margin-left: auto;
  }

  .hero-inner {
    grid-template-columns: 0.8fr 1.2fr;
  }

  .desktop {
    right: -40px;
  }

  .phone {
    left: 5px;
  }

  .service-icons {
    grid-template-columns: repeat(3, 1fr);
  }

  .service-icon-card:nth-child(4),
  .service-icon-card:nth-child(5) {
    border-top: 1px solid var(--line);
  }

  .projects-inner {
    gap: 45px;
  }

  .project-a {
    width: 440px;
  }

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

@media (max-width: 900px) {
  .hero-inner {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .hero-copy {
    max-width: 700px;
    padding-top: 30px;
  }

  .device-scene {
    width: min(700px, 100%);
    margin: 0 auto;
  }

  .projects-inner {
    grid-template-columns: 1fr;
  }

  .projects-copy {
    max-width: 700px;
  }

  .project-board {
    width: min(700px, 100%);
    margin: 0 auto;
  }

  .steps {
    grid-template-columns: repeat(2, 1fr);
    gap: 36px 16px;
  }

  .contact-inner {
    grid-template-columns: 1fr;
  }

  .contact-actions {
    justify-items: start;
  }

  .faq {
    grid-template-columns: 1fr;
    gap: 45px;
  }

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

@media (max-width: 660px) {
  .header-inner,
  .hero-inner,
  .projects-inner,
  .contact-inner,
  .footer-inner {
    width: min(100% - 36px, 1420px);
  }

  .site-header {
    height: 68px;
  }

  .brand {
    font-size: 19px;
  }

  .brand-symbol {
    width: 34px;
    height: 34px;
    font-size: 19px;
  }

  .header-cta {
    padding: 10px 12px;
    font-size: 0;
  }

  .header-cta span {
    font-size: 18px;
  }

  .hero-inner {
    min-height: auto;
    padding: 55px 0 5px;
  }

  .hero h1 {
    font-size: 45px;
    line-height: 1.02;
    letter-spacing: -2.4px;
  }

  .hero-lead {
    font-size: 16px;
  }

  .hero-actions {
    align-items: stretch;
    flex-direction: column;
  }

  .button {
    width: 100%;
  }

  .hero-trust {
    display: grid;
    gap: 9px;
  }

  .device-scene {
    height: 400px;
    margin-top: 20px;
    transform-origin: left top;
  }

  .decor-one {
    width: 390px;
    height: 300px;
    left: 15px;
  }

  .decor-two {
    width: 200px;
  }

  .desktop {
    width: 385px;
    height: 285px;
    right: -42px;
    top: 52px;
    transform: scale(0.78);
    transform-origin: right top;
  }

  .tablet {
    width: 170px;
    height: 245px;
    right: -8px;
    bottom: 10px;
    padding: 10px;
  }

  .shop-cover {
    height: 72px;
  }

  .shop-grid span {
    height: 45px;
  }

  .phone {
    width: 107px;
    height: 225px;
    left: 0;
    bottom: 8px;
    padding: 16px 9px 10px;
  }

  .phone-speaker {
    left: 39px;
  }

  .phone strong {
    margin-top: 20px;
    font-size: 12px;
  }

  .phone-art {
    height: 92px;
    margin-left: -9px;
    margin-right: -9px;
  }

  .scene-badge {
    display: none;
  }

  .hero-note {
    width: calc(100% - 36px);
    font-size: 13px;
    line-height: 1.5;
  }

  .service-strip,
  .benefits,
  .process,
  .faq {
    padding: 72px 18px;
  }

  .section-intro h2,
  .projects-copy h2,
  .contact h2 {
    font-size: 39px;
    letter-spacing: -1.8px;
  }

  .service-icons {
    grid-template-columns: 1fr;
    margin-top: 40px;
  }

  .service-icon-card {
    min-height: 0;
    border-right: 1px solid var(--line);
    border-bottom: 1px solid var(--line);
  }

  .service-icon-card p {
    min-height: 0;
  }

  .projects {
    padding: 75px 0;
  }

  .project-board {
    min-height: 405px;
    margin-top: 20px;
  }

  .project-board::before {
    width: 320px;
    height: 320px;
    left: 25px;
  }

  .project-a {
    width: 345px;
    height: 270px;
    left: -7px;
  }

  .architecture {
    height: 170px;
  }

  .project-b {
    width: 245px;
    height: 185px;
    right: -2px;
  }

  .organic {
    height: 160px;
  }

  .project-meta b {
    font-size: 11px;
  }

  .project-sticker {
    left: 120px;
    bottom: 12px;
  }

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

  .benefit-grid article {
    min-height: 270px;
  }

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

  .steps article > span {
    display: none;
  }

  .contact {
    padding: 70px 0;
  }

  .footer-inner {
    grid-template-columns: 1fr;
    justify-items: center;
    text-align: center;
    gap: 23px;
  }

  .footer-links {
    flex-wrap: wrap;
    justify-content: center;
  }
}

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

  .button,
  .service-icon-card,
  nav a::after {
    transition: none;
  }
}
