/* src/scss/style.scss */
/* 1. Config */
:root {
  /* -- Color Palette -- */
  --bg-dark: #050404;
  --bg-card: rgba(94, 35, 9, 0.25);
  --primary-glow: #FFB088;
  --secondary-glow: #C65D3B;
  --text-main: #ffffff;
  --text-muted: #A0938E;
  /* Typography */
  --font-heading: "Poppins", sans-serif;
  --font-body: "Inter", sans-serif;
  /* -- Spacing & Radius -- */
  --glass-border: 1px solid rgba(255, 176, 136, 0.15);
  --radius-xl: 16px; }

/* 2. Global Resets */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box; }

body {
  background-color: var(--bg-dark);
  color: var(--text-main);
  font-family: 'Inter', sans-serif; }

/* 3. Layout */
h1, h2, h3, h4, h5 {
  font-weight: 400; }

.button {
  cursor: pointer;
  font-family: var(--font-body);
  font-size: 0.875rem;
  font-weight: 400;
  padding: 10px 25px;
  border-radius: 8px;
  transition: 0.3s ease;
  border: none; }

a {
  text-decoration: none; }

.an-mb-15 {
  margin-bottom: 15px; }

.logo-premium {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  transition: opacity 0.3s; }
  .logo-premium:hover {
    opacity: 0.9; }
  .logo-premium svg {
    /* Optional: Add a subtle glow to the icon */
    filter: drop-shadow(0 0 10px rgba(255, 176, 136, 0.4)); }
  .logo-premium .brand-name {
    font-family: var(--font-heading);
    /* Use your heading font */
    font-size: 24px;
    font-weight: 400;
    /* Bold */
    color: #fff;
    letter-spacing: -0.03em;
    /* Tight tracking looks premium */ }
  .logo-premium .brand-highlight {
    font-weight: 400;
    /* Lighter weight for contrast */
    color: #FFB088;
    /* Your primary glow color */ }

.navbar {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 80px;
  padding: 0 5%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  z-index: 50;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
  background-color: rgba(18, 18, 18, 0.8);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px); }
  .navbar .logo {
    font-size: 1.75rem;
    font-weight: 700;
    color: #fff;
    z-index: 102; }
    .navbar .logo a {
      color: #fff;
      text-decoration: none; }
      .navbar .logo a img {
        position: relative;
        height: auto;
        width: 100px;
        display: flex;
        justify-content: flex-start;
        align-items: center; }
    .navbar .logo .highlight {
      background: linear-gradient(90deg, #FFB088, #C65D3B);
      -webkit-background-clip: text;
      background-clip: text;
      color: transparent; }
  .navbar ul.nav-menu {
    margin: 0;
    padding: 0; }
    .navbar ul.nav-menu .mobile-buttons {
      display: none; }
    .navbar ul.nav-menu li {
      list-style: none;
      position: relative; }
      .navbar ul.nav-menu li > a {
        text-decoration: none;
        color: #cccccc;
        font-size: 0.875rem;
        font-weight: 400;
        padding: 10px 18px;
        border-radius: 8px;
        transition: all 0.2s ease;
        display: flex;
        align-items: center;
        gap: 6px; }
        .navbar ul.nav-menu li > a.active {
          color: #fff;
          background-color: rgba(255, 255, 255, 0.1); }
        .navbar ul.nav-menu li > a .chevron {
          transition: transform 0.3s ease;
          display: flex;
          position: relative;
          margin-top: 4px; }
          .navbar ul.nav-menu li > a .chevron img {
            position: relative;
            width: 16px;
            height: auto; }
  .navbar .mega-menu {
    background: #1a1a1a; }
    .navbar .mega-menu::before {
      content: '';
      position: absolute;
      top: -30px;
      left: 0;
      width: 100%;
      height: 50px;
      background: transparent; }
    .navbar .mega-menu .menu-item {
      display: flex;
      align-items: flex-start;
      gap: 15px;
      padding: 15px;
      text-decoration: none;
      border-radius: 8px; }
      .navbar .mega-menu .menu-item .icon-box {
        width: 40px;
        height: 40px;
        background: rgba(255, 255, 255, 0.05);
        border-radius: 8px;
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 1rem;
        flex-shrink: 0;
        border: 1px solid rgba(255, 255, 255, 0.05); }
        .navbar .mega-menu .menu-item .icon-box i {
          color: #fff;
          font-size: 1.125rem; }
      .navbar .mega-menu .menu-item .menu-text {
        display: flex;
        flex-direction: column; }
        .navbar .mega-menu .menu-item .menu-text .title {
          font-size: 1rem;
          font-weight: 400;
          color: #eee;
          margin-bottom: 4px;
          display: flex;
          align-items: flex-start;
          gap: 8px; }
          .navbar .mega-menu .menu-item .menu-text .title .badge {
            font-size: 0.75rem;
            padding: 2px 6px;
            border-radius: 8px;
            font-weight: 400; }
            .navbar .mega-menu .menu-item .menu-text .title .badge.new {
              background: #FFB088;
              color: #000; }
            .navbar .mega-menu .menu-item .menu-text .title .badge.update {
              background: #FFB088;
              border: 1px solid #555;
              color: #000; }
        .navbar .mega-menu .menu-item .menu-text .desc {
          font-size: 0.75rem;
          color: #a1a1a1;
          line-height: 1.4; }
  .navbar .nav-buttons {
    display: flex;
    gap: 15px;
    z-index: 2; }
  .navbar .hamburger {
    display: none;
    cursor: pointer;
    flex-direction: column;
    gap: 6px;
    z-index: 102; }
    .navbar .hamburger span {
      width: 25px;
      height: 2px;
      background: #fff;
      transition: 0.3s; }

@media (min-width: 1025px) {
  .navbar ul.nav-menu .mobile-buttons {
    display: none !important; }
  .navbar ul.nav-menu {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    display: flex;
    align-items: center;
    gap: 5px; }
    .navbar ul.nav-menu li > a:hover {
      color: #fff;
      background-color: rgba(255, 255, 255, 0.1); }
    .navbar ul.nav-menu li.has-dropdown:hover .mega-menu {
      opacity: 1;
      visibility: visible;
      transform: translate(-50%, 0); }
    .navbar ul.nav-menu li.has-dropdown:hover > a .chevron {
      transform: rotate(180deg); }
  .navbar .mega-menu {
    position: absolute;
    top: 170%;
    left: 50%;
    transform: translate(-50%, 15px);
    width: 900px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    padding: 20px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.5);
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 15px;
    background: linear-gradient(45deg, #00000026, #20140e);
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s cubic-bezier(0.165, 0.84, 0.44, 1);
    backdrop-filter: blur(50px);
    background-color: #030100; }
    .navbar .mega-menu .menu-item:hover {
      background-color: rgba(255, 255, 255, 0.05); }
      .navbar .mega-menu .menu-item:hover .title {
        color: #fff; } }
@media (max-width: 1024px) {
  .navbar .nav-buttons {
    display: none !important; }
  .navbar .hamburger {
    display: flex; }
  .navbar.active .hamburger span:nth-child(1) {
    transform: translateY(8px) rotate(45deg); }
  .navbar.active .hamburger span:nth-child(2) {
    opacity: 0; }
  .navbar.active .hamburger span:nth-child(3) {
    transform: translateY(-8px) rotate(-45deg); }
  .navbar ul.nav-menu {
    position: fixed;
    top: 0;
    right: -100%;
    width: 100%;
    height: 100vh;
    background: #0a0a0a;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    padding: 100px 30px 40px;
    transition: right 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    overflow-y: auto;
    z-index: 100; }
    .navbar ul.nav-menu.active {
      right: 0; }
    .navbar ul.nav-menu .mobile-buttons {
      display: flex;
      flex-direction: column;
      gap: 15px;
      width: 100%;
      margin-top: 30px;
      padding-bottom: 40px; }
      .navbar ul.nav-menu .mobile-buttons button {
        width: 100%;
        padding: 15px;
        justify-content: center; }
    .navbar ul.nav-menu li {
      width: 100%;
      border-bottom: 1px solid rgba(255, 255, 255, 0.05); }
      .navbar ul.nav-menu li > a {
        font-size: 0.875rem;
        padding: 20px 15px;
        justify-content: space-between;
        width: 100%; }
        .navbar ul.nav-menu li > a:hover {
          background: transparent; }
      .navbar ul.nav-menu li.dropdown-open > a {
        color: #fff; }
      .navbar ul.nav-menu li.dropdown-open > a .chevron {
        transform: rotate(180deg); }
      .navbar ul.nav-menu li.dropdown-open .mega-menu {
        display: block;
        animation: slideDown 0.3s ease-out forwards; }
    .navbar ul.nav-menu .mobile-buttons > a {
      padding: 10px 18px; }
    .navbar ul.nav-menu .mega-menu {
      position: static;
      width: 100%;
      transform: none;
      opacity: 1;
      visibility: visible;
      background: transparent;
      border: none;
      box-shadow: none;
      padding: 0 0 10px 10px;
      display: none;
      grid-template-columns: 1fr; }
      .navbar ul.nav-menu .mega-menu::before {
        display: none; }
      .navbar ul.nav-menu .mega-menu .menu-item {
        padding: 12px 0; }
        .navbar ul.nav-menu .mega-menu .menu-item .icon-box {
          background: transparent;
          border: none;
          font-size: 1.3rem; } }
@keyframes slideDown {
  from {
    opacity: 0;
    transform: translateY(-10px); }
  to {
    opacity: 1;
    transform: translateY(0); } }
/* ==========================
  HERO SECTION (PREMIUM UPGRADE)
  ========================== */
.hero {
  position: relative;
  min-height: 100vh;
  /* Full screen */
  padding-top: 120px;
  /* Space for navbar */
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  background-color: var(--bg-dark);
  overflow: hidden;
  perspective: 1000px;
  /* CRITICAL for 3D effect */
  /* --- 1. Background Grid --- */
  /* --- 2. Ambient Spotlight --- */
  /* --- 3. Content (Text) --- */
  /* --- 4. THE 3D VISUAL (CSS ONLY) --- */ }
  .hero .hero-bg-grid {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: linear-gradient(rgba(255, 255, 255, 0.035) 1px, transparent 1px), linear-gradient(90deg, rgba(255, 255, 255, 0.035) 1px, transparent 1px);
    background-size: 50px 50px;
    z-index: 0;
    /* Fade grid into black at edges */
    mask-image: radial-gradient(circle at 50% 0%, black 0%, transparent 80%); }
  .hero .hero-spotlight {
    position: absolute;
    top: unset;
    left: 50%;
    transform: translateX(-50%);
    width: 800px;
    height: 800px;
    background: radial-gradient(circle, var(--primary-glow), transparent 70%);
    opacity: 0.15;
    filter: blur(100px);
    z-index: 0;
    bottom: 0px;
    pointer-events: none; }
  .hero .hero-spotlight-1, .hero .hero-spotlight-2 {
    position: absolute;
    top: 0px;
    width: 15px;
    height: 80%;
    background: -webkit-radial-gradient(circle, #c85f3d, rgba(0, 0, 0, 0) 70%);
    background: radial-gradient(circle, #c85f3d, rgba(0, 0, 0, 0) 70%);
    opacity: 1;
    -webkit-filter: blur(7px);
    filter: blur(7px);
    z-index: 0;
    bottom: 0px;
    margin: auto;
    pointer-events: none; }
  .hero .hero-spotlight-1 {
    left: 0%;
    -webkit-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
    transform: translateX(-50%); }
  .hero .hero-spotlight-2 {
    right: 0%;
    -webkit-transform: translateX(50%);
    -ms-transform: translateX(50%);
    transform: translateX(50%); }
  .hero .hero-content {
    position: relative;
    z-index: 10;
    text-align: center;
    max-width: 800px;
    margin-bottom: 60px;
    /* Space between text and 3D visual */
    /* Badge Style Update */
    /* Trust Signal */ }
    .hero .hero-content h1 {
      font-family: var(--font-heading);
      font-size: 4rem;
      line-height: 1.1;
      margin-bottom: 20px;
      color: #fff;
      text-shadow: 0 0 50px rgba(0, 0, 0, 0.5);
      /* Readability */ }
      @media (max-width: 768px) {
        .hero .hero-content h1 {
          font-size: 2.5rem;
          padding: 0px 20px; } }
      .hero .hero-content h1 .highlight {
        background: linear-gradient(to right, var(--primary-glow), var(--secondary-glow));
        color: transparent; }
      .hero .hero-content h1 .typing-text {
        color: var(--text-muted); }
    .hero .hero-content .subtext {
      font-size: 0.875rem;
      color: #aaa;
      line-height: 1.6;
      position: relative;
      display: block;
      max-width: 500px;
      margin: 0 auto 30px auto;
      padding: 0px 20px; }
    .hero .hero-content .badge {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      background: rgba(255, 255, 255, 0.05);
      border: 1px solid rgba(255, 255, 255, 0.1);
      padding: 8px 16px;
      border-radius: 50px;
      font-size: 0.85rem;
      color: #fff;
      margin-bottom: 30px;
      box-shadow: 0 0 20px rgba(255, 176, 136, 0.1);
      /* Glow */ }
    .hero .hero-content .cta-group {
      display: flex;
      gap: 15px;
      justify-content: center;
      margin-bottom: 30px; }
    .hero .hero-content .trust-signal {
      display: flex;
      align-items: center;
      justify-content: center;
      gap: 15px; }
      .hero .hero-content .trust-signal .avatars img {
        width: 32px;
        height: 32px;
        border-radius: 50%;
        border: 2px solid var(--bg-dark);
        margin-left: -10px; }
        .hero .hero-content .trust-signal .avatars img:first-child {
          margin-left: 0; }
      .hero .hero-content .trust-signal span {
        font-size: 0.85rem;
        color: #666; }
  .hero .hero-visual {
    position: relative;
    width: 95%;
    max-width: 1000px;
    height: 400px;
    z-index: 5;
    /* The Tilt Magic */
    transform-style: preserve-3d;
    transform: rotateX(20deg) scale(0.9);
    transition: transform 0.5s ease;
    /* Float Animation */
    animation: floatInterface 6s ease-in-out infinite;
    /* Main Glass Board */
    /* Header Dots */
    /* Body Layout */
    /* Skeleton UI Elements */
    /* Floating Cards (Pop-up elements) */ }
    @media (max-width: 768px) {
      .hero .hero-visual {
        height: 350px; } }
    .hero .hero-visual .glass-interface {
      width: 100%;
      height: 100%;
      background: rgba(20, 20, 20, 0.6);
      backdrop-filter: blur(20px);
      border: 1px solid rgba(255, 255, 255, 0.1);
      border-top: 1px solid rgba(255, 255, 255, 0.3);
      /* Highlight top edge */
      border-radius: 20px 20px 0 0;
      box-shadow: 0 20px 50px rgba(0, 0, 0, 0.5), 0 0 100px rgba(198, 93, 59, 0.15);
      /* Ambient Glow under */
      display: flex;
      flex-direction: column;
      overflow: hidden;
      position: relative; }
    .hero .hero-visual .interface-header {
      padding: 15px 20px;
      border-bottom: 1px solid rgba(255, 255, 255, 0.05);
      display: flex;
      align-items: center;
      gap: 20px; }
      .hero .hero-visual .interface-header .dots {
        display: flex;
        gap: 8px; }
        .hero .hero-visual .interface-header .dots span {
          width: 10px;
          height: 10px;
          border-radius: 50%;
          background: #333; }
          .hero .hero-visual .interface-header .dots span:nth-child(1) {
            background: #ff5f56; }
          .hero .hero-visual .interface-header .dots span:nth-child(2) {
            background: #ffbd2e; }
          .hero .hero-visual .interface-header .dots span:nth-child(3) {
            background: #27c93f; }
      .hero .hero-visual .interface-header .bar {
        flex: 1;
        height: 8px;
        background: #222;
        border-radius: 4px;
        max-width: 300px; }
    .hero .hero-visual .interface-body {
      flex: 1;
      display: flex; }
      .hero .hero-visual .interface-body .sidebar {
        width: 200px;
        border-right: 1px solid rgba(255, 255, 255, 0.05);
        padding: 20px;
        display: flex;
        flex-direction: column;
        gap: 15px; }
      .hero .hero-visual .interface-body .main-area {
        flex: 1;
        padding: 40px;
        display: flex;
        flex-direction: column;
        gap: 20px; }
    .hero .hero-visual .skeleton-line {
      height: 10px;
      background: #222;
      border-radius: 5px; }
    .hero .hero-visual .skeleton-row {
      height: 12px;
      background: #222;
      border-radius: 6px;
      width: 100%; }
    .hero .hero-visual .chart-placeholder {
      height: 150px;
      display: flex;
      align-items: flex-end;
      gap: 15px;
      margin-bottom: 20px;
      padding-bottom: 10px;
      border-bottom: 1px solid #222; }
      .hero .hero-visual .chart-placeholder .bar {
        flex: 1;
        background: #222;
        border-radius: 4px 4px 0 0; }
        .hero .hero-visual .chart-placeholder .bar.active {
          background: linear-gradient(to top, var(--secondary-glow), var(--primary-glow));
          box-shadow: 0 0 20px var(--primary-glow); }
    .hero .hero-visual .float-card {
      position: absolute;
      padding: 12px 20px;
      background: rgba(30, 30, 30, 0.9);
      border: 1px solid rgba(255, 255, 255, 0.2);
      border-radius: 12px;
      color: #fff;
      font-size: 0.9rem;
      display: flex;
      align-items: center;
      gap: 10px;
      box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5); }
      .hero .hero-visual .float-card.card-1 {
        top: 30%;
        right: -10px;
        animation: float 5s ease-in-out infinite; }
        .hero .hero-visual .float-card.card-1 i {
          color: #27c93f; }
      .hero .hero-visual .float-card.card-2 {
        bottom: 100px;
        left: -15px;
        animation: float 7s ease-in-out infinite 1s; }
        .hero .hero-visual .float-card.card-2 i {
          color: #ffbd2e; }

/* Animations */
@keyframes floatInterface {
  0%, 100% {
    transform: rotateX(20deg) translateY(0); }
  50% {
    transform: rotateX(20deg) translateY(-15px); } }
@keyframes float {
  0%, 100% {
    transform: translateY(0); }
  50% {
    transform: translateY(-10px); } }
/* Mobile Adjustments */
@media (max-width: 768px) {
  .hero h1 {
    font-size: 2.5rem; }

  /* Flatten the 3D effect on mobile so it doesn't look weird */
  .hero-visual {
    transform: none !important;
    animation: none !important;
    height: auto;
    margin-top: 40px;
    /* Hide floaters on mobile to save space */ }
    .hero-visual .glass-interface {
      border-radius: 12px;
      height: 300px; }
    .hero-visual .float-card {
      display: none; } }
/* ============================
   2. Buttons (Added this for you)
   ============================ */
.cta-group {
  display: flex;
  gap: 15px;
  justify-content: center; }

.button {
  cursor: pointer;
  font-family: var(--font-body);
  font-size: 0.875rem;
  font-weight: 400;
  padding: 10px 25px;
  border-radius: 8px;
  transition: 0.3s ease;
  border: none; }

.btn-glass {
  background: rgba(255, 255, 255, 0.05);
  color: var(--text-main);
  border: 1px solid rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px); }
  .btn-glass:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.3); }

.trust-signal {
  margin-top: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 15px;
  animation: fadeIn 1s ease-out 0.5s backwards;
  /* Slight delay on load */ }
  .trust-signal .avatars {
    display: flex; }
    .trust-signal .avatars img {
      width: 32px;
      height: 32px;
      border-radius: 50%;
      border: 2px solid #000;
      /* Matches background to create "cutout" look */
      margin-left: -10px;
      /* Overlap effect */ }
      .trust-signal .avatars img:first-child {
        margin-left: 0; }
  .trust-signal span {
    color: var(--text-muted);
    font-size: 0.85rem;
    font-weight: 500; }

/* ==========================
   DEVELOPERS SECTION
   ========================== */
.developers-section {
  padding: 100px 0 0px 0;
  background-color: var(--bg-dark);
  /* Header */
  /* Grid Layout */
  /* --- Universal Card Styles --- */
  /* --- Card 1: Text to Speech --- */
  /* --- Card 2: Speech to Text --- */
  /* --- Card 4: Agents (Layout) --- */
  /* --- Card 5: Scale --- */ }
  .developers-section .container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 20px; }
  .developers-section .dev-header {
    margin-bottom: 50px; }
    .developers-section .dev-header .label {
      font-size: 0.875rem;
      letter-spacing: 1px;
      color: #fff;
      display: inline-block;
      font-size: 0.7rem;
      padding: 5px 10px;
      border: 1px solid rgba(255, 255, 255, 0.1);
      border-radius: 20px;
      margin-bottom: 15px;
      text-transform: uppercase;
      background-color: #ffffff1a;
      backdrop-filter: blur(10px); }
    .developers-section .dev-header h2 {
      font-family: var(--font-heading);
      font-size: 2.5rem;
      font-weight: 400;
      line-height: 1.2;
      color: #fff;
      display: block;
      width: 100%;
      max-width: 800px; }
      @media (max-width: 767px) {
        .developers-section .dev-header h2 {
          font-size: 1.75rem;
          padding-right: 5%; } }
  .developers-section .bento-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    /* 3 Columns */
    gap: 5px;
    background-color: #1C1C1C;
    padding: 5px;
    border-radius: 8px;
    /* Mobile Stack */ }
    @media (max-width: 1024px) {
      .developers-section .bento-grid {
        grid-template-columns: 1fr; } }
  .developers-section .dev-card {
    background: #0e0e0e;
    /* Very dark card bg */
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    padding: 35px;
    display: flex;
    flex-direction: column;
    transition: transform 0.3s ease;
    /* Span Logic */ }
    .developers-section .dev-card:hover {
      border-color: rgba(255, 176, 136, 0.3); }
    .developers-section .dev-card h3 {
      font-family: var(--font-heading);
      font-size: 1.4rem;
      margin-bottom: 12px;
      font-weight: 400; }
    .developers-section .dev-card .desc {
      color: var(--text-muted);
      font-size: 0.95rem;
      line-height: 1.5;
      margin-bottom: 25px; }
    .developers-section .dev-card .underline {
      text-decoration: underline;
      text-decoration-color: #555;
      color: #ccc; }
    .developers-section .dev-card.span-2 {
      grid-column: span 2; }
    @media (max-width: 1024px) {
      .developers-section .dev-card.span-2 {
        grid-column: span 1; } }
  .developers-section .model-list {
    display: flex;
    flex-direction: column;
    gap: 25px;
    margin-top: auto; }
    .developers-section .model-list .model-item {
      display: flex;
      gap: 15px; }
      .developers-section .model-list .model-item .pipe {
        width: 2px;
        background: #fff;
        height: 100%;
        min-height: 40px;
        display: block; }
      .developers-section .model-list .model-item h4 {
        font-size: 1rem;
        font-weight: 500;
        margin-bottom: 5px; }
      .developers-section .model-list .model-item p {
        font-size: 0.85rem;
        color: var(--text-muted); }
  .developers-section .stats-row {
    display: flex;
    gap: 30px;
    margin-bottom: 30px; }
    .developers-section .stats-row .stat {
      display: flex;
      flex-direction: column; }
      .developers-section .stats-row .stat .val {
        font-size: 1.2rem;
        font-weight: 500;
        font-family: var(--font-heading); }
      .developers-section .stats-row .stat .label {
        font-size: 0.8rem;
        color: var(--text-muted); }
  .developers-section .viz-chart {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-top: auto; }
    .developers-section .viz-chart .bar {
      position: relative;
      height: 36px;
      border-radius: 6px;
      overflow: hidden;
      background: rgba(255, 255, 255, 0.05);
      display: flex;
      align-items: center;
      padding: 0 15px; }
      .developers-section .viz-chart .bar .bar-label {
        z-index: 2;
        font-size: 0.8rem;
        color: #ccc; }
      .developers-section .viz-chart .bar .fill {
        position: absolute;
        top: 0;
        left: 0;
        height: 100%;
        z-index: 1;
        background: rgba(255, 255, 255, 0.1); }
      .developers-section .viz-chart .bar.active {
        background: transparent; }
        .developers-section .viz-chart .bar.active .fill {
          background: linear-gradient(90deg, var(--secondary-glow), var(--primary-glow));
          box-shadow: 0 0 15px rgba(198, 93, 59, 0.4); }
        .developers-section .viz-chart .bar.active .bar-label {
          color: #fff;
          font-weight: 600; }
  .developers-section .card-agents {
    flex-direction: row;
    gap: 40px;
    overflow: hidden;
    position: relative; }
    @media (max-width: 768px) {
      .developers-section .card-agents {
        flex-direction: column-reverse; } }
    .developers-section .card-agents .content-side {
      flex: 1;
      z-index: 2; }
    .developers-section .card-agents .pipe-list {
      margin-top: 20px;
      list-style: none; }
      .developers-section .card-agents .pipe-list li {
        border-left: 2px solid #fff;
        padding-left: 15px;
        margin-bottom: 12px;
        font-size: 0.9rem;
        font-weight: 500; }
    .developers-section .card-agents .viz-agents-orb {
      flex: 1;
      display: flex;
      align-items: center;
      justify-content: center;
      position: relative;
      /* The Spinning Disc */ }
      .developers-section .card-agents .viz-agents-orb .spinning-disc {
        width: 220px;
        height: 220px;
        border-radius: 50%;
        /* Conic gradient creates the CD/Iris look */
        background: conic-gradient(from 0deg, var(--primary-glow), var(--bg-dark), var(--secondary-glow), #fff, var(--primary-glow));
        filter: blur(10px);
        opacity: 0.8;
        animation: spinSlow 10s linear infinite;
        display: flex;
        align-items: center;
        justify-content: center; }
        .developers-section .card-agents .viz-agents-orb .spinning-disc .center-icon {
          width: 40px;
          height: 40px;
          background: #000;
          border-radius: 50%;
          display: flex;
          align-items: center;
          justify-content: center;
          z-index: 5;
          border: 2px solid #fff; }
          .developers-section .card-agents .viz-agents-orb .spinning-disc .center-icon i {
            color: #fff;
            font-size: 0.8rem; }
  .developers-section .card-scale .feature-block {
    display: flex;
    gap: 15px;
    margin-bottom: 20px; }
    .developers-section .card-scale .feature-block .pipe {
      width: 2px;
      background: #fff;
      height: 100%;
      min-height: 30px; }
    .developers-section .card-scale .feature-block h4 {
      font-size: 0.95rem;
      margin-bottom: 4px; }
    .developers-section .card-scale .feature-block p {
      font-size: 0.8rem;
      color: var(--text-muted); }
  .developers-section .card-scale .btn-white {
    margin-top: auto;
    background: #fff;
    color: #000;
    border: none;
    padding: 12px 24px;
    border-radius: 30px;
    font-weight: 700;
    font-size: 0.8rem;
    cursor: pointer;
    width: max-content;
    align-self: flex-end;
    transition: transform 0.2s; }
    .developers-section .card-scale .btn-white:hover {
      transform: translateY(-2px); }

@keyframes spinSlow {
  from {
    transform: rotate(0deg); }
  to {
    transform: rotate(360deg); } }
/* ==========================
   HORIZONTAL MARQUEE
   ========================== */
.testimonials-horizontal {
  padding: 100px 0;
  background: var(--bg-dark);
  overflow: hidden;
  /* Hide scrollbars */
  /* Wrapper for the scrolling track */
  /* The Moving Track */
  /* The Card Design */ }
  .testimonials-horizontal .header-center {
    text-align: center;
    margin-bottom: 50px; }
    .testimonials-horizontal .header-center .badge {
      display: inline-block;
      font-size: 0.7rem;
      padding: 5px 10px;
      border: 1px solid rgba(255, 255, 255, 0.1);
      border-radius: 20px;
      color: #fff;
      margin-bottom: 15px;
      background-color: #ffffff1a;
      backdrop-filter: blur(10px); }
    .testimonials-horizontal .header-center h2 {
      color: #fff;
      font-family: var(--font-heading);
      font-size: 2.5rem; }
      @media (max-width: 767px) {
        .testimonials-horizontal .header-center h2 {
          font-size: 1.75rem;
          padding-right: 5%; } }
  .testimonials-horizontal .h-marquee-wrapper {
    position: relative;
    width: 100%;
    /* FADE EFFECT ON SIDES (Left and Right) */
    mask-image: linear-gradient(to right, transparent 0%, black 10%, black 90%, transparent 100%);
    -webkit-mask-image: linear-gradient(to right, transparent 0%, black 10%, black 90%, transparent 100%); }
  .testimonials-horizontal .h-marquee-track {
    display: flex;
    gap: 30px;
    /* Space between cards */
    width: max-content;
    /* Allow it to be as wide as needed */
    padding: 20px 0;
    /* Space for shadow/hover transform */
    /* Animation settings */
    animation: scrollLeft 40s linear infinite;
    /* Pause on hover */ }
    .testimonials-horizontal .h-marquee-track:hover {
      animation-play-state: paused; }
  .testimonials-horizontal .review-card {
    width: 400px;
    /* Fixed width is crucial for horizontal scroll */
    flex-shrink: 0;
    /* Prevent squishing */
    background: #0f0f10;
    border: 1px solid rgba(255, 255, 255, 0.08);
    padding: 25px;
    border-radius: 16px;
    transition: transform 0.3s ease, border-color 0.3s ease; }
    .testimonials-horizontal .review-card:hover {
      transform: translateY(-5px);
      border-color: rgba(255, 255, 255, 0.2);
      background: #141415; }
    .testimonials-horizontal .review-card .user-head {
      display: flex;
      align-items: center;
      gap: 12px;
      margin-bottom: 15px; }
      .testimonials-horizontal .review-card .user-head img {
        width: 50px;
        height: 50px;
        border-radius: 50%;
        object-fit: cover; }
      .testimonials-horizontal .review-card .user-head .text h4 {
        color: #fff;
        font-size: 0.95rem;
        margin: 0;
        font-weight: 600; }
      .testimonials-horizontal .review-card .user-head .text span {
        color: var(--text-muted);
        font-size: 0.8rem; }
    .testimonials-horizontal .review-card p {
      color: #ccc;
      font-size: 0.9rem;
      line-height: 1.6;
      margin: 0; }

/* Animation Keyframes */
@keyframes scrollLeft {
  0% {
    transform: translateX(0); }
  100% {
    /* Move exactly 50% to the left */
    /* Since we doubled the content, 50% is the exact length of the original list */
    transform: translateX(-50%); } }
/* Mobile Adjustments */
@media (max-width: 768px) {
  .testimonials-horizontal {
    /* Smaller cards on mobile */
    /* Faster on mobile */ }
    .testimonials-horizontal .review-card {
      width: 300px; }
    .testimonials-horizontal .h-marquee-track {
      animation-duration: 30s; } }
/* ============================
   3. Bento Grid Section
   ============================ */
.anu-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-auto-rows: 250px;
  gap: 20px;
  padding: 100px 10%;
  position: relative;
  z-index: 2;
  background-color: #000; }
  .anu-grid .anu-card {
    /* 1. The Transparency: Very low opacity white/grey */
    background: rgba(255, 255, 255, 0.05);
    /* 2. The Blur: This is the magic property */
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    /* Safari */
    /* 3. The Gradient Overlay: Gives it that "shine" from top-left */
    background-image: linear-gradient(135deg, rgba(255, 255, 255, 0.1) 0%, rgba(0, 0, 0, 0.01) 100%);
    border: 1px solid rgba(255, 255, 255, 0.2);
    /* Uses your mixin */
    border-radius: var(--radius-xl);
    padding: 30px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    /* Grid Spans */ }
    .anu-grid .anu-card h3 {
      font-size: 1.3rem;
      margin-bottom: 10px;
      font-family: var(--font-heading);
      font-weight: 400; }
    .anu-grid .anu-card p {
      color: var(--text-muted);
      font-size: 0.9rem; }
    .anu-grid .anu-card:hover {
      transform: translateY(-5px);
      border-color: rgba(255, 255, 255, 0.3);
      /* Hardcoded shadow for mixin compatibility */
      box-shadow: 0 20px 40px -10px rgba(198, 93, 59, 0.25); }
    .anu-grid .anu-card.large {
      grid-column: span 2; }
    .anu-grid .anu-card.tall {
      grid-row: span 2; }

@media (max-width: 900px) {
  .navbar .desktop-buttons {
    display: none; }
  .navbar .hamburger {
    display: flex; }
  .navbar.active .hamburger span:nth-child(1) {
    transform: translateY(8px) rotate(45deg); }
  .navbar.active .hamburger span:nth-child(2) {
    opacity: 0; }
  .navbar.active .hamburger span:nth-child(3) {
    transform: translateY(-8px) rotate(-45deg); }
  .navbar .nav-menu {
    position: fixed !important;
    top: 0 !important;
    right: 0% !important;
    width: 100% !important;
    height: auto;
    background: #121212;
    flex-direction: column;
    align-items: flex-start !important;
    padding: 100px 20px 40px !important;
    transition: 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    transform: none !important;
    display: none !important;
    left: auto !important;
    overflow-y: auto !important; }
    .navbar .nav-menu.active {
      right: 0;
      display: flex !important; }
    .navbar .nav-menu li {
      width: 100%;
      border-bottom: 1px solid rgba(255, 255, 255, 0.05); }
      .navbar .nav-menu li > a {
        font-size: 1.2rem;
        padding: 20px 0;
        justify-content: space-between;
        border-radius: 0; }
        .navbar .nav-menu li > a:hover {
          background: transparent;
          color: #fff; }
      .navbar .nav-menu li.dropdown-open > a {
        color: #a855f7; }
      .navbar .nav-menu li.dropdown-open > a .chevron {
        transform: rotate(180deg); }
      .navbar .nav-menu li.dropdown-open .mega-menu {
        animation: slideDown 0.3s ease-out forwards; }
    .navbar .nav-menu .mega-menu {
      position: static;
      width: 100%;
      transform: none;
      opacity: 1;
      visibility: visible;
      background: transparent;
      border: none;
      box-shadow: none;
      padding: 0 0 20px 10px;
      display: none;
      grid-template-columns: 1fr; }
      .navbar .nav-menu .mega-menu .menu-item {
        padding: 10px; }
        .navbar .nav-menu .mega-menu .menu-item .menu-text .desc {
          display: block; }
    .navbar .nav-menu li:hover .mega-menu,
    .navbar .nav-menu li.active .mega-menu {
      animation: fadeIn 0.3s; }
    .navbar .nav-menu .mobile-buttons {
      display: flex;
      flex-direction: column;
      gap: 15px;
      width: 100%;
      margin-top: 30px; }
      .navbar .nav-menu .mobile-buttons button {
        width: 100%;
        padding: 15px; } }
/* Mobile Responsive for Grid */
@media (max-width: 900px) {
  .anu-grid {
    grid-template-columns: 1fr;
    grid-auto-rows: auto;
    padding: 50px 5%; }

  .anu-card.large, .anu-card.tall {
    grid-column: span 1;
    grid-row: span 1;
    min-height: 200px; } }
/* ============================
   4. Logo Marquee
   ============================ */
.logo-marquee {
  overflow: hidden;
  white-space: nowrap;
  padding: 60px 0;
  background: var(--bg-dark);
  position: relative;
  z-index: 2;
  /* Fade effect on sides */
  mask-image: linear-gradient(to right, transparent, black 20%, black 80%, transparent);
  -webkit-mask-image: linear-gradient(to right, transparent, black 20%, black 80%, transparent); }
  .logo-marquee .track {
    display: inline-block;
    animation: scroll 30s linear infinite; }
    .logo-marquee .track img {
      height: 40px;
      margin: 0 50px;
      opacity: 0.4;
      filter: grayscale(100%) brightness(200%);
      transition: 0.3s; }
      .logo-marquee .track img:hover {
        opacity: 1;
        filter: grayscale(0%) brightness(100%); }

@keyframes scroll {
  0% {
    transform: translateX(0); }
  100% {
    transform: translateX(-50%); } }
@keyframes blink {
  50% {
    opacity: 0; } }
/* ==========================
   PRICING PAGE STYLES
   ========================== */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px; }

.full-width {
  width: 100%;
  display: block;
  text-align: center; }

/* --- Hero Section --- */
.pricing-hero {
  padding-top: 160px;
  padding-bottom: 60px;
  text-align: center;
  position: relative;
  overflow: hidden; }
  @media (max-width: 767px) {
    .pricing-hero {
      padding-bottom: 30px; } }
  .pricing-hero h1 {
    font-family: var(--font-heading);
    font-size: 2.5rem;
    margin-bottom: 15px; }
    @media (max-width: 767px) {
      .pricing-hero h1 {
        font-size: 1.75rem; } }
    .pricing-hero h1 .highlight {
      background: linear-gradient(90deg, var(--primary-glow), var(--secondary-glow));
      -webkit-background-clip: text;
      background-clip: text;
      color: transparent; }
  .pricing-hero .subtext {
    color: var(--text-muted);
    font-size: 0.875rem;
    margin-bottom: 30px; }
  .pricing-hero .glow-top {
    position: absolute;
    top: -50%;
    left: 50%;
    transform: translateX(-50%);
    width: 800px;
    height: 400px;
    background: var(--primary-glow);
    filter: blur(150px);
    opacity: 0.2;
    z-index: -1; }

/* --- Toggle Switch --- */
.pricing-toggle {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 15px;
  margin-bottom: 40px; }
  .pricing-toggle .toggle-label {
    font-weight: 500;
    font-size: 1rem;
    display: flex;
    align-items: center;
    gap: 8px; }
  .pricing-toggle .save-badge {
    font-size: 0.7rem;
    background: #f8a880;
    color: #000;
    padding: 2px 8px;
    border-radius: 20px;
    font-weight: 700;
    text-transform: uppercase;
    border: 1px solid rgba(245, 158, 11, 0.4); }
  .pricing-toggle .switch {
    position: relative;
    display: inline-block;
    width: 50px;
    height: 26px; }
    .pricing-toggle .switch input {
      opacity: 0;
      width: 0;
      height: 0; }
    .pricing-toggle .switch .slider {
      position: absolute;
      cursor: pointer;
      top: 0;
      left: 0;
      right: 0;
      bottom: 0;
      background-color: rgba(255, 255, 255, 0.1);
      border-radius: 34px;
      transition: .4s;
      border: 1px solid rgba(255, 255, 255, 0.1); }
      .pricing-toggle .switch .slider:before {
        position: absolute;
        content: "";
        height: 18px;
        width: 18px;
        left: 4px;
        bottom: 3px;
        background-color: white;
        transition: .4s;
        border-radius: 50%; }
    .pricing-toggle .switch input:checked + .slider {
      background-color: var(--primary-glow);
      border-color: var(--primary-glow); }
    .pricing-toggle .switch input:checked + .slider:before {
      transform: translateX(22px); }

/* ==========================
   FINAL CTA SECTION
   ========================== */
@keyframes auroraMove {
  0% {
    background-position: 0% 50%; }
  50% {
    background-position: 100% 50%; }
  100% {
    background-position: 0% 50%; } }
.final-cta-section {
  padding: 0px 0px 100px 0px;
  background: var(--bg-dark);
  /* Page Background */
  /* Mobile Adjustments */ }
  .final-cta-section .container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px; }
  .final-cta-section .cta-card {
    position: relative;
    border-radius: 32px;
    overflow: hidden;
    isolation: isolate;
    background: #080808;
    border: 1px solid rgba(255, 176, 136, 0.15);
    box-shadow: 0 20px 60px -10px rgba(0, 0, 0, 0.5);
    padding: 100px 20px;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    /* --- THE DARK ANIMATED BACKGROUND --- */
    /* --- THE INPUT PILL --- */ }
    .final-cta-section .cta-card .cta-glow {
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      z-index: 1;
      opacity: 0.3;
      background: linear-gradient(110deg, #050505 0%, #2e1065 25%, #ffb088 50%, #1e3a8a 75%, #050505 100%);
      background-size: 300% 300%;
      filter: blur(80px);
      animation: auroraMove 20s ease infinite;
      pointer-events: none; }
    .final-cta-section .cta-card .cta-content {
      position: relative;
      z-index: 2;
      /* Sit above the glow */
      width: 100%;
      max-width: 600px; }
    .final-cta-section .cta-card h2 {
      font-family: var(--font-heading);
      font-size: 2.5rem;
      color: #fff;
      margin-bottom: 40px;
      /* Subtle shadow to separate text from background */
      text-shadow: 0 4px 12px rgba(0, 0, 0, 0.8); }
    .final-cta-section .cta-card .input-pill {
      position: relative;
      width: 100%;
      height: 64px;
      /* Darker glass background for contrast */
      background: rgba(0, 0, 0, 0.4);
      border: 1px solid rgba(255, 255, 255, 0.1);
      border-radius: 50px;
      display: flex;
      align-items: center;
      transition: border-color 0.3s, background 0.3s;
      backdrop-filter: blur(12px);
      box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
      /* Icon (Left) */
      /* Input Field */
      /* Button (Right) */ }
      .final-cta-section .cta-card .input-pill:focus-within {
        /* When clicked, glow slightly with the primary color */
        border-color: rgba(255, 176, 136, 0.3);
        background: rgba(0, 0, 0, 0.7); }
      .final-cta-section .cta-card .input-pill .icon {
        position: absolute;
        left: 24px;
        color: #666;
        /* Muted icon color */
        font-size: 1.1rem;
        pointer-events: none; }
      .final-cta-section .cta-card .input-pill input {
        width: 100%;
        height: 100%;
        background: transparent;
        border: none;
        padding-left: 56px;
        padding-right: 160px;
        color: #fff;
        font-size: 1rem;
        font-family: var(--font-body);
        outline: none; }
        .final-cta-section .cta-card .input-pill input::placeholder {
          color: #555;
          /* Darker placeholder */ }
      .final-cta-section .cta-card .input-pill .btn-white {
        position: absolute;
        right: 6px;
        top: 6px;
        bottom: 6px;
        background: #fff;
        color: #000;
        border: none;
        border-radius: 40px;
        padding: 0 24px;
        font-weight: 600;
        font-size: 0.9rem;
        cursor: pointer;
        transition: transform 0.2s; }
        .final-cta-section .cta-card .input-pill .btn-white:hover {
          transform: scale(1.05); }
  @media (max-width: 768px) {
    .final-cta-section .cta-card {
      padding: 60px 20px; }
      .final-cta-section .cta-card h2 {
        font-size: 1.75rem;
        margin-bottom: 30px; }
      .final-cta-section .cta-card .input-pill {
        height: auto;
        padding: 10px;
        flex-direction: column;
        border-radius: 20px;
        background: rgba(0, 0, 0, 0.6); }
        .final-cta-section .cta-card .input-pill .icon {
          top: 18px;
          left: 20px; }
        .final-cta-section .cta-card .input-pill input {
          height: 50px;
          padding-left: 40px;
          padding-right: 10px;
          width: 100%;
          margin-bottom: 10px; }
        .final-cta-section .cta-card .input-pill .btn-white {
          position: static;
          width: 100%;
          height: 44px; } }

/* ==========================
   PROCESS / HOW IT WORKS SECTION
   ========================== */
.process-section {
  padding: 100px 0 100px 0;
  background: var(--bg-dark);
  position: relative;
  overflow: hidden; }
  .process-section .section-header {
    text-align: center;
    margin-bottom: 50px; }
    .process-section .section-header h2 {
      font-family: var(--font-heading);
      font-size: 2.5rem;
      color: #fff;
      margin-bottom: 10px; }
      @media (max-width: 767px) {
        .process-section .section-header h2 {
          font-size: 1.75rem; } }
    .process-section .section-header p {
      color: var(--text-muted);
      font-size: 0.875rem; }
  .process-section .process-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    position: relative;
    padding: 20px 0;
    /* Mobile Stack */
    /* --- THE CONNECTING LINE --- */
    /* --- THE CARD --- */
    /* --- PULSE EFFECT FOR MIDDLE CARD --- */ }
    @media (max-width: 768px) {
      .process-section .process-grid {
        grid-template-columns: 1fr;
        gap: 60px; } }
    .process-section .process-grid .connection-line {
      position: absolute;
      top: 60px;
      /* Aligns with icons */
      left: 15%;
      right: 15%;
      height: 2px;
      background: rgba(255, 255, 255, 0.1);
      z-index: 0; }
      @media (max-width: 768px) {
        .process-section .process-grid .connection-line {
          /* Vertical line for mobile */
          width: 2px;
          height: 80%;
          left: 50%;
          top: 10%;
          right: auto;
          transform: translateX(-50%); } }
      .process-section .process-grid .connection-line .moving-light {
        position: absolute;
        top: 0;
        left: 0;
        width: 100px;
        height: 100%;
        background: linear-gradient(90deg, transparent, var(--primary-glow), transparent);
        animation: flowLine 3s linear infinite; }
        @media (max-width: 768px) {
          .process-section .process-grid .connection-line .moving-light {
            width: 100%;
            height: 100px;
            background: linear-gradient(180deg, transparent, var(--primary-glow), transparent);
            animation: flowLineVert 3s linear infinite; } }
    .process-section .process-grid .process-card {
      position: relative;
      z-index: 1;
      /* Above the line */
      background: #0f0f10;
      border: 1px solid rgba(255, 255, 255, 0.08);
      border-radius: 20px;
      padding: 40px 30px;
      text-align: center;
      transition: transform 0.3s, border-color 0.3s; }
      .process-section .process-grid .process-card:hover {
        transform: translateY(-10px);
        border-color: rgba(255, 255, 255, 0.2); }
        .process-section .process-grid .process-card:hover .icon-wrapper i {
          color: #fff;
          text-shadow: 0 0 20px var(--primary-glow); }
      .process-section .process-grid .process-card .step-badge {
        font-family: var(--font-heading);
        font-size: 3rem;
        font-weight: 700;
        color: rgba(255, 255, 255, 0.03);
        /* Huge subtle number */
        position: absolute;
        top: 10px;
        right: 20px;
        pointer-events: none; }
      .process-section .process-grid .process-card .icon-wrapper {
        width: 80px;
        height: 80px;
        margin: 0 auto 25px;
        background: #1a1a1a;
        border-radius: 50%;
        border: 1px solid rgba(255, 255, 255, 0.1);
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 1.8rem;
        color: var(--primary-glow);
        position: relative;
        transition: color 0.3s;
        /* Hide the line behind the icon */
        box-shadow: 0 0 0 10px var(--bg-dark); }
      .process-section .process-grid .process-card h3 {
        font-family: var(--font-heading);
        font-size: 1.25rem;
        color: #fff;
        margin-bottom: 10px; }
      .process-section .process-grid .process-card p {
        font-size: 0.95rem;
        color: var(--text-muted);
        line-height: 1.5; }
    .process-section .process-grid .process-card.active-glow {
      border-color: rgba(255, 176, 136, 0.3);
      box-shadow: 0 10px 40px -10px rgba(198, 93, 59, 0.15); }
      .process-section .process-grid .process-card.active-glow .pulse-ring {
        position: absolute;
        top: -5px;
        left: -5px;
        right: -5px;
        bottom: -5px;
        border-radius: 50%;
        border: 1px solid var(--primary-glow);
        animation: pulseRing 2s ease-out infinite;
        opacity: 0; }

/* --- ANIMATIONS --- */
@keyframes flowLine {
  0% {
    left: 0;
    opacity: 0; }
  50% {
    opacity: 1; }
  100% {
    left: 100%;
    opacity: 0; } }
@keyframes flowLineVert {
  0% {
    top: 0;
    opacity: 0; }
  50% {
    opacity: 1; }
  100% {
    top: 100%;
    opacity: 0; } }
@keyframes pulseRing {
  0% {
    transform: scale(0.8);
    opacity: 1; }
  100% {
    transform: scale(1.5);
    opacity: 0; } }
/* =========================================
   FEATURES PAGE STYLES
   ========================================= */
/* Hero Section */
.features-hero {
  padding: 180px 0 100px;
  text-align: center;
  position: relative;
  background: var(--bg-dark);
  overflow: hidden; }
  .features-hero .glow-bg {
    position: absolute;
    top: -50%;
    left: 50%;
    transform: translateX(-50%);
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, var(--primary-glow), transparent 70%);
    opacity: 0.15;
    filter: blur(100px);
    pointer-events: none; }
  .features-hero .glow-top {
    position: absolute;
    top: -50%;
    left: 50%;
    transform: translateX(-50%);
    width: 800px;
    height: 400px;
    background: var(--primary-glow);
    filter: blur(150px);
    opacity: 0.2; }
  .features-hero h1 {
    font-family: var(--font-heading);
    font-size: 2.5rem;
    color: #fff;
    margin-bottom: 20px; }
    .features-hero h1 .highlight {
      color: var(--primary-glow); }
    @media (max-width: 768px) {
      .features-hero h1 {
        font-size: 2.5rem; } }
  .features-hero p {
    color: var(--text-muted);
    max-width: 600px;
    margin: 0 auto;
    font-size: 0.875rem;
    line-height: 1.6; }

/* Feature Blocks (Alternating) */
.features-list-section {
  padding-bottom: 100px;
  background: var(--bg-dark); }
  .features-list-section .feature-block {
    display: flex;
    align-items: center;
    gap: 80px;
    padding: 80px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    /* Reverse Layout Logic */
    /* Text Side */
    /* Visual Side (The Mockups) */ }
    @media (max-width: 900px) {
      .features-list-section .feature-block {
        border-bottom: 1px solid rgba(255, 255, 255, 0.1); } }
    .features-list-section .feature-block:last-child {
      border-bottom: none; }
    .features-list-section .feature-block.reverse {
      flex-direction: row-reverse; }
    @media (max-width: 900px) {
      .features-list-section .feature-block {
        flex-direction: column !important;
        gap: 40px;
        padding: 60px 0;
        text-align: center; }
        .features-list-section .feature-block .text-side {
          align-items: center; } }
    .features-list-section .feature-block .text-side {
      flex: 1;
      display: flex;
      flex-direction: column;
      align-items: flex-start; }
      .features-list-section .feature-block .text-side .icon-wrapper {
        width: 50px;
        height: 50px;
        border-radius: 12px;
        background: rgba(255, 255, 255, 0.05);
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 1.2rem;
        color: var(--primary-glow);
        margin-bottom: 20px;
        border: 1px solid rgba(255, 255, 255, 0.05);
        /* Colors for variety */ }
        .features-list-section .feature-block .text-side .icon-wrapper.blue {
          color: #61dafb; }
        .features-list-section .feature-block .text-side .icon-wrapper.pink {
          color: #f472b6; }
        .features-list-section .feature-block .text-side .icon-wrapper.green {
          color: #4ade80; }
        .features-list-section .feature-block .text-side .icon-wrapper.orange {
          color: #fb923c; }
        .features-list-section .feature-block .text-side .icon-wrapper.purple {
          color: #a78bfa; }
      .features-list-section .feature-block .text-side h2 {
        font-family: var(--font-heading);
        font-size: 2rem;
        color: #fff;
        margin-bottom: 15px; }
        @media (max-width: 767px) {
          .features-list-section .feature-block .text-side h2 {
            font-size: 1.75rem; } }
      .features-list-section .feature-block .text-side .lead {
        font-size: 1.1rem;
        color: #eee;
        margin-bottom: 10px;
        font-weight: 500;
        text-align: left;
        line-height: 1.5; }
      .features-list-section .feature-block .text-side .desc {
        color: var(--text-muted);
        line-height: 1.6;
        margin-bottom: 30px;
        text-align: left;
        font-size: 1rem; }
      .features-list-section .feature-block .text-side .feature-points {
        list-style: none;
        padding: 0; }
        .features-list-section .feature-block .text-side .feature-points li {
          margin-bottom: 10px;
          color: #ccc;
          display: flex;
          align-items: center;
          gap: 10px; }
          .features-list-section .feature-block .text-side .feature-points li i {
            color: var(--secondary-glow);
            font-size: 0.8rem; }
    .features-list-section .feature-block .visual-side {
      flex: 1;
      display: flex;
      justify-content: center; }
      @media (max-width: 900px) {
        .features-list-section .feature-block .visual-side {
          width: 100%; } }
      .features-list-section .feature-block .visual-side .mock-window {
        width: 100%;
        max-width: 500px;
        height: 300px;
        background: #0f0f10;
        border: 1px solid rgba(255, 255, 255, 0.1);
        border-radius: 12px;
        overflow: hidden;
        box-shadow: 0 20px 50px rgba(0, 0, 0, 0.5);
        position: relative;
        transition: transform 0.3s ease;
        /* Browser Style */
        /* Terminal Style */
        /* Diff Style */
        /* Doc Style */
        /* SQL Style */
        /* Test Style */ }
        .features-list-section .feature-block .visual-side .mock-window:hover {
          transform: translateY(-5px);
          border-color: rgba(255, 255, 255, 0.2); }
        .features-list-section .feature-block .visual-side .mock-window.browser .bar {
          height: 30px;
          background: #1a1a1a;
          display: flex;
          align-items: center;
          padding-left: 10px;
          gap: 6px; }
        .features-list-section .feature-block .visual-side .mock-window.browser .dot {
          width: 10px;
          height: 10px;
          border-radius: 50%; }
        .features-list-section .feature-block .visual-side .mock-window.browser .red {
          background: #ef4444; }
        .features-list-section .feature-block .visual-side .mock-window.browser .yellow {
          background: #facc15; }
        .features-list-section .feature-block .visual-side .mock-window.browser .green {
          background: #22c55e; }
        .features-list-section .feature-block .visual-side .mock-window.browser .ui-layout {
          padding: 20px;
          display: flex;
          flex-direction: column;
          gap: 15px; }
        .features-list-section .feature-block .visual-side .mock-window.browser .sk-header {
          height: 40px;
          background: #222;
          border-radius: 6px; }
        .features-list-section .feature-block .visual-side .mock-window.browser .sk-row {
          display: flex;
          gap: 15px; }
        .features-list-section .feature-block .visual-side .mock-window.browser .sk-card {
          flex: 1;
          height: 80px;
          background: #222;
          border-radius: 6px; }
        .features-list-section .feature-block .visual-side .mock-window.browser .sk-big {
          width: 100%;
          height: 100px;
          background: #222;
          border-radius: 6px; }
        .features-list-section .feature-block .visual-side .mock-window.terminal {
          background: #1e1e1e; }
          .features-list-section .feature-block .visual-side .mock-window.terminal .bar {
            background: #2d2d2d;
            color: #888;
            font-size: 0.7rem;
            display: flex;
            align-items: center;
            justify-content: center;
            height: 25px; }
          .features-list-section .feature-block .visual-side .mock-window.terminal .code-layout {
            padding: 20px;
            font-family: monospace;
            display: flex;
            flex-direction: column;
            gap: 5px;
            color: #fff; }
          .features-list-section .feature-block .visual-side .mock-window.terminal .cmd {
            color: #fff;
            margin-bottom: 10px; }
          .features-list-section .feature-block .visual-side .mock-window.terminal .log {
            color: #888;
            font-size: 0.9rem; }
          .features-list-section .feature-block .visual-side .mock-window.terminal .success {
            color: #4ade80; }
          .features-list-section .feature-block .visual-side .mock-window.terminal .cursor {
            animation: blink 1s infinite; }
        .features-list-section .feature-block .visual-side .mock-window.diff .diff-layout {
          padding: 20px;
          font-family: monospace;
          font-size: 0.9rem; }
        .features-list-section .feature-block .visual-side .mock-window.diff .line {
          padding: 2px 10px;
          width: 100%;
          display: block;
          margin-bottom: 2px; }
        .features-list-section .feature-block .visual-side .mock-window.diff .red {
          color: #fca5a5;
          background: rgba(239, 68, 68, 0.1); }
        .features-list-section .feature-block .visual-side .mock-window.diff .green {
          color: #86efac;
          background: rgba(34, 197, 94, 0.1); }
        .features-list-section .feature-block .visual-side .mock-window.doc-style {
          display: flex; }
          .features-list-section .feature-block .visual-side .mock-window.doc-style .doc-sidebar {
            width: 30%;
            height: 100%;
            background: #161616;
            border-right: 1px solid #222; }
          .features-list-section .feature-block .visual-side .mock-window.doc-style .doc-main {
            flex: 1;
            padding: 20px;
            display: flex;
            flex-direction: column;
            gap: 15px; }
          .features-list-section .feature-block .visual-side .mock-window.doc-style .doc-h1 {
            width: 60%;
            height: 20px;
            background: #333;
            border-radius: 4px; }
          .features-list-section .feature-block .visual-side .mock-window.doc-style .doc-p {
            width: 100%;
            height: 10px;
            background: #222;
            border-radius: 2px; }
          .features-list-section .feature-block .visual-side .mock-window.doc-style .doc-p.short {
            width: 80%; }
          .features-list-section .feature-block .visual-side .mock-window.doc-style .doc-code-block {
            width: 100%;
            height: 80px;
            background: #111;
            border: 1px solid #222;
            border-radius: 6px; }
        .features-list-section .feature-block .visual-side .mock-window.sql-style {
          padding: 30px;
          font-family: monospace;
          font-size: 1.1rem;
          color: #ccc;
          display: flex;
          flex-direction: column;
          justify-content: center; }
          .features-list-section .feature-block .visual-side .mock-window.sql-style .k {
            color: #a78bfa;
            font-weight: bold; }
        .features-list-section .feature-block .visual-side .mock-window.test-style {
          padding: 30px;
          display: flex;
          flex-direction: column;
          justify-content: center;
          gap: 15px; }
          .features-list-section .feature-block .visual-side .mock-window.test-style .test-item {
            display: flex;
            align-items: center;
            gap: 15px;
            font-size: 1rem;
            color: #fff;
            padding: 10px;
            background: rgba(255, 255, 255, 0.03);
            border-radius: 6px; }
          .features-list-section .feature-block .visual-side .mock-window.test-style .success i {
            color: #22c55e; }

@keyframes blink {
  50% {
    opacity: 0; } }
/* ==========================
   SHOWCASE PAGE STYLES
   ========================== */
/* --- Showcase Hero --- */
.showcase-hero {
  padding: 160px 0 80px;
  text-align: center;
  position: relative;
  overflow: hidden;
  background: var(--bg-dark);
  /* Ambient Glow behind title */
  /* Filter Bar */ }
  @media (max-width: 767px) {
    .showcase-hero {
      padding: 160px 0 50px; } }
  .showcase-hero .glow-top {
    position: absolute;
    top: -50%;
    left: 50%;
    transform: translateX(-50%);
    width: 800px;
    height: 400px;
    background: var(--primary-glow);
    filter: blur(150px);
    opacity: 0.2; }
  .showcase-hero .container {
    position: relative;
    z-index: 2; }
  .showcase-hero .hero-text {
    max-width: 800px;
    margin: 0 auto 50px; }
    .showcase-hero .hero-text h1 {
      font-family: var(--font-heading);
      font-size: 2.5rem;
      color: #fff;
      margin-bottom: 15px; }
      @media (max-width: 767px) {
        .showcase-hero .hero-text h1 {
          font-size: 1.75rem; } }
      .showcase-hero .hero-text h1 .highlight {
        background: linear-gradient(90deg, var(--primary-glow), var(--secondary-glow));
        -webkit-background-clip: text;
        background-clip: text;
        color: transparent; }
    .showcase-hero .hero-text p {
      color: var(--text-muted);
      font-size: 0.875rem;
      line-height: 1.6; }
  .showcase-hero .filter-bar {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 10px; }
    .showcase-hero .filter-bar .filter-btn {
      background: rgba(255, 255, 255, 0.03);
      border: 1px solid rgba(255, 255, 255, 0.1);
      color: #aaa;
      padding: 10px 24px;
      border-radius: 30px;
      font-size: 0.9rem;
      font-family: var(--font-body);
      cursor: pointer;
      transition: all 0.3s ease; }
      .showcase-hero .filter-bar .filter-btn:hover {
        background: rgba(255, 255, 255, 0.1);
        color: #fff; }
      .showcase-hero .filter-bar .filter-btn.active {
        background: rgba(255, 176, 136, 0.15);
        /* Low opacity Peach */
        border-color: var(--primary-glow);
        color: #fff; }

/* --- Gallery Grid --- */
.showcase-gallery {
  padding-bottom: 100px;
  background: var(--bg-dark);
  /* --- The Card --- */ }
  .showcase-gallery .gallery-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px; }
    @media (max-width: 1024px) {
      .showcase-gallery .gallery-grid {
        grid-template-columns: repeat(2, 1fr); } }
    @media (max-width: 600px) {
      .showcase-gallery .gallery-grid {
        grid-template-columns: 1fr; } }
  .showcase-gallery .showcase-card {
    background: #0f0f10;
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 16px;
    overflow: hidden;
    transition: transform 0.3s ease, border-color 0.3s ease;
    display: flex;
    flex-direction: column;
    /* 1. Visual Area (Top) */
    /* 2. Meta Info (Bottom) */ }
    .showcase-gallery .showcase-card:hover {
      transform: translateY(-5px);
      border-color: rgba(255, 255, 255, 0.2);
      /* Show Overlay */ }
      .showcase-gallery .showcase-card:hover .card-visual .overlay {
        opacity: 1; }
    .showcase-gallery .showcase-card .card-visual {
      height: 240px;
      width: 100%;
      background: #050505;
      /* Blacker than card */
      position: relative;
      overflow: hidden;
      display: flex;
      align-items: center;
      justify-content: center;
      /* Overlay Button on Hover */
      /* --- CSS-Only Mockups (To avoid needing images) --- */
      /* UI Mockup */
      /* Code Mockup */
      /* SQL Mockup */
      /* Mobile Mockup */
      /* Diff Mockup */
      /* Doc Mockup */ }
      .showcase-gallery .showcase-card .card-visual .overlay {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: rgba(0, 0, 0, 0.6);
        backdrop-filter: blur(4px);
        display: flex;
        align-items: center;
        justify-content: center;
        opacity: 0;
        transition: opacity 0.3s ease;
        z-index: 10; }
      .showcase-gallery .showcase-card .card-visual.visual-ui .mock-browser {
        width: 80%;
        height: 80%;
        background: #1a1a1a;
        border-radius: 8px;
        border: 1px solid #333;
        overflow: hidden; }
        .showcase-gallery .showcase-card .card-visual.visual-ui .mock-browser .dots {
          height: 24px;
          background: #222;
          display: flex;
          align-items: center;
          gap: 5px;
          padding-left: 10px; }
          .showcase-gallery .showcase-card .card-visual.visual-ui .mock-browser .dots span {
            width: 6px;
            height: 6px;
            border-radius: 50%;
            background: #555; }
        .showcase-gallery .showcase-card .card-visual.visual-ui .mock-browser .screen-content {
          padding: 15px;
          display: flex;
          flex-direction: column;
          gap: 10px; }
        .showcase-gallery .showcase-card .card-visual.visual-ui .mock-browser .skeleton-header {
          width: 100%;
          height: 30px;
          background: #2a2a2a;
          border-radius: 4px; }
        .showcase-gallery .showcase-card .card-visual.visual-ui .mock-browser .skeleton-grid {
          display: grid;
          grid-template-columns: 1fr 1fr 1fr;
          gap: 10px; }
          .showcase-gallery .showcase-card .card-visual.visual-ui .mock-browser .skeleton-grid div {
            height: 60px;
            background: #2a2a2a;
            border-radius: 4px; }
      .showcase-gallery .showcase-card .card-visual.visual-code {
        align-items: flex-start;
        padding: 20px; }
        .showcase-gallery .showcase-card .card-visual.visual-code pre {
          margin: 0;
          font-family: monospace;
          font-size: 0.8rem;
          color: #888;
          line-height: 1.4; }
        .showcase-gallery .showcase-card .card-visual.visual-code code {
          color: #ccc; }
      .showcase-gallery .showcase-card .card-visual.visual-sql .sql-block {
        font-family: monospace;
        font-size: 0.9rem;
        color: #fff;
        /* Keywords */
        /* Strings */
        /* Functions */ }
        .showcase-gallery .showcase-card .card-visual.visual-sql .sql-block .kw {
          color: var(--primary-glow);
          font-weight: bold; }
        .showcase-gallery .showcase-card .card-visual.visual-sql .sql-block .str {
          color: #a5d6a7; }
        .showcase-gallery .showcase-card .card-visual.visual-sql .sql-block .fn {
          color: #90caf9; }
      .showcase-gallery .showcase-card .card-visual.mobile-app .mock-phone {
        width: 100px;
        height: 180px;
        border: 4px solid #333;
        border-radius: 12px;
        background: #111;
        position: relative; }
        .showcase-gallery .showcase-card .card-visual.mobile-app .mock-phone .notch {
          width: 40px;
          height: 10px;
          background: #333;
          position: absolute;
          top: 0;
          left: 50%;
          transform: translateX(-50%);
          border-radius: 0 0 6px 6px; }
        .showcase-gallery .showcase-card .card-visual.mobile-app .mock-phone .app-screen {
          padding: 20px 8px;
          display: flex;
          flex-direction: column;
          gap: 8px; }
        .showcase-gallery .showcase-card .card-visual.mobile-app .mock-phone .app-header {
          height: 20px;
          background: #222;
          border-radius: 4px; }
        .showcase-gallery .showcase-card .card-visual.mobile-app .mock-phone .app-card {
          height: 40px;
          background: #222;
          border-radius: 4px; }
      .showcase-gallery .showcase-card .card-visual.visual-diff {
        flex-direction: column;
        align-items: flex-start;
        justify-content: center;
        padding: 20px;
        font-family: monospace; }
        .showcase-gallery .showcase-card .card-visual.visual-diff .diff-red {
          color: #ff6b6b;
          background: rgba(255, 107, 107, 0.1);
          width: 100%;
          padding: 2px 5px; }
        .showcase-gallery .showcase-card .card-visual.visual-diff .diff-green {
          color: #51cf66;
          background: rgba(81, 207, 102, 0.1);
          width: 100%;
          padding: 2px 5px;
          margin-bottom: 5px; }
      .showcase-gallery .showcase-card .card-visual.visual-doc {
        flex-direction: column;
        color: #fff; }
        .showcase-gallery .showcase-card .card-visual.visual-doc .doc-icon {
          font-size: 2.5rem;
          color: var(--secondary-glow);
          margin-bottom: 10px; }
        .showcase-gallery .showcase-card .card-visual.visual-doc h4 {
          margin: 0;
          font-size: 1rem; }
        .showcase-gallery .showcase-card .card-visual.visual-doc p {
          font-size: 0.8rem;
          color: #666;
          margin: 5px 0 0; }
    .showcase-gallery .showcase-card .card-meta {
      padding: 20px;
      display: flex;
      justify-content: space-between;
      align-items: flex-start;
      background: #0f0f10; }
      .showcase-gallery .showcase-card .card-meta .info h3 {
        font-family: var(--font-heading);
        font-size: 1rem;
        color: #fff;
        margin: 0 0 8px 0; }
      .showcase-gallery .showcase-card .card-meta .info .tag {
        font-size: 0.75rem;
        padding: 3px 8px;
        border-radius: 4px;
        border: 1px solid #333;
        font-weight: 500;
        /* Tag Colors */ }
        .showcase-gallery .showcase-card .card-meta .info .tag.ui {
          color: #61dafb;
          border-color: rgba(97, 218, 251, 0.2);
          background: rgba(97, 218, 251, 0.05); }
        .showcase-gallery .showcase-card .card-meta .info .tag.python {
          color: #facc15;
          border-color: rgba(250, 204, 21, 0.2);
          background: rgba(250, 204, 21, 0.05); }
        .showcase-gallery .showcase-card .card-meta .info .tag.sql {
          color: #a78bfa;
          border-color: rgba(167, 139, 250, 0.2);
          background: rgba(167, 139, 250, 0.05); }
        .showcase-gallery .showcase-card .card-meta .info .tag.refactor {
          color: #f87171;
          border-color: rgba(248, 113, 113, 0.2);
          background: rgba(248, 113, 113, 0.05); }
        .showcase-gallery .showcase-card .card-meta .info .tag.doc {
          color: #ccc;
          border-color: #444; }
      .showcase-gallery .showcase-card .card-meta .author img {
        width: 32px;
        height: 32px;
        border-radius: 50%;
        border: 2px solid #222; }
  .showcase-gallery .load-more-wrapper {
    text-align: center;
    margin-top: 50px; }

/* --- Grid & Cards --- */
.grid-wrapper {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  align-items: center;
  /* Centers items vertically if heights differ */ }
  @media (max-width: 900px) {
    .grid-wrapper {
      grid-template-columns: 1fr;
      gap: 40px; } }

.pricing-card {
  /* Using your variable mixin equivalent */
  background: rgba(41, 39, 38, 0.3);
  backdrop-filter: blur(16px);
  border: var(--glass-border);
  border-radius: var(--radius-xl);
  padding: 40px 30px;
  position: relative;
  transition: transform 0.3s ease;
  display: flex;
  flex-direction: column;
  /* Divider Line */
  /* Card Header */
  /* Features List */ }
  .pricing-card:hover {
    transform: translateY(-10px); }
  .pricing-card .divider {
    height: 1px;
    background: rgba(255, 255, 255, 0.05);
    margin: 25px 0; }
  .pricing-card h3 {
    font-family: var(--font-heading);
    font-size: 1.125rem;
    margin-bottom: 15px; }
  .pricing-card .price-box {
    display: flex;
    align-items: baseline;
    margin-bottom: 10px; }
    .pricing-card .price-box .currency {
      font-size: 1.5rem;
      vertical-align: top;
      margin-right: 4px; }
    .pricing-card .price-box .amount {
      font-size: 3rem;
      font-family: var(--font-heading);
      color: #fff; }
    .pricing-card .price-box .period {
      color: var(--text-muted);
      font-size: 1rem;
      margin-left: 5px; }
  .pricing-card p {
    color: var(--text-muted);
    font-size: 0.9rem;
    min-height: 40px; }
  .pricing-card .features-list {
    margin-bottom: 30px; }
    .pricing-card .features-list li {
      display: flex;
      gap: 10px;
      margin-bottom: 15px;
      color: #ccc;
      font-size: 0.95rem; }
      .pricing-card .features-list li .check {
        color: var(--secondary-glow);
        font-weight: bold; }
      .pricing-card .features-list li strong {
        color: #fff; }

/* --- "Popular" Card Styling --- */
.pricing-card.popular {
  border: 1px solid var(--primary-glow);
  background: rgba(20, 15, 10, 0.8);
  transform: scale(1.05);
  z-index: 2;
  /* Floating Glow Behind */ }
  @media (max-width: 900px) {
    .pricing-card.popular {
      transform: none; } }
  .pricing-card.popular .glow-bg {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100%;
    height: 100%;
    border-radius: var(--radius-xl);
    background: var(--primary-glow);
    filter: blur(80px);
    opacity: 0.15;
    z-index: -1; }
  .pricing-card.popular .popular-tag {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(90deg, var(--primary-glow), var(--secondary-glow));
    color: #000;
    font-weight: 700;
    font-size: 0.75rem;
    padding: 4px 16px;
    border-radius: 20px;
    text-transform: uppercase; }

/* ==========================
  FAQ STYLES (OpusClip Style)
  ========================== */
.faq-section {
  padding: 100px 0;
  background-color: #000;
  /* Pitch black background */ }
  .faq-section .container {
    max-width: 700px;
    /* Narrow width like screenshot */
    margin: 0 auto;
    padding: 0 20px; }
  .faq-section .faq-title {
    text-align: center;
    font-family: var(--font-heading);
    font-size: 2.5rem;
    color: #fff;
    margin-bottom: 50px; }
    @media (max-width: 767px) {
      .faq-section .faq-title {
        font-size: 1.75rem; } }
  .faq-section .faq-wrapper {
    display: flex;
    flex-direction: column;
    gap: 12px;
    /* Small gap between items */ }
  .faq-section .faq-item {
    /* CLOSED STATE (Default) */
    background-color: #000;
    border: 1px solid #333;
    /* Subtle border */
    border-radius: 12px;
    overflow: hidden;
    transition: all 0.3s ease;
    /* HEADER (The Button) */
    /* ANSWER (Hidden by default) */
    /* === OPEN STATE (When clicked) === */
    /* Hover Effect */ }
    .faq-section .faq-item .faq-question {
      width: 100%;
      display: flex;
      justify-content: space-between;
      align-items: center;
      padding: 24px;
      background: transparent;
      border: none;
      cursor: pointer;
      text-align: left; }
      .faq-section .faq-item .faq-question span {
        font-family: var(--font-body);
        font-size: 1.1rem;
        font-weight: 600;
        color: #fff; }
      .faq-section .faq-item .faq-question .icon {
        color: #fff;
        font-size: 0.9rem;
        transition: transform 0.3s ease; }
    .faq-section .faq-item .faq-answer {
      max-height: 0;
      overflow: hidden;
      transition: max-height 0.3s cubic-bezier(0.4, 0, 0.2, 1); }
      .faq-section .faq-item .faq-answer .answer-content {
        padding: 0 24px 24px 24px;
        color: #999;
        /* Muted text color */
        font-size: 0.95rem;
        line-height: 1.6; }
    .faq-section .faq-item.active {
      background-color: #1a1a1a;
      /* The Gray Background from Screenshot */
      border-color: #444;
      /* Rotate Arrow */
      /* Show Content */ }
      .faq-section .faq-item.active .icon {
        transform: rotate(180deg); }
      .faq-section .faq-item.active .faq-answer {
        max-height: 300px;
        /* Large enough to show content */ }
    .faq-section .faq-item:hover {
      border-color: #555; }

/* ==========================
   FOOTER STYLES
   ========================== */
footer {
  padding: 0 20px 40px;
  /* Outer padding to create "float" effect */
  background-color: var(--bg-dark);
  /* --- Top Section (Links) --- */
  /* --- Middle Section (Certificates & Lang) --- */
  /* --- Divider --- */
  /* --- Bottom Section --- */ }
  footer .footer-card {
    background-color: #121212;
    /* Slightly lighter than main bg */
    border-radius: 32px;
    padding: 60px 60px 30px;
    max-width: 1200px;
    margin: 0 auto;
    border: 1px solid rgba(255, 255, 255, 0.1);
    /* Mobile padding adjustment */ }
    @media (max-width: 768px) {
      footer .footer-card {
        padding: 40px 20px; } }
  footer .footer-links {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 30px;
    margin-bottom: 60px;
    /* Responsive Grid */ }
    @media (max-width: 1024px) {
      footer .footer-links {
        grid-template-columns: repeat(3, 1fr); } }
    @media (max-width: 768px) {
      footer .footer-links {
        grid-template-columns: repeat(3, 2fr);
        gap: 30px; } }
    @media (max-width: 600px) {
      footer .footer-links {
        grid-template-columns: repeat(1, 1fr);
        gap: 30px; } }
    footer .footer-links .col h4 {
      color: #fff;
      font-family: var(--font-body);
      font-weight: 600;
      margin-bottom: 24px;
      font-size: 1rem; }
    footer .footer-links .col ul {
      list-style: none; }
      footer .footer-links .col ul li {
        margin-bottom: 16px;
        display: flex;
        align-items: center;
        flex-wrap: wrap;
        gap: 8px;
        /* The Small "Hiring/Free" Badges */ }
        footer .footer-links .col ul li a {
          color: #9ca3af;
          /* Muted text color */
          font-size: 0.75rem;
          transition: color 0.2s;
          line-height: 1.4;
          text-decoration: none; }
          footer .footer-links .col ul li a:hover {
            color: #fff; }
        footer .footer-links .col ul li .badge-gray {
          background: #FFB088;
          color: #000000;
          font-size: 0.7rem;
          padding: 2px 8px;
          border-radius: 6px;
          font-weight: 500; }
  footer .footer-middle {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    margin-bottom: 30px; }
    @media (max-width: 768px) {
      footer .footer-middle {
        flex-direction: column;
        align-items: flex-start;
        gap: 20px; } }
    footer .footer-middle .badges-left {
      display: flex;
      gap: 15px;
      /* Placeholder Styles for the Awards Badges */ }
      footer .footer-middle .badges-left .cert-badge {
        width: 50px;
        height: 50px;
        background: #fff;
        border-radius: 8px;
        /* Shape like the badge in image */
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        text-align: center; }
        footer .footer-middle .badges-left .cert-badge i {
          font-size: 1.2rem;
          margin-bottom: 4px;
          color: #000; }
        footer .footer-middle .badges-left .cert-badge span {
          font-size: 0.5rem;
          color: #000;
          font-weight: 800;
          line-height: 1; }
        footer .footer-middle .badges-left .cert-badge.soc2 {
          border-bottom: 4px solid #0055ff; }
        footer .footer-middle .badges-left .cert-badge.g2 {
          border-bottom: 4px solid #ff4400; }
    footer .footer-middle .lang-right .btn-lang {
      background: transparent;
      border: 1px solid #333;
      color: #fff;
      padding: 10px 20px;
      border-radius: 50px;
      cursor: pointer;
      display: flex;
      align-items: center;
      gap: 8px;
      font-size: 0.9rem;
      transition: 0.2s; }
      footer .footer-middle .lang-right .btn-lang:hover {
        background: #222;
        border-color: #555; }
  footer .footer-divider {
    height: 1px;
    background-color: #2a2a2a;
    width: 100%;
    margin-bottom: 30px; }
  footer .footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center; }
    @media (max-width: 768px) {
      footer .footer-bottom {
        flex-direction: column-reverse;
        gap: 20px;
        align-items: flex-start; } }
    footer .footer-bottom .copyright {
      color: #6b7280;
      font-size: 0.85rem; }
    footer .footer-bottom .social-icons {
      display: flex;
      gap: 20px; }
      footer .footer-bottom .social-icons a {
        color: #fff;
        font-size: 1.2rem;
        transition: transform 0.2s, color 0.2s; }
        footer .footer-bottom .social-icons a:hover {
          color: var(--primary-glow);
          transform: translateY(-2px); }

/* ==========================
   AUTH PAGE STYLES (Login/Signup)
   ========================== */
.auth-body {
  background: #000;
  height: 100vh;
  overflow: hidden;
  color: #fff;
  font-family: var(--font-body); }

.auth-container {
  display: flex;
  width: 100%;
  height: 100%; }

/* Left Visual Side (The pretty part) */
.auth-visual {
  flex: 1;
  /* Takes up remaining space */
  background: #050404;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  border-right: 1px solid rgba(255, 255, 255, 0.09);
  /* Hide on mobile */
  /* --- 2. Static Mesh Orb (The Ambient Glow) --- */
  /* --- 3. Shooting Stars --- */ }
  @media (max-width: 900px) {
    .auth-visual {
      display: none; } }
  .auth-visual .background-animation {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    /* Behind content */ }
  .auth-visual .mesh-orb {
    position: absolute;
    top: -100px;
    left: -100px;
    width: 800px;
    height: 800px;
    background: radial-gradient(circle, var(--primary-glow), transparent 60%);
    opacity: 0.1;
    filter: blur(80px); }
  .auth-visual .auth-star {
    position: absolute;
    height: 1px;
    width: 150px;
    /* Tail length */
    /* Light Gradient: White -> Peach -> Transparent */
    background: linear-gradient(90deg, rgba(255, 255, 255, 0.8), var(--primary-glow), transparent);
    opacity: 0;
    transform: rotate(-45deg) translateX(0);
    animation: authShoot 6s ease-in-out infinite;
    /* Delays for randomness */ }
    .auth-visual .auth-star.delay-1 {
      animation-delay: 2s;
      top: 40%; }
    .auth-visual .auth-star.delay-2 {
      animation-delay: 3.5s;
      top: 70%;
      width: 100px; }
    .auth-visual .auth-star.delay-3 {
      animation-delay: 5s;
      top: 15%;
      width: 200px; }
  .auth-visual .auth-glow {
    position: absolute;
    width: 800px;
    height: 800px;
    background: radial-gradient(circle, var(--primary-glow), transparent 70%);
    opacity: 0.15;
    filter: blur(100px); }
  .auth-visual .auth-content {
    position: relative;
    z-index: 2;
    padding: 60px;
    max-width: 600px; }
    .auth-visual .auth-content .logo-wrapper {
      margin-bottom: 30px; }
    .auth-visual .auth-content h2 {
      font-family: var(--font-heading);
      font-size: 2.5rem;
      color: #fff;
      margin-bottom: 20px;
      line-height: 1.4; }
      @media (max-width: 767px) {
        .auth-visual .auth-content h2 {
          font-size: 1.75rem; } }
    .auth-visual .auth-content p {
      color: var(--text-muted);
      font-size: 1rem; }

/* Star Animation Keyframes */
@keyframes authShoot {
  0% {
    transform: rotate(-45deg) translateX(-200px);
    opacity: 0; }
  10% {
    opacity: 1;
    /* Flash bright */ }
  40% {
    transform: rotate(-45deg) translateX(800px);
    /* Move across screen */
    opacity: 0; }
  100% {
    opacity: 0; } }
/* Right Form Side */
.auth-form-wrapper {
  flex: 0 0 550px;
  /* Fixed width */
  background: rgba(255, 255, 255, 0.05);
  padding: 60px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  overflow: hidden; }
  @media (max-width: 900px) {
    .auth-form-wrapper {
      flex: 1;
      padding: 30px; }
      .auth-form-wrapper .glow-top {
        position: absolute;
        top: -50%;
        left: 50%;
        transform: translateX(-50%);
        width: 100%;
        height: 400px;
        background: var(--primary-glow);
        filter: blur(150px);
        opacity: 0.3;
        z-index: -1; } }
  .auth-form-wrapper .auth-header {
    margin-bottom: 40px; }
    .auth-form-wrapper .auth-header .back-link {
      color: var(--text-muted);
      font-size: 0.9rem;
      margin-bottom: 20px;
      display: block; }
      .auth-form-wrapper .auth-header .back-link:hover {
        color: #fff; }
    .auth-form-wrapper .auth-header h3 {
      color: #fff;
      font-family: var(--font-heading);
      font-size: 1.75rem; }
  .auth-form-wrapper .input-group {
    margin-bottom: 20px; }
    .auth-form-wrapper .input-group label {
      display: block;
      color: #ccc;
      font-size: 0.9rem;
      margin-bottom: 8px;
      font-weight: 500; }
    .auth-form-wrapper .input-group input {
      width: 100%;
      padding: 14px;
      background: #111;
      border: 1px solid #333;
      border-radius: 8px;
      color: #fff;
      outline: none;
      font-size: 1rem;
      transition: border-color 0.3s; }
      .auth-form-wrapper .input-group input:focus {
        border-color: var(--primary-glow);
        background: #161616; }
  .auth-form-wrapper .btn-primary.full-width {
    width: 100%;
    border: none;
    font-size: 1rem;
    cursor: pointer;
    display: block;
    text-align: center; }
  .auth-form-wrapper .divider {
    text-align: center;
    margin: 30px 0;
    position: relative; }
    .auth-form-wrapper .divider span {
      background: #0d0d0d;
      padding: 0 10px;
      color: #555;
      font-size: 0.8rem;
      position: relative;
      z-index: 2; }
    .auth-form-wrapper .divider::before {
      content: '';
      position: absolute;
      top: 50%;
      left: 0;
      width: 100%;
      height: 1px;
      background: #222; }
  .auth-form-wrapper .google-btn {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    background: transparent;
    border: 1px solid #333;
    color: #fff; }
    .auth-form-wrapper .google-btn:hover {
      background: #111;
      border-color: #fff; }
  .auth-form-wrapper .auth-footer {
    text-align: center;
    margin-top: 30px;
    color: #666;
    font-size: 0.9rem; }
    .auth-form-wrapper .auth-footer a {
      color: var(--primary-glow);
      text-decoration: none; }
      .auth-form-wrapper .auth-footer a:hover {
        text-decoration: underline; }

/* BLOG HEADER */
.blog-header {
  padding: 160px 0 60px;
  text-align: center;
  position: relative;
  overflow: hidden; }
  .blog-header .glow-top {
    position: absolute;
    top: -50%;
    left: 50%;
    transform: translateX(-50%);
    width: 800px;
    height: 400px;
    background: var(--primary-glow);
    filter: blur(150px);
    opacity: 0.2;
    z-index: -1; }
  .blog-header .badge {
    display: inline-block;
    padding: 6px 14px;
    border-radius: 20px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: var(--primary-glow);
    font-size: 0.8rem;
    font-weight: 600;
    margin-bottom: 20px; }
  .blog-header h1 {
    font-family: var(--font-heading);
    font-size: 2.5rem;
    color: #fff;
    margin-bottom: 15px; }
    @media (max-width: 900px) {
      .blog-header h1 {
        font-size: 1.75rem; } }
  .blog-header p {
    color: var(--text-muted);
    font-size: 0.875rem; }

/* BLOG GRID */
.blog-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  padding-bottom: 100px; }
  @media (max-width: 900px) {
    .blog-grid {
      grid-template-columns: 1fr; } }

/* BLOG CARD */
.blog-card {
  background: #0f0f10;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 16px;
  overflow: hidden;
  transition: transform 0.3s ease, border-color 0.3s ease;
  display: flex;
  flex-direction: column; }
  .blog-card:hover {
    transform: translateY(-5px);
    border-color: rgba(255, 255, 255, 0.2); }
  .blog-card .card-image {
    height: 200px;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden; }
    .blog-card .card-image img {
      position: relative;
      object-fit: cover;
      display: block;
      width: 100%;
      height: auto; }
  .blog-card .card-content {
    padding: 25px;
    flex: 1;
    display: flex;
    flex-direction: column; }
    .blog-card .card-content .tag {
      color: var(--primary-glow);
      font-size: 0.75rem;
      text-transform: uppercase;
      letter-spacing: 1px;
      font-weight: 700;
      margin-bottom: 10px;
      display: block; }
    .blog-card .card-content h3 {
      color: #fff;
      font-family: var(--font-heading);
      font-size: 1.25rem;
      margin-bottom: 10px;
      line-height: 1.3; }
    .blog-card .card-content p {
      color: #888;
      font-size: 0.9rem;
      margin-bottom: 20px;
      line-height: 1.5;
      flex: 1; }
    .blog-card .card-content .read-more {
      color: #fff;
      font-size: 0.9rem;
      font-weight: 600; }
      .blog-card .card-content .read-more:hover {
        text-decoration: underline;
        color: var(--primary-glow); }

.btn-primary {
  background: var(--text-main);
  color: #000 !important;
  padding: 10px 25px !important; }
  .btn-primary:hover {
    transform: translateY(-2px);
    background: var(--text-main) !important;
    color: #000 !important;
    box-shadow: 0 0 20px rgba(255, 255, 255, 0.4); }

.btn-orange {
  background: #FFB088;
  color: #000 !important;
  padding: 10px 25px !important; }
  .btn-orange:hover {
    transform: translateY(-2px);
    background: #FFB088 !important;
    color: #000 !important;
    box-shadow: 0 0 20px rgba(255, 255, 255, 0.4); }

.badge-capsule {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  padding: 6px 16px;
  border-radius: 50px;
  font-size: 0.85rem;
  color: #fff;
  margin-bottom: 25px; }
  .badge-capsule i {
    color: var(--primary-glow); }

/* Add this inside .auth-form-wrapper */
.checkbox-group {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 25px; }
  .checkbox-group input[type="checkbox"] {
    width: 18px;
    height: 18px;
    accent-color: var(--primary-glow);
    /* Uses your Peach color */
    cursor: pointer;
    margin: 0;
    /* Reset default margin */ }
  .checkbox-group label {
    margin: 0 !important;
    /* Override default label margin */
    font-size: 0.85rem !important;
    cursor: pointer; }
    .checkbox-group label a {
      color: var(--primary-glow);
      text-decoration: none; }
      .checkbox-group label a:hover {
        text-decoration: underline; }

/* ==========================
   STATS SECTION
   ========================== */
.stats-section {
  padding: 100px 0;
  background: linear-gradient(86deg, #121212, #000000, #121212);
  position: relative;
  /* --- Header Styles --- */
  /* --- Grid Layout --- */
  /* --- Card Styles --- */ }
  .stats-section .container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px; }
  .stats-section .stats-header {
    text-align: center;
    margin-bottom: 70px;
    display: flex;
    flex-direction: column;
    align-items: center; }
    .stats-section .stats-header .pill-badge {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      /* Light orange background with dark text */
      background: rgba(255, 255, 255, 0.05);
      border: 1px solid rgba(255, 255, 255, 0.1);
      color: #fff;
      font-size: 0.85rem;
      font-weight: 500;
      padding: 8px 18px;
      border-radius: 50px;
      margin-bottom: 25px; }
      .stats-section .stats-header .pill-badge i {
        color: var(--primary-glow);
        font-size: 0.8rem; }
    .stats-section .stats-header h2 {
      font-family: var(--font-heading);
      font-size: 2.5rem;
      color: #fff;
      line-height: 1.2;
      margin-bottom: 20px; }
      @media (max-width: 768px) {
        .stats-section .stats-header h2 {
          font-size: 1.75rem; } }
    .stats-section .stats-header .subtext {
      color: var(--text-muted);
      font-size: 1rem;
      line-height: 1.6;
      max-width: 600px; }
  .stats-section .stats-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    /* Mobile Responsive */ }
    @media (max-width: 900px) {
      .stats-section .stats-grid {
        grid-template-columns: 1fr;
        /* Stack vertically */
        gap: 20px; } }
  .stats-section .stat-card {
    background: #0f0f10;
    /* Slightly lighter than pure black */
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 24px;
    /* Large modern radius */
    padding: 40px 35px;
    transition: transform 0.3s ease, border-color 0.3s ease;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    /* Left align text like screenshot */ }
    .stats-section .stat-card:hover {
      transform: translateY(-5px);
      border-color: rgba(255, 176, 136, 0.3);
      /* Glow color on hover */
      background: #141415; }
    .stats-section .stat-card .number {
      font-family: var(--font-heading);
      font-size: 4rem;
      /* Massive number */
      font-weight: 400;
      line-height: 1;
      margin-bottom: 25px;
      /* Gradient Text Effect */
      background: linear-gradient(90deg, #FFB088, #C65D3B);
      -webkit-background-clip: text;
      -webkit-text-fill-color: transparent;
      background-clip: text; }
    .stats-section .stat-card h3 {
      color: #fff;
      font-size: 1.25rem;
      margin-bottom: 15px; }
    .stats-section .stat-card p {
      color: var(--text-muted);
      font-size: 0.95rem;
      line-height: 1.6;
      margin: 0; }
.footer-links h3 {
    margin-bottom: 20px;
}
@media (max-width: 768px) {
  .process-section, .stats-section {
    padding: 50px 0 50px 0; } }

/*# sourceMappingURL=style.css.map */
