 /* ================================
    TheApprovalTeam - Vanilla CSS Export
    ================================ */
 
 /* CSS Variables (Design Tokens) */
:root {
  /* Match logo: charcoal + deep green with soft mint tints */

  /* Base */
  --background: hsl(150, 20%, 98%);          /* subtle green-tinted white */
  --foreground: hsl(220, 10%, 10%);          /* near-charcoal */

  --card: hsl(0, 0%, 100%);
  --card-foreground: hsl(220, 10%, 10%);

  /* Primary = logo green (approx #16633B) */
  --primary: hsl(149, 64%, 28%);
  --primary-foreground: hsl(0, 0%, 100%);

  /* Secondary = mint tint for surfaces */
  --secondary: hsl(150, 25%, 95%);
  --secondary-foreground: hsl(149, 55%, 22%);

  /* Muted neutrals (less blue, more slate/green-neutral) */
  --muted: hsl(150, 10%, 93%);
  --muted-foreground: hsl(215, 10%, 42%);

  /* Accent = brighter “check” highlight green */
  --accent: hsl(149, 65%, 36%);
  --accent-foreground: hsl(0, 0%, 100%);

  /* Destructive stays red */
  --destructive: hsl(0, 84%, 60%);
  --destructive-foreground: hsl(0, 0%, 100%);

  /* Borders / Inputs (neutral, slightly green) */
  --border: hsl(150, 12%, 86%);
  --input: hsl(150, 12%, 86%);
  --ring: hsl(149, 64%, 28%);

  --radius: 0.75rem;

  /* Extended Palette */
  --success: hsl(149, 64%, 28%);
  --success-foreground: hsl(0, 0%, 100%);

  --warning: hsl(38, 92%, 50%);
  --warning-foreground: hsl(0, 0%, 100%);

  --star-gold: hsl(45, 100%, 51%);

  /* Gradients (swap blues → charcoal + green) */
  --gradient-hero: linear-gradient(
    135deg,
    hsl(220, 12%, 12%) 0%,
    hsl(220, 10%, 18%) 45%,
    hsl(149, 64%, 28%) 100%
  );
  --gradient-primary: linear-gradient(
    135deg,
    hsl(149, 64%, 28%) 0%,
    hsl(149, 65%, 36%) 100%
  );
  --gradient-cta: linear-gradient(
    135deg,
    hsl(149, 65%, 36%) 0%,
    hsl(150, 45%, 40%) 100%
  );

  /* Shadows (keep neutral) */
  --shadow-sm: 0 1px 2px 0 rgba(15, 23, 42, 0.05);
  --shadow-md: 0 4px 6px -1px rgba(15, 23, 42, 0.1), 0 2px 4px -2px rgba(15, 23, 42, 0.1);
  --shadow-lg: 0 10px 15px -3px rgba(15, 23, 42, 0.1), 0 4px 6px -4px rgba(15, 23, 42, 0.1);
  --shadow-xl: 0 20px 25px -5px rgba(15, 23, 42, 0.1), 0 8px 10px -6px rgba(15, 23, 42, 0.1);

  /* Glow matches primary green */
  --shadow-glow: 0 0 30px rgba(22, 99, 59, 0.28);

  /* Thank You */
  --ty-background: hsl(160, 10%, 6%);
  --ty-foreground: hsl(0, 0%, 98%);
  --ty-card: hsl(160, 8%, 10%);
  --ty-primary: hsl(152, 55%, 38%);
  --ty-primary-foreground: hsl(0, 0%, 100%);
  --ty-muted-foreground: hsl(160, 5%, 60%);
  --ty-border: hsl(160, 6%, 20%);
  --ty-radius: 0.75rem;
}
 
 /* Reset & Base */
 *, *::before, *::after {
   box-sizing: border-box;
   margin: 0;
   padding: 0;
 }
 
 html {
   scroll-behavior: smooth;
 }
 
 body {
   font-family: 'Inter', system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
   background-color: var(--background);
   color: var(--foreground);
   line-height: 1.6;
   -webkit-font-smoothing: antialiased;
   -moz-osx-font-smoothing: grayscale;
 }
 
 h1, h2, h3, h4, h5, h6 {
   font-weight: 700;
   letter-spacing: -0.025em;
   line-height: 1.2;
 }
 
 a {
   text-decoration: none;
   color: inherit;
 }
 
 img {
   max-width: 100%;
   height: auto;
   display: block;
 }
 
 ul {
   list-style: none;
 }
 
 /* Container */
 .container {
   max-width: 1400px;
   margin: 0 auto;
   padding: 0 2rem;
 }
 
 /* Typography */
 .text-gradient {
   background: var(--gradient-primary);
   -webkit-background-clip: text;
   -webkit-text-fill-color: transparent;
   background-clip: text;
 }
 
 .text-muted {
   color: var(--muted-foreground);
 }
 
 .text-primary {
   color: var(--primary);
 }
 
 .text-accent {
   color: var(--accent);
 }
 
 .text-white {
   color: white;
 }
 
 /* Flex Utilities */
 .flex {
   display: flex;
 }
 
 .flex-col {
   flex-direction: column;
 }
 
 .items-center {
   align-items: center;
 }
 
 .items-start {
   align-items: flex-start;
 }
 
 .justify-center {
   justify-content: center;
 }
 
 .justify-between {
   justify-content: space-between;
 }
 
 .gap-1 { gap: 0.25rem; }
 .gap-2 { gap: 0.5rem; }
 .gap-3 { gap: 0.75rem; }
 .gap-4 { gap: 1rem; }
 .gap-6 { gap: 1.5rem; }
 .gap-8 { gap: 2rem; }
 .gap-12 { gap: 3rem; }
 
 .flex-wrap {
   flex-wrap: wrap;
 }
 
 .flex-shrink-0 {
   flex-shrink: 0;
 }
 
 .flex-grow {
   flex-grow: 1;
 }
 
 /* Grid */
 .grid {
   display: grid;
 }
 
 .grid-cols-2 {
   grid-template-columns: repeat(2, 1fr);
 }
 
 @media (min-width: 768px) {
   .md-grid-cols-2 {
     grid-template-columns: repeat(2, 1fr);
   }
   .md-grid-cols-3 {
     grid-template-columns: repeat(3, 1fr);
   }
   .md-grid-cols-4 {
     grid-template-columns: repeat(4, 1fr);
   }
 }
 
 @media (min-width: 1024px) {
   .lg-grid-cols-2 {
     grid-template-columns: repeat(2, 1fr);
   }
   .lg-grid-cols-3 {
     grid-template-columns: repeat(3, 1fr);
   }
   .lg-grid-cols-4 {
     grid-template-columns: repeat(4, 1fr);
   }
 }
 
 @media (min-width: 1280px) {
   .xl-grid-cols-4 {
     grid-template-columns: repeat(4, 1fr);
   }
 }
 
 /* Header Styles */
 .header-top {
   background: var(--gradient-hero);
   color: white;
   padding: 0.5rem 1rem;
 }

  @media (max-width: 768px) {
    .header-top .container{
      justify-content: center;
    }
    .header-top #locations {
      display: none;
    }
 }
 
 .header-top a:hover {
   color: var(--accent);
 }
 
 .header-nav {
   background: white;
   box-shadow: var(--shadow-md);
   position: sticky;
   top: 0;
   z-index: 50;
 }
 
 .header-nav-inner {
   display: flex;
   align-items: center;
   justify-content: space-between;
   height: 5rem;
 }
 
 .logo {
   display: flex;
   align-self: start;
   align-items: center;
   background: white;
   padding: 1em;
   margin-bottom: -1em;
   border-bottom-left-radius: 10px;
   border-bottom-right-radius: 10px;
   border: 2px solid var(--border);
   border-top: 0px !important;
 }

 .logo img {
  width: auto;
  height: 80px;
 }
 
 .nav-links {
   display: none;
   align-items: center;
   gap: 2rem;
 }
 
 @media (min-width: 1024px) {
   .nav-links {
     display: flex;
     margin-left: auto;
     margin-right: 2rem;
   }
 }
 
 .nav-link {
   font-weight: 500;
   color: var(--foreground);
   transition: color 0.3s;
   position: relative;
 }
 
 .nav-link::after {
   content: '';
   position: absolute;
   bottom: -2px;
   left: 0;
   width: 0;
   height: 2px;
   background: var(--primary);
   transition: width 0.3s;
 }
 
 .nav-link:hover {
   color: var(--primary);
 }
 
 .nav-link:hover::after {
   width: 100%;
 }
 
 .nav-link.active {
   color: var(--primary);
 }
 
 .header-actions {
   display: none;
   align-items: center;
   gap: 1rem;
 }
 
 @media (min-width: 768px) {
   .header-actions {
     display: flex;
   }
 }

 @media (max-width: 1024px) {
   .header-actions .btn-primary {
     display: none !important;
   }
 }
 
 .header-action-icon {
   display: none !important;
   color: var(--muted-foreground);
   transition: color 0.3s;
 }
 
 .header-action-icon:hover {
   color: var(--primary);
 }
 
 /* Mobile Menu */
 .mobile-menu-btn {
   display: block;
   padding: 0.5rem;
   background: none;
   border: none;
   cursor: pointer;
 }
 
 @media (min-width: 1024px) {
   .mobile-menu-btn {
     display: none;
   }
 }
 
 .mobile-menu {
   display: none;
   background: white;
   border-top: 1px solid var(--border);
   padding: 2.5rem 1rem 1rem 1rem;
 }
 
 .mobile-menu.open {
   display: block;
 }
 
 .mobile-menu a:not(.btn) {
   display: block;
   padding: 0.5rem 0;
   font-weight: 500;
 }
 
 /* Hero Section */
 .hero {
   background: var(--gradient-hero);
   position: relative;
   overflow: hidden;
 }

 .hero.long {
  min-height: 70vh;
 }
 
 /* .hero-diagonal {
   clip-path: polygon(0 0, 100% 0, 100% 85%, 0 100%);
 } */
 
 .hero-content {
   padding: 4rem 0 6rem;
 }
 
 @media (min-width: 768px) {
   .hero-content {
     padding: 6rem 0 8rem;
   }
 }
 
 .hero-grid {
   display: grid;
   gap: 3rem;
   align-items: center;
 }
 
 @media (min-width: 1024px) {
   .hero-grid {
     grid-template-columns: 1fr 1fr;
   }
 }
 
 .hero h1 {
   font-size: 2.5rem;
   color: white;
   margin-bottom: 1.5rem;
 }
 
 @media (min-width: 768px) {
   .hero h1 {
     font-size: 3rem;
   }
 }
 
 @media (min-width: 1024px) {
   .hero h1 {
     font-size: 3.75rem;
   }
 }

 .hero-left {
  padding: 0 1rem;
 }
 
 .hero-text {
   font-size: 1.125rem;
   color: rgba(255, 255, 255, 0.8);
   max-width: 36rem;
   margin-bottom: 1.5rem;
 }
 
 .hero-image {
   filter: drop-shadow(0 25px 25px rgba(0, 0, 0, 0.25));
   animation: float 3s ease-in-out infinite;
 }
 
 @keyframes float {
   0%, 100% { transform: translateY(0); }
   50% { transform: translateY(-10px); }
 }
 
 @keyframes fadeInUp {
   from {
     opacity: 0;
     transform: translateY(20px);
   }
   to {
     opacity: 1;
     transform: translateY(0);
   }
 }
 
 .animate-fade-in-up {
   animation: fadeInUp 0.6s ease-out forwards;
 }
 
 /* Trust Badge */
 .trust-badge {
   display: inline-flex;
   align-items: center;
   gap: 0.5rem;
   padding: 0.5rem 1rem;
   border-radius: 9999px;
   background: rgba(255, 255, 255, 0.1);
   backdrop-filter: blur(8px);
   color: white;
   font-size: 0.875rem;
   font-weight: 500;
 }
 
 /* Buttons */
 .btn {
   display: inline-flex;
   align-items: center;
   justify-content: center;
   gap: 0.5rem;
   padding: 0.625rem 1.5rem;
   font-size: 0.875rem;
   font-weight: 600;
   border-radius: var(--radius);
   border: none;
   cursor: pointer;
   transition: all 0.3s;
 }
 
 .btn-primary {
   background: var(--gradient-primary);
   color: white;
 }
 
 .btn-primary:hover {
   box-shadow: var(--shadow-lg);
   transform: scale(1.02);
   filter: brightness(1.1);
 }
 
 .btn-cta {
   background: var(--gradient-cta);
   color: white;
   font-weight: 700;
   padding: 1rem 2rem;
   border-radius: 0.75rem;
   box-shadow: var(--shadow-lg);
 }
 
 .btn-cta:hover {
   box-shadow: var(--shadow-xl);
   transform: scale(1.02);
   filter: brightness(1.1);
 }
 
 .btn-outline {
   background: transparent;
   border: 1px solid var(--border);
   /* color: var(--foreground); */
   color: white;
 }
 
 .btn-outline:hover {
   background: var(--secondary);
 }
 
 /* Section Styles */
 .section {
   padding: 4rem 1rem;
 }
 
 @media (min-width: 768px) {
   .section {
     padding: 6rem 1rem;
   }
 }
 
 .section-white {
   background: white;
 }
 
 .section-secondary {
   background: var(--secondary);
 }
 
 .section-title {
   font-size: 1.875rem;
   text-align: center;
   margin-bottom: 1rem;
 }
 
 @media (min-width: 768px) {
   .section-title {
     font-size: 2.25rem;
   }
 }
 
 .section-subtitle {
   text-align: center;
   color: var(--muted-foreground);
   max-width: 42rem;
   margin: 0 auto 3rem;
 }

 .section-big-text {
  font-size: 1.25rem;
  margin-bottom: 1rem;
 }

 .section-logo {
  max-width: 100%;
  width: auto;
  height: 200px;
  margin: 0 auto;
 }

 .section-legal h2 {
  margin-top: 1.5rem;
  margin-bottom: 1rem;
 }

 .section-legal p {
  margin-bottom: 1rem;
 }

 .section-legal ul {
  padding-left: 20px;
  margin-bottom: 1rem;
 }

 .section-legal li {
  list-style: disc;
 }
 
 /* Cards */
 .card {
   background: var(--card);
   border-radius: 1rem;
   box-shadow: var(--shadow-lg);
   border: 1px solid rgba(0, 0, 0, 0.05);
   transition: all 0.3s;
 }
 
 .card:hover {
   box-shadow: var(--shadow-xl);
   transform: translateY(-4px);
 }
 
 .card-body {
   padding: 1.5rem;
 }
 
 /* Feature Icon */
 .feature-icon {
   width: 4rem;
   height: 4rem;
   border-radius: 1rem;
   display: flex;
   align-items: center;
   justify-content: center;
   background: var(--gradient-primary);
 }
 
 .feature-icon svg {
   width: 2rem;
   height: 2rem;
   color: white;
 }
 
 /* Process Step */
 .process-step {
   text-align: center;
 }
 
 .process-step-icon-wrapper {
   position: relative;
   display: inline-block;
   margin-bottom: 1.5rem;
 }
 
 .process-step-number {
   position: absolute;
   top: -0.5rem;
   right: -0.5rem;
   width: 2rem;
   height: 2rem;
   border-radius: 50%;
   background: var(--accent);
   color: white;
   font-size: 0.875rem;
   font-weight: 700;
   display: flex;
   align-items: center;
   justify-content: center;
 }
 
 .process-step h3 {
   font-size: 1.25rem;
   margin-bottom: 0.75rem;
 }
 
 .process-step p {
   color: var(--muted-foreground);
   line-height: 1.75;
 }
 
 /* Stats */
 .stats-card {
   text-align: center;
   padding: 1.5rem;
 }
 
 .stats-number {
   font-size: 2.5rem;
   font-weight: 700;
   background: var(--gradient-primary);
   -webkit-background-clip: text;
   -webkit-text-fill-color: transparent;
   background-clip: text;
   margin-bottom: 0.25rem;
 }
 
 @media (min-width: 768px) {
   .stats-number {
     font-size: 3rem;
   }
 }
 
 /* Testimonial Card */
 .testimonial-card {
   background: white;
   border-radius: 1rem;
   padding: 1.5rem;
   box-shadow: var(--shadow-lg);
   border: 1px solid rgba(0, 0, 0, 0.05);
   height: 100%;
   display: flex;
   flex-direction: column;
 }
 
 .testimonial-stars {
   display: flex;
   gap: 0.25rem;
   margin-bottom: 1rem;
 }
 
 .star-icon {
   width: 1.25rem;
   height: 1.25rem;
   fill: var(--star-gold);
   color: var(--star-gold);
 }
 
 .testimonial-text {
   color: rgba(0, 0, 0, 0.7);
   flex-grow: 1;
   margin-bottom: 1.5rem;
   line-height: 1.75;
 }
 
 .testimonial-author {
   display: flex;
   align-items: center;
   gap: 0.75rem;
 }
 
 .testimonial-avatar {
   width: 3rem;
   height: 3rem;
   border-radius: 50%;
   background: rgba(0, 119, 204, 0.1);
   display: flex;
   align-items: center;
   justify-content: center;
   color: var(--primary);
   font-weight: 700;
   font-size: 1.125rem;
 }
 
 .testimonial-name {
   font-weight: 600;
 }
 
 .testimonial-location {
   font-size: 0.875rem;
   color: var(--muted-foreground);
 }
 
 /* Form Card */
 .form-card {
   /* background: rgba(255, 255, 255, 0.95); */
   backdrop-filter: blur(8px);
   border-radius: 1rem;
   /* box-shadow: var(--shadow-xl); */
   padding: 2rem;
   max-width: 28rem;
   width: 100%;
 }
 
 .form-trust-badge {
   display: flex;
   align-items: center;
   gap: 0.5rem;
   font-size: 0.875rem;
   /* color: var(--muted-foreground); */
   color: white;
   margin-bottom: 1rem;
 }
 
 .form-trust-badge svg {
   width: 1rem;
   height: 1rem;
   color: var(--primary);
 }
 
 /* Progress Bar */
 .progress-bar {
   height: 0.75rem;
   border-radius: 9999px;
   background: var(--muted);
   overflow: hidden;
 }
 
 .progress-fill {
   height: 100%;
   border-radius: 9999px;
   background: var(--gradient-cta);
   transition: width 0.5s ease-out;
 }
 
 .progress-info {
   display: flex;
   justify-content: space-between;
   font-size: 0.875rem;
   /* color: var(--muted-foreground); */
   color: white;
   margin-bottom: 0.5rem;
 }
 
 /* Vehicle Selection Buttons */
 .vehicle-btn {
   display: flex;
   flex-direction: column;
   align-items: center;
   justify-content: center;
   padding: 1.5rem;
   border-radius: 0.75rem;
   border: 2px solid var(--border);
   background: white;
   cursor: pointer;
   transition: all 0.3s;
   text-transform: uppercase;
   letter-spacing: 2px;
   font-size: 1em;
   font-weight: bolder;;
 }
 
 .vehicle-btn:hover {
   border-color: var(--primary);
   box-shadow: var(--shadow-md);
 }
 
 .vehicle-btn.selected {
   border-color: var(--primary);
   background: rgba(0, 119, 204, 0.05);
   box-shadow: var(--shadow-lg);
 }
 
 .vehicle-btn svg {
   width: 2rem;
   height: 2rem;
   color: var(--primary);
   margin-bottom: 0.5rem;
 }
 
 .vehicle-btn span {
   font-weight: 600;
 }
 
 /* Form Elements */

 .form-step h3 {
   color: white;
 }

 .form-step:not(.active) {
   display: none;
 }

 .form-group {
   margin-bottom: 1rem;
 }
 
 .form-label {
   display: block;
   font-size: 0.875rem;
   font-weight: 500;
   /* color: var(--foreground); */
   color: white;
   margin-bottom: 0.25rem;
 }
 
 .form-input {
   width: 100%;
   padding: 0.625rem 0.875rem;
   font-size: 0.875rem;
   border: 1px solid var(--border);
   border-radius: var(--radius);
   background: white;
   transition: border-color 0.2s, box-shadow 0.2s;
 }
 
 .form-input:focus {
   outline: none;
   border-color: var(--primary);
   box-shadow: 0 0 0 3px rgba(0, 119, 204, 0.1);
 }
 
 .form-select {
   width: 100%;
   padding: 0.625rem 0.875rem;
   font-size: 0.875rem;
   border: 1px solid var(--border);
   border-radius: var(--radius);
   background: white;
   cursor: pointer;
 }
 
 .form-textarea {
   width: 100%;
   padding: 0.625rem 0.875rem;
   font-size: 0.875rem;
   border: 1px solid var(--border);
   border-radius: var(--radius);
   background: white;
   resize: vertical;
   min-height: 150px;
 }
 
 .form-checkbox-wrapper {
   display: flex;
   align-items: flex-start;
   gap: 0.75rem;
 }
 
 .form-checkbox {
   width: 1.25rem;
   height: 1.25rem;
   margin-top: 0.125rem;
   cursor: pointer;
 }
 
 .form-checkbox-label {
   font-size: 0.875rem;
   /* color: var(--muted-foreground); */
   color: white;
   line-height: 1.5;
 }
 
 /* Form Navigation */
 .form-nav {
   display: flex;
   justify-content: space-between;
   margin-top: 2rem;
 }
 
 .form-nav .btn {
   min-width: 120px;
 }
 
 /* Footer */
 .footer {
   background: var(--gradient-hero);
   color: white;
 }
 
 .footer-cta {
   background: rgba(0, 119, 204, 0.2);
   padding: 3rem 0;
   text-align: center;
 }
 
 .footer-cta-subtitle {
   color: rgba(255, 255, 255, 0.8);
   text-transform: uppercase;
   letter-spacing: 0.1em;
   font-size: 0.875rem;
   margin-bottom: 0.5rem;
 }
 
 .footer-cta h2 {
   font-size: 1.875rem;
   margin-bottom: 1.5rem;
 }
 
 @media (min-width: 768px) {
   .footer-cta h2 {
     font-size: 2.25rem;
   }
 }
 
 .footer-main {
   padding: 3rem 0;
 }
 
 .footer-grid {
   display: grid;
   gap: 2rem;
 }
 
 @media (min-width: 768px) {
   .footer-grid {
     grid-template-columns: repeat(2, 1fr);
   }
 }
 
 @media (min-width: 1024px) {
   .footer-grid {
     grid-template-columns: repeat(4, 1fr);
   }
 }
 
 .footer-logo {
   display: flex;
   align-items: center;
   gap: 0.5rem;
   margin-bottom: 1rem;
 }
 
 .footer-logo-icon {
   width: 2.5rem;
   height: 2.5rem;
   border-radius: 0.75rem;
   display: flex;
   align-items: center;
   justify-content: center;
   background: rgba(255, 255, 255, 0.2);
   color: white;
   font-weight: 700;
   font-size: 1.25rem;
 }
 
 .footer-logo-text {
   font-size: 1.25rem;
   font-weight: 700;
 }
 
 .footer-description {
   color: rgba(255, 255, 255, 0.7);
   margin-bottom: 1rem;
   line-height: 1.75;
 }
 
 .footer-social {
   display: flex;
   gap: 0.75rem;
 }
 
 .footer-social a {
   width: 2.5rem;
   height: 2.5rem;
   border-radius: 50%;
   background: rgba(255, 255, 255, 0.1);
   display: flex;
   align-items: center;
   justify-content: center;
   transition: background 0.3s;
 }
 
 .footer-social a:hover {
   background: rgba(255, 255, 255, 0.2);
 }
 
 .footer-social svg {
   width: 1.25rem;
   height: 1.25rem;
 }
 
 .footer-heading {
   font-size: 1.125rem;
   font-weight: 700;
   margin-bottom: 1rem;
 }
 
 .footer-links li {
   margin-bottom: 0.5rem;
 }
 
 .footer-links a {
   color: rgba(255, 255, 255, 0.7);
   transition: color 0.3s;
 }
 
 .footer-links a:hover {
   color: white;
 }
 
 .footer-contact li {
   display: flex;
   align-items: flex-start;
   gap: 0.75rem;
   margin-bottom: 1rem;
 }
 
 .footer-contact svg {
   width: 1.25rem;
   height: 1.25rem;
   color: var(--accent);
   margin-top: 0.25rem;
   flex-shrink: 0;
 }
 
 .footer-contact p {
   font-weight: 500;
 }
 
 .footer-contact small {
   color: rgba(255, 255, 255, 0.7);
   font-size: 0.875rem;
 }
 
 .footer-bottom {
   border-top: 1px solid rgba(255, 255, 255, 0.1);
   padding: 1.5rem 0;
 }
 
 .footer-bottom-inner {
   display: flex;
   flex-direction: column;
   align-items: center;
   gap: 1rem;
   color: rgba(255, 255, 255, 0.6);
   font-size: 0.875rem;
 }
 
 @media (min-width: 768px) {
   .footer-bottom-inner {
     flex-direction: row;
     justify-content: space-between;
   }
 }
 
 .footer-bottom-links {
   display: flex;
   gap: 1.5rem;
 }
 
 .footer-bottom-links a:hover {
   color: white;
 }
 
 /* Vehicle Card */
 .vehicle-card {
   background: var(--card);
   border-radius: 1rem;
   overflow: hidden;
   box-shadow: var(--shadow-lg);
   border: 1px solid rgba(0, 0, 0, 0.05);
   transition: all 0.3s;
 }
 
 .vehicle-card:hover {
   box-shadow: var(--shadow-xl);
   transform: translateY(-4px);
 }
 
 .vehicle-card-image {
   aspect-ratio: 4/3;
   overflow: hidden;
 }
 
 .vehicle-card-image img {
   width: 100%;
   height: 100%;
   object-fit: cover;
   transition: transform 0.3s;
 }
 
 .vehicle-card:hover .vehicle-card-image img {
   transform: scale(1.05);
 }
 
 .vehicle-card-body {
   padding: 1.25rem;
 }
 
 .vehicle-type-badge {
   display: inline-block;
   padding: 0.25rem 0.5rem;
   font-size: 0.75rem;
   font-weight: 500;
   background: rgba(0, 119, 204, 0.1);
   color: var(--primary);
   border-radius: 0.25rem;
   margin-bottom: 0.5rem;
 }
 
 .vehicle-card h3 {
   font-weight: 700;
   margin-bottom: 0.75rem;
 }
 
 .vehicle-specs {
   display: grid;
   grid-template-columns: 1fr 1fr;
   gap: 0.5rem;
   font-size: 0.875rem;
   color: var(--muted-foreground);
   margin-bottom: 1rem;
 }
 
 .vehicle-spec {
   display: flex;
   align-items: center;
   gap: 0.25rem;
 }
 
 .vehicle-spec svg {
   width: 1rem;
   height: 1rem;
 }
 
 .vehicle-card-footer {
   display: flex;
   align-items: center;
   justify-content: space-between;
 }
 
 .vehicle-price {
   display: flex;
   align-items: center;
   gap: 0.25rem;
   font-size: 1.25rem;
   font-weight: 700;
   color: var(--primary);
 }
 
 .vehicle-price svg {
   width: 1.25rem;
   height: 1.25rem;
 }
 
 /* Search/Filter Bar */
 .filter-bar {
   padding: 1rem 0;
   background: white;
   border-bottom: 1px solid var(--border);
   position: sticky;
   top: 5rem;
   z-index: 40;
 }
 
 .filter-bar-inner {
   display: flex;
   flex-wrap: wrap;
   gap: 1rem;
   align-items: center;
 }
 
 .search-wrapper {
   flex: 1;
   min-width: 200px;
   position: relative;
 }
 
 .search-wrapper svg {
   position: absolute;
   left: 0.75rem;
   top: 50%;
   transform: translateY(-50%);
   width: 1rem;
   height: 1rem;
   color: var(--muted-foreground);
 }
 
 .search-input {
   width: 100%;
   padding: 0.625rem 0.875rem 0.625rem 2.5rem;
   font-size: 0.875rem;
   border: 1px solid var(--border);
   border-radius: var(--radius);
 }
 
 /* Accordion */
 .accordion {
   display: flex;
   flex-direction: column;
   gap: 1rem;
 }
 
 .accordion-item {
   background: var(--card);
   border-radius: 1rem;
   box-shadow: var(--shadow-lg);
   overflow: hidden;
 }
 
 .accordion-trigger {
   width: 100%;
   padding: 1rem 1.5rem;
   display: flex;
   justify-content: space-between;
   align-items: center;
   background: none;
   border: none;
   cursor: pointer;
   font-weight: 600;
   text-align: left;
   font-size: 1rem;
 }
 
 .accordion-trigger svg {
   width: 1.25rem;
   height: 1.25rem;
   transition: transform 0.3s;
 }
 
 .accordion-item.open .accordion-trigger svg {
   transform: rotate(180deg);
 }
 
 .accordion-content {
   display: none;
   padding: 0 1.5rem 1rem;
   color: var(--muted-foreground);
   line-height: 1.75;
 }
 
 .accordion-item.open .accordion-content {
   display: block;
 }
 
 /* Credit Score Guide */
 .credit-score-item {
   display: flex;
   align-items: center;
   justify-content: space-between;
   padding: 1rem;
   border-radius: 0.5rem;
   margin-bottom: 0.5rem;
 }
 
 .credit-score-item.excellent {
   background: rgba(34, 197, 94, 0.1);
   border-left: 4px solid var(--success);
 }
 
 .credit-score-item.good {
   background: rgba(0, 119, 204, 0.1);
   border-left: 4px solid var(--primary);
 }
 
 .credit-score-item.fair {
   background: rgba(245, 158, 11, 0.1);
   border-left: 4px solid var(--warning);
 }
 
 .credit-score-item.poor {
   background: rgba(239, 68, 68, 0.1);
   border-left: 4px solid var(--destructive);
 }
 
 .credit-score-label span {
   font-weight: 700;
 }
 
 .credit-score-label small {
   margin-left: 0.5rem;
   color: var(--muted-foreground);
   font-size: 0.875rem;
 }
 
 .credit-score-rate {
   font-size: 0.875rem;
   font-weight: 500;
 }
 
 .credit-note {
   margin-top: 1.5rem;
   padding: 1rem;
   background: rgba(0, 191, 255, 0.1);
   border-radius: 0.5rem;
   display: flex;
   align-items: flex-start;
   gap: 0.75rem;
 }
 
 .credit-note svg {
   width: 1.25rem;
   height: 1.25rem;
   color: var(--accent);
   flex-shrink: 0;
   margin-top: 0.125rem;
 }
 
 .credit-note p {
   font-size: 0.875rem;
 }
 
 /* Location Card */
 .location-card {
   background: var(--card);
   border-radius: 1rem;
   padding: 1.5rem;
   box-shadow: var(--shadow-lg);
   border: 1px solid rgba(0, 0, 0, 0.05);
   transition: all 0.3s;
 }
 
 .location-card:hover {
   box-shadow: var(--shadow-xl);
   transform: translateY(-4px);
 }
 
 .location-header {
   display: flex;
   align-items: center;
   gap: 0.5rem;
   margin-bottom: 1rem;
 }
 
 .location-header svg {
   width: 1.25rem;
   height: 1.25rem;
   color: var(--primary);
 }
 
 .location-header h3 {
   font-weight: 700;
 }
 
 .location-address {
   font-size: 0.875rem;
   color: var(--muted-foreground);
   margin-bottom: 0.75rem;
 }
 
 .location-phone {
   color: var(--primary);
   font-weight: 500;
   display: block;
   margin-bottom: 0.5rem;
 }
 
 .location-hours {
   font-size: 0.75rem;
   color: var(--muted-foreground);
 }
 
 /* Resource Card */
 .resource-card {
   background: var(--card);
   border-radius: 1rem;
   padding: 2rem;
   box-shadow: var(--shadow-lg);
   border: 1px solid rgba(0, 0, 0, 0.05);
   transition: all 0.3s;
 }
 
 .resource-card:hover {
   box-shadow: var(--shadow-xl);
   transform: translateY(-4px);
 }
 
 .resource-content {
   display: flex;
   align-items: flex-start;
   gap: 1rem;
 }
 
 .resource-card h3 {
   font-size: 1.25rem;
   margin-bottom: 0.5rem;
 }
 
 .resource-card > div > p {
   color: var(--muted-foreground);
   margin-bottom: 1rem;
 }
 
 .resource-tips {
   list-style: none;
 }
 
 .resource-tips li {
   display: flex;
   align-items: flex-start;
   gap: 0.5rem;
   font-size: 0.875rem;
   margin-bottom: 0.5rem;
 }
 
 .resource-tips svg {
   width: 1rem;
   height: 1rem;
   color: var(--primary);
   margin-top: 0.125rem;
   flex-shrink: 0;
 }
 
 /* Utility */
 .text-center {
   text-align: center;
 }
 
 .mx-auto {
   margin-left: auto;
   margin-right: auto;
 }
 
 .mb-2 { margin-bottom: 0.5rem; }
 .mb-3 { margin-bottom: 0.75rem; }
 .mb-4 { margin-bottom: 1rem; }
 .mb-6 { margin-bottom: 1.5rem; }
 .mb-8 { margin-bottom: 2rem; }
 .mb-12 { margin-bottom: 3rem; }
 
 .mt-4 { margin-top: 1rem; }
 .mt-6 { margin-top: 1.5rem; }
 .mt-8 { margin-top: 2rem; }
 .mt-12 { margin-top: 3rem; }
 
 .max-w-3xl {
   max-width: 48rem;
 }
 
 .w-full {
   width: 100%;
 }
 
 .hidden {
   display: none;
 }
 
 @media (min-width: 640px) {
   .sm-flex {
     display: flex;
   }
 }
 
 @media (min-width: 768px) {
   .md-block {
     display: block;
   }
 }
 
 /* Icon sizes */
 .icon-sm {
   width: 1rem;
   height: 1rem;
 }
 
 .icon-md {
   width: 1.25rem;
   height: 1.25rem;
 }
 
 .icon-lg {
   width: 1.5rem;
   height: 1.5rem;
 }
 
 .icon-xl {
   width: 2rem;
   height: 2rem;
 }

 *, *::before, *::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
/* Main */
main.thank-you {
    background-color: var(--ty-background);
    color: var(--ty-foreground);
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 4rem 1.5rem;
}

.thank-you .content {
    max-width: 42rem;
    width: 100%;
    text-align: center;
}

.thank-you .content > * + * {
    margin-top: 2rem;
}

/* Success Icon */
.thank-you .success-icon-wrapper {
    display: flex;
    justify-content: center;
}

.thank-you .success-icon-circle {
    width: 6rem;
    height: 6rem;
    border-radius: 50%;
    background-color: hsla(152, 55%, 38%, 0.15);
    display: flex;
    align-items: center;
    justify-content: center;
    animation: zoomIn 0.5s ease-out;
}

@keyframes zoomIn {
    from { transform: scale(0); opacity: 0; }
    to { transform: scale(1); opacity: 1; }
}

.thank-you .success-icon-circle svg {
    width: 3.5rem;
    height: 3.5rem;
    color: var(--ty-primary);
}

/* Heading */
.thank-you .heading-block > * + * {
    margin-top: 0.75rem;
}

.thank-you h1 {
    font-size: 2.25rem;
    font-weight: 700;
    letter-spacing: -0.025em;
    color: var(--ty-foreground);
    line-height: 1.2;
}

.thank-you h1 span {
    color: var(--ty-primary);
}

.thank-you h2 {
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--ty-foreground);
    padding-top: 0.5rem;
}

.thank-you .subtitle {
    color: var(--ty-muted-foreground);
    font-size: 1.125rem;
    max-width: 32rem;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.75;
}

/* Cards */
.thank-you .cards {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1rem;
    padding-top: 1rem;
}

.thank-you .card {
    background-color: var(--ty-card);
    border: 1px solid var(--ty-border);
    border-radius: var(--ty-radius);
    padding: 1.5rem 1rem;
    text-align: center;
}

.thank-you .card > * + * {
    margin-top: 0.5rem;
}

.thank-you .card svg {
    width: 2rem;
    height: 2rem;
    color: var(--ty-primary);
    margin: 0 auto;
}

.thank-you .card-title {
    font-weight: 600;
    font-size: 0.875rem;
    color: var(--ty-foreground);
}

.thank-you .card-desc {
    color: var(--ty-muted-foreground);
    font-size: 0.75rem;
}

/* CTA Button */
.thank-you .cta-wrapper {
    padding-top: 1rem;
}

.thank-you .cta-button {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background-color: var(--ty-primary);
    color: var(--ty-primary-foreground);
    font-weight: 500;
    font-size: 1rem;
    padding: 0.75rem 2rem;
    border-radius: var(--ty-radius);
    border: none;
    cursor: pointer;
    transition: opacity 0.2s;
}

.thank-you .cta-button:hover {
    opacity: 0.9;
}

.thank-you .cta-button svg {
    width: 1rem;
    height: 1rem;
}


/* Responsive */
@media (min-width: 768px) {
    .thank-you h1 {
    font-size: 3rem;
    }
}

@media (max-width: 640px) {
    .thank-you .cards {
    grid-template-columns: 1fr;
    }
}

.input-error {
  border: 1px solid #b91c1c !important;
  box-shadow: 0 0 0 1px #b91c1c !important;
}