:root {
  --ink: #15171c;
  --muted: #5d6574;
  --paper: #fbfaf7;
  --panel: #ffffff;
  --line: #e8e3d8;
  --blue: #155dfc;
  --blue-deep: #0c3bbd;
  --gold: #f3b51f;
  --charcoal: #0d1018;
  --soft-blue: #eef4ff;
  --shadow: 0 24px 80px rgba(21, 23, 28, 0.1);
  --radius: 8px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  overflow-x: hidden;
  background:
    linear-gradient(rgba(21, 93, 252, 0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(21, 93, 252, 0.035) 1px, transparent 1px),
    var(--paper);
  background-size: 32px 32px;
  color: var(--ink);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

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

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

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  width: min(1220px, calc(100% - 28px));
  margin: 14px auto 0;
  padding: 10px 12px;
  border: 1px solid rgba(232, 227, 216, 0.9);
  border-radius: var(--radius);
  background: rgba(251, 250, 247, 0.9);
  box-shadow: 0 18px 60px rgba(21, 23, 28, 0.08);
  backdrop-filter: blur(18px);
}

.brand-lockup {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  min-width: max-content;
}

.brand-lockup img {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  object-fit: cover;
  object-position: center;
  background: #fff;
  box-shadow: 0 0 0 2px var(--gold), 0 0 0 4px var(--ink);
  image-rendering: auto;
}

.brand-lockup span {
  display: grid;
  gap: 1px;
  line-height: 1;
}

.brand-lockup strong {
  font-size: 0.88rem;
}

.brand-lockup small {
  color: var(--muted);
  font-size: 0.72rem;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 22px;
  color: var(--muted);
  font-size: 0.9rem;
}

.nav-links a:hover {
  color: var(--blue);
}

.nav-toggle {
  display: none;
  place-items: center;
  width: 48px;
  height: 48px;
  padding: 0;
  border: 1px solid rgba(21, 93, 252, 0.16);
  border-radius: 999px;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.96), rgba(238, 244, 255, 0.96));
  box-shadow: 0 12px 34px rgba(21, 93, 252, 0.12);
  cursor: pointer;
}

.nav-toggle span {
  display: block;
  width: 20px;
  height: 2px;
  margin: 2px 0;
  border-radius: 999px;
  background: var(--blue);
  transition: transform 180ms ease, opacity 180ms ease;
}

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

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

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

.header-actions,
.hero-actions {
  display: flex;
  align-items: center;
  gap: 10px;
}

.hero-actions {
  flex-wrap: wrap;
  margin-top: 10px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 22px;
  border: 1px solid var(--blue);
  border-radius: 999px;
  background: linear-gradient(135deg, var(--blue), #0b45d6);
  color: #fff;
  font-weight: 900;
  line-height: 1;
  box-shadow: 0 14px 36px rgba(21, 93, 252, 0.22);
  transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease, color 180ms ease;
}

.button:hover {
  transform: translateY(-2px);
  border-color: var(--gold);
  background: linear-gradient(135deg, var(--gold), #f8d66f);
  color: var(--charcoal);
  box-shadow: 0 18px 48px rgba(21, 93, 252, 0.28);
}

.button-small {
  min-height: 44px;
  padding: 0 18px;
  font-size: 0.86rem;
}

.calendly-button {
  border-color: var(--gold);
}

.button-ghost {
  border-color: rgba(21, 23, 28, 0.15);
  background: #fff;
  color: var(--ink);
  box-shadow: none;
}

.hero {
  position: relative;
  min-height: calc(100vh - 92px);
  margin-top: 14px;
  overflow: hidden;
  background: var(--charcoal);
}

.hero > img,
.hero > video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  animation: heroFloat 16s ease-in-out infinite alternate;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(251, 250, 247, 0.98) 0%, rgba(251, 250, 247, 0.92) 44%, rgba(251, 250, 247, 0.28) 100%),
    linear-gradient(rgba(21, 93, 252, 0.045) 1px, transparent 1px),
    linear-gradient(90deg, rgba(21, 93, 252, 0.045) 1px, transparent 1px);
  background-size: auto, 32px 32px, 32px 32px;
}

.hero-content {
  position: relative;
  display: grid;
  align-content: center;
  min-height: calc(100vh - 92px);
  padding: 92px 0;
}

.eyebrow {
  margin: 0 0 16px;
  color: var(--blue);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

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

h1,
h2 {
  font-family: Georgia, "Times New Roman", serif;
  letter-spacing: 0;
}

h1 {
  max-width: 920px;
  margin-bottom: 24px;
  font-size: clamp(3.8rem, 8vw, 8rem);
  font-weight: 700;
  line-height: 0.9;
}

.drop-line {
  display: block;
  animation: dropIn 1200ms cubic-bezier(0.16, 1, 0.3, 1) both 420ms;
}

.word-cycle {
  position: relative;
  display: inline-grid;
  min-width: 7.8em;
  min-height: 1.08em;
  vertical-align: top;
}

.word-cycle span {
  position: relative;
  grid-area: 1 / 1;
  display: block;
  width: max-content;
  color: var(--blue);
  text-shadow: 0 14px 38px rgba(21, 93, 252, 0.2);
  animation: wordDropCycle 5.6s cubic-bezier(0.16, 1, 0.3, 1) infinite;
}

.word-cycle span:nth-child(2) {
  color: var(--gold);
  animation-delay: 2.8s;
}

.hero-content .eyebrow,
.hero-content h1,
.hero-content p:not(.eyebrow),
.hero-actions {
  animation: heroRise 900ms cubic-bezier(0.16, 1, 0.3, 1) both;
}

.hero-content h1 {
  animation-delay: 120ms;
}

.hero-content p:not(.eyebrow) {
  animation-delay: 240ms;
}

.hero-actions {
  animation-delay: 360ms;
}

h2 {
  margin-bottom: 18px;
  font-size: clamp(2.4rem, 5vw, 5.3rem);
  font-weight: 700;
  line-height: 0.94;
}

h3 {
  margin-bottom: 10px;
  font-size: 1.35rem;
  line-height: 1.1;
}

.hero-content p:not(.eyebrow),
.section-heading p,
.section-copy p,
.brief-card p {
  max-width: 710px;
  color: var(--muted);
  font-size: 1.08rem;
  line-height: 1.75;
}

.hero-content .button {
  width: max-content;
}

.ai-robot {
  position: absolute;
  z-index: 2;
  width: clamp(110px, 17vw, 230px);
  filter: drop-shadow(0 22px 42px rgba(21, 93, 252, 0.2));
  animation: aiFloat 6s ease-in-out infinite;
  pointer-events: none;
}

.global-robot {
  position: fixed;
  left: 72vw;
  top: 62vh;
  z-index: 12;
  width: clamp(88px, 13vw, 170px);
  opacity: 0.82;
  animation: robotRoam 34s ease-in-out infinite, aiFloat 5.5s ease-in-out infinite;
}

.brand-strip {
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.76);
}

.brand-strip-inner {
  display: grid;
  grid-template-columns: max-content minmax(0, 1fr);
  gap: 24px;
  align-items: center;
  padding: 18px 0;
}

.brand-strip span {
  color: var(--muted);
  font-size: 0.78rem;
  font-weight: 900;
  text-transform: uppercase;
}

.brand-slider {
  overflow: hidden;
  mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent);
}

.brand-track {
  display: flex;
  gap: 14px;
  width: max-content;
  animation: brandSlide 30s linear infinite;
}

.brand-track strong {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 220px;
  min-height: 74px;
  padding: 12px 22px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.86);
  font-weight: 900;
}

.brand-track img {
  max-width: 158px;
  max-height: 52px;
  object-fit: contain;
}

.brand-buybetter img {
  max-width: 54px;
  max-height: 54px;
  border-radius: 6px;
}

.brand-gcs img {
  max-width: 58px;
  max-height: 58px;
  border-radius: 50%;
}

.brand-buybetter {
  color: #214f9b;
}

.brand-dominos {
  color: #006491;
}

.brand-coldstone {
  color: #5b1d24;
}

.brand-pinkberry {
  color: #de4f8f;
}

.brand-gcs {
  color: #12764b;
}

.brand-oal {
  color: #202020;
}

.brand-jollof {
  color: #c8481a;
}

.problem-section,
.services-section,
.portfolio-section,
.pricing-section {
  padding: 110px 0;
}

.inner-page main {
  padding-top: 18px;
}

.page-hero {
  position: relative;
  overflow: hidden;
  padding: 110px 0 86px;
  background:
    linear-gradient(90deg, rgba(251, 250, 247, 0.98) 0%, rgba(251, 250, 247, 0.88) 58%, rgba(251, 250, 247, 0.38) 100%),
    url("assets/wtb-ai-marketing-hero.jpg") center / cover;
}

.about-page .page-hero {
  background:
    linear-gradient(90deg, rgba(251, 250, 247, 0.98) 0%, rgba(251, 250, 247, 0.88) 58%, rgba(251, 250, 247, 0.38) 100%),
    url("assets/wtb-about-strategy.jpg") center / cover;
}

.services-page .page-hero {
  background:
    linear-gradient(90deg, rgba(251, 250, 247, 0.98) 0%, rgba(251, 250, 247, 0.88) 58%, rgba(251, 250, 247, 0.38) 100%),
    url("assets/wtb-services-studio.jpg") center / cover;
}

.pricing-page .page-hero {
  background:
    linear-gradient(90deg, rgba(251, 250, 247, 0.98) 0%, rgba(251, 250, 247, 0.88) 58%, rgba(251, 250, 247, 0.38) 100%),
    url("assets/wtb-pricing-value.png") center / cover;
}

.contact-page .page-hero {
  background:
    linear-gradient(90deg, rgba(251, 250, 247, 0.98) 0%, rgba(251, 250, 247, 0.88) 58%, rgba(251, 250, 247, 0.38) 100%),
    url("assets/wtb-contact-briefing.png") center / cover;
}

.page-hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(110deg, transparent 0%, rgba(255, 255, 255, 0.36) 42%, transparent 58%);
  transform: translateX(-120%);
  animation: pageHeroSweep 7s ease-in-out infinite;
  pointer-events: none;
}

.page-hero .section-shell {
  position: relative;
  z-index: 1;
}

.page-hero h1 {
  max-width: 980px;
  margin-bottom: 20px;
  font-size: clamp(3.3rem, 7vw, 7rem);
}

.page-hero p:not(.eyebrow) {
  max-width: 760px;
  color: var(--muted);
  font-size: 1.12rem;
  line-height: 1.75;
}

.page-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 28px;
}

.content-section {
  padding: 92px 0;
}

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

.two-column {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  gap: 48px;
  align-items: center;
}

.rich-copy p,
.rich-copy li {
  color: var(--muted);
  font-size: 1rem;
  line-height: 1.75;
}

.rich-copy ul,
.rich-copy ol {
  display: grid;
  gap: 12px;
  margin: 20px 0 0;
  padding-left: 20px;
}

.feature-list,
.process-list,
.faq-grid,
.offer-grid {
  display: grid;
  gap: 14px;
}

.feature-list {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.process-list,
.faq-grid,
.offer-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.feature-card,
.process-card,
.faq-card,
.offer-card,
.seo-card {
  position: relative;
  overflow: hidden;
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.9);
  box-shadow: 0 18px 60px rgba(21, 23, 28, 0.06);
}

.feature-card span,
.process-card span,
.offer-card span,
.seo-card span {
  display: inline-flex;
  margin-bottom: 20px;
  color: var(--blue);
  font-size: 0.8rem;
  font-weight: 900;
  text-transform: uppercase;
}

.feature-card p,
.process-card p,
.faq-card p,
.offer-card p,
.seo-card p {
  color: var(--muted);
  line-height: 1.65;
}

.dark-cta {
  padding: 84px 0;
  background: var(--charcoal);
  color: #fff;
}

.dark-cta .section-shell {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
}

.dark-cta p {
  max-width: 660px;
  color: rgba(255, 255, 255, 0.68);
  line-height: 1.7;
}

.page-service-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.page-service-grid article {
  min-height: 300px;
}

.price-detail {
  margin-top: 18px;
  padding-top: 18px;
  border-top: 1px solid var(--line);
  color: var(--muted);
  line-height: 1.65;
}

.featured-price .price-detail {
  border-color: rgba(255, 255, 255, 0.12);
  color: rgba(255, 255, 255, 0.7);
}

.contact-page-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(360px, 1.1fr);
  gap: 44px;
  align-items: start;
}

.contact-panel {
  display: grid;
  gap: 18px;
}

.brand-proof-wall {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: 34px;
  align-items: center;
}

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

.logo-wall figure {
  display: grid;
  place-items: center;
  min-height: 118px;
  margin: 0;
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.9);
  box-shadow: 0 18px 48px rgba(21, 23, 28, 0.05);
  animation: softBob 6s ease-in-out infinite;
}

.logo-wall figure:nth-child(2n) {
  animation-delay: 900ms;
}

.logo-wall img {
  max-width: 130px;
  max-height: 58px;
  object-fit: contain;
}

.logo-wall .round-logo {
  max-width: 66px;
  max-height: 66px;
  border-radius: 50%;
}

.image-split {
  display: grid;
  grid-template-columns: 1fr;
  gap: 14px;
  align-items: stretch;
}

.image-split figure {
  display: grid;
  place-items: center;
  position: relative;
  min-height: 620px;
  margin: 0;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fff;
  box-shadow: var(--shadow);
}

.image-split img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  animation: heroFloat 16s ease-in-out infinite alternate;
}

.service-system-panel {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(0, 0.95fr);
  gap: 34px;
  align-items: center;
  padding: 36px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.88);
  box-shadow: var(--shadow);
}

.service-system-panel img {
  width: 100%;
  min-height: 360px;
  border-radius: var(--radius);
  object-fit: contain;
  background: #fff;
}

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

.tool-cloud span {
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  padding: 0 12px;
  border: 1px solid rgba(21, 93, 252, 0.16);
  border-radius: 999px;
  background: rgba(21, 93, 252, 0.06);
  color: var(--blue);
  font-size: 0.82rem;
  font-weight: 900;
}

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

.included-strip article {
  min-height: 180px;
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.9);
}

.included-strip strong {
  display: block;
  margin-bottom: 12px;
  color: var(--blue);
  font-size: 0.88rem;
  text-transform: uppercase;
}

.included-strip p {
  color: var(--muted);
  line-height: 1.6;
}

.problem-section {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 50px;
  align-items: stretch;
}

.problem-section .section-copy {
  display: grid;
  align-content: center;
}

.feature-image {
  display: grid;
  place-items: center;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fff;
  box-shadow: var(--shadow);
}

.feature-image img {
  height: 100%;
  width: 100%;
  min-height: 560px;
  object-fit: cover;
}

.inner-page .feature-image img {
  height: auto;
  min-height: 0;
  object-fit: contain;
}

.stats-section,
.difference-section,
.testimonials-section {
  padding: 100px 0;
  background: var(--charcoal);
  color: #fff;
}

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

.stats-grid article,
.difference-list article,
.quote-card {
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.06);
}

.stats-grid article {
  min-height: 170px;
  padding: 28px;
}

.stats-grid strong {
  display: block;
  margin-bottom: 16px;
  color: var(--gold);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 3.8rem;
  line-height: 1;
}

.stats-grid span,
.difference-list p,
.quote-card span {
  color: rgba(255, 255, 255, 0.68);
  line-height: 1.65;
}

.section-heading {
  max-width: 790px;
}

.service-grid,
.portfolio-grid,
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  margin-top: 44px;
}

.service-grid article,
.portfolio-grid article,
.pricing-grid article {
  position: relative;
  overflow: hidden;
  min-height: 270px;
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.88);
  box-shadow: 0 18px 60px rgba(21, 23, 28, 0.06);
  transition: transform 180ms ease, box-shadow 180ms ease;
}

.service-grid article:hover,
.portfolio-grid article:hover,
.pricing-grid article:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow);
}

.portfolio-logo {
  display: grid;
  place-items: center;
  min-height: 92px;
  margin-bottom: 24px;
  padding: 14px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fff;
}

.portfolio-logo img {
  max-width: 150px;
  max-height: 58px;
  object-fit: contain;
}

.portfolio-logo span {
  margin: 0;
  color: #214f9b;
  font-size: 1rem;
}

.portfolio-logo-stack {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
}

.portfolio-logo-pair {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
}

.portfolio-logo-stack img {
  max-width: 86px;
  max-height: 48px;
}

.portfolio-logo-pair img {
  max-width: 90px;
  max-height: 58px;
}

.service-grid span,
.portfolio-grid span {
  display: inline-flex;
  margin-bottom: 28px;
  color: var(--blue);
  font-size: 0.82rem;
  font-weight: 900;
  text-transform: uppercase;
}

.service-grid article > span {
  color: var(--gold);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.45rem;
  text-transform: none;
}

.service-grid p,
.portfolio-grid p,
.pricing-grid li {
  color: var(--muted);
  line-height: 1.65;
}

.difference-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(420px, 1.1fr);
  gap: 50px;
  align-items: start;
}

.difference-list {
  display: grid;
  gap: 14px;
}

.difference-list article {
  padding: 26px;
}

.difference-section .section-heading p,
.testimonials-section .section-heading p {
  color: rgba(255, 255, 255, 0.68);
}

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

.testimonials-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) repeat(2, minmax(260px, 0.7fr));
  gap: 14px;
  align-items: stretch;
}

.quote-card {
  padding: 28px;
}

.quote-card p {
  color: #fff;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.65rem;
  line-height: 1.2;
}

.pricing-grid article {
  display: flex;
  flex-direction: column;
  min-height: 470px;
}

.service-grid article::before,
.pricing-grid article::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(120deg, transparent 0%, rgba(21, 93, 252, 0.1) 45%, rgba(243, 181, 31, 0.14) 55%, transparent 100%);
  opacity: 0;
  transform: translateX(-110%);
  transition: opacity 180ms ease;
  pointer-events: none;
}

.service-grid article:hover::before,
.pricing-grid article:hover::before {
  opacity: 1;
  animation: cardSweep 900ms ease;
}

.pricing-grid article > p {
  color: var(--blue);
  font-weight: 900;
  text-transform: uppercase;
}

.price-line {
  display: block;
  margin: 8px 0 10px;
  color: var(--ink);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 2.25rem;
  line-height: 1;
}

.featured-price .price-line {
  color: var(--gold);
}

.package-note {
  color: var(--muted);
  line-height: 1.55;
}

.featured-price .package-note {
  color: rgba(255, 255, 255, 0.7);
}

.pricing-grid ul {
  display: grid;
  gap: 12px;
  margin: 18px 0 0;
  padding-left: 20px;
}

.featured-price {
  background: var(--charcoal) !important;
  color: #fff;
}

.featured-price li {
  color: rgba(255, 255, 255, 0.7);
}

.package-highlight {
  display: inline-flex;
  align-items: center;
  min-height: 28px;
  margin: 0 2px;
  padding: 0 9px;
  border-radius: 999px;
  background: rgba(21, 93, 252, 0.1);
  color: var(--blue);
  font-weight: 900;
  white-space: nowrap;
}

.featured-price .package-highlight {
  background: rgba(243, 181, 31, 0.15);
  color: var(--gold);
}

.booking-note {
  padding: 14px 16px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.76);
}

.brief-section {
  padding: 110px 0;
}

.brief-card {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(360px, 1.1fr);
  gap: 44px;
  padding: 44px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.88);
  box-shadow: var(--shadow);
}

.brief-form {
  display: grid;
  gap: 16px;
}

.website-brief-form {
  opacity: 1;
  transform: none;
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.9);
  box-shadow: var(--shadow);
}

.website-brief-form fieldset {
  display: grid;
  gap: 18px;
  margin: 0;
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.76);
}

.website-brief-form legend {
  padding: 0 10px;
  color: var(--blue);
  font-weight: 900;
  text-transform: uppercase;
}

.form-grid,
.checkbox-grid {
  display: grid;
  gap: 14px;
}

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

.form-grid label:has(textarea),
.form-grid label:has(input[type="file"]) {
  grid-column: 1 / -1;
}

.checkbox-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.checkbox-grid label {
  display: flex;
  align-items: center;
  gap: 10px;
  min-height: 46px;
  padding: 12px 14px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fff;
  color: var(--ink);
  font-weight: 800;
}

.checkbox-grid input {
  width: 18px;
  height: 18px;
  accent-color: var(--blue);
}

.checkbox-grid small {
  margin-left: auto;
  color: var(--blue);
  font-size: 0.78rem;
  font-weight: 900;
}

.addon-toggle {
  display: flex;
  align-items: center;
  gap: 10px;
  width: max-content;
  max-width: 100%;
  min-height: 48px;
  padding: 12px 14px;
  border: 1px solid rgba(21, 93, 252, 0.24);
  border-radius: var(--radius);
  background: rgba(21, 93, 252, 0.08);
  color: var(--ink);
  font-weight: 900;
}

.addon-toggle input {
  width: 18px;
  height: 18px;
  accent-color: var(--blue);
}

.addon-toggle small {
  color: var(--blue);
  font-size: 0.78rem;
  font-weight: 900;
}

.budget-estimator {
  display: grid;
  gap: 8px;
  padding: 18px;
  border: 1px solid rgba(243, 181, 31, 0.42);
  border-radius: var(--radius);
  background: rgba(243, 181, 31, 0.12);
}

.budget-estimator strong {
  color: var(--ink);
}

.budget-estimator span {
  color: var(--blue);
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(1.7rem, 4vw, 2.7rem);
  font-weight: 900;
  line-height: 1;
}

.budget-estimator small {
  color: var(--muted);
  line-height: 1.5;
}

.form-payment-note {
  padding: 18px;
  border: 1px solid rgba(21, 93, 252, 0.22);
  border-radius: var(--radius);
  background: rgba(21, 93, 252, 0.07);
}

.form-payment-note strong {
  display: block;
  margin-bottom: 8px;
  color: var(--ink);
}

.form-payment-note p {
  margin: 0;
  color: var(--muted);
  line-height: 1.65;
}

.website-brief-notes {
  grid-template-columns: 1fr;
}

.website-brief-section .section-heading {
  margin-bottom: 28px;
}

.hidden-field {
  display: none;
}

.contact-links {
  display: grid;
  gap: 10px;
  max-width: 460px;
  margin-top: 26px;
}

.contact-links a {
  display: flex;
  align-items: center;
  min-height: 44px;
  padding: 0 14px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fff;
  color: var(--ink);
  font-weight: 900;
}

.contact-links a:hover {
  border-color: var(--blue);
  color: var(--blue);
}

.brief-form label {
  display: grid;
  gap: 8px;
  color: var(--muted);
  font-size: 0.86rem;
  font-weight: 800;
}

select,
input,
textarea {
  width: 100%;
  padding: 14px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fff;
  color: var(--ink);
  font: inherit;
}

input[type="file"] {
  cursor: pointer;
}

.brief-form textarea {
  resize: vertical;
}

.field-note {
  color: var(--muted);
  font-size: 0.78rem;
  line-height: 1.45;
}

.form-note {
  min-height: 24px;
  margin: 0;
  color: var(--blue);
  font-weight: 800;
}

.brief-modal {
  position: fixed;
  inset: 0;
  z-index: 80;
  display: grid;
  place-items: center;
  padding: 20px;
  opacity: 0;
  pointer-events: none;
  transition: opacity 180ms ease;
}

.brief-modal.is-open {
  opacity: 1;
  pointer-events: auto;
}

.brief-modal-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(13, 16, 24, 0.58);
  backdrop-filter: blur(10px);
}

.brief-modal-panel {
  position: relative;
  z-index: 1;
  width: min(560px, 100%);
  max-height: min(760px, calc(100vh - 40px));
  overflow: auto;
  padding: 30px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.96);
  box-shadow: var(--shadow);
  transform: translateY(16px) scale(0.98);
  transition: transform 180ms ease;
}

.brief-modal.is-open .brief-modal-panel {
  transform: translateY(0) scale(1);
}

.brief-modal-panel h2 {
  max-width: 440px;
  font-size: clamp(2.1rem, 6vw, 3.4rem);
}

.modal-close {
  position: absolute;
  top: 14px;
  right: 14px;
  min-height: 36px;
  padding: 0 12px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: #fff;
  color: var(--ink);
  font: inherit;
  font-size: 0.78rem;
  font-weight: 900;
  cursor: pointer;
}

.compact-brief-form {
  gap: 12px;
}

body.modal-open {
  overflow: hidden;
}

.site-footer {
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  background: var(--charcoal);
  color: #fff;
}

.footer-grid {
  display: grid;
  grid-template-columns: minmax(260px, 1.6fr) repeat(2, minmax(150px, 0.72fr));
  gap: 36px;
  padding: 56px 0 36px;
}

.footer-brand p,
.footer-column a,
.footer-bottom {
  color: rgba(255, 255, 255, 0.66);
}

.footer-brand p {
  max-width: 430px;
  line-height: 1.7;
}

.site-footer .brand-lockup small {
  color: rgba(255, 255, 255, 0.66);
}

.footer-column {
  display: grid;
  align-content: start;
  gap: 10px;
}

.footer-column h3 {
  margin: 0 0 8px;
  color: #fff;
  font-size: 0.9rem;
  text-transform: uppercase;
}

.footer-column a {
  display: flex;
  align-items: center;
  gap: 10px;
  width: 100%;
  min-height: 30px;
}

.site-footer .social-logo {
  display: block;
  flex: 0 0 18px;
  width: 18px !important;
  height: 18px !important;
  min-width: 18px;
  max-width: 18px;
  max-height: 18px;
  object-fit: contain;
}

.footer-column a:hover,
.footer-bottom a:hover {
  color: var(--gold);
}

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 20px 0 28px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  font-size: 0.9rem;
}

.footer-bottom a {
  display: flex;
  align-items: center;
  min-height: 42px;
  padding: 0 12px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.035);
}

.floating-whatsapp {
  position: fixed;
  right: 18px;
  bottom: 18px;
  z-index: 50;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 132px;
  min-height: 48px;
  padding: 0 18px;
  border: 1px solid rgba(255, 255, 255, 0.25);
  border-radius: 999px;
  background: #25d366;
  color: #092d17;
  font-size: 0.9rem;
  font-weight: 900;
  box-shadow: 0 16px 44px rgba(37, 211, 102, 0.32);
  transition: transform 180ms ease, box-shadow 180ms ease;
}

.floating-whatsapp:hover {
  transform: translateY(-3px);
  box-shadow: 0 20px 54px rgba(37, 211, 102, 0.42);
}

.reveal {
  opacity: 0;
  transform: translateY(34px) scale(0.985);
  transition: opacity 900ms ease, transform 900ms cubic-bezier(0.16, 1, 0.3, 1);
}

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

.thank-you-page {
  min-height: 100vh;
  background:
    linear-gradient(rgba(21, 93, 252, 0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(21, 93, 252, 0.04) 1px, transparent 1px),
    radial-gradient(circle at 78% 20%, rgba(21, 93, 252, 0.12), transparent 34%),
    var(--paper);
  background-size: 32px 32px, 32px 32px, auto, auto;
}

.thank-you-wrap {
  display: grid;
  min-height: 100vh;
  place-items: center;
  padding: 40px 20px;
}

.thank-you-card {
  width: min(900px, 100%);
  padding: clamp(28px, 6vw, 64px);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.9);
  box-shadow: var(--shadow);
}

.thank-you-card .brand-lockup {
  margin-bottom: 46px;
}

.thank-you-card h1 {
  max-width: 780px;
  font-size: clamp(2.6rem, 7vw, 5.8rem);
}

.thank-you-card p:not(.eyebrow) {
  max-width: 650px;
  color: var(--muted);
  font-size: 1.08rem;
  line-height: 1.75;
}

.thank-you-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 30px;
}

@keyframes brandSlide {
  from {
    transform: translateX(0);
  }

  to {
    transform: translateX(calc(-50% - 49px));
  }
}

@keyframes heroFloat {
  from {
    transform: scale(1);
  }

  to {
    transform: scale(1.045);
  }
}

@keyframes dropIn {
  from {
    opacity: 0;
    transform: translateY(-0.85em);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes wordDropCycle {
  0%,
  8% {
    opacity: 0;
    transform: translateY(-0.75em) scale(0.96);
  }

  14%,
  42% {
    opacity: 1;
    transform: translateY(0) scale(1);
  }

  50%,
  100% {
    opacity: 0;
    transform: translateY(0.55em) scale(0.98);
  }
}

@keyframes heroRise {
  from {
    opacity: 0;
    transform: translateY(28px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes cardSweep {
  from {
    transform: translateX(-110%);
  }

  to {
    transform: translateX(110%);
  }
}

@keyframes pageHeroSweep {
  0%,
  36% {
    transform: translateX(-120%);
  }

  58%,
  100% {
    transform: translateX(120%);
  }
}

@keyframes softBob {
  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-8px);
  }
}

@keyframes aiFloat {
  0%,
  100% {
    transform: translateY(0) rotate(-2deg);
  }

  50% {
    transform: translateY(-14px) rotate(2deg);
  }
}

@keyframes robotRoam {
  0% {
    left: 72vw;
    top: 62vh;
  }

  22% {
    left: 79vw;
    top: 20vh;
  }

  45% {
    left: 12vw;
    top: 28vh;
  }

  68% {
    left: 18vw;
    top: 70vh;
  }

  100% {
    left: 72vw;
    top: 62vh;
  }
}

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

@media (max-width: 980px) {
  .nav-links {
    display: none;
  }

  .nav-toggle {
    display: grid;
  }

  .site-header .nav-links.is-open {
    position: absolute;
    top: calc(100% + 8px);
    left: 0;
    right: 0;
    z-index: 30;
    display: grid;
    gap: 8px;
    padding: 12px;
    border: 1px solid rgba(232, 227, 216, 0.95);
    border-radius: var(--radius);
    background: rgba(251, 250, 247, 0.98);
    box-shadow: 0 18px 60px rgba(21, 23, 28, 0.12);
    color: var(--ink);
  }

  .site-header .nav-links a {
    display: flex;
    align-items: center;
    min-height: 46px;
    padding: 0 14px;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    background: #fff;
    font-weight: 900;
  }

  .header-actions {
    gap: 8px;
  }

  .problem-section,
  .difference-grid,
  .brief-card,
  .testimonials-grid,
  .two-column,
  .contact-page-grid,
  .brand-proof-wall,
  .service-system-panel,
  .image-split {
    grid-template-columns: 1fr;
  }

  .feature-image img {
    min-height: 0;
  }

  .global-robot {
    width: 86px;
    opacity: 0.7;
  }

  .service-grid,
  .portfolio-grid,
  .pricing-grid,
  .stats-grid,
  .feature-list,
  .process-list,
  .faq-grid,
  .offer-grid,
  .page-service-grid,
  .included-strip,
  .form-grid,
  .checkbox-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

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

  .site-header {
    width: min(100% - 18px, 1220px);
  }

  .brand-lockup small {
    display: none;
  }

  .site-header .button {
    min-height: 40px;
    padding: 0 12px;
    font-size: 0.8rem;
  }

  .header-actions .calendly-button {
    display: none;
  }

  .brand-lockup img {
    width: 44px;
    height: 44px;
  }

  .hero,
  .hero-content {
    min-height: 760px;
  }

  .hero-overlay {
    background:
      linear-gradient(180deg, rgba(251, 250, 247, 0.98) 0%, rgba(251, 250, 247, 0.93) 56%, rgba(251, 250, 247, 0.48) 100%),
      linear-gradient(rgba(21, 93, 252, 0.045) 1px, transparent 1px),
      linear-gradient(90deg, rgba(21, 93, 252, 0.045) 1px, transparent 1px);
    background-size: auto, 32px 32px, 32px 32px;
  }

  h1 {
    font-size: clamp(2.65rem, 14vw, 4.2rem);
    line-height: 0.94;
  }

  .word-cycle {
    display: block;
    min-width: 100%;
    min-height: 1.42em;
    margin-bottom: 0.18em;
  }

  .word-cycle span {
    width: 100%;
  }

  .hero-content p:not(.eyebrow) {
    margin-top: 24px;
  }

  h2 {
    font-size: clamp(2.2rem, 13vw, 3.4rem);
  }

  .hero-content .button,
  .hero-actions,
  .page-actions,
  .page-actions .button,
  .dark-cta .button,
  .button {
    width: 100%;
  }

  .page-hero {
    padding: 74px 0 58px;
  }

  .page-hero h1 {
    font-size: clamp(2.6rem, 13vw, 4.2rem);
    line-height: 0.94;
  }

  .dark-cta .section-shell {
    align-items: flex-start;
    flex-direction: column;
  }

  .floating-whatsapp {
    right: 12px;
    bottom: 12px;
  }

  .brand-strip-inner,
  .service-grid,
  .portfolio-grid,
  .pricing-grid,
  .stats-grid,
  .footer-grid,
  .feature-list,
  .process-list,
  .faq-grid,
  .offer-grid,
  .page-service-grid,
  .included-strip,
  .logo-wall,
  .form-grid,
  .checkbox-grid {
    grid-template-columns: 1fr;
  }

  .website-brief-form {
    padding: 18px;
  }

  .website-brief-form fieldset {
    padding: 18px;
  }

  .service-system-panel {
    padding: 22px;
  }

  .service-system-panel img,
  .image-split figure {
    min-height: 320px;
  }

  .problem-section,
  .services-section,
  .portfolio-section,
  .pricing-section,
  .brief-section,
  .stats-section,
  .difference-section,
  .testimonials-section,
  .content-section {
    padding: 72px 0;
  }

  .brief-card {
    padding: 24px;
  }

  .footer-bottom {
    align-items: flex-start;
    flex-direction: column;
  }
}
