:root {
    --primary-color: #EF4444;
    --primary-dark: #DC2626;
    --primary-light: #FEE2E2;
    --secondary-color: #1F2937;
    --text-dark: #111827;
    --text-gray: #6B7280;
    --bg-white: #FFFFFF;
    --bg-light: #F9FAFB;
    --border-color: #E5E7EB;
    --success: #10B981;
    --warning: #F59E0B;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
  margin: 0;
  padding: 0;
  background: #fafafa;
  color:  #0f172a;
  /* font-family: "Inter", system-ui, -apple-system, "Segoe UI", Roboto, sans-serif ; */
    font-family: 'Plus Jakarta Sans', sans-serif;
  -webkit-font-smoothing: antialiased;
  scroll-behavior: smooth;
  overflow-x: hidden;
}

/* Loading Screen */
/* .loader-wrapper {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background: var(--bg-white);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 9999;
    transition: opacity 0.5s ease;
}

.loader-wrapper.fade-out {
    opacity: 0;
    pointer-events: none;
}

.loader-container {
    text-align: center;
}

.circle-loader {
    display: flex;
    gap: 1rem;
    justify-content: center;
    margin-bottom: 2rem;
}

.circle {
    width: 20px;
    height: 20px;
    border-radius: 50%;
    background: var(--primary-color);
    animation: bounce 1.4s infinite ease-in-out both;
}

.circle:nth-child(1) {
    animation-delay: -0.32s;
}

.circle:nth-child(2) {
    animation-delay: -0.16s;
}

@keyframes bounce {
    0%, 80%, 100% {
        transform: scale(0);
    }
    40% {
        transform: scale(1);
    }
}

.loader-text {
    font-size: 2rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 1rem;
}

.loader-percentage {
    font-size: 3rem;
    font-weight: 800;
    color: var(--primary-color);
} */

.logo img {
    width: 99px;
}
    #preloader {
            position: fixed;
            inset: 0;
            z-index: 99999;
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .pre-cols {
            position: absolute;
            inset: 0;
            display: flex;
        }

        .pre-col {
            flex: 1;
            background: var(--primary-color);
            transform-origin: top;
            transition: transform 0.6s cubic-bezier(0.76, 0, 0.24, 1);
        }

        .pre-col.hide { transform: scaleY(0); }

        .pre-inner {
            position: relative;
            z-index: 10;
            width: 100%;
            height: 100%;
            display: flex;
            flex-direction: column;
            justify-content: space-between;
            padding: 3vw;
            transition: opacity 0.3s;
        }

        .pre-inner.hide { opacity: 0; }

        .pre-top {
            display: flex;
            justify-content: space-between;
            align-items: flex-start;
        }

        .pre-title {
            font-family: 'Bebas Neue', cursive;
            font-size: clamp(30px, 4vw, 80px);
            color: var(--black);
            line-height: 1;
            overflow: hidden;
        }

        .pre-title span {
            display: block;
            animation: slideUp 0.6s 0.2s backwards;
        }

        @keyframes slideUp {
            from { transform: translateY(100%); }
            to { transform: translateY(0); }
        }

        .pre-wait {
            font-size: clamp(10px, 1vw, 16px);
            color: rgba(0,0,0,0.5);
            text-transform: uppercase;
            letter-spacing: 0.2em;
            overflow: hidden;
        }

        .pre-wait span {
            display: block;
            animation: slideUp 0.6s 0.3s backwards;
        }

        .pre-mid {
            flex: 1;
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .pre-counter {
            position: relative;
            overflow: hidden;
        }

        .pre-num {
            
            font-size: clamp(100px, 25vw, 400px);
            color: white;
            line-height: 1;
            display: inline-block;
            font-size: 100px;
        }

        .pre-pct {
            position: absolute;
            top: 2vw;
            right: -5vw;
         
            font-size: clamp(20px, 4vw, 60px);
            color:white;
        }

        .pre-bot {
            display: flex;
            flex-direction: column;
            gap: 2vh;
        }

        .pre-track {
            width: 100%;
            height: 2px;
            background:white;
            overflow: hidden;
            transform-origin: left;
            animation: scaleIn 0.8s 0.1s backwards;
        }

        @keyframes scaleIn {
            from { transform: scaleX(0); }
            to { transform: scaleX(1); }
        }

        .pre-fill {
            height: 100%;
            background: var(--black);
            width: 0%;
            transition: width 0.1s;
        }

        .pre-bot-row {
            display: flex;
            justify-content: space-between;
            align-items: flex-end;
        }

        .pre-status {
            font-size: clamp(10px, 1vw, 14px);
            color: white;
            text-transform: uppercase;
            letter-spacing: 0.15em;
            overflow: hidden;
        }

        .pre-status span {
            display: block;
            animation: slideUp 0.6s 0.4s backwards;
        }

        .pre-loading {
            font-family: 'Bebas Neue', cursive;
            font-size: clamp(12px, 1.5vw, 22px);
            color: white;
            overflow: hidden;
        }

        .pre-loading span {
            display: block;
            animation: slideUp 0.6s 0.5s backwards;
        }

/* Header */
.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background: var(--bg-white);
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.05);
    z-index: 1000;
    transition: all 0.3s ease;
}

.header.scrolled {
    box-shadow: 0 2px 30px rgba(0, 0, 0, 0.1);
}

.navbar-custom {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1.5rem 0;
}

.logo {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--text-dark);
}

.logo i {
    color: var(--primary-color);
    font-size: 1.8rem;
}

.logo strong {
    color: var(--primary-color);
}

.nav-menu {
    display: flex;
    gap: 2.5rem;
    align-items: center;
}

.nav-item {
    color: var(--text-dark);
    text-decoration: none;
    font-weight: 500;
    position: relative;
    transition: color 0.3s ease;
    padding: 0.5rem 0;
}

.nav-item::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--primary-color);
    transition: width 0.3s ease;
}

.nav-item:hover,
.nav-item.active {
    color: var(--primary-color);
}

.nav-item:hover::after,
.nav-item.active::after {
    width: 100%;
}

.nav-actions {
    display: flex;
    align-items: center;
    gap: 1.5rem;
}

.btn-demo {
    background: var(--primary-color);
    color: var(--bg-white);
    padding: 0.8rem 1.8rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
}

.btn-demo:hover {
    background: var(--primary-dark);
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(239, 68, 68, 0.3);
}

.hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
}

.hamburger span {
    width: 25px;
    height: 3px;
    background: var(--text-dark);
    border-radius: 3px;
    transition: all 0.3s ease;
}

/* Hero Section */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding: 120px 0 80px;
    position: relative;
    overflow: hidden;
}

.hero-shapes {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    z-index: 0;
    overflow: hidden;
}

.shape {
    position: absolute;
    border-radius: 50%;
    opacity: 0.1;
}

.shape-1 {
    width: 400px;
    height: 400px;
    background: linear-gradient(135deg, var
(--primary-color), #ff7d7d);
    top: -100px;
    right: -100px;
    animation: float 15s infinite ease-in-out;
}

.shape-2 {
    width: 300px;
    height: 300px;
    background: linear-gradient(135deg, var(--primary-light), var(--primary-color));
    bottom: -50px;
    left: -50px;
    animation: float 20s infinite ease-in-out reverse;
}

.shape-3 {
    width: 200px;
    height: 200px;
    background: var(--primary-color);
    top: 50%;
    left: 50%;
    animation: float 12s infinite ease-in-out;
    display: none;
}

@keyframes float {
    0%, 100% {
        transform: translate(0, 0) rotate(0deg);
    }
    33% {
        transform: translate(30px, -30px) rotate(120deg);
    }
    66% {
        transform: translate(-20px, 20px) rotate(240deg);
    }
}

.hero-content {
    position: relative;
    z-index: 2;
}

.hero-tag {
    display: inline-flex;
    align-items: center;
    gap: 0.8rem;
    background: #ffaeae1f;
    padding: 10px 18px;
    border-radius: 50px;
    margin-bottom: 2rem;
    animation: slideDown 0.6s ease;
}

@keyframes slideDown {
    from {
        opacity: 0;
        transform: translateY(-20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.pulse-ring {
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: var(--primary-color);
    position: relative;
    animation: pulse-ring 2s infinite;
}

@keyframes pulse-ring {
    0% {
        box-shadow: 0 0 0 0 rgba(239, 68, 68, 0.7);
    }
    70% {
        box-shadow: 0 0 0 10px rgba(239, 68, 68, 0);
    }
    100% {
        box-shadow: 0 0 0 0 rgba(239, 68, 68, 0);
    }
}

.tag-text {
    color: var(--primary-color);
    font-weight: 600;
    font-size: 11px;
    letter-spacing: 1px;
}

.hero-title {
    font-size: clamp(2.5rem, 6vw, 4.5rem);
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 1.5rem;
    color: var(--text-dark);
    font-size: 40px;
}

.highlight-text {
    color: var(--primary-color);
    position: relative;
    display: inline-block;
}

.highlight-text::after {
    content: '';
    position: absolute;
    bottom: 10px;
    left: 0;
    width: 100%;
    height: 15px;
    background: var(--primary-light);
    z-index: -1;
    border-radius: 5px;
    display: none;
}

.hero-subtitle {
    font-size: 16px;
    color: var(--text-gray);
    line-height: 1.8;
    margin-bottom: 2.5rem;
    max-width: 600px;
}

.hero-buttons {
    display: flex;
    gap: 1.5rem;
    margin-bottom: 3rem;
    flex-wrap: wrap;
}

.btn-primary, .btn-secondary {
    display: inline-flex;
    align-items: center;
    gap: 0.8rem;
    padding: 12px 21px;
    border-radius: 50px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    font-size: 13px;
}

.btn-primary {
    background: var(--primary-color);
    color: var(--bg-white);
    border: 2px solid var(--primary-color);
}

.btn-primary:hover {
    background: var(--primary-dark);
    border-color: var(--primary-dark);
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(239, 68, 68, 0.3);
}

.btn-secondary {
    background: transparent;
    color: var(--text-dark);
    border: 2px solid var(--border-color);
}

.btn-secondary:hover {
    background: var(--bg-light);
    border-color: var(--text-dark);
}

.hero-stats {
    display: flex;
    gap: 2rem;
    flex-wrap: wrap;
}

.stat-box {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.stat-icon {
    width: 47px;
    height: 47px;
    background: var(--primary-light);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-color);
    font-size: 17px;
}

.stat-info h3 {
    font-size: 22px;
    font-weight: 800;
    color: var(--text-dark);
    margin-bottom: 0.2rem;
}

.stat-info p {
    color: var(--text-gray);
    font-size: 12px;
    margin: 0;
    font-weight: 600;
}

.hero-image {
    position: relative;
    animation: fadeInRight 1s ease;
}

@keyframes fadeInRight {
    from {
        opacity: 0;
        transform: translateX(50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.floating-card {
    position: absolute;
    background: var(--bg-white);
    padding: 1.2rem;
    border-radius: 15px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
    display: flex;
    align-items: center;
    gap: 1rem;
    animation: floatCard 3s infinite ease-in-out;
}

@keyframes floatCard {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-15px);
    }
}

.card-top {
    top: 10%;
    left: -50px;
    animation-delay: 0s;
}

.card-bottom {
    bottom: 15%;
    right: -50px;
    animation-delay: 1.5s;
}

.card-icon {
    width: 45px;
    height: 45px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--bg-white);
    font-size: 1.2rem;
}

.bg-success {
    background: var(--success);
}

.bg-warning {
    background: var(--warning);
}

.card-content h6 {
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 0.2rem;
}

.card-content p {
    font-size: 0.8rem;
    color: var(--text-gray);
    margin: 0;
}

/* .main-illustration {
    animation: floatIllustration 6s infinite ease-in-out;
} */

@keyframes floatIllustration {
    0%, 100% {
        transform: translateY(0) rotate(0deg);
    }
    50% {
        transform: translateY(-20px) rotate(2deg);
    }
}

.scroll-down {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    text-align: center;
    animation: fadeIn 1s ease 1s both;
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

.scroll-down span {
    display: block;
    font-size: 0.9rem;
    color: var(--text-gray);
    margin-bottom: 0.5rem;
}

.mouse-icon {
    width: 25px;
    height: 40px;
    border: 2px solid var(--text-gray);
    border-radius: 15px;
    margin: 0 auto;
    position: relative;
}

.wheel {
    width: 3px;
    height: 8px;
    background: var(--primary-color);
    border-radius: 2px;
    position: absolute;
    top: 8px;
    left: 50%;
    transform: translateX(-50%);
    animation: scroll-wheel 2s infinite;
}

@keyframes scroll-wheel {
    0% {
        transform: translateX(-50%) translateY(0);
        opacity: 1;
    }
    100% {
        transform: translateX(-50%) translateY(15px);
        opacity: 0;
    }
}

/* Section Styles */
section {
    padding: 100px 0;
}

.section-header {
    margin-bottom: 4rem;
}

.section-tag {
    display: inline-block;
    background: var(--primary-light);
    color: var(--primary-color);
    padding: 0.5rem 1.5rem;
    border-radius: 50px;
    font-weight: 600;
    font-size: 13px;
    letter-spacing: 1px;
    margin-bottom: 1rem;
}

.section-title {
    font-size: clamp(2rem, 5vw, 3.5rem);
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 1rem;
    color: var(--text-dark);
    font-size: 40px;
}

.section-description {
    font-size: 15px;
    color: var(--text-gray);
    line-height: 1.8;
    max-width: 700px;
}

/* About Section */
.about-section {
    background: var(--bg-light);
}

.about-image {
    position: relative;
}

.image-wrapper {
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1);
}

.experience-badge {
    position: absolute;
    bottom: 30px;
    right: 30px;
    background: var(--primary-color);
    color: var(--bg-white);
    padding: 2rem;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 10px 40px rgba(239, 68, 68, 0.3);
}

.badge-number {
    font-size: 3rem;
    font-weight: 800;
    line-height: 1;
}

.badge-text {
    font-size: 0.9rem;
    margin-top: 0.5rem;
}






/* Testimonials Section */
:root {
  --testimonial-primary: #f43f5e;
  --testimonial-primary-rgb: 244, 63, 94;
  --testimonial-dark: #111827;
  --testimonial-text: #64748b;
  --testimonial-soft: #fff1f2;
  --testimonial-white: #ffffff;
  --testimonial-border: rgba(244, 63, 94, 0.16);
}

/* Section */
.testimonials-section {
  position: relative;
  overflow: hidden;
  padding: 100px 0;
  /* background:
    radial-gradient(circle at 10% 10%, rgba(244, 63, 94, 0.12), transparent 30%),
    radial-gradient(circle at 90% 80%, rgba(244, 63, 94, 0.14), transparent 34%),
    linear-gradient(180deg, #ffffff 0%, #fff1f2 100%); */
    background: white;
}

/* .testimonials-section::before {
  content: "";
  position: absolute;
  width: 420px;
  height: 420px;
  left: -180px;
  top: 80px;
  border-radius: 50%;
    background: #ffe2e2;
  filter: blur(10px);
} */

/* .testimonials-section::after {
    content: "";
    position: absolute;
    width: 520px;
    height: 520px;
    right: -220px;
    bottom: -220px;
    border-radius: 50%;
    background: #ffd3d3;
    filter: blur(8px);
} */

.testimonials-section .container {
  position: relative;
  z-index: 2;
}

/* Header */
.section-header {
  max-width: 760px;
  margin: 0 auto;
}

.section-tag {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 9px 18px;
  margin-bottom: 16px;
  border-radius: 999px;
  background: rgba(244, 63, 94, 0.1);
  border: 1px solid rgba(244, 63, 94, 0.16);
  color: #f43f5e;
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.section-title {
  margin: 0;
  color: #111827;
  font-size: clamp(32px, 4vw, 48px);
  line-height: 1.15;
  font-weight: 900;
  letter-spacing: -0.04em;
}

.section-subtitle {
  max-width: 620px;
  margin: 16px auto 0;
  color: #64748b;
  font-size: 16px;
  line-height: 1.7;
}

/* Cards Grid */
.testimonials-slider {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  margin-top: 56px;
}

/* Card */
.testimonial-item {
  position: relative;
  isolation: isolate;
  min-height: 100%;
  border-radius: 30px;
  padding: 1px;
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.95), rgba(244, 63, 94, 0.22));
  box-shadow: 0 24px 60px rgba(15, 23, 42, 0.08);
  transition: transform 0.35s ease, box-shadow 0.35s ease;
}

.testimonial-item::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  border-radius: inherit;
  background: radial-gradient(circle at top right, rgba(244, 63, 94, 0.28), transparent 42%);
  opacity: 0;
  transition: opacity 0.35s ease;
}

.testimonial-item:hover {
  transform: translateY(-12px);
  box-shadow: 0 34px 80px rgba(244, 63, 94, 0.18);
}

.testimonial-item:hover::before {
  opacity: 1;
}

.testimonial-item.featured {
  transform: translateY(-18px);
}

.testimonial-item.featured:hover {
  transform: translateY(-28px);
}

/* Inner Content */
.testimonial-content {
    position: relative;
    height: 100%;
    padding: 34px;
    border-radius: 29px;
    background: white;
    border: 1px solid rgba(255, 255, 255, 0.75);
    backdrop-filter: blur(18px);
    overflow: hidden;
}

.testimonial-content::after {
  content: "”";
  position: absolute;
  right: 24px;
  bottom: -44px;
  color: rgba(244, 63, 94, 0.08);
  font-size: 180px;
  font-weight: 900;
  line-height: 1;
  pointer-events: none;
}

/* Top Row */
.testimonial-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 28px;
}

.quote-icon {
    width: 54px;
    height: 54px;
    border-radius: 18px;
    display: grid;
    place-items: center;
    color: rgb(255, 255, 255);
    font-size: 21px;
    background: linear-gradient(135deg, rgb(239 68 68), rgb(255 121 140));
    box-shadow: none;
}

.rating {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  padding: 8px 12px;
  border-radius: 999px;
  background: #ffffff;
  border: 1px solid rgba(244, 63, 94, 0.12);
  box-shadow: 0 10px 24px rgba(15, 23, 42, 0.05);
}

.rating i {
  color: #f59e0b;
  font-size: 13px;
}

/* Text */
.testimonial-text {
  position: relative;
  z-index: 2;
  min-height: 174px;
  margin: 0 0 30px;
  color: #475569;
  font-size: 16px;
  line-height: 1.85;
  font-weight: 500;
}

/* Author */
.testimonial-author {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  gap: 15px;
  padding-top: 22px;
  border-top: 1px solid rgba(244, 63, 94, 0.12);
}

.author-img {
    width: 66px;
    height: 66px;
    flex: 0 0 66px;
    padding: 3px;
    border-radius: 50%;
    background: linear-gradient(135deg, #f43f5e, #fb7185);
    box-shadow: none;
}

.testimonial-author img {
  width: 100%;
  height: 100%;
  display: block;
  border-radius: 50%;
  object-fit: cover;
  border: 3px solid #ffffff;
}

.author-info h5 {
  margin: 0 0 5px;
  color: #111827;
  font-size: 17px;
  font-weight: 900;
  letter-spacing: -0.02em;
}

.author-info p {
  margin: 0;
  color: #64748b;
  font-size: 13.5px;
  line-height: 1.45;
  font-weight: 600;
}

/* Responsive */
@media (max-width: 991px) {
  .testimonials-section {
    padding: 80px 0;
  }

  .testimonials-slider {
    grid-template-columns: repeat(2, 1fr);
  }

  .testimonial-item.featured {
    transform: translateY(0);
  }

  .testimonial-item.featured:hover {
    transform: translateY(-12px);
  }
}

@media (max-width: 767px) {
  .testimonials-section {
    padding: 64px 0;
  }

  .testimonials-slider {
    grid-template-columns: 1fr;
    gap: 22px;
    margin-top: 38px;
  }

  .testimonial-content {
    padding: 26px;
  }

  .testimonial-text {
    min-height: auto;
    font-size: 15px;
  }

  .testimonial-top {
    margin-bottom: 22px;
  }

  .quote-icon {
    width: 48px;
    height: 48px;
    border-radius: 16px;
    font-size: 18px;
  }

  .section-subtitle {
    font-size: 15px;
  }
}

/* CTA Section */
.cta-section {
    background: linear-gradient(135deg, #ef4444a6, #ef4444f7);
    color: var(--bg-white);
    padding: 100px 0;
    position: relative;
    overflow: hidden;
}

.cta-section::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 600px;
    height: 600px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 50%;
}

.cta-section::after {
    content: '';
    position: absolute;
    bottom: -50%;
    left: -20%;
    width: 500px;
    height: 500px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 50%;
}

.cta-content {
    text-align: center;
    position: relative;
    z-index: 2;
}

.cta-content h2 {
    font-size: clamp(2rem, 5vw, 3rem);
    font-weight: 800;
    margin-bottom: 1rem;
}

.cta-content p {
    font-size: 1.2rem;
    margin-bottom: 2.5rem;
    opacity: 0.9;
}

.cta-buttons {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    flex-wrap: wrap;
}

.cta-section .btn-primary {
    background: var(--bg-white);
    color: var(--primary-color);
    border-color: var(--bg-white);
}

.cta-section .btn-primary:hover {
    background: var(--bg-light);
    border-color: var(--bg-light);
}

.cta-section .btn-secondary {
    background: transparent;
    color: var(--bg-white);
    border-color: var(--bg-white);
}

.cta-section .btn-secondary:hover {
    background: var(--bg-white);
    color: var(--primary-color);
}

/* Contact Section */
.contact-section {
    padding: 100px 0;
}

.contact-info-wrapper h2 {
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 1rem;
}

.contact-info-wrapper > p {
    color: var(--text-gray);
    line-height: 1.8;
    margin-bottom: 3rem;
}

.contact-details {
    margin-bottom: 3rem;
}

.detail-item {
    display: flex;
    align-items: flex-start;
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.detail-icon {
    width: 50px;
    height: 50px;
    background: var(--primary-light);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-color);
    font-size: 1.3rem;
    flex-shrink: 0;
}

.detail-text h6 {
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.detail-text p {
    color: var(--text-gray);
    margin: 0;
    line-height: 1.6;
}

.social-links {
    display: flex;
    gap: 1rem;
}

.social-links a {
    width: 45px;
    height: 45px;
    background: var(--primary-light);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-color);
    text-decoration: none;
    transition: all 0.3s ease;
}

.social-links a:hover {
    background: var(--primary-color);
    color: var(--bg-white);
    transform: translateY(-5px);
}

.contact-form-wrapper {
    background: var(--bg-light);
    padding: 3rem;
    border-radius: 20px;
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: var(--text-dark);
}

.form-control {
    width: 100%;
    padding: 1rem 1.5rem;
    border: 2px solid var(--border-color);
    border-radius: 10px;
    font-size: 1rem;
    transition: all 0.3s ease;
    background: var(--bg-white);
}

.form-control:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(239, 68, 68, 0.1);
}

/* Footer */
.footer {
    background: var(--text-dark);
    color: var(--bg-white);
    padding: 80px 0 30px;
}

.footer-widget {
    margin-bottom: 2rem;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
}
.footer-logo img {
    width: 100px;
    background: white;
    padding: 4px 13px;
    border-radius: 6px;
}

.footer-logo i {
    color: var(--primary-color);
    font-size: 1.8rem;
}

.footer-logo strong {
    color: var(--primary-color);
}

.footer-widget p {
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.8;
    margin-bottom: 1.5rem;
}

.footer-widget h5 {
    font-size: 1.2rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
}

.footer-links {
    list-style: none;
    padding: 0;
}

.footer-links li {
    margin-bottom: 0.8rem;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: var(--primary-color);
}

.footer-social {
    display: flex;
    gap: 1rem;
}

.footer-social a {
    width: 45px;
    height: 45px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--bg-white);
    text-decoration: none;
    transition: all 0.3s ease;
}

.footer-social a:hover {
    background: var(--primary-color);
    transform: translateY(-5px);
}

.newsletter-form {
    display: flex;
    gap: 0.5rem;
}

.newsletter-form input {
    flex: 1;
    padding: 1rem 1.5rem;
    border: 2px solid rgba(255, 255, 255, 0.1);
    border-radius: 50px;
    background: rgba(255, 255, 255, 0.05);
    color: var(--bg-white);
}

.newsletter-form input::placeholder {
    color: rgba(255, 255, 255, 0.5);
}

.newsletter-form button {
    width: 50px;
    height: 50px;
    background: var(--primary-color);
    border: none;
    border-radius: 50%;
    color: var(--bg-white);
    cursor: pointer;
    transition: all 0.3s ease;
}

.newsletter-form button:hover {
    background: var(--primary-dark);
    transform: scale(1.1);
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    margin-top: 3rem;
    padding-top: 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.footer-bottom p {
    margin: 0;
    color: rgba(255, 255, 255, 0.7);
}

.footer-bottom-links {
    display: flex;
    gap: 2rem;
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-bottom-links a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-bottom-links a:hover {
    color: var(--primary-color);
}

/* Scroll to Top */
.scroll-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    background: var(--primary-color);
    color: var(--bg-white);
    border: none;
    border-radius: 50%;
    font-size: 1.2rem;
    cursor: pointer;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    z-index: 999;
}

.scroll-top.show {
    opacity: 1;
    visibility: visible;
}

.scroll-top:hover {
    background: var(--primary-dark);
    transform: translateY(-5px);
}

/* Responsive */
@media (max-width: 991px) {
    .nav-menu {
        position: fixed;
        top: 80px;
        left: -100%;
        width: 100%;
        height: calc(100vh - 80px);
        background: var(--bg-white);
        flex-direction: column;
        padding: 2rem;
        transition: left 0.3s ease;
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    }
    
    .nav-menu.active {
        left: 0;
    }
    
    .hamburger {
        display: flex;
    }
    
    .hamburger.active span:nth-child(1) {
        transform: rotate(45deg) translateY(10px);
    }
    
    .hamburger.active span:nth-child(2) {
        opacity: 0;
    }
    
    .hamburger.active span:nth-child(3) {
        transform: rotate(-45deg) translateY(-10px);
    }
    
    .btn-demo {
        display: none;
    }
    
    .hero-buttons {
        flex-direction: column;
    }
    
    .hero-stats {
        flex-direction: column;
    }
    
    .floating-card {
        display: none;
    }
    
    .services-grid {
        grid-template-columns: 1fr;
    }
    
    .footer-bottom {
        flex-direction: column;
        gap: 1rem;
        text-align: center;
    }
}

@media (max-width: 576px) {
    .hero-title {
        font-size: 2rem;
    }
    
    .section-title {
        font-size: 1.8rem;
    }
    
    .testimonials-slider {
        grid-template-columns: 1fr;
    }
    
    .newsletter-form {
        flex-direction: column;
    }
    
    .newsletter-form button {
        width: 100%;
        border-radius: 50px;
        height: 50px;
    }
}


/* ============================================
   THREE.JS CONTAINERS
   ============================================ */

.three-js-container {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
    pointer-events: none;
    opacity: 0.4;
}

/* About Section 3D Background */
.about-section {
    position: relative;
    overflow: hidden;
}

#about-3d-bg {
    position: absolute;
    top: 0;
    right: 0;
    width: 50%;
    height: 100%;
    z-index: 0;
}

.about-section .container {
    position: relative;
    z-index: 2;
}




  .process-section {
            width: 100%; min-height: 80vh; position: relative;
            overflow: visible; background: #fef2f2;
            margin-top: 10vh; border-radius: 16px;
            border: 1px solid rgba(239,68,68,0.08);
        }

        
        .bg-gradient-mesh {
  background-color: rgb(254, 242, 242);
  background-image: 
    radial-gradient(at 0% 0%, rgba(255, 200, 160, 0.4) 0%, transparent 50%),
    radial-gradient(at 100% 100%, rgba(180, 220, 230, 0.4) 0%, transparent 50%),
    radial-gradient(at 50% 0%, rgba(220, 180, 200, 0.3) 0%, transparent 50%);
  background-size: 200% 200%;
  animation: gradientMove 15s ease infinite;
  /* height: 100vh; */
}

@keyframes gradientMove {
  0% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
  100% { background-position: 0% 50%; }
}


        .grid-container {
            display: grid;
            grid-template-columns: auto auto auto auto;
            grid-template-rows: auto auto auto;
            grid-template-areas: ". card2 . ." "card1 card3 card5 card6" ". card4 . .";
            gap: clamp(28px, 5vw, 60px); place-content: center;
            z-index: 50; position: relative; width: 100%;
            min-height: 70vh; padding: 80px 50px;
        }

        .card-wrapper {
            display: flex; flex-direction: column; align-items: flex-start;
            justify-self: center; align-self: center; cursor: grab;
            user-select: none; position: relative; z-index: 10;
            will-change: transform; touch-action: none;
        }

        .card-wrapper:active, .card-wrapper.dragging { cursor: grabbing; z-index: 2000 !important; }

        .card-wrapper h3 {
            font-weight: 700; letter-spacing: 0.06em; color: #1b1b1b;
            margin-bottom: 10px; font-size: clamp(16px, 1.4vw, 22px);
            pointer-events: none; font-family: 'Space Grotesk', sans-serif;
        }

        .step-number {
            display: inline-flex; align-items: center; justify-content: center;
            width: 28px; height: 28px; border-radius: 50%;
            font-size: 13px; font-weight: 700; margin-right: 8px;
            pointer-events: none; flex-shrink: 0;
        }

        .step-number-light { background: #EF4444; color: #fff; }
        .step-number-dark { background: #1b1b1b; color: #EF4444; }

        .process-card {
            border-radius: 14px; box-shadow: 0 2px 8px rgba(0,0,0,0.06);
            display: flex; flex-direction: column; align-items: flex-start;
            justify-content: center; font-weight: 600;
            border: 1px solid rgba(0,0,0,0.06); width: fit-content;
            padding: clamp(18px, 2.5vw, 36px); white-space: nowrap;
            transition: box-shadow 0.3s ease, border-color 0.3s ease;
            pointer-events: none; position: relative;
        }

        .card-wrapper:hover .process-card { box-shadow: 0 16px 40px rgba(239,68,68,0.18); border-color: rgba(239,68,68,0.4); }
        .card-wrapper.dragging .process-card { box-shadow: 0 30px 60px rgba(239,68,68,0.25); border-color: rgba(239,68,68,0.6); }

        .card-light { background: #EF4444; color: #fff; }
        .card-dark { background: #1b1b1b; }
        .text-red { color: #EF4444; }
        .text-white-card { color: #fff; }

        .process-card .item {
            width: 100%; 
            font-size: clamp(12px, 1vw, 15px); line-height: 2; opacity: 0.9;
        }

        .lines-svg { position: absolute; top: 0; left: 0; width: 100%; height: 100%; pointer-events: none; z-index: 6; }

        .hexagon-container {
            position: absolute; right: 2vw; bottom: -3vw;
            width: 18vw; height: 18vw; opacity: 0.5;
        }

        .rearrange-btn { position: absolute; bottom: 6%; right: 5%; z-index: 70; }

        .rearrange-btn button {
            font-family: 'Space Grotesk', sans-serif;
            font-size: clamp(13px, 1.3vw, 18px); letter-spacing: 0.06em;
            color: #fff; font-weight: 700; text-transform: uppercase;
            padding: 12px 28px; background: #EF4444;
            border: 2px solid #b91c1c; border-radius: 10px;
            cursor: pointer; position: relative; overflow: hidden;
            transition: transform 0.15s ease, background 0.2s ease;
        }

        .rearrange-btn button:hover { transform: scale(1.05); background: #dc2626; }
        .rearrange-btn button:active { transform: scale(0.97); }

        .particle {
            position: absolute; width: 5px; height: 5px;
            background: #EF4444; border-radius: 50%; pointer-events: none;
        }

        .steps-outer { height: 400vh; position: relative; padding: 10vh 0; }
        .steps-pin { position: sticky; top: 0; height: 100vh; display: flex; align-items: center; justify-content: center; overflow: hidden; }

        .step {
            position: absolute; text-align: center; width: 60vw;
            opacity: 0; transform: translateY(60px) scale(0.95);
            transition: all 0.7s cubic-bezier(0.16, 1, 0.3, 1); pointer-events: none;
        }

        .step.active { opacity: 1; transform: translateY(0) scale(1); pointer-events: auto; }

        .step-num {  font-size: clamp(80px, 15vw, 250px); color: rgba(0,0,0,0.08); line-height: 1; opacity: 0.5; }
        .step-name {  font-size: clamp(30px, 4vw, 70px); text-transform: uppercase; margin-top: -3vw; position: relative; z-index: 1; color: var(--white); }
        .step-info { font-size: clamp(13px, 1.2vw, 18px); color: var(--gray); margin-top: 2vh; max-width: 450px; margin-left: auto; margin-right: auto; line-height: 1.6; }

        .stripes { position: relative; z-index: 100; pointer-events: none; margin-top: -30vh; }
        .stripes-row { height: 40vh; display: flex; }
        .str-c { flex: 1; transform-origin: bottom; margin-top: 1vh; }
        .stripes-red .str-c { background: --primary-color; }
        .stripes-blk .str-c { background: var(--black); }






        /* Canvas background */
#bgCanvas {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
  pointer-events: none;
  display: none;
}

.site-main {
  position: relative;
  z-index: 1;
}

/* ============================================
   HERO HEADER
   ============================================ */
.hero-header {
  padding: 120px 0 80px;
  position: relative;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 10px 20px;
  background: rgba(239, 68, 68, 0.08);
  backdrop-filter: blur(20px);
  color: #ef4444;
  border-radius: 999px;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  border: 1px solid rgba(239, 68, 68, 0.15);
  margin-bottom: 28px;
  position: relative;
  overflow: hidden;
}

.hero-badge::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, transparent, rgba(239, 68, 68, 0.15), transparent);
  animation: shimmer 3s infinite;
}

@keyframes shimmer {
  0% { transform: translateX(-100%); }
  100% { transform: translateX(100%); }
}

.badge-dot {
  width: 8px;
  height: 8px;
  background: #ef4444;
  border-radius: 50%;
  animation: pulse 2s infinite;
}

@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.5; transform: scale(1.3); }
}

.hero-title {
    
    font-size: 40px;
    font-weight: 700;
    color: var(--tp-ink);
    margin-bottom: 24px;
    letter-spacing: -0.03em;
}

.text-gradient {
  background: linear-gradient(135deg, #ef4444 0%, #ff4040 50%, #ef4444b0 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.hero-sub {
  color: #64748b;
  font-size: 1.15rem;
  max-width: 680px;
  margin: 0 auto 40px;
  line-height: 1.8;
}

.hero-divider {
  display: flex;
  align-items: center;
  gap: 16px;
  max-width: 300px;
  margin: 0 auto;
}

.divider-line {
  flex: 1;
  height: 2px;
  background: linear-gradient(90deg, transparent, rgba(239, 68, 68, 0.3), transparent);
}

.divider-icon {
  color:#ef4444;
  font-size: 1.5rem;
  animation: bounceDown 2s infinite;
}

@keyframes bounceDown {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(8px); }
}

/* ============================================
   TIMELINE SECTION
   ============================================ */
.timeline-section {
  padding: 60px 0 100px;
  position: relative;
}

.timeline-line {
  position: absolute;
  left: 50%;
  top: 0;
  bottom: 0;
  width: 3px;
  background: rgba(239, 68, 68, 0.1);
  transform: translateX(-50%);
  z-index: 0;
}

.timeline-progress {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 0%;
  background: linear-gradient(135deg, #ef4444 0%, #ff4040 50%, #ef4444b0 100%);
  border-radius: 3px;
  transition: height 0.1s linear;
}

.timeline-dot {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    width: 60px;
    height: 60px;
    background: black;
    border-radius: 50%;
    display: grid;
    place-items: center;
    color: #fff;
    
    font-weight: 700;
    font-size: 1.1rem;
    box-shadow: none;
    z-index: 2;
    border: 4px solid #fff;
}
/* ============================================
   PILLAR ROWS
   ============================================ */
.pillar-row {
  position: relative;
  margin-bottom: 120px;
  opacity: 0;
  transform: translateY(60px);
  transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.pillar-row.revealed {
  opacity: 1;
  transform: translateY(0);
}

.pillar-row:last-child {
  margin-bottom: 0;
}


.pillar-card {
    position: relative;
    background: rgba(255, 255, 255, 0.85);
    backdrop-filter: blur(30px);
    border: 1px solid rgb(229 231 235);
    border-radius: 28px;
    padding: 40px;
    overflow: hidden;
    transition: 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.pillar-card:hover {
    transform: translateY(-8px);
    box-shadow: rgb(255 255 255 / 30%) 0px 40px 80px -40px;
    border-color: rgba(239, 68, 68, 0.2);
}

.card-glow {
    position: absolute;
    top: -100px;
    right: -100px;
    width: 300px;
    height: 300px;
    border-radius: 50%;
    background: radial-gradient(circle, rgb(252 170 170 / 12%), transparent 70%
70%
);
    pointer-events: none;
    transition: 0.6s;
}

.pillar-card:hover .card-glow {
  transform: scale(1.3);
  background: radial-gradient(circle, rgba(239, 68, 68, 0.2), transparent 70%);
}

.card-inner {
  position: relative;
  z-index: 1;
}

.card-icon-wrap {
    width: 72px;
    height: 72px;
    border-radius: 20px;
    display: grid;
    place-items: center;
    font-size: 32px;
    color: #fff;
    background: linear-gradient(135deg, #ef4444 0%, #ff4040 50%, #ef4444b0 100%);
    box-shadow: 0 15px 35px -15px rgba(239, 68, 68, 0.6);
    margin-bottom: 24px;
    transition: transform 0.4s ease;
    display: none;
}

.pillar-card:hover .card-icon-wrap {
  transform: scale(1.1) rotate(-5deg);
}

.icon-orange { background: linear-gradient(135deg, #ef4444 0%, #ff4040 50%, #ef4444b0 100%); }
.icon-pink { background: linear-gradient(135deg, #ef4444 0%, #ff4040 50%, #ef4444b0 100%); }
.icon-deep { background: linear-gradient(135deg, #ef4444 0%, #ff4040 50%, #ef4444b0 100%); }
.icon-amber { background: linear-gradient(135deg, #ef4444 0%, #ff4040 50%, #ef4444b0 100%); }

.card-title {
  
  font-size: 1.85rem;
  font-weight: 700;
  color: #0f172a;
  margin-bottom: 8px;
  letter-spacing: -0.02em;
}

.card-tagline {
  font-size: 0.95rem;
  font-weight: 600;
  color: #ef4444;
  margin-bottom: 18px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.card-desc {
  color: #64748b;
  font-size: 1.05rem;
  line-height: 1.8;
  margin-bottom: 28px;
}

.card-features {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  margin-bottom: 32px;
}

.card-features span {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.92rem;
  font-weight: 600;
  color: #0f172a;
  padding: 12px 16px;
  background: rgba(239, 68, 68, 0.04);
  border-radius: 12px;
  border: 1px solid rgba(239, 68, 68, 0.08);
  transition: all 0.3s ease;
}

.card-features span:hover {
  background: rgba(239, 68, 68, 0.08);
  transform: translateX(4px);
}

.card-features span i {
  color: #10b981;
  font-size: 1.1rem;
  flex-shrink: 0;
}

.card-cta {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 14px 28px;
    background: linear-gradient(135deg, #000000 0%, #000000 50%, #000000b0 100%);
    color: #fff;
    border-radius: 14px;
    font-weight: 700;
    font-size: 1rem;
    text-decoration: none;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 20px 40px -20px rgba(239, 68, 68, 0.5);
    position: relative;
    overflow: hidden;
}

/* .card-cta::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, #ef4444 0%, #ff4040 50%, #ef4444b0 100%);
  opacity: 0;
  transition: opacity 0.3s ease;
} */

.card-cta:hover {
  transform: translateY(-3px);
  color: #fff;
  box-shadow: 0 25px 50px -20px rgba(239, 68, 68, 0.6);
}

.card-cta:hover::before {
  opacity: 1;
}

.card-cta i,
.card-cta span {
  position: relative;
  z-index: 1;
}

.card-cta i {
  transition: transform 0.3s ease;
}

.card-cta:hover i {
  transform: translateX(6px);
}

/* .cta-orange { background: linear-gradient(135deg, #f97316, #fbbf24); box-shadow: 0 20px 40px -20px rgba(249, 115, 22, 0.5); }
.cta-orange::before { background: linear-gradient(135deg, #fbbf24, #f97316); }
.cta-pink { background: linear-gradient(135deg, #ef4444, #ec4899); box-shadow: 0 20px 40px -20px rgba(236, 72, 153, 0.5); }
.cta-pink::before { background: linear-gradient(135deg, #ec4899, #ef4444); }
.cta-deep { background: linear-gradient(135deg, #dc2626, #be123c); box-shadow: 0 20px 40px -20px rgba(190, 18, 60, 0.5); }
.cta-deep::before { background: linear-gradient(135deg, #be123c, #dc2626); }
.cta-amber { background: linear-gradient(135deg, #f87171, #fbbf24); box-shadow: 0 20px 40px -20px rgba(245, 158, 11, 0.5); }
.cta-amber::before { background: linear-gradient(135deg, #fbbf24, #f87171); } */


.pillar-visual {
  position: relative;
  height: 400px;
  display: grid;
  place-items: center;
}

.visual-inner {
  position: relative;
  width: 100%;
  height: 100%;
}

.float-card {
  position: absolute;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.9);
  border-radius: 16px;
  padding: 16px 20px;
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.88rem;
  font-weight: 600;
  color: #0f172a;
  box-shadow: 0 20px 40px -25px rgba(15, 23, 42, 0.25);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  animation: floatCard 6s ease-in-out infinite;
}

.float-card:hover {
  transform: translateY(-8px) scale(1.05);
  box-shadow: 0 25px 50px -25px rgba(239, 68, 68, 0.3);
}

.float-card i {
  font-size: 1.5rem;
  background: linear-gradient(135deg, #ef4444, #f97316);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.fc-1 {
    top: 8%;
    left: 27%;
    animation-delay: 0s;
}
.fc-2 {
    top: 10%;
    right: 11%;
    animation-delay: 0.8s;
}
.fc-3 {
    top: 43%;
    left: 8%;
    animation-delay: 1.6s;
}
.fc-4 {
    bottom: 29%;
    right: 11%;
    animation-delay: 2.4s;
}
.fc-5 {
    bottom: 0%;
    left: 37%;
    animation-delay: 3.2s;
}

@keyframes floatCard {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-12px); }
}

.visual-center-icon {
    position: absolute;
    top: 50%;
    left: 51%;
    transform: translate(-50%, -50%);
    width: 90px;
    height: 90px;
    border-radius: 28px;
    display: grid;
    place-items: center;
    font-size: 36px;
    color: #fff;
    background: linear-gradient(135deg, #ef4444 0%, #ff4040 50%, #ef4444b0 100%);
    box-shadow: 0 25px 60px -25px rgba(239, 68, 68, 0.6);
    z-index: 1;
}

.visual-center-icon::before {
    content: "";
    position: absolute;
    inset: -8px;
    border-radius: 32px;
    background: linear-gradient(135deg, #ef44442b 0%, #ff404069 50%, #ffaeae4d 100%);
    z-index: -1;
    animation: pulseGlow 3s ease-in-out infinite;
}

@keyframes pulseGlow {
  0%, 100% { opacity: 0.5; transform: scale(1); }
  50% { opacity: 1; transform: scale(1.15); }
}


/* ============================================
   STATS SECTION
   ============================================ */
.stats-section {
  padding: 0 0 100px;
  position: relative;
}

.stats-strip {
    background: linear-gradient(135deg, #ef4444 0%, #f67474 50%, #ff6161a8 100%);
    border-radius: 32px;
    padding: 56px;
    color: #fff;
    position: relative;
    overflow: hidden;
    box-shadow: 0 60px 120px -60px rgb(255 198 198 / 50%);
    display: none;
}

.stats-strip::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 0% 0%, rgba(251, 191, 36, 0.2), transparent 40%),
    radial-gradient(circle at 100% 100%, rgba(239, 68, 68, 0.3), transparent 40%);
}

.stats-glow {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(239, 68, 68, 0.15), transparent 60%);
  animation: pulseGlow 4s ease-in-out infinite;
}

.stat-item {
  position: relative;
  text-align: center;
  z-index: 1;
}

.stat-icon {
    width: 50px;
    height: 51px;
    margin: 0 auto 16px;
    background: white;
    border-radius: 16px;
    display: grid;
    place-items: center;
    font-size: 19px;
    color: #f46b6b;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.stat-num {
    font-family: "Space Grotesk", sans-serif;
    font-size: 27px;
    font-weight: 700;
    line-height: 1;
    margin-bottom: 10px;
}

.stat-label {
  font-size: 1rem;
  color: rgba(255, 255, 255, 0.8);
  font-weight: 500;
}

/* ============================================
   RESPONSIVE
   ============================================ */
@media (max-width: 991.98px) {
  .hero-header {
    padding: 80px 0 60px;
  }

  .timeline-line,
  .timeline-dot {
    display: none;
  }

  .pillar-row {
    margin-bottom: 60px;
  }

  .pillar-card {
    padding: 32px 24px;
    margin-bottom: 24px;
  }

  .card-features {
    grid-template-columns: 1fr;
  }

  .pillar-visual {
    height: 320px;
  }

  .stats-strip {
    padding: 40px 24px;
  }

  .float-card {
    padding: 12px 16px;
    font-size: 0.82rem;
  }

  .visual-center-icon {
    width: 80px;
    height: 80px;
    font-size: 36px;
  }
}

@media (max-width: 575.98px) {
  .hero-title {
    font-size: 2rem;
  }

  .pillar-visual {
    height: 280px;
  }

  .float-card {
    padding: 10px 14px;
    font-size: 0.78rem;
  }

  .float-card i {
    font-size: 1.25rem;
  }

  .visual-center-icon {
    width: 70px;
    height: 70px;
    font-size: 32px;
  }
}





:root {
  --primary: #2563eb;
  --primary-dark: #1e40af;
  --primary-light: #dbeafe;
  --navy: #0f172a;
  --gradient: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  --gradient-blue: linear-gradient(135deg, #ef4444 0%, #ff0000b5 100%);
  --shadow-sm: 0 4px 6px rgba(0,0,0,0.05);
  --shadow-md: 0 10px 25px rgba(0,0,0,0.08);
  --shadow-lg: 0 20px 50px rgba(37,99,235,0.15);
}



/* ==================== HERO SECTION ==================== */
.features-section {
    padding: 80px 0;
    background: linear-gradient(180deg, #fff2f257 0%, #fff7f7 100%);
    position: relative;
    overflow: hidden;
}

.features-section::before {
    content: '';
    position: absolute;
    top: -100px;
    right: -100px;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgb(239 68 68 / 17%) 0%, transparent 70%);
    border-radius: 50%;
}

.features-section::after {
  content: '';
  position: absolute;
  bottom: -150px;
  left: -150px;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(118,75,162,0.06) 0%, transparent 70%);
  border-radius: 50%;
}

.about-section-header { text-align: start; margin-bottom: 60px; position: relative; z-index: 2; }


.section-header { text-align: center; margin-bottom: 60px; position: relative; z-index: 2; }

.section-badge {
    display: inline-block;
    background: #ef444421;
    color: #ef4444;
    padding: 8px 20px;
    border-radius: 50px;
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    margin-bottom: 20px;
}

.section-title {
  font-size: 2.8rem;
  font-weight: 700;
  color: var(--navy);
  line-height: 1.2;
  margin-bottom: 20px;
}

.section-title .highlight {
  background: var(--gradient-blue);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  position: relative;
}

.section-subtitle {
  font-size: 1.1rem;
  color: #64748b;
  max-width: 700px;
  margin: 0 auto;
  line-height: 1.7;
}

/* ==================== FEATURES TABS WRAPPER ==================== */
.features-wrapper {
    background: #fff;
    border-radius: 24px;
    overflow: hidden;
    position: relative;
    z-index: 2;
    box-shadow: rgba(0, 0, 0, 0.05) 0px 0px 0px 1px;
}

/* ==================== SIDEBAR TABS ==================== */
.feature-tabs {
    background: white;
    padding: 30px 20px;
    border-right: 1px solid #f74343;
    height: 100%;
}

.feature-tab {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 14px 18px;
  margin-bottom: 8px;
  border-radius: 12px;
  cursor: pointer;
  transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
  border: 2px solid transparent;
  background: transparent;
  position: relative;
  overflow: hidden;
}

.feature-tab::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  height: 100%;
  width: 4px;
  background: var(--gradient-blue);
  transform: scaleY(0);
  transition: transform 0.3s ease;
}

.feature-tab:hover {
  background: #fff;
  transform: translateX(4px);
  box-shadow: var(--shadow-sm);
}

.feature-tab.active {
    background: #fff;
    box-shadow: 0px 0px 0px 0px lightgray;
    border-color: #ffe9e9;
}

.feature-tab.active::before { transform: scaleY(1); }

.feature-tab-icon {
    width: 44px;
    height: 44px;
    min-width: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 12px;
    background: #ef444426;
    color: #ef4444;
    font-size: 18px;
    transition: all 0.3s ease;
}

.feature-tab.active .feature-tab-icon {
  background: var(--gradient-blue);
  color: #fff;
  transform: rotate(-5deg) scale(1.05);
}

.feature-tab-name {
  font-weight: 500;
  font-size: 14.5px;
  color: var(--navy);
  flex: 1;
  line-height: 1.3;
}

.feature-tab.active .feature-tab-name {
    color: black;
    font-weight: 600;
}

.feature-tab-arrow {
    color: #ef4444;
    opacity: 0;
    transform: translateX(-10px);
    transition: all 0.3s ease;
    display: none;
}

.feature-tab.active .feature-tab-arrow,
.feature-tab:hover .feature-tab-arrow {
  opacity: 1;
  transform: translateX(0);
}

/* ==================== CONTENT PANEL ==================== */
.feature-content-wrap {
  padding: 50px 45px;
  position: relative;
  min-height: 580px;
}

.feature-content {
  display: none;
  animation: fadeInUp 0.6s ease forwards;
}

.feature-content.active { display: block; }

@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(20px); }
  to { opacity: 1; transform: translateY(0); }
}

.feature-content-header { margin-bottom: 25px; }

.feature-content-tag {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: #ef444430;
    color: #ef4444;
    padding: 6px 14px;
    border-radius: 50px;
    font-size: 12px;
    font-weight: 600;
    margin-bottom: 16px;
}

.feature-content-title {
  font-size: 2rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 14px;
  line-height: 1.2;
}

.feature-content-desc {
  font-size: 15px;
  color: #64748b;
  line-height: 1.7;
  margin-bottom: 28px;
}

/* ==================== FEATURE PILLS GRID ==================== */
.feature-pills {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 12px;
    margin-bottom: 30px;
    display: none;
}

.feature-pill {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 12px 16px;
    background: #fff;
    border: 1.5px solid #ffd4d4;
    border-radius: 10px;
    text-decoration: none;
    color: black;
    font-weight: 500;
    font-size: 13.5px;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.feature-pill::before {
  content: '';
  position: absolute;
  inset: 0;
  background: var(--gradient-blue);
  transform: translateX(-100%);
  transition: transform 0.4s ease;
  z-index: 0;
}

.feature-pill > * { position: relative; z-index: 1; }

.feature-pill:hover {
  border-color: transparent;
  color: #fff;
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
}

.feature-pill:hover::before { transform: translateX(0); }

.feature-pill-check {
    width: 22px;
    height: 22px;
    min-width: 22px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #ef444426;
    color: #ef4444;
    border-radius: 50%;
    font-size: 10px;
    transition: all 0.3s ease;
}

.feature-pill:hover .feature-pill-check {
  background: rgba(255,255,255,0.25);
  color: #fff;
}

/* ==================== CTA BUTTON ==================== */
.feature-cta {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: var(--gradient-blue);
    color: #fff;
    padding: 14px 30px;
    border-radius: 50px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 8px 20px rgb(234 241 255 / 30%);
    display: none;
}

.feature-cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 28px rgba(37,99,235,0.45);
  color: #fff;
}

.feature-cta i { transition: transform 0.3s ease; }
.feature-cta:hover i { transform: translateX(4px); }

/* ==================== VISUAL SIDE ==================== */
.feature-visual {
    background: none;
    border-radius: 20px;
    padding: 40px 30px;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
    min-height: 400px;
}
.feature-visual img {
    width: 100%;
    height: 300px;
    background-size: contain;
    object-fit: cover;
}

.feature-visual::before {
    content: '';
    position: absolute;
    top: -50px;
    right: -50px;
    width: 200px;
    height: 200px;
    background: none;
    border-radius: 50%;
}

.feature-visual-icon {
  font-size: 8rem;
  background: var(--gradient-blue);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  animation: floatY 3s ease-in-out infinite;
  position: relative;
  z-index: 2;
}

@keyframes floatY {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-15px); }
}

.feature-visual-decor {
  position: absolute;
  border-radius: 50%;
  opacity: 0.1;
}

.decor-1 {
    width: 80px;
    height: 80px;
    background: #ef4444a6;
    top: 20%;
    left: 10%;
    animation: floatY 4s ease-in-out infinite;
}

.decor-2 {
  width: 50px; height: 50px;
  background: #f4b1b1;
  bottom: 25%; right: 15%;
  animation: floatY 3s ease-in-out infinite reverse;
}

.decor-3 {
  width: 30px; height: 30px;
  background: #ffa6a6;
  top: 60%; left: 20%;
  animation: floatY 5s ease-in-out infinite;
}

/* ==================== RESPONSIVE ==================== */
@media (max-width: 991px) {
  .feature-tabs {
    border-right: none;
    border-bottom: 1px solid #e2e8f0;
    display: flex;
    overflow-x: auto;
    gap: 10px;
    padding: 20px;
  }
  .feature-tab { min-width: 220px; margin-bottom: 0; }
  .feature-content-wrap { padding: 35px 25px; }
  .feature-pills { grid-template-columns: 1fr; }
  .section-title { font-size: 2rem; }
  .feature-content-title { font-size: 1.5rem; }
  .feature-visual { min-height: 250px; margin-top: 25px; }
  .feature-visual-icon { font-size: 5rem; }
}

/* Scrollbar */
.feature-tabs::-webkit-scrollbar { height: 6px; width: 6px; }
.feature-tabs::-webkit-scrollbar-thumb { background: var(--primary); border-radius: 10px; }







:root {
  --hrx-primary: #ef4444;
  --hrx-primary-rgb: 239, 68, 68;
  --hrx-soft-red: #fff1f2;
  --hrx-soft-red-2: #fee2e2;
  --hrx-soft-red-3: #fecaca;
  --hrx-ink: #0f172a;
  --hrx-text: #475569;
  --hrx-muted: #94a3b8;
  --hrx-line: #f1f5f9;
  --hrx-line-strong: #e2e8f0;
  --hrx-white: #ffffff;
  --hrx-shadow: 0 20px 50px rgba(239, 68, 68, 0.08);
}

.hrx-light-suite,
.hrx-light-suite * {
  box-sizing: border-box;
}

.hrx-light-suite {
    position: relative;
    overflow: hidden;
    padding: 100px 0px;
    color: var(--hrx-ink);
    background: linear-gradient(rgb(210 226 242 / 62%) 0%, rgba(255, 188, 192, 0.79) 100%);
    font-family: inherit;
}

.hrx-light-suite::after {
  content: "";
  position: absolute;
  width: 600px;
  height: 600px;
  right: -150px;
  bottom: -150px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(var(--hrx-primary-rgb), 0.12), transparent 70%);
  pointer-events: none;
}

/* ── HEADER ── */
.hrx-light-header {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 40px;
  align-items: center;
  max-width: 1400px;
  margin: 0 auto 48px;
}

.hrx-light-header h2 {
  margin: 0;
  color: var(--hrx-ink);
  font-size: 2.75rem;
  font-weight: 800;
  line-height: 1.2;
  letter-spacing: -0.03em;
}

.hrx-light-header h2 span {
  display: block;
  background: linear-gradient(135deg, var(--hrx-primary), #db2777);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.hrx-header-summary {
  padding: 24px 32px;
  border: 1px solid rgba(239, 68, 68, 0.15);
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.8);
  box-shadow: var(--hrx-shadow);
  backdrop-filter: blur(12px);
}

.hrx-header-summary div {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 8px;
}

.hrx-header-summary strong {
  color: var(--hrx-primary);
  font-size: 2.5rem;
  font-weight: 900;
  line-height: 1;
}

.hrx-header-summary span {
  color: var(--hrx-ink);
  font-size: 1rem;
  font-weight: 700;
}

.hrx-header-summary p {
  margin: 0;
  color: var(--hrx-text);
  font-size: 0.95rem;
  line-height: 1.6;
}

/* ── SHELL & CONTAINERS ── */
.hrx-light-shell {
    max-width: 1560px;
    margin: 0 auto;
    padding: 16px;
    border: 1px solid var(--hrx-white);
    border-radius: 36px;
    background: white;
    box-shadow: 0 30px 70px rgba(15, 23, 42, 0.05);
    backdrop-filter: blur(20px);
}

.hrx-map-card,
.hrx-workspace {
  position: relative;
  height: 100%;
  padding: 40px;
  border-radius: 28px;
  background: var(--hrx-white);
  border: 1px solid var(--hrx-line-strong);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.02);
  overflow: hidden;
}

/* ── MAP HEADING ── */
.hrx-card-heading {
  position: relative;
  z-index: 3;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 16px;
}

.hrx-card-heading small {
  color: var(--hrx-muted);
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.hrx-card-heading strong {
  display: block;
  margin-top: 4px;
  color: var(--hrx-ink);
  font-size: 1.4rem;
  font-weight: 800;
  letter-spacing: -0.02em;
}

.hrx-status-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 14px;
  border-radius: 999px;
  background: var(--hrx-soft-red);
  border: 1px solid var(--hrx-soft-red-3);
  color: var(--hrx-primary);
  font-size: 0.75rem;
  font-weight: 800;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.hrx-status-badge.paused {
  background: #f1f5f9;
  border-color: #cbd5e1;
  color: #64748b;
}

/* ── RADIAL STAGE ── */
.hrx-map-stage {
  position: relative;
  width: min(100%, 460px);
  aspect-ratio: 1 / 1;
  margin: 60px auto 20px;
}

.hrx-map-ring {
  position: absolute;
  left: 50%;
  top: 50%;
  border-radius: 50%;
  transform: translate(-50%, -50%);
  pointer-events: none;
}

.ring-1 {
  width: 92%;
  height: 92%;
  border: 1px dashed rgba(239, 68, 68, 0.25);
}

.ring-2 {
  width: 64%;
  height: 64%;
  border: 1px solid rgba(239, 68, 68, 0.15);
  background: rgba(239, 68, 68, 0.03);
}

.ring-3 {
  width: 44%;
  height: 44%;
  background: radial-gradient(circle, rgba(var(--hrx-primary-rgb), 0.08), transparent 70%);
}

/* Nodes */
.hrx-node {
  position: absolute;
  left: var(--x);
  top: var(--y);
  z-index: 5;
  width: 110px;
  padding: 12px 8px;
  border: 1px solid var(--hrx-line-strong);
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.9);
  color: var(--hrx-ink);
  text-align: center;
  cursor: pointer;
  transform: translate(-50%, -50%);
  box-shadow: 0 4px 12px rgba(0,0,0,0.04);
  backdrop-filter: blur(8px);
  transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}

.hrx-node:hover {
  transform: translate(-50%, -50%) scale(1.06);
  border-color: var(--hrx-primary);
  box-shadow: 0 12px 24px rgba(239, 68, 68, 0.15);
}

.hrx-node.active {
  border-color: transparent;
  background: linear-gradient(135deg, var(--hrx-primary), #f43f5e);
  box-shadow: 0 16px 32px rgba(var(--hrx-primary-rgb), 0.3), 0 0 0 4px var(--hrx-soft-red-2);
}

.hrx-node-icon {
  width: 36px;
  height: 36px;
  margin: 0 auto 8px;
  border-radius: 10px;
  display: grid;
  place-items: center;
  background: var(--hrx-soft-red);
  border: 1px solid var(--hrx-soft-red-3);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.hrx-node-icon i {
  color: var(--hrx-primary);
  font-size: 0.9rem;
}

.hrx-node.active .hrx-node-icon {
  background: rgba(255, 255, 255, 0.2);
  border-color: rgba(255, 255, 255, 0.3);
}

.hrx-node.active .hrx-node-icon i {
  color: var(--hrx-white);
}

.hrx-node span:last-child {
  display: block;
  font-size: 0.75rem;
  font-weight: 700;
  transition: color 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.hrx-node.active span:last-child {
  color: var(--hrx-white);
}

/* Core */
.hrx-map-core {
  position: absolute;
  left: 50%;
  top: 50%;
  z-index: 6;
  width: 170px;
  height: 170px;
  transform: translate(-50%, -50%);
  border-radius: 50%;
  border: 1px solid rgba(239, 68, 68, 0.3);
  background: var(--hrx-white);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  text-align: center;
  box-shadow: 0 10px 30px rgba(239, 68, 68, 0.1);
  transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}

.hrx-core-icon {
  width: 50px;
  height: 50px;
  display: grid;
  place-items: center;
  border-radius: 16px;
  margin-bottom: 8px;
  background: linear-gradient(135deg, var(--hrx-primary), #f43f5e);
  transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}

.hrx-core-icon i {
  color: var(--hrx-white);
  font-size: 1.35rem;
}

.hrx-map-core strong {
  max-width: 140px;
  color: var(--hrx-ink);
  font-size: 1.05rem;
  font-weight: 900;
  line-height: 1.2;
  transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}

.hrx-map-core span:last-child {
  margin-top: 2px;
  color: var(--hrx-primary);
  font-size: 0.75rem;
  font-weight: 800;
  transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}

/* ── WORKSPACE TOP TRACKER ── */
.hrx-workspace-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 36px;
  padding-bottom: 20px;
  border-bottom: 1px solid var(--hrx-line);
}

.hrx-index {
  display: none;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 32px;
  border-radius: 999px;
  background: var(--hrx-soft-red);
  border: 1px solid var(--hrx-soft-red-3);
  color: var(--hrx-primary);
  font-size: 0.8rem;
  font-weight: 900;
  transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}

.hrx-label {
  margin-left: 12px;
  color: var(--hrx-primary);
  font-size: 0.9rem;
  font-weight: 800;
  transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}

.hrx-progress {
  width: 160px;
  height: 8px;
  border-radius: 999px;
  background: var(--hrx-line-strong);
  overflow: hidden;
  display: none;
  
}

.hrx-progress span {
  display: block;
  height: 100%;
  border-radius: inherit;
  background: linear-gradient(90deg, var(--hrx-primary), #f43f5e);
  transition: width 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

/* ── DYNAMIC ENTRY ANIMATION ── */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(10px) scale(0.98);
  }
  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

.animate-entry {
  animation: fadeInUp 0.35s cubic-bezier(0.4, 0, 0.2, 1) forwards;
}

/* Copy Area */
.hrx-copy h3 {
  color: var(--hrx-ink);
  font-size: 1.85rem;
  font-weight: 800;
  margin-bottom: 12px;
  transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}

.hrx-copy p {
  color: var(--hrx-text);
  font-size: 1.05rem;
  line-height: 1.7;
  margin-bottom: 0;
  transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Metrics */
.hrx-metrics {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-top: 32px;
}

.hrx-metrics div {
  padding: 16px;
  border-radius: 20px;
  border: 1px solid var(--hrx-line-strong);
  background: var(--hrx-white);
  box-shadow: 0 4px 16px rgba(0,0,0,0.02);
  transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}

.hrx-metrics div:hover {
  border-color: var(--hrx-primary);
  transform: translateY(-2px);
}

.hrx-metrics strong {
  display: block;
  color: var(--hrx-primary);
  font-size: 1.5rem;
  font-weight: 900;
  line-height: 1;
  transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}

.hrx-metrics span {
  display: block;
  margin-top: 6px;
  color: var(--hrx-muted);
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
}

/* Actions */
.hrx-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin-top: 36px;
}

.hrx-btn-primary,
.hrx-btn-secondary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 28px;
  border-radius: 16px;
  text-decoration: none;
  font-size: 0.95rem;
  font-weight: 800;
  transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}

.hrx-btn-primary {
  color: var(--hrx-white);
  background: linear-gradient(135deg, var(--hrx-primary), #f43f5e);
  box-shadow: 0 12px 24px rgba(var(--hrx-primary-rgb), 0.25);
}

.hrx-btn-primary:hover {
  color: var(--hrx-white);
  transform: translateY(-2px);
  box-shadow: 0 16px 32px rgba(var(--hrx-primary-rgb), 0.35);
}

.hrx-btn-secondary {
  color: var(--hrx-ink);
  border: 1px solid var(--hrx-line-strong);
  background: var(--hrx-white);
}

.hrx-btn-secondary:hover {
  color: var(--hrx-primary);
  border-color: var(--hrx-primary);
  transform: translateY(-2px);
}

/* ── BENTO GRID ── */
.hrx-bento-title {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin: 44px 0 20px;
  padding-top: 36px;
  border-top: 1px solid var(--hrx-line);
}

.hrx-bento-title span {
  color: var(--hrx-ink);
  font-size: 1.05rem;
  font-weight: 800;
  transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}

.hrx-bento-title span i {
  color: var(--hrx-primary);
}

.hrx-bento-title small {
  color: var(--hrx-muted);
  font-size: 0.85rem;
  font-weight: 700;
  transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}

.hrx-bento {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 16px;
}

.hrx-tile {
  grid-column: span 4;
  position: relative;
  padding: 20px;
  border-radius: 20px;
  border: 1px solid var(--hrx-line-strong);
  background: var(--hrx-white);
  color: var(--hrx-ink);
  text-decoration: none;
  transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
  overflow: hidden;
  box-shadow: 0 4px 12px rgba(0,0,0,0.02);
  opacity: 0;
}

/* Stagger Entry animations for Bento elements */
.hrx-tile:nth-child(1) { animation-delay: 0.05s; }
.hrx-tile:nth-child(2) { animation-delay: 0.10s; }
.hrx-tile:nth-child(3) { animation-delay: 0.15s; }
.hrx-tile:nth-child(4) { animation-delay: 0.20s; }
.hrx-tile:nth-child(5) { animation-delay: 0.25s; }
.hrx-tile:nth-child(6) { animation-delay: 0.30s; }
.hrx-tile:nth-child(7) { animation-delay: 0.35s; }
.hrx-tile:nth-child(8) { animation-delay: 0.40s; }
.hrx-tile:nth-child(9) { animation-delay: 0.45s; }

.hrx-tile:nth-child(1),
.hrx-tile:nth-child(2) {
  grid-column: span 6;
}
.hrx-tile:nth-child(5n) {
  grid-column: span 5;
}
.hrx-tile:nth-child(6n) {
  grid-column: span 7;
}

.hrx-tile:hover {
  transform: translateY(-4px);
  border-color: var(--hrx-primary);
  background: var(--hrx-soft-red);
  box-shadow: 0 12px 24px rgba(239, 68, 68, 0.08);
}

.hrx-tile-no {
  display: block;
  margin-bottom: 8px;
  color: var(--hrx-primary);
  font-size: 0.75rem;
  font-weight: 900;
  letter-spacing: 0.05em;
  transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}

.hrx-tile strong {
  display: block;
  font-size: 0.95rem;
  font-weight: 800;
  line-height: 1.3;
  transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}

.hrx-tile:hover strong {
  color: var(--hrx-primary);
}

.hrx-tile i {
  position: absolute;
  right: 16px;
  bottom: 16px;
  color: var(--hrx-soft-red-3);
  font-size: 0.8rem;
  transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}

.hrx-tile:hover i {
  color: var(--hrx-primary);
  transform: translate(2px, -2px);
}

/* Mobile Rail */
.hrx-module-rail {
  display: none;
}

/* ── RESPONSIVE DESIGN ── */
@media (max-width: 1399px) {
  .hrx-map-stage { width: min(100%, 400px); }
  .hrx-node { width: 100px; padding: 10px 6px; }
  .hrx-map-core { width: 150px; height: 150px; }
}

@media (max-width: 991px) {
  .hrx-light-suite { padding: 60px 0; }
  .hrx-light-header { grid-template-columns: 1fr; gap: 24px; }
  .hrx-light-shell { border-radius: 28px; padding: 12px; }
  .hrx-map-card, .hrx-workspace { padding: 28px; }
  
  .hrx-node { display: none; }
  .hrx-map-stage { width: 280px; margin: 30px auto; }
  
  .hrx-module-rail {
    display: flex;
    gap: 12px;
    overflow-x: auto;
    padding-bottom: 12px;
    margin-top: 24px;
    scroll-behavior: smooth;
  }
  
  .hrx-module-rail::-webkit-scrollbar { height: 4px; }
  .hrx-module-rail::-webkit-scrollbar-thumb { background: var(--hrx-soft-red-3); border-radius: 4px; }

  .hrx-rail-btn {
    flex: 0 0 auto;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 12px 20px;
    border-radius: 16px;
    border: 1px solid var(--hrx-line-strong);
    background: var(--hrx-white);
    color: var(--hrx-ink);
    font-size: 0.9rem;
    font-weight: 800;
    cursor: pointer;
    transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
  }

  .hrx-rail-btn.active {
    border-color: var(--hrx-primary);
    background: var(--hrx-soft-red);
    color: var(--hrx-primary);
  }
}

@media (max-width: 767px) {
  .hrx-light-header h2 { font-size: 2.2rem; }
  .hrx-header-summary strong { font-size: 2rem; }
  .hrx-map-card, .hrx-workspace { padding: 20px; }
  
  .hrx-workspace-top { flex-direction: column; align-items: flex-start; gap: 12px; }
  .hrx-progress { width: 100%; }
  .hrx-metrics { grid-template-columns: 1fr; gap: 12px; }
  
  .hrx-bento { grid-template-columns: 1fr; }
  .hrx-tile, .hrx-tile:nth-child(n) { grid-column: span 1; }
  
  .hrx-actions { flex-direction: column; width: 100%; }
  .hrx-btn-primary, .hrx-btn-secondary { width: 100%; }
}
    .stripes {
    position: relative;
    z-index: 100;
    pointer-events: none;
    display: none;
    margin-top: -30vh;
}
        .stripes-row { height: 40vh; display: flex; }
        .str-c { flex: 1; transform-origin: bottom; margin-top: 1vh; }
        .stripes-red .str-c { background: var(--red); }
        .stripes-blk .str-c { background: var(--black); }
 




    /* new circle */
    .circle-svg {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 1;
}

/* ── CIRCLE VISUAL SIDE ── */
.circle-vis {
  position: relative;
  height: 490px;
  width: 100%;
}

.circle-svg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 1;
}

/* ── PRODUCT CARD ON CIRCLE ── */
.prod-card {
    position: absolute;
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 8px 14px;
    background-color: white;
    backdrop-filter: blur(16px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 14px;
    z-index: 10;
    transition: border-color 0.3s, box-shadow 0.3s, transform 0.3s;
    cursor: default;
    white-space: nowrap;
    box-shadow: 0px 0px 2px 0px lightgray;
    animation: 5s ease-in-out 0s infinite normal none running floatProduct;
}

.prod-card:hover {
  border-color: rgba(255, 255, 255, 0.28);
  box-shadow: 0 14px 40px rgba(0, 0, 0, 0.5);
  transform: scale(1.06);
  z-index: 20;
}

@keyframes floatProduct {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-5px); }
}

.pci {
    width: 31px;
    height: 31px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    flex-shrink: 0;
}

.pcl {
    font-size: 12px;
    font-weight: 700;
    color: black;
    letter-spacing: -0.2px;
}

/* ── CENTER HUB ── */
.hub {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 65px;
    height: 65px;
    border-radius: 18px;
    background: linear-gradient(135deg, #ef4444f5 0%, #ff4040 50%, #ffaeaed4 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.65rem;
    z-index: 5;
    border: 1.5px solid;
}

.hub::before {
    content: "";
    position: absolute;
    inset: -8px;
    border-radius: 32px;
    background: linear-gradient(135deg, rgba(239, 68, 68, 0.17) 0%, rgba(255, 64, 64, 0.41) 50%, rgba(255, 174, 174, 0.3) 100%);
    z-index: -1;
    animation: 3s ease-in-out 0s infinite normal none running pulseGlow;
}

/* ── SCROLL REVEAL ── */
.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.9s cubic-bezier(0.2, 0.8, 0.2, 1), transform 0.9s cubic-bezier(0.2, 0.8, 0.2, 1);
}

.reveal.vis {
  opacity: 1;
  transform: translateY(0);
}

/* ── RESPONSIVE DESIGN ── */
@media (max-width: 991px) {
  .circle-vis { height: 440px; }
  .prod-card { padding: 10px 14px; }
  .pci { width: 30px; height: 30px; font-size: 0.9rem; }
  .pcl { font-size: 0.75rem; }
  .hub { width: 54px; height: 54px; font-size: 1.35rem; }
}

@media (max-width: 575px) {
  .circle-vis { height: 350px; }
  .prod-card { padding: 7px 11px; border-radius: 10px; gap: 6px; animation: none; }
  .pci { width: 26px; height: 26px; font-size: 0.78rem; border-radius: 8px; }
  .pcl { font-size: 0.68rem; }
  .hub { width: 46px; height: 46px; font-size: 1.15rem; border-radius: 14px; }
  .pillar-card { padding: 26px; }
}

  /* --- Section Foundation --- */
        .hyten-showcase-engine {
            padding: 7rem 0;
            background-color: #fcfcfd;
            position: relative;
        }

        /* Ambient Subtext Layer */
        .badge-moderate {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            padding: 0.35rem 1rem;
            background:  #ffffff;
            border: 1px solid  #e2e8f0;
            border-radius: 100px;
            font-size: 0.78rem;
            font-weight: 700;
            color: #ff6161;
            letter-spacing: 0.5px;
            text-transform: uppercase;
            box-shadow: 0 2px 8px rgba(0,0,0,0.02);
            margin-bottom: 1.25rem;
        }

        .badge-moderate .status-dot {
            width: 6px;
            height: 6px;
            background-color: #ff6161;
            border-radius: 50%;
            box-shadow: 0 0 6px #ff6161;
        }

        .heading-master {
            font-size: clamp(2rem, 3.5vw, 3.25rem);
            font-weight: 800;
            letter-spacing: -0.03em;
            line-height: 1.15;
            color: #0f172a;
            margin-bottom: 1rem;
        }

        .subtext-master {
            font-size: 1.1rem;
            color: #64748b;
            max-width: 580px;
            line-height: 1.6;
        }

        /* --- Left Side: Navigation Engine --- */
        .navigation-rail {
            display: flex;
            flex-direction: column;
            gap: 12px;
        }

        .nav-card {
            background: #ffffff;
            border: 1px solid #e2e8f0;
            border-radius: 1rem;
            padding: 1.25rem 1.5rem;
            cursor: pointer;
            transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
            position: relative;
            box-shadow: 0 1px 3px rgba(0,0,0,0.01);
        }

        /* Subtle left border precision indicator */
        .nav-card::before {
            content: '';
            position: absolute;
            left: -1px;
            top: 50%;
            transform: translateY(-50%) scaleY(0);
            width: 4px;
            height: 60%;
            background-color: #ff6161;
            border-radius: 0 4px 4px 0;
            transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1);
        }

        .nav-card:hover:not(.active) {
            border-color: #cbd5e1;
            transform: translateX(4px);
            box-shadow: 0 6px 16px -8px rgba(0,0,0,0.04);
        }

        .nav-card.active {
            border-color: #ff6161;
            box-shadow: 0 16px 28px -8px rgba(255, 97, 97, 0.15), 
                        0 4px 8px -2px rgba(255, 97, 97, 0.05);
        }

        .nav-card.active::before {
            transform: translateY(-50%) scaleY(1);
        }

        .nav-card-header {
            display: flex;
            align-items: center;
            gap: 14px;
        }

        .nav-icon-container {
            width: 38px;
            height: 38px;
            border-radius: 8px;
            background: #fcfcfd;
            border: 1px solid #e2e8f0;
            display: flex;
            align-items: center;
            justify-content: center;
            padding: 8px;
            transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
        }

        .nav-card.active .nav-icon-container {
            background: #ff6161;
            border-color: #ff6161;
            transform: scale(1.05);
        }

        .nav-card.active .nav-icon-container img {
            filter: brightness(0) invert(1);
        }

        .nav-title {
            font-size: 1.15rem;
            font-weight: 700;
            color: #0f172a;
            margin: 0;
            transition: color 0.3s ease;
        }

        .nav-card.active .nav-title {
            color: #ff6161;
        }

        /* Dynamic Expandable Body Content */
        .nav-body-expansion {
            max-height: 0;
            overflow: hidden;
            transition: max-height 0.4s cubic-bezier(0.16, 1, 0.3, 1), opacity 0.3s ease;
            opacity: 0;
            padding-left: 52px; /* Precision alignment with title */
        }

        .nav-card.active .nav-body-expansion {
            max-height: 120px;
            opacity: 1;
            margin-top: 0.65rem;
        }

        .nav-body-expansion p {
            font-size: 0.9rem;
            color: #64748b;
            line-height: 1.5;
            margin-bottom: 0.3rem;
        }
        .nav-body-expansion p:last-child { margin: 0; }

        /* --- Right Side: Virtual Environment Core --- */
        .environment-staging {
            position: relative;
            background: #ffffff;
            border: 1px solid #e2e8f0;
            border-radius: 1.5rem;
            padding: 1rem;
            box-shadow: 0 20px 40px -12px rgba(15, 23, 42, 0.05);
        }

        .environment-viewport {
            position: relative;
            width: 100%;
            aspect-ratio: 16 / 12.5;
            background: #f8fafc;
            border-radius: 1rem;
            overflow: hidden;
            display: flex;
            align-items: center;
            justify-content: center;
            border: 1px solid rgba(241, 245, 249, 0.8);
        }

        /* Controlled Staging Inner Radiance */
        .environment-viewport::before {
            content: '';
            position: absolute;
            width: 280px;
            height: 280px;
            background: #ff6161;
            border-radius: 50%;
            filter: blur(85px);
            opacity: 0.08;
            pointer-events: none;
        }

        /* Contextual Floating Chips inside Core */
        .context-chip {
            position: absolute;
            padding: 6px 14px;
            background: rgba(255, 255, 255, 0.9);
            backdrop-filter: blur(10px);
            border-radius: 100px;
            font-size: 0.72rem;
            font-weight: 700;
            color: #0f172a;
            box-shadow: 0 4px 12px rgba(0,0,0,0.04);
            border: 1px solid rgba(226, 232, 240, 0.8);
            z-index: 5;
            transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
            opacity: 0;
            transform: scale(0.95);
        }

        .context-chip.active {
            opacity: 1;
            transform: scale(1);
        }

        .chip-left { top: 1.25rem; left: 1.25rem; }
        .chip-right { bottom: 1.25rem; right: 1.25rem; }

        /* Hardware Layers Rendering */
        .staging-image {
            position: absolute;
            max-width: 88%;
            max-height: 88%;
            object-fit: contain;
            opacity: 0;
            transform: scale(0.96) translateY(10px);
            transition: opacity 0.3s ease, transform 0.5s var(--motion-spring);
            pointer-events: none;
            filter: drop-shadow(0 15px 25px rgba(15, 23, 42, 0.06));
        }

        .staging-image.active {
            opacity: 1;
            transform: scale(1) translateY(0);
            pointer-events: auto;
        }

        /* --- Responsive Hierarchy Optimizations --- */
        @media (max-width: 991px) {
            .hyten-showcase-engine { padding: 4rem 0; }
            .environment-staging { margin-bottom: 2.5rem; }
            .environment-viewport { aspect-ratio: 16 / 11; }
            .heading-master { margin-bottom: 1.5rem; }
        }