/* ══════════════════════════════════════════════════════════════
   RESPONSIVE.CSS — Global Responsive Overrides for Reach Cure
   Linked AFTER inline <style> in every page.
   Breakpoints: 480 · 600 · 768 · 900 · 1024 · 1100 · 1440 · 1800+
══════════════════════════════════════════════════════════════ */

/* ── Prevent horizontal overflow everywhere ── */
html, body {
  max-width: 100vw;
  overflow-x: hidden;
}

/* ── Keep content a little above the bottom edge on all 4 hero-area pages ── */
#hero,
#award-overlay,
#prospects-overlay {
  padding-bottom: 40px !important;
}

/* ── Award & Prospects: always start below navbar, never overlap ── */
#award-overlay {
  justify-content: flex-start !important;
  padding-top: 140px !important;
}

/* ── Award cards: always keep space from bottom edge ── */
.award-showcase {
  margin-bottom: 40px !important;
}

/* ── Award: shrink images & cards so they never get cut ── */
.award-item img {
  width: clamp(160px, 18vw, 280px) !important;
  margin-bottom: 12px !important;
}
.award-card {
  padding: clamp(12px, 1.2vw, 24px) clamp(16px, 1.6vw, 32px) !important;
  max-width: 300px !important;
}
.award-card-title {
  font-size: clamp(14px, 1.4vw, 22px) !important;
}
.award-card-desc {
  font-size: clamp(10px, 0.8vw, 13px) !important;
}
.award-words {
  margin-bottom: clamp(16px, 2vw, 32px) !important;
}
.award-word {
  font-size: clamp(40px, 7vw, 110px) !important;
}

/* ── Hero: subtitle + ReachCure above waves, CTA below waves ── */
#hero-centre {
  justify-content: center;
}
.hero-headline,
.hero-accent-line,
.hero-desc,
.hero-cta-row,
.hero-tagline {
  position: relative;
  z-index: 2;
}

img, video, svg, canvas, iframe {
  max-width: 100%;
  height: auto;
}

/* ══════════════════════════════════
   SERVICE PAGE HERO TITLES — darker gradient
══════════════════════════════════ */
.seo-big {
  background: none !important;
  -webkit-background-clip: unset !important;
  -webkit-text-fill-color: currentColor !important;
  background-clip: unset !important;
  font-family: 'Outfit', sans-serif !important;
  font-weight: 800 !important;
  font-style: normal !important;
  letter-spacing: -0.02em !important;
  -webkit-text-stroke: 2px rgba(0, 0, 0, 0.7);
  paint-order: stroke fill;
  filter: none;
}

/* ══════════════════════════════════
   HAMBURGER BUTTON (hidden on desktop)
══════════════════════════════════ */
.hamburger-btn {
  display: none;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 5px;
  width: 40px;
  height: 40px;
  background: none;
  border: none;
  cursor: pointer;
  z-index: 10003;
  padding: 6px;
  -webkit-tap-highlight-color: transparent;
  position: relative;
  margin-left: auto;
  transform: translateY(-8px);
}
.hamburger-btn span {
  display: block;
  width: 24px;
  height: 2px;
  background: #0c0c12;
  border-radius: 2px;
  transition: transform 0.35s cubic-bezier(0.22,1,0.36,1), opacity 0.25s;
  transform-origin: center;
  pointer-events: none;
}
.hamburger-btn.active span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}
.hamburger-btn.active span:nth-child(2) {
  opacity: 0;
  transform: scaleX(0);
}
.hamburger-btn.active span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

/* ══════════════════════════════════
   MOBILE NAV OVERLAY — full screen drawer
══════════════════════════════════ */
.mobile-nav-overlay {
  display: none;
  position: fixed;
  top: 0; left: 0; right: 0; bottom: 0;
  background: rgba(245,246,248,0.97);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  z-index: 10002;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.4s cubic-bezier(0.22,1,0.36,1), visibility 0s 0.4s;
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
}
.mobile-nav-overlay.open {
  opacity: 1;
  visibility: visible;
  transition: opacity 0.4s cubic-bezier(0.22,1,0.36,1), visibility 0s 0s;
}

/* ── Close button (×) ── */
.mob-nav-close {
  position: absolute;
  top: 18px;
  right: 18px;
  width: 44px;
  height: 44px;
  background: none;
  border: 1.5px solid rgba(12, 12, 18, 0.12);
  border-radius: 50%;
  font-size: 28px;
  line-height: 1;
  color: #333;
  cursor: pointer;
  z-index: 10004;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s, color 0.2s, transform 0.2s;
  -webkit-tap-highlight-color: transparent;
}
.mob-nav-close:hover,
.mob-nav-close:active {
  background: #e879b8;
  color: #fff;
  border-color: #e879b8;
  transform: rotate(90deg);
}

/* ── Inner container ── */
.mob-nav-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  min-height: 100vh;
  padding: 100px 28px 40px;
  gap: 0;
}

/* ── Brand logo at top ── */
.mob-nav-brand {
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  margin-bottom: 32px;
}
.mob-nav-brand img {
  height: 100px;
  width: auto;
}

/* ── Links list ── */
.mob-nav-links {
  list-style: none;
  padding: 0;
  margin: 0;
  width: 100%;
  max-width: 340px;
  display: flex;
  flex-direction: column;
  gap: 0;
}
.mob-nav-links > li {
  border-bottom: 1px solid rgba(12,12,18,0.06);
}
.mob-nav-links > li:first-child {
  border-top: 1px solid rgba(12,12,18,0.06);
}

/* ── Main link items ── */
.mob-nav-link {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  padding: 16px 4px;
  font-family: 'Outfit', sans-serif;
  font-weight: 500;
  font-size: 16px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #333;
  text-decoration: none;
  background: none;
  border: none;
  cursor: pointer;
  -webkit-tap-highlight-color: transparent;
  transition: color 0.2s;
}
.mob-nav-link:hover,
.mob-nav-link:active {
  color: #e879b8;
}

/* ── Services toggle chevron ── */
.mob-nav-services-toggle .mob-chevron {
  transition: transform 0.35s cubic-bezier(0.22,1,0.36,1);
  flex-shrink: 0;
}
.mob-nav-has-sub.open .mob-nav-services-toggle .mob-chevron {
  transform: rotate(180deg);
}

/* ── Services sub-menu (accordion) ── */
.mob-nav-sub {
  list-style: none;
  padding: 0;
  margin: 0;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.45s cubic-bezier(0.22,1,0.36,1), opacity 0.3s;
  opacity: 0;
}
.mob-nav-has-sub.open .mob-nav-sub {
  max-height: 500px;
  opacity: 1;
}
.mob-nav-sub li {
  border-top: 1px solid rgba(232,121,184,0.08);
}
.mob-nav-sub-link {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 13px 12px 13px 20px;
  font-family: 'Outfit', sans-serif;
  font-weight: 400;
  font-size: 14px;
  color: #555;
  text-decoration: none;
  transition: color 0.2s, background 0.2s, padding-left 0.2s;
  position: relative;
}
.mob-nav-sub-link::before {
  content: '';
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: linear-gradient(135deg, #e879b8, #a855f7);
  flex-shrink: 0;
  opacity: 0.5;
  transition: opacity 0.2s, transform 0.2s;
}
.mob-nav-sub-link:hover,
.mob-nav-sub-link:active {
  color: #e879b8;
  background: rgba(232,121,184,0.04);
  padding-left: 26px;
}
.mob-nav-sub-link:hover::before {
  opacity: 1;
  transform: scale(1.4);
}

/* ── Contact info at bottom ── */
.mob-nav-contact {
  margin-top: auto;
  padding-top: 32px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
}
.mob-nav-contact a {
  font-family: 'Outfit', sans-serif;
  font-weight: 300;
  font-size: 13px;
  color: rgba(12,12,18,0.5);
  text-decoration: none;
  transition: color 0.2s;
}
.mob-nav-contact a:hover {
  color: #e879b8;
}

/* ══════════════════════════════════
   GLOBAL TEXT & LAYOUT SAFETY
══════════════════════════════════ */
* {
  word-wrap: break-word;
  overflow-wrap: break-word;
}
h1, h2, h3, h4, h5, h6, p, span, a, li, td, th, label, button, input, textarea {
  max-width: 100%;
}

/* ══════════════════════════════════
   BACKGROUND RINGS — scale down on mobile
══════════════════════════════════ */
@media (max-width: 768px) {
  .bg-ring-1 { width: 220px; height: 220px; --thickness: 40px; left: -60px; }
  .bg-ring-2 { width: 180px; height: 180px; --thickness: 30px; right: -40px; }
  .bg-ring-3 { width: 150px; height: 150px; --thickness: 28px; }
  .bg-ring-4 { width: 190px; height: 190px; --thickness: 35px; }
  .bg-ring-5 { width: 120px; height: 120px; --thickness: 22px; }
}

/* ══════════════════════════════════
   TOP STRIP — responsive
══════════════════════════════════ */
@media (max-width: 768px) {
  #top-strip {
    display: none !important;
  }
}
@media (max-width: 480px) {
}

/* ══════════════════════════════════
   NAVBAR — responsive
══════════════════════════════════ */
@media (max-width: 1024px) {
  #navbar {
    padding: 0 20px;
  }
  .nav-links {
    gap: 22px;
  }
  .nav-links a {
    font-size: 12px;
    letter-spacing: 0.10em;
  }
  .nav-studio-btn,
  .nav-sections-btn {
    font-size: 10px;
    padding: 6px 16px;
  }
}

@media (max-width: 768px) {
  #navbar {
    padding: 0 16px;
    top: 6px;
    height: 50px;
    overflow: visible !important;
  }
  #navbar::before {
    display: none;
  }
  .nav-brand-logo {
    height: 120px !important;
    max-height: 120px !important;
    width: auto !important;
    transform: scale(1.3, 1.3) translateY(-4px);
    transform-origin: left center;
  }
  .nav-links {
    display: none !important;
  }
  .nav-studio-btn {
    display: none !important;
  }
  .nav-sections-wrap {
    display: none !important;
  }
  .hamburger-btn {
    display: flex !important;
    flex-shrink: 0;
    position: relative;
    z-index: 10003;
  }
  .mobile-nav-overlay {
    display: flex;
  }
  .nav-divider {
    top: 56px;
    left: 16px;
    right: 16px;
  }
  .nav-bg-strip {
    display: none;
  }
  /* Services dropdown hidden on mobile — use hamburger instead */
  .services-dropdown {
    display: none !important;
  }
}

@media (max-width: 480px) {
  #navbar {
    top: 4px;
    height: 48px;
    padding: 0 12px;
    overflow: visible !important;
  }
  #navbar::before {
    display: none;
  }
  .nav-brand-logo {
    height: 110px !important;
    max-height: 110px !important;
    width: auto !important;
    transform: scale(1.2, 1.2) translateY(-2px);
    transform-origin: left center;
  }
  .hamburger-btn {
    display: flex !important;
    flex-shrink: 0;
    position: relative;
    z-index: 10003;
    width: 44px;
    height: 44px;
  }
  .hamburger-btn span {
    width: 26px;
    height: 2.5px;
  }
  .nav-divider {
    top: 52px;
    left: 12px;
    right: 12px;
  }
  .nav-bg-strip {
    display: none;
  }
}

/* Extra small screens */
@media (max-width: 360px) {
  #navbar {
    top: 4px;
    height: 46px;
    padding: 0 10px;
    overflow: visible !important;
  }
  .nav-brand-logo {
    height: 100px !important;
    max-height: 100px !important;
    width: auto !important;
    transform: scale(1.1, 1.1) translateY(0px);
    transform-origin: left center;
  }
  .hamburger-btn {
    display: flex !important;
    flex-shrink: 0;
    width: 42px;
    height: 42px;
  }
  .hamburger-btn span {
    width: 24px;
    height: 2.5px;
  }
}

/* ══════════════════════════════════
   HERO SECTION (index.html)
══════════════════════════════════ */

/* Fallback: ensure hero text is visible if GSAP fails to run */
@keyframes heroFadeIn {
  to { opacity: 1; transform: none; clip-path: none; }
}
.hero-subtitle,
#hero-brand-row,
#hero-reach,
#hero-cure,
.hero-headline,
.hero-accent-line,
.hero-desc,
.hero-cta-row {
  animation: heroFadeIn 0s 2.5s both;
}

@media (max-width: 1024px) {
  .hero-headline {
    font-size: clamp(20px, 3vw, 36px);
  }
  .hero-desc {
    font-size: clamp(13px, 1.4vw, 16px);
  }
}
@media (max-width: 768px) {
  #hero-wrapper {
    height: 100vh;
    height: 100dvh;
  }
  #hero {
    overflow: hidden;
    height: 100vh;
    height: 100dvh;
    align-items: center;
    justify-content: center;
    padding-top: 60px !important;
    padding-bottom: 28px !important;
  }
  #hero-centre {
    padding: 0 24px;
    padding-top: 0;
    align-items: center;
    text-align: center;
    width: 100%;
    max-width: 100%;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    overflow: hidden;
    max-height: calc(100vh - 96px);
    max-height: calc(100dvh - 96px);
  }
  .hero-subtitle {
    font-size: clamp(13px, 3.5vw, 18px);
    max-width: 85vw;
    line-height: 1.55;
    text-align: center;
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 10px;
    margin-top: 0;
    flex-shrink: 0;
  }
  .hero-subtitle br {
    display: none;
  }
  #hero-brand-row {
    text-align: center;
    margin-bottom: 14px;
    flex-shrink: 0;
  }
  #hero-reach, #hero-cure {
    font-size: clamp(36px, 13vw, 90px);
  }
  .hero-headline {
    font-size: clamp(15px, 4vw, 24px);
    margin-top: 12px;
    text-align: center;
    max-width: 88vw;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.3;
    margin-bottom: 12px;
    flex-shrink: 0;
  }
  .hero-headline br {
    display: none;
  }
  .hero-accent-line {
    margin: 0 auto 14px;
    flex-shrink: 0;
  }
  .hero-desc {
    font-size: clamp(12px, 3vw, 15px);
    max-width: 82vw;
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 20px;
    text-align: center;
    line-height: 1.55;
    flex-shrink: 0;
  }
  .hero-cta-row {
    flex-direction: column;
    gap: 10px;
    width: 100%;
    max-width: 280px;
    padding-bottom: 20px;
    align-items: center;
    margin-left: auto;
    margin-right: auto;
    flex-shrink: 0;
  }
  .hero-btn-primary,
  .hero-btn-secondary {
    width: 100%;
    justify-content: center;
    font-size: 13px;
    padding: 12px 24px;
    border-radius: 8px;
  }
  .scroll-hint {
    bottom: 16px;
  }
}
@media (max-width: 480px) {
  #hero {
    padding-top: 56px !important;
    padding-bottom: 24px !important;
  }
  #hero-centre {
    padding-top: 0;
    padding-left: 20px;
    padding-right: 20px;
    max-height: calc(100vh - 84px);
    max-height: calc(100dvh - 84px);
  }
  .hero-subtitle {
    font-size: clamp(11px, 3.2vw, 15px);
    max-width: 90vw;
    margin-bottom: 6px;
    margin-top: 0;
    text-align: center;
    margin-left: auto;
    margin-right: auto;
  }
  #hero-brand-row {
    margin-bottom: 10px;
  }
  #hero-reach, #hero-cure {
    font-size: clamp(30px, 12vw, 64px);
  }
  .hero-headline {
    font-size: clamp(13px, 3.8vw, 20px);
    margin-top: 8px;
    max-width: 92vw;
    margin-bottom: 10px;
  }
  .hero-accent-line {
    width: 48px;
    height: 2px;
    margin-bottom: 10px;
  }
  .hero-desc {
    font-size: clamp(11px, 2.8vw, 14px);
    margin-bottom: 16px;
    max-width: 88vw;
    line-height: 1.5;
  }
  .hero-cta-row {
    max-width: 260px;
    padding-bottom: 14px;
    gap: 8px;
  }
  .hero-btn-primary,
  .hero-btn-secondary {
    font-size: 12px;
    padding: 10px 20px;
  }
}
@media (max-width: 360px) {
  #hero {
    padding-top: 52px !important;
    padding-bottom: 20px !important;
  }
  #hero-centre {
    padding-top: 0;
    padding-left: 16px;
    padding-right: 16px;
    max-height: calc(100vh - 76px);
    max-height: calc(100dvh - 76px);
  }
  .hero-subtitle {
    font-size: 10px;
    text-align: center;
    margin-left: auto;
    margin-right: auto;
    margin-top: 0;
    margin-bottom: 4px;
  }
  #hero-reach, #hero-cure {
    font-size: clamp(26px, 11vw, 48px);
  }
  #hero-brand-row {
    margin-bottom: 8px;
  }
  .hero-headline {
    font-size: clamp(12px, 3.6vw, 16px);
    margin-top: 6px;
    margin-bottom: 8px;
  }
  .hero-desc {
    font-size: 10px;
    margin-bottom: 12px;
    line-height: 1.45;
  }
  .hero-cta-row {
    max-width: 220px;
    gap: 6px;
    padding-bottom: 10px;
  }
  .hero-btn-primary,
  .hero-btn-secondary {
    font-size: 10px;
    padding: 9px 16px;
  }
}

/* ══════════════════════════════════
   VIDEO FRAME
══════════════════════════════════ */
@media (min-width: 1800px) {
  #video-frame {
    width: 60vw;
    max-height: calc(100vh - 160px);
  }
  #play-btn {
    width: 88px;
    height: 88px;
    font-size: 28px;
  }
}
@media (max-width: 1024px) {
  #video-frame {
    width: 78vw;
  }
}
@media (max-width: 768px) {
  #video-frame {
    width: 92vw;
    max-height: calc(100vh - 140px);
  }
  #play-btn {
    width: 52px;
    height: 52px;
    font-size: 16px;
  }
}
@media (max-width: 480px) {
  #video-frame {
    width: 96vw;
    max-height: calc(100vh - 120px);
  }
  #play-btn {
    width: 44px;
    height: 44px;
    font-size: 14px;
  }
}

/* ══════════════════════════════════
   SERVICES SCROLL — CINEMATIC SECTION
══════════════════════════════════ */
@media (max-width: 1024px) {
  .srv-text-wrap {
    left: 6%;
    max-width: 50%;
  }
  .srv-title {
    font-size: clamp(32px, 5vw, 56px);
  }
}
@media (max-width: 768px) {
  .srv-text-wrap {
    left: 50% !important;
    right: auto !important;
    transform: translate(-50%, -50%) !important;
    max-width: 90% !important;
    top: 50% !important;
    text-align: center;
    width: 90%;
  }
  .srv-text-wrap.srv-phase2 {
    left: 50% !important;
    right: auto !important;
    transform: translate(-50%, -50%) !important;
    max-width: 90% !important;
    text-align: center;
    width: 90%;
  }
  .srv-title {
    font-size: clamp(28px, 7vw, 44px) !important;
    margin-bottom: 12px;
    text-align: center;
  }
  .srv-tagline {
    font-size: 9px;
    letter-spacing: 0.25em;
    margin-bottom: 8px;
    text-align: center;
  }
  .srv-desc {
    font-size: clamp(12px, 3vw, 14px) !important;
    line-height: 1.6;
    margin-bottom: 18px;
    text-align: center;
    margin-left: auto;
    margin-right: auto;
    max-width: 95%;
  }
  .srv-learn {
    font-size: 11px;
    text-align: center;
    display: block;
    margin-left: auto;
    margin-right: auto;
  }
  .srv-nav {
    top: 50px;
    gap: 10px;
    padding: 0 8px;
    flex-wrap: wrap;
    justify-content: center;
  }
  .srv-nav-label {
    font-size: 7px;
    letter-spacing: 0.08em;
  }
  .srv-nav-dot {
    width: 6px;
    height: 6px;
  }
  .srv-counter {
    left: 5%;
    bottom: 20px;
    font-size: 9px;
  }
  .srv-bookmark-tab {
    width: 200px;
    padding: 12px 0 14px;
    font-size: 16px;
  }
}
@media (max-width: 480px) {
  .srv-nav {
    top: 40px;
    gap: 6px;
  }
  .srv-nav-label {
    font-size: 6px;
    display: none;
  }
  .srv-title {
    font-size: clamp(24px, 6.5vw, 36px) !important;
  }
  .srv-desc {
    font-size: 12px !important;
  }
}

/* ══════════════════════════════════
   UI/UX HORIZONTAL SCROLL PANELS
══════════════════════════════════ */
@media (max-width: 1024px) {
  .uiux-intro {
    flex-direction: column;
    padding: 0 5vw;
    text-align: center;
  }
  .uiux-intro-left {
    max-width: 100%;
  }
  .uiux-intro-left p {
    max-width: 100%;
    margin-left: auto;
    margin-right: auto;
  }
  .uiux-intro-left h2 {
    font-size: clamp(40px, 6vw, 70px);
  }
  .uiux-intro-right {
    height: 28vh;
    width: 220px;
  }
  .uiux-editorial {
    flex-direction: column;
    padding: 0 5vw;
  }
  .uiux-editorial-img {
    height: 35vh;
  }
  .uiux-editorial-text {
    max-width: 100%;
    text-align: center;
  }
  .uiux-editorial-text h3 {
    font-size: clamp(28px, 4vw, 48px);
  }
}
@media (max-width: 600px) {
  .uiux-float-img.img1 { width: 120px; height: 170px; }
  .uiux-float-img.img2 { width: 100px; height: 140px; }
  .uiux-float-img.img3 { width: 90px; height: 120px; }
  .uiux-showcase-images img:nth-child(1) { width: 90px; height: 130px; }
  .uiux-showcase-images img:nth-child(2) { width: 120px; height: 170px; }
  .uiux-showcase-images img:nth-child(3) { width: 90px; height: 130px; }
  .uiux-showcase-images { gap: 6px; }
  .uiux-showcase h3 {
    font-size: clamp(24px, 6vw, 40px);
  }
  .uiux-btn {
    font-size: 11px;
    padding: 10px 28px;
  }
}

/* ══════════════════════════════════
   GLOBE SECTION
══════════════════════════════════ */
@media (max-width: 1024px) {
  #globe-section {
    padding: 60px 24px;
    clip-path: none;
    justify-content: center;
    align-items: center;
  }
  .globe-clip-bar {
    display: none;
  }
  .globe-inner {
    flex-direction: column;
    gap: 40px;
    align-items: center;
    text-align: center;
  }
  .globe-canvas-wrap {
    display: none !important;
  }
  #globe-canvas {
    display: none !important;
  }
  .globe-text {
    text-align: center;
  }
  .globe-heading {
    font-size: clamp(30px, 5vw, 50px);
  }
  .globe-body {
    margin-left: auto;
    margin-right: auto;
    font-size: clamp(13px, 2.5vw, 16px);
  }
  .globe-btns {
    justify-content: center;
  }
  .globe-btn {
    font-size: 11px;
    padding: 10px 24px;
  }
}
@media (max-width: 768px) {
  #globe-section {
    clip-path: none;
    padding: 0 16px;
    align-items: center;
    justify-content: center;
    padding-top: 0;
    overflow: visible;
    box-sizing: border-box;
    display: flex;
    min-height: 100vh;
  }
  .globe-inner {
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 16px;
  }
  .globe-clip-bar {
    display: none;
  }
  .globe-canvas-wrap {
    display: none !important;
  }
  .globe-text {
    text-align: center;
    order: 1;
    overflow: hidden;
    word-break: break-word;
    max-width: 100%;
  }
  .globe-heading {
    font-size: 7vw !important;
    text-align: center;
    margin-bottom: 10px;
    word-break: break-word;
    max-width: 100%;
  }
  .globe-eyebrow {
    font-size: 2.4vw;
    letter-spacing: 0.3em;
    margin-bottom: 6px;
    text-align: center;
  }
  .globe-body {
    display: none;
  }
  .globe-btns {
    justify-content: center;
    flex-direction: row;
    flex-wrap: wrap;
    align-items: center;
    gap: 2.5vw;
  }
  .globe-btns .globe-btn {
    font-size: 2.4vw;
    padding: 2.2vw 5vw;
  }
  .seo-text,
  .webdev-text {
    clip-path: none !important;
    padding: 0 16px !important;
    padding-bottom: 20px !important;
    justify-content: flex-end;
    align-items: center;
    overflow: hidden;
    box-sizing: border-box;
  }
  .seo-text .seo-inner,
  .webdev-text .webdev-inner {
    max-width: 100%;
    width: 100%;
    text-align: center;
    margin: 0 auto;
    padding-left: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 4px;
    overflow: hidden;
    box-sizing: border-box;
  }
  .seo-heading {
    font-size: clamp(20px, 5.5vw, 36px) !important;
    text-align: center;
    margin-bottom: 4px;
    word-break: break-word;
    max-width: 100%;
  }
  .seo-body {
    display: none;
  }
  .seo-btns {
    justify-content: center;
    flex-direction: row;
    flex-wrap: wrap;
    align-items: center;
    gap: 8px;
  }
  .seo-btns .globe-btn {
    font-size: 9px;
    padding: 7px 14px;
  }
  .seo-eyebrow {
    font-size: 8px;
    letter-spacing: 0.2em;
    margin-bottom: 2px;
    text-align: center;
  }
}

@media (max-width: 480px) {
  .globe-canvas-wrap {
    display: none !important;
  }
}

/* ══════════════════════════════════
   LATEST WORKS — HONEYCOMB
══════════════════════════════════ */
@media (max-width: 1100px) {
  .lw-layout {
    flex-direction: column;
    text-align: center;
    gap: 40px;
    padding: 40px clamp(20px, 4vw, 60px);
  }
  .lw-text-left {
    max-width: 500px;
    text-align: center;
    padding-top: 80px;
  }
  .lw-text-left .lw-line { margin: 20px auto; }
  .lw-text-left .lw-desc { margin: 0 auto 30px; font-size: clamp(14px, 2.5vw, 18px); }
  .lw-count-block { text-align: center; }
  .lw-honeycomb { --hex-size: clamp(140px, 28vw, 260px); }
  .lw-view-portfolio { margin: 0 auto; }
}
@media (max-width: 600px) {
  .lw-honeycomb { --hex-size: clamp(90px, 28vw, 140px); }
  .lw-text-left h2 { font-size: clamp(36px, 10vw, 64px); }
  .lw-count-num { font-size: clamp(50px, 16vw, 110px); }
  .lw-count-label { font-size: clamp(9px, 2.5vw, 13px); }
  .lw-layout {
    padding: 24px 16px;
  }
  .lw-text-left .lw-desc { font-size: clamp(13px, 3.5vw, 16px); }
  .lw-hex-name { font-size: clamp(14px, 4vw, 22px); }
  .lw-hex-cat { font-size: clamp(7px, 2vw, 10px); }
  .lw-hex-arrow { width: 28px; height: 28px; font-size: 12px; }
  .lw-view-portfolio { font-size: 12px; padding: 8px 22px; }
}

/* ══════════════════════════════════
   TESTIMONIALS — WHAT OTHERS SAY
   Horizontal scroll carousel (all screens)
══════════════════════════════════ */
.wos-cards-wrap {
  flex-wrap: nowrap !important;
  overflow-x: auto !important;
  overflow-y: hidden !important;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
  gap: clamp(16px, 2.5vw, 32px) !important;
  padding-bottom: 16px !important;
  scrollbar-width: none;
}
.wos-cards-wrap::-webkit-scrollbar {
  display: none;
}
.wos-card {
  flex-shrink: 0 !important;
  scroll-snap-align: center;
  min-width: clamp(280px, 30vw, 320px);
}
.wos-card:nth-child(1),
.wos-card:nth-child(2),
.wos-card:nth-child(3) {
  margin-top: 0 !important;
}

@media (max-width: 768px) {
  .wos-card {
    min-width: 85vw;
    max-width: 85vw;
    padding: clamp(22px, 4vw, 32px) clamp(20px, 5vw, 32px);
    box-sizing: border-box;
  }
  .wos-card-quote {
    font-size: clamp(13px, 3.5vw, 15px);
    line-height: 1.7;
    overflow: visible;
    display: block;
    -webkit-line-clamp: unset;
    line-clamp: unset;
    max-height: none;
  }
  .wos-card-name {
    font-size: clamp(14px, 3.5vw, 18px);
  }
  .wos-word {
    font-size: clamp(36px, 12vw, 80px);
  }
}

/* Hide arrows and dots — replaced by scrollbar */
.wos-carousel-nav,
.wos-carousel-dots {
  display: none !important;
}

/* ══════════════════════════════════
   ABOUT PAGE — Testimonials: scrollbar instead of arrows
══════════════════════════════════ */
.testi-nav-btn {
  display: none !important;
}
.testi-dots {
  display: none !important;
}
.testi-slider-wrap {
  overflow-x: auto !important;
  overflow-y: hidden !important;
  scrollbar-width: thin;
  scrollbar-color: #999 rgba(255, 255, 255, 0.1);
  padding-bottom: 12px;
}
.testi-slider-wrap::-webkit-scrollbar {
  height: 6px;
  display: block;
}
.testi-slider-wrap::-webkit-scrollbar-track {
  background: rgba(255, 255, 255, 0.06);
  border-radius: 3px;
}
.testi-slider-wrap::-webkit-scrollbar-thumb {
  background: #999;
  border-radius: 3px;
}
.testi-slider {
  transition: none !important;
  transform: none !important;
}

/* ══════════════════════════════════
   FAQ SECTION
══════════════════════════════════ */
@media (max-width: 768px) {
  #faq-section {
    padding: 20px 16px;
  }
  .faq-heading h2 {
    font-size: clamp(30px, 8vw, 60px);
  }
  .faq-item {
    clip-path: polygon(0 0, calc(100% - 14px) 0, 100% 14px, 100% 100%, 0 100%);
  }
  .faq-toggle {
    width: 32px;
    height: 32px;
    flex-shrink: 0;
  }
  .faq-q {
    padding: 14px 16px;
    gap: 10px;
  }
  .faq-q-text {
    font-size: clamp(13px, 3.5vw, 16px);
  }
  .faq-a-inner {
    padding: 0 16px 14px;
    font-size: clamp(12px, 3vw, 14px);
  }
}

/* ══════════════════════════════════
   NEWSLETTER
══════════════════════════════════ */
@media (max-width: 768px) {
  .nl-paper {
    flex-direction: column;
    text-align: center;
    padding: clamp(28px, 5vw, 50px) clamp(18px, 4vw, 36px);
  }
  .nl-title {
    font-size: clamp(20px, 5vw, 32px);
  }
  .nl-subtitle {
    font-size: clamp(12px, 3vw, 15px);
  }
  .nl-form {
    flex-direction: column;
    gap: 10px;
  }
  .nl-input {
    border-radius: 6px;
    border-right: 1px solid rgba(0,0,0,0.08);
    font-size: 14px;
  }
  .nl-btn {
    border-radius: 6px;
    font-size: 13px;
  }
  .nl-illus {
    width: 110px;
    height: 110px;
  }
  .nl-note {
    justify-content: center;
    font-size: 11px;
  }
}

/* ══════════════════════════════════
   AWARD SECTION
══════════════════════════════════ */
@media (min-width: 1800px) {
  #award-overlay {
    padding-top: 150px !important;
  }
  .award-word {
    font-size: clamp(80px, 7vw, 140px) !important;
  }
  .award-item img {
    width: clamp(220px, 16vw, 340px) !important;
  }
  .award-card {
    max-width: 380px !important;
    padding: 28px 36px !important;
  }
  .award-card-title {
    font-size: clamp(18px, 1.4vw, 26px) !important;
  }
  .award-card-desc {
    font-size: clamp(14px, 0.9vw, 17px);
  }
  .award-showcase {
    gap: clamp(48px, 4vw, 80px);
  }
  .award-words {
    margin-bottom: clamp(36px, 3vw, 56px);
  }
}
@media (max-width: 1024px) {
  .award-word {
    font-size: clamp(36px, 7vw, 80px) !important;
  }
  .award-item img {
    width: clamp(140px, 22vw, 240px) !important;
  }
  .award-showcase {
    gap: clamp(20px, 3vw, 40px);
  }
}
@media (max-width: 768px) {
  #award-overlay {
    padding-top: 72px !important;
    padding-bottom: 28px !important;
    overflow: hidden;
    justify-content: center !important;
    align-items: center !important;
    padding-left: 16px;
    padding-right: 16px;
  }
  .award-showcase {
    flex-direction: column;
    align-items: center;
    gap: 16px;
  }
  .award-word {
    font-size: clamp(28px, 9vw, 60px);
  }
  .award-words {
    margin-bottom: 12px;
  }
  .award-item img {
    width: clamp(100px, 38vw, 180px);
    margin-bottom: 8px;
  }
  .award-card {
    max-width: 90vw;
    padding: 10px 14px;
  }
  .award-card-title {
    font-size: clamp(12px, 3vw, 16px);
  }
  .award-card-desc {
    font-size: clamp(9px, 2.2vw, 11px);
  }
}
@media (max-width: 480px) {
  #award-overlay {
    padding-top: 66px !important;
    padding-bottom: 24px !important;
  }
  .award-word {
    font-size: clamp(24px, 10vw, 48px);
  }
  .award-words {
    margin-bottom: 8px;
  }
  .award-item img {
    width: clamp(80px, 40vw, 150px);
    margin-bottom: 6px;
  }
  .award-card {
    padding: 8px 12px;
  }
  .award-card-title {
    font-size: clamp(10px, 3vw, 14px);
  }
  .award-card-desc {
    font-size: 9px;
  }
  .award-showcase {
    gap: 12px;
  }
}
@media (max-width: 360px) {
  #award-overlay {
    padding-top: 62px !important;
    padding-bottom: 20px !important;
  }
  .award-word {
    font-size: clamp(22px, 10vw, 40px);
  }
  .award-item img {
    width: clamp(70px, 38vw, 130px);
  }
}

/* ══════════════════════════════════
   PROSPECTS — SHIPS ON ROPES
══════════════════════════════════ */
@media (min-width: 1800px) {
  #prospects-overlay {
    padding-top: calc(100px + 16vh);
  }
  .prospects-title {
    font-size: clamp(120px, 9vw, 180px);
    margin-bottom: clamp(36px, 3vw, 56px);
  }
  .ship-icon-circle {
    width: clamp(70px, 6vw, 110px);
    height: clamp(70px, 6vw, 110px);
    font-size: clamp(22px, 2vw, 34px);
  }
  .rope-thread { height: 16px; }
}
@media (max-width: 1024px) {
  #prospects-overlay {
    padding-top: calc(60px + 10vh);
  }
  .prospects-title {
    font-size: clamp(44px, 9vw, 100px);
    margin-bottom: 20px;
  }
  .ship-icon-circle {
    width: clamp(48px, 8vw, 76px);
    height: clamp(48px, 8vw, 76px);
    font-size: clamp(15px, 2.4vw, 24px);
  }
}
@media (max-width: 768px) {
  #prospects-overlay {
    padding-top: calc(72px + 4vh);
  }
  .prospects-title {
    font-size: clamp(32px, 9vw, 70px);
    margin-bottom: 12px;
  }
  .ship-icon-circle {
    width: clamp(36px, 9vw, 58px) !important;
    height: clamp(36px, 9vw, 58px) !important;
    font-size: clamp(12px, 2.5vw, 18px);
  }
  .ship-icon-img {
    width: 72%;
    height: 72%;
  }
  .rope-thread { height: 6px; }
  .row-label {
    font-size: clamp(8px, 2vw, 11px) !important;
  }
}
@media (max-width: 480px) {
  #prospects-overlay {
    padding-top: calc(66px + 2vh);
  }
  .prospects-title {
    font-size: clamp(26px, 10vw, 50px);
    margin-bottom: 8px;
  }
  .ship-icon-circle {
    width: clamp(30px, 8vw, 44px) !important;
    height: clamp(30px, 8vw, 44px) !important;
    font-size: clamp(10px, 2.2vw, 15px);
    border-width: 1.5px;
  }
  .rope-thread { height: 4px; }
}
@media (max-width: 360px) {
  #prospects-overlay {
    padding-top: calc(62px + 2vh);
  }
  .prospects-title {
    font-size: clamp(24px, 10vw, 40px);
  }
  .ship-icon-circle {
    width: clamp(26px, 7.5vw, 36px) !important;
    height: clamp(26px, 7.5vw, 36px) !important;
    font-size: clamp(8px, 2vw, 12px);
  }
}

/* ══════════════════════════════════
   PROSPECT SHOWCASE PANEL
══════════════════════════════════ */
@media (max-width: 768px) {
  .prospect-showcase-panel {
    width: 96vw;
    height: auto;
    max-height: calc(100vh - 130px);
    max-width: none;
    top: calc(50% + 40px);
    border-radius: 14px;
  }
  .prospect-showcase-panel.is-visible {
    transform: translate(-50%, -50%) scale(1) translateY(0);
  }
  .psp-inner {
    flex-direction: column;
    overflow-y: auto;
    max-height: calc(100vh - 140px);
    -webkit-overflow-scrolling: touch;
  }
  .psp-left {
    width: 100%;
    min-width: unset;
    padding: 46px 16px 16px;
  }
  .psp-right {
    width: 100%;
    height: 35vh;
    min-height: 180px;
    flex-shrink: 0;
  }
  .psp-heading {
    font-size: clamp(20px, 5.5vw, 32px);
  }
  .psp-subheading {
    font-size: clamp(11px, 3vw, 13px);
  }
  .psp-eyebrow {
    font-size: 9px;
  }
  .psp-visit-link {
    font-size: 12px;
    padding: 10px 22px;
  }
  .psp-close {
    top: 10px;
    right: 10px;
    width: 34px;
    height: 34px;
    font-size: 16px;
    z-index: 20;
    background: rgba(237,47,97,0.15);
    border: 2px solid rgba(237,47,97,0.4);
    position: absolute;
  }
  /* WebDev approach steps */
  .psp-wd-what-desc {
    font-size: clamp(16px, 4vw, 22px);
  }
  .psp-wd-title {
    font-size: clamp(12px, 3.5vw, 15px);
  }
  .psp-wd-desc {
    font-size: clamp(10px, 2.8vw, 12px);
  }
  .psp-wd-step {
    padding: 10px 12px;
    gap: 10px;
  }
  .psp-wd-num {
    width: 20px;
    height: 20px;
    font-size: 9px;
  }
}
@media (max-width: 480px) {
  .prospect-showcase-panel {
    width: 98vw;
    max-height: calc(100vh - 100px);
    top: calc(50% + 30px);
    border-radius: 12px;
  }
  .psp-inner {
    max-height: calc(100vh - 110px);
  }
  .psp-left {
    padding: 42px 14px 14px;
  }
  .psp-right {
    height: 28vh;
    min-height: 150px;
  }
  .psp-heading {
    font-size: clamp(18px, 5vw, 26px);
  }
  .psp-subheading {
    font-size: 11px;
    -webkit-line-clamp: 3;
    line-clamp: 3;
  }
  .psp-close {
    top: 8px;
    right: 8px;
    width: 30px;
    height: 30px;
    font-size: 14px;
  }
  .psp-visit-link {
    font-size: 11px;
    padding: 8px 18px;
    margin-top: 10px;
  }
  /* WebDev / SMM approach steps */
  .psp-webdev-approach,
  .psp-smm-approach {
    margin-top: 12px;
    gap: 0;
  }
  .psp-wd-what-label {
    font-size: 10px;
    margin-bottom: 3px;
  }
  .psp-wd-what-desc {
    font-size: clamp(14px, 3.5vw, 18px);
    margin-bottom: 10px;
  }
  .psp-wd-divider {
    width: 30px;
    margin-bottom: 8px;
  }
  .psp-wd-method-label {
    font-size: 10px;
    margin-bottom: 6px;
  }
  .psp-wd-steps {
    gap: 5px;
  }
  .psp-wd-step {
    padding: 8px 10px;
    gap: 8px;
    border-radius: 8px;
  }
  .psp-wd-num {
    width: 18px;
    height: 18px;
    font-size: 8px;
  }
  .psp-wd-icon {
    font-size: 14px;
  }
  .psp-wd-title {
    font-size: 11px;
  }
  .psp-wd-desc {
    font-size: 9px;
    line-height: 1.3;
  }
  .psp-wd-pulse {
    width: 5px;
    height: 5px;
  }
  /* Right side visuals */
  .psp-visual {
    padding: 8px;
  }
  .psp-site-img {
    border-radius: 8px;
  }
  .psp-graph-wrap {
    width: 95%;
    height: 85%;
  }
  /* SEO table */
  .psp-seo-table {
    width: 96%;
    border-spacing: 0 3px;
  }
  .psp-seo-table th {
    font-size: 7px;
    padding: 3px 4px;
  }
  .psp-seo-table td {
    font-size: 9px;
    padding: 4px 5px;
  }
  .psp-seo-float-icon {
    transform: scale(0.75);
  }
  .psp-seo-float-icon span {
    font-size: 7px;
  }
  /* SMM */
  .psp-smm-icon-card {
    padding: 6px 4px 4px;
    border-radius: 6px;
  }
  .psp-smm-icon-emoji { font-size: 16px; margin-bottom: 2px; }
  .psp-smm-icon-label { font-size: 7px; }
  .psp-net-label { font-size: 8px; }
  .psp-net-node svg { width: 28px; height: 28px; }
  .psp-smm-bar-wrap { height: 60px; }
  /* CRM rows */
  .psp-crm-row {
    padding: 6px 8px;
    gap: 6px;
    font-size: 10px;
  }
  /* PPC */
  .psp-ppc-interplay { height: 80px; }
  .psp-ppc-orbit-ring { width: 70px; height: 70px; }
  /* Generic visual */
  .psp-generic-visual {
    width: 85%;
    height: 70%;
    gap: 8px;
  }
  .psp-generic-icon {
    width: 40px; height: 40px;
    font-size: 18px;
    border-radius: 10px;
  }
  .psp-generic-bar { width: 12px; }
  .psp-generic-bars { height: 40px; gap: 4px; }
}

/* ══════════════════════════════════
   OUR APPROACH TIMELINE — mobile fix
══════════════════════════════════ */
@media (max-width: 768px) {
  .timeline-progress {
    left: 24px !important;
  }
}

/* ══════════════════════════════════
   FOOTER (Premium Footer)
══════════════════════════════════ */
@media (max-width: 900px) {
  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 40px 30px;
  }
}
@media (max-width: 600px) {
  .footer-grid {
    grid-template-columns: 1fr;
    gap: 20px;
    text-align: center;
  }
  .footer-grid > div {
    align-items: center;
    display: flex;
    flex-direction: column;
  }
  /* Services + Quick Links side by side */
  .footer-grid {
    grid-template-columns: 1fr;
    grid-template-rows: auto auto auto;
  }
  .footer-grid > .ft-col:nth-child(2),
  .footer-grid > .ft-col:nth-child(3) {
    display: inline-flex;
  }
  .footer-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-template-rows: auto auto auto;
  }
  .footer-grid > .ft-col-brand {
    grid-column: 1 / -1;
  }
  .footer-grid > .ft-col:nth-child(2) {
    grid-column: 1;
    grid-row: 2;
  }
  .footer-grid > .ft-col:nth-child(3) {
    grid-column: 2;
    grid-row: 2;
  }
  .footer-grid > .ft-col:nth-child(4) {
    grid-column: 1 / -1;
    grid-row: 3;
    align-items: center;
  }
  /* Supports: heading centered, items stacked and aligned */
  .footer-grid > .ft-col:nth-child(4) .ft-heading {
    text-align: center;
    width: 100%;
    margin-bottom: 12px;
  }
  .ft-support-item {
    flex-direction: column !important;
    align-items: center !important;
    text-align: center !important;
    justify-content: center !important;
    gap: 8px;
    width: 100%;
    margin: 0 auto 16px;
  }
  #rc-footer {
    padding-left: 20px;
    padding-right: 20px;
    padding-top: 30px;
    padding-bottom: 0;
  }
  .ft-brand-name {
    font-size: clamp(20px, 5vw, 28px);
    text-align: center;
  }
  .ft-brand-desc {
    font-size: clamp(12px, 3vw, 14px);
    text-align: center;
  }
  .ft-heading {
    font-size: clamp(14px, 3.5vw, 16px);
    text-align: center;
  }
  .ft-links {
    align-items: center;
    text-align: center;
  }
  .ft-socials {
    justify-content: center;
  }
  .ft-bottom {
    flex-direction: column;
    gap: 8px;
    text-align: center;
    margin-top: 20px;
    padding: 12px 0;
  }
  .ft-support-icon {
    width: 36px;
    height: 36px;
  }
}

/* ══════════════════════════════════
   ABOUT PAGE — SPECIFIC
══════════════════════════════════ */
@media (max-width: 1000px) {
  .about-hero {
    flex-direction: column;
    gap: 30px;
    min-height: auto;
    padding-top: 160px;
    align-items: center;
  }
  .about-hero-left {
    flex: none;
    padding-top: 0;
    width: 100%;
  }
  .about-big-text {
    font-size: clamp(44px, 12vw, 80px);
  }
  .about-hero-right {
    width: 100%;
  }
  .stats-inner {
    grid-template-columns: repeat(2, 1fr);
  }
  .dev-section {
    flex-direction: column;
    min-height: auto;
  }
  .dev-right {
    flex: none;
    width: 100%;
    max-width: 400px;
  }
}
@media (max-width: 768px) {
  .about-hero {
    padding-top: 155px;
  }
  .about-hero-tagline {
    font-size: clamp(22px, 5vw, 36px);
  }
  .about-hero-desc {
    font-size: clamp(13px, 3vw, 16px);
    line-height: 1.7;
  }
  .about-sub-tags .tag {
    font-size: 10px;
    padding: 5px 14px;
  }
  .global-banner-text {
    font-size: clamp(18px, 4.5vw, 32px);
  }
  .global-banner-inner {
    flex-direction: column;
    gap: 12px;
  }
  .testi-box {
    padding: clamp(20px, 5vw, 36px) clamp(14px, 4vw, 28px);
  }
  .testi-cards {
    flex-direction: column;
    gap: 16px;
    align-items: center;
  }
  .testi-card {
    max-width: 100%;
  }
  /* Stats numbers */
  .stat-num {
    font-size: clamp(32px, 8vw, 56px);
  }
  .stat-label {
    font-size: clamp(10px, 2.5vw, 13px);
  }
}
@media (max-width: 600px) {
  .about-hero {
    padding-top: 140px;
  }
  .about-big-text {
    font-size: clamp(36px, 11vw, 60px);
  }
  .stats-inner {
    grid-template-columns: 1fr;
  }
  .learn-more-btn {
    font-size: 12px;
    padding: 12px 24px;
  }
}

/* ══════════════════════════════════
   CONTACT PAGE — SPECIFIC
══════════════════════════════════ */
@media (max-width: 768px) {
  .page-content {
    padding-top: 160px !important;
  }
}
@media (max-width: 900px) {
  .contact-hero {
    flex-direction: column;
    margin-left: 0;
    padding: 0 clamp(16px, 4vw, 40px);
  }
  .contact-hero-left {
    max-width: 100%;
  }
  .contact-info-right {
    align-self: flex-start;
    margin-right: 0;
  }
  .contact-form-wrapper {
    padding: 0 8%;
  }
  .form-row {
    flex-direction: column;
    gap: 0;
  }
  .location-bar {
    flex-direction: column;
  }
  .location-map-wrap {
    width: 100%;
    padding: 20px;
  }
  .location-map-wrap iframe {
    min-height: 260px;
  }
}
@media (max-width: 600px) {
  .contact-form-wrapper {
    padding: 0 16px;
  }
  .page-content {
    padding-top: 150px !important;
  }
  .feel-free-heading .ff-word {
    font-size: clamp(24px, 9vw, 48px);
  }
  .contact-heading {
    font-size: clamp(28px, 8vw, 48px);
  }
  .contact-info-strip {
    font-size: clamp(12px, 3vw, 14px);
  }
}

/* ══════════════════════════════════
   SEO / WEBDEV / PPC / SMM / CRM / HOSTING / UIUX / OPTIMIZE PAGES
   — Service page heroes with large letters & canvases
══════════════════════════════════ */
@media (max-width: 1000px) {
  .seo-hero,
  .webdev-hero,
  .ppc-hero,
  .smm-hero,
  .crm-hero,
  .hosting-hero,
  .uiux-hero,
  .optimize-hero {
    flex-direction: column;
    min-height: auto;
    padding-top: 140px;
    text-align: center;
    gap: 30px;
    align-items: center;
  }
  /* Large letter blocks (SEO, WEB, etc.) */
  .seo-letters {
    margin-left: 0;
    margin-right: 0;
    align-items: center;
  }
  .seo-big {
    font-size: clamp(80px, 14vw, 180px);
    width: clamp(100px, 14vw, 180px);
    height: clamp(110px, 16vw, 220px);
  }
  .wd-word {
    width: clamp(220px, 50vw, 420px) !important;
    font-size: clamp(36px, 6vw, 72px) !important;
    padding: 0 10px;
  }
  .wd-sub {
    width: clamp(260px, 55vw, 480px) !important;
    height: clamp(80px, 12vw, 160px) !important;
    font-size: clamp(36px, 6vw, 72px) !important;
    padding: 0 10px;
  }
  /* Gear canvases / hero illustrations */
  .seo-gears {
    flex: none;
    width: 100%;
    max-width: 500px;
    min-height: 350px;
  }
  #hero-canvas {
    max-width: 100%;
    height: 350px;
  }
  .seo-hero-left,
  .webdev-hero-left,
  .ppc-hero-left,
  .smm-hero-left,
  .crm-hero-left,
  .hosting-hero-left,
  .uiux-hero-left,
  .optimize-hero-left {
    max-width: 100%;
  }
  .seo-hero-right,
  .webdev-hero-right,
  .ppc-hero-right,
  .smm-hero-right,
  .crm-hero-right,
  .hosting-hero-right,
  .uiux-hero-right,
  .optimize-hero-right {
    max-width: 100%;
    width: 100%;
  }
  .cs-wrap,
  .cs-ppc-wrap {
    flex-direction: column;
    align-items: center;
  }
  .cs-left,
  .cs-ppc-left {
    flex: none;
    width: 100%;
    max-width: 400px;
    text-align: center;
  }
  .cs-right,
  .cs-ppc-right {
    width: 100%;
  }
}
@media (max-width: 768px) {
  .seo-hero,
  .webdev-hero,
  .ppc-hero,
  .smm-hero,
  .crm-hero,
  .hosting-hero,
  .uiux-hero,
  .optimize-hero {
    padding-top: 110px;
    padding-left: 16px;
    padding-right: 16px;
    gap: 20px;
  }
  .seo-big {
    font-size: clamp(60px, 16vw, 130px);
    width: clamp(80px, 16vw, 140px);
    height: clamp(90px, 18vw, 170px);
  }
  .wd-word {
    width: clamp(180px, 60vw, 320px) !important;
    font-size: clamp(28px, 7vw, 56px) !important;
  }
  .wd-sub {
    width: clamp(200px, 65vw, 360px) !important;
    height: clamp(60px, 14vw, 120px) !important;
    font-size: clamp(28px, 7vw, 56px) !important;
  }
  .seo-letter-row {
    gap: 8px;
  }
  .seo-gears {
    min-height: 280px;
  }
  #hero-canvas {
    height: 280px;
  }
  /* Importance / results sections text */
  .seo-importance h2,
  .results-heading h2 {
    font-size: clamp(24px, 6vw, 40px);
  }
  .seo-importance p {
    font-size: clamp(13px, 3vw, 16px);
    margin: 0 auto 30px;
  }
  /* Flash cards */
  .input-cards {
    flex-direction: column;
    align-items: center;
    gap: 16px;
  }
  .flash-card {
    width: 100%;
    max-width: 340px;
    padding: 28px 22px;
  }
  .fc-heading {
    font-size: 18px;
  }
  .fc-text {
    font-size: 13px;
  }
  /* Section ring decorations — hide overflow */
  .section-ring {
    display: none;
  }
}
@media (max-width: 480px) {
  .seo-hero,
  .webdev-hero,
  .ppc-hero,
  .smm-hero,
  .crm-hero,
  .hosting-hero,
  .uiux-hero,
  .optimize-hero {
    padding-top: 96px;
  }
  .seo-big {
    font-size: clamp(48px, 14vw, 90px);
    width: clamp(60px, 14vw, 100px);
    height: clamp(70px, 16vw, 120px);
  }
  .wd-word {
    width: 85vw !important;
    font-size: clamp(24px, 7vw, 44px) !important;
  }
  .wd-sub {
    width: 90vw !important;
    height: auto !important;
    font-size: clamp(24px, 7vw, 44px) !important;
    padding: 8px 10px;
  }
}

/* ══════════════════════════════════
   COMMON SECTIONS ON SERVICE PAGES
   (features grids, how-it-works, pricing, cards, etc.)
══════════════════════════════════ */
@media (max-width: 768px) {
  .features-grid,
  .benefits-grid,
  .pricing-grid,
  .process-steps,
  .tools-grid,
  .how-grid,
  .why-grid,
  .packages-grid,
  .seo-features-grid,
  .crm-features-grid,
  .ppc-features-grid {
    grid-template-columns: 1fr !important;
    gap: 16px;
  }
  .two-col-grid,
  .comparison-grid {
    grid-template-columns: 1fr !important;
  }
  .feature-card,
  .benefit-card,
  .pricing-card,
  .process-card,
  .tool-card {
    max-width: 100%;
  }
  /* CRM dashboard */
  .crm-dashboard-wrap {
    flex-direction: column;
  }
  .crm-sidebar {
    width: 100%;
    max-width: 100%;
  }
  .crm-main {
    width: 100%;
  }
  .crm-stats-row {
    flex-direction: column;
    gap: 12px;
  }
  /* Hosting plans */
  .hosting-plans-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  .hosting-plan-card {
    max-width: 100%;
  }
}

@media (max-width: 600px) {
  .section-wrap,
  .seo-section,
  .webdev-section,
  .ppc-section,
  .smm-section,
  .crm-section,
  .hosting-section,
  .optimize-section,
  .seo-importance,
  .results-section {
    padding-left: 16px !important;
    padding-right: 16px !important;
  }
}

/* ══════════════════════════════════
   PORTFOLIO PAGE
══════════════════════════════════ */
@media (max-width: 1000px) {
  .portfolio-grid {
    grid-template-columns: repeat(3, 1fr);
  }
  .portfolio-hero {
    padding-top: 130px;
  }
}
@media (max-width: 700px) {
  .portfolio-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 14px;
  }
}
@media (max-width: 480px) {
  .portfolio-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }
  .portfolio-hero-text h1 {
    font-size: clamp(28px, 8vw, 48px);
  }
}

/* ══════════════════════════════════
   BLOG PAGE
══════════════════════════════════ */
@media (max-width: 768px) {
  .blog-grid {
    grid-template-columns: 1fr;
    gap: 24px;
  }
  .blog-hero {
    padding-top: 120px;
  }
}
@media (max-width: 600px) {
  .blog-post-content {
    padding: 0 16px;
  }
}

/* ══════════════════════════════════
   PORTFOLIO SLIDESHOW — mobile
══════════════════════════════════ */
@media (max-width: 768px) {
  .slide-image-stage {
    height: auto !important;
    aspect-ratio: 16 / 9;
    border-radius: 14px;
  }
  .slide-image-stage img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    object-position: center;
  }
}

/* ══════════════════════════════════
   ULTRAWIDE (1800px+)
══════════════════════════════════ */
@media (min-width: 1800px) {
  #navbar {
    padding: 0 clamp(44px, 3vw, 80px);
  }
  .nav-links {
    gap: 48px;
  }
  .nav-links a {
    font-size: 15px;
  }
  .footer-grid {
    max-width: 1600px;
  }
  /* Hero — scale up for large screens */
  #hero-centre {
    max-width: 1200px;
  }
  .hero-subtitle {
    font-size: clamp(18px, 1.4vw, 26px);
    max-width: 700px;
  }
  #hero-reach, #hero-cure {
    font-size: clamp(100px, 8vw, 160px);
  }
  .hero-headline {
    font-size: clamp(24px, 1.6vw, 36px);
    max-width: 800px;
  }
  .hero-desc {
    font-size: clamp(15px, 1vw, 19px);
    max-width: 650px;
  }
  .hero-btn-primary,
  .hero-btn-secondary {
    font-size: 16px;
    padding: 18px 36px;
  }
  /* Dot canvas — always fullscreen, no change needed */
  /* Section wave — scale with viewport */
  .section-wave-canvas {
    height: 260px;
  }
}

/* ══════════════════════════════════
   PRINT — hide decorative elements
══════════════════════════════════ */
@media print {
  .bg-ring,
  .linen-texture,
  #dot-canvas,
  .section-wave-canvas,
  .hamburger-btn,
  .mobile-nav-overlay {
    display: none !important;
  }
}
