/*
Theme Name: CallCube
Theme URI: https://callcube.com
Author: CallCube
Author URI: https://callcube.com
Description: CallCube 공식 웹사이트 테마. VoIP, SMS, Hosted PBX, Voice AI 솔루션 전문 기업.
Version: 2.8.0
Requires at least: 6.0
Tested up to: 6.7
Requires PHP: 8.0
License: Proprietary
Text Domain: callcube
Tags: business, technology, one-page, custom-colors, custom-logo, full-width-template
*/

/* ─── CSS VARIABLES ───────────────────────────────── */
:root {
  --red:        #C8281E;
  --red-hover:  #E03229;
  --red-soft:   #FDF1F0;
  --red-border: #F5C5C2;

  --bg:     #FAFAF8;
  --white:  #FFFFFF;
  --ink:    #0F1014;
  --ink2:   #2A2D35;
  --ink3:   #4B5063;
  --ink4:   #8A8E9B;

  --border:  #E8E8E4;
  --border2: #D4D4CE;

  --max: 1280px;
  --pad: clamp(1.5rem, 5vw, 5rem);

  --font-main: 'Plus Jakarta Sans', 'Pretendard', -apple-system, BlinkMacSystemFont, sans-serif;
}

/* ─── RESET & BASE ────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; }

body {
  background: var(--bg);
  color: var(--ink);
  font-family: var(--font-main);
  font-size: 16px;
  font-weight: 400;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-main);
  font-weight: 800;
  line-height: 1.05;
  letter-spacing: -0.03em;
  color: var(--ink);
}

a { color: inherit; text-decoration: none; }
img { max-width: 100%; height: auto; display: block; }
ul, ol { list-style: none; }
button { font-family: var(--font-main); cursor: pointer; }

/* ─── LAYOUT ──────────────────────────────────────── */
.cc-wrap {
  max-width: var(--max);
  margin: 0 auto;
  padding: 0 var(--pad);
}

.cc-section {
  padding: clamp(4rem, 8vw, 7rem) 0;
}

/* ─── FONT FACE ───────────────────────────────────── */
@font-face {
  font-family: 'Plus Jakarta Sans';
  src: url('assets/fonts/PlusJakartaSans-VariableFont_wght.ttf') format('truetype');
  font-weight: 100 900;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Plus Jakarta Sans';
  src: url('assets/fonts/PlusJakartaSans-Italic-VariableFont_wght.ttf') format('truetype');
  font-weight: 100 900;
  font-style: italic;
  font-display: swap;
}

/* ─── TAG / LABEL ─────────────────────────────────── */
.cc-tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.73rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--red);
  margin-bottom: 1rem;
}
.cc-tag::before {
  content: '';
  display: block;
  width: 20px;
  height: 1.5px;
  background: var(--red);
}

/* ─── BUTTONS ─────────────────────────────────────── */
.cc-btn {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-family: var(--font-main);
  font-size: 0.875rem;
  font-weight: 700;
  cursor: pointer;
  text-decoration: none;
  transition: all 0.15s;
  border-radius: 5px;
  padding: 0.65rem 1.4rem;
  border: 1.5px solid transparent;
}
.cc-btn-red {
  background: var(--red);
  color: #fff;
  border-color: var(--red);
}
.cc-btn-red:hover {
  background: var(--red-hover);
  border-color: var(--red-hover);
  color: #fff;
}
.cc-btn-outline {
  background: transparent;
  color: var(--ink2);
  border-color: var(--border2);
}
.cc-btn-outline:hover {
  border-color: var(--ink3);
  color: var(--ink);
}
.cc-btn-ghost {
  background: transparent;
  color: var(--red);
  border-color: var(--red-border);
}
.cc-btn-ghost:hover {
  background: var(--red-soft);
}

/* ─── NAVIGATION ──────────────────────────────────── */
.cc-nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 200;
  background: rgba(250, 250, 248, 0.92);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border);
}
.cc-nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1rem 0;
}
.cc-nav-logo {
  display: flex;
  align-items: center;
  flex-shrink: 0;
}
.cc-nav-logo img {
  height: 72px;
  width: auto;
  max-width: 320px;
  object-fit: contain;
}
.cc-nav-menu {
  display: flex;
  align-items: center;
  gap: 1.6rem;
  margin: 0;
  padding: 0;
}
.cc-nav-menu a {
  font-size: 0.92rem;
  font-weight: 500;
  color: var(--ink3);
  transition: color 0.15s;
  white-space: nowrap;
}
.cc-nav-menu a:hover { color: var(--ink); }

/* Dropdown sub-menu (PC) */
.cc-nav-menu li { list-style: none; position: relative; }
.cc-has-sub > a { display: inline-flex; align-items: center; gap: 4px; }
.cc-has-sub > a svg { transition: transform .2s; }
.cc-has-sub:hover > a svg { transform: rotate(180deg); }
.cc-sub-menu {
  display: none;
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%);
  min-width: 160px;
  padding: 8px 0;
  margin: 0;
  margin-top: 12px;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 10px;
  box-shadow: 0 8px 24px rgba(0,0,0,.08);
  z-index: 300;
  list-style: none;
}
.cc-sub-menu::before {
  content: '';
  position: absolute;
  top: -12px;
  left: 0; right: 0;
  height: 12px;
}
.cc-has-sub:hover .cc-sub-menu {
  display: block;
}
.cc-sub-menu li { padding: 0; position: static; }
.cc-sub-menu a {
  display: block;
  padding: 8px 20px;
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--ink3);
  white-space: nowrap;
  transition: background .15s, color .15s;
}
.cc-sub-menu a:hover {
  background: var(--bg2, #f5f5f5);
  color: var(--red);
}

/* Mobile sub-menu */
.cc-mobile-sub-toggle {
  display: flex; align-items: center; gap: 6px;
  width: 100%;
  background: none; border: none;
  font-size: inherit; font-weight: inherit; font-family: inherit;
  color: inherit; cursor: pointer;
  padding: 0;
  text-align: left;
}
.cc-mobile-sub-toggle svg { transition: transform .2s; }
.cc-mobile-sub.open .cc-mobile-sub-toggle svg { transform: rotate(180deg); }
.cc-mobile-sub-items {
  display: none;
  padding-left: 1rem;
  margin-top: 0.25rem;
}
.cc-mobile-sub.open .cc-mobile-sub-items { display: block; }
.cc-mobile-sub-items a { font-size: 0.95rem; }

.cc-nav-right {
  display: flex;
  align-items: center;
  gap: 1rem;
}
.cc-nav-tel {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--ink3);
}
.cc-nav-tel:hover { color: var(--ink); }
.cc-nav-phone {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 8px 16px;
  background: var(--red-soft);
  border: 1px solid var(--red-border);
  border-radius: 100px;
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--red);
  text-decoration: none;
  transition: all .2s;
}
.cc-nav-phone svg { flex-shrink: 0; }
.cc-nav-phone:hover {
  background: var(--red);
  color: #fff;
  border-color: var(--red);
}
.cc-nav-phone:hover svg { stroke: #fff; }

/* Mobile nav toggle */
.cc-nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  padding: 4px;
  cursor: pointer;
}
.cc-nav-toggle span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--ink);
  border-radius: 2px;
  transition: all 0.2s;
}

/* ─── HERO ────────────────────────────────────────── */
.cc-hero {
  padding-top: clamp(7rem, 13vw, 11rem);
  padding-bottom: clamp(4rem, 8vw, 6rem);
  border-bottom: 1px solid var(--border);
  background: var(--white);
}
.cc-hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--red-soft);
  border: 1px solid var(--red-border);
  padding: 5px 14px;
  border-radius: 100px;
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--red);
  margin-bottom: 2rem;
}
.cc-live-dot {
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--red);
  animation: cc-pulse 2s ease infinite;
}
@keyframes cc-pulse {
  0%, 100% { opacity: 1; }
  50%       { opacity: 0.3; }
}
.cc-hero-grid {
  display: grid;
  grid-template-columns: 1fr 400px;
  gap: 5rem;
  align-items: center;
}
.cc-hero h1 {
  font-size: clamp(2rem, 4.5vw, 3.5rem);
  font-weight: 800;
  line-height: 0.95;
  letter-spacing: -0.04em;
}
.cc-hero h1 .accent { color: var(--red); }
.cc-hero h1 .light  { font-weight: 300; font-style: italic; color: var(--ink3); }
.cc-hero-sub {
  margin-top: 2rem;
  font-size: 1.05rem;
  line-height: 1.75;
  color: var(--ink3);
  max-width: 500px;
}
.cc-hero-actions {
  display: flex;
  gap: 0.75rem;
  margin-top: 2.5rem;
  flex-wrap: wrap;
}
.cc-hero-stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  margin-top: 3.5rem;
  background: var(--red);
  border-radius: 12px;
  overflow: hidden;
}
.cc-stat {
  padding: 1.2rem 1rem;
  text-align: center;
  border-right: 1px solid rgba(255,255,255,0.15);
}
.cc-stat:last-child { border-right: none; }
.cc-stat-num {
  font-size: clamp(1.3rem, 2.5vw, 1.8rem);
  font-weight: 800;
  letter-spacing: -0.03em;
  color: #fff;
  line-height: 1;
}
.cc-stat-label {
  font-size: 0.75rem;
  color: rgba(255,255,255,0.8);
  margin-top: 6px;
  font-weight: 500;
}

/* Hero Panel */
.cc-hero-panel {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 14px;
  overflow: hidden;
  box-shadow: 0 4px 32px rgba(0,0,0,0.07);
}
.cc-hero-card {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  padding: 20px;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 12px;
  box-shadow: 0 2px 12px rgba(0,0,0,0.04);
  transition: border-color .2s, box-shadow .2s;
}
.cc-hero-card:hover {
  border-color: var(--red-border);
  box-shadow: 0 4px 20px rgba(232,52,46,0.08);
}
.cc-hero-card-icon {
  width: 48px; height: 48px; flex-shrink: 0;
  display: flex; align-items: center; justify-content: center;
  background: var(--red-soft); border: 1px solid var(--red-border);
  border-radius: 10px;
}
.cc-hero-card-title { font-size: 0.95rem; font-weight: 700; color: var(--ink); margin-bottom: 4px; }
.cc-hero-card-desc { font-size: 0.82rem; color: var(--ink3); line-height: 1.5; }

.cc-hero-chat {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 8px 40px rgba(0,0,0,0.08);
}
.cc-hero-chat .cc-chat-bar {
  padding: 14px 18px;
  background: var(--ink);
  color: #fff;
  display: flex;
  align-items: center;
  gap: 10px;
}
.cc-hero-chat .cc-chat-msgs {
  padding: 18px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  background: #f7f7f8;
  min-height: 200px;
}
.cc-panel-bar {
  padding: 0.9rem 1.2rem;
  background: var(--bg);
  border-bottom: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.cc-panel-dots { display: flex; gap: 5px; }
.cc-panel-dots span { width: 10px; height: 10px; border-radius: 50%; }
.cc-panel-dots span:nth-child(1) { background: #FF5F57; }
.cc-panel-dots span:nth-child(2) { background: #FEBC2E; }
.cc-panel-dots span:nth-child(3) { background: #28C840; }
.cc-panel-title { font-size: 0.73rem; font-weight: 700; color: var(--ink4); }
.cc-panel-body { padding: 1.25rem; }

/* Waveform */
.cc-wave-row {
  display: flex;
  align-items: center;
  gap: 3px;
  height: 44px;
  margin-bottom: 1.2rem;
}
.cc-wv {
  width: 3px;
  background: var(--red);
  border-radius: 2px;
  opacity: 0.6;
  animation: cc-wv var(--d) var(--del, 0s) ease infinite alternate;
}
@keyframes cc-wv {
  from { height: 3px; }
  to   { height: var(--h); }
}

/* Panel rows */
.cc-row-card {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.7rem 0.9rem;
  border-radius: 8px;
  background: var(--bg);
  border: 1px solid var(--border);
  margin-bottom: 0.6rem;
}
.cc-row-card:last-child { margin-bottom: 0; }
.cc-rc-left { display: flex; align-items: center; gap: 10px; }
.cc-rc-icon {
  width: 28px; height: 28px;
  border-radius: 6px;
  background: var(--red-soft);
  border: 1px solid var(--red-border);
  display: flex;
  align-items: center;
  justify-content: center;
}
.cc-rc-icon svg { width: 13px; height: 13px; }
.cc-rc-label { font-size: 0.8rem; font-weight: 700; color: var(--ink); }
.cc-rc-sub   { font-size: 0.68rem; color: var(--ink4); }
.cc-rc-val   { font-size: 0.82rem; font-weight: 800; color: var(--ink); }
.cc-rc-val.green { color: #16a34a; }

/* ─── MARQUEE ─────────────────────────────────────── */
.cc-marquee-wrap {
  padding: 0.85rem 0;
  overflow: hidden;
  background: var(--ink);
}
.cc-marquee-track {
  display: flex;
  gap: 3rem;
  white-space: nowrap;
  animation: cc-marquee 22s linear infinite;
}
@keyframes cc-marquee {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}
.cc-marquee-item {
  font-size: 0.73rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.4);
  flex-shrink: 0;
}
.cc-marquee-item span { color: var(--red-hover); margin-right: 0.5rem; }

/* ─── UNIFIED NUMBER ──────────────────────────────── */
.cc-unified {
  margin-top: 2.5rem;
  padding: 1.8rem 2rem;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 12px;
}
.cc-unified-badge {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--red);
  margin-bottom: 1rem;
}
.cc-unified-items {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  flex-wrap: wrap;
}
.cc-unified-item {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 12px 16px;
  background: var(--bg);
  border-radius: 10px;
  border: 1px solid var(--border);
  min-width: 140px;
}
.cc-unified-item svg { flex-shrink: 0; color: var(--ink3); }
.cc-unified-item strong { display: block; font-size: 0.9rem; font-weight: 700; color: var(--ink); }
.cc-unified-item span { display: block; font-size: 0.72rem; color: var(--ink4); }
.cc-unified-highlight {
  background: var(--red) !important;
  border-color: var(--red) !important;
}
.cc-unified-highlight svg { color: #fff !important; stroke: #fff; }
.cc-unified-highlight strong { color: #fff !important; }
.cc-unified-highlight span { color: rgba(255,255,255,.8) !important; }
.cc-unified-divider {
  font-size: 1.2rem;
  font-weight: 800;
  color: var(--ink4);
}
@media (max-width: 720px) {
  .cc-unified-items { gap: 0.5rem; }
  .cc-unified-item { min-width: auto; flex: 1; padding: 10px 12px; }
  .cc-unified-divider { font-size: 1rem; }
  .cc-unified { padding: 1.2rem 1rem; }
}
@media (max-width: 480px) {
  .cc-unified-items { flex-direction: column; }
  .cc-unified-item { width: 100%; }
  .cc-unified-divider { display: none; }
}

/* ─── INTEGRATIONS & API ──────────────────────────── */
.cc-connect { padding: 5rem 0; background: #fafafa; }
.cc-connect-head {
  display: flex;
  justify-content: space-between;
  gap: 2.5rem;
  margin-bottom: 3rem;
  align-items: flex-end;
}
.cc-connect-head h2 {
  font-size: clamp(1.8rem, 3.5vw, 2.4rem);
  line-height: 1.2;
  font-weight: 800;
  margin: 0.8rem 0 0;
  letter-spacing: -0.02em;
}
.cc-connect-head p {
  font-size: 1rem;
  line-height: 1.7;
  color: #666;
  max-width: 480px;
  margin: 0;
}
.cc-connect-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.4rem;
}
.cc-connect-card {
  padding: 2rem 1.8rem;
  background: #fff;
  border: 1px solid #f0f0f0;
  border-radius: 16px;
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}
.cc-connect-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 16px 32px -16px rgba(0, 0, 0, 0.1);
}
.cc-connect-card.cc-connect-highlight {
  border-color: rgba(229, 9, 20, 0.3);
  background: linear-gradient(180deg, #fff 0%, #fffafa 100%);
}
.cc-connect-card.cc-connect-highlight:hover {
  border-color: rgba(229, 9, 20, 0.5);
  box-shadow: 0 20px 40px -18px rgba(229, 9, 20, 0.25);
}
.cc-connect-icon {
  width: 52px;
  height: 52px;
  border-radius: 12px;
  background: #111;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.2rem;
}
.cc-connect-card.cc-connect-highlight .cc-connect-icon {
  background: linear-gradient(135deg, var(--red, #e50914) 0%, #b8070f 100%);
  box-shadow: 0 10px 24px -10px rgba(229, 9, 20, 0.5);
}
.cc-connect-card h3 {
  font-size: 1.15rem;
  font-weight: 700;
  margin: 0 0 0.7rem;
  color: #111;
  letter-spacing: -0.01em;
}
.cc-connect-card p {
  font-size: 0.92rem;
  line-height: 1.65;
  color: #666;
  margin: 0 0 1.1rem;
}
.cc-connect-logos {
  font-size: 0.76rem;
  color: #999;
  font-weight: 600;
  letter-spacing: 0.02em;
  padding-top: 0.9rem;
  border-top: 1px dashed #eee;
}

@media (max-width: 900px) {
  .cc-connect-head {
    flex-direction: column;
    align-items: flex-start;
    gap: 1rem;
  }
}
@media (max-width: 768px) {
  .cc-connect { padding: 4rem 0; }
  .cc-connect-head { margin-bottom: 2.5rem; }
  .cc-connect-grid { grid-template-columns: 1fr; gap: 1rem; }
  .cc-connect-card { padding: 1.6rem 1.4rem; }
}

/* ─── WHY CALLCUBE ────────────────────────────────── */
.cc-why {
  background: var(--ink);
  color: #fff;
}
.cc-why-head {
  text-align: center;
  margin-bottom: 3rem;
}
.cc-why-head .cc-tag {
  background: rgba(232,52,46,.15);
  border-color: rgba(232,52,46,.3);
  color: var(--red);
}
.cc-why-head h2 {
  color: #fff;
  font-size: clamp(2rem, 4vw, 3rem);
}
.cc-why-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.2rem;
}
.cc-why-card {
  padding: 1.8rem;
  background: rgba(255,255,255,.05);
  border: 1px solid rgba(255,255,255,.1);
  border-radius: 12px;
  transition: border-color .2s, background .2s;
}
.cc-why-card:hover {
  border-color: var(--red);
  background: rgba(232,52,46,.08);
}
.cc-why-icon {
  font-size: 1.8rem;
  margin-bottom: 0.8rem;
}
.cc-why-card h3 {
  font-size: 1rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 0.5rem;
}
.cc-why-card p {
  font-size: 0.83rem;
  color: rgba(255,255,255,.65);
  line-height: 1.6;
}
.cc-why-card strong {
  color: #fff;
}
@media (max-width: 1024px) {
  .cc-why-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 600px) {
  .cc-why-grid { grid-template-columns: 1fr; }
}

/* ─── TRUST / PARTNERS ────────────────────────────── */
.cc-trust {
  padding: 2.5rem 0;
  background: var(--bg);
  border-bottom: 1px solid var(--border);
}
.cc-trust-label {
  text-align: center;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--ink4);
  margin-bottom: 1.5rem;
}
.cc-trust-logos {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 3rem;
  flex-wrap: wrap;
}
.cc-trust-logo {
  font-size: 1.1rem;
  font-weight: 800;
  color: var(--ink4);
  opacity: 0.45;
  letter-spacing: -0.02em;
  transition: opacity .2s;
}
.cc-trust-logo:hover { opacity: 0.8; }

/* ─── SERVICES ────────────────────────────────────── */
.cc-services {
  background: var(--white);
  border-bottom: 1px solid var(--border);
}
.cc-services-head {
  text-align: center;
  margin-bottom: 3.5rem;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}
.cc-services-head h2 { font-size: clamp(2rem, 4.5vw, 3.5rem); margin-bottom: 1rem; }
.cc-services-head p  { font-size: 1.05rem; color: var(--ink3); line-height: 1.75; }

.cc-svc-table {
  border: 1px solid var(--border);
  border-radius: 10px;
  overflow: hidden;
}
.cc-svc-row {
  display: grid;
  grid-template-columns: 52px 1fr 1.2fr auto;
  align-items: center;
  gap: 1.5rem;
  padding: 1.3rem 1.8rem;
  border-bottom: 1px solid var(--border);
  transition: background 0.15s;
  cursor: pointer;
}
.cc-svc-row:last-child { border-bottom: none; }
.cc-svc-row:hover { background: var(--bg); }
.cc-svc-num  { font-size: 0.7rem; font-weight: 700; letter-spacing: 0.1em; color: var(--ink4); text-transform: uppercase; }
.cc-svc-name { font-size: 0.95rem; font-weight: 700; color: var(--ink); }
.cc-svc-desc { font-size: 0.85rem; color: var(--ink3); line-height: 1.5; }
/* Service Card Grid (new) */
.cc-svc-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
}
.cc-svc-card {
  display: block;
  padding: 2rem;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 12px;
  color: inherit;
  text-decoration: none;
  transition: border-color .2s, box-shadow .2s, transform .2s;
}
.cc-svc-card:hover {
  border-color: var(--red-border);
  box-shadow: 0 4px 20px rgba(232,52,46,0.06);
  transform: translateY(-2px);
}
.cc-svc-icon {
  width: 52px; height: 52px;
  display: flex; align-items: center; justify-content: center;
  background: var(--red-soft);
  border: 1px solid var(--red-border);
  border-radius: 12px;
  color: var(--red);
  margin-bottom: 1.2rem;
}
.cc-svc-card .cc-svc-name {
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--ink);
  margin-bottom: 0.6rem;
}
.cc-svc-card .cc-svc-desc {
  font-size: 0.85rem;
  color: var(--ink3);
  line-height: 1.6;
  margin-bottom: 1rem;
}
.cc-svc-chip {
  font-size: 0.7rem;
  font-weight: 700;
  padding: 4px 10px;
  border-radius: 100px;
  white-space: nowrap;
  background: var(--red-soft);
  color: var(--red);
  border: 1px solid var(--red-border);
}

/* ─── NUMBERS ─────────────────────────────────────── */
.cc-numbers {
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  background: var(--bg);
}
.cc-num-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}
.cc-num-cell {
  padding: 2.5rem 2rem;
  border-right: 1px solid var(--border);
}
.cc-num-cell:last-child { border-right: none; }
.cc-num-big {
  font-size: clamp(2.5rem, 5vw, 4.5rem);
  font-weight: 800;
  line-height: 1;
  letter-spacing: -0.04em;
  color: var(--ink);
}
.cc-num-big sub { font-size: 0.42em; color: var(--red); vertical-align: top; margin-top: 0.25em; }
.cc-num-desc { font-size: 0.83rem; color: var(--ink4); margin-top: 0.5rem; line-height: 1.5; }

/* ─── AI SPOTLIGHT BAND (homepage) ────────────────── */
.cc-ai-band {
  padding: 2rem 0;
  background: #0a0a0a;
  border-top: 1px solid rgba(229, 9, 20, 0.2);
  border-bottom: 1px solid rgba(229, 9, 20, 0.2);
}
.cc-ai-band-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  padding: 1.6rem 2rem;
  background: linear-gradient(135deg, rgba(229, 9, 20, 0.12) 0%, rgba(229, 9, 20, 0.04) 100%);
  border: 1px solid rgba(229, 9, 20, 0.3);
  border-radius: 16px;
  text-decoration: none;
  color: inherit;
  transition: transform 0.25s ease, border-color 0.25s ease, box-shadow 0.25s ease;
  position: relative;
  overflow: hidden;
}
.cc-ai-band-inner::before {
  content: "";
  position: absolute;
  top: 50%;
  right: -10%;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(229, 9, 20, 0.15) 0%, transparent 60%);
  transform: translateY(-50%);
  pointer-events: none;
}
.cc-ai-band-inner:hover {
  transform: translateY(-2px);
  border-color: rgba(229, 9, 20, 0.55);
  box-shadow: 0 20px 40px -20px rgba(229, 9, 20, 0.5);
}
.cc-ai-band-left {
  flex: 1;
  min-width: 0;
  position: relative;
  z-index: 2;
}
.cc-ai-band-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.72rem;
  font-weight: 800;
  color: #fff;
  background: linear-gradient(135deg, var(--red, #e50914) 0%, #ff4757 100%);
  padding: 0.35rem 0.8rem;
  border-radius: 20px;
  letter-spacing: 0.08em;
  margin-bottom: 0.8rem;
  box-shadow: 0 8px 20px -8px rgba(229, 9, 20, 0.6);
}
.cc-ai-band-title {
  font-size: 1.35rem;
  font-weight: 800;
  color: #fff;
  margin-bottom: 0.4rem;
  letter-spacing: -0.01em;
}
.cc-ai-band-sub {
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.65);
  line-height: 1.5;
}
.cc-ai-band-right {
  display: flex;
  align-items: center;
  gap: 1.8rem;
  flex-shrink: 0;
  position: relative;
  z-index: 2;
}
.cc-ai-band-chs {
  display: flex;
  gap: 0.6rem;
}
.cc-ai-band-ch {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  padding: 0.5rem 0.9rem;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 10px;
  font-size: 0.82rem;
  font-weight: 600;
  color: #fff;
}
.cc-ai-band-arrow {
  font-size: 0.92rem;
  font-weight: 700;
  color: var(--red, #e50914);
  white-space: nowrap;
}

@media (max-width: 900px) {
  .cc-ai-band-inner {
    flex-direction: column;
    align-items: flex-start;
    gap: 1.2rem;
    padding: 1.4rem 1.5rem;
  }
  .cc-ai-band-title { font-size: 1.15rem; }
  .cc-ai-band-right {
    width: 100%;
    justify-content: space-between;
    gap: 1rem;
  }
}
@media (max-width: 560px) {
  .cc-ai-band { padding: 1.4rem 0; }
  .cc-ai-band-right { flex-wrap: wrap; }
  .cc-ai-band-chs { flex-wrap: wrap; }
  .cc-ai-band-ch { padding: 0.4rem 0.7rem; font-size: 0.76rem; }
}

/* ─── AI / SPLIT ──────────────────────────────────── */
.cc-split {
  background: var(--white);
  border-bottom: 1px solid var(--border);
}
.cc-split-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(3rem, 6vw, 6rem);
  align-items: center;
}
.cc-split h2 { font-size: clamp(2rem, 4vw, 3.2rem); margin: 1rem 0 1.5rem; }
.cc-split p  { font-size: 1rem; color: var(--ink3); line-height: 1.75; }

.cc-feat-list { display: flex; flex-direction: column; margin-top: 2rem; }
.cc-feat {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
  padding: 1rem 0;
  border-bottom: 1px solid var(--border);
}
.cc-feat:last-child { border-bottom: none; }
.cc-feat-dot {
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--red);
  margin-top: 7px;
  flex-shrink: 0;
}
.cc-feat-title { font-size: 0.9rem; font-weight: 700; color: var(--ink); margin-bottom: 3px; }
.cc-feat-desc  { font-size: 0.83rem; color: var(--ink3); line-height: 1.55; }

/* Chat Demo */
.cc-chat-frame {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 14px;
  overflow: hidden;
  box-shadow: 0 4px 28px rgba(0,0,0,0.06);
}
.cc-chat-bar {
  padding: 0.9rem 1.2rem;
  background: var(--bg);
  border-bottom: 1px solid var(--border);
  display: flex;
  align-items: center;
  gap: 10px;
}
.cc-chat-av {
  width: 30px; height: 30px;
  border-radius: 50%;
  background: var(--red-soft);
  border: 1.5px solid var(--red-border);
  display: flex; align-items: center; justify-content: center;
  font-size: 0.6rem; font-weight: 800; color: var(--red);
}
.cc-chat-name { font-size: 0.83rem; font-weight: 700; color: var(--ink); }
.cc-chat-st   { font-size: 0.68rem; color: #16a34a; }
.cc-chat-msgs { padding: 1.2rem; display: flex; flex-direction: column; gap: 0.65rem; }
.cc-msg {
  max-width: 82%;
  font-size: 0.82rem;
  line-height: 1.55;
  padding: 0.65rem 0.9rem;
  border-radius: 10px;
}
.cc-msg-bot {
  background: var(--bg);
  border: 1px solid var(--border);
  color: var(--ink2);
  border-radius: 3px 10px 10px 10px;
  align-self: flex-start;
}
.cc-msg-usr {
  background: var(--red);
  color: #fff;
  border-radius: 10px 10px 3px 10px;
  align-self: flex-end;
}
.cc-typing {
  display: flex; gap: 4px;
  padding: 0.65rem 0.9rem;
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: 3px 10px 10px 10px;
  width: fit-content;
  align-self: flex-start;
}
.cc-td {
  width: 5px; height: 5px;
  border-radius: 50%;
  background: var(--ink4);
  animation: cc-blink 1.4s ease infinite;
}
.cc-td:nth-child(2) { animation-delay: .2s; }
.cc-td:nth-child(3) { animation-delay: .4s; }
@keyframes cc-blink {
  0%, 80%, 100% { opacity: 0.2; }
  40%           { opacity: 1; }
}

/* ─── INFRA ───────────────────────────────────────── */
.cc-infra {
  background: var(--bg);
  border-bottom: 1px solid var(--border);
}
.cc-infra-head {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: 3rem;
  flex-wrap: wrap;
  gap: 2rem;
}
.cc-infra-head h2 { font-size: clamp(2rem, 4vw, 3.2rem); }
.cc-infra-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border: 1px solid var(--border);
  border-radius: 10px;
  overflow: hidden;
  gap: 1px;
  background: var(--border);
}
.cc-infra-cell {
  background: var(--white);
  padding: 2rem 1.75rem;
  transition: background 0.15s;
  cursor: pointer;
}
.cc-infra-cell:hover { background: var(--red-soft); }
.cc-infra-n    { font-size: 0.7rem; font-weight: 700; letter-spacing: 0.12em; color: var(--ink4); text-transform: uppercase; margin-bottom: 1.1rem; }
.cc-infra-name { font-size: 0.95rem; font-weight: 700; color: var(--ink); margin-bottom: 0.4rem; }
.cc-infra-desc { font-size: 0.83rem; color: var(--ink3); line-height: 1.55; }

/* ─── TESTIMONIALS ────────────────────────────────── */
.cc-testi {
  background: var(--white);
  border-bottom: 1px solid var(--border);
}
.cc-testi-layout {
  display: grid;
  grid-template-columns: 180px 1fr;
  gap: 4rem;
  align-items: start;
}
.cc-testi-vert {
  writing-mode: vertical-rl;
  transform: rotate(180deg);
  font-size: clamp(1.2rem, 2vw, 1.6rem);
  font-weight: 800;
  color: var(--ink);
  letter-spacing: -0.02em;
}
.cc-testi-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
}
.cc-testi-card {
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 1.8rem;
  transition: border-color 0.15s;
}
.cc-testi-card:hover { border-color: var(--red-border); }
.cc-testi-quote { font-size: 1rem; font-weight: 500; font-style: italic; line-height: 1.65; color: var(--ink2); margin-bottom: 1.5rem; }
.cc-testi-author { display: flex; align-items: center; gap: 10px; }
.cc-testi-av {
  width: 36px; height: 36px;
  border-radius: 50%;
  background: var(--red-soft);
  border: 1px solid var(--red-border);
  display: flex; align-items: center; justify-content: center;
  font-size: 0.68rem; font-weight: 800; color: var(--red);
  flex-shrink: 0;
}
.cc-testi-name { font-size: 0.85rem; font-weight: 700; color: var(--ink); }
.cc-testi-role { font-size: 0.73rem; color: var(--ink4); }

/* ─── CTA ─────────────────────────────────────────── */
.cc-cta { background: var(--bg); }
.cc-cta-box {
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 4rem;
  background: var(--white);
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 4rem;
  align-items: center;
  position: relative;
  overflow: hidden;
}
.cc-cta-box::before {
  content: '';
  position: absolute;
  top: -80px; right: -80px;
  width: 300px; height: 300px;
  border-radius: 50%;
  background: var(--red-soft);
  opacity: 0.6;
}
.cc-cta-box > * { position: relative; z-index: 1; }
.cc-cta-box h2 { font-size: clamp(1.8rem, 3.5vw, 3rem); margin-bottom: 0.75rem; }
.cc-cta-box p  { font-size: 1rem; color: var(--ink3); line-height: 1.7; max-width: 500px; }
.cc-cta-btns { display: flex; flex-direction: column; gap: 0.75rem; }
.cc-cta-btns .cc-btn { justify-content: center; padding: 0.85rem 2rem; font-size: 0.9rem; white-space: nowrap; }

/* ─── FOOTER ──────────────────────────────────────── */
.cc-footer {
  border-top: 1px solid var(--border);
  padding: 2.5rem 0;
  background: var(--white);
}
.cc-footer-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1.5rem;
}
.cc-footer-logo img { height: 30px; width: auto; opacity: 0.85; }
.cc-footer-links { display: flex; gap: 2rem; }
.cc-footer-links a { font-size: 0.8rem; color: var(--ink4); transition: color 0.15s; }
.cc-footer-links a:hover { color: var(--ink); }
.cc-footer-copy { font-size: 0.78rem; color: var(--ink4); }

/* ─── RESPONSIVE ──────────────────────────────────── */
@media (max-width: 1024px) {
  .cc-hero-grid       { grid-template-columns: 1fr; }
  .cc-hero-panel      { display: none; }
  .cc-split-inner     { grid-template-columns: 1fr; }
  .cc-num-grid        { grid-template-columns: repeat(2, 1fr); }
  .cc-num-cell        { border-bottom: 1px solid var(--border); }
  .cc-testi-layout    { grid-template-columns: 1fr; }
  .cc-testi-vert      { writing-mode: horizontal-tb; transform: none; }
  .cc-services-head   { grid-template-columns: 1fr; gap: 1.5rem; }
  .cc-cta-box         { grid-template-columns: 1fr; padding: 2.5rem; }
  .cc-cta-box::before { display: none; }
  .cc-infra-head      { flex-direction: column; align-items: flex-start; }
}
@media (max-width: 720px) {
  .cc-svc-row         { grid-template-columns: 1fr; gap: 0.4rem; }
  .cc-svc-grid        { grid-template-columns: 1fr; }
  .cc-svc-num         { display: none; }
  .cc-infra-grid      { grid-template-columns: 1fr; }
  .cc-trust-logos     { gap: 1rem; }
  .cc-trust-logo      { font-size: 0.9rem; }
  .cc-testi-grid      { grid-template-columns: 1fr; }
  .cc-nav-menu        { display: none; }
  .cc-nav-tel         { display: none; }
  .cc-nav-phone       { display: none; }
  .cc-nav-toggle      { display: flex; }
  .cc-nav-right .cc-btn { display: none; }
  .cc-nav-logo img    { height: 36px; max-width: 160px; }
  .cc-num-grid        { grid-template-columns: 1fr 1fr; }
  .cc-cta-btns        { flex-direction: column; align-items: stretch; }
  .cc-cta-btns .cc-btn { text-align: center; }
  .cc-cta-box         { padding: 2rem 1.5rem; }
  .cc-cta-box h2      { font-size: 1.6rem; }
  .cc-hero            { padding-top: 6rem; padding-bottom: 3rem; }
  .cc-hero h1         { font-size: 1.9rem; }
  .cc-hero-sub        { font-size: 0.92rem; }
  .cc-hero-actions    { flex-direction: column; }
  .cc-hero-actions .cc-btn { text-align: center; width: 100%; }
  .cc-hero-stats      { grid-template-columns: repeat(2, 1fr); margin-top: 2rem; }
  .cc-hero-stats .cc-stat { padding: 0.9rem 0.8rem; }
  .cc-hero-stats .cc-stat:nth-child(2n) { border-right: none; }
  .cc-section         { padding: 3rem 0; }
  .cc-services-head h2 { font-size: 1.8rem; }
  .cc-infra-head      { gap: 1rem; }
  .cc-split-inner     { gap: 2rem; }
  .cc-chat-frame      { max-width: 100%; }
  .cc-feat-list       { gap: 1rem; }
}
@media (max-width: 480px) {
  .cc-hero h1         { font-size: 1.6rem; }
  .cc-num-grid        { grid-template-columns: 1fr; }
  .cc-num-cell        { border-right: none; border-bottom: 1px solid var(--border); text-align: center; }
  .cc-num-cell:last-child { border-bottom: none; }
  .cc-wrap             { padding-left: 1rem; padding-right: 1rem; }
}

/* ─── MOBILE MENU ─────────────────────────────────── */
.cc-mobile-menu {
  display: none;
  position: fixed;
  top: 64px; left: 0; right: 0;
  background: var(--white);
  border-bottom: 1px solid var(--border);
  padding: 1.5rem var(--pad);
  z-index: 199;
  flex-direction: column;
  gap: 1rem;
}
.cc-mobile-menu.open { display: flex; }
.cc-mobile-menu a {
  font-size: 1rem;
  font-weight: 600;
  color: var(--ink2);
  padding: 0.5rem 0;
  border-bottom: 1px solid var(--border);
}
.cc-mobile-menu a:last-child { border-bottom: none; }

/* ─── WORDPRESS SPECIFIC ──────────────────────────── */
.wp-block-image { margin: 0; }
.wp-caption { max-width: 100%; }
.aligncenter { margin-left: auto; margin-right: auto; display: block; }
.screen-reader-text { position: absolute; left: -9999px; }

/* Page content styles */
.cc-page-content {
  padding-top: clamp(7rem, 12vw, 10rem);
  padding-bottom: clamp(4rem, 8vw, 6rem);
  background: var(--white);
  min-height: 60vh;
}
.cc-page-content h1 { font-size: clamp(2rem, 5vw, 4rem); margin-bottom: 2rem; }
.cc-page-content p  { font-size: 1.05rem; line-height: 1.75; color: var(--ink2); margin-bottom: 1.5rem; }

/* ─── BLOG ────────────────────────────────────────── */
.cc-blog-hero {
  padding-top: clamp(7rem, 12vw, 10rem);
  padding-bottom: 3rem;
  background: var(--white);
  border-bottom: 1px solid var(--border);
}
.cc-blog-hero h1 { font-size: clamp(2.5rem, 5vw, 4rem); font-weight: 800; margin: 0.5rem 0; }
.cc-blog-hero p { font-size: 1.05rem; color: var(--ink3); }
.cc-blog { padding: 3rem 0 5rem; background: var(--bg); }
.cc-blog-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}
.cc-blog-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 12px;
  overflow: hidden;
  transition: border-color .2s, box-shadow .2s;
}
.cc-blog-card:hover {
  border-color: var(--red-border);
  box-shadow: 0 4px 20px rgba(232,52,46,.06);
}
.cc-blog-thumb { display: block; aspect-ratio: 16/10; overflow: hidden; background: var(--bg); }
.cc-blog-thumb img { width: 100%; height: 100%; object-fit: cover; transition: transform .3s; }
.cc-blog-card:hover .cc-blog-thumb img { transform: scale(1.03); }
.cc-blog-thumb-empty { display: flex; align-items: center; justify-content: center; }
.cc-blog-body { padding: 1.25rem 1.5rem 1.5rem; }
.cc-blog-meta { display: flex; align-items: center; gap: 8px; font-size: 0.78rem; color: var(--ink4); margin-bottom: 8px; }
.cc-blog-cat { background: var(--red-soft); color: var(--red); padding: 2px 8px; border-radius: 4px; font-weight: 600; font-size: 0.72rem; }
.cc-blog-title { font-size: 1.05rem; font-weight: 700; line-height: 1.4; margin-bottom: 8px; }
.cc-blog-title a { color: var(--ink); text-decoration: none; }
.cc-blog-title a:hover { color: var(--red); }
.cc-blog-excerpt { font-size: 0.85rem; color: var(--ink3); line-height: 1.6; margin-bottom: 12px; }
.cc-blog-more { font-size: 0.82rem; font-weight: 600; color: var(--red); text-decoration: none; }
.cc-blog-more:hover { text-decoration: underline; }
.cc-blog-empty { grid-column: 1/-1; text-align: center; padding: 4rem 0; color: var(--ink4); }
.cc-blog-nav { display: flex; justify-content: space-between; margin-top: 2rem; }
.cc-blog-nav a { font-size: 0.9rem; font-weight: 600; color: var(--red); text-decoration: none; }
.cc-blog-nav a:hover { text-decoration: underline; }
@media (max-width: 1024px) { .cc-blog-grid { grid-template-columns: repeat(2,1fr); } }
@media (max-width: 600px) { .cc-blog-grid { grid-template-columns: 1fr; } }

/* ─── SINGLE POST ─────────────────────────────────── */
.cc-single {
  padding-top: clamp(7rem, 12vw, 10rem);
  padding-bottom: 4rem;
  background: var(--white);
}
.cc-single .cc-wrap {
  max-width: 780px;
}
.cc-single-header {
  margin-bottom: 2rem;
}
.cc-single-cat {
  display: inline-block;
  background: var(--red-soft);
  color: var(--red);
  padding: 4px 12px;
  border-radius: 4px;
  font-size: 0.78rem;
  font-weight: 700;
  margin-bottom: 12px;
}
.cc-single h1 {
  font-size: clamp(1.6rem, 4vw, 2.5rem);
  font-weight: 800;
  line-height: 1.3;
  color: var(--ink);
  margin-bottom: 12px;
}
.cc-single-meta {
  display: flex;
  gap: 16px;
  font-size: 0.85rem;
  color: var(--ink4);
}
.cc-single-thumb {
  margin-bottom: 2rem;
  border-radius: 12px;
  overflow: hidden;
}
.cc-single-thumb img {
  width: 100%;
  height: auto;
  display: block;
}
.cc-single-content {
  font-size: 1.05rem;
  line-height: 1.85;
  color: var(--ink2);
}
.cc-single-content h2 {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--ink);
  margin: 2.5rem 0 1rem;
  padding-bottom: 0.5rem;
  border-bottom: 2px solid var(--red);
}
.cc-single-content h3 {
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--ink);
  margin: 2rem 0 0.75rem;
}
.cc-single-content p {
  margin-bottom: 1.2rem;
}
.cc-single-content ul, .cc-single-content ol {
  margin: 1rem 0 1.5rem 1.5rem;
}
.cc-single-content li {
  margin-bottom: 0.5rem;
  line-height: 1.7;
}
.cc-single-content strong {
  color: var(--ink);
}
.cc-single-content a {
  color: var(--red);
  font-weight: 600;
  text-decoration: none;
}
.cc-single-content a:hover {
  text-decoration: underline;
}
.cc-single-footer {
  display: flex;
  gap: 12px;
  margin-top: 3rem;
  padding-top: 2rem;
  border-top: 1px solid var(--border, #eee);
  flex-wrap: wrap;
}
@media (max-width: 600px) {
  .cc-single-footer { flex-direction: column; }
  .cc-single-footer .cc-btn { text-align: center; }
}

/* ───────────────────────────────────────────
   SINGLE POST — SEO/UX ENHANCEMENTS
   ─────────────────────────────────────────── */

/* Breadcrumb */
.cc-crumbs {
  font-size: 0.82rem;
  color: #888;
  margin: 1.8rem 0 1.4rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  flex-wrap: wrap;
}
.cc-crumbs a {
  color: #666;
  text-decoration: none;
  transition: color 0.2s;
}
.cc-crumbs a:hover { color: var(--red, #e50914); }
.cc-crumb-sep { color: #ccc; }
.cc-crumb-current {
  color: #111;
  font-weight: 600;
  max-width: 400px;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

/* Enhanced meta bar */
.cc-single-meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  margin-top: 1.2rem;
  padding-top: 1.2rem;
  border-top: 1px solid #f0f0f0;
  flex-wrap: wrap;
}
.cc-meta-author {
  display: flex;
  align-items: center;
  gap: 0.8rem;
}
.cc-meta-avatar {
  border-radius: 50%;
  width: 36px;
  height: 36px;
}
.cc-meta-author-name {
  font-size: 0.92rem;
  font-weight: 700;
  color: #111;
}
.cc-meta-author-title {
  font-size: 0.78rem;
  color: #888;
  margin-top: 0.1rem;
}
.cc-meta-dots {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  font-size: 0.85rem;
  color: #777;
  flex-wrap: wrap;
}
.cc-meta-sep { color: #ccc; }
.cc-meta-updated {
  color: var(--red, #e50914);
  font-weight: 600;
}
.cc-meta-read::before { content: "⏱ "; opacity: 0.6; }

/* Tags */
.cc-single-tags {
  margin: 2.5rem 0 1.5rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  flex-wrap: wrap;
}
.cc-tags-label {
  font-size: 0.78rem;
  font-weight: 700;
  color: #888;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-right: 0.4rem;
}
.cc-single-tags a {
  display: inline-block;
  font-size: 0.82rem;
  color: #555;
  background: #f5f5f5;
  padding: 0.4rem 0.85rem;
  border-radius: 20px;
  text-decoration: none;
  transition: all 0.2s;
}
.cc-single-tags a:hover {
  background: var(--red, #e50914);
  color: #fff;
}

/* Share buttons */
.cc-single-share {
  display: flex;
  align-items: center;
  gap: 0.9rem;
  padding: 1.4rem 1.6rem;
  background: #fafafa;
  border: 1px solid #f0f0f0;
  border-radius: 14px;
  margin: 2rem 0;
  flex-wrap: wrap;
}
.cc-share-label {
  font-size: 0.88rem;
  font-weight: 700;
  color: #333;
}
.cc-share-btns {
  display: flex;
  gap: 0.5rem;
}
.cc-share-btn {
  width: 40px;
  height: 40px;
  border-radius: 10px;
  background: #fff;
  border: 1px solid #e5e5e5;
  color: #555;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.2s;
  text-decoration: none;
  padding: 0;
}
.cc-share-btn:hover {
  background: var(--red, #e50914);
  border-color: var(--red, #e50914);
  color: #fff;
  transform: translateY(-2px);
}

/* Author box */
.cc-author-box {
  display: flex;
  gap: 1.4rem;
  padding: 1.8rem;
  background: linear-gradient(180deg, #fafafa 0%, #f5f5f5 100%);
  border: 1px solid #f0f0f0;
  border-radius: 16px;
  margin: 2.5rem 0;
}
.cc-author-avatar {
  border-radius: 50%;
  width: 72px;
  height: 72px;
  flex-shrink: 0;
}
.cc-author-body { flex: 1; min-width: 0; }
.cc-author-name {
  font-size: 1.05rem;
  font-weight: 800;
  color: #111;
}
.cc-author-role {
  font-size: 0.82rem;
  color: var(--red, #e50914);
  font-weight: 600;
  margin: 0.25rem 0 0.8rem;
}
.cc-author-bio {
  font-size: 0.92rem;
  line-height: 1.7;
  color: #555;
  margin: 0;
}

/* Related service CTA */
.cc-post-cta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  padding: 2rem 2.2rem;
  background: linear-gradient(135deg, #0a0a0a 0%, #1a1a1a 100%);
  border: 1px solid rgba(229, 9, 20, 0.3);
  border-radius: 16px;
  margin: 2.5rem 0;
  color: #fff;
  position: relative;
  overflow: hidden;
}
.cc-post-cta::before {
  content: "";
  position: absolute;
  top: 50%;
  right: -20%;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(229, 9, 20, 0.18) 0%, transparent 60%);
  transform: translateY(-50%);
  pointer-events: none;
}
.cc-post-cta > * { position: relative; z-index: 2; }
.cc-post-cta-tag {
  display: inline-block;
  font-size: 0.7rem;
  font-weight: 800;
  color: var(--red, #e50914);
  letter-spacing: 0.12em;
  text-transform: uppercase;
  margin-bottom: 0.5rem;
}
.cc-post-cta h3 {
  font-size: 1.3rem;
  font-weight: 800;
  color: #fff;
  margin: 0 0 0.5rem;
  letter-spacing: -0.01em;
}
.cc-post-cta p {
  font-size: 0.92rem;
  color: rgba(255, 255, 255, 0.7);
  margin: 0;
  line-height: 1.6;
}

/* Prev/Next post navigation */
.cc-post-nav {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
  margin: 2.5rem 0;
}
.cc-post-nav-item {
  display: block;
  padding: 1.2rem 1.4rem;
  background: #fff;
  border: 1px solid #f0f0f0;
  border-radius: 12px;
  text-decoration: none;
  transition: transform 0.25s, border-color 0.25s, box-shadow 0.25s;
}
.cc-post-nav-item:hover {
  transform: translateY(-2px);
  border-color: rgba(229, 9, 20, 0.3);
  box-shadow: 0 12px 28px -16px rgba(0, 0, 0, 0.12);
}
.cc-post-nav-next { text-align: right; }
.cc-post-nav-dir {
  display: block;
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--red, #e50914);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 0.4rem;
}
.cc-post-nav-title {
  display: block;
  font-size: 0.95rem;
  font-weight: 600;
  color: #111;
  line-height: 1.5;
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
}

/* Related posts grid */
.cc-related {
  margin: 3rem 0 1rem;
  padding-top: 2.5rem;
  border-top: 1px solid #f0f0f0;
}
.cc-related-title {
  font-size: 1.4rem;
  font-weight: 800;
  color: #111;
  margin: 0 0 1.6rem;
  letter-spacing: -0.01em;
}
.cc-related-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.2rem;
}
.cc-related-card {
  background: #fff;
  border: 1px solid #f0f0f0;
  border-radius: 14px;
  overflow: hidden;
  transition: transform 0.25s, box-shadow 0.25s;
}
.cc-related-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 14px 30px -18px rgba(0, 0, 0, 0.12);
}
.cc-related-thumb {
  display: block;
  aspect-ratio: 16 / 9;
  background: #f5f5f5;
  overflow: hidden;
}
.cc-related-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s;
}
.cc-related-card:hover .cc-related-thumb img {
  transform: scale(1.05);
}
.cc-related-body {
  padding: 1.2rem 1.4rem 1.4rem;
}
.cc-related-date {
  font-size: 0.75rem;
  color: #999;
  letter-spacing: 0.02em;
}
.cc-related-post-title {
  font-size: 1.02rem;
  font-weight: 700;
  margin: 0.5rem 0 0.6rem;
  line-height: 1.4;
  letter-spacing: -0.01em;
}
.cc-related-post-title a {
  color: #111;
  text-decoration: none;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.cc-related-post-title a:hover { color: var(--red, #e50914); }
.cc-related-excerpt {
  font-size: 0.85rem;
  color: #777;
  line-height: 1.55;
  margin: 0;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

/* Auto-link style (internal linking automation) */
.cc-single-content a.cc-auto-link {
  border-bottom: 1px dotted rgba(229, 9, 20, 0.4);
  font-weight: 600;
}

/* Responsive — single post */
@media (max-width: 900px) {
  .cc-related-grid { grid-template-columns: repeat(2, 1fr); }
  .cc-post-cta { flex-direction: column; align-items: flex-start; text-align: left; padding: 1.6rem 1.8rem; }
}
@media (max-width: 600px) {
  .cc-single-meta { flex-direction: column; align-items: flex-start; gap: 1rem; }
  .cc-post-nav { grid-template-columns: 1fr; }
  .cc-post-nav-next { text-align: left; }
  .cc-related-grid { grid-template-columns: 1fr; }
  .cc-author-box { flex-direction: column; text-align: center; padding: 1.5rem; }
  .cc-author-avatar { margin: 0 auto; }
  .cc-single-share { padding: 1.1rem 1.3rem; }
  .cc-crumb-current { max-width: 200px; }
}

/* ═══════════════════════════════════════════════════════
   NETWORK POP MAP
   ═══════════════════════════════════════════════════════ */
.cc-pop { background: #0a0b0e; color: #fff; padding: 5rem 0; }
.cc-pop-head {
  display: flex;
  justify-content: space-between;
  align-items: start;
  gap: 2rem;
  margin-bottom: 3rem;
}
.cc-pop-head .cc-tag { color: var(--red); border-color: rgba(200,40,30,.3); }
.cc-pop-head h2 { font-size: 2.4rem; line-height: 1.15; margin: 0.75rem 0 0; color: #fff; }
.cc-pop-head p { font-size: 0.95rem; line-height: 1.8; color: rgba(255,255,255,.5); max-width: 420px; text-align: right; }

/* Map */
.cc-pop-map-wrap { margin-bottom: 3rem; }
.cc-pop-map {
  position: relative;
  background: rgba(255,255,255,.03);
  border: 1px solid rgba(255,255,255,.06);
  border-radius: 16px;
  padding: 2rem;
  overflow: hidden;
}
.cc-map-svg { width: 100%; height: auto; display: block; }
.cc-map-land {
  fill: rgba(255,255,255,.04);
  stroke: rgba(255,255,255,.08);
  stroke-width: 1;
}

/* Dot animation */
.cc-dot-core { fill: var(--red); }
.cc-dot-pulse {
  fill: var(--red);
  opacity: 0;
  animation: cc-pulse 2.5s ease-out infinite;
}
.cc-pop-dot:nth-child(2n) .cc-dot-pulse { animation-delay: .4s; }
.cc-pop-dot:nth-child(3n) .cc-dot-pulse { animation-delay: .8s; }
.cc-pop-dot:nth-child(5n) .cc-dot-pulse { animation-delay: 1.2s; }
.cc-pop-dot:nth-child(7n) .cc-dot-pulse { animation-delay: 1.6s; }
@keyframes cc-pulse {
  0%   { opacity: .5; r: 4; }
  100% { opacity: 0;  r: 18; }
}
.cc-pop-dot { cursor: pointer; }
.cc-pop-dot:hover .cc-dot-core { fill: #fff; r: 5; }
.cc-pop-ca .cc-dot-core { fill: #ff7b72; }

/* Tooltip */
.cc-pop-tooltip {
  position: absolute;
  padding: 5px 12px;
  background: #fff;
  color: var(--ink);
  font-size: 0.75rem;
  font-weight: 700;
  border-radius: 6px;
  white-space: nowrap;
  pointer-events: none;
  opacity: 0;
  transform: translateX(-50%) translateY(4px);
  transition: opacity .15s, transform .15s;
  z-index: 10;
  box-shadow: 0 4px 12px rgba(0,0,0,.3);
}
.cc-pop-tooltip.show { opacity: 1; transform: translateX(-50%) translateY(0); }

/* City list */
.cc-pop-cities {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}
.cc-pop-region {
  background: rgba(255,255,255,.04);
  border: 1px solid rgba(255,255,255,.08);
  border-radius: 12px;
  padding: 1.5rem;
}
.cc-pop-region-title {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.85rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 1rem;
  padding-bottom: 0.75rem;
  border-bottom: 1px solid rgba(255,255,255,.08);
}
.cc-pop-region-title svg { color: var(--red); flex-shrink: 0; }
.cc-pop-region-title span {
  margin-left: auto;
  font-size: 0.7rem;
  font-weight: 600;
  color: var(--red);
  background: rgba(200,40,30,.15);
  padding: 2px 8px;
  border-radius: 100px;
}
.cc-pop-city-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
}
.cc-pop-city-tags span {
  padding: 4px 10px;
  background: rgba(255,255,255,.06);
  border-radius: 6px;
  font-size: 0.75rem;
  font-weight: 500;
  color: rgba(255,255,255,.6);
  white-space: nowrap;
}

@media (max-width: 720px) {
  .cc-pop { padding: 3rem 0; }
  .cc-pop-head { flex-direction: column; gap: 1rem; }
  .cc-pop-head h2 { font-size: 1.8rem; }
  .cc-pop-head p { text-align: left; max-width: none; }
  .cc-pop-map { padding: 1rem; }
  .cc-pop-cities { grid-template-columns: 1fr; gap: 1rem; }
}

/* ═══════════════════════════════════════════════════════
   NETWORK PAGE
   ═══════════════════════════════════════════════════════ */
.cc-net-hero {
  padding: 10rem 0 3rem;
  background: #0a0b0e;
  text-align: center;
  color: #fff;
}
.cc-net-hero h1 {
  font-size: 3.5rem;
  letter-spacing: -0.04em;
  margin: 0 0 1rem;
}
.cc-net-hero-sub {
  font-size: 1.05rem;
  line-height: 1.8;
  color: rgba(255,255,255,.5);
  max-width: 560px;
  margin: 0 auto;
}

/* Map section */
.cc-net-map-section {
  background: #0a0b0e;
  padding: 0 0 2rem;
}
.cc-net-map-container {
  background: rgba(255,255,255,.02);
  border: 1px solid rgba(255,255,255,.06);
  border-radius: 20px;
  padding: 2.5rem;
  position: relative;
}
.cc-net-svg { width: 100%; height: auto; display: block; }

/* Connection lines animate */
.cc-net-line {
  stroke-dasharray: 200;
  stroke-dashoffset: 200;
  animation: cc-draw-line 2s ease forwards;
}
.cc-net-line:nth-child(2n) { animation-delay: .2s; }
.cc-net-line:nth-child(3n) { animation-delay: .4s; }
.cc-net-line:nth-child(5n) { animation-delay: .6s; }
@keyframes cc-draw-line {
  to { stroke-dashoffset: 0; }
}

/* Nodes */
.cc-net-core { fill: var(--red); }
.cc-net-hub { fill: #fff; stroke: var(--red); stroke-width: 2; }
.cc-net-ca { fill: #ff9f8f; }
.cc-net-pulse {
  fill: var(--red);
  opacity: 0;
  animation: cc-pulse 2.5s ease-out infinite;
}
.cc-net-node:nth-child(2n) .cc-net-pulse { animation-delay: .3s; }
.cc-net-node:nth-child(3n) .cc-net-pulse { animation-delay: .7s; }
.cc-net-node:nth-child(5n) .cc-net-pulse { animation-delay: 1.1s; }

/* Labels */
.cc-net-label {
  font-size: 9px;
  font-weight: 700;
  fill: rgba(255,255,255,.6);
  text-anchor: middle;
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
}
.cc-net-node:hover .cc-net-label { fill: #fff; }
.cc-net-node:hover .cc-net-core { fill: #fff; }

/* Legend */
.cc-net-legend {
  display: flex;
  gap: 1.5rem;
  justify-content: center;
  margin-top: 1.5rem;
  padding-top: 1.5rem;
  border-top: 1px solid rgba(255,255,255,.06);
}
.cc-net-legend-item {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 0.72rem;
  font-weight: 600;
  color: rgba(255,255,255,.4);
}
.cc-net-lg-hub, .cc-net-lg-pop, .cc-net-lg-ca, .cc-net-lg-line {
  display: inline-block;
  width: 10px;
  height: 10px;
  border-radius: 50%;
}
.cc-net-lg-hub { background: #fff; border: 2px solid var(--red); width: 8px; height: 8px; }
.cc-net-lg-pop { background: var(--red); }
.cc-net-lg-ca { background: #ff9f8f; }
.cc-net-lg-line { width: 20px; height: 1px; border-radius: 0; background: var(--red); opacity: .5; }

/* Stats bar */
.cc-net-stats {
  background: #0a0b0e;
  padding: 0 0 3rem;
}
.cc-net-stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.06);
  border-radius: 14px;
  overflow: hidden;
}
.cc-net-stat {
  background: rgba(255,255,255,.03);
  padding: 2rem;
  text-align: center;
}
.cc-net-stat-num {
  font-size: 2.2rem;
  font-weight: 900;
  color: #fff;
  letter-spacing: -0.03em;
  line-height: 1;
  margin-bottom: 6px;
}
.cc-net-stat-num small { font-size: .55em; font-weight: 700; opacity: .5; }
.cc-net-stat-label {
  font-size: 0.75rem;
  font-weight: 500;
  color: rgba(255,255,255,.4);
}

/* Region cards */
.cc-net-regions { background: var(--bg); }
.cc-net-region-card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 2rem;
  margin-bottom: 1.5rem;
}
.cc-net-region-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 1.5rem;
  padding-bottom: 1rem;
  border-bottom: 1px solid var(--border);
}
.cc-net-region-head h2 { font-size: 1.4rem; margin: 0; }
.cc-net-region-count {
  font-size: 0.72rem;
  font-weight: 700;
  color: var(--red);
  background: var(--red-soft);
  padding: 4px 12px;
  border-radius: 100px;
}
.cc-net-region-cities {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  gap: 1rem;
}
.cc-net-city {
  padding: 0.75rem 0;
  border-bottom: 1px solid var(--border);
}
.cc-net-city:last-child { border-bottom: none; }
.cc-net-city-name {
  font-size: 0.92rem;
  font-weight: 700;
  color: var(--ink);
}
.cc-net-city-role {
  font-size: 0.78rem;
  color: var(--ink4);
  margin-top: 2px;
}
.cc-net-region-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
}
.cc-net-region-sm .cc-net-region-cities { grid-template-columns: 1fr; }

@media (max-width: 720px) {
  .cc-net-hero { padding: 7rem 0 2rem; }
  .cc-net-hero h1 { font-size: 2.2rem; }
  .cc-net-map-container { padding: 1rem; }
  .cc-net-label { font-size: 7px; }
  .cc-net-legend { flex-wrap: wrap; gap: .75rem; }
  .cc-net-stats-grid { grid-template-columns: 1fr 1fr; }
  .cc-net-region-row { grid-template-columns: 1fr; }
  .cc-net-region-cities { grid-template-columns: 1fr; }
}

/* ═══════════════════════════════════════════════════════
   ABOUT US PAGE
   ═══════════════════════════════════════════════════════ */

/* ─── About Hero ─── */
.cc-abt-hero {
  padding: 10rem 0 0;
  background: #0a0b0e;
  color: #fff;
  text-align: center;
  overflow: hidden;
}
.cc-abt-hero-inner { max-width: 800px; margin: 0 auto; }
.cc-abt-fcc-badge {
  display: inline-block;
  padding: 6px 18px;
  border: 1px solid rgba(200,40,30,.4);
  border-radius: 100px;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--red);
  margin-bottom: 2rem;
}
.cc-abt-hero h1 {
  font-size: 3.8rem;
  line-height: 1.1;
  letter-spacing: -0.04em;
  margin: 0 0 1.5rem;
  color: rgba(255,255,255,.15);
}
.cc-abt-hero h1 span { color: #fff; }
.cc-abt-hero-sub {
  font-size: 1.05rem;
  line-height: 1.9;
  color: rgba(255,255,255,.6);
  max-width: 600px;
  margin: 0 auto;
}
.cc-abt-hero-sub br.hide-m {}

/* Hero numbers bar */
.cc-abt-hero-nums {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
  margin-top: 4rem;
  padding: 2.5rem 0;
  border-top: 1px solid rgba(255,255,255,.08);
  background: rgba(255,255,255,.02);
}
.cc-abt-hn {
  flex: 1;
  text-align: center;
  padding: 0 1.5rem;
}
.cc-abt-hn-val {
  font-size: 2.2rem;
  font-weight: 900;
  color: #fff;
  letter-spacing: -0.03em;
  line-height: 1;
  margin-bottom: 6px;
}
.cc-abt-hn-val small { font-size: 0.55em; font-weight: 700; opacity: .5; }
.cc-abt-hn-label {
  font-size: 0.75rem;
  font-weight: 500;
  color: rgba(255,255,255,.4);
  letter-spacing: 0.02em;
}
.cc-abt-hn-divider {
  width: 1px;
  height: 40px;
  background: rgba(255,255,255,.1);
  flex-shrink: 0;
}

/* ─── Capability Stack ─── */
.cc-abt-stack {
  padding: 5rem 0;
  background: #fff;
  border-bottom: 1px solid var(--border);
}
.cc-abt-stack-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--border);
  border: 1px solid var(--border);
  border-radius: 16px;
  overflow: hidden;
}
.cc-abt-stack-card {
  background: #fff;
  padding: 2rem;
  transition: background .2s;
}
.cc-abt-stack-card:hover { background: var(--bg); }
.cc-abt-stack-icon {
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--red-soft);
  border-radius: 12px;
  margin-bottom: 1rem;
  color: var(--red);
}
.cc-abt-stack-name {
  font-size: 0.9rem;
  font-weight: 800;
  color: var(--ink);
  margin-bottom: 0.4rem;
  letter-spacing: -0.01em;
}
.cc-abt-stack-desc {
  font-size: 0.82rem;
  line-height: 1.7;
  color: var(--ink3);
}

/* ─── Mission ─── */
.cc-abt-overline {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--red);
  margin-bottom: 1rem;
}
.cc-abt-mission {
  padding: 6rem 0;
  background: #fff;
}
.cc-abt-mission-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: start;
}
.cc-abt-mission h2 {
  font-size: 2.4rem;
  line-height: 1.2;
  letter-spacing: -0.03em;
  margin: 0;
  position: sticky;
  top: 6rem;
}
.cc-abt-mission-text p {
  font-size: 1rem;
  line-height: 1.9;
  color: var(--ink3);
  margin: 0 0 1.2rem;
}
.cc-abt-mission-text p strong { color: var(--ink); }

/* ─── Journey Timeline ─── */
.cc-abt-journey { background: var(--bg); }
.cc-abt-section-title {
  text-align: center;
  font-size: 2.4rem;
  line-height: 1.2;
  letter-spacing: -0.03em;
  margin: 0.5rem 0 4rem;
}
.cc-abt-tl { max-width: 860px; margin: 0 auto; }

.cc-abt-tl-row {
  display: grid;
  grid-template-columns: 100px 40px 1fr;
  gap: 0;
  min-height: 140px;
}
.cc-abt-tl-year-col {
  display: flex;
  justify-content: flex-end;
  padding-right: 0;
  padding-top: 2px;
}
.cc-abt-tl-year {
  font-size: 0.85rem;
  font-weight: 800;
  color: var(--ink4);
  white-space: nowrap;
}
.cc-abt-tl-now .cc-abt-tl-year { color: var(--red); }

.cc-abt-tl-line {
  display: flex;
  flex-direction: column;
  align-items: center;
  position: relative;
}
.cc-abt-tl-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--border);
  border: 2px solid #fff;
  flex-shrink: 0;
  margin-top: 5px;
  z-index: 1;
  position: relative;
}
.cc-abt-tl-now .cc-abt-tl-dot { background: var(--red); border-color: var(--red-soft); width: 12px; height: 12px; }
.cc-abt-tl-line::after {
  content: '';
  flex: 1;
  width: 1px;
  background: var(--border);
  margin-top: 6px;
}
.cc-abt-tl-row:last-child .cc-abt-tl-line::after { display: none; }

.cc-abt-tl-body {
  padding: 0 0 3rem 1.2rem;
}
.cc-abt-tl-phase {
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--red);
  margin-bottom: 0.4rem;
}
.cc-abt-tl-body h3 {
  font-size: 1.25rem;
  font-weight: 800;
  color: var(--ink);
  margin: 0 0 0.6rem;
  line-height: 1.35;
}
.cc-abt-tl-body p {
  font-size: 0.92rem;
  line-height: 1.85;
  color: var(--ink3);
  margin: 0;
}

/* ─── Differentiators ─── */
.cc-abt-diff {
  padding: 6rem 0;
  background: #0a0b0e;
}
.cc-abt-diff-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
  margin-top: 3rem;
}
.cc-abt-diff-card {
  padding: 2rem 1.5rem;
  border: 1px solid rgba(255,255,255,.08);
  border-radius: 14px;
  transition: border-color .2s;
}
.cc-abt-diff-card:hover { border-color: rgba(200,40,30,.4); }
.cc-abt-diff-num {
  font-size: 0.75rem;
  font-weight: 800;
  color: var(--red);
  letter-spacing: 0.05em;
  margin-bottom: 1rem;
}
.cc-abt-diff-card h3 {
  font-size: 1rem;
  font-weight: 800;
  color: #fff;
  margin-bottom: 0.6rem;
  line-height: 1.35;
}
.cc-abt-diff-card p {
  font-size: 0.85rem;
  line-height: 1.75;
  color: rgba(255,255,255,.5);
  margin: 0;
}

/* ─── Quote ─── */
.cc-abt-quote {
  padding: 5rem 0;
  background: var(--bg);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.cc-abt-quote blockquote {
  max-width: 680px;
  margin: 0 auto;
  text-align: center;
  padding: 0;
  border: none;
}
.cc-abt-quote blockquote p {
  font-size: 1.3rem;
  font-weight: 600;
  line-height: 1.9;
  color: var(--ink);
  margin: 0;
  font-style: italic;
}

/* ─── About Page Responsive ─── */
@media (max-width: 720px) {
  .cc-abt-hero { padding: 7rem 0 0; }
  .cc-abt-hero h1 { font-size: 2.2rem; }
  .cc-abt-hero-sub { font-size: 0.92rem; }
  .cc-abt-hero-sub br.hide-m { display: none; }
  .cc-abt-hero-nums { flex-wrap: wrap; gap: 1rem; padding: 1.5rem 0; }
  .cc-abt-hn { flex: 1 1 40%; min-width: 120px; padding: 0.5rem; }
  .cc-abt-hn-divider { display: none; }
  .cc-abt-hn-val { font-size: 1.6rem; }
  .cc-abt-stack { padding: 2.5rem 0; }
  .cc-abt-stack-grid { grid-template-columns: 1fr 1fr; }
  .cc-abt-stack-card { padding: 1.2rem; }
  .cc-abt-mission { padding: 3rem 0; }
  .cc-abt-mission-grid { grid-template-columns: 1fr; gap: 2rem; }
  .cc-abt-mission h2 { font-size: 1.8rem; position: static; }
  .cc-abt-section-title { font-size: 1.8rem; margin-bottom: 2.5rem; }
  .cc-abt-tl-row { grid-template-columns: 60px 30px 1fr; }
  .cc-abt-tl-body h3 { font-size: 1.1rem; }
  .cc-abt-diff { padding: 3rem 0; }
  .cc-abt-diff-grid { grid-template-columns: 1fr; gap: 1rem; }
  .cc-abt-quote blockquote p { font-size: 1rem; }
}

/* ═══════════════════════════════════════════════════════
   AI PAGE  (page-ai.php)
   ═══════════════════════════════════════════════════════ */

/* ─── AI Hero ─── */
.cc-ai-hero {
  position: relative;
  padding: 7rem 0 5.5rem;
  background: linear-gradient(180deg, #0a0a0a 0%, #1a1a1a 100%);
  color: #fff;
  overflow: hidden;
}
.cc-ai-hero::before {
  content: "";
  position: absolute;
  top: -50%;
  right: -10%;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(229, 9, 20, 0.18) 0%, transparent 60%);
  pointer-events: none;
}
.cc-ai-hero::after {
  content: "";
  position: absolute;
  bottom: -40%;
  left: -10%;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(229, 9, 20, 0.08) 0%, transparent 60%);
  pointer-events: none;
}
.cc-ai-hero-inner {
  position: relative;
  z-index: 2;
  max-width: 900px;
}
.cc-ai-hero-tag { margin-bottom: 1.6rem; }
.cc-ai-hero h1 {
  font-size: clamp(2.2rem, 5vw, 3.6rem);
  line-height: 1.15;
  font-weight: 800;
  margin: 0 0 1.4rem;
  letter-spacing: -0.02em;
}
.cc-ai-hero h1 span {
  background: linear-gradient(135deg, var(--red, #e50914) 0%, #ff6b6b 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.cc-ai-hero-sub {
  font-size: 1.1rem;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.75);
  margin: 0 0 2rem;
  max-width: 720px;
}
.cc-ai-hero-actions {
  display: flex;
  gap: 0.9rem;
  flex-wrap: wrap;
  margin-bottom: 3rem;
}

/* Hero stat boxes — solid red, side by side */
.cc-ai-hero-stats {
  display: flex;
  gap: 1rem;
  margin-top: 2.8rem;
  padding-top: 2.8rem;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  flex-wrap: nowrap;
}
.cc-ai-stat {
  flex: 1 1 0;
  min-width: 0;
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1.4rem 1.5rem;
  background: linear-gradient(135deg, #e50914 0%, #b8070f 100%);
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 14px;
  box-shadow:
    0 16px 40px -16px rgba(229, 9, 20, 0.55),
    inset 0 1px 0 rgba(255, 255, 255, 0.15);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}
.cc-ai-stat:hover {
  transform: translateY(-4px);
  box-shadow:
    0 24px 48px -16px rgba(229, 9, 20, 0.75),
    inset 0 1px 0 rgba(255, 255, 255, 0.2);
}
.cc-ai-stat-icon {
  width: 46px;
  height: 46px;
  flex-shrink: 0;
  border-radius: 11px;
  background: rgba(255, 255, 255, 0.18);
  border: 1px solid rgba(255, 255, 255, 0.28);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}
.cc-ai-stat-body {
  min-width: 0;
}
.cc-ai-stat-val {
  font-size: 1.7rem;
  font-weight: 800;
  line-height: 1;
  color: #fff;
  letter-spacing: -0.02em;
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.15);
}
.cc-ai-stat-val small {
  font-size: 0.9rem;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.82);
  margin-left: 0.15rem;
}
.cc-ai-stat-label {
  font-size: 0.82rem;
  color: rgba(255, 255, 255, 0.9);
  margin-top: 0.4rem;
  letter-spacing: 0.02em;
  font-weight: 500;
  white-space: nowrap;
}

/* ─── Section head (shared) ─── */
.cc-ai-section-head {
  text-align: center;
  max-width: 680px;
  margin: 0 auto 4.5rem;
}
.cc-ai-section-head .cc-tag { margin-bottom: 1.2rem; }
.cc-ai-section-head h2 {
  font-size: clamp(1.9rem, 3.5vw, 2.6rem);
  line-height: 1.25;
  font-weight: 800;
  margin: 0 0 1.2rem;
  letter-spacing: -0.02em;
}
.cc-ai-section-head p {
  font-size: 1.05rem;
  line-height: 1.7;
  color: #666;
  margin: 0;
}

/* ─── Journey steps (01–04) ─── */
.cc-ai-journey { padding: 7rem 0; background: #fafafa; }
.cc-ai-steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.6rem;
  max-width: 1200px;
  margin: 0 auto;
}
.cc-ai-step {
  background: #fff;
  border: 1px solid #f0f0f0;
  border-radius: 16px;
  padding: 2.2rem 1.8rem;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}
.cc-ai-step:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 30px -18px rgba(0, 0, 0, 0.12);
}
.cc-ai-step-num {
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--red, #e50914);
  letter-spacing: 0.12em;
  margin-bottom: 1rem;
}
.cc-ai-step-icon {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  background: linear-gradient(135deg, #fff5f5 0%, #ffe8e8 100%);
  color: var(--red, #e50914);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.2rem;
}
.cc-ai-step h3 {
  font-size: 1.08rem;
  font-weight: 700;
  margin: 0 0 0.7rem;
  color: #111;
  letter-spacing: -0.01em;
}
.cc-ai-step p {
  font-size: 0.9rem;
  line-height: 1.65;
  color: #666;
  margin: 0;
}

/* ─── Capabilities grid ─── */
.cc-ai-caps { padding: 7rem 0; }
.cc-ai-caps-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.6rem;
  max-width: 1080px;
  margin: 0 auto;
}
.cc-ai-cap-card {
  padding: 2.2rem 2rem;
  border: 1px solid #f0f0f0;
  border-radius: 16px;
  background: #fff;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}
.cc-ai-cap-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 30px -18px rgba(0, 0, 0, 0.1);
}
.cc-ai-cap-icon {
  width: 46px;
  height: 46px;
  border-radius: 10px;
  background: #111;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.1rem;
}
.cc-ai-cap-card h3 {
  font-size: 1.05rem;
  font-weight: 700;
  margin: 0 0 0.5rem;
  color: #111;
}
.cc-ai-cap-card p {
  font-size: 0.9rem;
  line-height: 1.65;
  color: #666;
  margin: 0;
}

/* ─── Channels ─── */
.cc-ai-channels { padding: 5rem 0; background: #0a0a0a; color: #fff; }
.cc-ai-channels .cc-ai-section-head h2 { color: #fff; }
.cc-ai-channels .cc-ai-section-head p { color: rgba(255, 255, 255, 0.65); }
.cc-ai-ch-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 1.2rem;
}
.cc-ai-ch-card {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 14px;
  padding: 2rem 1.6rem;
  text-align: center;
  transition: background 0.25s ease, border-color 0.25s ease, transform 0.25s ease;
}
.cc-ai-ch-card:hover {
  background: rgba(255, 255, 255, 0.06);
  border-color: rgba(229, 9, 20, 0.4);
  transform: translateY(-4px);
}
.cc-ai-ch-icon {
  width: 64px;
  height: 64px;
  border-radius: 14px;
  background: linear-gradient(135deg, var(--red, #e50914) 0%, #ff4757 100%);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.2rem;
}
.cc-ai-ch-name {
  font-size: 1.15rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
  letter-spacing: -0.01em;
}
.cc-ai-ch-desc {
  font-size: 0.9rem;
  line-height: 1.65;
  color: rgba(255, 255, 255, 0.65);
}

/* ─── Use cases ─── */
.cc-ai-usecases { padding: 7rem 0; background: #fafafa; }
.cc-ai-uc-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.4rem;
  max-width: 1080px;
  margin: 0 auto;
}
.cc-ai-uc-card {
  background: #fff;
  border: 1px solid #f0f0f0;
  border-radius: 16px;
  padding: 2rem 1.8rem;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}
.cc-ai-uc-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 30px -18px rgba(0, 0, 0, 0.1);
}
.cc-ai-uc-emoji { font-size: 2rem; margin-bottom: 0.8rem; }
.cc-ai-uc-card h3 {
  font-size: 1.05rem;
  font-weight: 700;
  margin: 0 0 0.5rem;
  color: #111;
}
.cc-ai-uc-card p {
  font-size: 0.88rem;
  line-height: 1.6;
  color: #666;
  margin: 0;
}

/* ─── Why CallCube AI ─── */
.cc-ai-why { padding: 7rem 0; }
.cc-ai-why-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.8rem;
  max-width: 1080px;
  margin: 0 auto;
}
.cc-ai-why-card {
  padding: 2.4rem 2rem;
  background: #fff;
  border: 1px solid #f0f0f0;
  border-radius: 16px;
  position: relative;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}
.cc-ai-why-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 30px -18px rgba(0, 0, 0, 0.1);
}
.cc-ai-why-num {
  font-size: 0.75rem;
  font-weight: 800;
  color: var(--red, #e50914);
  letter-spacing: 0.12em;
  margin-bottom: 0.9rem;
}
.cc-ai-why-card h3 {
  font-size: 1.2rem;
  font-weight: 700;
  margin: 0 0 0.7rem;
  color: #111;
  letter-spacing: -0.01em;
}
.cc-ai-why-card p {
  font-size: 0.95rem;
  line-height: 1.7;
  color: #555;
  margin: 0;
}

/* ─── Unified Solution (Voice + SMS + Chat) ─── */
.cc-ai-unified { padding: 7rem 0; }
.cc-ai-unified-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.6rem;
  max-width: 1080px;
  margin: 0 auto 3rem;
}
.cc-ai-unified-box {
  padding: 2.4rem 2rem 2rem;
  background: #fff;
  border: 1px solid #f0f0f0;
  border-radius: 18px;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
  position: relative;
}
.cc-ai-unified-box:hover {
  transform: translateY(-4px);
  box-shadow: 0 20px 40px -20px rgba(0, 0, 0, 0.12);
}
.cc-ai-unified-icon {
  width: 58px;
  height: 58px;
  border-radius: 14px;
  background: linear-gradient(135deg, #e50914 0%, #b8070f 100%);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.3rem;
  box-shadow: 0 12px 26px -10px rgba(229, 9, 20, 0.5);
}
.cc-ai-unified-tag {
  display: inline-block;
  font-size: 0.7rem;
  font-weight: 700;
  color: var(--red, #e50914);
  background: rgba(229, 9, 20, 0.08);
  padding: 0.32rem 0.8rem;
  border-radius: 20px;
  letter-spacing: 0.08em;
  margin-bottom: 0.9rem;
  text-transform: uppercase;
}
.cc-ai-unified-box h3 {
  font-size: 1.2rem;
  font-weight: 700;
  margin: 0 0 0.7rem;
  color: #111;
  letter-spacing: -0.01em;
}
.cc-ai-unified-box p {
  font-size: 0.92rem;
  line-height: 1.65;
  color: #666;
  margin: 0;
}

/* Core — "one brain" badge */
.cc-ai-unified-core {
  max-width: 720px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 1.3rem;
  padding: 1.6rem 2rem;
  background: linear-gradient(135deg, #0a0a0a 0%, #1a1a1a 100%);
  border: 1px solid rgba(229, 9, 20, 0.3);
  border-radius: 16px;
  box-shadow: 0 20px 40px -20px rgba(229, 9, 20, 0.25);
  position: relative;
}
.cc-ai-unified-core::before {
  content: "";
  position: absolute;
  top: -30px;
  left: 50%;
  transform: translateX(-50%);
  width: 2px;
  height: 30px;
  background: linear-gradient(180deg, transparent 0%, var(--red, #e50914) 100%);
}
.cc-ai-unified-core-icon {
  width: 54px;
  height: 54px;
  flex-shrink: 0;
  border-radius: 13px;
  background: linear-gradient(135deg, var(--red, #e50914) 0%, #ff4757 100%);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 12px 26px -10px rgba(229, 9, 20, 0.6);
}
.cc-ai-unified-core-text strong {
  display: block;
  color: #fff;
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: 0.3rem;
  letter-spacing: -0.01em;
}
.cc-ai-unified-core-text span {
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.85rem;
  line-height: 1.5;
}

/* ─── AI page responsive ─── */
@media (max-width: 1024px) {
  .cc-ai-steps,
  .cc-ai-caps-grid,
  .cc-ai-unified-grid,
  .cc-ai-uc-grid,
  .cc-ai-why-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 768px) {
  .cc-ai-hero { padding: 4.5rem 0 3.5rem; }
  .cc-ai-hero h1 { font-size: 1.95rem; }
  .cc-ai-hero-sub { font-size: 0.98rem; }
  .cc-ai-hero-stats {
    flex-direction: column;
    gap: 0.8rem;
    margin-top: 2rem;
    padding-top: 2rem;
  }
  .cc-ai-stat { padding: 1.1rem 1.3rem; }
  .cc-ai-stat-icon { width: 42px; height: 42px; }
  .cc-ai-stat-val { font-size: 1.55rem; }
  .cc-ai-stat-label { font-size: 0.78rem; }
  .cc-ai-section-head { margin-bottom: 3rem; }
  .cc-ai-section-head h2 { font-size: 1.7rem; }
  .cc-ai-section-head p { font-size: 0.96rem; }
  .cc-ai-journey,
  .cc-ai-caps,
  .cc-ai-unified,
  .cc-ai-usecases,
  .cc-ai-why { padding: 4.5rem 0; }
  .cc-ai-steps,
  .cc-ai-caps-grid,
  .cc-ai-unified-grid,
  .cc-ai-uc-grid,
  .cc-ai-why-grid { grid-template-columns: 1fr; gap: 1.2rem; }
  .cc-ai-step,
  .cc-ai-cap-card,
  .cc-ai-unified-box,
  .cc-ai-uc-card,
  .cc-ai-why-card { padding: 1.8rem 1.6rem; }
  .cc-ai-unified-grid { margin-bottom: 2.2rem; }
  .cc-ai-unified-core {
    flex-direction: column;
    text-align: center;
    padding: 1.4rem 1.6rem;
  }
  .cc-ai-unified-core::before { height: 25px; top: -25px; }
  .cc-ai-unified-core-text strong { font-size: 1rem; }
  .cc-ai-unified-core-text span { font-size: 0.8rem; }
}

/* ═══════════════════════════════════════════════════════
   IT INFRASTRUCTURE PAGE  (page-it-infrastructure.php)
   ═══════════════════════════════════════════════════════ */

/* ─── IT Hero ─── */
.cc-it-hero {
  position: relative;
  padding: 7rem 0 5.5rem;
  background: linear-gradient(180deg, #0a0a0a 0%, #1a1a1a 100%);
  color: #fff;
  overflow: hidden;
}
.cc-it-hero::before {
  content: "";
  position: absolute;
  top: -40%;
  right: -10%;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(229, 9, 20, 0.16) 0%, transparent 60%);
  pointer-events: none;
}
.cc-it-hero::after {
  content: "";
  position: absolute;
  bottom: -40%;
  left: -10%;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(229, 9, 20, 0.08) 0%, transparent 60%);
  pointer-events: none;
}
.cc-it-hero-inner {
  position: relative;
  z-index: 2;
  max-width: 900px;
}
.cc-it-hero-tag { margin-bottom: 1.6rem; }
.cc-it-hero h1 {
  font-size: clamp(2.2rem, 5vw, 3.6rem);
  line-height: 1.15;
  font-weight: 800;
  margin: 0 0 1.4rem;
  letter-spacing: -0.02em;
}
.cc-it-hero h1 span {
  background: linear-gradient(135deg, var(--red, #e50914) 0%, #ff6b6b 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.cc-it-hero-sub {
  font-size: 1.1rem;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.75);
  margin: 0 0 2rem;
  max-width: 720px;
}
.cc-it-hero-actions {
  display: flex;
  gap: 0.9rem;
  flex-wrap: wrap;
  margin-bottom: 3rem;
}

/* IT Hero stat boxes — red filled, side by side */
.cc-it-hero-stats {
  display: flex;
  gap: 1rem;
  margin-top: 2.8rem;
  padding-top: 2.8rem;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  flex-wrap: nowrap;
}
.cc-it-stat {
  flex: 1 1 0;
  min-width: 0;
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1.4rem 1.5rem;
  background: linear-gradient(135deg, #e50914 0%, #b8070f 100%);
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 14px;
  box-shadow:
    0 16px 40px -16px rgba(229, 9, 20, 0.55),
    inset 0 1px 0 rgba(255, 255, 255, 0.15);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}
.cc-it-stat:hover {
  transform: translateY(-4px);
  box-shadow:
    0 24px 48px -16px rgba(229, 9, 20, 0.75),
    inset 0 1px 0 rgba(255, 255, 255, 0.2);
}
.cc-it-stat-icon {
  width: 46px;
  height: 46px;
  flex-shrink: 0;
  border-radius: 11px;
  background: rgba(255, 255, 255, 0.18);
  border: 1px solid rgba(255, 255, 255, 0.28);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
}
.cc-it-stat-body { min-width: 0; }
.cc-it-stat-val {
  font-size: 1.7rem;
  font-weight: 800;
  line-height: 1;
  color: #fff;
  letter-spacing: -0.02em;
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.15);
}
.cc-it-stat-val small {
  font-size: 0.9rem;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.82);
  margin-left: 0.15rem;
}
.cc-it-stat-label {
  font-size: 0.82rem;
  color: rgba(255, 255, 255, 0.9);
  margin-top: 0.4rem;
  letter-spacing: 0.02em;
  font-weight: 500;
  white-space: nowrap;
}

/* ─── Section head (shared on IT page) ─── */
.cc-it-section-head {
  text-align: center;
  max-width: 680px;
  margin: 0 auto 4.5rem;
}
.cc-it-section-head .cc-tag { margin-bottom: 1.2rem; }
.cc-it-section-head h2 {
  font-size: clamp(1.9rem, 3.5vw, 2.6rem);
  line-height: 1.25;
  font-weight: 800;
  margin: 0 0 1.2rem;
  letter-spacing: -0.02em;
}
.cc-it-section-head p {
  font-size: 1.05rem;
  line-height: 1.7;
  color: #666;
  margin: 0;
}

/* ─── Core Services grid (6 cards) ─── */
.cc-it-services { padding: 7rem 0; background: #fafafa; }
.cc-it-services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.6rem;
  max-width: 1140px;
  margin: 0 auto;
}
.cc-it-service {
  padding: 2.2rem 2rem 2rem;
  background: #fff;
  border: 1px solid #f0f0f0;
  border-radius: 16px;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
  position: relative;
}
.cc-it-service:hover {
  transform: translateY(-4px);
  box-shadow: 0 20px 40px -20px rgba(0, 0, 0, 0.12);
}
.cc-it-service-icon {
  width: 56px;
  height: 56px;
  border-radius: 13px;
  background: linear-gradient(135deg, #fff5f5 0%, #ffe8e8 100%);
  color: var(--red, #e50914);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.3rem;
}
.cc-it-service-num {
  position: absolute;
  top: 1.8rem;
  right: 1.8rem;
  font-size: 0.75rem;
  font-weight: 800;
  color: #ccc;
  letter-spacing: 0.12em;
}
.cc-it-service h3 {
  font-size: 1.15rem;
  font-weight: 700;
  margin: 0 0 0.7rem;
  color: #111;
  letter-spacing: -0.01em;
}
.cc-it-service p {
  font-size: 0.92rem;
  line-height: 1.65;
  color: #666;
  margin: 0 0 1.2rem;
}
.cc-it-service-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem;
  padding-top: 1rem;
  border-top: 1px dashed #eee;
}
.cc-it-service-tags span {
  display: inline-block;
  font-size: 0.7rem;
  font-weight: 600;
  color: #888;
  background: #f5f5f5;
  padding: 0.3rem 0.65rem;
  border-radius: 20px;
  letter-spacing: 0.02em;
}

/* ─── Process (4-step methodology) ─── */
.cc-it-process { padding: 7rem 0; }
.cc-it-process-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.6rem;
  max-width: 1140px;
  margin: 0 auto;
  position: relative;
}
.cc-it-process-step {
  padding: 2.2rem 1.8rem;
  background: #fff;
  border: 1px solid #f0f0f0;
  border-radius: 16px;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
  position: relative;
}
.cc-it-process-step:hover {
  transform: translateY(-3px);
  box-shadow: 0 16px 34px -18px rgba(0, 0, 0, 0.12);
  border-color: rgba(229, 9, 20, 0.25);
}
.cc-it-process-num {
  font-size: 0.75rem;
  font-weight: 800;
  color: var(--red, #e50914);
  letter-spacing: 0.14em;
  margin-bottom: 0.8rem;
}
.cc-it-process-step h3 {
  font-size: 1.25rem;
  font-weight: 800;
  margin: 0 0 0.3rem;
  color: #111;
  letter-spacing: -0.01em;
}
.cc-it-process-kr {
  font-size: 0.85rem;
  color: #888;
  margin-bottom: 0.9rem;
  font-weight: 500;
}
.cc-it-process-step p {
  font-size: 0.9rem;
  line-height: 1.65;
  color: #666;
  margin: 0;
}

/* ─── Why CallCube IT (3 cards) ─── */
.cc-it-why { padding: 7rem 0; background: #fafafa; }
.cc-it-why-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.8rem;
  max-width: 1080px;
  margin: 0 auto;
}
.cc-it-why-card {
  padding: 2.4rem 2rem;
  background: #fff;
  border: 1px solid #f0f0f0;
  border-radius: 16px;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}
.cc-it-why-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 16px 34px -18px rgba(0, 0, 0, 0.1);
}
.cc-it-why-num {
  font-size: 0.75rem;
  font-weight: 800;
  color: var(--red, #e50914);
  letter-spacing: 0.14em;
  margin-bottom: 0.9rem;
}
.cc-it-why-card h3 {
  font-size: 1.2rem;
  font-weight: 700;
  margin: 0 0 0.8rem;
  color: #111;
  letter-spacing: -0.01em;
}
.cc-it-why-card p {
  font-size: 0.95rem;
  line-height: 1.75;
  color: #555;
  margin: 0;
}

/* ─── IT page responsive ─── */
@media (max-width: 1024px) {
  .cc-it-services-grid { grid-template-columns: repeat(2, 1fr); }
  .cc-it-process-grid { grid-template-columns: repeat(2, 1fr); }
  .cc-it-why-grid { grid-template-columns: 1fr; }
}
@media (max-width: 768px) {
  .cc-it-hero { padding: 4.5rem 0 3.5rem; }
  .cc-it-hero h1 { font-size: 1.95rem; }
  .cc-it-hero-sub { font-size: 0.98rem; }
  .cc-it-hero-stats {
    flex-direction: column;
    gap: 0.8rem;
    margin-top: 2rem;
    padding-top: 2rem;
  }
  .cc-it-stat { padding: 1.1rem 1.3rem; }
  .cc-it-stat-icon { width: 42px; height: 42px; }
  .cc-it-stat-val { font-size: 1.55rem; }
  .cc-it-stat-label { font-size: 0.78rem; }
  .cc-it-section-head { margin-bottom: 3rem; }
  .cc-it-section-head h2 { font-size: 1.7rem; }
  .cc-it-section-head p { font-size: 0.96rem; }
  .cc-it-services,
  .cc-it-process,
  .cc-it-why { padding: 4.5rem 0; }
  .cc-it-services-grid,
  .cc-it-process-grid { grid-template-columns: 1fr; gap: 1.2rem; }
  .cc-it-service,
  .cc-it-process-step,
  .cc-it-why-card { padding: 1.8rem 1.6rem; }
}

/* ─── FAQ ─────────────────────────────────────────── */
.cc-faq {
  background: var(--bg);
  padding: 6rem 0;
  border-top: 1px solid var(--border);
}
.cc-faq-head {
  max-width: 760px;
  margin: 0 auto 3.5rem;
  text-align: center;
}
.cc-faq-head .cc-tag { margin-bottom: 1rem; display: inline-block; }
.cc-faq-head h2 {
  font-size: 2rem;
  font-weight: 800;
  letter-spacing: -0.02em;
  color: var(--ink);
  margin-bottom: 1rem;
}
.cc-faq-head p {
  font-size: 1rem;
  color: var(--ink3);
  line-height: 1.7;
}
.cc-faq-list {
  max-width: 820px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
}
.cc-faq-item {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 12px;
  overflow: hidden;
  transition: border-color .2s, box-shadow .2s;
}
.cc-faq-item[open],
.cc-faq-item:hover {
  border-color: var(--red-border);
  box-shadow: 0 2px 14px rgba(232,52,46,0.05);
}
.cc-faq-q {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1.3rem 1.6rem;
  font-size: 1rem;
  font-weight: 700;
  color: var(--ink);
  cursor: pointer;
  list-style: none;
  line-height: 1.5;
}
.cc-faq-q::-webkit-details-marker { display: none; }
.cc-faq-q::after {
  content: "";
  flex-shrink: 0;
  width: 14px;
  height: 14px;
  border-right: 2px solid var(--ink3);
  border-bottom: 2px solid var(--ink3);
  transform: rotate(45deg);
  transition: transform .2s;
}
.cc-faq-item[open] .cc-faq-q::after {
  transform: rotate(-135deg);
  border-color: var(--red);
}
.cc-faq-a {
  padding: 0 1.6rem 1.5rem;
  font-size: 0.95rem;
  color: var(--ink2);
  line-height: 1.75;
}
.cc-faq-a a {
  color: var(--red);
  text-decoration: underline;
  text-underline-offset: 3px;
}
.cc-faq-a strong { color: var(--ink); }
.cc-faq-more {
  max-width: 820px;
  margin: 2.2rem auto 0;
  text-align: center;
}

/* ─── RELATED SERVICES ───────────────────────────── */
.cc-related {
  background: var(--white);
  padding: 6rem 0;
  border-top: 1px solid var(--border);
}
.cc-related-head {
  max-width: 760px;
  margin: 0 auto 3rem;
  text-align: center;
}
.cc-related-head .cc-tag { margin-bottom: 1rem; display: inline-block; }
.cc-related-head h2 {
  font-size: 1.85rem;
  font-weight: 800;
  letter-spacing: -0.02em;
  color: var(--ink);
}
.cc-related-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.2rem;
  max-width: 980px;
  margin: 0 auto;
}
.cc-related-card {
  display: block;
  padding: 1.8rem 1.9rem;
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: 12px;
  color: inherit;
  text-decoration: none;
  transition: border-color .2s, transform .2s, box-shadow .2s;
}
.cc-related-card:hover {
  border-color: var(--red-border);
  transform: translateY(-2px);
  box-shadow: 0 4px 20px rgba(232,52,46,0.06);
}
.cc-related-card h3 {
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--ink);
  margin-bottom: 0.6rem;
}
.cc-related-card p {
  font-size: 0.88rem;
  color: var(--ink3);
  line-height: 1.65;
  margin: 0;
}

/* ─── NETWORK PAGE EXTRAS ────────────────────────── */
.cc-net-region-intro {
  max-width: 820px;
  margin: 0 auto 2.5rem;
  text-align: center;
}
.cc-net-region-intro h2 {
  font-size: 1.65rem;
  font-weight: 800;
  color: var(--ink);
  margin-bottom: 0.9rem;
  letter-spacing: -0.01em;
}
.cc-net-region-intro p {
  font-size: 0.97rem;
  color: var(--ink3);
  line-height: 1.75;
}
.cc-net-city-desc {
  margin-top: 0.55rem;
  font-size: 0.82rem;
  color: var(--ink3);
  line-height: 1.6;
}
.cc-net-tech {
  background: var(--bg);
  padding: 6rem 0;
  border-top: 1px solid var(--border);
}
.cc-net-tech-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.4rem;
  max-width: 1180px;
  margin: 0 auto;
}
.cc-net-tech-card {
  padding: 2rem 1.9rem;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 14px;
  transition: border-color .2s, box-shadow .2s;
}
.cc-net-tech-card:hover {
  border-color: var(--red-border);
  box-shadow: 0 4px 22px rgba(232,52,46,0.05);
}
.cc-net-tech-num {
  display: inline-block;
  font-size: 0.72rem;
  font-weight: 700;
  color: var(--red);
  background: var(--red-soft);
  border: 1px solid var(--red-border);
  border-radius: 100px;
  padding: 4px 12px;
  margin-bottom: 1.1rem;
  letter-spacing: 0.05em;
}
.cc-net-tech-card h3 {
  font-size: 1.02rem;
  font-weight: 700;
  color: var(--ink);
  margin-bottom: 0.7rem;
  line-height: 1.45;
}
.cc-net-tech-card p {
  font-size: 0.87rem;
  color: var(--ink3);
  line-height: 1.7;
  margin: 0;
}
.cc-net-tech-card a {
  color: var(--red);
  text-decoration: underline;
  text-underline-offset: 2px;
}

/* ─── BLOG LISTING ───────────────────────────────── */
.cc-blog-hero {
  background: var(--ink);
  color: #fff;
  padding: 5rem 0 3rem;
  text-align: center;
}
.cc-blog-hero h1 {
  font-size: 2.2rem;
  font-weight: 800;
  margin: 1rem 0 0.8rem;
  letter-spacing: -0.02em;
}
.cc-blog-hero-sub {
  font-size: 1rem;
  color: rgba(255,255,255,0.6);
  margin-bottom: 2rem;
}
.cc-blog-tabs {
  display: flex;
  gap: 0.5rem;
  justify-content: center;
  flex-wrap: wrap;
}
.cc-blog-tab {
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.15);
  color: rgba(255,255,255,0.6);
  font-size: 0.88rem;
  font-weight: 600;
  padding: 0.55rem 1.3rem;
  border-radius: 100px;
  cursor: pointer;
  transition: all .2s;
}
.cc-blog-tab:hover {
  background: rgba(255,255,255,0.12);
  color: #fff;
}
.cc-blog-tab-active {
  background: var(--red);
  border-color: var(--red);
  color: #fff;
}
.cc-blog-section-head {
  max-width: 700px;
  margin: 0 auto 2.5rem;
  text-align: center;
}
.cc-blog-section-head h2 {
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--ink);
  margin-bottom: 0.6rem;
}
.cc-blog-section-head p {
  font-size: 0.92rem;
  color: var(--ink3);
}
.cc-blog-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}
.cc-blog-card {
  display: flex;
  flex-direction: column;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 12px;
  overflow: hidden;
  text-decoration: none;
  color: inherit;
  transition: border-color .2s, transform .2s, box-shadow .2s;
}
.cc-blog-card:hover {
  border-color: var(--red-border);
  transform: translateY(-3px);
  box-shadow: 0 6px 24px rgba(232,52,46,0.06);
}
.cc-blog-card-img {
  width: 100%;
  aspect-ratio: 16/9;
  overflow: hidden;
  background: var(--bg);
}
.cc-blog-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.cc-blog-card-body {
  padding: 1.3rem 1.4rem 1.5rem;
  flex: 1;
  display: flex;
  flex-direction: column;
}
.cc-blog-card-cat {
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--red);
  margin-bottom: 0.4rem;
}
.cc-blog-card-date {
  font-size: 0.75rem;
  color: var(--ink3);
  margin-bottom: 0.6rem;
}
.cc-blog-card h3 {
  font-size: 1rem;
  font-weight: 700;
  color: var(--ink);
  line-height: 1.45;
  margin-bottom: 0.6rem;
}
.cc-blog-card p {
  font-size: 0.84rem;
  color: var(--ink3);
  line-height: 1.6;
  margin: 0;
  flex: 1;
}
@media (max-width: 900px) {
  .cc-blog-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 600px) {
  .cc-blog-grid { grid-template-columns: 1fr; }
  .cc-blog-hero h1 { font-size: 1.6rem; }
}

/* ─── POWERED-BY AI BAND ─────────────────────────── */
.cc-power-band {
  background: var(--bg);
  padding: 3rem 0;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.cc-power-inner {
  max-width: 840px;
  margin: 0 auto;
  text-align: center;
}
.cc-power-kicker {
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  color: var(--red);
  text-transform: uppercase;
  margin-bottom: 1rem;
}
.cc-power-title {
  font-size: 1.45rem;
  font-weight: 800;
  letter-spacing: -0.015em;
  color: var(--ink);
  line-height: 1.35;
  margin: 0 0 1rem;
}
.cc-power-text {
  font-size: 0.96rem;
  color: var(--ink2);
  line-height: 1.75;
  margin: 0 0 1.5rem;
}
.cc-power-text strong { color: var(--ink); }
.cc-power-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
  justify-content: center;
}
.cc-power-chip {
  font-size: 0.8rem;
  font-weight: 700;
  padding: 7px 16px;
  border-radius: 100px;
  background: var(--white);
  border: 1px solid var(--border);
  color: var(--ink);
  transition: border-color .2s;
}
.cc-power-chip:hover {
  border-color: var(--red-border);
}
@media (max-width: 720px) {
  .cc-power-band { padding: 2.2rem 0; }
  .cc-power-title { font-size: 1.2rem; }
  .cc-power-text { font-size: 0.88rem; line-height: 1.65; }
  .cc-power-chip { font-size: 0.72rem; padding: 5px 12px; }
}

/* ─── AI HERO KICKER (old-timer search terms) ──────── */
.cc-ai-hero-kicker {
  display: inline-block;
  margin: 0 0 1rem;
  padding: 0.45rem 1rem;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.02em;
  color: var(--ink3);
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: 100px;
}

/* ─── ANSWERING SERVICE COMPARISON ─────────────────── */
.cc-ai-answering {
  background: var(--white);
  padding: 6rem 0;
  border-top: 1px solid var(--border);
}
.cc-ai-compare {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  gap: 1.5rem;
  align-items: stretch;
  max-width: 1100px;
  margin: 0 auto;
}
.cc-ai-compare-3 {
  grid-template-columns: 1fr auto 1fr auto 1fr;
  gap: 1rem;
  max-width: 1280px;
}
.cc-ai-compare-col {
  padding: 2rem 1.75rem;
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: 14px;
  display: flex;
  flex-direction: column;
}
.cc-ai-compare-mid {
  background: #F5F6F8;
  border-color: var(--border);
}
.cc-ai-compare-new {
  background: var(--red-soft);
  border-color: var(--red-border);
}
.cc-ai-compare-era {
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  color: var(--ink3);
  text-transform: uppercase;
  margin-bottom: 0.5rem;
}
.cc-ai-compare-new .cc-ai-compare-era {
  color: var(--red);
}
.cc-ai-compare-label {
  font-size: 1.05rem;
  font-weight: 800;
  letter-spacing: -0.01em;
  color: var(--ink);
  margin-bottom: 0.8rem;
  line-height: 1.35;
}
.cc-ai-compare-label small {
  display: block;
  font-size: 0.72rem;
  font-weight: 600;
  color: var(--ink3);
  letter-spacing: 0.02em;
  margin-top: 0.3rem;
  text-transform: none;
}
.cc-ai-compare-new .cc-ai-compare-label {
  color: var(--red);
}
.cc-ai-compare-new .cc-ai-compare-label small {
  color: var(--red);
  opacity: 0.75;
}
.cc-ai-compare-desc {
  font-size: 0.83rem;
  color: var(--ink3);
  line-height: 1.6;
  margin: 0 0 1.2rem;
  padding-bottom: 1.1rem;
  border-bottom: 1px dashed var(--border);
}
.cc-ai-compare-new .cc-ai-compare-desc {
  border-bottom-color: var(--red-border);
}
.cc-ai-compare-col ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 0.7rem;
}
.cc-ai-compare-col li {
  font-size: 0.86rem;
  line-height: 1.55;
  color: var(--ink2);
  padding-left: 1.3rem;
  position: relative;
}
.cc-ai-compare-old li::before,
.cc-ai-compare-mid li::before {
  content: "×";
  position: absolute;
  left: 0;
  top: -2px;
  color: var(--ink3);
  font-weight: 700;
  font-size: 1rem;
  opacity: 0.7;
}
.cc-ai-compare-new li::before {
  content: "✓";
  position: absolute;
  left: 0;
  top: 0;
  color: var(--red);
  font-weight: 800;
}
.cc-ai-compare-new li strong {
  color: var(--ink);
}
.cc-ai-compare-arrow {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  color: var(--red);
  padding: 0 0.25rem;
}
.cc-ai-compare-arrow span {
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  color: var(--red);
  text-transform: uppercase;
  white-space: nowrap;
}
.cc-ai-compare-note {
  max-width: 900px;
  margin: 2.5rem auto 0;
  padding: 1.6rem 1.9rem;
  background: var(--bg);
  border: 1px solid var(--border);
  border-left: 3px solid var(--red);
  border-radius: 12px;
}
.cc-ai-compare-note p {
  margin: 0;
  font-size: 0.95rem;
  color: var(--ink2);
  line-height: 1.75;
}

/* Responsive: FAQ · Related · Network tech */
@media (max-width: 1080px) {
  .cc-ai-compare-3 {
    grid-template-columns: 1fr;
    gap: 1.1rem;
    max-width: 720px;
  }
  .cc-ai-compare-3 .cc-ai-compare-arrow {
    flex-direction: row;
    padding: 0.4rem;
  }
  .cc-ai-compare-3 .cc-ai-compare-arrow svg {
    transform: rotate(90deg);
  }
}
@media (max-width: 900px) {
  .cc-net-tech-grid { grid-template-columns: repeat(2, 1fr); gap: 1.1rem; }
  .cc-ai-compare {
    grid-template-columns: 1fr;
    gap: 1.2rem;
  }
  .cc-ai-compare-arrow {
    flex-direction: row;
    padding: 0.5rem;
  }
  .cc-ai-compare-arrow svg {
    transform: rotate(90deg);
  }
}
@media (max-width: 720px) {
  .cc-faq { padding: 4.5rem 0; }
  .cc-faq-head h2 { font-size: 1.55rem; }
  .cc-faq-q { padding: 1.1rem 1.2rem; font-size: 0.95rem; }
  .cc-faq-a { padding: 0 1.2rem 1.2rem; font-size: 0.9rem; }
  .cc-related { padding: 4.5rem 0; }
  .cc-related-head h2 { font-size: 1.5rem; }
  .cc-related-grid { grid-template-columns: 1fr; }
  .cc-related-card { padding: 1.4rem 1.5rem; }
  .cc-net-tech { padding: 4.5rem 0; }
  .cc-net-tech-grid { grid-template-columns: 1fr; gap: 1rem; }
  .cc-net-tech-card { padding: 1.6rem 1.5rem; }
  .cc-net-region-intro h2 { font-size: 1.35rem; }
  .cc-ai-answering { padding: 4.5rem 0; }
  .cc-ai-compare-col { padding: 1.6rem 1.5rem; }
  .cc-ai-compare-note { padding: 1.3rem 1.4rem; margin-top: 1.8rem; }
  .cc-ai-hero-kicker { font-size: 0.72rem; padding: 0.4rem 0.9rem; }
  /* Home about snippet responsive */
  .cc-section [style*="grid-template-columns: 1fr 1fr"] {
    grid-template-columns: 1fr !important;
    gap: 2rem !important;
  }
}
