/* NEON CYBERPUNK THEME - Modern Tech Startup */

:root {
  --cyber-bg: #2b2b2b;
  --cyber-bg-dark: #1a1a1a;
  --cyber-surface: #3b3b3b;
  --cyber-pink: #34c759;
  --cyber-cyan: #8bc34a;
  --cyber-purple: #3e8e41;
  --cyber-blue: #2ecc71;
  --cyber-text: #f7f7f7;
  --cyber-text-dim: #b3b3b3;
  --cyber-glow-pink: 0 0 22px rgba(255, 0, 110, 0.5);
  --cyber-glow-cyan: 0 0 19px rgba(0, 245, 255, 0.5);
  --cyber-glow-purple: 0 0 21px rgba(176, 38, 255, 0.5);
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Noto Sans', -apple-system, BlinkMacSystemFont, sans-serif, sans-serif;
  background: var(--cyber-bg);
  color: var(--cyber-text);
  line-height: 1.6;
  overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
  font-family: 'Noto Sans', -apple-system, BlinkMacSystemFont, sans-serif, sans-serif;
  font-weight: 700;
}

.logo-img {
  max-height: 42px;
  width: auto;
  filter: drop-shadow(var(--cyber-glow-cyan));
}

.cyber-text {
  background: linear-gradient(135deg, var(--cyber-cyan), var(--cyber-pink));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  text-shadow: 0 0 32px rgba(0, 245, 255, 0.3);
}

/* NAVIGATION */
.cyber-nav {
  background: rgba(13, 13, 13, 0.95);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--cyber-cyan);
  box-shadow: 0 0 20px rgba(0, 245, 255, 0.2);
  padding: 1rem 0;
}

.cyber-brand {
  display: flex;
  align-items: center;
  font-family: 'Noto Sans', -apple-system, BlinkMacSystemFont, sans-serif, sans-serif;
  font-weight: 700;
  font-size: 1.25rem;
}

.brand-text {
  background: linear-gradient(135deg, var(--cyber-cyan), var(--cyber-pink));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.cyber-link {
  color: var(--cyber-text) !important;
  font-weight: 500;
  text-transform: uppercase;
  font-size: 0.9rem;
  letter-spacing: 1px;
  position: relative;
  transition: all 0.3s ease;
}

.cyber-link::before {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--cyber-cyan), var(--cyber-pink));
  transition: width 0.3s ease;
  pointer-events: none;
}

.cyber-link:hover {
  color: var(--cyber-cyan) !important;
  text-shadow: 0 0 9px var(--cyber-cyan);
}

.cyber-link:hover::before {
  width: 100%;
}

.cyber-dropdown {
  background: rgba(13, 13, 13, 0.98);
  border: 1px solid var(--cyber-cyan);
  box-shadow: 0 11px 38px rgba(0, 245, 255, 0.3);
}

.cyber-dropdown .dropdown-item {
  color: var(--cyber-text);
  transition: all 0.3s ease;
}

.cyber-dropdown .dropdown-item:hover {
  background: linear-gradient(90deg, rgba(0, 245, 255, 0.1), rgba(255, 0, 110, 0.1));
  color: var(--cyber-cyan);
  padding-left: 27px;
}

/* BUTTONS */
.btn-cyber-primary {
  background: linear-gradient(135deg, var(--cyber-cyan), var(--cyber-pink));
  border: none;
  color: #000;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  padding: 0.75rem 2rem;
  position: relative;
  overflow: hidden;
  transition: all 0.3s ease;
}

.btn-cyber-primary::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 0;
  height: 0;
  background: rgba(255, 255, 255, 0.3);
  border-radius: 50%;
  transform: translate(-50%, -50%);
  transition: width 0.5s ease, height 0.5s ease;
  pointer-events: none;
}

.btn-cyber-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 7px 31px rgba(0, 245, 255, 0.5);
}

.btn-cyber-primary:hover::before {
  width: 300px;
  height: 300px;
}

.btn-cyber-outline {
  background: transparent;
  border: 2px solid var(--cyber-cyan);
  color: var(--cyber-cyan);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  padding: 0.75rem 2rem;
  position: relative;
  overflow: hidden;
  transition: all 0.3s ease;
}

.btn-cyber-outline::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(0, 245, 255, 0.2), transparent);
  transition: left 0.5s ease;
  pointer-events: none;
}

.btn-cyber-outline:hover {
  background: rgba(0, 245, 255, 0.1);
  border-color: var(--cyber-pink);
  color: var(--cyber-pink);
  box-shadow: 0 0 19px rgba(0, 245, 255, 0.5);
}

.btn-cyber-outline:hover::before {
  left: 100%;
}

/* HERO SECTION */
.cyber-hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.cyber-hero-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
  pointer-events: none;
}

.scan-lines {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: repeating-linear-gradient(
    0deg,
    rgba(0, 245, 255, 0.03) 0px,
    transparent 2px,
    transparent 4px
  );
  animation: scanlines 10s linear infinite;
  pointer-events: none;
}

@keyframes scanlines {
  0% { transform: translateY(0); }
  100% { transform: translateY(19px); }
}

.cyber-grid {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image:
    linear-gradient(rgba(0, 245, 255, 0.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(0, 245, 255, 0.05) 1px, transparent 1px);
  background-size: 49px 47px;
  animation: gridMove 20s linear infinite;
  pointer-events: none;
}

@keyframes gridMove {
  0% { transform: perspective(500px) rotateX(60deg) translateY(0); }
  100% { transform: perspective(500px) rotateX(60deg) translateY(50px); }
}

.hero-content {
  position: relative;
  z-index: 2;
  padding: 2rem 0;
}

.hero-badge, .cyber-badge {
  display: inline-flex;
  align-items: center;
  padding: 0.5rem 1.5rem;
  background: rgba(0, 245, 255, 0.1);
  border: 1px solid var(--cyber-cyan);
  border-radius: 51px;
  font-size: 0.9rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 1px;
  box-shadow: 0 0 22px rgba(0, 245, 255, 0.3);
}

.hero-title {
  font-size: clamp(2.5rem, 6vw, 4rem);
  line-height: 1.2;
  margin-bottom: 1.5rem;
}

.cyber-glitch {
  position: relative;
  animation: glitchText 5s infinite;
}

@keyframes glitchText {
  0%, 90%, 100% { transform: translate(0); }
  91% { transform: translate(-2px, 2px); filter: hue-rotate(90deg); }
  92% { transform: translate(2px, -2px); }
  93% { transform: translate(-2px, 2px); }
  94% { transform: translate(0); }
}

.hero-lead {
  font-size: 1.25rem;
  color: var(--cyber-text-dim);
  max-width: 600px;
}

.hero-stats {
  margin-top: 3rem;
}

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

.stat-value {
  font-size: 2rem;
  font-weight: 700;
  font-family: 'Noto Sans', -apple-system, BlinkMacSystemFont, sans-serif, sans-serif;
}

.stat-label {
  font-size: 0.9rem;
  color: var(--cyber-text-dim);
  text-transform: uppercase;
}

.hero-visual {
  position: relative;
  z-index: 2;
}

.hero-card {
  position: relative;
  border-radius: 22px;
  overflow: hidden;
}

.hero-card img {
  width: 100%;
  height: auto;
  display: block;
}

.hud-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
}

.hud-corner {
  position: absolute;
  width: 41px;
  height: 37px;
  border: 2px solid var(--cyber-cyan);
  pointer-events: none;
}

.hud-tl { top: 21px; left: 20px; border-right: none; border-bottom: none; }
.hud-tr { top: 17px; right: 23px; border-left: none; border-bottom: none; }
.hud-bl { bottom: 21px; left: 19px; border-right: none; border-top: none; }
.hud-br { bottom: 18px; right: 23px; border-left: none; border-top: none; }

.floating-card {
  position: absolute;
  bottom: 32px;
  left: -20px;
  display: flex;
  align-items: center;
  padding: 1rem 1.5rem;
  background: rgba(13, 13, 13, 0.95);
  border: 1px solid var(--cyber-cyan);
  border-radius: 10px;
  box-shadow: 0 7px 30px rgba(0, 245, 255, 0.3);
  animation: float 3s ease-in-out infinite;
}

.floating-card-2 {
  position: absolute;
  top: 32px;
  right: -17px;
  display: flex;
  align-items: center;
  padding: 1rem 1.5rem;
  background: rgba(13, 13, 13, 0.95);
  border: 1px solid var(--cyber-pink);
  border-radius: 12px;
  box-shadow: 0 8px 29px rgba(255, 0, 110, 0.3);
  animation: float 3s ease-in-out infinite 1.5s;
}

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

.cyber-icon-lg {
  font-size: 2rem;
  color: var(--cyber-cyan);
}

.hero-scroll {
  position: absolute;
  bottom: 27px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
}

.scroll-indicator {
  display: inline-block;
  width: 40px;
  height: 41px;
  border: 2px solid var(--cyber-cyan);
  border-radius: 50%;
  color: var(--cyber-cyan);
  text-align: center;
  line-height: 36px;
  animation: bounce 2s infinite;
  transition: all 0.3s ease;
}

.scroll-indicator:hover {
  background: var(--cyber-cyan);
  color: #000;
  box-shadow: 0 0 22px var(--cyber-cyan);
}

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

/* SECTIONS */
.cyber-section {
  padding: 5rem 0;
  position: relative;
}

.bg-dark {
  background: var(--cyber-bg-dark);
}

.section-badge {
  margin-bottom: 1rem;
}

.section-title {
  font-size: clamp(2rem, 4vw, 3rem);
  margin-bottom: 1rem;
}

.section-lead {
  font-size: 1.1rem;
  color: var(--cyber-text-dim);
  max-width: 700px;
  margin: 0 auto;
}

/* CARDS */
.cyber-card {
  background: rgba(26, 26, 26, 0.8);
  border: 1px solid var(--cyber-cyan);
  border-radius: 12px;
  padding: 2rem;
  position: relative;
  transition: all 0.3s ease;
}

.cyber-card::before {
  content: '';
  position: absolute;
  top: -1px;
  left: -1px;
  right: -1px;
  bottom: -1px;
  background: linear-gradient(135deg, var(--cyber-cyan), var(--cyber-pink), var(--cyber-purple));
  border-radius: 16px;
  opacity: 0;
  transition: opacity 0.3s ease;
  z-index: -1;
  pointer-events: none;
}

.cyber-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 19px 53px rgba(0, 245, 255, 0.3);
}

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

.cyber-card-sm {
  background: rgba(13, 13, 13, 0.95);
  border: 1px solid var(--cyber-cyan);
  border-radius: 10px;
  padding: 1rem 1.5rem;
  box-shadow: 0 7px 27px rgba(0, 245, 255, 0.3);
}

/* FEATURE CARDS */
.feature-card {
  text-align: center;
  position: relative;
  overflow: hidden;
}

.feature-icon-wrapper {
  display: inline-block;
  position: relative;
}

.feature-icon {
  width: 78px;
  height: 78px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2.5rem;
  position: relative;
  z-index: 2;
}

.cyber-icon-box {
  background: rgba(0, 245, 255, 0.1);
  border: 2px solid var(--cyber-cyan);
  border-radius: 14px;
  color: var(--cyber-cyan);
  position: relative;
}

.cyber-icon-box::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, var(--cyber-cyan), var(--cyber-pink));
  opacity: 0;
  transform: translate(-50%, -50%) scale(0);
  transition: all 0.3s ease;
  border-radius: 13px;
  pointer-events: none;
}

.feature-card:hover .cyber-icon-box::before {
  opacity: 0.2;
  transform: translate(-50%, -50%) scale(1.2);
}

.feature-title {
  font-size: 1.5rem;
}

.feature-text {
  color: var(--cyber-text-dim);
}

.feature-glow {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--cyber-cyan), transparent);
  opacity: 0;
  transition: opacity 0.3s ease;
  pointer-events: none;
}

.feature-card:hover .feature-glow {
  opacity: 1;
}

/* SERVICE CARDS */
.service-card {
  overflow: hidden;
  padding: 0;
}

.service-img-wrapper {
  position: relative;
  overflow: hidden;
  height: 250px;
}

.service-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.service-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, rgba(0, 245, 255, 0.3), rgba(255, 0, 110, 0.3));
  opacity: 0;
  transition: opacity 0.3s ease;
  pointer-events: none;
}

.service-card:hover .service-img {
  transform: scale(1.1);
}

.service-card:hover .service-overlay {
  opacity: 1;
}

.service-content {
  padding: 2rem;
}

.service-icon {
  width: 62px;
  height: 61px;
  font-size: 1.75rem;
}

.service-title {
  font-size: 1.5rem;
}

.service-text {
  color: var(--cyber-text-dim);
}

/* TESTIMONIAL CARDS */
.testimonial-card {
  border-color: var(--cyber-purple);
}

.testimonial-avatar {
  width: 58px;
  height: 63px;
  border-radius: 50%;
  border: 2px solid var(--cyber-cyan);
  object-fit: cover;
}

.testimonial-name {
  font-size: 1.1rem;
  margin-bottom: 0.25rem;
}

.testimonial-role {
  font-size: 0.9rem;
  color: var(--cyber-text-dim);
}

.testimonial-stars {
  color: var(--cyber-pink);
}

.testimonial-text {
  color: var(--cyber-text-dim);
  font-style: italic;
}

/* TEAM CARDS */
.team-card {
  padding: 0;
  overflow: hidden;
}

.team-img-wrapper {
  position: relative;
  overflow: hidden;
  height: 300px;
}

.team-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.team-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(180deg, transparent, rgba(0, 245, 255, 0.9));
  display: flex;
  align-items: flex-end;
  justify-content: center;
  padding: 2rem;
  opacity: 0;
  transition: opacity 0.3s ease;
  pointer-events: none;
}

.team-card:hover .team-img {
  transform: scale(1.1);
}

.team-card:hover .team-overlay {
  opacity: 1;
  pointer-events: auto;
}

.team-social {
  display: flex;
  gap: 1rem;
}

.team-social a {
  width: 39px;
  height: 37px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(13, 13, 13, 0.9);
  border: 1px solid var(--cyber-cyan);
  border-radius: 50%;
  color: var(--cyber-cyan);
  transition: all 0.3s ease;
}

.team-social a:hover {
  background: var(--cyber-cyan);
  color: #000;
  transform: translateY(-3px);
}

.team-info {
  padding: 1.5rem;
  text-align: center;
}

.team-name {
  font-size: 1.25rem;
  margin-bottom: 0.5rem;
}

.team-role {
  color: var(--cyber-text-dim);
  margin-bottom: 0;
}

/* STATS */
.cyber-stats {
  padding: 4rem 0;
  background: rgba(0, 245, 255, 0.05);
  position: relative;
}

.cyber-stats::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--cyber-cyan), transparent);
  pointer-events: none;
}

.cyber-stats::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--cyber-cyan), transparent);
  pointer-events: none;
}

.stat-card {
  padding: 2rem 1rem;
  border: 1px solid rgba(0, 245, 255, 0.3);
}

.stat-icon {
  width: 63px;
  height: 57px;
  font-size: 1.75rem;
}

.stat-number {
  font-size: 3rem;
  font-weight: 700;
  font-family: 'Noto Sans', -apple-system, BlinkMacSystemFont, sans-serif, sans-serif;
  margin: 1rem 0 0.5rem;
}

/* CTA SECTION */
.cyber-cta {
  padding: 5rem 0;
}

.cta-wrapper {
  padding: 4rem;
  position: relative;
  overflow: hidden;
}

.cta-title {
  font-size: clamp(1.75rem, 3vw, 2.5rem);
  margin-bottom: 1rem;
}

.cta-text {
  font-size: 1.1rem;
  color: var(--cyber-text-dim);
}

.cta-glow {
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle, rgba(0, 245, 255, 0.1), transparent);
  animation: rotate 10s linear infinite;
  pointer-events: none;
}

@keyframes rotate {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}

/* ACCORDION (FAQ) */
.cyber-accordion {
  --bs-accordion-bg: rgba(26, 26, 26, 0.8);
  --bs-accordion-border-color: var(--cyber-cyan);
  --bs-accordion-btn-color: var(--cyber-text);
  --bs-accordion-active-bg: rgba(0, 245, 255, 0.1);
  --bs-accordion-active-color: var(--cyber-cyan);
}

.cyber-accordion-item {
  background: rgba(26, 26, 26, 0.8);
  border: 1px solid var(--cyber-cyan);
  margin-bottom: 1rem;
  border-radius: 9px;
  overflow: hidden;
}

.cyber-accordion-button {
  background: rgba(26, 26, 26, 0.8);
  color: var(--cyber-text);
  font-weight: 600;
  font-size: 1.1rem;
  padding: 1.5rem;
  transition: all 0.3s ease;
}

.cyber-accordion-button:not(.collapsed) {
  background: rgba(0, 245, 255, 0.1);
  color: var(--cyber-cyan);
  box-shadow: none;
}

.cyber-accordion-button:focus {
  box-shadow: none;
  border-color: var(--cyber-cyan);
}

.cyber-accordion-button::after {
  filter: brightness(0) saturate(100%) invert(85%) sepia(79%) saturate(2476%) hue-rotate(144deg);
}

.accordion-body {
  color: var(--cyber-text-dim);
  padding: 1.5rem;
  background: rgba(13, 13, 13, 0.5);
}

/* PRICING CARDS */
.pricing-card {
  text-align: center;
  position: relative;
}

.pricing-badge {
  position: absolute;
  top: -17px;
  right: 19px;
  background: linear-gradient(135deg, var(--cyber-pink), var(--cyber-purple));
  color: #fff;
  padding: 0.5rem 1rem;
  border-radius: 48px;
  font-size: 0.85rem;
  font-weight: 600;
  text-transform: uppercase;
}

.pricing-name {
  font-size: 1.5rem;
  margin-bottom: 1rem;
}

.pricing-price {
  font-size: 3rem;
  font-weight: 700;
  font-family: 'Noto Sans', -apple-system, BlinkMacSystemFont, sans-serif, sans-serif;
  margin-bottom: 0.5rem;
}

.pricing-period {
  color: var(--cyber-text-dim);
  margin-bottom: 2rem;
}

.pricing-features {
  list-style: none;
  padding: 0;
  margin: 2rem 0;
}

.pricing-features li {
  padding: 0.75rem 0;
  border-bottom: 1px solid rgba(0, 245, 255, 0.1);
  color: var(--cyber-text-dim);
}

.pricing-features li:last-child {
  border-bottom: none;
}

.pricing-features li i {
  color: var(--cyber-cyan);
  margin-right: 0.5rem;
}

/* FOOTER */
.cyber-footer {
  background: var(--cyber-bg-dark);
  padding: 4rem 0 2rem;
  position: relative;
  border-top: 1px solid var(--cyber-cyan);
}

.cyber-grid-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image:
    linear-gradient(rgba(0, 245, 255, 0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(0, 245, 255, 0.03) 1px, transparent 1px);
  background-size: 27px 29px;
  opacity: 0.5;
  pointer-events: none;
}

.footer-brand h5 {
  font-size: 1.25rem;
}

.footer-text {
  color: var(--cyber-text-dim);
  line-height: 1.8;
}

.social-links {
  display: flex;
  gap: 1rem;
}

.social-link {
  width: 41px;
  height: 42px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(0, 245, 255, 0.1);
  border: 1px solid var(--cyber-cyan);
  border-radius: 50%;
  color: var(--cyber-cyan);
  transition: all 0.3s ease;
}

.social-link:hover {
  background: var(--cyber-cyan);
  color: #000;
  transform: translateY(-3px);
  box-shadow: 0 9px 19px rgba(0, 245, 255, 0.3);
}

.footer-heading {
  font-size: 1.1rem;
  margin-bottom: 1.5rem;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.footer-links {
  list-style: none;
  padding: 0;
}

.footer-links li {
  margin-bottom: 0.75rem;
}

.footer-links a {
  color: var(--cyber-text-dim);
  text-decoration: none;
  transition: all 0.3s ease;
}

.footer-links a:hover {
  color: var(--cyber-cyan);
  padding-left: 13px;
}

.footer-contact {
  list-style: none;
  padding: 0;
}

.footer-contact li {
  display: flex;
  align-items: center;
  margin-bottom: 1rem;
  color: var(--cyber-text-dim);
}

.footer-contact .cyber-icon {
  margin-right: 0.75rem;
  color: var(--cyber-cyan);
}

.footer-contact a {
  color: var(--cyber-text-dim);
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer-contact a:hover {
  color: var(--cyber-cyan);
}

.footer-divider {
  border-color: rgba(0, 245, 255, 0.2);
  opacity: 1;
}

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

.footer-legal {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  gap: 1.5rem;
  justify-content: center;
  justify-content: flex-end;
}

.footer-legal a {
  color: var(--cyber-text-dim);
  text-decoration: none;
  font-size: 0.9rem;
  transition: color 0.3s ease;
}

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

/* CONTACT FORM */
.contact-form .form-control,
.contact-form .form-select {
  background: rgba(26, 26, 26, 0.8);
  border: 1px solid var(--cyber-cyan);
  color: var(--cyber-text);
  padding: 0.875rem 1.25rem;
  border-radius: 8px;
  transition: all 0.3s ease;
}

.contact-form .form-control:focus,
.contact-form .form-select:focus {
  background: rgba(0, 245, 255, 0.05);
  border-color: var(--cyber-pink);
  color: var(--cyber-text);
  box-shadow: 0 0 18px rgba(0, 245, 255, 0.2);
}

.contact-form label {
  color: var(--cyber-text);
  font-weight: 500;
  margin-bottom: 0.5rem;
}

.contact-info-card {
  background: rgba(26, 26, 26, 0.8);
  border: 1px solid var(--cyber-cyan);
  padding: 2rem;
  border-radius: 18px;
  margin-bottom: 1.5rem;
  transition: all 0.3s ease;
}

.contact-info-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 22px 52px rgba(0, 245, 255, 0.3);
}

.contact-info-card i {
  font-size: 2rem;
  color: var(--cyber-cyan);
  margin-bottom: 1rem;
}

.contact-info-card h5 {
  font-size: 1.1rem;
  margin-bottom: 0.75rem;
}

.contact-info-card p {
  color: var(--cyber-text-dim);
  margin-bottom: 0;
}

.contact-info-card a {
  color: var(--cyber-text-dim);
  text-decoration: none;
  transition: color 0.3s ease;
}

.contact-info-card a:hover {
  color: var(--cyber-cyan);
}

/* BLOG/ARTICLE CARDS */
.blog-card, .article-card {
  padding: 0;
  overflow: hidden;
  height: 100%;
}

.blog-img-wrapper, .article-img-wrapper {
  position: relative;
  overflow: hidden;
  height: 250px;
}

.blog-img, .article-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.blog-card:hover .blog-img,
.article-card:hover .article-img {
  transform: scale(1.1);
}

.blog-content, .article-content {
  padding: 2rem;
}

.blog-meta, .article-meta {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1rem;
  font-size: 0.9rem;
  color: var(--cyber-text-dim);
}

.blog-meta i, .article-meta i {
  color: var(--cyber-cyan);
}

.blog-title, .article-title {
  font-size: 1.5rem;
  margin-bottom: 1rem;
}

.blog-title a, .article-title a {
  color: var(--cyber-text);
  text-decoration: none;
  transition: color 0.3s ease;
}

.blog-title a:hover, .article-title a:hover {
  color: var(--cyber-cyan);
}

.blog-excerpt, .article-excerpt {
  color: var(--cyber-text-dim);
  margin-bottom: 1.5rem;
}

/* CASE STUDY CARDS */
.case-card {
  padding: 0;
  overflow: hidden;
}

.case-img-wrapper {
  position: relative;
  overflow: hidden;
  height: 300px;
}

.case-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.case-card:hover .case-img {
  transform: scale(1.1);
}

.case-content {
  padding: 2rem;
}

.case-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-bottom: 1rem;
}

.case-tag {
  background: rgba(0, 245, 255, 0.1);
  border: 1px solid var(--cyber-cyan);
  color: var(--cyber-cyan);
  padding: 0.25rem 0.75rem;
  border-radius: 53px;
  font-size: 0.85rem;
  text-transform: uppercase;
}

.case-title {
  font-size: 1.75rem;
  margin-bottom: 1rem;
}

.case-description {
  color: var(--cyber-text-dim);
  margin-bottom: 1.5rem;
}

/* RESPONSIVE */
@media (max-width: 991px) {
  .hero-title {
    font-size: 2.5rem;
  }

  .section-title {
    font-size: 2rem;
  }

  .cyber-nav {
    padding: 0.75rem 0;
  }

  .floating-card,
  .floating-card-2 {
    position: static;
    margin-top: 2rem;
  }

  .cta-wrapper {
    padding: 2rem;
  }

  .footer-legal {
    justify-content: center;
    margin-top: 1rem;
  }
}

@media (max-width: 767px) {
  .hero-title {
    font-size: 2rem;
  }

  .cyber-section {
    padding: 3rem 0;
  }

  .hero-cta {
    flex-direction: column;
  }

  .hero-cta .btn {
    width: 100%;
  }

  .stat-number {
    font-size: 2rem;
  }

  .pricing-price {
    font-size: 2.5rem;
  }
}
