/* ═══════════════════════════════════════════════
   Home Page — All 5 Sections
   1. Hero
   2. Modes (Tab-based switching, not GSAP)
   3. Solutions
   4. Browser
   5. Connectivity
   ═══════════════════════════════════════════════ */

/* ─────────────────────────────────────────────
   1. Hero Section
   ───────────────────────────────────────────── */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  padding-top: 72px;
}

.hero__bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  overflow: hidden;
}

.hero__bg-image {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.hero__bg-overlay {
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 70% 50%, rgba(0, 229, 255, 0.05) 0%, transparent 60%),
              radial-gradient(ellipse at 30% 80%, rgba(0, 255, 157, 0.03) 0%, transparent 50%);
}

.hero__bg-grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.02) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.02) 1px, transparent 1px);
  background-size: 60px 60px;
}

.hero__container {
  position: relative;
  z-index: 1;
  max-width: 1400px;
  margin: 0 auto;
  width: 100%;
  padding: 0 40px;
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 60px;
  align-items: center;
}

.hero__text {
  padding-right: 20px;
}

.hero__headline {
  font-family: var(--font-heading);
  font-weight: 900;
  line-height: 1.1;
  margin-bottom: 36px;
}

.hero__line {
  display: block;
  animation: heroFadeUp 0.8s cubic-bezier(0.25, 1, 0.5, 1) both;
}

.hero__line--1 {
  font-size: clamp(32px, 4.5vw, 64px);
  color: #fff;
  animation-delay: 0.2s;
}

.hero__line--2 {
  font-size: clamp(28px, 3.5vw, 48px);
  background: linear-gradient(135deg, var(--color-cyan), var(--color-tech-green));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  animation-delay: 0.4s;
}

@keyframes heroFadeUp {
  from { opacity: 0; transform: translateY(30px); }
  to   { opacity: 1; transform: translateY(0); }
}

.hero__cta-group {
  animation: heroFadeUp 0.8s cubic-bezier(0.25, 1, 0.5, 1) 0.6s both;
}

.hero__cta-primary {
  display: inline-flex;
  align-items: center;
  padding: 16px 40px;
  background: linear-gradient(135deg, var(--color-cyan), var(--color-tech-green));
  color: #fff;
  font-size: 16px;
  font-weight: 700;
  border-radius: 12px;
  letter-spacing: 0.03em;
  transition: all 0.3s cubic-bezier(0.25, 1, 0.5, 1);
  position: relative;
  overflow: hidden;
  text-decoration: none;
}

.hero__cta-primary::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.25), transparent);
  transition: left 0.6s ease;
}

.hero__cta-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 0 30px rgba(0, 229, 255, 0.5), 0 0 60px rgba(0, 255, 157, 0.2);
}

.hero__cta-primary:hover::before {
  left: 100%;
}

.hero__cta-primary:active {
  transform: scale(0.96);
}

/* Visual Side */
.hero__visual {
  position: relative;
  animation: heroFadeUp 1s cubic-bezier(0.25, 1, 0.5, 1) 0.5s both;
  display: flex;
  justify-content: center;
  align-items: center;
}

.hero__visual--desktop {
  display: flex;
  justify-content: center;
  align-items: center;
}

.hero__visual--mobile {
  display: none;
}

.hero__product-img {
  width: 687px;
  height: auto;
  max-width: 100%;
  filter: drop-shadow(0 20px 40px rgba(0, 0, 0, 0.6));
  animation: heroProductFloat 6s ease-in-out infinite;
}

@keyframes heroProductFloat {
  0%, 100% { transform: translateY(0); }
  50%      { transform: translateY(-12px); }
}

/* Hero Responsive */
@media (max-width: 1024px) {
  .hero__container {
    grid-template-columns: 1fr;
    text-align: center;
    padding: 0 24px;
  }
  .hero__text {
    padding-right: 0;
  }
  .hero__visual--desktop {
    display: none;
  }
  .hero__visual--mobile {
    display: flex;
    justify-content: center;
    align-items: center;
    max-width: 100%;
    width: 100%;
    margin-top: 40px;
  }
  .hero__visual--mobile .hero__product-img {
    width: 80%;
    max-width: 500px;
  }
}

@media (max-width: 768px) {
  .hero {
    min-height: 100vh;
    padding-top: 120px;
    padding-bottom: 40px;
  }
  .hero__container {
    gap: 0;
    grid-template-columns: 1fr;
  }
  .hero__text {
    padding-top: 20px;
  }
  .hero__visual--desktop {
    display: none;
  }
  .hero__visual--mobile {
    display: flex;
    justify-content: center;
    align-items: center;
    max-width: 100%;
    width: 100%;
    margin-top: 30px;
  }
  .hero__visual--mobile .hero__product-img {
    width: 80%;
    max-width: 400px;
  }
  .hero__cta-group {
    display: flex;
    flex-direction: column;
    gap: 12px;
  }
  .hero__cta-primary {
    width: 100%;
    justify-content: center;
  }
}


/* ─────────────────────────────────────────────
   2. Modes Section (Tab-based, not GSAP)
   ───────────────────────────────────────────── */
.modes {
  position: relative;
  min-height: 100vh;
  background: var(--color-dark-bg);
  display: flex;
  align-items: center;
  padding: 72px 0 60px;
}

.modes__container {
  max-width: 1400px;
  margin: 0 auto;
  width: 100%;
  padding: 0 40px;
  display: flex;
  flex-direction: column;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.02) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.02) 1px, transparent 1px);
  background-size: 40px 40px;
}

.modes__title {
  font-family: var(--font-heading);
  font-size: clamp(32px, 4vw, 48px);
  font-weight: 900;
  color: #fff;
  text-align: center;
  letter-spacing: 0.06em;
  margin-bottom: 48px;
}

/* Tab buttons row */
.modes__tabs {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-bottom: 48px;
  flex-wrap: wrap;
}

.modes__tab {
  padding: 12px 28px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  color: rgba(255, 255, 255, 0.6);
  font-family: var(--font-heading);
  font-size: 15px;
  font-weight: 600;
  border-radius: 10px;
  cursor: pointer;
  transition: all 0.35s cubic-bezier(0.25, 1, 0.5, 1);
  white-space: nowrap;
}

.modes__tab:hover {
  background: rgba(255, 255, 255, 0.07);
  color: rgba(255, 255, 255, 0.85);
  border-color: rgba(255, 255, 255, 0.15);
}

.modes__tab--active {
  background: rgba(0, 229, 255, 0.1);
  border-color: rgba(0, 229, 255, 0.3);
  color: #fff;
  box-shadow: 0 0 16px rgba(0, 229, 255, 0.12);
}

/* Content area: each panel has text + image side by side */
.modes__content {
  position: relative;
  min-height: 500px;
}

.modes__panel {
  display: none;
  gap: 48px;
  align-items: center;
  animation: modePanelIn 0.4s cubic-bezier(0.25, 1, 0.5, 1) both;
}

.modes__panel--active {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
}

@keyframes modePanelIn {
  from { opacity: 0; transform: translateY(16px); }
  to   { opacity: 1; transform: translateY(0); }
}

.modes__text {
  padding-right: 20px;
}

.modes__mode-name {
  font-family: var(--font-heading);
  font-size: clamp(22px, 2.5vw, 32px);
  font-weight: 700;
  color: var(--color-cyan);
  margin-bottom: 16px;
}

.modes__highlight {
  font-size: 16px;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.85);
  margin-bottom: 12px;
}

.modes__workflow {
  font-size: 14px;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.6);
}

.modes__visual {
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 16px;
  overflow: hidden;
  background: rgba(0, 0, 0, 0.2);
  border: 1px solid rgba(255, 255, 255, 0.06);
}

.modes__image {
  width: 100%;
  height: auto;
  object-fit: contain;
  display: block;
}

/* Modes Responsive */
@media (max-width: 1024px) {
  .modes__panel--active {
    grid-template-columns: 1fr 1fr;
  }
  .modes__tab {
    padding: 10px 20px;
    font-size: 14px;
  }
}

@media (max-width: 768px) {
  .modes {
    min-height: auto;
    padding: 60px 0;
  }
  .modes__container {
    padding: 0 20px;
  }
  .modes__tabs {
    gap: 6px;
    margin-bottom: 32px;
  }
  .modes__tab {
    padding: 8px 16px;
    font-size: 13px;
  }
  .modes__panel--active {
    grid-template-columns: 1fr;
    gap: 24px;
  }
  .modes__text {
    padding-right: 0;
  }
  .modes__mode-name {
    font-size: 20px;
  }
}


/* ─────────────────────────────────────────────
   3. Solutions Section
   ───────────────────────────────────────────── */
.solutions {
  background: #fff;
  padding: 80px 0 120px;
  overflow: hidden;
  position: relative;
}

.solutions::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 120px;
  background: linear-gradient(to bottom, var(--color-dark-bg), #fff);
  pointer-events: none;
}

.solutions__container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 40px;
}

.solutions__title {
  font-family: var(--font-heading);
  font-size: clamp(32px, 4vw, 48px);
  font-weight: 900;
  color: #0B132B;
  text-align: center;
  letter-spacing: 0.06em;
  margin-bottom: 64px;
}

.solutions__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.solutions__card {
  position: relative;
  height: 420px;
  border-radius: 20px;
  overflow: hidden;
  cursor: pointer;
  display: block;
  text-decoration: none;
}

.solutions__card-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  transition: transform 0.6s cubic-bezier(0.25, 1, 0.5, 1);
}

.solutions__card:hover .solutions__card-bg {
  transform: scale(1.1);
}

.solutions__card::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.7) 0%, rgba(0, 0, 0, 0) 50%);
  transition: background 0.6s cubic-bezier(0.25, 1, 0.5, 1);
}

.solutions__card:hover::after {
  background: rgba(0, 0, 0, 0.75);
}

.solutions__card-title {
  position: relative;
  z-index: 1;
  font-family: var(--font-heading);
  font-size: 24px;
  font-weight: 700;
  color: #fff;
  padding: 32px;
  margin: 0;
  align-self: flex-end;
  transition: all 0.6s cubic-bezier(0.25, 1, 0.5, 1);
  transform: translateY(0);
}

.solutions__card:hover .solutions__card-title {
  transform: translateY(-60px);
}

/* Solutions Responsive */
@media (max-width: 1024px) {
  .solutions__grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .solutions__card {
    height: 350px;
  }
}

@media (max-width: 768px) {
  .solutions {
    padding: 80px 0;
  }
  .solutions__container {
    padding: 0 20px;
  }
  .solutions__grid {
    grid-template-columns: 1fr;
  }
  .solutions__card {
    height: auto;
    min-height: 280px;
  }
  .solutions__card::after {
    background: rgba(0, 0, 0, 0.65);
  }
  .solutions__card-title {
    padding: 24px;
  }
  .solutions__card:hover .solutions__card-title {
    transform: translateY(0);
  }
}


/* ─────────────────────────────────────────────
   4. Browser Section (from React BrowserSection.css)
   ───────────────────────────────────────────── */
.browser-section {
  position: relative;
  min-height: 100vh;
  background: #050B14;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  padding: 80px 0;
}

.browser-section__glow {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 900px;
  height: 900px;
  transform: translate(-50%, -50%);
  border-radius: 50%;
  background: radial-gradient(circle, rgba(0, 229, 255, 0.18) 0%, rgba(0, 255, 102, 0.08) 35%, transparent 70%);
  /* static: always visible (no GSAP) */
  opacity: 0.8;
  pointer-events: none;
  z-index: 0;
}

.browser-section__container {
  position: relative;
  z-index: 1;
  max-width: 1400px;
  width: 100%;
  margin: 0 auto;
  padding: 0 40px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.browser-section__headline {
  font-family: var(--font-heading);
  font-size: clamp(28px, 3.5vw, 48px);
  font-weight: 800;
  color: #fff;
  line-height: 1.2;
  letter-spacing: -0.02em;
  margin-bottom: 20px;
}

.browser-section__subheadline {
  font-size: clamp(14px, 1.2vw, 17px);
  line-height: 1.65;
  color: #9CA3AF;
  max-width: 720px;
  margin-bottom: 64px;
}

/* Device Array */
.browser-section__devices {
  position: relative;
  width: 100%;
  max-width: 1200px;
  height: 420px;
  display: flex;
  align-items: flex-end;
  justify-content: center;
}

.browser-section__device {
  position: absolute;
  display: flex;
  flex-direction: column;
  align-items: center;
  /* static: always visible (no GSAP initial opacity:0) */
  filter: drop-shadow(0 20px 60px rgba(0, 0, 0, 0.7));
}

/* iMac (center) — static: no translateY/scale offset */
.browser-section__device--imac {
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
}

.browser-section__device--imac .device-frame {
  width: 480px;
  height: 300px;
  border-radius: 12px;
  border: 2px solid rgba(255, 255, 255, 0.12);
  background: linear-gradient(135deg, #1a1a2e 0%, #0d1117 100%);
  overflow: hidden;
  position: relative;
}

.browser-section__device--imac .device-frame::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 28px;
  background: rgba(255, 255, 255, 0.06);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.browser-section__device--imac .browser-dots {
  position: absolute;
  top: 7px;
  left: 12px;
  display: flex;
  gap: 5px;
  z-index: 2;
}

.browser-section__device--imac .browser-dots span {
  width: 7px;
  height: 7px;
  border-radius: 50%;
}
.browser-section__device--imac .browser-dots span:nth-child(1) { background: #FF5F57; }
.browser-section__device--imac .browser-dots span:nth-child(2) { background: #FEBC2E; }
.browser-section__device--imac .browser-dots span:nth-child(3) { background: #28C840; }

.device-screen {
  position: absolute;
  top: 32px;
  left: 8px;
  right: 8px;
  bottom: 8px;
  border-radius: 4px;
  overflow: hidden;
}

.device-screen__image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top left;
  display: block;
}

/* iMac stand */
.browser-section__device--imac .device-stand {
  width: 80px;
  height: 30px;
  margin-top: -2px;
  position: relative;
}

.browser-section__device--imac .device-stand::before {
  content: '';
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 60px;
  height: 18px;
  background: linear-gradient(180deg, rgba(255,255,255,0.1), rgba(255,255,255,0.04));
  border-radius: 0 0 4px 4px;
  clip-path: polygon(15% 0%, 85% 0%, 100% 100%, 0% 100%);
}

.browser-section__device--imac .device-stand::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 100px;
  height: 5px;
  background: rgba(255,255,255,0.08);
  border-radius: 2px;
}

/* iPad (left of iMac) */
.browser-section__device--ipad {
  bottom: 10px;
  left: 0;
  transform: translateX(-130px) rotate(8deg);
  z-index: 3;
}

.browser-section__device--ipad .device-frame {
  width: 200px;
  height: 140px;
  border-radius: 10px;
  border: 2px solid rgba(255, 255, 255, 0.1);
  background: linear-gradient(135deg, #1a1a2e 0%, #0d1117 100%);
  overflow: hidden;
  position: relative;
}

.browser-section__device--ipad .device-frame::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 20px;
  background: rgba(255, 255, 255, 0.05);
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.browser-section__device--ipad .browser-dots {
  position: absolute;
  top: 5px;
  left: 8px;
  display: flex;
  gap: 3px;
  z-index: 2;
}

.browser-section__device--ipad .browser-dots span {
  width: 5px;
  height: 5px;
  border-radius: 50%;
}
.browser-section__device--ipad .browser-dots span:nth-child(1) { background: #FF5F57; }
.browser-section__device--ipad .browser-dots span:nth-child(2) { background: #FEBC2E; }
.browser-section__device--ipad .browser-dots span:nth-child(3) { background: #28C840; }

.browser-section__device--ipad .device-screen {
  top: 24px;
  left: 6px;
  right: 6px;
  bottom: 6px;
  border-radius: 3px;
}

/* iPhone (right of iMac) */
.browser-section__device--iphone {
  bottom: 10px;
  right: 0;
  left: auto;
  transform: translateX(130px) rotate(-8deg);
  z-index: 3;
}

.browser-section__device--iphone .device-frame {
  width: 190px;
  height: 100px;
  border-radius: 16px;
  border: 2px solid rgba(255, 255, 255, 0.1);
  background: linear-gradient(135deg, #1a1a2e 0%, #0d1117 100%);
  overflow: hidden;
  position: relative;
}

.browser-section__device--iphone .device-frame::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 6px;
  transform: translateY(-50%);
  width: 8px;
  height: 40px;
  background: #050B14;
  border-radius: 4px;
  z-index: 3;
}

.browser-section__device--iphone .device-screen {
  top: 4px;
  left: 20px;
  right: 4px;
  bottom: 4px;
  border-radius: 8px;
}

.browser-section__device--iphone .device-frame::after {
  content: '';
  position: absolute;
  left: 4px;
  top: 50%;
  transform: translateY(-50%);
  width: 3px;
  height: 36px;
  background: rgba(255,255,255,0.2);
  border-radius: 2px;
}

/* Device Labels */
.browser-section__device-label {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.45);
  font-weight: 600;
  margin-top: 12px;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

/* Browser Responsive */
@media (max-width: 1024px) {
  .browser-section__device--imac .device-frame {
    width: 380px;
    height: 240px;
  }

  .browser-section__device--ipad {
    left: 0;
    transform: translateX(-20px) rotate(8deg);
  }

  .browser-section__device--iphone {
    right: 0;
    left: auto;
    transform: translateX(20px) rotate(-8deg);
  }

  .browser-section__device--ipad .device-frame {
    width: 170px;
    height: 120px;
  }

  .browser-section__device--iphone .device-frame {
    width: 160px;
    height: 85px;
  }

  .browser-section__devices {
    height: 360px;
  }
}

@media (max-width: 768px) {
  .browser-section {
    padding: 60px 0;
  }

  .browser-section__container {
    padding: 0 20px;
  }

  .browser-section__subheadline {
    margin-bottom: 40px;
  }

  .browser-section__devices {
    flex-direction: column;
    height: auto;
    gap: 32px;
    align-items: center;
  }

  .browser-section__device {
    position: relative;
    left: auto !important;
    right: auto !important;
    bottom: auto !important;
    transform: none !important;
  }

  .browser-section__device--imac .device-frame {
    width: 340px;
    height: 210px;
  }

  .browser-section__device--ipad .device-frame {
    width: 240px;
    height: 160px;
  }

  .browser-section__device--iphone .device-frame {
    width: 190px;
    height: 100px;
  }
}


/* ─────────────────────────────────────────────
   5. Connectivity Section
   ───────────────────────────────────────────── */
.connectivity {
  position: relative;
  background: #050B14;
  overflow: hidden;
}

.connectivity::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 80px;
  background: linear-gradient(to bottom, #050B14, transparent);
  pointer-events: none;
  z-index: 2;
}

.connectivity__container {
  max-width: 1400px;
  margin: 0 auto;
}

/* Banner */
.connectivity__banner {
  position: relative;
  min-height: 480px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 80px 40px;
  overflow: hidden;
  text-align: center;
}

/* Device icon (SVG) */
.connectivity__device-icon {
  width: 80px; height: 80px; margin-bottom: 24px;
  position: relative; z-index: 1;
}

.connectivity__device-icon svg {
  width: 100%; height: 100%;
  filter: drop-shadow(0 0 20px rgba(0, 229, 255, 0.3));
}

.connectivity__headline {
  font-family: var(--font-heading);
  font-size: clamp(28px, 3.5vw, 44px);
  font-weight: 800;
  color: #fff;
  line-height: 1.2;
  letter-spacing: -0.02em;
  margin-bottom: 16px;
  position: relative;
  z-index: 1;
}

.connectivity__subheadline {
  font-size: clamp(14px, 1.1vw, 16px);
  line-height: 1.6;
  color: #9CA3AF;
  max-width: 580px;
  margin: 0 auto 24px;
  position: relative;
  z-index: 1;
}

.connectivity__tag {
  display: inline-block;
  padding: 6px 16px;
  border-radius: 20px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.05em;
  background: rgba(0, 229, 255, 0.08);
  color: #00E5FF;
  border: 1px solid rgba(0, 229, 255, 0.2);
  position: relative;
  z-index: 1;
}

/* Feature Grid */
.connectivity__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  padding: 40px 40px 100px;
}

.connectivity__card {
  position: relative;
  padding: 32px 28px;
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.06);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  transition: all 0.4s cubic-bezier(0.25, 1, 0.5, 1);
}

.connectivity__card:hover {
  background: rgba(255, 255, 255, 0.06);
  border-color: rgba(255, 255, 255, 0.12);
  transform: translateY(-4px);
}

/* Card icon (SVG) */
.connectivity__card-icon {
  width: 44px; height: 44px;
  margin-bottom: 16px;
  flex-shrink: 0;
}
.connectivity__card-icon svg {
  width: 100%; height: 100%;
}

.connectivity__card-title {
  font-family: var(--font-heading);
  font-size: 18px;
  font-weight: 700;
  color: #fff;
  margin-bottom: 10px;
  letter-spacing: -0.01em;
}

.connectivity__card-desc {
  font-size: 14px;
  line-height: 1.6;
  color: #9CA3AF;
}

/* Connectivity Responsive */
@media (max-width: 1024px) {
  .connectivity__grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
  }
  .connectivity__banner {
    min-height: 400px;
    padding: 60px 40px;
  }
}

@media (max-width: 768px) {
  .connectivity__banner {
    flex-direction: column;
    padding: 60px 20px;
    min-height: auto;
  }
  .connectivity__grid {
    grid-template-columns: 1fr;
    padding: 20px 20px 60px;
    gap: 12px;
  }
  .connectivity__card {
    padding: 24px 20px;
  }
  .connectivity__card-title {
    font-size: 16px;
  }
  .connectivity__icon::before { inset: -70px; }
  .connectivity__icon::after  { inset: -110px; }
}
