:root {
  --navy: #071b34;
  --navy-2: #0d2d52;
  --blue: #12446f;
  --orange: #ff9518;
  --orange-2: #ffb04a;
  --ink: #102033;
  --muted: #66788f;
  --line: rgba(18, 68, 111, 0.12);
  --white: #ffffff;
  --soft: #f5f8fc;
  --shadow: 0 24px 80px rgba(7, 27, 52, 0.14);
  --radius: 8px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--ink);
  background: linear-gradient(180deg, #f8fbff 0%, #ffffff 42%, #f6f9fd 100%);
  overflow-x: hidden;
}

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

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

.site-bg {
  position: fixed;
  inset: 0;
  z-index: -1;
  overflow: hidden;
  pointer-events: none;
}

.orb {
  position: absolute;
  width: 360px;
  height: 360px;
  border-radius: 999px;
  filter: blur(20px);
  opacity: 0.22;
}

.orb-one {
  top: -120px;
  right: 8%;
  background: radial-gradient(circle, var(--orange), transparent 68%);
  animation: floatOrb 10s ease-in-out infinite;
}

.orb-two {
  top: 36%;
  left: -120px;
  background: radial-gradient(circle, #1c71aa, transparent 68%);
  animation: floatOrb 12s ease-in-out infinite reverse;
}

.grid-noise {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(18, 68, 111, 0.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(18, 68, 111, 0.05) 1px, transparent 1px);
  background-size: 56px 56px;
  mask-image: linear-gradient(to bottom, #000, transparent 80%);
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 28px;
  width: min(1180px, calc(100% - 40px));
  margin: 16px auto 0;
  padding: 12px 14px;
  border: 1px solid rgba(255, 255, 255, 0.7);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.78);
  box-shadow: 0 18px 50px rgba(7, 27, 52, 0.08);
  backdrop-filter: blur(18px);
}

.brand img {
  width: 210px;
}

.nav-links {
  display: flex;
  justify-content: center;
  gap: 8px;
}

.nav-links a {
  padding: 10px 12px;
  border-radius: 8px;
  color: #29445f;
  font-size: 14px;
  font-weight: 700;
}

.nav-links a:hover {
  background: rgba(255, 149, 24, 0.12);
  color: var(--navy);
}

.header-cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 11px 16px;
  border-radius: 8px;
  color: var(--white);
  background: var(--navy);
  font-size: 14px;
  font-weight: 800;
}

.wa-icon {
  width: 18px;
  height: 18px;
  flex: 0 0 auto;
}

.section {
  width: min(1180px, calc(100% - 40px));
  margin: 0 auto;
  padding: 92px 0;
}

.hero {
  display: grid;
  grid-template-columns: minmax(0, 1.02fr) minmax(360px, 0.98fr);
  gap: 56px;
  align-items: center;
  min-height: calc(100vh - 96px);
  padding-top: 56px;
}

.eyebrow,
.section-kicker {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  width: fit-content;
  color: var(--orange);
  font-size: 13px;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.eyebrow {
  padding: 9px 12px;
  border: 1px solid rgba(255, 149, 24, 0.28);
  border-radius: 8px;
  background: rgba(255, 149, 24, 0.11);
}

.eyebrow svg,
.btn svg,
.intent-strip svg,
.feature-card svg {
  width: 18px;
  height: 18px;
}

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

h1 {
  max-width: 800px;
  margin-bottom: 22px;
  color: var(--navy);
  font-size: clamp(42px, 6vw, 76px);
  line-height: 0.96;
  letter-spacing: -0.04em;
}

h2 {
  color: var(--navy);
  font-size: clamp(32px, 4vw, 52px);
  line-height: 1.04;
  letter-spacing: -0.03em;
}

h3 {
  color: var(--navy);
}

.hero-lead,
.section-head p,
.section-copy p,
.final-cta p {
  color: var(--muted);
  font-size: 18px;
  line-height: 1.75;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin: 30px 0 26px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 48px;
  padding: 13px 18px;
  border: 0;
  border-radius: 8px;
  font-weight: 900;
  cursor: pointer;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

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

.btn-primary {
  color: var(--navy);
  background: linear-gradient(135deg, var(--orange), var(--orange-2));
  box-shadow: 0 16px 36px rgba(255, 149, 24, 0.32);
}

.btn-ghost,
.btn-card {
  color: var(--navy);
  background: var(--white);
  border: 1px solid var(--line);
}

.trust-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.trust-row span {
  padding: 10px 12px;
  border: 1px solid var(--line);
  border-radius: 8px;
  color: #35536f;
  background: rgba(255, 255, 255, 0.72);
  font-size: 14px;
}

.trust-row strong {
  color: var(--navy);
}

.hero-visual {
  position: relative;
}

.glass-card {
  border: 1px solid rgba(255, 255, 255, 0.72);
  border-radius: 8px;
  background: linear-gradient(145deg, rgba(255, 255, 255, 0.88), rgba(255, 255, 255, 0.56));
  box-shadow: var(--shadow);
  backdrop-filter: blur(18px);
}

.hero-card {
  padding: 14px;
  transform: perspective(900px) rotateY(-5deg) rotateX(3deg);
}

.hero-card img {
  width: 100%;
  border-radius: 8px;
  box-shadow: inset 0 0 0 1px var(--line);
}

.preview-topbar {
  display: flex;
  align-items: center;
  gap: 7px;
  padding: 4px 4px 12px;
}

.preview-topbar span {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: #d5dfeb;
}

.preview-topbar span:first-child {
  background: var(--orange);
}

.preview-topbar p {
  margin: 0 0 0 8px;
  color: #536981;
  font-size: 12px;
  font-weight: 800;
}

.floating-chip {
  position: absolute;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 14px;
  border: 1px solid rgba(255, 255, 255, 0.72);
  border-radius: 8px;
  color: var(--navy);
  background: rgba(255, 255, 255, 0.86);
  box-shadow: 0 14px 42px rgba(7, 27, 52, 0.16);
  font-weight: 900;
  backdrop-filter: blur(14px);
  animation: floatChip 5s ease-in-out infinite;
}

.floating-chip svg {
  width: 17px;
  height: 17px;
  color: var(--orange);
}

.chip-one {
  top: 14%;
  left: -24px;
}

.chip-two {
  right: -18px;
  bottom: 26%;
  animation-delay: 0.7s;
}

.chip-three {
  left: 18%;
  bottom: -18px;
  animation-delay: 1.3s;
}

.intent-strip {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.76);
  box-shadow: 0 18px 60px rgba(7, 27, 52, 0.08);
  backdrop-filter: blur(16px);
}

.intent-strip div {
  display: grid;
  gap: 6px;
  padding: 22px;
  border-radius: 8px;
  background: linear-gradient(135deg, #ffffff, #f6f9fd);
}

.intent-strip svg {
  color: var(--orange);
}

.intent-strip strong {
  color: var(--navy);
  font-size: 18px;
}

.intent-strip span {
  color: var(--muted);
  line-height: 1.6;
}

.split-section {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 42px;
  align-items: start;
}

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

.feature-card,
.price-card,
.process-item,
.faq-list details {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.82);
  box-shadow: 0 20px 60px rgba(7, 27, 52, 0.07);
}

.feature-card {
  padding: 24px;
}

.feature-card svg {
  color: var(--orange);
}

.feature-card p,
.process-item p,
.faq-list p {
  margin-bottom: 0;
  color: var(--muted);
  line-height: 1.7;
}

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

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.price-card {
  position: relative;
  display: flex;
  flex-direction: column;
  padding: 24px;
  overflow: hidden;
}

.price-card::before {
  content: "";
  position: absolute;
  inset: 0 0 auto 0;
  height: 4px;
  background: linear-gradient(90deg, var(--orange), var(--blue));
}

.price-card.featured {
  color: var(--white);
  background: linear-gradient(145deg, var(--navy), var(--navy-2));
  transform: translateY(-8px);
}

.price-card.featured h3,
.price-card.featured .price strong {
  color: var(--white);
}

.price-card.featured .package-type,
.price-card.featured li,
.price-card.featured .old-price,
.price-card.featured .price small {
  color: rgba(255, 255, 255, 0.72);
}

.price-card.featured .badge {
  color: #ffffff;
  background: rgba(255, 149, 24, 0.96);
  box-shadow: 0 10px 24px rgba(255, 149, 24, 0.22);
}

.badge {
  width: fit-content;
  margin-bottom: 18px;
  padding: 7px 10px;
  border-radius: 8px;
  color: var(--navy);
  background: rgba(255, 149, 24, 0.18);
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}

.price-card h3 {
  margin-bottom: 4px;
  font-size: 26px;
}

.package-type {
  color: var(--muted);
  font-weight: 700;
}

.price {
  display: grid;
  gap: 2px;
  margin: 18px 0 18px;
}

.old-price {
  color: #8b9aab;
  font-size: 14px;
  font-weight: 800;
  text-decoration: line-through;
}

.price strong {
  color: var(--navy);
  font-size: 32px;
  letter-spacing: -0.04em;
}

.price small {
  color: var(--muted);
  font-weight: 800;
}

.price-card ul {
  display: grid;
  gap: 11px;
  margin: 0 0 24px;
  padding: 0;
  list-style: none;
}

.price-card li {
  position: relative;
  padding-left: 24px;
  color: #43576d;
  line-height: 1.5;
}

.price-card li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--orange);
  font-weight: 900;
}

.price-card .btn {
  margin-top: auto;
}

.portfolio-section {
  width: min(1280px, calc(100% - 40px));
}

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

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

.portfolio-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.portfolio-card:hover img {
  transform: scale(1.06);
}

.portfolio-card div {
  position: absolute;
  inset: auto 12px 12px;
  display: grid;
  gap: 2px;
  padding: 14px;
  border: 1px solid rgba(255, 255, 255, 0.45);
  border-radius: 8px;
  color: var(--white);
  background: rgba(7, 27, 52, 0.68);
  backdrop-filter: blur(14px);
}

.portfolio-website::before {
  content: "Website";
  position: absolute;
  top: 12px;
  right: 12px;
  z-index: 2;
  padding: 7px 10px;
  border-radius: 8px;
  color: var(--navy);
  background: linear-gradient(135deg, var(--orange), var(--orange-2));
  font-size: 12px;
  font-weight: 950;
}

.portfolio-card span {
  color: rgba(255, 255, 255, 0.74);
  font-size: 14px;
}

.portfolio-more-wrap {
  display: grid;
  justify-items: center;
  gap: 22px;
  width: 100%;
  margin-top: 24px;
}

.portfolio-toggle {
  appearance: none;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  min-height: 48px;
  padding: 13px 18px;
  border: 1px solid var(--line);
  border-radius: 8px;
  color: var(--navy);
  background: rgba(255, 255, 255, 0.86);
  box-shadow: 0 18px 46px rgba(7, 27, 52, 0.09);
  font: inherit;
  font-weight: 950;
  cursor: pointer;
  backdrop-filter: blur(14px);
  transition: transform 0.2s ease, background 0.2s ease;
}

.portfolio-toggle:hover {
  transform: translateY(-2px);
  background: #ffffff;
}

.portfolio-toggle svg {
  width: 18px;
  height: 18px;
  color: var(--orange);
  transition: transform 0.2s ease;
}

.portfolio-toggle[aria-expanded="true"] svg {
  transform: rotate(180deg);
}

.portfolio-more {
  width: 100%;
  padding-top: 4px;
}

.portfolio-more[hidden],
.portfolio-cta[hidden] {
  display: none;
}

.portfolio-more.is-open {
  animation: dropdownReveal 0.34s ease both;
}

.portfolio-cta {
  margin-top: 4px;
}

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

.process-item {
  padding: 24px;
}

.process-item span {
  display: inline-flex;
  margin-bottom: 24px;
  color: var(--orange);
  font-size: 34px;
  font-weight: 950;
  letter-spacing: -0.05em;
}

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

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

.faq-list details {
  padding: 20px 22px;
}

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

.faq-list p {
  padding-top: 12px;
}

.final-cta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: 70px;
  padding: 42px;
  border-radius: 8px;
  color: var(--white);
  background:
    radial-gradient(circle at 20% 20%, rgba(255, 149, 24, 0.35), transparent 28%),
    linear-gradient(135deg, var(--navy), #0e3159);
  box-shadow: var(--shadow);
}

.final-cta h2 {
  color: var(--white);
  margin-bottom: 10px;
}

.final-cta p {
  max-width: 680px;
  margin-bottom: 0;
  color: rgba(255, 255, 255, 0.74);
}

.site-footer {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 28px max(20px, calc((100vw - 1180px) / 2));
  color: rgba(255, 255, 255, 0.75);
  background: var(--navy);
}

.site-footer img {
  width: 220px;
}

.site-footer p {
  margin: 0;
}

.whatsapp-float {
  position: fixed;
  right: 18px;
  bottom: 18px;
  z-index: 60;
  display: grid;
  place-items: center;
  width: 58px;
  height: 58px;
  border-radius: 8px;
  color: var(--navy);
  background: linear-gradient(135deg, var(--orange), var(--orange-2));
  box-shadow: 0 18px 40px rgba(255, 149, 24, 0.34);
}

.whatsapp-float svg {
  width: 26px;
  height: 26px;
}

.whatsapp-float .wa-icon {
  width: 28px;
  height: 28px;
}

html.motion-ready .reveal {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

html.motion-ready .reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.delay-1 {
  transition-delay: 0.08s;
}

.delay-2 {
  transition-delay: 0.16s;
}

.delay-3 {
  transition-delay: 0.24s;
}

.delay-4 {
  transition-delay: 0.32s;
}

@keyframes floatChip {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-12px);
  }
}

@keyframes floatOrb {
  0%,
  100% {
    transform: translate3d(0, 0, 0) scale(1);
  }
  50% {
    transform: translate3d(28px, 24px, 0) scale(1.08);
  }
}

@keyframes dropdownReveal {
  from {
    opacity: 0;
    transform: translateY(-10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@media (max-width: 1020px) {
  .site-header {
    grid-template-columns: 1fr auto;
  }

  .nav-links {
    display: none;
  }

  .hero,
  .split-section,
  .faq-section {
    grid-template-columns: 1fr;
  }

  .hero {
    min-height: auto;
  }

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

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

@media (max-width: 680px) {
  .site-header,
  .section,
  .portfolio-section {
    width: min(100% - 28px, 1180px);
  }

  .brand img {
    width: 164px;
  }

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

  .section {
    padding: 64px 0;
  }

  .hero {
    grid-template-columns: 1fr;
    gap: 34px;
    padding-top: 48px;
  }

  h1 {
    font-size: 44px;
  }

  .hero-card {
    transform: none;
  }

  .floating-chip {
    position: static;
    margin: 10px 8px 0 0;
  }

  .intent-strip,
  .feature-grid,
  .pricing-grid,
  .portfolio-grid,
  .process-grid {
    grid-template-columns: 1fr;
  }

  .price-card.featured {
    transform: none;
  }

  .portfolio-card {
    min-height: 260px;
  }

  .final-cta {
    display: grid;
    padding: 28px;
  }
}
