/* ================================================
   SKYLIGHT PRINTING & GRAPHICS — MAIN STYLESHEET
   ================================================ */

/* ---- Google Fonts ---- */
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700;800;900&display=swap');

/* ---- CSS Variables ---- */
:root {
  --black:          #080808;
  --dark:           #101014;
  --soft-dark:      #3D4048;
  --muted:          #6B7280;
  --white:          #FFFFFF;
  --off-white:      #F4F8FF;
  --light-blue:     #EEF4FB;
  --coral:          #FF6B70;
  --coral-bright:   #FF5F6D;
  --cyan:           #20C7BF;
  --aqua:           #22D3C5;
  --purple:         #6B4EFF;
  --blue:           #2F6BFF;
  --header-grad:    linear-gradient(90deg, #FF8A5B 0%, #7B4DFF 45%, #1F70D6 100%);
  --cta-grad:       linear-gradient(135deg, #7457FF 0%, #16C6B7 100%);
  --footer-bg:      linear-gradient(135deg, #111113 0%, #17151F 45%, #21162D 100%);

  --font:           'Poppins', sans-serif;
  --radius-sm:      8px;
  --radius-md:      16px;
  --radius-lg:      24px;
  --radius-xl:      40px;
  --radius-full:    9999px;

  --shadow-sm:      0 2px 12px rgba(0,0,0,.07);
  --shadow-md:      0 6px 28px rgba(0,0,0,.12);
  --shadow-lg:      0 16px 48px rgba(0,0,0,.18);
  --shadow-glow:    0 8px 32px rgba(107,78,255,.25);

  --transition:     .3s cubic-bezier(.4,0,.2,1);
  --transition-slow:.6s cubic-bezier(.4,0,.2,1);
}

/* ---- Reset ---- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: var(--font);
  color: var(--dark);
  background: var(--white);
  line-height: 1.65;
  overflow-x: clip;
  animation: bodyFadeIn .5s ease both;
}
@keyframes bodyFadeIn { from { opacity: 0; } to { opacity: 1; } }
img { max-width: 100%; display: block; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }
button { cursor: pointer; border: none; background: none; font-family: var(--font); }

/* ---- Reduced Motion ---- */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation-duration: .01ms !important; transition-duration: .01ms !important; }
}

/* ================================================
   UTILITY
   ================================================ */
.container { max-width: 1260px; margin: 0 auto; padding: 0 24px; }
.section-label {
  font-size: .75rem;
  font-weight: 600;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--coral);
  margin-bottom: 10px;
  display: block;
}
.section-title {
  font-size: clamp(1.75rem, 4vw, 2.6rem);
  font-weight: 800;
  line-height: 1.2;
  color: var(--dark);
}
.section-title .highlight-coral { color: var(--coral); }
.section-title .highlight-cyan  { color: var(--cyan);  }
.section-title .underline-coral {
  color: var(--coral);
  position: relative;
  display: inline-block;
}
.section-title .underline-coral::after {
  content: '';
  position: absolute;
  bottom: -4px; left: 0;
  width: 100%; height: 3px;
  background: var(--coral);
  border-radius: 2px;
  animation: underlineGrow .6s ease .3s both;
}
@keyframes underlineGrow { from { transform: scaleX(0); } to { transform: scaleX(1); } }

.section-sub {
  font-size: 1rem;
  color: var(--muted);
  max-width: 560px;
  margin-top: 12px;
  line-height: 1.7;
}
.text-center { text-align: center; }
.text-center .section-sub { margin: 12px auto 0; }

/* ---- Buttons ---- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 13px 30px;
  border-radius: var(--radius-full);
  font-size: .95rem;
  font-weight: 600;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}
.btn::after {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(255,255,255,.15);
  transform: translateX(-110%) skewX(-15deg);
  transition: transform .4s ease;
}
.btn:hover::after { transform: translateX(110%) skewX(-15deg); }

.btn-primary {
  background: var(--cta-grad);
  color: var(--white);
  box-shadow: var(--shadow-glow);
}
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 12px 36px rgba(107,78,255,.35); }

.btn-outline {
  border: 2px solid var(--white);
  color: var(--white);
  background: transparent;
}
.btn-outline:hover { background: var(--white); color: var(--purple); transform: translateY(-2px); }

.btn-dark {
  background: var(--dark);
  color: var(--white);
}
.btn-dark:hover { transform: translateY(-2px); box-shadow: var(--shadow-md); }

.btn-coral {
  background: linear-gradient(135deg, var(--coral-bright), #ff8e4a);
  color: var(--white);
}
.btn-coral:hover { transform: translateY(-2px); box-shadow: 0 8px 24px rgba(255,95,109,.4); }

.btn-ghost {
  border: 2px solid rgba(107,78,255,.3);
  color: var(--purple);
  background: transparent;
}
.btn-ghost:hover { background: var(--purple); color: var(--white); transform: translateY(-2px); }

.btn-wa {
  background: #25D366;
  color: var(--white);
}
.btn-wa:hover { transform: translateY(-2px); box-shadow: 0 8px 24px rgba(37,211,102,.4); }

/* ---- Placeholder boxes ---- */
.img-placeholder {
  background: linear-gradient(135deg, #e8effa 0%, #dde8f7 100%);
  border: 2px dashed rgba(107,78,255,.2);
  border-radius: var(--radius-md);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 10px;
  color: var(--muted);
  font-size: .8rem;
  font-weight: 500;
  text-align: center;
  padding: 20px;
  transition: var(--transition);
}
.img-placeholder svg { opacity: .4; }
.img-placeholder:hover { border-color: rgba(107,78,255,.4); background: linear-gradient(135deg, #dce7f9, #d1dffc); }

/* ================================================
   TOP STRIP
   ================================================ */
.top-strip {
  background: var(--header-grad);
  padding: 8px 0;
  position: relative;
  z-index: 200;
}
.top-strip__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
}
.top-strip__tag {
  color: var(--white);
  font-size: .8rem;
  font-weight: 600;
  letter-spacing: .06em;
  display: flex;
  align-items: center;
  gap: 8px;
}
.top-strip__tag span {
  background: rgba(255,255,255,.18);
  padding: 2px 10px;
  border-radius: var(--radius-full);
  font-size: .72rem;
  letter-spacing: .08em;
}
.top-strip__links {
  display: flex;
  align-items: center;
  gap: 20px;
}
.top-strip__links a {
  color: rgba(255,255,255,.9);
  font-size: .78rem;
  font-weight: 500;
  transition: var(--transition);
}
.top-strip__links a:hover { color: var(--white); text-decoration: underline; }
.top-strip__phone {
  display: flex;
  align-items: center;
  gap: 6px;
  color: var(--white);
  font-size: .82rem;
  font-weight: 700;
  background: rgba(255,255,255,.15);
  padding: 4px 12px;
  border-radius: var(--radius-full);
  transition: var(--transition);
}
.top-strip__phone:hover { background: rgba(255,255,255,.25); color: var(--white); }

/* ================================================
   HEADER / NAVIGATION
   ================================================ */
.site-header {
  background: var(--white);
  position: sticky;
  top: 0;
  z-index: 100;
  transition: box-shadow .3s ease, backdrop-filter .3s ease;
}
.site-header.scrolled {
  box-shadow: 0 2px 24px rgba(0,0,0,.1);
  backdrop-filter: blur(8px);
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 0;
  gap: 24px;
}
.logo {
  display: flex;
  align-items: center;
  flex-shrink: 0;
  text-decoration: none;
}
.logo img { height: 52px; width: auto; }

/* Desktop nav */
.nav-desktop { display: flex; align-items: center; gap: 0; }
.nav-item { position: relative; }
.nav-link {
  display: flex;
  align-items: center;
  gap: 3px;
  padding: 8px 7px;
  font-size: .78rem;
  font-weight: 600;
  color: var(--soft-dark);
  border-radius: var(--radius-sm);
  transition: var(--transition);
  white-space: nowrap;
  position: relative;
}
.nav-link::after {
  content: '';
  position: absolute;
  bottom: 2px; left: 7px; right: 7px;
  height: 2px;
  background: var(--coral);
  border-radius: 2px;
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .25s ease;
}
.nav-link:hover { color: var(--purple); }
.nav-link:hover::after,
.nav-link.active::after { transform: scaleX(1); }
.nav-link.active { color: var(--purple); }

.nav-arrow {
  width: 14px; height: 14px;
  transition: transform .25s ease;
  flex-shrink: 0;
}
.nav-item:hover .nav-arrow { transform: rotate(180deg); }

/* Dropdown */
.dropdown {
  position: absolute;
  top: 100%;
  left: 0;
  min-width: 220px;
  background: var(--white);
  border: 1px solid rgba(107,78,255,.1);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-lg);
  padding: 18px 0 10px;
  margin-top: 0;
  opacity: 0;
  pointer-events: none;
  transform: translateY(-6px);
  transition: opacity .2s ease, transform .2s ease;
  z-index: 1000;
}
.nav-item:hover .dropdown,
.nav-item:focus-within .dropdown {
  opacity: 1;
  pointer-events: all;
  transform: translateY(0);
}
.dropdown a {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 9px 20px;
  font-size: .85rem;
  font-weight: 500;
  color: var(--soft-dark);
  transition: var(--transition);
}
.dropdown a::before {
  content: '';
  width: 5px; height: 5px;
  background: var(--coral);
  border-radius: 50%;
  flex-shrink: 0;
  opacity: 0;
  transition: opacity .2s;
}
.dropdown a:hover { color: var(--purple); background: var(--off-white); padding-left: 24px; }
.dropdown a:hover::before { opacity: 1; }

/* Mobile hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 8px;
  border-radius: var(--radius-sm);
  transition: var(--transition);
  cursor: pointer;
}
.hamburger span {
  display: block;
  width: 24px; height: 2px;
  background: var(--dark);
  border-radius: 2px;
  transition: var(--transition);
}
.hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Mobile nav overlay */
.nav-mobile {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(8,8,8,.5);
  z-index: 150;
  opacity: 0;
  transition: opacity .3s ease;
  pointer-events: none;
}
.nav-mobile.open { opacity: 1; pointer-events: all; }
.nav-mobile__panel {
  position: absolute;
  top: 0; right: 0;
  width: min(340px, 90vw);
  height: 100%;
  background: var(--white);
  padding: 24px 0;
  overflow-y: auto;
  transform: translateX(100%);
  transition: transform .35s cubic-bezier(.4,0,.2,1);
}
.nav-mobile.open .nav-mobile__panel { transform: translateX(0); }
.nav-mobile__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 24px 20px;
  border-bottom: 1px solid var(--light-blue);
}
.nav-mobile__close {
  width: 36px; height: 36px;
  border-radius: var(--radius-full);
  background: var(--off-white);
  display: flex; align-items: center; justify-content: center;
  cursor: pointer;
  transition: var(--transition);
}
.nav-mobile__close:hover { background: var(--coral); color: var(--white); }
.nav-mobile__list { padding: 8px 0; }
.nav-mobile__item { border-bottom: 1px solid rgba(238,244,251,.8); }
.nav-mobile__link {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 24px;
  font-size: .9rem;
  font-weight: 600;
  color: var(--soft-dark);
  transition: var(--transition);
}
.nav-mobile__link:hover { color: var(--purple); }
.nav-mobile__arrow {
  width: 16px; height: 16px;
  transition: transform .25s ease;
}
.nav-mobile__item.open .nav-mobile__arrow { transform: rotate(180deg); }
.nav-mobile__sub {
  display: none;
  background: var(--off-white);
  padding: 4px 0;
}
.nav-mobile__item.open .nav-mobile__sub { display: block; }
.nav-mobile__sub a {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 10px 24px 10px 36px;
  font-size: .83rem;
  color: var(--muted);
  transition: var(--transition);
}
.nav-mobile__sub a::before { content: '›'; color: var(--coral); font-size: 1rem; }
.nav-mobile__sub a:hover { color: var(--purple); }

/* ================================================
   HERO
   ================================================ */
.hero {
  background: linear-gradient(135deg, #fff4f0 0%, #f0ebff 40%, #e8f0ff 70%, #e5f9f7 100%);
  padding: 80px 0 0;
  overflow: hidden;
  position: relative;
  min-height: 640px;
}
.hero__blob {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  opacity: .35;
  pointer-events: none;
  animation: blobFloat 8s ease-in-out infinite;
}
.hero__blob--1 { width: 380px; height: 380px; background: #ffb3c6; top: -80px; right: 15%; animation-delay: 0s; }
.hero__blob--2 { width: 300px; height: 300px; background: #c0b0ff; top: 100px; right: 5%; animation-delay: -3s; }
.hero__blob--3 { width: 260px; height: 260px; background: #a8e6ff; bottom: 0; right: 35%; animation-delay: -5s; }
@keyframes blobFloat {
  0%, 100% { transform: translate(0, 0) scale(1); }
  33%       { transform: translate(20px, -20px) scale(1.04); }
  66%       { transform: translate(-15px, 10px) scale(.97); }
}

.hero__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
  position: relative;
  z-index: 2;
}
.hero__content { animation: heroContentIn .8s ease .2s both; }
@keyframes heroContentIn {
  from { opacity: 0; transform: translateY(30px); }
  to   { opacity: 1; transform: translateY(0); }
}
.hero__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255,255,255,.7);
  border: 1px solid rgba(107,78,255,.15);
  padding: 6px 16px;
  border-radius: var(--radius-full);
  font-size: .78rem;
  font-weight: 600;
  color: var(--purple);
  margin-bottom: 20px;
  backdrop-filter: blur(8px);
}
.hero__eyebrow::before { content: ''; width: 6px; height: 6px; background: var(--cyan); border-radius: 50%; }

.hero__title {
  font-size: clamp(2rem, 5.5vw, 3.4rem);
  font-weight: 900;
  line-height: 1.12;
  color: var(--dark);
  margin-bottom: 20px;
}
.hero__title .line { display: block; overflow: hidden; }
.hero__title .line span {
  display: block;
  animation: lineSlideUp .7s ease both;
}
.hero__title .line:nth-child(1) span { animation-delay: .3s; }
.hero__title .line:nth-child(2) span { animation-delay: .45s; }
.hero__title .line:nth-child(3) span { animation-delay: .6s; }
@keyframes lineSlideUp {
  from { transform: translateY(100%); opacity: 0; }
  to   { transform: translateY(0);    opacity: 1; }
}
.hero__title .eco {
  color: var(--cyan);
  position: relative;
  display: inline-block;
}
.hero__title .eco::after {
  content: '';
  position: absolute;
  bottom: -4px; left: 0;
  width: 100%; height: 3px;
  background: var(--cyan);
  border-radius: 2px;
  animation: underlineGrow .5s ease 1s both;
}
.hero__desc {
  color: var(--muted);
  font-size: 1rem;
  max-width: 480px;
  line-height: 1.75;
  margin-bottom: 32px;
  animation: heroFadeUp .7s ease .75s both;
}
@keyframes heroFadeUp {
  from { opacity: 0; transform: translateY(16px); }
  to   { opacity: 1; transform: translateY(0); }
}
.hero__ctas {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  animation: heroFadeUp .7s ease .9s both;
}
.hero__stat {
  display: inline-flex;
  flex-direction: column;
  align-items: flex-start;
  background: rgba(255,255,255,.75);
  backdrop-filter: blur(12px);
  border: 1px solid rgba(255,255,255,.8);
  border-radius: var(--radius-md);
  padding: 12px 18px;
  box-shadow: var(--shadow-sm);
  margin-top: 36px;
  animation: heroFadeUp .7s ease 1.05s both;
}
.hero__stat-number {
  font-size: 1.7rem;
  font-weight: 900;
  color: var(--dark);
  line-height: 1;
}
.hero__stat-label { font-size: .78rem; color: var(--muted); font-weight: 500; margin-top: 2px; }

/* Hero visual side */
.hero__visual {
  position: relative;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  animation: heroVisualIn .9s ease .4s both;
  padding-bottom: 0;
}
@keyframes heroVisualIn {
  from { opacity: 0; transform: translateY(40px); }
  to   { opacity: 1; transform: translateY(0); }
}
.hero__main-placeholder {
  width: 100%;
  max-width: 520px;
  aspect-ratio: 4/3;
  border-radius: var(--radius-lg) var(--radius-lg) 0 0;
  overflow: hidden;
}
.hero__main-placeholder .img-placeholder {
  width: 100%; height: 100%;
  border-radius: var(--radius-lg) var(--radius-lg) 0 0;
  font-size: .85rem;
  gap: 14px;
}

/* Floating glass cards */
.hero__card {
  position: absolute;
  background: rgba(255,255,255,.82);
  backdrop-filter: blur(16px);
  border: 1px solid rgba(255,255,255,.9);
  border-radius: var(--radius-md);
  padding: 14px 20px;
  box-shadow: var(--shadow-md);
  animation: floatCard 4s ease-in-out infinite;
}
.hero__card--left {
  left: -28px;
  bottom: 80px;
  animation-delay: 0s;
}
.hero__card--right {
  right: -28px;
  top: 60px;
  animation-delay: -2s;
}
@keyframes floatCard {
  0%, 100% { transform: translateY(0); }
  50%       { transform: translateY(-10px); }
}
.hero__card-num {
  font-size: 1.8rem;
  font-weight: 900;
  color: var(--purple);
  line-height: 1;
}
.hero__card-label { font-size: .72rem; color: var(--muted); font-weight: 500; margin-top: 3px; }
.hero__card .hero__card-item { margin-bottom: 6px; }
.hero__card .hero__card-item:last-child { margin-bottom: 0; }

/* Hero Image Carousel */
.hero-carousel {
  position: relative;
  width: 100%;
  height: 100%;
}
.hero-carousel__slide {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  opacity: 0;
  transition: opacity 0.9s ease;
}
.hero-carousel__slide.is-active { opacity: 1; }
.hero-carousel__dots {
  position: absolute;
  bottom: 14px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 7px;
  z-index: 5;
}
.hero-carousel__dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  border: 2px solid rgba(255,255,255,.75);
  background: transparent;
  cursor: pointer;
  padding: 0;
  transition: background 0.3s, transform 0.3s, border-color 0.3s;
}
.hero-carousel__dot.is-active {
  background: #fff;
  border-color: #fff;
  transform: scale(1.3);
}

/* ================================================
   CATEGORIES
   ================================================ */
.categories { padding: 90px 0; background: var(--white); }
.categories__grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 32px 40px;
  margin-top: 52px;
}
.cat-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 14px;
  cursor: pointer;
  text-decoration: none;
  width: 120px;
}
.cat-card__circle {
  width: 110px; height: 110px;
  border-radius: 50%;
  overflow: hidden;
  border: 3px solid transparent;
  background-clip: padding-box;
  box-shadow: var(--shadow-sm);
  transition: transform .35s ease, box-shadow .35s ease;
  position: relative;
}
.cat-card__circle::after {
  content: '';
  position: absolute;
  inset: -3px;
  border-radius: 50%;
  background: var(--cta-grad);
  z-index: -1;
  opacity: 0;
  transition: opacity .3s ease;
}
.cat-card:hover .cat-card__circle { transform: translateY(-6px) scale(1.05); box-shadow: 0 12px 32px rgba(107,78,255,.2); }
.cat-card:hover .cat-card__circle::after { opacity: 1; }
.cat-card__circle .img-placeholder {
  width: 100%; height: 100%;
  border-radius: 50%;
  border: none;
  font-size: .7rem;
}
.cat-card__name {
  font-size: .82rem;
  font-weight: 600;
  color: var(--soft-dark);
  text-align: center;
  transition: color .25s ease;
}
.cat-card:hover .cat-card__name { color: var(--purple); }

/* ================================================
   ABOUT SECTION
   ================================================ */
.about-section { padding: 90px 0; background: var(--off-white); }
.about-section__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}
.about-section__images {
  position: relative;
  height: 480px;
}
.about-img-main {
  position: absolute;
  width: 68%;
  aspect-ratio: 3/4;
  top: 0; left: 0;
  border-radius: var(--radius-xl) var(--radius-xl) var(--radius-xl) var(--radius-sm);
  overflow: hidden;
}
.about-img-sm {
  position: absolute;
  width: 48%;
  aspect-ratio: 1;
  bottom: 0; right: 0;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}
.about-img-sm2 {
  position: absolute;
  width: 40%;
  aspect-ratio: 1;
  bottom: 120px; right: 0;
  border-radius: var(--radius-lg);
  overflow: hidden;
}
.about-img-main .img-placeholder,
.about-img-sm  .img-placeholder,
.about-img-sm2 .img-placeholder { width: 100%; height: 100%; font-size: .72rem; }

.about-section__features { margin-top: 32px; display: flex; flex-direction: column; gap: 18px; }
.feature-item {
  display: flex;
  gap: 14px;
  align-items: flex-start;
}
.feature-icon {
  width: 38px; height: 38px;
  border-radius: var(--radius-sm);
  background: var(--cta-grad);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
  color: var(--white);
  font-size: 1rem;
  box-shadow: var(--shadow-glow);
}
.feature-icon svg { width: 18px; height: 18px; }
.feature-item h4 { font-size: .92rem; font-weight: 700; color: var(--dark); margin-bottom: 2px; }
.feature-item p  { font-size: .83rem; color: var(--muted); line-height: 1.5; }

/* ================================================
   MARQUEE STRIP
   ================================================ */
.marquee-section { overflow: hidden; padding: 0; }
.marquee-strip {
  padding: 14px 0;
  white-space: nowrap;
  overflow: hidden;
  position: relative;
}
.marquee-strip--1 { background: var(--cta-grad); transform: rotate(-1.5deg) scaleX(1.05); }
.marquee-strip--2 { background: linear-gradient(90deg, #FF8A5B, #FF5F6D); transform: rotate(1.5deg) scaleX(1.05); margin-top: -8px; }
.marquee-track {
  display: inline-flex;
  animation: marqueeLeft 22s linear infinite;
}
.marquee-track--rev { animation: marqueeRight 22s linear infinite; }
@keyframes marqueeLeft  { from { transform: translateX(0); } to { transform: translateX(-50%); } }
@keyframes marqueeRight { from { transform: translateX(-50%); } to { transform: translateX(0); } }
.marquee-item {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  color: rgba(255,255,255,.95);
  font-size: .85rem;
  font-weight: 700;
  letter-spacing: .04em;
  padding: 0 20px;
}
.marquee-item::after { content: '/'; opacity: .5; }

/* ================================================
   PORTFOLIO / PREMIUM JOBS
   ================================================ */
.portfolio { padding: 90px 0; background: var(--off-white); }
.portfolio__grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 20px;
  margin-top: 52px;
}
.port-item {
  position: relative;
  aspect-ratio: 1;
  border-radius: 50%;
  overflow: hidden;
  cursor: pointer;
  box-shadow: var(--shadow-sm);
  transition: transform .35s ease, box-shadow .35s ease;
}
.port-item:hover { transform: scale(1.08); box-shadow: var(--shadow-lg); }
.port-item .img-placeholder { width: 100%; height: 100%; border-radius: 50%; border: none; font-size: .68rem; }
.port-item__overlay {
  position: absolute;
  inset: 0;
  background: rgba(107,78,255,.82);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  opacity: 0;
  transition: opacity .3s ease;
  color: var(--white);
  font-size: .75rem;
  font-weight: 700;
  text-align: center;
  padding: 12px;
}
.port-item:hover .port-item__overlay { opacity: 1; }

/* ================================================
   FEATURED SERVICE BLOCK
   ================================================ */
.feature-block { padding: 90px 0; background: var(--white); }
.feature-block__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}
.feature-block__collage {
  position: relative;
  height: 440px;
}
.fb-img { position: absolute; border-radius: var(--radius-lg); overflow: hidden; }
.fb-img-1 { width: 58%; aspect-ratio: 2/3; top: 0; left: 0; animation: floatCard 5s ease-in-out infinite; }
.fb-img-2 { width: 48%; aspect-ratio: 1; top: 40px; right: 0; animation: floatCard 5s ease-in-out infinite; animation-delay: -2.5s; }
.fb-img-3 { width: 44%; aspect-ratio: 1; bottom: 0; left: 30%; animation: floatCard 5s ease-in-out infinite; animation-delay: -1s; }
.fb-img .img-placeholder { width: 100%; height: 100%; font-size: .72rem; }

.feature-block__cards { display: flex; flex-direction: column; gap: 20px; margin-top: 30px; }
.fb-card {
  display: flex;
  gap: 16px;
  align-items: flex-start;
  padding: 20px;
  background: var(--off-white);
  border-radius: var(--radius-md);
  border: 1px solid rgba(107,78,255,.1);
  transition: var(--transition);
}
.fb-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); border-color: rgba(107,78,255,.25); }
.fb-card__icon {
  width: 44px; height: 44px;
  border-radius: var(--radius-sm);
  background: var(--cta-grad);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
  color: var(--white);
}
.fb-card__icon svg { width: 20px; height: 20px; }
.fb-card h4 { font-size: .9rem; font-weight: 700; color: var(--dark); margin-bottom: 4px; }
.fb-card p  { font-size: .82rem; color: var(--muted); line-height: 1.55; }

/* ================================================
   TOOLS / CUSTOM PRINTS CAROUSEL
   ================================================ */
.tools-section { padding: 90px 0; background: var(--light-blue); overflow: hidden; position: relative; }
.tools-section__coral-blob {
  position: absolute;
  bottom: -80px;
  left: 50%;
  transform: translateX(-50%);
  width: 500px; height: 280px;
  background: var(--coral);
  border-radius: 50%;
  opacity: .12;
  pointer-events: none;
  animation: breathe 4s ease-in-out infinite;
}
@keyframes breathe {
  0%, 100% { transform: translateX(-50%) scale(1); }
  50%       { transform: translateX(-50%) scale(1.06); }
}

.tools-carousel {
  position: relative;
  margin-top: 60px;
}
.tools-track-wrapper { overflow: hidden; }
.tools-track {
  display: flex;
  gap: 24px;
  transition: transform .55s cubic-bezier(.4,0,.2,1);
}
.tool-card {
  flex: 0 0 calc(25% - 18px);
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 28px 24px 24px;
  box-shadow: var(--shadow-sm);
  transition: transform .35s ease, box-shadow .35s ease;
  transform: rotate(-1.5deg);
  position: relative;
  overflow: hidden;
}
.tool-card:nth-child(2n) { transform: rotate(1.5deg); }
.tool-card.active,
.tool-card:hover {
  transform: rotate(0) translateY(-8px) scale(1.03);
  box-shadow: var(--shadow-lg);
  z-index: 2;
}
.tool-card__img {
  width: 100%;
  aspect-ratio: 4/3;
  border-radius: var(--radius-md);
  overflow: hidden;
  margin-bottom: 20px;
}
.tool-card__img .img-placeholder { width: 100%; height: 100%; font-size: .72rem; }
.tool-card h4 { font-size: 1rem; font-weight: 800; color: var(--dark); margin-bottom: 8px; }
.tool-card p  { font-size: .82rem; color: var(--muted); line-height: 1.6; }

.carousel-controls {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  margin-top: 36px;
}
.carousel-btn {
  width: 44px; height: 44px;
  border-radius: 50%;
  border: 2px solid rgba(107,78,255,.25);
  display: flex; align-items: center; justify-content: center;
  color: var(--purple);
  transition: var(--transition);
  background: var(--white);
}
.carousel-btn:hover { background: var(--purple); color: var(--white); border-color: var(--purple); transform: scale(1.1); }
.carousel-btn svg { width: 18px; height: 18px; }
.carousel-dots { display: flex; gap: 8px; }
.carousel-dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: rgba(107,78,255,.25);
  transition: var(--transition);
  cursor: pointer;
}
.carousel-dot.active { background: var(--purple); width: 22px; border-radius: 4px; }

/* ================================================
   TESTIMONIALS
   ================================================ */
.testimonials { padding: 90px 0; background: var(--white); }
.testimonials__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
  margin-top: 52px;
}
.testi-visual { position: relative; }
.testi-circle {
  width: 360px; height: 360px;
  border-radius: 50%;
  overflow: hidden;
  margin: 0 auto;
  box-shadow: var(--shadow-lg);
  border: 5px solid var(--white);
}
.testi-circle .img-placeholder { width: 100%; height: 100%; border-radius: 50%; border: none; font-size: .82rem; }

.testi-quote { font-size: .75rem; color: var(--coral); margin-bottom: 8px; opacity: .5; }
.testi-quote svg { width: 40px; height: 40px; }
.testi-text {
  font-size: 1.05rem;
  color: var(--soft-dark);
  line-height: 1.75;
  font-style: italic;
  margin-bottom: 24px;
}
.testi-author h4 { font-size: .95rem; font-weight: 700; color: var(--dark); }
.testi-author p  { font-size: .82rem; color: var(--muted); margin-top: 2px; }
.testi-controls {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-top: 28px;
}
.testi-progress {
  flex: 1;
  height: 3px;
  background: rgba(107,78,255,.15);
  border-radius: 2px;
  overflow: hidden;
}
.testi-progress__fill {
  height: 100%;
  background: var(--purple);
  border-radius: 2px;
  transition: width .5s ease;
}
.testi-btn {
  width: 40px; height: 40px;
  border-radius: 50%;
  border: 2px solid rgba(107,78,255,.25);
  display: flex; align-items: center; justify-content: center;
  color: var(--purple);
  transition: var(--transition);
}
.testi-btn:hover { background: var(--purple); color: var(--white); border-color: var(--purple); }
.testi-btn svg { width: 16px; height: 16px; }

.testi-slide { display: none; }
.testi-slide.active { display: block; animation: testiIn .5s ease; }
@keyframes testiIn { from { opacity: 0; transform: translateX(20px); } to { opacity: 1; transform: translateX(0); } }

/* ================================================
   NEWSLETTER / CTA BANNER
   ================================================ */
.newsletter { padding: 90px 0; background: var(--off-white); }
.newsletter__card {
  background: var(--cta-grad);
  border-radius: var(--radius-xl);
  padding: 56px 60px;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 40px;
  align-items: center;
  overflow: hidden;
  position: relative;
}
.newsletter__card::before {
  content: '';
  position: absolute;
  width: 400px; height: 400px;
  border-radius: 50%;
  background: rgba(255,255,255,.06);
  top: -150px; right: 250px;
  pointer-events: none;
  animation: breathe 6s ease-in-out infinite;
}
.newsletter__title {
  font-size: clamp(1.5rem, 3.5vw, 2rem);
  font-weight: 900;
  color: var(--white);
  line-height: 1.2;
  margin-bottom: 8px;
}
.newsletter__sub { color: rgba(255,255,255,.8); font-size: .9rem; margin-bottom: 24px; }
.newsletter__form { display: flex; gap: 12px; flex-wrap: wrap; }
.newsletter__input {
  flex: 1;
  min-width: 220px;
  padding: 13px 20px;
  border-radius: var(--radius-full);
  border: none;
  font-family: var(--font);
  font-size: .9rem;
  color: var(--dark);
  background: rgba(255,255,255,.92);
  transition: var(--transition);
  outline: none;
}
.newsletter__input:focus { background: var(--white); box-shadow: 0 0 0 3px rgba(255,255,255,.3); }
.newsletter__img {
  width: 220px;
  flex-shrink: 0;
  position: relative;
  z-index: 1;
  animation: floatCard 4s ease-in-out infinite;
}
.newsletter__img .img-placeholder {
  width: 100%;
  aspect-ratio: 1;
  border-radius: var(--radius-lg);
  border-color: rgba(255,255,255,.3);
  background: rgba(255,255,255,.15);
  color: rgba(255,255,255,.8);
}

/* ================================================
   FOOTER
   ================================================ */
.site-footer {
  background: var(--footer-bg);
  padding: 64px 0 0;
  color: rgba(255,255,255,.7);
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1.2fr;
  gap: 40px;
  padding-bottom: 48px;
  border-bottom: 1px solid rgba(255,255,255,.08);
}
.footer-brand__logo { margin-bottom: 16px; }
.footer-brand__logo img { height: 44px; width: auto; }
.footer-brand p { font-size: .85rem; line-height: 1.7; max-width: 260px; }
.footer-social { display: flex; gap: 12px; margin-top: 20px; }
.footer-social a {
  width: 36px; height: 36px;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,.2);
  display: flex; align-items: center; justify-content: center;
  color: rgba(255,255,255,.7);
  transition: var(--transition);
}
.footer-social a:hover { background: var(--cta-grad); border-color: transparent; color: var(--white); transform: translateY(-3px); }
.footer-social svg { width: 16px; height: 16px; }

.footer-col h5 {
  font-size: .88rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 14px;
  position: relative;
  padding-bottom: 10px;
}
.footer-col h5::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0;
  width: 28px; height: 2px;
  background: var(--coral);
  border-radius: 2px;
}
.footer-col ul { display: flex; flex-direction: column; gap: 9px; }
.footer-col ul li a {
  font-size: .83rem;
  color: rgba(255,255,255,.65);
  transition: var(--transition);
}
.footer-col ul li a:hover { color: var(--white); padding-left: 4px; }

.footer-contact { display: flex; flex-direction: column; gap: 12px; }
.footer-contact-item {
  display: flex;
  gap: 10px;
  align-items: flex-start;
  font-size: .83rem;
}
.footer-contact-item svg { width: 16px; height: 16px; color: var(--coral); flex-shrink: 0; margin-top: 2px; }
.footer-contact-item a { color: rgba(255,255,255,.65); transition: var(--transition); }
.footer-contact-item a:hover { color: var(--white); }

.footer-bottom {
  padding: 20px 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: .78rem;
  color: rgba(255,255,255,.35);
  text-align: center;
}

/* ================================================
   STICKY CONTACT BUTTONS — global, always visible
   ================================================ */

/* ── Right side: WhatsApp + Call ── */
.side-buttons {
  position: fixed;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  z-index: 9900;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.side-btn {
  display: flex;
  align-items: center;
  height: 54px;
  border-radius: 16px 0 0 16px;
  color: #fff;
  text-decoration: none;
  box-shadow: -4px 4px 26px rgba(0,0,0,.24);
  transition: transform .38s cubic-bezier(.34,1.56,.64,1),
              box-shadow .32s ease;
  overflow: hidden;
  position: relative;
  will-change: transform;
}
.side-btn:hover {
  transform: translateX(-9px);
  box-shadow: -10px 6px 38px rgba(0,0,0,.34);
}

/* Icon */
.side-btn__icon {
  width: 54px; height: 54px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  position: relative;
  z-index: 1;
}
.side-btn__icon svg { width: 24px; height: 24px; }

/* Pulse ring */
.side-btn__icon::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: 14px;
  animation: sideRing 2.8s ease-out infinite;
  opacity: 0;
  z-index: -1;
}
.side-btn--wa   .side-btn__icon::before { background: rgba(37,211,102,.42); }
.side-btn--call .side-btn__icon::before { background: rgba(107,78,255,.42); }
.side-btn--wa   { animation-delay: 0s; }
.side-btn--call { animation-delay: -1.4s; }
@keyframes sideRing {
  0%  { transform: scale(.7);   opacity: .9; }
  70% { transform: scale(1.55); opacity: 0;  }
  100%{ transform: scale(1.55); opacity: 0;  }
}

/* Slide-out label */
.side-btn__label {
  font-size: .79rem;
  font-weight: 700;
  letter-spacing: .03em;
  white-space: nowrap;
  max-width: 0;
  overflow: hidden;
  padding-right: 0;
  transition: max-width .38s cubic-bezier(.4,0,.2,1),
              padding-right .38s ease;
}
.side-btn:hover .side-btn__label {
  max-width: 130px;
  padding-right: 20px;
}

/* Colors */
.side-btn--wa   { background: linear-gradient(135deg, #25D366 0%, #128C7E 100%); }
.side-btn--call { background: linear-gradient(135deg, #6B4EFF 0%, #20C7BF 100%); }

/* Shine accent */
.side-btn::after {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 2px;
  background: rgba(255,255,255,.45);
  border-radius: 16px 0 0 0;
  pointer-events: none;
}

/* ── Book Now — bottom left pill ── */
.book-now-btn {
  position: fixed;
  bottom: 32px;
  left: 24px;
  z-index: 9900;
  display: flex;
  align-items: center;
  gap: 10px;
  background: linear-gradient(135deg, #6B4EFF 0%, #FF6B70 100%);
  color: #fff;
  text-decoration: none;
  padding: 13px 16px 13px 18px;
  border-radius: 50px;
  font-family: var(--font);
  font-size: .84rem;
  font-weight: 700;
  letter-spacing: .02em;
  white-space: nowrap;
  box-shadow: 0 6px 30px rgba(107,78,255,.45);
  transition: transform .35s cubic-bezier(.34,1.56,.64,1),
              box-shadow .3s ease;
  animation: bookPulse 3s ease-in-out infinite;
}
.book-now-btn svg { width: 17px; height: 17px; flex-shrink: 0; }
.book-now-btn:hover {
  transform: translateY(-5px) scale(1.04);
  box-shadow: 0 16px 44px rgba(107,78,255,.62);
  animation: none;
}
.book-now-btn__arrow {
  width: 20px; height: 20px;
  border-radius: 50%;
  background: rgba(255,255,255,.22);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
  transition: transform .3s ease, background .3s ease;
}
.book-now-btn__arrow svg { width: 12px; height: 12px; }
.book-now-btn:hover .book-now-btn__arrow {
  transform: translateX(3px);
  background: rgba(255,255,255,.4);
}
@keyframes bookPulse {
  0%,100% { box-shadow: 0 6px 30px rgba(107,78,255,.45), 0 0 0 0    rgba(107,78,255,.2); }
  50%      { box-shadow: 0 8px 38px rgba(107,78,255,.56), 0 0 0 12px rgba(107,78,255,.0); }
}

/* ── Back to Top — bottom right ── */
.back-top {
  position: fixed;
  bottom: 32px;
  right: 20px;
  width: 48px; height: 48px;
  border-radius: 50%;
  background: linear-gradient(135deg, #6B4EFF 0%, #20C7BF 100%);
  color: #fff;
  border: none;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 6px 26px rgba(107,78,255,.44);
  cursor: pointer;
  opacity: 1;
  pointer-events: all;
  transform: none;
  transition: transform .35s cubic-bezier(.34,1.56,.64,1),
              box-shadow .3s ease;
  z-index: 9900;
  animation: topPulse 3.2s ease-in-out infinite;
}
.back-top:hover {
  transform: translateY(-5px);
  box-shadow: 0 14px 38px rgba(107,78,255,.6);
  animation: none;
}
.back-top svg { width: 20px; height: 20px; }
@keyframes topPulse {
  0%,100% { box-shadow: 0 6px 26px rgba(107,78,255,.44), 0 0 0 0    rgba(107,78,255,.18); }
  50%      { box-shadow: 0 8px 32px rgba(107,78,255,.54), 0 0 0 10px rgba(107,78,255,.0); }
}

/* Mobile sizing */
@media (max-width: 640px) {
  .side-btn           { height: 46px; }
  .side-btn__icon     { width: 46px; height: 46px; }
  .side-btn__icon svg { width: 21px; height: 21px; }
  .side-btn:hover .side-btn__label { max-width: 100px; padding-right: 14px; }
  .book-now-btn       { bottom: 20px; left: 14px; padding: 10px 14px 10px 14px; font-size: .77rem; gap: 8px; }
  .book-now-btn__arrow { width: 18px; height: 18px; }
  .back-top           { bottom: 20px; right: 14px; width: 42px; height: 42px; }
}

/* ================================================
   SCROLL REVEAL
   ================================================ */
.reveal {
  opacity: 0;
  transform: translateY(36px);
  transition: opacity .7s ease, transform .7s ease;
}
.reveal.in-view {
  opacity: 1;
  transform: translateY(0);
}
.reveal-left  { opacity: 0; transform: translateX(-40px); transition: opacity .7s ease, transform .7s ease; }
.reveal-right { opacity: 0; transform: translateX(40px);  transition: opacity .7s ease, transform .7s ease; }
.reveal-left.in-view, .reveal-right.in-view { opacity: 1; transform: translateX(0); }
.reveal-scale { opacity: 0; transform: scale(.9); transition: opacity .6s ease, transform .6s ease; }
.reveal-scale.in-view { opacity: 1; transform: scale(1); }

/* Stagger children */
.stagger > * {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity .55s ease, transform .55s ease;
}
.stagger.in-view > *:nth-child(1) { opacity: 1; transform: translateY(0); transition-delay: 0s; }
.stagger.in-view > *:nth-child(2) { opacity: 1; transform: translateY(0); transition-delay: .1s; }
.stagger.in-view > *:nth-child(3) { opacity: 1; transform: translateY(0); transition-delay: .2s; }
.stagger.in-view > *:nth-child(4) { opacity: 1; transform: translateY(0); transition-delay: .3s; }
.stagger.in-view > *:nth-child(5) { opacity: 1; transform: translateY(0); transition-delay: .4s; }
.stagger.in-view > *:nth-child(6) { opacity: 1; transform: translateY(0); transition-delay: .5s; }
.stagger.in-view > *:nth-child(7) { opacity: 1; transform: translateY(0); transition-delay: .6s; }
.stagger.in-view > *:nth-child(8) { opacity: 1; transform: translateY(0); transition-delay: .7s; }
.stagger.in-view > *:nth-child(n+9) { opacity: 1; transform: translateY(0); transition-delay: .8s; }

/* ================================================
   INNER PAGE HERO
   ================================================ */
.inner-hero {
  background: linear-gradient(135deg, #fff4f0 0%, #f0ebff 50%, #e8f0ff 100%);
  padding: 64px 0 72px;
  position: relative;
  overflow: hidden;
}
.inner-hero::before {
  content: '';
  position: absolute;
  width: 450px; height: 450px;
  border-radius: 50%;
  background: rgba(107,78,255,.06);
  top: -150px; right: -100px;
  pointer-events: none;
}
.inner-hero__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
  position: relative;
  z-index: 1;
}
.inner-hero__breadcrumb {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: .78rem;
  color: var(--muted);
  margin-bottom: 16px;
  flex-wrap: wrap;
}
.inner-hero__breadcrumb a { color: var(--purple); }
.inner-hero__breadcrumb a:hover { text-decoration: underline; }
.inner-hero__breadcrumb span { color: var(--muted); }
.inner-hero__title { font-size: clamp(1.8rem, 4.5vw, 3rem); font-weight: 900; line-height: 1.15; margin-bottom: 14px; }
.inner-hero__desc { color: var(--muted); font-size: .95rem; line-height: 1.7; margin-bottom: 28px; max-width: 480px; }
.inner-hero__ctas { display: flex; gap: 14px; flex-wrap: wrap; }
.inner-hero__img { border-radius: var(--radius-xl); overflow: hidden; aspect-ratio: 4/3; }
.inner-hero__img .img-placeholder { width: 100%; height: 100%; font-size: .82rem; }

/* ================================================
   INNER PAGE SECTIONS
   ================================================ */
.page-section { padding: 80px 0; }
.page-section--alt { background: var(--off-white); }
.page-section--dark { background: var(--dark); color: var(--white); }
.page-section--dark .section-title { color: var(--white); }
.page-section--dark .section-sub   { color: rgba(255,255,255,.65); }

/* Overview */
.overview-grid {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 56px;
  align-items: center;
}
.overview-text p { color: var(--muted); line-height: 1.75; margin-top: 16px; font-size: .95rem; }
.overview-imgs { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.overview-imgs .img-placeholder { aspect-ratio: 1; }
.overview-imgs .img-placeholder:first-child { grid-column: 1 / -1; aspect-ratio: 16/7; }

/* Benefits */
.benefits-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  margin-top: 48px;
}
.benefit-card {
  background: var(--white);
  border: 1px solid rgba(107,78,255,.1);
  border-radius: var(--radius-lg);
  padding: 28px 22px;
  text-align: center;
  transition: var(--transition);
}
.benefit-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-md); border-color: rgba(107,78,255,.25); }
.benefit-icon {
  width: 56px; height: 56px;
  border-radius: var(--radius-md);
  background: var(--cta-grad);
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 16px;
  color: var(--white);
  font-size: 1.5rem;
}
.benefit-icon svg { width: 26px; height: 26px; }
.benefit-card h4 { font-size: .95rem; font-weight: 700; color: var(--dark); margin-bottom: 8px; }
.benefit-card p  { font-size: .82rem; color: var(--muted); line-height: 1.6; }

/* Applications chips */
.app-chips { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 32px; }
.app-chip {
  padding: 8px 18px;
  border-radius: var(--radius-full);
  border: 1.5px solid rgba(107,78,255,.2);
  font-size: .82rem;
  font-weight: 600;
  color: var(--soft-dark);
  background: var(--white);
  transition: var(--transition);
}
.app-chip:hover { background: var(--purple); color: var(--white); border-color: var(--purple); transform: translateY(-2px); }

/* Specs table */
.specs-table { width: 100%; border-collapse: collapse; margin-top: 36px; border-radius: var(--radius-md); overflow: hidden; }
.specs-table th { background: var(--cta-grad); color: var(--white); padding: 14px 20px; font-size: .85rem; text-align: left; }
.specs-table td { padding: 12px 20px; font-size: .85rem; color: var(--soft-dark); border-bottom: 1px solid rgba(107,78,255,.08); }
.specs-table tr:last-child td { border-bottom: none; }
.specs-table tr:nth-child(even) td { background: var(--off-white); }

/* Process */
.process-steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  margin-top: 48px;
}
.process-step {
  text-align: center;
  position: relative;
}
.process-step:not(:last-child)::after {
  content: '';
  position: absolute;
  top: 28px; right: -12px;
  width: 24px; height: 2px;
  background: var(--cta-grad);
  opacity: .4;
}
.process-num {
  width: 56px; height: 56px;
  border-radius: 50%;
  background: var(--cta-grad);
  color: var(--white);
  font-size: 1.1rem;
  font-weight: 800;
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 16px;
  box-shadow: var(--shadow-glow);
}
.process-step h4 { font-size: .9rem; font-weight: 700; color: var(--dark); margin-bottom: 6px; }
.process-step p  { font-size: .8rem; color: var(--muted); line-height: 1.5; }

/* Gallery grid */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 48px;
}
.gallery-grid .img-placeholder { aspect-ratio: 4/3; }

/* Page CTA */
.page-cta {
  background: var(--cta-grad);
  border-radius: var(--radius-xl);
  padding: 64px 56px;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.page-cta::before {
  content: '';
  position: absolute;
  width: 350px; height: 350px;
  border-radius: 50%;
  background: rgba(255,255,255,.06);
  top: -120px; left: -80px;
  pointer-events: none;
}
.page-cta h2 { font-size: clamp(1.6rem, 3.5vw, 2.2rem); font-weight: 900; color: var(--white); margin-bottom: 12px; }
.page-cta p  { color: rgba(255,255,255,.8); font-size: .95rem; max-width: 520px; margin: 0 auto 32px; }
.page-cta__btns { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }

/* Sub-page category cards */
.sub-category-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  margin-top: 48px;
}
.sub-cat-card {
  background: var(--white);
  border: 1px solid rgba(107,78,255,.1);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: var(--transition);
  text-decoration: none;
  color: inherit;
  display: block;
}
.sub-cat-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-md); border-color: rgba(107,78,255,.25); }
.sub-cat-card .img-placeholder { width: 100%; aspect-ratio: 4/3; border-radius: 0; border: none; border-bottom: 1px solid rgba(107,78,255,.08); }
.sub-cat-card__body { padding: 20px; }
.sub-cat-card h3 { font-size: .95rem; font-weight: 700; color: var(--dark); margin-bottom: 6px; }
.sub-cat-card p  { font-size: .82rem; color: var(--muted); line-height: 1.5; }
.sub-cat-card__link { display: inline-flex; align-items: center; gap: 6px; margin-top: 12px; font-size: .82rem; font-weight: 600; color: var(--purple); }
.sub-cat-card:hover .sub-cat-card__link { gap: 10px; }

/* Stats row */
.stats-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  margin-top: 48px;
}
.stat-box {
  text-align: center;
  padding: 28px 20px;
  background: var(--white);
  border-radius: var(--radius-lg);
  border: 1px solid rgba(107,78,255,.1);
  transition: var(--transition);
}
.stat-box:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.stat-box__num { font-size: 2.4rem; font-weight: 900; color: var(--purple); line-height: 1; }
.stat-box__label { font-size: .8rem; color: var(--muted); font-weight: 500; margin-top: 6px; }

/* Contact / Careers forms */
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.form-group { display: flex; flex-direction: column; gap: 7px; }
.form-group.full { grid-column: 1 / -1; }
.form-group label { font-size: .82rem; font-weight: 600; color: var(--soft-dark); }
.form-input, .form-select, .form-textarea {
  width: 100%;
  padding: 12px 16px;
  border: 1.5px solid rgba(107,78,255,.18);
  border-radius: var(--radius-md);
  font-family: var(--font);
  font-size: .88rem;
  color: var(--dark);
  background: var(--white);
  transition: var(--transition);
  outline: none;
}
.form-input:focus, .form-select:focus, .form-textarea:focus {
  border-color: var(--purple);
  box-shadow: 0 0 0 3px rgba(107,78,255,.1);
}
.form-textarea { resize: vertical; min-height: 130px; }
input[type="file"].form-input { padding: 10px 16px; cursor: pointer; }
input[type="file"].form-input::-webkit-file-upload-button { background: var(--purple); color: var(--white); border: none; border-radius: 6px; padding: 6px 14px; font-size: .8rem; font-weight: 600; cursor: pointer; margin-right: 12px; font-family: var(--font); }
input[type="file"].form-input::file-selector-button { background: var(--purple); color: var(--white); border: none; border-radius: 6px; padding: 6px 14px; font-size: .8rem; font-weight: 600; cursor: pointer; margin-right: 12px; font-family: var(--font); }
.form-select { appearance: none; background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='none' viewBox='0 0 24 24' stroke='%236B7280'%3E%3Cpath stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='M19 9l-7 7-7-7'/%3E%3C/svg%3E"); background-repeat: no-repeat; background-position: right 12px center; background-size: 16px; padding-right: 40px; }

/* Map embed */
.map-embed {
  border-radius: var(--radius-lg);
  overflow: hidden;
  aspect-ratio: 16/6;
  box-shadow: var(--shadow-md);
  border: 1px solid rgba(107,78,255,.12);
}

/* Map placeholder (fallback) */
.map-placeholder {
  background: linear-gradient(135deg, #e8effa, #dde8f7);
  border: 2px dashed rgba(107,78,255,.2);
  border-radius: var(--radius-lg);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 12px;
  color: var(--muted);
  font-size: .88rem;
  font-weight: 500;
  aspect-ratio: 16/6;
  text-align: center;
}
.map-placeholder svg { width: 48px; height: 48px; opacity: .4; }

/* Careers openings */
.openings-list { display: flex; flex-direction: column; gap: 16px; margin-top: 36px; }
.opening-card {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  background: var(--white);
  border: 1px solid rgba(107,78,255,.1);
  border-radius: var(--radius-md);
  padding: 20px 24px;
  transition: var(--transition);
}
.opening-card:hover { transform: translateX(4px); box-shadow: var(--shadow-sm); border-color: rgba(107,78,255,.25); }
.opening-card h4 { font-size: .95rem; font-weight: 700; color: var(--dark); }
.opening-card p  { font-size: .82rem; color: var(--muted); margin-top: 3px; }
.opening-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 4px 12px;
  border-radius: var(--radius-full);
  font-size: .72rem;
  font-weight: 600;
}
.opening-badge--full { background: rgba(32,199,191,.12); color: var(--cyan); }
.opening-badge--part { background: rgba(107,78,255,.1);  color: var(--purple); }

/* ================================================
   RESPONSIVE
   ================================================ */
@media (max-width: 1100px) {
  .tool-card { flex: 0 0 calc(33.33% - 16px); }
  .portfolio__grid { grid-template-columns: repeat(4, 1fr); }
  .sub-category-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 1380px) {
  .nav-desktop { display: none; }
  .hamburger   { display: flex; }
  .nav-mobile  { display: block; }

  .hero__inner { grid-template-columns: 1fr; gap: 32px; }
  .hero__visual { order: -1; }
  .hero__card--left { display: none; }
  .hero__card--right { right: 0; }

  .about-section__inner { grid-template-columns: 1fr; gap: 40px; }
  .about-section__images { height: 320px; }

  .testimonials__inner { grid-template-columns: 1fr; }
  .testi-circle { width: 260px; height: 260px; }

  .footer-grid { grid-template-columns: 1fr 1fr; }

  .feature-block__inner  { grid-template-columns: 1fr; }
  .feature-block__collage { height: 300px; }

  .inner-hero__inner { grid-template-columns: 1fr; }
  .inner-hero__img   { display: none; }

  .overview-grid { grid-template-columns: 1fr; }
  .benefits-grid { grid-template-columns: repeat(2, 1fr); }
  .process-steps { grid-template-columns: repeat(2, 1fr); }
  .process-step::after { display: none; }
  .stats-row     { grid-template-columns: repeat(2, 1fr); }

  .newsletter__card { grid-template-columns: 1fr; }
  .newsletter__img  { display: none; }

  .top-strip__links { display: none; }
}

@media (max-width: 640px) {
  .categories__grid { gap: 24px 28px; }
  .cat-card { width: 90px; }
  .cat-card__circle { width: 80px; height: 80px; }

  .portfolio__grid { grid-template-columns: repeat(3, 1fr); }

  .benefits-grid  { grid-template-columns: 1fr; }
  .process-steps  { grid-template-columns: 1fr 1fr; }
  .gallery-grid   { grid-template-columns: 1fr 1fr; }
  .sub-category-grid { grid-template-columns: 1fr; }
  .stats-row      { grid-template-columns: 1fr 1fr; }
  .form-grid      { grid-template-columns: 1fr; }
  .form-group.full { grid-column: 1; }

  .footer-grid { grid-template-columns: 1fr; }

  .newsletter__card { padding: 36px 28px; }
  .page-cta { padding: 44px 28px; }

  .hero__ctas { flex-direction: column; }
  .hero__ctas .btn { width: 100%; justify-content: center; }

  .tool-card { flex: 0 0 80vw; }
}

@media (max-width: 430px) {
  .portfolio__grid { grid-template-columns: repeat(2, 1fr); }
  .process-steps   { grid-template-columns: 1fr; }
  .stats-row       { grid-template-columns: 1fr; }
}

/* ================================================
   PREMIUM ENHANCEMENTS
   ================================================ */

/* ---- Custom scrollbar ---- */
::-webkit-scrollbar              { width: 5px; }
::-webkit-scrollbar-track        { background: transparent; }
::-webkit-scrollbar-thumb        { background: var(--cta-grad); border-radius: 5px; }
::-webkit-scrollbar-thumb:hover  { background: var(--purple); }

/* ---- Text selection ---- */
::selection      { background: rgba(107,78,255,.22); color: var(--dark); }
::-moz-selection { background: rgba(107,78,255,.22); color: var(--dark); }

/* ---- Preloader ---- */
#preloader {
  position: fixed;
  inset: 0;
  background: var(--footer-bg);
  z-index: 10000;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: opacity .65s ease, visibility .65s ease;
}
#preloader.pl-exit { opacity: 0; visibility: hidden; pointer-events: none; }

.pl-inner { text-align: center; display: flex; flex-direction: column; align-items: center; gap: 0; }

.pl-logo {
  height: 54px;
  margin-bottom: 32px;
  opacity: 0;
  animation: plFadeUp .55s ease .15s both;
}
@keyframes plFadeUp {
  from { opacity: 0; transform: translateY(14px); }
  to   { opacity: 1; transform: translateY(0); }
}

.pl-bar {
  width: 200px;
  height: 3px;
  background: rgba(255,255,255,.1);
  border-radius: 3px;
  overflow: hidden;
  margin-bottom: 16px;
  opacity: 0;
  animation: plFadeUp .4s ease .4s both;
}
.pl-fill {
  height: 100%;
  width: 0;
  background: var(--cta-grad);
  border-radius: 3px;
  animation: plProgress 1s cubic-bezier(.4,0,.2,1) .55s both;
}
@keyframes plProgress { to { width: 100%; } }

.pl-label {
  font-size: .7rem;
  font-weight: 700;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: rgba(255,255,255,.35);
  opacity: 0;
  animation: plFadeUp .4s ease .7s both;
}

/* ---- Scroll progress bar ---- */
#scroll-progress {
  position: fixed;
  top: 0; left: 0;
  height: 3px;
  width: 0%;
  background: var(--cta-grad);
  z-index: 10001;
  box-shadow: 0 0 10px rgba(107,78,255,.55);
  pointer-events: none;
  transition: width .08s linear;
}

/* ---- Custom cursor ---- */
@media (pointer: fine) {
  html.cursor-ready,
  html.cursor-ready *,
  html.cursor-ready input,
  html.cursor-ready textarea,
  html.cursor-ready select { cursor: none !important; }
}

.cursor-dot {
  position: fixed;
  top: 0; left: 0;
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--purple);
  pointer-events: none;
  z-index: 999999;
  will-change: transform;
  transition: width .18s ease, height .18s ease, background .18s ease, opacity .18s ease;
}
.cursor-ring {
  position: fixed;
  top: 0; left: 0;
  width: 38px; height: 38px;
  border-radius: 50%;
  border: 1.5px solid rgba(107,78,255,.55);
  pointer-events: none;
  z-index: 999998;
  will-change: transform;
  transition: width .22s ease, height .22s ease, border-color .22s ease,
              background .22s ease, border-width .22s ease;
}
/* Hover state */
.cursor-ring.cur-hover {
  width: 52px; height: 52px;
  border-color: rgba(107,78,255,.3);
  background: rgba(107,78,255,.06);
}
.cursor-dot.cur-hover { width: 5px; height: 5px; background: var(--coral); }
/* Click state */
.cursor-ring.cur-click { width: 30px; height: 30px; border-color: var(--coral); border-width: 2px; }
.cursor-dot.cur-click  { background: var(--coral); width: 6px; height: 6px; }
/* Text state */
.cursor-ring.cur-text {
  width: 2px; height: 26px;
  border-radius: 2px;
  border: none;
  background: var(--purple);
}

/* ---- Button ripple ---- */
.ripple-wrap { position: relative; overflow: hidden; }
.ripple-wave {
  position: absolute;
  border-radius: 50%;
  background: rgba(255,255,255,.28);
  transform: scale(0);
  animation: rippleOut .6s ease-out forwards;
  pointer-events: none;
}
@keyframes rippleOut {
  to { transform: scale(4.5); opacity: 0; }
}

/* ---- Card tilt (3D perspective) ---- */
.tilt-card {
  transform-style: preserve-3d;
  will-change: transform;
}
.tilt-card .c-shine {
  position: absolute;
  inset: 0;
  border-radius: inherit;
  pointer-events: none;
  opacity: 0;
  transition: opacity .3s ease;
  background: radial-gradient(circle at 50% 50%, rgba(255,255,255,.12), transparent 65%);
}
.tilt-card:hover .c-shine { opacity: 1; }

/* ---- Stats gradient text ---- */
.hero__stat-number,
.stat-box__num,
.hero__card-num {
  background: var(--cta-grad);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* ---- Counter animation ---- */
@keyframes counterPop {
  0%   { opacity: 0; transform: translateY(8px) scale(.85); }
  60%  { transform: translateY(-3px) scale(1.04); }
  100% { opacity: 1; transform: translateY(0) scale(1); }
}
.counter-animated { animation: counterPop .55s cubic-bezier(.34,1.56,.64,1) both; }

/* ---- Hero decorative dots ---- */
.hero-deco-dots {
  position: absolute;
  inset: 0;
  pointer-events: none;
  overflow: hidden;
  z-index: 1;
}
.hero-deco-dot {
  position: absolute;
  border-radius: 50%;
  opacity: .18;
  animation: dotDrift var(--d, 7s) ease-in-out infinite;
  animation-delay: var(--dl, 0s);
}
@keyframes dotDrift {
  0%,100% { transform: translate(0, 0) rotate(0deg); }
  33%      { transform: translate(var(--tx, 12px), var(--ty, -10px)) rotate(120deg); }
  66%      { transform: translate(calc(var(--tx,12px) * -.6), calc(var(--ty,-10px) * .4)) rotate(240deg); }
}

/* ---- Scroll-down hint on hero ---- */
.scroll-hint {
  position: absolute;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  color: var(--muted);
  font-size: .68rem;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  z-index: 5;
  opacity: 0;
  animation: plFadeUp .6s ease 1.8s both;
}
.scroll-hint__mouse {
  width: 20px; height: 32px;
  border: 2px solid rgba(107,78,255,.4);
  border-radius: 10px;
  display: flex;
  align-items: flex-start;
  justify-content: center;
  padding-top: 5px;
}
.scroll-hint__wheel {
  width: 3px; height: 7px;
  background: var(--purple);
  border-radius: 3px;
  animation: wheelScroll 1.6s ease-in-out infinite;
}
@keyframes wheelScroll {
  0%   { transform: translateY(0); opacity: 1; }
  80%  { transform: translateY(10px); opacity: 0; }
  81%  { transform: translateY(0); opacity: 0; }
  100% { transform: translateY(0); opacity: 1; }
}

/* ---- Dropdown staggered item reveal ---- */
.dropdown a {
  opacity: 0;
  transform: translateY(-5px);
}
.nav-item:hover .dropdown a,
.nav-item:focus-within .dropdown a {
  opacity: 1;
  transform: translateY(0);
}
.nav-item:hover .dropdown a:nth-child(1),
.nav-item:focus-within .dropdown a:nth-child(1) { transition: opacity .2s ease .04s, transform .2s ease .04s, color .2s, background .2s, padding-left .2s; }
.nav-item:hover .dropdown a:nth-child(2),
.nav-item:focus-within .dropdown a:nth-child(2) { transition: opacity .2s ease .08s, transform .2s ease .08s, color .2s, background .2s, padding-left .2s; }
.nav-item:hover .dropdown a:nth-child(3),
.nav-item:focus-within .dropdown a:nth-child(3) { transition: opacity .2s ease .12s, transform .2s ease .12s, color .2s, background .2s, padding-left .2s; }
.nav-item:hover .dropdown a:nth-child(4),
.nav-item:focus-within .dropdown a:nth-child(4) { transition: opacity .2s ease .16s, transform .2s ease .16s, color .2s, background .2s, padding-left .2s; }
.nav-item:hover .dropdown a:nth-child(5),
.nav-item:focus-within .dropdown a:nth-child(5) { transition: opacity .2s ease .20s, transform .2s ease .20s, color .2s, background .2s, padding-left .2s; }
.nav-item:hover .dropdown a:nth-child(6),
.nav-item:focus-within .dropdown a:nth-child(6) { transition: opacity .2s ease .24s, transform .2s ease .24s, color .2s, background .2s, padding-left .2s; }
.nav-item:hover .dropdown a:nth-child(7),
.nav-item:focus-within .dropdown a:nth-child(7) { transition: opacity .2s ease .28s, transform .2s ease .28s, color .2s, background .2s, padding-left .2s; }
.nav-item:hover .dropdown a:nth-child(8),
.nav-item:focus-within .dropdown a:nth-child(8) { transition: opacity .2s ease .32s, transform .2s ease .32s, color .2s, background .2s, padding-left .2s; }
.nav-item:hover .dropdown a:nth-child(9),
.nav-item:focus-within .dropdown a:nth-child(9) { transition: opacity .2s ease .36s, transform .2s ease .36s, color .2s, background .2s, padding-left .2s; }

/* ---- CTA button glow pulse ---- */
.btn-primary {
  animation: btnPulse 3.2s ease-in-out infinite;
}
.btn-primary:hover { animation: none; }
@keyframes btnPulse {
  0%,100% { box-shadow: 0 4px 18px rgba(107,78,255,.28); }
  50%      { box-shadow: 0 6px 30px rgba(107,78,255,.48), 0 0 0 5px rgba(107,78,255,.07); }
}

/* ---- Hero parallax layer ---- */
.hero__parallax { will-change: transform; transition: transform .05s linear; }

/* ---- Portfolio ring on hover ---- */
.port-item { z-index: 1; }
.port-item::before {
  content: '';
  position: absolute;
  inset: -4px;
  border-radius: 50%;
  background: var(--cta-grad);
  z-index: -1;
  opacity: 0;
  transition: opacity .3s ease;
}
.port-item:hover::before { opacity: 1; }

/* ---- Gradient border on benefit cards ---- */
.benefit-card {
  position: relative;
  z-index: 0;
}
.benefit-card::after {
  content: '';
  position: absolute;
  inset: -1px;
  border-radius: calc(var(--radius-lg) + 1px);
  background: var(--cta-grad);
  z-index: -1;
  opacity: 0;
  transition: opacity .3s ease;
}
.benefit-card:hover::after { opacity: 1; }

/* ---- Magnetic button wrapper ---- */
.mag-wrap { display: inline-block; }

/* ---- Marquee pause on hover ---- */
.marquee-section:hover .marquee-track { animation-play-state: paused; }

/* ---- Enhanced focus visible ---- */
:focus-visible {
  outline: 2px solid var(--purple);
  outline-offset: 3px;
  border-radius: 4px;
}

/* ---- Smooth page body enter ---- */
@keyframes pageEnter {
  from { opacity: 0; transform: translateY(10px); }
  to   { opacity: 1; transform: translateY(0); }
}
body { animation: pageEnter .45s ease both; }

/* ---- Enhanced hero gradient animation ---- */
@keyframes heroGradShift {
  0%   { background-position: 0% 50%; }
  50%  { background-position: 100% 50%; }
  100% { background-position: 0% 50%; }
}
.hero {
  background-size: 200% 200%;
  animation: heroGradShift 12s ease-in-out infinite;
}

/* ---- Typing cursor blink ---- */
.type-cursor {
  display: inline-block;
  width: 2px;
  height: .9em;
  background: var(--cyan);
  border-radius: 2px;
  vertical-align: middle;
  margin-left: 2px;
  animation: cursorBlink .9s step-end infinite;
}
@keyframes cursorBlink { 0%,100%{opacity:1} 50%{opacity:0} }

/* ---- Tool card coral circle breathe ---- */
.tools-section__coral-blob {
  animation: coralBreathe 5s ease-in-out infinite;
}
@keyframes coralBreathe {
  0%,100% { transform: translateX(-50%) scale(1); opacity: .12; }
  50%      { transform: translateX(-50%) scale(1.1); opacity: .18; }
}

/* ---- Footer social hover glow ---- */
.footer-social a:hover { box-shadow: 0 4px 16px rgba(107,78,255,.35); }

/* ---- Active scrollspy nav ---- */
.nav-link.sp-active { color: var(--purple); }
.nav-link.sp-active::after { transform: scaleX(1); }

/* ---- Mobile nav blur backdrop ---- */
.nav-mobile.open { backdrop-filter: blur(4px); }

/* ---- Reduce motion overrides ---- */
@media (prefers-reduced-motion: reduce) {
  body           { animation: none; }
  .cursor-dot, .cursor-ring { display: none !important; }
  #preloader     { transition: none; }
  .btn-primary   { animation: none; }
  .marquee-track { animation-play-state: paused; }
  .hero          { animation: none; }
  .hero__blob    { animation: none; }
  .side-btn__icon::before { animation: none; }
  .book-now-btn  { animation: none; }
  .back-top      { animation: none; }
  .tools-section__coral-blob { animation: none; }
  .hero-deco-dot { animation: none; }
}

/* ---- Hide cursor on touch ---- */
@media (hover: none) {
  .cursor-dot, .cursor-ring { display: none !important; }
}

/* ── Real images in containers ── */
.hero__main-placeholder img,
.about-img-main img, .about-img-sm img, .about-img-sm2 img,
.cat-card__circle img,
.port-item > img,
.fb-img img,
.testi-img img,
.newsletter__img img,
.inner-hero__img img { width:100%; height:100%; object-fit:cover; display:block; }

.overview-imgs img:first-child { grid-column: 1 / -1; aspect-ratio: 16/9; }
.overview-imgs img:not(:first-child) { aspect-ratio: 1; }
.gallery-grid img { width:100%; aspect-ratio:4/3; object-fit:cover; display:block; border-radius: var(--radius-md); }

/* ── Sticky buttons: failsafe — cannot be buried or hidden ── */
.side-buttons {
  position: fixed !important;
  z-index: 9900 !important;
  visibility: visible !important;
  opacity: 1 !important;
  pointer-events: all !important;
}
.book-now-btn {
  position: fixed !important;
  z-index: 9900 !important;
  visibility: visible !important;
  opacity: 1 !important;
  pointer-events: all !important;
  display: flex !important;
}
.back-top {
  position: fixed !important;
  z-index: 9900 !important;
  visibility: visible !important;
  opacity: 1 !important;
  pointer-events: all !important;
  display: flex !important;
}
