




/* ✅ ΠΡΟΣΘΗΚΗ: Ενιαίο Eyebrow Badge Style */
.cc-eyebrow,
.cc-ai-badge {
  display: inline-flex;
  align-items: center;
  gap: var(--space-2);
  background: rgba(217, 4, 41, 0.15);
  border: 1px solid rgba(217, 4, 41, 0.3);
  padding: var(--space-2) var(--space-4);
  border-radius: 50px;
  font-size: var(--fs-sm);
  font-weight: 600;
  color: var(--color-accent);
  letter-spacing: 0.12em;
  text-transform: uppercase;
  backdrop-filter: blur(10px);
  animation: badgePulse 3s infinite;
}

@keyframes badgePulse {
  0%, 100% { box-shadow: 0 0 15px rgba(217, 4, 41, 0.2); }
  50% { box-shadow: 0 0 25px rgba(217, 4, 41, 0.4); }
}

.cc-eyebrow::before,
.cc-ai-badge::before {
  content: '';
  width: 8px;
  height: 8px;
  background: var(--color-accent);
  border-radius: 50%;
  animation: badgeDotBlink 2s infinite;
}

@keyframes badgeDotBlink {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.5; transform: scale(1.2); }
}






/* ================= HERO SECTION ================= */
.cc-hero-parallax {
  position: relative;
  min-height: 100vh;
  isolation: isolate;
  background: var(--color-secondary);
}

.cc-hero-parallax .cc-shared-particles {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
  pointer-events: none;
}

.cc-hero-inner {
  position: relative;
  z-index: 1;
  width: 100%;
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 var(--container-padding);
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 3rem;
  align-items: center;
}

.cc-hero-content {
  position: relative;
  text-align: left;
  padding: var(--space-6) 0;
}

.cc-hero-title {
  font-family: var(--font-heading);
  font-size: clamp(2rem, 6vw, var(--fs-3xl));
  color: var(--color-muted);
  margin-bottom: var(--space-4);
  line-height: var(--lh-tight);
}


.cc-hero-title .typing-text {
  color: var(--color-accent);
  font-size: clamp(2.2rem, 7vw, 3.5rem);
  display: inline;
  word-break: break-word;
}

/* ✅ ΙΔΙΟ ΟΝΟΜΑ: hero-cursor και heroCursorBlink */
.hero-cursor {
  color: var(--color-accent);
  animation: heroCursorBlink 0.8s infinite;
  font-weight: 100;
  margin-left: 2px;
}

/* ✅ ΤΟ ΟΝΟΜΑ ΤΟΥ KEYFRAMES ΠΡΕΠΕΙ ΝΑ ΤΑΙΡΙΑΖΕΙ */
@keyframes heroCursorBlink {
  0%, 100% { opacity: 0; }
  50% { opacity: 1; }
}

.cc-hero-subtitle {
  font-size: var(--fs-lg);
  color: var(--color-muted);
  margin-bottom: var(--space-6);
  line-height: var(--lh-loose);
}

/* Voice Visualizer */
.cc-voice-visualizer {
  display: flex;
  align-items: flex-end;
  justify-content: flex-start;
  gap: 5px;
  height: clamp(60px, 10vw, 110px);
  flex-wrap: wrap;
}

.cc-voice-bar {
  width: clamp(2px, 0.5vw, 4px);
  background: linear-gradient(to top, var(--color-accent), rgba(217, 4, 41, 0.5));
  border-radius: 2px;
  animation: voiceWave 1.3s ease-in-out infinite;
  transform-origin: bottom;
  flex-shrink: 0;
}

.cc-voice-bar:nth-child(1) { height: 20%; animation-delay: 0s; }
.cc-voice-bar:nth-child(2) { height: 40%; animation-delay: 0.1s; }
.cc-voice-bar:nth-child(3) { height: 60%; animation-delay: 0.2s; }
.cc-voice-bar:nth-child(4) { height: 80%; animation-delay: 0.3s; }
.cc-voice-bar:nth-child(5) { height: 100%; animation-delay: 0.4s; }
.cc-voice-bar:nth-child(6) { height: 85%; animation-delay: 0.5s; }
.cc-voice-bar:nth-child(7) { height: 70%; animation-delay: 0.6s; }
.cc-voice-bar:nth-child(8) { height: 55%; animation-delay: 0.7s; }
.cc-voice-bar:nth-child(9) { height: 45%; animation-delay: 0.8s; }
.cc-voice-bar:nth-child(10) { height: 65%; animation-delay: 0.9s; }
.cc-voice-bar:nth-child(11) { height: 75%; animation-delay: 1.0s; }
.cc-voice-bar:nth-child(12) { height: 90%; animation-delay: 1.1s; }
.cc-voice-bar:nth-child(13) { height: 50%; animation-delay: 1.2s; }
.cc-voice-bar:nth-child(14) { height: 35%; animation-delay: 1.3s; }
.cc-voice-bar:nth-child(15) { height: 25%; animation-delay: 1.4s; }

@keyframes voiceWave {
  0%, 100% { transform: scaleY(0.6); opacity: 0.6; }
  50% { transform: scaleY(1); opacity: 1; }
}






/* ================= PROBLEM SECTION ================= */
.cc-problem-section {
  position: relative;
  min-height: auto;
  padding: var(--space-6) var(--container-padding);
  background-color: var(--color-primary);
  background-image: 
    linear-gradient(rgba(237, 242, 244, 0.05) 2px, transparent 2px),
    linear-gradient(90deg, rgba(237, 242, 244, 0.05) 2px, transparent 2px);
  background-size: 30px 30px;
  isolation: isolate;
}

.cc-problem-section .container {
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 var(--container-padding);
}

.cc-problem-header {
  text-align: center;
  max-width: 800px;
  margin: 0 auto var(--space-6);
}

.cc-problem-header .cc-eyebrow {
  margin-bottom: var(--space-5);
}

.cc-problem-header .cc-section-title {
  font-family: var(--font-heading);
  
  color: var(--color-secondary);
  margin-bottom: var(--space-4);
  line-height: var(--lh-tight);
  font-weight: 700;
}

.cc-problem-header .cc-section-desc {
  font-family: var(--font-base);
  
  line-height: var(--lh-normal);
  max-width: 600px;
  margin: 0 auto;
  color: var(--color-secondary);
  opacity: 0.8;
}

.cc-problem-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-5);
  
  margin: 0 auto;
}



.cc-problem-card {
  padding: var(--space-5);
  background: var(--color-secondary);
  border-radius: var(--radius-lg);
  border: 1px solid var(--color-accent);
  position: relative;
  box-shadow: var(--shadow-md);
  transition: transform var(--duration-normal) var(--ease-standard),
              box-shadow var(--duration-normal) var(--ease-standard);
}

.cc-problem-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}

.cc-problem-card h3 {
  font-family: var(--font-heading);
  margin-bottom: var(--space-4);
  color: var(--color-primary);
  font-weight: 600;
  text-align: center;
}

.cc-problem-card ul {
  list-style: none;
  padding: 0;
  margin: 0 0 var(--space-4);
}

.cc-problem-card li {
  margin-bottom: var(--space-3);
  display: flex;
  align-items: flex-start;
  gap: var(--space-3);
  font-family: var(--font-base);

  color: var(--color-primary);
  line-height: var(--lh-normal);
}

.cc-data-point {
  width: 5px;
  height: 5px;
  background: var(--color-accent);
  border-radius: 50%;
  flex-shrink: 0;
  margin-top: 0.4rem;
}



.cc-data-stream {
  margin-top: var(--space-6);
  overflow: hidden;
  position: relative;
  z-index: 0;
  padding: var(--space-4) 0;
}

.cc-stream-line {
  display: flex;
  gap: var(--space-6);
  white-space: nowrap;
  width: max-content;
  font-family: 'Courier New', monospace;
  font-size: var(--fs-base);
  font-weight: 600;
  color: var(--color-secondary);
  margin-bottom: var(--space-3);
  opacity: 0.6;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.cc-stream-line:first-child {
  animation: streamLeft 25s linear infinite;
}

.cc-stream-line[data-speed="fast"] {
  animation: streamRight 20s linear infinite;
  color: var(--color-accent);
  opacity: 0.8;
}

.cc-stream-line span {
  display: flex;
  align-items: center;
  gap: var(--space-2);
}

.cc-stream-line span::before {
  content: '›';
  color: var(--color-accent);
  font-size: var(--fs-lg);
  font-weight: 700;
}

@keyframes streamLeft {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

@keyframes streamRight {
  0% { transform: translateX(-50%); }
  100% { transform: translateX(0); }
}



















/* ================= SOLUTION SECTION ================= */
.cc-solution-section {
  position: relative;
  min-height: 100vh;
 padding: var(--space-6) var(--container-padding) var(--space-3);
  overflow-x: hidden;
  background: var(--color-bg);
  isolation: isolate;
}

/* ✅ ΠΡΟΣΘΗΚΗ: Particles Background */
.cc-solution-section .cc-shared-particles {
  position: absolute;
  inset: 0;
  z-index: -1;
  pointer-events: none;
}

.cc-solution-section .cc-shared-particles > div:first-child {
  background: transparent !important;
}

.cc-light-particles {
  position: absolute;
  inset: 0;
  z-index: -2;
  pointer-events: none;
}

.cc-solution-section .container {
  position: relative;
  z-index: 1;
}

.cc-solution-header {
  text-align: center;
  max-width: 900px;
  margin: 0 auto var(--space-5);
  
}

.cc-solution-header .cc-eyebrow {
  margin-bottom: var(--space-5);
}



.cc-solution-header .cc-section-title {
  margin-top: var(--space-6); /* ← ΠΡΟΣΘΗΚΗ */
  font-family: var(--font-heading);
 
  font-weight: 700;
  color: var(--color-muted);
  margin-bottom: var(--space-4);
  line-height: var(--lh-tight);
}

.cc-solution-header .cc-section-desc {
 
  color: var(--color-muted);
  line-height: var(--lh-loose);
  max-width: 600px;
  margin: 0 auto;
}

.cc-highlight-word {
  color: var(--color-accent);
  position: relative;
  display: inline-block;
}

.cc-highlight-word::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 30%;
  background: rgba(217, 4, 41, 0.2);
  z-index: -1;
  transform: skewX(-10deg);
  animation: highlightPulse 3s infinite;
}

@keyframes highlightPulse {
  0%, 100% { opacity: 0.3; }
  50% { opacity: 0.6; }
}

.cc-hologram-pillars {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-4);
  position: relative;
}


.cc-solution-pillar {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: var(--space-3);
}

.cc-pillar-beam {
  position: absolute;
  top: 0;
  left: 50%;
  width: 2px;
  height: 100px;
  background: linear-gradient(to bottom, rgba(217, 4, 41, 0.4), transparent);
  transform: translateX(-50%);
  opacity: 0.5;
  animation: beamPulse 3s infinite;
}

@keyframes beamPulse {
  0%, 100% { opacity: 0.3; height: 80px; }
  50% { opacity: 0.6; height: 120px; }
}

.cc-pillar-core {
  width: 100px;
  height: 100px;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: var(--space-3);
}

.cc-core-ring {
  position: absolute;
  border: 2px solid rgba(217, 4, 41, 0.3);
  border-radius: 50%;
  animation: ringExpand 3s ease-out infinite;
}

.cc-core-ring.ring-1 { 
  width: 100%; 
  height: 100%; 
  animation-delay: 0s; 
}

.cc-core-ring.ring-2 { 
  width: 70%; 
  height: 70%; 
  animation-delay: 0.5s; 
  border-color: rgba(217, 4, 41, 0.5); 
}

.cc-core-ring.ring-3 { 
  width: 40%; 
  height: 40%; 
  animation-delay: 1s; 
  border-color: rgba(217, 4, 41, 0.7); 
}

@keyframes ringExpand {
  0% { transform: scale(0.8); opacity: 1; }
  100% { transform: scale(1.3); opacity: 0; }
}

.cc-pillar-num {
  font-size: var(--fs-3xl);
  font-weight: 900;
  color: var(--color-accent);
  font-family: var(--font-heading);
  z-index: 2;
  text-shadow: 0 0 20px rgba(217, 4, 41, 0.5);
}

.cc-pillar-content {
  text-align: center;
  background: rgba(255, 255, 255, 0.8);
  padding: var(--space-4);
  border-radius: var(--radius-xl);
  border: 1px solid rgba(43, 45, 66, 0.1);
  backdrop-filter: blur(20px);
  box-shadow: var(--shadow-lg);
  transition: all var(--duration-slow) var(--ease-standard);
}

.cc-solution-pillar:hover .cc-pillar-content {
  transform: translateY(-10px);
  box-shadow: 
    0 30px 60px rgba(0, 0, 0, 0.12), 
    0 0 40px rgba(217, 4, 41, 0.1);
  border-color: rgba(217, 4, 41, 0.3);
}

.cc-pillar-content h3 {
  font-family: var(--font-heading);  /* ← Πρόσθεσε αυτό */
  font-weight: 600;                   /* ← Άλλαξε από 700 σε 600 για να ταιριάζει */
  color: var(--color-primary);        /* ← Και άλλαξε το χρώμα */
  text-align: center;                 /* ← Κέντρο όπως το Problem */
  margin-bottom: var(--space-4);
}

.cc-pillar-content p {
  font-family: var(--font-base); /* ← ΛΕΙΠΕΙ */
  line-height: var(--lh-loose);
  color: var(--color-muted);
  opacity: 0.8;
  margin-bottom: var(--space-4);
}

.cc-feature-tags {
  display: flex;
  gap: var(--space-2);
  justify-content: center;
  flex-wrap: wrap;
}

.cc-tag {
  padding: var(--space-2) var(--space-3);
  background: rgba(217, 4, 41, 0.1);
  color: var(--color-accent);
  border-radius: 50px;
  font-size: var(--fs-xs);
  font-weight: 600;
  border: 1px solid rgba(217, 4, 41, 0.2);
  transition: all var(--duration-normal) var(--ease-standard);
}

.cc-tag:hover {
  background: var(--color-accent);
  color: var(--color-text);
  transform: scale(1.05);
}

.cc-connection-svg {
  position: absolute;
  top: 48%;
  left: 0;
  width: 100%;
  height: 200px;
  transform: translateY(-50%);
  z-index: 0;
  opacity: 0.8;
  pointer-events: none;
}

.cc-connection-line {
  fill: none;
  stroke: rgba(217, 4, 41, 0.4); 
  stroke-width: 2; 
  stroke-dasharray: 5 15; 
  stroke-linecap: round; 
  animation: dashMove 20s linear infinite;
}

@keyframes dashMove {
  to { stroke-dashoffset: -100; }
}

.cc-connection-node {
  fill: rgba(217, 4, 41, 0.9);
  animation: nodePulse 2s infinite;
}

@keyframes nodePulse {
  0%, 100% { r: 6; opacity: 0.7; }
  50% { r: 10; opacity: 1; }
}

.cc-success-orb {
  position: relative;
  width: 150px;
  height: 150px;
  margin: var(--space-6) auto 0;
  display: flex;
  align-items: center;
  justify-content: center;

  /* CTA behavior */
  text-decoration: none;
  cursor: pointer;
}

.cc-orb-core {
  width: 30px;
  height: 30px;
  background: #22c55e;
  border-radius: 50%;
  box-shadow: 0 0 40px #22c55e, 0 0 80px #22c55e;
  animation: corePulse 2s infinite;
  z-index: 2;
}

@keyframes corePulse {
  0%, 100% { transform: scale(1); }
  50% { transform: scale(1.2); }
}

.cc-orb-ring {
  position: absolute;
  border: 2px solid #22c55e;
  border-radius: 50%;
  opacity: 0;
  animation: orbExpand 3s ease-out infinite;
}

.cc-orb-ring.ring-1 { 
  width: 60px; 
  height: 60px; 
  animation-delay: 0s; 
}

.cc-orb-ring.ring-2 { 
  width: 100px; 
  height: 100px; 
  animation-delay: 0.5s; 
}

.cc-orb-ring.ring-3 { 
  width: 140px; 
  height: 140px; 
  animation-delay: 1s; 
}

@keyframes orbExpand {
  0% { transform: scale(0.5); opacity: 0.8; }
  100% { transform: scale(1.2); opacity: 0; }
}

.cc-orb-text {
  position: absolute;
  bottom: -2rem;
  font-size: var(--fs-sm);
  font-weight: 600;
  color: #22c55e;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  white-space: nowrap;
}

.cc-success-orb:link,
.cc-success-orb:visited {
  text-decoration: none;
}

.cc-success-orb:hover .cc-orb-core {
  transform: scale(1.25);
  transition: transform 0.3s ease;
}

.cc-success-orb:focus-visible {
  outline: 2px solid #22c55e;
  outline-offset: 6px;
  border-radius: 50%;
}
















/* ================= HORIZONTAL SCROLL SECTION ================= */


.cc-horizontal-section {
  position: relative;
  height: 300vh;
  background: var(--color-primary);
  background-image: 
    linear-gradient(rgba(237, 242, 244, 0.05) 2px, transparent 2px),
    linear-gradient(90deg, rgba(237, 242, 244, 0.05) 2px, transparent 2px);
  background-size: 30px 30px;
  isolation: isolate;
  overflow-x: clip; 
}

.cc-horizontal-container {
  position: sticky;
  top: 0;
  height: 70vh;
  min-height: 600px; 
  overflow-x: hidden;
  display: flex;
  align-items: center;
}

.cc-horizontal-track {
  display: flex;
  gap: clamp(var(--space-4), 5vw, var(--space-6)); 
  padding: 0 10vw;
  will-change: transform;
  min-width: min-content; 
}

.cc-horizontal-slide {
  flex: 0 0 clamp(900px, 70vw, 1400px);
  max-width: var(--container-max);
  min-width: 900px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-4);
  align-items: center;
  transition: all var(--duration-slow) var(--ease-standard);
}



.cc-slide-content h3 {
  font-family: var(--font-heading);
  font-size: clamp(var(--fs-2xl), 4vw, var(--fs-3xl));
  color: var(--color-text);
  margin-bottom: var(--space-4);
  line-height: var(--lh-tight);
  font-weight: 700;
}

.cc-slide-content p {
  font-size: var(--fs-lg);
  color: var(--color-text);
  line-height: var(--lh-loose);
  margin-bottom: var(--space-5);
  max-width: 65ch;
}

.cc-slide-media {
  position: relative;
  border-radius: var(--radius-xl);
  overflow: hidden;
  height: clamp(400px, 45vh, 550px); /* ← ΑΛΛΑΓΗ: Responsive height */
  min-height: 400px; /* ← ΠΡΟΣΘΗΚΗ: Minimum ασφαλείας */
  
  background: linear-gradient(135deg, rgba(43, 45, 66, 0.9), rgba(43, 45, 66, 0.7));
  backdrop-filter: blur(20px);
  border: 2px solid rgba(217, 4, 41, 0.3);
  box-shadow: 
    0 40px 100px rgba(0, 0, 0, 0.5),
    0 0 80px rgba(217, 4, 41, 0.2),
    inset 0 0 100px rgba(217, 4, 41, 0.05);
  transform: perspective(1000px) rotateY(-5deg);
  transition: transform var(--duration-slow) var(--ease-standard);
}

/* Hover/Active state */
.cc-horizontal-slide.active .cc-slide-media {
  transform: perspective(1000px) rotateY(0deg);
  animation: floatScreen 6s ease-in-out infinite; /* ← Animation μόνο όταν active */
}

@keyframes floatScreen {
  0%, 100% { transform: perspective(1000px) rotateY(0deg) translateY(0); }
  50% { transform: perspective(1000px) rotateY(0deg) translateY(-20px); }
}

/* Corner markers */
.cc-slide-media::before,
.cc-slide-media::after {
  content: '';
  position: absolute;
  width: 40px;
  height: 40px;
  border: 3px solid var(--color-accent);
  z-index: 3;
  pointer-events: none;
}

.cc-slide-media::before {
  top: 15px;
  left: 15px;
  border-right: none;
  border-bottom: none;
}

.cc-slide-media::after {
  bottom: 15px;
  right: 15px;
  border-left: none;
  border-top: none;
}


.cc-slide-video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transform: scale(1.8);
  transform-origin: center;
  min-width: 100%; /* ← Ασφάλεια για το video */
}



.cc-horizontal-progress {
  position: absolute;
  bottom: var(--space-6);
  left: 50%;
  transform: translateX(-50%);
  width: clamp(200px, 40vw, 600px);  /* ← 40% του viewport width, min 200px, max 600px */
  height: 4px;
  background: rgba(43, 45, 66, 0.1);
  border-radius: var(--radius-sm);
  overflow: hidden;
}

.cc-horizontal-progress-bar {
  height: 100%;
  background: var(--color-accent);
  width: 0%;
  transition: width 0.1s linear;
}

.cc-check-list {
  list-style: none;
  padding: 0;
  margin: var(--space-5) 0;
  
}

.cc-check-list li {
  display: flex;
  align-items: center;
  gap: var(--space-3);
  margin-bottom: var(--space-3);
  font-size: var(--fs-lg);
  color: var(--color-text);
  line-height: var(--lh-normal);
}

.cc-check-icon {
  width: 28px;
  height: 28px;
  background: rgba(16, 185, 129, 0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #10b981;
  font-weight: 700;
  font-size: var(--fs-xs);
  flex-shrink: 0;
}







































/* ================= CALL FLOW TIMELINE SECTION ================= */
.call-flow-section {
  position: relative;
  min-height: auto;
  padding: var(--space-6) var(--container-padding) var(--space-6) var(--container-padding);
  overflow: hidden;
  background: var(--color-bg);
  isolation: isolate;
}

/* ================= SECTION HEADER (τίτλος section) ================= */
.call-flow-section .section-header {
  text-align: center;
  max-width: 900px;
  margin: 0 auto var(--space-6);
  position: relative;
  z-index: 2;
  opacity: 0;
  transform: translateY(30px);
  transition: all var(--duration-slow) var(--ease-standard);
}

.call-flow-section .section-header.visible {
  opacity: 1;
  transform: translateY(0);
}

.call-flow-section .section-header h2 {
  font-family: var(--font-heading);
  font-size: clamp(var(--fs-2xl), 4vw, var(--fs-3xl));
  font-weight: 700;
  color: var(--color-muted);
  margin-bottom: var(--space-4);
  line-height: var(--lh-tight);
}

/* ================= TIMELINE CONTAINER (το wrapper) ================= */
.call-flow-section .timeline {
  position: relative;
  z-index: 2;
  max-width: var(--container-max);
  margin: 0 auto;
  padding: var(--space-4) 0;
}

/* ================= ΚΟΚΚΙΝΗ ΚΕΝΤΡΙΚΗ ΓΡΑΜΜΗ ================= */
.timeline::before {
  content: '';
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  width: 2px;
  height: 100%;
  background: linear-gradient(to bottom, 
    transparent 0%, 
    var(--color-accent) 10%, 
    var(--color-accent) 90%, 
    transparent 100%);
  opacity: 0.3;
  z-index: 1;
}

/* ================= ΚΑΘΕ STEP (1 γραμμή με content + visual) ================= */
.timeline-step {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  margin-bottom: 100px;
  position: relative;
  opacity: 0;
  transform: translateY(50px);
  transition: all var(--duration-slow) var(--ease-standard);
  z-index: 2;
    align-items: start;
}

.timeline-step.visible {
  opacity: 1;
  transform: translateY(0);
}

/* Ζυγά steps (2, 4, 6) αλλάζουν σειρά */
.timeline-step:nth-child(even) .step-content {
  order: 2;
}

.timeline-step:nth-child(even) .step-visual {
  order: 1;
}

/* ================= STEP NUMBER (οι κόκκινοι κύκλοι 1,2,3...) ================= */
.step-number {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  width: 100px;
  height: 100px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 900;
  font-size: var(--fs-3xl);
  font-family: var(--font-heading);
  color: var(--color-accent);
  z-index: 5;
  text-shadow: 0 0 20px rgba(217, 4, 41, 0.5);
  background: rgba(237, 242, 244, 0.9);
  border-radius: 50%;
}

/* Animated rings γύρω από το number */
.step-number::before,
.step-number::after {
  content: '';
  position: absolute;
  border: 2px solid rgba(217, 4, 41, 0.3);
  border-radius: 50%;
  animation: ringExpand 3s ease-out infinite;
  pointer-events: none;
  z-index: -1;
}

.step-number::before {
  width: 100%;
  height: 100%;
  animation-delay: 0s;
}

.step-number::after {
  width: 70%;
  height: 70%;
  border-color: rgba(217, 4, 41, 0.5);
  animation-delay: 0.5s;
}


/* ================= STEP CONTENT (το άσπρο box με τα κείμενα) ================= */
.step-content {
  text-align: center;
  background: rgba(255, 255, 255, 0.95);
  padding: var(--space-3);
  border-radius: var(--radius-xl);
  border: 1px solid rgba(43, 45, 66, 0.1);
  backdrop-filter: blur(20px);
  box-shadow: var(--shadow-lg);
  transition: all var(--duration-slow) var(--ease-standard);
  position: relative;
  overflow: hidden;
  z-index: 3;
  
}

/* Κόκκινη γραμμή στην κορυφή του box */
.step-content::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: var(--color-accent);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform var(--duration-slow) ease;
  z-index: 1;
}

.timeline-step.visible .step-content::before {
  transform: scaleX(1);
}

.transcript-box {
  margin-top: var(--space-4);
  padding: var(--space-4);
  background: rgba(217, 4, 41, 0.05);
  border: 1px solid rgba(217, 4, 41, 0.2);
  border-radius: var(--radius-lg);
  min-height: auto;
  display: flex;
  align-items: center;
  justify-content: flex-start;
}

.typing-text {
  font-family: 'Courier New', monospace;
  font-size: var(--fs-base);
  color: var(--color-muted);
  text-align: left;
  line-height: var(--lh-normal);
  white-space: pre-wrap;
  word-wrap: break-word;
}

/* Hover effect στο box */
.timeline-step:hover .step-content {
  transform: translateY(-10px);
  box-shadow: 
    0 30px 60px rgba(0, 0, 0, 0.12), 
    0 0 40px rgba(217, 4, 41, 0.1);
  border-color: rgba(217, 4, 41, 0.3);
}

.typing-cursor {
  display: inline-block;
  width: 2px;
  height: 1em;
  background: var(--color-accent);
  margin-left: 2px;
  animation: cursorBlink var(--duration-slow) infinite;
}

@keyframes cursorBlink {
  0%, 49% { opacity: 1; }
  50%, 100% { opacity: 0; }
}

/* ================= STEP LABEL (το μικρό badge "Call Initiation") ================= */
.step-label {
  display: inline-flex;
  align-items: center;
  gap: var(--space-2);
  background: rgba(217, 4, 41, 0.15);
  border: 1px solid rgba(217, 4, 41, 0.3);
  padding: var(--space-2) var(--space-4);
  border-radius: 50px;
  font-size: var(--fs-sm);
  font-weight: 600;
  color: var(--color-accent);
  letter-spacing: 0.12em;
  text-transform: uppercase;
  backdrop-filter: blur(10px);
  margin-bottom: var(--space-4);
}

/* Η animated τελεία μέσα στο badge */
.step-label::before {
  content: '';
  width: 8px;
  height: 8px;
  background: var(--color-accent);
  border-radius: 50%;
  animation: badgeDotBlink 2s infinite;
}


/* ================= STEP TITLE (ο μεγάλος τίτλος "Incoming Call Detection") ================= */
.step-title {
  font-family: var(--font-heading);
  font-size: var(--fs-xl);
  font-weight: 700;
  margin-bottom: var(--space-3);
  color: var(--color-muted);
  line-height: var(--lh-tight);
}

/* ================= STEP DESCRIPTION (η περιγραφή "The system detects...") ================= */
.step-description {
  font-size: var(--fs-base);
  line-height: var(--lh-loose);
  color: var(--color-muted);
  opacity: 0.8;
}

/* ================= STEP VISUAL (το δεξί box με τα animations) ================= */
.step-visual {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: auto;
  position: relative;
  z-index: 3;
}





























/* ========== INTERNAL COMPONENTS - LIGHT THEME ========== */

.ai-response-container {
  display: flex;
  flex-direction: column;
  gap: var(--space-4);
  margin-top: var(--space-5);
  padding: var(--space-5);
  background: linear-gradient(
    135deg,
    rgba(237, 242, 244, 0.5),
    rgba(217, 4, 41, 0.05)
  );
  border-radius: var(--radius-xl);
  border: 2px solid rgba(217, 4, 41, 0.2);
  position: relative;
}

/* ================= AI ROBOT ================= */

.ai-robot {
  display: flex;
  align-items: center;
  gap: var(--space-3);
  opacity: 0;
  transform: translateY(20px);
  animation: robotEnter 0.8s ease-out 1s forwards;
}

@keyframes robotEnter {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.robot-avatar {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  border: 3px solid var(--color-accent);
  box-shadow: 
    0 0 25px rgba(217, 4, 41, 0.4),
    0 8px 20px rgba(0, 0, 0, 0.15);
  background: var(--color-secondary);
  padding: var(--space-2);
  object-fit: contain;
  transition: all var(--duration-normal) var(--ease-standard);
}

/* ΠΡΑΣΙΝΟ border όταν είναι active */
.robot-avatar.active {
  border-color: var(--color-success);
  box-shadow: 
    0 0 25px rgba(16, 185, 129, 0.4),
    0 8px 20px rgba(18, 121, 23, 0.205);
}

.robot-status {
  font-size: var(--fs-sm);
  font-weight: 600;
  color: var(--color-accent); /* ΚΟΚΚΙΝΟ default */
  text-transform: uppercase;
  letter-spacing: 0.1em;
  padding: var(--space-2) var(--space-3);
  background: rgba(217, 4, 41, 0.15);
  border-radius: 50px;
  border: 1px solid rgba(217, 4, 41, 0.3);
  transition: all var(--duration-normal) var(--ease-standard);
}

/* ΠΡΑΣΙΝΟ όταν είναι active */
.robot-status.active {
  color: var(--color-success);
  background: rgba(12, 170, 25, 0.15);
  border-color: rgba(16, 185, 129, 0.3);
}




/* ================= TRANSCRIPT BOX (Simple, no bubble) ================= */
.transcript-box {
  margin-top: var(--space-3);
  padding: var(--space-4);
  background: white;
  border: 2px solid rgba(217, 4, 41, 0.2);
  border-radius: var(--radius-lg);
  min-height: 100px;
  display: flex;
  align-items: center;
  box-shadow: 
    0 10px 25px rgba(0, 0, 0, 0.08),
    inset 0 1px 3px rgba(0, 0, 0, 0.05);
  opacity: 0;
  transform: translateY(10px);
  animation: boxAppear 0.6s ease-out 1.8s forwards;
}

@keyframes boxAppear {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.typing-text {
  font-family: var(--font-base);
  font-size: var(--fs-base);
  color: var(--color-muted);
  line-height: var(--lh-loose);
  text-align: left;
  width: 100%;
}

/* ================= WAVEFORM ================= */
.waveform-container {
  display: flex;
  align-items: flex-end;
  justify-content: center;
  gap: 6px;
  height: 60px;
  opacity: 0;
  transition: opacity var(--duration-normal) var(--ease-standard);
  padding: var(--space-3);
  border-radius: var(--radius-md);
  background: rgba(217, 4, 41, 0.05);
}

.waveform-container.active {
  opacity: 1;
}

.wave-bar {
  width: 5px;
  background: linear-gradient(to top, var(--color-success), rgba(16, 185, 129, 0.5));
  border-radius: var(--radius-sm);
  box-shadow: 0 0 8px rgba(16, 185, 129, 0.3);
  animation: wave 1.2s ease-in-out infinite;
  transform-origin: bottom;
}

.wave-bar:nth-child(1) { height: 30%; animation-delay: 0s; }
.wave-bar:nth-child(2) { height: 50%; animation-delay: 0.1s; }
.wave-bar:nth-child(3) { height: 70%; animation-delay: 0.2s; }
.wave-bar:nth-child(4) { height: 40%; animation-delay: 0.3s; }
.wave-bar:nth-child(5) { height: 60%; animation-delay: 0.4s; }
.wave-bar:nth-child(6) { height: 80%; animation-delay: 0.5s; }
.wave-bar:nth-child(7) { height: 50%; animation-delay: 0.6s; }
.wave-bar:nth-child(8) { height: 70%; animation-delay: 0.7s; }
.wave-bar:nth-child(9) { height: 40%; animation-delay: 0.8s; }
.wave-bar:nth-child(10) { height: 60%; animation-delay: 0.9s; }

@keyframes wave {
  0%, 100% { transform: scaleY(0.7); opacity: 0.6; }
  50% { transform: scaleY(1.5); opacity: 1; }
}

/* ================= PHONE INTERFACE ================= */
.phone-interface {
  position: relative;
  width: 280px;
  height: 520px;
  background: var(--color-primary);
  padding: var(--space-3);
  margin: 0 auto;
  border-radius: 40px;
  box-shadow: 
    0 25px 60px rgba(0, 0, 0, 0.4),
    0 0 0 2px rgba(237, 242, 244, 0.1),
    inset 0 0 20px rgba(0, 0, 0, 0.2);
  transform: rotateY(-15deg) rotateX(5deg);
  transition: transform var(--duration-slow) var(--ease-standard);
  animation: phoneFloat 6s ease-in-out infinite;
}

.phone-interface:hover {
  transform: rotateY(0deg) rotateX(0deg) scale(1.02);
}

@keyframes phoneFloat {
  0%, 100% { transform: translateY(0px) rotateY(-15deg) rotateX(5deg); }
  50% { transform: translateY(-20px) rotateY(-15deg) rotateX(5deg); }
}

/* Shadow underneath */
.phone-interface::after {
  content: '';
  position: absolute;
  bottom: -30px;
  left: 10%;
  width: 80%;
  height: 30px;
  background: radial-gradient(ellipse, rgba(0,0,0,0.4), transparent);
  filter: blur(15px);
  z-index: -1;
}

.phone-screen {
  background: linear-gradient(135deg, rgba(217, 4, 41, 0.15), rgba(43, 45, 66, 0.95));
  border-radius: 30px;
  padding: var(--space-6) var(--space-4);
  text-align: center;
  box-shadow: inset 0 2px 10px rgba(0, 0, 0, 0.2);
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  position: relative;
  border: 2px solid rgba(237, 242, 244, 0.1);
  overflow: hidden;
}

/* Notch */
.phone-screen::before {
  content: '';
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 100px;
  height: 22px;
  background: var(--color-primary);
  border-radius: 0 0 15px 15px;
  z-index: 10;
}

/* Phone Icon με Ripple */
.phone-icon {
  width: 90px;
  height: 90px;
  background: linear-gradient(135deg, var(--color-accent), #ff6b7a);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2.5rem;
  margin-bottom: var(--space-5);
  position: relative;
  animation: avatarPulse 2s ease-in-out infinite;
  box-shadow: 0 10px 30px rgba(217, 4, 41, 0.4);
}

.phone-icon::before,
.phone-icon::after {
  content: '';
  position: absolute;
  inset: -8px;
  border-radius: 50%;
  border: 2px solid var(--color-accent);
  opacity: 0;
  animation: ripple 2s linear infinite;
}

.phone-icon::after {
  animation-delay: 1s;
}

@keyframes avatarPulse {
  0%, 100% { transform: scale(1); }
  50% { transform: scale(1.05); }
}

@keyframes ripple {
  0% { transform: scale(1); opacity: 1; }
  100% { transform: scale(1.6); opacity: 0; }
}

/* Caller ID */
.caller-id {
  font-size: var(--fs-xl);
  font-weight: 700;
  font-family: var(--font-heading);
  margin-bottom: var(--space-2);
  color: var(--color-secondary);
  text-shadow: 0 2px 4px rgba(0,0,0,0.3);
}

/* Caller Number/Status */
.caller-number {
  font-size: var(--fs-sm);
  color: rgba(237, 242, 244, 0.7);
  margin-bottom: var(--space-5);
  font-family: var(--font-body);
  letter-spacing: 0.05em;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-2);
}

.caller-number::before {
  content: '';
  width: 6px;
  height: 6px;
  background: var(--color-accent);
  border-radius: 50%;
  animation: blink 1.5s infinite;
}

@keyframes blink {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.3; }
}

/* Ringing Indicator - Κυματιστά bars */
.ringing-indicator {
  display: flex;
  justify-content: center;
  gap: var(--space-2);
  margin-bottom: var(--space-5);
  padding: var(--space-3) 0;
  height: 40px;
  align-items: center;
}

/* Default: ΚΟΚΚΙΝΟ (Ringing) */
.ring {
  width: 4px;
  height: 20px;
  background: var(--color-accent); /* Κόκκινο */
  border-radius: 2px;
  animation: soundWave 1.2s ease-in-out infinite;
  box-shadow: 0 0 10px rgba(217, 4, 41, 0.5);
  transition: all 0.5s ease; /* Smooth transition */
}

/* ΠΡΑΣΙΝΟ όταν είναι connected */
.ringing-indicator.connected .ring {
  background: var(--color-success); /* Πράσινο */
  box-shadow: 0 0 10px rgba(16, 185, 129, 0.5);
  animation: soundWave 1.2s ease-in-out infinite, greenPulse 2s infinite;
}

@keyframes greenPulse {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.7; }
}

/* Animation delays για τα bars */
.ring:nth-child(1) { animation-delay: 0s; height: 15px; }
.ring:nth-child(2) { animation-delay: 0.1s; height: 25px; }
.ring:nth-child(3) { animation-delay: 0.2s; height: 20px; }
.ring:nth-child(4) { animation-delay: 0.3s; height: 30px; }
.ring:nth-child(5) { animation-delay: 0.4s; height: 18px; }

@keyframes soundWave {
  0%, 100% { 
    transform: scaleY(1);
    opacity: 0.6;
  }
  50% { 
    transform: scaleY(1.5);
    opacity: 1;
  }
}

/* Call Status */
.call-status {
  font-size: var(--fs-xs);
  color: var(--color-accent);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  padding: var(--space-2) var(--space-4);
  background: rgba(217, 4, 41, 0.15);
  border-radius: 20px;
  border: 1px solid rgba(217, 4, 41, 0.3);
  transition: all var(--duration-normal) var(--ease-standard);
}

.call-status.answered {
  color: var(--color-success);
  background: rgba(16, 185, 129, 0.15);
  border-color: rgba(16, 185, 129, 0.3);
}






/* ================= STEP 2: CHAT INTERFACE ================= */

/* Chat Wrapper */
.chat-wrapper {
  background: var(--color-primary);
  border-radius: var(--radius-xl);
  width: 100%;
  max-width: 400px;
  margin: 0 auto;
  overflow: hidden;
  box-shadow: 
    0 25px 60px rgba(0, 0, 0, 0.4),
    0 0 0 2px rgba(237, 242, 244, 0.1);
  border: 1px solid rgba(237, 242, 244, 0.15);
}

/* Chat Header */
.chat-header {
  background: linear-gradient(135deg, var(--color-accent) 0%, #ef233c 100%);
  padding: var(--space-4) var(--space-4);
  display: flex;
  align-items: center;
  gap: var(--space-3);
  color: var(--color-secondary);
}

.chat-avatar {
  width: 45px;
  height: 45px;
  border-radius: 50%;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--color-secondary);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

.chat-avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 50%;
}

.chat-info {
  flex: 1;
}

.chat-name {
  font-size: var(--fs-base);
  font-weight: 600;
  margin-bottom: var(--space-1);
}

.chat-status {
  font-size: var(--fs-xs);
  opacity: 0.9;
  display: flex;
  align-items: center;
  gap: var(--space-1);
}

.chat-status::before {
  content: '●';
  color: #10b981;
  font-size: var(--fs-sm);
  animation: statusPulse 2s infinite;
}

@keyframes statusPulse {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.5; }
}

/* Chat Container */
.chat-container {
  padding: var(--space-4);
  height: 400px;
  overflow-y: auto;
  background: var(--color-primary);
  display: flex;
  flex-direction: column;
  gap: var(--space-3);
}

/* AI Message - ΑΡΙΣΤΕΡΑ */
.chat-bubble.ai {
  background: rgba(237, 242, 244, 0.1);
  color: var(--color-secondary);
  padding: var(--space-3) var(--space-4);
  border-radius: var(--radius-lg) var(--radius-lg) var(--radius-lg) var(--radius-sm);
  max-width: 85%;
  font-size: var(--fs-sm);
  line-height: var(--lh-normal);
  align-self: flex-start;
  border: 1px solid rgba(237, 242, 244, 0.15);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
  margin-right: auto;
  position: relative;
}

/* Caller Message - ΔΕΞΙΑ */
.chat-bubble.caller {
  background: var(--color-accent);
  color: var(--color-secondary);
  padding: var(--space-3) var(--space-4);
  border-radius: var(--radius-lg) var(--radius-lg) var(--radius-sm) var(--radius-lg);
  max-width: 85%;
  font-size: var(--fs-sm);
  line-height: var(--lh-normal);
  align-self: flex-end;
  box-shadow: 
    0 4px 12px rgba(217, 4, 41, 0.3),
    0 0 20px rgba(217, 4, 41, 0.1);
  margin-left: auto;
  position: relative;
}

/* Labels ποιος μιλάει */
.chat-bubble.ai::before {
  content: 'ai Victor';
  display: block;
  font-size: var(--fs-xs);
  color: var(--color-accent);
  margin-bottom: var(--space-1);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.chat-bubble.caller::before {
  content: 'Customer';
  display: block;
  font-size: var(--fs-xs);
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: var(--space-1);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

/* Typing indicator - "thinking..." */
.chat-bubble.ai.typing {
  background: rgba(237, 242, 244, 0.08);
  padding: var(--space-3) var(--space-4);
  width: fit-content;
  color: rgba(237, 242, 244, 0.7);
  font-style: italic;
}

.chat-bubble.ai.typing::before {
  content: 'ai Victor thinking...';
}

.typing-dots {
  display: flex;
  gap: var(--space-1);
  align-items: center;
  height: 20px;
  margin-top: var(--space-1);
}

.typing-dots span {
  width: 8px;
  height: 8px;
  background: rgba(237, 242, 244, 0.5);
  border-radius: 50%;
  animation: typingBounce 1.4s ease-in-out infinite;
}

.typing-dots span:nth-child(2) { animation-delay: 0.2s; }
.typing-dots span:nth-child(3) { animation-delay: 0.4s; }

@keyframes typingBounce {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-8px); }
}

/* Intent Detection - Πράσινα badges */
.intent-detection {
  padding: var(--space-4);
  background: var(--color-primary);
  display: flex;
  gap: var(--space-2);
  flex-wrap: wrap;
  border-top: 1px solid rgba(237, 242, 244, 0.1);
  opacity: 0;
  transform: translateY(10px);
  transition: all var(--duration-normal) var(--ease-standard);
}

.intent-detection.visible {
  opacity: 1;
  transform: translateY(0);
}

.intent-badge {
  background: rgba(16, 185, 129, 0.15);
  color: #10b981;
  padding: var(--space-2) var(--space-3);
  border-radius: 50px;
  font-size: var(--fs-xs);
  font-weight: 600;
  border: 1px solid rgba(16, 185, 129, 0.3);
  display: flex;
  align-items: center;
  gap: var(--space-2);
  transition: all var(--duration-fast) var(--ease-standard);
}

.intent-badge:hover {
  background: rgba(16, 185, 129, 0.25);
  transform: scale(1.05);
}

.intent-badge::before {
  content: '●';
  font-size: var(--fs-xs);
  animation: badgeBlink 2s infinite;
}

@keyframes badgeBlink {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.3; }
}

/* Scrollbar Styling */
.chat-container::-webkit-scrollbar {
  width: 6px;
}

.chat-container::-webkit-scrollbar-track {
  background: rgba(237, 242, 244, 0.05);
  border-radius: var(--radius-sm);
}

.chat-container::-webkit-scrollbar-thumb {
  background: rgba(237, 242, 244, 0.2);
  border-radius: var(--radius-sm);
  transition: background var(--duration-fast);
}

.chat-container::-webkit-scrollbar-thumb:hover {
  background: rgba(237, 242, 244, 0.3);
}














/* ================= STEP 4: CALENDAR WIDGET ================= */

.calendar-widget {
  background: var(--color-primary);
  border-radius: var(--radius-xl);
  padding: var(--space-5);
  width: 100%;
  max-width: 420px;
  margin: 0 auto;
  box-shadow: 
    0 30px 70px rgba(0, 0, 0, 0.4),
    0 0 0 2px rgba(237, 242, 244, 0.1);
  border: 2px solid rgba(237, 242, 244, 0.15);
  color: var(--color-secondary);
  position: relative;
  overflow: visible; /* ← ΑΛΛΑΓΗ: για το confirmation popup */
}

/* Gradient overlay */
.calendar-widget::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(217, 4, 41, 0.05),
    transparent 50%,
    rgba(237, 242, 244, 0.03)
  );
  pointer-events: none;
  z-index: 0;
}

/* Calendar Header */
.calendar-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: var(--space-5);
  padding-bottom: var(--space-3);
  border-bottom: 2px solid rgba(237, 242, 244, 0.1);
  position: relative;
  z-index: 1;
}

.calendar-title {
  color: var(--color-secondary);
  font-size: var(--fs-xl);
  font-weight: 700;
  font-family: var(--font-heading);
  letter-spacing: -0.02em;
}

.calendar-nav-btn {
  background: rgba(237, 242, 244, 0.1);
  border: 1px solid rgba(237, 242, 244, 0.2);
  color: var(--color-secondary);
  width: 36px;
  height: 36px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all var(--duration-fast) var(--ease-standard);
  font-size: var(--fs-lg);
}

.calendar-nav-btn:hover {
  background: var(--color-accent);
  border-color: var(--color-accent);
  transform: scale(1.1);
}

/* Calendar Grid */
.calendar-grid {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: var(--space-2);
  margin-bottom: var(--space-5);
  position: relative;
  z-index: 1;
}

/* Day Headers */
.calendar-day-header {
  text-align: center;
  font-size: var(--fs-xs);
  color: rgba(237, 242, 244, 0.6);
  padding: var(--space-2);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

/* Calendar Days */
.calendar-day {
  text-align: center;
  padding: var(--space-3);
  border-radius: var(--radius-md);
  font-size: var(--fs-sm);
  cursor: pointer;
  transition: all var(--duration-fast) var(--ease-standard);
  color: var(--color-secondary);
  background: rgba(237, 242, 244, 0.05);
  border: 1px solid transparent;
  font-weight: 500;
  position: relative;
  z-index: 1; /* ← ΠΡΟΣΘΗΚΗ */
}

.calendar-day:hover {
  background: rgba(237, 242, 244, 0.15);
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}



/* Selected Day - Γεμάτο κόκκινο (ΜΟΝΟ το 10) */
.calendar-day.selected {
  background: var(--color-accent); /* Γεμάτο κόκκινο */
  color: var(--color-secondary);
  border-color: var(--color-accent);
  box-shadow: 
    0 0 20px rgba(217, 4, 41, 0.6),
    0 8px 20px rgba(217, 4, 41, 0.4);
  transform: scale(1.08);
  font-weight: 700;
}

/* Disabled Days */
.calendar-day.disabled {
  opacity: 0.3;
  cursor: not-allowed;
  background: transparent;
}

.calendar-day.disabled:hover {
  background: transparent;
  transform: none;
  box-shadow: none;
}

/* Time Slots Header */
.time-slots-header {
  font-size: var(--fs-base);
  font-weight: 700;
  color: var(--color-secondary);
  margin-bottom: var(--space-3);
  padding-bottom: var(--space-2);
  border-bottom: 1px solid rgba(237, 242, 244, 0.1);
  display: flex;
  align-items: center;
  gap: var(--space-2);
  position: relative;
  z-index: 1;
}

.time-slots-header::before {
  content: '🕐';
  font-size: var(--fs-xl);
}

/* Time Slots Grid */
.time-slots {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--space-3);
  position: relative;
  z-index: 1;
}

/* Time Slot Buttons */
.time-slot {
  text-align: center;
  padding: var(--space-3) var(--space-4);
  background: rgba(237, 242, 244, 0.08);
  border-radius: var(--radius-md);
  font-size: var(--fs-base);
  cursor: pointer;
  transition: all var(--duration-fast) var(--ease-standard);
  color: var(--color-secondary);
  border: 2px solid rgba(237, 242, 244, 0.15);
  font-weight: 600;
  position: relative;
  /* ← ΑΦΑΙΡΕΘΗΚΑΝ τα opacity: 0 και transform */
}

.time-slot:hover {
  background: rgba(217, 4, 41, 0.2);
  border-color: rgba(217, 4, 41, 0.5);
  color: #ff6b7a;
  transform: translateY(-3px);
  box-shadow: 0 6px 15px rgba(217, 4, 41, 0.2);
}

/* Selected Time Slot */
.time-slot.selected {
  background: var(--color-success);
  color: var(--color-secondary);
  border-color: var(--color-success);
  box-shadow: 
    0 0 25px rgba(16, 185, 129, 0.5),
    0 8px 20px rgba(16, 185, 129, 0.3);
  transform: scale(1.05);
}

.time-slot.selected::after {
  content: '✓';
  position: absolute;
  top: 4px;
  right: 8px;
  font-size: var(--fs-sm);
  font-weight: 700;
  color: var(--color-secondary);
}

/* Confirmation Animation - ΠΡΑΣΙΝΟ */
.confirmation-animation {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background: var(--color-success);
  padding: var(--space-3);        /* Άλλαξε από space-4 → space-3 */
  border-radius: var(--radius-md); /* Άλλαξε από radius-lg → radius-md */
  text-align: center;
  display: none;
  color: var(--color-secondary);
  z-index: 100;
  min-width: 180px;               /* Άλλαξε από 220px → 180px */
  max-width: 220px;               /* Πρόσθεσε max-width */
}

.confirmation-animation.show {
  display: block;
  animation: confirmPop 0.5s var(--ease-standard) forwards;
}

@keyframes confirmPop {
  0% { 
    transform: translate(-50%, -50%) scale(0.5) rotate(-10deg);
    opacity: 0;
  }
  70% { 
    transform: translate(-50%, -50%) scale(1.1) rotate(5deg);
    opacity: 1;
  }
  100% { 
    transform: translate(-50%, -50%) scale(1) rotate(0deg);
    opacity: 1;
  }
}

.checkmark {
  font-size: 2rem;                /* Άλλαξε από 2.5rem → 2rem */
  margin-bottom: var(--space-1);  /* Άλλαξε από space-2 → space-1 */
  color: var(--color-secondary);
  animation: checkmarkBounce 0.6s ease-out;
}

@keyframes checkmarkBounce {
  0%, 100% { transform: scale(1); }
  50% { transform: scale(1.3); }
}

.confirmation-text {
  font-size: var(--fs-sm);        /* Άλλαξε από fs-base → fs-sm */
  font-weight: 700;
  margin-bottom: var(--space-1);
  color: var(--color-secondary);
}

.confirmation-details {
  font-size: 11px;                /* Άλλαξε από fs-xs → 11px */
  opacity: 0.9;
  line-height: var(--lh-tight);   /* Άλλαξε από lh-normal */
  color: var(--color-secondary);
}




























/* ================= STEP 6: NOTIFICATIONS ================= */

.notification-stack {
  display: flex;
  flex-direction: column;
  gap: var(--space-3);
  width: 100%;
  max-width: 350px;
  margin: 0 auto;
  position: relative;
  perspective: 1000px;
}

.notification-card {
  background: var(--color-primary);
  border-radius: var(--radius-xl);
  padding: var(--space-4);
  border: 2px solid rgba(237, 242, 244, 0.15);
  display: flex;
  align-items: center;
  gap: var(--space-3);
  position: relative;
  overflow: hidden;
  opacity: 0;
  transform: translateX(50px) rotateY(-15deg);
  transition: all var(--duration-normal) var(--ease-standard);
 box-shadow: 
    var(--shadow-lg),
    0 20px 40px rgba(0, 0, 0, 0.3);
}

.notification-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(237, 242, 244, 0.05) 0%, transparent 100%);
  pointer-events: none;
  z-index: 0;
}

.notification-icon {
  width: 44px;
  height: 44px;
  border-radius: var(--radius-lg);
  display: flex;
  align-items: center;
  justify-content: center;
 
  flex-shrink: 0;
  position: relative;
  z-index: 1;
 
  background: rgba(217, 4, 41, 0.15);
  color: var(--color-accent);
  border: 1px solid rgba(217, 4, 41, 0.3);
}

.notification-card.sms .notification-icon {
  background: rgba(217, 4, 41, 0.1);
  border-color: rgba(217, 4, 41, 0.2);
}

.notification-card.email .notification-icon {
  background: rgba(217, 4, 41, 0.2);
  border-color: rgba(217, 4, 41, 0.4);
}

.notification-card.alert .notification-icon {
  background: rgba(217, 4, 41, 0.25);
  border-color: rgba(217, 4, 41, 0.5);
  box-shadow: 0 0 15px rgba(217, 4, 41, 0.3);
}

.notification-content {
  flex: 1;
  position: relative;
  z-index: 1;
}

.notification-title {
 
  
  color: var(--color-secondary);
  margin-bottom: var(--space-1);

}

.notification-desc {
  
  color: rgba(237, 242, 244, 0.6);
  line-height: 1.4;
}

.status-indicator {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--color-success);
  box-shadow: 0 0 10px var(--color-success);
  animation: statusPulse 2s infinite;
  flex-shrink: 0;
  position: relative;
  z-index: 1;
}


/* Εμφάνιση card */
.notification-card.show {
  opacity: 1;
  transform: translateX(0);
}

























/* ================= STEP 5: CRM FORM ================= */

.crm-form {
  background: var(--color-primary);
  border-radius: var(--radius-xl);
  padding: var(--space-5);
  width: 100%;
  max-width: 400px;
  margin: 0 auto;
 
  border: 2px solid rgba(237, 242, 244, 0.15);
  position: relative;
  overflow: hidden;
}

/* Gradient overlay */
.crm-form::before {
  content: '';
  position: absolute;
  inset: 0;
 
  pointer-events: none;
  z-index: 0;
}

/* CRM Header */
.crm-header {
  margin-bottom: var(--space-5);
  padding-bottom: var(--space-3);
  border-bottom: 2px solid rgba(237, 242, 244, 0.1);
  position: relative;
  z-index: 1;
}

.crm-header-title {
  font-size: var(--fs-lg);
  font-weight: 700;
  color: var(--color-secondary);
  font-family: var(--font-heading);
  display: flex;
  align-items: center;
  gap: var(--space-2);
}



/* CRM Field */
.crm-field {
  margin-bottom: var(--space-4);
  opacity: 0;
  transform: translateY(10px);
  transition: all var(--duration-normal) var(--ease-standard);
  position: relative;
  z-index: 1;
}

.crm-field.visible {
  opacity: 1;
  transform: translateY(0);
}

.crm-label {
  display: block;
  color: rgba(237, 242, 244, 0.7);
  font-size: var(--fs-xs);
  margin-bottom: var(--space-2);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-weight: 600;
}

.crm-input {
  background: rgba(237, 242, 244, 0.05);
  border: 2px solid rgba(237, 242, 244, 0.1);
  border-radius: var(--radius-md);
  padding: var(--space-3);
  color: var(--color-secondary);
  font-size: var(--fs-base);
  min-height: 45px;
  transition: all var(--duration-normal) var(--ease-standard);
  display: flex;
  align-items: center;
  position: relative;
}

.crm-input:empty::before {
  content: 'Processing...';
  color: rgba(237, 242, 244, 0.3);
  font-style: italic;
  font-size: var(--fs-sm);
}

.crm-input.filled {
  border-color: var(--color-accent);
  background: rgba(217, 4, 41, 0.1);
  color: var(--color-secondary);
  font-weight: 600;
  box-shadow: 0 0 20px rgba(217, 4, 41, 0.2);
}

/* Icon in filled state */
.crm-input.filled::after {
  content: '✓';
  position: absolute;
  right: var(--space-3);
  top: 50%;
  transform: translateY(-50%);
  color: #10b981;
  font-size: var(--fs-lg);
  font-weight: 700;
  animation: checkPop 0.3s ease-out;
}

@keyframes checkPop {
  0% { transform: translateY(-50%) scale(0); }
  70% { transform: translateY(-50%) scale(1.2); }
  100% { transform: translateY(-50%) scale(1); }
}

/* Typing animation */
.typing-fill {
  display: inline-block;
  animation: typingReveal 0.5s ease-out;
}

@keyframes typingReveal {
  from { 
    opacity: 0; 
    transform: translateX(-10px);
  }
  to { 
    opacity: 1; 
    transform: translateX(0);
  }
}

/* Tag Container */
.tag-container {
  display: flex;
  gap: var(--space-2);
  flex-wrap: wrap;
  margin-top: var(--space-5);
  padding-top: var(--space-4);
  border-top: 2px solid rgba(237, 242, 244, 0.1);
  opacity: 0;
  transform: translateY(10px);
  transition: all var(--duration-normal) var(--ease-standard);
  position: relative;
  z-index: 1;
}

.tag-container.visible {
  opacity: 1;
  transform: translateY(0);
}

/* Tags */
.tag {
  background: rgba(16, 185, 129, 0.15);
  color: #10b981;
  padding: var(--space-2) var(--space-3);
  border-radius: 50px;
  font-size: var(--fs-xs);
  border: 1px solid rgba(16, 185, 129, 0.3);
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  gap: var(--space-1);
  animation: tagSlideIn 0.4s ease-out backwards;
}

.tag:nth-child(1) { animation-delay: 0s; }
.tag:nth-child(2) { animation-delay: 0.1s; }
.tag:nth-child(3) { animation-delay: 0.2s; }

@keyframes tagSlideIn {
  from {
    opacity: 0;
    transform: translateX(-20px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

.tag::before {
  content: '●';
  font-size: 0.5rem;
  animation: tagPulse 2s infinite;
}

@keyframes tagPulse {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.4; }
}






















/* ================= PARALLAX STATS SECTION - ZERO GAPS FIX ================= */
.cc-parallax-section {
  position: relative;
  min-height: auto;
  padding: var(--space-6) var(--container-padding);
  background-color: var(--color-primary);
  background-image: 
    linear-gradient(rgba(237, 242, 244, 0.05) 2px, transparent 2px),
    linear-gradient(90deg, rgba(237, 242, 244, 0.05) 2px, transparent 2px);
  background-size: 30px 30px;
  isolation: isolate;
}

.cc-parallax-section .container {
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 var(--container-padding);
}


.cc-parallax-title {
  font-family: var(--font-heading);
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  font-weight: 700;
  color: var(--color-text);
  text-shadow: 0 0 40px rgba(217, 4, 41, 0.4);
  margin-bottom: clamp(2rem, 4vw, 3rem);
  text-align: center;
}

.cc-parallax-stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: clamp(1rem, 2vw, 1.5rem);
  width: 100%;
}

.cc-parallax-stat {
  position: relative;
  text-align: center;
  padding: clamp(1.5rem, 3vw, 2rem);
  background: rgba(237, 242, 244, 0.05);
  backdrop-filter: blur(20px);
  border-radius: var(--radius-xl);
  border: 1px solid rgba(237, 242, 244, 0.1);
  transition: all var(--duration-slow) var(--ease-standard);
  min-width: 0;
  overflow: visible;
}

.cc-parallax-stat:hover {
  background: rgba(237, 242, 244, 0.08);
  border-color: rgba(217, 4, 41, 0.3);
  box-shadow: var(--shadow-lg);
}

.cc-parallax-number {
  font-family: var(--font-heading);
  font-size: clamp(2rem, 5vw, 3.5rem);
  font-weight: 700;
  color: var(--color-accent);
  display: block;
  line-height: 1;
  margin-bottom: var(--space-3);
  text-shadow: 0 0 25px rgba(217, 4, 41, 0.5);
}



.cc-parallax-stat.fulltime .cc-parallax-number span {
  font-family: var(--font-heading);
  font-size: clamp(1.5rem, 4vw, 2.5rem);
  font-weight: 700;
  color: var(--color-accent);
  text-shadow: 0 0 25px rgba(217, 4, 41, 0.5);
}

.cc-parallax-stat.fulltime small {
  font-size: clamp(0.625rem, 1.5vw, 0.75rem);
  color: var(--color-secondary);
  opacity: 0.7;
  margin-left: 2px;
  margin-right: 8px;
  font-weight: 400;
}

.cc-parallax-label {
  font-size: clamp(0.625rem, 1.5vw, 0.875rem);
  color: rgba(237, 242, 244, 0.9);
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-weight: 600;
  display: block;
  line-height: 1.4;
}

/* Scroll Reveal */
.cc-reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

.cc-reveal.active {
  opacity: 1;
  transform: translateY(0);
}

.cc-reveal-delay-1 { transition-delay: 0.1s; }
.cc-reveal-delay-2 { transition-delay: 0.2s; }
.cc-reveal-delay-3 { transition-delay: 0.3s; }















/* ================= INTEGRATION SECTION ================= */
.cc-integration-section {
  position: relative;
  padding: var(--space-6) var(--container-padding);
  background: transparent;   /* ✅ */
  isolation: isolate;
}

/* ✅ Particles Background */
.cc-integration-section .cc-shared-particles {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
  pointer-events: none;
}

/* Header */
.cc-integration-header {
  text-align: center;
  
  margin: 0 auto var(--space-6);
}

.cc-integration-header .cc-eyebrow {
  margin-bottom: var(--space-5);
}

.cc-integration-header .cc-section-title {
 
  color: var(--color-muted);
  margin-bottom: var(--space-4);
 
}

.cc-integration-header .cc-section-desc {
 
  line-height: var(--lh-normal);
  max-width: 600px;
  margin: 0 auto;
  color: var(--color-muted);
  opacity: 0.8;
}

/* Content Grid */
.cc-integration-content {
  position: relative;
  z-index: 1;
  max-width: var(--container-max);
  margin: 0 auto var(--space-6);
  padding: 0 var(--container-padding);
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-1); 
  align-items: center;
}


.cc-integration-visual {
  position: relative;
  display: flex;
  justify-content: center;
}

.cc-phone-mockup {
  position: relative;
  width: 300px;
  height: 600px;
  background: var(--color-primary);
  border-radius: 40px;
  padding: var(--space-4);
  box-shadow: var(--shadow-lg);
  transform: rotateY(-15deg) rotateX(5deg);
  transition: transform var(--duration-slow) var(--ease-standard);
  animation: float 6s ease-in-out infinite;
}

.cc-phone-mockup:hover {
  transform: rotateY(0deg) rotateX(0deg) scale(1.02);
}

@keyframes float {
  0%, 100% { transform: translateY(0px) rotateY(-15deg) rotateX(5deg); }
  50% { transform: translateY(-20px) rotateY(-15deg) rotateX(5deg); }
}

.cc-phone-screen {
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, rgba(217, 4, 41, 0.2), rgba(43, 45, 66, 0.9));
  border-radius: 30px;
  overflow: hidden;
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  border: 2px solid rgba(237, 242, 244, 0.1);
}

.cc-phone-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.cc-phone-mockup::after {
  content: '';
  position: absolute;
  bottom: -20px;
  left: 10%;
  width: 80%;
  height: 20px;
  background: radial-gradient(ellipse, rgba(0,0,0,0.3), transparent);
  filter: blur(10px);
}


/* Vertical layout - το ένα κάτω από το άλλο */
.cc-integration-pillars {
  display: flex;
  flex-direction: column;
  gap: var(--space-4);
  width: 100%;
  max-width: 500px;
}

.cc-integration-pillars .cc-solution-pillar {
  position: relative;
  background: var(--color-surface);
  border-radius: var(--radius-lg);
  padding: var(--space-4);
  box-shadow: var(--shadow-md);
  border-top: 4px solid var(--color-accent);
  transition: transform var(--duration-normal) var(--ease-standard);
}

.cc-integration-pillars .cc-solution-pillar:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}

.cc-integration-pillars .cc-pillar-content {
  display: flex;
  align-items: flex-start;
  gap: var(--space-2);
}

.cc-integration-pillars .cc-check-icon {
  color: var(--color-accent);
  font-size: var(--fs-lg);
  font-weight: 700;
  flex-shrink: 0;
}




/* CTA Button - Κεντραρισμένο κάτω από το grid */
.cc-integration-section  .hero-cta {
  position: relative;
  z-index: 1;
  text-align: center;
  margin: 0 auto;
  padding: 0 var(--container-padding) var(--space-6);
  max-width: var(--container-max);
}








































/* ==========================================================
   📱 MOBILE & TABLET RESPONSIVE FIXES - COMPLETE
   ========================================================== */

/* ================= SCALE DOWN - 1200px ================= */
@media (max-width: 1200px) {
  :root {
    --fs-3xl: 2.8rem;
    --fs-2xl: 2rem;
    --fs-xl: 1.35rem;
    --fs-lg: 1.05rem;
    --fs-base: 0.95rem;
    --space-6: 2.5rem;
    --space-5: 1.8rem;
    --space-4: 1.2rem;
    --space-3: 0.9rem;
    --container-padding: 1.5rem;
  }

  .container {
    max-width: 95%;
    padding: 0 var(--container-padding);
  }

  .cc-hero-inner {
    gap: 2rem;
    padding: 2rem var(--container-padding);
  }

  .cc-hero-robot img {
    max-width: 320px;
  }

  .cc-hero-title {
    font-size: var(--fs-3xl);
  }

  .cc-problem-grid {
    gap: 1.5rem;
  }

  .cc-problem-card {
    padding: 1.5rem;
  }

  .cc-hologram-pillars {
    grid-template-columns: repeat(3, 1fr);
    gap: 1rem;
  }

  .cc-horizontal-slide {
    flex: 0 0 85vw;
    min-width: auto;
    padding: 2rem;
    gap: 2rem;
  }

  .cc-slide-media {
    height: 280px;
  }

  .cc-slide-content h3 {
    font-size: 1.5rem;
  }

  .cc-parallax-stats {
    gap: 1rem;
  }

  .cc-parallax-stat {
    padding: 1.5rem;
  }

  .cc-parallax-number {
    font-size: 2.2rem;
  }

  .cc-phone-mockup {
    width: 280px;
    height: 560px;
  }

  .cc-integration-content {
    gap: 2rem;
  }

  /* call-flow-section κρυμμένο intentionally */
  .call-flow-section {
    display: none;
  }
}

/* ================= HEADER - SCROLL FIX ================= */
.header,
header,
.site-header,
.main-header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 9999;
  transition: transform 0.3s ease, background 0.3s ease;
  will-change: transform;
}

/* Κρυμμένο header όταν scroll down */
.header.hidden {
  transform: translateY(-100%);
}

/* Φαίνεται όταν scroll up */
.header.visible {
  transform: translateY(0);
}

/* Offset για το body ώστε να μην κρύβεται το περιεχόμενο */
body {
  padding-top: var(--header-height, 80px);
}

@media (max-width: 768px) {
  body {
    padding-top: var(--header-height, 60px);
  }
}

/* ================= MEDIUM TABLETS (1024px) ================= */
@media (max-width: 1024px) {
  :root {
    --fs-3xl: 2.4rem;
    --fs-2xl: 1.8rem;
    --fs-xl: 1.25rem;
  }

  .cc-hero-inner {
    grid-template-columns: 1fr;
    text-align: center;
    padding: 2rem var(--container-padding);
  }

  .cc-hero-robot {
    order: -1;
    transform: translateX(0);
    margin: 0 auto;
  }

  .cc-hero-robot img {
    max-width: 280px;
  }

  .cc-hero-content {
    text-align: center;
  }

  .cc-hero-cta {
    justify-content: center;
  }

  .cc-problem-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .cc-hologram-pillars {
    grid-template-columns: repeat(2, 1fr);
  }

  /* Μόνο μία φορά εδώ, δεν επαναλαμβάνεται */
  .cc-integration-content {
    grid-template-columns: 1fr;
    gap: 3rem;
  }

  .cc-phone-mockup {
    margin: 0 auto;
  }

  .cc-parallax-stats {
    grid-template-columns: repeat(2, 1fr);
  }

  .cc-voice-visualizer {
    justify-content: center;
  }
}

/* ================= SMALL TABLETS (900px) ================= */
@media (max-width: 900px) {
  html, body {
    overflow-x: hidden;
    width: 100%;
  }

  section {
    overflow-x: hidden; /* fix: clip δεν υποστηρίζεται παντού σε iOS */
  }

  /* HORIZONTAL SCROLL → ΚΑΝΟΝΙΚΗ ΣΤΗΛΗ */
  .cc-horizontal-section {
    height: auto;
    padding: 3rem 0;
  }

  .cc-horizontal-container {
    position: relative;
    height: auto;
    overflow: visible;
  }

  .cc-horizontal-track {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    padding: 0 var(--container-padding);
    transform: none; /* fix: είχε missing semicolon */
  }

  .cc-horizontal-slide {
    flex: none;
    width: 100%;
    min-width: auto;
    grid-template-columns: 1fr;
    gap: 1.5rem;
    opacity: 1 !important;     /* override JS animations */
    transform: none !important; /* override JS animations */
  }

  .cc-slide-media {
    width: 100%;
    max-width: 100%;
    height: 300px;
    margin: 0;
  }

  .cc-slide-video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
  }

  .cc-horizontal-progress {
    display: none;
  }

  /* PARALLAX STATS - 2 ΣΤΗΛΕΣ */
  .cc-parallax-section {
    padding: 3rem 0;
  }

  .cc-parallax-stats {
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
  }

  .cc-parallax-stat {
    padding: 1.5rem;
  }

  .cc-parallax-number {
    font-size: 2rem;
  }

  .cc-parallax-stat.fulltime .cc-parallax-number span {
    font-size: 1.5rem;
  }

  .cc-parallax-title {
    font-size: 1.75rem;
    margin-bottom: 2rem;
  }

  /* INTEGRATION SECTION */
  .cc-integration-section {
    padding: 3rem var(--container-padding);
  }

  .cc-phone-mockup {
    width: 260px;
    height: 520px;
    margin: 0 auto;
  }

  .cc-integration-pillars {
    gap: 1.5rem;
  }

  /* PRICING */
  .pricing {
    padding: 3rem var(--container-padding);
  }

  .pricing-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .pricing-card.featured {
    transform: none;
  }
}

/* ================= MOBILE (768px) ================= */
@media (max-width: 768px) {
  :root {
    --fs-3xl: 2rem;
    --fs-2xl: 1.5rem;
    --fs-xl: 1.125rem;
    --fs-lg: 0.9375rem;
    --fs-base: 0.875rem;
    --space-5: 1.25rem;
    --space-6: 1.5rem;
    --space-4: 1rem;
    --space-3: 0.75rem;
    --container-padding: 1rem;
  }

  html, body {
    overflow-x: hidden;
  }

  img, video {
    max-width: 100%;
    height: auto;
  }

  .logo img {
    height: 50px;
  }

  .main-nav ul {
    gap: 0.5rem;
    flex-wrap: wrap;
    padding: 0;
  }

  .main-nav a {
    padding: 0.4rem 0.8rem;
    font-size: 0.8rem;
  }

  /* HERO */
  .cc-hero-parallax {
    min-height: auto;
    padding: 2rem 0;
  }

  .cc-hero-inner {
    padding: 1.5rem var(--container-padding);
    gap: 1.5rem;
    min-height: 300px; /* fix: αν το robot δεν φορτώσει */
  }

  .cc-hero-robot img {
    max-width: 250px;
  }

  .cc-hero-title {
    font-size: 1.75rem;
    margin-bottom: 1rem;
  }

  .cc-hero-subtitle {
    font-size: 0.9375rem;
    margin-bottom: 1.5rem;
  }

  .cc-hero-cta {
    flex-direction: column;
    width: 100%;
    gap: 0.75rem;
  }

  .btn, .cc-btn-primary, .cc-btn-video {
    width: 100%;
    padding: 0.75em 1.25em;
    font-size: 0.9375rem;
  }

  .cc-ai-badge, .cc-eyebrow {
    font-size: 0.6875rem;
    padding: 0.375rem 0.75rem;
  }

  /* PROBLEM SECTION */
  .cc-problem-section {
    padding: 3rem 1rem;
  }

  .cc-problem-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  .cc-problem-card {
    padding: 1.5rem;
  }

  .cc-data-stream {
    display: none;
  }

  /* SOLUTION SECTION */
  .cc-solution-section {
    padding: 3rem 1rem;
  }

  .cc-hologram-pillars {
    grid-template-columns: 1fr;
    gap: 2rem;
    
  }

  .cc-pillar-beam,
  .cc-connection-svg,
  .cc-core-ring {
    display: none;
  }

  .cc-solution-pillar {
    padding: 0;
    width: 100%;
  }

  .cc-pillar-core {
    width: 60px;
    height: 60px;
    margin-bottom: 1rem;
  }

  .cc-pillar-num {
    font-size: 1.5rem;
  }

  .cc-pillar-content {
    box-sizing: border-box;
    width: 100%;
    padding: 1.5rem;
    text-align: center;
  }

  .cc-pillar-content h3 {
    margin-bottom: 0.75rem;
  }

  .cc-pillar-content p {
    line-height: 1.6;
    margin-bottom: 1rem;
  }

  .cc-feature-tags {
    gap: 0.5rem;
  }

  .cc-tag {
    padding: 0.375rem 0.75rem;
    font-size: 0.75rem;
  }

  
  

  /* HORIZONTAL SECTION */
  .cc-horizontal-section {
    padding: 3rem 0;
  }

  .cc-slide-content h3 {
    font-size: 1.25rem;
  }

  .cc-slide-content p {
    font-size: 0.875rem;
  }

  .cc-slide-media {
    width: 100%;
    height: 220px;
    border-radius: 12px;
  }

  .cc-slide-video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
  }

  .cc-slide-media::before,
  .cc-slide-media::after {
    width: 20px;
    height: 20px;
    border-width: 2px;
  }

  /* PARALLAX STATS */
  .cc-parallax-section {
    padding: 2.5rem 0;
  }

  .cc-parallax-section .container {
    padding: 0 1rem;
  }

  .cc-parallax-stats {
    grid-template-columns: repeat(2, 1fr);
    gap: 0.75rem;
  }

  .cc-parallax-stat {
    padding: 1.25rem 1rem;
  }

  .cc-parallax-number {
    font-size: 1.75rem;
    margin-bottom: 0.75rem;
  }

  .cc-parallax-stat.fulltime .cc-parallax-number span {
    font-size: 1.25rem;
  }

  .cc-parallax-stat.fulltime small {
    font-size: 0.625rem;
    margin-left: 1px;
    margin-right: 4px;
  }

  .cc-parallax-label {
    font-size: 0.625rem;
    line-height: 1.3;
  }

  .cc-parallax-title {
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
  }

  /* INTEGRATION SECTION */
  .cc-integration-section {
    padding: 3rem 1rem;
  }

  .cc-integration-content {
    grid-template-columns: 1fr;
    padding: 0;
    gap: 2rem;
  }

  .cc-phone-mockup {
    width: 220px;
    height: 440px;
    transform: none;
    animation: none;
    margin: 0 auto;
  }

  .cc-integration-pillars {
    gap: 1.25rem;
  }

  .cc-integration-pillars .cc-solution-pillar {
    padding: 1.25rem;
  }

  .cc-integration-pillars .cc-pillar-content h3 {
    font-size: 0.9375rem;
  }

  /* PRICING */
  .pricing {
    padding: 3rem 1rem;
  }

  .pricing-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  .pricing-card {
    padding: 2rem;
  }

  .pricing-card.featured {
    transform: none;
  }
}

/* ================= SMALL MOBILE (480px) ================= */
@media (max-width: 480px) {
  :root {
    --fs-3xl: 1.75rem;
    --fs-2xl: 1.375rem;
    --fs-xl: 1rem;
    --container-padding: 0.875rem;
  }

  .header-inner {
    min-height: 60px;
    padding-inline: 0.75rem;
  }

  .logo img {
    height: 45px;
  }

  .cc-hero-robot img {
    max-width: 180px;
  }

  .cc-hero-title {
    font-size: 1.5rem;
  }

  .cc-slide-media {
    width: 100%;
    height: 180px;
  }

  .cc-slide-content h3 {
    font-size: 1.125rem;
  }

  /* PARALLAX STATS - 1 ΣΤΗΛΗ σε πολύ μικρές οθόνες */
  .cc-parallax-section {
    padding: 2rem 0;
  }

  .cc-parallax-section .container {
    padding: 0 0.875rem;
  }

  .cc-parallax-stats {
    grid-template-columns: repeat(2, 1fr); /* fix: 280px max-width ήταν πολύ στενό */
    gap: 0.75rem;
  }

  .cc-parallax-stat {
    padding: 1.25rem;
  }

  .cc-parallax-number {
    font-size: 1.75rem;
  }

  .cc-parallax-stat.fulltime .cc-parallax-number span {
    font-size: 1.25rem;
  }

  .cc-parallax-label {
    font-size: 0.625rem;
  }

  .cc-parallax-title {
    font-size: 1.375rem;
    margin-bottom: 1.25rem;
  }

  .cc-phone-mockup {
    width: 180px;
    height: 360px;
  }

  .btn {
    padding: 0.625em 1em;
    font-size: 0.875rem;
  }
}

/* ================= OVERFLOW FIXES ================= */
@media (max-width: 900px) {
  .container,
  .cc-hero-inner,
  .cc-problem-section .container,
  .cc-solution-section .container,
  .cc-horizontal-track,
  .cc-horizontal-slide,
  .cc-parallax-section .container,
  .cc-integration-content {
    overflow-x: hidden; /* fix: clip → hidden για iOS Safari */
  }

  .cc-slide-media,
  .cc-phone-screen,
  video {
    max-width: 100%;
    overflow: hidden;
  }
}

/* ================= PRINT ================= */
@media print {
  .header,
  .cc-page-loader,
  .cc-shared-particles,
  .cc-pillar-beam,
  .cc-connection-svg,
  .cc-data-stream,
  .cc-horizontal-progress,
  .call-flow-section {
    display: none;
  }
}



/* ================= INTEGRATION SECTION - OVERFLOW FIX ================= */

.cc-integration-section {
  overflow-x: hidden; /* ← ΚΡΙΤΙΚΟ */
}

.cc-integration-visual {
  overflow: hidden;
  width: 100%;
}

@media (max-width: 1024px) {
  /* Το rotateY είναι ο κύριος ένοχος — το κόβουμε νωρίς */
  .cc-phone-mockup {
    transform: none;
    animation: floatSimple 6s ease-in-out infinite; /* Χωρίς rotateY */
    max-width: 100%;
    box-sizing: border-box;
  }

  @keyframes floatSimple {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-15px); }
  }
}

@media (max-width: 768px) {
  .cc-integration-content {
    width: 100%;
    box-sizing: border-box;
    padding-left: 1rem;
    padding-right: 1rem;
    overflow: hidden;
  }

  .cc-phone-mockup {
    width: min(220px, 70vw); /* ← Ποτέ δεν ξεπερνά το viewport */
    height: auto;
    aspect-ratio: 9 / 18;
    transform: none;
    animation: none; /* Στα μικρά mobile, καταργούμε και το float */
  }

  .cc-integration-pillars {
    width: 100%;
    max-width: 100%;
    box-sizing: border-box;
  }

 }