/* ── BASE RESET ── */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  background-color: #000000;
  color: #ffffff;
  font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  overflow-x: hidden;
  transition: background-color 0.3s ease, color 0.3s ease;
}

body.light-mode {
  background-color: #ffffff;
  color: #000000;
}

/* ── NAVBAR ── */
.navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 40px 80px;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  background-color: transparent;
  transition: all 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.navbar::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background-color: transparent;
  z-index: -1;
  transition: all 0.6s cubic-bezier(0.16, 1, 0.3, 1);
  pointer-events: none;
}

.navbar .logo img {
  height: 50px;
  transition: height 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.nav-content {
  display: flex;
  align-items: center;
  gap: 40px;
}

.hamburger {
  display: none;
  flex-direction: column;
  gap: 8px;
  cursor: pointer;
  z-index: 1001;
}

.hamburger span {
  display: block;
  width: 32px;
  height: 2px;
  border-radius: 2px;
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1), background-color 0.3s ease;
}

.hamburger span:nth-child(1) {
  background-color: #f46b2f;
}

.hamburger span:nth-child(2) {
  background-color: #ffffff;
}

body.light-mode .hamburger span:nth-child(2) {
  background-color: #000000;
}

.hamburger.active span:nth-child(1) {
  transform: translateY(5px) rotate(45deg);
}

.hamburger.active span:nth-child(2) {
  transform: translateY(-5px) rotate(-45deg);
}

.navbar.scrolled-nav {
  top: 20px;
  width: 80%;
  left: 10%;
  padding: 15px 40px;
  border-radius: 50px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.4);
}

.navbar.scrolled-nav::before {
  background-color: rgba(20, 20, 20, 0.85);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
}

.navbar.scrolled-nav .logo img {
  height: 35px;
}

body.light-mode .navbar.scrolled-nav {
  border: 1px solid rgba(0, 0, 0, 0.1);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
}

body.light-mode .navbar.scrolled-nav::before {
  background-color: rgba(255, 255, 255, 0.85);
}

.nav-links {
  display: flex;
  list-style: none;
  gap: 40px;
}

.nav-links a {
  color: #ffffff;
  text-decoration: none;
  font-size: 16px;
  font-weight: 400;
  position: relative;
  padding-bottom: 5px;
  transition: color 0.3s ease;
}

body.light-mode .nav-links a {
  color: #000000;
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -5px;
  left: 0;
  width: 100%;
  height: 2px;
  background-color: #f46b2f;
  opacity: 0;
  transition: all 0.3s ease;
}

.nav-links a:hover::after {
  bottom: 0;
  opacity: 1;
}

.nav-active {
  color: #f46b2f !important;
}

.nav-active::after {
  opacity: 1 !important;
  bottom: 0 !important;
}

.btn-outline {
  background-color: transparent;
  color: #ffffff;
  border: 1px solid #f46b2f;
  padding: 12px 24px;
  border-radius: 6px;
  font-size: 16px;
  font-weight: 400;
  cursor: pointer;
  position: relative;
  z-index: 1;
  overflow: hidden;
  transition: color 0.3s ease, background-color 0.3s ease;
  text-decoration: none;
  display: inline-block;
}

.btn-outline::before {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 0%;
  background-color: #f46b2f;
  transition: height 0.3s ease;
  z-index: -1;
}

.btn-outline:hover::before {
  height: 100%;
}

.btn-outline:hover {
  color: #ffffff;
}

.navbar.scrolled-nav .btn-outline {
  background-color: #f46b2f;
  color: #ffffff;
}

body.light-mode .btn-outline {
  color: #000000;
}

body.light-mode .navbar.scrolled-nav .btn-outline {
  color: #ffffff;
}

body.light-mode .btn-outline:hover {
  color: #ffffff;
}

/* ── ANIMATION UTILITIES ── */
.hidden-top {
  transform: translateY(-100%) !important;
  opacity: 0 !important;
  pointer-events: none !important;
}

.hidden-bottom {
  transform: translateY(40px) !important;
  opacity: 0 !important;
  pointer-events: none !important;
}

.show-nav {
  transform: none;
  opacity: 1;
}

.show-element {
  transform: translateY(0);
  opacity: 1;
  transition: transform 0.8s cubic-bezier(0.25, 1, 0.5, 1), opacity 0.8s ease;
}

/* ── SECTION LABEL ── */
.section-label {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: clamp(14px, 1.5vw, 17px);
  font-weight: 300;
  color: #ffffff;
  margin-bottom: 20px;
  transition: color 0.3s ease;
}

body.light-mode .section-label {
  color: #000000;
}

.section-label .dot {
  width: 12px;
  height: 12px;
  background-color: #f46b2f;
  border-radius: 50%;
  display: inline-block;
  flex-shrink: 0;
}

/* ── SERVICES HERO ── */
.services-hero {
  position: relative;
  width: 100%;
  height: 70vh;
  min-height: 460px;
  background-color: #111111;
  background-image: url('img/services-hero.jpg');
  background-size: cover;
  background-position: center top;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
}

body.light-mode .services-hero {
  background-color: #e8e8e8;
}

body.light-mode .services-hero-overlay {
  background: linear-gradient(to top,
      rgba(255, 255, 255, 0.82) 0%,
      rgba(255, 255, 255, 0.2) 50%,
      rgba(255, 255, 255, 0.35) 100%);
}

body.light-mode .services-hero-title {
  color: #000000;
}

body.light-mode .services-hero-label {
  color: #000000 !important;
}

.services-hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top,
      rgba(0, 0, 0, 0.88) 0%,
      rgba(0, 0, 0, 0.3) 50%,
      rgba(0, 0, 0, 0.5) 100%);
  z-index: 1;
}

.services-hero-content {
  position: relative;
  z-index: 2;
  padding: 60px 80px;
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 1s ease, transform 1s cubic-bezier(0.25, 1, 0.5, 1);
}

.services-hero-content.hero-content--visible {
  opacity: 1;
  transform: translateY(0);
}

.services-hero-label {
  color: #ffffff !important;
  margin-bottom: 16px;
}

.services-hero-title {
  font-size: clamp(72px, 12vw, 160px);
  font-weight: 700;
  font-style: italic;
  color: #ffffff;
  line-height: 0.95;
  letter-spacing: -4px;
}

/* ── SERVICES BENTO GRID ── */
.services-grid-section {
  background-color: #0a0a0a;
  padding: 3px 3px 90px;
}

body.light-mode .services-grid-section {
  background-color: #d8d8d8;
}

.services-bento-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-template-rows: clamp(300px, 28vw, 400px) clamp(260px, 24vw, 360px);
  gap: 3px;
}

/* ── SERVICE CARD BASE ── */
.service-card {
  position: relative;
  overflow: hidden;
  background-color: #111111;
  background-size: cover;
  background-position: center;
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.6s ease, transform 0.6s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.service-card.card--visible {
  opacity: 1;
  transform: translateY(0);
}

.service-card:hover {
  z-index: 2;
}

.service-card:hover .card-overlay {
  opacity: 0.6;
}

.card-overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  transition: opacity 0.4s ease;
  pointer-events: none;
}

.card-body {
  position: relative;
  z-index: 2;
  padding: 36px 40px;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  gap: 10px;
}

.card-body--bottom {
  justify-content: flex-end;
}

.card-label {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 3.5px;
  text-transform: uppercase;
  color: #f46b2f;
  margin-bottom: 2px;
}

.card-title {
  font-size: clamp(22px, 2.6vw, 38px);
  font-weight: 700;
  color: #ffffff;
  line-height: 1.05;
  text-transform: uppercase;
  letter-spacing: -0.5px;
}

.card-desc {
  font-size: clamp(12px, 1vw, 14px);
  font-weight: 400;
  color: rgba(255, 255, 255, 0.68);
  line-height: 1.65;
  max-width: 380px;
}

.card-quote {
  font-size: clamp(13px, 1.1vw, 15px);
  font-weight: 300;
  color: rgba(255, 255, 255, 0.75);
}

.card-line {
  width: 36px;
  height: 2px;
  background-color: #f46b2f;
  margin-top: 8px;
}

.card-bullets {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-top: 12px;
}

.card-bullets li {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.6);
  display: flex;
  align-items: center;
  gap: 10px;
}

.card-bullets li::before {
  content: '';
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background-color: #f46b2f;
  flex-shrink: 0;
}

.card-cta-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: #f46b2f;
  text-decoration: none;
  margin-top: 12px;
  transition: gap 0.3s ease;
}

.card-cta-link:hover {
  gap: 14px;
}

.card-cta-link::after {
  content: '→';
  font-size: 14px;
  letter-spacing: 0;
}

.card-icon-box {
  position: absolute;
  top: 20px;
  right: 20px;
  z-index: 3;
  width: 42px;
  height: 42px;
  border: 1.5px solid #f46b2f;
  border-radius: 4px;
  background: rgba(244, 107, 47, 0.12);
  display: flex;
  align-items: center;
  justify-content: center;
}

.card-icon-box img {
  width: 22px;
  height: 22px;
  object-fit: contain;
  filter: brightness(0) invert(1);
}

/* ── INDIVIDUAL CARD PLACEMENT & BG ── */
.card-brand-positioning {
  grid-column: 1 / 3;
  grid-row: 1;
  background-color: #1c1510;
  background-image: url('img/service-brand.jpg');
}

.card-brand-positioning .card-overlay {
  background: linear-gradient(to top, rgba(0, 0, 0, 0.88) 0%, rgba(0, 0, 0, 0.2) 60%, rgba(0, 0, 0, 0.45) 100%);
}

.card-ai-visibility {
  grid-column: 3 / 4;
  grid-row: 1;
  background-color: #0c0c0c;
  background-image: url('img/service-ai.jpg');
}

.card-ai-visibility .card-overlay {
  background: linear-gradient(135deg, rgba(0, 0, 0, 0.55) 0%, rgba(0, 0, 0, 0.9) 100%);
}

.card-creative-systems {
  grid-column: 1 / 2;
  grid-row: 2;
  background-color: #08080f;
  background-image: url('img/service-creative.jpg');
}

.card-creative-systems .card-overlay {
  background: linear-gradient(to top, rgba(0, 0, 0, 0.95) 0%, rgba(0, 0, 0, 0.45) 55%, rgba(0, 0, 0, 0.2) 100%);
}

.card-paid-media {
  grid-column: 2 / 3;
  grid-row: 2;
  background-color: #0d0d0d;
  background-image: url('img/service-paid.jpg');
}

.card-paid-media .card-overlay {
  background: rgba(0, 0, 0, 0.55);
}

.card-conversion-systems {
  grid-column: 3 / 4;
  grid-row: 2;
  background-color: #0d100e;
  background-image: url('img/service-conversion.jpg');
}

.card-conversion-systems .card-overlay {
  background: linear-gradient(to bottom left, rgba(0, 0, 0, 0.4) 0%, rgba(0, 0, 0, 0.85) 100%);
}

/* Subtle hover border glow */
.service-card::after {
  content: '';
  position: absolute;
  inset: 0;
  z-index: 4;
  box-shadow: inset 0 0 0 0px rgba(244, 107, 47, 0.5);
  transition: box-shadow 0.35s ease;
  pointer-events: none;
}

.service-card:hover::after {
  box-shadow: inset 0 0 0 1.5px rgba(244, 107, 47, 0.4);
}

/* ── LIGHT MODE: BENTO GRID ── */
body.light-mode .service-card {
  background-color: #f5f5f5;
}

body.light-mode .card-title {
  color: #000000;
}

body.light-mode .card-desc {
  color: rgba(0, 0, 0, 0.65);
}

body.light-mode .card-quote {
  color: rgba(0, 0, 0, 0.65);
}

body.light-mode .card-bullets li {
  color: rgba(0, 0, 0, 0.6);
}

body.light-mode .card-icon-box img {
  filter: none;
}

body.light-mode .card-brand-positioning {
  background-color: #ede8e0;
}

body.light-mode .card-brand-positioning .card-overlay {
  background: linear-gradient(to top, rgba(255, 255, 255, 0.82) 0%, rgba(255, 255, 255, 0.1) 60%, rgba(255, 255, 255, 0.2) 100%);
}

body.light-mode .card-ai-visibility {
  background-color: #efefef;
}

body.light-mode .card-ai-visibility .card-overlay {
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.5) 0%, rgba(255, 255, 255, 0.75) 100%);
}

body.light-mode .card-creative-systems {
  background-color: #eaeaf2;
}

body.light-mode .card-creative-systems .card-overlay {
  background: linear-gradient(to top, rgba(255, 255, 255, 0.9) 0%, rgba(255, 255, 255, 0.4) 55%, rgba(255, 255, 255, 0.15) 100%);
}

body.light-mode .card-paid-media {
  background-color: #f0f0f0;
}

body.light-mode .card-paid-media .card-overlay {
  background: rgba(255, 255, 255, 0.5);
}

body.light-mode .card-conversion-systems {
  background-color: #eaf0ea;
}

body.light-mode .card-conversion-systems .card-overlay {
  background: linear-gradient(to bottom left, rgba(255, 255, 255, 0.35) 0%, rgba(255, 255, 255, 0.75) 100%);
}

/* ── FOOTER ── */
.site-footer {
  background-color: #ffffff;
  border-radius: 40px;
  padding: 100px 80px 0;
  color: #000000;
  width: calc(100% - 40px);
  margin: -70px auto 20px;
  position: relative;
  z-index: 10;
  overflow: hidden;
  transition: background-color 0.3s ease, color 0.3s ease,
    transform 0.8s cubic-bezier(0.25, 1, 0.5, 1), opacity 0.8s ease;
}

body.light-mode .site-footer {
  background-color: #000000;
  color: #ffffff;
}

.footer-content-wrapper {
  max-width: 1300px;
  width: 100%;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
}

.footer-logo-row {
  margin-bottom: 50px;
}

.footer-brand {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.footer-logo {
  height: 60px;
  width: auto;
  object-fit: contain;
  object-position: left center;
  transition: opacity 0.3s ease;
}

.footer-tagline {
  font-size: 14px;
  font-weight: 500;
}
/* Dark Mode ONLY Hover effect for ALL cards: Transforms into Dark Gray variant */
body:not(.light-mode) .service-card:hover {
  background-color: #2a2c2e; /* Darker Gray */
  transition: background-color 0.4s ease;
}

body:not(.light-mode) .service-card:hover .card-overlay {
  background: linear-gradient(to top, rgba(42, 44, 46, 0.95) 0%, rgba(42, 44, 46, 0.4) 60%, rgba(42, 44, 46, 0.6) 100%);
  opacity: 0.95; 
  transition: background 0.4s ease, opacity 0.4s ease;
}

body:not(.light-mode) .service-card:hover .card-title {
  color: #ffffff;
  transition: color 0.4s ease;
}

body:not(.light-mode) .service-card:hover .card-desc,
body:not(.light-mode) .service-card:hover .card-quote,
body:not(.light-mode) .service-card:hover .card-bullets li {
  color: rgba(255, 255, 255, 0.68);
  transition: color 0.4s ease;
}
.footer-main-row {
  display: flex;
  justify-content: space-between;
  gap: 40px;
  margin-bottom: 80px;
}

.footer-links-container {
  display: flex;
  gap: 120px;
}

.footer-col {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer-heading {
  font-size: 14px;
  font-weight: 500;
  color: #888888;
  margin-bottom: 5px;
}

.footer-col a,
.footer-contact p,
.footer-contact-link,
.footer-copyright p {
  font-size: 17px;
  font-weight: 400;
  color: #000000;
  text-decoration: none;
  line-height: 1.6;
  transition: color 0.3s ease;
}

body.light-mode .footer-col a,
body.light-mode .footer-contact p,
body.light-mode .footer-contact-link,
body.light-mode .footer-copyright p {
  color: #ffffff;
}

.footer-col a:hover,
.footer-contact-link:hover {
  color: #f46b2f;
}

.footer-newsletter {
  display: flex;
  flex-direction: column;
  gap: 10px;
  max-width: 400px;
}

.newsletter-title {
  font-size: 22px;
  font-weight: 700;
  letter-spacing: -0.5px;
}

.newsletter-desc {
  font-size: 15px;
  font-weight: 500;
  line-height: 1.4;
  margin-bottom: 15px;
}

.newsletter-form {
  display: flex;
  background-color: #000000;
  border-radius: 50px;
  padding: 6px;
  width: 100%;
  transition: background-color 0.3s ease;
}

body.light-mode .newsletter-form {
  background-color: rgba(255, 255, 255, 0.15);
}

.newsletter-form input {
  background: transparent;
  border: none;
  padding: 12px 20px;
  color: #ffffff;
  font-size: 14px;
  flex-grow: 1;
  outline: none;
}

.newsletter-form input::placeholder {
  color: rgba(255, 255, 255, 0.6);
}

.newsletter-form button {
  background-color: #ffffff;
  color: #000000;
  border: none;
  padding: 12px 28px;
  border-radius: 40px;
  font-size: 14px;
  font-weight: 500;
  cursor: pointer;
  transition: transform 0.3s ease, background-color 0.3s ease;
}

body.light-mode .newsletter-form button {
  background-color: #f46b2f;
  color: #ffffff;
}

.newsletter-form button:hover {
  transform: scale(1.05);
}

.footer-bottom-row {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  padding-bottom: 60px;
}

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

/* ── THEME BUTTON ── */
.theme-btn {
  position: fixed;
  bottom: 40px;
  left: 40px;
  background: transparent;
  color: #ffffff;
  border: none;
  font-size: 28px;
  cursor: pointer;
  transition: color 0.3s ease, transform 0.2s ease;
  z-index: 1000;
  padding: 0;
}

.theme-btn:hover {
  transform: scale(1.1);
}

body.light-mode .theme-btn {
  background: transparent;
  color: #000000;
}

/* ── RESPONSIVE ── */
@media (min-width: 1440px) {
  .navbar {
    padding: 50px 120px;
  }

  .navbar.scrolled-nav {
    padding: 15px 60px;
    width: 70%;
    left: 15%;
  }
}

@media (max-width: 1366px) {
  .navbar {
    padding: 40px 60px;
  }

  .navbar.scrolled-nav {
    width: 85%;
    left: 7.5%;
  }
}

@media (max-width: 1024px) {
  .navbar {
    flex-direction: row;
    padding: 30px 40px;
  }

  .navbar.scrolled-nav {
    flex-direction: row;
    padding: 15px 30px;
    width: 90%;
    left: 5%;
  }

  .hamburger {
    display: flex;
  }

  .nav-content {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background-color: rgba(20, 20, 20, 0.95);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    flex-direction: column;
    padding: 50px 20px 80px;
    border-radius: 30px 30px 0 0;
    transform: translateY(100%);
    visibility: hidden;
    opacity: 0;
    transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1), opacity 0.6s ease, visibility 0.6s;
    z-index: -1;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 -10px 40px rgba(0, 0, 0, 0.5);
  }

  .nav-content.active {
    transform: translateY(0);
    visibility: visible;
    opacity: 1;
  }

  body.light-mode .nav-content {
    background-color: rgba(255, 255, 255, 0.95);
    border-top: 1px solid rgba(0, 0, 0, 0.1);
    box-shadow: 0 -10px 40px rgba(0, 0, 0, 0.1);
  }

  .nav-links {
    flex-direction: column;
    align-items: center;
    gap: 25px;
  }

  .nav-links a {
    font-size: 20px;
  }

  .services-hero {
    height: 60vh;
    min-height: 380px;
  }

  .services-hero-content {
    padding: 40px;
  }

  .services-bento-grid {
    grid-template-columns: repeat(2, 1fr);
    grid-template-rows: auto;
  }

  .card-brand-positioning {
    grid-column: 1 / 3;
    grid-row: 1;
    min-height: 320px;
  }

  .card-ai-visibility {
    grid-column: 1 / 2;
    grid-row: 2;
    min-height: 280px;
  }

  .card-creative-systems {
    grid-column: 2 / 3;
    grid-row: 2;
    min-height: 280px;
  }

  .card-paid-media {
    grid-column: 1 / 2;
    grid-row: 3;
    min-height: 280px;
  }

  .card-conversion-systems {
    grid-column: 2 / 3;
    grid-row: 3;
    min-height: 280px;
  }

  .site-footer {
    padding: 80px 40px 0;
    border-radius: 30px;
    width: calc(100% - 20px);
    margin: 0 auto 20px;
  }

  .footer-main-row {
    flex-direction: column;
    gap: 60px;
  }

  .footer-links-container {
    flex-wrap: wrap;
    gap: 50px;
  }

  .footer-bottom-row {
    flex-direction: column;
    align-items: flex-start;
    gap: 40px;
  }
}

/* ── MOBILE: 600px and below ── */
@media (max-width: 600px) {
  .navbar {
    padding: 20px;
  }

  .navbar.scrolled-nav {
    padding: 12px 16px;
    top: 10px;
    width: 95%;
    left: 2.5%;
  }

  .navbar .logo img {
    height: 38px;
  }

  .navbar.scrolled-nav .logo img {
    height: 30px;
  }

  .services-hero {
    height: 55vh;
    min-height: 320px;
  }

  .services-hero-content {
    padding: 28px 20px;
    overflow: hidden;
  }

  .services-hero-title {
    font-size: clamp(52px, 14vw, 80px) !important;
    letter-spacing: -2px;
  }

  .services-grid-section {
    padding: 3px 3px 60px;
  }

  .services-bento-grid {
    grid-template-columns: 1fr;
    grid-template-rows: auto;
    gap: 3px;
  }

  .card-brand-positioning,
  .card-ai-visibility,
  .card-creative-systems,
  .card-paid-media,
  .card-conversion-systems {
    grid-column: 1 / 2;
    min-height: 260px;
  }

  .card-brand-positioning {
    grid-row: 1;
  }

  .card-ai-visibility {
    grid-row: 2;
  }

  .card-creative-systems {
    grid-row: 3;
  }

  .card-paid-media {
    grid-row: 4;
  }

  .card-conversion-systems {
    grid-row: 5;
  }

  .card-body {
    padding: 24px 20px;
    gap: 8px;
  }

  .card-title {
    font-size: clamp(20px, 6vw, 28px);
  }

  .card-desc {
    font-size: 13px;
    max-width: 100%;
  }

  .site-footer {
    padding: 50px 20px 0;
    border-radius: 20px;
    width: calc(100% - 16px);
    margin: 0 auto 10px;
  }

  .footer-links-container {
    flex-direction: column;
    gap: 36px;
  }

  .footer-newsletter {
    max-width: 100%;
  }

  .newsletter-title {
    font-size: 18px;
  }

  .newsletter-form {
    flex-wrap: wrap;
    border-radius: 14px;
    gap: 8px;
    padding: 8px;
  }

  .newsletter-form input {
    width: 100%;
    padding: 10px 14px;
  }

  .newsletter-form button {
    width: 100%;
    border-radius: 10px;
    padding: 12px;
  }

  .footer-col a,
  .footer-contact p,
  .footer-contact-link,
  .footer-copyright p {
    font-size: 15px;
  }

  .theme-btn {
    bottom: 20px;
    left: 20px;
    font-size: 22px;
  }
}

/* ── MOBILE: 480px and below ── */
@media (max-width: 480px) {
  .navbar {
    padding: 16px 16px;
  }

  .navbar.scrolled-nav {
    padding: 10px 14px;
    top: 8px;
    width: 96%;
    left: 2%;
  }

  .navbar .logo img {
    height: 34px;
  }

  .services-hero {
    height: 52vh;
    min-height: 300px;
  }

  .services-hero-content {
    padding: 24px 16px;
    overflow: hidden;
  }

  .services-hero-title {
    font-size: clamp(46px, 14vw, 68px) !important;
    letter-spacing: -1.5px;
  }

  .card-brand-positioning,
  .card-ai-visibility,
  .card-creative-systems,
  .card-paid-media,
  .card-conversion-systems {
    min-height: 240px;
  }

  .card-body {
    padding: 20px 16px;
  }

  .card-label {
    font-size: 9px;
    letter-spacing: 2.5px;
  }

  .site-footer {
    padding: 40px 16px 0;
    border-radius: 16px;
  }

  .footer-logo {
    height: 46px;
  }

  .newsletter-title {
    font-size: 16px;
  }

  .footer-bottom-row {
    gap: 28px;
    padding-bottom: 40px;
  }

  .nav-content {
    padding: 40px 16px 70px;
  }

  .nav-links a {
    font-size: 18px;
  }

  .btn-outline {
    padding: 10px 20px;
    font-size: 14px;
  }
}

/* ── MOBILE: 375px and below ── */
@media (max-width: 375px) {
  .navbar {
    padding: 14px 14px;
  }

  .navbar .logo img {
    height: 30px;
  }

  .hamburger span {
    width: 26px;
  }

  .services-hero {
    height: 50vh;
    min-height: 280px;
  }

  .services-hero-content {
    padding: 20px 14px;
    overflow: hidden;
  }

  .services-hero-title {
    font-size: clamp(38px, 14vw, 60px) !important;
    letter-spacing: -1px;
  }

  .section-label {
    font-size: 12px;
    gap: 8px;
  }

  .section-label .dot {
    width: 10px;
    height: 10px;
  }

  .card-brand-positioning,
  .card-ai-visibility,
  .card-creative-systems,
  .card-paid-media,
  .card-conversion-systems {
    min-height: 220px;
  }

  .card-body {
    padding: 16px 14px;
    gap: 6px;
  }

  .card-title {
    font-size: clamp(18px, 5.5vw, 24px);
  }

  .card-desc {
    font-size: 12px;
    line-height: 1.55;
  }

  .card-quote {
    font-size: 12px;
  }

  .card-bullets li {
    font-size: 9px;
  }

  .site-footer {
    padding: 34px 14px 0;
    border-radius: 14px;
    width: calc(100% - 12px);
  }

  .footer-logo {
    height: 40px;
  }

  .footer-logo-row {
    margin-bottom: 32px;
  }

  .footer-main-row {
    gap: 40px;
    margin-bottom: 50px;
  }

  .footer-links-container {
    gap: 28px;
  }

  .footer-col a,
  .footer-contact p,
  .footer-contact-link,
  .footer-copyright p {
    font-size: 14px;
  }

  .newsletter-title {
    font-size: 15px;
  }

  .newsletter-desc {
    font-size: 13px;
  }

  .theme-btn {
    bottom: 16px;
    left: 14px;
    font-size: 20px;
  }
}

/* ── MOBILE: 320px (smallest supported) ── */
@media (max-width: 320px) {
  .navbar {
    padding: 12px 12px;
  }

  .navbar .logo img {
    height: 26px;
  }

  .hamburger span {
    width: 22px;
  }

  .hamburger {
    gap: 6px;
  }

  .services-hero {
    height: 48vh;
    min-height: 260px;
  }

  .services-hero-content {
    padding: 16px 12px;
    overflow: hidden;
  }

  .services-hero-title {
    font-size: 13vw !important;
    letter-spacing: -0.5px;
    line-height: 0.95;
  }

  .section-label {
    font-size: 11px;
  }

  .services-grid-section {
    padding: 2px 2px 50px;
  }

  .services-bento-grid {
    gap: 2px;
  }

  .card-brand-positioning,
  .card-ai-visibility,
  .card-creative-systems,
  .card-paid-media,
  .card-conversion-systems {
    min-height: 200px;
  }

  .card-body {
    padding: 14px 12px;
    gap: 5px;
  }

  .card-label {
    font-size: 8px;
    letter-spacing: 2px;
  }

  .card-title {
    font-size: clamp(16px, 5vw, 20px);
    letter-spacing: 0;
  }

  .card-desc {
    font-size: 11px;
    line-height: 1.5;
  }

  .card-quote {
    font-size: 11px;
  }

  .card-cta-link {
    font-size: 9px;
    letter-spacing: 2px;
  }

  .card-bullets li {
    font-size: 8px;
    letter-spacing: 1.5px;
    gap: 7px;
  }

  .card-bullets li::before {
    width: 5px;
    height: 5px;
  }

  .card-icon-box {
    width: 34px;
    height: 34px;
    top: 12px;
    right: 12px;
  }

  .card-icon-box img {
    width: 17px;
    height: 17px;
  }

  .site-footer {
    padding: 28px 12px 0;
    border-radius: 12px;
    width: calc(100% - 8px);
    margin: 0 auto 8px;
  }

  .footer-logo {
    height: 34px;
  }

  .footer-logo-row {
    margin-bottom: 24px;
  }

  .footer-main-row {
    gap: 32px;
    margin-bottom: 36px;
  }

  .footer-links-container {
    gap: 24px;
  }

  .footer-col {
    gap: 8px;
  }

  .footer-heading {
    font-size: 11px;
  }

  .footer-col a,
  .footer-contact p,
  .footer-contact-link,
  .footer-copyright p {
    font-size: 12px;
    line-height: 1.5;
  }

  .newsletter-title {
    font-size: 13px;
    letter-spacing: -0.3px;
  }

  .newsletter-desc {
    font-size: 11px;
  }

  .newsletter-form {
    padding: 6px;
    gap: 6px;
    border-radius: 12px;
  }

  .newsletter-form input {
    font-size: 12px;
    padding: 8px 12px;
  }

  .newsletter-form button {
    font-size: 12px;
    padding: 10px;
  }

  .footer-bottom-row {
    gap: 20px;
    padding-bottom: 28px;
  }

  .footer-tagline {
    font-size: 11px;
  }

  .nav-content {
    padding: 36px 12px 60px;
  }

  .nav-links {
    gap: 20px;
  }

  .nav-links a {
    font-size: 16px;
  }

  .btn-outline {
    padding: 9px 16px;
    font-size: 13px;
  }

  .theme-btn {
    bottom: 12px;
    left: 12px;
    font-size: 18px;
  }
}