/* ============================================
   ROOT VARIABLES
============================================ */
:root {
  --color-bg: #FFF8E7;
  --color-accent: #0047FF;
  --color-accent-soft: rgba(0, 71, 255, 0.12);
  --color-accent-glow: rgba(0, 71, 255, 0.35);
  --color-text: #161616;
  --color-text-soft: rgba(22, 22, 22, 0.65);
  --color-white: #ffffff;

  --glass-bg: rgba(255, 255, 255, 0.45);
  --glass-bg-strong: rgba(255, 255, 255, 0.65);
  --glass-border: rgba(255, 255, 255, 0.6);
  --glass-blur: blur(16px);

  --font-display: 'Plus Jakarta Sans', 'Inter', sans-serif;
  --font-body: 'Inter', 'Plus Jakarta Sans', sans-serif;

  --radius-sm: 14px;
  --radius-md: 22px;
  --radius-lg: 32px;
  --radius-pill: 999px;

  --shadow-glow: 0 8px 30px rgba(0, 71, 255, 0.18);
  --shadow-soft: 0 10px 40px rgba(22, 22, 22, 0.06);

  --max-width: 1180px;
  --section-pad: 120px;
}

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

html {
  scroll-behavior: smooth;
}

body {
  background: var(--color-bg);
  color: var(--color-text);
  font-family: var(--font-body);
  line-height: 1.5;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

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

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

ul, li {
  list-style: none;
}

.container {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 24px;
}

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

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

/* ============================================
   BUTTONS
============================================ */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px 26px;
  border-radius: var(--radius-pill);
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 15px;
  border: none;
  cursor: pointer;
  transition: transform 0.25s ease, box-shadow 0.25s ease, background 0.25s ease;
  white-space: nowrap;
}

.btn--primary {
  background: var(--color-accent);
  color: var(--color-white);
  box-shadow: var(--shadow-glow);
}

.btn--primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 36px rgba(0, 71, 255, 0.32);
}

.btn--light {
  background: var(--color-white);
  color: var(--color-accent);
}

.btn--light:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 30px rgba(255, 255, 255, 0.4);
}

.btn--lg {
  padding: 16px 34px;
  font-size: 16px;
}

/* ============================================
   GLASSMORPHISM BASE
============================================ */
.glass {
  background: var(--glass-bg);
  backdrop-filter: var(--glass-blur);
  -webkit-backdrop-filter: var(--glass-blur);
  border: 1px solid var(--glass-border);
}

.glass-card {
  background: var(--glass-bg);
  backdrop-filter: var(--glass-blur);
  -webkit-backdrop-filter: var(--glass-blur);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-soft);
}

/* ============================================
   FLOATING HEADER / NAVBAR
============================================ */
.navbar {
  position: fixed;
  top: 20px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 1000;
  width: min(900px, calc(100% - 32px));
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 12px 14px 12px 24px;
  border-radius: var(--radius-pill);
  background: var(--glass-bg-strong);
  backdrop-filter: var(--glass-blur);
  -webkit-backdrop-filter: var(--glass-blur);
  border: 1px solid var(--glass-border);
  box-shadow: var(--shadow-soft);
  transition: box-shadow 0.3s ease, background 0.3s ease;
}

.navbar.is-scrolled {
  box-shadow: 0 10px 36px rgba(22, 22, 22, 0.1);
}

.navbar__logo {
  display: flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 18px;
  letter-spacing: -0.02em;
  flex-shrink: 0;
}

.navbar__logo-img {
  height: 28px;
  width: auto;
}

.navbar__links {
  display: flex;
  align-items: center;
  gap: 28px;
  font-size: 14px;
  font-weight: 500;
  color: var(--color-text-soft);
}

.navbar__links a {
  transition: color 0.2s ease;
  position: relative;
}

.navbar__links a:hover {
  color: var(--color-accent);
}

.navbar__cta {
  flex-shrink: 0;
}

.navbar__burger {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  border: none;
  background: var(--color-accent-soft);
  cursor: pointer;
  flex-shrink: 0;
}

.navbar__burger span {
  width: 16px;
  height: 2px;
  background: var(--color-accent);
  margin: 0 auto;
  transition: transform 0.25s ease, opacity 0.25s ease;
}

.navbar__burger.is-active span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}
.navbar__burger.is-active span:nth-child(2) {
  opacity: 0;
}
.navbar__burger.is-active span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

.mobile-menu {
  position: fixed;
  top: 90px;
  left: 50%;
  transform: translateX(-50%) translateY(-12px);
  width: min(320px, calc(100% - 32px));
  background: var(--glass-bg-strong);
  backdrop-filter: var(--glass-blur);
  -webkit-backdrop-filter: var(--glass-blur);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-soft);
  display: flex;
  flex-direction: column;
  gap: 6px;
  padding: 18px;
  z-index: 999;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.25s ease, transform 0.25s ease;
}

.mobile-menu.is-open {
  opacity: 1;
  pointer-events: auto;
  transform: translateX(-50%) translateY(0);
}

.mobile-menu a {
  padding: 12px 14px;
  border-radius: var(--radius-sm);
  font-weight: 500;
  font-size: 15px;
}

.mobile-menu a:not(.btn):hover {
  background: var(--color-accent-soft);
  color: var(--color-accent);
}

.mobile-menu .btn {
  margin-top: 6px;
  width: 100%;
}

/* ============================================
   HERO SECTION
============================================ */
.hero {
  position: relative;
  padding: 180px 0 60px;
  overflow: hidden;
}

.hero__glow {
  position: absolute;
  top: -200px;
  left: 50%;
  transform: translateX(-50%);
  width: 900px;
  height: 600px;
  background: radial-gradient(circle, var(--color-accent-glow) 0%, transparent 70%);
  filter: blur(40px);
  opacity: 0.5;
  pointer-events: none;
  z-index: 0;
}

.hero__inner {
  position: relative;
  z-index: 1;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.hero__headline {
  font-family: var(--font-display);
  font-weight: 800;
  letter-spacing: -0.03em;
  line-height: 1.08;
  font-size: clamp(34px, 5.6vw, 64px);
  max-width: 880px;
}

.hero__subtext-lead {
  margin-top: 24px;
  font-size: 16px;
  font-weight: 500;
  color: var(--color-text-soft);
}

.hero__avatars {
  display: flex;
  margin-top: 14px;
  margin-bottom: 36px;
}

.avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 2px solid var(--color-bg);
  object-fit: cover;
  margin-left: -12px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.08);
}

.avatar:first-child {
  margin-left: 0;
}

/* --- Marquee --- */
.marquee-wrap {
  margin-top: 64px;
  display: flex;
  flex-direction: column;
  gap: 20px;
  position: relative;
}

.marquee-row {
  width: 100%;
  overflow: hidden;
  -webkit-mask-image: linear-gradient(
    to right,
    transparent 0%,
    black 12%,
    black 88%,
    transparent 100%
  );
  mask-image: linear-gradient(
    to right,
    transparent 0%,
    black 12%,
    black 88%,
    transparent 100%
  );
}

.marquee-track {
  display: flex;
  gap: 20px;
  width: max-content;
}

.marquee-row--right .marquee-track {
  animation: scrollRight 38s linear infinite;
}

.marquee-row--left .marquee-track {
  animation: scrollLeft 38s linear infinite;
}

.marquee-track img {
  width: 320px;
  height: 182px;
  object-fit: cover;
  border-radius: var(--radius-sm);
  flex-shrink: 0;
  box-shadow: var(--shadow-soft);
}

@keyframes scrollRight {
  from { transform: translateX(-50%); }
  to { transform: translateX(0%); }
}

@keyframes scrollLeft {
  from { transform: translateX(0%); }
  to { transform: translateX(-50%); }
}

/* ============================================
   SECTION HEADINGS (shared)
============================================ */
.section-eyebrow {
  text-align: center;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--color-accent);
  margin-bottom: 10px;
}

.section-title {
  text-align: center;
  font-family: var(--font-display);
  font-weight: 800;
  letter-spacing: -0.02em;
  font-size: clamp(28px, 4vw, 42px);
  margin-bottom: 16px;
}

.section-subtitle {
  text-align: center;
  color: var(--color-text-soft);
  font-size: 16px;
  margin-bottom: 50px;
}

/* ============================================
   RESULTS / STATS
============================================ */
.results {
  padding: var(--section-pad) 0 calc(var(--section-pad) - 40px);
}

.results .section-title {
  margin-bottom: 50px;
}

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

.results-card {
  padding: 34px 24px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 10px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.results-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 40px rgba(0, 71, 255, 0.16);
}

.results-card__number {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(26px, 3vw, 34px);
  color: var(--color-accent);
  letter-spacing: -0.02em;
}

.results-card__label {
  font-size: 13.5px;
  color: var(--color-text-soft);
  font-weight: 500;
}

/* ============================================
   PREVIOUS WORK / PORTFOLIO GRID
============================================ */
.work {
  padding: var(--section-pad) 0;
}

.work .section-title {
  margin-bottom: 50px;
}

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

.work-card {
  position: relative;
  border-radius: var(--radius-md);
  overflow: hidden;
  border: 1px solid var(--glass-border);
  box-shadow: var(--shadow-soft);
  cursor: pointer;
  transition: transform 0.35s ease, box-shadow 0.35s ease, border-color 0.35s ease;
  aspect-ratio: 16 / 9;
}

.work-card__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.45s ease;
}

.work-card__overlay {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: flex-end;
  padding: 16px;
  background: linear-gradient(to top, rgba(0,71,255,0.55), transparent 55%);
  opacity: 0;
  transition: opacity 0.35s ease;
}

.work-card__label {
  color: var(--color-white);
  font-size: 13px;
  font-weight: 600;
  font-family: var(--font-display);
}

.work-card:hover {
  transform: scale(1.05);
  border-color: var(--color-accent);
  box-shadow: 0 0 0 1px var(--color-accent), 0 16px 40px rgba(0,71,255,0.25);
}

.work-card:hover .work-card__img {
  transform: scale(1.08);
}

.work-card:hover .work-card__overlay {
  opacity: 1;
}

/* ============================================
   WANT THESE RESULTS CTA — Centered Layout
============================================ */
.results-cta {
  padding: var(--section-pad) 0;
}

.results-cta .section-eyebrow {
  text-align: center;
}

.results-cta__heading {
  font-family: var(--font-display);
  font-weight: 800;
  letter-spacing: -0.03em;
  font-size: clamp(38px, 5.5vw, 64px);
  line-height: 1.06;
  text-align: center;
  margin-top: 10px;
  margin-bottom: 56px;
}

/* The centered stage container */
.results-cta__stage {
  position: relative;
  width: 480px;
  max-width: 100%;
  margin: 0 auto;
}

/* Badge base */
.thumb-badge {
  position: absolute;
  z-index: 10;
  background: #fff;
  border-radius: 16px;
  box-shadow: 0 12px 36px rgba(0,0,0,0.18), 0 2px 8px rgba(0,0,0,0.08);
  padding: 12px 18px;
  display: flex;
  flex-direction: column;
  gap: 3px;
  min-width: 110px;
}

.thumb-badge--before {
  top: -20px;
  left: -30px;
  animation: floatBefore 3.2s ease-in-out infinite;
}

.thumb-badge--after {
  top: -20px;
  right: -30px;
  animation: floatAfter 3.4s ease-in-out infinite 0.5s;
}

@keyframes floatBefore {
  0%, 100% { transform: translateY(0px) rotate(-2deg); }
  50% { transform: translateY(-10px) rotate(-2deg); }
}

@keyframes floatAfter {
  0%, 100% { transform: translateY(0px) rotate(2deg); }
  50% { transform: translateY(-12px) rotate(2deg); }
}

.thumb-badge__label {
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 3px 10px;
  border-radius: 999px;
  align-self: flex-start;
  line-height: 1;
  margin-bottom: 4px;
}

.thumb-badge--before .thumb-badge__label {
  background: rgba(239,68,68,0.12);
  color: #dc2626;
}

.thumb-badge--after .thumb-badge__label {
  background: rgba(34,197,94,0.12);
  color: #16a34a;
}

.thumb-stat {
  display: flex;
  flex-direction: column;
}

.thumb-stat__num {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 26px;
  letter-spacing: -0.02em;
  line-height: 1.1;
}

.thumb-stat__num--bad { color: #ef4444; }
.thumb-stat__num--good { color: #22c55e; }

.arrow-down { font-size: 18px; }
.arrow-up { font-size: 18px; }

.thumb-stat__label {
  font-size: 11px;
  color: #888;
  font-weight: 500;
}

/* Main thumbnail mock card */
.thumb-mock {
  background: #111;
  border-radius: 20px;
  padding: 14px;
  margin-top: 48px;
  box-shadow: 0 24px 70px rgba(0,0,0,0.4), 0 0 0 1px rgba(255,255,255,0.07);
  position: relative;
  overflow: hidden;
}

.thumb-mock__img {
  width: 100%;
  border-radius: 12px;
  display: block;
  margin-bottom: 14px;
  object-fit: cover;
  height: 220px;
}

.thumb-mock__title {
  color: #fff;
  font-size: 14px;
  line-height: 1.45;
  margin-bottom: 10px;
}

.thumb-mock__title strong {
  display: block;
  font-size: 16px;
  font-family: var(--font-display);
}

.thumb-mock__meta {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 12px;
  color: rgba(255,255,255,0.5);
}

.thumb-mock__views {
  background: #ef4444;
  color: #fff;
  font-size: 11px;
  font-weight: 700;
  padding: 2px 8px;
  border-radius: 4px;
}

/* Contact Me button */
.thumb-contact-btn {
  display: block;
  margin-top: 22px;
  background: var(--color-accent);
  color: #fff;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 18px;
  text-align: center;
  padding: 16px 32px;
  border-radius: var(--radius-pill);
  box-shadow: 0 8px 28px rgba(0,71,255,0.35);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.thumb-contact-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 16px 40px rgba(0,71,255,0.45);
}

@media (max-width: 640px) {
  .results-cta__stage {
    width: 100%;
    padding: 0 12px;
  }
  .thumb-badge--before { left: -10px; }
  .thumb-badge--after { right: -10px; }
  .results-cta__arrow { display: none; }
}

/* ============================================
   TESTIMONIALS / INFINITE ORBIT
============================================ */
.testimonials {
  padding: var(--section-pad) 0 calc(var(--section-pad) - 40px);
  overflow: hidden;
}

.testimonial-orbit {
  position: relative;
  margin-top: 50px;
  padding: 20px 0;
}

.testimonial-orbit__glow {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 70%;
  max-width: 700px;
  height: 360px;
  background: radial-gradient(circle, var(--color-accent-glow) 0%, transparent 70%);
  filter: blur(60px);
  opacity: 0.45;
  z-index: 0;
  pointer-events: none;
}

.testimonial-track {
  position: relative;
  z-index: 1;
  display: flex;
  gap: 24px;
  width: max-content;
  animation: orbitScroll 42s linear infinite;
}

.testimonial-track:hover {
  animation-play-state: paused;
}

@keyframes orbitScroll {
  from { transform: translateX(0); }
  to { transform: translateX(-66.666%); }
}

.testimonial-card {
  width: 340px;
  flex-shrink: 0;
  background: rgba(0, 71, 255, 0.92);
  backdrop-filter: var(--glass-blur);
  -webkit-backdrop-filter: var(--glass-blur);
  border: 1px solid rgba(255,255,255,0.25);
  border-radius: var(--radius-md);
  padding: 30px;
  color: var(--color-white);
  box-shadow: 0 20px 50px rgba(0, 71, 255, 0.3);
}

.testimonial-card__stars {
  color: #FFD166;
  font-size: 14px;
  letter-spacing: 2px;
  margin-bottom: 18px;
}

.testimonial-card__stars span {
  color: var(--color-white);
  margin-left: 8px;
  letter-spacing: normal;
  font-weight: 600;
}

.testimonial-card__text {
  font-size: 15px;
  line-height: 1.65;
  margin-bottom: 26px;
  opacity: 0.96;
}

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

.testimonial-card__author img {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  object-fit: cover;
}

.testimonial-card__author span {
  font-weight: 700;
  font-size: 14px;
}

/* ============================================
   FAQ ACCORDION
============================================ */
.faq {
  padding: var(--section-pad) 0;
}

.faq__inner {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 60px;
  align-items: start;
}

.faq__heading .section-eyebrow,
.faq__heading .section-title {
  text-align: left;
}

.faq__heading .section-title {
  margin-bottom: 28px;
}

.faq__list {
  display: flex;
  flex-direction: column;
}

.faq-item {
  border-bottom: 1px solid rgba(22, 22, 22, 0.12);
}

.faq-item__question {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  background: none;
  border: none;
  padding: 24px 0;
  cursor: pointer;
  text-align: left;
  font-family: var(--font-body);
  font-size: 17px;
  font-weight: 500;
  color: var(--color-text);
}

.faq-item__icon {
  position: relative;
  width: 22px;
  height: 22px;
  flex-shrink: 0;
}

.faq-item__icon::before,
.faq-item__icon::after {
  content: '';
  position: absolute;
  background: var(--color-text);
  top: 50%;
  left: 50%;
  transition: transform 0.3s ease, background 0.3s ease;
}

.faq-item__icon::before {
  width: 14px;
  height: 2px;
  transform: translate(-50%, -50%);
}

.faq-item__icon::after {
  width: 2px;
  height: 14px;
  transform: translate(-50%, -50%);
}

.faq-item.is-open .faq-item__icon::before,
.faq-item.is-open .faq-item__icon::after {
  background: var(--color-accent);
}

.faq-item.is-open .faq-item__icon::after {
  transform: translate(-50%, -50%) rotate(90deg);
  opacity: 0;
}

.faq-item.is-open .faq-item__icon::before {
  transform: translate(-50%, -50%) rotate(180deg);
}

.faq-item__answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease;
}

.faq-item__answer p {
  padding-bottom: 24px;
  color: var(--color-text-soft);
  font-size: 15px;
  line-height: 1.65;
  max-width: 540px;
}

/* ============================================
   CONTACT SECTION (Channel Buttons)
============================================ */
.contact-section {
  padding: 80px 0 var(--section-pad);
}

.contact-section__sub {
  text-align: center;
  color: var(--color-text-soft);
  font-size: 16px;
  margin-bottom: 52px;
}

.contact-channels {
  max-width: 680px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.channel-btn {
  display: flex;
  align-items: center;
  gap: 18px;
  background: var(--color-accent);
  color: var(--color-white);
  border-radius: var(--radius-pill);
  padding: 18px 24px 18px 18px;
  font-family: var(--font-display);
  transition: transform 0.25s ease, box-shadow 0.25s ease, background 0.25s ease;
  box-shadow: 0 8px 24px rgba(0, 71, 255, 0.22);
  text-decoration: none;
}

.channel-btn:hover {
  transform: translateY(-3px) scale(1.01);
  box-shadow: 0 16px 40px rgba(0, 71, 255, 0.32);
  background: #0040ee;
}

.channel-btn__icon {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.18);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.channel-btn__icon svg {
  width: 20px;
  height: 20px;
  color: #fff;
}

.channel-btn__icon--insta {
  background: linear-gradient(135deg, rgba(240,148,51,0.8), rgba(230,105,148,0.8), rgba(88,81,219,0.8));
}

.channel-btn__info {
  display: flex;
  flex-direction: column;
  gap: 2px;
  flex: 1;
}

.channel-btn__name {
  font-weight: 700;
  font-size: 16px;
  color: #fff;
}

.channel-btn__detail {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.75);
  font-family: var(--font-body);
  font-weight: 400;
}

.channel-btn__arrow {
  width: 26px;
  height: 26px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,0.7);
  flex-shrink: 0;
  transition: transform 0.2s ease, color 0.2s ease;
}

.channel-btn__arrow svg {
  width: 18px;
  height: 18px;
}

.channel-btn:hover .channel-btn__arrow {
  transform: translateX(4px);
  color: #fff;
}

.footer {
  padding: 50px 0 36px;
}

.footer__inner {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 40px;
  flex-wrap: wrap;
}

.footer__brand {
  max-width: 420px;
}

.footer__logo {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 20px;
  display: block;
  margin-bottom: 12px;
}

.footer__brand p {
  color: var(--color-text-soft);
  font-size: 14px;
  line-height: 1.6;
}

.footer__social {
  display: flex;
  gap: 12px;
}

.social-icon {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--color-accent-soft);
  color: var(--color-accent);
  transition: background 0.25s ease, color 0.25s ease, transform 0.25s ease, box-shadow 0.25s ease;
}

.social-icon svg {
  width: 19px;
  height: 19px;
}

.social-icon:hover {
  background: var(--color-accent);
  color: var(--color-white);
  transform: translateY(-3px);
  box-shadow: 0 10px 24px rgba(0, 71, 255, 0.3);
}

.footer__credit {
  text-align: center;
  margin-top: 40px;
  font-size: 13px;
  color: var(--color-text-soft);
}

.footer__heart {
  color: #ef4444;
  display: inline-block;
  animation: heartbeat 1.4s ease-in-out infinite;
}

@keyframes heartbeat {
  0%, 100% { transform: scale(1); }
  14% { transform: scale(1.25); }
  28% { transform: scale(1); }
  42% { transform: scale(1.18); }
  56% { transform: scale(1); }
}

.footer__samar-link {
  color: var(--color-accent);
  font-weight: 600;
  transition: opacity 0.2s ease;
}

.footer__samar-link:hover {
  opacity: 0.8;
  text-decoration: underline;
}

/* ============================================
   RESPONSIVE
============================================ */
@media (max-width: 880px) {
  .navbar__links {
    display: none;
  }
  .navbar__cta {
    display: none;
  }
  .navbar__burger {
    display: flex;
  }

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

  .faq__inner {
    grid-template-columns: 1fr;
    gap: 30px;
  }
  .faq__heading .section-eyebrow,
  .faq__heading .section-title {
    text-align: center;
  }
  .faq__heading {
    display: flex;
    flex-direction: column;
    align-items: center;
  }
}

@media (max-width: 760px) {
  :root {
    --section-pad: 80px;
  }

  .work-grid {
    grid-template-columns: 1fr;
    gap: 18px;
  }



  .testimonial-card {
    width: 280px;
    padding: 24px;
  }

  .marquee-track img {
    width: 220px;
    height: 124px;
  }

  .final-cta__card {
    padding: 60px 24px;
  }
}

@media (max-width: 520px) {
  .results-grid {
    grid-template-columns: 1fr 1fr;
    gap: 14px;
  }

  .results-card {
    padding: 24px 16px;
  }

  .hero {
    padding: 150px 0 40px;
  }
}

