/* ==========================================================================
   GROWTALKS - OPERAÇÕES INTELIGENTES
   Design System & Core Styles (Vanilla CSS)
   Faithful reproduction of site.jpg with interactive enhancements
   ========================================================================== */

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

:root {
  /* Core Background & Surfaces */
  --bg-primary: #050811;
  --bg-secondary: #080d1c;
  --bg-tertiary: #0e152e;
  --bg-glass: rgba(13, 21, 44, 0.72);
  --bg-glass-hover: rgba(22, 34, 68, 0.85);
  --bg-card: rgba(15, 23, 48, 0.65);

  /* Brand Colors & Gradients */
  --cyan-primary: #00e5ff;
  --cyan-dark: #00b4d8;
  --cyan-glow: rgba(0, 229, 255, 0.45);
  --purple-primary: #a855f7;
  --purple-glow: rgba(168, 85, 247, 0.45);
  --pink-primary: #ec4899;
  --blue-primary: #38bdf8;
  --violet-primary: #c084fc;
  
  /* Text & Badges */
  --text-primary: #ffffff;
  --text-secondary: #a0aec0;
  --text-muted: #64748b;
  --badge-green-text: #34d399;
  --badge-green-bg: rgba(16, 185, 129, 0.18);

  /* Border & Shadows */
  --border-glass: rgba(0, 229, 255, 0.22);
  --border-glass-purple: rgba(168, 85, 247, 0.4);
  --shadow-lg: 0 10px 35px rgba(0, 0, 0, 0.65);
  --shadow-glow-cyan: 0 0 25px rgba(0, 229, 255, 0.35);
  --shadow-glow-purple: 0 0 35px rgba(168, 85, 247, 0.4);

  /* Layout & Animations */
  --max-width: 1360px;
  --header-height: 84px;
  --transition-fast: 0.2s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-smooth: 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

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

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: 'Outfit', 'Plus Jakarta Sans', sans-serif;
  background-color: var(--bg-primary);
  color: var(--text-primary);
  line-height: 1.6;
  overflow-x: hidden;
  min-height: 100vh;
  position: relative;
}

/* Ambient Background Glow Spots */
body::before {
  content: '';
  position: absolute;
  top: -150px;
  left: -100px;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(0, 229, 255, 0.12) 0%, rgba(5, 8, 17, 0) 70%);
  z-index: 0;
  pointer-events: none;
}

body::after {
  content: '';
  position: absolute;
  top: 150px;
  right: -150px;
  width: 750px;
  height: 750px;
  background: radial-gradient(circle, rgba(168, 85, 247, 0.12) 0%, rgba(5, 8, 17, 0) 70%);
  z-index: 0;
  pointer-events: none;
}

.ambient-center-glow {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 900px;
  height: 400px;
  background: radial-gradient(ellipse, rgba(0, 229, 255, 0.08) 0%, rgba(5, 8, 17, 0) 75%);
  z-index: 0;
  pointer-events: none;
}

/* Container */
.container {
  width: 100%;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 32px;
  position: relative;
  z-index: 2;
}

/* ==========================================================================
   HEADER & LOGO
   ========================================================================== */
.site-header {
  height: var(--header-height);
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 16px;
}

.logo {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  cursor: pointer;
  transition: transform var(--transition-fast);
}

.logo:hover {
  transform: scale(1.03);
}

.logo-icon {
  width: 44px;
  height: 44px;
  background: linear-gradient(135deg, #00e5ff 0%, #0077ff 100%);
  border-radius: 12px;
  border-bottom-left-radius: 4px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 18px rgba(0, 229, 255, 0.35);
  position: relative;
}

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

.logo-dot {
  width: 6px;
  height: 6px;
  background-color: #ffffff;
  border-radius: 50%;
}

.logo-text {
  font-family: 'Outfit', sans-serif;
  font-size: 26px;
  font-weight: 800;
  letter-spacing: -0.5px;
  display: flex;
  align-items: center;
}

.logo-text-white {
  color: #ffffff;
}

.logo-text-cyan {
  color: var(--cyan-primary);
  font-weight: 500;
}

/* ==========================================================================
   HERO SECTION
   ========================================================================== */
.hero-section {
  display: grid;
  grid-template-columns: 1fr 1.15fr;
  gap: 48px;
  align-items: center;
  min-height: calc(100vh - var(--header-height) - 160px);
  padding: 40px 0 60px;
}

/* Hero Left - Content */
.hero-content {
  display: flex;
  flex-direction: column;
  gap: 28px;
  z-index: 3;
}

.badge-tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 13px;
  font-weight: 700;
  color: var(--cyan-primary);
  letter-spacing: 2.2px;
  text-transform: uppercase;
}

.badge-tag-star {
  color: var(--cyan-primary);
  font-size: 16px;
  filter: drop-shadow(0 0 6px var(--cyan-primary));
  animation: pulseStar 2.5s infinite ease-in-out;
}

@keyframes pulseStar {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.6; transform: scale(1.2); }
}

.hero-title {
  font-size: 54px;
  font-weight: 800;
  line-height: 1.12;
  letter-spacing: -1.5px;
}

.title-white-block {
  display: block;
  color: var(--text-primary);
}

.title-gradient-block {
  display: block;
  background: linear-gradient(90deg, #00e5ff 0%, #a855f7 55%, #ec4899 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  filter: drop-shadow(0 2px 15px rgba(0, 229, 255, 0.2));
}

.hero-subtitle {
  font-family: 'Inter', sans-serif;
  font-size: 18px;
  color: var(--text-secondary);
  line-height: 1.65;
  max-width: 530px;
}

.text-highlight-cyan {
  color: var(--cyan-primary);
  font-weight: 600;
}

/* CTA Button Row */
.cta-group {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
  margin-top: 8px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  font-family: 'Outfit', sans-serif;
  font-size: 15px;
  font-weight: 700;
  padding: 16px 28px;
  border-radius: 9999px;
  border: none;
  cursor: pointer;
  transition: all var(--transition-smooth);
  text-decoration: none;
  position: relative;
  overflow: hidden;
}

.btn-primary {
  background: linear-gradient(135deg, #00e5ff 0%, #00b4d8 100%);
  color: #050811;
  box-shadow: var(--shadow-glow-cyan);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 0 32px rgba(0, 229, 255, 0.7);
  background: linear-gradient(135deg, #1ef1ff 0%, #00c7f2 100%);
}

.btn-secondary {
  background: rgba(13, 21, 44, 0.7);
  color: #ffffff;
  border: 1px solid rgba(0, 229, 255, 0.35);
  backdrop-filter: blur(10px);
}

.btn-secondary:hover {
  background: rgba(0, 229, 255, 0.12);
  border-color: var(--cyan-primary);
  transform: translateY(-2px);
}

.btn-icon-svg {
  width: 20px;
  height: 20px;
  flex-shrink: 0;
}

/* ==========================================================================
   HERO RIGHT - INTERACTIVE OPERATIONS GRAPHIC & GLASS CARDS
   ========================================================================== */
.hero-graphic-area {
  position: relative;
  width: 100%;
  height: 560px;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Background Office Collaboration Layer */
.office-bg-layer {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border-radius: 24px;
  overflow: hidden;
  background-image: 
    radial-gradient(ellipse at center, rgba(13, 21, 44, 0.45) 0%, rgba(5, 8, 17, 0.95) 100%),
    linear-gradient(135deg, rgba(0, 229, 255, 0.08) 0%, rgba(168, 85, 247, 0.08) 100%);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.7);
  border: 1px solid rgba(255, 255, 255, 0.07);
}

/* We create an office meeting ambiance with CSS subtle layered lighting */
.office-bg-overlay {
  position: absolute;
  inset: 0;
  background: 
    radial-gradient(circle at 60% 40%, rgba(0, 180, 216, 0.18) 0%, transparent 60%),
    radial-gradient(circle at 30% 70%, rgba(168, 85, 247, 0.15) 0%, transparent 55%);
  z-index: 1;
}

/* SVG Connector Lines Behind Cards */
.svg-connection-lines {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 2;
  pointer-events: none;
}

.glow-path-cyan {
  fill: none;
  stroke: var(--cyan-primary);
  stroke-width: 1.5;
  stroke-dasharray: 4, 4;
  opacity: 0.65;
  filter: drop-shadow(0 0 5px var(--cyan-primary));
}

.glow-path-purple {
  fill: none;
  stroke: var(--purple-primary);
  stroke-width: 1.5;
  stroke-dasharray: 4, 4;
  opacity: 0.65;
  filter: drop-shadow(0 0 5px var(--purple-primary));
}

/* Glassmorphism Floating Cards */
.cards-network-container {
  position: absolute;
  inset: 0;
  z-index: 3;
}

.glass-card {
  position: absolute;
  background: var(--bg-glass);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  border: 1px solid var(--border-glass);
  border-radius: 18px;
  padding: 16px 20px;
  box-shadow: var(--shadow-lg), inset 0 0 20px rgba(0, 229, 255, 0.08);
  transition: all var(--transition-smooth);
  cursor: default;
}

.glass-card:hover {
  transform: translateY(-6px) scale(1.02);
  border-color: var(--cyan-primary);
  box-shadow: 0 15px 45px rgba(0, 0, 0, 0.8), 0 0 25px rgba(0, 229, 255, 0.35);
  z-index: 10;
}

/* Card Positions matching site.jpg precisely */
.card-captacao {
  top: 25px;
  left: 20px;
  width: 200px;
  animation: floatCard 6s ease-in-out infinite;
}

.card-atendimento {
  top: 15px;
  right: 15px;
  width: 220px;
  animation: floatCard 7s ease-in-out infinite 0.5s;
}

.card-automacoes {
  top: 175px;
  left: 10px;
  width: 210px;
  animation: floatCard 6.5s ease-in-out infinite 1s;
}

.card-resultados {
  top: 155px;
  left: 50%;
  transform: translateX(-50%);
  width: 270px;
  border: 1.5px solid rgba(168, 85, 247, 0.65);
  box-shadow: var(--shadow-glow-purple), inset 0 0 25px rgba(168, 85, 247, 0.15);
  background: rgba(16, 23, 52, 0.85);
  animation: floatCardHero 8s ease-in-out infinite;
}

.card-resultados:hover {
  border-color: #d8b4fe;
  box-shadow: 0 0 45px rgba(168, 85, 247, 0.7);
}

.card-vendas {
  top: 165px;
  right: 10px;
  width: 210px;
  animation: floatCard 7.5s ease-in-out infinite 1.5s;
}

.card-processos {
  bottom: 30px;
  right: 50px;
  width: 230px;
  animation: floatCard 6.8s ease-in-out infinite 2s;
}

.trophy-node {
  position: absolute;
  bottom: 60px;
  left: 45%;
  width: 54px;
  height: 54px;
  border-radius: 50%;
  background: rgba(10, 18, 40, 0.9);
  border: 2px solid var(--cyan-primary);
  box-shadow: var(--shadow-glow-cyan);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 4;
  animation: pulseNode 3s infinite ease-in-out;
}

@keyframes pulseNode {
  0%, 100% { transform: scale(1); box-shadow: 0 0 20px rgba(0, 229, 255, 0.4); }
  50% { transform: scale(1.08); box-shadow: 0 0 35px rgba(0, 229, 255, 0.7); }
}

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

@keyframes floatCardHero {
  0%, 100% { transform: translate(-50%, 0px); }
  50% { transform: translate(-50%, -8px); }
}

/* Card Internal Typography & Layout */
.card-header {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 8px;
}

.card-icon-box {
  width: 28px;
  height: 28px;
  border-radius: 6px;
  background: rgba(0, 229, 255, 0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--cyan-primary);
}

.card-icon-purple {
  background: rgba(168, 85, 247, 0.2);
  color: #d8b4fe;
}

.card-title {
  font-family: 'Outfit', sans-serif;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.8px;
  color: var(--cyan-primary);
  text-transform: uppercase;
}

.card-title-purple {
  color: #ffffff;
}

.card-subtitle {
  font-size: 12px;
  color: var(--text-secondary);
  margin-bottom: 4px;
}

.card-metric-row {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  margin-bottom: 6px;
}

.card-value {
  font-family: 'Outfit', sans-serif;
  font-size: 24px;
  font-weight: 700;
  color: #ffffff;
}

.badge-change {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 11px;
  font-weight: 700;
  padding: 2px 8px;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  gap: 3px;
  background: var(--badge-green-bg);
  color: var(--badge-green-text);
}

.card-chart-svg {
  width: 100%;
  height: 24px;
  overflow: visible;
  margin-top: 4px;
}

/* Resultados Card Specific */
.resultados-list {
  list-style: none;
  margin-top: 8px;
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.resultados-list-item {
  font-family: 'Inter', sans-serif;
  font-size: 14px;
  font-weight: 500;
  color: #ffffff;
  display: flex;
  align-items: center;
  gap: 8px;
}

.resultados-dot {
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background-color: var(--cyan-primary);
  box-shadow: 0 0 8px var(--cyan-primary);
}

/* Card Progress Bar & Dot Indicators */
.progress-bar-bg {
  width: 100%;
  height: 5px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 4px;
  overflow: hidden;
  margin-top: 8px;
}

.progress-bar-fill {
  height: 100%;
  background: linear-gradient(90deg, #00e5ff 0%, #0077ff 100%);
  border-radius: 4px;
  width: 92%;
  box-shadow: 0 0 10px var(--cyan-primary);
}

.dots-indicator-row {
  display: flex;
  align-items: center;
  gap: 6px;
  margin-top: 8px;
}

.dot-indicator {
  width: 12px;
  height: 4px;
  border-radius: 2px;
  background: var(--cyan-primary);
  box-shadow: 0 0 6px var(--cyan-primary);
}

.dot-indicator-inactive {
  background: rgba(255, 255, 255, 0.2);
  box-shadow: none;
}

/* ==========================================================================
   DOWNWARD CHEVRON & SECTION DIVIDER
   ========================================================================== */
.section-transition {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 20px 0;
  position: relative;
  z-index: 5;
}

.chevron-down-box {
  width: 38px;
  height: 38px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--cyan-primary);
  cursor: pointer;
  transition: transform var(--transition-fast);
  animation: bounceChevron 2.5s infinite;
}

.chevron-down-box:hover {
  transform: translateY(3px) scale(1.1);
}

@keyframes bounceChevron {
  0%, 20%, 50%, 80%, 100% { transform: translateY(0); }
  40% { transform: translateY(6px); }
  60% { transform: translateY(3px); }
}

.divider-line {
  width: 180px;
  height: 2px;
  background: radial-gradient(circle, rgba(0, 229, 255, 0.8) 0%, rgba(0, 229, 255, 0) 80%);
  margin-top: 8px;
  box-shadow: 0 0 10px var(--cyan-primary);
}

/* ==========================================================================
   BOTTOM VALUE PROPOSITION SECTION
   "Empresas não compram CRM."
   ========================================================================== */
.value-prop-section {
  padding: 60px 0 100px;
  position: relative;
  z-index: 3;
}

.value-prop-header {
  text-align: center;
  margin-bottom: 64px;
}

.value-prop-title {
  font-family: 'Outfit', sans-serif;
  font-size: 44px;
  font-weight: 800;
  letter-spacing: -1px;
}

.title-crm-highlight {
  color: var(--cyan-primary);
  text-shadow: 0 0 25px rgba(0, 229, 255, 0.5);
}

/* 4-Column Grid */
.value-columns-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  position: relative;
}

.value-col-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 28px 20px;
  border-radius: 20px;
  background: rgba(13, 21, 44, 0.35);
  border: 1px solid rgba(255, 255, 255, 0.06);
  transition: all var(--transition-smooth);
  cursor: pointer;
  position: relative;
}

.value-col-card:hover {
  background: rgba(22, 34, 68, 0.65);
  transform: translateY(-8px);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.5);
}

/* Vertical Separator lines between columns matching site.jpg */
.value-col-card:not(:last-child)::after {
  content: '';
  position: absolute;
  right: -12px;
  top: 20%;
  height: 60%;
  width: 1px;
  background: linear-gradient(to bottom, transparent, rgba(255, 255, 255, 0.12), transparent);
}

.value-circle-icon {
  width: 76px;
  height: 76px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 24px;
  border: 2px solid;
  transition: transform var(--transition-smooth);
}

.value-col-card:hover .value-circle-icon {
  transform: scale(1.1) rotate(5deg);
}

/* Column 1 - Crescimento (Cyan #00E5FF) */
.col-crescimento .value-circle-icon {
  border-color: #00e5ff;
  box-shadow: 0 0 25px rgba(0, 229, 255, 0.35), inset 0 0 15px rgba(0, 229, 255, 0.15);
  color: #00e5ff;
}
.col-crescimento:hover {
  border-color: rgba(0, 229, 255, 0.4);
}
.text-cyan-bold {
  color: #00e5ff;
  font-weight: 700;
}

/* Column 2 - Organização (Purple #B855FF) */
.col-organizacao .value-circle-icon {
  border-color: #a855f7;
  box-shadow: 0 0 25px rgba(168, 85, 247, 0.35), inset 0 0 15px rgba(168, 85, 247, 0.15);
  color: #a855f7;
}
.col-organizacao:hover {
  border-color: rgba(168, 85, 247, 0.4);
}
.text-purple-bold {
  color: #b855ff;
  font-weight: 700;
}

/* Column 3 - Previsibilidade (Blue/Cyan #3DA9FC) */
.col-previsibilidade .value-circle-icon {
  border-color: #38bdf8;
  box-shadow: 0 0 25px rgba(56, 189, 248, 0.35), inset 0 0 15px rgba(56, 189, 248, 0.15);
  color: #38bdf8;
}
.col-previsibilidade:hover {
  border-color: rgba(56, 189, 248, 0.4);
}
.text-blue-bold {
  color: #38bdf8;
  font-weight: 700;
}

/* Column 4 - Resultados (Violet/Pink #C77DFF) */
.col-resultados .value-circle-icon {
  border-color: #c084fc;
  box-shadow: 0 0 25px rgba(192, 132, 252, 0.35), inset 0 0 15px rgba(192, 132, 252, 0.15);
  color: #c084fc;
}
.col-resultados:hover {
  border-color: rgba(192, 132, 252, 0.4);
}
.text-violet-bold {
  color: #c77dff;
  font-weight: 700;
}

.value-col-text {
  font-family: 'Outfit', sans-serif;
  font-size: 20px;
  font-weight: 400;
  line-height: 1.35;
  color: #ffffff;
}

.value-col-desc {
  font-size: 13px;
  color: var(--text-secondary);
  margin-top: 12px;
  opacity: 0.85;
  max-width: 220px;
  transition: opacity var(--transition-fast);
}

.value-col-card:hover .value-col-desc {
  opacity: 1;
}

/* ==========================================================================
   INTERACTIVE MODAL & TOAST COMPONENT
   ========================================================================== */
.modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(5, 8, 17, 0.85);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 1000;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
  padding: 20px;
}

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

.modal-content {
  background: var(--bg-tertiary);
  border: 1px solid var(--border-glass);
  border-radius: 24px;
  width: 100%;
  max-width: 520px;
  padding: 36px;
  box-shadow: 0 25px 60px rgba(0, 0, 0, 0.8), 0 0 40px rgba(0, 229, 255, 0.2);
  transform: translateY(20px) scale(0.95);
  transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  position: relative;
}

.modal-overlay.active .modal-content {
  transform: translateY(0) scale(1);
}

.modal-close-btn {
  position: absolute;
  top: 24px;
  right: 24px;
  background: rgba(255, 255, 255, 0.08);
  border: none;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  color: #ffffff;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background var(--transition-fast);
}

.modal-close-btn:hover {
  background: rgba(0, 229, 255, 0.2);
  color: var(--cyan-primary);
}

.modal-header-title {
  font-family: 'Outfit', sans-serif;
  font-size: 26px;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 8px;
}

.modal-header-subtitle {
  font-size: 14px;
  color: var(--text-secondary);
  margin-bottom: 24px;
}

.form-group {
  margin-bottom: 18px;
}

.form-label {
  display: block;
  font-family: 'Inter', sans-serif;
  font-size: 13px;
  font-weight: 600;
  color: var(--text-primary);
  margin-bottom: 6px;
}

.form-input, .form-textarea {
  width: 100%;
  background: rgba(8, 13, 28, 0.8);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 12px;
  padding: 14px 16px;
  color: #ffffff;
  font-family: 'Inter', sans-serif;
  font-size: 14px;
  outline: none;
  transition: border-color var(--transition-fast), box-shadow var(--transition-fast);
}

.form-input:focus, .form-textarea:focus {
  border-color: var(--cyan-primary);
  box-shadow: 0 0 15px rgba(0, 229, 255, 0.25);
}

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

.btn-submit-modal {
  width: 100%;
  margin-top: 10px;
  padding: 16px;
  font-size: 16px;
}

/* Toast Notification */
.toast-container {
  position: fixed;
  bottom: 30px;
  right: 30px;
  background: #0e1732;
  border: 1px solid #00e5ff;
  border-radius: 14px;
  padding: 16px 24px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.7), 0 0 20px rgba(0, 229, 255, 0.3);
  display: flex;
  align-items: center;
  gap: 12px;
  z-index: 2000;
  transform: translateY(100px);
  opacity: 0;
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.toast-container.show {
  transform: translateY(0);
  opacity: 1;
}

.toast-icon {
  color: var(--cyan-primary);
  font-size: 20px;
}

.toast-message {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 14px;
  font-weight: 600;
  color: #ffffff;
}

/* ==========================================================================
   FOOTER
   ========================================================================== */
.site-footer {
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding: 32px 0;
  text-align: center;
  color: var(--text-muted);
  font-size: 13px;
}

/* ==========================================================================
   RESPONSIVE DESIGN BREAKPOINTS
   ========================================================================== */
@media (max-width: 1150px) {
  .hero-section {
    grid-template-columns: 1fr;
    gap: 60px;
  }
  
  .hero-title {
    font-size: 44px;
  }
  
  .hero-graphic-area {
    height: 520px;
    max-width: 750px;
    margin: 0 auto;
  }

  .value-columns-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 32px;
  }
  
  .value-col-card:not(:last-child)::after {
    display: none;
  }
}

@media (max-width: 768px) {
  .hero-title {
    font-size: 36px;
  }

  .hero-subtitle {
    font-size: 16px;
  }

  .cta-group {
    flex-direction: column;
    align-items: stretch;
  }

  .btn {
    width: 100%;
  }

  .hero-graphic-area {
    height: 650px;
  }

  .glass-card {
    position: relative;
    top: auto !important;
    left: auto !important;
    right: auto !important;
    bottom: auto !important;
    transform: none !important;
    width: 100%;
    margin-bottom: 16px;
  }

  .cards-network-container {
    display: flex;
    flex-direction: column;
    padding: 20px;
    position: relative;
    overflow-y: auto;
  }

  .svg-connection-lines {
    display: none;
  }
  
  .trophy-node {
    display: none;
  }

  .value-columns-grid {
    grid-template-columns: 1fr;
    gap: 24px;
  }
}
