/* ═══════════════════════════════════════════════════════════
   PC-Tech Information Systems — Clean Professional Design
   Inspired by Zoho's official design language
   ═══════════════════════════════════════════════════════════ */

/* ─── Design Tokens ──────────────────────────────────────── */
:root {
  --red:          #E42527;
  --red-hover:    #C41B1B;
  --red-light:    #FFF0F0;
  --red-border:   #FECACA;

  --dark:         #1B1F2A;
  --dark-mid:     #374151;
  --dark-soft:    #6B7280;
  --dark-softer:  #9CA3AF;

  --grey-50:      #F9FAFB;
  --grey-100:     #F3F4F6;
  --grey-200:     #E5E7EB;
  --grey-300:     #D1D5DB;

  --white:        #FFFFFF;
  --blue:         #2563EB;
  --blue-light:   #EFF6FF;
  --green:        #25D366;
  --orange:       #F4700E;

  --radius-sm:    6px;
  --radius:       10px;
  --radius-lg:    16px;
  --radius-xl:    24px;

  --shadow-xs:    0 1px 2px rgba(0,0,0,.05);
  --shadow-sm:    0 1px 3px rgba(0,0,0,.08), 0 1px 2px rgba(0,0,0,.04);
  --shadow:       0 4px 12px rgba(0,0,0,.08), 0 2px 4px rgba(0,0,0,.04);
  --shadow-md:    0 8px 24px rgba(0,0,0,.1), 0 2px 8px rgba(0,0,0,.06);
  --shadow-lg:    0 16px 40px rgba(0,0,0,.1), 0 4px 12px rgba(0,0,0,.06);

  --transition:   .2s cubic-bezier(.4,0,.2,1);
}

/* ─── Reset & Base ───────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; -webkit-text-size-adjust: 100%; }
body {
  font-family: 'Poppins', system-ui, -apple-system, sans-serif;
  color: var(--dark-mid);
  background: var(--white);
  line-height: 1.6;
  overflow-x: hidden;
}
img { max-width: 100%; display: block; }
a   { text-decoration: none; color: inherit; }
ul  { list-style: none; }

.container {
  max-width: 1160px;
  margin: 0 auto;
  padding: 0 28px;
}
.section-pad { padding: 96px 0; }

/* ─── Buttons ────────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 28px;
  border-radius: 6px;
  font-family: inherit;
  font-size: .9rem;
  font-weight: 600;
  cursor: pointer;
  border: 2px solid transparent;
  transition: all var(--transition);
  white-space: nowrap;
}

.btn-primary {
  background: var(--red);
  color: var(--white);
  border-color: var(--red);
}
.btn-primary:hover {
  background: var(--red-hover);
  border-color: var(--red-hover);
  box-shadow: 0 4px 16px rgba(228,37,39,.3);
  transform: translateY(-1px);
}

.btn-outline {
  background: transparent;
  color: var(--red);
  border-color: var(--red);
}
.btn-outline:hover {
  background: var(--red-light);
  transform: translateY(-1px);
}

.btn-ghost-dark {
  background: transparent;
  color: var(--dark-mid);
  border-color: var(--grey-300);
}
.btn-ghost-dark:hover {
  border-color: var(--dark-soft);
  background: var(--grey-50);
}

.btn-nav {
  background: var(--red);
  color: var(--white);
  border-color: var(--red);
  padding: 9px 22px;
  font-size: .85rem;
}
.btn-nav:hover {
  background: var(--red-hover);
  border-color: var(--red-hover);
  box-shadow: 0 4px 12px rgba(228,37,39,.25);
}

.btn-full { width: 100%; justify-content: center; }

/* ─── Section headers ────────────────────────────────────── */
.section-tag {
  display: inline-block;
  padding: 5px 14px;
  background: var(--red-light);
  color: var(--red);
  border-radius: 4px;
  font-size: .75rem;
  font-weight: 600;
  letter-spacing: .06em;
  text-transform: uppercase;
  margin-bottom: 14px;
}

.section-header { text-align: center; margin-bottom: 56px; }

.section-title {
  font-size: clamp(1.75rem, 3vw, 2.5rem);
  font-weight: 700;
  color: var(--dark);
  line-height: 1.25;
  margin-bottom: 14px;
  letter-spacing: -.02em;
}

.section-sub {
  font-size: 1rem;
  color: var(--dark-soft);
  max-width: 520px;
  margin: 0 auto;
  line-height: 1.75;
}

/* ═══════════════════════════════════════════ NAVBAR */
.navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  padding: 0;
  background: rgba(255,255,255,.92);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--grey-200);
  box-shadow: var(--shadow-xs);
  transition: all var(--transition);
}

.navbar.scrolled {
  background: rgba(255,255,255,.98);
  box-shadow: var(--shadow-sm);
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 70px;
}

.logo { display: flex; align-items: center; gap: 10px; }

.logo-name {
  font-size: 1rem;
  font-weight: 600;
  letter-spacing: 0;
  color: var(--dark);
  white-space: nowrap;
  text-transform: uppercase;
}

.logo-img {
  height: 62px;
  width: auto;
  object-fit: contain;
  transition: transform var(--transition);
}
.logo-img:hover { transform: scale(1.03); }
.logo-img--footer { height: 77px; }

.nav-links {
  display: flex;
  align-items: center;
  gap: 4px;
}
.nav-links a:not(.btn) {
  padding: 8px 14px;
  font-size: .875rem;
  font-weight: 500;
  color: var(--dark-mid);
  border-radius: var(--radius-sm);
  transition: all var(--transition);
}
.nav-links a:not(.btn):hover {
  color: var(--dark);
  background: var(--grey-100);
}

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}
.hamburger span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--dark);
  border-radius: 2px;
  transition: all 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); }

/* ═══════════════════════════════════════════ HERO */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  padding-top: 70px;
  background: var(--white);
}

/* Subtle geometric background */
.hero-bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 60% 70% at 85% 50%, #FFF0F0 0%, transparent 65%),
    radial-gradient(ellipse 40% 50% at 10% 80%, #FFF5F5 0%, transparent 55%);
  z-index: 0;
}

/* Dot grid pattern */
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle, var(--grey-200) 1px, transparent 1px);
  background-size: 32px 32px;
  opacity: .45;
  z-index: 0;
}

.hero-inner {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
  padding: 80px 28px;
  max-width: 1160px;
  margin: 0 auto;
  width: 100%;
}

.hero-content { color: var(--dark); }

.hero-badges {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
  margin-bottom: 24px;
}

.zoho-badge-img {
  height: 34px;
  width: auto;
  object-fit: contain;
  border-radius: 4px;
  box-shadow: var(--shadow-sm);
}

.zoho-badge-img--large { height: 48px; }

.hero-location-badge {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 6px 14px;
  background: var(--white);
  border: 1px solid var(--grey-200);
  border-radius: 4px;
  font-size: .78rem;
  font-weight: 500;
  color: var(--dark-soft);
  box-shadow: var(--shadow-xs);
}

.badge-dot {
  width: 7px; height: 7px;
  background: #22C55E;
  border-radius: 50%;
  box-shadow: 0 0 0 3px rgba(34,197,94,.2);
  animation: pulse-dot 2s infinite;
}

@keyframes pulse-dot {
  0%,100% { box-shadow: 0 0 0 3px rgba(34,197,94,.2); }
  50%      { box-shadow: 0 0 0 6px rgba(34,197,94,.08); }
}

.hero-title {
  font-size: clamp(2.2rem, 4vw, 3.4rem);
  font-weight: 700;
  color: var(--dark);
  line-height: 1.18;
  letter-spacing: -.025em;
  margin-bottom: 20px;
}

.hero-title .accent { color: var(--red); }

.hero-sub {
  font-size: 1.05rem;
  color: var(--dark-soft);
  line-height: 1.75;
  max-width: 460px;
  margin-bottom: 36px;
}

.hero-ctas {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-bottom: 24px;
}

.hero-offer {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  font-size: .82rem;
  color: var(--dark-soft);
  background: var(--grey-50);
  border: 1px solid var(--grey-200);
  padding: 7px 14px;
  border-radius: 4px;
}
.hero-offer svg { color: #22C55E; flex-shrink: 0; }

/* Hero graphic — floating white cards */
.hero-graphic {
  position: relative;
  height: 400px;
}

.graphic-card {
  position: absolute;
  background: var(--white);
  border: 1px solid var(--grey-200);
  border-radius: var(--radius-lg);
  padding: 16px 20px;
  display: flex;
  align-items: center;
  gap: 14px;
  box-shadow: var(--shadow-md);
  animation: float 6s ease-in-out infinite;
  min-width: 200px;
}

.gc-1 { top: 8%;  left: 0%;   animation-delay: 0s; }
.gc-2 { top: 42%; right: -4%; animation-delay: -2s; }
.gc-3 { bottom: 6%; left: 10%; animation-delay: -4s; }

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

.gc-icon {
  width: 42px; height: 42px;
  border-radius: var(--radius-sm);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}

.gc-label { font-size: .72rem; color: var(--dark-soft); font-weight: 500; }
.gc-value { font-size: .95rem; font-weight: 700; color: var(--dark); }

.hero-scroll-hint {
  position: absolute;
  bottom: 28px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  color: var(--dark-softer);
  font-size: .72rem;
  font-weight: 500;
  z-index: 1;
  animation: bounce 2.5s ease-in-out infinite;
}

@keyframes bounce {
  0%,100% { transform: translateX(-50%) translateY(0); }
  50%      { transform: translateX(-50%) translateY(5px); }
}

/* ═══════════════════════════════════════════ STATS */
.stats {
  background: var(--white);
  border-top: 1px solid var(--grey-200);
  border-bottom: 1px solid var(--grey-200);
}

.stats-grid {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 44px 28px;
}

.stat-item {
  flex: 1;
  text-align: center;
  padding: 0 16px;
}

.stat-number {
  font-size: clamp(2rem, 3.5vw, 2.75rem);
  font-weight: 700;
  color: var(--dark);
  line-height: 1;
}
.stat-plus, .stat-slash {
  font-size: clamp(1.2rem, 2vw, 1.6rem);
  font-weight: 700;
  color: var(--red);
}

.stat-label {
  display: block;
  font-size: .82rem;
  color: var(--dark-soft);
  font-weight: 500;
  margin-top: 6px;
}

.stat-divider {
  width: 1px;
  height: 48px;
  background: var(--grey-200);
  flex-shrink: 0;
}

/* ═══════════════════════════════════════════ SERVICES */
.services { background: var(--grey-50); }

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

.service-card {
  background: var(--white);
  border: 1px solid var(--grey-200);
  border-radius: var(--radius-lg);
  padding: 28px;
  transition: all var(--transition);
  position: relative;
  overflow: hidden;
}

.service-card::after {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: var(--red);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform var(--transition);
  border-radius: 2px 2px 0 0;
}

.service-card:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-3px);
  border-color: var(--grey-300);
}
.service-card:hover::after { transform: scaleX(1); }

.sc-icon {
  width: 48px; height: 48px;
  border-radius: var(--radius);
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 18px;
}

.sc-blue   { background: #EFF6FF; color: var(--blue); }
.sc-indigo { background: #EEF2FF; color: #4338CA; }
.sc-teal   { background: #F0FDFA; color: #0D9488; }
.sc-orange { background: #FFF7ED; color: #EA580C; }
.sc-purple { background: #FAF5FF; color: #7C3AED; }
.sc-red    { background: var(--red-light); color: var(--red); }

.service-card h3 {
  font-size: 1rem;
  font-weight: 600;
  color: var(--dark);
  margin-bottom: 8px;
}

.service-card p {
  font-size: .865rem;
  color: var(--dark-soft);
  line-height: 1.7;
  margin-bottom: 14px;
}

.sc-bullets li {
  font-size: .82rem;
  color: var(--dark-soft);
  padding: 3px 0 3px 14px;
  position: relative;
}
.sc-bullets li::before {
  content: '';
  position: absolute;
  left: 0; top: 50%;
  transform: translateY(-50%);
  width: 5px; height: 5px;
  background: var(--red);
  border-radius: 50%;
}

/* ═══════════════════════════════════════════ INDUSTRIES */
.industries {
  background: var(--white);
  border-top: 1px solid var(--grey-200);
  border-bottom: 1px solid var(--grey-200);
  padding: 40px 0;
}

.industries-label {
  text-align: center;
  font-size: .72rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: .1em;
  color: var(--dark-softer);
  margin-bottom: 18px;
}

.industries-row {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  justify-content: center;
}

.industries-row span {
  padding: 6px 16px;
  background: var(--grey-50);
  border: 1px solid var(--grey-200);
  border-radius: 4px;
  font-size: .8rem;
  font-weight: 500;
  color: var(--dark-soft);
  transition: all var(--transition);
}
.industries-row span:hover {
  border-color: var(--red);
  color: var(--red);
  background: var(--red-light);
}

/* ═══════════════════════════════════════════ ZOHO SECTION */
.zoho-section { background: var(--grey-50); }

.zoho-header { text-align: center; margin-bottom: 52px; }
.zoho-badge-wrap {
  display: flex;
  gap: 12px;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  margin-bottom: 20px;
}

.zoho-partner-badge {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 7px 16px;
  background: var(--white);
  border: 1px solid var(--grey-200);
  border-radius: 4px;
  font-size: .8rem;
  font-weight: 600;
  color: var(--dark-mid);
  box-shadow: var(--shadow-xs);
}

.zoho-whatsapp-badge {
  background: #F0FDF4;
  border-color: #BBF7D0;
  color: #16A34A;
}

/* ── Zoho Product Cards ── */
.zoho-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  margin-bottom: 48px;
}

.zoho-card {
  background: var(--white);
  border: 1px solid var(--grey-200);
  border-radius: var(--radius-lg);
  padding: 24px;
  transition: all var(--transition);
  cursor: default;
  position: relative;
  overflow: hidden;
}

.zoho-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: var(--red);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform var(--transition);
  border-radius: 2px 2px 0 0;
}

.zoho-card:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-3px);
  border-color: var(--grey-300);
}
.zoho-card:hover::before { transform: scaleX(1); }

/* Single logo, displayed cleanly */
.zc-logo-wrap {
  display: flex;
  align-items: center;
  margin-bottom: 16px;
}

.zc-logo {
  height: 40px;
  width: auto;
  object-fit: contain;
}

/* Suite variant — just show one representative logo */
.zc-logo-wrap--suite .zc-logo { height: 40px; }

/* Hide extra suite logos — only first shown */
.zc-logo-wrap--suite .zc-logo:not(:first-child) { display: none; }

.zc-logo--sm { height: 40px; }

.zc-body { }

.zc-product {
  font-size: .95rem;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 3px;
}

.zc-cat {
  font-size: .72rem;
  color: var(--dark-soft);
  font-weight: 500;
  margin-bottom: 10px;
}

.zc-body > p {
  font-size: .83rem;
  color: var(--dark-soft);
  line-height: 1.65;
  margin-bottom: 14px;
}

.zc-tags {
  display: flex;
  gap: 6px;
  flex-wrap: wrap;
}
.zc-tags span {
  font-size: .7rem;
  font-weight: 600;
  padding: 3px 10px;
  border-radius: 4px;
  background: var(--grey-100);
  color: var(--dark-soft);
  border: 1px solid var(--grey-200);
}

/* Hover overlay — disabled (clean minimal design) */
.zc-hover-overlay { display: none; }

/* ── Implementation Process ── */
.impl-process {
  background: var(--white);
  border: 1px solid var(--grey-200);
  border-radius: var(--radius-xl);
  padding: 48px 40px;
  margin-bottom: 48px;
  box-shadow: var(--shadow-sm);
}

.impl-label {
  text-align: center;
  font-size: .75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: .1em;
  color: var(--dark-softer);
  margin-bottom: 36px;
}

.impl-steps {
  display: flex;
  align-items: flex-start;
  justify-content: center;
  gap: 0;
}

.impl-step {
  flex: 1;
  text-align: center;
  padding: 0 20px;
}

.impl-num {
  font-size: .7rem;
  font-weight: 700;
  color: var(--red);
  letter-spacing: .12em;
  margin-bottom: 10px;
}

.impl-icon {
  width: 52px; height: 52px;
  background: var(--red-light);
  border: 1px solid var(--red-border);
  color: var(--red);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 14px;
}

.impl-step h4 {
  font-size: .9rem;
  font-weight: 600;
  color: var(--dark);
  margin-bottom: 6px;
}

.impl-step p {
  font-size: .8rem;
  color: var(--dark-soft);
  line-height: 1.6;
}

.impl-arrow {
  font-size: 1.2rem;
  color: var(--grey-300);
  padding-top: 48px;
  flex-shrink: 0;
}

.zoho-cta {
  text-align: center;
  padding: 48px 32px;
  background: var(--white);
  border: 1px solid var(--grey-200);
  border-radius: var(--radius-xl);
}

.zoho-cta p {
  color: var(--dark-soft);
  font-size: 1rem;
  margin-bottom: 20px;
}

/* ═══════════════════════════════════════════ WHY US */
.why-us { background: var(--white); }

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

.why-card {
  padding: 32px 26px;
  border: 1px solid var(--grey-200);
  border-radius: var(--radius-lg);
  background: var(--white);
  transition: all var(--transition);
}

.why-card:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-3px);
  border-color: var(--grey-300);
}

.why-num {
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--red-border);
  line-height: 1;
  margin-bottom: 14px;
  font-variant-numeric: tabular-nums;
}

.why-card h3 {
  font-size: .95rem;
  font-weight: 600;
  color: var(--dark);
  margin-bottom: 8px;
}

.why-card p {
  font-size: .865rem;
  color: var(--dark-soft);
  line-height: 1.7;
}

/* ═══════════════════════════════════════════ TEAM STRIP */
.team-strip {
  margin-top: 64px;
  padding-top: 48px;
  border-top: 1px solid var(--grey-200);
}

.team-strip-label {
  text-align: center;
  font-size: .72rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: .1em;
  color: var(--dark-softer);
  margin-bottom: 28px;
}

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

.team-card {
  text-align: center;
  padding: 32px 22px;
  background: var(--grey-50);
  border: 1px solid var(--grey-200);
  border-radius: var(--radius-lg);
  transition: all var(--transition);
}
.team-card:hover {
  box-shadow: var(--shadow);
  transform: translateY(-2px);
}

.team-icon {
  width: 56px; height: 56px;
  background: var(--red-light);
  color: var(--red);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 16px;
}

.team-card h4 {
  font-size: .95rem;
  font-weight: 600;
  color: var(--dark);
  margin-bottom: 8px;
}

.team-card p {
  font-size: .845rem;
  color: var(--dark-soft);
  line-height: 1.7;
}

/* ═══════════════════════════════════════════ TESTIMONIALS */
.testimonials { background: var(--grey-50); }

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-bottom: 40px;
}

.testi-card {
  background: var(--white);
  border: 1px solid var(--grey-200);
  border-radius: var(--radius-lg);
  padding: 28px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  transition: all var(--transition);
}
.testi-card:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-3px);
}

.testi-stars { color: #FBBF24; font-size: .95rem; letter-spacing: 2px; }

.testi-text {
  font-size: .875rem;
  color: var(--dark-soft);
  line-height: 1.75;
  flex: 1;
  font-style: italic;
}
.testi-text::before { content: '\201C'; }
.testi-text::after  { content: '\201D'; }

.testi-author {
  display: flex;
  align-items: center;
  gap: 12px;
  padding-top: 14px;
  border-top: 1px solid var(--grey-100);
}

.testi-avatar {
  width: 40px; height: 40px;
  background: linear-gradient(135deg, var(--red), #FF7070);
  color: var(--white);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: .78rem;
  font-weight: 700;
  flex-shrink: 0;
}

.testi-name { font-size: .875rem; font-weight: 600; color: var(--dark); }
.testi-role { font-size: .76rem; color: var(--dark-softer); margin-top: 1px; }

.testi-cta {
  text-align: center;
  padding: 36px;
  background: var(--white);
  border: 1px dashed var(--grey-300);
  border-radius: var(--radius-lg);
}
.testi-cta p {
  font-size: .9rem;
  color: var(--dark-soft);
  margin-bottom: 18px;
}
.testi-cta-btns { display: flex; gap: 10px; justify-content: center; flex-wrap: wrap; }

.btn-outline-dark {
  background: transparent;
  color: var(--dark-mid);
  border: 1.5px solid var(--grey-300);
  border-radius: 6px;
  padding: 10px 22px;
  font-size: .85rem;
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  gap: 7px;
  transition: all var(--transition);
  font-family: inherit;
}
.btn-outline-dark:hover {
  border-color: var(--red);
  color: var(--red);
  background: var(--red-light);
}

/* ═══════════════════════════════════════════ SUPPORT BANNER */
.support-banner {
  background: var(--red-light);
  border-top: 1px solid var(--red-border);
  border-bottom: 1px solid var(--red-border);
  padding: 44px 0;
}

.support-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  flex-wrap: wrap;
}

.support-text h3 {
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 5px;
}

.support-text p {
  font-size: .875rem;
  color: var(--dark-soft);
  max-width: 460px;
}

/* ═══════════════════════════════════════════ CONTACT */
.contact { background: var(--white); }

.contact-inner {
  display: grid;
  grid-template-columns: 1fr 1.3fr;
  gap: 72px;
  align-items: start;
}

.contact-info .section-tag { display: block; margin-bottom: 12px; }
.contact-info .section-title { text-align: left; margin-bottom: 12px; }
.contact-info > p { color: var(--dark-soft); line-height: 1.75; margin-bottom: 32px; }

.contact-details { display: flex; flex-direction: column; gap: 18px; margin-bottom: 28px; }

.cd-item { display: flex; align-items: center; gap: 14px; }

.cd-icon {
  width: 40px; height: 40px;
  background: var(--red-light);
  color: var(--red);
  border-radius: var(--radius-sm);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}

.cd-label { font-size: .72rem; color: var(--dark-softer); font-weight: 600; text-transform: uppercase; letter-spacing: .05em; }
.cd-value { font-size: .9rem; font-weight: 600; color: var(--dark); margin-top: 1px; }
a.cd-value:hover { color: var(--red); }

.contact-socials { display: flex; gap: 10px; }

.social-link {
  width: 40px; height: 40px;
  background: var(--grey-50);
  border: 1px solid var(--grey-200);
  color: var(--dark-soft);
  border-radius: var(--radius-sm);
  display: flex; align-items: center; justify-content: center;
  transition: all var(--transition);
}
.social-link:hover {
  background: var(--red);
  border-color: var(--red);
  color: var(--white);
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(228,37,39,.25);
}
.social-link--green:hover {
  background: var(--green);
  border-color: var(--green);
  box-shadow: 0 4px 12px rgba(37,211,102,.3);
}

.contact-form {
  background: var(--white);
  border: 1px solid var(--grey-200);
  border-radius: var(--radius-xl);
  padding: 40px;
  box-shadow: var(--shadow);
}

.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; margin-bottom: 14px; }
.form-group { margin-bottom: 14px; }
.form-row .form-group { margin-bottom: 0; }

.form-group label {
  display: block;
  font-size: .78rem;
  font-weight: 600;
  color: var(--dark-mid);
  margin-bottom: 6px;
  letter-spacing: .02em;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 11px 14px;
  border: 1.5px solid var(--grey-200);
  border-radius: var(--radius-sm);
  font-family: inherit;
  font-size: .875rem;
  color: var(--dark);
  background: var(--grey-50);
  transition: border-color var(--transition), box-shadow var(--transition), background var(--transition);
  outline: none;
  appearance: none;
  -webkit-appearance: none;
}

.form-group select {
  background-image: url("data:image/svg+xml,%3Csvg width='14' height='14' fill='none' viewBox='0 0 24 24' stroke='%239CA3AF' xmlns='http://www.w3.org/2000/svg'%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;
  padding-right: 36px;
}

.form-group textarea { resize: vertical; min-height: 96px; }

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--red);
  box-shadow: 0 0 0 3px rgba(228,37,39,.1);
  background: var(--white);
}

.form-group input::placeholder,
.form-group textarea::placeholder { color: var(--dark-softer); }

.form-note   { text-align: center; font-size: .78rem; color: var(--dark-softer); margin-top: 10px; }
.label-or    { font-size: .7rem; font-weight: 500; color: var(--dark-softer); margin-left: 4px; }
.form-notice { text-align: center; font-size: .82rem; font-weight: 500; margin-top: 10px; min-height: 1.2em; transition: color .2s; }
@keyframes spin { from { transform: rotate(0deg); } to { transform: rotate(360deg); } }

/* ═══════════════════════════════════════════ FOOTER */
.footer { background: #f3f5f9; color: var(--dark-mid); padding: 72px 0 0; }

.footer-inner {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 72px;
  padding-bottom: 52px;
  border-bottom: 1px solid var(--grey-200);
}

.footer-brand .logo { margin-bottom: 14px; }

.footer-zoho-badge {
  height: 32px;
  width: auto;
  object-fit: contain;
  margin-bottom: 18px;
  border-radius: 3px;
}

.footer-brand > p {
  font-size: .845rem;
  color: var(--dark-soft);
  line-height: 1.7;
  max-width: 340px;
  margin-bottom: 20px;
}

.footer-socials { display: flex; gap: 8px; }
.footer-socials a {
  width: 36px; height: 36px;
  background: var(--white);
  border: 1px solid var(--grey-200);
  color: var(--dark-soft);
  border-radius: var(--radius-sm);
  display: flex; align-items: center; justify-content: center;
  transition: all var(--transition);
}
.footer-socials a:hover {
  background: var(--red);
  border-color: var(--red);
  color: var(--white);
}

.footer-links {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

.footer-col h4 {
  font-size: .75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .08em;
  color: var(--dark-softer);
  margin-bottom: 14px;
}

.footer-col a {
  display: block;
  font-size: .845rem;
  color: var(--dark-soft);
  padding: 4px 0;
  transition: color var(--transition);
}
.footer-col a:hover { color: var(--red); }

.footer-bottom {
  padding: 18px 0;
  border-top: 1px solid var(--grey-200);
}
.footer-bottom .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 8px;
}
.footer-bottom p { font-size: .78rem; color: var(--dark-softer); }
.footer-bottom a { color: var(--dark-soft); transition: color var(--transition); }
.footer-bottom a:hover { color: var(--red); }

/* ═══════════════════════════════════════════ ANIMATIONS */
[data-fade] {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity .55s ease, transform .55s ease;
}
[data-fade].visible { opacity: 1; transform: none; }

.services-grid [data-fade]:nth-child(2),
.zoho-grid    [data-fade]:nth-child(2),
.why-grid     [data-fade]:nth-child(2) { transition-delay: .08s; }

.services-grid [data-fade]:nth-child(3),
.zoho-grid    [data-fade]:nth-child(3),
.why-grid     [data-fade]:nth-child(3) { transition-delay: .16s; }

.services-grid [data-fade]:nth-child(4),
.zoho-grid    [data-fade]:nth-child(4),
.why-grid     [data-fade]:nth-child(4) { transition-delay: .24s; }

.services-grid [data-fade]:nth-child(5),
.zoho-grid    [data-fade]:nth-child(5),
.why-grid     [data-fade]:nth-child(5) { transition-delay: .32s; }

.services-grid [data-fade]:nth-child(6),
.zoho-grid    [data-fade]:nth-child(6),
.why-grid     [data-fade]:nth-child(6) { transition-delay: .40s; }

.zoho-grid [data-fade]:nth-child(7) { transition-delay: .48s; }
.zoho-grid [data-fade]:nth-child(8) { transition-delay: .56s; }

/* ═══════════════════════════════════════════ RESPONSIVE */
@media (max-width: 1024px) {
  .hero-inner        { grid-template-columns: 1fr; gap: 48px; text-align: center; }
  .hero-sub          { max-width: 520px; margin-left: auto; margin-right: auto; }
  .hero-ctas         { justify-content: center; }
  .hero-offer        { margin: 0 auto; }
  .hero-badges       { justify-content: center; }
  .hero-graphic      { height: 280px; }
  .gc-1 { top: 0;   left: 4%; }
  .gc-2 { top: 40%; right: 4%; }
  .gc-3 { bottom: 0; left: 18%; }

  .services-grid     { grid-template-columns: repeat(2, 1fr); }
  .zoho-grid         { grid-template-columns: repeat(2, 1fr); }
  .why-grid          { grid-template-columns: repeat(2, 1fr); }
  .team-grid         { grid-template-columns: repeat(3, 1fr); }
  .testimonials-grid { grid-template-columns: repeat(2, 1fr); }

  .impl-steps        { flex-wrap: wrap; gap: 28px; }
  .impl-step         { flex: 0 0 calc(50% - 14px); }
  .impl-arrow        { display: none; }

  .contact-inner     { grid-template-columns: 1fr; gap: 48px; }
  .contact-info .section-title { text-align: center; }
  .contact-info > p  { text-align: center; }
  .contact-details   { align-items: center; }
  .contact-socials   { justify-content: center; }

  .footer-inner      { grid-template-columns: 1fr; gap: 40px; }
  .footer-brand > p  { max-width: 100%; }
}

@media (max-width: 768px) {
  .section-pad { padding: 64px 0; }

  .nav-links {
    display: none;
    position: fixed;
    top: 0; left: 0; right: 0; bottom: 0;
    background: var(--white);
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 8px;
    padding: 80px 24px 40px;
    z-index: 999;
    border-top: 3px solid var(--red);
  }
  .nav-links.open { display: flex; }
  .nav-links a:not(.btn) {
    font-size: 1.1rem;
    width: 100%;
    text-align: center;
    padding: 14px;
  }
  .nav-links .btn-nav { margin-top: 8px; padding: 13px 32px; font-size: .95rem; width: 100%; justify-content: center; }
  .hamburger { display: flex; z-index: 1000; position: relative; }

  .hero-inner        { padding: 48px 28px; }
  .hero-graphic      { height: 200px; }
  .graphic-card      { padding: 12px 16px; min-width: 160px; }

  .stats-grid        { flex-wrap: wrap; padding: 36px 28px; }
  .stat-item         { flex: 0 0 50%; }
  .stat-divider      { display: none; }

  .services-grid     { grid-template-columns: 1fr; }
  .zoho-grid         { grid-template-columns: 1fr; }
  .why-grid          { grid-template-columns: 1fr; }
  .team-grid         { grid-template-columns: 1fr; }
  .testimonials-grid { grid-template-columns: 1fr; }
  .impl-steps        { flex-direction: column; align-items: center; }
  .impl-step         { flex: none; width: 100%; max-width: 320px; }

  .form-row          { grid-template-columns: 1fr; }
  .contact-form      { padding: 28px 20px; }
  .impl-process      { padding: 32px 20px; }

  .support-inner     { flex-direction: column; text-align: center; }
  .footer-links      { grid-template-columns: repeat(2, 1fr); }
  .footer-bottom .container { flex-direction: column; text-align: center; }
}

@media (max-width: 480px) {
  .footer-links      { grid-template-columns: 1fr; }
  .hero-ctas         { flex-direction: column; }
  .hero-ctas .btn    { justify-content: center; width: 100%; }
  .testi-cta-btns    { flex-direction: column; }
  .gc-1 { left: 0; }
  .gc-2 { right: 0; }
  .gc-3 { left: 0; }
}
