:root {
  --ink: #101019;
  --cyan: #189bad;
  --cyan-deep: #087788;
  --apricot: #fcd49e;
  --paper: #f8f7f3;
  --white: #ffffff;
  --muted: #6e7279;
  --line: rgba(16, 16, 25, 0.12);
  --shadow: 0 24px 70px rgba(16, 16, 25, 0.14);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: "Manrope", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--ink);
  background: var(--paper);
  -webkit-font-smoothing: antialiased;
}
a { color: inherit; text-decoration: none; }
img { display: block; max-width: 100%; }
button, a { -webkit-tap-highlight-color: transparent; }

.site-header {
  position: fixed;
  z-index: 50;
  top: 18px;
  left: 50%;
  transform: translateX(-50%);
  width: min(1180px, calc(100% - 32px));
  height: 68px;
  padding: 0 22px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border: 1px solid rgba(255,255,255,.14);
  border-radius: 22px;
  background: rgba(16,16,25,.78);
  color: #fff;
  backdrop-filter: blur(18px);
  box-shadow: 0 12px 40px rgba(0,0,0,.18);
}
.brand { display: flex; align-items: center; gap: 12px; font-weight: 800; letter-spacing: -.02em; }
.brand-mark {
  width: 38px; height: 38px; display: grid; place-items: center;
  border-radius: 12px; background: var(--cyan); color: #fff; font-size: 13px; letter-spacing: .08em;
}
.brand-name { font-size: 14px; }
.main-nav { display: flex; gap: 8px; align-items: center; }
.main-nav a { padding: 11px 14px; border-radius: 12px; font-size: 13px; color: rgba(255,255,255,.8); transition: .2s ease; }
.main-nav a:hover { background: rgba(255,255,255,.08); color: #fff; }
.menu-toggle { display: none; background: transparent; border: 0; width: 42px; height: 42px; border-radius: 12px; }
.menu-toggle span { display: block; width: 20px; height: 2px; margin: 5px auto; background: white; }

.hero {
  position: relative;
  min-height: 780px;
  overflow: hidden;
  padding: 156px max(32px, calc((100vw - 1180px)/2)) 90px;
  display: grid;
  grid-template-columns: 1.05fr .95fr;
  gap: 70px;
  align-items: center;
  background: var(--ink);
  color: #fff;
}
.hero-grid {
  position: absolute; inset: 0; opacity: .15;
  background-image: linear-gradient(rgba(255,255,255,.08) 1px, transparent 1px), linear-gradient(90deg, rgba(255,255,255,.08) 1px, transparent 1px);
  background-size: 70px 70px;
  mask-image: linear-gradient(to bottom, rgba(0,0,0,.7), transparent 80%);
}
.hero-orbit { position: absolute; border-radius: 999px; pointer-events: none; }
.orbit-one { width: 640px; height: 640px; right: -220px; top: -160px; border: 105px solid rgba(24,155,173,.9); }
.orbit-two { width: 460px; height: 460px; right: 60px; bottom: -310px; border: 78px solid var(--apricot); opacity: .9; }
.hero-copy, .hero-visual { position: relative; z-index: 2; }
.eyebrow { display: inline-flex; align-items: center; gap: 10px; font-size: 12px; font-weight: 700; letter-spacing: .16em; text-transform: uppercase; color: rgba(255,255,255,.7); }
.eyebrow i { width: 26px; height: 2px; background: var(--apricot); border-radius: 99px; }
.eyebrow.dark { color: var(--muted); }
.eyebrow.dark i { background: var(--cyan); }
.hero h1 {
  max-width: 760px;
  margin: 22px 0 24px;
  font-size: clamp(48px, 6.2vw, 88px);
  line-height: .98;
  letter-spacing: -.055em;
  font-weight: 800;
}
.hero h1 em { color: var(--apricot); font-style: normal; }
.hero-copy > p { max-width: 650px; margin: 0; color: rgba(255,255,255,.68); font-size: 17px; line-height: 1.8; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 34px; }
.button { display: inline-flex; align-items: center; justify-content: center; gap: 12px; min-height: 54px; padding: 0 20px; border-radius: 16px; font-weight: 800; font-size: 14px; transition: transform .2s ease, background .2s ease; }
.button:hover { transform: translateY(-2px); }
.button-primary { background: var(--cyan); color: #fff; box-shadow: 0 12px 34px rgba(24,155,173,.28); }
.button-primary:hover { background: #1aabba; }
.button-ghost { border: 1px solid rgba(255,255,255,.18); color: #fff; }
.button-ghost:hover { background: rgba(255,255,255,.07); }
.quick-contact { margin-top: 25px; display: flex; flex-wrap: wrap; gap: 10px; color: rgba(255,255,255,.52); font-size: 12px; }
.quick-contact .dot { color: var(--apricot); }
.hero-visual { min-height: 520px; display: grid; place-items: center; }
.logo-card {
  position: relative;
  width: min(470px, 100%);
  aspect-ratio: 1;
  display: grid;
  place-items: center;
  padding: 34px;
  border-radius: 54px;
  background: rgba(255,255,255,.98);
  box-shadow: 0 40px 100px rgba(0,0,0,.38);
  transform: rotate(2deg);
}
.logo-card::before { content: ""; position: absolute; inset: 12px; border: 1px solid rgba(16,16,25,.08); border-radius: 44px; }
.logo-card img { width: 90%; position: relative; z-index: 2; }
.logo-halo { position: absolute; width: 110%; height: 110%; border-radius: 60px; background: linear-gradient(145deg, rgba(24,155,173,.5), rgba(252,212,158,.32)); filter: blur(42px); opacity: .6; z-index: -1; }
.floating-note { position: absolute; padding: 11px 15px; border-radius: 999px; border: 1px solid rgba(255,255,255,.15); background: rgba(16,16,25,.72); backdrop-filter: blur(14px); font-size: 12px; font-weight: 700; box-shadow: 0 18px 30px rgba(0,0,0,.22); }
.floating-note span { color: var(--apricot); }
.note-one { left: -20px; top: 90px; }
.note-two { right: -38px; bottom: 90px; }

.intro-strip { padding: 24px 32px; text-align: center; background: var(--cyan); color: white; }
.intro-strip p { margin: 0; font-size: clamp(15px, 2vw, 19px); }
.intro-strip strong { color: var(--apricot); }

.section { width: min(1180px, calc(100% - 48px)); margin: 0 auto; padding: 110px 0; }
.section-heading { max-width: 720px; }
.section-heading h2, .contact-copy h2 { margin: 18px 0; font-size: clamp(38px, 5vw, 64px); line-height: 1.02; letter-spacing: -.05em; }
.section-heading p, .contact-copy p { margin: 0; max-width: 640px; color: var(--muted); line-height: 1.8; font-size: 16px; }
.cards { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; margin-top: 54px; }
.service-card { position: relative; min-height: 330px; padding: 30px; border-radius: 30px; background: #fff; border: 1px solid var(--line); overflow: hidden; transition: transform .25s ease, box-shadow .25s ease; }
.service-card:hover { transform: translateY(-7px); box-shadow: var(--shadow); }
.service-card.featured { background: var(--ink); color: white; border-color: transparent; }
.service-card.featured p { color: rgba(255,255,255,.62); }
.card-number { position: absolute; right: 24px; top: 24px; color: rgba(16,16,25,.3); font-size: 12px; font-weight: 800; }
.featured .card-number { color: rgba(255,255,255,.34); }
.card-icon { width: 52px; height: 52px; display: grid; place-items: center; border-radius: 17px; background: rgba(24,155,173,.12); color: var(--cyan); font-size: 25px; font-weight: 800; }
.featured .card-icon { background: var(--apricot); color: var(--ink); }
.service-card h3 { margin: 52px 0 12px; font-size: 24px; letter-spacing: -.035em; }
.service-card p { margin: 0; color: var(--muted); line-height: 1.75; }
.card-line { position: absolute; left: 30px; right: 30px; bottom: 30px; height: 3px; border-radius: 99px; background: linear-gradient(90deg, var(--cyan) 0 46%, var(--apricot) 46% 70%, rgba(16,16,25,.08) 70%); }
.featured .card-line { background: linear-gradient(90deg, var(--cyan) 0 46%, var(--apricot) 46% 70%, rgba(255,255,255,.1) 70%); }

.statement { position: relative; overflow: hidden; min-height: 600px; padding: 110px max(32px, calc((100vw - 1180px)/2)); display: grid; grid-template-columns: 1fr auto; gap: 70px; align-items: end; background: var(--ink); color: white; }
.statement-shape { position: absolute; width: 760px; height: 760px; right: -170px; top: -440px; border-radius: 50%; border: 100px solid var(--cyan); box-shadow: 0 0 0 85px rgba(252,212,158,.92); opacity: .94; }
.statement-content { position: relative; z-index: 2; max-width: 790px; }
.statement blockquote { margin: 22px 0; font-size: clamp(42px, 5.2vw, 72px); line-height: 1.05; letter-spacing: -.05em; font-weight: 700; }
.statement-content p { max-width: 570px; color: rgba(255,255,255,.6); line-height: 1.8; }
.statement-pill { position: relative; z-index: 2; min-width: 250px; padding: 24px; border-radius: 24px; background: var(--apricot); color: var(--ink); box-shadow: var(--shadow); }
.statement-pill span { display: block; margin-bottom: 7px; font-size: 12px; text-transform: uppercase; letter-spacing: .11em; opacity: .6; }
.statement-pill strong { font-size: 20px; letter-spacing: -.03em; }

.contact { padding-top: 90px; padding-bottom: 100px; }
.contact-panel { padding: 56px; border-radius: 38px; background: white; border: 1px solid var(--line); display: grid; grid-template-columns: 1fr .9fr; gap: 60px; box-shadow: 0 30px 90px rgba(16,16,25,.08); }
.contact-copy h2 { font-size: clamp(38px, 4.4vw, 58px); }
.contact-actions { display: grid; align-content: center; gap: 12px; }
.contact-link { position: relative; display: grid; gap: 7px; padding: 22px 54px 22px 22px; border-radius: 20px; border: 1px solid var(--line); transition: transform .2s ease, background .2s ease; overflow: hidden; }
.contact-link::before { content: ""; position: absolute; inset: 0 auto 0 0; width: 4px; background: var(--cyan); }
.contact-link:nth-child(2)::before { background: var(--apricot); }
.contact-link:hover { transform: translateX(4px); background: #fafafa; }
.contact-label { font-size: 11px; text-transform: uppercase; letter-spacing: .12em; color: var(--muted); }
.contact-link strong { font-size: clamp(15px, 2vw, 19px); }
.contact-arrow { position: absolute; right: 20px; top: 50%; transform: translateY(-50%); font-size: 22px; color: var(--cyan); }

.site-footer { width: min(1180px, calc(100% - 48px)); margin: 0 auto; padding: 28px 0 44px; border-top: 1px solid var(--line); display: flex; justify-content: space-between; align-items: end; gap: 20px; color: var(--muted); font-size: 12px; }
.site-footer div { display: grid; gap: 4px; }
.site-footer strong { color: var(--ink); font-size: 14px; }
.site-footer p { margin: 0; }

.whatsapp-fab { position: fixed; z-index: 60; right: 20px; bottom: 20px; width: 58px; height: 58px; display: grid; place-items: center; border-radius: 20px; background: var(--cyan); box-shadow: 0 12px 38px rgba(24,155,173,.35); transition: transform .2s ease; }
.whatsapp-fab:hover { transform: translateY(-4px) rotate(-2deg); }
.whatsapp-fab svg { width: 29px; height: 29px; fill: white; }

.reveal { opacity: 0; transform: translateY(18px); transition: opacity .7s ease, transform .7s ease; }
.reveal.visible { opacity: 1; transform: translateY(0); }

@media (max-width: 980px) {
  .hero { grid-template-columns: 1fr; padding-top: 150px; gap: 40px; }
  .hero-copy { max-width: 760px; }
  .hero-visual { min-height: 460px; }
  .logo-card { width: min(430px, 88vw); }
  .cards { grid-template-columns: 1fr; }
  .service-card { min-height: 270px; }
  .service-card h3 { margin-top: 34px; }
  .statement { grid-template-columns: 1fr; align-items: end; }
  .statement-pill { width: fit-content; }
  .contact-panel { grid-template-columns: 1fr; gap: 36px; }
}

@media (max-width: 720px) {
  .site-header { top: 10px; width: calc(100% - 20px); padding: 0 14px; height: 62px; border-radius: 18px; }
  .brand-name { display: none; }
  .menu-toggle { display: block; }
  .main-nav { position: absolute; top: 72px; right: 0; width: 210px; padding: 10px; border-radius: 18px; background: rgba(16,16,25,.96); border: 1px solid rgba(255,255,255,.1); display: none; flex-direction: column; align-items: stretch; box-shadow: 0 20px 60px rgba(0,0,0,.28); }
  .main-nav.open { display: flex; }
  .main-nav a { padding: 13px; }
  .hero { min-height: auto; padding: 126px 22px 70px; }
  .hero h1 { font-size: clamp(44px, 13vw, 65px); }
  .hero-copy > p { font-size: 15px; }
  .hero-actions { display: grid; }
  .button { width: 100%; }
  .hero-visual { min-height: 380px; }
  .logo-card { border-radius: 38px; padding: 24px; }
  .logo-card::before { border-radius: 30px; }
  .floating-note { font-size: 10px; }
  .note-one { left: -4px; top: 44px; }
  .note-two { right: -6px; bottom: 42px; }
  .section { width: min(100% - 36px, 1180px); padding: 78px 0; }
  .section-heading h2, .contact-copy h2 { font-size: 42px; }
  .statement { padding: 82px 22px; min-height: 650px; }
  .statement blockquote { font-size: 44px; }
  .statement-shape { width: 530px; height: 530px; right: -280px; top: -250px; border-width: 70px; box-shadow: 0 0 0 60px rgba(252,212,158,.92); }
  .contact-panel { padding: 28px; border-radius: 28px; }
  .site-footer { width: calc(100% - 36px); align-items: start; flex-direction: column; }
}

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