/* ============================================
   PREMIUM DESIGN SYSTEM - ProvanAI
   Enterprise-grade B2B SaaS styling
   ============================================ */

/* Premium Typography - Montserrat (Matching ProvanAI Logo) */
@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@300;400;500;600;700;800&display=swap');

html {
  font-size: 62.5%;
  /* 1rem = 10px */
  scroll-behavior: smooth;
}

:root {
  /* ============================================
   TYPOGRAPHY SYSTEM
   ============================================ */
  --body-font: 'Montserrat', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;

  /* Font Sizes - Enterprise-grade hierarchy */
  --big-font: 4.8rem;
  /* Hero headlines */
  --h1-font: 4rem;
  /* Section titles */
  --h2-font: 3.2rem;
  /* Major headings */
  --h3-font: 2.4rem;
  /* Subheadings */
  --h4-font: 2rem;
  /* Card titles */
  --h5-font: 1.8rem;
  /* Small headings */
  --normal-font: 1.6rem;
  /* Body text */
  --small-font: 1.4rem;
  /* Captions */
  --smaller-font: 1.3rem;
  /* Fine print */

  /* Font Weights - Professional range */
  --font-light: 300;
  --font-regular: 400;
  --font-medium: 500;
  --font-semi-bold: 600;
  --font-bold: 700;
  --font-extra-bold: 800;

  /* Letter Spacing - Premium readability */
  --letter-tight: -0.025em;
  /* Large headlines */
  --letter-normal: -0.01em;
  /* Headings */
  --letter-body: 0;
  /* Body text */
  --letter-wide: 0.01em;
  /* Small text */
  --letter-wider: 0.05em;
  /* Uppercase labels */

  /* Line Heights - Enterprise readability */
  --line-tight: 1.15;
  /* Hero headlines */
  --line-heading: 1.25;
  /* Section headings */
  --line-normal: 1.5;
  /* Body text */
  --line-relaxed: 1.65;
  /* Long-form content */
  --line-loose: 1.75;
  /* Spacious text */

  /* ============================================
   PREMIUM COLOR SYSTEM
   Enterprise-grade palette
   ============================================ */

  /* Primary Brand - Navy Blue (from Provan AI logo) */
  --primary-50: #e8eef4;
  --primary-100: #c5d4e3;
  --primary-200: #9fb7d0;
  --primary-300: #7899bd;
  --primary-400: #5c82ae;
  --primary-500: #406ba0;
  --primary-600: #1B3A5C;
  /* Main primary - Navy Blue from logo */
  --primary-700: #153049;
  /* Darker navy for hover */
  --primary-800: #0f2636;
  /* Deepest navy */
  --primary-900: #0a1c24;

  --primary-color: var(--primary-600);
  /* #1B3A5C - Navy Blue from Provan AI logo */
  --primary-color-light: var(--primary-400);
  /* #5c82ae */
  --primary-color-dark: var(--primary-700);
  /* #153049 */

  /* Teal Accent - From Provan AI logo */
  --accent-teal: #3D8B7C;
  /* Teal from logo */
  --accent-teal-light: #4FA896;
  --accent-teal-dark: #2F6B5F;
  --accent-teal-50: #e8f4f2;
  --accent-teal-100: #c5e4de;

  /* Neutral Grayscale - Professional foundation */
  --gray-50: #fafafa;
  --gray-100: #f5f5f5;
  --gray-200: #e5e5e5;
  --gray-300: #d4d4d4;
  --gray-400: #a3a3a3;
  --gray-500: #737373;
  --gray-600: #525252;
  --gray-700: #404040;
  --gray-800: #262626;
  --gray-900: #171717;

  /* Semantic Colors */
  --text-color: var(--gray-900);
  /* Near black, not pure */
  --text-color-secondary: var(--gray-600);
  --text-color-light: var(--gray-500);
  --text-color-muted: var(--gray-400);

  --bg-primary: #fafafa;
  /* Off-white, not pure white */
  --bg-secondary: #ffffff;
  --bg-tertiary: var(--gray-50);

  --border-color: var(--gray-200);
  --border-color-strong: var(--gray-300);
  --white-color: #ffffff;

  /* Accent - Subtle highlight (use sparingly) */
  --accent-color: var(--accent-teal);

  /* ============================================
   SPACING SYSTEM (8px base)
   ============================================ */
  --space-1: 0.4rem;
  /* 4px */
  --space-2: 0.8rem;
  /* 8px */
  --space-3: 1.2rem;
  /* 12px */
  --space-4: 1.6rem;
  /* 16px */
  --space-5: 2rem;
  /* 20px */
  --space-6: 2.4rem;
  /* 24px */
  --space-8: 3.2rem;
  /* 32px */
  --space-10: 4rem;
  /* 40px */
  --space-12: 4.8rem;
  /* 48px */
  --space-16: 6.4rem;
  /* 64px */
  --space-20: 8rem;
  /* 80px */

  /* ============================================
   SHADOWS - Subtle depth
   ============================================ */
  --shadow-xs: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
  --shadow-sm: 0 1px 3px 0 rgba(0, 0, 0, 0.1), 0 1px 2px 0 rgba(0, 0, 0, 0.06);
  --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
  --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
  --shadow-xl: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
  --shadow-2xl: 0 25px 50px -12px rgba(0, 0, 0, 0.25);

  /* ============================================
   BORDER RADIUS - Consistent rounding
   ============================================ */
  --radius-sm: 0.4rem;
  /* 4px */
  --radius-md: 0.6rem;
  /* 6px */
  --radius-lg: 0.8rem;
  /* 8px */
  --radius-xl: 1.2rem;
  /* 12px */
  --radius-2xl: 1.6rem;
  /* 16px */
  --radius-full: 9999px;

  /* ============================================
   TRANSITIONS - Smooth, professional
   ============================================ */
  --tran-0-2: 0.2s cubic-bezier(0.4, 0, 0.2, 1);
  --tran-0-3: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  --tran-0-5: 0.5s cubic-bezier(0.4, 0, 0.2, 1);

  /* ============================================
   Z-INDEX LAYERS
   ============================================ */
  --z-overlay: 10;
  --z-fixed: 100;
  --z-modal: 1000;

  /* ============================================
   RESPONSIVE TYPOGRAPHY
   Enterprise-grade scaling
   ============================================ */
  @media screen and (max-width: 990px) {
    :root {
      --big-font: 3.6rem;
      --h1-font: 3.2rem;
      --h2-font: 2.8rem;
      --h3-font: 2.4rem;
      --h4-font: 2rem;
      --h5-font: 1.8rem;
      --normal-font: 1.5rem;
      --small-font: 1.3rem;
      --smaller-font: 1.2rem;
    }
  }

  @media screen and (max-width: 768px) {
    :root {
      --big-font: 3.2rem;
      --h1-font: 2.8rem;
      --h2-font: 2.4rem;
      --h3-font: 2rem;
      --h4-font: 1.8rem;
    }
  }


  /* ============================================
   RESET & BASE STYLES
   ============================================ */
  * {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
  }

  body {
    overflow-x: hidden;
    background-color: var(--bg-primary);
    font-family: var(--body-font);
    font-size: var(--normal-font);
    font-weight: var(--font-regular);
    color: var(--text-color);
    line-height: var(--line-normal);
    letter-spacing: var(--letter-normal);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
  }

  /* Premium Scrollbar */
  ::selection {
    background-color: var(--primary-200);
    color: var(--primary-900);
  }

  ::-webkit-scrollbar {
    width: 8px;
  }

  ::-webkit-scrollbar-track {
    background-color: var(--gray-100);
  }

  ::-webkit-scrollbar-thumb {
    border-radius: var(--radius-full);
    background-color: var(--gray-400);
    transition: background-color var(--tran-0-3);
  }

  ::-webkit-scrollbar-thumb:hover {
    background-color: var(--gray-500);
  }

  button,
  input {
    font-family: var(--body-font);
    font-size: var(--normal-font);
    font-weight: var(--font-regular);
    color: var(--text-color);
  }

  input {
    outline: none;
  }

  ul {
    list-style: none;
  }

  a {
    text-decoration: none;
  }

  img {
    width: 100%;
    height: 100%;
    object-fit: cover;
  }



  /* Container - Centered, max-width */
  .container {
    max-width: 1250px;
    width: 100%;
    margin: 0 auto;
    padding: var(--space-8) var(--space-6);
  }

  /* Flex Utility */
  .flex {
    display: flex;
    align-items: center;
    column-gap: var(--space-2);
  }

  /* ============================================
   PREMIUM BUTTON SYSTEM
   ============================================ */
  .button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: var(--radius-lg);
    border: none;
    outline: none;
    color: var(--white-color);
    padding: var(--space-2) var(--space-5);
    background-color: var(--primary-color);
    font-weight: var(--font-medium);
    font-size: var(--normal-font);
    letter-spacing: var(--letter-wide);
    transition: all var(--tran-0-3);
    cursor: pointer;
    box-shadow: var(--shadow-sm);
    position: relative;
    overflow: hidden;
  }

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

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

  .button:hover {
    background-color: var(--primary-color-dark);
    box-shadow: var(--shadow-md);
    transform: translateY(-1px);
  }

  .button:active {
    transform: translateY(0);
    box-shadow: var(--shadow-sm);
  }

  /* Secondary Button Variant */
  .button-secondary {
    background-color: transparent;
    color: var(--primary-color);
    border: 1.5px solid var(--primary-color);
    box-shadow: none;
  }

  .button-secondary:hover {
    background-color: var(--primary-50);
    color: var(--primary-color-dark);
    border-color: var(--primary-color-dark);
  }

  /* ============================================
   TYPOGRAPHY COMPONENTS
   ============================================ */

  /* Logo-style Branding Text */
  .logo-styled {
    font-family: var(--body-font);
    font-weight: var(--font-bold);
    text-transform: none !important;
    letter-spacing: -0.01em;
    font-size: var(--h1-font) !important;
    color: var(--primary-color);
    display: inline-flex;
    align-items: center;
    gap: 1rem;
  }

  .logo-styled span {
    color: var(--accent-teal);
    font-weight: var(--font-extra-bold);
  }

  .section-title,
  .content-title {
    text-align: center;
    font-size: var(--h1-font);
    font-weight: var(--font-bold);
    margin: var(--space-3) 0 var(--space-4);
    line-height: var(--line-heading);
    letter-spacing: var(--letter-tight);
    color: var(--text-color);
  }

  .section-description,
  .content-description {
    text-align: center;
    margin-bottom: var(--space-4);
    color: var(--text-color-secondary);
    line-height: var(--line-relaxed);
    font-size: var(--normal-font);
    letter-spacing: var(--letter-body);
    max-width: 720px;
    margin-left: auto;
    margin-right: auto;
  }

  .section-description {
    padding: 0 var(--space-20);
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
  }

  @media (max-width: 768px) {
    .section-description {
      padding: 0 var(--space-4);
    }
  }

  /* ============================================
   HEADER - Premium Navigation
   ============================================ */
  .header {
    position: fixed;
    top: 0;
    left: 0;
    height: 7rem;
    width: 100%;
    z-index: var(--z-fixed);
    transition: all var(--tran-0-3);
    background-color: rgba(250, 250, 250, 0);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
  }

  .header-active {
    height: 6rem;
    background-color: rgba(255, 255, 255, 0.95);
    box-shadow: var(--shadow-sm);
    border-bottom: 1px solid var(--border-color);
  }

  .header-hidden {
    transform: translateY(-100%);
  }

  /* nav */

  .logo {
    height: 50px;
    width: auto;
  }

  .nav {
    position: relative;
    height: 100%;
    align-items: center;
    justify-content: space-between;
  }

  .logo-icon,
  .logo-text,
  .nav-link,
  .phone-icon,
  .phone-number {
    color: var(--text-color);
    transition: color var(--tran-0-3);
  }

  .header-active .logo-icon,
  .header-active .logo-text,
  .header-active .nav-link,
  .header-active .phone-icon,
  .header-active .phone-number {
    color: var(--text-color);
  }

  .logo-icon,
  .phone-icon {
    font-size: 2rem;
  }

  .menu-list {
    column-gap: 2rem;
  }

  .media-icons {
    column-gap: var(--space-3);
  }

  .media-icons a {
    color: var(--text-color-secondary);
    font-size: 1.8rem;
    transition: all var(--tran-0-3);
    display: flex;
    align-items: center;
    justify-content: center;
    width: 3.6rem;
    height: 3.6rem;
    border-radius: var(--radius-md);
  }

  .media-icons a:hover {
    color: var(--primary-color);
    background-color: var(--primary-50);
    transform: translateY(-2px);
  }

  .navClose-btn,
  .navOpen-btn,
  .media-icons {
    display: none;
  }

  .menu-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
  }

  .nav-link {
    text-decoration: none;
    color: var(--text-color);
    padding: var(--space-3) var(--space-4);
    display: block;
    font-weight: var(--font-medium);
    font-size: var(--normal-font);
    letter-spacing: var(--letter-wide);
    transition: color var(--tran-0-3);
    position: relative;
  }

  .nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 2px;
    background-color: var(--primary-color);
    transition: width var(--tran-0-3);
  }

  .nav-link:hover {
    color: var(--primary-color);
  }

  .nav-link:hover::after {
    width: calc(100% - var(--space-8));
  }

  /* Active link styling - underlined */
  .nav-linkactive {
    text-decoration: none;
    color: var(--primary-color);
    padding: var(--space-3) var(--space-4);
    display: block;
    font-weight: var(--font-medium);
    font-size: var(--normal-font);
    letter-spacing: var(--letter-wide);
    transition: color var(--tran-0-3);
    position: relative;
  }

  .nav-linkactive::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: calc(100% - var(--space-8));
    height: 2px;
    background-color: var(--primary-color);
  }



  .nav-contact-mobile {
    display: none !important;
  }

  .nav-btn-group {
    display: flex;
    gap: 1rem;
    align-items: center;
  }

  /* nav responsive */
  @media screen and (max-width: 768px) {
    .contact-content {
      display: none;
    }

    .nav-link {
      color: white;
    }

    .navClose-btn,
    .navOpen-btn,
    .media-icons {
      display: block;
    }

    .nav .menu-content {
      position: fixed;
      top: 0;
      right: -100%;
      max-width: 320px;
      width: 100%;
      height: auto;
      z-index: var(--z-fixed);
      padding: var(--space-12) var(--space-6) var(--space-6);
      background-color: var(--bg-secondary);
      box-shadow: var(--shadow-xl);
      border-left: 1px solid var(--border-color);
      display: flex;
      flex-direction: column;
      justify-content: space-between;
      transition: right var(--tran-0-3);
      align-items: center;
    }

    .nav .menu-content.open {
      right: 0;
    }

    .menu-list {
      flex-direction: column;
      row-gap: 2.5rem;
      font-size: var(--h4-font);
    }

    .nav-link {
      color: var(--text-color);
    }

    .nav-link::before {
      background-color: var(--text-color);
    }

    .navClose-btn {
      position: absolute;
      top: 2rem;
      right: 2rem;
      font-size: 2.5rem;
      cursor: pointer;
    }

    .navOpen-btn {
      font-size: 3rem;
      cursor: pointer;
      color: var(--text-color);
    }

    .header-active .navOpen-btn {
      color: var(--text-color);
    }

    .button {
      padding: 1rem 3rem;
    }

    .nav-contact-desktop {
      display: none;
    }

    .nav-contact-mobile {
      display: flex !important;
      flex-direction: column;
      gap: 1rem;
      margin-top: var(--space-6);
      width: 100%;
    }

    .nav-contact-mobile .button {
      width: 100%;
    }
  }




  /* ============================================
   NEW HERO SECTION - 50/50 LAYOUT
   ============================================ */

  .home {
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding: var(--space-20) 0;
    background: linear-gradient(135deg, #f3f4f6 0%, #d1d5db 100%);
  }

  .home-content {
    display: grid;
    grid-template-columns: 1fr;
    gap: var(--space-12);
    align-items: start;
    max-width: 1250px;
    margin: 0 auto;
    padding: var(--space-8) var(--space-6);
  }

  @media (min-width: 992px) {
    .home-content {
      grid-template-columns: 1fr 1fr;
      gap: var(--space-8);
    }
  }

  /* Left Side - Moving Messages & Dashboard */
  .hero-left {
    display: flex;
    flex-direction: column;
    gap: var(--space-8);
  }


  /* Dashboard Preview */
  .dashboard-preview {
    position: relative;
    border-radius: var(--radius-xl);
    overflow: hidden;
    box-shadow: var(--shadow-2xl);
    border: 1.5px solid var(--primary-100);
    transition: all var(--tran-0-3);
  }

  .dashboard-preview:hover {
    transform: translateY(-4px) scale(1.01);
    box-shadow: 0 30px 60px -12px rgba(27, 58, 92, 0.25);
    border-color: var(--primary-200);
  }

  .dashboard-img {
    width: 100%;
    height: auto;
    display: block;
    transition: transform var(--tran-0-3);
  }

  .dashboard-preview:hover .dashboard-img {
    transform: scale(1.02);
  }

  .dashboard-badge {
    position: absolute;
    top: var(--space-4);
    right: var(--space-4);
    background: var(--primary-color);
    color: #ffffff;
    padding: var(--space-2) var(--space-4);
    border-radius: var(--radius-full);
    display: flex;
    align-items: center;
    gap: var(--space-2);
    font-size: var(--small-font);
    font-weight: var(--font-semi-bold);
    box-shadow: var(--shadow-md);
  }

  .dashboard-badge i {
    font-size: 1.8rem;
  }

  /* Right Side - Company Tagline & CTA */
  .hero-right {
    display: flex;
    flex-direction: column;
    gap: var(--space-6);
    text-align: center;
  }

  .hero-right h1 {
    text-align: center;
    align-self: center;
  }

  .hero-badge {
    display: inline-flex;
    align-items: center;
    gap: var(--space-2);
    background: var(--primary-50);
    color: var(--primary-color);
    padding: var(--space-2) var(--space-4);
    border-radius: var(--radius-full);
    font-size: var(--small-font);
    font-weight: var(--font-semi-bold);
    width: fit-content;
    border: 1px solid var(--primary-100);
  }

  .hero-badge i {
    font-size: 1.8rem;
  }

  .hero-title {
    font-size: var(--h2-font);
    font-weight: var(--font-extra-bold);
    color: var(--text-color);
    line-height: var(--line-tight);
    margin: 0;
    letter-spacing: var(--letter-tight);
  }

  .hero-title .highlight {
    color: var(--primary-color);
    position: relative;
  }

  .hero-subtitle {
    font-size: 15px;
    font-weight: var(--font-semi-bold);
    color: var(--text-color-secondary);
    margin: 0;
    line-height: var(--line-normal);
  }

  .hero-features {
    list-style: none;
    padding: 0;
    margin: 0;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: var(--space-3);
  }

  .hero-features li {
    text-align: center;
    align-self: center;
    justify-content: center;
    display: flex;
    align-items: center;
    gap: var(--space-2);
    font-size: var(--small-font);
    color: var(--text-color);
    font-weight: var(--font-medium);
  }

  .hero-features li i {
    color: var(--primary-color);
    font-size: 2rem;
    flex-shrink: 0;
  }

  .hero-cta {
    align-items: center;
    display: flex;
    gap: var(--space-4);
    justify-content: center;
    flex-wrap: wrap;
    margin-top: var(--space-4);
  }

  .primary-btn {
    background-color: black;
    color: #ffffff !important;
    display: inline-flex;
    align-items: center;
    gap: var(--space-2);
    padding: var(--space-4) var(--space-8);
    border-radius: var(--radius-lg);
    font-size: var(--normal-font);
    font-weight: var(--font-semi-bold);
    border: none;
    cursor: pointer;
    transition: all var(--tran-0-3);
    box-shadow: var(--shadow-md);
  }

  .primary-btn:hover {
    background-color: var(--text-color);
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
  }

  .primary-btn i {
    font-size: 2rem;
    color: #ffffff !important;
  }

  .secondary-btn {
    background-color: transparent;
    color: var(--text-color) !important;
    border: 2px solid var(--border-color);
    display: inline-flex;
    align-items: center;
    gap: var(--space-2);
    padding: var(--space-4) var(--space-8);
    border-radius: var(--radius-lg);
    font-size: var(--normal-font);
    font-weight: var(--font-semi-bold);
    cursor: pointer;
    transition: all var(--tran-0-3);
  }

  .secondary-btn:hover {
    background-color: var(--primary-50);
    border-color: var(--primary-color);
    color: var(--primary-color) !important;
    transform: translateY(-2px);
  }

  .secondary-btn i {
    font-size: 2rem;
  }

  .hero-stats {
    display: flex;
    gap: var(--space-8);
    margin-top: var(--space-6);
    padding-top: var(--space-6);
    border-top: 1px solid var(--border-color);
  }

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

  .stat-item h3 {
    font-size: var(--h2-font);
    font-weight: var(--font-extra-bold);
    color: var(--primary-color);
    margin: 0 0 var(--space-1) 0;
  }

  .stat-item p {
    font-size: var(--small-font);
    color: var(--text-color-secondary);
    margin: 0;
    font-weight: var(--font-medium);
  }

  /* Responsive Adjustments */
  @media (max-width: 991px) {
    .hero-title {
      font-size: var(--h1-font);
    }

    .hero-subtitle {
      font-size: var(--h4-font);
    }

    .hero-features {
      grid-template-columns: 1fr;
    }
  }

  @media (max-width: 768px) {
    .home {
      padding: var(--space-12) 0;
    }

    .hero-title {
      font-size: var(--h2-font);
    }

    .hero-subtitle {
      font-size: var(--normal-font);
    }

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

    .primary-btn,
    .secondary-btn {
      width: 100%;
      justify-content: center;
    }

    .hero-stats {
      justify-content: space-around;
    }
  }

  /* Dashboard Placeholder */
  .dashboard-placeholder {
    width: 100%;
    aspect-ratio: 16/9;
    background: linear-gradient(rgba(247, 247, 247, 0.733), rgba(88, 137, 201, 0.795)), url('../images/bgimg.PNG');
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: var(--space-3);
    border-radius: var(--radius-lg);
  }

  .dashboard-placeholder i {
    font-size: 8rem;
    color: var(--primary-color);
    opacity: 0.5;
  }

  .dashboard-placeholder p {
    font-size: var(--h3-font);
    font-weight: var(--font-semi-bold);
    color: var(--text-color);
    margin: 0;
  }

  .dashboard-placeholder span {
    font-size: var(--small-font);
    color: var(--text-color-secondary);
    font-style: italic;
  }



  /* ============================================
   RESPONSIVE BREAKPOINTS
   ============================================ */




  /* Tablets & Small Desktops (768px - 1024px) */
  @media screen and (max-width: 1024px) {
    .home-content {
      gap: var(--space-8);
    }

    .hero-title {
      font-size: var(--h2-font);
    }

    .hero-subtitle {
      font-size: var(--h5-font);
    }

    .hero-features {
      grid-template-columns: 1fr;
    }

    .dashboard-preview {
      min-height: 350px;
    }

    .messages-ticker {
      min-height: 160px;
    }
  }

  /* Mobile & Tablets (max-width: 768px) */
  @media screen and (max-width: 768px) {
    .home {
      padding-top: 8rem;
      padding-bottom: var(--space-10);
      min-height: auto;
    }

    .home-content {
      grid-template-columns: 1fr;
      gap: var(--space-8);
      padding: var(--space-6) var(--space-4);
    }

    /* Reverse order on mobile - content first, then visuals */
    .hero-left {
      order: 2;
      gap: var(--space-6);
    }

    .hero-right {
      order: 1;
      gap: var(--space-4);
    }

    .hero-title {
      font-size: var(--h3-font);
    }

    .hero-subtitle {
      font-size: var(--normal-font);
    }


    .hero-features {
      grid-template-columns: 1fr;
      gap: var(--space-2);
    }

    .hero-features li {
      font-size: var(--small-font);
    }

    .hero-cta {
      flex-direction: column;
      gap: var(--space-3);
    }

    .hero-cta .button {
      width: 100%;
      justify-content: center;
      padding: var(--space-3) var(--space-6);
    }

    .hero-stats {
      grid-template-columns: repeat(3, 1fr);
      gap: var(--space-4);
    }

    .stat-item h3 {
      font-size: var(--h3-font);
    }

    .stat-item p {
      font-size: var(--smaller-font);
    }

    .dashboard-preview {
      min-height: 300px;
      padding: var(--space-6);
    }

    .dashboard-placeholder i {
      font-size: 4rem;
    }

    .dashboard-placeholder p {
      font-size: var(--h4-font);
    }

    .messages-ticker {
      min-height: 140px;
      padding: var(--space-4);
    }

    .ticker-item i {
      font-size: 2.4rem;
    }

    .ticker-item p {
      font-size: var(--normal-font);
    }
  }

  /* Small Mobile (max-width: 480px) */
  @media screen and (max-width: 480px) {
    .hero-title {
      font-size: var(--h4-font);
    }

    .hero-stats {
      gap: var(--space-2);
    }

    .stat-item h3 {
      font-size: var(--h4-font);
    }

    .hero-badge {
      font-size: var(--smaller-font);
      padding: var(--space-1) var(--space-3);
    }

    .dashboard-preview {
      min-height: 250px;
    }

    .messages-ticker {
      min-height: 120px;
    }
  }


  /* slider */
  .home .swiper-slide {
    overflow: hidden;
  }

  /* Add a semi-transparent black background overlay to the swiper slide */
  .home .swiper-slide::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    height: 100%;
    width: 100%;
    /* Use a darker, semi-transparent color for better text contrast */
    background-color: rgba(255, 255, 255, 0.473);
    /* Black with 40% opacity */
    z-index: 1;
    /* Ensure the overlay is above the image (z-index: 0) */
  }

  /* Ensure the image is below the overlay */
  .home-img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 0;
    /* Send to back */
  }

  /* Ensure the text and button are above the overlay */
  .home-details {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 10;
    /* Bring to front, above the overlay (z-index: 1) */

    display: grid;
    justify-items: center;
    width: 100%;
    row-gap: 1.5rem;
  }

  /* Change the text color to white for better contrast against the dark overlay */
  .homeSubtitle {
    text-align: center;
    font-size: var(--normal-font);
    color: var(--white-color, white);
    /* Changed to white or a variable for white */
  }

  .homeTitle {
    text-align: center;
    font-size: var(--big-font);
    color: var(--text-color);
    font-weight: var(--font-extra-bold);
    line-height: var(--line-tight);
    letter-spacing: var(--letter-tight);
    text-shadow: 0 2px 12px rgba(0, 0, 0, 0.08);
    margin-bottom: var(--space-6);
  }

  /* Rest of your existing CSS for swiper-slide */
  .home .swiper-slide {
    overflow: hidden;
  }

  .swiper-slide {
    position: relative;
    height: 100vh;
    width: 100%;
    overflow: hidden;
  }

  /* Your original (unmodified) Swiper button and pagination CSS below... */

  .swiper-navBtn {
    height: 5rem;
    width: 5rem;
    color: var(--text-color);
    border-radius: var(--radius-full);
    background-color: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    border: 1px solid var(--border-color);
    transition: all var(--tran-0-3);
    opacity: 0;
    visibility: visible;
    box-shadow: var(--shadow-md);
  }

  .home:hover .swiper-navBtn,
  .review:hover .swiper-navBtn {
    opacity: 1;
  }

  .swiper-navBtn:hover {
    background-color: var(--bg-secondary);
    border-color: var(--primary-color);
    color: var(--primary-color);
    transform: scale(1.1);
    box-shadow: var(--shadow-lg);
  }

  .swiper-navBtn::after,
  .swiper-navBtn::before {
    font-size: 2rem;
  }

  .swiper-button-next {
    right: 16rem;
  }

  .swiper-button-prev {
    left: 16rem;
  }

  .swiper-pagination-bullet {
    background-color: rgba(255, 255, 255, 0.5);
    opacity: 1;
    height: 1.2rem;
    width: 1.2rem;
    margin-bottom: 2rem;
    visibility: hidden;
    border: 2px solid transparent;
    transition: all var(--tran-0-3);
  }

  .swiper-pagination-bullet-active {
    border: 2px solid var(--white-color);
    background-color: var(--primary-color);
    width: 3.2rem;
    border-radius: var(--radius-full);
  }







  /* About */
  .about .content-subtitle,
  .about .content-title,
  .about .content-description {
    text-align: justify;
  }

  .about .content-title {
    font-size: var(--h1-font);
    font-weight: var(--font-bold);
    margin: 0 0 var(--space-4) 0;
    line-height: var(--line-heading);
    letter-spacing: var(--letter-tight);
    color: var(--text-color);
  }

  .about .content-description {
    margin-bottom: var(--space-6);
    color: var(--text-color-secondary);
    line-height: var(--line-relaxed);
    font-size: var(--normal-font);
    letter-spacing: var(--letter-body);
  }

  .about-content {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    column-gap: 2rem;

  }

  .about-imageContent {
    position: relative;
    max-width: 550px;
    height: 350px;
    border: 6px solid var(--section-bg);
  }

  .about-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border: 4px solid var(--primary-color);
    border-radius: var(--radius-xl);
    box-shadow: 0 20px 40px rgba(37, 99, 235, 0.2),
      0 10px 20px rgba(37, 99, 235, 0.15),
      0 0 0 8px rgba(37, 99, 235, 0.1);
    transition: all var(--tran-0-3);
    position: relative;
    z-index: 1;
  }

  .about-img:hover {
    transform: translateY(-8px) scale(1.02);
    box-shadow: 0 30px 60px rgba(37, 99, 235, 0.3),
      0 15px 30px rgba(37, 99, 235, 0.2),
      0 0 0 12px rgba(37, 99, 235, 0.15);
    border-color: var(--primary-700);
  }

  .aboutImg-textBox {
    position: absolute;
    bottom: 2rem;
    right: -5rem;
    padding: 2rem;
    max-width: 360px;
    width: 100%;
    text-align: center;
    border: 6px solid var(--section-bg);
    background-color: var(--white-color);
  }

  .aboutImg-textBox .content-description {
    text-align: center;
    margin-bottom: 0;
  }

  .heart-icon {
    position: absolute;
    left: -1.9rem;
    top: 50%;
    height: 3rem;
    width: 3rem;
    color: var(--white-color);
    background-color: var(--section-bg);
    transform: translateY(-50%);
    justify-content: center;
    border-radius: 50%;
  }

  .about-lists {
    column-gap: 1rem;
    align-items: baseline;
  }

  .about-list {
    font-weight: var(--font-medium);
    font-size: 1.8rem;
  }

  .about-list:nth-child(1) {
    color: var(--primary-color);
  }

  .about-list.dot {
    font-size: 2.5rem;
  }

  .about-buttons {
    column-gap: 2rem;
  }

  .about-link .link-text,
  .about-arrowIcon {
    color: var(--text-color);
    text-transform: uppercase;
    font-size: 20px;
  }

  .about-arrowIcon {
    transition: var(--tran-0-3);
  }

  .about-link:hover .about-arrowIcon {
    margin-left: 4px;
  }

  .about-text h4 {
    font-size: 30px;

  }






  /* pricing */



  /* --- Interactive Button Styling --- */
  .btn-starter {
    display: inline-block;
    width: 100%;
    /* Full width button */
    padding: 15px 25px;
    background-color: var(--primary-color);
    /* Indigo color */
    color: #ffffff;
    text-decoration: none;
    border-radius: 10px;
    /* Pill shape */
    font-weight: 600;
    transition: all 0.3s ease;
    border: 2px solid black;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.2);
  }

  /* Button Hover Effect */
  .btn-starter:hover {
    background-color: transparent;
    color: var(--primary-color);
    box-shadow: 0 6px 15px rgba(79, 70, 229, 0.3);
  }


  /* --- Responsiveness --- */

  /* Tablet / Medium Screens (below 1024px) */
  @media screen and (max-width: 1024px) {
    .pricing-grid {
      /* Switch to a 2x2 grid */
      grid-template-columns: repeat(2, 1fr);
      gap: 25px;
      padding: 0 20px;
      /* Add some side padding */
    }
  }

  /* Mobile Screens (below 600px) */
  @media screen and (max-width: 600px) {
    .pricing-grid {
      /* Switch to a single column stack */
      grid-template-columns: 1fr;
      gap: 30px;
    }

    .pricing-card {
      padding: 30px 20px;
      /* Slightly less padding on mobile */
    }

    .price-tag {
      font-size: 2.5rem;
      /* Slightly smaller font on mobile */
    }
  }

  /* founder */





  /* bottom slider  */

  .menu {
    background: linear-gradient(135deg, #f3f4f6 0%, #d1d5db 100%);
    padding: var(--space-16) 0;
  }

  .menu-container {
    max-width: 1200px;
    margin: 0 auto;
  }

  .menu-text {
    text-align: center;
    margin-bottom: var(--space-12);
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
  }

  .section-subtitle {
    color: var(--primary-color);
    font-size: 2.1rem;
    margin-bottom: 0.5rem;
  }

  .section-title {
    color: var(--text-dark);
    font-size: 2.5rem;
    font-weight: 700;
  }

  /* Increase font size for Our Services section by 1.3x */
  .menu .section-subtitle {
    font-size: 3rem;
  }

  .menu .section-title {
    font-size: 3rem;
  }

  /* --- Grid Layout (3 Rows, 2 Columns) --- */
  .menu-items {
    display: grid;
    /* Mobile First: 1 column */
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  /* Desktop: Switch to 2 columns */
  @media (min-width: 768px) {
    .menu-items {
      grid-template-columns: repeat(2, 1fr);
    }
  }

  /* --- Premium Card Design --- */
  .menu-item {
    padding: var(--space-4);
    border-radius: var(--radius-xl);
    display: flex;
    align-items: flex-start;
    gap: var(--space-4);
    box-shadow: var(--shadow-sm);
    transition: all var(--tran-0-3);
    border: 1px solid var(--border-color);
    position: relative;
    overflow: hidden;
  }

  .menu-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 4px;
    height: 100%;
    background-color: var(--primary-color);
    transform: scaleY(0);
    transform-origin: bottom;
    transition: transform var(--tran-0-3);
  }

  /* Hover Effect - Subtle lift */
  .menu-item:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
    border-color: var(--primary-200);
  }

  .menu-item:hover::before {
    transform: scaleY(1);
    transform-origin: top;
  }

  /* --- Premium Icon Styling --- */
  .icon-box {
    background-color: var(--primary-50);
    color: var(--primary-color);
    min-width: 5.6rem;
    height: 5.6rem;
    border-radius: var(--radius-lg);
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 2.4rem;
    flex-shrink: 0;
    transition: all var(--tran-0-3);
    border: 1px solid var(--primary-100);
  }

  .menu-item:hover .icon-box {
    background-color: var(--primary-color);
    color: var(--white-color);
    border-color: var(--primary-color);
    transform: scale(1.05);
  }

  /* --- Typography --- */
  .menuItem-details {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
  }

  .menuItem-topic {
    font-weight: var(--font-bold);
    color: var(--text-color);
    margin: 0 0 var(--space-2) 0;
    /* font-size: var(--h4-font); */
    line-height: var(--line-heading);
    letter-spacing: var(--letter-normal);
  }

  .menuItem-des {
    font-size: var(--small-font);
    color: black;
    line-height: var(--line-relaxed);
    margin: 0;
    letter-spacing: var(--letter-body);
  }




  /* Review */
  .title-1 {
    text-align: center;
  }

  .review {
    background-color: var(--bg-secondary);
    border-top: 1px solid var(--border-color);
  }

  .review .section-title,
  .review .section-description {
    color: var(--text-color);
  }

  .testi-content {
    position: relative;
    height: 100%;
    width: 100%;
    row-gap: 1rem;
    flex-direction: column;
  }

  .review-img {
    border-radius: var(--radius-lg);
    height: 100px;
    width: 300px;
    object-fit: contain;
    padding: var(--space-2);
    background-color: var(--bg-secondary);
    border: 1px solid var(--border-color);
    transition: all var(--tran-0-3);
  }

  .review-img:hover {
    transform: scale(1.05);
    border-color: var(--primary-200);
    box-shadow: var(--shadow-md);
  }

  .review-quote {
    padding: 0 15rem;
    text-align: center;
  }

  .quote-icon {
    font-size: 3rem;
    color: var(--primary-color);
  }

  .testi-personDetails {
    flex-direction: column;
  }

  .testi-personDetails .name {
    font-size: 1.8rem;
    font-weight: var(--font-medium);
  }

  /* swiper btn */
  .review .swiper-navBtn {
    background-color: rgba(0, 0, 0, 0.1);
  }

  .review .swiper-button-next {
    right: 2rem;
    transform: translateY(2rem);
  }

  .review .swiper-button-prev {
    left: 2rem;
    transform: translateY(2rem);
  }

  .review .swiper-navBtn:hover {
    background-color: rgba(0, 0, 0, 0.2);
  }



  /* Footer */
  .logobig {
    height: auto;
    width: 200px;
    border-radius: 10px;
    border: 3px solid rgb(255, 255, 255);

  }

  .footer {
    padding: var(--space-16) var(--space-4) var(--space-12);
    background-color: var(--gray-900);
    border-top: 1px solid var(--gray-800);
  }

  .footer .content-description,
  .footer .map-icon,
  .footer .location-text {
    color: white;
  }

  .footer-container {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr;
    column-gap: 2rem;
    align-items: flex-start;
    align-items: start;
  }

  .social-icons a {
    margin-right: 10px;
    color: white;
    font-size: 20px;
  }

  .social-icons a:hover {
    color: var(--primary-color-light);
  }

  .footer-content {
    display: grid;
    row-gap: 0.5rem;
  }

  .footer .logo-text,
  .footer .logo-icon {
    color: white;
    font-size: 2rem;
    font-weight: var(--font-medium);
  }

  .footer .logo-icon {
    font-size: 3rem;
  }

  .footer .content-description,
  .footer .location-text {
    text-align: left;
    font-size: var(--small-font);
  }

  .footer .map-icon {
    font-size: 3rem;
    margin-right: 1rem;
  }

  .footer-linkContent,
  .footer-resources {
    display: grid;
    /* grid-template-columns: repeat(2, 1fr); */
    justify-items: start;
  }

  .footer-links {
    display: grid;
    row-gap: 1rem;
    font-weight: var(--font-medium);
    color: white;
  }

  .footerLinks-title {
    color: white;
    font-size: var(--h4-font);
    margin-bottom: 0.5rem;
    text-decoration: underline;
  }

  .footer-link {
    font-size: var(--normal-font);
    color: white;
    transition: var(--tran-0-3);
    position: relative;
    display: inline-block;
  }

  .footer-link:hover {
    color: var(--primary-color-light);
  }

  .footer-link-active {
    color: var(--primary-color-light);
    font-weight: var(--font-semi-bold);
    text-decoration: underline;
    text-decoration-thickness: 2px;
    text-underline-offset: 4px;
  }

  .footer-copyRight {
    max-width: 970px;
    margin: 0 auto;
    text-align: center;
    padding-top: var(--space-8);
    margin-top: var(--space-8);
    font-size: var(--small-font);
    border-top: 1px solid var(--gray-800);
    color: var(--gray-400);
  }


  /* Scroll Up - Premium button */
  .scrollUp-btn {
    position: fixed;
    right: 20px;
    bottom: 20px;
    width: 40px;
    height: 40px;
    font-size: 1.8rem;
    border-radius: 50%;
    color: var(--white-color);
    cursor: pointer;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    background-color: var(--primary-color);
    border: none;
    z-index: 998;
    justify-content: center;
    opacity: 0;
    pointer-events: none;
    transition: all 0.3s ease;
  }

  .scrollUpBtn-active {
    opacity: 1;
    pointer-events: auto;
    bottom: 20px;
  }

  .scrollUp-icon {
    opacity: 1;
    transition: all var(--tran-0-3);
  }

  .scrollUp-btn:hover {
    background-color: var(--primary-color-dark);
    box-shadow: 0 6px 16px rgba(0, 0, 0, 0.2);
    transform: translateY(-2px);
  }

  .scrollUp-btn:hover .scrollUp-icon {
    transform: translateY(-2px);
  }

  /* Hide scroll button on mobile devices */
  @media screen and (max-width: 768px) {
    .scrollUp-btn {
      display: none;
    }
  }

  /* Responive media */
  @media screen and (max-width: 1150px) {
    .swiper-button-prev {
      left: 10rem;
    }

    .swiper-button-next {
      right: 10rem;
    }
  }

  @media screen and (max-width: 1000px) {
    .swiper-button-prev {
      left: 3rem;
    }

    .swiper-button-next {
      right: 3rem;
    }

    .section-description {
      padding: 0 8rem;
    }

    .about-imageContent {
      height: 400px;
    }

    .aboutImg-textBox {
      padding: 1.5rem 2rem;
    }

    .menu .menu-content {
      grid-template-columns: 1.5fr 1fr;
      column-gap: 3rem;
    }

    .brand-images {
      grid-template-columns: repeat(3, 1fr);
    }

  }

  @media screen and (max-width: 768px) {
    .section.review {
      padding: 7rem 1rem 3rem;
    }

    .review .swiper {
      padding-bottom: 6.5rem;
    }

    .swiper-navBtn {
      visibility: hidden;
    }

    .swiper-pagination-bullet {
      visibility: visible;
    }

    .section {
      padding: 2rem 1rem;
    }

    .section-description,
    .review-quote {
      padding: 0 6rem;
    }

    .about-content {
      grid-template-columns: 1fr;
      row-gap: 3rem;
      justify-items: center;
    }

    /* Show video/image on top, text below on mobile */
    .about-imageContent {
      order: 1;
    }

    .about-text {
      order: 2;
    }

    .about .content-subtitle,
    .about .content-title,
    .about .content-description {
      text-align: justify;
    }

    /* .about-details {
  justify-items: center;
} */
    .about-lists {
      justify-content: center;
    }

    .menu .menu-content {
      grid-template-columns: 1fr;
      row-gap: 3rem;
    }

    .footer-container {
      row-gap: 1.5rem;
    }
  }

  @media screen and (max-width: 600px) {
    .container {
      padding: 0rem;
    }

    .about-imageContent {
      /* width: 350px; */
      order: 1;
    }

    .section-description,
    .review-quote {
      padding: 0;
    }

    .aboutImg-textBox {
      right: -2rem
    }

    .menuItem-price {
      border: none;
    }

    .menu-img {
      height: 120px;
      width: 150px;
      margin-right: 0;
    }

    .brand-images {
      grid-template-columns: repeat(2, 1fr);
    }

    .brand-img {
      width: 100px;
    }

    .footer-container {
      grid-template-columns: 1fr;
      row-gap: 3rem;
    }

    .footer-content {
      justify-items: center;
    }

    .footer-linkContent,
    .footer-resources {
      justify-items: center;
      text-align: center;
    }

  }

  @media screen and (max-width: 400px) {
    .homeTitle {
      font-size: 2.4rem;
      line-height: 1.2;
    }

    .menu-item {
      flex-direction: column;
      align-items: center;
      padding: 1rem;
      row-gap: 2rem;
    }

    .menuItem-details {
      margin-right: 0;
      display: flex;
      flex-direction: column;
      align-items: center;
    }

    .menuItem-price {
      padding-left: 0;
      flex-direction: row;
    }

    .menuItem-des {
      text-align: center;
    }

  }

  .nav-linkactive {
    color: var(--primary-color);
    font-weight: var(--font-semi-bold);
  }

  .nav-linkactive::after {
    width: calc(100% - var(--space-8));
  }









  /* ============================================
   PILLARS SECTION (Inbound, Matching, Outbound)
   ============================================ */
  .pillars-section {
    background-color: var(--white-color);
    padding: var(--space-8) 0;
  }

  .pillars-tabs-container {
    max-width: 1100px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: var(--space-4);
  }

  /* Tabs Navigation */
  .pillars-tabs-nav {
    display: flex;
    gap: 20px;
    background: rgba(0, 0, 0, 0.200);
    padding: 10px;
    border-radius: 50px;
    width: fit-content;
    margin-left: auto;
    margin-right: auto;
    box-shadow: none;
    border: none;
  }

  .pillar-tab-btn {
    padding: 12px 30px;
    border-radius: 40px;
    border: none;
    background: transparent;
    font-size: var(--normal-font);
    /* Bigger for desktop */
    font-weight: 600;
    color: #64748b;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 12px;
  }

  .pillar-tab-btn:hover {
    color: var(--primary-color);
  }

  .pillar-tab-btn.active {
    background: var(--primary-color);
    color: white;
    box-shadow: 0 10px 20px rgba(27, 88, 255, 0.2);
  }

  /* Responsive Tabs */
  @media (max-width: 768px) {
    .pillars-tabs-nav {
      flex-wrap: wrap;
      justify-content: center;
      gap: 10px;
      padding: 8px;
      border-radius: 30px;
    }

    .pillar-tab-btn {
      padding: 10px 20px;
      font-size: 0.9rem;
      /* Smaller for tablet */
      gap: 8px;
    }

    .pillar-tab-btn i {
      font-size: 1.1rem;
    }
  }

  @media (max-width: 480px) {
    .pillars-tabs-nav {
      width: 100%;
      border-radius: 20px;
      gap: 5px;
    }

    .pillar-tab-btn {
      flex: 1;
      padding: 10px 5px;
      font-size: 0.75rem;
      /* Even smaller for mobile */
      justify-content: center;
      text-align: center;
      min-width: 70px;
    }

    .pillar-tab-btn i {
      display: none;
    }
  }

  /* Display Area */
  .pillars-display-area {
    width: 100%;
    position: relative;
    min-height: 500px;
  }

  .pillar-content-panel {
    display: none;
    width: 100%;
    animation: fadeIn 0.5s ease;
  }

  .pillar-content-panel.active {
    display: block;
    justify-content: center;
    align-items: center;
  }

  .pillar-image-container {
    width: 100%;
    background: linear-gradient(135deg, #f3f4f6 0%, #d1d5db 100%);
    border-radius: var(--radius-2xl);
    padding: var(--space-4);
    position: relative;
    overflow: hidden;
    display: flex;
    justify-content: center;
    align-items: center;
    box-shadow: var(--shadow-2xl);
  }

  .pillar-main-img {
    width: 100%;
    height: auto;
    display: block;
  }

  /* Interactive Iframe Styling */
  .pillar-iframe-wrapper {
    width: 100%;
    height: 620px;
    background: #000;
    overflow: hidden;
    position: relative;
    display: flex;
    justify-content: center;
  }

  .pillar-iframe {
    width: 1240px;
    height: 700px;
    border: none;
    transform: scale(0.83);
    transform-origin: top center;
    position: absolute;
    top: 0;
  }

  @media screen and (max-width: 1200px) {
    .pillar-iframe-wrapper {
      height: 520px;
    }

    .pillar-iframe {
      transform: scale(0.8);
    }
  }

  @media screen and (max-width: 991px) {
    .pillar-iframe-wrapper {
      height: 380px;
    }

    .pillar-iframe {
      transform: scale(0.6);
    }
  }

  @media screen and (max-width: 768px) {
    .pillar-iframe-wrapper {
      height: 250px;
    }

    .pillar-iframe {
      transform: scale(0.45);
    }
  }

  @media screen and (max-width: 480px) {
    .pillar-iframe-wrapper {
      height: 160px;
    }

    .pillar-iframe {
      transform: scale(0.32);
    }
  }

  /* MacBook Frame Styling */
  .macbook-frame {
    width: 100%;
    max-width: 1050px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
  }

  .macbook-screen {
    background: #000;
    border: 12px solid #282828;
    border-bottom: 0;
    border-radius: 18px 18px 0 0;
    overflow: hidden;
    position: relative;
    box-shadow: 0 30px 50px -10px rgba(0, 0, 0, 0.3);
  }

  .macbook-screen::before {
    content: '';
    position: absolute;
    top: -8px;
    left: 50%;
    transform: translateX(-50%);
    width: 6px;
    height: 6px;
    background: #444;
    border-radius: 50%;
    z-index: 10;
  }

  /* Dashboard Window Header */
  .dash-window-header {
    background: #fdfdfd;
    padding: 1rem 1.5rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    border-bottom: 1px solid #e5e7eb;
    position: relative;
    z-index: 5;
  }

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

  .dash-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
  }

  .dash-dot.red {
    background: #ff5f56;
  }

  .dash-dot.orange {
    background: #ffbd2e;
  }

  .dash-dot.green {
    background: #27c93f;
  }

  .dash-window-title {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    font-size: 1.2rem;
    font-weight: var(--font-medium);
    color: var(--text-color-light);
    white-space: nowrap;
  }

  .macbook-base {
    height: 14px;
    background: #e2e2e2;
    background: linear-gradient(to bottom, #e2e2e2 0%, #b5b5b5 100%);
    border-radius: 0 0 16px 16px;
    position: relative;
    box-shadow: 0 10px 15px -5px rgba(0, 0, 0, 0.2);
  }

  .macbook-base::after {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 4px;
    background: rgba(0, 0, 0, 0.1);
    border-radius: 0 0 10px 10px;
  }


  @media screen and (max-width: 768px) {
    .pillar-tab-btn {
      padding: 1rem 1.5rem;
      font-size: var(--normal-font);
    }

    .pillar-image-container {
      padding: var(--space-8);
    }
  }



  /* ============================================
   INTEGRATIONS SECTION
   ============================================ */
  .integrations-section {
    background-color: var(--bg-primary);
    padding: var(--space-8) 0;
  }

  .integration-grid {
    display: grid;
    grid-template-columns: repeat(8, 1fr);
    /* 8 columns as in the image */
    gap: var(--space-6);
    margin-top: var(--space-12);
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
  }

  .integration-card {
    background-color: var(--white-color);
    border-radius: var(--radius-xl);
    padding: var(--space-4);
    aspect-ratio: 1.5 / 1;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 10px 25px -5px rgba(0, 0, 0, 0.04);
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    border: 1px solid rgba(0, 0, 0, 0.02);
    overflow: hidden;
  }

  .integration-card img {
    max-width: 80%;
    max-height: 80%;
    object-fit: contain;
    filter: grayscale(100%);
    opacity: 0.6;
    transition: all 0.3s ease;
  }

  .integration-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px -10px rgba(0, 0, 0, 0.1);
    border-color: var(--primary-color-light);
  }

  .integration-card:hover img {
    filter: grayscale(0%);
    opacity: 1;
    transform: scale(1.1);
  }

  /* AI Platform Note Badge */
  .ai-note-badge {
    justify-content: center;
    background: black;
    width: 95%;
    max-width: 1000px;
    color: white;
    padding: 15px 30px;
    border-radius: 20px;
    font-weight: 600;
    font-size: 1.8rem;
    display: inline-flex;
    align-items: center;
    gap: 12px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    margin: 0 auto;
    text-align: center;
  }

  @media screen and (max-width: 768px) {
    .ai-note-badge {
      font-size: 1.3rem;
      padding: 12px 20px;
      gap: 8px;
    }

    .ai-note-badge i {
      font-size: 2rem !important;
    }
  }

  @media screen and (max-width: 480px) {
    .ai-note-badge {
      font-size: 1.1rem;
      flex-direction: column;
      padding: 15px;
    }
  }

  @media screen and (max-width: 1200px) {
    .integration-grid {
      grid-template-columns: repeat(4, 1fr);
      padding: 0 var(--space-6);
    }
  }

  @media screen and (max-width: 768px) {
    .integration-grid {
      grid-template-columns: repeat(3, 1fr);
      gap: var(--space-4);
    }
  }

  @media screen and (max-width: 480px) {
    .integration-grid {
      grid-template-columns: repeat(2, 1fr);
    }
  }



  /* section */
  /* --- Industries Section --- */
  .industries-section {
    padding: 1rem 1.5rem;
    background: white;
  }

  .section-title {
    text-align: center;
    font-size: 32px;
    color: var(--text-color);
    font-weight: var(--font-bold);
    line-height: var(--line-heading);
    letter-spacing: var(--letter-tight);
  }

  @media (max-width: 768px) {
    .section-title {
      font-size: 3rem;
    }
  }

  /* Grid Layout */
  .industries-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2.5rem;
    max-width: 1400px;
    margin: 0 auto;
  }

  @media (min-width: 992px) {
    .industries-grid {
      grid-template-columns: 1fr 1fr;
      gap: 3rem;
    }
  }

  /* --- Card Design (Now an Anchor Tag) --- */
  .img-card {
    position: relative;
    border-radius: var(--radius-2xl);
    overflow: hidden;
    height: 100%;
    background-size: cover;
    background-position: center;
    box-shadow: var(--shadow-xl);
    transition: all var(--tran-0-3);
    display: flex;
    flex-direction: column;
    text-decoration: none;
    cursor: pointer;
    border: 1px solid rgba(255, 255, 255, 0.1);
  }

  .img-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 4px;
    height: 100%;
    background-color: var(--primary-color);
    transform: scaleY(0);
    transform-origin: bottom;
    transition: transform var(--tran-0-3);
    z-index: 3;
  }

  .img-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
    border-color: var(--primary-200);
  }

  .img-card:hover::before {
    transform: scaleY(1);
    transform-origin: top;
  }

  .card-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0.5) 0%, rgba(0, 0, 0, 0.65) 50%, rgba(0, 0, 0, 0.75) 100%);
    z-index: 1;
    transition: 0.3s;
  }

  /* Hover Effect: Darken overlay slightly to make text pop */
  .img-card:hover .card-overlay {
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0.6) 0%, rgba(0, 0, 0, 0.75) 50%, rgba(0, 0, 0, 0.85) 100%);
  }

  .card-content {
    position: relative;
    z-index: 2;
    padding: 3rem;
    color: white;
    display: flex;
    flex-direction: column;
    height: 100%;
    gap: 2rem;
  }

  /* Header */
  .top-header {
    display: flex;
    align-items: center;
    gap: 25px;
  }

  .top-header i {
    font-size: 3.2rem;
    color: var(--primary-color);
    line-height: 1;
    transition: all var(--tran-0-3);
    background-color: var(--primary-50);
    min-width: 5.6rem;
    height: 5.6rem;
    border-radius: var(--radius-lg);
    display: flex;
    justify-content: center;
    align-items: center;
    border: 1px solid var(--primary-100);
    flex-shrink: 0;
  }

  .img-card:hover .top-header i {
    transform: scale(1.05);
    color: var(--white-color);
    background-color: var(--primary-color);
    border-color: var(--primary-color);
  }

  .top-header h3 {
    font-size: var(--h2-font);
    font-weight: var(--font-bold);
    margin: 0;
    line-height: var(--line-heading);
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.4);
    color: white;
    letter-spacing: var(--letter-normal);
  }

  /* Stats List */
  .stats-list {
    list-style: none;
    padding: 0;
    margin: 0;
  }

  .stats-list li {
    position: relative;
    padding-left: 2.5rem;
    margin-bottom: var(--space-4);
    font-size: var(--small-font);
    color: rgba(255, 255, 255, 0.9);
    line-height: var(--line-relaxed);
    font-weight: var(--font-regular);
    letter-spacing: var(--letter-body);
  }

  .stats-list li::before {
    content: "•";
    color: var(--primary-color);
    font-size: 3rem;
    position: absolute;
    left: 0;
    top: -12px;
  }

  .stats-list strong {
    color: white;
    font-weight: var(--font-bold);
    font-size: var(--normal-font);
    letter-spacing: var(--letter-normal);
  }

  /* --- NEW BUTTON STYLE --- */
  .cta-container {
    margin-top: auto;
    /* Pushes the button (and quote box) to bottom */
    margin-bottom: 2rem;
  }

  .learn-btn {
    display: inline-flex;
    align-items: center;
    gap: var(--space-2);
    background-color: var(--primary-color);
    color: var(--white-color);
    padding: var(--space-3) var(--space-6);
    border-radius: var(--radius-full);
    font-size: var(--normal-font);
    font-weight: var(--font-semi-bold);
    transition: all var(--tran-0-3);
    box-shadow: var(--shadow-md);
    letter-spacing: var(--letter-wide);
  }

  .learn-btn i {
    font-size: 1.4rem;
    transition: transform 0.3s;
  }

  /* Button Hover Animation */
  .img-card:hover .learn-btn {
    background-color: var(--white-color);
    color: var(--primary-color);
    transform: translateX(4px);
    box-shadow: var(--shadow-lg);
  }

  .img-card:hover .learn-btn i {
    transform: translateX(5px);
  }

  /* Quote Box */
  .quote-box {
    background: rgba(255, 255, 255, 0.12);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    padding: var(--space-5);
    border-radius: var(--radius-xl);
  }

  .quote-box p {
    font-style: italic;
    font-size: var(--normal-font);
    margin-bottom: var(--space-3);
    color: rgba(255, 255, 255, 0.95);
    line-height: var(--line-relaxed);
    letter-spacing: var(--letter-body);
  }

  .quote-box .author {
    display: block;
    font-size: var(--small-font);
    text-transform: uppercase;
    letter-spacing: 0.1em;
    font-weight: var(--font-semi-bold);
    color: rgba(255, 255, 255, 0.9);
    margin-top: var(--space-3);
  }







  /* pricing */

  /* --- MAIN SECTION WRAPPER --- */
  .pri-sec {
    background-color: var(--bg-tertiary);
    padding: var(--space-16) 0;
  }

  .pricing-content-wrapper {
    width: 90%;
    max-width: 1080px;
    margin: 0 auto;
  }

  /* --- CENTERED HEADINGS --- */
  .title-main {
    font-size: 3rem;
    font-weight: var(--font-bold);
    text-align: center;
    color: var(--text-color);
    margin-bottom: var(--space-4);
    line-height: var(--line-heading);
    letter-spacing: var(--letter-tight);
  }

  .subtitle-main {
    text-align: center;
    color: var(--text-color-secondary);
    margin: 0 auto var(--space-6) auto;
    font-size: var(--normal-font);
    max-width: 680px;
    line-height: var(--line-relaxed);
    letter-spacing: var(--letter-body);
  }

  /* --- HERO GRID (2 Columns) --- */
  .hero-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 25px;
    margin-bottom: 60px;
  }

  /* --- UNIFIED USAGE CARD STYLES --- */
  .usage-card {
    background: var(--bg-secondary);
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-md);
    border: 1px solid var(--border-color);
    border-top: 4px solid var(--primary-color);
    overflow: hidden;
    display: flex;
    flex-direction: column;
    transition: all var(--tran-0-3);
    position: relative;
  }

  .usage-card::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-color), var(--primary-color-light));
    transform: scaleX(0);
    transform-origin: left;
    transition: transform var(--tran-0-3);
  }

  .usage-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-xl);
    border-color: var(--primary-200);
  }

  .usage-card:hover::after {
    transform: scaleX(1);
  }

  /* Header Styling - Premium gradient */
  .usage-card .usage-header {
    background: linear-gradient(135deg, var(--bg-secondary) 0%, var(--primary-50) 100%);
    color: var(--primary-color);
    padding: var(--space-6);
    text-align: left;
    border-bottom: 1px solid var(--border-color);
    position: relative;
    overflow: hidden;
    z-index: 1;
    transition: all var(--tran-0-3);
  }

  /* Header Hover Effect */
  .usage-card:hover .usage-header {
    background: linear-gradient(135deg, var(--primary-50) 0%, var(--primary-100) 100%);
    border-bottom-color: var(--primary-200);
  }

  /* Feature Icons (Same for both) */
  .usage-card .feature-item i {
    color: var(--primary-color);
  }

  /* Savings Tag (Same for both) */
  .usage-card .savings-tag {
    background-color: #f0f9ff;
    color: var(--primary-color);
    border: 1px dashed var(--primary-color);
    margin-top: auto;
    padding: 15px;
    border-radius: 8px;
    text-align: left;
    font-weight: 600;
    font-size: 13px;
    line-height: 1.4;
    margin-top: 25px;
  }

  /* Watermark Icon */
  .header-watermark {
    position: absolute;
    top: 50%;
    right: 20px;
    transform: translateY(-50%);
    font-size: 80px;
    opacity: 0.15;
    z-index: 0;
    transition: opacity 0.3s ease;
    color: var(--primary-color);
    /* Ensure icon uses primary color */
  }

  .usage-card:hover .header-watermark {
    transform: translateY(-50%);
    opacity: 0.3;
  }

  /* Text Positioning */
  .usage-title,
  .usage-price,
  .usage-desc {
    position: relative;
    z-index: 2;
    padding-right: 20px;
  }

  .usage-title {
    font-size: var(--small-font);
    font-weight: var(--font-bold);
    text-transform: uppercase;
    letter-spacing: var(--letter-wider);
    margin-bottom: var(--space-2);
    color: var(--primary-color);
  }

  .usage-price {
    font-size: 3.6rem;
    font-weight: var(--font-extra-bold);
    color: var(--text-color);
    margin: var(--space-2) 0;
    line-height: var(--line-tight);
    letter-spacing: var(--letter-tight);
  }

  .usage-price span {
    font-size: 14px;
    font-weight: 600;
    color: var(--text-color-secondary);
  }

  .usage-desc {
    font-size: var(--small-font);
    line-height: var(--line-relaxed);
    color: var(--text-color-secondary);
    margin-top: var(--space-2);
    font-weight: var(--font-regular);
    letter-spacing: var(--letter-body);
  }

  /* Usage Body */
  .usage-body {
    padding: 25px;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
  }

  .usage-body h3 {
    font-size: var(--smaller-font);
    font-weight: var(--font-bold);
    color: var(--text-color-muted);
    margin-bottom: var(--space-4);
    text-align: left;
    text-transform: uppercase;
    letter-spacing: var(--letter-wider);
  }

  .feature-list {
    display: grid;
    grid-template-columns: 1fr;
    gap: 10px;
  }

  .feature-item {
    display: flex;
    align-items: center;
    font-size: var(--small-font);
    color: var(--text-color-secondary);
    font-weight: var(--font-medium);
    line-height: var(--line-relaxed);
    letter-spacing: var(--letter-body);
  }

  .feature-item i {
    font-size: 18px;
    margin-right: 10px;
    flex-shrink: 0;
  }

  /* --- CENTERED SETUP TITLE --- */
  .setup-title {
    text-align: center;
    font-size: 24px;
    font-weight: 700;
    color: black;
    margin-bottom: 10px;
  }

  /* --- PRICING GRID (Setup Fees) --- */
  .pricing-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
  }

  .setup-card {
    background: var(--bg-secondary);
    border-radius: var(--radius-xl);
    padding: var(--space-6) var(--space-4);
    text-align: center;
    box-shadow: var(--shadow-sm);
    border: 1.5px solid var(--border-color);
    transition: all var(--tran-0-3);
    display: flex;
    flex-direction: column;
    position: relative;
    overflow: hidden;
  }

  .setup-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: var(--primary-color);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform var(--tran-0-3);
  }

  .setup-card:hover {
    transform: translateY(-4px);
    border-color: var(--primary-300);
    box-shadow: var(--shadow-lg);
  }

  .setup-card:hover::before {
    transform: scaleX(1);
  }

  .setup-card.popular {
    border: 2px solid var(--primary-color);
    position: relative;
    overflow: visible;
    /* margin-top: 20px; */
  }

  .popular-badge {
    position: absolute;
    top: -20px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--primary-color);
    color: white;
    padding: 6px 16px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 700;
    z-index: 10;
    white-space: nowrap;
    box-shadow: 0 4px 8px rgba(37, 99, 235, 0.3);
  }

  .card-plan-name {
    font-size: var(--h5-font);
    font-weight: var(--font-bold);
    color: var(--text-color);
    margin-bottom: var(--space-3);
    letter-spacing: var(--letter-normal);
  }

  .card-price {
    font-size: 3.2rem;
    font-weight: var(--font-extra-bold);
    color: var(--text-color);
    margin-bottom: var(--space-4);
    line-height: var(--line-tight);
    letter-spacing: var(--letter-tight);
  }

  .card-features {
    list-style: none;
    padding: 0;
    margin-bottom: 20px;
    flex-grow: 1;
  }

  .card-features li {
    margin-bottom: var(--space-2);
    color: var(--text-color-secondary);
    font-size: var(--smaller-font);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: var(--space-2);
    line-height: var(--line-relaxed);
    letter-spacing: var(--letter-body);
  }

  .card-features li i {
    color: var(--primary-color-light);
  }

  .btn-setup {
    background: var(--primary-color);
    color: white;
    padding: 10px 20px;
    border-radius: 6px;
    text-decoration: none;
    font-weight: 600;
    display: inline-block;
    font-size: 14px;
    transition: background 0.3s ease;
  }

  .btn-setup:hover {
    background: var(--primary-color-light);
  }

  /* ============================================
   ROI CALCULATOR SECTION
   ============================================ */
  .roi-calculator-sec {
    background: linear-gradient(135deg, var(--bg-secondary) 0%, var(--bg-tertiary) 100%);
    padding: var(--space-16) 0;
    margin-top: var(--space-8);
  }

  .roi-calculator-container {
    max-width: 1000px;
    margin: 0 auto;
  }

  .roi-calculator-card {
    background: var(--bg-secondary);
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-lg);
    border: 1px solid var(--border-color);
    overflow: hidden;
    transition: all var(--tran-0-3);
  }

  .roi-calculator-card:hover {
    box-shadow: var(--shadow-xl);
    border-color: var(--primary-200);
  }

  .roi-input-section {
    padding: var(--space-8);
  }

  .roi-form-group {
    margin-bottom: var(--space-6);
  }

  .roi-label {
    display: flex;
    align-items: center;
    gap: var(--space-2);
    font-size: var(--normal-font);
    font-weight: var(--font-semi-bold);
    color: var(--text-color);
    margin-bottom: var(--space-3);
    letter-spacing: var(--letter-normal);
  }

  .roi-label i {
    color: var(--primary-color);
    font-size: 2rem;
  }

  .roi-select,
  .roi-input {
    width: 100%;
    padding: 1.4rem 1.8rem;
    font-size: var(--normal-font);
    font-family: var(--body-font);
    color: var(--text-color);
    background: var(--bg-primary);
    border: 2px solid var(--border-color);
    border-radius: var(--radius-md);
    transition: all var(--tran-0-3);
    outline: none;
  }

  .roi-select:focus,
  .roi-input:focus {
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.1);
    background: var(--bg-secondary);
  }

  .roi-select {
    cursor: pointer;
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%232563eb' d='M6 9L1 4h10z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 1.8rem center;
    padding-right: 4rem;
  }

  .roi-hint {
    display: block;
    font-size: var(--smaller-font);
    color: var(--text-color-muted);
    margin-top: var(--space-1);
    font-style: italic;
  }

  .roi-inputs-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: var(--space-6);
    margin-top: var(--space-6);
  }

  .roi-calculate-btn {
    width: 100%;
    padding: 1.6rem 2.4rem;
    margin-top: var(--space-6);
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-700) 100%);
    color: var(--white-color);
    border: none;
    border-radius: var(--radius-md);
    font-size: var(--normal-font);
    font-weight: var(--font-semi-bold);
    font-family: var(--body-font);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: var(--space-2);
    transition: all var(--tran-0-3);
    box-shadow: 0 4px 12px rgba(37, 99, 235, 0.3);
    letter-spacing: var(--letter-normal);
  }

  .roi-calculate-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(37, 99, 235, 0.4);
    background: linear-gradient(135deg, var(--primary-700) 0%, var(--primary-color) 100%);
  }

  .roi-calculate-btn:active {
    transform: translateY(0);
  }

  .roi-calculate-btn i {
    font-size: 2rem;
  }

  .roi-results-section {
    background: linear-gradient(135deg, var(--primary-50) 0%, var(--bg-secondary) 100%);
    border-top: 3px solid var(--primary-color);
    padding: var(--space-8);
    animation: slideDown 0.5s ease-out;
  }

  @keyframes slideDown {
    from {
      opacity: 0;
      transform: translateY(-20px);
    }

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

  .roi-results-header {
    margin-bottom: var(--space-8);
    text-align: center;
  }

  .roi-results-header h3 {
    font-size: var(--h3-font);
    font-weight: var(--font-bold);
    color: var(--text-color);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: var(--space-2);
    letter-spacing: var(--letter-tight);
  }

  .roi-results-header h3 i {
    color: var(--primary-color);
    font-size: 2.8rem;
  }

  .roi-metrics-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: var(--space-6);
    margin-bottom: var(--space-8);
  }

  .roi-metric-card {
    background: var(--bg-secondary);
    border-radius: var(--radius-lg);
    padding: var(--space-6);
    display: flex;
    align-items: flex-start;
    gap: var(--space-4);
    border: 2px solid var(--border-color);
    transition: all var(--tran-0-3);
    box-shadow: var(--shadow-sm);
  }

  .roi-metric-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
    border-color: var(--primary-200);
  }

  .roi-metric-card.loss {
    border-left: 4px solid #ef4444;
  }

  .roi-metric-card.potential {
    border-left: 4px solid #10b981;
  }

  .roi-metric-card.savings {
    border-left: 4px solid var(--primary-color);
  }

  .roi-metric-card.roi {
    border-left: 4px solid #f59e0b;
  }

  .roi-metric-icon {
    width: 5.6rem;
    height: 5.6rem;
    border-radius: var(--radius-lg);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    font-size: 2.8rem;
  }

  .roi-metric-card.loss .roi-metric-icon {
    background: #fee2e2;
    color: #ef4444;
  }

  .roi-metric-card.potential .roi-metric-icon {
    background: #d1fae5;
    color: #10b981;
  }

  .roi-metric-card.savings .roi-metric-icon {
    background: var(--primary-50);
    color: var(--primary-color);
  }

  .roi-metric-card.roi .roi-metric-icon {
    background: #fef3c7;
    color: #f59e0b;
  }

  .roi-metric-content {
    flex: 1;
  }

  .roi-metric-label {
    font-size: var(--smaller-font);
    color: var(--text-color-muted);
    text-transform: uppercase;
    letter-spacing: var(--letter-wider);
    font-weight: var(--font-medium);
    margin-bottom: var(--space-2);
  }

  .roi-metric-value {
    font-size: 2.8rem;
    font-weight: var(--font-extra-bold);
    color: var(--text-color);
    line-height: var(--line-tight);
    letter-spacing: var(--letter-tight);
    margin-bottom: var(--space-1);
  }

  .roi-metric-desc {
    font-size: var(--smaller-font);
    color: var(--text-color-secondary);
    line-height: var(--line-relaxed);
  }

  .roi-breakdown {
    background: var(--bg-secondary);
    border-radius: var(--radius-lg);
    padding: var(--space-6);
    margin-bottom: var(--space-6);
    border: 1px solid var(--border-color);
  }

  .roi-breakdown h4 {
    font-size: var(--h5-font);
    font-weight: var(--font-bold);
    color: var(--text-color);
    margin-bottom: var(--space-4);
    display: flex;
    align-items: center;
    gap: var(--space-2);
    letter-spacing: var(--letter-normal);
  }

  .roi-breakdown h4 i {
    color: var(--primary-color);
    font-size: 2rem;
  }

  .roi-breakdown-grid {
    display: flex;
    flex-direction: column;
    gap: var(--space-3);
  }

  .roi-breakdown-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: var(--space-3) 0;
    border-bottom: 1px solid var(--border-color);
  }

  .roi-breakdown-item:last-child {
    border-bottom: none;
  }

  .roi-breakdown-item.total {
    margin-top: var(--space-2);
    padding-top: var(--space-4);
    border-top: 2px solid var(--primary-color);
    border-bottom: none;
  }

  .breakdown-label {
    font-size: var(--normal-font);
    color: var(--text-color-secondary);
    font-weight: var(--font-medium);
  }

  .breakdown-value {
    font-size: var(--normal-font);
    color: var(--text-color);
    font-weight: var(--font-semi-bold);
  }

  .roi-breakdown-item.total .breakdown-label,
  .roi-breakdown-item.total .breakdown-value {
    font-size: var(--h5-font);
    font-weight: var(--font-bold);
    color: var(--text-color);
  }

  .roi-payback {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-700) 100%);
    border-radius: var(--radius-lg);
    padding: var(--space-6);
    text-align: center;
    color: var(--white-color);
    box-shadow: 0 4px 12px rgba(37, 99, 235, 0.3);
  }

  .roi-payback-content {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: var(--space-3);
    font-size: var(--normal-font);
  }

  .roi-payback-content i {
    font-size: 2.4rem;
  }

  .roi-payback-content strong {
    font-weight: var(--font-semi-bold);
  }

  .roi-payback-content span {
    font-weight: var(--font-bold);
    font-size: var(--h5-font);
    margin-left: var(--space-2);
  }

  /* --- RESPONSIVE --- */
  @media (max-width: 992px) {
    .hero-grid {
      grid-template-columns: 1fr;
    }

    .pricing-grid {
      grid-template-columns: 1fr 1fr;
    }

    .roi-inputs-grid {
      grid-template-columns: 1fr;
    }

    .roi-metrics-grid {
      grid-template-columns: 1fr;
    }
  }

  @media (max-width: 600px) {
    .pricing-grid {
      grid-template-columns: 1fr;
    }

    .roi-input-section {
      padding: var(--space-6);
    }

    .roi-results-section {
      padding: var(--space-6);
    }

    .roi-metric-value {
      font-size: 2.4rem;
    }
  }








  /* --- youtue video  --- */
  .modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.85);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 9999;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease;
    padding: 20px;
    /* Safety padding so video never touches screen edge */
  }

  .modal-overlay.active {
    opacity: 1;
    visibility: visible;
  }

  .video-container {
    position: relative;
    width: 100%;
    max-width: 960px;
    /* Keep aspect ratio */
    aspect-ratio: 16/9;
    background: #000;
    border-radius: 12px;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.5);
    overflow: hidden;
  }

  .video-container iframe {
    width: 100%;
    height: 100%;
    border: none;
  }

  /* 2. CLOSE BUTTON INSIDE THE VIDEO FRAME */
  .close-button {
    position: absolute;
    top: 10px;
    right: 10px;
    width: 32px;
    height: 32px;
    background: rgba(0, 0, 0, 0.6);
    /* Semi-transparent black box */
    color: white;
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    /* Circle shape */
    font-size: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 10;
    /* Sit on top of the video */
    transition: background 0.2s;
  }

  .close-button:hover {
    background: rgba(255, 0, 0, 0.8);
    /* Turns red on hover */
  }
}

/* ============================================
   INDUSTRY DEMO SECTION (Tabbed Interface)
   ============================================ */
.industry-demo-section {
  background-color: var(--bg-primary);
  padding: var(--space-6) var(--space-4);
  border-bottom: 1px solid var(--border-color, #e5e5e5);
}

.industry-demo-section .section-title {
  /* font-size: var(--h2-font); */
  font-weight: var(--font-bold);
  color: var(--text-color);
  text-align: center;
  margin-bottom: var(--space-3);
}

.industry-demo-section .section-description {
  font-size: var(--normal-font);
  color: var(--text-color-secondary);
  text-align: center;
  margin-bottom: var(--space-10);
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

/* Industry Tabs */
.industry-tabs {
  display: flex;
  justify-content: center;
  gap: var(--space-2);
  margin-bottom: var(--space-10);
  flex-wrap: wrap;
  border-bottom: 2px solid var(--border-color);
  padding-bottom: var(--space-2);
}

.industry-tab {
  padding: var(--space-3) var(--space-6);
  background: transparent;
  border: none;
  border-bottom: 3px solid transparent;
  color: var(--text-color-secondary);
  font-size: var(--normal-font);
  font-weight: var(--font-medium);
  cursor: pointer;
  transition: all var(--tran-0-3);
  position: relative;
  font-family: var(--body-font);
}

.industry-tab:hover {
  color: var(--primary-color);
}

.industry-tab.active {
  color: var(--primary-color);
  border-bottom-color: var(--primary-color);
  background-color: var(--primary-50);
  border-radius: var(--radius-md) var(--radius-md) 0 0;
}

/* AI Service Tabs - Same styling as industry tabs */
.ai-service-tabs {
  display: flex;
  justify-content: center;
  gap: var(--space-2);
  margin-bottom: var(--space-10);
  flex-wrap: wrap;
  border-bottom: 2px solid var(--border-color);
  padding-bottom: var(--space-2);
}

.ai-service-tab {
  padding: var(--space-3) var(--space-6);
  background: transparent;
  border: none;
  border-bottom: 3px solid transparent;
  color: var(--text-color-secondary);
  font-size: var(--normal-font);
  font-weight: var(--font-medium);
  cursor: pointer;
  transition: all var(--tran-0-3);
  position: relative;
  font-family: var(--body-font);
}

.ai-service-tab:hover {
  color: var(--primary-color);
}

.ai-service-tab.active {
  color: var(--primary-color);
  border-bottom-color: var(--primary-color);
  background-color: var(--primary-50);
  border-radius: var(--radius-md) var(--radius-md) 0 0;
}

.ai-service-tab i {
  font-size: 2rem;
  margin-right: var(--space-2);
  vertical-align: middle;
}

/* AI Service Tab Content */
.ai-service-tab-content {
  position: relative;
  min-height: 400px;
}

.ai-service-panel {
  display: none;
  animation: fadeIn 0.3s ease-in;
}

.ai-service-panel.active {
  display: block;
}

/* Tab Content */
.industry-tab-content {
  position: relative;
  min-height: 400px;
}

.tab-panel {
  display: none;
  animation: fadeIn 0.3s ease-in;
}

.tab-panel.active {
  display: block;
}

@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(10px);
  }

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

.tab-content-wrapper {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-8);
  align-items: start;
}

@media (min-width: 992px) {
  .tab-content-wrapper {
    grid-template-columns: 50% 50%;
    gap: var(--space-8);
  }
}

.tab-header {
  display: flex;
  align-items: center;
  gap: var(--space-4);
  /* margin-bottom: var(--space-5); */
}

.tab-icon {
  /* width: 5.6rem;
  height: 5.6rem; */
  background-color: var(--primary-50);
  border-radius: var(--radius-lg);
  display: flex;
  align-items: center;
  justify-content: center;
  color: black;
  font-size: 2.8rem;
}

.tab-title {
  font-size: var(--h3-font);
  font-weight: var(--font-bold);
  color: var(--text-color);
  margin: 0;
}

.tab-description {
  font-size: var(--small-font);
  color: var(--text-color-secondary);
  line-height: var(--line-loose);
  /* margin-bottom: var(--space-6); */
}

.tab-capabilities {
  list-style: none;
  padding: 0;
  margin: 0;
}

.tab-capabilities li {
  display: flex;
  align-items: flex-start;
  gap: var(--space-3);
  padding: var(--space-3) 0;
  font-size: var(--normal-font);
  color: var(--text-color);
  line-height: var(--line-normal);
}

.tab-capabilities li i {
  color: var(--primary-color);
  font-size: 1.6rem;
  margin-top: 0.2rem;
  flex-shrink: 0;
}

.tab-content-right {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: var(--space-8);
  background-color: var(--bg-secondary);
  border-radius: var(--radius-xl);
  border: 1px solid var(--border-color);
}

.demo-text {
  font-size: var(--normal-font);
  color: var(--text-color-secondary);
  margin-bottom: var(--space-6);
  line-height: var(--line-normal);
}

.demo-button {
  display: inline-flex;
  align-items: center;
  gap: var(--space-2);
  padding: var(--space-4) var(--space-8);
  background-color: var(--text-color);
  color: #ffffff !important;
  border: none;
  border-radius: var(--radius-lg);
  font-size: var(--normal-font);
  font-weight: var(--font-medium);
  cursor: pointer;
  transition: all var(--tran-0-3);
  font-family: var(--body-font);
  box-shadow: var(--shadow-md);
}

.demo-button:hover {
  background-color: var(--primary-color);
  color: #ffffff !important;
  transform: translateY(-2px);
  box-shadow: var(--shadow-lg);
}

.demo-button i {
  font-size: 1.8rem;
  color: #ffffff !important;
}

/* Tab button icons */
.industry-tab i {
  font-size: 2rem;
  margin-right: var(--space-2);
  vertical-align: middle;
}

/* Video Placeholder Styling */
.tab-content-video {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: var(--space-6);
}

.video-placeholder {
  width: 100%;
  height: 100%;
  min-height: 400px;
  background: linear-gradient(135deg, var(--primary-50) 0%, var(--bg-secondary) 100%);
  border-radius: var(--radius-xl);
  border: 2px dashed var(--border-color);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: var(--space-4);
  padding: var(--space-8);
  transition: all var(--tran-0-3);
}

.video-placeholder:hover {
  border-color: var(--primary-color);
  background: linear-gradient(135deg, var(--primary-100) 0%, var(--bg-secondary) 100%);
}

.video-placeholder i {
  font-size: 8rem;
  color: var(--primary-color);
  opacity: 0.6;
}

.video-placeholder p {
  font-size: var(--h4-font);
  font-weight: var(--font-semi-bold);
  color: var(--text-color);
  margin: 0;
}

.placeholder-note {
  font-size: var(--small-font);
  color: var(--text-color-secondary);
  font-style: italic;
  padding: var(--space-2) var(--space-4);
  background-color: var(--bg-primary);
  border-radius: var(--radius-md);
}

/* Tab Content Details */
.tab-content-details {
  display: flex;
  flex-direction: column;
  gap: var(--space-2);
}



.details-title {
  font-size: var(--medium-font);
  font-weight: var(--font-semi-bold);
  color: var(--text-color);
  margin-bottom: var(--space-4);
}

.tab-details-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-3);
}

@media (min-width: 768px) {
  .tab-details-list {
    /* grid-template-columns: repeat(2, 1fr); */
    gap: var(--space-3) var(--space-4);
  }
}

.tab-details-list li {
  display: flex;
  align-items: flex-start;
  gap: var(--space-3);
  padding: var(--space-1);
  border-radius: var(--radius-md);
  border-left: 3px solid var(--primary-color);
  font-size: var(--small-font);
  color: var(--text-color);
  line-height: var(--line-normal);
  transition: all var(--tran-0-3);
}

.tab-details-list li:hover {
  /* background-color: var(--primary-50); */
  transform: translateX(5px);
}

.tab-details-list li i {
  color: var(--primary-color);
  font-size: 2rem;
  flex-shrink: 0;
  margin-top: 0.2rem;
}

.tab-content-details .demo-button {
  margin-top: var(--space-6);
  align-self: flex-start;
}

/* Video Button Group */
.video-button-group {
  display: flex;
  gap: var(--space-4);
  width: 100%;
  justify-content: center;
  flex-wrap: wrap;
}

.video-button-group .demo-button {
  margin: 0;
  /* flex: 1; */
  min-width: 180px;
  max-width: 250px;
}

.talk-ai-button {
  display: inline-flex;
  align-items: center;
  gap: var(--space-2);
  padding: var(--space-4) var(--space-8);
  background-color: var(--primary-color);
  color: #ffffff !important;
  border: none;
  border-radius: var(--radius-lg);
  font-size: var(--normal-font);
  font-weight: var(--font-medium);
  cursor: pointer;
  transition: all var(--tran-0-3);
  font-family: var(--body-font);
  box-shadow: var(--shadow-md);
}

.talk-ai-button:hover {
  background-color: var(--text-color);
  color: #ffffff !important;
  transform: translateY(-2px);
  box-shadow: var(--shadow-lg);
}

.talk-ai-button i {
  font-size: 1.8rem;
  color: #ffffff !important;
}


@media (max-width: 768px) {
  .industry-tabs {
    flex-direction: column;
    gap: var(--space-1);
  }

  .industry-tab {
    width: 100%;
    text-align: left;
    border-bottom: 1px solid var(--border-color);
    border-radius: var(--radius-md);
    margin-bottom: var(--space-1);
  }

  .industry-tab.active {
    border-radius: var(--radius-md);
    border-bottom-color: var(--primary-color);
  }

  .tab-content-wrapper {
    gap: var(--space-6);
  }

  .tab-content-right {
    padding: var(--space-6);
  }
}


/* ============================================
   UTILITY CLASSES
   For removing inline styles and ensuring consistency
   ============================================ */

/* Margin Utilities */
.ml-10 {
  margin-left: 1rem;
}

.mr-10 {
  margin-right: 1rem;
}

.mt-auto {
  margin-top: auto;
}

.mb-8 {
  margin-bottom: var(--space-8);
}

.mb-10 {
  margin-bottom: var(--space-10);
}

.mb-12 {
  margin-bottom: var(--space-12);
}

/* Padding Utilities */
.p-100 {
  padding: 10rem 2rem;
}

.p-section {
  padding: var(--space-16) var(--space-4);
}

@media (min-width: 768px) {
  .p-100 {
    padding: 10rem 2rem;
  }

  .p-section {
    padding: var(--space-20) var(--space-6);
  }
}

/* Text Utilities */
.text-center {
  text-align: center;
}

.text-white {
  color: var(--white-color);
}

/* FAQ SECTION */
.faq-section {
  background: linear-gradient(135deg, #f3f4f6 0%, #d1d5db 100%);
  padding: 0px 0;
}

.faq-section .section-title {
  color: var(--dark-bg) !important;
  text-align: center;
  margin-bottom: 60px;
  margin-top: 30px;
}

.faq-container {
  max-width: 900px;
  margin: 0 auto;
}

.faq-item {
  background: #fff;
  border: 1px solid #e5e5e5;
  border-radius: 12px;
  margin-bottom: 20px;
  overflow: hidden;
  transition: all 0.3s ease;
}

.faq-item:hover {
  border-color: var(--primary-color);
  box-shadow: 0 5px 15px rgba(20, 139, 249, 0.1);
}

.faq-question {
  padding: 25px 30px;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: background 0.3s ease;
}

.faq-question:hover {
  background: #f5f5f5;
}

.faq-question h3 {
  font-size: 1.5rem;
  color: var(--dark-bg);
  font-weight: 600;
  margin: 0;
  flex: 1;
  padding-right: 20px;
}

.faq-icon {
  font-size: 1.5rem;
  color: var(--primary-color);
  transition: transform 0.3s ease;
  flex-shrink: 0;
}

.faq-item.active .faq-icon {
  transform: rotate(180deg);
}

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

.faq-item.active .faq-answer {
  max-height: 500px;
  padding: 0 30px 25px 30px;
}

.faq-answer p {
  color: #525252;
  font-size: 1.2rem;
  line-height: 1.7;
  margin: 0;
}

@media (max-width: 768px) {
  .faq-section {
    padding: 60px 0;
  }

  .faq-question {
    padding: 20px;
  }

  .faq-question h3 {
    font-size: 1.2rem;
    padding-right: 15px;
  }

  .faq-answer,
  .faq-item.active .faq-answer {
    padding-left: 20px;
    padding-right: 20px;
  }
}

.text-primary {
  color: var(--primary-color);
}

/* CTA Section */
.cta-section {
  background: linear-gradient(135deg, #f3f4f6 0%, #d1d5db 100%);
  text-align: center;
  padding: 100px 20px;
}

.cta-section h2 {
  color: #000000;
  font-size: 2.5rem;
  margin-bottom: 20px;
}

.cta-section p {
  color: #000000;
  max-width: 600px;
  margin: 0 auto 40px;
}

.cta-section .button {
  background: #a39a9a;
  color: #000000;
  transition: all 0.3s ease;
}

.cta-section .button:hover {
  background: #222222;
  color: #ffffff;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}


/* VOICE AI SHOWCASE SECTION */
.industries-section {
  position: relative;
  padding: 80px 0;
}

.voice-ai-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 15px;
  margin-top: 40px;
  max-width: 1000px;
  margin-left: auto;
  margin-right: auto;
}

@media (max-width: 992px) {
  .voice-ai-grid {
    grid-template-columns: 1fr;
    padding: 0 20px;
  }
}

.voice-ai-card {
  background: rgba(255, 255, 255, 0.4);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-radius: 24px;
  padding: 35px;
  box-shadow: 0 8px 32px 0 rgba(31, 38, 135, 0.07);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  color: #1e293b;
  border: 1px solid rgba(255, 255, 255, 0.3);
  display: flex;
  flex-direction: column;
  gap: 10px;
  position: relative;
  overflow: hidden;
  cursor: pointer;
}

.voice-ai-card:hover {
  transform: translateY(-8px);
  background: rgba(255, 255, 255, 0.5);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.1);
}

.bg-play-icon {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-size: 10rem;
  color: var(--primary-color);
  opacity: 0.08;
  pointer-events: none;
  z-index: 0;
  transition: all 0.4s ease;
}

.voice-ai-card.playing .bg-play-icon {
  opacity: 0.15;
  transform: translate(-50%, -50%) scale(1.1);
}

.player-ui {
  display: flex;
  align-items: center;
  gap: 15px;
  background: rgba(0, 0, 0, 0.05);
  padding: 15px;
  border-radius: 16px;
  margin-bottom: 20px;
  position: relative;
  z-index: 1;
}

.voice-card-header {
  position: relative;
  z-index: 1;
}

.seekbar-container {
  flex-grow: 1;
  display: flex;
  flex-direction: column;
  gap: 5px;
}

.seekbar {
  width: 100%;
  height: 5px;
  -webkit-appearance: none;
  background: rgba(0, 0, 0, 0.1);
  border-radius: 10px;
  outline: none;
  cursor: pointer;
}

.seekbar::-webkit-slider-thumb {
  -webkit-appearance: none;
  width: 12px;
  height: 12px;
  background: #ffffff;
  border-radius: 50%;
  cursor: pointer;
}

.player-timing {
  display: flex;
  justify-content: space-between;
  font-size: 0.9rem;
  color: #64748b;
  font-weight: 500;
}

.recording-animation {
  display: flex;
  align-items: center;
  gap: 3px;
  height: 30px;
  width: 40px;
  justify-content: center;
  flex-shrink: 0;
}

.anim-bar {
  width: 3.5px;
  height: 8px;
  background: var(--primary-color);
  border-radius: 2px;
  opacity: 0.2;
}

.voice-ai-card.playing .anim-bar {
  animation: pulse 0.8s infinite alternate;
  opacity: 1;
}

@keyframes pulse {
  0% {
    height: 6px;
  }

  100% {
    height: 20px;
  }
}

.voice-ai-card.playing .anim-bar:nth-child(2) {
  animation-delay: 0.1s;
}

.voice-ai-card.playing .anim-bar:nth-child(3) {
  animation-delay: 0.2s;
}

.voice-ai-card.playing .anim-bar:nth-child(4) {
  animation-delay: 0.3s;
}

.voice-ai-card.playing .anim-bar:nth-child(5) {
  animation-delay: 0.4s;
}

.industry-label {
  grid-column: 1 / -1;
  font-size: 2rem;
  color: #000000;
  /* margin: 10px 0 20px 0; */
  display: flex;
  align-items: center;
  gap: 20px;
  font-weight: 700;
  border-bottom: 2px solid rgba(255, 255, 255, 0.1);
  /* padding-bottom: 20px; */
  letter-spacing: 0.5px;
  justify-content: center;
}

.industry-label i {
  color: black;
  font-size: 4.5rem;
}

.voice-card-header h3 {
  font-size: 1.5rem;
  font-weight: 800;
  margin-bottom: 8px;
  color: #0f172a;
}

.voice-card-header p {
  font-size: 1rem;
  color: #475569;
  line-height: 1.6;
  margin: 0;
}

.showcase-cta {
  display: flex;
  justify-content: center;
  margin-top: var(--space-4);
}

/* Background Utilities */
.bg-gradient-primary {
  background: linear-gradient(135deg, #148bf9 0%, #0c1521 100%);
}

.bg-white {
  background-color: var(--white-color);
}

/* Max Width Utilities */
.max-w-600 {
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

/* --- COPIED WHY CHOOSE SECTION STYLES --- */
:root {
  --primary-blue: #5c82ae;
  --accent-cyan: #1B3A5C;
  --dark-bg: #0c1521;
  --card-bg: #111d2e;
}

.why-choose-section {
  background: linear-gradient(135deg, #f3f4f6 0%, #d1d5db 100%);
  padding: 80px 0;
}

.why-choose-section .section-title {
  color: #000000 !important;
  text-align: center;
  margin-bottom: 60px;
}

.benefits-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
}

.benefit-card {
  background: linear-gradient(135deg, #f3f4f6 0%, #d1d5db 100%);
  border: 1px solid rgba(255, 255, 255, 0.05);
  padding: 40px 30px;
  border-radius: 20px;
  text-align: center;
  transition: all 0.3s ease;
  position: relative;
  margin: 0;
}

.benefit-card:hover {
  transform: translateY(-10px);
  border-color: gray;
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.2);
}

.benefit-icon {
  width: 70px;
  height: 70px;
  background: rgba(0, 0, 0, 0.1);
  border: 2px solid rgba(0, 0, 0, 0.247);
  border-radius: 25%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 25px;
  transition: all 0.3s ease;
}

.benefit-card:hover .benefit-icon {
  background: gray;
  transform: scale(1.1);
}

.benefit-icon i {
  font-size: 2rem;
  color: black;
  transition: color 0.3s ease;
}

.benefit-card:hover .benefit-icon i {
  color: #000000;
}

.benefit-card h3 {
  font-size: 2.1rem;
  color: #000000;
  margin-bottom: 15px;
  font-weight: 700;
}

.benefit-card p {
  text-align: justify;
  color: #000000;
  font-size: 1.5rem;
  line-height: 1.7;
}

@media (max-width: 768px) {
  .benefits-grid {
    grid-template-columns: 1fr;
  }

  .benefit-card {
    padding: 30px 20px;
  }

  .why-choose-section {
    padding: 60px 0;
  }

  .benefit-card h3 {
    font-size: 1.7rem;
  }

  .benefit-card p {
    font-size: 1.2rem;
  }
}

/* Contact Banner */
.contact-banner {
  padding-top: 100px;
  padding-bottom: 40px;
  /* background: linear-gradient(rgba(247, 247, 247, 0.733), rgba(88, 137, 201, 0.795)), url('../images/bgimg.PNG'); */
  text-align: center;
  border-bottom: 1px solid var(--border-color, #e5e5e5);
  background-size: cover;
  background-position: center;
}

.contact-banner .section-subtitle {
  font-size: 32px;
  color: var(--text-color, #333);
  margin: 0 0 1rem 0;
}

.contact-banner .section-description {
  max-width: 600px;
  margin: 0 auto;
  font-size: 1.5rem;
  color: #555;
}

@media (max-width: 768px) {
  .contact-banner {
    padding-top: 100px;
    padding-bottom: 40px;
  }

  .contact-banner .section-subtitle {
    font-size: 3.5rem;
  }
}


.xxx {
  /* background: linear-gradient(135deg, #f3f4f6 0%, #d1d5db 100%); */
  max-width: 1180px !important;
  display: grid;
  margin: 0 auto;
  /* padding: var(--space-8) var(--space-6); */

}



.row {
  display: flex;
  flex-wrap: wrap;
}

.column {
  width: 100%;
  padding: 0 1em 1em 1em;
  text-align: center;
}

.card {
  width: 100%;
  height: 100%;
  padding: 2.4rem 2rem;
  background: #ffffff;
  border-radius: 1.2rem;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1), 0 1px 2px 0 rgba(0, 0, 0, 0.06);
  border: 1px solid #e5e5e5;
  cursor: pointer;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
}

.card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 4px;
  height: 100%;
  background-color: var(--primary-color);
  transform: scaleY(0);
  transform-origin: bottom;
  transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.card:hover {
  transform: translateY(-4px);
  box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
  border-color: #c7d7fe;
}

.card:hover::before {
  transform: scaleY(1);
  transform-origin: top;
}

h3 {
  /* font-size: 1.8rem !important; */
  font-weight: 600;
  color: #171717;
  margin: 1.2rem 0 0.8rem 0;
  transition: color 0.3s;
}

.card:hover h3 {
  color: var(--primary-color);
}

p {
  color: #525252;
  font-size: 1.5rem;
  line-height: 1.6;
  letter-spacing: 0;
  transition: color 0.3s;
}

.card:hover p {
  color: #404040;
}

.icon-wrapper {
  background-color: #f0f4ff;
  position: relative;
  margin: 0 auto 1.6rem;
  font-size: 2.8rem;
  height: 5.6rem;
  width: 5.6rem;
  color: var(--primary-color);
  border-radius: 1.2rem;
  display: grid;
  place-items: center;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  border: 1px solid #e0e9ff;
}

.card:hover .icon-wrapper {
  background-color: var(--primary-color);
  color: #ffffff;
  transform: scale(1.05);
  border-color: var(--primary-color);
}

@media screen and (min-width: 768px) {
  section {
    padding: 0 2em;
  }

  .column {
    flex: 0 50%;
    max-width: 50%;
  }
}

@media screen and (min-width: 992px) {
  section {
    padding: 1em 3em;
  }

  .column {
    flex: 0 0 33.33%;
    max-width: 33.33%;
  }
}


.heading {
  text-align: center;
  margin-top: 1rem;
  margin-bottom: 5rem;
  font-size: 3.6rem;
  font-weight: 700;
  color: #171717;
  line-height: 1.2;
  letter-spacing: -0.02em;
}

.heading span {
  color: var(--primary-color);
}

/* ============================================
   FLOATING CALL BUTTON - "Talk to Provan"
   ============================================ */

.floating-call-btn {
  position: fixed;
  bottom: 20px;
  left: 20px;
  height: 50px;
  padding: 0 20px;
  background: var(--primary-color);
  border-radius: 25px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  box-shadow: 0 4px 20px rgba(27, 58, 92, 0.3);
  cursor: pointer;
  z-index: 999;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  text-decoration: none;
  overflow: visible;
  animation: pulse-ring 2s infinite;
}

/* Pulse animation */
@keyframes pulse-ring {
  0% {
    box-shadow: 0 4px 20px rgba(27, 58, 92, 0.3), 0 0 0 0 rgba(27, 58, 92, 0.4);
  }

  50% {
    box-shadow: 0 4px 20px rgba(27, 58, 92, 0.3), 0 0 0 10px rgba(27, 58, 92, 0);
  }

  100% {
    box-shadow: 0 4px 20px rgba(27, 58, 92, 0.3), 0 0 0 0 rgba(27, 58, 92, 0);
  }
}

/* Call icon */
.floating-call-btn i {
  font-size: 24px;
  color: var(--white-color);
  flex-shrink: 0;
}

/* Text label (hidden by default) */
.call-btn-text {
  color: var(--white-color);
  font-size: 15px;
  font-weight: 600;
  white-space: nowrap;
  opacity: 1;
  transition: all 0.3s ease;
}

/* Hover effects */
.floating-call-btn:hover {
  background: black;
  transform: scale(1.05);
  box-shadow: 0 6px 25px rgba(61, 139, 124, 0.4);
  animation: none;
}

.floating-call-btn:hover .call-btn-text {
  letter-spacing: 0.5px;
}

/* Active/Click effect */
.floating-call-btn:active {
  transform: scale(0.98);
}

/* Mobile responsive */
@media (max-width: 768px) {
  .floating-call-btn {
    height: 45px;
    padding: 0 16px;
    gap: 8px;
  }

  .floating-call-btn i {
    font-size: 20px;
  }

  .call-btn-text {
    font-size: 14px;
  }

  .call-btn-text {
    font-size: 13px;
  }
}

/* ============================================
   AI COWORKERS SECTION & MODALS
   ============================================ */

.ai-coworkers-section {
  background-color: #050a18;
  padding: var(--space-20) 0;
  color: var(--white-color);
}

.ai-coworkers-section .section-title {
  color: var(--white-color);
}

.ai-coworkers-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: var(--space-10);
  margin-top: var(--space-12);
}

.ai-coworker-card {
  position: relative;
  border-radius: var(--radius-2xl);
  overflow: hidden;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.1);
  transition: all var(--tran-0-5);
  height: 450px;
  cursor: pointer;
}

.ai-coworker-card:hover {
  transform: translateY(-10px);
  border-color: var(--primary-color-light);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
}

.coworker-image-wrapper {
  position: relative;
  width: 100%;
  height: 100%;
}

.coworker-image-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--tran-0-5);
}

.ai-coworker-card:hover .call-me-btn {
  background: var(--white-color) !important;
  color: #050a18 !important;
}

.coworker-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  padding: var(--space-6);
  background: linear-gradient(to top, rgba(5, 10, 24, 0.95) 0%, rgba(5, 10, 24, 0.4) 60%, transparent 100%);
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
}

.coworker-info h3 {
  font-size: var(--h3-font);
  font-weight: var(--font-bold);
  margin-bottom: var(--space-1);
  color: var(--white-color);
}

.coworker-info p {
  font-size: var(--small-font);
  color: rgba(255, 255, 255, 0.7);
  max-width: 250px;
}

.call-me-btn {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--space-1);
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.2);
  color: var(--white-color);
  padding: var(--space-3) var(--space-4);
  border-radius: var(--radius-xl);
  cursor: pointer;
  transition: all var(--tran-0-3);
  backdrop-filter: blur(8px);
}

.call-me-btn i {
  font-size: 2.4rem;
}

.call-me-btn span {
  font-size: var(--smaller-font);
  font-weight: var(--font-semi-bold);
}

.call-me-btn:hover {
  background: var(--white-color);
  color: #050a18;
}

/* Modal Overlay Styles */
.custom-modal-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.85);
  backdrop-filter: blur(10px);
  z-index: 5000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: var(--space-4);
}

.custom-modal {
  background: #0d111a;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--radius-2xl);
  width: 100%;
  max-width: 450px;
  padding: var(--space-10);
  position: relative;
  box-shadow: 0 30px 60px rgba(0, 0, 0, 0.5);
  animation: modalFadeIn 0.4s ease-out;
}

@keyframes modalFadeIn {
  from {
    opacity: 0;
    transform: translateY(20px);
  }

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

.modal-close {
  position: absolute;
  top: var(--space-5);
  right: var(--space-5);
  background: none;
  border: none;
  color: var(--white-color) !important;
  font-size: 2.8rem;
  cursor: pointer;
  transition: color var(--tran-0-3);
  z-index: 10;
}

.modal-close:hover {
  color: var(--white-color);
}

.modal-header {
  display: flex;
  align-items: center;
  gap: var(--space-4);
  margin-bottom: var(--space-8);
}

.modal-icon-bg {
  width: 45px;
  height: 45px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: var(--radius-lg);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary-color-light);
  font-size: 2.2rem;
}

.modal-header h3 {
  font-size: var(--h4-font);
  color: var(--white-color);
  font-weight: var(--font-bold);
}

.form-group {
  margin-bottom: var(--space-6);
}

.form-group label {
  display: block;
  margin-bottom: var(--space-2);
  font-size: var(--small-font);
  color: var(--white-color);
  font-weight: var(--font-semi-bold);
}

.form-group input {
  width: 100%;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.15);
  padding: var(--space-4);
  border-radius: var(--radius-lg);
  color: var(--white-color);
  transition: all var(--tran-0-3);
}

.form-group input:focus {
  border-color: var(--primary-color-light);
  background: rgba(255, 255, 255, 0.08);
}

.phone-input-wrapper {
  display: flex;
  gap: var(--space-1);
}

.country-code {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.15);
  padding: var(--space-4);
  border-radius: var(--radius-lg);
  color: var(--white-color);
  font-size: var(--normal-font);
  display: flex;
  align-items: center;
}

.modal-submit-btn {
  width: 100%;
  background: var(--white-color);
  color: #0d111a;
  border: none;
  padding: var(--space-4);
  border-radius: var(--radius-lg);
  font-size: var(--normal-font);
  font-weight: var(--font-bold);
  cursor: pointer;
  transition: all var(--tran-0-3);
  margin-top: var(--space-4);
}

.modal-submit-btn:hover {
  background: #f0f0f0;
  transform: translateY(-2px);
}

/* OTP Styles */
.otp-content {
  text-align: center;
}

.otp-content p {
  color: var(--white-color);
  font-size: var(--normal-font);
  margin-bottom: var(--space-6);
}

.otp-inputs {
  display: flex;
  justify-content: center;
  gap: var(--space-3);
  margin-bottom: var(--space-4);
}

.otp-field {
  width: 60px;
  height: 60px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid #ff4b2b;
  border-radius: var(--radius-lg);
  color: var(--white-color) !important;
  font-size: 2.4rem;
  text-align: center;
}

.otp-error {
  color: #ff4b2b;
  font-size: var(--small-font);
  margin-bottom: var(--space-6);
}

.resend-text {
  font-size: var(--small-font);
  color: var(--white-color);
  margin-top: var(--space-6);
}

.resend-text a {
  color: var(--white-color);
  text-decoration: underline;
  font-weight: var(--font-bold);
}

/* Error Message Styles */
.error-message-content {
  text-align: center;
}

.error-message-content p {
  color: rgba(255, 255, 255, 0.8);
  font-size: var(--normal-font);
  line-height: var(--line-normal);
  margin-bottom: var(--space-8);
}

/* Mobile responsive for grid */
@media screen and (max-width: 768px) {
  .ai-coworkers-grid {
    grid-template-columns: 1fr;
    gap: var(--space-6);
  }

  .ai-coworker-card {
    height: 400px;
  }
}

@media (max-width: 480px) {
  .floating-call-btn {
    height: 42px;
    padding: 0 14px;
    bottom: 15px;
    left: 15px;
  }

  .call-btn-text {
    font-size: 13px;
  }
}

/* --- NEW VOICE AI TABS & PLAYER STYLES --- */
.voice-ai-tabs-container {
  max-width: 1200px;
  margin: 40px auto;
  padding: 0 20px;
}

.voice-ai-tabs-nav {
  display: flex;
  justify-content: center;
  gap: 20px;
  margin-bottom: 40px;
  background: rgba(0, 0, 0, 0.200);
  padding: 10px;
  border-radius: 50px;
  width: fit-content;
  margin-left: auto;
  margin-right: auto;
}

.voice-tab-btn {
  padding: 12px 30px;
  border-radius: 40px;
  border: none;
  background: transparent;
  color: #64748b;
  font-size: 1.1rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  gap: 10px;
}

.voice-tab-btn i {
  font-size: 1.8rem;
}

.voice-tab-btn.active {
  background: var(--primary-color);
  color: white;
  box-shadow: 0 10px 20px rgba(27, 88, 255, 0.2);
}

.voice-tab-panel {
  display: none;
  animation: voiceFadeIn 0.5s ease;
}

.voice-tab-panel.active {
  display: block;
}

@keyframes voiceFadeIn {
  from {
    opacity: 0;
    transform: translateY(10px);
  }

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

/* Enhanced Voice Card */
.voice-ai-card {
  background: white;
  border: 1px solid rgba(0, 0, 0, 0.05);
  padding: 30px;
  border-radius: 24px;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.25);
  transition: all 0.3s ease;
}

.voice-ai-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08);
  border-color: var(--primary-color);
}

.voice-card-header {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-bottom: 25px;
}

.card-icon-wrapper {
  width: 60px;
  height: 60px;
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.8rem;
}

.card-icon-wrapper.inbound {
  background: rgba(27, 88, 255, 0.1);
  color: var(--primary-color);
}

.card-icon-wrapper.outbound {
  background: rgba(16, 185, 129, 0.1);
  color: #10b981;
}

.header-text h3 {
  font-size: 1.4rem;
  margin-bottom: 4px;
  color: #1e293b;
}

.header-text p {
  font-size: 1.15rem;
  color: #64748b;
}

/* Player Controls */
.player-controls {
  display: flex;
  align-items: center;
  gap: 15px;
  background: #f8fafc;
  padding: 15px 20px;
  border-radius: 16px;
}

.play-btn,
.stop-btn {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: none;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.2s ease;
  font-size: 1.2rem;
}

.play-btn {
  background: var(--primary-color);
  color: white;
}

.play-btn:hover {
  transform: scale(1.1);
  background: #1d4ed8;
}

.stop-btn {
  background: #e2e8f0;
  color: #64748b;
}

.stop-btn:hover {
  background: #cbd5e1;
  color: #1e293b;
}

.seekbar-container {
  flex-grow: 1;
}

.seekbar {
  width: 100%;
  height: 6px;
  -webkit-appearance: none;
  background: #e2e8f0;
  border-radius: 10px;
  outline: none;
  cursor: pointer;
}

.seekbar::-webkit-slider-thumb {
  -webkit-appearance: none;
  width: 14px;
  height: 14px;
  background: var(--primary-color);
  border-radius: 50%;
  border: 2px solid white;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.player-timing {
  display: flex;
  justify-content: space-between;
  font-size: 0.8rem;
  color: #94a3b8;
  margin-top: 6px;
  font-family: monospace;
}