:root {
  --snaptic-slate: #364152;
  --snaptic-mint: #009666;
  --snaptic-cream: #fdf7ef;
  --snaptic-section3-bg: #fdf7ef;
  --snaptic-section3-text: #004D33;
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  font-family: "Inter", sans-serif;
}

/* HEADER */
.site-header {
  position: fixed;
  top: 20px;
  left: 50%;
  transform: translateX(-50%);
  width: calc(100% - 120px);
  max-width: 1400px;
  padding: 18px 40px;
  z-index: 30000;
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: var(--snaptic-slate);
  border-radius: 999px;
  border: 1px solid white;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
  overflow: hidden;
}

.site-header::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-image: url('Marketing-mosaicBreak.svg');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  opacity: 0.1;
  z-index: 0;
  pointer-events: none;
}

.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: "Poppins", "Nunito", -apple-system, system-ui, sans-serif;
  font-weight: 700;
  font-size: 1.7rem;
  color: #ffffff;
  z-index: 1;
  position: relative;
}

.logo img {
  display: block;
  height: 28px;
  width: auto;
  filter: brightness(0) invert(1);
}

.main-nav {
  display: flex;
  align-items: center;
  gap: 26px;
  font-family: "Nunito", -apple-system, system-ui, sans-serif;
  font-size: 1rem;
  color: #ffffff;
  z-index: 1;
  position: relative;
}

.main-nav a {
  text-decoration: none;
  color: #ffffff;
}

.nav-divider {
  width: 1px;
  height: 20px;
  background: rgba(255, 255, 255, 0.3);
}

/* MOBILE NAVBAR */
.mobile-navbar {
  display: none;
}

.mobile-nav-header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  padding: 16px 20px;
  z-index: 40000;
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.mobile-logo {
  display: flex;
  align-items: center;
}

.mobile-menu-toggle {
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
  display: flex;
  flex-direction: column;
  gap: 5px;
  width: 44px;
  height: 44px;
  justify-content: center;
  align-items: center;
  z-index: 40001;
}

.hamburger-line {
  width: 24px;
  height: 2px;
  background: var(--snaptic-slate);
  transition: all 0.3s ease;
  border-radius: 2px;
}

.mobile-menu-toggle[aria-expanded="true"] .hamburger-line:nth-child(1) {
  transform: rotate(45deg) translate(6px, 6px);
}

.mobile-menu-toggle[aria-expanded="true"] .hamburger-line:nth-child(2) {
  opacity: 0;
}

.mobile-menu-toggle[aria-expanded="true"] .hamburger-line:nth-child(3) {
  transform: rotate(-45deg) translate(6px, -6px);
}

.mobile-menu-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
  z-index: 9999998;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease, visibility 0.3s ease;
}

.mobile-menu-overlay.active {
  opacity: 1;
  visibility: visible;
}

.mobile-menu-panel {
  position: fixed;
  top: 0;
  right: -100%;
  width: 280px;
  max-width: 85vw;
  height: 100%;
  background: #ffffff !important;
  z-index: 9999999;
  box-shadow: -2px 0 10px rgba(0, 0, 0, 0.1);
  transition: right 0.3s ease;
  overflow-y: auto;
  isolation: isolate;
}

.mobile-menu-panel.active {
  right: 0;
}

.mobile-menu-header {
  padding: 16px 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-bottom: 1px solid rgba(54, 65, 82, 0.1);
  background: #ffffff;
  position: sticky;
  top: 0;
  z-index: 1;
}

.mobile-menu-logo {
  display: flex;
  align-items: center;
}

.mobile-menu-close {
  background: none;
  border: none;
  cursor: pointer;
  font-size: 32px;
  color: var(--snaptic-slate);
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0;
  line-height: 1;
}

.close-icon {
  font-size: 36px;
  font-weight: 300;
  color: var(--snaptic-slate);
}

.mobile-menu-links {
  padding: 20px 0;
  display: flex;
  flex-direction: column;
}

.mobile-nav-link {
  padding: 16px 20px;
  text-decoration: none;
  color: var(--snaptic-slate);
  font-family: "Nunito", -apple-system, system-ui, sans-serif;
  font-size: 18px;
  font-weight: 500;
  border-bottom: 1px solid rgba(54, 65, 82, 0.05);
  transition: background-color 0.2s ease;
}

.mobile-nav-link:hover,
.mobile-nav-link:active {
  background-color: rgba(0, 150, 102, 0.05);
}

/* HERO */
.hero {
  position: relative;
  min-height: 100vh;
  overflow: hidden;
  display: flex;
  align-items: center;
}

.hero-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: right center;
  z-index: 1;
}

.hero-splash {
  position: absolute;
  top: 0;
  left: 0;
  width: 70%;
  height: 100%;
  object-fit: cover;
  z-index: 5000;
  mix-blend-mode: screen;
  opacity: 1;
  pointer-events: none;
}

.mobile-white-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(255, 255, 255, 0.6);
  z-index: 6000;
  pointer-events: none;
  display: none;
}

.hero-inner {
  position: relative;
  z-index: 10000;
  padding-left: 4%;
  max-width: 700px;
}

.hero-logo {
  display: none;
  max-width: 100%;
  height: auto;
}

.hero-snaptic-logo {
  height: 70px;
  width: auto;
  display: block;
  margin-bottom: 24px;
  /* Filter to match #009666 (Snaptic Mint) from black */
  filter: brightness(0) saturate(100%) invert(43%) sepia(74%) saturate(2253%) hue-rotate(132deg) brightness(93%) contrast(101%);
}

.hero-inner h2 {
  font-family: "Poppins", "Nunito", -apple-system, system-ui, sans-serif;
  font-size: clamp(3.2rem, 5.5vw, 5rem);
  margin-bottom: 20px;
  color: var(--snaptic-slate);
  font-weight: 800;
  letter-spacing: -0.5px;
}

.hero-inner h1 {
  font-family: "Nunito", -apple-system, system-ui, sans-serif;
  font-size: clamp(2rem, 3.5vw, 3rem);
  line-height: 1.25;
  margin-bottom: 22px;
  font-weight: 700;
  font-style: italic;
  color: var(--snaptic-slate);
}

.hero-inner h1 em {
  color: var(--snaptic-mint);
  font-style: italic;
  font-weight: 700;
}

.hero-inner p {
  font-family: "Nunito", -apple-system, system-ui, sans-serif;
  font-size: clamp(1rem, 1.4vw, 1.4rem);
  margin-bottom: 14px;
  line-height: 1.5;
  color: var(--snaptic-slate);
  font-weight: 400;
  font-style: normal;
}

.ready {
  font-weight: 600;
  font-size: clamp(1.1rem, 1.8vw, 1.6rem);
  margin-top: 10px;
}

/* SECTION 2: MARQUEE */
.next-section {
  padding: 24px 0;
  background: var(--snaptic-slate);
  overflow: hidden;
}

.marquee {
  overflow: hidden;
  width: 100%;
  position: relative;
  display: flex;
  align-items: center;
}

.marquee-track {
  display: inline-flex;
  align-items: center;
  gap: 80px;
  width: max-content;
  animation: marquee 18s linear infinite;
  will-change: transform;
}

.marquee-track img {
  height: 140px;
  width: auto;
  flex-shrink: 0;
  filter: drop-shadow(0 6px 10px rgba(0, 0, 0, 0.08));
  opacity: 0.95;
}

@keyframes marquee {
  0% {
    transform: translateX(0);
  }

  100% {
    transform: translateX(-33.3333%);
  }
}

.hero-see-more {
  position: absolute;
  left: 72px;
  bottom: 60px;
  text-decoration: none;
  cursor: pointer;
  z-index: 10001;
}

.hero-see-more-icon {
  width: 150px;
  height: auto;
  display: block;
}

/* ========= SECTION 3 – CARD LAYOUT WITH SIDE ARROWS ========= */
.results-section {
  background: var(--snaptic-section3-bg);
  color: var(--snaptic-slate);
  padding: 73px 78px 0 78px;
  /* reduced bottom padding so mosaic sits snug */
  font-family: "League Spartan", "Nunito", -apple-system, system-ui, sans-serif;
}

.results-inner {
  max-width: 1120px;
  margin: 0 auto;
  text-align: center;
}

.results-heading {
  font-weight: 700;
  margin-bottom: 8px;
}

.results-subheadline {
  font-size: 18px;
  opacity: 0.9;
  margin-bottom: 58px;
}

.results-stats {
  display: flex;
  justify-content: center;
  align-items: stretch;
  /* make all cards equal height */
  flex-wrap: nowrap;
  margin-bottom: 56px;
}

.result-card {
  background: var(--snaptic-section3-bg);
  /* same as background */
  border-radius: 16px;
  padding: 18px 22px 22px 22px;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  /* start from top */
  align-items: center;
  /* center contents horizontally */
  text-align: center;
  width: 28%;
  margin: 0 2.5%;
  /* 2.5% horizontal margin */
  min-height: 200px;
  /* ensure consistent height */
}

.result-top {
  display: flex;
  align-items: center;
  justify-content: center;
  /* center arrow + number as a block */
  gap: 32px;
  margin-bottom: 24px;
  /* push caption to bottom */
  width: 100%;
}

.result-arrow {
  width: 75px;
  /* medium size (A2 choice) */
  height: auto;
  flex-shrink: 0;
}

.result-main-number {
  font-weight: 700;
  line-height: 1;
  font-size: 60px;
  /* base size so it doesn't shrink on mid-widths */
}

.result-symbol {
  font-size: 0.85em;
  /* make % and × symbols consistent relative size */
  vertical-align: baseline;
}

.result-caption {
  font-size: 18px;
  opacity: 0.92;
  line-height: 1.5;
  margin-top: auto;
  /* push to bottom */
}

.results-body {
  font-family: "Inter", sans-serif;
}

/* Desktop-specific font sizes to better match reference */
@media (min-width: 1024px) {
  .results-heading {
    font-size: 60px;
  }

  .result-main-number {
    font-size: 70px;
  }
}

/* Mosaic full-bleed */
.results-mosaic {
  width: 100vw;
  margin-top: 2vw;
  /* green breathing room above mosaic */
  margin-bottom: 0;
  position: relative;
  left: 50%;
  right: 50%;
  margin-left: -50vw;
  margin-right: -50vw;
  line-height: 0;
  /* kill any white gap from whitespace */
}

.results-mosaic img {
  width: 100%;
  height: auto;
  display: block;
}


/* ========= SECTION 4 – PROCESS / HOW WE WORK ========= */
.process-section {
  background: var(--snaptic-cream);
  color: var(--snaptic-slate);
  padding: 80px 78px;
  font-family: "League Spartan", "Nunito", -apple-system, system-ui, sans-serif;
}

.process-inner {
  max-width: 1120px;
  margin: 0 auto;
  text-align: left;
}

.process-heading {
  font-size: 40px;
  font-weight: 700;
  margin-bottom: 12px;
}

.process-subcopy {
  font-size: 16px;
  max-width: 540px;
  line-height: 1.6;
  opacity: 0.9;
  margin-bottom: 40px;
}

.process-steps {
  display: flex;
  gap: 24px;
  align-items: stretch;
  justify-content: space-between;
  flex-wrap: nowrap;
}

.process-step {
  background: #ffffff;
  border-radius: 20px;
  padding: 24px 24px 26px 24px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.06);
  flex: 1 1 0;
  min-width: 0;
}

/* Left block: square right edges */
.process-step:nth-child(1) {
  border-top-right-radius: 0;
  border-bottom-right-radius: 0;
}

/* Center block: all corners square */
.process-step:nth-child(2) {
  border-radius: 0;
}

/* Right block: square left edges */
.process-step:nth-child(3) {
  border-top-left-radius: 0;
  border-bottom-left-radius: 0;
}

.process-step-label {
  font-size: 13px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  font-weight: 600;
  color: var(--snaptic-mint);
  margin-bottom: 8px;
}

.process-step-title {
  font-size: 20px;
  font-weight: 650;
  margin-bottom: 8px;
}

.process-step-body {
  font-family: "Inter", sans-serif;
}

.cta-button {
  border-radius: 999px !important;
  border: 1px solid white !important;
}



/* ========= SECTION 5 – CONTACT ========= */
.contact-section {
  background: var(--snaptic-slate);
  color: var(--snaptic-cream);
  padding: 72px 78px 56px 78px;
  font-family: "Inter", sans-serif;
}

.contact-inner {
  max-width: 1120px;
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
  align-items: flex-start;
  justify-content: space-between;
}

.contact-main {
  flex: 1 1 360px;
  min-width: 280px;
}

.contact-heading {
  font-size: 36px;
  font-weight: 700;
  margin-bottom: 12px;
}

.contact-subcopy {
  font-size: 16px;
  line-height: 1.6;
  opacity: 0.9;
  max-width: 520px;
}

.contact-details {
  flex: 1 1 320px;
  min-width: 260px;
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.contact-group-title {
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  opacity: 0.75;
  margin-bottom: 8px;
}

.contact-item {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 18px;
  margin-bottom: 12px;
}

.contact-item-icon {
  width: 32px;
  height: 32px;
  border-radius: 999px;
  background: rgba(253, 247, 239, 0.12);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 17px;
}

.contact-links a {
  color: var(--snaptic-cream);
  text-decoration: none;
  opacity: 0.92;
}

.contact-links a:hover {
  text-decoration: underline;
  opacity: 1;
}


/* WHATSAPP FAB */
.whatsapp-fab {
  position: fixed;
  bottom: 24px;
  right: 24px;
  width: 56px;
  height: 56px;
  z-index: 999999;
  cursor: pointer;
  display: block;
}

.whatsapp-fab img {
  width: 100%;
  height: 100%;
  display: block;
}

/* ===================== RESPONSIVE ===================== */

@media (max-width: 1024px) {
  .site-header {
    position: absolute;
    top: 0;
    left: 0;
    transform: none;
    width: 100%;
    max-width: none;
    padding: 18px 32px;
    background: transparent;
    border-radius: 0;
    box-shadow: none;
  }

  .logo {
    color: var(--snaptic-slate);
  }

  .logo img {
    filter: none;
  }

  .main-nav {
    color: var(--snaptic-slate);
  }

  .main-nav a {
    color: var(--snaptic-slate);
  }

  .nav-divider {
    background: rgba(54, 65, 82, 0.4);
  }

  .hero-inner {
    padding-left: 6%;
    max-width: 80%;
  }

  .hero-splash {
    width: 80%;
  }

  .next-section {
    padding: 24px 0;
  }

  .results-section {
    padding: 48px 32px 0 32px;
  }

  .results-stats {
    flex-wrap: wrap;
    gap: 20px;
  }

  .result-card {
    width: 30%;
    margin: 0;
    /* spacing handled by gap */
  }

  .process-section {
    padding: 64px 32px;
  }

  .process-steps {
    flex-wrap: wrap;
  }

  .process-step {
    flex: 1 1 45%;
  }
}

@media (max-width: 768px) {
  .site-header {
    display: none;
  }

  .mobile-navbar {
    display: block;
  }

  .hero-see-more {
    display: none;
  }

  .hero-inner {
    padding-left: 7%;
    padding-right: 7%;
    max-width: 100%;
  }

  .hero-inner h1 {
    font-size: 2.4rem;
  }

  .hero-inner h2 {
    font-size: 1.6rem;
  }

  .hero-inner p {
    font-size: 0.98rem;
  }

  .hero-splash {
    width: 100%;
  }

  .next-section {
    padding: 24px 0;
  }

  .marquee-track {
    gap: 40px;
    animation-duration: 24s;
  }

  .marquee-track img {
    height: 96px;
  }

  .results-section {
    padding: 40px 20px 0 20px;
  }

  .results-stats {
    flex-wrap: wrap;
  }

  .result-card {
    width: 100%;
    max-width: none;
    margin: 10px 0;
  }

  .result-arrow {
    width: 52px;
  }

  .process-section {
    padding: 56px 20px;
  }

  .process-heading {
    font-size: 32px;
    line-height: 1.3;
  }

  .process-steps {
    flex-direction: column;
    gap: 18px;
  }

  .process-step {
    flex: 1 1 auto;
  }

  .process-cta {
    margin-top: 32px !important;
  }

  .process-cta .cta-button {
    padding: 14px 28px !important;
    font-size: 16px !important;
    display: inline-block;
    min-width: 200px;
  }

  .contact-section {
    padding: 32px 20px 24px 20px;
  }

  .contact-heading {
    font-size: 30px;
    margin-bottom: 8px;
  }

  .contact-subcopy {
    margin-bottom: 16px;
  }

  .contact-inner {
    flex-direction: column;
    gap: 16px;
  }

  .contact-main,
  .contact-details {
    min-width: 100%;
    flex: 0 1 auto;
  }

  .contact-details {
    gap: 20px;
  }

  .contact-group-title {
    margin-bottom: 8px;
  }

  .contact-item {
    font-size: 17px;
    margin-bottom: 10px;
  }

  .result-main-number {
    font-size: 50px;
  }

  .results-heading {
    font-size: 40px;
    line-height: 1.2;
  }

  .results-subheadline,
  .result-caption,
  .results-body {
    font-family: "Inter", sans-serif;
  }

  .whatsapp-fab {
    width: 48px;
    height: 48px;
    bottom: 18px;
    right: 18px;
  }
}

@media (max-width: 480px) {
  .site-header {
    display: none;
  }

  .mobile-navbar {
    display: block;
  }

  .hero-see-more {
    display: none;
  }

  .hero-splash {
    display: none;
  }

  .mobile-white-overlay {
    display: block;
  }

  .hero-inner {
    padding-left: 10%;
    padding-right: 10%;
    max-width: 100%;
    text-align: center;
  }

  .hero-logo {
    display: block;
    width: 50%;
    margin: 0 auto 20px auto;
  }

  .hero-inner h1 {
    display: none;
  }

  .hero-inner h2 {
    font-size: 1.4rem;
    margin-bottom: 16px;
  }

  .hero-inner p {
    font-size: 0.95rem;
  }

  .ready {
    font-size: 1rem;
  }

  .next-section {
    padding: 16px 0;
  }

  .marquee-track {
    gap: 24px;
    animation-duration: 26s;
  }

  .marquee-track img {
    height: 80px;
  }

  .results-section {
    padding: 36px 18px 0 18px;
  }

  .results-stats {
    flex-wrap: wrap;
  }

  .result-card {
    width: 100%;
    margin: 10px 0;
  }

  .result-arrow {
    width: 48px;
  }

  .result-main-number {
    font-size: 44px;
  }

  .process-section {
    padding: 48px 18px;
  }

  .process-heading {
    font-size: 28px;
    line-height: 1.3;
  }

  .process-subcopy {
    font-size: 14px;
  }

  .process-cta {
    margin-top: 28px !important;
  }

  .process-cta .cta-button {
    padding: 12px 24px !important;
    font-size: 15px !important;
    display: inline-block;
    width: 100%;
    max-width: 280px;
    text-align: center;
  }

  .mobile-menu-panel {
    width: 260px;
    max-width: 90vw;
  }

  .mobile-nav-header {
    padding: 14px 16px;
  }

  .contact-section {
    padding: 28px 18px 20px 18px;
  }

  .contact-heading {
    font-size: 26px;
    margin-bottom: 6px;
  }

  .contact-subcopy {
    font-size: 14px;
    margin-bottom: 14px;
    line-height: 1.5;
  }

  .contact-item {
    font-size: 16px;
    margin-bottom: 10px;
  }

  .contact-inner {
    gap: 14px;
  }

  .contact-details {
    gap: 18px;
    align-items: flex-start;
  }

  .contact-group-title {
    margin-bottom: 8px;
  }

  .contact-main {
    text-align: left;
    flex: 0 1 auto;
  }

  .contact-group-title {
    margin-bottom: 10px;
    margin-top: 0;
  }



  .results-heading {
    font-size: 36px;
    line-height: 1.2;
  }

  .results-subheadline,
  .result-caption,
  .results-body {
    font-family: "Inter", sans-serif;
  }

  .whatsapp-fab {
    width: 44px;
    height: 44px;
    bottom: 16px;
    right: 16px;
  }
}

h1,
h2,
h3,
h4 {
  font-family: "Poppins", "Inter", sans-serif;
  font-weight: 600;
}