/* Global Styles ------------------------------------------------------- */
:root {
    --bg-dark: #ffffff;
    --bg-metal-light: #f5f5f5;
    --bg-metal-dark: #fafafa;
     --accent-green: #27b15e;
    --accent-magenta: #ff4d56; 
    --accent-blue: #4d9dff;
    --text-main: #1a1a1a;
    --text-muted: #666666;
    --border-glass: rgba(0, 0, 0, 0.08);
    --shadow-glass: 0 2px 8px rgba(0, 0, 0, 0.08);
    --radius-lg: 4px;
    --radius-md: 3px;
    --radius-sm: 8px;
    --max-width: 1120px;
    --nav-height: 64px;
    --bs-body-bg: #ffffff;
    --bs-body-color: #1a1a1a;
    --bs-border-color: rgba(0, 0, 0, 0.08);
  }

  * {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
  }

  html, body {
    height: 100%;
    scroll-behavior: smooth;
  }

  body {
    font-family: "Space Grotesk", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    color: var(--text-main);
    background: rgb(247, 247, 244);
    background-attachment: fixed;
  }

  a {
    text-decoration: none;
    color: inherit;
  }

  /* Bootstrap Customization */
  .btn {
    font-family: "Space Grotesk", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    border-radius: var(--radius-sm);
    font-weight: 500;
    transition: transform 0.12s ease-out, box-shadow 0.12s ease-out, border-color 0.12s ease-out, background 0.12s ease-out;
  }

  .btn:hover {
    transform: translateY(-1px);
  }

  .btn-primary {
    background-color: transparent;
    border: 1px solid rgba(39, 177, 94, 0.6);
    color: var(--accent-green);
  }

  .btn-primary:hover {
    background-color: rgba(39, 177, 94, 0.1);
    border-color: rgba(39, 177, 94, 1);
  }

  .btn-secondary {
    background-color: #f5f5f5;
    border: 1px solid #e0e0e0;
    color: var(--text-main);
  }

  .btn-secondary:hover {
    background-color: #efefef;
    border-color: #d0d0d0;
  }

  .form-control, .form-select, textarea {
    background-color: #f5f5f5 !important;
    border-color: #e0e0e0 !important;
    color: var(--text-main) !important;
  }

  .form-control:focus, .form-select:focus, textarea:focus {
    background-color: #ffffff !important;
    border-color: var(--accent-green) !important;
    color: var(--text-main) !important;
    box-shadow: 0 0 0 3px rgba(39, 177, 94, 0.1) !important;
  }

  .form-label {
    color: #e5e7eb;
    font-weight: 500;
  }

  main {
    padding: 0 16px 64px;
  }

  .container {
    max-width: var(--max-width);
    margin: 0 auto;
  }

  /* Sticky Header ------------------------------------------------------ */

  header {
    position: sticky;
    padding-block: 12px;
    top: 0;
    z-index: 40;
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    background: rgba(255, 255, 255, 0.7);
    border-bottom: 1px solid rgba(255, 255, 255, 0.8);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1), inset 1px 1px 0 rgba(255, 255, 255, 0.5);
  }

  header .container .nav{
    display: flex;
    align-items: center;
  }

  .nav {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: var(--nav-height);
    position: relative;
  }

  @media (max-width: 899px) {
    .nav {
      justify-content: space-between;
    }
    
    .logo {
      position: absolute;
      left: 50%;
      transform: translateX(-50%);
      z-index: 1;
    }
    
    .nav-toggle {
      position: relative;
      z-index: 2;
    }
  }

  .logo {
    font-weight: 900;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    font-size: 2.4em;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    animation: text-color-pulse 20s ease-in-out infinite;
  }

  .logo-pulse {
    display: inline-block;
    width: 36px;
    height: 36px;
    border-radius: 999px;
    background: conic-gradient(from 180deg, var(--accent-green), var(--accent-blue), var(--accent-magenta), var(--accent-green));
    position: relative;
    overflow: hidden;
    animation: logo-color-cycle 20s ease-in-out infinite;
  }

  .logo-pulse::after {
    content: "";
    position: absolute;
    inset: 3px;
    border-radius: inherit;
    background: radial-gradient(circle at 30% 0%, #ffffff, #111319);
  }


  .highlight {
    background: linear-gradient(90deg, var(--accent-green), var(--accent-blue), var(--accent-magenta));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
  }

  .nav-menu {
    display: none;
    gap: 20px;
    font-size: 1.1rem;
    color: var(--text-muted);
  }

  .nav-menu a {
    position: relative;
    padding-bottom: 4px;
  }

  .nav-menu a::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, var(--accent-green), var(--accent-blue), var(--accent-magenta));
    transition: width 0.18s ease-out;
  }

  .nav-menu a:hover::after,
  .nav-menu a:focus-visible::after {
    width: 100%;
  }

  /* Services Dropdown */
  .nav-services {
    position: relative;
    display: flex;
    align-items: center;
  }

  .services-dropdown {
    display: flex;
    flex-direction: column;
    position: absolute;
    top: 100%;
    left: 0;
    background: #ffffff;
    border: 1px solid rgba(0, 0, 0, 0.1);
    border-radius: 12px;
    min-width: 200px;
    margin-top: 12px;
    z-index: 1000;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.15);
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.2s ease-out, visibility 0.2s ease-out;
    transition-delay: 0s, 1s;
  }

  .nav-services:hover .services-dropdown,
  .nav-services:focus-within .services-dropdown {
    opacity: 1;
    visibility: visible;
    transition-delay: 0s, 0s;
  }

  .services-dropdown a {
    display: block;
    padding: 12px 16px;
    color: var(--text-main);
    font-size: 0.95rem;
    font-weight: 500;
    border-bottom: 1px solid rgba(0, 0, 0, 0.08);
    transition: all 0.12s ease-out;
  }

  .services-dropdown a:last-child {
    border-bottom: none;
  }

  .services-dropdown a:hover {
    background: rgba(39, 177, 94, 0.1);
    color: var(--accent-green);
    padding-left: 20px;
  }

  .nav-services > a::after {
    content: "";
  }

  .nav-cta {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 8px 16px;
    border-radius: var(--radius-sm);
    font-size: 1.15rem;
    font-weight: 500;
    background: radial-gradient(circle at 0 0, rgba(77, 255, 122, 0.25), transparent 55%),
                linear-gradient(135deg, #111827, #020617);
    border: 1px solid rgba(160, 245, 207, 0.4);
    color: var(--accent-green);
    box-shadow: 0 0 0 1px rgba(15, 250, 155, 0.1);
    transition: transform 0.12s ease-out, box-shadow 0.12s ease-out, border-color 0.12s ease-out, background 0.12s ease-out;
    cursor: pointer;
  }

  .nav-cta:hover,
  .nav-cta:focus-visible {
    transform: translateY(-1px);
    border-color: rgba(160, 245, 207, 0.75);
    box-shadow: 0 0 0 1px rgba(77, 255, 122, 0.35), 0 12px 28px rgba(0, 0, 0, 0.55);
  }


  .nav-toggle {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    border-radius: 999px;
    border: 2px solid transparent;
    background: radial-gradient(circle at 30% 0%, #ffffff, #f5f5f5);
    cursor: pointer;
    position: relative;
    overflow: visible;
    z-index: 1;
  }

  /* Multicolor border for nav-toggle matching logo */
  .nav-toggle::before {
    content: '';
    position: absolute;
    inset: -2px;
    border-radius: inherit;
    padding: 2px;
    background: conic-gradient(
      from 180deg,
      var(--accent-green),
      var(--accent-blue),
      var(--accent-magenta),
      var(--accent-green)
    );
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    mask-composite: exclude;
    z-index: -1;
  }

  .nav-toggle span {
    width: 18px;
    height: 2px;
    border-radius: 999px;
    background: var(--text-main);
    position: relative;
    z-index: 2;
  }

  .nav-toggle span::before,
  .nav-toggle span::after {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    height: 2px;
    border-radius: inherit;
    background: inherit;
  }

  .nav-toggle span::before {
    top: -6px;
  }

  .nav-toggle span::after {
    bottom: -6px;
  }

  @media (min-width: 900px) {
    .nav-menu {
      display: flex;
    }
    .nav-toggle {
      display: none;
    }
  }

  /* Mobile menu (simple) */
  .nav-menu-mobile {
    display: none;
    flex-direction: column;
    gap: 12px;
    padding: 12px 0 18px;
    font-size: 0.95rem;
    max-height: 0;
    overflow: hidden;
    opacity: 0;
    transform: translateY(-12px);
    transition: opacity 0.3s ease-out, transform 0.3s ease-out, max-height 0.3s ease-out;
  }

  .nav-menu-mobile a {
    padding: 6px 0;
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
    color: var(--text-main);
    font-weight: 500;
  }

  @keyframes slideDownFadeIn {
    from {
      opacity: 0;
      transform: translateY(-12px);
    }
    to {
      opacity: 1;
      transform: translateY(0);
    }
  }

  @keyframes slideUpFadeOut {
    from {
      opacity: 1;
      transform: translateY(0);
    }
    to {
      opacity: 0;
      transform: translateY(-12px);
    }
  }

  @media (max-width: 899px) {
    .nav-menu-mobile[aria-expanded="true"] {
      display: flex;
      max-height: 500px;
      opacity: 1;
      transform: translateY(0);
      transition: opacity 0.3s ease-out, transform 0.3s ease-out, max-height 0.3s ease-out;
    }

    .nav-menu-mobile[aria-expanded="false"] {
      max-height: 0;
      opacity: 0;
      transform: translateY(-12px);
      transition: opacity 0.3s ease-out, transform 0.3s ease-out, max-height 0.3s ease-out;
    }

    .nav-services-mobile {
      position: relative;
    }

    .services-submenu-mobile {
      display: flex;
      flex-direction: column;
      background: rgba(255, 255, 255, 0.7);
      backdrop-filter: blur(20px);
      -webkit-backdrop-filter: blur(20px);
      border: 1px solid rgba(255, 255, 255, 0.8);
      border-radius: 12px;
      margin-top: 8px;
      padding: 0;
      box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1), inset 1px 1px 0 rgba(255, 255, 255, 0.5);
      max-height: 0;
      overflow: hidden;
      opacity: 0;
      transform: translateY(-8px);
      transition: max-height 0.3s ease-out, opacity 0.3s ease-out, transform 0.3s ease-out, padding 0.3s ease-out;
    }

    .services-submenu-mobile.active {
      max-height: 500px;
      opacity: 1;
      transform: translateY(0);
      padding: 12px 0;
      transition: max-height 0.3s ease-out, opacity 0.3s ease-out, transform 0.3s ease-out, padding 0.3s ease-out;
    }

    .services-submenu-mobile a {
      padding: 12px 16px;
      color: var(--text-main);
      text-decoration: none;
      border-bottom: 1px solid rgba(0, 0, 0, 0.08);
      font-size: 0.95rem;
      font-weight: 500;
    }

    .services-submenu-mobile a:last-child {
      border-bottom: none;
    }

    .services-submenu-mobile a:hover {
      color: var(--accent-green);
      background: rgba(39, 177, 94, 0.1);
    }
  }

  /* Hero --------------------------------------------------------------- */

  .hero {
    padding: 32px 0 40px;
  }





  .hero-grid {
    position: relative;
    display: grid;
    gap: 24px;
  }

  @media (min-width: 900px) {
    .hero {
      padding: 40px 0 56px;
    }
    .hero-shell {
      padding: 26px 26px 30px;
    }
    .hero-grid {
      grid-template-columns: minmax(0, 1.4fr) minmax(0, 1fr);
      align-items: center;
      gap: 32px;
    }
  }

  .hero-text h1 {
    margin-top: 16px;
    font-size: 2.5rem;
    line-height: 1.12;
    letter-spacing: -0.03em;
    color: var(--text-main);
  }

  .hero-sub {
    margin-top: 12px;
    font-size: 1.5rem;
    color: var(--text-muted);
    max-width: 34rem;
  }

  .hero-trusted {
    margin-top: 16px;
    display: flex;
    flex-wrap: wrap;
    color: var(--text-muted);
  }


  .btn-primary,
  .btn-secondary {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 10px 18px;
    border-radius: var(--radius-sm);
    font-weight: 500;
    cursor: pointer;
    transition: transform 0.12s ease-out, box-shadow 0.12s ease-out, border-color 0.12s ease-out, background 0.12s ease-out, color 0.12s ease-out;
    box-sizing: border-box;
    text-align: center;
  }
  
  .btn-primary > span,
  .btn-secondary > span {
    text-align: center;
  }

  /* Override display for submit buttons to ensure consistent height */
  .btn-submit-full,
  .btn-submit {
    display: flex !important;
  }

  .btn-primary {
    position: relative;
    background: linear-gradient(120deg, #0f172a, #020617);
    border: 2px solid transparent;
    color: var(--accent-green);
    box-shadow: 0 12px 28px rgba(0, 0, 0, 0.65);
    overflow: visible;
    z-index: 1;
    transition: box-shadow 0.6s cubic-bezier(0.4, 0, 0.2, 1);
  }

  /* Multicolor border */
  .btn-primary::before {
    content: '';
    position: absolute;
    inset: -2px;
    border-radius: inherit;
    padding: 2px;
    background: conic-gradient(
      from 0deg,
      var(--accent-green),
      var(--accent-blue),
      var(--accent-magenta),
      var(--accent-green)
    );
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    mask-composite: exclude;
    opacity: 0;
    transition: opacity 0.3s ease;
    z-index: -1;
  }

  /* Mobile: Use CSS variable for dynamic intensity */
  @media (max-width: 899px) {
    .btn-primary {
      --border-intensity: 0;
      --shadow-intensity: 0;
      box-shadow: 
        0 0 20px rgba(39, 177, 94, calc(0.4 * var(--shadow-intensity, 0))),
        0 0 40px rgba(77, 157, 255, calc(0.3 * var(--shadow-intensity, 0))),
        0 0 60px rgba(255, 77, 86, calc(0.2 * var(--shadow-intensity, 0))),
        0 12px 28px rgba(0, 0, 0, 0.65);
      transition: box-shadow 0.2s ease-out;
    }
    
    .btn-primary::before {
      opacity: var(--border-intensity, 0);
      transition: opacity 0.2s ease-out;
    }
    
    .btn-primary.is-centered {
      animation: shadow-pulse 3s ease-in-out infinite;
      animation-delay: 0.3s;
    }
  }


  @keyframes shadow-pulse {
    0%, 100% {
      box-shadow: 
        0 0 20px rgba(39, 177, 94, 0.4),
        0 0 40px rgba(77, 157, 255, 0.3),
        0 0 60px rgba(255, 77, 86, 0.2),
        0 12px 28px rgba(0, 0, 0, 0.65);
    }
    33% {
      box-shadow: 
        0 0 30px rgba(77, 157, 255, 0.5),
        0 0 50px rgba(255, 77, 86, 0.4),
        0 0 70px rgba(39, 177, 94, 0.3),
        0 12px 28px rgba(0, 0, 0, 0.65);
    }
    66% {
      box-shadow: 
        0 0 25px rgba(255, 77, 86, 0.5),
        0 0 45px rgba(39, 177, 94, 0.4),
        0 0 65px rgba(77, 157, 255, 0.3),
        0 12px 28px rgba(0, 0, 0, 0.65);
    }
  }

  @keyframes border-rotate {
    0% {
      transform: rotate(0deg);
    }
    100% {
      transform: rotate(360deg);
    }
  }

  /* Multicolor text gradient */
  .btn-primary > span {
    position: relative;
    z-index: 2;
    display: inline-block;
    background: linear-gradient(90deg, var(--accent-green), var(--accent-blue), var(--accent-magenta), var(--accent-green));
    background-size: 200% 100%;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: text-gradient-shift 3s linear infinite;
    line-height: 1.2;
  }

  /* On mobile, animate text when button is centered */
  @media (max-width: 899px) {
    .btn-primary > span {
      animation: none;
    }
    
    .btn-primary.is-centered > span {
      animation: text-gradient-shift 3s linear infinite;
    }
  }

  .btn-secondary > span {
    line-height: 1.2;
  }

  /* Fallback for button text without span */
  .btn-primary:not(:has(span)) {
    color: var(--accent-green);
  }

  @keyframes text-gradient-shift {
    0% {
      background-position: 0% 50%;
    }
    100% {
      background-position: 200% 50%;
    }
  }

  .btn-primary:hover::before,
  .btn-primary:focus-visible::before {
    opacity: 1;
  }


  .btn-primary:hover,
  .btn-primary:focus-visible {
    transform: translateY(-1px);
    box-shadow: 0 16px 36px rgba(0, 0, 0, 0.85);
    background: linear-gradient(120deg, #0f172a, #020617);
  }

  /* Fallback for browsers that don't support background-clip: text */
  @supports not (-webkit-background-clip: text) {
    .btn-primary > span {
      color: var(--accent-green);
      -webkit-text-fill-color: var(--accent-green);
      background: none;
    }
  }

  .btn-secondary {
    background: rgba(8, 47, 73, 0.3);
    border: 1px solid rgba(148, 163, 184, 0.7);
    color: var(--text-main);
  }

  .btn-secondary:hover,
  .btn-secondary:focus-visible {
    background: #e8e8e8;
    border-color: #c0c0c0;
    transform: translateY(-1px);
    color: var(--text-main);
  }

  .hero-trusted {
    margin-top: 16px;
    display: flex;
    flex-wrap: wrap;
    color: #333333;
  }

  @media (min-width: 900px) {
    .hero-trusted {
      color: var(--text-muted);
    }
  }

  .hero-trusted span {
    display: inline-flex;
    align-items: center;
    gap: 6px;
  }




  /* Sections ----------------------------------------------------------- */

  section {
    padding: 40px 0 40px;
  }

  section:first-of-type {
    padding-top: 40px;
  }

  section h2 {
    font-size: 2rem;
    margin-bottom: 10px;
    letter-spacing: -0.02em;
    color: var(--text-main);
  }

  section h3 {
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 12px;
    color: #000000;
  }

  article {
    display: block;
  }

  blockquote {
    margin: 0;
    padding: 0;
    border: none;
  }

  footer {
    margin-top: 16px;
  }

  .glass footer p {
    margin: 4px 0;
    font-size: 0.95rem;
    color: var(--text-muted);
  }

  section p.section-lead {
      font-size: 1.2rem;
    color: var(--text-muted);
    max-width: 40rem;
  }

  .section-grid-2 {
    display: grid;
    gap: 20px;
    
  }

  @media (min-width: 900px) {
    .section-grid-2 {
      grid-template-columns: minmax(0, 1.1fr) minmax(0, 1fr);
    }
  }

  .section-grid-3 {
    display: grid;
    gap: 20px;
    margin-top: 20px;
  }

  @media (min-width: 700px) {
    .section-grid-3 {
      grid-template-columns: repeat(2, minmax(0, 1fr));
    }
  }

  @media (min-width: 900px) {
    .section-grid-3 {
      grid-template-columns: repeat(4, minmax(0, 1fr));
    }
  }


  /* Glass cards generic */

  .glass {
    position: relative;
    background: rgba(255, 255, 255, 0.7);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.8);
    background-clip: padding-box;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1), inset 1px 1px 0 rgba(255, 255, 255, 0.5);
    transition: all 0.3s ease;
    padding: 2.8em 2.5em;
    z-index: 1;
  }

  .product-card {
    flex-direction: column;
    height: 100%;
    
    display: flex;
  }
  /* What We Check grid */

  .checks-grid {
    display: grid;
    gap: 14px;
    margin-top: 20px;
  }

  @media (min-width: 700px) {
    .checks-grid {
      grid-template-columns: repeat(2, minmax(0, 1fr));
    }
  }

  /* Spacing between buttons and cards */
  .hero-ctas {
    margin-top: 20px;
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 20px;
  }

  .spacing-top-40 {
    margin-top: 40px;
  }

  .spacing-top-32 {
    margin-top: 32px;
  }

  .spacing-top-24 {
    margin-top: 24px;
  }

  .spacing-bottom-16 {
    margin-bottom: 16px;
  }


  .check-card-meta {
    font-size: 1.1rem;
    color: #000000;
    margin-bottom: 6px;
    line-height: 1.6;
  }

  .card-title {
    font-weight: 600;
    font-size: 1.5rem;
    color: #000000;
    margin-bottom: 4px;
  }

  /* Pricing Grid */
  .pricing-grid {
    display: grid;
    gap: 18px;
    margin-top: 20px;
  }

  @media (min-width: 900px) {
    .pricing-grid {
      grid-template-columns: repeat(4, minmax(0, 1fr));
    }
  }

  @media (min-width: 900px) {
    .seo>.container>.pricing-grid {
      grid-template-columns: repeat(3, minmax(0, 1fr));
    }
  }

  /* Make pricing cards use flexbox for alignment */
  .pricing-grid .glass {
    display: flex;
    flex-direction: column;
    height: 100%;
  }

  .pricing-name {
    font-weight: 600;
    font-size: 1.2rem;
    color: #000000;
    margin-bottom: 8px;
    flex-shrink: 0;
  }

  .pricing-for {
    font-size: 0.9rem;
    color: var(--text-muted);
    margin-bottom: 12px;
    flex-shrink: 0;
  }

  .pricing-body {
    margin-top: 10px;
    font-size: 1rem;
    color: #000000;
    min-height: 70px;
    margin-bottom: 12px;
    flex-grow: 1;
  }

  .pricing-meta {
    margin-top: auto;
    font-size: 0.9rem;
    color: #000000;
    margin-bottom: 16px;
    flex-shrink: 0;
  }

  .pricing-grid .glass .btn-primary {
    margin-top: 0;
    margin-bottom: 12px;
    flex-shrink: 0;
  }



  .pricing-note {
    margin-top: 0;
    font-size: 0.85rem;
    color: var(--text-muted);
    flex-shrink: 0;
  }

  .price-text {
    font-size: 2rem;
    font-weight: 700;
    line-height: 1.1;
    color: var(--accent-green);
  }

  .stat-large-green {
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--accent-green);
    margin-bottom: 12px;
  }

  /* Pill List */
  .pill-list {
    margin-top: 12px;
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 8px;
  }

  .pill-list li {
    display: flex;
    align-items: flex-start;
    gap: 8px;
  }

  .pill-bullet {
    margin-top: 4px;
    width: 7px;
    height: 7px;
    border-radius: 999px;
    background: radial-gradient(circle at 30% 0, #ffffff, rgba(16, 16, 16, 0.6));
    box-shadow: 0 0 8px rgba(77, 110, 255, 0.85);
    flex-shrink: 0;
  }






  /* FAQ */

  .faq-wrapper {
    margin-top: 20px;
    display: grid;
    gap: 12px;
  }

  .faq-item {
    border-radius: 3px;
    border: 1px solid rgba(148, 163, 184, 0.35);
    padding: 12px 14px;
  }

  .faq-item h3.faq-q {
    font-size: 1.1rem;
    font-weight: 500;
    margin-bottom: 4px;
    color: #000000;
  }

  .faq-a {
    font-size: 1rem;
    color: #000000;
    margin: 0;
  }

  /* Final CTA section */

  .final-cta {
    margin-top: 26px;
  }

  .final-cta-grid {
    display: grid;
    gap: 12px;
    margin-top: 20px;
  }

  @media (min-width: 800px) {
    .final-cta-grid {
      grid-template-columns: minmax(0, 1.2fr) minmax(0, 1fr);
    }
  }

  .form-grid {
  
    display: grid;
    gap: 12px;
    font-size: 1rem;
  }

  .field {
    display: flex;
    flex-direction: column;
    gap: 4px;
  }

  .field label {
    color: var(--text-main);
    font-weight: 500;
    margin-bottom: 4px;
  }

  .field input,
  .field select,
  .field textarea {
    border-radius: 2px;
    border: 1px solid rgba(148, 163, 184, 0.65);
    background: rgba(15, 23, 42, 0.98);
    padding: 8px 10px;
    color: #ffffff;
    font: inherit;
  }

  .field input::placeholder,
  .field textarea::placeholder {
    color: rgba(255, 255, 255, 0.6);
    opacity: 1;
  }

  .field input:focus-visible,
  .field select:focus-visible,
  .field textarea:focus-visible {
    outline: 2px solid var(--accent-blue);
    outline-offset: 1px;
    background: rgba(15, 23, 42, 1);
    border-color: var(--accent-green);
  }

  .field select {
    color: #ffffff;
  }

  .field select option {
    background: rgba(15, 23, 42, 1);
    color: #ffffff;
  }

  .final-note {
    margin-top: 8px;
    font-size: 0.8rem;
    color: var(--text-muted);
  }

  /* Footer */

  footer {
    border-top: 1px solid rgba(0, 0, 0, 0.08);
    margin-top: 40px;
    padding: 40px 16px 26px;
    font-size: 0.8rem;
    color: var(--text-muted);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    background: #fafafa;
  }

  .footer-inner {
    max-width: var(--max-width);
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 10px;
  }

  @media (min-width: 800px) {
    .footer-inner {
      flex-direction: row;
      justify-content: space-between;
      align-items: center;
    }
  }

  .footer-links {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
  }

  .footer-links a {
    color: var(--text-muted);
  }

  .footer-links a:hover,
  .footer-links a:focus-visible {
    color: var(--text-main);
  }



  @keyframes card-glow-rotate {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
  }

  @keyframes card-border-rotate {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
  }

  @keyframes logo-color-cycle {
    0%, 100% {
      background: conic-gradient(from 180deg, var(--accent-green), var(--accent-green), var(--accent-green), var(--accent-green));
      box-shadow: 0 0 20px rgba(77, 255, 122, 0.6);
    }
    25% {
      background: conic-gradient(from 180deg, var(--accent-blue), var(--accent-blue), var(--accent-blue), var(--accent-blue));
      box-shadow: 0 0 20px rgba(77, 208, 255, 0.6);
    }
    50% {
      background: conic-gradient(from 180deg, rgba(255, 77, 98, 0.6), rgba(255, 77, 98, 0.6), rgba(255, 77, 98, 0.6), rgba(255, 77, 98, 0.6));
      box-shadow: 0 0 20px rgba(255, 77, 98, 0.6);
    }
    75% {
      background: conic-gradient(from 180deg, var(--accent-green), var(--accent-blue), rgba(255, 77, 98, 0.6), var(--accent-green));
      box-shadow: 0 0 20px rgba(77, 255, 122, 0.4);
    }
  }

  @keyframes text-color-pulse {
    0%, 100% { color: var(--accent-green); text-shadow: 0 0 10px rgba(77, 255, 122, 0.5); }
    25% { color: var(--accent-blue); text-shadow: 0 0 10px rgba(77, 208, 255, 0.5); }
    50% { color: rgba(255, 77, 98, 0.6); text-shadow: 0 0 10px rgba(255, 77, 98, 0.6); }
    75% { color: var(--accent-green); text-shadow: 0 0 10px rgba(77, 255, 122, 0.3); }
  }

  /* Body Text */
  .text-muted-minimal {
    color: var(--text-muted);
    font-size: 0.95rem;
    margin-bottom: 16px;
  }

  /* Testimonials */
  .testimonial-quote {
    font-size: 1rem;
    font-style: italic;
    color: var(--text-muted);
    margin-bottom: 16px;
  }

  /* Headings */
  
  .heading-large {
    font-size: 1.8rem;
    margin-bottom: 16px;
  }


  /* Buttons */
  .btn-submit-full {
    width: 100%;
    padding: 14px 20px;
    margin-bottom: 0;
    font-size: 1.1rem;
    border: none;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-sizing: border-box;
  }

  .btn-submit {
    width: 100%;
    padding: 14px 20px;
    font-size: 1.1rem;
    border: none;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-sizing: border-box;
  }

  .btn-secondary-spacer {
    padding: 12px 24px;
    font-size: 1rem;
    border: none;
    cursor: pointer;
  }




  .text-center-standard {
    text-align: center;
  }

  .spacing-top-40 {
    margin-top: 40px;
  }

  .spacing-top-32 {
    margin-top: 32px;
  }

  .spacing-top-24 {
    margin-top: 24px;
  }

  .spacing-bottom-16 {
    margin-bottom: 16px;
  }

  /* Flexbox */

  .footer {
    display: flex;
    flex-direction: column;
    gap: 4px;
  }