/*
Theme Name: BYDP Redesign
Author: You
Description: Custom landing page theme.
Version: 1.0
*/
/* =========================================================================
   VARIABLES & DESIGN TOKENS (V2 Dribbble Layout + Original Brand Colors)
   ========================================================================= */
:root {
  /* Brand Colors (Strictly requested by User) */
  --brand-blue: #004071;
  --brand-blue-light: #0066b3;
  --brand-orange: #f08a00;
  --brand-orange-light: #ffa633;

  /* Dark Mode Palette */
  --bg-dark: #04101F;
  --bg-panel: #041c36;
  --border-glass: rgba(255, 255, 255, 0.08);
  --border-glass-hover: rgba(240, 138, 0, 0.4);

  --text-main: #ffffff;
  --text-muted: #888888;

  /* Light Mode Palette Override */
  --bg-light: #ffffff;
  --bg-panel-light: #f4f7fb;
  --border-glass-light: rgba(0, 0, 0, 0.1);
  --border-glass-hover-light: rgba(240, 138, 0, 0.6);
  --text-main-light: #111827;
  --text-muted-light: #4b5563;

  /* Typography */
  --font-main: 'Inter', sans-serif;

  /* Layout */
  --container: 1200px;
  --transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-main);
  background-color: var(--bg-dark);
  color: var(--text-main);
  line-height: 1.5;
  overflow-x: hidden;
  transition: background-color 0.3s ease, color 0.3s ease;
}

body.light-mode {
  --bg-dark: var(--bg-light);
  --bg-panel: var(--bg-panel-light);
  --border-glass: var(--border-glass-light);
  --border-glass-hover: var(--border-glass-hover-light);
  --text-main: var(--text-main-light);
  --text-muted: var(--text-muted-light);
}

/* Background Effects */
.bg-grid {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 120vh;
  background-image: linear-gradient(var(--border-glass) 1px, transparent 1px),
    linear-gradient(90deg, var(--border-glass) 1px, transparent 1px);
  background-size: 50px 50px;
  background-position: center;
  opacity: 0.3;
  z-index: -2;
  mask-image: linear-gradient(to bottom, black 0%, transparent 80%);
  -webkit-mask-image: linear-gradient(to bottom, black 0%, transparent 80%);
}

.glow-orb {
  position: absolute;
  width: 500px;
  height: 500px;
  border-radius: 50%;
  filter: blur(150px);
  z-index: -1;
  pointer-events: none;
}

.orange-glow {
  background: var(--brand-orange);
  top: -100px;
  left: -5%;
  opacity: 0.3;
}

.blue-glow {
  background: var(--brand-blue-light);
  width: 800px;
  height: 800px;
  top: 20%;
  right: -25%;
  opacity: 0.4;
}

.text-animated-gradient {
  background: linear-gradient(270deg,
      var(--brand-blue-light) 0%,
      var(--brand-orange-light) 50%,
      #e8007a 75%,
      var(--brand-blue-light) 100%);
  background-size: 300% 300%;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  animation: gradientFlow 8s ease infinite;
}

@keyframes gradientFlow {
  0% {
    background-position: 0% 50%;
  }

  50% {
    background-position: 100% 50%;
  }

  100% {
    background-position: 0% 50%;
  }
}

.container {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 24px;
}

.text-center {
  text-align: center;
}

.border-y {
  border-top: 1px solid var(--border-glass);
  border-bottom: 1px solid var(--border-glass);
}

/* Buttons & Elements */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-weight: 600;
  font-family: var(--font-main);
  text-decoration: none;
  transition: var(--transition);
  cursor: pointer;
  border: none;
  outline: none;
}

.btn-pill {
  padding: 12px 32px;
  border-radius: 50px;
}

.btn-primary {
  background: linear-gradient(90deg, var(--brand-orange), var(--brand-orange-light));
  color: #000;
  box-shadow: 0 4px 20px rgba(240, 138, 0, 0.3);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(240, 138, 0, 0.5);
}

.btn-secondary {
  background: linear-gradient(90deg, var(--brand-blue), var(--brand-blue-light));
  color: #fff;
  box-shadow: 0 4px 20px rgba(0, 102, 179, 0.3);
}

.btn-secondary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(0, 102, 179, 0.5);
}

.btn-massive {
  font-size: 1.5rem;
  padding: 20px 50px;
}

/* Header */
.site-header {
  padding: 24px 0;
  position: absolute;
  width: 100%;
  top: 0;
  z-index: 100;
}

.header-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: rgba(10, 10, 10, 0.5);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  padding: 12px 24px;
  border-radius: 50px;
  border: 1px solid var(--border-glass);
}

.logo {
  font-weight: 900;
  font-size: 1.8rem;
  color: #fff;
  text-decoration: none;
  letter-spacing: -1.5px;
}

.main-nav ul {
  display: flex;
  list-style: none;
  gap: 40px;
}

.main-nav a {
  text-decoration: none;
  color: var(--text-main);
  font-size: 0.95rem;
  font-weight: 500;
  transition: var(--transition);
}

.main-nav a:hover {
  color: var(--brand-orange);
}

/* Theme Toggle Button */
.theme-toggle-btn {
  background: transparent;
  border: none;
  color: var(--text-main);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 8px;
  border-radius: 50%;
  transition: var(--transition);
}

.theme-toggle-btn:hover {
  color: var(--brand-orange);
  background: var(--border-glass);
}

.theme-toggle-btn svg {
  width: 20px;
  height: 20px;
}

/* Hero */
.hero {
  padding-top: 180px;
  padding-bottom: 80px;
  text-align: center;
}

.hero-content {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 16px;
  border-radius: 50px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid var(--border-glass);
  font-size: 0.85rem;
  font-weight: 600;
  margin-bottom: 24px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--brand-orange);
  box-shadow: 0 0 10px var(--brand-orange);
}

.hero-title {
  font-size: clamp(3rem, 7vw, 6.5rem);
  font-weight: 900;
  line-height: 1;
  letter-spacing: -3px;
  margin-bottom: 24px;
  text-transform: uppercase;
}

.hero-subtitle {
  color: var(--text-muted);
  font-size: 1.15rem;
  max-width: 600px;
  margin: 0 auto 40px;
}

.hero-cta-box {
  display: inline-flex;
  align-items: center;
  background: var(--bg-panel);
  border: 1px solid var(--border-glass);
  padding: 8px;
  border-radius: 50px;
  max-width: 500px;
  width: 100%;
  margin-bottom: 80px;
}

.hero-cta-box input {
  flex: 1;
  background: transparent;
  border: none;
  outline: none;
  color: #fff;
  padding: 0 20px;
  font-size: 1rem;
}

/* Mockup Widget */
.hero-dashboard-mockup {
  max-width: 900px;
  margin: 0 auto;
  background: var(--bg-panel);
  border: 1px solid var(--border-glass);
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 40px 80px rgba(0, 0, 0, 0.8), 0 0 0 1px rgba(255, 255, 255, 0.05);
  transform: perspective(1000px) rotateX(2deg);
  transition: var(--transition);
}

.hero-dashboard-mockup:hover {
  transform: perspective(1000px) rotateX(0deg) translateY(-10px);
  box-shadow: 0 50px 100px rgba(0, 0, 0, 0.9), 0 0 0 1px rgba(240, 138, 0, 0.3);
}

.mockup-header {
  background: #111;
  padding: 15px 20px;
  border-bottom: 1px solid var(--border-glass);
  display: flex;
  gap: 8px;
  align-items: center;
}

.mockup-header .dots {
  display: flex;
  gap: 6px;
}

.mockup-header .dots span {
  display: inline-block;
  width: 12px;
  height: 12px;
  border-radius: 50%;
}

.mockup-header .dots span:nth-child(1) {
  background: #ff5f56;
}

.mockup-header .dots span:nth-child(2) {
  background: #ffbd2e;
}

.mockup-header .dots span:nth-child(3) {
  background: #27c93f;
}

.mockup-body {
  padding: 40px;
  text-align: left;
}

.mockup-advanced {
  display: flex;
  flex-direction: column;
  gap: 30px;
}

.mockup-top-bar {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
}

.mockup-title {
  font-size: 1.2rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 5px;
}

.mockup-subtitle {
  font-size: 0.9rem;
  color: var(--text-muted);
}

.mockup-total {
  text-align: right;
}

.mockup-total h3 {
  font-size: 2.5rem;
  font-weight: 900;
  color: var(--brand-orange);
  line-height: 1;
}

.mockup-total span {
  font-size: 0.85rem;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 1px;
}

.mockup-main-chart {
  width: 100%;
  height: 200px;
  position: relative;
}

.mockup-main-chart svg {
  width: 100%;
  height: 100%;
  overflow: visible;
}

.chart-line {
  stroke-dasharray: 1200;
  stroke-dashoffset: 1200;
  animation: drawLine 2s cubic-bezier(0.2, 0.8, 0.2, 1) forwards;
  animation-delay: 0.8s;
}

@keyframes drawLine {
  to {
    stroke-dashoffset: 0;
  }
}

.chart-area {
  opacity: 0;
  animation: fadeIn 1.5s ease forwards;
  animation-delay: 1.5s;
}

@keyframes fadeIn {
  to {
    opacity: 1;
  }
}

.data-point {
  opacity: 0;
  transform-origin: center;
  transform: scale(0);
  animation: popIn 0.5s cubic-bezier(0.34, 1.56, 0.64, 1) forwards;
}

.data-point.delay-1 {
  animation-delay: 1.2s;
}

.data-point.delay-2 {
  animation-delay: 1.8s;
}

.data-point.delay-3 {
  animation-delay: 2.2s;
}

@keyframes popIn {
  to {
    opacity: 1;
    transform: scale(1);
  }
}

.mockup-metrics {
  display: flex;
  gap: 20px;
  border-top: 1px solid var(--border-glass);
  padding-top: 20px;
}

.mockup-metric {
  flex: 1;
  display: flex;
  align-items: center;
  gap: 15px;
  background: rgba(255, 255, 255, 0.02);
  padding: 15px;
  border-radius: 12px;
  border: 1px solid var(--border-glass);
  transition: var(--transition);
}

.mockup-metric:hover {
  background: rgba(255, 255, 255, 0.05);
  transform: translateY(-2px);
}

.metric-dot {
  width: 40px;
  height: 40px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-weight: 700;
}

.metric-dot.orange {
  background: rgba(240, 138, 0, 0.2);
  color: var(--brand-orange);
}

.metric-dot.blue {
  background: rgba(0, 102, 179, 0.2);
  color: var(--brand-blue-light);
}

.metric-dot.pink {
  background: rgba(232, 0, 122, 0.2);
  color: #e8007a;
}

.mockup-metric div {
  display: flex;
  flex-direction: column;
}

.mockup-metric strong {
  font-size: 0.9rem;
  color: var(--text-muted);
  font-weight: 500;
}

.mockup-metric span {
  font-size: 1.3rem;
  font-weight: 800;
  color: #fff;
}

/* Ticker */
.client-ticker {
  padding: 30px 0;
  overflow: hidden;
  background: rgba(0, 0, 0, 0.5);
  white-space: nowrap;
  display: flex;
}

.ticker-track {
  display: flex;
  gap: 80px;
  align-items: center;
  animation: ticker 30s linear infinite;
}

.ticker-track span {
  font-size: 1.3rem;
  font-weight: 800;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 3px;
}

@keyframes ticker {
  0% {
    transform: translateX(0);
  }

  100% {
    transform: translateX(-50%);
  }
}

/* Sections */
.section-label {
  display: inline-block;
  border: 1px solid var(--brand-blue-light);
  padding: 6px 16px;
  border-radius: 50px;
  font-size: 0.85rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: var(--brand-blue-light);
  background: rgba(0, 102, 179, 0.1);
  margin-bottom: 24px;
}

.section-header,
.section-title {
  font-size: clamp(2rem, 4vw, 3.5rem);
  font-weight: 800;
  letter-spacing: -1.5px;
  margin-bottom: 60px;
  line-height: 1.1;
}

.services {
  padding: 120px 0;
}

/* Grid & Cards */
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 24px;
}

.dark-glass {
  background: var(--bg-panel);
  border: 1px solid var(--border-glass);
  border-radius: 20px;
  padding: 40px;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}

.dark-glass::after {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at top left, rgba(240, 138, 0, 0.08), transparent 70%);
  pointer-events: none;
  opacity: 0;
  transition: var(--transition);
}

.dark-glass:hover {
  border-color: var(--border-glass-hover);
  transform: translateY(-5px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.6);
}

.dark-glass:hover::after {
  opacity: 1;
}

.card-icon {
  width: 56px;
  height: 56px;
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid var(--border-glass);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--brand-orange);
  margin-bottom: 24px;
  transition: var(--transition);
}

.dark-glass:hover .card-icon {
  background: var(--brand-orange);
  color: #000;
  transform: scale(1.1);
}

.dark-glass h3 {
  font-size: 1.5rem;
  margin-bottom: 12px;
  font-weight: 700;
}

.dark-glass p {
  color: var(--text-muted);
  font-size: 1rem;
  margin-bottom: 30px;
  line-height: 1.6;
}

.arrow-link {
  display: inline-flex;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.05);
  color: #fff;
  align-items: center;
  justify-content: center;
  transition: var(--transition);
}

.dark-glass:hover .arrow-link {
  background: var(--brand-orange);
  color: #000;
  transform: rotate(-45deg);
}

/* Add colors for icons */
.blue-icon {
  color: var(--brand-blue-light);
  border-color: rgba(0, 102, 179, 0.3);
}

.dark-glass:hover .blue-icon {
  background: var(--brand-blue-light);
  color: #fff;
}

.orange-icon {
  color: var(--brand-orange);
  border-color: rgba(240, 138, 0, 0.3);
}

.dark-glass:hover .orange-icon {
  background: var(--brand-orange);
  color: #000;
}

.pink-icon {
  color: #e8007a;
  border-color: rgba(232, 0, 122, 0.3);
}

.dark-glass:hover .pink-icon {
  background: #e8007a;
  color: #fff;
}

.gradient-icon {
  background: linear-gradient(135deg, var(--brand-blue-light), var(--brand-orange));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  border-color: rgba(255, 255, 255, 0.2);
}

.dark-glass:hover .gradient-icon {
  background: linear-gradient(135deg, var(--brand-blue-light), var(--brand-orange));
  -webkit-text-fill-color: #fff;
  color: #fff;
}

/* Process Section */
.process {
  padding: 120px 0;
  position: relative;
  overflow: hidden;
}

.process::before {
  content: '';
  position: absolute;
  top: 30%;
  left: 20%;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(0, 102, 179, 0.15) 0%, transparent 70%);
  border-radius: 50%;
  z-index: -1;
  pointer-events: none;
}

.process-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  margin-top: 60px;
  position: relative;
}

.process-step {
  position: relative;
  transition: var(--transition);
}

.process-step:hover {
  transform: translateY(-10px);
}

.step-number {
  font-size: 5rem;
  font-weight: 900;
  color: rgba(255, 255, 255, 0.03);
  position: absolute;
  top: -40px;
  right: 10px;
  z-index: 0;
  line-height: 1;
  transition: var(--transition);
}

.process-step:hover .step-number {
  color: rgba(255, 255, 255, 0.1);
}

.pb-card {
  height: 100%;
  padding: 40px 30px;
  background: linear-gradient(145deg, rgba(4, 28, 54, 0.8), rgba(0, 0, 0, 0.4));
  z-index: 1;
}

/* Connecting lines desktop only */
.step-line {
  position: absolute;
  top: 50px;
  right: -50%;
  width: 100%;
  height: 2px;
  z-index: 0;
  background: rgba(255, 255, 255, 0.1);
}

.step-line::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 0;
  height: 100%;
  transition: width 1s ease 0.5s;
}

.process:hover .blue-line::after {
  width: 100%;
  background: linear-gradient(90deg, var(--brand-blue-light), var(--brand-orange));
  box-shadow: 0 0 10px var(--brand-blue-light);
}

.process:hover .orange-line::after {
  width: 100%;
  background: linear-gradient(90deg, var(--brand-orange), #e8007a);
  box-shadow: 0 0 10px var(--brand-orange);
}

.process:hover .pink-line::after {
  width: 100%;
  background: linear-gradient(90deg, #e8007a, var(--brand-blue-light));
  box-shadow: 0 0 10px #e8007a;
}

/* Testimonials */
.testimonials {
  padding: 120px 0;
}

.masonry-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  margin-top: 60px;
}

.review-card {
  padding: 40px !important;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.review-card:nth-child(2) {
  transform: translateY(30px);
}

.review-card:nth-child(2):hover {
  transform: translateY(20px);
}

.stars {
  color: #ffbd2e;
  font-size: 1.2rem;
  letter-spacing: 2px;
  margin-bottom: 20px;
}

.review-text {
  font-size: 1.1rem;
  color: #fff !important;
  font-style: italic;
  margin-bottom: 40px !important;
}

.reviewer {
  display: flex;
  align-items: center;
  gap: 15px;
  border-top: 1px solid var(--border-glass);
  padding-top: 20px;
}

.avatar {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  font-size: 1.2rem;
}

.blue-glow-avatar {
  background: rgba(0, 102, 179, 0.2);
  color: var(--brand-blue-light);
  border: 1px solid var(--brand-blue-light);
}

.orange-glow-avatar {
  background: rgba(240, 138, 0, 0.2);
  color: var(--brand-orange);
  border: 1px solid var(--brand-orange);
}

.pink-glow-avatar {
  background: rgba(232, 0, 122, 0.2);
  color: #e8007a;
  border: 1px solid #e8007a;
}

.reviewer-info {
  display: flex;
  flex-direction: column;
}

.reviewer-info strong {
  font-size: 1rem;
  color: #fff;
}

.reviewer-info span {
  font-size: 0.85rem;
  color: var(--text-muted);
}

/* Tech Marquee */
.tech-marquee {
  background: var(--bg-panel);
  padding: 40px 0;
  overflow: hidden;
}

.marquee-wrapper {
  mask-image: linear-gradient(to right, transparent, black 10%, black 90%, transparent);
  -webkit-mask-image: linear-gradient(to right, transparent, black 10%, black 90%, transparent);
  width: 100%;
  display: flex;
}

.marquee-track {
  display: flex;
  align-items: center;
  gap: 80px;
  animation: techScroll 40s linear infinite;
  white-space: nowrap;
  padding-right: 80px;
  /* Crucial for seamless loop with duplicate contents */
}

.tech-item {
  display: flex;
  align-items: center;
  gap: 15px;
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--text-muted);
  transition: var(--transition);
}

.tech-item svg {
  width: 32px;
  height: 32px;
}

.tech-item:hover {
  color: var(--brand-orange);
}

@keyframes techScroll {
  0% {
    transform: translateX(0);
  }

  100% {
    transform: translateX(-50%);
  }
}

/* About Section */
.about {
  padding: 120px 0;
  background: #080808;
}

.about-flex {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 80px;
  align-items: center;
}

.about-content p {
  color: var(--text-muted);
  font-size: 1.15rem;
  margin-bottom: 40px;
  line-height: 1.7;
}

.stats-row {
  display: flex;
  gap: 40px;
}

.stat h3 {
  font-size: 3rem;
  font-weight: 900;
  color: var(--brand-orange);
  margin-bottom: 4px;
  line-height: 1;
}

.stat span {
  color: var(--text-muted);
  font-size: 0.9rem;
  text-transform: uppercase;
  font-weight: 600;
  letter-spacing: 1px;
}

.glass-panel {
  background: var(--bg-panel);
  border: 1px solid var(--border-glass);
  border-radius: 20px;
  padding: 30px;
  box-shadow: 0 30px 60px rgba(0, 0, 0, 0.6);
  position: relative;
  overflow: hidden;
}

.panel-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 30px;
}

.panel-header-title {
  font-weight: 700;
  font-size: 1.1rem;
  color: #fff;
}

.panel-header-badge {
  background: rgba(240, 138, 0, 0.1);
  color: var(--brand-orange);
  padding: 4px 12px;
  box-shadow: 0 30px 60px rgba(0, 0, 0, 0.6);
}

.advanced-bar-chart {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  height: 220px;
  position: relative;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
  padding-bottom: 10px;
  padding-top: 30px;
}

/* Background guiding lines */
.advanced-bar-chart::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 0;
  right: 0;
  height: 1px;
  background: rgba(255, 255, 255, 0.03);
  z-index: 0;
}

.chart-column {
  width: 14%;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  align-items: center;
  height: 100%;
  position: relative;
  z-index: 1;
}

.bar-wrapper {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  position: relative;
}

.bar-value {
  position: absolute;
  top: -25px;
  font-size: 0.8rem;
  font-weight: 700;
  color: #fff;
  opacity: 0;
  transform: translateY(10px);
  transition: all 0.3s ease;
}

.chart-column:hover .bar-value {
  opacity: 1;
  transform: translateY(0);
}

.bar-fill {
  width: 100%;
  max-width: 32px;
  background: linear-gradient(to top, rgba(0, 102, 179, 0.2), #0066b3);
  border-radius: 6px 6px 0 0;
  transform-origin: bottom;
  animation: growBar 1s cubic-bezier(0.2, 0.8, 0.2, 1) forwards;
  opacity: 0.8;
  transition: all 0.3s ease;
  position: relative;
}

.bar-fill::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: #fff;
  border-radius: 6px 6px 0 0;
  opacity: 0.5;
}

.chart-column:hover .bar-fill {
  opacity: 1;
  filter: brightness(1.2);
  box-shadow: 0 0 20px rgba(0, 102, 179, 0.5);
}

.chart-column.highlight .bar-fill {
  background: linear-gradient(to top, rgba(240, 138, 0, 0.3), var(--brand-orange));
}

.chart-column.highlight:hover .bar-fill {
  box-shadow: 0 0 20px rgba(240, 138, 0, 0.5);
}

.chart-label {
  margin-top: 10px;
  font-size: 0.8rem;
  color: var(--text-muted);
  font-weight: 500;
}

@keyframes growBar {
  0% {
    transform: scaleY(0);
  }

  100% {
    transform: scaleY(1);
  }
}

.chart-column:nth-child(1) .bar-fill {
  animation-delay: 0.1s;
}

.chart-column:nth-child(2) .bar-fill {
  animation-delay: 0.2s;
}

.chart-column:nth-child(3) .bar-fill {
  animation-delay: 0.3s;
}

.chart-column:nth-child(4) .bar-fill {
  animation-delay: 0.4s;
}

.chart-column:nth-child(5) .bar-fill {
  animation-delay: 0.5s;
}

.chart-column:nth-child(6) .bar-fill {
  animation-delay: 0.6s;
}

/* FAQ Section */
.faq {
  padding: 120px 0;
}

.faq-grid {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 80px;
}

.faq-item {
  border-bottom: 1px solid var(--border-glass);
  margin-bottom: 10px;
}

button.faq-btn {
  width: 100%;
  background: transparent !important;
  border: none !important;
  color: #fff !important;
  font-size: 1.2rem;
  font-weight: 600;
  text-align: left;
  padding: 30px 0;
  display: flex !important;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  font-family: var(--font-main);
  transition: var(--transition);
  box-shadow: none !important;
  outline: none !important;
}

button.faq-btn:hover {
  color: var(--brand-orange) !important;
}

.faq-icon {
  font-size: 1.5rem;
  font-weight: 300;
  color: var(--brand-orange);
  transition: transform 0.3s ease;
}

.faq-item.active .faq-icon {
  transform: rotate(45deg);
}

.faq-content {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s cubic-bezier(0, 1, 0, 1);
}

.faq-item.active .faq-content {
  max-height: 1000px;
  transition: max-height 0.8s ease-in-out;
}

.faq-content p {
  padding-bottom: 30px;
  color: var(--text-muted);
  font-size: 1.05rem;
  line-height: 1.7;
}

/* Footer CTA */
.footer-cta {
  padding: 100px 0 60px 0;
  position: relative;
  overflow: hidden;
}

.footer-cta::before {
  content: '';
  position: absolute;
  bottom: -300px;
  left: 50%;
  transform: translateX(-50%);
  width: 800px;
  height: 800px;
  background: radial-gradient(circle, rgba(0, 102, 179, 0.3) 0%, transparent 70%);
  border-radius: 50%;
  z-index: -1;
}

.massive-text {
  font-size: clamp(3.5rem, 10vw, 7rem);
  font-weight: 900;
  line-height: 0.9;
  letter-spacing: -3px;
  margin-bottom: 30px;
}

.footer-cta p {
  font-size: 1.2rem;
  color: var(--text-muted);
  margin-bottom: 40px;
}

.footer-bottom {
  margin-top: 60px;
  padding-top: 50px;
  border-top: 1px solid var(--border-glass);
  text-align: left;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 30px;
  margin-bottom: 40px;
}

.footer-col h4 {
  color: #fff;
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: 24px;
}

.footer-col p {
  font-size: 0.95rem;
  margin-bottom: 16px;
}

.footer-col ul {
  list-style: none;
}

.footer-col ul li {
  margin-bottom: 12px;
}

.footer-col ul a {
  color: var(--text-muted);
  text-decoration: none;
  font-size: 0.95rem;
  transition: var(--transition);
}

.footer-col ul a:hover {
  color: var(--brand-orange);
  padding-left: 4px;
}

.footer-copyright {
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  padding-top: 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.9rem;
}

.social-links {
  display: flex;
  gap: 20px;
}

.social-links a {
  color: var(--text-muted);
  text-decoration: none;
  transition: var(--transition);
}

.social-links a:hover {
  color: var(--brand-orange);
}

/* Animations */
.fade-up {
  opacity: 0;
  transform: translateY(40px);
  transition: 0.8s cubic-bezier(0.25, 1, 0.5, 1);
}

.fade-up.visible {
  opacity: 1;
  transform: translateY(0);
}

.delay-1 {
  transition-delay: 0.1s;
}

.delay-2 {
  transition-delay: 0.2s;
}

.delay-3 {
  transition-delay: 0.3s;
}

.delay-4 {
  transition-delay: 0.4s;
}

/* Responsive */
@media (max-width: 992px) {
  .about-flex {
    grid-template-columns: 1fr;
  }

  .main-nav {
    display: none;
  }

  .header-inner {
    border-radius: 20px;
    padding: 16px 24px;
  }

  .mockup-stats {
    flex-direction: column;
  }

  .process-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
  }

  .step-line {
    display: none;
  }

  .faq-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }
}

@media (max-width: 768px) {
  .hero {
    padding-top: 150px;
  }

  .process-grid {
    grid-template-columns: 1fr;
  }

  .masonry-grid {
    grid-template-columns: 1fr;
  }

  .review-card:nth-child(2) {
    transform: none;
  }

  .review-card:nth-child(2):hover {
    transform: translateY(-5px);
  }

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .footer-copyright {
    flex-direction: column;
    gap: 20px;
    text-align: center;
  }

  .stats-row {
    flex-direction: column;
    gap: 20px;
  }

  .hero-cta-box {
    flex-direction: column;
    border-radius: 20px;
    background: transparent;
    border: none;
    padding: 0;
    gap: 15px;
  }

  .hero-cta-box input {
    width: 100%;
    background: var(--bg-panel);
    border: 1px solid var(--border-glass);
    margin-bottom: 12px;
    width: 100%;
  }

  .hero-cta-box button {
    width: 100%;
    border-radius: 50px;
  }
}