
.wf-fade-init {
  -webkit-transform: translate3d(0, 44px, 0) scale3d(1, 1, 1) rotateX(0) rotateY(0) rotateZ(0) skew(0, 0);
  -moz-transform: translate3d(0, 44px, 0) scale3d(1, 1, 1) rotateX(0) rotateY(0) rotateZ(0) skew(0, 0);
  -ms-transform: translate3d(0, 44px, 0) scale3d(1, 1, 1) rotateX(0) rotateY(0) rotateZ(0) skew(0, 0);
  transform: translate3d(0, 44px, 0) scale3d(1, 1, 1) rotateX(0) rotateY(0) rotateZ(0) skew(0, 0);
  opacity: 0;
}

/* ===========================================
   NEW SPECTACULAR HERO SECTION
   =========================================== */

.hero-section-new {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: #030712;
  padding-top: 80px;
}

/* Animated Gradient Background */
.hero-bg-gradient {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: 
    radial-gradient(ellipse 80% 50% at 50% -20%, rgba(6, 182, 212, 0.15), transparent),
    radial-gradient(ellipse 60% 40% at 100% 50%, rgba(139, 92, 246, 0.1), transparent),
    radial-gradient(ellipse 60% 40% at 0% 80%, rgba(6, 182, 212, 0.08), transparent),
    linear-gradient(180deg, #030712 0%, #0f172a 50%, #030712 100%);
  z-index: 0;
}

/* Animated Grid Pattern */
.hero-grid-pattern {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-image: 
    linear-gradient(rgba(6, 182, 212, 0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(6, 182, 212, 0.03) 1px, transparent 1px);
  background-size: 60px 60px;
  mask-image: radial-gradient(ellipse 80% 60% at 50% 50%, black, transparent);
  animation: gridMove 20s linear infinite;
  z-index: 1;
}

@keyframes gridMove {
  0% { transform: translate(0, 0); }
  100% { transform: translate(60px, 60px); }
}

/* Floating Orbs */
.hero-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  opacity: 0.6;
  z-index: 1;
  animation: orbFloat 8s ease-in-out infinite;
}

.hero-orb-1 {
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(6, 182, 212, 0.4), transparent 70%);
  top: -10%;
  right: 10%;
  animation-delay: 0s;
}

.hero-orb-2 {
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(139, 92, 246, 0.3), transparent 70%);
  bottom: 10%;
  left: -5%;
  animation-delay: -3s;
}

.hero-orb-3 {
  width: 300px;
  height: 300px;
  background: radial-gradient(circle, rgba(34, 211, 238, 0.25), transparent 70%);
  top: 50%;
  right: 30%;
  animation-delay: -5s;
}

@keyframes orbFloat {
  0%, 100% {
    transform: translate(0, 0) scale(1);
  }
  25% {
    transform: translate(30px, -30px) scale(1.05);
  }
  50% {
    transform: translate(-20px, 20px) scale(0.95);
  }
  75% {
    transform: translate(20px, 10px) scale(1.02);
  }
}

/* Floating Geometric Shapes */
.hero-shapes {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 2;
  pointer-events: none;
}

.hero-shape {
  position: absolute;
  border: 1px solid rgba(6, 182, 212, 0.2);
  animation: shapeFloat 15s ease-in-out infinite;
}

.hero-shape-1 {
  width: 80px;
  height: 80px;
  border-radius: 20px;
  top: 15%;
  left: 10%;
  transform: rotate(45deg);
  animation-delay: 0s;
  background: linear-gradient(135deg, rgba(6, 182, 212, 0.05), transparent);
}

.hero-shape-2 {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  top: 25%;
  right: 15%;
  animation-delay: -2s;
  background: linear-gradient(135deg, rgba(139, 92, 246, 0.05), transparent);
}

.hero-shape-3 {
  width: 100px;
  height: 100px;
  border-radius: 30px;
  bottom: 20%;
  left: 5%;
  transform: rotate(-15deg);
  animation-delay: -4s;
  background: linear-gradient(135deg, rgba(34, 211, 238, 0.05), transparent);
}

.hero-shape-4 {
  width: 40px;
  height: 40px;
  border-radius: 8px;
  top: 60%;
  left: 20%;
  transform: rotate(30deg);
  animation-delay: -6s;
}

.hero-shape-5 {
  width: 70px;
  height: 70px;
  border-radius: 50%;
  bottom: 30%;
  right: 8%;
  animation-delay: -8s;
  border-color: rgba(139, 92, 246, 0.15);
}

@keyframes shapeFloat {
  0%, 100% {
    transform: translateY(0) rotate(0deg);
    opacity: 0.5;
  }
  25% {
    transform: translateY(-20px) rotate(5deg);
    opacity: 0.8;
  }
  50% {
    transform: translateY(10px) rotate(-5deg);
    opacity: 0.6;
  }
  75% {
    transform: translateY(-15px) rotate(3deg);
    opacity: 0.7;
  }
}

/* Particles Container */
.hero-particles {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 2;
  pointer-events: none;
}

/* Content Wrapper */
.hero-content-wrapper {
  position: relative;
  z-index: 10;
  width: 100%;
}

.container-large {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 24px;
}

/* Hero Flex Layout */
.hero-flex-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
  min-height: calc(100vh - 160px);
}

/* Hero Text Column */
.hero-text-column {
  display: flex;
  flex-direction: column;
  gap: 32px;
}

/* Animated Badge */
.hero-badge-animated {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 8px 20px 8px 12px;
  background: rgba(6, 182, 212, 0.1);
  border: 1px solid rgba(6, 182, 212, 0.2);
  border-radius: 50px;
  width: fit-content;
  animation: badgeSlideIn 0.8s ease-out forwards;
  opacity: 0;
  transform: translateY(20px);
}

.hero-badge-dot {
  width: 8px;
  height: 8px;
  background: #06b6d4;
  border-radius: 50%;
  animation: dotPulse 2s ease-in-out infinite;
  box-shadow: 0 0 10px rgba(6, 182, 212, 0.6);
}

@keyframes dotPulse {
  0%, 100% { transform: scale(1); opacity: 1; }
  50% { transform: scale(1.3); opacity: 0.7; }
}

.hero-badge-text {
  font-size: 14px;
  font-weight: 500;
  color: #06b6d4;
  letter-spacing: 0.5px;
}

@keyframes badgeSlideIn {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Hero Title */
.hero-title-new {
  font-size: clamp(40px, 6vw, 72px);
  font-weight: 800;
  line-height: 1.1;
  color: #ffffff;
  margin: 0;
  letter-spacing: -0.02em;
}

.hero-title-line {
  display: block;
  overflow: hidden;
}

.hero-title-word {
  display: inline-block;
  opacity: 0;
  transform: translateY(100%);
  animation: wordReveal 0.8s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

.hero-title-word[data-delay="0"] { animation-delay: 0.2s; }
.hero-title-word[data-delay="1"] { animation-delay: 0.35s; }
.hero-title-word[data-delay="2"] { animation-delay: 0.5s; }
.hero-title-word[data-delay="3"] { animation-delay: 0.65s; }

@keyframes wordReveal {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.hero-title-gradient {
  background: linear-gradient(135deg, #06b6d4, #8b5cf6, #06b6d4);
  background-size: 200% 200%;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  animation: gradientFlow 4s ease infinite;
}

@keyframes gradientFlow {
  0%, 100% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
}

.hero-title-accent {
  position: relative;
}

.hero-title-accent::after {
  content: '';
  position: absolute;
  bottom: 5px;
  left: 0;
  width: 100%;
  height: 8px;
  background: linear-gradient(90deg, #06b6d4, #8b5cf6);
  border-radius: 4px;
  opacity: 0.3;
  z-index: -1;
  animation: underlineGrow 0.6s ease-out 0.8s forwards;
  transform: scaleX(0);
  transform-origin: left;
}

@keyframes underlineGrow {
  to { transform: scaleX(1); }
}

/* Hero Description */
.hero-description-new {
  font-size: 18px;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.7);
  max-width: 520px;
  opacity: 0;
  transform: translateY(30px);
  animation: fadeInUp 0.8s ease-out 0.6s forwards;
}

.hero-description-new strong {
  color: #06b6d4;
  font-weight: 600;
}

@keyframes fadeInUp {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Hero CTA Group */
.hero-cta-group {
  display: flex;
  gap: 16px;
  align-items: center;
  opacity: 0;
  transform: translateY(30px);
  animation: fadeInUp 0.8s ease-out 0.8s forwards;
}

/* Primary Button */
.hero-btn-primary {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 18px 32px;
  background: linear-gradient(135deg, #06b6d4, #0891b2);
  color: #ffffff;
  font-size: 16px;
  font-weight: 600;
  text-decoration: none;
  border-radius: 14px;
  overflow: hidden;
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  box-shadow: 0 4px 20px rgba(6, 182, 212, 0.3);
}

.hero-btn-primary:hover {
  transform: translateY(-4px) scale(1.02);
  box-shadow: 0 12px 40px rgba(6, 182, 212, 0.4);
}

.hero-btn-primary:active {
  transform: translateY(-2px) scale(0.98);
}

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

.hero-btn-icon {
  position: relative;
  z-index: 2;
  width: 20px;
  height: 20px;
  transition: transform 0.3s ease;
}

.hero-btn-primary:hover .hero-btn-icon {
  transform: translate(4px, -4px);
}

.hero-btn-icon svg {
  width: 100%;
  height: 100%;
}

.hero-btn-glow {
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.3), transparent 60%);
  opacity: 0;
  transition: opacity 0.3s ease;
  pointer-events: none;
}

.hero-btn-primary:hover .hero-btn-glow {
  opacity: 1;
  animation: glowMove 1.5s ease infinite;
}

@keyframes glowMove {
  0% { transform: translate(-30%, -30%); }
  50% { transform: translate(30%, 30%); }
  100% { transform: translate(-30%, -30%); }
}

/* Secondary Button */
.hero-btn-secondary {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 16px 24px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  color: #ffffff;
  font-size: 16px;
  font-weight: 500;
  text-decoration: none;
  border-radius: 14px;
  transition: all 0.3s ease;
  backdrop-filter: blur(10px);
}

.hero-btn-secondary:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.2);
  transform: translateY(-2px);
}

.hero-btn-play {
  width: 24px;
  height: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-btn-play svg {
  width: 100%;
  height: 100%;
  fill: #06b6d4;
}

/* Hero Stats */
.hero-stats {
  display: flex;
  align-items: center;
  gap: 32px;
  padding-top: 24px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  margin-top: 8px;
  opacity: 0;
  transform: translateY(30px);
  animation: fadeInUp 0.8s ease-out 1s forwards;
}

.hero-stat {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
}

.hero-stat-row {
  display: flex;
  flex-direction: row;
  align-items: baseline;
  gap: 2px;
}

.hero-stat-number {
  font-size: 32px;
  font-weight: 800;
  line-height: 1.3;
  color: #ffffff;
  display: inline;
}

.hero-stat-plus,
.hero-stat-percent {
  font-size: 24px;
  font-weight: 700;
  color: #06b6d4;
  display: inline;
}

.hero-stat-label {
  font-size: 14px;
  line-height: 1.4;
  color: rgba(255, 255, 255, 0.5);
  font-weight: 500;
  text-align: center;
}

.hero-stat-divider {
  width: 1px;
  height: 40px;
  background: linear-gradient(180deg, transparent, rgba(255, 255, 255, 0.2), transparent);
}

/* ===========================================
   HERO VISUAL COLUMN - 3D CODE EDITOR
   =========================================== */

.hero-visual-column {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-3d-container {
  position: relative;
  width: 100%;
  max-width: 560px;
  perspective: 1500px;
  opacity: 0;
  animation: visualFadeIn 1s ease-out 0.5s forwards;
}

@keyframes visualFadeIn {
  to { opacity: 1; }
}

/* Tech Badges */
.hero-tech-badge {
  position: absolute;
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 12px 18px;
  background: rgba(15, 23, 42, 0.95);
  border: 1px solid rgba(6, 182, 212, 0.3);
  border-radius: 50px;
  backdrop-filter: blur(20px);
  z-index: 20;
  animation: techBadgeFloat 6s ease-in-out infinite;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
  white-space: nowrap;
}

.hero-tech-badge svg {
  width: 18px;
  height: 18px;
  fill: #06b6d4;
  flex-shrink: 0;
}

.hero-tech-badge span {
  font-size: 12px;
  font-weight: 600;
  color: #ffffff;
  letter-spacing: 0.3px;
}

/* Badge 1: Entrega en 10 días - Cyan */
.hero-tech-badge-1 {
  top: -20px;
  left: -30px;
  animation-delay: 0s;
  border-color: rgba(6, 182, 212, 0.4);
  background: linear-gradient(135deg, rgba(6, 182, 212, 0.15), rgba(15, 23, 42, 0.95));
}
.hero-tech-badge-1 svg { fill: #06b6d4; }

/* Badge 2: Un solo pago - Green */
.hero-tech-badge-2 {
  top: 30%;
  right: -50px;
  animation-delay: -1.5s;
  border-color: rgba(34, 197, 94, 0.4);
  background: linear-gradient(135deg, rgba(34, 197, 94, 0.15), rgba(15, 23, 42, 0.95));
}
.hero-tech-badge-2 svg { fill: #22c55e; }

/* Badge 3: 3 meses soporte - Purple */
.hero-tech-badge-3 {
  bottom: 35%;
  left: -50px;
  animation-delay: -3s;
  border-color: rgba(139, 92, 246, 0.4);
  background: linear-gradient(135deg, rgba(139, 92, 246, 0.15), rgba(15, 23, 42, 0.95));
}
.hero-tech-badge-3 svg { fill: #8b5cf6; }

/* Badge 4: 100% Responsive - Blue */
.hero-tech-badge-4 {
  bottom: -10px;
  right: 15%;
  animation-delay: -4.5s;
  border-color: rgba(59, 130, 246, 0.4);
  background: linear-gradient(135deg, rgba(59, 130, 246, 0.15), rgba(15, 23, 42, 0.95));
}
.hero-tech-badge-4 svg { fill: #3b82f6; }

@keyframes techBadgeFloat {
  0%, 100% {
    transform: translateY(0) rotate(0deg);
  }
  25% {
    transform: translateY(-12px) rotate(2deg);
  }
  50% {
    transform: translateY(5px) rotate(-1deg);
  }
  75% {
    transform: translateY(-8px) rotate(1deg);
  }
}

/* 3D Code Window */
.hero-code-window {
  position: relative;
  background: linear-gradient(145deg, #1e293b, #0f172a);
  border: 1px solid rgba(6, 182, 212, 0.2);
  border-radius: 20px;
  overflow: hidden;
  transform: rotateY(-8deg) rotateX(5deg);
  transform-style: preserve-3d;
  transition: transform 0.5s ease;
  box-shadow: 
    0 40px 80px rgba(0, 0, 0, 0.5),
    0 0 0 1px rgba(255, 255, 255, 0.05) inset,
    20px 20px 60px rgba(0, 0, 0, 0.3),
    -20px -20px 60px rgba(6, 182, 212, 0.05);
  animation: codeWindowFloat 6s ease-in-out infinite;
}

@keyframes codeWindowFloat {
  0%, 100% {
    transform: rotateY(-8deg) rotateX(5deg) translateY(0);
  }
  50% {
    transform: rotateY(-5deg) rotateX(3deg) translateY(-15px);
  }
}

.hero-code-window:hover {
  transform: rotateY(0deg) rotateX(0deg) scale(1.02);
}

/* Code Header */
.hero-code-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 20px;
  background: rgba(15, 23, 42, 0.8);
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.hero-code-dots {
  display: flex;
  gap: 8px;
}

.dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  transition: transform 0.2s ease;
}

.dot:hover {
  transform: scale(1.2);
}

.dot-red { background: #ff5f57; }
.dot-yellow { background: #febc2e; }
.dot-green { background: #28c840; }

.hero-code-title {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.6);
  font-weight: 500;
}

.hero-code-actions {
  color: rgba(255, 255, 255, 0.4);
  cursor: pointer;
  transition: color 0.2s ease;
}

.hero-code-actions:hover {
  color: rgba(255, 255, 255, 0.8);
}

/* Code Body */
.hero-code-body {
  display: flex;
  padding: 24px 0;
  font-family: 'JetBrains Mono', 'Fira Code', 'Monaco', 'Consolas', monospace;
  font-size: 14px;
  line-height: 1.8;
}

.hero-code-line-numbers {
  display: flex;
  flex-direction: column;
  padding: 0 20px;
  color: rgba(255, 255, 255, 0.25);
  text-align: right;
  user-select: none;
  border-right: 1px solid rgba(255, 255, 255, 0.05);
}

.hero-code-line-numbers span {
  font-size: 12px;
}

.hero-code-content {
  padding: 0 24px;
  overflow-x: auto;
}

.hero-code-content pre {
  margin: 0;
}

.hero-code-content code {
  font-family: inherit;
  color: #e2e8f0;
}

/* Syntax Highlighting */
.code-keyword { color: #c084fc; }
.code-variable { color: #22d3ee; }
.code-operator { color: #06b6d4; }
.code-string { color: #a5f3fc; }
.code-tag { color: #f472b6; }
.code-attr { color: #fbbf24; }

/* Typing animation for code */
.hero-code-content code {
  animation: codeTyping 3s steps(40) 1s forwards;
}

/* Code Footer */
.hero-code-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 12px 20px;
  background: rgba(15, 23, 42, 0.6);
  border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.hero-code-status {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 12px;
  color: rgba(255, 255, 255, 0.5);
}

.status-dot {
  width: 8px;
  height: 8px;
  background: #22c55e;
  border-radius: 50%;
  animation: statusBlink 2s ease-in-out infinite;
}

@keyframes statusBlink {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.5; }
}

.hero-code-lang {
  font-size: 12px;
  color: #06b6d4;
  font-weight: 500;
}

/* Floating Cards */
.hero-floating-card {
  position: absolute;
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 14px 18px;
  background: rgba(15, 23, 42, 0.95);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 16px;
  backdrop-filter: blur(20px);
  z-index: 15;
  animation: floatingCardBounce 5s ease-in-out infinite;
  box-shadow: 0 16px 48px rgba(0, 0, 0, 0.4);
}

.floating-card-icon {
  font-size: 24px;
}

.floating-card-text {
  display: flex;
  flex-direction: column;
}

.floating-card-title {
  font-size: 14px;
  font-weight: 600;
  color: #ffffff;
}

.floating-card-desc {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.5);
}

.hero-floating-card-1 {
  top: 15%;
  right: -20px;
  animation-delay: -2s;
}

.hero-floating-card-2 {
  bottom: 10%;
  left: -30px;
  animation-delay: 0s;
}

@keyframes floatingCardBounce {
  0%, 100% {
    transform: translateY(0) rotate(0deg);
  }
  25% {
    transform: translateY(-15px) rotate(2deg);
  }
  75% {
    transform: translateY(8px) rotate(-1deg);
  }
}

/* Cursor Element */
.hero-cursor {
  position: absolute;
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 8px 14px;
  background: linear-gradient(135deg, #06b6d4, #8b5cf6);
  border-radius: 20px 20px 20px 4px;
  z-index: 25;
  bottom: 25%;
  right: 10%;
  animation: cursorMove 8s ease-in-out infinite;
  box-shadow: 0 8px 24px rgba(6, 182, 212, 0.4);
}

.hero-cursor svg {
  width: 16px;
  height: 16px;
}

.hero-cursor-name {
  font-size: 12px;
  font-weight: 600;
  color: #ffffff;
}

@keyframes cursorMove {
  0%, 100% {
    transform: translate(0, 0);
    opacity: 1;
  }
  20% {
    transform: translate(-50px, -30px);
    opacity: 1;
  }
  40% {
    transform: translate(-80px, 20px);
    opacity: 0.8;
  }
  60% {
    transform: translate(-30px, -10px);
    opacity: 1;
  }
  80% {
    transform: translate(20px, 30px);
    opacity: 0.9;
  }
}

/* Scroll Indicator */
.hero-scroll-indicator {
  position: absolute;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  z-index: 20;
  opacity: 0;
  animation: fadeInUp 0.8s ease-out 1.2s forwards;
}

.scroll-mouse {
  width: 26px;
  height: 42px;
  border: 2px solid rgba(255, 255, 255, 0.3);
  border-radius: 13px;
  position: relative;
}

.scroll-wheel {
  width: 4px;
  height: 8px;
  background: #06b6d4;
  border-radius: 2px;
  position: absolute;
  top: 8px;
  left: 50%;
  transform: translateX(-50%);
  animation: scrollWheel 2s ease-in-out infinite;
}

@keyframes scrollWheel {
  0%, 100% {
    transform: translateX(-50%) translateY(0);
    opacity: 1;
  }
  50% {
    transform: translateX(-50%) translateY(12px);
    opacity: 0.3;
  }
}

.hero-scroll-indicator span {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.4);
  letter-spacing: 1px;
  text-transform: uppercase;
}

/* ===========================================
   HERO RESPONSIVE STYLES
   =========================================== */

@media screen and (max-width: 1200px) {
  .hero-flex-layout {
    gap: 60px;
  }
  
  .hero-title-new {
    font-size: clamp(36px, 5vw, 56px);
  }
  
  .hero-3d-container {
    max-width: 480px;
  }
}

@media screen and (max-width: 991px) {
  .hero-flex-layout {
    grid-template-columns: 1fr;
    gap: 60px;
    text-align: center;
  }
  
  .hero-text-column {
    align-items: center;
    order: 2;
  }
  
  .hero-visual-column {
    order: 1;
  }
  
  .hero-description-new {
    max-width: 100%;
  }
  
  .hero-cta-group {
    justify-content: center;
  }
  
  .hero-stats {
    justify-content: center;
  }
  
  .hero-3d-container {
    max-width: 500px;
  }
  
  .hero-code-window {
    transform: rotateY(0deg) rotateX(3deg);
  }
  
  .hero-tech-badge-1 { left: 10px; top: -10px; }
  .hero-tech-badge-2 { right: 10px; }
  .hero-tech-badge-3 { left: 0; }
  .hero-tech-badge-4 { right: 10%; }
  
  .hero-floating-card-1 { right: 0; }
  .hero-floating-card-2 { left: 0; }
  
  .hero-orb-1 { width: 350px; height: 350px; }
  .hero-orb-2 { width: 280px; height: 280px; }
  .hero-orb-3 { width: 200px; height: 200px; }
}

@media screen and (max-width: 767px) {
  .hero-section-new {
    padding-top: 100px;
    min-height: auto;
  }
  
  .hero-flex-layout {
    gap: 40px;
    min-height: auto;
    padding: 40px 0 80px;
  }
  
  .hero-title-new {
    font-size: clamp(32px, 8vw, 44px);
  }
  
  .hero-description-new {
    font-size: 16px;
  }
  
  .hero-cta-group {
    flex-direction: column;
    width: 100%;
  }
  
  .hero-btn-primary,
  .hero-btn-secondary {
    width: 100%;
    justify-content: center;
  }
  
  .hero-stats {
    flex-wrap: wrap;
    gap: 20px;
  }
  
  .hero-stat-divider {
    display: none;
  }
  
  .hero-stat {
    min-width: 80px;
  }
  
  .hero-stat-number {
    font-size: 28px;
  }
  
  .hero-3d-container {
    max-width: 100%;
  }
  
  .hero-code-window {
    transform: none;
    animation: none;
  }
  
  .hero-code-body {
    font-size: 12px;
  }
  
  .hero-tech-badge {
    display: none;
  }
  
  .hero-floating-card {
    display: none;
  }
  
  .hero-cursor {
    display: none;
  }
  
  .hero-scroll-indicator {
    display: none;
  }
  
  .hero-shape {
    display: none;
  }
  
  .hero-orb-1,
  .hero-orb-2,
  .hero-orb-3 {
    filter: blur(100px);
    opacity: 0.4;
  }
}

@media screen and (max-width: 479px) {
  .hero-title-new {
    font-size: 28px;
  }
  
  .hero-badge-animated {
    padding: 6px 14px 6px 10px;
  }
  
  .hero-badge-text {
    font-size: 12px;
  }
  
  .hero-code-line-numbers {
    display: none;
  }
  
  .hero-code-content {
    padding: 0 16px;
  }
  
  .hero-code-body {
    font-size: 11px;
    padding: 16px 0;
  }
}

/* Reduced motion preferences */
@media (prefers-reduced-motion: reduce) {
  .hero-orb,
  .hero-shape,
  .hero-grid-pattern,
  .hero-tech-badge,
  .hero-floating-card,
  .hero-cursor,
  .hero-code-window,
  .hero-badge-dot,
  .scroll-wheel,
  .hero-title-word,
  .hero-badge-animated,
  .hero-description-new,
  .hero-cta-group,
  .hero-stats,
  .hero-3d-container {
    animation: none !important;
    opacity: 1 !important;
    transform: none !important;
  }
}

/* Process Steps Section Styles */
#Process-Steps {
  background: linear-gradient(135deg, #0f172a 0%, #1e293b 100%);
  position: relative;
  overflow: hidden;
}

/* Ensure text visibility in the process section */
#Process-Steps .badge {
  background-color: rgba(214, 215, 224, 0.1);
  border: 1px solid rgba(214, 215, 224, 0.2);
  opacity: 1 !important;
  transform: none !important;
}

#Process-Steps .badge .paragraph-small {
  color: #ffffff !important;
  font-weight: 500;
  opacity: 1 !important;
}

#Process-Steps .heading-style-h2 {
  color: #ffffff !important;
  font-weight: 700;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
  opacity: 1 !important;
  transform: none !important;
}

#Process-Steps .paragraph-large {
  color: var(--neutral--300) !important;
  opacity: 1 !important;
  transform: none !important;
}

/* Force visibility for all wf-fade-init elements in process section */
#Process-Steps .wf-fade-init {
  opacity: 1 !important;
  transform: translate3d(0, 0, 0) scale3d(1, 1, 1) rotateX(0) rotateY(0) rotateZ(0) skew(0, 0) !important;
  animation: processTextFadeIn 1s ease-out forwards;
}

/* Custom animation for process section text */
@keyframes processTextFadeIn {
  0% {
    opacity: 0;
    transform: translateY(20px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Desktop Restructured Layout */
.process-steps-desktop {
  display: block;
}

.process-steps-mobile {
  display: none;
}

.steps-container-restructured {
  margin-top: 80px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 40px;
}

/* Filas de pasos */
.steps-row-top,
.steps-row-bottom {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 40px;
}

.step-item {
  background: rgba(214, 215, 224, 0.03);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(214, 215, 224, 0.1);
  border-radius: 20px;
  padding: 32px 24px;
  text-align: center;
  min-width: 280px;
  max-width: 320px;
  position: relative;
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  opacity: 0;
  transform: translateY(40px) scale(0.95);
  animation: fadeInUpScale 1s ease forwards;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
}

.step-item:hover {
  transform: translateY(-8px) scale(1.02);
  background: rgba(214, 215, 224, 0.08);
  border-color: rgba(214, 215, 224, 0.3);
  box-shadow: 0 20px 60px rgba(6, 182, 212, 0.15);
}

.step-item:hover .step-number {
  transform: scale(1.1) rotate(5deg);
  box-shadow: 0 0 30px rgba(6, 182, 212, 0.6);
}

.step-number {
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg, #06b6d4, #0891b2, #0e7490);
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 28px;
  font-weight: 800;
  margin: 0 auto 20px;
  position: relative;
  transition: all 0.4s ease;
  animation: pulseGlow 3s infinite;
  box-shadow: 0 0 20px rgba(6, 182, 212, 0.4);
}

.step-number::before {
  content: '';
  position: absolute;
  top: -4px;
  left: -4px;
  right: -4px;
  bottom: -4px;
  background: linear-gradient(135deg, #06b6d4, #0891b2, #0e7490);
  border-radius: 50%;
  z-index: -1;
  opacity: 0;
  animation: ripple 3s infinite;
}

.step-content {
  text-align: center;
}

.step-title {
  font-size: 20px;
  font-weight: 700;
  color: #ffffff;
  margin: 0 0 12px 0;
  line-height: 1.3;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.step-description {
  font-size: var(--font-size-desktop--content);
  color: var(--neutral--300);
  line-height: 1.6;
  margin: 0;
  opacity: 0.9;
}

/* Flechas horizontales con brillo */
.step-arrow-horizontal {
  color: var(--neutral--300);
  font-size: 28px;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  position: relative;
  animation: arrowGlow 2.5s infinite;
}

.step-arrow-horizontal svg {
  width: 32px;
  height: 32px;
  filter: drop-shadow(0 0 8px rgba(214, 215, 224, 0.6));
}

.step-arrow-horizontal::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 60px;
  height: 60px;
  background: radial-gradient(circle, rgba(214, 215, 224, 0.2) 0%, transparent 70%);
  border-radius: 50%;
  transform: translate(-50%, -50%);
  opacity: 0;
  animation: glowPulse 2.5s infinite;
}

/* Flechas verticales con brillo */
.step-arrow-vertical {
  color: var(--neutral--300);
  font-size: 28px;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  position: relative;
  animation: arrowGlowVertical 2.5s infinite;
}

.step-arrow-vertical svg {
  width: 32px;
  height: 32px;
  filter: drop-shadow(0 0 8px rgba(214, 215, 224, 0.6));
}

.step-arrow-vertical::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 60px;
  height: 60px;
  background: radial-gradient(circle, rgba(214, 215, 224, 0.2) 0%, transparent 70%);
  border-radius: 50%;
  transform: translate(-50%, -50%);
  opacity: 0;
  animation: glowPulse 2.5s infinite;
}

/* Texto de espera */
.waiting-text {
  text-align: center;
  padding: 20px 40px;
  background: rgba(214, 215, 224, 0.02);
  border-radius: 50px;
  border: 1px dashed rgba(214, 215, 224, 0.2);
  animation: fadeInScale 1.2s ease forwards;
  opacity: 0;
}

.waiting-description {
  font-size: 14px;
  color: rgba(214, 215, 224, 0.6);
  margin: 0;
  font-style: italic;
  letter-spacing: 0.5px;
}

/* Mobile Vertical Layout */
.steps-container-vertical {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
  margin-top: 40px;
}

.step-item-mobile {
  background-color: rgba(214, 215, 224, 0.05);
  border: 1px solid rgba(214, 215, 224, 0.1);
  border-radius: 16px;
  padding: 20px;
  width: 100%;
  max-width: 400px;
  display: flex;
  align-items: center;
  gap: 20px;
  position: relative;
  transition: all 0.3s ease;
  opacity: 0;
  transform: translateX(-30px);
  animation: fadeInLeft 0.8s ease forwards;
}

.step-item-mobile:hover {
  background-color: rgba(214, 215, 224, 0.08);
  border-color: rgba(214, 215, 224, 0.2);
}

.step-number-mobile {
  width: 50px;
  height: 50px;
  background: linear-gradient(135deg, #06b6d4, #0891b2);
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  font-weight: 700;
  flex-shrink: 0;
  animation: pulse 2s infinite;
}

.step-content-mobile {
  flex: 1;
  text-align: left;
}

.step-title-mobile {
  font-size: 18px;
  font-weight: 600;
  color: white;
  margin: 0 0 8px 0;
  line-height: 1.3;
}

.step-description-mobile {
  font-size: var(--font-size-mobile--content);
  color: var(--neutral--300);
  line-height: 1.5;
  margin: 0;
}

.step-arrow-mobile {
  color: var(--neutral--300);
  font-size: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 30px;
  height: 30px;
  animation: arrowPulseVertical 2s infinite;
  margin: 0 auto;
}

.step-arrow-mobile svg {
  width: 24px;
  height: 24px;
}

/* Enhanced Animations */
@keyframes fadeInUpScale {
  0% {
    opacity: 0;
    transform: translateY(40px) scale(0.95);
  }
  60% {
    opacity: 0.8;
    transform: translateY(-5px) scale(1.02);
  }
  100% {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

@keyframes fadeInScale {
  0% {
    opacity: 0;
    transform: scale(0.9);
  }
  100% {
    opacity: 1;
    transform: scale(1);
  }
}

@keyframes fadeInLeft {
  from {
    opacity: 0;
    transform: translateX(-30px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes pulseGlow {
  0%, 100% {
    transform: scale(1);
    box-shadow: 0 0 20px rgba(6, 182, 212, 0.4);
  }
  50% {
    transform: scale(1.05);
    box-shadow: 0 0 30px rgba(6, 182, 212, 0.8);
  }
}

@keyframes ripple {
  0% {
    opacity: 0;
    transform: scale(1);
  }
  50% {
    opacity: 0.3;
    transform: scale(1.2);
  }
  100% {
    opacity: 0;
    transform: scale(1.4);
  }
}

@keyframes arrowGlow {
  0%, 100% {
    opacity: 0.7;
    transform: translateX(0);
    filter: drop-shadow(0 0 8px rgba(214, 215, 224, 0.6));
  }
  50% {
    opacity: 1;
    transform: translateX(8px);
    filter: drop-shadow(0 0 15px rgba(214, 215, 224, 1)) drop-shadow(0 0 25px rgba(6, 182, 212, 0.5));
  }
}

@keyframes arrowGlowVertical {
  0%, 100% {
    opacity: 0.7;
    transform: translateY(0);
    filter: drop-shadow(0 0 8px rgba(214, 215, 224, 0.6));
  }
  50% {
    opacity: 1;
    transform: translateY(8px);
    filter: drop-shadow(0 0 15px rgba(214, 215, 224, 1)) drop-shadow(0 0 25px rgba(6, 182, 212, 0.5));
  }
}

@keyframes glowPulse {
  0%, 100% {
    opacity: 0;
  }
  50% {
    opacity: 1;
  }
}

@keyframes textShimmer {
  0% {
    opacity: 0.6;
  }
  50% {
    opacity: 1;
    text-shadow: 0 0 10px rgba(255, 255, 255, 0.3);
  }
  100% {
    opacity: 0.6;
  }
}

/* Animation delays for staggered effect */
.steps-row-top .step-item:nth-child(1) { animation-delay: 0.2s; }
.steps-row-top .step-item:nth-child(3) { animation-delay: 0.4s; }
.steps-row-bottom .step-item:nth-child(1) { animation-delay: 0.8s; }
.steps-row-bottom .step-item:nth-child(3) { animation-delay: 1s; }

.step-arrow-horizontal:nth-child(2) { animation-delay: 0.6s; }
.step-arrow-vertical:nth-child(1) { animation-delay: 0.5s; }
.step-arrow-vertical:nth-child(3) { animation-delay: 0.7s; }
.waiting-text { animation-delay: 0.6s; }

.step-item-mobile:nth-child(1) { animation-delay: 0.1s; }
.step-item-mobile:nth-child(3) { animation-delay: 0.2s; }
.step-item-mobile:nth-child(5) { animation-delay: 0.3s; }
.step-item-mobile:nth-child(7) { animation-delay: 0.4s; }

/* Shimmer effect for titles */
.step-title {
  animation: textShimmer 4s infinite;
}

/* Hero Stars Glow Effect */
.icon-wrapper-hero {
  display: flex;
  gap: 8px;
  align-items: center;
  justify-content: center;
}

.icon-wrapper-hero .small-icon {
  position: relative;
  display: inline-block;
  animation: starGlow 2s infinite ease-in-out;
}

.icon-wrapper-hero .small-icon:nth-child(1) { animation-delay: 0s; }
.icon-wrapper-hero .small-icon:nth-child(2) { animation-delay: 0.4s; }
.icon-wrapper-hero .small-icon:nth-child(3) { animation-delay: 0.8s; }
.icon-wrapper-hero .small-icon:nth-child(4) { animation-delay: 1.2s; }

.icon-wrapper-hero .small-icon svg {
  transition: all 0.3s ease;
  filter: drop-shadow(0 0 4px rgba(255, 255, 255, 0.3));
}

@keyframes starGlow {
  0%, 100% {
    opacity: 0.7;
    transform: scale(1);
  }
  50% {
    opacity: 1;
    transform: scale(1.1);
  }
}

.icon-wrapper-hero .small-icon::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 100%;
  height: 100%;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.3) 0%, transparent 70%);
  border-radius: 50%;
  transform: translate(-50%, -50%);
  opacity: 0;
  animation: starPulse 2s infinite ease-in-out;
  animation-delay: inherit;
  pointer-events: none;
}

@keyframes starPulse {
  0%, 100% {
    opacity: 0;
    transform: translate(-50%, -50%) scale(0.8);
  }
  50% {
    opacity: 0.6;
    transform: translate(-50%, -50%) scale(1.3);
  }
}

/* Enhanced glow on hover */
.icon-wrapper-hero .small-icon:hover {
  animation-play-state: paused;
  opacity: 1;
  transform: scale(1.2);
}

.icon-wrapper-hero .small-icon:hover svg {
  filter: drop-shadow(0 0 12px rgba(255, 255, 255, 0.8)) drop-shadow(0 0 20px rgba(255, 255, 255, 0.4));
}

/* Testimonials Stars Glow Effect */
.icon-wrapper-reviews {
  display: flex;
  gap: 4px;
  align-items: center;
  justify-content: flex-start;
}

.icon-wrapper-reviews .small-icon {
  position: relative;
  display: inline-block;
  animation: starGlow 2.5s infinite ease-in-out;
}

.icon-wrapper-reviews .small-icon:nth-child(1) { animation-delay: 0s; }
.icon-wrapper-reviews .small-icon:nth-child(2) { animation-delay: 0.5s; }
.icon-wrapper-reviews .small-icon:nth-child(3) { animation-delay: 1s; }
.icon-wrapper-reviews .small-icon:nth-child(4) { animation-delay: 1.5s; }
.icon-wrapper-reviews .small-icon:nth-child(5) { animation-delay: 2s; }

.icon-wrapper-reviews .small-icon svg {
  transition: all 0.3s ease;
  filter: drop-shadow(0 0 3px rgba(255, 255, 255, 0.2));
}

.icon-wrapper-reviews .small-icon::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 100%;
  height: 100%;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.2) 0%, transparent 70%);
  border-radius: 50%;
  transform: translate(-50%, -50%);
  opacity: 0;
  animation: starPulse 2.5s infinite ease-in-out;
  animation-delay: inherit;
  pointer-events: none;
}

/* Enhanced glow on hover for testimonials stars */
.icon-wrapper-reviews .small-icon:hover {
  animation-play-state: paused;
  opacity: 1;
  transform: scale(1.15);
}

.icon-wrapper-reviews .small-icon:hover svg {
  filter: drop-shadow(0 0 8px rgba(255, 255, 255, 0.6)) drop-shadow(0 0 15px rgba(255, 255, 255, 0.3));
}

/* ===========================================
   ENHANCED SECTION ANIMATIONS SYSTEM
   =========================================== */

/* Hero Section Enhanced Animations */
.hero-section {
  position: relative;
  overflow: hidden;
}

.hero-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(45deg, rgba(6, 182, 212, 0.05) 0%, transparent 50%, rgba(6, 182, 212, 0.05) 100%);
  opacity: 0;
  animation: heroBackgroundPulse 8s infinite;
  pointer-events: none;
  z-index: 0;
}

@keyframes heroBackgroundPulse {
  0%, 100% { opacity: 0; }
  50% { opacity: 1; }
}

/* Enhanced Hero Content Animations */
.hero-tittle {
  animation: heroSlideIn 1.2s ease-out forwards;
  opacity: 0;
}

.hero-image-warapper {
  animation: heroImageFloat 1.5s ease-out forwards;
  opacity: 0;
}

/* .hero-image {
  animation: heroImageRotate 20s linear infinite;
  transform-origin: center;
} */

/* @keyframes heroSlideIn {
  0% {
    opacity: 0;
    transform: translateX(-50px) scale(0.95);
  }
  100% {
    opacity: 1;
    transform: translateX(0) scale(1);
  }
} */

@keyframes heroImageFloat {
  0% {
    opacity: 0;
    transform: translateY(30px) scale(0.9);
  }
  100% {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}



/* Skills Section Enhanced Animations */
#Skills-Sections {
  position: relative;
}

#Skills-Sections .card-features {
  opacity: 0;
  transform: translateY(40px) scale(0.95);
  animation: skillCardSlideUp 0.8s ease forwards;
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  position: relative;
  overflow: hidden;
}

#Skills-Sections .card-features::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(6, 182, 212, 0.1), transparent);
  transition: left 0.8s ease;
}

#Skills-Sections .card-features:hover::before {
  left: 100%;
}

#Skills-Sections .card-features:hover {
  transform: translateY(-8px) scale(1.02);
  box-shadow: 0 20px 60px rgba(6, 182, 212, 0.15);
}

@keyframes skillCardSlideUp {
  0% {
    opacity: 0;
    transform: translateY(40px) scale(0.95);
  }
  60% {
    opacity: 0.8;
    transform: translateY(-5px) scale(1.02);
  }
  100% {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

/* Staggered animation delays for skill cards */
#Skills-Sections .card-features:nth-child(1) { animation-delay: 0.1s; }
#Skills-Sections .card-features:nth-child(2) { animation-delay: 0.2s; }
#Skills-Sections .card-features:nth-child(3) { animation-delay: 0.3s; }
#Skills-Sections .card-features:nth-child(4) { animation-delay: 0.4s; }
#Skills-Sections .card-features:nth-child(5) { animation-delay: 0.5s; }
#Skills-Sections .card-features:nth-child(6) { animation-delay: 0.6s; }

/* Experience Section Enhanced Animations */
#Experience-Sections {
  position: relative;
}

#Experience-Sections .image-experience {
  opacity: 0;
  transform: scale(0.8) rotate(-5deg);
  animation: experienceImageZoom 1.2s ease forwards;
  animation-delay: 0.3s;
}

#Experience-Sections .card-features {
  opacity: 0;
  transform: translateX(-50px);
  animation: experienceCardSlide 0.8s ease forwards;
}

@keyframes experienceImageZoom {
  0% {
    opacity: 0;
    transform: scale(0.8) rotate(-5deg);
  }
  100% {
    opacity: 1;
    transform: scale(1) rotate(0deg);
  }
}

@keyframes experienceCardSlide {
  0% {
    opacity: 0;
    transform: translateX(-50px);
  }
  100% {
    opacity: 1;
    transform: translateX(0);
  }
}

/* Experience cards staggered delays */
#Experience-Sections .card-features:nth-child(2) { animation-delay: 0.2s; }
#Experience-Sections .card-features:nth-child(3) { animation-delay: 0.4s; }
#Experience-Sections .card-features:nth-child(4) { animation-delay: 0.6s; }
#Experience-Sections .card-features:nth-child(5) { animation-delay: 0.8s; }
#Experience-Sections .card-features:nth-child(6) { animation-delay: 1s; }

/* Projects Section Enhanced Animations */
#Projects-Sections {
  position: relative;
}

#Projects-Sections .card-project {
  opacity: 0;
  transform: translateY(50px) rotateX(15deg);
  animation: projectCardFlip 1s ease forwards;
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  transform-style: preserve-3d;
  perspective: 1000px;
}

#Projects-Sections .card-project:hover {
  transform: translateY(-15px) rotateX(5deg) scale(1.02);
  box-shadow: 0 25px 80px rgba(6, 182, 212, 0.2);
}

#Projects-Sections .tumbnail-project {
  transition: all 0.4s ease;
  transform-origin: center;
}

#Projects-Sections .card-project:hover .tumbnail-project {
  transform: scale(1.05);
  filter: brightness(1.1) saturate(1.2);
}

@keyframes projectCardFlip {
  0% {
    opacity: 0;
    transform: translateY(50px) rotateX(15deg);
  }
  100% {
    opacity: 1;
    transform: translateY(0) rotateX(0deg);
  }
}

/* Project cards staggered delays */
#Projects-Sections .card-project:nth-child(1) { animation-delay: 0.2s; }
#Projects-Sections .card-project:nth-child(2) { animation-delay: 0.4s; }
#Projects-Sections .card-project:nth-child(3) { animation-delay: 0.6s; }

/* Testimonials Section Enhanced Animations */
#Testimonials-Sections {
  position: relative;
}

#Testimonials-Sections .testimonial-card {
  opacity: 0;
  transform: scale(0.9) translateY(30px);
  animation: testimonialCardBounce 0.8s cubic-bezier(0.68, -0.55, 0.265, 1.55) forwards;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

#Testimonials-Sections .testimonial-card::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: linear-gradient(45deg, transparent, rgba(255, 255, 255, 0.03), transparent);
  opacity: 0;
  transition: all 0.6s ease;
  transform: rotate(45deg);
}

#Testimonials-Sections .testimonial-card:hover::before {
  opacity: 1;
  transform: rotate(45deg) translate(50%, 50%);
}

#Testimonials-Sections .testimonial-card:hover {
  transform: translateY(-10px) scale(1.02);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.15);
}

@keyframes testimonialCardBounce {
  0% {
    opacity: 0;
    transform: scale(0.9) translateY(30px);
  }
  60% {
    opacity: 0.8;
    transform: scale(1.05) translateY(-5px);
  }
  100% {
    opacity: 1;
    transform: scale(1) translateY(0);
  }
}

/* Testimonial cards staggered delays */
#Testimonials-Sections .testimonial-card:nth-child(1) { animation-delay: 0.1s; }
#Testimonials-Sections .testimonial-card:nth-child(2) { animation-delay: 0.3s; }
#Testimonials-Sections .testimonial-card:nth-child(3) { animation-delay: 0.5s; }
#Testimonials-Sections .testimonial-card:nth-child(4) { animation-delay: 0.7s; }

/* FAQ Section Enhanced Animations */
#Faq-sections {
  position: relative;
}

#Faq-sections .faq-accordion {
  opacity: 0;
  transform: translateX(-30px);
  animation: faqSlideIn 0.6s ease forwards;
  transition: all 0.3s ease;
  position: relative;
}

#Faq-sections .faq-accordion:hover {
  transform: translateX(5px);
  background: rgba(214, 215, 224, 0.02);
}

#Faq-sections .faq-question {
  transition: all 0.3s ease;
}

#Faq-sections .faq-accordion:hover .faq-question {
  color: #06b6d4;
}

#Faq-sections .faq-icon {
  transition: all 0.3s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}

#Faq-sections .faq-accordion:hover .faq-icon {
  transform: rotate(45deg) scale(1.1);
  color: #06b6d4;
}

@keyframes faqSlideIn {
  0% {
    opacity: 0;
    transform: translateX(-30px);
  }
  100% {
    opacity: 1;
    transform: translateX(0);
  }
}

/* FAQ items staggered delays */
#Faq-sections .faq-accordion:nth-child(1) { animation-delay: 0.1s; }
#Faq-sections .faq-accordion:nth-child(2) { animation-delay: 0.3s; }
#Faq-sections .faq-accordion:nth-child(3) { animation-delay: 0.5s; }

/* Footer Enhanced Animations */
.footer {
  position: relative;
}

.footer .cta {
  opacity: 0;
  transform: translateY(40px);
  animation: footerCtaSlideUp 1s ease forwards;
  animation-delay: 0.2s;
}

.footer .footer-wrapper {
  opacity: 0;
  transform: translateY(20px);
  animation: footerContentFade 0.8s ease forwards;
  animation-delay: 0.5s;
}

@keyframes footerCtaSlideUp {
  0% {
    opacity: 0;
    transform: translateY(40px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes footerContentFade {
  0% {
    opacity: 0;
    transform: translateY(20px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Enhanced Button Animations */
.button {
  position: relative;
  overflow: hidden;
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  transform: translateY(0);
}

.button::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
  transition: left 0.6s ease;
}

.button:hover::before {
  left: 100%;
}

.button:hover {
  transform: translateY(-3px) scale(1.02);
  box-shadow: 0 15px 40px rgba(6, 182, 212, 0.3);
}

.button:active {
  transform: translateY(-1px) scale(0.98);
}

/* Section Title Animations */
.section-tittle {
  opacity: 0;
  transform: translateY(30px);
  animation: sectionTitleSlide 0.8s ease forwards;
}

@keyframes sectionTitleSlide {
  0% {
    opacity: 0;
    transform: translateY(30px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Badge Enhanced Animations */
.badge {
  position: relative;
  overflow: hidden;
  animation: badgePulse 3s infinite;
}

.badge::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(6, 182, 212, 0.3), transparent);
  animation: badgeShine 3s infinite;
}

@keyframes badgePulse {
  0%, 100% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.02);
  }
}

@keyframes badgeShine {
  0% {
    left: -100%;
  }
  50% {
    left: 100%;
  }
  100% {
    left: 100%;
  }
}

/* Scroll-triggered animations */
@keyframes fadeInOnScroll {
  0% {
    opacity: 0;
    transform: translateY(40px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

.animate-on-scroll {
  opacity: 0;
  animation: fadeInOnScroll 0.8s ease forwards;
}

/* Tablet Responsive */
@media screen and (max-width: 991px) {
  .steps-container-restructured {
    gap: 30px;
  }
  
  .steps-row-top,
  .steps-row-bottom {
    flex-direction: column;
    gap: 30px;
  }
  
  .step-arrow-horizontal {
    transform: rotate(90deg);
    animation: arrowGlowVertical 2.5s infinite;
  }
  
  .step-item {
    max-width: 400px;
    width: 90%;
  }
  
  .waiting-text {
    margin: 20px 0;
  }
  
  /* Reduce animation intensity on tablets */
  .hero-image {
    animation-duration: 30s;
  }
  
  #Skills-Sections .card-features:hover,
  #Projects-Sections .card-project:hover,
  #Testimonials-Sections .testimonial-card:hover {
    transform: translateY(-5px) scale(1.01);
  }
}

/* Mobile Responsive */
@media screen and (max-width: 767px) {
  .process-steps-desktop {
    display: none;
  }
  
  .process-steps-mobile {
    display: block;
  }
  
  .step-description-mobile {
    font-size: 14px;
  }
  
  .step-title-mobile {
    font-size: 16px;
  }
  
  .step-item {
    min-width: 260px;
    padding: 24px 20px;
  }
  
  .step-number {
    width: 50px;
    height: 50px;
    font-size: 24px;
  }
  
  .step-title {
    font-size: 18px;
  }
  
  .step-description {
    font-size: 14px;
  }
  
  /* Disable complex animations on mobile for performance */
  .hero-image {
    animation: none;
  }
  
  .button:hover {
    transform: none;
    box-shadow: none;
  }
  
  #Skills-Sections .card-features:hover,
  #Projects-Sections .card-project:hover,
  #Testimonials-Sections .testimonial-card:hover {
    transform: none;
  }
}

/* ===========================================
   PROJECTS PAGE STYLES
   =========================================== */

/* Breadcrumb Navigation */
.breadcrumb-section {
  padding: 120px 0 40px;
  background: linear-gradient(135deg, #0f172a 0%, #1e293b 100%);
}

.breadcrumb-wrapper {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 14px;
  opacity: 0.8;
}

.breadcrumb-link {
  color: var(--neutral--300);
  text-decoration: none;
  transition: color 0.3s ease;
}

.breadcrumb-link:hover {
  color: #06b6d4;
}

.breadcrumb-separator {
  color: var(--neutral--300);
  opacity: 0.5;
}

.breadcrumb-current {
  color: #ffffff;
  font-weight: 500;
}

/* Projects Hero Section */
.projects-hero-section {
  position: relative;
  padding: 40px 0 80px;
  background: linear-gradient(135deg, #0f172a 0%, #1e293b 100%);
  overflow: hidden;
}

.projects-hero-content {
  text-align: center;
  max-width: 800px;
  margin: 0 auto;
}

.projects-intro-text {
  margin-top: 40px;
  padding: 30px;
  background: rgba(214, 215, 224, 0.03);
  border: 1px solid rgba(214, 215, 224, 0.1);
  border-radius: 20px;
  backdrop-filter: blur(10px);
}

/* Projects CTA Section */
.projects-cta-section {
  padding: 80px 0;
  background: linear-gradient(135deg, #1e293b 0%, #0f172a 100%);
  position: relative;
}

.projects-cta-content {
  text-align: center;
  max-width: 700px;
  margin: 0 auto;
}

.projects-cta-content .heading-style-h3 {
  color: #ffffff;
  margin-bottom: 20px;
  font-size: 32px;
  font-weight: 700;
}

.button-wrapper {
  display: flex;
  gap: 20px;
  justify-content: center;
  align-items: center;
  margin-top: 40px;
  flex-wrap: wrap;
}

.button-secondary {
  background: transparent;
  border: 1px solid rgba(214, 215, 224, 0.2);
  color: var(--neutral--300);
  transition: all 0.4s ease;
}

.button-secondary:hover {
  background: rgba(214, 215, 224, 0.05);
  border-color: rgba(214, 215, 224, 0.4);
  color: #ffffff;
}

/* Filter Tabs Section */
.projects-filter-section {
  padding: 60px 0 40px;
  background: linear-gradient(135deg, #0f172a 0%, #1e293b 100%);
}

.filter-tabs-wrapper {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 20px;
}

.filter-tabs {
  display: flex;
  background: rgba(214, 215, 224, 0.05);
  border: 1px solid rgba(214, 215, 224, 0.1);
  border-radius: 50px;
  padding: 6px;
  backdrop-filter: blur(10px);
}

.filter-tab {
  background: transparent;
  border: none;
  padding: 12px 24px;
  border-radius: 50px;
  color: var(--neutral--300);
  font-family: var(--font--content);
  font-size: 14px;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  position: relative;
  overflow: hidden;
}

.filter-tab::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(6, 182, 212, 0.1), transparent);
  transition: left 0.6s ease;
}

.filter-tab:hover::before {
  left: 100%;
}

.filter-tab:hover {
  color: #ffffff;
  background: rgba(214, 215, 224, 0.08);
}

.filter-tab.active {
  background: linear-gradient(135deg, #06b6d4, #0891b2);
  color: #ffffff;
  box-shadow: 0 4px 20px rgba(6, 182, 212, 0.3);
}

.filter-tab.active:hover {
  background: linear-gradient(135deg, #0891b2, #0e7490);
}

.projects-counter {
  color: var(--neutral--300);
  font-size: 14px;
  opacity: 0.8;
}

/* Projects Grid */
.projects-grid-section {
  padding: 40px 0 80px;
  background: linear-gradient(135deg, #0f172a 0%, #1e293b 100%);
}

.projects-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 30px;
  margin-bottom: 60px;
}

.project-card {
  opacity: 0;
  transform: translateY(40px) scale(0.95);
  transition: all 0.6s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  height: 100%; /* Ensure all cards have the same height */
}

.card-project {
  display: flex;
  flex-direction: column;
  height: 100%; /* Full height of the container */
  background: rgba(214, 215, 224, 0.03);
  border: 1px solid rgba(214, 215, 224, 0.1);
  border-radius: 20px;
  overflow: hidden;
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  position: relative;
  backdrop-filter: blur(10px);
  text-decoration: none;
}

.card-project:hover {
  transform: translateY(-8px) scale(1.02);
  box-shadow: 0 25px 80px rgba(6, 182, 212, 0.15);
  border-color: rgba(214, 215, 224, 0.3);
}

.project-image-wrapper {
  position: relative;
  overflow: hidden;
  aspect-ratio: 16/10;
}

.tumbnail-project {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: all 0.4s ease;
}

.project-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, rgba(6, 182, 212, 0.9), rgba(8, 145, 178, 0.9));
  opacity: 0;
  transition: all 0.4s ease;
  display: flex;
  align-items: center;
  justify-content: center;
}

.project-overlay-content {
  text-align: center;
  color: #ffffff;
  transform: translateY(20px);
  transition: all 0.4s ease;
}

.card-project:hover .project-overlay-content {
  transform: translateY(0);
}

.overlay-text {
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 10px;
  display: block;
}

.overlay-icon {
  width: 24px;
  height: 24px;
  margin: 0 auto;
}

.overlay-icon svg {
  width: 100%;
  height: 100%;
}

.project-content {
  padding: 30px;
  flex: 1; /* Takes up remaining space */
  display: flex;
  flex-direction: column;
}

.project-badges {
  display: flex;
  gap: 8px;
  margin-bottom: 16px;
  flex-wrap: wrap;
}

.project-badge {
  padding: 6px 12px;
  font-size: 12px;
  background: rgba(214, 215, 224, 0.1);
  border: 1px solid rgba(214, 215, 224, 0.2);
}

.project-title {
  font-size: 24px;
  font-weight: 700;
  color: #ffffff;
  margin: 0 0 12px 0;
  line-height: 1.3;
}

.project-description {
  color: var(--neutral--300);
  font-size: 14px;
  line-height: 1.6;
  margin: 0 0 20px 0;
  opacity: 0.9;
  flex: 1; /* Takes up available space */
  overflow: hidden;
  display: -webkit-box;
  -webkit-line-clamp: 4; /* Limits to 4 lines */
  line-clamp: 4;
  -webkit-box-orient: vertical;
}

.project-cta {
  display: flex;
  align-items: center;
  gap: 8px;
  color: #06b6d4;
  font-size: 14px;
  font-weight: 600;
  transition: all 0.3s ease;
}

.card-project:hover .project-cta {
  color: #0891b2;
  transform: translateX(4px);
}

.cta-arrow {
  width: 16px;
  height: 16px;
  transition: all 0.3s ease;
}

.cta-arrow svg {
  width: 100%;
  height: 100%;
}

.card-project:hover .cta-arrow {
  transform: translateX(4px) rotate(45deg);
}

/* Load More Button */
.load-more-wrapper {
  text-align: center;
  margin-top: 40px;
}

.load-more-btn {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 16px 32px;
  background: transparent;
  border: 1px solid rgba(214, 215, 224, 0.2);
  color: var(--neutral--300);
  border-radius: 50px;
  transition: all 0.4s ease;
  cursor: pointer;
}

.load-more-btn:hover {
  background: rgba(214, 215, 224, 0.05);
  border-color: rgba(214, 215, 224, 0.4);
  color: #ffffff;
}

.button-loading {
  width: 20px;
  height: 20px;
  animation: spin 1s linear infinite;
}

.button-loading svg {
  width: 100%;
  height: 100%;
}

@keyframes spin {
  from { transform: rotate(0deg); }
  to { transform: rotate(360deg); }
}

/* Timing Section */
.timing-section {
  padding: 100px 0;
  background: linear-gradient(135deg, #0f172a 0%, #1e293b 100%);
  position: relative;
}

.timing-content {
  text-align: center;
  max-width: 1200px;
  margin: 0 auto;
}

.timing-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 30px;
  margin: 60px 0 40px 0;
}

.timing-card {
  background: rgba(214, 215, 224, 0.03);
  border: 1px solid rgba(214, 215, 224, 0.1);
  border-radius: 20px;
  padding: 40px 30px;
  text-align: center;
  position: relative;
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  backdrop-filter: blur(10px);
  opacity: 0;
  transform: translateY(40px) scale(0.95);
  animation: fadeInUpScale 0.8s ease forwards;
}

.timing-card:hover {
  transform: translateY(-8px) scale(1.02);
  background: rgba(214, 215, 224, 0.08);
  border-color: rgba(214, 215, 224, 0.3);
  box-shadow: 0 20px 60px rgba(6, 182, 212, 0.15);
}

.timing-card-featured {
  border: 2px solid #06b6d4;
  background: rgba(6, 182, 212, 0.05);
  position: relative;
  overflow: hidden;
}

.timing-card-featured::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(45deg, transparent 30%, rgba(6, 182, 212, 0.05) 50%, transparent 70%);
  opacity: 0;
  transition: opacity 0.4s ease;
  pointer-events: none;
}

.timing-card-featured:hover::before {
  opacity: 1;
}

.timing-badge {
  position: absolute;
  top: -10px;
  left: 50%;
  transform: translateX(-50%);
  background: linear-gradient(135deg, #06b6d4, #0891b2);
  color: #ffffff;
  padding: 6px 16px;
  border-radius: 20px;
  font-size: 12px;
  font-weight: 600;
  box-shadow: 0 4px 20px rgba(6, 182, 212, 0.3);
}

.timing-icon {
  width: 60px;
  height: 60px;
  margin: 0 auto 20px;
  color: #06b6d4;
  opacity: 0.8;
  transition: all 0.3s ease;
}

.timing-card:hover .timing-icon {
  transform: scale(1.1);
  opacity: 1;
}

.timing-icon svg {
  width: 100%;
  height: 100%;
}

.timing-number {
  font-size: 48px;
  font-weight: 800;
  color: #ffffff;
  margin: 0 0 16px 0;
  line-height: 1.2;
  background: linear-gradient(135deg, #06b6d4, #0891b2);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  padding-bottom: 2px;
}

.timing-title {
  font-size: 24px;
  font-weight: 700;
  color: #ffffff;
  margin: 0 0 16px 0;
  line-height: 1.3;
}

.timing-description {
  color: var(--neutral--300);
  font-size: 14px;
  line-height: 1.6;
  margin: 0 0 24px 0;
  opacity: 0.9;
}

.timing-features {
  list-style: none;
  padding: 0;
  margin: 0;
  text-align: left;
}

.timing-features li {
  color: var(--neutral--300);
  font-size: 14px;
  line-height: 1.6;
  margin: 0 0 8px 0;
  padding-left: 20px;
  position: relative;
  opacity: 0.8;
}

.timing-features li::before {
  content: '✓';
  position: absolute;
  left: 0;
  top: 0;
  color: #06b6d4;
  font-weight: 600;
}

.timing-note {
  margin-top: 40px;
  padding: 30px;
  background: rgba(214, 215, 224, 0.02);
  border: 1px solid rgba(214, 215, 224, 0.1);
  border-radius: 16px;
  backdrop-filter: blur(10px);
}

.timing-note .paragraph-large {
  color: var(--neutral--300);
  opacity: 0.8;
  margin: 0;
}

.timing-note strong {
  color: #06b6d4;
}

/* Animation delays for timing cards */
.timing-card:nth-child(1) { animation-delay: 0.1s; }
.timing-card:nth-child(2) { animation-delay: 0.3s; }
.timing-card:nth-child(3) { animation-delay: 0.5s; }

/* Bottom CTA Section */
.bottom-cta-section {
  padding: 100px 0;
  background: linear-gradient(135deg, #1e293b 0%, #0f172a 100%);
  position: relative;
}

.bottom-cta-content {
  text-align: center;
  max-width: 800px;
  margin: 0 auto;
}

.bottom-cta-content .section-tittle {
  margin-bottom: 40px;
}

/* Footer Enhancements */
.footer-bottom {
  margin-top: 40px;
  padding-top: 30px;
  border-top: 1px solid rgba(214, 215, 224, 0.1);
  text-align: center;
}

/* Responsive Design */
@media screen and (max-width: 991px) {
  .projects-grid {
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 25px;
  }
  
  .filter-tabs-wrapper {
    flex-direction: column;
    align-items: stretch;
  }
  
  .filter-tabs {
    order: 1;
    justify-content: center;
  }
  
  .projects-counter {
    order: 2;
    text-align: center;
  }
  
  .button-wrapper {
    flex-direction: column;
    align-items: center;
  }
  
  .breadcrumb-section {
    padding: 100px 0 30px;
  }
  
  /* Timing section responsive */
  .timing-section {
    padding: 80px 0;
  }
  
  .timing-grid {
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 25px;
    margin: 40px 0 30px 0;
  }
  
  .timing-card {
    padding: 30px 20px;
  }
  
  .timing-number {
    font-size: 40px;
  }
  
  .timing-title {
    font-size: 20px;
  }
  
  .timing-note {
    padding: 20px;
  }
}

@media screen and (max-width: 767px) {
  .projects-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  
  .filter-tabs {
    flex-direction: column;
    width: 100%;
    background: transparent;
    border: none;
    padding: 0;
    gap: 8px;
  }
  
  .filter-tab {
    width: 100%;
    text-align: center;
    border: 1px solid rgba(214, 215, 224, 0.2);
    background: rgba(214, 215, 224, 0.03);
  }
  
  .project-content {
    padding: 20px;
  }
  
  .project-title {
    font-size: 20px;
  }
  
  .projects-hero-section {
    padding: 20px 0 60px;
  }
  
  .projects-cta-section {
    padding: 60px 0;
  }
  
  .projects-cta-content .heading-style-h3 {
    font-size: 28px;
  }
  
  .breadcrumb-section {
    padding: 80px 0 20px;
  }
  
  .projects-intro-text {
    padding: 20px;
  }
  
  .bottom-cta-section {
    padding: 80px 0;
  }
  
  /* Timing section mobile */
  .timing-section {
    padding: 60px 0;
  }
  
  .timing-grid {
    grid-template-columns: 1fr;
    gap: 20px;
    margin: 30px 0 20px 0;
  }
  
  .timing-card {
    padding: 25px 20px;
  }
  
  .timing-number {
    font-size: 36px;
  }
  
  .timing-title {
    font-size: 18px;
  }
  
  .timing-description {
    font-size: 13px;
  }
  
  .timing-features li {
    font-size: 13px;
  }
  
  .timing-note {
    padding: 16px;
  }
  
  /* Disable complex hover effects on mobile */
  .card-project:hover {
    transform: none;
    box-shadow: none;
  }
  
  .timing-card:hover {
    transform: none;
    box-shadow: none;
  }
  
  .project-overlay {
    display: none;
  }
}

@media screen and (max-width: 479px) {
  .projects-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }
  
  .project-content {
    padding: 16px;
  }
  
  .project-title {
    font-size: 18px;
  }
  
  .project-description {
    font-size: 13px;
  }
  
  .filter-tab {
    padding: 10px 16px;
    font-size: 13px;
  }
  
  .button-wrapper {
    gap: 12px;
  }
  
  .button {
    padding: 12px 24px;
    font-size: 14px;
  }
}

/* Performance optimizations for reduced motion */
@media (prefers-reduced-motion: reduce) {
  .project-card,
  .card-project,
  .filter-tab,
  .project-overlay,
  .tumbnail-project {
    transition: none !important;
    animation: none !important;
  }
}

/* ===========================================
   ADVANCED VISUAL EFFECTS
   =========================================== */

/* Floating particles animation for hero section */
.hero-section::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-image: 
    radial-gradient(2px 2px at 20px 30px, rgba(6, 182, 212, 0.3), transparent),
    radial-gradient(2px 2px at 40px 70px, rgba(6, 182, 212, 0.2), transparent),
    radial-gradient(1px 1px at 90px 40px, rgba(255, 255, 255, 0.4), transparent),
    radial-gradient(1px 1px at 130px 80px, rgba(255, 255, 255, 0.3), transparent),
    radial-gradient(2px 2px at 160px 30px, rgba(6, 182, 212, 0.2), transparent);
  background-repeat: repeat;
  background-size: 200px 100px;
  animation: floatingParticles 20s linear infinite;
  pointer-events: none;
  z-index: 1;
}

@keyframes floatingParticles {
  0% {
    transform: translateY(0) translateX(0);
  }
  50% {
    transform: translateY(-20px) translateX(10px);
  }
  100% {
    transform: translateY(0) translateX(0);
  }
}

/* Glowing orbs for sections */
.section::before {
  content: '';
  position: absolute;
  top: -50px;
  right: -50px;
  width: 100px;
  height: 100px;
  background: radial-gradient(circle, rgba(6, 182, 212, 0.1) 0%, transparent 70%);
  border-radius: 50%;
  animation: orbFloat 8s ease-in-out infinite;
  pointer-events: none;
  z-index: 0;
}

.section:nth-child(even)::before {
  top: auto;
  bottom: -50px;
  left: -50px;
  right: auto;
  animation-delay: -4s;
}

@keyframes orbFloat {
  0%, 100% {
    transform: translateY(0) scale(1);
    opacity: 0.3;
  }
  50% {
    transform: translateY(-30px) scale(1.2);
    opacity: 0.6;
  }
}

/* Enhanced card glow effects */
.card-features,
.card-project,
.testimonial-card {
  position: relative;
  overflow: hidden;
}

.card-features::after,
.card-project::after,
.testimonial-card::after {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: linear-gradient(
    45deg,
    transparent 30%,
    rgba(6, 182, 212, 0.03) 50%,
    transparent 70%
  );
  opacity: 0;
  transition: all 0.8s ease;
  transform: rotate(-45deg);
  pointer-events: none;
}

.card-features:hover::after,
.card-project:hover::after,
.testimonial-card:hover::after {
  opacity: 1;
  transform: rotate(-45deg) translate(50%, 50%);
}

/* Typing animation for hero title */
.hero-typing-effect {
  position: relative;
  overflow: hidden;
}

.hero-typing-effect::after {
  content: '|';
  position: absolute;
  right: 0;
  top: 0;
  animation: blinkCursor 1s infinite;
  color: #06b6d4;
}

@keyframes blinkCursor {
  0%, 50% { opacity: 1; }
  51%, 100% { opacity: 0; }
}

/* Magnetic button effect */
.button-magnetic {
  transition: all 0.3s cubic-bezier(0.23, 1, 0.320, 1);
  cursor: pointer;
}

.button-magnetic:hover {
  transform: translateY(-3px) scale(1.02);
}

.button-magnetic::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(45deg, transparent, rgba(6, 182, 212, 0.1), transparent);
  opacity: 0;
  transition: opacity 0.3s ease;
}

.button-magnetic:hover::before {
  opacity: 1;
}

/* Scroll progress indicator */
.scroll-progress {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 3px;
  background: linear-gradient(90deg, #06b6d4, #0891b2, #0e7490);
  transform: translateX(-100%);
  transition: transform 0.1s ease;
  z-index: 9999;
}

/* Loading animation for images */
.image-loading {
  position: relative;
  overflow: hidden;
}

.image-loading::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
  animation: imageShimmer 2s ease-in-out infinite;
}

@keyframes imageShimmer {
  0% {
    left: -100%;
  }
  100% {
    left: 100%;
  }
}

/* Text reveal animation */
.text-reveal {
  position: relative;
  overflow: hidden;
}

.text-reveal::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: #06b6d4;
  transform: translateX(-100%);
  animation: textReveal 1.5s ease forwards;
}

@keyframes textReveal {
  0% {
    transform: translateX(-100%);
  }
  50% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(100%);
  }
}

/* Smooth section transitions */
.section-transition {
  position: relative;
  overflow: hidden;
}

.section-transition::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, rgba(6, 182, 212, 0.5), transparent);
  animation: sectionLine 3s ease-in-out infinite;
}

@keyframes sectionLine {
  0%, 100% {
    transform: translateX(-100%);
    opacity: 0;
  }
  50% {
    transform: translateX(0);
    opacity: 1;
  }
}

/* ===========================================
   NAVBAR ENHANCED STYLES
   =========================================== */

.navbar-main {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  background: transparent;
}

.navbar-main.scrolled {
  background: rgba(3, 7, 18, 0.85);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.3);
}

/* Architecture Mode Navbar */
.architecture-mode .navbar-main {
  background: rgba(13, 13, 13, 0.4);
  backdrop-filter: blur(10px);
}

.architecture-mode .navbar-main.scrolled {
  background: rgba(13, 13, 13, 0.95);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(201, 169, 98, 0.1);
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.4);
}

/* Architecture Mode - Button Styles Override */
.architecture-mode .button {
  background: linear-gradient(135deg, var(--arch-primary) 0%, var(--arch-primary-dark) 100%);
  color: #ffffff;
  border: none;
}

.architecture-mode .button:hover {
  box-shadow: 0 15px 40px rgba(139, 115, 85, 0.35);
  background: linear-gradient(135deg, var(--arch-primary-light) 0%, var(--arch-primary) 100%);
}

.architecture-mode .navbar-link {
  color: rgba(255, 255, 255, 0.8);
  transition: color 0.3s ease;
}

.architecture-mode .navbar-link:hover {
  color: #C9A962;
}

.architecture-mode .button.w-button {
  background: linear-gradient(135deg, #C9A962 0%, #8B7355 100%);
  color: #0D0D0D;
  border: none;
  font-weight: 600;
}

.architecture-mode .button.w-button:hover {
  background: linear-gradient(135deg, #d4b978 0%, #A69076 100%);
  transform: translateY(-2px);
  box-shadow: 0 4px 20px rgba(201, 169, 98, 0.3);
}

/* Fitness Mode Navbar */
.fitness-mode .navbar-main {
  background: rgba(10, 10, 15, 0.4);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}

.fitness-mode .navbar-main.scrolled {
  background: rgba(10, 10, 15, 0.95);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(0, 255, 135, 0.1);
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.4);
}

.fitness-mode .navbar-link:hover {
  color: #00FF87;
}

.fitness-mode .button {
  background: linear-gradient(135deg, #00FF87 0%, #00CC6A 100%) !important;
  color: #0A0A0F !important;
  border: none !important;
}

.fitness-mode .button.w-button {
  background: linear-gradient(135deg, #00FF87 0%, #00CC6A 100%);
  color: #0A0A0F;
  border: none;
  font-weight: 600;
}

.fitness-mode .button.w-button:hover {
  background: linear-gradient(135deg, #33FF9F 0%, #00E676 100%);
  transform: translateY(-2px);
  box-shadow: 0 4px 25px rgba(0, 255, 135, 0.4);
}

.fitness-mode .navbar-button-wrapper .button {
  background: linear-gradient(135deg, #00FF87 0%, #00CC6A 100%);
  color: #0A0A0F;
  box-shadow: 0 4px 15px rgba(0, 255, 135, 0.3);
}

.fitness-mode .navbar-button-wrapper .button:hover {
  background: linear-gradient(135deg, #33FF9F 0%, #00E676 100%);
  box-shadow: 0 4px 25px rgba(0, 255, 135, 0.5);
}

.architecture-mode .navbar-button-wrapper .button {
  background: linear-gradient(135deg, #C9A962 0%, #8B7355 100%);
  color: #0D0D0D;
  box-shadow: 0 4px 15px rgba(201, 169, 98, 0.3);
}

.architecture-mode .navbar-button-wrapper .button:hover {
  background: linear-gradient(135deg, #d4b978 0%, #A69076 100%);
  box-shadow: 0 6px 25px rgba(201, 169, 98, 0.4);
}

.architecture-mode .navbar-dropdown-menu {
  background: rgba(13, 13, 13, 0.98);
  border: 1px solid rgba(201, 169, 98, 0.15);
  backdrop-filter: blur(20px);
}

.architecture-mode .dropdown-item:hover {
  background: rgba(201, 169, 98, 0.1);
}

.architecture-mode .dropdown-item-icon svg {
  fill: #C9A962;
}

.architecture-mode .dropdown-item-text {
  color: rgba(255, 255, 255, 0.8);
}

.architecture-mode .dropdown-item:hover .dropdown-item-text {
  color: #C9A962;
}
.arch-hero-visual {
  display: block;
}

@media (max-width: 1023px) {
  .arch-hero-visual {
    display: none !important;
  }
}
.navbar-no-shadow {
  background: transparent !important;
}

.navbar-no-shadow-container {
  background: transparent !important;
  padding: 16px 0;
  transition: padding 0.3s ease;
}

.navbar-main.scrolled .navbar-no-shadow-container {
  padding: 12px 0;
}

.navbar-wrapper {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.navbar-brand {
  position: relative;
  z-index: 10;
  transition: transform 0.3s ease;
}

.navbar-brand:hover {
  transform: scale(1.02);
}

.navbar-brand .logo {
  height: 32px;
  width: auto;
  transition: filter 0.3s ease;
}

.navbar-brand:hover .logo {
  filter: drop-shadow(0 0 8px rgba(6, 182, 212, 0.5));
}

.navbar-menu-wrapper {
  display: flex;
  align-items: center;
}

.navbar-menu {
  display: flex;
  align-items: center;
  gap: 8px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.navbar-menu .list-item,
.navbar-menu li {
  margin: 0;
}

.navbar-link {
  position: relative;
  padding: 10px 16px;
  font-size: 14px;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.7);
  text-decoration: none;
  transition: all 0.3s ease;
  border-radius: 8px;
}

.navbar-link:hover {
  color: #ffffff;
  background: rgba(255, 255, 255, 0.05);
}

.navbar-link.w--current {
  color: #06b6d4;
  background: rgba(6, 182, 212, 0.1);
}

.navbar-link::after {
  content: '';
  position: absolute;
  bottom: 4px;
  left: 50%;
  transform: translateX(-50%);
  width: 0;
  height: 2px;
  background: linear-gradient(90deg, #06b6d4, #a855f7);
  transition: width 0.3s ease;
  border-radius: 2px;
}

.navbar-link:hover::after {
  width: 60%;
}

.navbar-link.w--current::after {
  width: 60%;
}

/* Navbar Button */
.navbar-button-wrapper {
  margin-left: 16px;
}

.navbar-button-wrapper .button {
  padding: 10px 20px;
  font-size: 14px;
  font-weight: 600;
  color: #ffffff;
  background: linear-gradient(135deg, #06b6d4, #0891b2);
  border: none;
  border-radius: 10px;
  cursor: pointer;
  transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  box-shadow: 0 4px 15px rgba(6, 182, 212, 0.3);
  text-decoration: none;
}

.navbar-button-wrapper .button:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 25px rgba(6, 182, 212, 0.4);
}

/* Secondary button in navbar (for contact page) */
.navbar-wrapper .button.secondary {
  padding: 10px 20px;
  font-size: 14px;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.9);
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 10px;
  cursor: pointer;
  transition: all 0.3s ease;
  text-decoration: none;
}

.navbar-wrapper .button.secondary:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.2);
  transform: translateY(-2px);
}

/* Mobile Menu Button */
.menu-button {
  display: none;
  padding: 8px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 8px;
  cursor: pointer;
  transition: all 0.3s ease;
}

.menu-button:hover {
  background: rgba(255, 255, 255, 0.1);
}

.menu-button .small-icon {
  width: 24px;
  height: 24px;
}

.menu-button .small-icon svg {
  width: 100%;
  height: 100%;
}

/* Navbar Responsive */
@media screen and (max-width: 991px) {
  .menu-button {
    display: flex;
    align-items: center;
    justify-content: center;
  }

  .navbar-menu-wrapper {
    position: fixed;
    top: 70px;
    left: 0;
    right: 0;
    background: rgba(3, 7, 18, 0.98);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    padding: 20px;
    transform: translateY(-120%);
    opacity: 0;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    pointer-events: none;
  }

  .navbar-menu-wrapper.w--open,
  .navbar-menu-wrapper.menu-open {
    transform: translateY(0);
    opacity: 1;
    pointer-events: auto;
  }

  .navbar-menu {
    flex-direction: column;
    align-items: stretch;
    gap: 4px;
  }

  .navbar-link {
    padding: 14px 16px;
    border-radius: 10px;
  }

  .navbar-link::after {
    display: none;
  }

  .navbar-button-wrapper {
    margin-left: 0;
    margin-top: 16px;
  }

  .navbar-button-wrapper .button {
    width: 100%;
    text-align: center;
    display: block;
  }

  .mobile-margin-top {
    margin-top: 8px;
    padding-top: 16px;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
  }
}

/* FAQ accordion enhanced animations */
.faq-accordion {
  position: relative;
}

.faq-accordion::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 0;
  background: linear-gradient(180deg, #06b6d4, #0891b2);
  transition: width 0.3s ease;
  border-radius: 0 4px 4px 0;
}

.faq-accordion:hover::before {
  width: 4px;
}

/* Testimonial card enhanced effects */
.testimonial-card {
  transform-style: preserve-3d;
  perspective: 1000px;
}

.testimonial-card:hover {
  transform: translateY(-10px) rotateX(5deg) scale(1.02);
}

.image-testimonials {
  transition: all 0.4s ease;
  border-radius: 50%;
}

.testimonial-card:hover .image-testimonials {
  transform: scale(1.1) rotate(5deg);
  box-shadow: 0 0 20px rgba(6, 182, 212, 0.3);
}

/* Project card 3D effects */
.card-project {
  transform-style: preserve-3d;
  perspective: 1000px;
}

.tumbnail-project {
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  border-radius: 12px;
  overflow: hidden;
}

.card-project:hover .tumbnail-project {
  transform: translateZ(20px) rotateY(5deg);
}

/* Performance optimization for reduced motion */
@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
  
  .hero-section::after,
  .section::before {
    display: none;
  }
}

/* ===========================================
   NEW SPECTACULAR SKILLS SECTION
   =========================================== */

.skills-section-new {
  position: relative;
  padding: 120px 0;
  overflow: hidden;
  background: #030712;
}

/* Animated Background */
.skills-bg-gradient {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: 
    radial-gradient(ellipse 60% 40% at 10% 20%, rgba(139, 92, 246, 0.12), transparent),
    radial-gradient(ellipse 50% 50% at 90% 80%, rgba(6, 182, 212, 0.1), transparent),
    linear-gradient(180deg, #030712 0%, #0f172a 50%, #030712 100%);
  z-index: 0;
}

.skills-grid-pattern {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-image: 
    linear-gradient(rgba(139, 92, 246, 0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(139, 92, 246, 0.03) 1px, transparent 1px);
  background-size: 80px 80px;
  mask-image: radial-gradient(ellipse 70% 50% at 50% 50%, black, transparent);
  animation: gridMove 25s linear infinite;
  z-index: 1;
}

/* Floating Orbs */
.skills-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(100px);
  opacity: 0.5;
  z-index: 1;
  animation: orbFloat 10s ease-in-out infinite;
}

.skills-orb-1 {
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(139, 92, 246, 0.4), transparent 70%);
  top: -10%;
  left: -5%;
  animation-delay: 0s;
}

.skills-orb-2 {
  width: 350px;
  height: 350px;
  background: radial-gradient(circle, rgba(6, 182, 212, 0.3), transparent 70%);
  bottom: -5%;
  right: -5%;
  animation-delay: -5s;
}

/* Floating Shapes */
.skills-shapes {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 2;
  pointer-events: none;
}

.skills-shape {
  position: absolute;
  border: 1px solid rgba(139, 92, 246, 0.2);
  animation: shapeFloat 12s ease-in-out infinite;
}

.skills-shape-1 {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  top: 20%;
  right: 10%;
  animation-delay: 0s;
}

.skills-shape-2 {
  width: 80px;
  height: 80px;
  border-radius: 20px;
  bottom: 30%;
  left: 5%;
  transform: rotate(45deg);
  animation-delay: -4s;
}

.skills-shape-3 {
  width: 40px;
  height: 40px;
  border-radius: 8px;
  top: 60%;
  right: 20%;
  animation-delay: -8s;
}

/* Content Wrapper */
.skills-content-wrapper {
  position: relative;
  z-index: 10;
}

/* Skills Header */
.skills-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 40px;
  margin-bottom: 80px;
  flex-wrap: wrap;
}

.skills-header-content {
  max-width: 600px;
}

.skills-badge-animated {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 10px 20px;
  background: rgba(139, 92, 246, 0.1);
  border: 1px solid rgba(139, 92, 246, 0.2);
  border-radius: 50px;
  margin-bottom: 24px;
  animation: badgeSlideIn 0.8s ease-out forwards;
  opacity: 0;
  transform: translateY(20px);
}

.skills-badge-icon {
  width: 16px;
  height: 16px;
  color: #8b5cf6;
}

.skills-badge-animated span:not(.skills-badge-icon) {
  font-size: 14px;
  font-weight: 500;
  color: #8b5cf6;
  letter-spacing: 0.5px;
}

.skills-title {
  font-size: clamp(32px, 4vw, 48px);
  font-weight: 800;
  line-height: 1.2;
  color: #ffffff;
  margin: 0 0 20px 0;
}

.skills-title-line {
  display: block;
}

.skills-title-gradient {
  background: linear-gradient(135deg, #8b5cf6, #06b6d4, #8b5cf6);
  background-size: 200% 200%;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  animation: gradientFlow 4s ease infinite;
}

.skills-description {
  font-size: 18px;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.6);
  margin: 0;
}

.skills-description strong {
  color: #8b5cf6;
  font-weight: 600;
}

.skills-cta-btn {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 18px 32px;
  background: linear-gradient(135deg, #8b5cf6, #7c3aed);
  color: #ffffff;
  font-size: 16px;
  font-weight: 600;
  text-decoration: none;
  border-radius: 14px;
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  box-shadow: 0 4px 20px rgba(139, 92, 246, 0.3);
  flex-shrink: 0;
  margin-top: 24px;
}

.skills-cta-btn:hover {
  transform: translateY(-4px) scale(1.02);
  box-shadow: 0 12px 40px rgba(139, 92, 246, 0.4);
}

.skills-cta-icon {
  width: 20px;
  height: 20px;
  transition: transform 0.3s ease;
}

.skills-cta-icon svg {
  width: 100%;
  height: 100%;
}

.skills-cta-btn:hover .skills-cta-icon {
  transform: translate(4px, -4px);
}

/* Skills Grid */
.skills-grid-new {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-bottom: 60px;
}

/* Skill Card */
.skill-card-new {
  position: relative;
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 24px;
  padding: 32px;
  overflow: hidden;
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  opacity: 0;
  transform: translateY(40px);
  animation: skillCardReveal 0.8s ease forwards;
}

.skill-card-new[data-delay="0"] { animation-delay: 0.1s; }
.skill-card-new[data-delay="1"] { animation-delay: 0.2s; }
.skill-card-new[data-delay="2"] { animation-delay: 0.3s; }
.skill-card-new[data-delay="3"] { animation-delay: 0.4s; }
.skill-card-new[data-delay="4"] { animation-delay: 0.5s; }
.skill-card-new[data-delay="5"] { animation-delay: 0.6s; }

@keyframes skillCardReveal {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.skill-card-new:hover {
  transform: translateY(-8px) scale(1.02);
  border-color: rgba(255, 255, 255, 0.1);
  background: rgba(255, 255, 255, 0.04);
}

.skill-card-glow {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 200px;
  background: radial-gradient(ellipse at top, rgba(6, 182, 212, 0.1), transparent 70%);
  opacity: 0;
  transition: opacity 0.4s ease;
  pointer-events: none;
}

.skill-card-new:hover .skill-card-glow {
  opacity: 1;
}

.skill-card-content {
  position: relative;
  z-index: 2;
}

/* Skill Icon */
.skill-icon-wrapper {
  position: relative;
  width: 56px;
  height: 56px;
  margin-bottom: 24px;
}

.skill-icon {
  width: 56px;
  height: 56px;
  background: linear-gradient(135deg, rgba(6, 182, 212, 0.2), rgba(6, 182, 212, 0.05));
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #06b6d4;
  transition: all 0.3s ease;
}

.skill-icon svg {
  width: 28px;
  height: 28px;
}

.skill-icon-ring {
  position: absolute;
  top: -4px;
  left: -4px;
  right: -4px;
  bottom: -4px;
  border: 2px solid rgba(6, 182, 212, 0.2);
  border-radius: 20px;
  opacity: 0;
  transform: scale(0.8);
  transition: all 0.3s ease;
}

.skill-card-new:hover .skill-icon-ring {
  opacity: 1;
  transform: scale(1);
}

.skill-card-new:hover .skill-icon {
  transform: scale(1.1) rotate(5deg);
  box-shadow: 0 8px 24px rgba(6, 182, 212, 0.3);
}

/* Color variants */
.skill-icon-purple {
  background: linear-gradient(135deg, rgba(139, 92, 246, 0.2), rgba(139, 92, 246, 0.05));
  color: #8b5cf6;
}
.skill-icon-ring-purple { border-color: rgba(139, 92, 246, 0.2); }
.skill-card-new:has(.skill-icon-purple):hover .skill-icon { box-shadow: 0 8px 24px rgba(139, 92, 246, 0.3); }
.skill-card-new:has(.skill-icon-purple) .skill-card-glow { background: radial-gradient(ellipse at top, rgba(139, 92, 246, 0.1), transparent 70%); }

.skill-icon-green {
  background: linear-gradient(135deg, rgba(34, 197, 94, 0.2), rgba(34, 197, 94, 0.05));
  color: #22c55e;
}
.skill-icon-ring-green { border-color: rgba(34, 197, 94, 0.2); }
.skill-card-new:has(.skill-icon-green):hover .skill-icon { box-shadow: 0 8px 24px rgba(34, 197, 94, 0.3); }
.skill-card-new:has(.skill-icon-green) .skill-card-glow { background: radial-gradient(ellipse at top, rgba(34, 197, 94, 0.1), transparent 70%); }

.skill-icon-orange {
  background: linear-gradient(135deg, rgba(249, 115, 22, 0.2), rgba(249, 115, 22, 0.05));
  color: #f97316;
}
.skill-icon-ring-orange { border-color: rgba(249, 115, 22, 0.2); }
.skill-card-new:has(.skill-icon-orange):hover .skill-icon { box-shadow: 0 8px 24px rgba(249, 115, 22, 0.3); }
.skill-card-new:has(.skill-icon-orange) .skill-card-glow { background: radial-gradient(ellipse at top, rgba(249, 115, 22, 0.1), transparent 70%); }

.skill-icon-pink {
  background: linear-gradient(135deg, rgba(236, 72, 153, 0.2), rgba(236, 72, 153, 0.05));
  color: #ec4899;
}
.skill-icon-ring-pink { border-color: rgba(236, 72, 153, 0.2); }
.skill-card-new:has(.skill-icon-pink):hover .skill-icon { box-shadow: 0 8px 24px rgba(236, 72, 153, 0.3); }
.skill-card-new:has(.skill-icon-pink) .skill-card-glow { background: radial-gradient(ellipse at top, rgba(236, 72, 153, 0.1), transparent 70%); }

.skill-icon-blue {
  background: linear-gradient(135deg, rgba(59, 130, 246, 0.2), rgba(59, 130, 246, 0.05));
  color: #3b82f6;
}
.skill-icon-ring-blue { border-color: rgba(59, 130, 246, 0.2); }
.skill-card-new:has(.skill-icon-blue):hover .skill-icon { box-shadow: 0 8px 24px rgba(59, 130, 246, 0.3); }
.skill-card-new:has(.skill-icon-blue) .skill-card-glow { background: radial-gradient(ellipse at top, rgba(59, 130, 246, 0.1), transparent 70%); }

.skill-card-title {
  font-size: 20px;
  font-weight: 700;
  color: #ffffff;
  margin: 0 0 12px 0;
  line-height: 1.3;
}

.skill-card-desc {
  font-size: 15px;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.5);
  margin: 0;
}

.skill-card-line {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, #06b6d4, transparent);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s ease;
}

.skill-card-new:hover .skill-card-line {
  transform: scaleX(1);
}

.skill-card-line-purple { background: linear-gradient(90deg, #8b5cf6, transparent); }
.skill-card-line-green { background: linear-gradient(90deg, #22c55e, transparent); }
.skill-card-line-orange { background: linear-gradient(90deg, #f97316, transparent); }
.skill-card-line-pink { background: linear-gradient(90deg, #ec4899, transparent); }
.skill-card-line-blue { background: linear-gradient(90deg, #3b82f6, transparent); }

/* Floating Stats */
.skills-floating-stats {
  display: flex;
  justify-content: center;
  gap: 40px;
  flex-wrap: wrap;
}

.skills-stat-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  padding: 24px 40px;
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 16px;
  transition: all 0.3s ease;
}

.skills-stat-card:hover {
  background: rgba(255, 255, 255, 0.04);
  transform: translateY(-4px);
}

.skills-stat-number {
  font-size: 32px;
  font-weight: 800;
  line-height: 1.3;
  background: linear-gradient(135deg, #8b5cf6, #06b6d4);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  padding-bottom: 2px;
}

.skills-stat-label {
  font-size: 14px;
  line-height: 1.4;
  color: rgba(255, 255, 255, 0.5);
  font-weight: 500;
}

/* Skills Section Responsive */
@media screen and (max-width: 1200px) {
  .skills-grid-new {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media screen and (max-width: 991px) {
  .skills-section-new {
    padding: 100px 0;
  }
  
  .skills-header {
    flex-direction: column;
    text-align: center;
    align-items: center;
  }
  
  .skills-header-content {
    max-width: 100%;
  }
  
  .skills-cta-btn {
    margin-top: 0;
  }
}

@media screen and (max-width: 767px) {
  .skills-section-new {
    padding: 80px 0;
  }
  
  .skills-grid-new {
    grid-template-columns: 1fr;
    gap: 16px;
  }
  
  .skill-card-new {
    padding: 24px;
  }
  
  .skills-floating-stats {
    gap: 16px;
  }
  
  .skills-stat-card {
    padding: 20px 30px;
  }
  
  .skills-orb-1,
  .skills-orb-2 {
    display: none;
  }
}

/* ===========================================
   NEW SPECTACULAR EXPERIENCE SECTION
   =========================================== */

.experience-section-new {
  position: relative;
  padding: 120px 0;
  overflow: hidden;
  background: #030712;
}

/* Animated Background */
.experience-bg-gradient {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: 
    radial-gradient(ellipse 50% 40% at 80% 20%, rgba(6, 182, 212, 0.12), transparent),
    radial-gradient(ellipse 60% 50% at 20% 80%, rgba(34, 211, 238, 0.08), transparent),
    linear-gradient(180deg, #030712 0%, #0f172a 50%, #030712 100%);
  z-index: 0;
}

.experience-grid-pattern {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-image: 
    linear-gradient(rgba(6, 182, 212, 0.02) 1px, transparent 1px),
    linear-gradient(90deg, rgba(6, 182, 212, 0.02) 1px, transparent 1px);
  background-size: 60px 60px;
  mask-image: radial-gradient(ellipse 80% 60% at 50% 50%, black, transparent);
  z-index: 1;
}

/* Floating Orbs */
.experience-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(100px);
  opacity: 0.4;
  z-index: 1;
  animation: orbFloat 12s ease-in-out infinite;
}

.experience-orb-1 {
  width: 350px;
  height: 350px;
  background: radial-gradient(circle, rgba(6, 182, 212, 0.4), transparent 70%);
  top: 10%;
  right: -5%;
  animation-delay: 0s;
}

.experience-orb-2 {
  width: 300px;
  height: 300px;
  background: radial-gradient(circle, rgba(34, 211, 238, 0.3), transparent 70%);
  bottom: 10%;
  left: -5%;
  animation-delay: -6s;
}

/* Content Wrapper */
.experience-content-wrapper {
  position: relative;
  z-index: 10;
}

/* Experience Header */
.experience-header {
  text-align: center;
  max-width: 800px;
  margin: 0 auto 80px;
}

.experience-badge-animated {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 10px 20px;
  background: rgba(6, 182, 212, 0.1);
  border: 1px solid rgba(6, 182, 212, 0.2);
  border-radius: 50px;
  margin-bottom: 24px;
  animation: badgeSlideIn 0.8s ease-out forwards;
  opacity: 0;
  transform: translateY(20px);
}

.experience-badge-icon {
  width: 16px;
  height: 16px;
  color: #06b6d4;
}

.experience-badge-animated span:not(.experience-badge-icon) {
  font-size: 14px;
  font-weight: 500;
  color: #06b6d4;
  letter-spacing: 0.5px;
}

.experience-title {
  font-size: clamp(32px, 4vw, 48px);
  font-weight: 800;
  line-height: 1.2;
  color: #ffffff;
  margin: 0 0 20px 0;
}

.experience-title-line {
  display: block;
}

.experience-title-gradient {
  background: linear-gradient(135deg, #06b6d4, #22d3ee, #06b6d4);
  background-size: 200% 200%;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  animation: gradientFlow 4s ease infinite;
}

.experience-description {
  font-size: 18px;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.6);
  margin: 0;
}

.experience-description strong {
  color: #06b6d4;
  font-weight: 600;
}

/* Experience Main Grid */
.experience-main-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

/* Experience Visual */
.experience-visual {
  position: relative;
}

.experience-visual-container {
  position: relative;
  perspective: 1500px;
}

/* Browser Mockup */
.experience-browser {
  background: linear-gradient(145deg, #1e293b, #0f172a);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 16px;
  overflow: hidden;
  transform: rotateY(8deg) rotateX(-5deg);
  transition: transform 0.5s ease;
  box-shadow: 
    0 40px 80px rgba(0, 0, 0, 0.4),
    -20px 20px 60px rgba(6, 182, 212, 0.05);
  animation: browserFloat 6s ease-in-out infinite;
}

@keyframes browserFloat {
  0%, 100% {
    transform: rotateY(8deg) rotateX(-5deg) translateY(0);
  }
  50% {
    transform: rotateY(5deg) rotateX(-3deg) translateY(-10px);
  }
}

.experience-browser:hover {
  transform: rotateY(0deg) rotateX(0deg) scale(1.02);
}

.browser-header {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 12px 16px;
  background: rgba(15, 23, 42, 0.8);
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

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

.browser-url {
  flex: 1;
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 6px 12px;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 6px;
  font-size: 12px;
  color: rgba(255, 255, 255, 0.6);
}

.browser-lock {
  color: #22c55e;
}

.browser-content {
  padding: 20px;
  min-height: 280px;
  background: linear-gradient(180deg, #0f172a, #1e293b);
}

/* Preview Elements */
.preview-hero {
  margin-bottom: 20px;
}

.preview-nav {
  height: 8px;
  background: linear-gradient(90deg, rgba(255, 255, 255, 0.1), rgba(255, 255, 255, 0.05), rgba(255, 255, 255, 0.1));
  border-radius: 4px;
  margin-bottom: 30px;
  animation: shimmer 2s infinite;
}

.preview-title {
  height: 20px;
  width: 70%;
  background: linear-gradient(90deg, rgba(6, 182, 212, 0.3), rgba(6, 182, 212, 0.1));
  border-radius: 4px;
  margin-bottom: 12px;
  animation: shimmer 2s infinite 0.2s;
}

.preview-subtitle {
  height: 12px;
  width: 50%;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 4px;
  margin-bottom: 16px;
  animation: shimmer 2s infinite 0.4s;
}

.preview-btn {
  height: 28px;
  width: 100px;
  background: linear-gradient(135deg, #06b6d4, #0891b2);
  border-radius: 6px;
  animation: shimmer 2s infinite 0.6s;
}

.preview-section {
  padding-top: 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.preview-cards {
  display: flex;
  gap: 12px;
}

.preview-card {
  flex: 1;
  height: 60px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.05);
  border-radius: 8px;
  animation: shimmer 2s infinite 0.8s;
}

@keyframes shimmer {
  0%, 100% {
    opacity: 1;
  }
  50% {
    opacity: 0.6;
  }
}

/* Float Tags */
.experience-float-tag {
  position: absolute;
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 10px 16px;
  background: rgba(15, 23, 42, 0.95);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 50px;
  font-size: 13px;
  font-weight: 600;
  color: #ffffff;
  backdrop-filter: blur(20px);
  z-index: 20;
  animation: techBadgeFloat 5s ease-in-out infinite;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.3);
}

.float-tag-dot {
  width: 8px;
  height: 8px;
  background: #f97316;
  border-radius: 50%;
  animation: dotPulse 2s ease-in-out infinite;
}

.float-tag-dot-blue { background: #3b82f6; }
.float-tag-dot-yellow { background: #eab308; }

.experience-float-tag-1 {
  top: -10px;
  left: -20px;
  animation-delay: 0s;
}

.experience-float-tag-2 {
  top: 40%;
  right: -30px;
  animation-delay: -1.5s;
}

.experience-float-tag-3 {
  bottom: 20%;
  left: -30px;
  animation-delay: -3s;
}

/* Performance Indicator */
.experience-performance {
  position: absolute;
  bottom: -20px;
  right: 20px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  padding: 16px;
  background: rgba(15, 23, 42, 0.95);
  border: 1px solid rgba(34, 197, 94, 0.3);
  border-radius: 16px;
  backdrop-filter: blur(20px);
  z-index: 20;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
}

.perf-circle {
  position: relative;
  width: 60px;
  height: 60px;
}

.perf-circle svg {
  width: 100%;
  height: 100%;
  transform: rotate(-90deg);
}

.perf-bg {
  fill: none;
  stroke: rgba(255, 255, 255, 0.1);
  stroke-width: 6;
}

.perf-progress {
  fill: none;
  stroke: #22c55e;
  stroke-width: 6;
  stroke-linecap: round;
  stroke-dasharray: 283;
  stroke-dashoffset: 3;
  animation: perfProgress 2s ease-out forwards;
}

@keyframes perfProgress {
  from {
    stroke-dashoffset: 283;
  }
  to {
    stroke-dashoffset: 3;
  }
}

.perf-number {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-size: 18px;
  font-weight: 800;
  color: #22c55e;
}

.perf-label {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.5);
  font-weight: 500;
}

/* Experience Cards Column */
.experience-cards-column {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.experience-card-new {
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 24px;
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 16px;
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  cursor: pointer;
  opacity: 0;
  transform: translateX(40px);
  animation: expCardSlide 0.6s ease forwards;
}

.experience-card-new:nth-child(1) { animation-delay: 0.1s; }
.experience-card-new:nth-child(2) { animation-delay: 0.2s; }
.experience-card-new:nth-child(3) { animation-delay: 0.3s; }
.experience-card-new:nth-child(4) { animation-delay: 0.4s; }
.experience-card-new:nth-child(5) { animation-delay: 0.5s; }

@keyframes expCardSlide {
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

.experience-card-new:hover {
  background: rgba(6, 182, 212, 0.05);
  border-color: rgba(6, 182, 212, 0.2);
  transform: translateX(8px);
}

.experience-card-number {
  font-size: 32px;
  font-weight: 800;
  line-height: 1.3;
  background: linear-gradient(135deg, #06b6d4, #22d3ee);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  min-width: 60px;
  padding-bottom: 2px;
  transition: all 0.3s ease;
}

.experience-card-new:hover .experience-card-number {
  transform: scale(1.1);
}

.experience-card-content {
  flex: 1;
}

.experience-card-title {
  font-size: 18px;
  font-weight: 700;
  color: #ffffff;
  margin: 0 0 6px 0;
}

.experience-card-desc {
  font-size: 14px;
  line-height: 1.5;
  color: rgba(255, 255, 255, 0.5);
  margin: 0;
}

.experience-card-arrow {
  width: 32px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(6, 182, 212, 0.1);
  border-radius: 8px;
  color: #06b6d4;
  opacity: 0;
  transform: translateX(-10px);
  transition: all 0.3s ease;
}

.experience-card-arrow svg {
  width: 16px;
  height: 16px;
}

.experience-card-new:hover .experience-card-arrow {
  opacity: 1;
  transform: translateX(0);
}

/* Experience Section Responsive */
@media screen and (max-width: 1200px) {
  .experience-main-grid {
    gap: 40px;
  }
}

@media screen and (max-width: 991px) {
  .experience-section-new {
    padding: 100px 0;
  }
  
  .experience-main-grid {
    grid-template-columns: 1fr;
    gap: 60px;
  }
  
  .experience-visual {
    order: 1;
  }
  
  .experience-cards-column {
    order: 2;
  }
  
  .experience-browser {
    transform: rotateY(0deg) rotateX(0deg);
    max-width: 500px;
    margin: 0 auto;
  }
  
  .experience-float-tag-1 { left: 0; }
  .experience-float-tag-2 { right: 0; }
  .experience-float-tag-3 { left: 0; }
}

@media screen and (max-width: 767px) {
  .experience-section-new {
    padding: 80px 0;
  }
  
  .experience-header {
    margin-bottom: 60px;
  }
  
  .experience-float-tag {
    display: none;
  }
  
  .experience-performance {
    display: none;
  }
  
  .experience-browser {
    animation: none;
  }
  
  .browser-content {
    min-height: 200px;
  }
  
  .experience-card-new {
    padding: 20px;
  }
  
  .experience-card-number {
    font-size: 24px;
    min-width: 45px;
  }
  
  .experience-card-title {
    font-size: 16px;
  }
  
  .experience-orb-1,
  .experience-orb-2 {
    display: none;
  }
}

/* Reduced motion */
@media (prefers-reduced-motion: reduce) {
  .skills-section-new *,
  .experience-section-new * {
    animation: none !important;
    transition: none !important;
  }
  
  .skill-card-new,
  .experience-card-new {
    opacity: 1;
    transform: none;
  }
  
  .skills-badge-animated,
  .experience-badge-animated {
    opacity: 1;
    transform: none;
  }
}

/* ===========================================
   NEW SPECTACULAR PROCESS SECTION
   =========================================== */

.process-section-new {
  position: relative;
  padding: 120px 0;
  overflow: hidden;
  background: #030712;
}

/* Animated Background */
.process-bg-gradient {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: 
    radial-gradient(ellipse 50% 40% at 30% 20%, rgba(6, 182, 212, 0.12), transparent),
    radial-gradient(ellipse 60% 50% at 70% 80%, rgba(139, 92, 246, 0.08), transparent),
    linear-gradient(180deg, #030712 0%, #0f172a 50%, #030712 100%);
  z-index: 0;
}

.process-grid-pattern {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-image: 
    linear-gradient(rgba(6, 182, 212, 0.02) 1px, transparent 1px),
    linear-gradient(90deg, rgba(6, 182, 212, 0.02) 1px, transparent 1px);
  background-size: 70px 70px;
  mask-image: radial-gradient(ellipse 70% 50% at 50% 50%, black, transparent);
  z-index: 1;
}

/* Floating Orbs */
.process-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(100px);
  opacity: 0.4;
  z-index: 1;
  animation: orbFloat 12s ease-in-out infinite;
}

.process-orb-1 {
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(6, 182, 212, 0.35), transparent 70%);
  top: -5%;
  left: 10%;
}

.process-orb-2 {
  width: 350px;
  height: 350px;
  background: radial-gradient(circle, rgba(139, 92, 246, 0.3), transparent 70%);
  bottom: 10%;
  right: 5%;
  animation-delay: -6s;
}

/* Floating Shapes */
.process-shapes {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 2;
  pointer-events: none;
}

.process-shape {
  position: absolute;
  border: 1px solid rgba(6, 182, 212, 0.15);
  animation: shapeFloat 15s ease-in-out infinite;
}

.process-shape-1 {
  width: 70px;
  height: 70px;
  border-radius: 50%;
  top: 15%;
  right: 15%;
}

.process-shape-2 {
  width: 50px;
  height: 50px;
  border-radius: 12px;
  bottom: 25%;
  left: 8%;
  transform: rotate(45deg);
  animation-delay: -5s;
}

.process-shape-3 {
  width: 40px;
  height: 40px;
  border-radius: 8px;
  top: 60%;
  right: 25%;
  animation-delay: -10s;
}

/* Content Wrapper */
.process-content-wrapper {
  position: relative;
  z-index: 10;
}

/* Process Header */
.process-header {
  text-align: center;
  max-width: 700px;
  margin: 0 auto 80px;
}

.process-badge-animated {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 10px 20px;
  background: rgba(6, 182, 212, 0.1);
  border: 1px solid rgba(6, 182, 212, 0.2);
  border-radius: 50px;
  margin-bottom: 24px;
  animation: badgeSlideIn 0.8s ease-out forwards;
  opacity: 0;
  transform: translateY(20px);
}

.process-badge-icon {
  width: 16px;
  height: 16px;
  color: #06b6d4;
}

.process-badge-animated span:not(.process-badge-icon) {
  font-size: 14px;
  font-weight: 500;
  color: #06b6d4;
  letter-spacing: 0.5px;
}

.process-title {
  font-size: clamp(32px, 4vw, 48px);
  font-weight: 800;
  line-height: 1.2;
  color: #ffffff;
  margin: 0 0 20px 0;
}

.process-title-line {
  display: block;
}

.process-title-gradient {
  background: linear-gradient(135deg, #06b6d4, #8b5cf6, #06b6d4);
  background-size: 200% 200%;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  animation: gradientFlow 4s ease infinite;
}

.process-description {
  font-size: 18px;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.6);
  margin: 0;
}

.process-description strong {
  color: #06b6d4;
  font-weight: 600;
}

/* Process Timeline Desktop */
.process-timeline-desktop {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 40px;
  max-width: 900px;
  margin: 0 auto;
}

.process-row {
  display: flex;
  align-items: flex-start;
  justify-content: center;
  gap: 24px;
  width: 100%;
}

.process-arrow-horizontal {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  color: rgba(255, 255, 255, 0.3);
  flex-shrink: 0;
  margin-top: 80px;
  animation: arrowPulse 2s ease-in-out infinite;
}

.process-arrow-horizontal svg {
  width: 32px;
  height: 32px;
}

@keyframes arrowPulse {
  0%, 100% { transform: translateX(0); opacity: 0.3; }
  50% { transform: translateX(6px); opacity: 0.8; }
}

/* Waiting Center */
.process-waiting-center {
  display: flex;
  justify-content: center;
  width: 100%;
}

/* Process Step */
.process-step-new {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  opacity: 0;
  transform: translateY(30px);
  animation: stepReveal 0.6s ease forwards;
}

.process-step-new[data-step="1"] { animation-delay: 0.2s; }
.process-step-new[data-step="2"] { animation-delay: 0.4s; }
.process-step-new[data-step="3"] { animation-delay: 0.6s; }
.process-step-new[data-step="4"] { animation-delay: 0.8s; }

@keyframes stepReveal {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Step Connector */
.step-connector {
  position: relative;
  z-index: 5;
  margin-bottom: 24px;
}

.step-dot {
  position: relative;
  width: 60px;
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.step-dot-inner {
  width: 20px;
  height: 20px;
  background: linear-gradient(135deg, #06b6d4, #0891b2);
  border-radius: 50%;
  z-index: 2;
  box-shadow: 0 0 20px rgba(6, 182, 212, 0.5);
}

.step-dot-pulse {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 60px;
  height: 60px;
  border: 2px solid rgba(6, 182, 212, 0.3);
  border-radius: 50%;
  animation: dotPulseRing 2s ease-in-out infinite;
}

@keyframes dotPulseRing {
  0%, 100% {
    transform: translate(-50%, -50%) scale(1);
    opacity: 1;
  }
  50% {
    transform: translate(-50%, -50%) scale(1.3);
    opacity: 0;
  }
}

/* Color variants */
.step-dot-purple { background: linear-gradient(135deg, #8b5cf6, #7c3aed); box-shadow: 0 0 20px rgba(139, 92, 246, 0.5); }
.step-dot-pulse-purple { border-color: rgba(139, 92, 246, 0.3); }
.step-dot-green { background: linear-gradient(135deg, #22c55e, #16a34a); box-shadow: 0 0 20px rgba(34, 197, 94, 0.5); }
.step-dot-pulse-green { border-color: rgba(34, 197, 94, 0.3); }
.step-dot-gold { background: linear-gradient(135deg, #eab308, #ca8a04); box-shadow: 0 0 20px rgba(234, 179, 8, 0.5); }
.step-dot-pulse-gold { border-color: rgba(234, 179, 8, 0.3); }

/* Step Card */
.step-card-new {
  position: relative;
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 24px;
  padding: 32px 24px;
  text-align: center;
  width: 100%;
  overflow: hidden;
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.step-card-new:hover {
  transform: translateY(-8px);
  background: rgba(255, 255, 255, 0.04);
  border-color: rgba(255, 255, 255, 0.1);
}

.step-card-glow {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 150px;
  background: radial-gradient(ellipse at top, rgba(6, 182, 212, 0.1), transparent 70%);
  opacity: 0;
  transition: opacity 0.4s ease;
  pointer-events: none;
}

.step-card-new:hover .step-card-glow { opacity: 1; }
.step-card-glow-purple { background: radial-gradient(ellipse at top, rgba(139, 92, 246, 0.1), transparent 70%); }
.step-card-glow-green { background: radial-gradient(ellipse at top, rgba(34, 197, 94, 0.1), transparent 70%); }
.step-card-glow-gold { background: radial-gradient(ellipse at top, rgba(234, 179, 8, 0.1), transparent 70%); }

.step-number-badge {
  position: absolute;
  top: 16px;
  right: 16px;
  font-size: 12px;
  font-weight: 700;
  color: #06b6d4;
  opacity: 0.5;
}

.step-number-purple { color: #8b5cf6; }
.step-number-green { color: #22c55e; }
.step-number-gold { color: #eab308; }

.step-icon-new {
  width: 56px;
  height: 56px;
  background: linear-gradient(135deg, rgba(6, 182, 212, 0.2), rgba(6, 182, 212, 0.05));
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #06b6d4;
  margin: 0 auto 20px;
  transition: all 0.3s ease;
}

.step-icon-new svg {
  width: 28px;
  height: 28px;
}

.step-card-new:hover .step-icon-new {
  transform: scale(1.1) rotate(5deg);
  box-shadow: 0 8px 24px rgba(6, 182, 212, 0.3);
}

.step-icon-purple { background: linear-gradient(135deg, rgba(139, 92, 246, 0.2), rgba(139, 92, 246, 0.05)); color: #8b5cf6; }
.step-card-new:hover .step-icon-purple { box-shadow: 0 8px 24px rgba(139, 92, 246, 0.3); }
.step-icon-green { background: linear-gradient(135deg, rgba(34, 197, 94, 0.2), rgba(34, 197, 94, 0.05)); color: #22c55e; }
.step-card-new:hover .step-icon-green { box-shadow: 0 8px 24px rgba(34, 197, 94, 0.3); }
.step-icon-gold { background: linear-gradient(135deg, rgba(234, 179, 8, 0.2), rgba(234, 179, 8, 0.05)); color: #eab308; }
.step-card-new:hover .step-icon-gold { box-shadow: 0 8px 24px rgba(234, 179, 8, 0.3); }

.step-title-new {
  font-size: 18px;
  font-weight: 700;
  color: #ffffff;
  margin: 0 0 12px 0;
}

.step-desc-new {
  font-size: 14px;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.5);
  margin: 0;
}

.step-card-line {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, #06b6d4, transparent);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s ease;
}

.step-card-new:hover .step-card-line { transform: scaleX(1); }
.step-card-line-purple { background: linear-gradient(90deg, #8b5cf6, transparent); }
.step-card-line-green { background: linear-gradient(90deg, #22c55e, transparent); }
.step-card-line-gold { background: linear-gradient(90deg, #eab308, transparent); }

/* Step Card Width Fix */
.process-row .process-step-new {
  flex: 1;
  max-width: 380px;
}

/* Process Waiting */
.process-waiting {
  grid-column: 1 / -1;
  display: flex;
  justify-content: center;
  margin: 20px 0;
}

.waiting-badge {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 16px 32px;
  background: rgba(6, 182, 212, 0.05);
  border: 1px dashed rgba(6, 182, 212, 0.3);
  border-radius: 100px;
  animation: waitingPulse 3s ease-in-out infinite;
}

@keyframes waitingPulse {
  0%, 100% { border-color: rgba(6, 182, 212, 0.3); }
  50% { border-color: rgba(6, 182, 212, 0.6); }
}

.waiting-icon {
  width: 32px;
  height: 32px;
  color: #06b6d4;
}

.waiting-icon svg {
  width: 100%;
  height: 100%;
}

.waiting-content {
  display: flex;
  flex-direction: column;
}

.waiting-time {
  font-size: 20px;
  font-weight: 700;
  color: #06b6d4;
}

.waiting-label {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.5);
}

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

.waiting-dots span {
  width: 8px;
  height: 8px;
  background: #06b6d4;
  border-radius: 50%;
  animation: dotBounce 1.5s ease-in-out infinite;
}

.waiting-dots span:nth-child(2) { animation-delay: 0.2s; }
.waiting-dots span:nth-child(3) { animation-delay: 0.4s; }

@keyframes dotBounce {
  0%, 100% { transform: translateY(0); opacity: 0.3; }
  50% { transform: translateY(-5px); opacity: 1; }
}

/* Mobile Process */
.process-mobile-new {
  display: none;
}

.process-step-mobile {
  display: flex;
  align-items: flex-start;
  gap: 20px;
  padding: 20px;
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 16px;
}

.step-mobile-number {
  width: 48px;
  height: 48px;
  background: linear-gradient(135deg, #06b6d4, #0891b2);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  font-weight: 700;
  color: #ffffff;
  flex-shrink: 0;
}

.step-mobile-purple { background: linear-gradient(135deg, #8b5cf6, #7c3aed); }
.step-mobile-green { background: linear-gradient(135deg, #22c55e, #16a34a); }
.step-mobile-gold { background: linear-gradient(135deg, #eab308, #ca8a04); }

.step-mobile-content h3 {
  font-size: 16px;
  font-weight: 700;
  color: #ffffff;
  margin: 0 0 6px 0;
}

.step-mobile-content p {
  font-size: 14px;
  line-height: 1.5;
  color: rgba(255, 255, 255, 0.5);
  margin: 0;
}

.step-mobile-connector {
  width: 2px;
  height: 24px;
  background: linear-gradient(180deg, rgba(6, 182, 212, 0.3), transparent);
  margin: 0 auto;
}

.process-waiting-mobile {
  text-align: center;
  padding: 16px;
  background: rgba(6, 182, 212, 0.05);
  border: 1px dashed rgba(6, 182, 212, 0.3);
  border-radius: 12px;
}

.process-waiting-mobile span {
  font-size: 14px;
  color: #06b6d4;
  font-weight: 600;
}

/* Process Responsive */
@media screen and (max-width: 1100px) {
  .process-timeline-desktop {
    max-width: 100%;
  }
  
  .process-row {
    flex-direction: column;
    align-items: center;
    gap: 24px;
  }
  
  .process-arrow-horizontal {
    transform: rotate(90deg);
    margin-top: 0;
  }
  
  .process-row .process-step-new {
    max-width: 400px;
    width: 100%;
  }
}

@media screen and (max-width: 767px) {
  .process-section-new { padding: 80px 0; }
  .process-timeline-desktop { display: none; }
  .process-mobile-new { display: flex; flex-direction: column; gap: 12px; }
}

/* ===========================================
   NEW SPECTACULAR TESTIMONIALS SECTION
   =========================================== */

.testimonials-section-new {
  position: relative;
  padding: 120px 0;
  overflow: hidden;
  background: #030712;
}

/* Animated Background */
.testimonials-bg-gradient {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: 
    radial-gradient(ellipse 50% 40% at 20% 30%, rgba(234, 179, 8, 0.08), transparent),
    radial-gradient(ellipse 60% 50% at 80% 70%, rgba(249, 115, 22, 0.06), transparent),
    linear-gradient(180deg, #030712 0%, #0f172a 50%, #030712 100%);
  z-index: 0;
}

.testimonials-grid-pattern {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-image: 
    linear-gradient(rgba(234, 179, 8, 0.02) 1px, transparent 1px),
    linear-gradient(90deg, rgba(234, 179, 8, 0.02) 1px, transparent 1px);
  background-size: 80px 80px;
  mask-image: radial-gradient(ellipse 70% 50% at 50% 50%, black, transparent);
  z-index: 1;
}

/* Floating Orbs */
.testimonials-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(100px);
  opacity: 0.4;
  z-index: 1;
  animation: orbFloat 12s ease-in-out infinite;
}

.testimonials-orb-1 {
  width: 350px;
  height: 350px;
  background: radial-gradient(circle, rgba(234, 179, 8, 0.3), transparent 70%);
  top: 10%;
  left: -5%;
}

.testimonials-orb-2 {
  width: 300px;
  height: 300px;
  background: radial-gradient(circle, rgba(249, 115, 22, 0.25), transparent 70%);
  bottom: 10%;
  right: -5%;
  animation-delay: -6s;
}

/* Quote Decorations */
.testimonials-quote-deco {
  position: absolute;
  width: 120px;
  height: 120px;
  color: rgba(234, 179, 8, 0.05);
  z-index: 2;
  pointer-events: none;
}

.testimonials-quote-left {
  top: 15%;
  left: 5%;
}

.testimonials-quote-right {
  bottom: 15%;
  right: 5%;
}

.testimonials-quote-deco svg {
  width: 100%;
  height: 100%;
}

/* Content Wrapper */
.testimonials-content-wrapper {
  position: relative;
  z-index: 10;
}

/* Testimonials Header */
.testimonials-header {
  text-align: center;
  max-width: 700px;
  margin: 0 auto 60px;
}

.testimonials-badge-animated {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 10px 20px;
  background: rgba(234, 179, 8, 0.1);
  border: 1px solid rgba(234, 179, 8, 0.2);
  border-radius: 50px;
  margin-bottom: 24px;
  animation: badgeSlideIn 0.8s ease-out forwards;
  opacity: 0;
  transform: translateY(20px);
}

.testimonials-badge-icon {
  width: 16px;
  height: 16px;
  color: #eab308;
}

.testimonials-badge-animated span:not(.testimonials-badge-icon) {
  font-size: 14px;
  font-weight: 500;
  color: #eab308;
  letter-spacing: 0.5px;
}

.testimonials-title {
  font-size: clamp(32px, 4vw, 48px);
  font-weight: 800;
  line-height: 1.2;
  color: #ffffff;
  margin: 0 0 20px 0;
}

.testimonials-title-line {
  display: block;
}

.testimonials-title-gradient {
  background: linear-gradient(135deg, #eab308, #f97316, #eab308);
  background-size: 200% 200%;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  animation: gradientFlow 4s ease infinite;
}

.testimonials-description {
  font-size: 18px;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.6);
  margin: 0;
}

.testimonials-description strong {
  color: #eab308;
  font-weight: 600;
}

/* Testimonials Grid */
.testimonials-grid-new {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
  margin-bottom: 60px;
}

/* Testimonial Card */
.testimonial-card-new {
  position: relative;
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 24px;
  padding: 32px;
  overflow: hidden;
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  opacity: 0;
  transform: translateY(30px);
  animation: testimonialReveal 0.6s ease forwards;
}

.testimonial-card-new[data-delay="0"] { animation-delay: 0.1s; }
.testimonial-card-new[data-delay="1"] { animation-delay: 0.2s; }
.testimonial-card-new[data-delay="2"] { animation-delay: 0.3s; }
.testimonial-card-new[data-delay="3"] { animation-delay: 0.4s; }

@keyframes testimonialReveal {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.testimonial-card-new:hover {
  transform: translateY(-8px);
  background: rgba(255, 255, 255, 0.04);
  border-color: rgba(255, 255, 255, 0.1);
}

.testimonial-card-glow {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 150px;
  background: radial-gradient(ellipse at top, rgba(234, 179, 8, 0.08), transparent 70%);
  opacity: 0;
  transition: opacity 0.4s ease;
  pointer-events: none;
}

.testimonial-card-new:hover .testimonial-card-glow { opacity: 1; }

/* Featured Card */
.testimonial-card-featured {
  border-color: rgba(234, 179, 8, 0.2);
  background: rgba(234, 179, 8, 0.02);
}

.testimonial-card-glow-featured {
  background: radial-gradient(ellipse at top, rgba(234, 179, 8, 0.12), transparent 70%);
  opacity: 1;
}

.featured-badge {
  position: absolute;
  top: 16px;
  right: 16px;
  padding: 6px 12px;
  background: linear-gradient(135deg, #eab308, #ca8a04);
  border-radius: 20px;
  font-size: 11px;
  font-weight: 600;
  color: #000000;
}

.testimonial-quote-icon {
  width: 32px;
  height: 32px;
  color: rgba(234, 179, 8, 0.3);
  margin-bottom: 16px;
}

.testimonial-quote-icon svg {
  width: 100%;
  height: 100%;
}

.testimonial-text-new {
  font-size: 16px;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.8);
  margin: 0 0 20px 0;
  min-height: 80px;
}

.testimonial-stars {
  display: flex;
  gap: 4px;
  margin-bottom: 24px;
}

.star {
  color: #eab308;
  font-size: 16px;
  animation: starGlow 2s ease-in-out infinite;
}

.star:nth-child(2) { animation-delay: 0.2s; }
.star:nth-child(3) { animation-delay: 0.4s; }
.star:nth-child(4) { animation-delay: 0.6s; }
.star:nth-child(5) { animation-delay: 0.8s; }

@keyframes starGlow {
  0%, 100% { opacity: 0.8; text-shadow: none; }
  50% { opacity: 1; text-shadow: 0 0 10px rgba(234, 179, 8, 0.5); }
}

.testimonial-author-new {
  display: flex;
  align-items: center;
  gap: 16px;
}

.testimonial-avatar {
  position: relative;
  width: 48px;
  height: 48px;
}

.testimonial-avatar img {
  width: 100%;
  height: 100%;
  border-radius: 50%;
  object-fit: cover;
}

.avatar-ring {
  position: absolute;
  top: -3px;
  left: -3px;
  right: -3px;
  bottom: -3px;
  border: 2px solid rgba(234, 179, 8, 0.3);
  border-radius: 50%;
  opacity: 0;
  transition: all 0.3s ease;
}

.testimonial-card-new:hover .avatar-ring {
  opacity: 1;
  transform: scale(1.1);
}

.testimonial-author-info {
  display: flex;
  flex-direction: column;
}

.testimonial-author-name {
  font-size: 16px;
  font-weight: 600;
  color: #ffffff;
  margin: 0;
}

.testimonial-author-role {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.5);
  margin: 0;
}

/* Trust Indicators */
.testimonials-trust {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 40px;
  padding: 32px;
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 20px;
}

.trust-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
}

.trust-number {
  font-size: 32px;
  font-weight: 800;
  line-height: 1.3;
  background: linear-gradient(135deg, #eab308, #f97316);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  padding-bottom: 2px;
}

.trust-label {
  font-size: 14px;
  line-height: 1.4;
  color: rgba(255, 255, 255, 0.5);
}

.trust-divider {
  width: 1px;
  height: 50px;
  background: linear-gradient(180deg, transparent, rgba(255, 255, 255, 0.2), transparent);
}

/* Testimonials Responsive */
@media screen and (max-width: 991px) {
  .testimonials-section-new { padding: 100px 0; }
  .testimonials-grid-new { grid-template-columns: 1fr; }
  .testimonials-trust { flex-wrap: wrap; gap: 24px; }
  .trust-divider { display: none; }
}

@media screen and (max-width: 767px) {
  .testimonials-section-new { padding: 80px 0; }
  .testimonial-card-new { padding: 24px; }
  .testimonials-quote-deco { display: none; }
}

/* ===========================================
   NEW SPECTACULAR FAQ SECTION
   =========================================== */

.faq-section-new {
  position: relative;
  padding: 120px 0;
  overflow: hidden;
  background: #030712;
}

/* Animated Background */
.faq-bg-gradient {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: 
    radial-gradient(ellipse 50% 40% at 30% 30%, rgba(236, 72, 153, 0.08), transparent),
    radial-gradient(ellipse 60% 50% at 70% 70%, rgba(139, 92, 246, 0.06), transparent),
    linear-gradient(180deg, #030712 0%, #0f172a 50%, #030712 100%);
  z-index: 0;
}

.faq-grid-pattern {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-image: 
    linear-gradient(rgba(236, 72, 153, 0.02) 1px, transparent 1px),
    linear-gradient(90deg, rgba(236, 72, 153, 0.02) 1px, transparent 1px);
  background-size: 70px 70px;
  mask-image: radial-gradient(ellipse 70% 50% at 50% 50%, black, transparent);
  z-index: 1;
}

/* Floating Orbs */
.faq-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(100px);
  opacity: 0.35;
  z-index: 1;
  animation: orbFloat 12s ease-in-out infinite;
}

.faq-orb-1 {
  width: 350px;
  height: 350px;
  background: radial-gradient(circle, rgba(236, 72, 153, 0.3), transparent 70%);
  top: 10%;
  right: -5%;
}

.faq-orb-2 {
  width: 300px;
  height: 300px;
  background: radial-gradient(circle, rgba(139, 92, 246, 0.25), transparent 70%);
  bottom: 10%;
  left: -5%;
  animation-delay: -6s;
}

/* Content Wrapper */
.faq-content-wrapper {
  position: relative;
  z-index: 10;
}

/* FAQ Layout */
.faq-layout {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 80px;
  align-items: flex-start;
}

/* FAQ Header Column */
.faq-header-column {
  position: sticky;
  top: 120px;
}

.faq-badge-animated {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 10px 20px;
  background: rgba(236, 72, 153, 0.1);
  border: 1px solid rgba(236, 72, 153, 0.2);
  border-radius: 50px;
  margin-bottom: 24px;
  animation: badgeSlideIn 0.8s ease-out forwards;
  opacity: 0;
  transform: translateY(20px);
}

.faq-badge-icon {
  width: 16px;
  height: 16px;
  color: #ec4899;
}

.faq-badge-animated span:not(.faq-badge-icon) {
  font-size: 14px;
  font-weight: 500;
  color: #ec4899;
  letter-spacing: 0.5px;
}

.faq-title {
  font-size: clamp(32px, 4vw, 48px);
  font-weight: 800;
  line-height: 1.2;
  color: #ffffff;
  margin: 0 0 20px 0;
}

.faq-title-line {
  display: block;
}

.faq-title-gradient {
  background: linear-gradient(135deg, #ec4899, #8b5cf6, #ec4899);
  background-size: 200% 200%;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  animation: gradientFlow 4s ease infinite;
}

.faq-description {
  font-size: 18px;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.6);
  margin: 0 0 32px 0;
}

.faq-description strong {
  color: #ec4899;
  font-weight: 600;
}

.faq-cta-btn {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 16px 28px;
  background: linear-gradient(135deg, #ec4899, #db2777);
  color: #ffffff;
  font-size: 15px;
  font-weight: 600;
  text-decoration: none;
  border-radius: 14px;
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  box-shadow: 0 4px 20px rgba(236, 72, 153, 0.3);
  margin-bottom: 40px;
}

.faq-cta-btn:hover {
  transform: translateY(-4px) scale(1.02);
  box-shadow: 0 12px 40px rgba(236, 72, 153, 0.4);
}

.faq-cta-icon {
  width: 18px;
  height: 18px;
  transition: transform 0.3s ease;
}

.faq-cta-icon svg {
  width: 100%;
  height: 100%;
}

.faq-cta-btn:hover .faq-cta-icon {
  transform: translate(4px, -4px);
}

/* Quick Info Cards */
.faq-quick-info {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.quick-info-card {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 16px;
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 14px;
  transition: all 0.3s ease;
}

.quick-info-card:hover {
  background: rgba(255, 255, 255, 0.04);
  border-color: rgba(236, 72, 153, 0.2);
}

.quick-info-icon {
  width: 40px;
  height: 40px;
  background: linear-gradient(135deg, rgba(236, 72, 153, 0.2), rgba(236, 72, 153, 0.05));
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #ec4899;
}

.quick-info-icon svg {
  width: 20px;
  height: 20px;
}

.quick-info-text {
  display: flex;
  flex-direction: column;
}

.quick-info-title {
  font-size: 14px;
  font-weight: 600;
  color: #ffffff;
}

.quick-info-desc {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.5);
}

/* FAQ Items Column */
.faq-items-column {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.faq-item-new {
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 20px;
  overflow: hidden;
  transition: all 0.3s ease;
  opacity: 0;
  transform: translateX(30px);
  animation: faqItemSlide 0.5s ease forwards;
}

.faq-item-new[data-faq="1"] { animation-delay: 0.1s; }
.faq-item-new[data-faq="2"] { animation-delay: 0.2s; }
.faq-item-new[data-faq="3"] { animation-delay: 0.3s; }
.faq-item-new[data-faq="4"] { animation-delay: 0.4s; }
.faq-item-new[data-faq="5"] { animation-delay: 0.5s; }

@keyframes faqItemSlide {
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

.faq-item-new:hover {
  border-color: rgba(255, 255, 255, 0.1);
  background: rgba(255, 255, 255, 0.03);
}

.faq-item-new.active {
  border-color: rgba(236, 72, 153, 0.3);
  background: rgba(236, 72, 153, 0.02);
}

.faq-question-new {
  width: 100%;
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 24px;
  background: none;
  border: none;
  cursor: pointer;
  text-align: left;
  transition: all 0.3s ease;
}

.faq-q-icon {
  width: 40px;
  height: 40px;
  background: linear-gradient(135deg, rgba(6, 182, 212, 0.2), rgba(6, 182, 212, 0.05));
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #06b6d4;
  flex-shrink: 0;
  transition: all 0.3s ease;
}

.faq-q-icon svg {
  width: 20px;
  height: 20px;
}

.faq-q-icon-purple { background: linear-gradient(135deg, rgba(139, 92, 246, 0.2), rgba(139, 92, 246, 0.05)); color: #8b5cf6; }
.faq-q-icon-green { background: linear-gradient(135deg, rgba(34, 197, 94, 0.2), rgba(34, 197, 94, 0.05)); color: #22c55e; }
.faq-q-icon-orange { background: linear-gradient(135deg, rgba(249, 115, 22, 0.2), rgba(249, 115, 22, 0.05)); color: #f97316; }
.faq-q-icon-pink { background: linear-gradient(135deg, rgba(236, 72, 153, 0.2), rgba(236, 72, 153, 0.05)); color: #ec4899; }

.faq-question-text {
  flex: 1;
  font-size: 17px;
  font-weight: 600;
  color: #ffffff;
  transition: color 0.3s ease;
}

.faq-question-new:hover .faq-question-text {
  color: #ec4899;
}

.faq-toggle-icon {
  position: relative;
  width: 24px;
  height: 24px;
  flex-shrink: 0;
}

.toggle-line {
  position: absolute;
  background: rgba(255, 255, 255, 0.5);
  border-radius: 2px;
  transition: all 0.3s ease;
}

.toggle-h {
  top: 50%;
  left: 4px;
  right: 4px;
  height: 2px;
  transform: translateY(-50%);
}

.toggle-v {
  left: 50%;
  top: 4px;
  bottom: 4px;
  width: 2px;
  transform: translateX(-50%);
}

.faq-item-new.active .toggle-v {
  transform: translateX(-50%) rotate(90deg);
  opacity: 0;
}

.faq-answer-new {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease, padding 0.4s ease;
}

.faq-item-new.active .faq-answer-new {
  max-height: 200px;
}

.faq-answer-new p {
  padding: 0 24px 24px 80px;
  font-size: 15px;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.6);
  margin: 0;
}

.faq-answer-new strong {
  color: #ec4899;
  font-weight: 600;
}

/* FAQ Responsive */
@media screen and (max-width: 991px) {
  .faq-section-new { padding: 100px 0; }
  .faq-layout {
    grid-template-columns: 1fr;
    gap: 60px;
  }
  .faq-header-column {
    position: static;
    text-align: center;
  }
  .faq-quick-info {
    flex-direction: row;
    justify-content: center;
    flex-wrap: wrap;
    gap: 16px;
  }
  .quick-info-card {
    flex: 1;
    min-width: 200px;
    max-width: 280px;
  }
}

@media screen and (max-width: 767px) {
  .faq-section-new { padding: 80px 0; }
  .faq-question-new { padding: 20px; }
  .faq-answer-new p { padding: 0 20px 20px 20px; }
  .faq-q-icon { display: none; }
  .quick-info-card { min-width: 100%; }
}

/* ===========================================
   NEW SPECTACULAR PROJECTS SECTION
   =========================================== */

.projects-section-new {
  position: relative;
  padding: 120px 0;
  overflow: hidden;
  background: #030712;
}

/* Animated Background */
.projects-bg-gradient {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: 
    radial-gradient(ellipse 50% 40% at 20% 20%, rgba(59, 130, 246, 0.1), transparent),
    radial-gradient(ellipse 60% 50% at 80% 80%, rgba(168, 85, 247, 0.08), transparent),
    linear-gradient(180deg, #030712 0%, #0f172a 50%, #030712 100%);
  z-index: 0;
}

.projects-grid-pattern {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-image: 
    linear-gradient(rgba(59, 130, 246, 0.02) 1px, transparent 1px),
    linear-gradient(90deg, rgba(59, 130, 246, 0.02) 1px, transparent 1px);
  background-size: 60px 60px;
  mask-image: radial-gradient(ellipse 70% 50% at 50% 50%, black, transparent);
  z-index: 1;
}

/* Floating Orbs */
.projects-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(100px);
  opacity: 0.35;
  z-index: 1;
  animation: orbFloat 12s ease-in-out infinite;
}

.projects-orb-1 {
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(59, 130, 246, 0.3), transparent 70%);
  top: 5%;
  left: -5%;
}

.projects-orb-2 {
  width: 350px;
  height: 350px;
  background: radial-gradient(circle, rgba(168, 85, 247, 0.25), transparent 70%);
  top: 50%;
  right: -5%;
  animation-delay: -4s;
}

.projects-orb-3 {
  width: 300px;
  height: 300px;
  background: radial-gradient(circle, rgba(34, 197, 94, 0.2), transparent 70%);
  bottom: 5%;
  left: 30%;
  animation-delay: -8s;
}

/* Content Wrapper */
.projects-content-wrapper {
  position: relative;
  z-index: 10;
}

/* Projects Header */
.projects-header {
  text-align: center;
  max-width: 700px;
  margin: 0 auto 60px;
}

.projects-badge-animated {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 10px 20px;
  background: rgba(59, 130, 246, 0.1);
  border: 1px solid rgba(59, 130, 246, 0.2);
  border-radius: 50px;
  margin-bottom: 24px;
  animation: badgeSlideIn 0.8s ease-out forwards;
  opacity: 0;
  transform: translateY(20px);
}

.projects-badge-icon {
  width: 16px;
  height: 16px;
  color: #3b82f6;
}

.projects-badge-animated span:not(.projects-badge-icon) {
  font-size: 14px;
  font-weight: 500;
  color: #3b82f6;
  letter-spacing: 0.5px;
}

.projects-title {
  font-size: clamp(32px, 4vw, 48px);
  font-weight: 800;
  line-height: 1.2;
  color: #ffffff;
  margin: 0 0 20px 0;
}

.projects-title-line {
  display: block;
}

.projects-title-gradient {
  background: linear-gradient(135deg, #3b82f6, #a855f7, #3b82f6);
  background-size: 200% 200%;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  animation: gradientFlow 4s ease infinite;
}

.projects-description {
  font-size: 18px;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.6);
  margin: 0 0 40px 0;
}

.projects-description strong {
  color: #3b82f6;
  font-weight: 600;
}

/* Filter Tabs */
.projects-filter-tabs {
  display: flex;
  justify-content: center;
  gap: 12px;
  flex-wrap: wrap;
}

.filter-tab-new {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 20px;
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 12px;
  color: rgba(255, 255, 255, 0.6);
  font-size: 14px;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.3s ease;
}

.filter-tab-new:hover {
  background: rgba(255, 255, 255, 0.05);
  border-color: rgba(255, 255, 255, 0.1);
  color: #ffffff;
}

.filter-tab-new.active {
  background: rgba(59, 130, 246, 0.1);
  border-color: rgba(59, 130, 246, 0.3);
  color: #3b82f6;
}

.filter-tab-icon {
  width: 18px;
  height: 18px;
}

.filter-tab-icon svg {
  width: 100%;
  height: 100%;
}

/* Projects Grid */
.projects-grid-new {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  margin-bottom: 60px;
}

/* Project Card */
.project-card-new {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  opacity: 0;
  transform: translateY(30px);
  animation: projectCardReveal 0.6s ease forwards;
  max-width: 300px;
}

.project-card-new[data-delay="0"] { animation-delay: 0.1s; }
.project-card-new[data-delay="1"] { animation-delay: 0.2s; }
.project-card-new[data-delay="2"] { animation-delay: 0.3s; }
.project-card-new[data-delay="3"] { animation-delay: 0.4s; }
.project-card-new[data-delay="4"] { animation-delay: 0.5s; }
.project-card-new[data-delay="5"] { animation-delay: 0.6s; }
.project-card-new[data-delay="6"] { animation-delay: 0.7s; }
.project-card-new[data-delay="7"] { animation-delay: 0.8s; }
.project-card-new[data-delay="8"] { animation-delay: 0.9s; }
.project-card-new[data-delay="9"] { animation-delay: 1.0s; }
.project-card-new[data-delay="10"] { animation-delay: 1.1s; }
.project-card-new[data-delay="11"] { animation-delay: 1.2s; }

@keyframes projectCardReveal {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.project-card-link {
  display: block;
  position: relative;
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 20px;
  overflow: hidden;
  text-decoration: none;
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.project-card-link:hover {
  transform: translateY(-12px) scale(1.02);
  border-color: rgba(59, 130, 246, 0.3);
  box-shadow: 
    0 25px 50px -12px rgba(0, 0, 0, 0.5),
    0 0 30px rgba(59, 130, 246, 0.15),
    inset 0 1px 0 rgba(255, 255, 255, 0.1);
}

.project-card-glow {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 200px;
  background: radial-gradient(ellipse at top, rgba(59, 130, 246, 0.1), transparent 70%);
  opacity: 0;
  transition: opacity 0.4s ease;
  pointer-events: none;
  z-index: 1;
}

.project-card-link:hover .project-card-glow { opacity: 1; }

.project-card-glow-purple { background: radial-gradient(ellipse at top, rgba(168, 85, 247, 0.1), transparent 70%); }
.project-card-glow-green { background: radial-gradient(ellipse at top, rgba(34, 197, 94, 0.1), transparent 70%); }
.project-card-glow-orange { background: radial-gradient(ellipse at top, rgba(249, 115, 22, 0.1), transparent 70%); }
.project-card-glow-pink { background: radial-gradient(ellipse at top, rgba(236, 72, 153, 0.1), transparent 70%); }

/* Project Card Shimmer Effect */
.project-card-link::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(255, 255, 255, 0.05),
    transparent
  );
  z-index: 10;
  transition: left 0.6s ease;
  pointer-events: none;
}

.project-card-link:hover::before {
  left: 100%;
}

/* Project Card Border Animation */
.project-card-new::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  border-radius: 20px;
  border: 2px solid transparent;
  background: linear-gradient(135deg, rgba(59, 130, 246, 0), rgba(139, 92, 246, 0)) border-box;
  -webkit-mask: linear-gradient(#fff 0 0) padding-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  opacity: 0;
  transition: opacity 0.4s ease;
  pointer-events: none;
  z-index: 5;
}

.project-card-new:hover::after {
  opacity: 1;
  background: linear-gradient(135deg, rgba(59, 130, 246, 0.5), rgba(139, 92, 246, 0.5)) border-box;
}

/* Project Image */
.project-image-new {
  position: relative;
  width: 100%;
  aspect-ratio: 221 / 280;
  overflow: hidden;
}

.project-image-new img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center;
  transition: transform 0.6s ease;
}

.project-card-link:hover .project-image-new img {
  transform: scale(1.08);
}

.project-image-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(180deg, transparent 0%, rgba(0, 0, 0, 0.6) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.4s ease;
}

.project-card-link:hover .project-image-overlay {
  opacity: 1;
}

.project-overlay-icon {
  width: 48px;
  height: 48px;
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #ffffff;
  transform: translateY(20px);
  transition: transform 0.4s ease;
}

.project-card-link:hover .project-overlay-icon {
  transform: translateY(0);
}

.project-overlay-icon svg {
  width: 20px;
  height: 20px;
}

/* Project Info */
.project-info-new {
  padding: 24px;
  position: relative;
  z-index: 2;
}

.project-tags {
  display: flex;
  gap: 8px;
  margin-bottom: 12px;
  flex-wrap: wrap;
}

.project-tag {
  padding: 4px 10px;
  background: rgba(59, 130, 246, 0.1);
  border: 1px solid rgba(59, 130, 246, 0.2);
  border-radius: 20px;
  font-size: 11px;
  font-weight: 500;
  color: #3b82f6;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.project-tag-purple { background: rgba(168, 85, 247, 0.1); border-color: rgba(168, 85, 247, 0.2); color: #a855f7; }
.project-tag-green { background: rgba(34, 197, 94, 0.1); border-color: rgba(34, 197, 94, 0.2); color: #22c55e; }
.project-tag-orange { background: rgba(249, 115, 22, 0.1); border-color: rgba(249, 115, 22, 0.2); color: #f97316; }
.project-tag-pink { background: rgba(236, 72, 153, 0.1); border-color: rgba(236, 72, 153, 0.2); color: #ec4899; }

.project-name-new {
  font-size: 20px;
  font-weight: 700;
  color: #ffffff;
  margin: 0 0 8px 0;
  transition: color 0.3s ease;
}

.project-card-link:hover .project-name-new {
  color: #3b82f6;
}

.project-desc-new {
  font-size: 14px;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.5);
  margin: 0 0 16px 0;
}

.project-view-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.7);
  transition: all 0.3s ease;
}

.project-view-btn svg {
  width: 16px;
  height: 16px;
  transition: transform 0.3s ease;
}

.project-card-link:hover .project-view-btn {
  color: #3b82f6;
}

.project-card-link:hover .project-view-btn svg {
  transform: translate(4px, -4px);
}

/* Projects CTA */
.projects-cta-wrapper {
  display: flex;
  justify-content: center;
}

.projects-cta-btn {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 16px 32px;
  background: linear-gradient(135deg, #3b82f6, #2563eb);
  color: #ffffff;
  font-size: 15px;
  font-weight: 600;
  text-decoration: none;
  border-radius: 14px;
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  box-shadow: 0 4px 20px rgba(59, 130, 246, 0.3);
}

.projects-cta-btn:hover {
  transform: translateY(-4px) scale(1.02);
  box-shadow: 0 12px 40px rgba(59, 130, 246, 0.4);
}

.projects-cta-icon {
  width: 18px;
  height: 18px;
  transition: transform 0.3s ease;
}

.projects-cta-icon svg {
  width: 100%;
  height: 100%;
}

.projects-cta-btn:hover .projects-cta-icon {
  transform: translate(4px, -4px);
}

/* Projects Responsive */
@media screen and (max-width: 991px) {
  .projects-section-new { padding: 100px 0; }
  .projects-grid-new { grid-template-columns: repeat(2, 1fr); }
}

@media screen and (max-width: 767px) {
  .projects-section-new { padding: 80px 0; }
  .projects-grid-new { grid-template-columns: 1fr; }
  .projects-filter-tabs { gap: 8px; }
  .filter-tab-new { padding: 10px 16px; font-size: 13px; }
}

/* ===========================================
   NEW SPECTACULAR FOOTER CTA SECTION
   =========================================== */

.footer-new {
  position: relative;
  background: #030712;
}

/* Footer CTA Section */
.footer-cta-section {
  position: relative;
  padding: 120px 0;
  overflow: hidden;
}

/* Animated Background */
.footer-cta-bg-gradient {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: 
    radial-gradient(ellipse 60% 50% at 50% 30%, rgba(6, 182, 212, 0.15), transparent),
    radial-gradient(ellipse 50% 40% at 20% 70%, rgba(139, 92, 246, 0.1), transparent),
    radial-gradient(ellipse 50% 40% at 80% 70%, rgba(236, 72, 153, 0.08), transparent),
    linear-gradient(180deg, #030712 0%, #0f172a 50%, #030712 100%);
  z-index: 0;
}

.footer-cta-grid-pattern {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-image: 
    linear-gradient(rgba(6, 182, 212, 0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(6, 182, 212, 0.03) 1px, transparent 1px);
  background-size: 80px 80px;
  mask-image: radial-gradient(ellipse 80% 60% at 50% 50%, black, transparent);
  z-index: 1;
}

/* Floating Orbs */
.footer-cta-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(100px);
  opacity: 0.4;
  z-index: 1;
  animation: orbFloat 12s ease-in-out infinite;
}

.footer-cta-orb-1 {
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(6, 182, 212, 0.4), transparent 70%);
  top: -10%;
  left: 30%;
}

.footer-cta-orb-2 {
  width: 300px;
  height: 300px;
  background: radial-gradient(circle, rgba(139, 92, 246, 0.3), transparent 70%);
  bottom: 0;
  left: 10%;
  animation-delay: -4s;
}

.footer-cta-orb-3 {
  width: 250px;
  height: 250px;
  background: radial-gradient(circle, rgba(236, 72, 153, 0.25), transparent 70%);
  bottom: 10%;
  right: 10%;
  animation-delay: -8s;
}

/* Decorative Shapes */
.footer-cta-shapes {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 2;
  pointer-events: none;
}

.footer-cta-shape {
  position: absolute;
  border: 1px solid rgba(6, 182, 212, 0.1);
  animation: shapeFloat 20s ease-in-out infinite;
}

.footer-cta-shape-1 {
  width: 100px;
  height: 100px;
  border-radius: 50%;
  top: 20%;
  left: 10%;
}

.footer-cta-shape-2 {
  width: 60px;
  height: 60px;
  border-radius: 12px;
  bottom: 30%;
  right: 15%;
  transform: rotate(45deg);
  animation-delay: -10s;
}

/* Content Wrapper */
.footer-cta-content-wrapper {
  position: relative;
  z-index: 10;
}

.footer-cta-inner {
  text-align: center;
  max-width: 700px;
  margin: 0 auto;
}

/* Availability Badge */
.footer-availability-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 10px 20px;
  background: rgba(34, 197, 94, 0.1);
  border: 1px solid rgba(34, 197, 94, 0.2);
  border-radius: 50px;
  margin-bottom: 32px;
  animation: badgeSlideIn 0.8s ease-out forwards;
  opacity: 0;
  transform: translateY(20px);
}

.availability-dot {
  width: 10px;
  height: 10px;
  background: #22c55e;
  border-radius: 50%;
  animation: availabilityPulse 2s ease-in-out infinite;
}

@keyframes availabilityPulse {
  0%, 100% { opacity: 1; box-shadow: 0 0 0 0 rgba(34, 197, 94, 0.4); }
  50% { opacity: 0.8; box-shadow: 0 0 0 8px rgba(34, 197, 94, 0); }
}

.footer-availability-badge span:not(.availability-dot) {
  font-size: 14px;
  font-weight: 500;
  color: #22c55e;
  letter-spacing: 0.5px;
}

/* Footer CTA Title */
.footer-cta-title {
  font-size: clamp(36px, 5vw, 56px);
  font-weight: 800;
  line-height: 1.1;
  color: #ffffff;
  margin: 0 0 24px 0;
}

.footer-title-line {
  display: block;
}

.footer-title-gradient {
  background: linear-gradient(135deg, #06b6d4, #8b5cf6, #ec4899, #06b6d4);
  background-size: 300% 300%;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  animation: gradientFlow 6s ease infinite;
}

.footer-cta-description {
  font-size: 18px;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.6);
  margin: 0 0 40px 0;
}

.footer-cta-description strong {
  color: #06b6d4;
  font-weight: 600;
}

/* CTA Buttons */
.footer-cta-buttons {
  display: flex;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 48px;
}

.footer-btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 18px 32px;
  background: linear-gradient(135deg, #06b6d4, #0891b2);
  color: #ffffff;
  font-size: 16px;
  font-weight: 600;
  text-decoration: none;
  border-radius: 14px;
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  box-shadow: 0 4px 24px rgba(6, 182, 212, 0.4);
}

.footer-btn-primary:hover {
  transform: translateY(-4px) scale(1.02);
  box-shadow: 0 12px 40px rgba(6, 182, 212, 0.5);
}

.footer-btn-icon {
  width: 18px;
  height: 18px;
  transition: transform 0.3s ease;
}

.footer-btn-icon svg {
  width: 100%;
  height: 100%;
}

.footer-btn-primary:hover .footer-btn-icon {
  transform: translate(4px, -4px);
}

.footer-btn-secondary {
  display: inline-flex;
  align-items: center;
  padding: 18px 32px;
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(255, 255, 255, 0.1);
  color: #ffffff;
  font-size: 16px;
  font-weight: 600;
  text-decoration: none;
  border-radius: 14px;
  transition: all 0.3s ease;
}

.footer-btn-secondary:hover {
  background: rgba(255, 255, 255, 0.05);
  border-color: rgba(255, 255, 255, 0.2);
}

/* Trust Row */
.footer-trust-row {
  display: flex;
  justify-content: center;
  gap: 40px;
  flex-wrap: wrap;
}

.footer-trust-item {
  display: flex;
  align-items: center;
  gap: 10px;
  color: rgba(255, 255, 255, 0.5);
  font-size: 14px;
}

.footer-trust-item svg {
  width: 20px;
  height: 20px;
  color: #06b6d4;
}

/* Footer Bottom */
.footer-bottom-new {
  position: relative;
  padding: 40px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  z-index: 10;
}

.footer-bottom-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 24px;
}

.footer-logo img {
  height: 32px;
  opacity: 0.8;
  transition: opacity 0.3s ease;
}

.footer-logo:hover img {
  opacity: 1;
}

.footer-nav {
  display: flex;
  gap: 32px;
  flex-wrap: wrap;
  justify-content: center;
}

.footer-link {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.5);
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer-link:hover {
  color: #06b6d4;
}

.footer-copyright {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
}

.footer-copyright p {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.4);
  margin: 0;
}

.footer-legal-links {
  display: flex;
  gap: 8px;
  align-items: center;
}

.footer-legal-link {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.4);
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer-legal-link:hover {
  color: #06b6d4;
}

.footer-legal-separator {
  color: rgba(255, 255, 255, 0.2);
}

/* Footer Responsive */
@media screen and (max-width: 991px) {
  .footer-cta-section { padding: 100px 0; }
  .footer-trust-row { gap: 24px; }
}

@media screen and (max-width: 767px) {
  .footer-cta-section { padding: 80px 0; }
  .footer-cta-buttons { flex-direction: column; align-items: center; }
  .footer-btn-primary, .footer-btn-secondary { width: 100%; max-width: 280px; justify-content: center; }
  .footer-trust-row { flex-direction: column; gap: 16px; align-items: center; }
  .footer-nav { gap: 20px; }
}

/* Reduced motion */
@media (prefers-reduced-motion: reduce) {
  .process-section-new *,
  .testimonials-section-new *,
  .faq-section-new *,
  .projects-section-new *,
  .footer-new * {
    animation: none !important;
    transition: none !important;
  }
  
  .process-step-new,
  .testimonial-card-new,
  .faq-item-new,
  .project-card-new,
  .process-badge-animated,
  .testimonials-badge-animated,
  .faq-badge-animated,
  .projects-badge-animated,
  .footer-availability-badge {
    opacity: 1;
    transform: none;
  }
}

/* ===========================================
   PROJECTS PAGE HERO SECTION
   =========================================== */

.projects-hero-new {
  position: relative;
  padding: 140px 0 80px;
  overflow: hidden;
  background: #030712;
  min-height: 60vh;
  display: flex;
  align-items: center;
}

.projects-hero-bg-gradient {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: 
    radial-gradient(ellipse 60% 50% at 50% 30%, rgba(59, 130, 246, 0.15), transparent),
    radial-gradient(ellipse 50% 40% at 20% 70%, rgba(139, 92, 246, 0.1), transparent),
    linear-gradient(180deg, #030712 0%, #0f172a 100%);
  z-index: 0;
}

.projects-hero-grid-pattern {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-image: 
    linear-gradient(rgba(59, 130, 246, 0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(59, 130, 246, 0.03) 1px, transparent 1px);
  background-size: 60px 60px;
  mask-image: radial-gradient(ellipse 80% 60% at 50% 50%, black, transparent);
  z-index: 1;
}

.projects-hero-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(100px);
  opacity: 0.4;
  z-index: 1;
  animation: orbFloat 12s ease-in-out infinite;
}

.projects-hero-orb-1 {
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(59, 130, 246, 0.4), transparent 70%);
  top: -10%;
  right: 10%;
}

.projects-hero-orb-2 {
  width: 300px;
  height: 300px;
  background: radial-gradient(circle, rgba(139, 92, 246, 0.3), transparent 70%);
  bottom: 10%;
  left: 10%;
  animation-delay: -6s;
}

.projects-hero-content-wrapper {
  position: relative;
  z-index: 10;
  width: 100%;
}

/* Breadcrumb */
.projects-breadcrumb {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 40px;
}

.breadcrumb-link-new {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.5);
  text-decoration: none;
  transition: color 0.3s ease;
}

.breadcrumb-link-new:hover {
  color: #3b82f6;
}

.breadcrumb-sep {
  color: rgba(255, 255, 255, 0.3);
}

.breadcrumb-current-new {
  font-size: 14px;
  color: #3b82f6;
  font-weight: 500;
}

.projects-hero-inner {
  text-align: center;
  max-width: 800px;
  margin: 0 auto;
}

.projects-hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 10px 20px;
  background: rgba(59, 130, 246, 0.1);
  border: 1px solid rgba(59, 130, 246, 0.2);
  border-radius: 50px;
  margin-bottom: 24px;
  animation: badgeSlideIn 0.8s ease-out forwards;
  opacity: 0;
  transform: translateY(20px);
}

.projects-hero-badge-icon {
  width: 16px;
  height: 16px;
  color: #3b82f6;
}

.projects-hero-badge span:not(.projects-hero-badge-icon) {
  font-size: 14px;
  font-weight: 500;
  color: #3b82f6;
  letter-spacing: 0.5px;
}

.projects-hero-title {
  font-size: clamp(40px, 6vw, 64px);
  font-weight: 800;
  line-height: 1.1;
  color: #ffffff;
  margin: 0 0 24px 0;
}

.projects-hero-title-line {
  display: block;
}

.projects-hero-title-gradient {
  background: linear-gradient(135deg, #3b82f6, #a855f7, #3b82f6);
  background-size: 200% 200%;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  animation: gradientFlow 4s ease infinite;
}

.projects-hero-description {
  font-size: 18px;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.6);
  margin: 0 0 40px 0;
}

.projects-hero-description strong {
  color: #3b82f6;
  font-weight: 600;
}

/* Hero Stats */
.projects-hero-stats {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 40px;
  flex-wrap: wrap;
}

.hero-stat-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
}

.projects-hero-stats .hero-stat-number {
  font-size: 32px;
  font-weight: 800;
  line-height: 1.3;
  background: linear-gradient(135deg, #3b82f6, #a855f7);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  padding-bottom: 2px;
}

.projects-hero-stats .hero-stat-label {
  font-size: 14px;
  line-height: 1.4;
  color: rgba(255, 255, 255, 0.5);
}

.hero-stat-divider {
  width: 1px;
  height: 40px;
  background: linear-gradient(180deg, transparent, rgba(255, 255, 255, 0.2), transparent);
}

/* Projects Page Section adjustments */
.projects-page-section {
  padding-top: 40px;
}

.projects-filter-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 20px;
  margin-bottom: 40px;
}

.projects-counter-new {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.5);
}

/* ===========================================
   TIMING SECTION (PROJECTS PAGE)
   =========================================== */

.timing-section-new {
  position: relative;
  padding: 120px 0;
  overflow: hidden;
  background: #030712;
}

.timing-bg-gradient {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: 
    radial-gradient(ellipse 50% 40% at 30% 30%, rgba(34, 197, 94, 0.1), transparent),
    radial-gradient(ellipse 60% 50% at 70% 70%, rgba(6, 182, 212, 0.08), transparent),
    linear-gradient(180deg, #0f172a 0%, #030712 50%, #0f172a 100%);
  z-index: 0;
}

.timing-grid-pattern {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-image: 
    linear-gradient(rgba(34, 197, 94, 0.02) 1px, transparent 1px),
    linear-gradient(90deg, rgba(34, 197, 94, 0.02) 1px, transparent 1px);
  background-size: 70px 70px;
  mask-image: radial-gradient(ellipse 70% 50% at 50% 50%, black, transparent);
  z-index: 1;
}

.timing-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(100px);
  opacity: 0.35;
  z-index: 1;
  animation: orbFloat 12s ease-in-out infinite;
}

.timing-orb-1 {
  width: 350px;
  height: 350px;
  background: radial-gradient(circle, rgba(34, 197, 94, 0.3), transparent 70%);
  top: 10%;
  left: -5%;
}

.timing-orb-2 {
  width: 300px;
  height: 300px;
  background: radial-gradient(circle, rgba(6, 182, 212, 0.25), transparent 70%);
  bottom: 10%;
  right: -5%;
  animation-delay: -6s;
}

.timing-content-wrapper {
  position: relative;
  z-index: 10;
}

.timing-header {
  text-align: center;
  max-width: 700px;
  margin: 0 auto 60px;
}

.timing-badge-animated {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 10px 20px;
  background: rgba(34, 197, 94, 0.1);
  border: 1px solid rgba(34, 197, 94, 0.2);
  border-radius: 50px;
  margin-bottom: 24px;
  animation: badgeSlideIn 0.8s ease-out forwards;
  opacity: 0;
  transform: translateY(20px);
}

.timing-badge-icon {
  width: 16px;
  height: 16px;
  color: #22c55e;
}

.timing-badge-animated span:not(.timing-badge-icon) {
  font-size: 14px;
  font-weight: 500;
  color: #22c55e;
  letter-spacing: 0.5px;
}

.timing-title {
  font-size: clamp(32px, 4vw, 48px);
  font-weight: 800;
  line-height: 1.2;
  color: #ffffff;
  margin: 0 0 20px 0;
}

.timing-title-line {
  display: block;
}

.timing-title-gradient {
  background: linear-gradient(135deg, #22c55e, #06b6d4, #22c55e);
  background-size: 200% 200%;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  animation: gradientFlow 4s ease infinite;
}

.timing-description {
  font-size: 18px;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.6);
  margin: 0;
}

.timing-description strong {
  color: #22c55e;
  font-weight: 600;
}

/* Timing Cards */
.timing-cards-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.timing-card-new {
  position: relative;
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 24px;
  padding: 48px 32px 40px;
  text-align: center;
  overflow: hidden;
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  opacity: 0;
  transform: translateY(30px);
  animation: timingCardReveal 0.6s ease forwards;
}

.timing-card-new[data-delay="0"] { animation-delay: 0.1s; }
.timing-card-new[data-delay="1"] { animation-delay: 0.2s; }
.timing-card-new[data-delay="2"] { animation-delay: 0.3s; }

@keyframes timingCardReveal {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.timing-card-new:hover {
  transform: translateY(-8px);
  border-color: rgba(255, 255, 255, 0.1);
}

.timing-card-glow {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 150px;
  background: radial-gradient(ellipse at top, rgba(34, 197, 94, 0.08), transparent 70%);
  opacity: 0;
  transition: opacity 0.4s ease;
  pointer-events: none;
}

.timing-card-new:hover .timing-card-glow { opacity: 1; }

/* Featured Card */
.timing-card-featured {
  border-color: rgba(34, 197, 94, 0.2);
  background: rgba(34, 197, 94, 0.02);
  transform: scale(1.02);
}

.timing-card-featured .timing-card-glow {
  opacity: 1;
}

.timing-card-glow-featured {
  background: radial-gradient(ellipse at top, rgba(34, 197, 94, 0.12), transparent 70%);
}

.timing-featured-badge {
  position: absolute;
  top: 16px;
  right: 16px;
  padding: 6px 12px;
  background: linear-gradient(135deg, #22c55e, #16a34a);
  border-radius: 20px;
  font-size: 11px;
  font-weight: 600;
  color: #ffffff;
}

.timing-card-icon {
  width: 56px;
  height: 56px;
  background: linear-gradient(135deg, rgba(34, 197, 94, 0.2), rgba(34, 197, 94, 0.05));
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #22c55e;
  margin: 0 auto 20px;
}

.timing-card-icon svg {
  width: 28px;
  height: 28px;
}

.timing-card-number {
  font-size: 36px;
  font-weight: 800;
  background: linear-gradient(135deg, #22c55e, #06b6d4);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 12px;
  line-height: 1.2;
  padding-top: 4px;
  display: inline-block;
}

.timing-card-title {
  font-size: 20px;
  font-weight: 700;
  color: #ffffff;
  margin: 0 0 12px 0;
}

.timing-card-desc {
  font-size: 14px;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.5);
  margin: 0 0 24px 0;
}

.timing-card-features {
  list-style: none;
  padding: 0;
  margin: 0;
  text-align: left;
}

.timing-card-features li {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.6);
  padding: 8px 0;
  padding-left: 24px;
  position: relative;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

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

.timing-card-features li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 16px;
  height: 16px;
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='%2322c55e'%3E%3Cpath d='M12 22C6.47715 22 2 17.5228 2 12C2 6.47715 6.47715 2 12 2C17.5228 2 22 6.47715 22 12C22 17.5228 17.5228 22 12 22ZM11.0026 16L18.0737 8.92893L16.6595 7.51472L11.0026 13.1716L8.17421 10.3431L6.75999 11.7574L11.0026 16Z'/%3E%3C/svg%3E") no-repeat center;
  background-size: contain;
}

/* Timing Responsive */
@media screen and (max-width: 991px) {
  .timing-section-new { padding: 100px 0; }
  .timing-cards-grid { grid-template-columns: 1fr; max-width: 400px; margin: 0 auto; }
  .timing-card-featured { transform: none; }
}

@media screen and (max-width: 767px) {
  .projects-hero-new { padding: 120px 0 60px; min-height: auto; }
  .projects-hero-stats { gap: 24px; }
  .hero-stat-divider { display: none; }
  .projects-filter-header { flex-direction: column; align-items: flex-start; }
}

/* ===========================================
   CONTACT PAGE SECTION
   =========================================== */

.contact-section-new {
  position: relative;
  min-height: 100vh;
  padding: 120px 0 80px;
  overflow: hidden;
  background: #030712;
  display: flex;
  align-items: center;
}

.contact-bg-gradient {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: 
    radial-gradient(ellipse 50% 40% at 20% 30%, rgba(6, 182, 212, 0.12), transparent),
    radial-gradient(ellipse 60% 50% at 80% 70%, rgba(139, 92, 246, 0.08), transparent),
    linear-gradient(180deg, #030712 0%, #0f172a 50%, #030712 100%);
  z-index: 0;
}

.contact-grid-pattern {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-image: 
    linear-gradient(rgba(6, 182, 212, 0.02) 1px, transparent 1px),
    linear-gradient(90deg, rgba(6, 182, 212, 0.02) 1px, transparent 1px);
  background-size: 70px 70px;
  mask-image: radial-gradient(ellipse 70% 50% at 50% 50%, black, transparent);
  z-index: 1;
}

.contact-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(100px);
  opacity: 0.4;
  z-index: 1;
  animation: orbFloat 12s ease-in-out infinite;
}

.contact-orb-1 {
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(6, 182, 212, 0.35), transparent 70%);
  top: -5%;
  right: 10%;
}

.contact-orb-2 {
  width: 350px;
  height: 350px;
  background: radial-gradient(circle, rgba(139, 92, 246, 0.3), transparent 70%);
  bottom: 10%;
  left: -5%;
  animation-delay: -6s;
}

.contact-orb-3 {
  width: 250px;
  height: 250px;
  background: radial-gradient(circle, rgba(236, 72, 153, 0.25), transparent 70%);
  top: 50%;
  left: 30%;
  animation-delay: -3s;
}

.contact-shapes {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 2;
  pointer-events: none;
}

.contact-shape {
  position: absolute;
  border: 1px solid rgba(6, 182, 212, 0.1);
  animation: shapeFloat 20s ease-in-out infinite;
}

.contact-shape-1 {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  top: 20%;
  right: 15%;
}

.contact-shape-2 {
  width: 50px;
  height: 50px;
  border-radius: 12px;
  bottom: 30%;
  left: 10%;
  transform: rotate(45deg);
  animation-delay: -10s;
}

.contact-content-wrapper {
  position: relative;
  z-index: 10;
  width: 100%;
}

/* Contact Layout */
.contact-layout {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 60px;
  align-items: center;
}

/* Contact Info Column */
.contact-info-column {
  padding-right: 40px;
}

.contact-badge-animated {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 10px 20px;
  background: rgba(6, 182, 212, 0.1);
  border: 1px solid rgba(6, 182, 212, 0.2);
  border-radius: 50px;
  margin-bottom: 24px;
  animation: badgeSlideIn 0.8s ease-out forwards;
  opacity: 0;
  transform: translateY(20px);
}

.contact-badge-icon {
  width: 16px;
  height: 16px;
  color: #06b6d4;
}

.contact-badge-animated span:not(.contact-badge-icon) {
  font-size: 14px;
  font-weight: 500;
  color: #06b6d4;
  letter-spacing: 0.5px;
}

.contact-title {
  font-size: clamp(36px, 5vw, 52px);
  font-weight: 800;
  line-height: 1.1;
  color: #ffffff;
  margin: 0 0 20px 0;
}

.contact-title-line {
  display: block;
}

.contact-title-gradient {
  background: linear-gradient(135deg, #06b6d4, #8b5cf6, #06b6d4);
  background-size: 200% 200%;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  animation: gradientFlow 4s ease infinite;
}

.contact-description {
  font-size: 18px;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.6);
  margin: 0 0 40px 0;
}

.contact-description strong {
  color: #06b6d4;
  font-weight: 600;
}

/* Contact Info Cards */
.contact-info-cards {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.contact-info-card {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 16px;
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 14px;
  transition: all 0.3s ease;
}

.contact-info-card:hover {
  background: rgba(255, 255, 255, 0.04);
  border-color: rgba(6, 182, 212, 0.2);
}

.contact-info-icon {
  width: 44px;
  height: 44px;
  background: linear-gradient(135deg, rgba(6, 182, 212, 0.2), rgba(6, 182, 212, 0.05));
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #06b6d4;
  flex-shrink: 0;
}

.contact-info-icon svg {
  width: 22px;
  height: 22px;
}

.contact-info-icon-purple {
  background: linear-gradient(135deg, rgba(139, 92, 246, 0.2), rgba(139, 92, 246, 0.05));
  color: #8b5cf6;
}

.contact-info-icon-green {
  background: linear-gradient(135deg, rgba(34, 197, 94, 0.2), rgba(34, 197, 94, 0.05));
  color: #22c55e;
}

.contact-info-text {
  display: flex;
  flex-direction: column;
}

.contact-info-title {
  font-size: 15px;
  font-weight: 600;
  color: #ffffff;
}

.contact-info-desc {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.5);
}

/* Contact Form Column */
.contact-form-column {
  position: relative;
}

.contact-form-card {
  position: relative;
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 24px;
  padding: 40px;
  overflow: hidden;
}

.contact-form-glow {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 200px;
  background: radial-gradient(ellipse at top, rgba(6, 182, 212, 0.08), transparent 70%);
  pointer-events: none;
}

.contact-form-new {
  position: relative;
  z-index: 1;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin-bottom: 20px;
}

.form-field-new {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.form-field-full {
  grid-column: 1 / -1;
}

.form-label-new {
  font-size: 14px;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.8);
}

.form-input-new {
  padding: 14px 18px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 12px;
  color: #ffffff;
  font-size: 15px;
  transition: all 0.3s ease;
}

.form-input-new::placeholder {
  color: rgba(255, 255, 255, 0.3);
}

.form-input-new:focus {
  outline: none;
  border-color: #06b6d4;
  background: rgba(6, 182, 212, 0.05);
  box-shadow: 0 0 0 4px rgba(6, 182, 212, 0.1);
}

.form-textarea-new {
  padding: 14px 18px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 12px;
  color: #ffffff;
  font-size: 15px;
  min-height: 140px;
  resize: vertical;
  transition: all 0.3s ease;
  font-family: inherit;
}

.form-textarea-new::placeholder {
  color: rgba(255, 255, 255, 0.3);
}

.form-textarea-new:focus {
  outline: none;
  border-color: #06b6d4;
  background: rgba(6, 182, 212, 0.05);
  box-shadow: 0 0 0 4px rgba(6, 182, 212, 0.1);
}

.form-buttons {
  display: flex;
  gap: 16px;
  margin-top: 24px;
}

.form-btn-primary {
  flex: 1;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 16px 24px;
  background: linear-gradient(135deg, #06b6d4, #0891b2);
  color: #ffffff;
  font-size: 15px;
  font-weight: 600;
  border: none;
  border-radius: 12px;
  cursor: pointer;
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  box-shadow: 0 4px 20px rgba(6, 182, 212, 0.3);
}

.form-btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 30px rgba(6, 182, 212, 0.4);
}

.form-btn-secondary {
  flex: 1;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 16px 24px;
  background: rgba(37, 211, 102, 0.1);
  border: 1px solid rgba(37, 211, 102, 0.2);
  color: #25d366;
  font-size: 15px;
  font-weight: 600;
  border-radius: 12px;
  cursor: pointer;
  transition: all 0.3s ease;
}

.form-btn-secondary:hover {
  background: rgba(37, 211, 102, 0.15);
  border-color: rgba(37, 211, 102, 0.3);
}

.form-btn-icon {
  width: 18px;
  height: 18px;
}

.form-btn-icon svg {
  width: 100%;
  height: 100%;
}

/* Success Message */
.form-success-message {
  text-align: center;
  padding: 40px;
}

.success-icon {
  width: 64px;
  height: 64px;
  color: #22c55e;
  margin: 0 auto 20px;
}

.success-icon svg {
  width: 100%;
  height: 100%;
}

.form-success-message h3 {
  font-size: 24px;
  font-weight: 700;
  color: #ffffff;
  margin: 0 0 10px 0;
}

.form-success-message p {
  font-size: 16px;
  color: rgba(255, 255, 255, 0.6);
  margin: 0;
}

/* Contact Responsive */
@media screen and (max-width: 991px) {
  .contact-section-new { padding: 100px 0 60px; }
  .contact-layout {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .contact-info-column {
    padding-right: 0;
    text-align: center;
  }
  .contact-info-cards {
    max-width: 400px;
    margin: 0 auto;
  }
}

@media screen and (max-width: 767px) {
  .contact-section-new { padding: 80px 0 40px; }
  .contact-form-card { padding: 24px; }
  .form-row { grid-template-columns: 1fr; }
  .form-buttons { flex-direction: column; }
}

html {
  -webkit-text-size-adjust: 100%;
  -ms-text-size-adjust: 100%;
  font-family: sans-serif;
}

body {
  margin: 0;
}

article, aside, details, figcaption, figure, footer, header, hgroup, main, menu, nav, section, summary {
  display: block;
}

audio, canvas, progress, video {
  vertical-align: baseline;
  display: inline-block;
}

audio:not([controls]) {
  height: 0;
  display: none;
}

[hidden], template {
  display: none;
}

a {
  background-color: #0000;
}

a:active, a:hover {
  outline: 0;
}

abbr[title] {
  border-bottom: 1px dotted;
}

b, strong {
  font-weight: bold;
}

dfn {
  font-style: italic;
}

h1 {
  margin: .67em 0;
  font-size: 2em;
}

mark {
  color: #000;
  background: #ff0;
}

small {
  font-size: 80%;
}

sub, sup {
  vertical-align: baseline;
  font-size: 75%;
  line-height: 0;
  position: relative;
}

sup {
  top: -.5em;
}

sub {
  bottom: -.25em;
}

img {
  border: 0;
}

svg:not(:root) {
  overflow: hidden;
}

hr {
  box-sizing: content-box;
  height: 0;
}

pre {
  overflow: auto;
}

code, kbd, pre, samp {
  font-family: monospace;
  font-size: 1em;
}

button, input, optgroup, select, textarea {
  color: inherit;
  font: inherit;
  margin: 0;
}

button {
  overflow: visible;
}

button, select {
  text-transform: none;
}

button, html input[type="button"], input[type="reset"] {
  -webkit-appearance: button;
  cursor: pointer;
}

button[disabled], html input[disabled] {
  cursor: default;
}

button::-moz-focus-inner, input::-moz-focus-inner {
  border: 0;
  padding: 0;
}

input {
  line-height: normal;
}

input[type="checkbox"], input[type="radio"] {
  box-sizing: border-box;
  padding: 0;
}

input[type="number"]::-webkit-inner-spin-button, input[type="number"]::-webkit-outer-spin-button {
  height: auto;
}

input[type="search"] {
  -webkit-appearance: none;
}

input[type="search"]::-webkit-search-cancel-button, input[type="search"]::-webkit-search-decoration {
  -webkit-appearance: none;
}

legend {
  border: 0;
  padding: 0;
}

textarea {
  overflow: auto;
}

optgroup {
  font-weight: bold;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
}

td, th {
  padding: 0;
}

@font-face {
  font-family: webflow-icons;
  src: url("data:application/x-font-ttf;charset=utf-8;base64,AAEAAAALAIAAAwAwT1MvMg8SBiUAAAC8AAAAYGNtYXDpP+a4AAABHAAAAFxnYXNwAAAAEAAAAXgAAAAIZ2x5ZmhS2XEAAAGAAAADHGhlYWQTFw3HAAAEnAAAADZoaGVhCXYFgQAABNQAAAAkaG10eCe4A1oAAAT4AAAAMGxvY2EDtALGAAAFKAAAABptYXhwABAAPgAABUQAAAAgbmFtZSoCsMsAAAVkAAABznBvc3QAAwAAAAAHNAAAACAAAwP4AZAABQAAApkCzAAAAI8CmQLMAAAB6wAzAQkAAAAAAAAAAAAAAAAAAAABEAAAAAAAAAAAAAAAAAAAAABAAADpAwPA/8AAQAPAAEAAAAABAAAAAAAAAAAAAAAgAAAAAAADAAAAAwAAABwAAQADAAAAHAADAAEAAAAcAAQAQAAAAAwACAACAAQAAQAg5gPpA//9//8AAAAAACDmAOkA//3//wAB/+MaBBcIAAMAAQAAAAAAAAAAAAAAAAABAAH//wAPAAEAAAAAAAAAAAACAAA3OQEAAAAAAQAAAAAAAAAAAAIAADc5AQAAAAABAAAAAAAAAAAAAgAANzkBAAAAAAEBIAAAAyADgAAFAAAJAQcJARcDIP5AQAGA/oBAAcABwED+gP6AQAABAOAAAALgA4AABQAAEwEXCQEH4AHAQP6AAYBAAcABwED+gP6AQAAAAwDAAOADQALAAA8AHwAvAAABISIGHQEUFjMhMjY9ATQmByEiBh0BFBYzITI2PQE0JgchIgYdARQWMyEyNj0BNCYDIP3ADRMTDQJADRMTDf3ADRMTDQJADRMTDf3ADRMTDQJADRMTAsATDSANExMNIA0TwBMNIA0TEw0gDRPAEw0gDRMTDSANEwAAAAABAJ0AtAOBApUABQAACQIHCQEDJP7r/upcAXEBcgKU/usBFVz+fAGEAAAAAAL//f+9BAMDwwAEAAkAABcBJwEXAwE3AQdpA5ps/GZsbAOabPxmbEMDmmz8ZmwDmvxmbAOabAAAAgAA/8AEAAPAAB0AOwAABSInLgEnJjU0Nz4BNzYzMTIXHgEXFhUUBw4BBwYjNTI3PgE3NjU0Jy4BJyYjMSIHDgEHBhUUFx4BFxYzAgBqXV6LKCgoKIteXWpqXV6LKCgoKIteXWpVSktvICEhIG9LSlVVSktvICEhIG9LSlVAKCiLXl1qal1eiygoKCiLXl1qal1eiygoZiEgb0tKVVVKS28gISEgb0tKVVVKS28gIQABAAABwAIAA8AAEgAAEzQ3PgE3NjMxFSIHDgEHBhUxIwAoKIteXWpVSktvICFmAcBqXV6LKChmISBvS0pVAAAAAgAA/8AFtgPAADIAOgAAARYXHgEXFhUUBw4BBwYHIxUhIicuAScmNTQ3PgE3NjMxOAExNDc+ATc2MzIXHgEXFhcVATMJATMVMzUEjD83NlAXFxYXTjU1PQL8kz01Nk8XFxcXTzY1PSIjd1BQWlJJSXInJw3+mdv+2/7c25MCUQYcHFg5OUA/ODlXHBwIAhcXTzY1PTw1Nk8XF1tQUHcjIhwcYUNDTgL+3QFt/pOTkwABAAAAAQAAmM7nP18PPPUACwQAAAAAANciZKUAAAAA1yJkpf/9/70FtgPDAAAACAACAAAAAAAAAAEAAAPA/8AAAAW3//3//QW2AAEAAAAAAAAAAAAAAAAAAAAMBAAAAAAAAAAAAAAAAgAAAAQAASAEAADgBAAAwAQAAJ0EAP/9BAAAAAQAAAAFtwAAAAAAAAAKABQAHgAyAEYAjACiAL4BFgE2AY4AAAABAAAADAA8AAMAAAAAAAIAAAAAAAAAAAAAAAAAAAAAAAAADgCuAAEAAAAAAAEADQAAAAEAAAAAAAIABwCWAAEAAAAAAAMADQBIAAEAAAAAAAQADQCrAAEAAAAAAAUACwAnAAEAAAAAAAYADQBvAAEAAAAAAAoAGgDSAAMAAQQJAAEAGgANAAMAAQQJAAIADgCdAAMAAQQJAAMAGgBVAAMAAQQJAAQAGgC4AAMAAQQJAAUAFgAyAAMAAQQJAAYAGgB8AAMAAQQJAAoANADsd2ViZmxvdy1pY29ucwB3AGUAYgBmAGwAbwB3AC0AaQBjAG8AbgBzVmVyc2lvbiAxLjAAVgBlAHIAcwBpAG8AbgAgADEALgAwd2ViZmxvdy1pY29ucwB3AGUAYgBmAGwAbwB3AC0AaQBjAG8AbgBzd2ViZmxvdy1pY29ucwB3AGUAYgBmAGwAbwB3AC0AaQBjAG8AbgBzUmVndWxhcgBSAGUAZwB1AGwAYQByd2ViZmxvdy1pY29ucwB3AGUAYgBmAGwAbwB3AC0AaQBjAG8AbgBzRm9udCBnZW5lcmF0ZWQgYnkgSWNvTW9vbi4ARgBvAG4AdAAgAGcAZQBuAGUAcgBhAHQAZQBkACAAYgB5ACAASQBjAG8ATQBvAG8AbgAuAAAAAwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA==") format("truetype");
  font-weight: normal;
  font-style: normal;
}

[class^="w-icon-"], [class*=" w-icon-"] {
  speak: none;
  font-variant: normal;
  text-transform: none;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  font-style: normal;
  font-weight: normal;
  line-height: 1;
  font-family: webflow-icons !important;
}

.w-icon-slider-right:before {
  content: "";
}

.w-icon-slider-left:before {
  content: "";
}

.w-icon-nav-menu:before {
  content: "";
}

.w-icon-arrow-down:before, .w-icon-dropdown-toggle:before {
  content: "";
}

.w-icon-file-upload-remove:before {
  content: "";
}

.w-icon-file-upload-icon:before {
  content: "";
}

* {
  box-sizing: border-box;
}

html {
  height: 100%;
}

body {
  color: #333;
  background-color: #fff;
  min-height: 100%;
  margin: 0;
  font-family: Arial, sans-serif;
  font-size: 14px;
  line-height: 20px;
}

img {
  vertical-align: middle;
  max-width: 100%;
  display: inline-block;
}

html.w-mod-touch * {
  background-attachment: scroll !important;
}

.w-block {
  display: block;
}

.w-inline-block {
  max-width: 100%;
  display: inline-block;
}

.w-clearfix:before, .w-clearfix:after {
  content: " ";
  grid-area: 1 / 1 / 2 / 2;
  display: table;
}

.w-clearfix:after {
  clear: both;
}

.w-hidden {
  display: none;
}

.w-button {
  color: #fff;
  line-height: inherit;
  cursor: pointer;
  background-color: #3898ec;
  border: 0;
  border-radius: 0;
  padding: 9px 15px;
  text-decoration: none;
  display: inline-block;
}

input.w-button {
  -webkit-appearance: button;
}

html[data-w-dynpage] [data-w-cloak] {
  color: #0000 !important;
}

.w-code-block {
  margin: unset;
}

pre.w-code-block code {
  all: inherit;
}

.w-optimization {
  display: contents;
}

.w-webflow-badge, .w-webflow-badge * {
  z-index: auto;
  visibility: visible;
  box-sizing: border-box;
  float: none;
  clear: none;
  box-shadow: none;
  opacity: 1;
  direction: ltr;
  font-family: inherit;
  font-weight: inherit;
  color: inherit;
  font-size: inherit;
  line-height: inherit;
  font-style: inherit;
  font-variant: inherit;
  text-align: inherit;
  letter-spacing: inherit;
  -webkit-text-decoration: inherit;
  text-decoration: inherit;
  text-indent: 0;
  text-transform: inherit;
  text-shadow: none;
  font-smoothing: auto;
  vertical-align: baseline;
  cursor: inherit;
  white-space: inherit;
  word-break: normal;
  word-spacing: normal;
  word-wrap: normal;
  background: none;
  border: 0 #0000;
  border-radius: 0;
  width: auto;
  min-width: 0;
  max-width: none;
  height: auto;
  min-height: 0;
  max-height: none;
  margin: 0;
  padding: 0;
  list-style-type: disc;
  transition: none;
  display: block;
  position: static;
  inset: auto;
  overflow: visible;
  transform: none;
}

.w-webflow-badge {
  white-space: nowrap;
  cursor: pointer;
  box-shadow: 0 0 0 1px #0000001a, 0 1px 3px #0000001a;
  visibility: visible !important;
  z-index: 2147483647 !important;
  color: #aaadb0 !important;
  opacity: 1 !important;
  background-color: #fff !important;
  border-radius: 3px !important;
  width: auto !important;
  height: auto !important;
  margin: 0 !important;
  padding: 6px !important;
  font-size: 12px !important;
  line-height: 14px !important;
  text-decoration: none !important;
  display: inline-block !important;
  position: fixed !important;
  inset: auto 12px 12px auto !important;
  overflow: visible !important;
  transform: none !important;
}

.w-webflow-badge > img {
  visibility: visible !important;
  opacity: 1 !important;
  vertical-align: middle !important;
  display: inline-block !important;
}

h1, h2, h3, h4, h5, h6 {
  margin-bottom: 10px;
  font-weight: bold;
}

h1 {
  margin-top: 20px;
  font-size: 38px;
  line-height: 44px;
}

h2 {
  margin-top: 20px;
  font-size: 32px;
  line-height: 36px;
}

h3 {
  margin-top: 20px;
  font-size: 24px;
  line-height: 30px;
}

h4 {
  margin-top: 10px;
  font-size: 18px;
  line-height: 24px;
}

h5 {
  margin-top: 10px;
  font-size: 14px;
  line-height: 20px;
}

h6 {
  margin-top: 10px;
  font-size: 12px;
  line-height: 18px;
}

p {
  margin-top: 0;
  margin-bottom: 10px;
}

blockquote {
  border-left: 5px solid #e2e2e2;
  margin: 0 0 10px;
  padding: 10px 20px;
  font-size: 18px;
  line-height: 22px;
}

figure {
  margin: 0 0 10px;
}

figcaption {
  text-align: center;
  margin-top: 5px;
}

ul, ol {
  margin-top: 0;
  margin-bottom: 10px;
  padding-left: 40px;
}

.w-list-unstyled {
  padding-left: 0;
  list-style: none;
}

.w-embed:before, .w-embed:after {
  content: " ";
  grid-area: 1 / 1 / 2 / 2;
  display: table;
}

.w-embed:after {
  clear: both;
}

.w-video {
  width: 100%;
  padding: 0;
  position: relative;
}

.w-video iframe, .w-video object, .w-video embed {
  border: none;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
}

fieldset {
  border: 0;
  margin: 0;
  padding: 0;
}

button, [type="button"], [type="reset"] {
  cursor: pointer;
  -webkit-appearance: button;
  border: 0;
}

.w-form {
  margin: 0 0 15px;
}

.w-form-done {
  text-align: center;
  background-color: #ddd;
  padding: 20px;
  display: none;
}

.w-form-fail {
  background-color: #ffdede;
  margin-top: 10px;
  padding: 10px;
  display: none;
}

label {
  margin-bottom: 5px;
  font-weight: bold;
  display: block;
}

.w-input, .w-select {
  color: #333;
  vertical-align: middle;
  background-color: #fff;
  border: 1px solid #ccc;
  width: 100%;
  height: 38px;
  margin-bottom: 10px;
  padding: 8px 12px;
  font-size: 14px;
  line-height: 1.42857;
  display: block;
}

.w-input::placeholder, .w-select::placeholder {
  color: #999;
}

.w-input:focus, .w-select:focus {
  border-color: #3898ec;
  outline: 0;
}

.w-input[disabled], .w-select[disabled], .w-input[readonly], .w-select[readonly], fieldset[disabled] .w-input, fieldset[disabled] .w-select {
  cursor: not-allowed;
}

.w-input[disabled]:not(.w-input-disabled), .w-select[disabled]:not(.w-input-disabled), .w-input[readonly], .w-select[readonly], fieldset[disabled]:not(.w-input-disabled) .w-input, fieldset[disabled]:not(.w-input-disabled) .w-select {
  background-color: #eee;
}

textarea.w-input, textarea.w-select {
  height: auto;
}

.w-select {
  background-color: #f3f3f3;
}

.w-select[multiple] {
  height: auto;
}

.w-form-label {
  cursor: pointer;
  margin-bottom: 0;
  font-weight: normal;
  display: inline-block;
}

.w-radio {
  margin-bottom: 5px;
  padding-left: 20px;
  display: block;
}

.w-radio:before, .w-radio:after {
  content: " ";
  grid-area: 1 / 1 / 2 / 2;
  display: table;
}

.w-radio:after {
  clear: both;
}

.w-radio-input {
  float: left;
  margin: 3px 0 0 -20px;
  line-height: normal;
}

.w-file-upload {
  margin-bottom: 10px;
  display: block;
}

.w-file-upload-input {
  opacity: 0;
  z-index: -100;
  width: .1px;
  height: .1px;
  position: absolute;
  overflow: hidden;
}

.w-file-upload-default, .w-file-upload-uploading, .w-file-upload-success {
  color: #333;
  display: inline-block;
}

.w-file-upload-error {
  margin-top: 10px;
  display: block;
}

.w-file-upload-default.w-hidden, .w-file-upload-uploading.w-hidden, .w-file-upload-error.w-hidden, .w-file-upload-success.w-hidden {
  display: none;
}

.w-file-upload-uploading-btn {
  cursor: pointer;
  background-color: #fafafa;
  border: 1px solid #ccc;
  margin: 0;
  padding: 8px 12px;
  font-size: 14px;
  font-weight: normal;
  display: flex;
}

.w-file-upload-file {
  background-color: #fafafa;
  border: 1px solid #ccc;
  flex-grow: 1;
  justify-content: space-between;
  margin: 0;
  padding: 8px 9px 8px 11px;
  display: flex;
}

.w-file-upload-file-name {
  font-size: 14px;
  font-weight: normal;
  display: block;
}

.w-file-remove-link {
  cursor: pointer;
  width: auto;
  height: auto;
  margin-top: 3px;
  margin-left: 10px;
  padding: 3px;
  display: block;
}

.w-icon-file-upload-remove {
  margin: auto;
  font-size: 10px;
}

.w-file-upload-error-msg {
  color: #ea384c;
  padding: 2px 0;
  display: inline-block;
}

.w-file-upload-info {
  padding: 0 12px;
  line-height: 38px;
  display: inline-block;
}

.w-file-upload-label {
  cursor: pointer;
  background-color: #fafafa;
  border: 1px solid #ccc;
  margin: 0;
  padding: 8px 12px;
  font-size: 14px;
  font-weight: normal;
  display: inline-block;
}

.w-icon-file-upload-icon, .w-icon-file-upload-uploading {
  width: 20px;
  margin-right: 8px;
  display: inline-block;
}

.w-icon-file-upload-uploading {
  height: 20px;
}

.w-container {
  max-width: 940px;
  margin-left: auto;
  margin-right: auto;
}

.w-container:before, .w-container:after {
  content: " ";
  grid-area: 1 / 1 / 2 / 2;
  display: table;
}

.w-container:after {
  clear: both;
}

.w-container .w-row {
  margin-left: -10px;
  margin-right: -10px;
}

.w-row:before, .w-row:after {
  content: " ";
  grid-area: 1 / 1 / 2 / 2;
  display: table;
}

.w-row:after {
  clear: both;
}

.w-row .w-row {
  margin-left: 0;
  margin-right: 0;
}

.w-col {
  float: left;
  width: 100%;
  min-height: 1px;
  padding-left: 10px;
  padding-right: 10px;
  position: relative;
}

.w-col .w-col {
  padding-left: 0;
  padding-right: 0;
}

.w-col-1 {
  width: 8.33333%;
}

.w-col-2 {
  width: 16.6667%;
}

.w-col-3 {
  width: 25%;
}

.w-col-4 {
  width: 33.3333%;
}

.w-col-5 {
  width: 41.6667%;
}

.w-col-6 {
  width: 50%;
}

.w-col-7 {
  width: 58.3333%;
}

.w-col-8 {
  width: 66.6667%;
}

.w-col-9 {
  width: 75%;
}

.w-col-10 {
  width: 83.3333%;
}

.w-col-11 {
  width: 91.6667%;
}

.w-col-12 {
  width: 100%;
}

.w-hidden-main {
  display: none !important;
}

@media screen and (max-width: 991px) {
  .w-container {
    max-width: 728px;
  }

  .w-hidden-main {
    display: inherit !important;
  }

  .w-hidden-medium {
    display: none !important;
  }

  .w-col-medium-1 {
    width: 8.33333%;
  }

  .w-col-medium-2 {
    width: 16.6667%;
  }

  .w-col-medium-3 {
    width: 25%;
  }

  .w-col-medium-4 {
    width: 33.3333%;
  }

  .w-col-medium-5 {
    width: 41.6667%;
  }

  .w-col-medium-6 {
    width: 50%;
  }

  .w-col-medium-7 {
    width: 58.3333%;
  }

  .w-col-medium-8 {
    width: 66.6667%;
  }

  .w-col-medium-9 {
    width: 75%;
  }

  .w-col-medium-10 {
    width: 83.3333%;
  }

  .w-col-medium-11 {
    width: 91.6667%;
  }

  .w-col-medium-12 {
    width: 100%;
  }

  .w-col-stack {
    width: 100%;
    left: auto;
    right: auto;
  }
}

@media screen and (max-width: 767px) {
  .w-hidden-main, .w-hidden-medium {
    display: inherit !important;
  }

  .w-hidden-small {
    display: none !important;
  }

  .w-row, .w-container .w-row {
    margin-left: 0;
    margin-right: 0;
  }

  .w-col {
    width: 100%;
    left: auto;
    right: auto;
  }

  .w-col-small-1 {
    width: 8.33333%;
  }

  .w-col-small-2 {
    width: 16.6667%;
  }

  .w-col-small-3 {
    width: 25%;
  }

  .w-col-small-4 {
    width: 33.3333%;
  }

  .w-col-small-5 {
    width: 41.6667%;
  }

  .w-col-small-6 {
    width: 50%;
  }

  .w-col-small-7 {
    width: 58.3333%;
  }

  .w-col-small-8 {
    width: 66.6667%;
  }

  .w-col-small-9 {
    width: 75%;
  }

  .w-col-small-10 {
    width: 83.3333%;
  }

  .w-col-small-11 {
    width: 91.6667%;
  }

  .w-col-small-12 {
    width: 100%;
  }
}

@media screen and (max-width: 479px) {
  .w-container {
    max-width: none;
  }

  .w-hidden-main, .w-hidden-medium, .w-hidden-small {
    display: inherit !important;
  }

  .w-hidden-tiny {
    display: none !important;
  }

  .w-col {
    width: 100%;
  }

  .w-col-tiny-1 {
    width: 8.33333%;
  }

  .w-col-tiny-2 {
    width: 16.6667%;
  }

  .w-col-tiny-3 {
    width: 25%;
  }

  .w-col-tiny-4 {
    width: 33.3333%;
  }

  .w-col-tiny-5 {
    width: 41.6667%;
  }

  .w-col-tiny-6 {
    width: 50%;
  }

  .w-col-tiny-7 {
    width: 58.3333%;
  }

  .w-col-tiny-8 {
    width: 66.6667%;
  }

  .w-col-tiny-9 {
    width: 75%;
  }

  .w-col-tiny-10 {
    width: 83.3333%;
  }

  .w-col-tiny-11 {
    width: 91.6667%;
  }

  .w-col-tiny-12 {
    width: 100%;
  }
}

.w-widget {
  position: relative;
}

.w-widget-map {
  width: 100%;
  height: 400px;
}

.w-widget-map label {
  width: auto;
  display: inline;
}

.w-widget-map img {
  max-width: inherit;
}

.w-widget-map .gm-style-iw {
  text-align: center;
}

.w-widget-map .gm-style-iw > button {
  display: none !important;
}

.w-widget-twitter {
  overflow: hidden;
}

.w-widget-twitter-count-shim {
  vertical-align: top;
  text-align: center;
  background: #fff;
  border: 1px solid #758696;
  border-radius: 3px;
  width: 28px;
  height: 20px;
  display: inline-block;
  position: relative;
}

.w-widget-twitter-count-shim * {
  pointer-events: none;
  -webkit-user-select: none;
  user-select: none;
}

.w-widget-twitter-count-shim .w-widget-twitter-count-inner {
  text-align: center;
  color: #999;
  font-family: serif;
  font-size: 15px;
  line-height: 12px;
  position: relative;
}

.w-widget-twitter-count-shim .w-widget-twitter-count-clear {
  display: block;
  position: relative;
}

.w-widget-twitter-count-shim.w--large {
  width: 36px;
  height: 28px;
}

.w-widget-twitter-count-shim.w--large .w-widget-twitter-count-inner {
  font-size: 18px;
  line-height: 18px;
}

.w-widget-twitter-count-shim:not(.w--vertical) {
  margin-left: 5px;
  margin-right: 8px;
}

.w-widget-twitter-count-shim:not(.w--vertical).w--large {
  margin-left: 6px;
}

.w-widget-twitter-count-shim:not(.w--vertical):before, .w-widget-twitter-count-shim:not(.w--vertical):after {
  content: " ";
  pointer-events: none;
  border: solid #0000;
  width: 0;
  height: 0;
  position: absolute;
  top: 50%;
  left: 0;
}

.w-widget-twitter-count-shim:not(.w--vertical):before {
  border-width: 4px;
  border-color: #75869600 #5d6c7b #75869600 #75869600;
  margin-top: -4px;
  margin-left: -9px;
}

.w-widget-twitter-count-shim:not(.w--vertical).w--large:before {
  border-width: 5px;
  margin-top: -5px;
  margin-left: -10px;
}

.w-widget-twitter-count-shim:not(.w--vertical):after {
  border-width: 4px;
  border-color: #fff0 #fff #fff0 #fff0;
  margin-top: -4px;
  margin-left: -8px;
}

.w-widget-twitter-count-shim:not(.w--vertical).w--large:after {
  border-width: 5px;
  margin-top: -5px;
  margin-left: -9px;
}

.w-widget-twitter-count-shim.w--vertical {
  width: 61px;
  height: 33px;
  margin-bottom: 8px;
}

.w-widget-twitter-count-shim.w--vertical:before, .w-widget-twitter-count-shim.w--vertical:after {
  content: " ";
  pointer-events: none;
  border: solid #0000;
  width: 0;
  height: 0;
  position: absolute;
  top: 100%;
  left: 50%;
}

.w-widget-twitter-count-shim.w--vertical:before {
  border-width: 5px;
  border-color: #5d6c7b #75869600 #75869600;
  margin-left: -5px;
}

.w-widget-twitter-count-shim.w--vertical:after {
  border-width: 4px;
  border-color: #fff #fff0 #fff0;
  margin-left: -4px;
}

.w-widget-twitter-count-shim.w--vertical .w-widget-twitter-count-inner {
  font-size: 18px;
  line-height: 22px;
}

.w-widget-twitter-count-shim.w--vertical.w--large {
  width: 76px;
}

.w-background-video {
  color: #fff;
  height: 500px;
  position: relative;
  overflow: hidden;
}

.w-background-video > video {
  object-fit: cover;
  z-index: -100;
  background-position: 50%;
  background-size: cover;
  width: 100%;
  height: 100%;
  margin: auto;
  position: absolute;
  inset: -100%;
}

.w-background-video > video::-webkit-media-controls-start-playback-button {
  -webkit-appearance: none;
  display: none !important;
}

.w-background-video--control {
  background-color: #0000;
  padding: 0;
  position: absolute;
  bottom: 1em;
  right: 1em;
}

.w-background-video--control > [hidden] {
  display: none !important;
}

.w-slider {
  text-align: center;
  clear: both;
  -webkit-tap-highlight-color: #0000;
  tap-highlight-color: #0000;
  background: #ddd;
  height: 300px;
  position: relative;
}

.w-slider-mask {
  z-index: 1;
  white-space: nowrap;
  height: 100%;
  display: block;
  position: relative;
  left: 0;
  right: 0;
  overflow: hidden;
}

.w-slide {
  vertical-align: top;
  white-space: normal;
  text-align: left;
  width: 100%;
  height: 100%;
  display: inline-block;
  position: relative;
}

.w-slider-nav {
  z-index: 2;
  text-align: center;
  -webkit-tap-highlight-color: #0000;
  tap-highlight-color: #0000;
  height: 40px;
  margin: auto;
  padding-top: 10px;
  position: absolute;
  inset: auto 0 0;
}

.w-slider-nav.w-round > div {
  border-radius: 100%;
}

.w-slider-nav.w-num > div {
  font-size: inherit;
  line-height: inherit;
  width: auto;
  height: auto;
  padding: .2em .5em;
}

.w-slider-nav.w-shadow > div {
  box-shadow: 0 0 3px #3336;
}

.w-slider-nav-invert {
  color: #fff;
}

.w-slider-nav-invert > div {
  background-color: #2226;
}

.w-slider-nav-invert > div.w-active {
  background-color: #222;
}

.w-slider-dot {
  cursor: pointer;
  background-color: #fff6;
  width: 1em;
  height: 1em;
  margin: 0 3px .5em;
  transition: background-color .1s, color .1s;
  display: inline-block;
  position: relative;
}

.w-slider-dot.w-active {
  background-color: #fff;
}

.w-slider-dot:focus {
  outline: none;
  box-shadow: 0 0 0 2px #fff;
}

.w-slider-dot:focus.w-active {
  box-shadow: none;
}

.w-slider-arrow-left, .w-slider-arrow-right {
  cursor: pointer;
  color: #fff;
  -webkit-tap-highlight-color: #0000;
  tap-highlight-color: #0000;
  -webkit-user-select: none;
  user-select: none;
  width: 80px;
  margin: auto;
  font-size: 40px;
  position: absolute;
  inset: 0;
  overflow: hidden;
}

.w-slider-arrow-left [class^="w-icon-"], .w-slider-arrow-right [class^="w-icon-"], .w-slider-arrow-left [class*=" w-icon-"], .w-slider-arrow-right [class*=" w-icon-"] {
  position: absolute;
}

.w-slider-arrow-left:focus, .w-slider-arrow-right:focus {
  outline: 0;
}

.w-slider-arrow-left {
  z-index: 3;
  right: auto;
}

.w-slider-arrow-right {
  z-index: 4;
  left: auto;
}

.w-icon-slider-left, .w-icon-slider-right {
  width: 1em;
  height: 1em;
  margin: auto;
  inset: 0;
}

.w-slider-aria-label {
  clip: rect(0 0 0 0);
  border: 0;
  width: 1px;
  height: 1px;
  margin: -1px;
  padding: 0;
  position: absolute;
  overflow: hidden;
}

.w-slider-force-show {
  display: block !important;
}

.w-dropdown {
  text-align: left;
  z-index: 900;
  margin-left: auto;
  margin-right: auto;
  display: inline-block;
  position: relative;
}

.w-dropdown-btn, .w-dropdown-toggle, .w-dropdown-link {
  vertical-align: top;
  color: #222;
  text-align: left;
  white-space: nowrap;
  margin-left: auto;
  margin-right: auto;
  padding: 20px;
  text-decoration: none;
  position: relative;
}

.w-dropdown-toggle {
  -webkit-user-select: none;
  user-select: none;
  cursor: pointer;
  padding-right: 40px;
  display: inline-block;
}

.w-dropdown-toggle:focus {
  outline: 0;
}

.w-icon-dropdown-toggle {
  width: 1em;
  height: 1em;
  margin: auto 20px auto auto;
  position: absolute;
  top: 0;
  bottom: 0;
  right: 0;
}

.w-dropdown-list {
  background: #ddd;
  min-width: 100%;
  display: none;
  position: absolute;
}

.w-dropdown-list.w--open {
  display: block;
}

.w-dropdown-link {
  color: #222;
  padding: 10px 20px;
  display: block;
}

.w-dropdown-link.w--current {
  color: #0082f3;
}

.w-dropdown-link:focus {
  outline: 0;
}

@media screen and (max-width: 767px) {
  .w-nav-brand {
    padding-left: 10px;
  }
}

.w-lightbox-backdrop {
  cursor: auto;
  letter-spacing: normal;
  text-indent: 0;
  text-shadow: none;
  text-transform: none;
  visibility: visible;
  white-space: normal;
  word-break: normal;
  word-spacing: normal;
  word-wrap: normal;
  color: #fff;
  text-align: center;
  z-index: 2000;
  opacity: 0;
  -webkit-user-select: none;
  -moz-user-select: none;
  -webkit-tap-highlight-color: transparent;
  background: #000000e6;
  outline: 0;
  font-family: Helvetica Neue, Helvetica, Ubuntu, Segoe UI, Verdana, sans-serif;
  font-size: 17px;
  font-style: normal;
  font-weight: 300;
  line-height: 1.2;
  list-style: disc;
  position: fixed;
  inset: 0;
  -webkit-transform: translate(0);
}

.w-lightbox-backdrop, .w-lightbox-container {
  -webkit-overflow-scrolling: touch;
  height: 100%;
  overflow: auto;
}

.w-lightbox-content {
  height: 100vh;
  position: relative;
  overflow: hidden;
}

.w-lightbox-view {
  opacity: 0;
  width: 100vw;
  height: 100vh;
  position: absolute;
}

.w-lightbox-view:before {
  content: "";
  height: 100vh;
}

.w-lightbox-group, .w-lightbox-group .w-lightbox-view, .w-lightbox-group .w-lightbox-view:before {
  height: 86vh;
}

.w-lightbox-frame, .w-lightbox-view:before {
  vertical-align: middle;
  display: inline-block;
}

.w-lightbox-figure {
  margin: 0;
  position: relative;
}

.w-lightbox-group .w-lightbox-figure {
  cursor: pointer;
}

.w-lightbox-img {
  width: auto;
  max-width: none;
  height: auto;
}

.w-lightbox-image {
  float: none;
  max-width: 100vw;
  max-height: 100vh;
  display: block;
}

.w-lightbox-group .w-lightbox-image {
  max-height: 86vh;
}

.w-lightbox-caption {
  text-align: left;
  text-overflow: ellipsis;
  white-space: nowrap;
  background: #0006;
  padding: .5em 1em;
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  overflow: hidden;
}

.w-lightbox-embed {
  width: 100%;
  height: 100%;
  position: absolute;
  inset: 0;
}

.w-lightbox-control {
  cursor: pointer;
  background-position: center;
  background-repeat: no-repeat;
  background-size: 24px;
  width: 4em;
  transition: all .3s;
  position: absolute;
  top: 0;
}

.w-lightbox-left {
  background-image: url("data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHZpZXdCb3g9Ii0yMCAwIDI0IDQwIiB3aWR0aD0iMjQiIGhlaWdodD0iNDAiPjxnIHRyYW5zZm9ybT0icm90YXRlKDQ1KSI+PHBhdGggZD0ibTAgMGg1djIzaDIzdjVoLTI4eiIgb3BhY2l0eT0iLjQiLz48cGF0aCBkPSJtMSAxaDN2MjNoMjN2M2gtMjZ6IiBmaWxsPSIjZmZmIi8+PC9nPjwvc3ZnPg==");
  display: none;
  bottom: 0;
  left: 0;
}

.w-lightbox-right {
  background-image: url("data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHZpZXdCb3g9Ii00IDAgMjQgNDAiIHdpZHRoPSIyNCIgaGVpZ2h0PSI0MCI+PGcgdHJhbnNmb3JtPSJyb3RhdGUoNDUpIj48cGF0aCBkPSJtMC0waDI4djI4aC01di0yM2gtMjN6IiBvcGFjaXR5PSIuNCIvPjxwYXRoIGQ9Im0xIDFoMjZ2MjZoLTN2LTIzaC0yM3oiIGZpbGw9IiNmZmYiLz48L2c+PC9zdmc+");
  display: none;
  bottom: 0;
  right: 0;
}

.w-lightbox-close {
  background-image: url("data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHZpZXdCb3g9Ii00IDAgMTggMTciIHdpZHRoPSIxOCIgaGVpZ2h0PSIxNyI+PGcgdHJhbnNmb3JtPSJyb3RhdGUoNDUpIj48cGF0aCBkPSJtMCAwaDd2LTdoNXY3aDd2NWgtN3Y3aC01di03aC03eiIgb3BhY2l0eT0iLjQiLz48cGF0aCBkPSJtMSAxaDd2LTdoM3Y3aDd2M2gtN3Y3aC0zdi03aC03eiIgZmlsbD0iI2ZmZiIvPjwvZz48L3N2Zz4=");
  background-size: 18px;
  height: 2.6em;
  right: 0;
}

.w-lightbox-strip {
  white-space: nowrap;
  padding: 0 1vh;
  line-height: 0;
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  overflow: auto hidden;
}

.w-lightbox-item {
  box-sizing: content-box;
  cursor: pointer;
  width: 10vh;
  padding: 2vh 1vh;
  display: inline-block;
  -webkit-transform: translate3d(0, 0, 0);
}

.w-lightbox-active {
  opacity: .3;
}

.w-lightbox-thumbnail {
  background: #222;
  height: 10vh;
  position: relative;
  overflow: hidden;
}

.w-lightbox-thumbnail-image {
  position: absolute;
  top: 0;
  left: 0;
}

.w-lightbox-thumbnail .w-lightbox-tall {
  width: 100%;
  top: 50%;
  transform: translate(0, -50%);
}

.w-lightbox-thumbnail .w-lightbox-wide {
  height: 100%;
  left: 50%;
  transform: translate(-50%);
}

.w-lightbox-spinner {
  box-sizing: border-box;
  border: 5px solid #0006;
  border-radius: 50%;
  width: 40px;
  height: 40px;
  margin-top: -20px;
  margin-left: -20px;
  animation: .8s linear infinite spin;
  position: absolute;
  top: 50%;
  left: 50%;
}

.w-lightbox-spinner:after {
  content: "";
  border: 3px solid #0000;
  border-bottom-color: #fff;
  border-radius: 50%;
  position: absolute;
  inset: -4px;
}

.w-lightbox-hide {
  display: none;
}

.w-lightbox-noscroll {
  overflow: hidden;
}

@media (min-width: 768px) {
  .w-lightbox-content {
    height: 96vh;
    margin-top: 2vh;
  }

  .w-lightbox-view, .w-lightbox-view:before {
    height: 96vh;
  }

  .w-lightbox-group, .w-lightbox-group .w-lightbox-view, .w-lightbox-group .w-lightbox-view:before {
    height: 84vh;
  }

  .w-lightbox-image {
    max-width: 96vw;
    max-height: 96vh;
  }

  .w-lightbox-group .w-lightbox-image {
    max-width: 82.3vw;
    max-height: 84vh;
  }

  .w-lightbox-left, .w-lightbox-right {
    opacity: .5;
    display: block;
  }

  .w-lightbox-close {
    opacity: .8;
  }

  .w-lightbox-control:hover {
    opacity: 1;
  }
}

.w-lightbox-inactive, .w-lightbox-inactive:hover {
  opacity: 0;
}

.w-richtext:before, .w-richtext:after {
  content: " ";
  grid-area: 1 / 1 / 2 / 2;
  display: table;
}

.w-richtext:after {
  clear: both;
}

.w-richtext[contenteditable="true"]:before, .w-richtext[contenteditable="true"]:after {
  white-space: initial;
}

.w-richtext ol, .w-richtext ul {
  overflow: hidden;
}

.w-richtext .w-richtext-figure-selected.w-richtext-figure-type-video div:after, .w-richtext .w-richtext-figure-selected[data-rt-type="video"] div:after, .w-richtext .w-richtext-figure-selected.w-richtext-figure-type-image div, .w-richtext .w-richtext-figure-selected[data-rt-type="image"] div {
  outline: 2px solid #2895f7;
}

.w-richtext figure.w-richtext-figure-type-video > div:after, .w-richtext figure[data-rt-type="video"] > div:after {
  content: "";
  display: none;
  position: absolute;
  inset: 0;
}

.w-richtext figure {
  max-width: 60%;
  position: relative;
}

.w-richtext figure > div:before {
  cursor: default !important;
}

.w-richtext figure img {
  width: 100%;
}

.w-richtext figure figcaption.w-richtext-figcaption-placeholder {
  opacity: .6;
}

.w-richtext figure div {
  color: #0000;
  font-size: 0;
}

.w-richtext figure.w-richtext-figure-type-image, .w-richtext figure[data-rt-type="image"] {
  display: table;
}

.w-richtext figure.w-richtext-figure-type-image > div, .w-richtext figure[data-rt-type="image"] > div {
  display: inline-block;
}

.w-richtext figure.w-richtext-figure-type-image > figcaption, .w-richtext figure[data-rt-type="image"] > figcaption {
  caption-side: bottom;
  display: table-caption;
}

.w-richtext figure.w-richtext-figure-type-video, .w-richtext figure[data-rt-type="video"] {
  width: 60%;
  height: 0;
}

.w-richtext figure.w-richtext-figure-type-video iframe, .w-richtext figure[data-rt-type="video"] iframe {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
}

.w-richtext figure.w-richtext-figure-type-video > div, .w-richtext figure[data-rt-type="video"] > div {
  width: 100%;
}

.w-richtext figure.w-richtext-align-center {
  clear: both;
  margin-left: auto;
  margin-right: auto;
}

.w-richtext figure.w-richtext-align-center.w-richtext-figure-type-image > div, .w-richtext figure.w-richtext-align-center[data-rt-type="image"] > div {
  max-width: 100%;
}

.w-richtext figure.w-richtext-align-normal {
  clear: both;
}

.w-richtext figure.w-richtext-align-fullwidth {
  text-align: center;
  clear: both;
  width: 100%;
  max-width: 100%;
  margin-left: auto;
  margin-right: auto;
  display: block;
}

.w-richtext figure.w-richtext-align-fullwidth > div {
  padding-bottom: inherit;
  display: inline-block;
}

.w-richtext figure.w-richtext-align-fullwidth > figcaption {
  display: block;
}

.w-richtext figure.w-richtext-align-floatleft {
  float: left;
  clear: none;
  margin-right: 15px;
}

.w-richtext figure.w-richtext-align-floatright {
  float: right;
  clear: none;
  margin-left: 15px;
}

.w-nav {
  z-index: 1000;
  background: #ddd;
  position: relative;
}

.w-nav:before, .w-nav:after {
  content: " ";
  grid-area: 1 / 1 / 2 / 2;
  display: table;
}

.w-nav:after {
  clear: both;
}

.w-nav-brand {
  float: left;
  color: #333;
  text-decoration: none;
  position: relative;
}

.w-nav-link {
  vertical-align: top;
  color: #222;
  text-align: left;
  margin-left: auto;
  margin-right: auto;
  padding: 20px;
  text-decoration: none;
  display: inline-block;
  position: relative;
}

.w-nav-link.w--current {
  color: #0082f3;
}

.w-nav-menu {
  float: right;
  position: relative;
}

[data-nav-menu-open] {
  text-align: center;
  background: #c8c8c8;
  min-width: 200px;
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  overflow: visible;
  display: block !important;
}

.w--nav-link-open {
  display: block;
  position: relative;
}

.w-nav-overlay {
  width: 100%;
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  overflow: hidden;
}

.w-nav-overlay [data-nav-menu-open] {
  top: 0;
}

.w-nav[data-animation="over-left"] .w-nav-overlay {
  width: auto;
}

.w-nav[data-animation="over-left"] .w-nav-overlay, .w-nav[data-animation="over-left"] [data-nav-menu-open] {
  z-index: 1;
  top: 0;
  right: auto;
}

.w-nav[data-animation="over-right"] .w-nav-overlay {
  width: auto;
}

.w-nav[data-animation="over-right"] .w-nav-overlay, .w-nav[data-animation="over-right"] [data-nav-menu-open] {
  z-index: 1;
  top: 0;
  left: auto;
}

.w-nav-button {
  float: right;
  cursor: pointer;
  -webkit-tap-highlight-color: #0000;
  tap-highlight-color: #0000;
  -webkit-user-select: none;
  user-select: none;
  padding: 18px;
  font-size: 24px;
  display: none;
  position: relative;
}

.w-nav-button:focus {
  outline: 0;
}

.w-nav-button.w--open {
  color: #fff;
  background-color: #c8c8c8;
}

.w-nav[data-collapse="all"] .w-nav-menu {
  display: none;
}

.w-nav[data-collapse="all"] .w-nav-button, .w--nav-dropdown-open, .w--nav-dropdown-toggle-open {
  display: block;
}

.w--nav-dropdown-list-open {
  position: static;
}

@media screen and (max-width: 991px) {
  .w-nav[data-collapse="medium"] .w-nav-menu {
    display: none;
  }

  .w-nav[data-collapse="medium"] .w-nav-button {
    display: block;
  }
}

@media screen and (max-width: 767px) {
  .w-nav[data-collapse="small"] .w-nav-menu {
    display: none;
  }

  .w-nav[data-collapse="small"] .w-nav-button {
    display: block;
  }

  .w-nav-brand {
    padding-left: 10px;
  }
}

@media screen and (max-width: 479px) {
  .w-nav[data-collapse="tiny"] .w-nav-menu {
    display: none;
  }

  .w-nav[data-collapse="tiny"] .w-nav-button {
    display: block;
  }
}

.w-tabs {
  position: relative;
}

.w-tabs:before, .w-tabs:after {
  content: " ";
  grid-area: 1 / 1 / 2 / 2;
  display: table;
}

.w-tabs:after {
  clear: both;
}

.w-tab-menu {
  position: relative;
}

.w-tab-link {
  vertical-align: top;
  text-align: left;
  cursor: pointer;
  color: #222;
  background-color: #ddd;
  padding: 9px 30px;
  text-decoration: none;
  display: inline-block;
  position: relative;
}

.w-tab-link.w--current {
  background-color: #c8c8c8;
}

.w-tab-link:focus {
  outline: 0;
}

.w-tab-content {
  display: block;
  position: relative;
  overflow: hidden;
}

.w-tab-pane {
  display: none;
  position: relative;
}

.w--tab-active {
  display: block;
}

@media screen and (max-width: 479px) {
  .w-tab-link {
    display: block;
  }
}

.w-ix-emptyfix:after {
  content: "";
}

@keyframes spin {
  0% {
    transform: rotate(0);
  }

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

.w-dyn-empty {
  background-color: #ddd;
  padding: 10px;
}

.w-dyn-hide, .w-dyn-bind-empty, .w-condition-invisible {
  display: none !important;
}

.wf-layout-layout {
  display: grid;
}

.w-code-component > * {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
}

:root {
  --background: var(--blue--background);
  --font--headings: "Plus Jakarta Sans", sans-serif;
  --tittle\<deleted\|variable-9e051cfe\>: var(--neutral--white);
  --font-size-tablet--heading-1: 48px;
  --font-size-mobile--heading-1: 38px;
  --neutral--white: #fff;
  --font-size-desktop--heading-2: 36px;
  --font-size-mobile--heading-2: 32px;
  --font-size-desktop--heading-3: 24px;
  --font-size-tablet--heading-3: 24px;
  --font-size-mobile--heading-3: 24px;
  --font-size-desktop--heading-4: 20px;
  --font-size-tablet--heading-4: 18px;
  --font-size-mobile--heading-4: 20px;
  --font-size-desktop--heading-5: 18px;
  --font-size-tablet--heading-5: 16px;
  --font-size-mobile--heading-5: 18px;
  --font-size-desktop--heading-6: 16px;
  --font-size-tablet--heading-6: 15px;
  --font-size-mobile--heading-6: 18px;
  --font--content: "Plus Jakarta Sans", sans-serif;
  --neutral--300: #d6d7e0;
  --font-size-desktop--content: 16px;
  --blue--light: #12a7e7;
  --font-size-mobile--content: 15px;
  --blue--lighter: #221f26;
  --blue--base: #15141a;
  --blue--dark: #1b1830;
  --black\<deleted\|variable-d93fdeab\>: var(--blue--darker);
  --font-size-tablet--content: 15px;
  --neutral--400: #84889a;
  --width--section-padding-desktop: 96px;
  --width--section-padding-tablet: 64px;
  --width--section-padding-mobile: 0px;
  --blue--background: #0a0911;
  --font-size-desktop--heading-1: 56px;
  --font-size-tablet--heading-2: 32px;
  --width--container-max-width: 1200px;
  --width--container-padding-desktop: 32px;
  --width--container-padding-tablet: 24px;
  --width--container-padding-mobile: 24px;
  --neutral--900: #030407;
  --green--background: #f1f8f4;
  --green--lighter: #d2e9dc;
  --green--light: #9cd3b4;
  --green--base: #3ebb7f;
  --green--dark: #339968;
  --green--darker: #246b49;
  --neutral--100: #e3e5fa;
  --neutral--200: #ebebef;
  --neutral--500: #606476;
  --neutral--600: #3e404c;
  --neutral--700: #24262d;
  --neutral--800: #111418;
  --orange--background: #fef7f1;
  --orange--lighter: #fce5d4;
  --orange--light: #f9c99f;
  --orange--base: #f6a94c;
  --orange--dark: #c98b40;
  --orange--darker: #8c612b;
  --red--background: #fdf2f2;
  --red--lighter: #f8d4d3;
  --red--light: #f19e9d;
  --red--base: #e9423a;
  --red--dark: #bc362f;
  --red--darker: #872522;
  --blue--darker: #1b1830;
}

.w-layout-blockcontainer {
  max-width: 940px;
  margin-left: auto;
  margin-right: auto;
  display: block;
}

.w-layout-grid {
  grid-row-gap: 16px;
  grid-column-gap: 16px;
  grid-template-rows: auto auto;
  grid-template-columns: 1fr 1fr;
  grid-auto-columns: 1fr;
  display: grid;
}

@media screen and (max-width: 991px) {
  .w-layout-blockcontainer {
    max-width: 728px;
  }
}

@media screen and (max-width: 767px) {
  .w-layout-blockcontainer {
    max-width: none;
  }
}

body {
  background-color: var(--background);
  color: #333;
  font-family: Arial, Helvetica Neue, Helvetica, sans-serif;
  font-size: 14px;
  line-height: 20px;
}

h1 {
  font-family: var(--font--headings);
  color: #fff;
  height: auto;
  margin-top: 0;
  margin-bottom: 0;
  font-size: 56px;
  font-weight: 400;
  line-height: 60px;
}

h2 {
  font-family: var(--font--headings);
  color: var(--neutral--white);
  font-size: var(--font-size-desktop--heading-2);
  margin-top: 0;
  margin-bottom: 0;
  font-weight: 400;
  line-height: 40px;
}

h3 {
  font-family: var(--font--headings);
  color: var(--neutral--white);
  font-size: var(--font-size-desktop--heading-3);
  margin-top: 0;
  margin-bottom: 0;
  font-weight: 400;
  line-height: 30px;
}

h4 {
  font-family: var(--font--headings);
  color: var(--neutral--white);
  font-size: var(--font-size-desktop--heading-4);
  margin-top: 0;
  margin-bottom: 0;
  font-weight: 400;
  line-height: 24px;
}

h5 {
  font-family: var(--font--headings);
  color: var(--neutral--white);
  font-size: var(--font-size-desktop--heading-5);
  margin-top: 0;
  margin-bottom: 0;
  font-weight: 400;
  line-height: 20px;
}

h6 {
  font-family: var(--font--headings);
  color: var(--neutral--white);
  font-size: var(--font-size-desktop--heading-6);
  margin-top: 0;
  margin-bottom: 0;
  font-weight: 400;
  line-height: 18px;
}

p {
  font-family: var(--font--content);
  color: var(--neutral--300);
  font-size: var(--font-size-desktop--content);
  margin-bottom: 10px;
}

a {
  font-family: var(--font--content);
  color: var(--blue--light);
  background-color: #0b0c2800;
  text-decoration: none;
}

ul, ol {
  margin-top: 0;
  margin-bottom: 10px;
  padding-left: 40px;
}

img {
  border-radius: 30px;
  width: 100%;
  max-width: 100%;
  display: inline-block;
}

label {
  font-family: var(--font--content);
  color: var(--neutral--white);
  font-size: var(--font-size-desktop--content);
  margin-bottom: 5px;
  font-weight: 400;
  display: block;
}

strong {
  font-weight: bold;
}

em {
  font-style: italic;
}

blockquote {
  font-family: var(--font--content);
  color: var(--neutral--white);
  -webkit-text-stroke-width: 0px;
  -webkit-text-stroke-color: var(--neutral--white);
  border-left: 5px solid #e2e2e2;
  margin-bottom: 10px;
  padding: 10px 20px;
  font-size: 18px;
  font-style: italic;
  line-height: 22px;
  text-decoration: none;
}

.paragraph-large {
  font-family: var(--font--content);
  color: var(--neutral--300);
  font-size: var(--font-size-desktop--content);
  text-align: left;
  align-self: auto;
  width: 100%;
  margin-top: 0;
  margin-bottom: 0;
  font-weight: 400;
  line-height: 24px;
  text-decoration: none;
}

.paragraph-large.align-center {
  text-align: center;
  justify-content: center;
  align-self: auto;
  align-items: center;
  width: 100%;
  display: flex;
}

.paragraph-large.align-left {
  width: 100%;
}

.navbar-main {
  z-index: 99;
  -webkit-text-fill-color: inherit;
  background-color: #02010f1a;
  background-clip: border-box;
  position: fixed;
  inset: 0% 0% auto;
}

.navbar-no-shadow-container {
  z-index: 5;
  border: 1px solid var(--blue--lighter);
  background-color: var(--blue--base);
  border-radius: 999px;
  width: 100%;
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
  padding: 20px;
}

.navbar-wrapper {
  border: 0px none var(--blue--lighter);
  outline-color: var(--blue--dark);
  outline-offset: 0px;
  mix-blend-mode: normal;
  background-color: #09090900;
  border-radius: 0;
  outline-width: 1px;
  outline-style: none;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  max-width: none;
  padding-left: 20px;
  padding-right: 20px;
  display: flex;
}

.utility-page-wrapper {
  border: 0px none var(--black\<deleted\|variable-d93fdeab\>);
  outline-offset: 0px;
  background-color: #02041d00;
  outline: 0 #333;
  flex-flow: column;
  justify-content: center;
  align-items: center;
  width: 100%;
  max-width: none;
  height: auto;
  max-height: none;
  padding-top: 220px;
  padding-bottom: 220px;
  display: flex;
}

.utility-page-content {
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  text-align: center;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 100%;
  display: flex;
  position: relative;
}

.paragraph-regular {
  font-family: var(--font--content);
  color: var(--neutral--300);
  text-align: left;
  justify-content: flex-start;
  align-items: center;
  width: auto;
  height: auto;
  margin-bottom: 0;
  font-size: 16px;
  line-height: 24px;
  display: block;
}

.paragraph-regular.answer {
  margin-top: 10px;
  margin-bottom: 20px;
}

.paragraph-regular.align-left {
  color: var(--neutral--400);
  width: 100%;
}

.footer-social-link-wrapper {
  grid-column-gap: 10px;
  grid-row-gap: 10px;
  text-align: justify;
  justify-content: center;
  align-items: center;
  margin-bottom: 0;
  margin-left: 0;
  padding-top: 0;
  line-height: 20px;
  display: flex;
}

.small-icon {
  background-color: #3ebb7f00;
  border-radius: 0;
  width: 24px;
  min-width: 24px;
  height: 24px;
  min-height: 24px;
}

.utility-page-form {
  flex-direction: column;
  justify-content: center;
  align-items: center;
  display: flex;
}

.section {
  padding: 100px var(--width--section-padding-desktop);
  opacity: 1;
  border: 0 solid #22213300;
  justify-content: center;
  align-items: center;
  width: auto;
  margin-left: 0;
  margin-right: 0;
  display: block;
}

.container-footer {
  grid-column-gap: 20px;
  grid-row-gap: 20px;
  border: 1px solid var(--blue--lighter);
  background-color: var(--blue--base);
  border-radius: 40px;
  flex-flow: column;
  width: 100%;
  height: 50%;
  padding: 40px;
  display: flex;
}

.container-menu {
  grid-column-gap: 40px;
  grid-row-gap: 40px;
  background-color: #13102300;
  border: 1px #332e4c00;
  border-radius: 0;
  flex-flow: row;
  justify-content: center;
  align-items: center;
  padding: 0;
  display: flex;
}

.style-guide-wrapper {
  grid-column-gap: 10px;
  background-color: #fff0;
  flex-flow: column;
  justify-content: center;
  align-items: flex-start;
  width: 100%;
  max-width: none;
  margin-top: 0;
  padding: 0;
  text-decoration: none;
  display: flex;
}

.typhography-block {
  grid-row-gap: 20px;
  flex-flow: wrap;
  justify-content: space-between;
  align-self: flex-start;
  align-items: center;
  width: 100%;
  text-decoration: none;
  display: flex;
}

.typhography-block.two {
  flex-flow: row;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  display: flex;
}

.style-guide-block {
  grid-row-gap: 20px;
  border: 1px solid var(--blue--lighter);
  background-color: var(--blue--base);
  border-radius: 20px;
  flex-flow: column;
  order: 0;
  justify-content: space-between;
  align-self: flex-start;
  align-items: flex-start;
  width: 100%;
  margin-top: 10px;
  margin-bottom: 10px;
  padding: 20px;
  text-decoration: none;
  display: block;
}

.style-guide-small-title {
  font-family: var(--font--content);
  color: var(--neutral--white);
  font-size: var(--font-size-desktop--content);
  font-weight: 400;
  line-height: 20px;
}

.button-block-grid {
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr;
  width: 100%;
}

.button-holder {
  background-color: var(--blue--background);
  border-radius: 20px;
  justify-content: space-around;
  align-items: center;
  padding: 40px;
  display: flex;
}

.link-bakground {
  background-color: var(--blue--base);
  font-family: var(--font--content);
  color: var(--neutral--white);
  border-radius: 15px;
  padding: 12px;
  text-decoration: none;
}

.link-underliine {
  font-style: italic;
}

.rich-text {
  font-family: var(--font--content);
  color: var(--neutral--white);
  text-align: left;
}

.rich-text h1 {
  font-family: var(--font--headings);
  font-size: var(--font-size-desktop--heading-1);
  text-align: left;
  margin-top: 10px;
  margin-bottom: 10px;
  font-weight: 400;
}

.rich-text h2 {
  font-size: var(--font-size-desktop--heading-2);
  text-align: left;
  margin-top: 10px;
  margin-bottom: 10px;
  font-weight: 400;
  overflow: visible;
}

.rich-text h3 {
  text-align: left;
  margin-top: 10px;
  margin-bottom: 10px;
  font-weight: 400;
}

.rich-text h4 {
  font-family: var(--font--headings);
  font-size: var(--font-size-desktop--heading-4);
  text-align: left;
  margin-top: 10px;
  margin-bottom: 10px;
  font-weight: 400;
}

.rich-text h5 {
  font-family: var(--font--headings);
  font-size: var(--font-size-desktop--heading-5);
  margin-top: 10px;
  margin-bottom: 10px;
  font-weight: 400;
}

.rich-text h6 {
  font-size: var(--font-size-desktop--heading-6);
  margin-top: 10px;
  margin-bottom: 10px;
  font-weight: 400;
}

.rich-text p {
  color: var(--neutral--300);
  text-align: left;
  margin-top: 10px;
  margin-bottom: 10px;
}

.rich-text blockquote {
  text-align: left;
}

.rich-text a {
  color: var(--neutral--white);
  -webkit-text-stroke-color: var(--neutral--white);
  font-style: italic;
  text-decoration: none;
}

.template-icon-block {
  float: none;
  background-color: var(--blue--light);
  direction: ltr;
  text-align: left;
  text-transform: none;
  border-radius: 15px;
  justify-content: center;
  align-self: auto;
  align-items: center;
  width: 50px;
  height: 50px;
  display: flex;
  position: relative;
}

.sub-heading-large {
  font-family: var(--font--headings);
  color: var(--neutral--white);
  text-align: left;
  font-size: 20px;
  font-weight: 400;
  line-height: 24px;
}

.sub-heading-regular {
  font-family: var(--font--headings);
  color: var(--neutral--white);
  text-align: left;
  justify-content: flex-start;
  align-items: center;
  width: auto;
  font-size: 20px;
  font-weight: 400;
  line-height: 24px;
  display: block;
}

.sub-heading-small {
  font-family: var(--font--headings);
  color: var(--neutral--white);
  text-align: left;
  margin-top: 0;
  margin-bottom: 0;
  font-size: 16px;
  font-weight: 400;
  line-height: 24px;
}

.paragraph-small {
  color: var(--neutral--300);
  text-align: left;
  align-self: center;
  width: 100%;
  margin-bottom: 0;
  font-size: 14px;
  line-height: 24px;
  display: block;
}

._404-container {
  grid-column-gap: 20px;
  grid-row-gap: 20px;
  flex-flow: column;
  justify-content: center;
  align-items: center;
  margin-top: 220px;
  margin-bottom: 220px;
  display: block;
}

.styleguide-subheading {
  background-color: var(--blue--light);
  font-family: var(--font--content);
  color: var(--neutral--white);
  border-radius: 10px;
  padding: 10px;
  display: block;
}

.section-tittle {
  grid-column-gap: 18px;
  grid-row-gap: 18px;
  text-align: center;
  flex-flow: column;
  justify-content: center;
  align-items: center;
  margin-top: 0;
  margin-bottom: 40px;
  display: flex;
}

.section-tittle.two {
  grid-column-gap: 18px;
  grid-row-gap: 18px;
  flex-flow: column;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr;
  grid-auto-columns: 1fr;
  justify-content: center;
  align-items: flex-start;
  margin-bottom: 0;
  padding-left: 0;
  padding-right: 0;
  display: flex;
}

.heading-style-h1 {
  font-size: var(--font-size-desktop--heading-1);
  text-align: left;
  width: 100%;
  margin-top: 0;
  margin-bottom: 0;
}

.heading-style-h1.align-center {
  text-align: center;
  width: 70%;
}

.heading-style-h2 {
  text-align: left;
  width: 100%;
  margin-top: 0;
  margin-bottom: 0;
}

.heading-style-h2.align-center {
  text-align: center;
  width: 100%;
}

.heading-style-h3 {
  color: var(--neutral--white);
  text-align: left;
  margin-top: 0;
  margin-bottom: 0;
  font-weight: 400;
}

.heading-style-h4 {
  font-family: var(--font--headings);
  color: var(--neutral--white);
  font-size: var(--font-size-desktop--heading-4);
  text-align: left;
  margin-top: 0;
  margin-bottom: 0;
  font-weight: 400;
}

.heading-style-h5 {
  font-family: var(--font--headings);
  color: var(--neutral--white);
  font-size: var(--font-size-desktop--heading-5);
  text-align: left;
  margin-top: 0;
  margin-bottom: 0;
  font-weight: 400;
}

.heading-style-h6 {
  color: var(--neutral--white);
  font-size: var(--font-size-desktop--heading-6);
  text-align: center;
  margin-top: 0;
  margin-bottom: 0;
  font-weight: 400;
}

.container-changelog {
  grid-column-gap: 20px;
  grid-row-gap: 20px;
  flex-flow: column;
  justify-content: center;
  align-items: center;
  margin-top: 100px;
  margin-bottom: 100px;
  display: flex;
}

.container-medium {
  max-width: var(--width--container-max-width);
  padding-right: var(--width--container-padding-desktop);
  padding-left: var(--width--container-padding-desktop);
  grid-row-gap: 40px;
  background-color: #fff0;
  flex-direction: column;
  justify-content: center;
  align-self: auto;
  align-items: center;
  width: 100%;
  text-decoration: none;
  display: block;
  position: relative;
  overflow: hidden;
}

.hero-tittle {
  grid-column-gap: 20px;
  grid-row-gap: 20px;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  width: 100%;
  margin-bottom: 50px;
  text-decoration: none;
  display: flex;
}

.badge {
  grid-column-gap: 5px;
  border: 1px none var(--blue--lighter);
  background-color: var(--blue--base);
  -webkit-text-stroke-width: 0px;
  border-radius: 99px;
  flex: 0 auto;
  justify-content: center;
  align-items: center;
  padding: 6px 15px;
  text-decoration: none;
  display: flex;
}

.line {
  grid-row-gap: 100px;
  background-color: var(--blue--lighter);
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 100%;
  max-width: none;
  height: 1px;
  margin-top: 10px;
  margin-bottom: 10px;
  padding-bottom: 0;
  display: flex;
}

.image-testimonials {
  grid-column-gap: 10px;
  object-fit: cover;
  border-radius: 99px;
  flex: 0 auto;
  justify-content: center;
  align-items: flex-start;
  width: 40px;
  max-width: 40px;
  height: 40px;
  text-decoration: none;
  display: block;
}

.padding-global {
  box-sizing: border-box;
  padding-right: var(--width--container-padding-desktop);
  padding-left: var(--width--container-padding-desktop);
  text-align: center;
  object-fit: fill;
  flex-flow: column;
  justify-content: center;
  align-items: center;
  width: 100%;
  margin-left: auto;
  margin-right: auto;
  display: block;
  position: relative;
  overflow: visible;
}

.list-item-2, .list-item-3, .list-item-4 {
  text-align: left;
}

.form {
  grid-column-gap: 20px;
  grid-row-gap: 20px;
  flex-flow: column;
  grid-template-rows: auto minmax(auto, 1fr);
  grid-template-columns: 1fr 1fr;
  grid-auto-columns: 1fr;
  justify-content: center;
  place-items: center stretch;
  width: 100%;
  display: flex;
}

.form-block {
  width: 70%;
}

.text-field {
  background-color: var(--blue--base);
  outline-color: var(--blue--lighter);
  outline-offset: 0px;
  font-family: var(--font--content);
  color: var(--neutral--400);
  border: 0 #000;
  border-radius: 10px;
  outline-width: 1px;
  outline-style: solid;
  flex: 0 auto;
  height: 40px;
  margin-bottom: 0;
  padding-top: 0;
  padding-bottom: 0;
}

.text-field:focus-visible {
  color: var(--neutral--300);
}

.text-field[data-wf-focus-visible] {
  color: var(--neutral--300);
}

.text-field::placeholder {
  color: var(--neutral--400);
}

.text-field.message {
  text-align: left;
  flex: 0 auto;
  order: 0;
  align-self: auto;
  height: 200px;
  padding-bottom: 160px;
  text-decoration: none;
}

.form-column {
  grid-column-gap: 10px;
  grid-row-gap: 10px;
  flex-flow: column;
  justify-content: center;
  align-items: flex-start;
  width: 100%;
  display: flex;
}

.column-form {
  grid-column-gap: 20px;
  grid-row-gap: 20px;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  display: flex;
}

.typhography-block-grid {
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr;
  grid-auto-columns: 1fr;
  grid-auto-flow: row;
  padding-top: 20px;
  padding-bottom: 20px;
  display: grid;
}

.typhography-details {
  font-family: var(--font--headings);
  color: var(--neutral--white);
  font-size: var(--font-size-desktop--content);
  text-align: center;
  flex-flow: wrap;
  flex: 0 auto;
  justify-content: space-between;
  align-items: center;
  display: block;
}

.typhography-details.black {
  color: var(--neutral--900);
}

.block-title-wrapper {
  grid-column-gap: 16px;
  grid-row-gap: 16px;
  text-align: left;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr;
  grid-auto-columns: 1fr;
  padding-top: 10px;
  padding-bottom: 10px;
  display: block;
}

.typhography-block-tittle {
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr 1fr 1fr;
}

.color-block {
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  background-color: var(--blue--light);
  border-radius: 20px;
  flex-flow: column;
  grid-template-rows: auto auto;
  grid-template-columns: 1fr 1fr;
  grid-auto-columns: 1fr;
  justify-content: space-between;
  align-items: stretch;
  width: 100%;
  height: 140px;
  padding: 20px;
  display: flex;
}

.color-block.black {
  background-color: var(--blue--base);
}

.color-block.outline {
  background-color: var(--blue--lighter);
}

.color-block.white {
  background-color: var(--neutral--white);
}

.license-guide-wrapper {
  margin-top: 0;
}

.text-field.message {
  padding-top: 20px;
  padding-left: 20px;
  padding-right: 20px;
}

.hero-section {
  padding: 100px var(--width--section-padding-desktop);
  grid-row-gap: 10px;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 100%;
  max-width: none;
  margin-top: 100px;
  text-decoration: none;
  display: block;
}

.button {
  grid-column-gap: 10px;
  border: 1px none var(--blue--lighter);
  background-color: var(--blue--light);
  border-radius: 99px;
  flex: 0 auto;
  justify-content: center;
  align-items: center;
  width: auto;
  height: auto;
  padding: 13px 15px;
  text-decoration: none;
  display: flex;
}

.button.secondary {
  background-color: var(--blue--base);
  color: var(--neutral--300);
  border-style: solid;
}

.grid-testimonials {
  grid-column-gap: 20px;
  grid-row-gap: 20px;
  flex-wrap: wrap;
  grid-template-rows: auto auto;
  grid-template-columns: 1fr 1fr;
  grid-auto-columns: 1fr;
  grid-auto-flow: row;
  justify-content: center;
  place-items: center;
  width: 100%;
  text-decoration: none;
  display: grid;
}

.testimonial-card {
  grid-row-gap: 20px;
  border: 1px solid var(--blue--lighter);
  background-color: var(--blue--base);
  border-radius: 20px;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 100%;
  max-width: none;
  padding: 34px;
  text-decoration: none;
  display: flex;
}

.container-testimonial {
  grid-row-gap: 20px;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  width: 100%;
  max-width: none;
  text-decoration: none;
  display: flex;
}

.home-testimonial-client {
  grid-column-gap: 10px;
  justify-content: flex-start;
  align-items: center;
  width: 100%;
  text-decoration: none;
  display: flex;
}

.tittle-testimonial {
  grid-row-gap: 0px;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  width: 100%;
  text-decoration: none;
  display: flex;
}

.cta {
  grid-column-gap: 50px;
  grid-row-gap: 20px;
  border: 1px solid var(--blue--lighter);
  background-color: #12a7e7;
  background-image: url("../images/background-20-3-.png");
  background-position: 50% 100%;
  background-size: cover;
  border-radius: 40px;
  flex-flow: column;
  justify-content: center;
  align-items: center;
  width: 100%;
  margin-bottom: 0;
  padding: 70px 50px;
  text-decoration: none;
  display: flex;
}

.footer-wrapper {
  flex-flow: row;
  justify-content: space-between;
  align-self: center;
  align-items: center;
  width: 100%;
  text-decoration: none;
  display: flex;
}

.menu-link {
  grid-column-gap: 5px;
  grid-row-gap: 16px;
  border-radius: 0;
  flex-flow: row;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr 1fr 1fr 1fr;
  grid-auto-columns: 1fr;
  justify-content: center;
  align-items: center;
  width: auto;
  padding: 5px;
  text-decoration: none;
  display: flex;
}

.menu-link.footer {
  padding-top: 1px;
  padding-bottom: 1px;
}

.icon-wrapper {
  grid-row-gap: 0px;
  border: 1px solid var(--blue--lighter);
  background-color: var(--blue--base);
  -webkit-backdrop-filter: blur(20px);
  backdrop-filter: blur(20px);
  border-radius: 99px;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 40px;
  height: 40px;
  text-decoration: none;
  display: flex;
}

.navbar-no-shadow {
  margin-top: 20px;
}

.container-regular {
  width: 100%;
  max-width: 1260px;
  min-height: 30px;
  margin-left: auto;
  margin-right: auto;
}

.navbar-menu {
  grid-column-gap: 10px;
  grid-row-gap: 10px;
  justify-content: center;
  align-items: center;
  margin-bottom: 0;
  padding-bottom: 0;
  padding-left: 0;
  list-style-type: none;
  display: flex;
}

.navbar-button-wrapper {
  margin-left: 120px;
}

.navbar-link {
  color: var(--neutral--300);
  justify-content: center;
  align-items: center;
  width: auto;
  padding: 12px;
  display: block;
}

.navbar-link:hover {
  color: var(--neutral--400);
  text-align: center;
  font-size: 14px;
  display: block;
}

.navbar-link.w--current {
  padding: 12px;
}

.footer-bottom-wrapper {
  justify-content: center;
  align-items: center;
  display: flex;
}

.navbar-wrapper {
  padding-left: 0;
  padding-right: 0;
}

.collection-item {
  grid-column-gap: 16px;
  grid-row-gap: 16px;
  grid-template-rows: auto auto;
  grid-template-columns: 1fr;
  grid-auto-columns: 1fr;
  display: block;
}

.footer-credit-text {
  text-align: left;
  width: 100%;
  margin-bottom: 0;
}

.icon {
  justify-content: center;
  align-items: center;
  width: 24px;
  min-width: 24px;
  height: 24px;
  min-height: 24px;
  display: block;
}

.logo {
  width: 160px;
  height: auto;
}

.faq-accordion {
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  border: 1px solid var(--blue--lighter);
  background-color: var(--blue--base);
  border-radius: 20px;
  flex-flow: column;
  padding: 0;
  display: flex;
}

.faq-question {
  justify-content: space-between;
  margin-bottom: 0;
  padding: 20px;
  display: flex;
}

.faq-answer {
  margin-top: 0;
  margin-bottom: 0;
  padding: 0 20px;
  display: flex;
  overflow: hidden;
}

.faq-list {
  grid-column-gap: 16px;
  grid-row-gap: 16px;
  grid-template-rows: auto;
  grid-template-columns: 1fr;
  grid-auto-columns: 1fr;
  display: grid;
}

.container-form {
  justify-content: center;
  align-items: center;
  width: 100%;
  display: flex;
}

.background {
  z-index: -2;
  max-width: none;
  position: absolute;
  inset: 0%;
}

.content-features {
  grid-column-gap: 20px;
  grid-row-gap: 20px;
  flex-flow: column;
  grid-template-rows: auto auto auto auto;
  grid-template-columns: 1fr;
  grid-auto-columns: 1fr;
  justify-content: center;
  align-items: flex-start;
  width: 100%;
  display: flex;
}

.trusted-campanies-column {
  grid-column-gap: 20px;
  grid-row-gap: 20px;
  flex-flow: column;
  justify-content: center;
  align-items: flex-start;
  width: 100%;
  margin-top: 40px;
  display: flex;
}

.icon-wrapper-reviews {
  grid-column-gap: 20px;
  grid-row-gap: 20px;
  flex-flow: row;
  justify-content: flex-start;
  align-items: center;
  width: 100%;
  display: flex;
}

.password-container {
  grid-column-gap: 20px;
  grid-row-gap: 20px;
  flex-flow: column;
  justify-content: center;
  align-items: center;
  width: 100%;
  padding-bottom: 0;
  display: flex;
}

.list-item {
  flex-flow: wrap;
  justify-content: space-between;
  align-items: center;
  display: block;
}

.card-project {
  grid-column-gap: 20px;
  grid-row-gap: 20px;
  font-family: var(--font--content);
  flex-flow: column;
  justify-content: center;
  align-items: center;
  width: 100%;
  padding: 0;
  display: flex;
}

.card-project.w--current {
  grid-column-gap: 14px;
  grid-row-gap: 14px;
}

.tumbnail-project {
  border: 1px solid var(--blue--lighter);
  border-radius: 24px;
  width: 100%;
  max-width: none;
  height: auto;
  overflow: hidden;
}

.project-wrapper {
  grid-column-gap: 10px;
  grid-row-gap: 10px;
  flex-flow: column;
  order: 0;
  width: 100%;
  display: flex;
}

.column-tittle-project {
  grid-column-gap: 20px;
  grid-row-gap: 20px;
  justify-content: space-between;
  align-items: center;
  display: flex;
}

.project {
  grid-column-gap: 20px;
  grid-row-gap: 20px;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr 1fr;
  grid-auto-columns: 1fr;
  display: grid;
}

.grid {
  grid-column-gap: 20px;
  grid-row-gap: 20px;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1.25fr 1fr;
  grid-auto-columns: 1fr;
  display: grid;
}

.grid.two {
  grid-template-rows: auto auto;
  grid-template-columns: 1fr 1fr 1fr;
}

.card-features {
  grid-column-gap: 20px;
  grid-row-gap: 20px;
  background-color: var(--blue--base);
  border-radius: 24px;
  flex-flow: column;
  justify-content: center;
  align-items: center;
  padding: 24px;
  display: flex;
}

.number {
  border: 1px solid var(--blue--lighter);
  border-radius: 99px;
  justify-content: center;
  align-self: auto;
  align-items: center;
  width: 40px;
  height: 40px;
  display: flex;
}

.image-experience {
  object-fit: cover;
  width: 100%;
  height: 300px;
}

.tittle-wrapper {
  grid-column-gap: 20px;
  grid-row-gap: 20px;
  grid-template-rows: auto auto;
  grid-template-columns: 1fr 1fr;
  grid-auto-columns: 1fr;
  justify-content: space-between;
  align-items: flex-end;
  width: 100%;
  margin-bottom: 50px;
  display: flex;
}

.button-wrapper {
  grid-column-gap: 20px;
  grid-row-gap: 20px;
  display: flex;
}

.hero-grid {
  grid-column-gap: 40px;
  grid-row-gap: 40px;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr;
  grid-auto-columns: 1fr;
  place-items: stretch stretch;
  width: 100%;
  display: grid;
  position: relative;
}

.icon-features {
  align-self: auto;
  width: 30px;
  height: 30px;
}

.hero-image {
  border-radius: 999px;
  width: 400px;
  height: auto;
}

.hero-image-warapper {
  border: 1px solid var(--blue--lighter);
  border-radius: 999px;
  padding: 24px;
  position: relative;
}

.content-hero {
  border: 1px solid var(--blue--lighter);
  background-color: var(--blue--base);
  border-radius: 20px;
  flex-flow: row;
  justify-content: center;
  align-items: center;
  width: 100%;
  padding: 24px;
  display: flex;
  position: absolute;
  inset: auto 0% 0%;
}

.tittle-hero-content {
  grid-column-gap: 20px;
  grid-row-gap: 20px;
  flex-flow: row;
  justify-content: center;
  align-items: center;
  width: 100%;
  display: flex;
}

.icon-wrapper-hero {
  grid-column-gap: 10px;
  grid-row-gap: 10px;
  justify-content: space-between;
  display: flex;
}

.trusted-companies-logo {
  grid-column-gap: 20px;
  grid-row-gap: 20px;
  display: flex;
}

.image-hero-loop {
  width: 100px;
  position: absolute;
  inset: 0% 0% auto auto;
}

.project-list-wrapper {
  width: 100%;
  display: block;
}

.container-project {
  border: 1px solid var(--blue--lighter);
  background-color: var(--blue--background);
  border-radius: 40px;
  flex-flow: column;
  justify-content: center;
  align-items: flex-start;
  margin-top: 60px;
  padding: 24px;
  display: flex;
}

.rich-text-block {
  font-family: var(--font--content);
  color: var(--neutral--300);
  text-align: left;
  margin-top: 10px;
}

.column-badge {
  grid-column-gap: 20px;
  grid-row-gap: 20px;
  display: flex;
}

.project-templates-wrapper {
  grid-column-gap: 40px;
  grid-row-gap: 40px;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1.5fr .5fr;
  grid-auto-columns: 1fr;
  width: 100%;
  display: grid;
}

.button-column {
  justify-content: space-between;
  align-items: center;
  display: flex;
}

.column-project-badge {
  grid-column-gap: 10px;
  grid-row-gap: 10px;
  display: flex;
}

.image-tumbnail-project {
  width: 100%;
}

@media screen and (min-width: 1440px) {
  h1 {
    color: var(--tittle\<deleted\|variable-9e051cfe\>);
  }

  blockquote {
    color: var(--neutral--300);
  }

  .navbar-main {
    background-color: #02010f00;
  }

  .navbar-no-shadow-container {
    width: auto;
    max-width: 1400px;
    padding-left: 60px;
    padding-right: 60px;
  }

  .paragraph-regular {
    width: auto;
  }

  .section {
    text-align: center;
    border-width: 0;
    justify-content: center;
    align-items: center;
    margin-left: 0;
    margin-right: 0;
    padding-top: 100px;
    padding-bottom: 100px;
    display: block;
    overflow: hidden;
  }

  .section-tittle {
    margin-bottom: 30px;
  }

  .heading-style-h1 {
    width: 100%;
  }

  .container-medium {
    grid-column-gap: 40px;
    grid-row-gap: 40px;
    flex-flow: column;
    display: block;
    overflow: visible;
  }

  .padding-global {
    aspect-ratio: auto;
    flex-flow: column;
    justify-content: center;
    align-items: center;
    text-decoration: none;
    display: flex;
    overflow: visible;
  }

  .license-guide-wrapper {
    flex-flow: column;
    justify-content: center;
    align-items: center;
    width: 100%;
    display: flex;
  }

  .hero-section {
    max-width: none;
  }
}

@media screen and (max-width: 991px) {
  h1 {
    font-size: var(--font-size-tablet--heading-1);
  }

  h3 {
    font-size: var(--font-size-tablet--heading-3);
  }

  h4 {
    font-size: var(--font-size-tablet--heading-4);
  }

  h5 {
    font-size: var(--font-size-tablet--heading-5);
  }

  h6 {
    font-size: var(--font-size-tablet--heading-6);
  }

  img {
    border-radius: 15px;
  }

  .paragraph-large.align-center {
    width: 80%;
  }

  .paragraph-regular {
    font-size: var(--font-size-tablet--content);
    text-align: left;
    width: 100%;
  }

  .footer-social-link-wrapper {
    justify-content: center;
    align-items: center;
    width: 100%;
    margin-top: 0;
    margin-left: 0;
  }

  .section {
    padding: 50px var(--width--section-padding-tablet);
  }

  .container-footer {
    flex-flow: column;
    height: auto;
  }

  .container-menu {
    grid-column-gap: 20px;
    grid-row-gap: 20px;
    padding-left: 0;
    padding-right: 0;
  }

  .button-holder {
    grid-column-gap: 20px;
    grid-row-gap: 20px;
    flex-flow: column;
    padding: 10px;
  }

  .rich-text h1 {
    font-size: var(--font-size-tablet--heading-1);
  }

  .rich-text h2 {
    font-size: var(--font-size-tablet--heading-2);
  }

  .rich-text h3 {
    font-size: var(--font-size-desktop--heading-4);
  }

  .rich-text h5 {
    font-size: var(--font-size-tablet--heading-5);
  }

  .rich-text h6 {
    font-size: var(--font-size-tablet--heading-6);
  }

  .sub-heading-regular {
    justify-content: flex-start;
    align-items: center;
  }

  .section-tittle {
    font-size: var(--font-size-tablet--heading-2);
    text-align: center;
    align-self: center;
  }

  .section-tittle.two {
    width: 100%;
  }

  .heading-style-h1 {
    font-size: var(--font-size-tablet--heading-1);
    width: 100%;
  }

  .heading-style-h2 {
    width: 100%;
  }

  .heading-style-h2.align-center {
    width: 95%;
  }

  .container-medium, .padding-global {
    padding-right: var(--width--container-padding-tablet);
    padding-left: var(--width--container-padding-tablet);
  }

  .form-block {
    width: 100%;
  }

  .typhography-block-tittle {
    grid-template-rows: auto auto;
    grid-template-columns: 1fr 1fr;
  }

  .hero-section {
    padding-right: var(--width--section-padding-tablet);
    padding-left: var(--width--section-padding-tablet);
  }

  .button {
    font-size: 14px;
  }

  .grid-testimonials {
    grid-column-gap: 20px;
    grid-row-gap: 16px;
    grid-template-rows: auto auto;
    grid-template-columns: 1fr 1fr;
    grid-auto-columns: 1fr;
    grid-auto-flow: row;
    justify-items: center;
    display: grid;
  }

  .testimonial-card {
    padding: 24px;
  }

  .cta {
    padding-left: 40px;
    padding-right: 40px;
  }

  .footer-wrapper {
    grid-column-gap: 20px;
    grid-row-gap: 20px;
    flex-flow: column;
  }

  .menu-link {
    justify-content: flex-end;
    align-items: center;
    width: 100%;
  }

  .navbar-no-shadow {
    margin-top: 10px;
    margin-left: 10px;
    margin-right: 10px;
  }

  .navbar-menu-wrapper {
    background-color: #0000;
  }

  .navbar-menu {
    background-color: #fff0;
    flex-wrap: wrap;
    justify-content: space-around;
    align-items: center;
    margin-top: 10px;
    padding-left: 0;
    display: flex;
  }

  .navbar-button-wrapper {
    width: 100%;
    margin-left: 0;
  }

  .menu-button {
    padding: 12px;
  }

  .menu-button.w--open {
    color: #fff;
    background-color: #a6b1bf00;
  }

  .background {
    width: 100%;
    height: auto;
    inset: 10% 0% auto;
  }

  .content-features {
    grid-column-gap: 20px;
    grid-row-gap: 20px;
  }

  .project {
    grid-column-gap: 20px;
    grid-row-gap: 20px;
    grid-template-rows: auto auto;
    grid-template-columns: 1fr 1fr;
    grid-auto-flow: row dense;
    width: 100%;
  }

  .grid {
    grid-template-columns: 1fr 1fr;
  }

  .grid.two {
    grid-template-rows: auto auto auto;
    grid-template-columns: 1fr 1fr;
  }

  .image-experience {
    height: auto;
  }

  .tittle-wrapper {
    flex-flow: column;
    justify-content: space-between;
    align-items: flex-start;
  }

  .hero-grid {
    grid-template-rows: auto auto;
    grid-template-columns: 1fr;
  }

  .project-templates-wrapper {
    grid-template-columns: 1fr;
    justify-items: start;
  }

  .button-column {
    justify-content: flex-start;
    width: 100%;
  }
}

@media screen and (max-width: 767px) {
  h1, h2 {
    font-size: var(--font-size-mobile--heading-1);
  }

  h3 {
    font-size: var(--font-size-mobile--heading-3);
  }

  h4 {
    font-size: var(--font-size-mobile--heading-4);
  }

  h5 {
    font-size: var(--font-size-mobile--heading-5);
  }

  h6 {
    font-size: var(--font-size-mobile--heading-6);
  }

  img {
    border-radius: 15px;
  }

  blockquote {
    font-size: 14px;
  }

  .paragraph-large {
    font-size: var(--font-size-mobile--content);
    justify-content: center;
    align-self: center;
    align-items: center;
    display: block;
  }

  .paragraph-large.align-left {
    width: 100%;
  }

  .navbar-no-shadow-container {
    padding-left: 20px;
    padding-right: 20px;
  }

  .paragraph-regular {
    text-align: left;
    align-self: center;
    width: 100%;
    font-size: 14px;
  }

  .footer-social-link-wrapper {
    border: 0 solid #000;
    flex-flow: row;
    flex: 0 auto;
    justify-content: center;
    align-items: center;
    width: 100%;
    margin-top: 0;
    line-height: 10px;
    display: flex;
  }

  .section {
    padding: 50px var(--width--section-padding-mobile);
  }

  .container-footer {
    flex-flow: column;
    padding: 24px;
  }

  .footer {
    padding-top: 40px;
    padding-left: 40px;
    padding-right: 40px;
  }

  .style-guide-wrapper {
    flex-flow: column;
  }

  .rich-text h1 {
    font-size: var(--font-size-mobile--heading-1);
  }

  .rich-text h2 {
    font-size: var(--font-size-mobile--heading-2);
  }

  .rich-text h3 {
    font-size: var(--font-size-mobile--heading-3);
  }

  .rich-text h4 {
    font-size: var(--font-size-mobile--heading-4);
  }

  .rich-text h5 {
    font-size: var(--font-size-mobile--heading-5);
  }

  .rich-text h6 {
    font-size: var(--font-size-mobile--heading-6);
  }

  .rich-text p {
    font-size: var(--font-size-mobile--content);
  }

  .template-icon-block {
    width: 40px;
    height: 40px;
  }

  .sub-heading-regular {
    font-size: 18px;
  }

  ._404-container {
    grid-column-gap: 10px;
    grid-row-gap: 10px;
  }

  .section-tittle {
    font-size: var(--font-size-mobile--heading-2);
  }

  .section-tittle.two {
    align-self: auto;
  }

  .heading-style-h1 {
    font-size: var(--font-size-mobile--heading-1);
  }

  .heading-style-h2, .heading-style-h2.align-center {
    width: 100%;
  }

  .container-medium {
    padding-right: var(--width--container-padding-mobile);
    padding-left: var(--width--container-padding-mobile);
  }

  .hero-tittle {
    grid-column-gap: 10px;
    grid-row-gap: 10px;
  }

  .padding-global {
    padding-right: var(--width--section-padding-mobile);
    padding-left: var(--width--section-padding-mobile);
  }

  .column-form {
    flex-flow: column;
  }

  .hero-section {
    padding-right: var(--width--section-padding-mobile);
    padding-left: var(--width--section-padding-mobile);
  }

  .cta {
    padding-left: 24px;
    padding-right: 24px;
  }

  .footer-wrapper {
    grid-column-gap: 10px;
    grid-row-gap: 10px;
  }

  .menu-link {
    width: auto;
  }

  .menu-link.footer {
    grid-column-gap: 1px;
    grid-row-gap: 10px;
    flex-flow: wrap;
    grid-template-rows: auto;
    grid-template-columns: 1fr 1fr 1fr 1fr;
    grid-auto-columns: 1fr;
    grid-auto-flow: column;
    justify-content: space-around;
    align-items: center;
    padding-top: 5px;
    padding-left: 5px;
    padding-right: 5px;
    display: flex;
  }

  .navbar-brand {
    padding-left: 0;
  }

  .navbar-menu {
    grid-column-gap: 20px;
    grid-row-gap: 20px;
    background-color: var(--blue--base);
    border-radius: 40px;
    flex-flow: column;
    margin-top: 10px;
    padding-top: 30px;
    padding-bottom: 30px;
    padding-left: 0;
    list-style-type: none;
  }

  .mobile-margin-top {
    margin-top: 10px;
  }

  .menu-button.w--open {
    background-color: #a6b1bf00;
  }

  .navbar-link {
    width: auto;
    height: auto;
    overflow: visible;
  }

  .navbar-link:hover {
    box-sizing: border-box;
    width: auto;
    height: auto;
    padding-top: 12px;
    padding-bottom: 12px;
    display: block;
  }

  .footer-bottom-wrapper {
    grid-column-gap: 10px;
    grid-row-gap: 10px;
    flex-flow: wrap;
    width: 100%;
  }

  .footer-credit-text {
    text-align: center;
  }

  .background {
    max-width: none;
    height: auto;
    top: 10%;
  }

  .list-item, .list-item:hover {
    width: auto;
    height: auto;
  }

  .project {
    grid-template-columns: 1fr;
  }

  .hero-image {
    height: 100%;
  }
}

@media screen and (max-width: 479px) {
  h2 {
    font-size: var(--font-size-mobile--heading-2);
  }

  img {
    border-radius: 15px;
  }

  blockquote {
    font-size: 12px;
  }

  .paragraph-large {
    font-size: var(--font-size-mobile--content);
    text-align: left;
    width: 100%;
  }

  .paragraph-large.align-center {
    width: 100%;
  }

  .utility-page-wrapper {
    padding-top: 140px;
    padding-bottom: 100px;
  }

  .utility-page-content {
    left: 0;
    right: 0;
  }

  .paragraph-regular {
    text-align: left;
    width: 100%;
    font-size: 12px;
    line-height: 16px;
  }

  .footer-social-link-wrapper {
    justify-content: center;
    align-items: center;
    width: 100%;
  }

  .section {
    padding: 20px var(--width--section-padding-mobile);
  }

  .container-footer {
    grid-column-gap: 4px;
    grid-row-gap: 4px;
    flex-flow: column;
    justify-content: center;
    align-items: center;
    min-width: auto;
    padding: 12px;
  }

  .container-menu {
    flex-flow: column;
    width: 100%;
    padding: 0;
  }

  .footer {
    padding-top: 0;
    padding-left: 0;
    padding-right: 0;
  }

  .style-guide-wrapper {
    flex-flow: column;
    padding: 0;
  }

  .button-block-grid {
    grid-template-columns: 1fr;
  }

  .rich-text h2 {
    font-size: var(--font-size-mobile--heading-2);
  }

  .rich-text h3 {
    font-size: var(--font-size-mobile--heading-3);
  }

  .rich-text h4 {
    font-size: var(--font-size-mobile--heading-4);
  }

  .rich-text h5 {
    font-size: var(--font-size-mobile--heading-5);
  }

  .rich-text h6 {
    font-size: var(--font-size-mobile--heading-6);
  }

  .rich-text p {
    font-size: var(--font-size-mobile--content);
  }

  .template-icon-block {
    width: 40px;
    height: 40px;
  }

  .sub-heading-regular {
    text-align: left;
    font-size: 18px;
  }

  .sub-heading-small {
    text-align: left;
  }

  ._404-container {
    grid-column-gap: 10px;
    grid-row-gap: 10px;
  }

  .section-tittle.two {
    width: 100%;
  }

  .heading-style-h1 {
    font-size: var(--font-size-mobile--heading-1);
  }

  .heading-style-h1.align-center, .heading-style-h2.align-center {
    width: 100%;
  }

  .hero-tittle {
    grid-column-gap: 20px;
    grid-row-gap: 20px;
  }

  .typhography-block-grid {
    grid-column-gap: 20px;
    grid-row-gap: 20px;
    grid-template-columns: 1fr;
    grid-auto-flow: row;
  }

  .typhography-block-tittle {
    grid-template-rows: auto;
    grid-template-columns: 1fr;
  }

  .hero-section {
    padding-right: var(--width--section-padding-mobile);
    padding-left: var(--width--section-padding-mobile);
    margin-top: 60px;
  }

  .button {
    width: auto;
    font-size: 14px;
  }

  .grid-testimonials {
    grid-template-columns: 1fr;
  }

  .cta {
    padding: 24px 12px;
  }

  .menu-link {
    grid-template-rows: auto auto auto;
    grid-template-columns: 1fr 1fr;
  }

  .menu-link.footer {
    grid-column-gap: 5px;
    grid-row-gap: 0px;
    flex-flow: wrap;
    grid-template-rows: auto auto auto;
    grid-template-columns: 1fr 1fr 1fr;
    grid-auto-columns: 1fr;
    justify-content: space-around;
    display: flex;
  }

  .navbar-menu {
    grid-column-gap: 20px;
    grid-row-gap: 20px;
    background-color: var(--blue--base);
    flex-flow: column;
    list-style-type: none;
  }

  .navbar-button-wrapper {
    width: auto;
  }

  .menu-button.w--open {
    border: 1px solid var(--blue--lighter);
    background-color: var(--blue--base);
    border-radius: 10px;
  }

  .navbar-link {
    text-align: center;
    width: auto;
  }

  .navbar-link:hover, .navbar-link.w--current {
    width: auto;
  }

  .footer-bottom-wrapper {
    flex-flow: column;
  }

  .footer-credit-text {
    text-align: center;
  }

  .background {
    max-width: 320px;
  }

  .list-item:hover {
    width: auto;
    list-style-type: none;
  }

  .grid, .grid.two {
    grid-template-columns: 1fr;
  }

  .button-wrapper {
    grid-column-gap: 10px;
    grid-row-gap: 10px;
    flex-flow: column;
    width: 100%;
  }

  .hero-image {
    height: 100%;
  }

  .content-hero {
    flex-flow: row;
    padding: 12px;
    inset: auto 0% 0%;
  }

  .tittle-hero-content {
    grid-column-gap: 10px;
    grid-row-gap: 10px;
    flex-flow: column;
    justify-content: center;
    align-items: flex-start;
  }

  .container-project {
    border-radius: 20px;
    margin-top: 100px;
    padding: 12px;
  }

  .project-templates-wrapper {
    grid-template-columns: 1fr;
    place-items: center start;
  }

  .button-column {
    justify-content: flex-start;
    width: 100%;
    display: flex;
  }
}

#w-node-ac6cae42-b97b-06d0-d288-14b5ee9b894a-414418c6 {
  grid-area: span 1 / span 1 / span 1 / span 1;
  place-self: center;
}

#w-node-eb76626f-abbe-6af4-8b5b-acc87cc69e53-414418c6 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_026cb23d-bb96-053e-c7bc-697058efc562-414418ce {
  align-self: center;
}

#w-node-be914918-d7fa-7255-4ea0-73eb1a6b123e-414418ce, #w-node-c05cdf6d-5ad0-f97c-b4fa-840f0760e2c8-414418ce, #w-node-e8031c3e-3bde-83ac-523e-5bd48a17181b-414418ce, #w-node-e0265b82-233d-7a7c-888e-90acf7f84fd2-414418ce, #w-node-f51fee5d-ade9-a4dc-ceca-fa6fc4e85a07-414418ce, #w-node-_2bb8e65c-6c85-0e2a-d0e5-5474092cb169-414418ce, #w-node-_49b595ff-6bf6-cbb8-7f36-f1439c975d69-414418ce, #w-node-a94be68e-18f0-cbd4-ba71-f5454e033bdf-414418ce, #w-node-da6e4059-3f71-e26f-2d22-bd50328151cb-414418ce, #w-node-_1569fb26-2d04-8edb-8154-f4404b45fd75-414418ce, #w-node-_04b45b64-47ee-c2e6-172d-9e595aa40ea3-414418ce, #w-node-_3a46ef67-b2ab-97c8-cbd4-5215caef4e93-414418ce, #w-node-_8ef4fe25-7f23-9cf2-3e82-d2753e07ffb6-414418ce {
  place-self: center start;
}

#w-node-_2ef107c1-6762-bcc1-11ba-79334ad4dfe1-414418d1 {
  place-self: center;
}

@media screen and (max-width: 767px) {
  #w-node-_04b45b64-47ee-c2e6-172d-9e595aa40ea0-414418ce {
    place-self: auto;
  }
}

/* ===========================================
   FIX: Hero Title Line Overflow
   =========================================== */
.hero-title-line {
  overflow: visible !important;
  line-height: 1.2;
}

.hero-title-word {
  opacity: 1 !important;
  transform: translateY(0) !important;
}

/* ===========================================
   FIX: Projects Hero Title Clipping
   =========================================== */
.projects-hero-title {
  line-height: 1.25;
  overflow: visible;
}

.projects-hero-title-line {
  overflow: visible;
  line-height: 1.25;
}

.projects-hero-stats .hero-stat-number {
  line-height: 1.4;
  overflow: visible;
  padding: 4px 0;
  display: block;
}

.hero-stat-item {
  overflow: visible;
  display: flex;
  flex-direction: column;
  align-items: center;
}

/* Fix hero stats row layout */
.hero-stat-row {
  display: flex;
  flex-direction: row;
  align-items: baseline;
  justify-content: center;
  gap: 2px;
}

/* Mobile hero stats fix */
@media screen and (max-width: 767px) {
  .hero-stats {
    justify-content: center;
  }
  
  .hero-stat {
    flex-direction: column;
    align-items: center;
    min-width: 80px;
  }
  
  .hero-stat-row {
    display: flex;
    flex-direction: row !important;
    align-items: baseline;
    justify-content: center;
  }
  
  .hero-stat-number,
  .hero-stat-plus,
  .hero-stat-percent {
    display: inline !important;
  }
}

/* ===========================================
   FIX: Mobile Menu - Ensure it works
   =========================================== */
@media screen and (max-width: 991px) {
  /* Ensure menu button is always visible and clickable */
  .menu-button {
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    z-index: 10000 !important;
    cursor: pointer !important;
    padding: 10px !important;
    background: rgba(255, 255, 255, 0.05) !important;
    border: 1px solid rgba(255, 255, 255, 0.1) !important;
    border-radius: 8px !important;
    pointer-events: auto !important;
  }

  .menu-button:active {
    background: rgba(255, 255, 255, 0.15) !important;
  }

  /* Menu wrapper base styles */
  .navbar-menu-wrapper {
    position: fixed !important;
    top: 70px !important;
    left: 0 !important;
    right: 0 !important;
    bottom: 0 !important;
    background: rgba(3, 7, 18, 0.98) !important;
    backdrop-filter: blur(20px) !important;
    -webkit-backdrop-filter: blur(20px) !important;
    padding: 20px !important;
    z-index: 9999 !important;
    display: flex !important;
    flex-direction: column !important;
    /* Default hidden state */
    transform: translateY(-120%);
    opacity: 0;
    pointer-events: none;
    transition: all 0.3s ease !important;
  }

  .navbar-menu {
    flex-direction: column !important;
    width: 100% !important;
  }

  .navbar-menu li {
    width: 100% !important;
  }

  .navbar-link {
    display: block !important;
    padding: 16px !important;
    font-size: 18px !important;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05) !important;
  }

  .navbar-button-wrapper {
    margin-top: 20px !important;
  }

  .navbar-button-wrapper .button {
    width: 100% !important;
    text-align: center !important;
  }
}

/* ===========================================
   NAVBAR DROPDOWN STYLES
   =========================================== */

.navbar-dropdown-container {
  position: relative;
}

.navbar-dropdown-trigger {
  display: flex;
  align-items: center;
  gap: 6px;
  background: none;
  border: none;
  cursor: pointer;
  font-family: inherit;
  font-size: inherit;
  color: rgba(255, 255, 255, 0.7);
  padding: 10px 16px;
  transition: color 0.3s ease;
}

.navbar-dropdown-trigger:hover,
.navbar-dropdown-trigger.active {
  color: rgba(255, 255, 255, 1);
}

.navbar-dropdown-trigger .dropdown-arrow {
  fill: currentColor;
  transition: transform 0.3s ease;
}

.navbar-dropdown-trigger.active .dropdown-arrow {
  transform: rotate(180deg);
}

.navbar-dropdown-menu {
  position: absolute;
  top: calc(100% + 12px);
  left: 50%;
  transform: translateX(-50%) translateY(-10px);
  min-width: 260px;
  background: rgba(15, 23, 42, 0.98);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 16px;
  padding: 8px;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  box-shadow: 
    0 20px 60px rgba(0, 0, 0, 0.5),
    0 0 0 1px rgba(255, 255, 255, 0.05) inset;
  z-index: 1000;
}

.navbar-dropdown-menu::before {
  content: '';
  position: absolute;
  top: -8px;
  left: 50%;
  transform: translateX(-50%);
  width: 16px;
  height: 16px;
  background: rgba(15, 23, 42, 0.98);
  border-left: 1px solid rgba(255, 255, 255, 0.1);
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  transform: translateX(-50%) rotate(45deg);
  z-index: -1;
}

.navbar-dropdown-menu.active {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: translateX(-50%) translateY(0);
}

.dropdown-item {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 14px 16px;
  color: rgba(255, 255, 255, 0.8);
  text-decoration: none;
  border-radius: 10px;
  transition: all 0.2s ease;
  position: relative;
  overflow: hidden;
}

.dropdown-item::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 3px;
  background: linear-gradient(180deg, #06b6d4, #8b5cf6);
  opacity: 0;
  transform: scaleY(0);
  transition: all 0.3s ease;
}

.dropdown-item:hover,
.dropdown-item:focus {
  background: rgba(6, 182, 212, 0.1);
  color: #ffffff;
}

.dropdown-item:hover::before,
.dropdown-item:focus::before,
.dropdown-item.active::before {
  opacity: 1;
  transform: scaleY(1);
}

.dropdown-item.active {
  background: rgba(6, 182, 212, 0.15);
  color: #06b6d4;
}

.dropdown-item-icon {
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(6, 182, 212, 0.1);
  border-radius: 10px;
  flex-shrink: 0;
  transition: all 0.3s ease;
}

.dropdown-item-icon svg {
  width: 18px;
  height: 18px;
  fill: #06b6d4;
}

.dropdown-item:hover .dropdown-item-icon {
  background: rgba(6, 182, 212, 0.2);
  transform: scale(1.05);
}

.dropdown-item-text {
  font-size: 14px;
  font-weight: 500;
  white-space: nowrap;
}

/* Mobile dropdown styles */
@media screen and (max-width: 991px) {
  .navbar-dropdown-menu {
    position: static;
    transform: none;
    min-width: 100%;
    margin-top: 8px;
    background: rgba(0, 0, 0, 0.3);
    border: none;
    box-shadow: none;
    opacity: 0;
    max-height: 0;
    overflow: hidden;
    padding: 0;
    visibility: hidden;
  }
  
  .navbar-dropdown-menu::before {
    display: none;
  }
  
  .navbar-dropdown-menu.active {
    opacity: 1;
    max-height: 400px;
    padding: 8px;
    visibility: visible;
    transform: none;
  }
  
  .navbar-dropdown-trigger {
    width: 100%;
    justify-content: space-between;
    padding: 16px !important;
    font-size: 18px !important;
  }
}

/* ===========================================
   ARCHITECTURE VIEW STYLES
   =========================================== */

/* Architecture CSS Variables */
.architecture-view {
  --arch-primary: #8B7355;
  --arch-primary-light: #A69076;
  --arch-primary-dark: #6B5A45;
  --arch-secondary: #2D4739;
  --arch-secondary-light: #3D5E4C;
  --arch-accent: #C9A962;
  --arch-accent-light: #E5D4A1;
  --arch-beige: #F5F0E8;
  --arch-beige-dark: #E8E0D5;
  --arch-cream: #FAF8F5;
  --arch-charcoal: #1A1A1A;
  --arch-dark: #0D0D0D;
  --arch-text: #F5F0E8;
  --arch-text-muted: rgba(245, 240, 232, 0.7);
  --arch-text-subtle: rgba(245, 240, 232, 0.5);
  --arch-gradient-primary: linear-gradient(135deg, var(--arch-primary), var(--arch-accent));
  --arch-gradient-dark: linear-gradient(180deg, #0D0D0D 0%, #1A1A1A 50%, #0D0D0D 100%);
  --arch-font-display: 'Playfair Display', 'Georgia', serif;
  --arch-font-elegant: 'Cormorant Garamond', 'Georgia', serif;
  --arch-font-body: 'DM Sans', 'Inter', sans-serif;
}

/* ===== ARCHITECTURE HERO ===== */

.arch-hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  padding-top: 100px;
  background: var(--arch-dark);
}

/* Hero Background */
.arch-hero-bg {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 0;
}
.arch-block-item-text-display {
  display: flex;
}
.arch-hero-gradient {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: 
    radial-gradient(ellipse 80% 50% at 50% -20%, rgba(139, 115, 85, 0.15), transparent),
    radial-gradient(ellipse 60% 40% at 100% 50%, rgba(201, 169, 98, 0.1), transparent),
    radial-gradient(ellipse 60% 40% at 0% 80%, rgba(45, 71, 57, 0.1), transparent),
    var(--arch-gradient-dark);
}

.arch-hero-pattern {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-image: 
    linear-gradient(rgba(139, 115, 85, 0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(139, 115, 85, 0.03) 1px, transparent 1px);
  background-size: 80px 80px;
  mask-image: radial-gradient(ellipse 80% 60% at 50% 50%, black, transparent);
  animation: archGridMove 30s linear infinite;
}

@keyframes archGridMove {
  0% { transform: translate(0, 0); }
  100% { transform: translate(80px, 80px); }
}

.arch-hero-noise {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 400 400' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noiseFilter'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noiseFilter)'/%3E%3C/svg%3E");
  opacity: 0.02;
  pointer-events: none;
}

/* Floating Geometric Elements */
.arch-floating-elements {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 1;
  pointer-events: none;
}

.arch-element {
  position: absolute;
  border: 1px solid rgba(201, 169, 98, 0.15);
  animation: archElementFloat 20s ease-in-out infinite;
}

.arch-element-1 {
  width: 120px;
  height: 120px;
  border-radius: 0;
  top: 15%;
  left: 8%;
  transform: rotate(45deg);
  animation-delay: 0s;
  background: linear-gradient(135deg, rgba(139, 115, 85, 0.03), transparent);
}

.arch-element-2 {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  top: 25%;
  right: 12%;
  animation-delay: -3s;
  border-color: rgba(45, 71, 57, 0.2);
}

.arch-element-3 {
  width: 60px;
  height: 200px;
  border-radius: 0;
  bottom: 20%;
  left: 5%;
  animation-delay: -6s;
  border-color: rgba(201, 169, 98, 0.1);
}

.arch-element-4 {
  width: 150px;
  height: 2px;
  bottom: 30%;
  right: 10%;
  animation-delay: -9s;
  background: linear-gradient(90deg, transparent, rgba(201, 169, 98, 0.3), transparent);
  border: none;
}

.arch-element-5 {
  width: 40px;
  height: 40px;
  border-radius: 0;
  top: 60%;
  left: 15%;
  transform: rotate(45deg);
  animation-delay: -12s;
  background: rgba(139, 115, 85, 0.05);
}

@keyframes archElementFloat {
  0%, 100% {
    transform: translateY(0) rotate(var(--rotation, 0deg));
    opacity: 0.5;
  }
  25% {
    transform: translateY(-30px) rotate(calc(var(--rotation, 0deg) + 2deg));
    opacity: 0.7;
  }
  50% {
    transform: translateY(15px) rotate(calc(var(--rotation, 0deg) - 2deg));
    opacity: 0.6;
  }
  75% {
    transform: translateY(-20px) rotate(calc(var(--rotation, 0deg) + 1deg));
    opacity: 0.65;
  }
}

.arch-element-1 { --rotation: 45deg; }
.arch-element-5 { --rotation: 45deg; }

/* Lines */
.arch-line {
  position: absolute;
  background: linear-gradient(180deg, transparent, rgba(201, 169, 98, 0.2), transparent);
  width: 1px;
  animation: archLineFloat 15s ease-in-out infinite;
}

.arch-line-1 {
  height: 200px;
  left: 20%;
  top: 10%;
  animation-delay: 0s;
}

.arch-line-2 {
  height: 300px;
  right: 25%;
  top: 20%;
  animation-delay: -5s;
}

.arch-line-3 {
  height: 150px;
  left: 40%;
  bottom: 15%;
  animation-delay: -10s;
}

@keyframes archLineFloat {
  0%, 100% { transform: translateY(0); opacity: 0.3; }
  50% { transform: translateY(-30px); opacity: 0.6; }
}

/* Golden Orbs */
.arch-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(100px);
  opacity: 0.4;
  z-index: 1;
  animation: archOrbFloat 12s ease-in-out infinite;
}

.arch-orb-1 {
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(201, 169, 98, 0.3), transparent 70%);
  top: -10%;
  right: 15%;
  animation-delay: 0s;
}

.arch-orb-2 {
  width: 300px;
  height: 300px;
  background: radial-gradient(circle, rgba(139, 115, 85, 0.25), transparent 70%);
  bottom: 10%;
  left: -5%;
  animation-delay: -4s;
}

.arch-orb-3 {
  width: 250px;
  height: 250px;
  background: radial-gradient(circle, rgba(45, 71, 57, 0.2), transparent 70%);
  top: 50%;
  right: 30%;
  animation-delay: -8s;
}

@keyframes archOrbFloat {
  0%, 100% {
    transform: translate(0, 0) scale(1);
  }
  25% {
    transform: translate(40px, -40px) scale(1.1);
  }
  50% {
    transform: translate(-30px, 30px) scale(0.95);
  }
  75% {
    transform: translate(25px, 15px) scale(1.05);
  }
}

/* Hero Content */
.arch-hero-content {
  position: relative;
  z-index: 10;
  width: 100%;
}

/* Breadcrumb */
.arch-breadcrumb {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 40px;
  opacity: 0;
  animation: archFadeInUp 0.8s ease-out 0.2s forwards;
}

.arch-breadcrumb-link {
  color: var(--arch-text-muted);
  text-decoration: none;
  font-family: var(--arch-font-body);
  font-size: 13px;
  letter-spacing: 0.5px;
  transition: color 0.3s ease;
}

.arch-breadcrumb-link:hover {
  color: var(--arch-accent);
}

.arch-breadcrumb-sep {
  color: var(--arch-text-subtle);
}

.arch-breadcrumb-sep svg {
  display: block;
}

.arch-breadcrumb-current {
  color: var(--arch-accent);
  font-family: var(--arch-font-body);
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.5px;
}

@keyframes archFadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Hero Grid */
.arch-hero-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
  min-height: calc(100vh - 250px);
}

/* Hero Text */
.arch-hero-text {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 32px;
}

/* Decorative Side Line */
.arch-hero-side-line {
  position: absolute;
  left: -60px;
  top: 80px;
  width: 2px;
  height: 280px;
  background: linear-gradient(
    to bottom,
    transparent 0%,
    rgba(201, 169, 98, 0.4) 20%,
    rgba(201, 169, 98, 0.6) 50%,
    rgba(201, 169, 98, 0.4) 80%,
    transparent 100%
  );
  border-radius: 2px;
  opacity: 0;
  animation: archSideLineReveal 1.2s ease-out 0.8s forwards;
}

.arch-hero-side-line::before {
  content: '';
  position: absolute;
  top: 50%;
  left: -4px;
  width: 10px;
  height: 10px;
  background: var(--arch-accent);
  border-radius: 50%;
  transform: translateY(-50%);
  box-shadow: 0 0 20px rgba(201, 169, 98, 0.5);
  animation: archSideLinePulse 2s ease-in-out infinite;
}

.arch-hero-side-line::after {
  content: '';
  position: absolute;
  top: 50%;
  left: -8px;
  width: 18px;
  height: 18px;
  border: 1px solid rgba(201, 169, 98, 0.3);
  border-radius: 50%;
  transform: translateY(-50%);
  animation: archSideLineRing 2s ease-in-out infinite;
}

@keyframes archSideLineReveal {
  from {
    opacity: 0;
    height: 0;
    top: 200px;
  }
  to {
    opacity: 1;
    height: 280px;
    top: 80px;
  }
}

@keyframes archSideLinePulse {
  0%, 100% {
    transform: translateY(-50%) scale(1);
    opacity: 1;
  }
  50% {
    transform: translateY(-50%) scale(1.2);
    opacity: 0.8;
  }
}

@keyframes archSideLineRing {
  0%, 100% {
    transform: translateY(-50%) scale(1);
    opacity: 0.5;
  }
  50% {
    transform: translateY(-50%) scale(1.5);
    opacity: 0;
  }
}

/* Ampersand Styling */
.arch-title-ampersand {
  font-family: var(--arch-font-display);
  font-style: italic;
  font-weight: 400;
  color: var(--arch-accent);
  margin-right: 8px;
  display: inline-block;
  animation: archAmpersandShimmer 4s ease-in-out infinite;
}

@keyframes archAmpersandShimmer {
  0%, 100% {
    opacity: 1;
    filter: brightness(1);
  }
  50% {
    opacity: 0.85;
    filter: brightness(1.2);
  }
}

/* Badge */
.arch-badge {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 10px 20px 10px 12px;
  background: rgba(201, 169, 98, 0.1);
  border: 1px solid rgba(201, 169, 98, 0.2);
  border-radius: 50px;
  width: fit-content;
  opacity: 0;
  animation: archFadeInUp 0.8s ease-out 0.3s forwards;
}

.arch-badge-icon {
  width: 32px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(201, 169, 98, 0.15);
  border-radius: 50%;
}

.arch-badge-icon svg {
  width: 16px;
  height: 16px;
  fill: var(--arch-accent);
}

.arch-badge-text {
  font-family: var(--arch-font-body);
  font-size: 13px;
  font-weight: 500;
  color: var(--arch-accent);
  letter-spacing: 0.5px;
}

/* Hero Title */
.arch-hero-title {
  font-family: var(--arch-font-display);
  font-size: clamp(42px, 5.5vw, 72px);
  font-weight: 500;
  line-height: 1.15;
  color: var(--arch-text);
  margin: 0;
  letter-spacing: -0.01em;
}

.arch-title-line {
  display: block;
  overflow: hidden;
}

.arch-title-line-1 {
  font-family: var(--arch-font-body);
  font-size: clamp(16px, 1.5vw, 20px);
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 4px;
  color: var(--arch-text-muted);
  margin-bottom: 12px;
  opacity: 0;
  animation: archFadeInUp 0.8s ease-out 0.4s forwards;
}

.arch-title-line-2 {
  opacity: 0;
  animation: archFadeInUp 0.8s ease-out 0.5s forwards;
}

.arch-title-line-3 {
  opacity: 0;
  animation: archFadeInUp 0.8s ease-out 0.6s forwards;
}

.arch-title-highlight {
  position: relative;
  background: linear-gradient(135deg, var(--arch-accent) 0%, var(--arch-primary-light) 50%, var(--arch-accent) 100%);
  background-size: 200% 200%;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  animation: archGradientFlow 6s ease infinite;
}

@keyframes archGradientFlow {
  0%, 100% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
}

/* Hero Description */
.arch-hero-description {
  font-family: var(--arch-font-elegant);
  font-size: 20px;
  line-height: 1.8;
  color: var(--arch-text-muted);
  max-width: 540px;
  opacity: 0;
  animation: archFadeInUp 0.8s ease-out 0.7s forwards;
}

.arch-hero-description strong {
  color: var(--arch-accent);
  font-weight: 600;
}

.arch-hero-description em {
  color: var(--arch-primary-light);
  font-style: italic;
}

/* Hero Features */
.arch-hero-features {
  display: flex;
  flex-direction: column;
  gap: 16px;
  opacity: 0;
  animation: archFadeInUp 0.8s ease-out 0.8s forwards;
}

.arch-feature {
  display: flex;
  align-items: center;
  gap: 14px;
}

.arch-feature-icon {
  width: 24px;
  height: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.arch-feature-icon svg {
  width: 18px;
  height: 18px;
  fill: var(--arch-secondary-light);
}

.arch-feature span {
  font-family: var(--arch-font-body);
  font-size: 15px;
  color: var(--arch-text-muted);
}

/* Hero CTA */
.arch-hero-cta {
  display: flex;
  gap: 20px;
  align-items: center;
  margin-top: 16px;
  opacity: 0;
  animation: archFadeInUp 0.8s ease-out 0.9s forwards;
}

.arch-btn-primary {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 14px;
  padding: 20px 36px;
  background: linear-gradient(135deg, var(--arch-primary) 0%, var(--arch-primary-dark) 100%);
  color: #ffffff;
  font-family: var(--arch-font-body);
  font-size: 15px;
  font-weight: 600;
  text-decoration: none;
  border-radius: 4px;
  overflow: hidden;
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  box-shadow: 0 4px 30px rgba(139, 115, 85, 0.25);
  letter-spacing: 0.5px;
}

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

.arch-btn-primary:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 50px rgba(139, 115, 85, 0.35);
}

.arch-btn-primary:hover::before {
  left: 100%;
}

.arch-btn-icon {
  width: 18px;
  height: 18px;
  transition: transform 0.3s ease;
}

.arch-btn-icon svg {
  width: 100%;
  height: 100%;
}

.arch-btn-primary:hover .arch-btn-icon {
  transform: translate(4px, -4px);
}

.arch-btn-secondary {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 18px 28px;
  background: transparent;
  border: 1px solid rgba(201, 169, 98, 0.3);
  color: var(--arch-accent);
  font-family: var(--arch-font-body);
  font-size: 15px;
  font-weight: 500;
  text-decoration: none;
  border-radius: 4px;
  transition: all 0.3s ease;
  letter-spacing: 0.5px;
}

.arch-btn-secondary:hover {
  background: rgba(201, 169, 98, 0.1);
  border-color: var(--arch-accent);
  transform: translateY(-2px);
}

/* Hero Visual */
.arch-hero-visual {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  animation: archVisualReveal 1.2s ease-out 0.5s forwards;
}

@keyframes archVisualReveal {
  from {
    opacity: 0;
    transform: translateX(60px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

.arch-visual-container {
  position: relative;
  width: 100%;
  max-width: 520px;
}

/* Main Frame */
.arch-main-frame {
  position: relative;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 
    0 60px 120px rgba(0, 0, 0, 0.4),
    0 0 0 1px rgba(201, 169, 98, 0.1);
  animation: archFrameFloat 8s ease-in-out infinite;
}

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

.arch-frame-border {
  position: absolute;
  top: -2px;
  left: -2px;
  right: -2px;
  bottom: -2px;
  background: linear-gradient(135deg, rgba(201, 169, 98, 0.3), transparent 50%, rgba(139, 115, 85, 0.2));
  border-radius: 10px;
  z-index: -1;
}

.arch-frame-image {
  position: relative;
  aspect-ratio: 16 / 10;
  overflow: hidden;
}

.arch-frame-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.arch-main-frame:hover .arch-frame-image img {
  transform: scale(1.05);
}

.arch-frame-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(180deg, transparent 60%, rgba(13, 13, 13, 0.6));
  pointer-events: none;
}

/* Stat Cards */
.arch-stat-card {
  position: absolute;
  background: rgba(26, 26, 26, 0.95);
  backdrop-filter: blur(20px);
  border: 1px solid rgba(201, 169, 98, 0.2);
  border-radius: 12px;
  padding: 16px 20px;
  z-index: 20;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.3);
  animation: archStatFloat 6s ease-in-out infinite;
}

.arch-stat-1 {
  top: -20px;
  left: -40px;
  animation-delay: 0s;
}

.arch-stat-2 {
  top: 50%;
  right: -50px;
  transform: translateY(-50%);
  display: flex;
  align-items: center;
  gap: 12px;
  animation-delay: -2s;
}

.arch-stat-3 {
  bottom: -20px;
  left: 20%;
  display: flex;
  align-items: center;
  gap: 12px;
  animation-delay: -4s;
}

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

.arch-stat-number {
  font-family: var(--arch-font-display);
  font-size: 32px;
  font-weight: 500;
  color: var(--arch-text);
  line-height: 1;
}

.arch-stat-number span {
  font-size: 20px;
  color: var(--arch-accent);
}

.arch-stat-label {
  font-family: var(--arch-font-body);
  font-size: 12px;
  color: var(--arch-text-muted);
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-top: 4px;
}

.arch-stat-icon {
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(201, 169, 98, 0.1);
  border-radius: 8px;
  font-size: 18px;
}

.arch-stat-icon svg {
  width: 18px;
  height: 18px;
  fill: var(--arch-accent);
}

.arch-stat-text {
  display: flex;
  flex-direction: column;
}

.arch-stat-value {
  font-family: var(--arch-font-body);
  font-size: 14px;
  font-weight: 600;
  color: var(--arch-text);
}

.arch-stat-desc {
  font-family: var(--arch-font-body);
  font-size: 11px;
  color: var(--arch-text-muted);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

/* Decorative Elements */
.arch-decor {
  position: absolute;
  pointer-events: none;
}

.arch-decor-1 {
  top: 10%;
  right: -80px;
  width: 100px;
  height: 1px;
  background: linear-gradient(90deg, rgba(201, 169, 98, 0.3), transparent);
}

.arch-decor-2 {
  bottom: 20%;
  left: -60px;
  width: 1px;
  height: 80px;
  background: linear-gradient(180deg, rgba(201, 169, 98, 0.3), transparent);
}

/* ===== CAROUSEL HERO VISUAL ===== */

.arch-carousel-wrapper {
  position: relative;
  width: 100%;
  max-width: 600px;
  height: 520px;
  border-radius: 16px;
  overflow: hidden;
}

/* Carousel Fade/Blur Overlays - Creating the dissolve effect */
.arch-carousel-fade {
  position: absolute;
  z-index: 10;
  pointer-events: none;
}

.arch-carousel-fade-top {
  top: 0;
  left: 0;
  right: 0;
  height: 60px;
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  mask: linear-gradient(to bottom, black 0%, transparent 100%);
  -webkit-mask: linear-gradient(to bottom, black 0%, transparent 100%);
}

.arch-carousel-fade-bottom {
  bottom: 0;
  left: 0;
  right: 0;
  height: 60px;
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  mask: linear-gradient(to top, black 0%, transparent 100%);
  -webkit-mask: linear-gradient(to top, black 0%, transparent 100%);
}

.arch-carousel-fade-left {
  top: 0;
  left: 0;
  bottom: 0;
  width: 80px;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  mask: linear-gradient(to right, black 0%, transparent 100%);
  -webkit-mask: linear-gradient(to right, black 0%, transparent 100%);
}

.arch-carousel-fade-right {
  top: 0;
  right: 0;
  bottom: 0;
  width: 80px;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  mask: linear-gradient(to left, black 0%, transparent 100%);
  -webkit-mask: linear-gradient(to left, black 0%, transparent 100%);
}

/* Carousel Container */
.arch-carousel-container {
  position: relative;
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 16px;
  padding: 40px 0;
}

/* Carousel Rows */
.arch-carousel-row {
  position: relative;
  width: 100%;
  overflow: hidden;
  padding: 8px 0;
}

.arch-carousel-row-1 {
  height: 140px;
}

.arch-carousel-row-2 {
  height: 120px;
  margin-left: -40px;
}

.arch-carousel-row-3 {
  height: 140px;
  margin-left: 20px;
}

/* Carousel Tracks */
.arch-carousel-track {
  display: flex;
  gap: 16px;
  width: fit-content;
  will-change: transform;
}

.arch-carousel-track-right {
  animation: archCarouselScrollRight 35s linear infinite;
}

.arch-carousel-track-left {
  animation: archCarouselScrollLeft 30s linear infinite;
}

.arch-carousel-track-right-slow {
  animation: archCarouselScrollRight 40s linear infinite;
}

/* Carousel Animation Keyframes */
@keyframes archCarouselScrollRight {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}

@keyframes archCarouselScrollLeft {
  0% {
    transform: translateX(-50%);
  }
  100% {
    transform: translateX(0);
  }
}

/* Carousel Items */
.arch-carousel-item {
  flex-shrink: 0;
  transition: transform 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.arch-carousel-item:hover {
  transform: scale(1.03);
  z-index: 5;
}

/* Carousel Image Wrapper */
.arch-carousel-image-wrapper {
  position: relative;
  width: 200px;
  height: 125px;
  border-radius: 10px;
  overflow: hidden;
  background: rgba(26, 26, 26, 0.5);
  box-shadow: 
    0 8px 32px rgba(0, 0, 0, 0.4),
    0 0 0 1px rgba(201, 169, 98, 0.1),
    inset 0 0 0 1px rgba(255, 255, 255, 0.03);
  transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.arch-carousel-row-1 .arch-carousel-image-wrapper {
  width: 220px;
  height: 135px;
}

.arch-carousel-row-2 .arch-carousel-image-wrapper {
  width: 190px;
  height: 115px;
}

.arch-carousel-row-3 .arch-carousel-image-wrapper {
  width: 200px;
  height: 125px;
}

.arch-carousel-image-wrapper::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(
    135deg,
    rgba(201, 169, 98, 0.1) 0%,
    transparent 50%,
    rgba(139, 115, 85, 0.05) 100%
  );
  opacity: 0;
  transition: opacity 0.4s ease;
  z-index: 2;
  pointer-events: none;
}

.arch-carousel-item:hover .arch-carousel-image-wrapper::before {
  opacity: 1;
}

.arch-carousel-image-wrapper::after {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: linear-gradient(
    45deg,
    transparent 40%,
    rgba(255, 255, 255, 0.03) 50%,
    transparent 60%
  );
  transform: translateX(-100%) rotate(45deg);
  transition: transform 0.8s ease;
  z-index: 3;
  pointer-events: none;
}

.arch-carousel-item:hover .arch-carousel-image-wrapper::after {
  transform: translateX(100%) rotate(45deg);
}

.arch-carousel-image-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center;
  transition: transform 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.arch-carousel-item:hover .arch-carousel-image-wrapper img {
  transform: scale(1.08);
}

.arch-carousel-item:hover .arch-carousel-image-wrapper {
  box-shadow: 
    0 16px 48px rgba(0, 0, 0, 0.5),
    0 0 0 1px rgba(201, 169, 98, 0.3),
    0 0 30px rgba(201, 169, 98, 0.1),
    inset 0 0 0 1px rgba(255, 255, 255, 0.05);
}

/* Floating Stat Badges */
.arch-carousel-stat {
  position: absolute;
  z-index: 20;
  background: rgba(26, 26, 26, 0.95);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid rgba(201, 169, 98, 0.25);
  border-radius: 14px;
  padding: 14px 18px;
  box-shadow: 
    0 20px 50px rgba(0, 0, 0, 0.4),
    0 0 0 1px rgba(255, 255, 255, 0.03) inset;
  animation: archStatBadgeFloat 5s ease-in-out infinite;
}

.arch-carousel-stat-galleries {
  top: 15px;
  left: -35px;
  display: flex;
  align-items: center;
  gap: 10px;
  animation-delay: 0s;
}

.arch-carousel-stat-design {
  top: 45%;
  right: -50px;
  display: flex;
  align-items: center;
  gap: 10px;
  animation-delay: -1.5s;
}

.arch-carousel-stat-support {
  bottom: 25px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  align-items: center;
  gap: 10px;
  animation-delay: -3s;
}

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

.arch-carousel-stat-support {
  animation-name: archStatBadgeSupportFloat;
}

@keyframes archStatBadgeSupportFloat {
  0%, 100% {
    transform: translateX(-50%) translateY(0);
  }
  50% {
    transform: translateX(-50%) translateY(-8px);
  }
}

.arch-carousel-stat-number {
  font-family: var(--arch-font-display);
  font-size: 28px;
  font-weight: 600;
  color: var(--arch-text);
  line-height: 1;
  background: linear-gradient(135deg, var(--arch-text), var(--arch-accent));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.arch-carousel-stat-label {
  font-family: var(--arch-font-body);
  font-size: 11px;
  color: var(--arch-text-muted);
  text-transform: uppercase;
  letter-spacing: 1.5px;
  margin-top: 4px;
}

.arch-carousel-stat-icon {
  width: 32px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(201, 169, 98, 0.12);
  border-radius: 10px;
}

.arch-carousel-stat-icon svg {
  width: 18px;
  height: 18px;
  fill: var(--arch-accent);
}

.arch-carousel-stat-icon-emoji {
  font-size: 22px;
  line-height: 1;
}

.arch-carousel-stat-text {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.arch-carousel-stat-value {
  font-family: var(--arch-font-body);
  font-size: 14px;
  font-weight: 600;
  color: var(--arch-text);
}

.arch-carousel-stat-desc {
  font-family: var(--arch-font-body);
  font-size: 10px;
  color: var(--arch-text-muted);
  text-transform: uppercase;
  letter-spacing: 1px;
}

/* Pause animations on hover for better UX */
.arch-carousel-wrapper:hover .arch-carousel-track {
  animation-play-state: paused;
}

/* Reduced motion preference support */
@media (prefers-reduced-motion: reduce) {
  .arch-carousel-track {
    animation: none !important;
  }
  
  .arch-carousel-stat {
    animation: none !important;
  }
  
  .arch-carousel-item:hover {
    transform: none;
  }
  
  .arch-carousel-item:hover .arch-carousel-image-wrapper img {
    transform: none;
  }
  
  .arch-hero-side-line {
    animation: none !important;
    opacity: 1 !important;
  }
  
  .arch-hero-side-line::before,
  .arch-hero-side-line::after {
    animation: none !important;
  }
}

/* ===== END CAROUSEL HERO VISUAL ===== */

/* Scroll Indicator */
.arch-scroll-indicator {
  position: absolute;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
  z-index: 20;
  opacity: 0;
  animation: archFadeInUp 0.8s ease-out 1.2s forwards;
}

.arch-scroll-line {
  width: 1px;
  height: 60px;
  background: linear-gradient(180deg, var(--arch-accent), transparent);
  animation: archScrollPulse 2s ease-in-out infinite;
}

@keyframes archScrollPulse {
  0%, 100% { transform: scaleY(1); opacity: 1; }
  50% { transform: scaleY(0.7); opacity: 0.5; }
}

.arch-scroll-indicator span {
  font-family: var(--arch-font-body);
  font-size: 11px;
  color: var(--arch-text-subtle);
  text-transform: uppercase;
  letter-spacing: 2px;
}

/* ===== ARCHITECTURE WHY SECTION ===== */

.arch-why-section {
  position: relative;
  padding: 140px 0;
  background: var(--arch-charcoal);
  overflow: hidden;
}

/* Background */
.arch-why-bg {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 0;
}

.arch-why-gradient {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: 
    radial-gradient(ellipse 60% 40% at 20% 0%, rgba(139, 115, 85, 0.08), transparent),
    radial-gradient(ellipse 50% 30% at 80% 100%, rgba(201, 169, 98, 0.06), transparent);
}

.arch-why-pattern {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-image: 
    linear-gradient(rgba(201, 169, 98, 0.02) 1px, transparent 1px),
    linear-gradient(90deg, rgba(201, 169, 98, 0.02) 1px, transparent 1px);
  background-size: 60px 60px;
}

/* Content */
.arch-why-content {
  position: relative;
  z-index: 10;
}

/* Section Header */
.arch-why-header {
  text-align: center;
  max-width: 800px;
  margin: 0 auto 80px;
}

.arch-section-tag {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  margin-bottom: 24px;
}

.arch-tag-line {
  width: 40px;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--arch-accent));
}

.arch-section-tag span:not(.arch-tag-line) {
  font-family: var(--arch-font-body);
  font-size: 12px;
  font-weight: 600;
  color: var(--arch-accent);
  text-transform: uppercase;
  letter-spacing: 3px;
}

.arch-why-title {
  margin: 0 0 24px;
}

.arch-why-title-sm {
  display: block;
  font-family: var(--arch-font-body);
  font-size: 16px;
  font-weight: 400;
  color: var(--arch-text-muted);
  margin-bottom: 12px;
}

.arch-why-title-lg {
  display: block;
  font-family: var(--arch-font-display);
  font-size: clamp(32px, 4vw, 52px);
  font-weight: 500;
  color: var(--arch-text);
  line-height: 1.2;
}

.arch-why-title-lg em {
  font-style: italic;
  background: linear-gradient(135deg, var(--arch-accent), var(--arch-primary-light));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.arch-why-description {
  font-family: var(--arch-font-elegant);
  font-size: 18px;
  line-height: 1.8;
  color: var(--arch-text-muted);
}

.arch-why-description strong {
  color: var(--arch-accent);
  font-weight: 600;
}

/* Benefits Grid */
.arch-benefits-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}

/* Benefit Card */
.arch-benefit-card {
  position: relative;
  padding: 40px 32px;
  background: rgba(13, 13, 13, 0.5);
  border: 1px solid rgba(201, 169, 98, 0.1);
  border-radius: 8px;
  transition: all 0.4s ease;
  overflow: hidden;
}

.arch-benefit-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 3px;
  background: linear-gradient(90deg, var(--arch-accent), var(--arch-primary));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s ease;
}

.arch-benefit-card:hover {
  border-color: rgba(201, 169, 98, 0.25);
  transform: translateY(-8px);
  box-shadow: 0 30px 60px rgba(0, 0, 0, 0.3);
}

.arch-benefit-card:hover::before {
  transform: scaleX(1);
}

.arch-benefit-number {
  position: absolute;
  top: 20px;
  right: 20px;
  font-family: var(--arch-font-display);
  font-size: 48px;
  font-weight: 500;
  color: rgba(201, 169, 98, 0.08);
  line-height: 1;
}

.arch-benefit-icon {
  width: 56px;
  height: 56px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(201, 169, 98, 0.1);
  border-radius: 12px;
  margin-bottom: 24px;
  transition: all 0.3s ease;
}

.arch-benefit-icon svg {
  width: 26px;
  height: 26px;
  fill: var(--arch-accent);
}

.arch-benefit-card:hover .arch-benefit-icon {
  background: rgba(201, 169, 98, 0.15);
  transform: scale(1.05);
}

.arch-benefit-title {
  font-family: var(--arch-font-display);
  font-size: 22px;
  font-weight: 500;
  color: var(--arch-text);
  margin: 0 0 16px;
}

.arch-benefit-desc {
  font-family: var(--arch-font-body);
  font-size: 15px;
  line-height: 1.7;
  color: var(--arch-text-muted);
  margin: 0;
}

.arch-benefit-line {
  position: absolute;
  bottom: 0;
  left: 32px;
  right: 32px;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(201, 169, 98, 0.2), transparent);
}

/* CTA Banner */
.arch-why-cta {
  margin-top: 80px;
  padding: 48px;
  background: linear-gradient(135deg, rgba(139, 115, 85, 0.15), rgba(201, 169, 98, 0.08));
  border: 1px solid rgba(201, 169, 98, 0.2);
  border-radius: 12px;
  text-align: center;
}

.arch-cta-content h3 {
  font-family: var(--arch-font-display);
  font-size: 28px;
  font-weight: 500;
  color: var(--arch-text);
  margin: 0 0 12px;
}

.arch-cta-content p {
  font-family: var(--arch-font-body);
  font-size: 16px;
  color: var(--arch-text-muted);
  margin: 0 0 24px;
}

.arch-cta-arrow {
  animation: archArrowBounce 2s ease-in-out infinite;
}

.arch-cta-arrow svg {
  width: 32px;
  height: 32px;
  fill: var(--arch-accent);
}

@keyframes archArrowBounce {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(10px); }
}

/* ===== ARCHITECTURE WHY SECTION - COMPACT VERSION ===== */

.arch-why-compact {
  position: relative;
  padding: 100px 0;
  background: var(--arch-dark);
  overflow: hidden;
}

.arch-why-compact-bg {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 0;
}

.arch-why-gradient-1 {
  position: absolute;
  top: -50%;
  left: -20%;
  width: 70%;
  height: 150%;
  background: radial-gradient(ellipse, rgba(201, 169, 98, 0.08) 0%, transparent 60%);
  animation: whyGradientFloat1 15s ease-in-out infinite;
}

.arch-why-gradient-2 {
  position: absolute;
  bottom: -30%;
  right: -10%;
  width: 60%;
  height: 120%;
  background: radial-gradient(ellipse, rgba(139, 115, 85, 0.06) 0%, transparent 60%);
  animation: whyGradientFloat2 20s ease-in-out infinite;
}

.arch-why-grid-pattern {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-image: 
    linear-gradient(rgba(201, 169, 98, 0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(201, 169, 98, 0.03) 1px, transparent 1px);
  background-size: 50px 50px;
  mask-image: radial-gradient(ellipse 80% 60% at 50% 50%, black, transparent);
}

/* Floating Orbs */
.arch-why-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(40px);
  pointer-events: none;
  z-index: 1;
}

.arch-why-orb-1 {
  width: 250px;
  height: 250px;
  background: radial-gradient(circle, rgba(201, 169, 98, 0.25) 0%, transparent 70%);
  top: 10%;
  right: 15%;
  animation: orbFloat1 12s ease-in-out infinite;
}

.arch-why-orb-2 {
  width: 180px;
  height: 180px;
  background: radial-gradient(circle, rgba(139, 115, 85, 0.2) 0%, transparent 70%);
  bottom: 20%;
  left: 10%;
  animation: orbFloat2 15s ease-in-out infinite;
}

.arch-why-orb-3 {
  width: 120px;
  height: 120px;
  background: radial-gradient(circle, rgba(201, 169, 98, 0.15) 0%, transparent 70%);
  top: 50%;
  left: 40%;
  animation: orbFloat3 10s ease-in-out infinite;
}

/* Animated Lines */
.arch-why-line {
  position: absolute;
  background: linear-gradient(90deg, transparent, rgba(201, 169, 98, 0.15), transparent);
  height: 1px;
  z-index: 1;
}

.arch-why-line-1 {
  width: 40%;
  top: 25%;
  left: 5%;
  animation: lineSlide1 8s ease-in-out infinite;
}

.arch-why-line-2 {
  width: 30%;
  bottom: 30%;
  right: 10%;
  animation: lineSlide2 10s ease-in-out infinite;
}

@keyframes whyGradientFloat1 {
  0%, 100% { transform: translate(0, 0) scale(1); }
  50% { transform: translate(30px, 20px) scale(1.05); }
}

@keyframes whyGradientFloat2 {
  0%, 100% { transform: translate(0, 0) scale(1); }
  50% { transform: translate(-20px, -30px) scale(1.1); }
}

@keyframes orbFloat1 {
  0%, 100% { transform: translate(0, 0); opacity: 0.6; }
  50% { transform: translate(-20px, 15px); opacity: 0.9; }
}

@keyframes orbFloat2 {
  0%, 100% { transform: translate(0, 0); opacity: 0.5; }
  50% { transform: translate(25px, -20px); opacity: 0.8; }
}

@keyframes orbFloat3 {
  0%, 100% { transform: translate(0, 0); opacity: 0.4; }
  50% { transform: translate(-15px, 25px); opacity: 0.7; }
}

@keyframes lineSlide1 {
  0%, 100% { transform: translateX(0); opacity: 0.3; }
  50% { transform: translateX(50px); opacity: 0.6; }
}

@keyframes lineSlide2 {
  0%, 100% { transform: translateX(0); opacity: 0.2; }
  50% { transform: translateX(-40px); opacity: 0.5; }
}

.arch-why-compact-content {
  position: relative;
  z-index: 10;
}

/* Why Badge */
.arch-why-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 10px 20px;
  background: rgba(201, 169, 98, 0.1);
  border: 1px solid rgba(201, 169, 98, 0.2);
  border-radius: 50px;
  margin-bottom: 28px;
  font-family: var(--arch-font-body);
  font-size: 12px;
  font-weight: 600;
  color: var(--arch-accent);
  text-transform: uppercase;
  letter-spacing: 2px;
}

.arch-why-badge-pulse {
  width: 8px;
  height: 8px;
  background: var(--arch-accent);
  border-radius: 50%;
  animation: badgePulse 2s ease-in-out infinite;
}

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

/* Interactive Question */
.arch-why-question {
  text-align: center;
  margin-bottom: 56px;
}

.arch-question-title {
  font-family: var(--arch-font-display);
  font-size: clamp(28px, 4vw, 48px);
  font-weight: 400;
  color: #ffffff;
  line-height: 1.3;
  margin: 0 0 20px;
  max-width: 850px;
  margin-left: auto;
  margin-right: auto;
  text-shadow: 0 2px 30px rgba(0, 0, 0, 0.3);
}

.arch-question-highlight {
  color: var(--arch-accent);
  font-weight: 500;
  position: relative;
}

.arch-question-highlight::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 100%;
  height: 2px;
  background: linear-gradient(90deg, var(--arch-accent), transparent);
  animation: underlineGrow 2s ease-in-out infinite;
}

@keyframes underlineGrow {
  0%, 100% { transform: scaleX(0); transform-origin: left; }
  50% { transform: scaleX(1); transform-origin: left; }
}

.arch-question-em {
  font-style: italic;
  background: linear-gradient(135deg, var(--arch-accent) 0%, #d4b978 50%, var(--arch-accent) 100%);
  background-size: 200% auto;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  animation: questionShimmer 4s ease-in-out infinite;
}

@keyframes questionShimmer {
  0% { background-position: 0% center; }
  100% { background-position: 200% center; }
}

.arch-question-subtitle {
  font-family: var(--arch-font-body);
  font-size: 17px;
  color: rgba(255, 255, 255, 0.6);
  margin: 0;
  letter-spacing: 0.5px;
}

/* Compact Benefits Row */
.arch-benefits-compact {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 32px;
  flex-wrap: wrap;
  padding: 36px 48px;
  background: linear-gradient(135deg, rgba(13, 13, 13, 0.8), rgba(20, 20, 20, 0.6));
  border: 1px solid rgba(201, 169, 98, 0.2);
  border-radius: 20px;
  margin-bottom: 48px;
  backdrop-filter: blur(10px);
  box-shadow: 
    0 4px 30px rgba(0, 0, 0, 0.3),
    inset 0 1px 0 rgba(201, 169, 98, 0.1);
}

.arch-benefit-item {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 12px 16px;
  border-radius: 12px;
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.arch-benefit-item:hover {
  background: rgba(201, 169, 98, 0.08);
  transform: translateY(-4px);
}

.arch-benefit-icon-sm {
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, rgba(201, 169, 98, 0.15), rgba(139, 115, 85, 0.1));
  border: 1px solid rgba(201, 169, 98, 0.2);
  border-radius: 12px;
  flex-shrink: 0;
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.arch-benefit-icon-sm svg {
  width: 24px;
  height: 24px;
  fill: var(--arch-accent);
  transition: transform 0.3s ease;
}

.arch-benefit-item:hover .arch-benefit-icon-sm {
  background: linear-gradient(135deg, rgba(201, 169, 98, 0.25), rgba(139, 115, 85, 0.15));
  transform: scale(1.1) rotate(5deg);
  box-shadow: 0 8px 25px rgba(201, 169, 98, 0.2);
}

.arch-benefit-item:hover .arch-benefit-icon-sm svg {
  transform: scale(1.1);
}

.arch-benefit-text {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.arch-benefit-text strong {
  font-family: var(--arch-font-display);
  font-size: 16px;
  font-weight: 500;
  color: var(--arch-text);
}

.arch-benefit-text span {
  font-family: var(--arch-font-body);
  font-size: 13px;
  color: var(--arch-text-muted);
}

.arch-benefit-divider {
  width: 1px;
  height: 50px;
  background: linear-gradient(180deg, transparent, rgba(201, 169, 98, 0.4), transparent);
}

/* Two Blocks Layout */
.arch-two-blocks {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
  margin-top: 50px;
  margin-bottom: 40px;
}

.arch-block {
  position: relative;
  background: rgba(26, 26, 26, 0.6);
  border: 1px solid rgba(201, 169, 98, 0.15);
  border-radius: 20px;
  padding: 32px;
  backdrop-filter: blur(10px);
  transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  overflow: hidden;
}

.arch-block::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, transparent, var(--arch-accent), transparent);
  opacity: 0;
  transition: opacity 0.4s ease;
}

.arch-block:hover::before {
  opacity: 1;
}

.arch-block:hover {
  border-color: rgba(201, 169, 98, 0.3);
  transform: translateY(-4px);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
}

.arch-block-header {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 28px;
  padding-bottom: 20px;
  border-bottom: 1px solid rgba(201, 169, 98, 0.1);
}

.arch-block-icon {
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, rgba(201, 169, 98, 0.2), rgba(139, 115, 85, 0.1));
  border-radius: 14px;
  border: 1px solid rgba(201, 169, 98, 0.2);
}

.arch-block-icon svg {
  width: 24px;
  height: 24px;
  fill: var(--arch-accent);
}

.arch-block-icon-alt {
  background: linear-gradient(135deg, rgba(45, 71, 57, 0.3), rgba(45, 71, 57, 0.1));
  border-color: rgba(45, 71, 57, 0.3);
}

.arch-block-icon-alt svg {
  fill: var(--arch-secondary-light);
}

.arch-block-title {
  font-family: var(--arch-font-display);
  font-size: 22px;
  font-weight: 500;
  color: var(--arch-text);
  margin: 0;
}

.arch-block-content {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

/* Block 1 - Benefits Items */
.arch-block-item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  padding: 14px 16px;
  background: rgba(13, 13, 13, 0.4);
  border-radius: 12px;
  border: 1px solid rgba(255, 255, 255, 0.03);
  transition: all 0.3s ease;
}

.arch-block-item:hover {
  background: rgba(201, 169, 98, 0.08);
  border-color: rgba(201, 169, 98, 0.15);
}

.arch-block-item-icon {
  width: 36px;
  height: 36px;
  min-width: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(201, 169, 98, 0.1);
  border-radius: 10px;
}

.arch-block-item-icon svg {
  width: 18px;
  height: 18px;
  fill: var(--arch-accent);
}

.arch-block-item-text {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.arch-block-item-text strong {
  font-family: var(--arch-font-body);
  font-size: 15px;
  font-weight: 600;
  color: var(--arch-text);
}

.arch-block-item-text span {
  font-family: var(--arch-font-body);
  font-size: 13px;
  color: var(--arch-text-muted);
}

/* Block 2 - Process Steps */
.arch-process-steps {
  gap: 0 !important;
}

.arch-process-step {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 16px;
  position: relative;
  transition: all 0.3s ease;
}

.arch-process-step:hover {
  background: rgba(201, 169, 98, 0.05);
  border-radius: 12px;
}

.arch-process-number {
  width: 44px;
  height: 44px;
  min-width: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--arch-font-body);
  font-size: 14px;
  font-weight: 700;
  color: var(--arch-text-muted);
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 12px;
  transition: all 0.3s ease;
}

.arch-process-step:hover .arch-process-number {
  background: rgba(201, 169, 98, 0.15);
  border-color: rgba(201, 169, 98, 0.3);
  color: var(--arch-accent);
}

.arch-process-number-gold {
  background: linear-gradient(135deg, rgba(201, 169, 98, 0.2), rgba(201, 169, 98, 0.1));
  border-color: rgba(201, 169, 98, 0.3);
  color: var(--arch-accent);
}

.arch-process-info {
  display: flex;
  flex-direction: column;
  gap: 2px;
  flex: 1;
}

.arch-process-info strong {
  font-family: var(--arch-font-body);
  font-size: 15px;
  font-weight: 600;
  color: var(--arch-text);
}

.arch-process-info span {
  font-family: var(--arch-font-body);
  font-size: 13px;
  color: var(--arch-text-muted);
}

.arch-process-connector {
  position: absolute;
  left: 37px;
  bottom: -8px;
  width: 2px;
  height: 16px;
  background: linear-gradient(180deg, rgba(201, 169, 98, 0.3), transparent);
}

.arch-process-step-final .arch-process-connector {
  display: none;
}

/* Waiting Period Block */
.arch-process-waiting {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
  padding: 4px 0;
  margin: 4px 0;
}

.arch-process-waiting-line {
  flex: 1;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(201, 169, 98, 0.3), rgba(201, 169, 98, 0.3));
}

.arch-process-waiting-line:last-child {
  background: linear-gradient(90deg, rgba(201, 169, 98, 0.3), rgba(201, 169, 98, 0.3), transparent);
}

.arch-process-waiting-badge {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 6px 14px;
  background: rgba(201, 169, 98, 0.1);
  border: 1px dashed rgba(201, 169, 98, 0.4);
  border-radius: 20px;
  white-space: nowrap;
}

.arch-process-waiting-badge svg {
  width: 14px;
  height: 14px;
  fill: var(--arch-accent);
}

.arch-process-waiting-badge span {
  font-family: var(--arch-font-body);
  font-size: 12px;
  font-weight: 600;
  color: var(--arch-accent);
  letter-spacing: 0.5px;
}

/* Responsive for Two Blocks */
@media screen and (max-width: 991px) {
  .arch-two-blocks {
    grid-template-columns: 1fr;
    gap: 24px;
  }
  
  .arch-block {
    padding: 28px;
  }
}

@media screen and (max-width: 767px) {
  .arch-two-blocks {
    margin-top: 40px;
    margin-bottom: 30px;
  }
  
  .arch-block {
    padding: 24px;
    border-radius: 16px;
  }
  
  .arch-block-header {
    margin-bottom: 24px;
    padding-bottom: 16px;
  }
  
  .arch-block-icon {
    width: 42px;
    height: 42px;
  }
  
  .arch-block-title {
    font-size: 20px;
  }
  
  .arch-block-item {
    padding: 12px 14px;
  }
  
  .arch-process-step {
    padding: 14px 12px;
  }
  
  .arch-process-number {
    width: 40px;
    height: 40px;
    min-width: 40px;
    font-size: 13px;
  }
  
  .arch-process-connector {
    left: 31px;
  }
  
  .arch-process-waiting-badge {
    padding: 5px 12px;
  }
  
  .arch-process-waiting-badge svg {
    width: 13px;
    height: 13px;
  }
  
  .arch-process-waiting-badge span {
    font-size: 11px;
  }
}

@media screen and (max-width: 479px) {
  .arch-block {
    padding: 20px;
  }
  
  .arch-block-header {
    gap: 12px;
  }
  
  .arch-block-icon {
    width: 38px;
    height: 38px;
  }
  
  .arch-block-icon svg {
    width: 20px;
    height: 20px;
  }
  
  .arch-block-title {
    font-size: 18px;
  }
  
  .arch-block-item {
    padding: 10px 12px;
    gap: 12px;
  }
  
  .arch-block-item-icon {
    width: 32px;
    height: 32px;
    min-width: 32px;
  }
  
  .arch-block-item-icon svg {
    width: 16px;
    height: 16px;
  }
  
  .arch-block-item-text strong {
    font-size: 14px;
  }
  
  .arch-block-item-text span {
    font-size: 12px;
  }
  
  .arch-process-step {
    padding: 12px 10px;
    gap: 12px;
  }
  
  .arch-process-number {
    width: 36px;
    height: 36px;
    min-width: 36px;
    font-size: 12px;
  }
  
  .arch-process-info strong {
    font-size: 14px;
  }
  
  .arch-process-info span {
    font-size: 12px;
  }
  
  .arch-process-connector {
    left: 27px;
  }
  
  .arch-process-waiting-badge {
    padding: 4px 10px;
    gap: 5px;
  }
  
  .arch-process-waiting-badge svg {
    width: 12px;
    height: 12px;
  }
  
  .arch-process-waiting-badge span {
    font-size: 10px;
  }
}

/* Compact CTA */
.arch-compact-cta {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  font-family: var(--arch-font-body);
  font-size: 15px;
  color: rgba(255, 255, 255, 0.5);
  padding: 16px 28px;
  background: rgba(201, 169, 98, 0.08);
  border: 1px solid rgba(201, 169, 98, 0.15);
  border-radius: 50px;
  margin: 0 auto;
  width: fit-content;
  transition: all 0.3s ease;
}

.arch-compact-cta:hover {
  background: rgba(201, 169, 98, 0.15);
  color: var(--arch-accent);
  transform: translateY(4px);
}

.arch-compact-cta svg {
  width: 22px;
  height: 22px;
  fill: var(--arch-accent);
  animation: ctaArrowBounce 2s ease-in-out infinite;
}

@keyframes ctaArrowBounce {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(6px); }
}

/* Responsive for Compact Why */
@media (max-width: 992px) {
  .arch-benefits-compact {
    gap: 24px;
    padding: 28px 24px;
  }
  
  .arch-benefit-divider {
    display: none;
  }
  
  .arch-benefit-item {
    flex: 1 1 calc(50% - 12px);
    min-width: 200px;
    justify-content: flex-start;
  }
}

@media (max-width: 576px) {
  .arch-why-compact {
    padding: 60px 0;
  }
  
  .arch-benefits-compact {
    flex-direction: column;
    gap: 20px;
    padding: 24px 20px;
  }
  
  .arch-benefit-item {
    width: 100%;
    flex: unset;
  }
}

/* ===== ARCHITECTURE FOOTER STYLES ===== */

.arch-footer-theme {
  /* Architecture variables for footer */
  --arch-primary: #8B7355;
  --arch-primary-light: #A69076;
  --arch-primary-dark: #6B5A45;
  --arch-accent: #C9A962;
  --arch-accent-light: #E5D4A1;
  --arch-dark: #0D0D0D;
  --arch-charcoal: #1A1A1A;
  --arch-text: #F5F5F5;
  --arch-text-muted: rgba(245, 245, 245, 0.7);
  --arch-font-display: 'Playfair Display', serif;
  --arch-font-body: 'DM Sans', sans-serif;
  --arch-font-elegant: 'Cormorant Garamond', serif;
}

.arch-footer-cta-section {
  position: relative;
  padding: 120px 0;
  overflow: hidden;
  background: linear-gradient(180deg, #0f0f0f 0%, #0a0a0a 50%, #080808 100%);
}

.arch-footer-cta-bg {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: 
    radial-gradient(ellipse 120% 100% at 50% 120%, rgba(201, 169, 98, 0.25), transparent 50%),
    radial-gradient(ellipse 100% 80% at 20% 10%, rgba(139, 115, 85, 0.15), transparent 40%),
    radial-gradient(ellipse 80% 60% at 80% 20%, rgba(201, 169, 98, 0.12), transparent 40%);
}

.arch-footer-cta-pattern {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-image: 
    linear-gradient(rgba(201, 169, 98, 0.06) 1px, transparent 1px),
    linear-gradient(90deg, rgba(201, 169, 98, 0.06) 1px, transparent 1px);
  background-size: 50px 50px;
  opacity: 0.8;
}

.arch-footer-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(60px);
  pointer-events: none;
}

.arch-footer-orb-1 {
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(201, 169, 98, 0.45) 0%, rgba(201, 169, 98, 0.15) 40%, transparent 70%);
  top: -200px;
  right: -5%;
  animation: footerOrb1 12s ease-in-out infinite;
}

.arch-footer-orb-2 {
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(139, 115, 85, 0.4) 0%, rgba(139, 115, 85, 0.1) 40%, transparent 70%);
  bottom: -150px;
  left: 5%;
  animation: footerOrb2 15s ease-in-out infinite;
}

.arch-footer-orb-3 {
  width: 300px;
  height: 300px;
  background: radial-gradient(circle, rgba(201, 169, 98, 0.3) 0%, transparent 60%);
  top: 40%;
  left: 45%;
  transform: translate(-50%, -50%);
  animation: footerOrb3 18s ease-in-out infinite;
}

/* Decorative Lines */
.arch-footer-line {
  position: absolute;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(201, 169, 98, 0.35), transparent);
  z-index: 1;
  pointer-events: none;
}

.arch-footer-line-1 {
  width: 60%;
  top: 15%;
  left: 5%;
  animation: footerLineSlide1 10s ease-in-out infinite;
}

.arch-footer-line-2 {
  width: 50%;
  bottom: 20%;
  right: 0%;
  animation: footerLineSlide2 12s ease-in-out infinite;
}

@keyframes footerOrb1 {
  0%, 100% { transform: translate(0, 0) scale(1); opacity: 0.5; }
  50% { transform: translate(-30px, 20px) scale(1.1); opacity: 0.7; }
}

@keyframes footerOrb2 {
  0%, 100% { transform: translate(0, 0) scale(1); opacity: 0.4; }
  50% { transform: translate(25px, -15px) scale(1.05); opacity: 0.6; }
}

@keyframes footerOrb3 {
  0%, 100% { transform: translate(-50%, -50%) scale(1); opacity: 0.3; }
  50% { transform: translate(-50%, -50%) scale(1.3); opacity: 0.5; }
}

@keyframes footerLineSlide1 {
  0%, 100% { transform: translateX(0); opacity: 0.3; }
  50% { transform: translateX(30px); opacity: 0.6; }
}

@keyframes footerLineSlide2 {
  0%, 100% { transform: translateX(0); opacity: 0.2; }
  50% { transform: translateX(-25px); opacity: 0.5; }
}

.arch-footer-cta-content {
  position: relative;
  z-index: 10;
}

.arch-footer-cta-inner {
  text-align: center;
  max-width: 650px;
  margin: 0 auto;
}

.arch-footer-badge {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 14px 28px;
  background: linear-gradient(135deg, rgba(201, 169, 98, 0.2), rgba(139, 115, 85, 0.15));
  border: 1px solid rgba(201, 169, 98, 0.4);
  border-radius: 50px;
  margin-bottom: 36px;
  font-family: 'DM Sans', sans-serif;
  font-size: 12px;
  font-weight: 600;
  color: #C9A962;
  text-transform: uppercase;
  letter-spacing: 2px;
  backdrop-filter: blur(10px);
  box-shadow: 0 4px 20px rgba(201, 169, 98, 0.15);
}

.arch-footer-badge-dot {
  width: 10px;
  height: 10px;
  background: #C9A962;
  border-radius: 50%;
  animation: footerDotPulse 2s ease-in-out infinite;
  box-shadow: 0 0 15px rgba(201, 169, 98, 0.6);
}

@keyframes footerDotPulse {
  0%, 100% { transform: scale(1); box-shadow: 0 0 15px rgba(201, 169, 98, 0.6); }
  50% { transform: scale(1.3); box-shadow: 0 0 30px rgba(201, 169, 98, 1); }
}

.arch-footer-cta-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(32px, 4.5vw, 52px);
  font-weight: 400;
  color: #ffffff;
  line-height: 1.25;
  margin: 0 0 24px;
  text-shadow: 0 2px 40px rgba(0, 0, 0, 0.5);
}

.arch-footer-title-highlight {
  font-style: italic;
  color: #C9A962;
  position: relative;
  display: inline-block;
}

.arch-footer-title-highlight::after {
  content: '';
  position: absolute;
  bottom: 2px;
  left: 0;
  width: 100%;
  height: 2px;
  background: linear-gradient(90deg, #C9A962, #d4b978, #C9A962);
  background-size: 200% 100%;
  animation: underlineShimmer 3s ease-in-out infinite;
}

@keyframes underlineShimmer {
  0% { background-position: 0% center; }
  100% { background-position: 200% center; }
}

.arch-footer-cta-desc {
  font-family: 'Cormorant Garamond', serif;
  font-size: 20px;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.75);
  margin: 0 0 40px;
  max-width: 550px;
  margin-left: auto;
  margin-right: auto;
}

.arch-footer-cta-buttons {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
}

.arch-footer-btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 18px 36px;
  background: linear-gradient(135deg, #C9A962 0%, #8B7355 100%);
  color: #0D0D0D;
  font-family: 'DM Sans', sans-serif;
  font-size: 15px;
  font-weight: 600;
  text-decoration: none;
  border-radius: 8px;
  transition: all 0.3s ease;
  box-shadow: 0 4px 25px rgba(201, 169, 98, 0.4);
}

.arch-footer-btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 35px rgba(201, 169, 98, 0.5);
  background: linear-gradient(135deg, #d4b978 0%, #A69076 100%);
}

.arch-footer-btn-primary svg {
  width: 18px;
  height: 18px;
  fill: #0D0D0D;
  transition: transform 0.3s ease;
}

.arch-footer-btn-primary:hover svg {
  transform: translate(3px, -3px);
}

.arch-footer-btn-secondary {
  padding: 18px 32px;
  background: rgba(201, 169, 98, 0.1);
  color: #C9A962;
  font-family: 'DM Sans', sans-serif;
  font-size: 15px;
  font-weight: 500;
  text-decoration: none;
  border: 1px solid rgba(201, 169, 98, 0.4);
  border-radius: 8px;
  transition: all 0.3s ease;
}

.arch-footer-btn-secondary:hover {
  color: #ffffff;
  border-color: #C9A962;
  background: rgba(201, 169, 98, 0.2);
}

@keyframes floatSlow {
  0%, 100% { transform: translateY(0) translateX(0); }
  50% { transform: translateY(-20px) translateX(10px); }
}

@media (max-width: 576px) {
  .arch-footer-cta-section {
    padding: 70px 0;
  }
  
  .arch-footer-cta-buttons {
    flex-direction: column;
    width: 100%;
  }
  
  .arch-footer-btn-primary,
  .arch-footer-btn-secondary {
    width: 100%;
    justify-content: center;
  }
}

/* ===== ARCHITECTURE PROJECTS SECTION ===== */

.arch-projects-section {
  position: relative;
  padding: 140px 0;
  background: var(--arch-dark);
  overflow: hidden;
}

/* Background */
.arch-projects-bg {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 0;
}

.arch-projects-gradient {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: 
    radial-gradient(ellipse 50% 30% at 50% 0%, rgba(139, 115, 85, 0.1), transparent),
    radial-gradient(ellipse 40% 25% at 0% 50%, rgba(45, 71, 57, 0.08), transparent),
    radial-gradient(ellipse 40% 25% at 100% 80%, rgba(201, 169, 98, 0.06), transparent);
}

.arch-projects-pattern {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-image: 
    linear-gradient(rgba(201, 169, 98, 0.015) 1px, transparent 1px),
    linear-gradient(90deg, rgba(201, 169, 98, 0.015) 1px, transparent 1px);
  background-size: 100px 100px;
}

/* Decorative Lines */
.arch-projects-lines {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  pointer-events: none;
  z-index: 1;
}

.arch-line-decor {
  position: absolute;
  background: linear-gradient(180deg, transparent, rgba(201, 169, 98, 0.1), transparent);
  width: 1px;
}

.arch-line-decor-1 {
  left: 15%;
  top: 0;
  height: 100%;
}

.arch-line-decor-2 {
  right: 15%;
  top: 0;
  height: 100%;
}

/* Content */
.arch-projects-content {
  position: relative;
  z-index: 10;
}

/* Projects Header */
.arch-projects-header {
  text-align: center;
  max-width: 800px;
  margin: 0 auto 60px;
}

.arch-projects-title {
  font-family: var(--arch-font-display);
  font-size: clamp(32px, 4vw, 48px);
  font-weight: 500;
  color: var(--arch-text);
  margin: 0 0 20px;
  line-height: 1.2;
}

.arch-projects-title em {
  font-style: italic;
  background: linear-gradient(135deg, var(--arch-accent), var(--arch-primary-light));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.arch-projects-subtitle {
  font-family: var(--arch-font-elegant);
  font-size: 18px;
  line-height: 1.7;
  color: var(--arch-text-muted);
  margin: 0 0 40px;
}

.arch-projects-subtitle strong {
  color: var(--arch-accent);
  font-weight: 600;
}

/* Filter Tabs */
.arch-filter-tabs {
  display: flex;
  justify-content: center;
  gap: 12px;
}

.arch-filter-tab {
  padding: 14px 28px;
  background: transparent;
  border: 1px solid rgba(201, 169, 98, 0.2);
  border-radius: 4px;
  font-family: var(--arch-font-body);
  font-size: 14px;
  font-weight: 500;
  color: var(--arch-text-muted);
  cursor: pointer;
  transition: all 0.3s ease;
  letter-spacing: 0.5px;
}

.arch-filter-tab:hover {
  border-color: rgba(201, 169, 98, 0.4);
  color: var(--arch-text);
}

.arch-filter-tab.active {
  background: linear-gradient(135deg, var(--arch-primary), var(--arch-primary-dark));
  border-color: var(--arch-primary);
  color: #ffffff;
}

/* Projects Grid */
.arch-projects-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

/* Project Card */
.arch-project-card {
  opacity: 0;
  transform: translateY(50px);
  transition: all 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

.arch-project-card.visible {
  opacity: 1;
  transform: translateY(0);
}

.arch-project-link {
  display: block;
  text-decoration: none;
  position: relative;
}

.arch-project-image-wrapper {
  position: relative;
  border-radius: 8px;
  overflow: hidden;
  margin-bottom: 16px;
}

.arch-project-image {
  aspect-ratio: 4 / 3;
  overflow: hidden;
}

.arch-project-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

.arch-project-card:hover .arch-project-image img {
  transform: scale(1.08);
}

.arch-project-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(180deg, transparent 40%, rgba(13, 13, 13, 0.9));
  opacity: 0;
  transition: opacity 0.4s ease;
}

.arch-project-card:hover .arch-project-overlay {
  opacity: 1;
}

.arch-project-overlay-content {
  position: absolute;
  bottom: 24px;
  left: 24px;
  right: 24px;
  transform: translateY(20px);
  opacity: 0;
  transition: all 0.4s ease 0.1s;
}

.arch-project-card:hover .arch-project-overlay-content {
  transform: translateY(0);
  opacity: 1;
}

.arch-view-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 18px;
  background: var(--arch-accent);
  color: var(--arch-dark);
  font-family: var(--arch-font-body);
  font-size: 12px;
  font-weight: 600;
  border-radius: 4px;
  transition: all 0.3s ease;
}

.arch-view-btn svg {
  width: 16px;
  height: 16px;
  transition: transform 0.3s ease;
}

.arch-view-btn:hover svg {
  transform: translate(4px, -4px);
}

.arch-project-corner {
  position: absolute;
  top: 0;
  right: 0;
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg, transparent 50%, rgba(201, 169, 98, 0.1) 50%);
  opacity: 0;
  transition: opacity 0.3s ease;
}

.arch-project-card:hover .arch-project-corner {
  opacity: 1;
}

/* Project Info */
.arch-project-info {
  padding: 0 8px;
}

.arch-project-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-bottom: 12px;
}

.arch-project-tag {
  padding: 4px 10px;
  background: rgba(139, 115, 85, 0.1);
  border: 1px solid rgba(139, 115, 85, 0.2);
  border-radius: 4px;
  font-family: var(--arch-font-body);
  font-size: 10px;
  font-weight: 500;
  color: var(--arch-primary-light);
  letter-spacing: 0.5px;
}

.arch-project-tag-accent {
  background: rgba(201, 169, 98, 0.15);
  border-color: rgba(201, 169, 98, 0.3);
  color: var(--arch-accent);
}

.arch-project-tag-green {
  background: rgba(45, 71, 57, 0.2);
  border-color: rgba(45, 71, 57, 0.3);
  color: var(--arch-secondary-light);
}

.arch-project-tag-blue {
  background: rgba(59, 130, 246, 0.1);
  border-color: rgba(59, 130, 246, 0.2);
  color: #60a5fa;
}

.arch-project-tag-orange {
  background: rgba(249, 115, 22, 0.1);
  border-color: rgba(249, 115, 22, 0.2);
  color: #fb923c;
}

.arch-project-tag-purple {
  background: rgba(139, 92, 246, 0.1);
  border-color: rgba(139, 92, 246, 0.2);
  color: #a78bfa;
}

.arch-project-tag-pink {
  background: rgba(236, 72, 153, 0.1);
  border-color: rgba(236, 72, 153, 0.2);
  color: #f472b6;
}

.arch-project-tag-gold {
  background: rgba(201, 169, 98, 0.2);
  border-color: rgba(201, 169, 98, 0.4);
  color: var(--arch-accent);
}

.arch-project-title {
  font-family: var(--arch-font-display);
  font-size: 18px;
  font-weight: 500;
  color: var(--arch-text);
  margin: 0 0 10px;
  transition: color 0.3s ease;
}

.arch-project-card:hover .arch-project-title {
  color: var(--arch-accent);
}

.arch-project-desc {
  font-family: var(--arch-font-body);
  font-size: 13px;
  line-height: 1.55;
  color: var(--arch-text-muted);
  margin: 0 0 12px;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.arch-project-meta {
  display: none;
}

.arch-project-feature {
  display: flex;
  align-items: center;
  gap: 5px;
  font-family: var(--arch-font-body);
  font-size: 11px;
  color: var(--arch-text-subtle);
}

.arch-project-feature svg {
  width: 12px;
  height: 12px;
  fill: var(--arch-secondary-light);
}

@media screen and (max-width: 1200px) {
  .arch-project-meta {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
  }
}

/* Projects Counter */
.arch-projects-counter {
  text-align: center;
  margin-top: 60px;
  padding-top: 40px;
  border-top: 1px solid rgba(201, 169, 98, 0.1);
}

.arch-projects-counter span {
  font-family: var(--arch-font-body);
  font-size: 14px;
  color: var(--arch-text-subtle);
}

/* ===== ARCHITECTURE RESPONSIVE ===== */

@media screen and (max-width: 1400px) {
  .arch-projects-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
  }
}

@media screen and (max-width: 1200px) {
  .arch-hero-grid {
    gap: 60px;
  }
  
  .arch-benefits-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .arch-projects-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
  }
}

@media screen and (max-width: 991px) {
  .arch-hero {
    padding-top: 120px;
  }
  
  .arch-hero-grid {
    grid-template-columns: 1fr;
    text-align: center;
    gap: 60px;
  }
  
  .arch-hero-text {
    align-items: center;
    order: 2;
  }
  
  .arch-hero-side-line {
    display: none;
  }
  
  .arch-hero-visual {
    order: 1;
  }
  
  .arch-hero-description {
    max-width: 100%;
  }
  
  .arch-hero-features {
    align-items: center;
  }
  
  .arch-hero-cta {
    justify-content: center;
    flex-wrap: wrap;
  }
  
  .arch-stat-1 {
    left: 10px;
    top: -10px;
  }
  
  .arch-stat-2 {
    right: -20px;
  }
  
  .arch-stat-3 {
    left: 10%;
  }
  
  /* Carousel Responsive - Tablet */
  .arch-carousel-wrapper {
    max-width: 500px;
    height: 450px;
    margin: 0 auto;
  }
  
  .arch-carousel-stat-galleries {
    left: -15px;
  }
  
  .arch-carousel-stat-design {
    right: -30px;
  }
  
  .arch-carousel-row-1 .arch-carousel-image-wrapper {
    width: 180px;
    height: 110px;
  }

  .arch-carousel-row-2 .arch-carousel-image-wrapper {
    width: 160px;
    height: 100px;
  }

  .arch-carousel-row-3 .arch-carousel-image-wrapper {
    width: 170px;
    height: 105px;
  }
  
  .arch-benefits-grid {
    grid-template-columns: 1fr;
  }
  
  .arch-projects-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .arch-filter-tabs {
    flex-wrap: wrap;
  }
  
  .arch-line-decor {
    display: none;
  }
  
  .arch-why-orb-1,
  .arch-why-orb-3 {
    display: none;
  }
}

@media screen and (max-width: 767px) {
  .arch-hero {
    padding-top: 100px;
    min-height: auto;
  }
  
  .arch-hero-grid {
    min-height: auto;
    padding: 40px 0 100px;
  }
  
  .arch-breadcrumb {
    justify-content: center;
  }
  
  .arch-stat-card {
    display: none;
  }
  
  .arch-decor {
    display: none;
  }
  
  .arch-scroll-indicator {
    display: none;
  }
  
  .arch-element {
    display: none;
  }
  
  .arch-line {
    display: none;
  }
  
  .arch-orb {
    filter: blur(120px);
    opacity: 0.3;
  }
  
  /* Carousel Responsive - Mobile */
  .arch-carousel-wrapper {
    max-width: 100%;
    height: 380px;
    border-radius: 12px;
  }
  
  .arch-carousel-stat {
    padding: 10px 14px;
    border-radius: 10px;
  }
  
  .arch-carousel-stat-galleries {
    top: 10px;
    left: 10px;
  }
  
  .arch-carousel-stat-design {
    top: auto;
    bottom: 70px;
    right: 10px;
  }
  
  .arch-carousel-stat-support {
    bottom: 15px;
  }
  
  .arch-carousel-stat-number {
    font-size: 22px;
  }
  
  .arch-carousel-stat-label {
    font-size: 9px;
  }
  
  .arch-carousel-stat-value {
    font-size: 12px;
  }
  
  .arch-carousel-stat-desc {
    font-size: 9px;
  }
  
  .arch-carousel-stat-icon {
    width: 26px;
    height: 26px;
  }
  
  .arch-carousel-stat-icon svg {
    width: 14px;
    height: 14px;
  }
  
  .arch-carousel-stat-icon-emoji {
    font-size: 18px;
  }
  
  .arch-carousel-row {
    padding: 6px 0;
  }
  
  .arch-carousel-row-1 {
    height: 100px;
  }

  .arch-carousel-row-2 {
    height: 90px;
    margin-left: -20px;
  }

  .arch-carousel-row-3 {
    height: 100px;
    margin-left: 10px;
  }
  
  .arch-carousel-row-1 .arch-carousel-image-wrapper {
    width: 150px;
    height: 90px;
  }

  .arch-carousel-row-2 .arch-carousel-image-wrapper {
    width: 130px;
    height: 80px;
  }

  .arch-carousel-row-3 .arch-carousel-image-wrapper {
    width: 140px;
    height: 85px;
  }
  
  .arch-carousel-image-wrapper {
    border-radius: 8px;
  }
  
  .arch-carousel-track {
    gap: 12px;
  }
  
  .arch-carousel-fade-left,
  .arch-carousel-fade-right {
    width: 50px;
  }
  
  .arch-carousel-fade-top,
  .arch-carousel-fade-bottom {
    height: 40px;
  }
  
  .arch-why-section,
  .arch-projects-section {
    padding: 80px 0;
  }
  
  .arch-why-cta {
    padding: 32px 24px;
  }
  
  .arch-btn-primary,
  .arch-btn-secondary {
    width: 100%;
    justify-content: center;
  }
}

@media screen and (max-width: 479px) {
  .arch-hero-title {
    font-size: 32px;
  }
  
  .arch-title-line-1 {
    font-size: 12px;
    letter-spacing: 2px;
  }
  
  .arch-hero-description {
    font-size: 17px;
  }
  
  /* Carousel Responsive - Small Mobile */
  .arch-carousel-wrapper {
    height: 320px;
    border-radius: 10px;
  }
  
  .arch-carousel-container {
    padding: 30px 0;
    gap: 10px;
  }
  
  .arch-carousel-stat-design,
  .arch-carousel-stat-galleries {
    display: none;
  }
  
  .arch-carousel-stat-support {
    bottom: 10px;
    padding: 8px 12px;
  }
  
  .arch-carousel-row {
    padding: 4px 0;
  }
  
  .arch-carousel-row-1 {
    height: 85px;
  }

  .arch-carousel-row-2 {
    height: 75px;
    margin-left: -15px;
  }

  .arch-carousel-row-3 {
    height: 85px;
    margin-left: 5px;
  }
  
  .arch-carousel-row-1 .arch-carousel-image-wrapper {
    width: 120px;
    height: 75px;
  }

  .arch-carousel-row-2 .arch-carousel-image-wrapper {
    width: 105px;
    height: 65px;
  }

  .arch-carousel-row-3 .arch-carousel-image-wrapper {
    width: 115px;
    height: 70px;
  }
  
  .arch-carousel-track {
    gap: 8px;
  }
  
  .arch-carousel-fade-left,
  .arch-carousel-fade-right {
    width: 30px;
  }
  
  .arch-carousel-fade-top,
  .arch-carousel-fade-bottom {
    height: 25px;
  }
  
  .arch-filter-tab {
    padding: 12px 20px;
    font-size: 13px;
  }
  
  .arch-project-title {
    font-size: 20px;
  }
  
  .arch-why-title-lg {
    font-size: 28px;
  }
}

/* Reduced motion */
@media (prefers-reduced-motion: reduce) {
  .arch-element,
  .arch-line,
  .arch-orb,
  .arch-main-frame,
  .arch-stat-card,
  .arch-scroll-line,
  .arch-cta-arrow,
  .arch-hero-pattern {
    animation: none !important;
  }
  
  .arch-project-card {
    opacity: 1 !important;
    transform: none !important;
  }
}

/* ===========================================
   FLOATING WHATSAPP BUTTON
   =========================================== */

.whatsapp-float {
  position: fixed;
  bottom: 30px;
  right: 30px;
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg, #25D366 0%, #128C7E 100%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
  cursor: pointer;
  z-index: 9999;
  transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  text-decoration: none;
}

.whatsapp-float:hover {
  transform: scale(1.1) translateY(-5px);
  box-shadow: 0 8px 30px rgba(37, 211, 102, 0.5);
}

.whatsapp-float svg {
  width: 32px;
  height: 32px;
  fill: #ffffff;
}

.whatsapp-float::before {
  content: '';
  position: absolute;
  width: 100%;
  height: 100%;
  border-radius: 50%;
  background: linear-gradient(135deg, #25D366 0%, #128C7E 100%);
  animation: whatsappPulse 2s ease-in-out infinite;
  z-index: -1;
}

@keyframes whatsappPulse {
  0% {
    transform: scale(1);
    opacity: 0.5;
  }
  50% {
    transform: scale(1.3);
    opacity: 0;
  }
  100% {
    transform: scale(1);
    opacity: 0;
  }
}

/* Tooltip */
.whatsapp-float .whatsapp-tooltip {
  position: absolute;
  right: 70px;
  background: rgba(15, 23, 42, 0.95);
  color: #ffffff;
  padding: 10px 16px;
  border-radius: 8px;
  font-size: 14px;
  font-weight: 500;
  white-space: nowrap;
  opacity: 0;
  visibility: hidden;
  transform: translateX(10px);
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.whatsapp-float .whatsapp-tooltip::after {
  content: '';
  position: absolute;
  right: -6px;
  top: 50%;
  transform: translateY(-50%);
  border-width: 6px;
  border-style: solid;
  border-color: transparent transparent transparent rgba(15, 23, 42, 0.95);
}

.whatsapp-float:hover .whatsapp-tooltip {
  opacity: 1;
  visibility: visible;
  transform: translateX(0);
}

/* Mobile adjustments */
@media (max-width: 768px) {
  .whatsapp-float {
    bottom: 20px;
    right: 20px;
    width: 55px;
    height: 55px;
  }
  
  .whatsapp-float svg {
    width: 28px;
    height: 28px;
  }
  
  .whatsapp-float .whatsapp-tooltip {
    display: none;
  }
}

/* Architecture mode WhatsApp button */
.architecture-mode .whatsapp-float {
  background: linear-gradient(135deg, #25D366 0%, #128C7E 100%);
}

.architecture-mode .whatsapp-float::before {
  background: linear-gradient(135deg, #25D366 0%, #128C7E 100%);
}

/* ===========================================
   FITNESS & WELLNESS THEME STYLES
   =========================================== */

/* Fitness Color Variables */
:root {
  --fit-primary: #00FF87;
  --fit-primary-dark: #00CC6A;
  --fit-secondary: #FF3366;
  --fit-accent: #00D4FF;
  --fit-neon-pink: #FF00FF;
  --fit-neon-blue: #00BFFF;
  --fit-bg-dark: #0A0A0F;
  --fit-bg-darker: #050508;
  --fit-text-light: #FFFFFF;
  --fit-text-muted: rgba(255, 255, 255, 0.7);
  --fit-gradient-main: linear-gradient(135deg, #00FF87 0%, #00D4FF 100%);
  --fit-gradient-energy: linear-gradient(135deg, #FF3366 0%, #FF00FF 100%);
  --fit-gradient-dark: linear-gradient(180deg, #0A0A0F 0%, #12121A 50%, #0A0A0F 100%);
}

/* Fitness Mode Body */
.fitness-mode {
  background: var(--fit-bg-dark);
  color: var(--fit-text-light);
}

/* Fitness Progress Bar */
.fitness-progress {
  background: var(--fit-gradient-main) !important;
  box-shadow: 0 0 20px rgba(0, 255, 135, 0.5);
}

/* ===== FITNESS HERO ===== */

.fit-hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  background: var(--fit-bg-dark);
  overflow: hidden;
  padding-top: 100px;
}

/* Hero Background */
.fit-hero-bg {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 1;
}

.fit-hero-gradient {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: 
    radial-gradient(ellipse 80% 50% at 50% -20%, rgba(0, 255, 135, 0.15), transparent),
    radial-gradient(ellipse 60% 40% at 100% 50%, rgba(255, 51, 102, 0.12), transparent),
    radial-gradient(ellipse 60% 40% at 0% 80%, rgba(0, 212, 255, 0.1), transparent),
    var(--fit-gradient-dark);
}

.fit-hero-pattern {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-image: 
    linear-gradient(rgba(0, 255, 135, 0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(0, 255, 135, 0.04) 1px, transparent 1px);
  background-size: 80px 80px;
  mask-image: radial-gradient(ellipse 70% 60% at 50% 50%, black, transparent);
  animation: fitGridMove 25s linear infinite;
}

@keyframes fitGridMove {
  0% { transform: translate(0, 0); }
  100% { transform: translate(80px, 80px); }
}

.fit-hero-noise {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)'/%3E%3C/svg%3E");
  opacity: 0.02;
  pointer-events: none;
}

/* Floating Energy Elements */
.fit-floating-elements {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 2;
  pointer-events: none;
}

.fit-element {
  position: absolute;
  border: 2px solid;
  animation: fitElementFloat 12s ease-in-out infinite;
}

.fit-element-1 {
  width: 100px;
  height: 100px;
  border-color: rgba(0, 255, 135, 0.2);
  border-radius: 30% 70% 70% 30% / 30% 30% 70% 70%;
  top: 15%;
  left: 8%;
  animation-delay: 0s;
  background: linear-gradient(135deg, rgba(0, 255, 135, 0.05), transparent);
}

.fit-element-2 {
  width: 80px;
  height: 80px;
  border-color: rgba(255, 51, 102, 0.2);
  border-radius: 50%;
  top: 35%;
  right: 10%;
  animation-delay: -3s;
  background: linear-gradient(135deg, rgba(255, 51, 102, 0.05), transparent);
}

.fit-element-3 {
  width: 60px;
  height: 60px;
  border-color: rgba(0, 212, 255, 0.2);
  border-radius: 50% 50% 0 50%;
  bottom: 20%;
  left: 15%;
  animation-delay: -6s;
  background: linear-gradient(135deg, rgba(0, 212, 255, 0.05), transparent);
}

@keyframes fitElementFloat {
  0%, 100% {
    transform: translateY(0) rotate(0deg) scale(1);
    opacity: 0.6;
  }
  25% {
    transform: translateY(-30px) rotate(10deg) scale(1.1);
    opacity: 0.9;
  }
  50% {
    transform: translateY(15px) rotate(-5deg) scale(0.95);
    opacity: 0.7;
  }
  75% {
    transform: translateY(-20px) rotate(5deg) scale(1.05);
    opacity: 0.8;
  }
}

/* Pulse Elements */
.fit-pulse {
  position: absolute;
  border-radius: 50%;
  animation: fitPulseGlow 3s ease-in-out infinite;
}

.fit-pulse-1 {
  width: 150px;
  height: 150px;
  background: radial-gradient(circle, rgba(0, 255, 135, 0.3), transparent 70%);
  top: 20%;
  right: 25%;
  animation-delay: 0s;
}

.fit-pulse-2 {
  width: 120px;
  height: 120px;
  background: radial-gradient(circle, rgba(255, 51, 102, 0.3), transparent 70%);
  bottom: 25%;
  left: 30%;
  animation-delay: -1.5s;
}

@keyframes fitPulseGlow {
  0%, 100% {
    transform: scale(1);
    opacity: 0.5;
  }
  50% {
    transform: scale(1.3);
    opacity: 0.2;
  }
}

/* Neon Orbs */
.fit-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(100px);
  opacity: 0.5;
  z-index: 1;
  animation: fitOrbFloat 10s ease-in-out infinite;
}

.fit-orb-1 {
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(0, 255, 135, 0.3), transparent 70%);
  top: -15%;
  right: 5%;
  animation-delay: 0s;
}

.fit-orb-2 {
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(255, 51, 102, 0.25), transparent 70%);
  bottom: 5%;
  left: -10%;
  animation-delay: -4s;
}

.fit-orb-3 {
  width: 300px;
  height: 300px;
  background: radial-gradient(circle, rgba(0, 212, 255, 0.2), transparent 70%);
  top: 50%;
  left: 60%;
  animation-delay: -7s;
}

@keyframes fitOrbFloat {
  0%, 100% {
    transform: translate(0, 0) scale(1);
  }
  25% {
    transform: translate(40px, -40px) scale(1.08);
  }
  50% {
    transform: translate(-30px, 30px) scale(0.92);
  }
  75% {
    transform: translate(25px, 15px) scale(1.04);
  }
}

/* Hero Content */
.fit-hero-content {
  position: relative;
  z-index: 10;
  width: 100%;
  padding: 60px 0 80px;
}

/* Breadcrumb */
.fit-breadcrumb {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 40px;
  font-size: 14px;
  opacity: 0;
  animation: fitFadeInUp 0.8s ease forwards;
  animation-delay: 0.1s;
}

.fit-breadcrumb-link {
  color: var(--fit-text-muted);
  text-decoration: none;
  transition: color 0.3s ease;
}

.fit-breadcrumb-link:hover {
  color: var(--fit-primary);
}

.fit-breadcrumb-sep {
  color: rgba(255, 255, 255, 0.3);
}

.fit-breadcrumb-current {
  color: var(--fit-primary);
  font-weight: 500;
}

/* Hero Grid */
.fit-hero-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 60px;
  align-items: center;
}

@keyframes fitFadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Hero Text */
.fit-hero-text {
  position: relative;
}

.fit-hero-energy-line {
  position: absolute;
  left: -40px;
  top: 0;
  width: 4px;
  height: 100%;
  background: var(--fit-gradient-main);
  border-radius: 4px;
  box-shadow: 0 0 20px rgba(0, 255, 135, 0.5);
  animation: fitEnergyPulse 2s ease-in-out infinite;
}

@keyframes fitEnergyPulse {
  0%, 100% {
    opacity: 1;
    box-shadow: 0 0 20px rgba(0, 255, 135, 0.5);
  }
  50% {
    opacity: 0.7;
    box-shadow: 0 0 40px rgba(0, 255, 135, 0.8);
  }
}

/* Badge */
.fit-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 10px 20px;
  background: rgba(0, 255, 135, 0.1);
  border: 1px solid rgba(0, 255, 135, 0.3);
  border-radius: 50px;
  margin-bottom: 30px;
  opacity: 0;
  animation: fitFadeInUp 0.8s ease forwards;
  animation-delay: 0.2s;
}

.fit-badge-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 24px;
  height: 24px;
  color: var(--fit-primary);
  animation: fitBolt 2s ease-in-out infinite;
}

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

.fit-badge-icon svg {
  width: 18px;
  height: 18px;
}

.fit-badge-text {
  font-size: 14px;
  font-weight: 600;
  color: var(--fit-primary);
  letter-spacing: 0.5px;
  text-transform: uppercase;
}

/* Hero Title */
.fit-hero-title {
  font-family: 'Oswald', 'Bebas Neue', sans-serif;
  font-size: clamp(42px, 6vw, 72px);
  font-weight: 700;
  line-height: 1.05;
  margin-bottom: 30px;
  text-transform: uppercase;
  letter-spacing: 2px;
}

.fit-title-line {
  display: block;
  opacity: 0;
  animation: fitFadeInUp 0.8s ease forwards;
}

.fit-title-line-1 { animation-delay: 0.3s; }
.fit-title-line-2 { animation-delay: 0.4s; }
.fit-title-line-3 { animation-delay: 0.5s; }

.fit-title-highlight {
  background: var(--fit-gradient-main);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  text-shadow: 0 0 60px rgba(0, 255, 135, 0.4);
}

.fit-title-ampersand {
  color: var(--fit-secondary);
  font-style: italic;
  margin-right: 10px;
}

/* Hero Description */
.fit-hero-description {
  font-size: 18px;
  line-height: 1.7;
  color: var(--fit-text-muted);
  margin-bottom: 35px;
  max-width: 500px;
  opacity: 0;
  animation: fitFadeInUp 0.8s ease forwards;
  animation-delay: 0.6s;
}

.fit-hero-description strong {
  color: var(--fit-primary);
  font-weight: 600;
}

.fit-hero-description em {
  color: var(--fit-secondary);
  font-style: normal;
  font-weight: 500;
}

/* Hero Features */
.fit-hero-features {
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin-bottom: 40px;
  opacity: 0;
  animation: fitFadeInUp 0.8s ease forwards;
  animation-delay: 0.7s;
}

.fit-feature {
  display: flex;
  align-items: center;
  gap: 14px;
  font-size: 15px;
  color: var(--fit-text-muted);
}

.fit-feature-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 28px;
  height: 28px;
  background: rgba(0, 255, 135, 0.15);
  border-radius: 50%;
  color: var(--fit-primary);
}

.fit-feature-icon svg {
  width: 14px;
  height: 14px;
}

/* Hero CTA */
.fit-hero-cta {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  opacity: 0;
  animation: fitFadeInUp 0.8s ease forwards;
  animation-delay: 0.8s;
}

.fit-btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 18px 32px;
  background: var(--fit-gradient-main);
  color: var(--fit-bg-dark);
  font-size: 15px;
  font-weight: 700;
  text-decoration: none;
  border-radius: 8px;
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  box-shadow: 0 0 30px rgba(0, 255, 135, 0.3);
  text-transform: uppercase;
  letter-spacing: 1px;
}

.fit-btn-primary:hover {
  transform: translateY(-3px) scale(1.02);
  box-shadow: 0 10px 40px rgba(0, 255, 135, 0.5);
}

.fit-btn-icon {
  display: flex;
  transition: transform 0.3s ease;
}

.fit-btn-icon svg {
  width: 18px;
  height: 18px;
}

.fit-btn-primary:hover .fit-btn-icon {
  transform: translate(4px, -4px);
}

.fit-btn-secondary {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 18px 28px;
  background: transparent;
  border: 2px solid rgba(0, 255, 135, 0.4);
  color: var(--fit-text-light);
  font-size: 15px;
  font-weight: 600;
  text-decoration: none;
  border-radius: 8px;
  transition: all 0.3s ease;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.fit-btn-secondary:hover {
  background: rgba(0, 255, 135, 0.1);
  border-color: var(--fit-primary);
  color: var(--fit-primary);
}

/* Hero Visual - Carousel */
.fit-hero-visual {
  position: relative;
  /* height: 380px; */
  opacity: 0;
  animation: fitFadeInUp 1s ease forwards;
  animation-delay: 0.5s;
  max-width: 100%;
  overflow: hidden;
}
.fit-hero-visual {
  display: block;
}

@media (max-width: 1023px) {
  .fit-hero-visual {
    display: none !important;
  }
}
.fit-carousel-wrapper {
  position: relative;
  width: 100%;
  height: 100%;
  overflow: hidden;
  border-radius: 16px;
  background: transparent;
}

.fit-carousel-container {
  display: flex;
  flex-direction: column;
  gap: 12px;
  height: 100%;
  padding: 10px 0;
  background: transparent;
}

.fit-carousel-row {
  display: flex;
  overflow: hidden;
  background: transparent;
}

.fit-carousel-track {
  display: flex;
  gap: 12px;
  animation: fitCarouselScroll 30s linear infinite;
  background: transparent;
}

.fit-carousel-track-right {
  animation-name: fitCarouselScrollRight;
}

.fit-carousel-track-left {
  animation-name: fitCarouselScrollLeft;
}

@keyframes fitCarouselScrollRight {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

@keyframes fitCarouselScrollLeft {
  0% { transform: translateX(-50%); }
  100% { transform: translateX(0); }
}

.fit-carousel-item {
  flex-shrink: 0;
  background: transparent;
}

.fit-carousel-image-wrapper {
  width: 220px;
  height: 140px;
  border-radius: 12px;
  overflow: hidden;
  border: 2px solid rgba(0, 255, 135, 0.2);
  transition: all 0.4s ease;
  box-shadow: 0 0 20px rgba(0, 255, 135, 0.1);
  background: transparent;
}

.fit-carousel-image-wrapper:hover {
  border-color: var(--fit-primary);
  box-shadow: 0 0 40px rgba(0, 255, 135, 0.3);
  transform: scale(1.02);
}

.fit-carousel-image-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.fit-carousel-image-wrapper:hover img {
  transform: scale(1.05);
}

/* Carousel Fades - Very subtle edges */
.fit-carousel-fade {
  position: absolute;
  z-index: 10;
  pointer-events: none;
  display: none; /* Hidden by default - enable if needed */
}

.fit-carousel-fade-top {
  top: 0;
  left: 0;
  right: 0;
  height: 30px;
  background: linear-gradient(to bottom, rgba(10, 10, 15, 0.1), transparent);
}

.fit-carousel-fade-bottom {
  bottom: 0;
  left: 0;
  right: 0;
  height: 30px;
  background: linear-gradient(to top, rgba(10, 10, 15, 0.1), transparent);
}

.fit-carousel-fade-left {
  top: 0;
  bottom: 0;
  left: 0;
  width: 30px;
  background: linear-gradient(to right, rgba(10, 10, 15, 0.05), transparent);
}

.fit-carousel-fade-right {
  top: 0;
  bottom: 0;
  right: 0;
  width: 30px;
  background: linear-gradient(to left, rgba(10, 10, 15, 0.05), transparent);
}

/* Scroll Indicator */
.fit-scroll-indicator {
  position: absolute;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  z-index: 10;
  opacity: 0;
  animation: fitFadeInUp 0.8s ease forwards;
  animation-delay: 1s;
}

.fit-scroll-line {
  width: 2px;
  height: 40px;
  background: linear-gradient(to bottom, var(--fit-primary), transparent);
  border-radius: 2px;
  animation: fitScrollPulse 2s ease-in-out infinite;
}

@keyframes fitScrollPulse {
  0%, 100% {
    opacity: 1;
    height: 40px;
  }
  50% {
    opacity: 0.5;
    height: 50px;
  }
}

.fit-scroll-indicator span {
  font-size: 12px;
  font-weight: 500;
  color: var(--fit-text-muted);
  text-transform: uppercase;
  letter-spacing: 2px;
}

/* ===== FITNESS WHY SECTION ===== */

.fit-why-compact {
  position: relative;
  padding: 100px 0;
  background: var(--fit-bg-dark);
  overflow: hidden;
}

.fit-why-compact-bg {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
}

.fit-why-gradient-1 {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(0, 255, 135, 0.5), transparent);
}

.fit-why-gradient-2 {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(255, 51, 102, 0.5), transparent);
}

.fit-why-grid-pattern {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-image: 
    linear-gradient(rgba(0, 255, 135, 0.02) 1px, transparent 1px),
    linear-gradient(90deg, rgba(0, 255, 135, 0.02) 1px, transparent 1px);
  background-size: 50px 50px;
  mask-image: radial-gradient(ellipse 80% 80% at 50% 50%, black, transparent);
}

/* Floating Orbs */
.fit-why-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  opacity: 0.3;
  z-index: 1;
}

.fit-why-orb-1 {
  width: 300px;
  height: 300px;
  background: var(--fit-primary);
  top: 20%;
  left: -10%;
}

.fit-why-orb-2 {
  width: 250px;
  height: 250px;
  background: var(--fit-secondary);
  bottom: 10%;
  right: -5%;
}

.fit-why-orb-3 {
  width: 200px;
  height: 200px;
  background: var(--fit-accent);
  top: 60%;
  left: 50%;
}

.fit-why-compact-content {
  position: relative;
  z-index: 10;
}

/* Question Section */
.fit-why-question {
  text-align: center;
  margin-bottom: 60px;
}

.fit-why-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 8px 20px;
  background: rgba(0, 255, 135, 0.1);
  border: 1px solid rgba(0, 255, 135, 0.3);
  border-radius: 50px;
  margin-bottom: 25px;
  font-size: 13px;
  font-weight: 600;
  color: var(--fit-primary);
  text-transform: uppercase;
  letter-spacing: 1px;
}

.fit-why-badge-pulse {
  width: 8px;
  height: 8px;
  background: var(--fit-primary);
  border-radius: 50%;
  animation: fitPulse 2s ease-in-out infinite;
}

@keyframes fitPulse {
  0%, 100% {
    transform: scale(1);
    opacity: 1;
  }
  50% {
    transform: scale(1.5);
    opacity: 0.5;
  }
}

.fit-question-title {
  font-family: 'Oswald', sans-serif;
  font-size: clamp(32px, 4vw, 48px);
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 15px;
  text-transform: uppercase;
}

.fit-question-highlight {
  background: var(--fit-gradient-main);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.fit-question-em {
  color: var(--fit-secondary);
}

.fit-question-subtitle {
  font-size: 16px;
  color: var(--fit-text-muted);
}

/* Two Blocks */
.fit-two-blocks {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
}

.fit-block {
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(0, 255, 135, 0.15);
  border-radius: 20px;
  padding: 35px;
  transition: all 0.4s ease;
}

.fit-block:hover {
  border-color: rgba(0, 255, 135, 0.4);
  box-shadow: 0 0 40px rgba(0, 255, 135, 0.1);
}

.fit-block-header {
  display: flex;
  align-items: center;
  gap: 15px;
  margin-bottom: 25px;
  padding-bottom: 20px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.fit-block-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 50px;
  height: 50px;
  background: rgba(0, 255, 135, 0.15);
  border-radius: 12px;
  color: var(--fit-primary);
}

.fit-block-icon-alt {
  background: rgba(255, 51, 102, 0.15);
  color: var(--fit-secondary);
}

.fit-block-icon svg {
  width: 24px;
  height: 24px;
}

.fit-block-title {
  font-family: 'Oswald', sans-serif;
  font-size: 22px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
}

/* Block Items */
.fit-block-content {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.fit-block-item {
  display: flex;
  align-items: flex-start;
  gap: 15px;
  padding: 15px;
  background: rgba(0, 255, 135, 0.03);
  border-radius: 12px;
  transition: all 0.3s ease;
}

.fit-block-item:hover {
  background: rgba(0, 255, 135, 0.08);
  transform: translateX(5px);
}

.fit-block-item-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  background: rgba(0, 255, 135, 0.15);
  border-radius: 10px;
  color: var(--fit-primary);
  flex-shrink: 0;
}

.fit-block-item-icon svg {
  width: 20px;
  height: 20px;
}

.fit-block-item-text {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.fit-block-item-text-display {
  font-size: 16px;
  font-weight: 600;
  color: var(--fit-text-light);
}

.fit-block-item-text span {
  font-size: 14px;
  color: var(--fit-text-muted);
}

/* Process Steps */
.fit-process-steps {
  gap: 0 !important;
}

.fit-process-step {
  display: flex;
  align-items: center;
  gap: 15px;
  padding: 18px 15px;
  position: relative;
}

.fit-process-number {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 45px;
  height: 45px;
  background: rgba(255, 51, 102, 0.15);
  border: 2px solid rgba(255, 51, 102, 0.3);
  border-radius: 12px;
  font-family: 'Oswald', sans-serif;
  font-size: 18px;
  font-weight: 700;
  color: var(--fit-secondary);
  flex-shrink: 0;
}

.fit-process-number-neon {
  background: var(--fit-gradient-main);
  border: none;
  color: var(--fit-bg-dark);
  box-shadow: 0 0 25px rgba(0, 255, 135, 0.5);
}

.fit-process-info {
  display: flex;
  flex-direction: column;
  gap: 3px;
}

.fit-process-info strong {
  font-size: 15px;
  font-weight: 600;
  color: var(--fit-text-light);
}

.fit-process-info span {
  font-size: 13px;
  color: var(--fit-text-muted);
}

.fit-process-connector {
  position: absolute;
  left: 37px;
  bottom: -5px;
  width: 2px;
  height: 25px;
  background: linear-gradient(to bottom, rgba(255, 51, 102, 0.3), transparent);
}

.fit-process-step-final .fit-process-connector {
  display: none;
}

/* Waiting Block */
.fit-process-waiting {
  display: flex;
  align-items: center;
  gap: 15px;
  padding: 20px 15px;
}

.fit-process-waiting-line {
  flex: 1;
  height: 2px;
  background: linear-gradient(90deg, transparent, rgba(0, 255, 135, 0.4), transparent);
}

.fit-process-waiting-badge {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 10px 18px;
  background: rgba(0, 255, 135, 0.1);
  border: 1px solid rgba(0, 255, 135, 0.3);
  border-radius: 50px;
  color: var(--fit-primary);
  font-size: 14px;
  font-weight: 600;
}

.fit-process-waiting-badge svg {
  width: 16px;
  height: 16px;
}

/* Compact CTA */
.fit-compact-cta {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 12px;
  margin-top: 50px;
  font-size: 14px;
  color: var(--fit-text-muted);
  animation: fitBounce 2s ease-in-out infinite;
}

.fit-compact-cta svg {
  width: 20px;
  height: 20px;
  color: var(--fit-primary);
}

@keyframes fitBounce {
  0%, 100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(8px);
  }
}

/* ===== FITNESS PROJECTS SECTION ===== */

.fit-projects-section {
  position: relative;
  padding: 100px 0 120px;
  background: var(--fit-bg-darker);
  overflow: hidden;
}

.fit-projects-bg {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
}

.fit-projects-gradient {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(ellipse 80% 40% at 50% 0%, rgba(0, 255, 135, 0.08), transparent);
}

.fit-projects-pattern {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-image: radial-gradient(rgba(0, 255, 135, 0.03) 1px, transparent 1px);
  background-size: 30px 30px;
  opacity: 0.5;
}

/* Decorative Lines */
.fit-projects-lines {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  pointer-events: none;
  z-index: 1;
}

.fit-line-decor {
  position: absolute;
  width: 1px;
  height: 200px;
  background: linear-gradient(to bottom, transparent, rgba(0, 255, 135, 0.3), transparent);
}

.fit-line-decor-1 {
  top: 10%;
  left: 10%;
  transform: rotate(15deg);
}

.fit-line-decor-2 {
  bottom: 15%;
  right: 8%;
  transform: rotate(-10deg);
}

.fit-projects-content {
  position: relative;
  z-index: 10;
}

/* Section Header */
.fit-projects-header {
  text-align: center;
  margin-bottom: 60px;
}

.fit-section-tag {
  display: inline-flex;
  align-items: center;
  gap: 15px;
  margin-bottom: 25px;
  font-size: 13px;
  font-weight: 600;
  color: var(--fit-primary);
  text-transform: uppercase;
  letter-spacing: 3px;
}

.fit-tag-line {
  width: 40px;
  height: 1px;
  background: var(--fit-gradient-main);
}

.fit-projects-title {
  font-family: 'Oswald', sans-serif;
  font-size: clamp(36px, 5vw, 56px);
  font-weight: 700;
  line-height: 1.1;
  margin-bottom: 20px;
  text-transform: uppercase;
}

.fit-projects-title em {
  background: var(--fit-gradient-main);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  font-style: normal;
}

.fit-projects-subtitle {
  font-size: 17px;
  color: var(--fit-text-muted);
  max-width: 600px;
  margin: 0 auto;
  line-height: 1.7;
}

.fit-projects-subtitle strong {
  color: var(--fit-primary);
}

/* Projects Grid */
.fit-projects-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 40px;
  max-width: 1000px;
  margin: 0 auto;
}

/* Project Card */
.fit-project-card {
  opacity: 0;
  transform: translateY(40px);
  transition: all 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.fit-project-card.visible {
  opacity: 1;
  transform: translateY(0);
}

.fit-project-link {
  display: block;
  text-decoration: none;
  color: inherit;
}

.fit-project-image-wrapper {
  position: relative;
  border-radius: 16px;
  overflow: hidden;
  margin-bottom: 20px;
  border: 2px solid rgba(0, 255, 135, 0.15);
  transition: all 0.4s ease;
}

.fit-project-card:hover .fit-project-image-wrapper {
  border-color: var(--fit-primary);
  box-shadow: 0 0 50px rgba(0, 255, 135, 0.2);
}

.fit-project-image {
  aspect-ratio: 16 / 10;
  overflow: hidden;
}

.fit-project-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.fit-project-card:hover .fit-project-image img {
  transform: scale(1.08);
}

/* Energy Bar */
.fit-project-energy-bar {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: var(--fit-gradient-main);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.5s ease;
}

.fit-project-card:hover .fit-project-energy-bar {
  transform: scaleX(1);
}

/* Project Overlay */
.fit-project-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(to top, rgba(10, 10, 15, 0.9), rgba(10, 10, 15, 0.3), transparent);
  display: flex;
  align-items: flex-end;
  justify-content: center;
  padding: 30px;
  opacity: 0;
  transition: opacity 0.4s ease;
}

.fit-project-card:hover .fit-project-overlay {
  opacity: 1;
}

.fit-view-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 28px;
  background: var(--fit-gradient-main);
  color: var(--fit-bg-dark);
  font-size: 14px;
  font-weight: 700;
  border-radius: 8px;
  transform: translateY(20px);
  transition: all 0.4s ease;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.fit-project-card:hover .fit-view-btn {
  transform: translateY(0);
}

.fit-view-btn svg {
  width: 16px;
  height: 16px;
}

/* Corner Decoration */
.fit-project-corner {
  position: absolute;
  top: 15px;
  right: 15px;
  width: 30px;
  height: 30px;
  border-top: 3px solid var(--fit-primary);
  border-right: 3px solid var(--fit-primary);
  opacity: 0;
  transition: all 0.4s ease;
}

.fit-project-card:hover .fit-project-corner {
  opacity: 1;
}

/* Project Info */
.fit-project-info {
  padding: 0 5px;
}

.fit-project-tags {
  display: flex;
  gap: 10px;
  margin-bottom: 12px;
}

.fit-project-tag {
  padding: 6px 14px;
  background: rgba(0, 255, 135, 0.1);
  border: 1px solid rgba(0, 255, 135, 0.2);
  border-radius: 50px;
  font-size: 12px;
  font-weight: 600;
  color: var(--fit-primary);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.fit-project-tag-energy {
  background: rgba(255, 51, 102, 0.1);
  border-color: rgba(255, 51, 102, 0.3);
  color: var(--fit-secondary);
}

.fit-project-tag-neon {
  background: linear-gradient(135deg, rgba(0, 255, 135, 0.15), rgba(0, 212, 255, 0.15));
  border-color: rgba(0, 255, 135, 0.4);
  color: var(--fit-accent);
}

.fit-project-title {
  font-family: 'Oswald', sans-serif;
  font-size: 26px;
  font-weight: 700;
  margin-bottom: 10px;
  transition: color 0.3s ease;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.fit-project-card:hover .fit-project-title {
  color: var(--fit-primary);
}

.fit-project-desc {
  font-size: 15px;
  color: var(--fit-text-muted);
  line-height: 1.6;
  margin-bottom: 15px;
}

.fit-project-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 15px;
}

.fit-project-feature {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 13px;
  color: var(--fit-text-muted);
}

.fit-project-feature svg {
  color: var(--fit-primary);
}

/* Projects Counter */
.fit-projects-counter {
  text-align: center;
  margin-top: 50px;
  padding-top: 30px;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.fit-projects-counter span {
  font-size: 14px;
  color: var(--fit-text-muted);
  font-weight: 500;
}

/* ===== FITNESS FOOTER ===== */

.fit-footer-theme {
  background: var(--fit-bg-darker);
}

.fit-footer-cta-section {
  position: relative;
  padding: 100px 0;
  overflow: hidden;
}

.fit-footer-cta-bg {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(180deg, var(--fit-bg-darker), var(--fit-bg-dark));
}

.fit-footer-cta-pattern {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-image: 
    linear-gradient(rgba(0, 255, 135, 0.02) 1px, transparent 1px),
    linear-gradient(90deg, rgba(0, 255, 135, 0.02) 1px, transparent 1px);
  background-size: 60px 60px;
  mask-image: radial-gradient(ellipse 60% 60% at 50% 50%, black, transparent);
}

/* Footer Orbs */
.fit-footer-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(100px);
  opacity: 0.4;
  z-index: 1;
}

.fit-footer-orb-1 {
  width: 400px;
  height: 400px;
  background: var(--fit-primary);
  top: -20%;
  left: 10%;
}

.fit-footer-orb-2 {
  width: 350px;
  height: 350px;
  background: var(--fit-secondary);
  bottom: -10%;
  right: 15%;
}

.fit-footer-orb-3 {
  width: 250px;
  height: 250px;
  background: var(--fit-accent);
  top: 40%;
  right: 5%;
}

/* Footer Lines */
.fit-footer-line {
  position: absolute;
  width: 1px;
  background: linear-gradient(to bottom, transparent, rgba(0, 255, 135, 0.3), transparent);
  z-index: 2;
}

.fit-footer-line-1 {
  height: 150px;
  top: 10%;
  left: 15%;
  transform: rotate(20deg);
}

.fit-footer-line-2 {
  height: 120px;
  bottom: 15%;
  right: 20%;
  transform: rotate(-15deg);
}

.fit-footer-cta-content {
  position: relative;
  z-index: 10;
}

.fit-footer-cta-inner {
  text-align: center;
}

.fit-footer-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 10px 20px;
  background: rgba(0, 255, 135, 0.1);
  border: 1px solid rgba(0, 255, 135, 0.3);
  border-radius: 50px;
  margin-bottom: 30px;
  font-size: 14px;
  font-weight: 600;
  color: var(--fit-primary);
}

.fit-footer-badge-dot {
  width: 8px;
  height: 8px;
  background: var(--fit-primary);
  border-radius: 50%;
  animation: fitPulse 2s ease-in-out infinite;
}

.fit-footer-cta-title {
  font-family: 'Oswald', sans-serif;
  font-size: clamp(36px, 5vw, 56px);
  font-weight: 700;
  line-height: 1.15;
  margin-bottom: 20px;
  text-transform: uppercase;
}

.fit-footer-title-highlight {
  background: var(--fit-gradient-main);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.fit-footer-cta-desc {
  font-size: 18px;
  color: var(--fit-text-muted);
  margin-bottom: 40px;
  max-width: 500px;
  margin-left: auto;
  margin-right: auto;
}

.fit-footer-cta-buttons {
  display: flex;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
}

.fit-footer-btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 18px 35px;
  background: var(--fit-gradient-main);
  color: var(--fit-bg-dark);
  font-size: 15px;
  font-weight: 700;
  text-decoration: none;
  border-radius: 8px;
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  box-shadow: 0 0 30px rgba(0, 255, 135, 0.3);
  text-transform: uppercase;
  letter-spacing: 1px;
}

.fit-footer-btn-primary:hover {
  transform: translateY(-3px) scale(1.02);
  box-shadow: 0 10px 40px rgba(0, 255, 135, 0.5);
}

.fit-footer-btn-primary svg {
  width: 18px;
  height: 18px;
  transition: transform 0.3s ease;
}

.fit-footer-btn-primary:hover svg {
  transform: translate(4px, -4px);
}

.fit-footer-btn-secondary {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 18px 30px;
  background: transparent;
  border: 2px solid rgba(0, 255, 135, 0.4);
  color: var(--fit-text-light);
  font-size: 15px;
  font-weight: 600;
  text-decoration: none;
  border-radius: 8px;
  transition: all 0.3s ease;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.fit-footer-btn-secondary:hover {
  background: rgba(0, 255, 135, 0.1);
  border-color: var(--fit-primary);
  color: var(--fit-primary);
}

/* Fitness Mode WhatsApp */
.fitness-mode .whatsapp-float {
  background: linear-gradient(135deg, #25D366 0%, #128C7E 100%);
}

/* ===== FITNESS RESPONSIVE ===== */

@media (max-width: 991px) {
  .fit-hero-grid {
    grid-template-columns: 1fr;
    gap: 50px;
  }
  
  .fit-hero-visual {
    height: 300px;
  }
  
  .fit-hero-energy-line {
    display: none;
  }
  
  .fit-two-blocks {
    grid-template-columns: 1fr;
    gap: 30px;
  }
  
  .fit-projects-grid {
    grid-template-columns: 1fr;
    max-width: 500px;
  }
}

@media (max-width: 768px) {
  .fit-hero {
    padding-top: 80px;
  }
  
  .fit-hero-content {
    padding: 40px 0 60px;
  }
  
  .fit-hero-title {
    font-size: 38px;
  }
  
  .fit-hero-description {
    font-size: 16px;
  }
  
  .fit-hero-cta {
    flex-direction: column;
  }
  
  .fit-btn-primary,
  .fit-btn-secondary {
    width: 100%;
    justify-content: center;
  }
  
  .fit-hero-visual {
    height: 250px;
  }
  
  .fit-carousel-image-wrapper {
    width: 160px;
    height: 100px;
  }
  
  .fit-why-compact {
    padding: 60px 0;
  }
  
  .fit-block {
    padding: 25px;
  }
  
  .fit-projects-section {
    padding: 60px 0 80px;
  }
  
  .fit-project-title {
    font-size: 22px;
  }
  
  .fit-footer-cta-section {
    padding: 60px 0;
  }
  
  .fit-footer-cta-buttons {
    flex-direction: column;
    align-items: center;
  }
  
  .fit-footer-btn-primary,
  .fit-footer-btn-secondary {
    width: 100%;
    max-width: 300px;
    justify-content: center;
  }
}

@media (max-width: 480px) {
  .fit-hero-title {
    font-size: 32px;
  }
  
  .fit-breadcrumb {
    font-size: 12px;
  }
  
  .fit-badge {
    padding: 8px 15px;
  }
  
  .fit-badge-text {
    font-size: 12px;
  }
  
  .fit-carousel-image-wrapper {
    width: 130px;
    height: 80px;
  }
  
  .fit-question-title {
    font-size: 28px;
  }
  
  .fit-projects-title {
    font-size: 32px;
  }
  
  .fit-hero-visual {
    height: 200px;
  }
  
  .fit-footer-cta-title {
    font-size: 32px;
  }
}

/* Reduced motion */
@media (prefers-reduced-motion: reduce) {
  .fit-element,
  .fit-pulse,
  .fit-orb,
  .fit-scroll-line,
  .fit-hero-pattern,
  .fit-carousel-track {
    animation: none !important;
  }
  
  .fit-project-card {
    opacity: 1 !important;
    transform: none !important;
  }
}
