  .solutions-page {
    min-height: 100vh;
    padding: 240px 3% 60px;
    background: transparent;
    position: relative;
  }

  .solutions-header {
    max-width: 1000px;
    margin: 0 auto 60px;
    text-align: center;
  }

  .solutions-header h1 {
    font-size: clamp(3rem, 6vw, 5rem);
    font-weight: 800;
    margin-bottom: 20px;
    background: linear-gradient(135deg, #D4AF37, #f2d675, #ffffff);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    letter-spacing: -0.02em;
  }

  .solutions-header p {
    font-size: 1.1rem;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.7);
    max-width: 700px;
    margin: 0 auto;
  }

  /* Bento Grid Layout */
  .bento-grid {
    max-width: 1600px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    grid-auto-rows: 240px;
    gap: 20px;
  }

  .bento-card {
    position: relative;
    border-radius: 32px;
    overflow: hidden;
    cursor: pointer;
    transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
    display: block; /* Ensure it works as an anchor */
    text-decoration: none; /* Remove underline */
  }

  /* Grid positioning */
  .bento-card:nth-child(1) { grid-column: span 3; grid-row: span 2; }
  .bento-card:nth-child(2) { grid-column: span 3; grid-row: span 2; }
  .bento-card:nth-child(3) { grid-column: span 2; grid-row: span 2; }
  .bento-card:nth-child(4) { grid-column: span 2; grid-row: span 2; }
  .bento-card:nth-child(5) { grid-column: span 2; grid-row: span 2; }
  .bento-card:nth-child(6) { grid-column: span 3; grid-row: span 2; }
  .bento-card:nth-child(7) { grid-column: span 3; grid-row: span 2; }

  .bento-card::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(212, 175, 55, 0.1), rgba(212, 175, 55, 0.05));
    opacity: 0;
    transition: opacity 0.6s ease;
  }

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

  /* Animated gradient backgrounds */
  .bento-card::after {
    content: '';
    position: absolute;
    inset: -50%;
    background: radial-gradient(circle at center, rgba(212, 175, 55, 0.15) 0%, transparent 70%);
    animation: rotate 10s linear infinite;
    opacity: 0;
    transition: opacity 0.6s ease;
  }

  .bento-card:hover::after {
    opacity: 1;
  }

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

  .card-inner {
    position: relative;
    width: 100%;
    height: 100%;
    padding: 40px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    background: linear-gradient(145deg, rgba(20, 20, 20, 0.9), rgba(10, 10, 10, 0.95));
    border: 2px solid rgba(255, 255, 255, 0.08);
    border-radius: 32px;
    transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 1;
    overflow: hidden;
  }

  .card-inner::before {
    content: '';
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    opacity: 0.15;
    transition: all 0.6s ease;
    z-index: -1;
  }

  .bento-card:hover .card-inner::before {
    opacity: 0.25;
    transform: scale(1.05);
  }

  /* Individual backgrounds */
  .bento-card:nth-child(1) .card-inner::before {
    background-image: url('../graphics/hotel.jpg');
  }

  .bento-card:nth-child(2) .card-inner::before {
    background-image: url('https://images.unsplash.com/photo-1534438327276-14e5300c3a48?w=800&q=80');
  }

  .bento-card:nth-child(3) .card-inner::before {
    background-image: url('https://images.unsplash.com/photo-1560518883-ce09059eeffa?w=800&q=80');
  }

  .bento-card:nth-child(4) .card-inner::before {
    background-image: url('https://images.unsplash.com/photo-1488646953014-85cb44e25828?w=800&q=80');
  }

  .bento-card:nth-child(5) .card-inner::before {
    background-image: url('https://images.unsplash.com/photo-1556742049-0cfed4f6a45d?w=800&q=80');
  }

  .bento-card:nth-child(6) .card-inner::before {
    background-image: url('https://images.unsplash.com/photo-1576091160550-2173dba999ef?w=800&q=80');
  }

  .bento-card:nth-child(7) .card-inner::before {
    background-image: url('https://images.unsplash.com/photo-1589829545856-d10d557cf95f?w=800&q=80');
  }

  .bento-card:hover .card-inner {
    border-color: rgba(212, 175, 55, 0.8);
    transform: scale(0.98);
  }

  .card-icon {
    width: 64px;
    height: 64px;
    margin-bottom: 20px;
    transition: transform 0.6s ease;
  }

  .card-icon svg,
  .card-icon i {
    width: 100%;
    height: 100%;
    color: #D4AF37;
  }

  .bento-card:hover .card-icon {
    transform: scale(1.1);
  }

  .bento-card:hover .card-icon svg,
  .bento-card:hover .card-icon i {
    color: #f2d675;
  }

  .card-content {
    margin-top: auto;
  }

  .card-title {
    font-size: clamp(1.5rem, 2.5vw, 2.2rem);
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 12px;
    line-height: 1.2;
  }

  .card-subtitle {
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.6);
    line-height: 1.5;
    margin-bottom: 16px;
  }

  .card-cta {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 0.85rem;
    font-weight: 600;
    color: #D4AF37;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    opacity: 1;
    transition: all 0.4s ease;
  }

  .bento-card:hover .card-cta {
    transform: translateX(4px);
  }

  .card-cta svg {
    width: 14px;
    height: 14px;
    transition: transform 0.3s ease;
  }

  .bento-card:hover .card-cta svg {
    transform: translateX(4px);
  }

  /* Full-screen Detail View Styles (Retained for possible reuse or if we keep the concept in subpages) */
  /* Adapted for static page use */
  
  .solutions-showcase {
    max-width: 1400px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 24px;
  }

  .solution-card {
    background: linear-gradient(145deg, rgba(30, 30, 30, 0.6), rgba(15, 15, 15, 0.8));
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: 24px;
    padding: 36px;
    position: relative;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  }

  .solution-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 4px;
    height: 0;
    background: linear-gradient(180deg, #D4AF37, #f2d675);
    transition: height 0.4s ease;
  }

  .solution-card:hover {
    border-color: rgba(212, 175, 55, 0.3);
    transform: translateX(8px);
  }

  .solution-card:hover::before {
    height: 100%;
  }

  .solution-num {
    display: inline-block;
    font-size: 3rem;
    font-weight: 900;
    background: linear-gradient(135deg, #D4AF37, #f2d675);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1;
    margin-bottom: 20px;
    opacity: 0.3;
  }

  .solution-card-title {
    font-size: 1.4rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 14px;
    line-height: 1.3;
  }

  .solution-card-desc {
    font-size: 0.98rem;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.65);
  }

  /* AI Calling Demo Section - Complete Redesign */
  .ai-demo-section {
    max-width: 1400px;
    margin: 160px auto 0;
    padding: 0;
    position: relative;
    overflow: visible;
    scroll-margin-top: 100px;
  }

  .demo-content-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
    padding: 0;
    position: relative;
  }

  .demo-content-wrapper::before {
    content: '';
    position: absolute;
    inset: -200px;
    background:
      radial-gradient(circle at 30% 50%, rgba(212, 175, 55, 0.2) 0%, transparent 40%),
      radial-gradient(circle at 70% 50%, rgba(242, 214, 117, 0.15) 0%, transparent 40%);
    filter: blur(100px);
    animation: demo-ambient 10s ease-in-out infinite alternate;
    pointer-events: none;
    z-index: -1;
  }

  @keyframes demo-ambient {
    0% { transform: translate(0, 0) scale(1); opacity: 0.5; }
    100% { transform: translate(20px, -20px) scale(1.1); opacity: 0.8; }
  }

  .demo-left {
    display: flex;
    flex-direction: column;
    gap: 32px;
  }

  .demo-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 20px;
    background: rgba(212, 175, 55, 0.15);
    border: 1px solid rgba(212, 175, 55, 0.3);
    border-radius: 999px;
    width: fit-content;
    backdrop-filter: blur(10px);
  }

  .demo-badge svg {
    width: 16px;
    height: 16px;
    stroke: #D4AF37;
    animation: lightning-pulse 2s ease-in-out infinite;
  }

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

  .demo-badge span {
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: #D4AF37;
  }

  .demo-title {
    font-size: clamp(2.5rem, 4vw, 3.8rem);
    font-weight: 900;
    line-height: 1.15;
    letter-spacing: -0.03em;
    color: #ffffff;
    margin: 0;
  }

  .demo-title-accent {
    display: block;
    background: linear-gradient(135deg, #f2d675 0%, #D4AF37 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
  }

  .demo-description {
    font-size: 1.15rem;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.6);
    margin: 0;
  }

  .demo-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin-top: 20px;
  }

  .demo-stat {
    display: flex;
    flex-direction: column;
    gap: 8px;
  }

  .stat-number {
    font-size: 2.5rem;
    font-weight: 900;
    background: linear-gradient(135deg, #ffffff 0%, #D4AF37 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1;
    font-variant-numeric: tabular-nums;
  }

  .stat-label {
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.5);
    text-transform: uppercase;
    letter-spacing: 0.05em;
    font-weight: 600;
  }

  .demo-right {
    display: flex;
    flex-direction: column;
    gap: 32px;
    position: relative;
  }

  .demo-audio-visualizer {
    width: 100%;
    background:
      linear-gradient(145deg, rgba(30, 30, 30, 0.9), rgba(15, 15, 15, 0.95));
    backdrop-filter: blur(20px);
    border-radius: 24px;
    border: 2px solid rgba(255, 255, 255, 0.1);
    padding: 32px;
    display: flex;
    flex-direction: column;
    gap: 28px;
    box-shadow:
      0 20px 40px rgba(0, 0, 0, 0.4),
      inset 0 1px 0 rgba(255, 255, 255, 0.05);
    margin-bottom: 32px;
  }

  .visualizer-header {
    display: flex;
    align-items: center;
    gap: 16px;
  }

  .visualizer-avatar {
    width: 56px;
    height: 56px;
    background: linear-gradient(135deg, rgba(212, 175, 55, 0.2), rgba(242, 214, 117, 0.1));
    border: 2px solid rgba(212, 175, 55, 0.4);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    position: relative;
    animation: avatar-pulse-subtle 3s ease-in-out infinite;
  }

  @keyframes avatar-pulse-subtle {
    0%, 100% { transform: scale(1); box-shadow: 0 0 0 0 rgba(212, 175, 55, 0.4); }
    50% { transform: scale(1.03); box-shadow: 0 0 0 8px rgba(212, 175, 55, 0); }
  }

  .visualizer-avatar svg {
    width: 28px;
    height: 28px;
    stroke: #D4AF37;
    stroke-width: 2;
  }

  .visualizer-info {
    display: flex;
    flex-direction: column;
    gap: 4px;
    flex: 1;
  }

  .visualizer-name {
    font-size: 1.2rem;
    font-weight: 700;
    color: #ffffff;
  }

  .visualizer-status {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.5);
    animation: status-blink 2s ease-in-out infinite;
  }

  @keyframes status-blink {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.5; }
  }

  .audio-bars {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 0;
    height: 80px;
    width: 100%;
  }

  .audio-bars span {
    flex: 1;
    background: linear-gradient(180deg, #f2d675, #D4AF37);
    border-radius: 999px;
    animation: audio-wave 2.5s ease-in-out infinite;
    margin: 0 2px;
  }

  .audio-bars span:nth-child(1) { animation: audio-wave-1 2.1s ease-in-out infinite; }
  .audio-bars span:nth-child(2) { animation: audio-wave-2 1.8s ease-in-out infinite; }
  .audio-bars span:nth-child(3) { animation: audio-wave-3 2.3s ease-in-out infinite; }
  .audio-bars span:nth-child(4) { animation: audio-wave-4 1.9s ease-in-out infinite; }
  .audio-bars span:nth-child(5) { animation: audio-wave-5 2.5s ease-in-out infinite; }
  .audio-bars span:nth-child(6) { animation: audio-wave-6 2.0s ease-in-out infinite; }
  .audio-bars span:nth-child(7) { animation: audio-wave-7 2.2s ease-in-out infinite; }
  .audio-bars span:nth-child(8) { animation: audio-wave-8 1.7s ease-in-out infinite; }
  .audio-bars span:nth-child(9) { animation: audio-wave-9 2.4s ease-in-out infinite; }
  .audio-bars span:nth-child(10) { animation: audio-wave-10 2.1s ease-in-out infinite; }
  .audio-bars span:nth-child(11) { animation: audio-wave-11 1.9s ease-in-out infinite; }
  .audio-bars span:nth-child(12) { animation: audio-wave-12 2.3s ease-in-out infinite; }
  .audio-bars span:nth-child(13) { animation: audio-wave-13 2.0s ease-in-out infinite; }
  .audio-bars span:nth-child(14) { animation: audio-wave-14 2.2s ease-in-out infinite; }
  .audio-bars span:nth-child(15) { animation: audio-wave-15 1.8s ease-in-out infinite; }
  .audio-bars span:nth-child(16) { animation: audio-wave-16 2.4s ease-in-out infinite; }
  .audio-bars span:nth-child(17) { animation: audio-wave-17 2.1s ease-in-out infinite; }
  .audio-bars span:nth-child(18) { animation: audio-wave-18 1.9s ease-in-out infinite; }
  .audio-bars span:nth-child(19) { animation: audio-wave-19 2.3s ease-in-out infinite; }
  .audio-bars span:nth-child(20) { animation: audio-wave-20 2.0s ease-in-out infinite; }

  @keyframes audio-wave-1 { 0%, 100% { height: 15px; } 50% { height: 65px; } }
  @keyframes audio-wave-2 { 0%, 100% { height: 25px; } 50% { height: 75px; } }
  @keyframes audio-wave-3 { 0%, 100% { height: 20px; } 50% { height: 50px; } }
  @keyframes audio-wave-4 { 0%, 100% { height: 30px; } 50% { height: 80px; } }
  @keyframes audio-wave-5 { 0%, 100% { height: 18px; } 50% { height: 60px; } }
  @keyframes audio-wave-6 { 0%, 100% { height: 22px; } 50% { height: 70px; } }
  @keyframes audio-wave-7 { 0%, 100% { height: 28px; } 50% { height: 78px; } }
  @keyframes audio-wave-8 { 0%, 100% { height: 16px; } 50% { height: 55px; } }
  @keyframes audio-wave-9 { 0%, 100% { height: 24px; } 50% { height: 68px; } }
  @keyframes audio-wave-10 { 0%, 100% { height: 20px; } 50% { height: 73px; } }
  @keyframes audio-wave-11 { 0%, 100% { height: 26px; } 50% { height: 62px; } }
  @keyframes audio-wave-12 { 0%, 100% { height: 19px; } 50% { height: 58px; } }
  @keyframes audio-wave-13 { 0%, 100% { height: 23px; } 50% { height: 72px; } }
  @keyframes audio-wave-14 { 0%, 100% { height: 21px; } 50% { height: 66px; } }
  @keyframes audio-wave-15 { 0%, 100% { height: 27px; } 50% { height: 76px; } }
  @keyframes audio-wave-16 { 0%, 100% { height: 17px; } 50% { height: 54px; } }
  @keyframes audio-wave-17 { 0%, 100% { height: 25px; } 50% { height: 70px; } }
  @keyframes audio-wave-18 { 0%, 100% { height: 22px; } 50% { height: 64px; } }
  @keyframes audio-wave-19 { 0%, 100% { height: 20px; } 50% { height: 57px; } }
  @keyframes audio-wave-20 { 0%, 100% { height: 24px; } 50% { height: 69px; } }

  /* FAQ Section - Ultra Modern */
  .faq-section {
    max-width: 1400px;
    margin: 140px auto 0;
    padding: 0;
    position: relative;
  }

  .faq-section::before {
    content: '';
    position: absolute;
    top: -100px;
    left: 50%;
    transform: translateX(-50%);
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(212, 175, 55, 0.08) 0%, transparent 70%);
    filter: blur(80px);
    pointer-events: none;
    z-index: -1;
  }

  .faq-container {
    width: 100%;
  }

  .faq-header {
    text-align: center;
    margin-bottom: 80px;
    position: relative;
  }

  .faq-header h2 {
    font-size: clamp(2.8rem, 5vw, 4rem);
    font-weight: 900;
    background: linear-gradient(135deg, #ffffff 0%, #f2d675 50%, #D4AF37 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 20px;
    letter-spacing: -0.03em;
    line-height: 1.1;
  }

  .faq-header p {
    font-size: 1.15rem;
    color: rgba(255, 255, 255, 0.6);
    max-width: 650px;
    margin: 0 auto;
    line-height: 1.6;
  }

  .faq-list {
    display: flex;
    flex-direction: column;
    gap: 20px;
    max-width: 1000px;
    margin: 0 auto;
  }

  .faq-item {
    background:
      linear-gradient(145deg, rgba(25, 25, 25, 0.4), rgba(10, 10, 10, 0.6)),
      radial-gradient(circle at top right, rgba(212, 175, 55, 0.02) 0%, transparent 60%);
    backdrop-filter: blur(20px) saturate(180%);
    -webkit-backdrop-filter: blur(20px) saturate(180%);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-left: 6px solid #c29442;
    border-radius: 0;
    transition: all 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
    position: relative;
    overflow: hidden;
    cursor: pointer;
  }

  .faq-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: -6px;
    width: 6px;
    height: 100%;
    background: linear-gradient(180deg, #c29442 0%, #d4af37 50%, #c29442 100%);
    opacity: 0;
    transition: opacity 0.5s ease;
  }

  .faq-item::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg,
      transparent 0%,
      #D4AF37 50%,
      transparent 100%);
    transform: scaleX(0);
    transition: transform 0.6s cubic-bezier(0.34, 1.56, 0.64, 1);
  }

  .faq-item:hover {
    border-color: rgba(212, 175, 55, 0.2);
    border-left-color: #c29442;
    transform: translateY(-4px);
    box-shadow:
      0 20px 40px rgba(0, 0, 0, 0.3),
      0 0 0 1px rgba(212, 175, 55, 0.1);
  }

  .faq-item:hover::before {
    opacity: 0.6;
  }

  .faq-item.active {
    border-color: rgba(212, 175, 55, 0.3);
    border-left-color: transparent;
    background:
      linear-gradient(145deg, rgba(30, 30, 30, 0.6), rgba(15, 15, 15, 0.8)),
      radial-gradient(circle at top right, rgba(212, 175, 55, 0.05) 0%, transparent 60%);
    box-shadow:
      0 24px 48px rgba(0, 0, 0, 0.4),
      inset 0 1px 0 rgba(255, 255, 255, 0.05);
  }

  .faq-item.active::before {
    opacity: 1;
  }

  .faq-item.active::after {
    transform: scaleX(1);
  }

  .faq-question {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 32px 40px;
    transition: all 0.3s ease;
    gap: 24px;
  }

  .faq-item:hover .faq-question h3 {
    color: #f2d675;
  }

  .faq-question h3 {
    font-size: 1.3rem;
    font-weight: 700;
    color: #ffffff;
    margin: 0;
    line-height: 1.4;
    flex: 1;
    letter-spacing: -0.01em;
    transition: color 0.3s ease;
  }

  .faq-icon {
    width: 32px;
    height: 32px;
    flex-shrink: 0;
    stroke: #D4AF37;
    stroke-width: 2.5;
    transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
    background: rgba(212, 175, 55, 0.1);
    border-radius: 50%;
    padding: 6px;
  }

  .faq-item:hover .faq-icon {
    background: rgba(212, 175, 55, 0.15);
    transform: scale(1.1);
  }

  .faq-item.active .faq-icon {
    transform: rotate(180deg) scale(1.1);
    background: rgba(212, 175, 55, 0.2);
    stroke: #f2d675;
  }

  .faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.5s cubic-bezier(0.4, 0, 0.2, 1), opacity 0.3s ease;
    opacity: 0;
  }

  .faq-item.active .faq-answer {
    max-height: 600px;
    opacity: 1;
  }

  .faq-answer p {
    font-size: 1.05rem;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.7);
    margin: 0;
    padding: 0 40px 32px 40px;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    padding-top: 24px;
  }

  .demo-compact-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
  }

  .demo-compact-form input[type="text"],
  .demo-compact-form input[type="tel"] {
    padding: 18px 24px;
    background: rgba(10, 10, 10, 0.8);
    border: 1.5px solid rgba(255, 255, 255, 0.08);
    border-radius: 16px;
    color: #ffffff;
    font-size: 0.95rem;
    font-weight: 500;
    transition: all 0.3s ease;
    outline: none;
    width: 100%;
  }

  .demo-compact-form input[type="text"]:focus,
  .demo-compact-form input[type="tel"]:focus {
    border-color: rgba(212, 175, 55, 0.5);
    background: rgba(15, 15, 15, 0.9);
    box-shadow: 0 0 0 3px rgba(212, 175, 55, 0.1);
  }

  .demo-compact-form input::placeholder {
    color: rgba(255, 255, 255, 0.3);
  }

  .demo-checkbox {
    display: flex;
    align-items: center;
    gap: 12px;
    cursor: pointer;
    padding: 16px 20px;
    background: rgba(10, 10, 10, 0.6);
    border: 1.5px solid rgba(255, 255, 255, 0.08);
    border-radius: 16px;
    transition: all 0.3s ease;
  }

  .demo-checkbox:hover {
    background: rgba(15, 15, 15, 0.8);
    border-color: rgba(212, 175, 55, 0.3);
  }

  .demo-checkbox input[type="checkbox"] {
    display: none;
  }

  .checkbox-custom {
    width: 24px;
    height: 24px;
    border: 2px solid rgba(212, 175, 55, 0.4);
    border-radius: 6px;
    position: relative;
    flex-shrink: 0;
    transition: all 0.3s ease;
  }

  .demo-checkbox input[type="checkbox"]:checked + .checkbox-custom {
    background: linear-gradient(135deg, #f2d675, #d4af37);
    border-color: #d4af37;
  }

  .demo-checkbox input[type="checkbox"]:checked + .checkbox-custom::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) rotate(45deg);
    width: 6px;
    height: 12px;
    border: solid #050505;
    border-width: 0 2.5px 2.5px 0;
  }

  .checkbox-label {
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.5;
  }

  .demo-action-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 18px 28px;
    background: linear-gradient(135deg, #f2d675 0%, #d4af37 100%);
    color: #050505;
    font-weight: 800;
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    border: none;
    border-radius: 16px;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
    box-shadow:
      0 10px 30px rgba(212, 175, 55, 0.4),
      inset 0 1px 0 rgba(255, 255, 255, 0.3);
    position: relative;
    overflow: hidden;
  }

  .demo-action-btn::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, #ffffff 0%, #f2d675 100%);
    opacity: 0;
    transition: opacity 0.3s ease;
  }

  .demo-action-btn:hover {
    transform: translateY(-4px) scale(1.02);
    box-shadow:
      0 20px 50px rgba(212, 175, 55, 0.6),
      inset 0 1px 0 rgba(255, 255, 255, 0.5);
  }

  .demo-action-btn:hover::before {
    opacity: 0.3;
  }

  .demo-action-btn span,
  .demo-action-btn svg {
    position: relative;
    z-index: 1;
  }

  .demo-action-btn svg {
    width: 20px;
    height: 20px;
    transition: transform 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
  }

  .demo-action-btn:hover svg {
    transform: scale(1.2) rotate(90deg);
  }

  @media (max-width: 1200px) {
    .bento-grid {
      grid-template-columns: repeat(4, 1fr);
    }

    .bento-card:nth-child(1) { grid-column: span 4; }
    .bento-card:nth-child(2) { grid-column: span 4; }
    .bento-card:nth-child(3) { grid-column: span 2; }
    .bento-card:nth-child(4) { grid-column: span 2; }
    .bento-card:nth-child(5) { grid-column: span 2; }
    .bento-card:nth-child(6) { grid-column: span 2; }
    .bento-card:nth-child(7) { grid-column: span 4; }
  }

  /* CTA Section */
  .other-segment-cta {
    max-width: 900px;
    margin: 100px auto 0;
    padding: 60px 50px 60px;
    background: linear-gradient(145deg, rgba(30, 30, 30, 0.8), rgba(15, 15, 15, 0.9));
    border: 2px solid rgba(212, 175, 55, 0.2);
    border-radius: 32px;
    text-align: center;
    position: relative;
    overflow: hidden;
  }

  .other-segment-cta::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 50% 0%, rgba(212, 175, 55, 0.1) 0%, transparent 60%);
    pointer-events: none;
  }

  .other-segment-cta h3 {
    font-size: clamp(2rem, 4vw, 2.8rem);
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 20px;
    position: relative;
    z-index: 1;
  }

  .other-segment-cta p {
    font-size: 1.1rem;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.75);
    margin-bottom: 35px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
    position: relative;
    z-index: 1;
  }

  .other-segment-cta .cta-button {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 16px 36px;
    margin-bottom: 20px;
    background: linear-gradient(135deg, #f2d675, #d4af37);
    color: #050505;
    font-weight: 700;
    font-size: 1rem;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    border-radius: 999px;
    text-decoration: none;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    z-index: 1;
    box-shadow: 0 8px 24px rgba(212, 175, 55, 0.3);
  }

  .other-segment-cta .cta-button:hover {
    transform: translateY(-4px);
    box-shadow: 0 16px 40px rgba(212, 175, 55, 0.4);
  }

  .other-segment-cta .cta-button svg {
    width: 18px;
    height: 18px;
    stroke: #050505;
    stroke-width: 2;
  }

  @media (max-width: 768px) {
    .solutions-page {
      padding: 120px 5% 60px;
    }

    .bento-grid {
      grid-template-columns: 1fr;
      grid-auto-rows: 280px;
      gap: 20px;
    }

    .bento-card {
      grid-column: span 1 !important;
      grid-row: span 1 !important;
    }

    .card-inner {
      padding: 28px;
    }

    .detail-container {
      padding: 80px 5%;
    }

    .detail-header {
      flex-direction: column;
      align-items: flex-start;
    }

    .solutions-showcase {
      grid-template-columns: 1fr;
    }

    .other-segment-cta {
      margin: 60px auto 0;
      padding: 40px 30px;
    }

    .other-segment-cta .cta-button {
      width: 100%;
      justify-content: center;
    }

    .ai-demo-section {
      margin: 80px auto 0;
      padding: 0 20px;
    }

    .demo-content-wrapper {
      grid-template-columns: 1fr;
      gap: 60px;
      padding: 60px 32px;
      border-radius: 40px;
    }

    .demo-left {
      gap: 24px;
    }

    .demo-badge {
      padding: 8px 16px;
    }

    .demo-badge svg {
      width: 14px;
      height: 14px;
    }

    .demo-badge span {
      font-size: 0.7rem;
    }

    .demo-title {
      font-size: clamp(2rem, 6vw, 2.8rem);
    }

    .demo-description {
      font-size: 1rem;
    }

    .demo-stats {
      grid-template-columns: repeat(3, 1fr);
      gap: 16px;
    }

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

    .stat-label {
      font-size: 0.75rem;
    }

    .demo-audio-visualizer {
      padding: 24px;
      margin-bottom: 24px;
      gap: 20px;
    }

    .visualizer-avatar {
      width: 48px;
      height: 48px;
    }

    .visualizer-avatar svg {
      width: 24px;
      height: 24px;
    }

    .visualizer-name {
      font-size: 1.1rem;
    }

    .visualizer-status {
      font-size: 0.85rem;
    }

    .audio-bars {
      height: 60px;
    }

    .audio-bars span {
      margin: 0 1px;
    }

    .demo-compact-form input[type="text"],
    .demo-compact-form input[type="tel"] {
      padding: 16px 20px;
      font-size: 0.9rem;
    }

    .demo-checkbox {
      padding: 14px 16px;
    }

    .checkbox-label {
      font-size: 0.9rem;
    }

    .demo-action-btn {
      width: 100%;
      padding: 18px 24px;
      font-size: 0.8rem;
    }

    .faq-section {
      margin: 80px auto 0;
      padding: 0 20px;
    }

    .faq-section::before {
      width: 400px;
      height: 400px;
    }

    .faq-header {
      margin-bottom: 50px;
    }

    .faq-header h2 {
      font-size: clamp(2rem, 6vw, 3rem);
    }

    .faq-header p {
      font-size: 1rem;
    }

    .faq-list {
      gap: 16px;
    }

    .faq-item {
      border-radius: 20px;
    }

    .faq-question {
      padding: 24px 28px;
      gap: 16px;
    }

    .faq-question h3 {
      font-size: 1.1rem;
    }

    .faq-icon {
      width: 28px;
      height: 28px;
      padding: 5px;
    }

    .faq-answer p {
      font-size: 0.98rem;
      padding: 20px 28px 28px 28px;
    }
  }
