:root {
  --bg: #ffffff;
  --bg-2: #f7f8fb;
  --panel: rgba(255, 255, 255, .92);
  --panel-2: #fff7d8;
  --line: rgba(18, 24, 38, .12);
  --text: #121722;
  --soft: #5f6675;
  --muted: #8a91a0;
  --yellow: #ffc400;
  --yellow-2: #ffe27a;
  --gold: #d49a00;
  --charcoal: #171b24;
  --white: #ffffff;
  --whatsapp: #25d366;
  --shadow: 0 24px 70px rgba(18, 24, 38, .12);
  --radius: 8px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: Manrope, Arial, sans-serif;
  color: var(--text);
  background:
    radial-gradient(circle at 78% 4%, rgba(255, 196, 0, .28), transparent 24%),
    radial-gradient(circle at 8% 34%, rgba(23, 27, 36, .06), transparent 24%),
    linear-gradient(180deg, #ffffff 0%, #f7f8fb 52%, #ffffff 100%);
  letter-spacing: 0;
}

a { color: inherit; text-decoration: none; }
img { display: block; max-width: 100%; }

.site-shell {
  width: min(1220px, calc(100% - 36px));
  margin: 0 auto;
}

.topbar {
  position: fixed;
  left: 50%;
  top: 18px;
  z-index: 50;
  width: min(1220px, calc(100% - 36px));
  transform: translateX(-50%);
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 24px;
  padding: 12px 16px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(255, 255, 255, .84);
  box-shadow: 0 18px 54px rgba(18,24,38,.11), inset 0 1px 0 rgba(255,255,255,.85);
  backdrop-filter: blur(18px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  min-width: max-content;
  color: var(--charcoal);
  font-size: 18px;
  font-weight: 900;
}

.brand-logo img {
  width: auto;
  height: 46px;
  max-width: 220px;
  object-fit: contain;
}

.footer-logo img {
  height: 54px;
  max-width: 260px;
}

.brand-mark {
  width: 30px;
  height: 30px;
  display: grid;
  place-items: center;
  border-radius: 7px;
  background: linear-gradient(135deg, var(--yellow), var(--gold));
  box-shadow: 0 0 28px rgba(255, 196, 0, .45);
  color: #17120a;
  font-size: 12px;
  font-weight: 900;
}

.nav {
  display: flex;
  align-items: center;
  gap: clamp(18px, 5vw, 76px);
  color: var(--soft);
  font-size: 15px;
  font-weight: 800;
}

.nav a { transition: color .2s ease; }
.nav a:hover, .nav .active { color: var(--charcoal); }

.nav-cta {
  justify-self: end;
  padding: 12px 18px;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--yellow), var(--yellow-2));
  color: #181102;
  font-size: 14px;
  font-weight: 900;
  box-shadow: 0 12px 28px rgba(255, 196, 0, .32);
}

.hero {
  position: relative;
  min-height: 760px;
  padding: 122px 0 80px;
  overflow: hidden;
}

.hero::after, .page-hero::after {
  content: "";
  position: absolute;
  inset: auto -80px -160px auto;
  width: 560px;
  height: 560px;
  border: 1px solid rgba(212,154,0,.18);
  border-radius: 90px;
  transform: rotate(36deg);
  pointer-events: none;
}

.hero-grid {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: minmax(0, .9fr) minmax(460px, 1.1fr);
  gap: 38px;
  align-items: center;
}

.hero-copy { padding-top: 40px; }

h1, h2, h3, p { margin-top: 0; }
h1 {
  max-width: 620px;
  margin-bottom: 30px;
  color: var(--charcoal);
  font-size: clamp(48px, 6vw, 88px);
  line-height: 1.03;
  letter-spacing: 0;
}

.highlight {
  display: inline-block;
  padding: 0 11px 4px;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--yellow), var(--yellow-2));
  box-shadow: 0 12px 34px rgba(255,196,0,.28);
  color: #181102;
}

.hero-lead, .page-lead {
  max-width: 590px;
  color: var(--soft);
  font-size: clamp(17px, 2vw, 22px);
  line-height: 1.62;
}

.actions {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 30px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 20px;
  border: 1px solid transparent;
  border-radius: 3px;
  font-size: 13px;
  font-weight: 900;
  text-transform: uppercase;
  transition: transform .2s ease, box-shadow .2s ease;
}

.btn:hover { transform: translateY(-2px); }
.btn-primary {
  background: var(--yellow);
  color: #181102;
  box-shadow: 0 16px 34px rgba(255,196,0,.32);
}
.btn-ghost {
  border-color: var(--line);
  color: var(--charcoal);
  background: var(--white);
}

.proof {
  display: inline-flex;
  align-items: center;
  min-height: 48px;
  padding: 0 16px;
  border: 1px solid var(--line);
  color: var(--charcoal);
  background: var(--white);
  font-size: 12px;
  font-weight: 900;
  box-shadow: 0 10px 28px rgba(18,24,38,.08);
}

.visual {
  position: relative;
  min-height: 560px;
}

.hero-image-wrap {
  position: absolute;
  inset: 30px 0 0 30px;
  overflow: hidden;
  border: 1px solid rgba(18,24,38,.1);
  border-radius: 80px 12px 80px 12px;
  clip-path: polygon(18% 0, 92% 0, 100% 12%, 100% 86%, 88% 100%, 7% 100%, 0 91%, 0 15%);
  box-shadow: var(--shadow);
}

.hero-image-wrap::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(255,255,255,.62), transparent 44%), linear-gradient(180deg, transparent 58%, rgba(255,255,255,.28));
}

.hero-image-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center right;
}

.float-card {
  position: absolute;
  z-index: 3;
  display: grid;
  place-items: center;
  width: 104px;
  height: 104px;
  border: 1px solid rgba(18,24,38,.1);
  border-radius: 14px;
  background: rgba(255,255,255,.9);
  box-shadow: 0 18px 50px rgba(18,24,38,.16), inset 0 1px 0 rgba(255,255,255,.9);
  color: var(--charcoal);
  font-size: 30px;
  font-weight: 900;
}

.float-card.small { width: 92px; height: 92px; font-size: 38px; }
.float-card.one { left: 0; top: 118px; }
.float-card.two { right: 34px; top: 210px; color: var(--gold); }
.float-card.three { left: 72px; bottom: 52px; color: var(--yellow); background: var(--charcoal); }

.caption {
  margin-top: 54px;
  color: var(--muted);
  font-size: 15px;
  font-weight: 800;
  letter-spacing: 5px;
  text-transform: uppercase;
}

.section {
  position: relative;
  padding: 104px 0;
}

.panel {
  border: 1px solid var(--line);
  border-radius: 16px;
  background: var(--panel);
  box-shadow: var(--shadow);
}

.media-strip {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 28px;
  padding: 48px;
}

.media-tile {
  min-height: 170px;
  padding: 26px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: linear-gradient(180deg, #ffffff, #fffaf0);
}

.media-tile strong {
  display: block;
  margin-bottom: 14px;
  color: var(--charcoal);
  font-size: 22px;
}

.media-tile p, .text-card p, .contact-card p {
  color: var(--soft);
  line-height: 1.7;
}

.service-strip {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 22px;
  padding: clamp(28px, 5vw, 46px);
  border: 1px solid var(--line);
  border-radius: 18px;
  background:
    linear-gradient(180deg, rgba(255,255,255,.94), rgba(255,250,240,.9)),
    radial-gradient(circle at 88% 4%, rgba(255,196,0,.18), transparent 28%);
  box-shadow: var(--shadow);
}

.service-strip .media-tile {
  min-height: 286px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 28px;
  border: 1px solid rgba(18,24,38,.1);
  border-radius: var(--radius);
  background: rgba(255,255,255,.72);
  box-shadow: 0 16px 42px rgba(18,24,38,.07);
}

.service-strip .media-tile:first-child {
  background: linear-gradient(180deg, #ffffff, #fff4c6);
}

.service-icon {
  width: 46px;
  height: 46px;
  display: grid;
  place-items: center;
  margin-bottom: auto;
  border-radius: 4px;
  background: linear-gradient(135deg, var(--yellow), var(--gold));
  color: #181102;
  font-size: 24px;
  font-weight: 900;
  box-shadow: 0 12px 26px rgba(255,196,0,.28);
}

.service-icon svg {
  width: 25px;
  height: 25px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.service-strip .media-tile strong {
  max-width: 250px;
  margin: 76px 0 18px;
  color: var(--charcoal);
  font-size: clamp(25px, 2.4vw, 32px);
  line-height: .92;
  letter-spacing: -1px;
  text-transform: uppercase;
}

.service-strip .media-tile p {
  max-width: 300px;
  margin: 0;
  color: var(--soft);
  font-size: 15px;
  line-height: 1.45;
}

.section-head {
  display: grid;
  grid-template-columns: minmax(0, .72fr) minmax(280px, .42fr);
  gap: 48px;
  align-items: end;
  margin-bottom: 52px;
}

.kicker {
  color: var(--gold);
  display: inline-block;
  margin-bottom: 16px;
  font-size: 14px;
  font-weight: 900;
  letter-spacing: 4px;
  text-transform: uppercase;
}

h2 {
  margin-bottom: 24px;
  color: var(--charcoal);
  font-size: clamp(40px, 4.8vw, 68px);
  line-height: 1.02;
  letter-spacing: 0;
}

.muted {
  color: var(--soft);
  font-size: 17px;
  line-height: 1.82;
}

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

.text-card, .contact-card {
  min-height: 220px;
  padding: 32px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: 0 14px 40px rgba(18,24,38,.07);
}

.num {
  display: inline-grid;
  place-items: center;
  width: 42px;
  height: 42px;
  margin-bottom: 26px;
  border-radius: 12px;
  background: linear-gradient(135deg, var(--yellow), var(--gold));
  color: #181102;
  font-weight: 900;
}

.text-card h3, .contact-card h3 {
  margin-bottom: 16px;
  color: var(--charcoal);
  font-size: 24px;
  line-height: 1.18;
}

.use-cases {
  grid-template-columns: 1fr;
  gap: 18px;
}

.icon-num svg {
  width: 23px;
  height: 23px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.page-hero {
  position: relative;
  padding: 152px 0 70px;
  overflow: hidden;
}

.page-grid {
  display: grid;
  grid-template-columns: minmax(0, .62fr) minmax(320px, .38fr);
  gap: 36px;
  align-items: end;
}

.feature-box {
  padding: 34px;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: linear-gradient(180deg, #ffffff, #fff7d8);
  box-shadow: var(--shadow);
}

.feature-box strong {
  display: block;
  margin-bottom: 12px;
  color: var(--gold);
  font-size: 34px;
}

.about-hero-visual {
  position: relative;
  min-height: 520px;
  align-self: stretch;
}

.about-hero-visual img {
  width: 100%;
  height: 100%;
  min-height: 520px;
  object-fit: cover;
  border: 1px solid var(--line);
  border-radius: 34px 8px 34px 8px;
  box-shadow: var(--shadow);
}

.about-hero-visual::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 34px 8px 34px 8px;
  background: linear-gradient(180deg, transparent 48%, rgba(0,0,0,.28));
  pointer-events: none;
}

.visual-badge {
  position: absolute;
  left: 28px;
  right: 28px;
  bottom: 28px;
  z-index: 2;
  background: rgba(255,255,255,.9);
  backdrop-filter: blur(12px);
}

.contact-hero-visual img {
  object-position: center right;
}

.visual-badge strong {
  font-size: clamp(24px, 2.5vw, 34px);
  line-height: 1.15;
}

.split {
  display: grid;
  grid-template-columns: minmax(0, .48fr) minmax(0, .52fr);
  gap: 18px;
  align-items: stretch;
}

.image-panel {
  min-height: 430px;
  overflow: hidden;
  border-radius: 18px;
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
}

.image-panel img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.story-panel {
  padding: clamp(30px, 5vw, 54px);
}

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

.contact-card a { color: var(--charcoal); font-weight: 900; }

.contact-wide {
  max-width: 920px;
  margin: 0 auto;
}

.photo-grid {
  display: grid;
  grid-template-columns: 1.15fr .85fr;
  grid-auto-rows: 250px;
  gap: 18px;
}

.photo-card {
  position: relative;
  min-height: 250px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: var(--white);
  box-shadow: var(--shadow);
}

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

.photo-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.photo-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 38%, rgba(0,0,0,.66));
}

.photo-card div {
  position: absolute;
  left: 24px;
  right: 24px;
  bottom: 22px;
  z-index: 2;
  color: var(--white);
}

.photo-card span {
  display: inline-block;
  margin-bottom: 9px;
  color: var(--yellow-2);
  font-size: 13px;
  font-weight: 900;
  letter-spacing: 2px;
  text-transform: uppercase;
}

.photo-card h3 {
  max-width: 520px;
  margin: 0;
  color: var(--white);
  font-size: clamp(24px, 2.4vw, 36px);
  line-height: 1.08;
}

.form-look {
  display: grid;
  gap: 14px;
  padding: 30px;
}

.input {
  min-height: 50px;
  padding: 15px 16px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fbfcfe;
  color: var(--soft);
}

.footer {
  margin-top: 34px;
  padding: 58px 0 26px;
  color: var(--muted);
  background:
    linear-gradient(180deg, rgba(255,255,255,.94), rgba(255,247,216,.72)),
    radial-gradient(circle at 88% 12%, rgba(255,196,0,.25), transparent 24%);
  border-top: 1px solid var(--line);
  font-size: 13px;
}

.footer-grid {
  display: grid;
  grid-template-columns: minmax(260px, 1.4fr) repeat(3, minmax(150px, .7fr));
  gap: 34px;
  align-items: start;
}

.footer h3 {
  margin: 4px 0 16px;
  color: var(--charcoal);
  font-size: 15px;
}

.footer a,
.footer span {
  display: block;
  margin-bottom: 10px;
  color: var(--soft);
  font-weight: 700;
}

.footer a:hover { color: var(--charcoal); }

.footer-brand p {
  max-width: 390px;
  margin: 18px 0 0;
  color: var(--soft);
  line-height: 1.75;
  font-weight: 600;
}

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  flex-wrap: wrap;
  margin-top: 40px;
  padding-top: 22px;
  border-top: 1px solid var(--line);
}

.footer-bottom span {
  margin-bottom: 0;
  color: var(--muted);
  font-size: 13px;
}

.footer-bottom a {
  margin-bottom: 0;
  color: var(--charcoal);
  font-size: 13px;
  font-weight: 900;
}

.whatsapp {
  position: fixed;
  right: 22px;
  bottom: 22px;
  z-index: 60;
  width: 62px;
  height: 62px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: var(--whatsapp);
  color: var(--white);
  box-shadow: 0 16px 36px rgba(37, 211, 102, .36);
  transition: transform .2s ease;
}

.whatsapp::before {
  content: "1";
  position: absolute;
  left: -4px;
  top: 2px;
  width: 20px;
  height: 20px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: var(--white);
  color: #101010;
  font-size: 11px;
  font-weight: 900;
}

.whatsapp:hover { transform: translateY(-3px) scale(1.03); }
.whatsapp svg { width: 32px; height: 32px; fill: currentColor; }

@media (max-width: 960px) {
  .topbar {
    grid-template-columns: 1fr;
    border-radius: 18px;
    justify-items: center;
  }
  .nav {
    width: 100%;
    justify-content: center;
    gap: clamp(14px, 5vw, 34px);
    flex-wrap: wrap;
  }
  .nav-cta { justify-self: start; }
  .hero-grid, .page-grid, .split, .section-head { grid-template-columns: 1fr; }
  .visual { min-height: 500px; }
  .cards, .media-strip, .contact-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .photo-grid { grid-template-columns: 1fr; grid-auto-rows: 300px; }
  .photo-card.large { grid-row: span 1; }
  .service-strip { grid-template-columns: 1fr; gap: 0; }
  .service-strip .media-tile { min-height: 250px; }
  .footer-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}

@media (max-width: 640px) {
  .site-shell {
    width: min(100% - 28px, 1220px);
  }

  .topbar {
    position: absolute;
    top: 10px;
    width: calc(100% - 24px);
    gap: 12px;
    padding: 12px;
    border-radius: 18px;
  }

  .brand-logo img { height: 36px; max-width: 160px; }
  .footer-logo img { height: 46px; max-width: 210px; }

  .nav {
    gap: 8px;
    font-size: 13px;
  }

  .nav a {
    padding: 8px 7px;
  }

  .nav-cta {
    justify-self: center;
    padding: 11px 16px;
    font-size: 13px;
  }

  .hero { min-height: auto; padding: 198px 0 52px; }
  .hero-copy { padding-top: 0; }

  h1 {
    max-width: 100%;
    margin-bottom: 22px;
    font-size: clamp(38px, 13vw, 54px);
    line-height: 1.04;
  }

  h2 {
    margin-bottom: 18px;
    font-size: clamp(32px, 10vw, 44px);
    line-height: 1.06;
  }

  .hero-lead,
  .page-lead,
  .muted {
    font-size: 16px;
    line-height: 1.7;
  }

  .actions {
    align-items: stretch;
    gap: 10px;
  }

  .btn,
  .proof {
    width: 100%;
    min-height: 50px;
    text-align: center;
  }

  .caption {
    margin-top: 34px;
    font-size: 12px;
    letter-spacing: 3px;
    line-height: 1.5;
  }

  .visual { min-height: 350px; }
  .hero-image-wrap {
    inset: 10px 0 0;
    border-radius: 24px 8px;
    clip-path: none;
  }
  .float-card { width: 78px; height: 78px; font-size: 22px; }
  .float-card.small { width: 70px; height: 70px; font-size: 28px; }
  .float-card.one { left: 12px; top: 34px; }
  .float-card.two { right: 12px; top: 112px; }
  .float-card.three { left: 24px; bottom: 28px; }

  .cards, .media-strip, .contact-grid { grid-template-columns: 1fr; }
  .photo-grid { grid-auto-rows: 260px; }
  .footer-grid { grid-template-columns: 1fr; }

  .service-strip {
    width: 100%;
    padding: 14px;
    border-radius: 14px;
  }

  .service-strip .media-tile {
    min-height: 220px;
    padding: 22px;
  }

  .service-strip .media-tile strong {
    margin-top: 48px;
    font-size: 27px;
    letter-spacing: 0;
  }

  .media-strip { padding: 24px; }
  .section { padding: 58px 0; }
  .section-head { gap: 18px; margin-bottom: 30px; }
  .kicker { font-size: 12px; letter-spacing: 3px; margin-bottom: 12px; }

  .text-card,
  .contact-card,
  .story-panel,
  .feature-box {
    padding: 24px;
  }

  .text-card h3,
  .contact-card h3 {
    font-size: 21px;
  }

  .page-hero { padding: 198px 0 52px; }
  .about-hero-visual,
  .about-hero-visual img { min-height: 360px; }
  .visual-badge { left: 18px; right: 18px; bottom: 18px; }

  .image-panel { min-height: 320px; }

  .photo-card div {
    left: 18px;
    right: 18px;
    bottom: 18px;
  }

  .photo-card h3 {
    font-size: 24px;
  }

  .footer {
    padding: 42px 0 22px;
  }

  .footer-bottom {
    align-items: flex-start;
    margin-top: 26px;
  }

  .whatsapp { width: 56px; height: 56px; right: 16px; bottom: 16px; }
}

@media (max-width: 390px) {
  .site-shell {
    width: min(100% - 22px, 1220px);
  }

  .topbar {
    width: calc(100% - 18px);
  }

  .brand-logo img {
    height: 32px;
    max-width: 145px;
  }

  .nav {
    font-size: 12px;
    gap: 4px;
  }

  .nav a {
    padding: 7px 5px;
  }

  .nav-cta {
    width: 100%;
    text-align: center;
  }

  h1 {
    font-size: 36px;
  }

  h2 {
    font-size: 30px;
  }

  .hero,
  .page-hero {
    padding-top: 190px;
  }

  .visual {
    min-height: 300px;
  }

  .float-card {
    width: 64px;
    height: 64px;
    font-size: 18px;
  }

  .float-card.small {
    width: 58px;
    height: 58px;
    font-size: 24px;
  }
}
