/* ==========================================================================
   GEO-SURFACE PRO
   Geo-Surface Pro bonus banner and section styles
   ========================================================================== */

  /* Geo-Surface Pro Bonus Banner */
  .gsp-bonus-banner {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    padding: 1.5rem 2rem;
    background: linear-gradient(135deg, #0066FF 0%, #00D4FF 100%);
    border-radius: 16px;
    margin-bottom: 2rem;
    box-shadow: 0 10px 30px rgba(0, 102, 255, 0.3);
    animation: gspPulse 2s ease-in-out infinite;
    position: relative;
    overflow: hidden;
    text-decoration: none;
    cursor: pointer;
    transition: all 0.3s ease;
  }

  .gsp-bonus-banner:hover {
    transform: translateY(-2px);
    box-shadow: 0 15px 40px rgba(0, 102, 255, 0.5), 0 0 30px rgba(0, 212, 255, 0.3);
  }

  .gsp-bonus-banner::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(
      45deg,
      transparent 30%,
      rgba(255, 255, 255, 0.1) 50%,
      transparent 70%
    );
    animation: gspShine 3s linear infinite;
  }

  @keyframes gspPulse {
    0%, 100% {
      box-shadow: 0 10px 30px rgba(0, 102, 255, 0.3);
    }
    50% {
      box-shadow: 0 10px 40px rgba(0, 102, 255, 0.5), 0 0 30px rgba(0, 212, 255, 0.3);
    }
  }

  @keyframes gspShine {
    0% {
      transform: translateX(-100%) translateY(-100%) rotate(45deg);
    }
    100% {
      transform: translateX(100%) translateY(100%) rotate(45deg);
    }
  }

  .gsp-bonus-icon {
    font-size: 3rem;
    filter: drop-shadow(0 4px 8px rgba(0, 0, 0, 0.2));
    flex-shrink: 0;
    position: relative;
    z-index: 1;
  }

  .gsp-bonus-content {
    position: relative;
    z-index: 1;
    flex: 1;
  }

  .gsp-bonus-title {
    font-size: 1.5rem;
    font-weight: 900;
    color: var(--white);
    margin-bottom: 0.25rem;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
  }

  .gsp-bonus-value {
    font-size: 1.125rem;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.95);
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.1);
    margin-bottom: 0.5rem;
  }

  .gsp-bonus-link {
    font-size: 0.95rem;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.9);
    text-decoration: underline;
    text-underline-offset: 3px;
  }

  .gsp-bonus-banner:hover .gsp-bonus-link {
    color: var(--white);
  }

  @media (max-width: 639px) {
    .gsp-bonus-banner {
      flex-direction: column;
      text-align: center;
      gap: 1rem;
      padding: 1.5rem;
    }

    .gsp-bonus-icon {
      font-size: 2.5rem;
    }

    .gsp-bonus-title {
      font-size: 1.25rem;
    }

    .gsp-bonus-value {
      font-size: 1rem;
    }
  }

  /* Geo-Surface Pro Section - Redesigned */
  .geo-surface-pro-section {
    background: var(--gradient-mesh), linear-gradient(135deg, #0A0E27 0%, #1a1f3a 100%);
    color: var(--white);
    padding: 5rem 0;
    position: relative;
    overflow: hidden;
  }

  .geo-surface-pro-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background:
      radial-gradient(circle at 20% 30%, rgba(0, 102, 255, 0.15) 0%, transparent 50%),
      radial-gradient(circle at 80% 70%, rgba(0, 212, 255, 0.15) 0%, transparent 50%);
    pointer-events: none;
  }

  /* Header */
  .gsp-header {
    text-align: center;
    max-width: 900px;
    margin: 0 auto 4rem;
    position: relative;
    z-index: 1;
  }

  .gsp-badge {
    display: inline-block;
    background: linear-gradient(135deg, rgba(0, 102, 255, 0.2), rgba(0, 212, 255, 0.2));
    border: 1px solid rgba(0, 212, 255, 0.3);
    color: var(--secondary);
    padding: 0.5rem 1rem;
    border-radius: 50px;
    font-size: 0.875rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
  }

  .gsp-title {
    color: var(--white);
    margin-bottom: 1.5rem;
    line-height: 1.2;
  }

  .gsp-gradient {
    background: linear-gradient(135deg, #00D4FF 0%, #0066FF 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
  }

  .gsp-subtitle {
    font-size: 1.125rem;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.9);
  }

  .gsp-subtitle strong {
    color: var(--white);
  }

  .gsp-header-cta {
    margin-top: 2rem;
  }

  .btn-gsp-header {
    display: inline-block;
    padding: 1.25rem 3rem;
    background: var(--white);
    color: var(--primary);
    text-decoration: none;
    font-weight: 700;
    font-size: 1.125rem;
    border-radius: 12px;
    transition: all 0.3s ease;
    box-shadow: 0 10px 30px rgba(255, 255, 255, 0.3);
  }

  .btn-gsp-header:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(255, 255, 255, 0.4);
    background: rgba(255, 255, 255, 0.95);
  }

  /* Main Grid */
  .gsp-grid {
    display: grid;
    gap: 2rem;
    position: relative;
    z-index: 1;
  }

  @media (min-width: 768px) {
    .gsp-grid {
      grid-template-columns: repeat(2, 1fr);
      gap: 2rem;
    }
  }

  @media (min-width: 1024px) {
    .gsp-grid {
      grid-template-columns: repeat(3, 1fr);
      gap: 2.5rem;
    }
  }

  /* Hero Image - spans 2 columns on desktop */
  .gsp-hero-image {
    position: relative;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
    border: 1px solid rgba(255, 255, 255, 0.1);
    aspect-ratio: 16 / 9;
    transition: all 0.4s ease;
  }

  @media (min-width: 1024px) {
    .gsp-hero-image {
      grid-column: span 2;
    }
  }

  .gsp-hero-image:hover {
    transform: translateY(-8px);
    box-shadow: 0 30px 80px rgba(0, 0, 0, 0.6);
  }

  .gsp-hero-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
  }

  /* Features Column */
  .gsp-features-col {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.04));
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 16px;
    padding: 2rem;
  }

  .gsp-feature {
    display: flex;
    gap: 1rem;
    align-items: start;
  }

  .gsp-feature-icon {
    font-size: 2rem;
    flex-shrink: 0;
    filter: drop-shadow(0 4px 8px rgba(0, 0, 0, 0.3));
  }

  .gsp-feature-content h4 {
    color: var(--white);
    font-size: 1.125rem;
    font-weight: 700;
    margin-bottom: 0.25rem;
  }

  .gsp-feature-content p {
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.95rem;
    margin: 0;
    line-height: 1.5;
  }

  .gsp-tagline {
    font-size: 1rem;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.95);
    padding: 1rem;
    background: rgba(0, 212, 255, 0.1);
    border-left: 3px solid var(--secondary);
    border-radius: 8px;
    margin-top: auto;
  }

  .gsp-tagline strong {
    color: var(--white);
  }

  /* Image Gallery - 2 square images stacked */
  .gsp-gallery {
    display: grid;
    gap: 2rem;
    grid-template-columns: 1fr;
  }

  @media (min-width: 768px) and (max-width: 1023px) {
    .gsp-gallery {
      grid-column: span 2;
      grid-template-columns: repeat(2, 1fr);
    }
  }

  @media (min-width: 1024px) {
    .gsp-gallery {
      grid-row: span 2;
    }
  }

  .gsp-gallery-item {
    position: relative;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.5);
    border: 1px solid rgba(255, 255, 255, 0.1);
    aspect-ratio: 1 / 1;
    transition: all 0.4s ease;
  }

  .gsp-gallery-item:hover {
    transform: translateY(-6px);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.6);
  }

  .gsp-gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
  }

  /* Image Labels */
  .gsp-image-label {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.9), transparent);
    padding: 2rem 1.5rem 1rem;
    color: var(--white);
    font-size: 0.875rem;
    font-weight: 600;
    letter-spacing: 0.5px;
    text-transform: uppercase;
  }

  /* Bundle Card - spans 2 columns on desktop */
  .gsp-bundle-card {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.12), rgba(255, 255, 255, 0.08));
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 20px;
    padding: 2.5rem;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.4);
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
  }

  @media (min-width: 1024px) {
    .gsp-bundle-card {
      grid-column: span 2;
    }
  }

  .gsp-bundle-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--gradient-main);
  }

  .gsp-bundle-badge {
    display: inline-block;
    background: linear-gradient(135deg, #FFB800, #FF9500);
    color: var(--dark);
    padding: 0.5rem 1rem;
    border-radius: 50px;
    font-size: 0.875rem;
    font-weight: 700;
    margin-bottom: 1rem;
    align-self: flex-start;
  }

  .gsp-bundle-card h3 {
    color: var(--white);
    font-size: 1.75rem;
    font-weight: 800;
    margin-bottom: 0.5rem;
    line-height: 1.3;
  }

  .gsp-bundle-subhead {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.95rem;
    font-style: italic;
    margin-bottom: 1.5rem;
  }

  .gsp-bundle-description {
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.7;
    margin-bottom: 1.5rem;
    font-size: 1rem;
  }

  .gsp-bundle-description p {
    margin-bottom: 1rem;
  }

  .gsp-bundle-description p:last-child {
    margin-bottom: 0;
  }

  .gsp-bundle-description strong {
    color: var(--white);
    font-weight: 700;
  }

  .gsp-bundle-tagline {
    padding: 1.25rem;
    background: rgba(0, 212, 255, 0.1);
    border-left: 3px solid var(--secondary);
    border-radius: 8px;
    margin-bottom: 2rem;
    line-height: 1.6;
  }

  .gsp-bundle-tagline p {
    margin: 0.5rem 0;
    color: rgba(255, 255, 255, 0.95);
    font-size: 0.95rem;
  }

  .gsp-bundle-tagline p:first-child {
    margin-top: 0;
  }

  .gsp-bundle-tagline p:last-child {
    margin-bottom: 0;
  }

  .gsp-bundle-tagline strong {
    color: var(--white);
    font-weight: 700;
  }

  .gsp-bundle-ctas {
    display: flex;
    flex-direction: column;
    gap: 1rem;
  }

  .gsp-bundle-cta {
    display: block;
    text-align: center;
    padding: 1.25rem 2rem;
    background: var(--gradient-main);
    color: var(--white);
    text-decoration: none;
    font-weight: 700;
    font-size: 1.125rem;
    border-radius: 12px;
    transition: all 0.3s ease;
    box-shadow: 0 10px 30px rgba(0, 102, 255, 0.4);
  }

  .gsp-bundle-cta:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(0, 102, 255, 0.5);
  }

  .gsp-learn-more {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: var(--secondary);
    text-decoration: none;
    font-weight: 600;
    font-size: 1rem;
    transition: all 0.3s ease;
    gap: 0.5rem;
    padding: 0.75rem 1.5rem;
    border: 2px solid rgba(0, 212, 255, 0.3);
    border-radius: 12px;
    background: rgba(0, 212, 255, 0.05);
  }

  .gsp-learn-more:hover {
    gap: 0.75rem;
    color: var(--white);
    border-color: var(--secondary);
    background: rgba(0, 212, 255, 0.1);
  }
