/* ==========================================================================
   BEERENT CLOUD PHONE - NIGHT SKY THEME (ZVJEZDANO NOĆNO NEBO)
   Glavni stilski list (Master Stylesheet)
   ========================================================================== */

@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800&family=Outfit:wght@400;500;600;700;800;900&display=swap');

:root {
  /* Color Palette - Night Sky & Nebulae */
  --bg-deep-space: #030611;
  --bg-cosmos-dark: #070c1e;
  --bg-cosmos-card: rgba(13, 23, 51, 0.68);
  --bg-cosmos-card-hover: rgba(20, 35, 77, 0.85);
  --bg-glass-elevated: rgba(26, 44, 94, 0.75);
  --bg-glass-input: rgba(7, 12, 30, 0.75);

  /* Star & Nebula Accents */
  --neon-cyan: #00f2fe;
  --sky-blue: #4facfe;
  --cosmic-purple: #7928ca;
  --nebula-magenta: #f72585;
  --star-gold: #fbbf24;
  --aurora-green: #10b981;
  
  /* Gradients */
  --grad-cyan-blue: linear-gradient(135deg, #00f2fe 0%, #4facfe 100%);
  --grad-purple-blue: linear-gradient(135deg, #7928ca 0%, #4facfe 100%);
  --grad-aurora: linear-gradient(135deg, #00f2fe 0%, #7928ca 50%, #f72585 100%);
  --grad-gold: linear-gradient(135deg, #fef08a 0%, #f59e0b 100%);
  --grad-card-border: linear-gradient(135deg, rgba(0, 242, 254, 0.35) 0%, rgba(121, 40, 202, 0.15) 50%, rgba(255, 255, 255, 0.05) 100%);
  --grad-hero-glow: radial-gradient(circle at 50% 30%, rgba(79, 172, 254, 0.18) 0%, rgba(121, 40, 202, 0.12) 45%, transparent 70%);

  /* Text Colors */
  --text-primary: #ffffff;
  --text-secondary: #cbd5e1;
  --text-muted: #8492a6;
  --text-dim: #64748b;
  --text-accent: #00f2fe;

  /* Borders & Shadows */
  --border-subtle: rgba(255, 255, 255, 0.08);
  --border-glow: rgba(0, 242, 254, 0.4);
  --shadow-cosmic-sm: 0 4px 16px rgba(0, 0, 0, 0.35);
  --shadow-cosmic-md: 0 10px 30px rgba(0, 0, 0, 0.5), 0 0 20px rgba(79, 172, 254, 0.15);
  --shadow-cosmic-lg: 0 20px 50px rgba(0, 0, 0, 0.65), 0 0 40px rgba(0, 242, 254, 0.2);
  --glow-cyan: 0 0 25px rgba(0, 242, 254, 0.45);
  --glow-purple: 0 0 25px rgba(121, 40, 202, 0.45);

  /* Typography */
  --font-heading: 'Outfit', sans-serif;
  --font-body: 'Inter', sans-serif;

  /* Transitions */
  --transition-fast: 0.2s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-normal: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-bounce: 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);

  /* Layout */
  --container-max-width: 1240px;
  --radius-sm: 8px;
  --radius-md: 14px;
  --radius-lg: 22px;
  --radius-xl: 32px;
  --radius-pill: 9999px;
}

/* ==========================================================================
   Reset & Base Styles
   ========================================================================== */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
  background-color: var(--bg-deep-space);
  color: var(--text-primary);
  font-family: var(--font-body);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

body {
  position: relative;
  overflow-x: hidden;
  min-height: 100vh;
  background-color: var(--bg-deep-space);
  background-image: 
    radial-gradient(at 0% 0%, rgba(79, 172, 254, 0.08) 0px, transparent 50%),
    radial-gradient(at 100% 20%, rgba(121, 40, 202, 0.1) 0px, transparent 50%),
    radial-gradient(at 50% 80%, rgba(0, 242, 254, 0.06) 0px, transparent 50%);
  background-attachment: fixed;
}

/* Cosmic Canvas Background */
#starfield-canvas {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 0;
  opacity: 0.85;
}

/* Selection */
::selection {
  background: var(--cosmic-purple);
  color: #ffffff;
}

/* Typography Defaults */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  color: var(--text-primary);
  font-weight: 700;
  line-height: 1.2;
}

h1 { font-size: clamp(2.3rem, 5vw, 3.8rem); font-weight: 800; letter-spacing: -0.03em; }
h2 { font-size: clamp(1.8rem, 3.5vw, 2.6rem); font-weight: 700; letter-spacing: -0.02em; }
h3 { font-size: clamp(1.3rem, 2.5vw, 1.7rem); font-weight: 600; }
h4 { font-size: 1.25rem; font-weight: 600; }
h5 { font-size: 1.1rem; }
h6 { font-size: 0.95rem; text-transform: uppercase; letter-spacing: 0.08em; }

p {
  color: var(--text-secondary);
  font-size: 1.05rem;
  margin-bottom: 1.2rem;
}

a {
  color: var(--sky-blue);
  text-decoration: none;
  transition: all var(--transition-fast);
}

a:hover {
  color: var(--neon-cyan);
}

ul, ol {
  list-style: none;
}

img, svg {
  display: block;
  max-width: 100%;
  height: auto;
}

/* ==========================================================================
   Utilities & Global Components
   ========================================================================== */
.container {
  width: 100%;
  max-width: var(--container-max-width);
  margin-left: auto;
  margin-right: auto;
  padding-left: 1.5rem;
  padding-right: 1.5rem;
  position: relative;
  z-index: 1;
}

.section-padding {
  padding-top: 5.5rem;
  padding-bottom: 5.5rem;
}

.text-gradient {
  background: var(--grad-cyan-blue);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  display: inline-block;
}

.text-gradient-aurora {
  background: var(--grad-aurora);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  display: inline-block;
}

.text-gradient-gold {
  background: var(--grad-gold);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  display: inline-block;
}

.text-center { text-align: center; }
.text-left { text-align: left; }
.text-right { text-align: right; }

/* Badge Pills */
.badge-pill {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.4rem 1rem;
  border-radius: var(--radius-pill);
  background: rgba(0, 242, 254, 0.08);
  border: 1px solid rgba(0, 242, 254, 0.3);
  color: var(--neon-cyan);
  font-size: 0.85rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin-bottom: 1.2rem;
  box-shadow: 0 0 15px rgba(0, 242, 254, 0.15);
}

.badge-pill .pulse-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background-color: var(--neon-cyan);
  box-shadow: 0 0 10px var(--neon-cyan);
  animation: pulse-dot-anim 2s infinite;
}

@keyframes pulse-dot-anim {
  0% { transform: scale(0.95); box-shadow: 0 0 0 0 rgba(0, 242, 254, 0.7); }
  70% { transform: scale(1.1); box-shadow: 0 0 0 8px rgba(0, 242, 254, 0); }
  100% { transform: scale(0.95); box-shadow: 0 0 0 0 rgba(0, 242, 254, 0); }
}

/* Glassmorphism Cards */
.cosmic-card {
  background: var(--bg-cosmos-card);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-lg);
  padding: 2.2rem;
  transition: all var(--transition-normal);
  position: relative;
  overflow: hidden;
  box-shadow: var(--shadow-cosmic-sm);
}

.cosmic-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(0, 242, 254, 0.5), transparent);
  opacity: 0;
  transition: opacity var(--transition-normal);
}

.cosmic-card:hover {
  transform: translateY(-6px);
  background: var(--bg-cosmos-card-hover);
  border-color: rgba(0, 242, 254, 0.35);
  box-shadow: var(--shadow-cosmic-md);
}

.cosmic-card:hover::before {
  opacity: 1;
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.65rem;
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 1rem;
  padding: 0.85rem 1.8rem;
  border-radius: var(--radius-pill);
  cursor: pointer;
  border: 1px solid transparent;
  transition: all var(--transition-normal);
  text-decoration: none;
  position: relative;
  overflow: hidden;
}

.btn-primary {
  background: var(--grad-cyan-blue);
  color: #030611;
  box-shadow: 0 4px 20px rgba(0, 242, 254, 0.35);
}

.btn-primary:hover {
  color: #030611;
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(0, 242, 254, 0.55);
}

.btn-secondary {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.18);
  color: var(--text-primary);
  backdrop-filter: blur(10px);
}

.btn-secondary:hover {
  background: rgba(255, 255, 255, 0.12);
  border-color: var(--neon-cyan);
  color: #ffffff;
  transform: translateY(-2px);
  box-shadow: 0 0 20px rgba(0, 242, 254, 0.2);
}

.btn-accent {
  background: var(--grad-purple-blue);
  color: #ffffff;
  box-shadow: 0 4px 20px rgba(121, 40, 202, 0.35);
}

.btn-accent:hover {
  color: #ffffff;
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(121, 40, 202, 0.55);
}

.btn-sm {
  padding: 0.55rem 1.2rem;
  font-size: 0.88rem;
}

.btn-lg {
  padding: 1.05rem 2.2rem;
  font-size: 1.1rem;
}

.btn svg {
  transition: transform var(--transition-fast);
}

.btn:hover svg {
  transform: translateX(4px);
}

/* Section Headers */
.section-header {
  text-align: center;
  max-width: 760px;
  margin: 0 auto 3.5rem auto;
}

.section-header p {
  font-size: 1.15rem;
  color: var(--text-secondary);
}

/* ==========================================================================
   Header & Navigation
   ========================================================================== */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  padding: 1.2rem 0;
  transition: all var(--transition-normal);
}

.site-header.scrolled {
  padding: 0.75rem 0;
  background: rgba(4, 7, 17, 0.88);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border-subtle);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.4);
}

.header-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.brand-logo {
  display: flex;
  align-items: center;
  text-decoration: none;
}

.brand-logo img {
  height: 44px;
  width: auto;
}

.nav-desktop {
  display: flex;
  align-items: center;
  gap: 2rem;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 1.8rem;
}

.nav-link {
  color: var(--text-secondary);
  font-weight: 500;
  font-size: 0.96rem;
  position: relative;
  padding: 0.4rem 0;
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0%;
  height: 2px;
  background: var(--grad-cyan-blue);
  transition: width var(--transition-fast);
  border-radius: 2px;
}

.nav-link:hover, .nav-link.active {
  color: #ffffff;
}

.nav-link:hover::after, .nav-link.active::after {
  width: 100%;
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: 1.2rem;
}

.header-phone-link {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--text-primary);
  font-weight: 600;
  font-size: 0.95rem;
  padding: 0.4rem 0.8rem;
  border-radius: var(--radius-pill);
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid var(--border-subtle);
}

.header-phone-link:hover {
  background: rgba(0, 242, 254, 0.1);
  border-color: rgba(0, 242, 254, 0.4);
  color: var(--neon-cyan);
}

/* Mobile Toggle */
.mobile-toggle {
  display: none;
  background: none;
  border: none;
  color: #ffffff;
  cursor: pointer;
  padding: 0.5rem;
}

/* Mobile Navigation Drawer */
.mobile-drawer {
  position: fixed;
  top: 0;
  right: -100%;
  width: 85%;
  max-width: 360px;
  height: 100vh;
  background: rgba(7, 12, 30, 0.97);
  backdrop-filter: blur(24px);
  z-index: 1050;
  padding: 2rem 1.5rem;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  transition: right var(--transition-normal);
  border-left: 1px solid var(--border-subtle);
  box-shadow: -10px 0 40px rgba(0, 0, 0, 0.8);
}

.mobile-drawer.open {
  right: 0;
}

.drawer-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 2rem;
  padding-bottom: 1rem;
  border-bottom: 1px solid var(--border-subtle);
}

.drawer-close {
  background: none;
  border: none;
  color: var(--text-secondary);
  font-size: 1.8rem;
  cursor: pointer;
}

.drawer-links {
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
}

.drawer-links .nav-link {
  font-size: 1.15rem;
  padding: 0.5rem 0;
}

.drawer-backdrop {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.7);
  backdrop-filter: blur(4px);
  z-index: 1040;
  opacity: 0;
  pointer-events: none;
  transition: opacity var(--transition-fast);
}

.drawer-backdrop.active {
  opacity: 1;
  pointer-events: auto;
}

/* ==========================================================================
   Hero Section
   ========================================================================== */
.hero-section {
  position: relative;
  padding-top: 9.5rem;
  padding-bottom: 5.5rem;
  overflow: hidden;
}

.hero-glow-bg {
  position: absolute;
  top: -10%;
  left: 50%;
  transform: translateX(-50%);
  width: 900px;
  height: 500px;
  background: var(--grad-hero-glow);
  filter: blur(80px);
  pointer-events: none;
  z-index: 0;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 3.5rem;
  align-items: center;
  position: relative;
  z-index: 1;
}

.hero-content h1 {
  margin-bottom: 1.4rem;
}

.hero-description {
  font-size: 1.2rem;
  color: var(--text-secondary);
  line-height: 1.7;
  margin-bottom: 2rem;
}

.hero-cta-group {
  display: flex;
  flex-wrap: wrap;
  gap: 1.2rem;
  margin-bottom: 2.8rem;
}

.hero-trust-bar {
  display: flex;
  align-items: center;
  gap: 2rem;
  padding-top: 1.5rem;
  border-top: 1px solid var(--border-subtle);
}

.trust-item {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  color: var(--text-secondary);
  font-size: 0.92rem;
}

.trust-item svg {
  color: var(--neon-cyan);
}

/* Hero Interactive Telephony Visualizer / Preview Card */
.hero-visual {
  position: relative;
}

.hero-dashboard-preview {
  background: var(--bg-cosmos-card);
  backdrop-filter: blur(20px);
  border: 1px solid rgba(0, 242, 254, 0.25);
  border-radius: var(--radius-xl);
  padding: 1.8rem;
  box-shadow: var(--shadow-cosmic-lg);
  position: relative;
  overflow: hidden;
}

.hero-dashboard-preview::after {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle, rgba(0, 242, 254, 0.08) 0%, transparent 60%);
  pointer-events: none;
}

.dash-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-bottom: 1.2rem;
  border-bottom: 1px solid var(--border-subtle);
  margin-bottom: 1.5rem;
}

.dash-dots {
  display: flex;
  gap: 6px;
}

.dash-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
}

.dash-dot.red { background: #ff5f56; }
.dash-dot.yellow { background: #ffbd2e; }
.dash-dot.green { background: #27c93f; }

.dash-status {
  font-size: 0.8rem;
  color: var(--aurora-green);
  display: flex;
  align-items: center;
  gap: 6px;
  font-weight: 600;
}

.dash-live-card {
  background: rgba(7, 12, 30, 0.8);
  border-radius: var(--radius-md);
  padding: 1.2rem;
  margin-bottom: 1rem;
  border: 1px solid var(--border-subtle);
}

.call-stream {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 0.8rem;
}

.caller-info {
  display: flex;
  align-items: center;
  gap: 0.8rem;
}

.caller-avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--grad-cyan-blue);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #030611;
  font-weight: 700;
}

.caller-text h5 {
  font-size: 0.95rem;
  margin-bottom: 2px;
}

.caller-text span {
  font-size: 0.8rem;
  color: var(--text-dim);
}

.call-timer {
  font-family: var(--font-heading);
  font-size: 0.9rem;
  color: var(--neon-cyan);
  background: rgba(0, 242, 254, 0.1);
  padding: 0.2rem 0.6rem;
  border-radius: var(--radius-pill);
}

.routing-steps {
  display: flex;
  gap: 0.5rem;
  margin-top: 1rem;
}

.route-pill {
  flex: 1;
  text-align: center;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid var(--border-subtle);
  padding: 0.5rem 0.3rem;
  border-radius: var(--radius-sm);
  font-size: 0.75rem;
  color: var(--text-secondary);
}

.route-pill.active {
  border-color: var(--neon-cyan);
  background: rgba(0, 242, 254, 0.12);
  color: var(--neon-cyan);
}

/* Floating Stats Badge on Visual */
.floating-stat-badge {
  position: absolute;
  bottom: -20px;
  left: -20px;
  background: rgba(13, 23, 51, 0.92);
  backdrop-filter: blur(16px);
  border: 1px solid rgba(0, 242, 254, 0.4);
  border-radius: var(--radius-md);
  padding: 1rem 1.3rem;
  display: flex;
  align-items: center;
  gap: 1rem;
  box-shadow: var(--shadow-cosmic-md);
  animation: float-anim 5s ease-in-out infinite alternate;
}

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

.stat-icon {
  width: 42px;
  height: 42px;
  border-radius: 12px;
  background: var(--grad-cyan-blue);
  color: #030611;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* ==========================================================================
   Feature Highlights & Grid
   ========================================================================== */
.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 2rem;
}

.feature-card {
  display: flex;
  flex-direction: column;
  height: 100%;
}

.feature-icon-wrapper {
  width: 58px;
  height: 58px;
  border-radius: var(--radius-md);
  background: rgba(0, 242, 254, 0.1);
  border: 1px solid rgba(0, 242, 254, 0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--neon-cyan);
  margin-bottom: 1.5rem;
  transition: all var(--transition-normal);
}

.feature-card:hover .feature-icon-wrapper {
  background: var(--grad-cyan-blue);
  color: #030611;
  transform: scale(1.08);
  box-shadow: 0 0 20px rgba(0, 242, 254, 0.4);
}

.feature-card h3 {
  margin-bottom: 0.8rem;
}

.feature-card p {
  color: var(--text-secondary);
  font-size: 0.98rem;
  margin-bottom: 1.2rem;
  flex-grow: 1;
}

.feature-list {
  margin-top: auto;
  padding-top: 1rem;
  border-top: 1px solid var(--border-subtle);
}

.feature-list li {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  color: var(--text-secondary);
  font-size: 0.9rem;
  margin-bottom: 0.5rem;
}

.feature-list li svg {
  color: var(--neon-cyan);
  flex-shrink: 0;
}

/* ==========================================================================
   Interactive Simulator Section (Cloud PBX Demo)
   ========================================================================== */
.simulator-section {
  position: relative;
  background: rgba(7, 12, 30, 0.4);
  border-top: 1px solid var(--border-subtle);
  border-bottom: 1px solid var(--border-subtle);
}

.simulator-box {
  background: var(--bg-cosmos-card);
  backdrop-filter: blur(20px);
  border: 1px solid rgba(0, 242, 254, 0.3);
  border-radius: var(--radius-xl);
  padding: 2.5rem;
  box-shadow: var(--shadow-cosmic-lg);
  display: grid;
  grid-template-columns: 1fr 1.3fr;
  gap: 3rem;
  align-items: center;
}

.phone-keypad-panel {
  background: rgba(4, 7, 17, 0.9);
  border-radius: var(--radius-lg);
  padding: 1.8rem;
  border: 1px solid var(--border-subtle);
  text-align: center;
}

.keypad-screen {
  background: rgba(0, 0, 0, 0.5);
  border: 1px solid rgba(0, 242, 254, 0.2);
  border-radius: var(--radius-sm);
  padding: 1rem;
  margin-bottom: 1.5rem;
  min-height: 80px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.keypad-screen-status {
  font-size: 0.8rem;
  color: var(--neon-cyan);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 4px;
}

.keypad-screen-text {
  font-family: var(--font-heading);
  font-size: 1.15rem;
  color: #ffffff;
  font-weight: 600;
}

.keypad-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.8rem;
  margin-bottom: 1.5rem;
}

.keypad-btn {
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-md);
  padding: 0.9rem 0;
  color: #ffffff;
  font-family: var(--font-heading);
  font-size: 1.25rem;
  font-weight: 700;
  cursor: pointer;
  transition: all var(--transition-fast);
  display: flex;
  flex-direction: column;
  align-items: center;
  line-height: 1;
}

.keypad-btn span {
  font-size: 0.65rem;
  color: var(--text-dim);
  margin-top: 3px;
  letter-spacing: 0.1em;
}

.keypad-btn:hover {
  background: rgba(0, 242, 254, 0.15);
  border-color: var(--neon-cyan);
  transform: scale(1.04);
}

.keypad-btn:active {
  transform: scale(0.96);
  background: var(--grad-cyan-blue);
  color: #030611;
}

.call-action-row {
  display: flex;
  gap: 1rem;
}

.btn-call-start {
  flex: 1;
  background: #10b981;
  color: #ffffff;
  border: none;
  padding: 0.8rem;
  border-radius: var(--radius-pill);
  font-weight: 600;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  transition: all var(--transition-fast);
}

.btn-call-start:hover {
  background: #059669;
  box-shadow: 0 0 15px rgba(16, 185, 129, 0.4);
}

.btn-call-end {
  flex: 1;
  background: #ef4444;
  color: #ffffff;
  border: none;
  padding: 0.8rem;
  border-radius: var(--radius-pill);
  font-weight: 600;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  transition: all var(--transition-fast);
}

.btn-call-end:hover {
  background: #dc2626;
  box-shadow: 0 0 15px rgba(239, 68, 68, 0.4);
}

.ivr-flow-visual {
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
}

.ivr-flow-node {
  background: rgba(4, 7, 17, 0.6);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-md);
  padding: 1.2rem;
  position: relative;
  transition: all var(--transition-normal);
}

.ivr-flow-node.active-node {
  border-color: var(--neon-cyan);
  background: rgba(0, 242, 254, 0.08);
  box-shadow: 0 0 20px rgba(0, 242, 254, 0.2);
}

.node-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 0.4rem;
}

.node-tag {
  font-size: 0.75rem;
  padding: 0.2rem 0.6rem;
  border-radius: var(--radius-pill);
  background: rgba(255, 255, 255, 0.06);
  color: var(--text-dim);
}

.ivr-flow-node.active-node .node-tag {
  background: var(--neon-cyan);
  color: #030611;
  font-weight: 700;
}

/* ==========================================================================
   Pricing & Packages
   ========================================================================== */
.pricing-switcher {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  margin-bottom: 3.5rem;
}

.switch-label {
  font-size: 1rem;
  font-weight: 600;
  color: var(--text-secondary);
  cursor: pointer;
}

.switch-label.active {
  color: #ffffff;
}

.switch-toggle {
  position: relative;
  width: 56px;
  height: 30px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: var(--radius-pill);
  cursor: pointer;
  transition: background var(--transition-fast);
  border: 1px solid var(--border-subtle);
}

.switch-toggle::before {
  content: '';
  position: absolute;
  top: 3px;
  left: 4px;
  width: 22px;
  height: 22px;
  background: var(--neon-cyan);
  border-radius: 50%;
  transition: transform var(--transition-bounce);
  box-shadow: 0 0 10px var(--neon-cyan);
}

.switch-toggle.yearly::before {
  transform: translateX(26px);
}

.save-badge {
  background: rgba(16, 185, 129, 0.15);
  border: 1px solid rgba(16, 185, 129, 0.4);
  color: #10b981;
  font-size: 0.78rem;
  font-weight: 700;
  padding: 0.25rem 0.6rem;
  border-radius: var(--radius-pill);
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  align-items: stretch;
}

.pricing-card {
  display: flex;
  flex-direction: column;
  position: relative;
}

.pricing-card.featured {
  border-color: rgba(0, 242, 254, 0.45);
  background: var(--bg-cosmos-card-hover);
  box-shadow: var(--shadow-cosmic-lg);
  transform: scale(1.03);
}

.popular-badge {
  position: absolute;
  top: -14px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--grad-cyan-blue);
  color: #030611;
  font-size: 0.78rem;
  font-weight: 800;
  padding: 0.35rem 1.1rem;
  border-radius: var(--radius-pill);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  box-shadow: 0 0 15px rgba(0, 242, 254, 0.4);
}

.plan-header {
  margin-bottom: 1.5rem;
  padding-bottom: 1.5rem;
  border-bottom: 1px solid var(--border-subtle);
}

.plan-name {
  font-size: 1.4rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
}

.plan-desc {
  font-size: 0.9rem;
  color: var(--text-dim);
  min-height: 40px;
}

.plan-price-box {
  margin-bottom: 1.8rem;
  display: flex;
  align-items: baseline;
  gap: 0.4rem;
}

.price-currency {
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--neon-cyan);
}

.price-amount {
  font-family: var(--font-heading);
  font-size: 3rem;
  font-weight: 800;
  color: #ffffff;
  line-height: 1;
}

.price-period {
  color: var(--text-dim);
  font-size: 0.9rem;
}

.plan-features-list {
  margin-bottom: 2rem;
  flex-grow: 1;
}

.plan-features-list li {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  color: var(--text-secondary);
  font-size: 0.92rem;
  margin-bottom: 0.85rem;
}

.plan-features-list li svg {
  color: var(--neon-cyan);
  flex-shrink: 0;
  margin-top: 3px;
}

.plan-features-list li.disabled {
  color: var(--text-dim);
  opacity: 0.5;
}

.plan-features-list li.disabled svg {
  color: var(--text-dim);
}

/* ==========================================================================
   Interactive Cost Calculator
   ========================================================================== */
.calculator-box {
  background: var(--bg-cosmos-card);
  backdrop-filter: blur(20px);
  border: 1px solid rgba(0, 242, 254, 0.25);
  border-radius: var(--radius-xl);
  padding: 3rem;
  margin-top: 4rem;
  box-shadow: var(--shadow-cosmic-md);
}

.calc-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 3rem;
  align-items: center;
}

.slider-group {
  margin-bottom: 2rem;
}

.slider-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 0.8rem;
}

.slider-val-badge {
  font-family: var(--font-heading);
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--neon-cyan);
}

.custom-range {
  width: 100%;
  height: 8px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 4px;
  outline: none;
  -webkit-appearance: none;
  cursor: pointer;
}

.custom-range::-webkit-slider-thumb {
  -webkit-appearance: none;
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: var(--neon-cyan);
  cursor: pointer;
  box-shadow: 0 0 15px var(--neon-cyan);
  transition: transform var(--transition-fast);
}

.custom-range::-webkit-slider-thumb:hover {
  transform: scale(1.2);
}

.calc-options-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

.calc-checkbox-card {
  background: rgba(4, 7, 17, 0.5);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-md);
  padding: 1rem;
  display: flex;
  align-items: center;
  gap: 0.8rem;
  cursor: pointer;
  transition: all var(--transition-fast);
}

.calc-checkbox-card:hover, .calc-checkbox-card.selected {
  border-color: var(--neon-cyan);
  background: rgba(0, 242, 254, 0.08);
}

.calc-total-card {
  background: rgba(4, 7, 17, 0.85);
  border: 1px solid rgba(0, 242, 254, 0.3);
  border-radius: var(--radius-lg);
  padding: 2.2rem;
  text-align: center;
}

.calc-total-price {
  font-family: var(--font-heading);
  font-size: 3.2rem;
  font-weight: 800;
  color: #ffffff;
  margin: 0.8rem 0;
}

/* ==========================================================================
   Statistics & Trust Metrics Bar
   ========================================================================== */
.stats-section {
  padding: 3.5rem 0;
  border-top: 1px solid var(--border-subtle);
  border-bottom: 1px solid var(--border-subtle);
  background: rgba(7, 12, 30, 0.5);
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
}

.stat-box {
  text-align: center;
}

.stat-number {
  font-family: var(--font-heading);
  font-size: 2.8rem;
  font-weight: 800;
  color: #ffffff;
  margin-bottom: 0.3rem;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 2px;
}

.stat-number span {
  color: var(--neon-cyan);
}

.stat-label {
  color: var(--text-muted);
  font-size: 0.92rem;
  font-weight: 500;
}

/* ==========================================================================
   Testimonials / Reviews
   ========================================================================== */
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 2rem;
}

.testimonial-card {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.stars-rating {
  display: flex;
  gap: 4px;
  color: var(--star-gold);
  margin-bottom: 1.2rem;
}

.testimonial-text {
  font-style: italic;
  color: var(--text-secondary);
  font-size: 1rem;
  line-height: 1.7;
  margin-bottom: 1.8rem;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.author-avatar {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--grad-purple-blue);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  color: #ffffff;
}

.author-info h5 {
  font-size: 1rem;
  margin-bottom: 2px;
}

.author-info span {
  font-size: 0.85rem;
  color: var(--text-dim);
}

/* ==========================================================================
   FAQ Section
   ========================================================================== */
.faq-container {
  max-width: 820px;
  margin: 0 auto;
}

.faq-item {
  background: var(--bg-cosmos-card);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-md);
  margin-bottom: 1rem;
  overflow: hidden;
  transition: all var(--transition-fast);
}

.faq-item:hover {
  border-color: rgba(0, 242, 254, 0.3);
}

.faq-question {
  width: 100%;
  padding: 1.3rem 1.6rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: none;
  border: none;
  color: #ffffff;
  font-family: var(--font-heading);
  font-size: 1.1rem;
  font-weight: 600;
  text-align: left;
  cursor: pointer;
}

.faq-icon {
  width: 22px;
  height: 22px;
  color: var(--neon-cyan);
  transition: transform var(--transition-normal);
  flex-shrink: 0;
}

.faq-item.active .faq-icon {
  transform: rotate(180deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s ease-out;
  padding: 0 1.6rem;
}

.faq-item.active .faq-answer {
  padding-bottom: 1.4rem;
}

.faq-answer p {
  font-size: 0.98rem;
  color: var(--text-secondary);
  line-height: 1.7;
  margin-bottom: 0;
}

/* ==========================================================================
   CTA Banner Section
   ========================================================================== */
.cta-section {
  position: relative;
  overflow: hidden;
}

.cta-box {
  background: radial-gradient(circle at 50% 50%, rgba(79, 172, 254, 0.15) 0%, rgba(121, 40, 202, 0.15) 60%, rgba(7, 12, 30, 0.9) 100%);
  border: 1px solid rgba(0, 242, 254, 0.35);
  border-radius: var(--radius-xl);
  padding: 4rem 2rem;
  text-align: center;
  position: relative;
  box-shadow: var(--shadow-cosmic-lg);
}

.cta-box h2 {
  margin-bottom: 1.2rem;
}

.cta-box p {
  max-width: 650px;
  margin: 0 auto 2.5rem auto;
  font-size: 1.15rem;
}

/* ==========================================================================
   Contact Page & Form Components
   ========================================================================== */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 3.5rem;
  align-items: start;
}

.contact-info-card {
  height: 100%;
}

.info-item {
  display: flex;
  align-items: flex-start;
  gap: 1.2rem;
  margin-bottom: 2rem;
}

.info-icon {
  width: 48px;
  height: 48px;
  border-radius: var(--radius-md);
  background: rgba(0, 242, 254, 0.1);
  border: 1px solid rgba(0, 242, 254, 0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--neon-cyan);
  flex-shrink: 0;
}

.info-details h4 {
  font-size: 1.1rem;
  margin-bottom: 0.3rem;
}

.info-details p, .info-details a {
  font-size: 0.95rem;
  color: var(--text-secondary);
  margin-bottom: 0;
}

.info-details a:hover {
  color: var(--neon-cyan);
}

.form-group {
  margin-bottom: 1.4rem;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.2rem;
}

.form-label {
  display: block;
  font-size: 0.9rem;
  font-weight: 500;
  margin-bottom: 0.5rem;
  color: var(--text-secondary);
}

.form-control {
  width: 100%;
  background: var(--bg-glass-input);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-md);
  padding: 0.85rem 1.2rem;
  color: #ffffff;
  font-family: var(--font-body);
  font-size: 0.98rem;
  transition: all var(--transition-fast);
}

.form-control:focus {
  outline: none;
  border-color: var(--neon-cyan);
  box-shadow: 0 0 15px rgba(0, 242, 254, 0.25);
  background: rgba(13, 23, 51, 0.9);
}

textarea.form-control {
  min-height: 130px;
  resize: vertical;
}

.form-check {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  font-size: 0.88rem;
  color: var(--text-muted);
}

.form-check input[type="checkbox"] {
  accent-color: var(--neon-cyan);
  width: 18px;
  height: 18px;
  margin-top: 2px;
  cursor: pointer;
}

/* ==========================================================================
   Legal Pages (Terms, Privacy, Cookies)
   ========================================================================== */
.legal-header {
  padding-top: 8.5rem;
  padding-bottom: 3.5rem;
  border-bottom: 1px solid var(--border-subtle);
  background: rgba(7, 12, 30, 0.4);
}

.legal-grid {
  display: grid;
  grid-template-columns: 280px 1fr;
  gap: 3.5rem;
  padding-top: 3.5rem;
}

.legal-sidebar {
  position: sticky;
  top: 6.5rem;
  height: fit-content;
}

.legal-nav {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.legal-nav-link {
  color: var(--text-dim);
  font-size: 0.92rem;
  padding: 0.5rem 0.8rem;
  border-radius: var(--radius-sm);
  border-left: 2px solid transparent;
  transition: all var(--transition-fast);
}

.legal-nav-link:hover, .legal-nav-link.active {
  color: var(--neon-cyan);
  border-left-color: var(--neon-cyan);
  background: rgba(0, 242, 254, 0.05);
}

.legal-article {
  background: var(--bg-cosmos-card);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-lg);
  padding: 3rem;
  box-shadow: var(--shadow-cosmic-sm);
}

.legal-article h2 {
  font-size: 1.6rem;
  margin-top: 2.2rem;
  margin-bottom: 1rem;
  padding-bottom: 0.5rem;
  border-bottom: 1px solid var(--border-subtle);
}

.legal-article h3 {
  font-size: 1.25rem;
  margin-top: 1.5rem;
  margin-bottom: 0.8rem;
}

.legal-article p, .legal-article li {
  font-size: 0.98rem;
  color: var(--text-secondary);
  line-height: 1.75;
  margin-bottom: 1rem;
}

.legal-article ul {
  padding-left: 1.5rem;
  list-style: disc;
  margin-bottom: 1.2rem;
}

.legal-callout {
  background: rgba(0, 242, 254, 0.06);
  border-left: 4px solid var(--neon-cyan);
  padding: 1.2rem 1.5rem;
  border-radius: 0 var(--radius-md) var(--radius-md) 0;
  margin: 1.8rem 0;
}

.legal-table {
  width: 100%;
  border-collapse: collapse;
  margin: 1.8rem 0;
  font-size: 0.92rem;
}

.legal-table th, .legal-table td {
  padding: 0.9rem 1rem;
  border: 1px solid var(--border-subtle);
  text-align: left;
}

.legal-table th {
  background: rgba(255, 255, 255, 0.04);
  color: var(--neon-cyan);
  font-weight: 600;
}

/* ==========================================================================
   Footer
   ========================================================================== */
.site-footer {
  background: #02040b;
  border-top: 1px solid var(--border-subtle);
  padding-top: 5rem;
  padding-bottom: 2rem;
  position: relative;
  z-index: 2;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1.2fr;
  gap: 3rem;
  margin-bottom: 4rem;
}

.footer-brand p {
  color: var(--text-muted);
  font-size: 0.92rem;
  margin-top: 1.2rem;
  margin-bottom: 1.5rem;
  max-width: 320px;
}

.footer-title {
  font-family: var(--font-heading);
  font-size: 1.05rem;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 1.4rem;
  letter-spacing: 0.02em;
}

.footer-nav {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.footer-nav a {
  color: var(--text-muted);
  font-size: 0.92rem;
}

.footer-nav a:hover {
  color: var(--neon-cyan);
  transform: translateX(4px);
}

.footer-contact-list li {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  color: var(--text-muted);
  font-size: 0.9rem;
  margin-bottom: 0.85rem;
}

.footer-contact-list svg {
  color: var(--neon-cyan);
  flex-shrink: 0;
  margin-top: 2px;
}

.footer-bottom {
  padding-top: 2rem;
  border-top: 1px solid var(--border-subtle);
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1rem;
}

.footer-copyright {
  color: var(--text-dim);
  font-size: 0.85rem;
}

.footer-legal-links {
  display: flex;
  gap: 1.5rem;
}

.footer-legal-links a {
  color: var(--text-dim);
  font-size: 0.85rem;
}

.footer-legal-links a:hover {
  color: var(--neon-cyan);
}

/* ==========================================================================
   Cookie Consent Banner & Modal
   ========================================================================== */
.cookie-banner {
  position: fixed;
  bottom: 1.5rem;
  right: 1.5rem;
  max-width: 460px;
  background: rgba(7, 12, 30, 0.94);
  backdrop-filter: blur(20px);
  border: 1px solid rgba(0, 242, 254, 0.35);
  border-radius: var(--radius-lg);
  padding: 1.6rem;
  box-shadow: var(--shadow-cosmic-lg);
  z-index: 2000;
  transform: translateY(150%);
  opacity: 0;
  transition: all 0.45s cubic-bezier(0.16, 1, 0.3, 1);
}

.cookie-banner.visible {
  transform: translateY(0);
  opacity: 1;
}

.cookie-banner h4 {
  font-size: 1.15rem;
  margin-bottom: 0.5rem;
  display: flex;
  align-items: center;
  gap: 0.6rem;
}

.cookie-banner p {
  font-size: 0.88rem;
  color: var(--text-secondary);
  line-height: 1.55;
  margin-bottom: 1.2rem;
}

.cookie-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
}

/* Modal */
.modal-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.8);
  backdrop-filter: blur(8px);
  z-index: 2100;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1.5rem;
  opacity: 0;
  pointer-events: none;
  transition: opacity var(--transition-fast);
}

.modal-overlay.open {
  opacity: 1;
  pointer-events: auto;
}

.modal-content {
  background: var(--bg-cosmos-dark);
  border: 1px solid rgba(0, 242, 254, 0.3);
  border-radius: var(--radius-xl);
  max-width: 620px;
  width: 100%;
  padding: 2.2rem;
  box-shadow: var(--shadow-cosmic-lg);
  position: relative;
  max-height: 90vh;
  overflow-y: auto;
}

/* Floating Action Button (Call) */
.floating-call-fab {
  position: fixed;
  bottom: 2rem;
  left: 2rem;
  z-index: 990;
  background: var(--grad-cyan-blue);
  color: #030611;
  width: 54px;
  height: 54px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: var(--shadow-cosmic-md);
  transition: all var(--transition-bounce);
}

.floating-call-fab:hover {
  transform: scale(1.12);
  color: #030611;
  box-shadow: 0 0 25px rgba(0, 242, 254, 0.7);
}

/* Toast Notification */
.toast-notice {
  position: fixed;
  top: 2rem;
  right: 2rem;
  background: rgba(7, 12, 30, 0.95);
  border: 1px solid var(--neon-cyan);
  border-radius: var(--radius-md);
  padding: 1rem 1.5rem;
  color: #ffffff;
  display: flex;
  align-items: center;
  gap: 0.8rem;
  z-index: 3000;
  box-shadow: var(--shadow-cosmic-md);
  transform: translateX(150%);
  transition: transform 0.4s ease;
}

.toast-notice.show {
  transform: translateX(0);
}
