/* ==========================================================================
   BrandBuzz — Digital Marketing Agency
   Art direction: editorial vector, orange/cream, intentionally composed
   ========================================================================== */

/* ---------- Variables ---------- */
:root {
  --orange: #f45b15;
  --orange-light: #ff7440;
  --orange-dark: #e95313;
  --peach: #fff0e5;
  --cream: #fff7f0;

  --text-primary: #222222;
  --text-secondary: #77736f;
  --text-tertiary: #a29b96;

  --border: #f1f1f1;
  --white: #ffffff;
  --navy: #26263b;

  --container: 1000px;
  --transition: 0.22s ease;
}

/* ---------- Reset / Base ---------- */
*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: "Poppins", sans-serif;
  background: var(--white);
  color: var(--text-secondary);
  font-size: 13px;
  line-height: 1.7;
  overflow-x: hidden;
}

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

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

ul,
ol {
  list-style: none;
}

button {
  font-family: inherit;
  border: none;
  background: none;
  cursor: pointer;
}

/* ---------- Layout helpers ---------- */
.container {
  width: min(100% - 40px, 1000px);
  margin-inline: auto;
}

.text-accent {
  color: var(--orange);
}

.section-head {
  text-align: center;
  max-width: 460px;
  margin: 0 auto 34px;
}

.section-title {
  font-size: 27px;
  font-weight: 700;
  line-height: 1.28;
  letter-spacing: -0.4px;
  color: var(--text-primary);
}

.section-title--left {
  text-align: left;
}

.section-subtitle {
  margin-top: 9px;
  color: var(--text-tertiary);
  font-size: 11.5px;
  line-height: 1.7;
}

/* ---------- Decorative elements ---------- */
.deco-dot,
.deco-ring,
.deco-plus {
  position: absolute;
  display: block;
  pointer-events: none;
}

.deco-dot--orange { width: 4px; height: 4px; background: var(--orange); border-radius: 50%; opacity: 0.8; }
.deco-dot--peach { width: 7px; height: 7px; background: #ffd9c6; border-radius: 50%; }
.deco-dot--small { width: 3px; height: 3px; background: var(--orange-light); border-radius: 50%; opacity: 0.6; }

.deco-ring {
  width: 11px;
  height: 11px;
  border: 1.5px solid var(--orange);
  border-radius: 50%;
  opacity: 0.55;
}

.deco-plus {
  width: 9px;
  height: 9px;
  opacity: 0.6;
}

.deco-plus::before,
.deco-plus::after {
  content: "";
  position: absolute;
  background: var(--orange);
  border-radius: 2px;
}

.deco-plus::before { left: 50%; top: 0; width: 1.8px; height: 100%; transform: translateX(-50%); }
.deco-plus::after { top: 50%; left: 0; height: 1.8px; width: 100%; transform: translateY(-50%); }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  font-weight: 600;
  font-size: 11px;
  letter-spacing: 0.2px;
  line-height: 1;
  padding: 9px 18px;
  border-radius: 4px;
  border: 1px solid transparent;
  transition: background var(--transition), color var(--transition),
    transform var(--transition), box-shadow var(--transition);
  white-space: nowrap;
}

.btn-primary {
  background: var(--orange);
  color: var(--white);
  box-shadow: 0 3px 9px rgba(244, 91, 21, 0.2);
}

.btn-primary:hover {
  background: var(--orange-dark);
  transform: translateY(-1px);
  box-shadow: 0 5px 13px rgba(244, 91, 21, 0.28);
}

.btn-outline {
  background: transparent;
  color: var(--orange);
  border-color: #f45b19;
}

.btn-outline:hover {
  background: var(--orange);
  color: var(--white);
  transform: translateY(-1px);
}

.btn-white-outline {
  background: transparent;
  color: var(--white);
  border-color: rgba(255, 255, 255, 0.85);
}

.btn-white-outline:hover {
  background: var(--white);
  color: var(--orange);
  transform: translateY(-1px);
}

.btn-signup {
  padding: 7px 15px;
  font-size: 10.5px;
  letter-spacing: 0.3px;
}

/* Text link (used instead of a button) */
.text-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 11.5px;
  font-weight: 600;
  color: var(--orange);
  letter-spacing: 0.2px;
}

.text-link__arrow {
  display: inline-block;
  transition: transform var(--transition);
}

.text-link:hover .text-link__arrow {
  transform: translateX(4px);
}

/* ==========================================================================
   Header
   ========================================================================== */
.header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: var(--white);
  border-bottom: 1px solid var(--border);
}

.header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 64px;
}

/* Logo */
.logo {
  display: inline-flex;
  align-items: center;
  gap: 7px;
}

.logo__icon {
  width: 19px;
  height: 19px;
  fill: var(--orange);
  transition: transform var(--transition);
}

.logo:hover .logo__icon {
  transform: scale(1.12) rotate(-6deg);
}

.logo__text {
  font-size: 16px;
  font-weight: 700;
  letter-spacing: -0.4px;
  color: var(--text-primary);
}

.logo__text span {
  color: var(--orange);
}

/* Navigation */
.nav__list {
  display: flex;
  align-items: center;
  gap: 26px;
}

.nav__link {
  position: relative;
  font-weight: 500;
  font-size: 11px;
  letter-spacing: 0.3px;
  color: var(--text-primary);
  transition: color var(--transition);
}

.nav__link::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -5px;
  width: 0;
  height: 2px;
  border-radius: 2px;
  background: var(--orange);
  transition: width var(--transition);
}

.nav__link:hover,
.nav__link.active {
  color: var(--orange);
}

.nav__link:hover::after,
.nav__link.active::after {
  width: 100%;
}

.header__actions {
  display: flex;
  align-items: center;
  gap: 12px;
}

/* Hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 4.5px;
  width: 38px;
  height: 38px;
  padding: 9px;
  border-radius: 4px;
  transition: background var(--transition);
}

.hamburger span {
  display: block;
  height: 2px;
  width: 100%;
  border-radius: 2px;
  background: var(--text-primary);
  transition: transform 0.3s ease, opacity 0.3s ease;
}

.hamburger:hover {
  background: var(--cream);
}

.hamburger.open span:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }

/* ==========================================================================
   Hero
   ========================================================================== */
.hero {
  padding: 62px 0 72px;
  position: relative;
}

/* Intentional composition: text narrower, illustration dominant */
.hero__inner {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 24px;
  align-items: center;
}

.hero__title {
  font-size: 48px;
  font-weight: 700;
  line-height: 1.12;
  letter-spacing: -1.2px;
  color: var(--text-primary);
}

.hero__text {
  margin-top: 16px;
  max-width: 285px;
  color: var(--text-secondary);
  font-size: 12.5px;
  line-height: 1.75;
}

.hero__actions {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-top: 24px;
  flex-wrap: wrap;
}

/* Explore link */
.explore-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-weight: 500;
  font-size: 11px;
  letter-spacing: 0.2px;
  color: var(--text-primary);
  transition: color var(--transition);
}

.explore-link:hover {
  color: var(--orange);
}

.explore-link__circle {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  border: 1px solid var(--orange);
  color: var(--orange);
  background: var(--white);
  transition: background var(--transition), color var(--transition),
    transform var(--transition);
}

.explore-link__circle svg {
  width: 13px;
  height: 13px;
}

.explore-link:hover .explore-link__circle {
  background: var(--orange);
  color: var(--white);
  transform: translateY(2px);
}

/* Hero media: larger, pushed toward center, extends past its column */
.hero__media {
  position: relative;
  margin: 0 -8px 0 2px;
}

.hero__illustration {
  width: 100%;
  height: auto;
  display: block;
  mix-blend-mode: multiply;
  filter: drop-shadow(0 18px 28px rgba(65, 40, 24, 0.12));
  animation: float 7s ease-in-out infinite;
}

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

/* Floating 3D accent chips */
.float-chip {
  position: absolute;
  z-index: 2;
  filter: drop-shadow(0 10px 16px rgba(23, 23, 23, 0.16));
  animation: floaty 5.5s ease-in-out infinite;
}

.float-chip--left { top: -6%; left: -1%; }
.float-chip--right { bottom: -3%; right: 4%; }
.float-chip--delay { animation-delay: 1.7s; }

@keyframes floaty {
  0%, 100% { transform: translateY(0) rotate(0deg); }
  50% { transform: translateY(-8px) rotate(3deg); }
}

/* ==========================================================================
   Services
   ========================================================================== */
.services {
  padding: 46px 0 66px;
}

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

.service-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 6px;
  padding: 18px 16px;
  box-shadow: 0 5px 18px rgba(23, 23, 23, 0.045);
  transition: transform var(--transition), box-shadow var(--transition),
    border-color var(--transition);
}

.service-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 24px rgba(23, 23, 23, 0.07);
  border-color: #ffd9c6;
}

/* 3D icon (services) */
.service-card__3d {
  width: 44px;
  height: 44px;
  margin-bottom: 12px;
  filter: drop-shadow(0 6px 10px rgba(23, 23, 23, 0.13));
  transition: transform var(--transition), filter var(--transition);
}

.service-card:hover .service-card__3d {
  transform: rotate(-6deg) scale(1.08);
  filter: drop-shadow(0 9px 14px rgba(244, 91, 21, 0.25));
}

.service-card__title {
  font-size: 13.5px;
  font-weight: 600;
  letter-spacing: -0.1px;
  color: var(--text-primary);
  margin-bottom: 5px;
}

.service-card__text {
  font-size: 10.8px;
  color: var(--text-secondary);
  line-height: 1.62;
}

/* ==========================================================================
   Simple Solutions
   ========================================================================== */
.solutions {
  position: relative;
  background: var(--peach);
  padding: 56px 0 52px;
  overflow: hidden;
}

/* Illustration slightly dominant, text column narrower */
.solutions__inner {
  display: grid;
  grid-template-columns: 1.06fr 0.94fr;
  gap: 34px;
  align-items: center;
}

.solutions__media {
  position: relative;
  margin: -10px 0 -12px -4px;
}

.solutions__illustration {
  width: 100%;
  height: auto;
  display: block;
  mix-blend-mode: multiply;
  filter: drop-shadow(0 16px 26px rgba(118, 67, 35, 0.12));
  animation: float 8s ease-in-out infinite;
}

.solutions__content {
  max-width: 400px;
  justify-self: start;
}

.solutions__text {
  margin-top: 12px;
  color: var(--text-secondary);
  font-size: 12px;
  line-height: 1.75;
}

/* Steps */
.steps {
  margin-top: 20px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.step {
  display: flex;
  align-items: flex-start;
  gap: 11px;
  transition: transform var(--transition);
}

.step:hover {
  transform: translateX(4px);
}

.step__badge {
  flex-shrink: 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 24px;
  height: 24px;
  margin-top: 1px;
  border-radius: 50%;
  background: var(--orange);
  color: var(--white);
  font-weight: 600;
  font-size: 10.5px;
  box-shadow: 0 3px 7px rgba(244, 91, 21, 0.25);
  transition: transform var(--transition), background var(--transition);
}

.step:hover .step__badge {
  background: var(--orange-dark);
  transform: scale(1.07);
}

.step__title {
  font-size: 12.5px;
  font-weight: 600;
  color: var(--text-primary);
  line-height: 1.4;
}

.step__text {
  font-size: 10.5px;
  color: var(--text-tertiary);
  line-height: 1.5;
}

.solutions__actions {
  display: flex;
  gap: 10px;
  margin-top: 24px;
  flex-wrap: wrap;
}

.solutions__actions .btn {
  padding: 8px 16px;
  font-size: 10.5px;
}

/* ==========================================================================
   Our Agency
   ========================================================================== */
.agency {
  padding: 56px 0 44px;
}

.agency__inner {
  display: grid;
  grid-template-columns: 0.86fr 1.14fr;
  gap: 30px;
  align-items: center;
}

.agency__content {
  max-width: 372px;
  justify-self: start;
}

.agency__text {
  margin-top: 14px;
  color: var(--text-secondary);
  font-size: 12px;
  line-height: 1.75;
}

.agency__text + .agency__text {
  margin-top: 10px;
  color: var(--text-tertiary);
}

.agency__content .text-link {
  margin-top: 20px;
}

/* Illustration sits slightly higher than the text block */
.agency__media {
  position: relative;
  margin: -20px -4px -14px 0;
}

.agency__illustration {
  width: 100%;
  height: auto;
  display: block;
  mix-blend-mode: multiply;
  filter: drop-shadow(0 15px 24px rgba(65, 40, 24, 0.1));
  animation: float 7.5s ease-in-out infinite;
}

/* ==========================================================================
   Testimonials
   ========================================================================== */
.testimonials {
  padding: 30px 0 56px;
}

.testimonials .section-head {
  margin-bottom: 24px;
}

.testimonials__viewport {
  position: relative;
  padding: 6px 0;
}

.testimonials__track {
  display: flex;
  gap: 15px;
  overflow-x: auto;
  scroll-behavior: smooth;
  scrollbar-width: none;
  -ms-overflow-style: none;
  scroll-snap-type: x mandatory;
  padding: 4px 2px;
}

.testimonials__track::-webkit-scrollbar {
  display: none;
}

.testimonial-card {
  flex: 0 0 250px;
  scroll-snap-align: start;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 6px;
  padding: 14px 13px 12px;
  box-shadow: 0 5px 18px rgba(23, 23, 23, 0.05);
  display: flex;
  flex-direction: column;
  transition: transform var(--transition), box-shadow var(--transition);
}

.testimonial-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 9px 20px rgba(23, 23, 23, 0.075);
}

/* Oversized quote mark, very light */
.testimonial-card__quote {
  font-size: 30px;
  line-height: 0.6;
  font-weight: 700;
  color: #ffd9c6;
  margin-bottom: 8px;
  font-family: Georgia, "Times New Roman", serif;
}

.testimonial-card__text {
  font-size: 10.8px;
  color: var(--text-secondary);
  line-height: 1.62;
  flex-grow: 1;
  margin-bottom: 12px;
}

.testimonial-card__person {
  display: flex;
  align-items: center;
  gap: 9px;
}

.testimonial-card__person > div:nth-child(2) {
  flex: 1;
  min-width: 0;
}

.testimonial-card__avatar {
  flex-shrink: 0;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: var(--avatar, var(--orange));
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 600;
  font-size: 9.5px;
  letter-spacing: 0.2px;
}

.testimonial-card__name {
  font-size: 11px;
  font-weight: 600;
  color: var(--text-primary);
  line-height: 1.35;
  letter-spacing: -0.1px;
}

.testimonial-card__role {
  font-size: 9.5px;
  color: var(--text-tertiary);
  line-height: 1.35;
}

.testimonial-card__stars {
  display: flex;
  gap: 1.5px;
  margin-left: auto;
}

.testimonial-card__stars svg {
  width: 9px;
  height: 9px;
  fill: #ffb546;
}

/* Carousel arrows overlap the edges */
.carousel-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 5;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  background: var(--white);
  border: 1px solid var(--border);
  box-shadow: 0 3px 10px rgba(23, 23, 23, 0.1);
  color: var(--orange);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background var(--transition), color var(--transition),
    transform var(--transition);
}

.carousel-btn svg {
  width: 13px;
  height: 13px;
}

.carousel-btn:hover {
  background: var(--orange);
  color: var(--white);
  transform: translateY(-50%) scale(1.07);
}

.carousel-btn--prev { left: -12px; }
.carousel-btn--next { right: -12px; }

/* ==========================================================================
   CTA
   ========================================================================== */
.cta {
  padding: 6px 0 64px;
}

.cta__bar {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  background: var(--orange);
  border-radius: 8px;
  padding: 0 34px;
  height: 64px;
  box-shadow: 0 8px 22px rgba(244, 91, 21, 0.22);
}

.cta__rocket {
  position: absolute;
  top: -14px;
  right: 26px;
  width: 40px;
  height: 40px;
  filter: drop-shadow(0 8px 12px rgba(23, 23, 23, 0.18));
  animation: floaty 5.5s ease-in-out infinite;
  z-index: 2;
}

.cta__title {
  color: var(--white);
  font-size: 17px;
  font-weight: 600;
  letter-spacing: -0.3px;
}

.cta__bar .btn {
  padding: 8px 20px;
  font-size: 11px;
}

/* ==========================================================================
   Footer
   ========================================================================== */
.footer {
  background: var(--peach);
  padding-top: 44px;
}

.footer__grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 26px;
  padding-bottom: 40px;
}

.footer__about {
  margin: 12px 0 16px;
  color: var(--text-tertiary);
  font-size: 10.5px;
  line-height: 1.7;
  max-width: 190px;
}

.footer__socials {
  display: flex;
  gap: 7px;
}

.social-link {
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: var(--white);
  border: 1px solid var(--border);
  color: var(--orange);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background var(--transition), color var(--transition),
    transform var(--transition);
}

.social-link svg {
  width: 10px;
  height: 10px;
  fill: currentColor;
}

.social-link:hover {
  background: var(--orange);
  color: var(--white);
  transform: translateY(-2px);
}

.footer__heading {
  font-size: 11.5px;
  font-weight: 600;
  color: var(--text-primary);
  letter-spacing: 0.2px;
  margin-bottom: 12px;
}

.footer__links {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.footer__links a {
  color: var(--text-tertiary);
  font-size: 10px;
  transition: color var(--transition), padding-left var(--transition);
}

.footer__links a:hover {
  color: var(--orange);
  padding-left: 4px;
}

/* Asymmetric organic wave */
.footer__bottom {
  text-align: center;
}

.footer__wave {
  display: block;
  width: 100%;
  height: 64px;
}

.footer__copy {
  background: var(--orange-dark);
  color: #ffe9dd;
  font-size: 10px;
  letter-spacing: 0.4px;
  padding: 11px 0 16px;
}

/* ---------- Scroll reveal ---------- */
.reveal {
  opacity: 0;
  transform: translateY(16px);
  transition: opacity 0.6s ease, transform 0.6s ease;
  will-change: opacity, transform;
}

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

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .reveal { opacity: 1; transform: none; transition: none; }
  .hero__illustration,
  .solutions__illustration,
  .agency__illustration { animation: none; }
}

/* ==========================================================================
   Responsive
   ========================================================================== */

/* --- 1024px tablets --- */
@media (max-width: 1024px) {
  .nav {
    position: fixed;
    top: 64px;
    left: 0;
    right: 0;
    background: var(--white);
    border-bottom: 1px solid var(--border);
    box-shadow: 0 12px 24px rgba(0, 0, 0, 0.08);
    transform: translateY(-130%);
    transition: transform 0.3s ease;
    z-index: 99;
  }

  .nav.open { transform: translateY(0); }

  .nav__list {
    flex-direction: column;
    align-items: flex-start;
    gap: 0;
    padding: 8px 24px 16px;
  }

  .nav__list li { width: 100%; }

  .nav__link {
    display: block;
    padding: 11px 2px;
    border-bottom: 1px solid var(--border);
    font-size: 12.5px;
  }

  .nav__link::after { display: none; }

  .hamburger { display: flex; }

  .hero__title { font-size: 42px; }
  .hero__media { margin-right: -2px; }

  .solutions__inner { grid-template-columns: 1.02fr 0.98fr; gap: 26px; }
}

/* --- 900px --- */
@media (max-width: 900px) {
  .hero { padding: 48px 0 60px; }

  .hero__inner {
    grid-template-columns: 1fr;
    justify-items: center;
    gap: 34px;
  }

  .hero__content { text-align: center; }
  .hero__text { margin-left: auto; margin-right: auto; }
  .hero__actions { justify-content: center; }
  .hero__media { max-width: 520px; margin: 0 auto; }

  .solutions__inner {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .solutions__media { order: -1; max-width: 440px; justify-self: center; margin: -8px auto -12px; }
  .solutions__content { justify-self: center; text-align: center; max-width: 420px; }
  .section-title--left { text-align: center; }
  .solutions__text { margin-left: auto; margin-right: auto; }
  .steps { align-items: center; }
  .step { text-align: left; width: 100%; max-width: 360px; }
  .solutions__actions { justify-content: center; }

  .agency__inner {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .agency__content { justify-self: center; text-align: center; max-width: 420px; }
  .agency__text { margin-left: auto; margin-right: auto; }
  .agency__media { max-width: 480px; justify-self: center; margin: -12px auto -16px; }
}

/* --- 768px --- */
@media (max-width: 768px) {
  .hero__title { font-size: 38px; }
  .section-title { font-size: 24px; }

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

  .cta__bar {
    flex-direction: column;
    justify-content: center;
    gap: 12px;
    height: auto;
    padding: 22px 20px;
    text-align: center;
  }

  .cta__rocket {
    display: none;
  }

  .cta__title { font-size: 16px; }

  .testimonial-card { flex-basis: 235px; }

  .carousel-btn--prev { left: -4px; }
  .carousel-btn--next { right: -4px; }

  .footer__grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
  }

  .footer__wave { height: 48px; }
}

/* --- 480px --- */
@media (max-width: 480px) {
  .container { width: min(100% - 32px, 1000px); }

  .hero__title { font-size: 33px; }

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

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

  .cta { padding-bottom: 48px; }

  .footer__grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .carousel-btn--prev { left: 0; }
  .carousel-btn--next { right: 0; }
}

/* --- 375px --- */
@media (max-width: 375px) {
  .hero__title { font-size: 30px; }
  .section-title { font-size: 21px; }
  .header__actions .btn { display: none; }
  .logo__text { font-size: 15px; }
}

/* ========================================================================
   2026 refresh — warm editorial agency direction
   ======================================================================== */
:root {
  --orange: #ff5b1b;
  --orange-light: #ff8a57;
  --orange-dark: #e9490b;
  --peach: #fff0e7;
  --cream: #fff9f6;
  --text-primary: #202020;
  --text-secondary: #686461;
  --text-tertiary: #9a948e;
  --border: #f1ece8;
  --container: 1140px;
  --transition: 0.25s ease;
}

body {
  font-family: "DM Sans", sans-serif;
  font-size: 14px;
  background: #fffdfc;
}

.container { width: min(100% - 56px, var(--container)); }

.section-title,
.hero__title,
.cta__title,
.service-card__title,
.step__title,
.testimonial-card__name,
.footer__heading {
  font-family: "Manrope", sans-serif;
}

.section-title {
  font-size: clamp(29px, 3vw, 40px);
  font-weight: 800;
  letter-spacing: -1.7px;
  line-height: 1.12;
}

.section-subtitle {
  max-width: 480px;
  margin: 12px auto 0;
  font-size: 13px;
}

.section-kicker,
.hero__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 15px;
  color: var(--orange);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.hero__eyebrow span {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--orange);
  box-shadow: 0 0 0 5px #fff0e8;
}

.btn {
  min-height: 42px;
  padding: 0 19px;
  border-radius: 9px;
  font-size: 12px;
  font-weight: 700;
}

.btn-primary {
  box-shadow: 0 10px 20px rgba(255, 91, 27, .19);
}

.btn-signup { min-height: 38px; padding: 0 17px; }

.header {
  border-bottom-color: #f4efec;
  background: rgba(255, 253, 252, .97);
}

.header__inner { height: 76px; }
.logo { gap: 8px; }
.logo__icon { width: 17px; height: 17px; }
.logo__text { font-family: "Manrope", sans-serif; font-size: 17px; font-weight: 800; }
.nav__list { gap: 31px; }
.nav__link { font-size: 11.5px; font-weight: 600; }

.hero { padding: 72px 0 104px; }
.hero__inner { grid-template-columns: .78fr 1.22fr; gap: 40px; }
.hero__content { max-width: 445px; }
.hero__title {
  font-size: clamp(47px, 4.4vw, 66px);
  font-weight: 800;
  line-height: 1.04;
  letter-spacing: -3.1px;
}
.hero__text { max-width: 360px; margin-top: 19px; font-size: 14px; line-height: 1.72; }
.hero__actions { gap: 17px; margin-top: 29px; }
.explore-link { font-size: 12px; font-weight: 700; }
.explore-link__circle { width: 38px; height: 38px; border-color: #ffc0a3; }

.hero__media {
  isolation: isolate;
  min-height: 430px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0;
  padding: 30px 18px 18px;
  border: 1px solid #f7efeb;
  border-radius: 30px;
  background: linear-gradient(135deg, #fff 0%, #fff9f6 100%);
  box-shadow: 0 28px 55px rgba(51, 27, 17, .08);
}

.hero__media::before {
  content: "";
  position: absolute;
  z-index: -1;
  width: 66%;
  height: 72%;
  right: 3%;
  top: 6%;
  border-radius: 42% 52% 40% 55%;
  background: #fff0e8;
}

.hero__illustration { width: 94%; mix-blend-mode: multiply; filter: drop-shadow(0 19px 22px rgba(92, 48, 26, .13)); }
.float-chip { z-index: 3; }
.float-chip--left { top: 5%; left: 3%; }
.float-chip--right { bottom: 5%; right: 3%; }

.services { padding: 0 0 112px; }
.services .section-head { margin-bottom: 41px; }
.services__grid { gap: 18px; }
.service-card {
  position: relative;
  min-height: 218px;
  padding: 24px 22px 23px;
  border-radius: 17px;
  border-color: #f2edeb;
  box-shadow: 0 12px 30px rgba(57, 32, 20, .055);
}
.service-card:hover { transform: translateY(-7px); box-shadow: 0 22px 35px rgba(57, 32, 20, .09); }
.service-card__3d {
  display: flex;
  width: 58px;
  height: 58px;
  padding: 9px;
  margin-bottom: 20px;
  border-radius: 17px;
  background: #fff5ef;
  filter: drop-shadow(0 7px 10px rgba(90, 48, 25, .13));
}
.service-card__number {
  position: absolute;
  top: 24px;
  right: 22px;
  color: #d9d1cc;
  font-family: "Manrope", sans-serif;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: .08em;
}
.service-card__title { font-size: 16px; font-weight: 800; letter-spacing: -.6px; margin-bottom: 8px; }
.service-card__text { max-width: 215px; font-size: 12px; line-height: 1.65; }

.solutions { padding: 86px 0 78px; }
.solutions__inner { grid-template-columns: 1.05fr .95fr; gap: 72px; }
.solutions__media { margin: -24px 0 -35px; }
.solutions__illustration { filter: drop-shadow(0 20px 26px rgba(118, 67, 35, .12)); }
.solutions__content { max-width: 455px; }
.solutions__text { margin-top: 17px; font-size: 13px; line-height: 1.75; }
.steps { gap: 15px; margin-top: 27px; }
.step { gap: 13px; }
.step__badge { width: 29px; height: 29px; font-size: 11px; box-shadow: 0 6px 12px rgba(255, 91, 27, .22); }
.step__title { font-size: 14px; font-weight: 800; }
.step__text { font-size: 11.5px; line-height: 1.55; }
.solutions__actions { margin-top: 29px; }
.solutions__actions .btn { padding: 0 17px; font-size: 11px; }

.agency { padding: 102px 0 66px; }
.agency__inner { grid-template-columns: .82fr 1.18fr; gap: 58px; }
.agency__content { max-width: 400px; }
.agency__text { font-size: 13px; line-height: 1.8; }
.agency__content .text-link { margin-top: 25px; }
.text-link { font-size: 12px; }
.agency__media { margin: -28px 0 -26px; }

.testimonials { padding: 47px 0 90px; }
.testimonials .section-head { margin-bottom: 34px; }
.testimonials__track { gap: 20px; padding: 8px 3px; }
.testimonial-card { flex-basis: 350px; min-height: 176px; border-radius: 15px; padding: 22px 20px 18px; box-shadow: 0 12px 28px rgba(57, 32, 20, .06); }
.testimonial-card__quote { margin-bottom: 12px; color: #ffb392; font-size: 37px; }
.testimonial-card__text { font-size: 12px; line-height: 1.66; margin-bottom: 17px; }
.testimonial-card__avatar { width: 33px; height: 33px; font-size: 10px; }
.testimonial-card__name { font-size: 11.5px; }
.testimonial-card__role { font-size: 10px; }
.carousel-btn { width: 38px; height: 38px; border-color: #f3ddd2; box-shadow: 0 7px 18px rgba(57, 32, 20, .1); }
.carousel-btn--prev { left: -19px; }
.carousel-btn--next { right: -19px; }

.cta { padding: 0 0 86px; }
.cta__bar {
  min-height: 112px;
  height: auto;
  padding: 25px 34px;
  border-radius: 19px;
  overflow: hidden;
  background: var(--orange);
  box-shadow: 0 19px 30px rgba(255, 91, 27, .22);
}
.cta__bar::before { content: ""; position: absolute; width: 340px; height: 340px; right: 9%; top: -265px; border-radius: 50%; border: 1px solid rgba(255,255,255,.18); }
.cta__title { position: relative; z-index: 1; font-size: 23px; font-weight: 800; letter-spacing: -.8px; }
.cta__bar .btn { position: relative; z-index: 1; padding: 0 22px; }
.cta__rocket { right: 145px; top: -6px; }

.footer { padding-top: 60px; }
.footer__grid { grid-template-columns: 1.45fr repeat(3, 1fr); gap: 42px; padding-bottom: 52px; }
.footer__about { max-width: 235px; font-size: 11.5px; }
.footer__heading { font-size: 12.5px; font-weight: 800; }
.footer__links { gap: 9px; }
.footer__links a { font-size: 11px; }
.footer__wave { height: 74px; }
.footer__copy { padding: 9px 0 16px; font-size: 10px; }

@media (max-width: 1024px) {
  .header__inner { height: 68px; }
  .nav { top: 68px; }
  .hero { padding: 57px 0 75px; }
  .hero__media { min-height: auto; }
  .hero__title { font-size: 49px; }
  .services { padding-bottom: 80px; }
  .solutions__inner { gap: 36px; }
}

@media (max-width: 900px) {
  .hero__inner { gap: 38px; }
  .hero__content { max-width: 585px; }
  .hero__media { width: min(100%, 620px); min-height: 370px; }
  .services__grid { gap: 14px; }
  .solutions__inner { gap: 35px; }
  .solutions__content { max-width: 470px; }
  .agency__inner { gap: 24px; }
}

@media (max-width: 768px) {
  .container { width: min(100% - 40px, var(--container)); }
  .hero { padding: 52px 0 70px; }
  .hero__title { font-size: clamp(39px, 11vw, 54px); }
  .hero__media { min-height: 310px; border-radius: 23px; }
  .services { padding-bottom: 68px; }
  .service-card { min-height: 185px; padding: 19px; }
  .solutions { padding: 68px 0 58px; }
  .agency { padding-top: 70px; }
  .footer__grid { gap: 28px; }
  .cta__rocket { display: none; }
}

@media (max-width: 480px) {
  .container { width: min(100% - 32px, var(--container)); }
  .hero__eyebrow { font-size: 9.5px; }
  .hero__text { font-size: 13px; }
  .hero__media { min-height: auto; padding: 19px 8px; }
  .services__grid { grid-template-columns: 1fr; }
  .service-card { min-height: 170px; }
  .testimonial-card { flex-basis: calc(100vw - 70px); }
  .cta__bar { padding: 25px 20px; }
  .cta__title { font-size: 20px; }
}

/* ========================================================================
   Clean composition pass — let the supplied BrandBuzz artwork lead
   ======================================================================== */
:root {
  --canvas: #fffdfb;
  --surface: #ffffff;
  --surface-soft: #fff6f1;
  --line: #f1e8e3;
  --ink: #23201f;
  --muted: #766f6a;
}

body {
  background: var(--canvas);
  color: var(--muted);
}

.container { width: min(100% - 64px, 1160px); }

/* The imagery already contains enough personality; remove ornamental noise. */
.deco-dot,
.deco-ring,
.deco-plus,
.float-chip { display: none; }

.header {
  background: rgba(255, 253, 251, 0.94);
  border-bottom: 1px solid rgba(35, 32, 31, 0.06);
  backdrop-filter: blur(14px);
}

.header__inner { height: 72px; }
.nav__list { gap: 28px; }
.nav__link { color: #625c57; }
.nav__link:hover,
.nav__link.active { color: var(--orange); }

.btn {
  min-height: 43px;
  padding: 0 19px;
  border-radius: 8px;
  font-size: 12px;
}

.btn-primary {
  box-shadow: 0 10px 22px rgba(255, 91, 27, 0.16);
}

.btn-signup { min-height: 39px; }

.hero { padding: 80px 0 108px; }

.hero__inner {
  grid-template-columns: minmax(0, 0.8fr) minmax(0, 1.2fr);
  gap: 52px;
  align-items: center;
}

.hero__content { max-width: 420px; }

.hero__title {
  color: var(--ink);
  font-size: clamp(48px, 4.3vw, 64px);
  line-height: 1.05;
  letter-spacing: -3px;
}

.hero__text {
  max-width: 350px;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.8;
}

.hero__media {
  min-height: 430px;
  padding: 0;
  border: 0;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
}

.hero__media::before {
  width: 70%;
  height: 74%;
  right: 5%;
  top: 10%;
  background: #fff0e7;
}

.hero__illustration {
  width: 100%;
  max-height: 390px;
  object-fit: contain;
  mix-blend-mode: normal;
  filter: none;
}

.services { padding: 0 0 104px; }
.services .section-head { margin-bottom: 38px; }

.section-title { color: var(--ink); }
.section-subtitle { color: #938b85; }

.services__grid { gap: 16px; }

.service-card {
  min-height: 198px;
  padding: 22px;
  border: 1px solid var(--line);
  border-radius: 14px;
  box-shadow: none;
}

.service-card:hover {
  transform: translateY(-4px);
  border-color: #ffd5c0;
  box-shadow: 0 14px 26px rgba(66, 39, 26, 0.07);
}

.service-card__3d {
  width: 52px;
  height: 52px;
  margin-bottom: 17px;
  padding: 8px;
  border-radius: 14px;
  background: var(--surface-soft);
  filter: none;
}

.service-card__title { color: var(--ink); font-size: 15px; }
.service-card__text { color: var(--muted); font-size: 11.5px; }

.solutions {
  padding: 88px 0;
  background: #fff0e7;
}

.solutions__inner { gap: 70px; }

.solutions__media,
.agency__media {
  margin: 0;
  padding: 0;
  overflow: visible;
  border: 0;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
}

.solutions__illustration,
.agency__illustration {
  width: 100%;
  filter: none;
}

.section-kicker { margin-bottom: 10px; }

.solutions__content .section-title {
  font-size: clamp(32px, 3vw, 42px);
  letter-spacing: -1.9px;
}

.solutions__text,
.agency__text { color: var(--muted); }

.solutions__text {
  max-width: 390px;
  margin-top: 12px;
  font-size: 13px;
  line-height: 1.45;
}

.steps {
  position: relative;
  gap: 13px;
  margin-top: 25px;
}

.steps::before {
  content: "";
  position: absolute;
  top: 29px;
  bottom: 29px;
  left: 18px;
  border-left: 1px dashed #f7b595;
}

.step {
  position: relative;
  gap: 14px;
}

.step__badge {
  z-index: 1;
  width: 38px;
  height: 38px;
  flex: 0 0 38px;
  border: 3px solid #fff0e7;
  box-shadow: 0 3px 8px rgba(255, 91, 27, 0.14);
}

.step__title { color: var(--ink); font-size: 15px; }
.step__text { font-size: 11px; line-height: 1.35; }

.solutions__actions { margin-top: 25px; }
.solutions__actions .btn { min-width: 116px; }

.agency { padding: 104px 0 82px; }
.agency__inner { gap: 74px; align-items: center; }
.agency__content { max-width: 390px; }

.testimonials { padding: 68px 0 92px; }
.testimonials .section-head { max-width: 520px; margin-bottom: 28px; }
.testimonials .section-subtitle { max-width: 430px; }
.testimonials__viewport { padding: 8px 0; }
.testimonials__track { gap: 22px; padding: 8px 2px; }

.testimonial-card {
  position: relative;
  display: flex;
  flex-direction: column;
  flex-basis: 310px;
  min-height: 156px;
  padding: 20px 20px 42px;
  border: 1px solid #eee9e5;
  border-radius: 12px;
  background: var(--surface);
  box-shadow: 0 7px 17px rgba(43, 29, 22, 0.13);
  transition: transform var(--transition), box-shadow var(--transition);
}

.testimonial-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 14px 28px rgba(43, 29, 22, 0.15);
}

.testimonial-card__quote { display: none; }

.testimonial-card__person {
  order: 1;
  align-items: center;
  gap: 10px;
  margin: 0 0 10px;
}

.testimonial-card__avatar {
  width: 33px;
  height: 33px;
  flex: 0 0 33px;
  border: 2px solid #fff5ef;
  box-shadow: 0 2px 5px rgba(43, 29, 22, 0.12);
}

.testimonial-card__name {
  color: var(--orange);
  font-size: 11px;
  line-height: 1.1;
}

.testimonial-card__role {
  margin-top: 2px;
  color: #9a918b;
  font-size: 9px;
  line-height: 1.2;
}

.testimonial-card__text {
  order: 2;
  margin: 0;
  color: #8b827c;
  font-size: 10.5px;
  line-height: 1.45;
}

.testimonial-card__stars {
  position: absolute;
  left: 20px;
  bottom: 18px;
  gap: 2px;
}

.testimonial-card__stars svg {
  width: 12px;
  height: 12px;
  fill: #ff9d24;
}

.carousel-btn {
  width: 34px;
  height: 34px;
  border-color: #eee7e2;
  background: #fff;
  box-shadow: 0 5px 13px rgba(43, 29, 22, 0.15);
}

.carousel-btn--prev { left: -17px; }
.carousel-btn--next { right: -17px; }

.cta {
  position: relative;
  z-index: 2;
  margin-bottom: -47px;
  padding: 0;
}

.cta__bar {
  min-height: 68px;
  padding: 14px 28px;
  border: 2px solid #ed591e;
  border-radius: 8px;
  background: #f15a18;
  box-shadow: 0 5px 0 rgba(204, 65, 11, 0.11);
}
.cta__bar::before { display: none; }
.cta__rocket { display: none; }
.cta__title { font-size: 21px; letter-spacing: -0.65px; }
.cta__bar .btn { min-height: 38px; border-width: 2px; border-radius: 8px; }

.footer {
  padding-top: 104px;
  border-top: 0;
  background: #fff0e7;
}

.footer__grid {
  grid-template-columns: 1.35fr repeat(3, 1fr);
  gap: 56px;
  padding-bottom: 42px;
}

.footer__about { color: #8b817b; }
.footer__heading { margin-bottom: 10px; color: #403a36; }
.footer__links { gap: 6px; }
.footer__links a { color: #7d736d; }
.footer__bottom { display: none; }

@media (max-width: 1024px) {
  .header__inner { height: 68px; }
  .nav { top: 68px; }
  .hero { padding: 60px 0 80px; }
  .hero__inner { gap: 34px; }
  .solutions__inner,
  .agency__inner { gap: 38px; }
}

@media (max-width: 900px) {
  .hero__media { max-width: 620px; min-height: 360px; }
  .solutions__media,
  .agency__media { max-width: 520px; }
}

@media (max-width: 768px) {
  .container { width: min(100% - 40px, 1160px); }
  .hero { padding: 50px 0 72px; }
  .hero__media { min-height: 290px; padding: 16px; }
  .services { padding-bottom: 72px; }
  .solutions { padding: 66px 0; }
  .agency { padding: 72px 0 64px; }
  .cta { margin-bottom: -37px; }
  .cta__bar { min-height: 76px; }
  .footer { padding-top: 92px; }
}

@media (max-width: 480px) {
  .container { width: min(100% - 32px, 1160px); }
  .hero__title { letter-spacing: -2px; }
  .hero__media { min-height: 230px; }
  .solutions__media,
  .agency__media { padding: 0; border-radius: 0; }
  .cta { margin-bottom: -30px; }
  .cta__bar { padding: 18px; }
  .footer { padding-top: 78px; }
}

/* Floating 3D accents: use the existing icon family to frame each illustration. */
.float-chip {
  display: block;
  z-index: 4;
  pointer-events: none;
}

.hero__media .float-chip--left { top: 5%; left: 2%; }
.hero__media .float-chip--right { right: 4%; bottom: 6%; }

.solutions__media .float-chip--solutions-top {
  top: 3%;
  right: 5%;
}

.solutions__media .float-chip--solutions-bottom {
  bottom: 7%;
  left: 3%;
}

.agency__media .float-chip--agency-top {
  top: 3%;
  right: 3%;
}

.agency__media .float-chip--agency-bottom {
  bottom: 8%;
  left: 5%;
}

@media (max-width: 768px) {
  .float-chip { transform: scale(0.82); }
}

@media (max-width: 480px) {
  .solutions__media .float-chip--solutions-bottom,
  .agency__media .float-chip--agency-bottom { display: none; }
}

/* Professional footer signature */
.footer__bottom {
  position: relative;
  display: block;
  height: 88px;
  overflow: hidden;
}

.footer__wave {
  position: absolute;
  inset: 0;
  display: block;
  width: 100%;
  height: 88px;
}

.footer__copy {
  position: absolute;
  z-index: 1;
  right: 0;
  bottom: 13px;
  left: 0;
  padding: 0;
  background: transparent;
  color: rgba(255, 255, 255, 0.88);
  font-size: 9px;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-align: center;
}

@media (max-width: 768px) {
  .footer__bottom,
  .footer__wave { height: 68px; }

  .footer__copy { bottom: 9px; font-size: 8px; }
}
