/* =====================================================
   CLEANTECH v2 — Space Grotesk Design System
   New Font: Space Grotesk + DM Sans
   New Navbar: Full-width top bar with line indicator
   ===================================================== */

@import url('https://fonts.googleapis.com/css2?family=Space+Grotesk:wght@300;400;500;600;700&family=DM+Sans:ital,opsz,wght@0,9..40,300;0,9..40,400;0,9..40,500;0,9..40,600;0,9..40,700;1,9..40,400&family=Space+Mono:wght@400;700&display=swap');

/* -------- CSS Variables -------- */
:root {
  --ct-blue:       #0057FF;
  --ct-blue-dark:  #003FBF;
  --ct-blue-light: #4D8FFF;
  --ct-orange:     #FF6B00;
  --ct-orange-light: #FF9500;
  --ct-gold:       #FFB800;
  --ct-dark:       #05080F;
  --ct-dark-2:     #0C1324;
  --ct-dark-3:     #111927;
  --ct-light:      #F2F5FF;
  --ct-white:      #FFFFFF;
  --ct-text:       #0C1A35;
  --ct-muted:      #6B7A99;
  --ct-border:     rgba(0,87,255,0.12);
  --ct-grad-blue:  linear-gradient(135deg, #0057FF 0%, #003FBF 100%);
  --ct-grad-orange:linear-gradient(135deg, #FF6B00 0%, #FF9500 100%);
  --ct-grad-dark:  linear-gradient(160deg, #05080F 0%, #0C1324 100%);
  --shadow-blue:   0 20px 60px rgba(0,87,255,0.2);
  --shadow-orange: 0 20px 60px rgba(255,107,0,0.25);
  --shadow-card:   0 10px 40px rgba(0,0,0,0.08);
  --radius-sm:     8px;
  --radius-md:     16px;
  --radius-lg:     24px;
  --radius-pill:   50px;
  --nav-h:         72px;
}

/* -------- Global Reset -------- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: 'DM Sans', sans-serif;
  font-size: 17px;
  color: var(--ct-text);
  background: var(--ct-white);
  line-height: 1.7;
  overflow-x: hidden;
}
h1,h2,h3,h4,h5,h6 {
  font-family: 'Space Grotesk', sans-serif;
  font-weight: 700;
  line-height: 1.15;
  color: var(--ct-text);
}
a { text-decoration: none; color: inherit; transition: all 0.3s ease; }
img { max-width: 100%; display: block; }
ul { list-style: none; padding: 0; margin: 0; }

/* -------- Layout Utility -------- */
.ct-container {
  max-width: 1320px;
  width: 100%;
  margin: 0 auto;
  padding: 0 36px;
}
@media(max-width:768px){ .ct-container{ padding: 0 20px; } }

.ct-section       { padding: 106px 0; }
.ct-section-sm    { padding: 66px 0; }
.ct-bg-dark       { background: var(--ct-dark); }
.ct-bg-dark-2     { background: var(--ct-dark-2); }
.ct-bg-light      { background: var(--ct-light); }

/* -------- Section Tag / Eyebrow -------- */
.ct-tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 5px 16px;
  border-radius: var(--radius-pill);
  font-family: 'Space Mono', monospace;
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 2.5px;
  margin-bottom: 20px;
}
.ct-tag.blue  { background: rgba(0,87,255,0.08); border: 1px solid rgba(0,87,255,0.2); color: var(--ct-blue); }
.ct-tag.orange{ background: rgba(255,107,0,0.08); border: 1px solid rgba(255,107,0,0.2); color: var(--ct-orange); }
.ct-tag.white { background: rgba(255,255,255,0.08); border: 1px solid rgba(255,255,255,0.18); color: rgba(255,255,255,0.9); }
.ct-tag::before { content:''; width:5px; height:5px; border-radius:50%; background:currentColor; flex-shrink:0; }

/* -------- Section Titles -------- */
.ct-h2 {
  font-family: 'Space Grotesk', sans-serif;
  font-size: clamp(30px, 4.5vw, 52px);
  font-weight: 700;
  color: var(--ct-text);
  line-height: 1.12;
  margin-bottom: 14px;
}
.ct-h2 em { font-style: normal; color: var(--ct-blue); }
.ct-h2 .or { color: var(--ct-orange); }
.ct-h2-white { color: #fff; }
.ct-h2-white em { color: #4D8FFF; }

.ct-subtext {
  font-size: 17px;
  color: var(--ct-muted);
  max-width: 560px;
  line-height: 1.7;
}
.text-center .ct-subtext { margin: 0 auto; }

/* -------- Buttons -------- */
.ct-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 13px 30px;
  border-radius: var(--radius-pill);
  font-family: 'Space Grotesk', sans-serif;
  font-weight: 600;
  font-size: 15px;
  cursor: pointer;
  border: 2px solid transparent;
  transition: all 0.3s cubic-bezier(0.34,1.56,0.64,1);
  white-space: nowrap;
  text-decoration: none;
  line-height: 1;
}
.ct-btn-primary { background: var(--ct-grad-blue); color: #fff; box-shadow: 0 6px 24px rgba(0,87,255,0.3); }
.ct-btn-primary:hover { transform: translateY(-3px) scale(1.03); box-shadow: 0 12px 36px rgba(0,87,255,0.45); color:#fff; }
.ct-btn-orange  { background: var(--ct-grad-orange); color: #fff; box-shadow: 0 6px 24px rgba(255,107,0,0.3); }
.ct-btn-orange:hover  { transform: translateY(-3px) scale(1.03); box-shadow: 0 12px 36px rgba(255,107,0,0.45); color:#fff; }
.ct-btn-ghost   { background: transparent; color: #fff; border-color: rgba(255,255,255,0.35); }
.ct-btn-ghost:hover   { background: rgba(255,255,255,0.1); color: #fff; transform: translateY(-2px); }
.ct-btn-outline { background: transparent; color: var(--ct-blue); border-color: var(--ct-blue); }
.ct-btn-outline:hover { background: var(--ct-blue); color: #fff; transform: translateY(-2px); }
.ct-btn i { font-size: 13px; transition: transform 0.25s ease; }
.ct-btn:hover i { transform: translateX(4px); }


/* ======================================================
   NAVBAR — Full-width transparent → solid scroll
   ====================================================== */
#ct-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 9999;
  transition: background 0.4s ease, box-shadow 0.4s ease, padding 0.3s ease;
}
#ct-header.scrolled {
  background: rgba(5,8,15,0.96);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  box-shadow: 0 4px 30px rgba(0,0,0,0.4);
}

/* Top announcement strip */
.ct-topbar {
  background: var(--ct-blue);
  text-align: center;
  padding: 8px 16px;
  font-size: 13px;
  color: rgba(255,255,255,0.9);
  font-family: 'DM Sans', sans-serif;
  font-weight: 500;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  transition: all 0.3s ease;
}
.ct-topbar a { color: #FFB800; font-weight: 700; }
.ct-topbar a:hover { color: #fff; }
#ct-header.scrolled .ct-topbar { display: none; }

/* Main nav bar */
.ct-navbar {
  height: var(--nav-h);
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 40px;
  border-bottom: 1px solid rgba(255,255,255,0.06);
  position: relative;
}
/* Active nav indicator line */
.ct-navbar::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0;
  height: 2px;
  width: 0;
  background: linear-gradient(90deg, var(--ct-blue), var(--ct-orange));
  transition: width 0.4s ease;
}
#ct-header.scrolled .ct-navbar::after { width: 100%; }

.ct-logo a {
  font-family: 'Space Grotesk', sans-serif;
  font-weight: 700;
  font-size: 24px;
  color: #fff;
  letter-spacing: -0.3px;
}
.ct-logo span { color: var(--ct-orange); }

/* Nav links */
.ct-nav-links {
  display: flex;
  align-items: center;
  gap: 2px;
}
.ct-nav-links > li { position: relative; }

.ct-nav-links > li > a {
  display: block;
  padding: 8px 16px;
  font-family: 'DM Sans', sans-serif;
  font-size: 14px;
  font-weight: 500;
  color: rgba(255,255,255,0.7);
  border-radius: 6px;
  position: relative;
  transition: color 0.2s ease, background 0.2s ease;
}
.ct-nav-links > li > a:hover { color: #fff; background: rgba(255,255,255,0.06); }

/* Underline indicator on hover */
.ct-nav-links > li > a::after {
  content: '';
  position: absolute;
  bottom: 0; left: 16px; right: 16px;
  height: 2px;
  background: var(--ct-orange);
  border-radius: 2px;
  transform: scaleX(0);
  transition: transform 0.25s ease;
  transform-origin: left;
}
.ct-nav-links > li > a:hover::after { transform: scaleX(1); }

/* Dropdown */
.ct-nav-links li.has-drop { position: relative; }
.ct-drop {
  position: absolute;
  top: calc(100% + 8px);
  left: 50%;
  transform: translateX(-50%) translateY(8px);
  background: #0C1324;
  border: 1px solid rgba(255,255,255,0.07);
  border-radius: 12px;
  min-width: 200px;
  padding: 8px;
  opacity: 0;
  visibility: hidden;
  transition: all 0.22s ease;
  box-shadow: 0 20px 50px rgba(0,0,0,0.5);
  z-index: 1000;
}
.ct-nav-links li.has-drop:hover .ct-drop {
  opacity: 1; visibility: visible;
  transform: translateX(-50%) translateY(0);
}
.ct-drop li a {
  display: block;
  padding: 9px 14px;
  font-size: 14px;
  color: rgba(255,255,255,0.65);
  border-radius: 8px;
  font-weight: 500;
  transition: all 0.2s;
}
.ct-drop li a:hover { color: #fff; background: rgba(0,87,255,0.12); padding-left: 18px; }

.ct-nav-right { display: flex; align-items: center; gap: 12px; }

/* Phone number in nav */
.ct-nav-phone {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 14px;
  font-weight: 600;
  color: rgba(255,255,255,0.8);
  display: flex;
  align-items: center;
  gap: 7px;
}
.ct-nav-phone i { color: var(--ct-orange); }
.ct-nav-phone:hover { color: #fff; }

/* Hamburger for mobile */
.ct-burger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  background: none;
  border: none;
  padding: 6px;
}
.ct-burger span {
  display: block;
  width: 22px; height: 2px;
  background: #fff;
  border-radius: 2px;
  transition: all 0.3s ease;
}
.ct-burger.active span:nth-child(1) { transform: rotate(45deg) translate(5px,5px); }
.ct-burger.active span:nth-child(2) { opacity: 0; transform: translateX(-10px); }
.ct-burger.active span:nth-child(3) { transform: rotate(-45deg) translate(5px,-5px); }

/* Mobile drawer */
.ct-drawer {
  position: fixed;
  top: 0; right: 0;
  width: min(300px,88vw);
  height: 100vh;
  background: #08101E;
  z-index: 99999;
  padding: 0;
  transform: translateX(100%);
  transition: transform 0.4s cubic-bezier(0.77,0,0.175,1);
  overflow-y: auto;
  border-left: 1px solid rgba(255,255,255,0.06);
  display: flex;
  flex-direction: column;
}
.ct-drawer.open { transform: translateX(0); }
.ct-drawer-header {
  padding: 20px 24px;
  border-bottom: 1px solid rgba(255,255,255,0.06);
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.ct-drawer-close {
  background: rgba(255,255,255,0.06);
  border: none; cursor: pointer;
  color: #fff; font-size: 20px;
  width: 38px; height: 38px;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  transition: background 0.2s;
}
.ct-drawer-close:hover { background: rgba(255,107,0,0.2); color: var(--ct-orange); }
.ct-drawer-body { padding: 20px 0; flex: 1; }
.ct-drawer-nav li a {
  display: block;
  padding: 13px 24px;
  font-family: 'Space Grotesk', sans-serif;
  font-size: 16px;
  font-weight: 600;
  color: rgba(255,255,255,0.7);
  border-bottom: 1px solid rgba(255,255,255,0.04);
  transition: all 0.2s;
}
.ct-drawer-nav li a:hover { color: var(--ct-orange); background: rgba(255,107,0,0.06); padding-left: 30px; }
.ct-drawer-nav .sub-item a { font-size: 14px; font-weight: 400; color: rgba(255,255,255,0.45); padding-left: 38px; }
.ct-drawer-footer {
  padding: 24px;
  border-top: 1px solid rgba(255,255,255,0.06);
}
.ct-drawer-footer .ct-btn { width: 100%; justify-content: center; }
.ct-shade {
  position: fixed; inset: 0;
  background: rgba(0,0,0,0.65);
  z-index: 9998;
  backdrop-filter: blur(6px);
  opacity: 0; visibility: hidden;
  transition: all 0.3s ease;
}
.ct-shade.on { opacity: 1; visibility: visible; }


/* ======================================================
   HERO — Text-only fullscreen cinematic
   ====================================================== */
.ct-hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: #05080F;
}

/* Noise texture overlay */
.ct-hero::after {
  content: '';
  position: absolute; inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)' opacity='0.04'/%3E%3C/svg%3E");
  pointer-events: none;
  opacity: 0.4;
  z-index: 1;
}

/* Animated gradient background */
.ct-hero-bg {
  position: absolute; inset: 0;
  background:
    radial-gradient(ellipse 70% 60% at 15% 50%, rgba(0,87,255,0.22) 0%, transparent 65%),
    radial-gradient(ellipse 50% 70% at 85% 30%, rgba(255,107,0,0.14) 0%, transparent 60%),
    radial-gradient(ellipse 60% 50% at 60% 85%, rgba(0,87,255,0.1) 0%, transparent 55%),
    linear-gradient(160deg, #05080F 0%, #0A1225 100%);
  animation: heroBgShift 12s ease-in-out infinite alternate;
}
@keyframes heroBgShift {
  0%   { opacity: 1; }
  50%  { opacity: 0.85; }
  100% { opacity: 1; }
}

/* Grid lines */
.ct-hero-grid {
  position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(0,87,255,0.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(0,87,255,0.05) 1px, transparent 1px);
  background-size: 60px 60px;
  pointer-events: none;
  z-index: 0;
}

/* Floating orbs */
.ct-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(70px);
  opacity: 0.3;
  animation: orbDrift 10s ease-in-out infinite alternate;
  pointer-events: none;
}
.ct-orb-1 { width: 600px; height: 600px; background: rgba(0,87,255,0.5); top:-150px; left:-150px; animation-delay:0s; }
.ct-orb-2 { width: 400px; height: 400px; background: rgba(255,107,0,0.4); bottom:-100px; right:-80px; animation-delay:3s; }
.ct-orb-3 { width: 250px; height: 250px; background: rgba(0,87,255,0.3); top:40%; right:20%; animation-delay:6s; }
@keyframes orbDrift {
  from { transform: translate(0,0) scale(1); }
  to   { transform: translate(25px,18px) scale(1.12); }
}

/* Hero content */
.ct-hero-wrap {
  position: relative;
  z-index: 2;
  width: 100%;
  padding-top: 120px;
  padding-bottom: 80px;
}

.ct-hero-pretag {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: rgba(255,107,0,0.1);
  border: 1px solid rgba(255,107,0,0.22);
  border-radius: var(--radius-pill);
  padding: 7px 18px;
  margin-bottom: 28px;
  animation: fadeSlideDown 0.7s ease both;
}
.ct-hero-pretag .pulse-dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--ct-orange);
  box-shadow: 0 0 0 0 rgba(255,107,0,0.4);
  animation: sonarPulse 2s infinite;
}
@keyframes sonarPulse {
  0%   { box-shadow: 0 0 0 0 rgba(255,107,0,0.4); }
  70%  { box-shadow: 0 0 0 10px rgba(255,107,0,0); }
  100% { box-shadow: 0 0 0 0 rgba(255,107,0,0); }
}
.ct-hero-pretag span {
  font-family: 'DM Sans', sans-serif;
  font-size: 13px;
  font-weight: 600;
  color: #FFB84D;
}

/* Big hero title */
.ct-hero-title {
  font-family: 'Space Grotesk', sans-serif;
  font-size: clamp(44px, 8vw, 88px);
  font-weight: 700;
  color: #fff;
  line-height: 1.02;
  margin-bottom: 28px;
  letter-spacing: -2px;
  animation: fadeSlideUp 0.9s 0.15s ease both;
}
.ct-hero-title .line-blue {
  color: transparent;
  background: linear-gradient(90deg, #4D8FFF, #0057FF);
  -webkit-background-clip: text;
  background-clip: text;
}
.ct-hero-title .line-orange { color: var(--ct-orange); }
.ct-hero-title .line-outline {
  -webkit-text-stroke: 1.5px rgba(255,255,255,0.3);
  color: transparent;
}

/* Typewriter effect */
.ct-typewriter {
  color: var(--ct-orange);
  border-right: 3px solid var(--ct-orange);
  white-space: nowrap;
  overflow: hidden;
  animation: typeBlink 0.8s step-end infinite;
}
@keyframes typeBlink { 0%,100%{border-color:var(--ct-orange)} 50%{border-color:transparent} }

.ct-hero-sub {
  font-size: clamp(16px, 1.8vw, 19px);
  color: rgba(255,255,255,0.55);
  max-width: 580px;
  margin-bottom: 40px;
  line-height: 1.75;
  animation: fadeSlideUp 0.9s 0.3s ease both;
}

.ct-hero-actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  animation: fadeSlideUp 0.9s 0.45s ease both;
}

/* Hero stat strip */
.ct-hero-stats {
  display: flex;
  gap: 32px;
  margin-top: 60px;
  padding-top: 40px;
  border-top: 1px solid rgba(255,255,255,0.08);
  animation: fadeSlideUp 0.9s 0.6s ease both;
  flex-wrap: wrap;
}
.ct-hs-item {}
.ct-hs-num {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 40px;
  font-weight: 700;
  color: #fff;
  line-height: 1;
  letter-spacing: -1px;
}
.ct-hs-num span { color: var(--ct-orange); }
.ct-hs-label {
  font-size: 13px;
  color: rgba(255,255,255,0.4);
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-top: 4px;
}

/* Hero right column — floating cards */
.ct-hero-right { position: relative; z-index: 2; }

.ct-hero-card {
  background: rgba(255,255,255,0.04);
  backdrop-filter: blur(20px);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 20px;
  padding: 28px 32px;
  margin-bottom: 16px;
  transition: all 0.35s ease;
  animation: fadeSlideUp 0.9s ease both;
}
.ct-hero-card:hover { background: rgba(255,255,255,0.07); transform: translateX(-6px); }
.ct-hero-card h4 {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 18px;
  color: #fff;
  margin-bottom: 6px;
}
.ct-hero-card p { font-size: 14px; color: rgba(255,255,255,0.5); margin: 0; }
.ct-hero-card-icon {
  width: 44px; height: 44px;
  border-radius: 12px;
  display: flex; align-items: center; justify-content: center;
  font-size: 20px;
  margin-bottom: 14px;
}
.ct-hero-card.blue .ct-hero-card-icon { background: rgba(0,87,255,0.2); color: #4D8FFF; }
.ct-hero-card.orange .ct-hero-card-icon { background: rgba(255,107,0,0.2); color: var(--ct-orange); }
.ct-hero-card.green .ct-hero-card-icon { background: rgba(0,200,130,0.2); color: #00C882; }
.ct-hero-card:nth-child(1) { animation-delay: 0.5s; }
.ct-hero-card:nth-child(2) { animation-delay: 0.65s; }
.ct-hero-card:nth-child(3) { animation-delay: 0.8s; }


/* ======================================================
   SCROLL REVEAL ANIMATIONS
   ====================================================== */
@keyframes fadeSlideUp {
  from { opacity: 0; transform: translateY(30px); }
  to   { opacity: 1; transform: translateY(0); }
}
@keyframes fadeSlideDown {
  from { opacity: 0; transform: translateY(-20px); }
  to   { opacity: 1; transform: translateY(0); }
}
@keyframes fadeSlideLeft {
  from { opacity: 0; transform: translateX(-30px); }
  to   { opacity: 1; transform: translateX(0); }
}
@keyframes fadeSlideRight {
  from { opacity: 0; transform: translateX(30px); }
  to   { opacity: 1; transform: translateX(0); }
}
@keyframes scaleIn {
  from { opacity: 0; transform: scale(0.85); }
  to   { opacity: 1; transform: scale(1); }
}
@keyframes rotateIn {
  from { opacity: 0; transform: rotate(-10deg) scale(0.9); }
  to   { opacity: 1; transform: rotate(0) scale(1); }
}

/* Scroll observer classes */
.reveal { opacity: 0; transition: opacity 0.7s ease, transform 0.7s ease; }
.reveal.up    { transform: translateY(40px); }
.reveal.left  { transform: translateX(-40px); }
.reveal.right { transform: translateX(40px); }
.reveal.scale { transform: scale(0.9); }
.reveal.visible { opacity: 1; transform: translate(0) scale(1); }


/* ======================================================
   COUNTER BAR
   ====================================================== */
.ct-counters {
  background: var(--ct-dark-2);
  border-top: 1px solid rgba(255,255,255,0.04);
  border-bottom: 1px solid rgba(255,255,255,0.04);
  padding: 0;
}
.ct-counter-grid {
  display: grid;
  grid-template-columns: repeat(4,1fr);
}
.ct-counter-item {
  padding: 36px 24px;
  text-align: center;
  position: relative;
  border-right: 1px solid rgba(255,255,255,0.04);
  transition: background 0.3s ease;
}
.ct-counter-item:last-child { border-right: none; }
.ct-counter-item:hover { background: rgba(255,255,255,0.02); }
.ct-counter-num {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 50px;
  font-weight: 700;
  color: var(--ct-orange);
  line-height: 1;
  margin-bottom: 8px;
  letter-spacing: -2px;
}
.ct-counter-label {
  font-size: 12px;
  color: rgba(255,255,255,0.4);
  text-transform: uppercase;
  letter-spacing: 2px;
  font-weight: 600;
}


/* ======================================================
   BENTO CARDS — Sales & Service
   ====================================================== */
.ct-bento-grid {
  display: grid;
  grid-template-columns: repeat(2,1fr);
  gap: 24px;
}
.ct-bento-card {
  border-radius: var(--radius-lg);
  padding: 52px 44px;
  position: relative;
  overflow: hidden;
  transition: transform 0.4s cubic-bezier(0.34,1.56,0.64,1), box-shadow 0.4s ease;
  display: flex;
  flex-direction: column;
}
.ct-bento-card:hover { transform: translateY(-10px); }
.ct-bento-card.sales {
  background: linear-gradient(145deg, #0057FF 0%, #003FBF 100%);
  color: #fff;
  box-shadow: 0 20px 60px rgba(0,87,255,0.3);
}
.ct-bento-card.sales:hover { box-shadow: 0 30px 80px rgba(0,87,255,0.45); }
.ct-bento-card.service {
  background: #fff;
  border: 1px solid rgba(0,87,255,0.1);
  box-shadow: 0 10px 40px rgba(0,0,0,0.06);
}
.ct-bento-card.service:hover { box-shadow: 0 20px 60px rgba(0,87,255,0.1); border-color: rgba(0,87,255,0.25); }

/* Decorative shape */
.ct-bento-card::before {
  content: '';
  position: absolute;
  right: -60px; top: -60px;
  width: 240px; height: 240px;
  border-radius: 50%;
  opacity: 0.08;
}
.sales::before { background: #fff; }
.service::before { background: var(--ct-blue); }

.ct-bento-icon {
  width: 64px; height: 64px;
  border-radius: 18px;
  display: flex; align-items: center; justify-content: center;
  font-size: 28px;
  margin-bottom: 24px;
}
.sales .ct-bento-icon { background: rgba(255,255,255,0.15); color: #fff; }
.service .ct-bento-icon { background: rgba(0,87,255,0.08); color: var(--ct-blue); }

.ct-bento-card h3 { font-size: 28px; margin-bottom: 14px; }
.sales h3 { color: #fff; }
.service h3 { color: var(--ct-text); }
.ct-bento-card > p { font-size: 15px; line-height: 1.75; margin-bottom: 28px; flex-grow:1; }
.sales > p { color: rgba(255,255,255,0.72); }
.service > p { color: var(--ct-muted); }

.ct-bento-list { margin-bottom: 32px; }
.ct-bento-list li {
  display: flex; align-items: flex-start; gap: 10px;
  font-size: 14px; font-weight: 500; margin-bottom: 10px;
}
.ct-bento-list li i { font-size: 12px; margin-top: 4px; }
.sales .ct-bento-list li { color: rgba(255,255,255,0.82); }
.sales .ct-bento-list li i { color: var(--ct-gold); }
.service .ct-bento-list li { color: var(--ct-text); }
.service .ct-bento-list li i { color: var(--ct-blue); }


/* ======================================================
   PRODUCTS
   ====================================================== */
.ct-products-section { background: var(--ct-light); }
.ct-products-grid {
  display: grid;
  grid-template-columns: repeat(5,1fr);
  gap: 16px;
}
.ct-product-card {
  background: #fff;
  border-radius: var(--radius-md);
  overflow: hidden;
  border: 1px solid rgba(0,87,255,0.07);
  transition: all 0.35s cubic-bezier(0.34,1.56,0.64,1);
}
.ct-product-card:hover {
  transform: translateY(-8px) scale(1.02);
  box-shadow: 0 20px 50px rgba(0,87,255,0.12);
  border-color: rgba(0,87,255,0.2);
}
.ct-product-img {
  height: 170px;
  overflow: hidden;
  background: var(--ct-light);
  position: relative;
  display: flex; align-items: center; justify-content: center;
}
.ct-product-img img { max-height:140px; object-fit:contain; padding:12px; transition: transform 0.4s ease; }
.ct-product-card:hover .ct-product-img img { transform: scale(1.1); }
.ct-product-badge {
  position: absolute; top: 10px; right: 10px;
  background: var(--ct-orange); color: #fff;
  font-size: 10px; font-weight: 700;
  padding: 3px 10px; border-radius: 20px;
  font-family: 'Space Grotesk', sans-serif;
}
.ct-product-body { padding: 16px; }
.ct-product-body h4 { font-size: 14px; font-weight: 700; color: var(--ct-text); margin-bottom: 5px; }
.ct-product-body p { font-size: 12px; color: var(--ct-muted); margin-bottom: 10px; line-height: 1.5; }
.ct-product-link {
  font-size: 12px; font-weight: 700;
  color: var(--ct-blue);
  display: flex; align-items: center; gap: 5px;
}
.ct-product-link:hover { color: var(--ct-orange); }
.ct-product-link i { transition: transform 0.2s; }
.ct-product-link:hover i { transform: translateX(3px); }


/* ======================================================
   WHY CLEANTECH
   ====================================================== */
.ct-why-grid {
  display: grid;
  grid-template-columns: repeat(3,1fr);
  gap: 20px;
}
.ct-why-card {
  background: #fff;
  border-radius: var(--radius-md);
  padding: 32px 28px;
  border: 1px solid rgba(0,87,255,0.07);
  transition: all 0.35s ease;
  position: relative;
  overflow: hidden;
  cursor: default;
}
.ct-why-card::after {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: var(--radius-md);
  opacity: 0;
  background: linear-gradient(145deg, rgba(0,87,255,0.03), rgba(255,107,0,0.02));
  transition: opacity 0.3s;
}
.ct-why-card:hover { transform: translateY(-6px); box-shadow: 0 16px 50px rgba(0,87,255,0.1); border-color: rgba(0,87,255,0.2); }
.ct-why-card:hover::after { opacity: 1; }
.ct-why-num {
  font-family: 'Space Mono', monospace;
  font-size: 11px;
  font-weight: 700;
  color: rgba(0,87,255,0.3);
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 16px;
}
.ct-why-icon {
  width: 54px; height: 54px;
  border-radius: 16px;
  background: rgba(0,87,255,0.07);
  display: flex; align-items: center; justify-content: center;
  font-size: 24px; color: var(--ct-blue);
  margin-bottom: 18px;
  transition: all 0.3s ease;
}
.ct-why-card:hover .ct-why-icon { background: var(--ct-grad-blue); color: #fff; transform: rotate(-5deg) scale(1.1); }
.ct-why-card h4 { font-size: 17px; font-weight: 700; margin-bottom: 8px; color: var(--ct-text); }
.ct-why-card p { font-size: 14px; color: var(--ct-muted); line-height: 1.65; }


/* ======================================================
   INDUSTRIES PILLS
   ====================================================== */
.ct-industries-section { background: var(--ct-dark); }
.ct-industries-wrap {
  display: flex; flex-wrap: wrap; gap: 12px; justify-content: center;
}
.ct-industry-chip {
  display: flex; align-items: center; gap: 9px;
  padding: 12px 22px;
  border-radius: 10px;
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.06);
  color: rgba(255,255,255,0.65);
  font-size: 14px; font-weight: 600;
  font-family: 'Space Grotesk', sans-serif;
  transition: all 0.3s ease;
  cursor: default;
}
.ct-industry-chip i { color: var(--ct-orange); font-size: 16px; }
.ct-industry-chip:hover {
  background: rgba(0,87,255,0.1);
  border-color: rgba(0,87,255,0.25);
  color: #fff;
  transform: translateY(-3px);
}


/* ======================================================
   CLEANING SERVICES CARDS
   ====================================================== */
.ct-services-grid {
  display: grid;
  grid-template-columns: repeat(4,1fr);
  gap: 20px;
}
.ct-service-card {
  border-radius: var(--radius-md);
  overflow: hidden;
  position: relative;
  height: 340px;
  transition: transform 0.4s ease, box-shadow 0.4s ease;
}
.ct-service-card:hover { transform: translateY(-8px); box-shadow: 0 24px 60px rgba(0,0,0,0.3); }
.ct-svc-img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s ease; }
.ct-service-card:hover .ct-svc-img { transform: scale(1.08); }
.ct-svc-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(5,8,15,0.9) 0%, rgba(5,8,15,0.2) 60%, transparent 100%);
  display: flex; flex-direction: column; justify-content: flex-end;
  padding: 26px;
  transition: all 0.4s ease;
}
.ct-svc-icon-wrap {
  width: 46px; height: 46px;
  border-radius: 12px;
  background: var(--ct-blue);
  display: flex; align-items: center; justify-content: center;
  font-size: 20px; color: #fff;
  margin-bottom: 12px;
  transition: all 0.3s;
}
.ct-service-card:hover .ct-svc-icon-wrap { background: var(--ct-orange); transform: scale(1.1); }
.ct-svc-overlay h4 { font-family: 'Space Grotesk', sans-serif; font-size: 19px; color: #fff; margin-bottom: 6px; }
.ct-svc-overlay p { font-size: 13px; color: rgba(255,255,255,0.65); margin-bottom: 14px; line-height: 1.5; }
.ct-svc-link {
  font-size: 13px; font-weight: 700;
  color: var(--ct-orange);
  display: flex; align-items: center; gap: 6px;
  opacity: 0; transform: translateY(8px);
  transition: all 0.3s 0.05s ease;
}
.ct-service-card:hover .ct-svc-link { opacity: 1; transform: translateY(0); }


/* ======================================================
   TESTIMONIALS
   ====================================================== */
.ct-testimonials-section { background: var(--ct-light); }
.ct-testi-grid {
  display: grid;
  grid-template-columns: repeat(3,1fr);
  gap: 20px;
}
.ct-testi-card {
  background: #fff;
  border-radius: var(--radius-md);
  padding: 32px;
  border: 1px solid rgba(0,87,255,0.06);
  position: relative;
  transition: all 0.3s ease;
}
.ct-testi-card:hover { box-shadow: 0 16px 50px rgba(0,87,255,0.1); transform: translateY(-4px); border-color: rgba(0,87,255,0.15); }
.ct-testi-stars { display: flex; gap: 3px; margin-bottom: 14px; }
.ct-testi-stars i { color: var(--ct-gold); font-size: 13px; }
.ct-testi-text { font-size: 15px; line-height: 1.8; color: #3a4a65; margin-bottom: 22px; font-style: italic; }
.ct-testi-author { display: flex; align-items: center; gap: 12px; }
.ct-testi-avatar {
  width: 46px; height: 46px;
  border-radius: 50%;
  background: var(--ct-grad-blue);
  display: flex; align-items: center; justify-content: center;
  font-family: 'Space Grotesk', sans-serif;
  font-weight: 700; font-size: 18px; color: #fff;
  flex-shrink: 0;
}
.ct-testi-name { font-family: 'Space Grotesk', sans-serif; font-size: 15px; font-weight: 700; color: var(--ct-text); }
.ct-testi-role { font-size: 12px; color: var(--ct-muted); font-weight: 500; }
.ct-testi-quote { position: absolute; top: 24px; right: 28px; font-size: 52px; color: rgba(0,87,255,0.07); font-family: Georgia,serif; line-height: 1; pointer-events: none; }


/* ======================================================
   CTA STRIP
   ====================================================== */
.ct-cta-strip {
  position: relative;
  overflow: hidden;
  padding: 100px 0;
  background: var(--ct-dark);
}
.ct-cta-bg {
  position: absolute; inset: 0;
  background:
    radial-gradient(ellipse 60% 70% at 10% 50%, rgba(0,87,255,0.18) 0%, transparent 60%),
    radial-gradient(ellipse 50% 60% at 90% 50%, rgba(255,107,0,0.14) 0%, transparent 55%),
    linear-gradient(160deg, #05080F 0%, #0A1225 100%);
}
.ct-cta-grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(0,87,255,0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(0,87,255,0.04) 1px, transparent 1px);
  background-size: 45px 45px;
}
.ct-cta-content { position: relative; z-index: 2; text-align: center; }
.ct-cta-content h2 { font-size: clamp(32px, 5vw, 56px); color: #fff; margin-bottom: 14px; letter-spacing: -1px; }
.ct-cta-content p { color: rgba(255,255,255,0.5); font-size: 17px; margin-bottom: 36px; }
.ct-cta-btns { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }


/* ======================================================
   FOOTER
   ====================================================== */
.ct-footer {
  background: #030810;
  border-top: 1px solid rgba(255,255,255,0.04);
  padding-top: 72px;
}
.ct-footer-grid {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr 1.5fr;
  gap: 48px;
  margin-bottom: 60px;
}
.ct-footer-logo {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 26px; font-weight: 700;
  color: #fff; display: inline-block; margin-bottom: 14px;
}
.ct-footer-logo span { color: var(--ct-orange); }
.ct-footer-desc { color: rgba(255,255,255,0.35); font-size: 14px; line-height: 1.8; margin-bottom: 22px; }
.ct-footer-col-title {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 14px; font-weight: 700;
  color: rgba(255,255,255,0.5);
  text-transform: uppercase; letter-spacing: 2px;
  margin-bottom: 20px;
}
.ct-footer-links li { margin-bottom: 11px; }
.ct-footer-links li a {
  color: rgba(255,255,255,0.4); font-size: 14px; font-weight: 500;
  display: flex; align-items: center; gap: 6px;
  transition: all 0.22s;
}
.ct-footer-links li a:hover { color: rgba(255,255,255,0.85); padding-left: 6px; }
.ct-footer-links li a::before { content:''; width:3px; height:3px; border-radius:50%; background: var(--ct-orange); flex-shrink:0; opacity:0; transition:opacity 0.2s; }
.ct-footer-links li a:hover::before { opacity:1; }

.ct-footer-contact-item {
  display: flex; align-items: flex-start; gap: 12px;
  margin-bottom: 16px;
  color: rgba(255,255,255,0.4); font-size: 14px;
}
.ct-footer-contact-item i { color: var(--ct-orange); font-size: 15px; margin-top: 3px; flex-shrink:0; }
.ct-footer-contact-item a { color: rgba(255,255,255,0.4); }
.ct-footer-contact-item a:hover { color: rgba(255,255,255,0.8); }

.ct-footer-socials { display: flex; gap: 8px; margin-top: 18px; }
.ct-social-icon {
  width: 38px; height: 38px;
  border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.07);
  color: rgba(255,255,255,0.45); font-size: 14px;
  transition: all 0.3s ease;
}
.ct-social-icon:hover { background: var(--ct-orange); border-color: var(--ct-orange); color: #fff; transform: translateY(-3px); }

.ct-footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.04);
  padding: 22px 0;
  display: flex; align-items: center; justify-content: space-between;
  flex-wrap: wrap; gap: 8px;
}
.ct-footer-bottom p { color: rgba(255,255,255,0.25); font-size: 13px; }
.ct-footer-bottom span { color: var(--ct-orange); font-weight: 600; }


/* ======================================================
   FLOATING SIDEBAR
   ====================================================== */
.ct-float-sidebar {
  position: fixed;
  right: 0; top: 50%;
  transform: translateY(-50%);
  z-index: 9990;
  display: flex; flex-direction: column; gap: 4px;
}
.ct-float-btn {
  width: 46px; height: 46px;
  border-radius: 10px 0 0 10px;
  display: flex; align-items: center; justify-content: center;
  font-size: 18px; color: #fff;
  border: none; cursor: pointer;
  transition: all 0.3s ease;
}
.ct-float-btn:hover { width: 54px; border-radius: 12px 0 0 12px; }
.ct-float-wa  { background: #25D366; }
.ct-float-fb  { background: #1877F2; }
.ct-float-ig  { background: linear-gradient(45deg,#f09433,#e6683c,#dc2743,#cc2366,#bc1888); }
.ct-float-li  { background: #0A66C2; }

/* Back to top */
.ct-back-top {
  position: fixed; right: 24px; bottom: 28px;
  width: 46px; height: 46px;
  border-radius: 12px;
  background: var(--ct-grad-blue);
  display: flex; align-items: center; justify-content: center;
  color: #fff; font-size: 17px;
  opacity: 0; visibility: hidden;
  transition: all 0.3s ease;
  box-shadow: 0 8px 24px rgba(0,87,255,0.4);
  z-index: 9987; border: none; cursor: pointer;
}
.ct-back-top.on { opacity: 1; visibility: visible; }
.ct-back-top:hover { transform: translateY(-4px); background: var(--ct-grad-orange); }


/* ======================================================
   CONTACT PAGE — New Design
   ====================================================== */
.ct-page-hero {
  background: var(--ct-dark);
  position: relative;
  overflow: hidden;
  padding: 140px 0 60px;
}
.ct-page-hero-bg {
  position: absolute; inset: 0;
  background:
    radial-gradient(ellipse 60% 70% at 20% 50%, rgba(0,87,255,0.2) 0%, transparent 60%),
    radial-gradient(ellipse 40% 50% at 80% 30%, rgba(255,107,0,0.1) 0%, transparent 55%),
    linear-gradient(160deg, #05080F 0%, #0A1225 100%);
}
.ct-page-hero-grid {
  position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(0,87,255,0.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(0,87,255,0.05) 1px, transparent 1px);
  background-size: 50px 50px;
}
.ct-page-hero-content { position: relative; z-index: 2; }
.ct-page-breadcrumb {
  display: flex; align-items: center; gap: 8px;
  font-size: 13px; color: rgba(255,255,255,0.4);
  margin-bottom: 24px;
  font-family: 'Space Mono', monospace;
}
.ct-page-breadcrumb a { color: var(--ct-orange); }
.ct-page-breadcrumb a:hover { color: #fff; }
.ct-page-breadcrumb span { color: rgba(255,255,255,0.25); }
.ct-page-hero h1 {
  font-family: 'Space Grotesk', sans-serif;
  font-size: clamp(40px, 7vw, 72px);
  font-weight: 700;
  color: #fff;
  line-height: 1.05;
  letter-spacing: -2px;
  margin-bottom: 16px;
}
.ct-page-hero h1 em { font-style: normal; color: var(--ct-orange); }
.ct-page-hero p { font-size: 18px; color: rgba(255,255,255,0.5); max-width: 500px; }

/* Contact cards grid */
.ct-contact-cards {
  display: grid;
  grid-template-columns: repeat(3,1fr);
  gap: 20px;
  margin-top: -50px;
  position: relative;
  z-index: 10;
}
.ct-contact-card {
  background: #fff;
  border-radius: var(--radius-md);
  padding: 36px 30px;
  border: 1px solid rgba(0,87,255,0.07);
  box-shadow: 0 20px 60px rgba(0,0,0,0.1);
  transition: all 0.35s ease;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
}
.ct-contact-card:hover { transform: translateY(-6px); box-shadow: 0 30px 80px rgba(0,87,255,0.12); border-color: rgba(0,87,255,0.2); }
.ct-contact-card-icon {
  width: 68px; height: 68px;
  border-radius: 18px;
  display: flex; align-items: center; justify-content: center;
  font-size: 28px;
  margin: 0 auto 16px;
  transition: all 0.3s ease;
}
.ct-contact-card:hover .ct-contact-card-icon { transform: scale(1.1) rotate(-5deg); }
.ct-contact-card.phone .ct-contact-card-icon { background: rgba(0,87,255,0.08); color: var(--ct-blue); }
.ct-contact-card.email .ct-contact-card-icon { background: rgba(255,107,0,0.08); color: var(--ct-orange); }
.ct-contact-card.addr  .ct-contact-card-icon { background: rgba(0,200,130,0.08); color: #00C882; }
.ct-contact-card h4 {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 18px; font-weight: 700;
  color: var(--ct-text); margin-bottom: 12px;
}
.ct-contact-card a {
  display: block; font-size: 16px; font-weight: 600;
  color: var(--ct-blue); margin-bottom: 2px;
  transition: color 0.2s;
}
.ct-contact-card a:hover { color: var(--ct-orange); }
.ct-contact-card p { font-size: 15px; color: var(--ct-muted); line-height: 1.6; margin-top: auto; padding-top: 10px; }

/* Connect section */
.ct-connect-section { padding: 80px 0 60px; background: var(--ct-light); }
.ct-connect-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
}
.ct-connect-text h2 { font-size: clamp(28px, 4vw, 42px); margin-bottom: 14px; }
.ct-connect-text p { font-size: 16px; color: var(--ct-muted); margin-bottom: 28px; }
.ct-connect-action-list { list-style: none; }
.ct-connect-action-list li {
  display: flex; align-items: center; gap: 14px;
  padding: 14px 0; border-bottom: 1px solid rgba(0,87,255,0.06);
  font-size: 15px; color: var(--ct-text);
}
.ct-connect-action-list li i { color: var(--ct-blue); font-size: 18px; width: 24px; }
.ct-connect-action-list li a { color: var(--ct-blue); font-weight: 600; }
.ct-connect-action-list li a:hover { color: var(--ct-orange); }

/* WhatsApp CTA box */
.ct-wa-box {
  background: var(--ct-dark-2);
  border-radius: var(--radius-lg);
  padding: 48px 40px;
  text-align: center;
  border: 1px solid rgba(37,211,102,0.15);
  position: relative;
  overflow: hidden;
}
.ct-wa-box::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 80% 80% at 50% 0%, rgba(37,211,102,0.08) 0%, transparent 70%);
  pointer-events: none;
}
.ct-wa-icon {
  font-size: 56px;
  color: #25D366;
  margin-bottom: 16px;
  animation: waPulse 2.5s ease-in-out infinite;
}
@keyframes waPulse {
  0%,100%{ transform: scale(1); }
  50%{ transform: scale(1.08); }
}
.ct-wa-box h3 { font-family: 'Space Grotesk', sans-serif; font-size: 24px; color: #fff; margin-bottom: 8px; }
.ct-wa-box p { color: rgba(255,255,255,0.45); font-size: 15px; margin-bottom: 24px; }
.ct-wa-btn {
  display: inline-flex; align-items: center; gap: 10px;
  background: #25D366; color: #fff;
  padding: 14px 32px; border-radius: var(--radius-pill);
  font-family: 'Space Grotesk', sans-serif;
  font-weight: 700; font-size: 16px;
  transition: all 0.3s ease;
  box-shadow: 0 8px 24px rgba(37,211,102,0.3);
}
.ct-wa-btn:hover { transform: translateY(-3px); box-shadow: 0 12px 36px rgba(37,211,102,0.45); color: #fff; }

/* Map */
.ct-map-section { padding: 0; }
.ct-map-wrap {
  border-radius: 0;
  overflow: hidden;
  height: 440px;
}
.ct-map-wrap iframe { width: 100%; height: 100%; border: none; filter: grayscale(20%) contrast(1.05); }

/* Contact stats strip */
.ct-contact-stats {
  background: var(--ct-dark-2);
  padding: 48px 0;
  border-top: 1px solid rgba(255,255,255,0.04);
  border-bottom: 1px solid rgba(255,255,255,0.04);
}
.ct-contact-stats-grid {
  display: grid;
  grid-template-columns: repeat(4,1fr);
  gap: 0;
}
.ct-contact-stats-item {
  text-align: center; padding: 20px;
  border-right: 1px solid rgba(255,255,255,0.05);
}
.ct-contact-stats-item:last-child { border-right: none; }
.ct-contact-stats-num {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 42px; font-weight: 700;
  color: var(--ct-orange); line-height: 1; margin-bottom: 6px;
  letter-spacing: -1px;
}
.ct-contact-stats-label { font-size: 12px; color: rgba(255,255,255,0.35); text-transform: uppercase; letter-spacing: 2px; }


/* ======================================================
   RESPONSIVE
   ====================================================== */
@media (max-width: 1200px) {
  .ct-products-grid { grid-template-columns: repeat(3,1fr); }
  .ct-footer-grid { grid-template-columns: 1fr 1fr; gap: 32px; }
  .ct-contact-cards { grid-template-columns: repeat(3,1fr); }
}
@media (max-width: 992px) {
  .ct-nav-links, .ct-nav-phone { display: none; }
  .ct-burger { display: flex; }
  .ct-bento-grid { grid-template-columns: 1fr; }
  .ct-why-grid { grid-template-columns: repeat(2,1fr); }
  .ct-services-grid { grid-template-columns: repeat(2,1fr); }
  .ct-testi-grid { grid-template-columns: 1fr; }
  .ct-counter-grid { grid-template-columns: repeat(2,1fr); }
  .ct-hero-right { display: none; }
  .ct-connect-grid { grid-template-columns: 1fr; }
  .ct-contact-stats-grid { grid-template-columns: repeat(2,1fr); }
  .ct-contact-cards { grid-template-columns: 1fr; }
}
@media (max-width: 768px) {
  .ct-section { padding: 64px 0; }
  .ct-navbar { padding: 0 20px; }
  .ct-products-grid { grid-template-columns: repeat(2,1fr); }
  .ct-why-grid { grid-template-columns: 1fr; }
  .ct-services-grid { grid-template-columns: 1fr; }
  .ct-testi-grid { grid-template-columns: 1fr; }
  .ct-footer-grid { grid-template-columns: 1fr; gap: 28px; }
  .ct-footer-bottom { flex-direction: column; text-align: center; }
  .ct-hero-actions { flex-direction: column; }
  .ct-cta-btns { flex-direction: column; align-items: center; }
  .ct-hero-stats { gap: 24px; }
  .ct-contact-stats-grid { grid-template-columns: repeat(2,1fr); }
  .ct-contact-cards { grid-template-columns: 1fr; }
}
@media (max-width: 480px) {
  .ct-products-grid { grid-template-columns: 1fr; }
  .ct-counter-grid { grid-template-columns: repeat(2,1fr); }
}
