/* ═══════════════════════════════════════════════════
   SUITETECH — CINEMATIC.CSS  (v2)
   Premium motion + animation layer — import on ALL pages
   after theme.css and header.css
═══════════════════════════════════════════════════ */

/* ══════════════════════════════════════
   PAGE TRANSITION OVERLAY
══════════════════════════════════════ */
.page-transition {
  position: fixed;
  inset: 0;
  background: var(--bg);
  z-index: 99999;
  pointer-events: none;
  opacity: 0;
  transition: opacity 0.38s cubic-bezier(0.4,0,0.2,1);
}
.page-transition.active {
  opacity: 1;
  pointer-events: all;
}

/* ══════════════════════════════════════
   SCROLL REVEAL CLASSES
   Apply: reveal | reveal-left | reveal-right | reveal-scale
   Add reveal-delay-N (1-6) for stagger
══════════════════════════════════════ */
.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.8s cubic-bezier(0.4,0,0.2,1),
              transform 0.8s cubic-bezier(0.4,0,0.2,1);
}
.reveal-left {
  opacity: 0;
  transform: translateX(-50px);
  transition: opacity 0.9s cubic-bezier(0.4,0,0.2,1),
              transform 0.9s cubic-bezier(0.4,0,0.2,1);
}
.reveal-right {
  opacity: 0;
  transform: translateX(50px);
  transition: opacity 0.9s cubic-bezier(0.4,0,0.2,1),
              transform 0.9s cubic-bezier(0.4,0,0.2,1);
}
.reveal-scale {
  opacity: 0;
  transform: scale(0.9);
  transition: opacity 0.8s cubic-bezier(0.4,0,0.2,1),
              transform 0.8s cubic-bezier(0.4,0,0.2,1);
}
.reveal.revealed,
.reveal-left.revealed,
.reveal-right.revealed,
.reveal-scale.revealed {
  opacity: 1;
  transform: none;
}
.reveal-delay-1 { transition-delay: 0.08s; }
.reveal-delay-2 { transition-delay: 0.16s; }
.reveal-delay-3 { transition-delay: 0.24s; }
.reveal-delay-4 { transition-delay: 0.32s; }
.reveal-delay-5 { transition-delay: 0.40s; }
.reveal-delay-6 { transition-delay: 0.48s; }

/* ══════════════════════════════════════
   HERO ORB / GLOW ANIMATIONS
══════════════════════════════════════ */
@keyframes heroOrb {
  0%   { transform: translate(0, 0) scale(1); }
  33%  { transform: translate(30px, -20px) scale(1.06); }
  66%  { transform: translate(-20px, 15px) scale(0.96); }
  100% { transform: translate(0, 0) scale(1); }
}

@keyframes badgePulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50%       { opacity: 0.5; transform: scale(0.75); }
}

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

/* ══════════════════════════════════════
   CINEMATIC HERO SECTION
══════════════════════════════════════ */
.cin-hero {
  position: relative;
  min-height: 92vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  padding-top: 68px;
  background: var(--bg);
}

/* Background orbs */
.cin-hero .orb-1,
.cin-hero .orb-2 {
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
}
.cin-hero .orb-1 {
  width: 700px; height: 700px;
  background: radial-gradient(circle, rgba(14,165,233,0.11) 0%, transparent 68%);
  top: -150px; right: -150px;
  animation: heroOrb 14s ease-in-out infinite;
}
.cin-hero .orb-2 {
  width: 500px; height: 500px;
  background: radial-gradient(circle, rgba(99,102,241,0.07) 0%, transparent 68%);
  bottom: -80px; left: -80px;
  animation: heroOrb 18s ease-in-out infinite reverse;
}

/* Dot grid */
.cin-hero .dot-grid {
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle, var(--dot-color) 1px, transparent 1px);
  background-size: 28px 28px;
  pointer-events: none;
  z-index: 0;
}

/* Hero inner layout */
.cin-hero .hero-inner {
  position: relative;
  z-index: 1;
  max-width: 1200px;
  margin: 0 auto;
  padding: 64px 48px;
  width: 100%;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 72px;
  align-items: center;
}

/* ── BADGE ── */
.cin-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(14,165,233,0.09);
  border: 1px solid rgba(14,165,233,0.22);
  color: var(--accent);
  font-size: 11px;
  font-weight: 600;
  padding: 5px 14px;
  border-radius: 100px;
  margin-bottom: 20px;
  letter-spacing: 1.2px;
  text-transform: uppercase;
}
.cin-badge .pulse-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--accent);
  animation: badgePulse 2s ease-in-out infinite;
  flex-shrink: 0;
}

/* ── HERO HEADING ── */
.cin-hero h1 {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: clamp(2.2rem, 4vw, 3.6rem);
  font-weight: 700;
  line-height: 1.1;
  letter-spacing: -1px;
  color: var(--text);
  margin-bottom: 18px;
}
.cin-hero h1 em {
  font-style: italic;
  color: var(--accent);
}
.cin-hero p.lead {
  font-size: 16px;
  color: var(--text2);
  line-height: 1.85;
  max-width: 460px;
  margin-bottom: 36px;
  font-weight: 300;
}

/* ── HERO ACTIONS ── */
.hero-actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  align-items: center;
}

/* ── HERO IMAGE BOX ── */
.hero-image-box {
  background: var(--card-bg);
  border: 1px solid var(--card-border);
  border-radius: 24px;
  overflow: hidden;
  aspect-ratio: 4/3;
  position: relative;
  transition: border-color 0.4s ease;
}
.hero-image-box img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 24px;
  transition: transform 0.7s ease;
}
.hero-image-box:hover img {
  transform: scale(1.04);
}
body.dark-mode .hero-image-box {
  box-shadow: 0 0 60px rgba(14,165,233,0.07), 0 0 120px rgba(14,165,233,0.03);
}

/* ══════════════════════════════════════
   CLIENT LOGO MARQUEE
══════════════════════════════════════ */
.logo-marquee-section {
  background: var(--card-bg);
  border-top: 1px solid var(--card-border);
  padding: 32px 0;
  overflow: hidden;
  position: relative;
  z-index: 5;
}
.marquee-title {
  text-align: center;
  font-family: var(--mono);
  font-size: 11px;
  font-weight: 600;
  color: var(--text3);
  letter-spacing: 0.15em;
  margin-bottom: 24px;
}
.logo-marquee-container {
  width: 100%;
  overflow: hidden;
  position: relative;
}
/* Optional fade masks at the edges */
.logo-marquee-container::before,
.logo-marquee-container::after {
  content: '';
  position: absolute;
  top: 0; bottom: 0;
  width: 150px;
  z-index: 2;
  pointer-events: none;
}
.logo-marquee-container::before {
  left: 0;
  background: linear-gradient(to right, var(--card-bg), transparent);
}
.logo-marquee-container::after {
  right: 0;
  background: linear-gradient(to left, var(--card-bg), transparent);
}
.logo-marquee {
  display: flex;
  width: fit-content;
  animation: scrollMarquee 35s linear infinite;
  align-items: center;
}
.logo-marquee:hover {
  animation-play-state: paused;
}
.marquee-item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 0 40px;
  font-size: 20px;
  font-weight: 700;
  color: var(--text3);
  opacity: 0.6;
  white-space: nowrap;
  transition: opacity 0.3s ease, color 0.3s ease;
}
.marquee-item i {
  font-size: 28px;
}
.marquee-item:hover {
  opacity: 1;
  color: var(--text);
}

@keyframes scrollMarquee {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* ══════════════════════════════════════
   STATS BAND
══════════════════════════════════════ */
.stats-band {
  background: var(--card-bg);
  border-top: 1px solid var(--card-border);
  border-bottom: 1px solid var(--card-border);
  padding: 40px 48px;
}
.stats-inner {
  max-width: 1000px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}
.stat-item { text-align: center; }
.stat-num {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 2.8rem;
  font-weight: 700;
  color: var(--text);
  line-height: 1;
  margin-bottom: 6px;
  display: block;
}
.stat-num em { font-style: normal; color: var(--accent); }
.stat-lbl {
  font-size: 13px;
  color: var(--text3);
  letter-spacing: 0.4px;
}

/* ══════════════════════════════════════
   CINEMATIC SECTION WRAPPER
══════════════════════════════════════ */
.cin-section {
  padding: 88px 48px;
  position: relative;
}
.cin-section.alt {
  background: var(--bg2);
}

.cin-sec-header {
  margin-bottom: 52px;
}
.cin-sec-header.center {
  text-align: center;
  max-width: 620px;
  margin-left: auto;
  margin-right: auto;
}
.cin-sec-header .overline {
  font-size: 11px;
  color: var(--accent);
  letter-spacing: 2px;
  text-transform: uppercase;
  font-weight: 600;
  margin-bottom: 10px;
  display: block;
}
.cin-sec-header h2 {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: clamp(1.8rem, 2.8vw, 2.5rem);
  font-weight: 700;
  color: var(--text);
  line-height: 1.2;
  margin-bottom: 12px;
  letter-spacing: -0.4px;
}
.cin-sec-header p {
  font-size: 15px;
  color: var(--text2);
  line-height: 1.8;
  font-weight: 300;
  max-width: 520px;
}
.cin-sec-header.center p { margin: 0 auto; }

.cin-sec-inner {
  max-width: 1100px;
  margin: 0 auto;
}

/* ══════════════════════════════════════
   SERVICE CARDS (Cinematic upgrade)
══════════════════════════════════════ */
.cin-service-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
  max-width: 1100px;
  margin: 0 auto;
}
.cin-service-card {
  background: var(--card-bg);
  border: 1px solid var(--card-border);
  border-radius: 20px;
  overflow: hidden;
  transition: transform 0.4s cubic-bezier(0.4,0,0.2,1),
              box-shadow 0.4s ease,
              border-color 0.4s ease;
}
.cin-service-card:hover {
  transform: translateY(-10px);
  border-color: rgba(14,165,233,0.25);
}
body.dark-mode .cin-service-card:hover {
  box-shadow: 0 24px 64px rgba(0,0,0,0.55), 0 0 40px rgba(14,165,233,0.07);
}
body:not(.dark-mode) .cin-service-card:hover {
  box-shadow: 0 20px 50px rgba(18,37,74,0.14);
}

/* Card image */
.cin-service-img {
  height: 180px;
  background-size: cover;
  background-position: center;
  position: relative;
  overflow: hidden;
}
.cin-service-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.7s ease;
}
.cin-service-card:hover .cin-service-img img {
  transform: scale(1.08);
}
.cin-service-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(2,5,10,0.88) 0%, rgba(2,5,10,0.3) 50%, transparent 100%);
  opacity: 0;
  transition: opacity 0.4s ease;
  display: flex;
  align-items: flex-end;
  padding: 20px;
}
.cin-service-card:hover .cin-service-overlay { opacity: 1; }
.cin-service-overlay a {
  color: #fff;
  font-size: 13.5px;
  font-weight: 500;
  display: inline-flex;
  align-items: center;
  gap: 7px;
  text-decoration: none;
  transition: gap 0.3s;
}
.cin-service-card:hover .cin-service-overlay a { gap: 12px; }

/* Card body */
.cin-service-body {
  padding: 22px;
}
.cin-service-body h3 {
  font-size: 16.5px;
  font-weight: 600;
  color: var(--text);
  margin-bottom: 8px;
}
.cin-service-body p {
  font-size: 13.5px;
  color: var(--text2);
  line-height: 1.75;
}

/* ══════════════════════════════════════
   FEATURE ITEMS (numbered grid)
══════════════════════════════════════ */
.cin-feat-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  max-width: 1100px;
  margin: 0 auto;
}
.cin-feat-item {
  background: var(--card-bg);
  border: 1px solid var(--card-border);
  border-radius: var(--radius);
  padding: 26px;
  transition: all 0.35s ease;
  position: relative;
  overflow: hidden;
}
.cin-feat-item::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0;
  width: 100%; height: 2px;
  background: var(--btn-bg);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s ease;
}
.cin-feat-item:hover {
  border-color: rgba(14,165,233,0.22);
  transform: translateY(-4px);
}
body.dark-mode .cin-feat-item:hover {
  box-shadow: 0 12px 40px rgba(0,0,0,0.4);
}
.cin-feat-item:hover::after { transform: scaleX(1); }
.cin-feat-num {
  font-size: 11px;
  color: var(--text3);
  letter-spacing: 1px;
  margin-bottom: 10px;
  font-weight: 500;
}
.cin-feat-item h3 {
  font-size: 15px;
  font-weight: 600;
  margin-bottom: 8px;
  color: var(--text);
}
.cin-feat-item p {
  font-size: 13px;
  color: var(--text2);
  line-height: 1.65;
}

/* ══════════════════════════════════════
   HIGHLIGHT ITEMS (Why Us / About)
══════════════════════════════════════ */
.cin-highlight-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  max-width: 860px;
  margin: 0 auto;
}
.cin-highlight-item {
  background: var(--card-bg);
  border: 1px solid var(--card-border);
  border-radius: var(--radius);
  padding: 30px 20px;
  text-align: center;
  transition: all 0.4s ease;
  position: relative;
  overflow: hidden;
}
.cin-highlight-item::before {
  content: '';
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 3px;
  background: var(--btn-bg);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s ease;
}
.cin-highlight-item:hover::before { transform: scaleX(1); }
.cin-highlight-item:hover {
  transform: translateY(-7px);
  border-color: rgba(14,165,233,0.28);
}
body.dark-mode .cin-highlight-item:hover {
  box-shadow: 0 16px 48px rgba(0,0,0,0.4);
}
.cin-highlight-item img {
  width: 72px;
  height: 72px;
  object-fit: cover;
  border-radius: 12px;
  margin: 0 auto 14px;
}
.cin-highlight-item p {
  font-size: 14px;
  font-weight: 500;
  color: var(--text);
}

/* ══════════════════════════════════════
   CTA BAND
══════════════════════════════════════ */
.cin-cta-band {
  background: linear-gradient(135deg, rgba(14,165,233,0.09), rgba(99,102,241,0.06));
  border: 1px solid rgba(14,165,233,0.16);
  border-radius: 24px;
  padding: 70px 56px;
  text-align: center;
  position: relative;
  overflow: hidden;
}
body.dark-mode .cin-cta-band {
  box-shadow: inset 0 0 80px rgba(14,165,233,0.025);
}
.cin-cta-band h2 {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: clamp(1.8rem, 2.8vw, 2.4rem);
  font-weight: 700;
  margin-bottom: 14px;
  color: var(--text);
}
.cin-cta-band p {
  font-size: 16px;
  color: var(--text2);
  max-width: 520px;
  margin: 0 auto 32px;
  line-height: 1.8;
  font-weight: 300;
}
.cin-cta-actions {
  display: flex;
  gap: 14px;
  justify-content: center;
  flex-wrap: wrap;
}

/* ══════════════════════════════════════
   PAGE HERO (inner pages)
══════════════════════════════════════ */
.page-hero {
  padding: 100px 48px 72px;
  text-align: center;
  background:
    radial-gradient(ellipse 65% 55% at 50% 0%, rgba(14,165,233,0.09) 0%, transparent 65%),
    var(--bg);
  position: relative;
  overflow: hidden;
}
.page-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle, var(--dot-color) 1px, transparent 1px);
  background-size: 28px 28px;
  pointer-events: none;
}
.page-hero-inner {
  position: relative;
  z-index: 1;
  max-width: 780px;
  margin: 0 auto;
}
.page-hero h1 {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: clamp(2rem, 4.5vw, 3.4rem);
  font-weight: 700;
  line-height: 1.1;
  color: var(--text);
  margin-bottom: 18px;
  letter-spacing: -0.7px;
}
.page-hero h1 em { font-style: italic; color: var(--accent); }
.page-hero p {
  font-size: 16px;
  color: var(--text2);
  line-height: 1.85;
  font-weight: 300;
  max-width: 580px;
  margin: 0 auto 32px;
}

/* ══════════════════════════════════════
   BLOG / CASE STUDY CARDS
══════════════════════════════════════ */
.blog-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 26px;
  max-width: 1100px;
  margin: 0 auto;
}
.blog-card {
  background: var(--card-bg);
  border: 1px solid var(--card-border);
  border-radius: 18px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: transform 0.4s cubic-bezier(0.4,0,0.2,1),
              border-color 0.4s ease,
              box-shadow 0.4s ease;
  text-decoration: none;
  color: inherit;
}
.blog-card:hover {
  transform: translateY(-9px);
  border-color: rgba(14,165,233,0.22);
}
body.dark-mode .blog-card:hover {
  box-shadow: 0 24px 64px rgba(0,0,0,0.55), 0 0 30px rgba(14,165,233,0.06);
}
body:not(.dark-mode) .blog-card:hover {
  box-shadow: 0 20px 50px rgba(18,37,74,0.13);
}

.blog-card-img {
  height: 200px;
  background: linear-gradient(135deg, var(--navy), var(--navy2));
  background-size: cover;
  background-position: center;
  overflow: hidden;
  position: relative;
  flex-shrink: 0;
}
.blog-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.7s ease;
}
.blog-card:hover .blog-card-img img { transform: scale(1.08); }

.blog-card-body {
  padding: 24px;
  display: flex;
  flex-direction: column;
  flex: 1;
}
.blog-meta {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 12px;
}
.blog-cat {
  font-size: 11px;
  font-weight: 600;
  color: var(--accent);
  text-transform: uppercase;
  letter-spacing: 1px;
}
.blog-date {
  font-size: 12px;
  color: var(--text3);
}
.blog-card-body h3 {
  font-size: 17px;
  font-weight: 600;
  color: var(--text);
  margin-bottom: 10px;
  line-height: 1.4;
}
.blog-card-body p {
  font-size: 13.5px;
  color: var(--text2);
  line-height: 1.75;
  margin-bottom: 20px;
  flex: 1;
}
.blog-read-more {
  font-size: 13.5px;
  color: var(--accent);
  font-weight: 500;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  text-decoration: none;
  margin-top: auto;
  transition: gap 0.3s ease;
}
.blog-read-more::after { content: '→'; }
.blog-card:hover .blog-read-more { gap: 10px; }

/* empty state */
.blog-empty {
  text-align: center;
  padding: 80px 20px;
  color: var(--text3);
}
.blog-empty .empty-icon {
  font-size: 3rem;
  margin-bottom: 16px;
  opacity: 0.4;
}
.blog-empty h3 {
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 8px;
  color: var(--text2);
}
.blog-empty p { font-size: 14px; color: var(--text3); }

/* ══════════════════════════════════════
   MOBILE HAMBURGER
══════════════════════════════════════ */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 8px;
  border: 1px solid var(--card-border);
  border-radius: 8px;
  background: var(--card-bg);
  transition: all 0.2s;
  flex-shrink: 0;
}
.hamburger span {
  display: block;
  width: 20px;
  height: 2px;
  background: var(--text);
  border-radius: 2px;
  transition: all 0.3s ease;
}
.hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ══════════════════════════════════════
   DEMO BUTTON (cinematic version)
══════════════════════════════════════ */
.demo-button {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--btn-bg);
  color: #fff;
  padding: 13px 28px;
  border-radius: 10px;
  font-size: 15px;
  font-weight: 500;
  text-decoration: none;
  border: none;
  cursor: pointer;
  font-family: 'DM Sans', sans-serif;
  transition: opacity 0.3s, transform 0.3s;
  will-change: transform;
}
.demo-button:hover { opacity: 0.88; transform: translateY(-2px); }

/* ══════════════════════════════════════
   NOISE TEXTURE OVERLAY (subtle, dark only)
══════════════════════════════════════ */
.noise-overlay {
  position: fixed;
  top: 0; left: 0;
  width: 100vw; height: 100vh;
  pointer-events: none;
  z-index: 88888;
  opacity: 0;
}
body.dark-mode .noise-overlay {
  opacity: 0.018;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.75' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
  background-repeat: repeat;
}

/* ══════════════════════════════════════
   SCROLLBAR (dark mode)
══════════════════════════════════════ */
body.dark-mode ::-webkit-scrollbar { width: 8px; }
body.dark-mode ::-webkit-scrollbar-track { background: var(--bg2); }
body.dark-mode ::-webkit-scrollbar-thumb {
  background: rgba(14,165,233,0.25);
  border-radius: 4px;
}
body.dark-mode ::-webkit-scrollbar-thumb:hover { background: rgba(14,165,233,0.45); }

/* ══════════════════════════════════════
   SELECTION
══════════════════════════════════════ */
::selection {
  background: rgba(14,165,233,0.22);
  color: var(--text);
}

/* ══════════════════════════════════════
   RESPONSIVE
══════════════════════════════════════ */
@media (max-width: 900px) {
  .cin-hero .hero-inner {
    grid-template-columns: 1fr;
    padding: 50px 24px 60px;
    text-align: center;
    gap: 40px;
  }
  .hero-actions { justify-content: center; }
  .cin-hero p.lead { margin: 0 auto 36px; }
  .cin-hero .orb-1,
  .cin-hero .orb-2 { display: none; }

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

  .cin-service-grid,
  .cin-feat-grid,
  .cin-highlight-grid { grid-template-columns: 1fr 1fr; }

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

  .cin-section { padding: 60px 24px; }
  .cin-cta-band { padding: 50px 28px; }
  .page-hero { padding: 80px 24px 54px; }
}

@media (max-width: 768px) {
  .hamburger { display: flex; }

  .nav-list {
    display: none !important;
    position: fixed;
    top: 68px; left: 0; right: 0; bottom: 0;
    background: var(--nav-bg);
    backdrop-filter: blur(24px);
    -webkit-backdrop-filter: blur(24px);
    flex-direction: column !important;
    padding: 20px;
    overflow-y: auto;
    z-index: 9998;
    gap: 0 !important;
  }
  .nav-list.mobile-open {
    display: flex !important;
  }
  .nav-list li a {
    height: auto !important;
    line-height: 1 !important;
    padding: 14px 0 !important;
    font-size: 16px !important;
    border-bottom: 1px solid var(--divider);
    display: block;
  }
  .dropdown-menu,
  .submenu-menu {
    position: static !important;
    display: none !important;
    background: transparent !important;
    border: none !important;
    box-shadow: none !important;
    padding-left: 16px !important;
    min-width: 0 !important;
  }
  .nav-list li.mobile-dropdown-open > .dropdown-menu {
    display: block !important;
  }

  .cin-service-grid,
  .cin-feat-grid,
  .cin-highlight-grid,
  .blog-grid { grid-template-columns: 1fr; }

  .stats-inner { grid-template-columns: repeat(2, 1fr); gap: 16px; }
}

@media (max-width: 480px) {
  .stats-inner { grid-template-columns: 1fr 1fr; }
  .stat-num { font-size: 2.2rem; }
  .cin-cta-band { padding: 40px 20px; }
}

/* --------------------------------------
   CUSTOM INTERACTIVE CURSOR
-------------------------------------- */
.cin-cursor {
  position: fixed;
  top: 0; left: 0;
  width: 10px; height: 10px;
  background: var(--accent);
  border-radius: 50%;
  pointer-events: none;
  z-index: 999999;
  transform: translate(-50%, -50%);
  transition: transform 0.15s ease, opacity 0.2s ease, width 0.2s, height 0.2s, background 0.2s;
}
.cin-cursor.hovering {
  transform: translate(-50%, -50%) scale(3.5);
  background: rgba(14,165,233,0.3);
  mix-blend-mode: difference;
}
/* ══════════════════════════════════════
   FLOATING WHATSAPP BUTTON
══════════════════════════════════════ */
.whatsapp-fab {
  position: fixed;
  bottom: 30px;
  right: 30px;
  width: 60px;
  height: 60px;
  background-color: #25d366;
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 32px;
  box-shadow: 0 4px 14px rgba(37,211,102,0.4);
  z-index: 9999;
  text-decoration: none;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  animation: pulse-fab 2s infinite;
}
.whatsapp-fab:hover {
  transform: scale(1.1);
  box-shadow: 0 6px 20px rgba(37,211,102,0.6);
  animation: none;
  color: #fff;
}
@keyframes pulse-fab {
  0% { box-shadow: 0 0 0 0 rgba(37,211,102,0.7); }
  70% { box-shadow: 0 0 0 15px rgba(37,211,102,0); }
  100% { box-shadow: 0 0 0 0 rgba(37,211,102,0); }
}

@media (max-width: 768px) {
  .cin-cursor { display: none !important; }
}

/* --------------------------------------
   READING PROGRESS BAR
-------------------------------------- */
.cin-progress-bar {
  position: fixed;
  top: 0;
  left: 0;
  height: 3px;
  background: var(--accent);
  z-index: 999999;
  width: 0%;
  transition: width 0.1s ease;
  box-shadow: 0 0 10px var(--accent);
}

/* --------------------------------------
   NEXT READ / RELATED SECTION
-------------------------------------- */
.next-read-slide {
  margin-top: 60px;
  padding-top: 40px;
  border-top: 1px solid var(--divider);
}
.next-read-slide h3 {
  font-family: 'Playfair Display', serif;
  font-size: 24px;
  margin-bottom: 24px;
  color: var(--text);
}
