/* VIN Check - Modern Neo-Design Styles */

/* Reset and Base Styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

:root {
  --primary-color: #6366f1;
  --primary-dark: #4f46e5;
  --primary-light: #818cf8;
  --secondary-color: #8b5cf6;
  --accent-color: #06b6d4;
  --success-color: #10b981;
  --error-color: #ef4444;
  --text-dark: #1e293b;
  --text-medium: #475569;
  --text-light: #64748b;
  --bg-light: #f8fafc;
  --bg-white: #ffffff;
  --border-color: #e2e8f0;
  --shadow-sm: 0 1px 2px 0 rgb(0 0 0 / 0.05);
  --shadow-md: 0 4px 6px -1px rgb(0 0 0 / 0.1);
  --shadow-lg: 0 10px 15px -3px rgb(0 0 0 / 0.1);
  --shadow-xl: 0 20px 25px -5px rgb(0 0 0 / 0.1);
  --radius-sm: 0.375rem;
  --radius-md: 0.5rem;
  --radius-lg: 0.75rem;
  --radius-xl: 1rem;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen,
    Ubuntu, Cantarell, "Open Sans", "Helvetica Neue", sans-serif;
  line-height: 1.6;
  color: var(--text-dark);
  background: var(--bg-light);
  min-height: 100vh;
}

/* ============================================
   HEADER
   ============================================ */
.header {
  background: var(--bg-white);
  border-bottom: 1px solid var(--border-color);
  position: sticky;
  top: 0;
  z-index: 1000;
  box-shadow: var(--shadow-sm);
}

.header-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 1rem 2rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
}

.logo {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-weight: 700;
  font-size: 1.25rem;
  color: var(--primary-color);
  text-decoration: none;
  cursor: pointer;
  transition: opacity 0.2s;
}

.logo:hover {
  opacity: 0.8;
}

.logo-icon {
  width: 32px;
  height: 32px;
  fill: var(--primary-color);
}

.logo-image {
  width: 175px;
  height: 61px;
  object-fit: contain;
}

.logo-text {
  color: var(--text-dark);
}

.nav {
  display: flex;
  align-items: center;
  gap: 2rem;
}

.nav-link {
  color: var(--text-medium);
  text-decoration: none;
  font-weight: 500;
  transition: color 0.2s;
  font-size: 0.95rem;
}

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

.nav-cta {
  background: var(--primary-color);
  color: white !important;
  padding: 0.5rem 1.25rem;
  border-radius: var(--radius-lg);
  transition: all 0.2s;
}

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

.language-switcher {
  display: flex;
  gap: 0.5rem;
  align-items: center;
}

.lang-btn {
  background: transparent;
  border: 1px solid var(--border-color);
  color: var(--text-medium);
  padding: 0.4rem 0.8rem;
  border-radius: var(--radius-md);
  font-size: 0.875rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.2s;
}

.lang-btn:hover {
  background: var(--bg-light);
  border-color: var(--primary-color);
  color: var(--primary-color);
}

.lang-btn.active {
  background: var(--primary-color);
  border-color: var(--primary-color);
  color: white;
}

.mobile-menu-toggle {
  display: none;
  flex-direction: column;
  gap: 4px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0.5rem;
}

.mobile-menu-toggle span {
  width: 24px;
  height: 3px;
  background: var(--text-dark);
  border-radius: 2px;
  transition: all 0.3s;
}

.mobile-menu-toggle.active span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}

.mobile-menu-toggle.active span:nth-child(2) {
  opacity: 0;
}

.mobile-menu-toggle.active span:nth-child(3) {
  transform: rotate(-45deg) translate(7px, -6px);
}

.trust-indicators {
  display: flex;
  align-items: center;
  gap: 1rem;
  font-size: 0.875rem;
  color: var(--text-light);
}

.trust-item {
  display: flex;
  align-items: center;
  gap: 0.25rem;
}

/* ============================================
   HERO SECTION
   ============================================ */
.hero-section {
  background: linear-gradient(
    135deg,
    var(--primary-color) 0%,
    var(--secondary-color) 100%
  );
  color: white;
  padding: 6rem 2rem;
  text-align: center;
}

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

.hero-title {
  font-size: 3rem;
  font-weight: 800;
  margin-bottom: 1.5rem;
  line-height: 1.2;
  letter-spacing: -0.02em;
}

.hero-subtitle {
  font-size: 1.25rem;
  margin-bottom: 2.5rem;
  opacity: 0.95;
  line-height: 1.7;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

.hero-trust-badges {
  display: flex;
  justify-content: center;
  gap: 2rem;
  margin-bottom: 2.5rem;
  flex-wrap: wrap;
}

.hero-badge {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(255, 255, 255, 0.15);
  padding: 0.75rem 1.25rem;
  border-radius: var(--radius-lg);
  backdrop-filter: blur(10px);
  font-size: 0.95rem;
  font-weight: 500;
}

.hero-badge svg {
  width: 20px;
  height: 20px;
  fill: white;
}

.hero-cta {
  display: inline-block;
  background: white;
  color: var(--primary-color);
  padding: 1rem 2.5rem;
  border-radius: var(--radius-xl);
  font-weight: 700;
  font-size: 1.1rem;
  text-decoration: none;
  transition: all 0.3s;
  box-shadow: var(--shadow-xl);
}

.hero-cta:hover {
  transform: translateY(-3px);
  box-shadow: 0 25px 35px -5px rgb(0 0 0 / 0.3);
}

/* ============================================
   FORM SECTION
   ============================================ */
.form-section {
  padding: 5rem 2rem;
  background: var(--bg-white);
}

.form-container {
  max-width: 600px;
  margin: 0 auto;
}

.form-card {
  background: var(--bg-white);
  border-radius: var(--radius-xl);
  padding: 3rem;
  box-shadow: var(--shadow-xl);
  border: 1px solid var(--border-color);
}

.form-title {
  font-size: 2rem;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 0.5rem;
  text-align: center;
}

.form-description {
  text-align: center;
  color: var(--text-medium);
  font-size: 1.05rem;
  margin-bottom: 2rem;
}

/* ============================================
   SHARED SECTION STYLES
   ============================================ */
.section-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
}

.section-title {
  font-size: 2.5rem;
  font-weight: 800;
  color: var(--text-dark);
  text-align: center;
  margin-bottom: 1rem;
  letter-spacing: -0.02em;
}

.section-subtitle {
  text-align: center;
  color: var(--text-medium);
  font-size: 1.125rem;
  margin-bottom: 3rem;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

/* Form Elements */
.form-group {
  margin-bottom: 1.5rem;
  text-align: left;
}

label {
  display: block;
  margin-bottom: 0.5rem;
  font-weight: 600;
  color: var(--text-dark);
  font-size: 0.95rem;
}

input {
  width: 100%;
  padding: 0.875rem 1rem;
  border: 2px solid var(--border-color);
  border-radius: var(--radius-md);
  font-size: 1rem;
  transition: all 0.2s;
  background: var(--bg-white);
  font-family: inherit;
}

input:focus {
  outline: none;
  border-color: var(--primary-color);
  box-shadow: 0 0 0 3px rgba(99, 102, 241, 0.1);
}

input:hover {
  border-color: var(--text-light);
}

input.error {
  border-color: var(--error-color);
}

input.error:focus {
  box-shadow: 0 0 0 3px rgba(239, 68, 68, 0.1);
}

.error-message {
  color: var(--error-color);
  font-size: 0.875rem;
  margin-top: 0.5rem;
  display: none;
  font-weight: 500;
}

.error-message.show {
  display: block;
}

.form-trust-badges {
  display: flex;
  justify-content: center;
  gap: 1.5rem;
  margin-top: 1.5rem;
  flex-wrap: wrap;
}

.form-badge {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--text-light);
  font-size: 0.875rem;
}

.form-badge svg {
  width: 18px;
  height: 18px;
  fill: var(--success-color);
}

/* ============================================
   BUTTONS
   ============================================ */
.btn {
  display: inline-block;
  padding: 0.875rem 1.75rem;
  background: var(--primary-color);
  color: white;
  text-decoration: none;
  border-radius: var(--radius-lg);
  font-weight: 600;
  transition: all 0.2s;
  border: none;
  cursor: pointer;
  font-size: 1rem;
  font-family: inherit;
  text-align: center;
}

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

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

.btn:disabled {
  opacity: 0.6;
  cursor: not-allowed;
  transform: none;
}

.btn-primary {
  width: 100%;
  padding: 1rem;
  font-size: 1.05rem;
  background: linear-gradient(
    135deg,
    var(--primary-color) 0%,
    var(--secondary-color) 100%
  );
  box-shadow: var(--shadow-md);
}

.btn-primary:hover {
  background: linear-gradient(
    135deg,
    var(--primary-dark) 0%,
    var(--secondary-color) 100%
  );
  box-shadow: var(--shadow-lg);
}

.btn-secondary {
  background: var(--text-light);
}

.btn-secondary:hover {
  background: var(--text-medium);
}

.buttons {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
  margin-top: 2rem;
}

/* ============================================
   BENEFITS SECTION
   ============================================ */
.benefits-section {
  padding: 5rem 2rem;
  background: var(--bg-light);
}

.benefits-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  margin-top: 3rem;
}

.benefit-card {
  background: var(--bg-white);
  padding: 2rem;
  border-radius: var(--radius-xl);
  text-align: center;
  transition: all 0.3s;
  border: 1px solid var(--border-color);
}

.benefit-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-xl);
  border-color: var(--primary-light);
}

.benefit-icon {
  width: 64px;
  height: 64px;
  margin: 0 auto 1.5rem;
  background: linear-gradient(
    135deg,
    var(--primary-color) 0%,
    var(--secondary-color) 100%
  );
  border-radius: var(--radius-lg);
  display: flex;
  align-items: center;
  justify-content: center;
}

.benefit-icon svg {
  width: 32px;
  height: 32px;
  fill: white;
}

.benefit-card h3 {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 0.75rem;
}

.benefit-card p {
  color: var(--text-medium);
  line-height: 1.7;
}

/* ============================================
   HOW IT WORKS SECTION
   ============================================ */
.how-section {
  padding: 5rem 2rem;
  background: var(--bg-white);
}

.steps-container {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 2rem;
  flex-wrap: wrap;
  margin-top: 3rem;
}

.step {
  flex: 1;
  min-width: 250px;
  max-width: 300px;
  text-align: center;
}

.step-number {
  width: 60px;
  height: 60px;
  margin: 0 auto 1.5rem;
  background: linear-gradient(
    135deg,
    var(--primary-color) 0%,
    var(--secondary-color) 100%
  );
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.75rem;
  font-weight: 800;
  box-shadow: var(--shadow-lg);
}

.step-content h3 {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 0.75rem;
}

.step-content p {
  color: var(--text-medium);
  line-height: 1.6;
}

.step-arrow {
  font-size: 2rem;
  color: var(--primary-color);
  font-weight: 300;
}

/* ============================================
   EXAMPLE REPORTS SECTION
   ============================================ */
.examples-section {
  padding: 6rem 2rem;
  background: var(--bg-light);
}

.examples-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
  max-width: 1200px;
  margin: 0 auto;
}

.example-card {
  background: var(--bg-white);
  border-radius: var(--radius-xl);
  padding: 2rem;
  box-shadow: var(--shadow-md);
  transition: all 0.3s ease;
  cursor: pointer;
  text-decoration: none;
  color: inherit;
  display: flex;
  flex-direction: column;
  border: 2px solid transparent;
}

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

.example-card-featured {
  background: linear-gradient(135deg, #f8fafc 0%, #f1f5ff 100%);
}

.example-icon {
  width: 64px;
  height: 64px;
  background: linear-gradient(
    135deg,
    var(--primary-color),
    var(--secondary-color)
  );
  border-radius: var(--radius-lg);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.5rem;
  color: white;
}

.example-icon svg {
  width: 32px;
  height: 32px;
}

.example-card h3 {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 1rem;
}

.example-card p {
  color: var(--text-medium);
  font-size: 0.9375rem;
  line-height: 1.6;
  margin-bottom: 1.5rem;
  flex-grow: 1;
}

.example-link {
  color: var(--primary-color);
  font-weight: 600;
  font-size: 0.9375rem;
  display: inline-flex;
  align-items: center;
  transition: all 0.3s ease;
}

.example-card:hover .example-link {
  transform: translateX(4px);
}

.examples-section .brands-note {
  margin-top: 3rem;
}

/* ============================================
   SUPPORTED BRANDS SECTION
   ============================================ */
.brands-section {
  padding: 5rem 2rem;
  background: var(--bg-white);
}

.brands-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
  gap: 1rem;
  margin-bottom: 3rem;
}

.brand-item {
  background: var(--bg-white);
  border: 2px solid var(--border-color);
  border-radius: var(--radius-lg);
  padding: 1.25rem 1.5rem;
  text-align: center;
  font-weight: 600;
  font-size: 1rem;
  color: var(--text-dark);
  transition: all 0.3s ease;
  cursor: default;
}

.brand-item:hover {
  border-color: var(--primary-color);
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
  background: linear-gradient(
    135deg,
    var(--bg-white) 0%,
    rgba(99, 102, 241, 0.05) 100%
  );
}

.brand-item span {
  display: block;
}

.brands-note {
  text-align: center;
  color: var(--text-medium);
  font-size: 1rem;
  font-style: italic;
  padding: 1.5rem;
  background: var(--bg-white);
  border-radius: var(--radius-lg);
  border: 1px solid var(--border-color);
  max-width: 700px;
  margin: 0 auto;
}

/* ============================================
   FAQ SECTION
   ============================================ */
.faq-section {
  padding: 6rem 2rem;
  background: var(--bg-light);
}

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

.faq-item {
  background: var(--bg-white);
  border-radius: var(--radius-lg);
  margin-bottom: 1rem;
  overflow: hidden;
  border: 1px solid var(--border-color);
}

.faq-question {
  width: 100%;
  padding: 1.5rem;
  background: none;
  border: none;
  text-align: left;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--text-dark);
  transition: all 0.2s;
  font-family: inherit;
}

.faq-question:hover {
  background: var(--bg-light);
}

.faq-icon {
  width: 24px;
  height: 24px;
  fill: var(--primary-color);
  transition: transform 0.3s;
  flex-shrink: 0;
}

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

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease-out;
}

.faq-item.active .faq-answer {
  max-height: 500px;
}

.faq-answer p {
  padding: 0 1.5rem 1.5rem;
  color: var(--text-medium);
  line-height: 1.7;
}

/* ============================================
   CONTACT & SOCIAL SECTION
   ============================================ */
.contact-section {
  padding: 5rem 2rem;
  background: var(--bg-white);
}

.contact-content {
  max-width: 900px;
  margin: 0 auto;
}

.contact-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
  margin-bottom: 3rem;
}

.contact-card {
  background: var(--bg-light);
  padding: 2rem;
  border-radius: var(--radius-xl);
  text-align: center;
  border: 1px solid var(--border-color);
  transition: all 0.3s;
  text-decoration: none;
  display: block;
  cursor: pointer;
}

.contact-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-lg);
  border-color: var(--primary-light);
}

.contact-icon {
  width: 64px;
  height: 64px;
  margin: 0 auto 1.5rem;
  background: linear-gradient(
    135deg,
    var(--primary-color) 0%,
    var(--secondary-color) 100%
  );
  border-radius: var(--radius-lg);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s;
}

/* Facebook brand color */
.contact-card[href*="facebook"] .contact-icon {
  background: #1877f2;
}

/* Instagram brand gradient */
.contact-card[href*="instagram"] .contact-icon {
  background: radial-gradient(
    circle at 30% 107%,
    #fdf497 0%,
    #fdf497 5%,
    #fd5949 45%,
    #d6249f 60%,
    #285aeb 90%
  );
}

.contact-card:hover .contact-icon {
  transform: scale(1.05);
}

.contact-icon svg {
  width: 32px;
  height: 32px;
  fill: white;
}

.contact-card h3 {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 0.75rem;
}

.contact-card p {
  color: var(--primary-color);
  margin: 0;
  font-weight: 600;
  transition: color 0.2s;
}

.contact-card:hover p {
  color: var(--primary-dark);
}

.social-links {
  text-align: center;
  padding: 3rem 2rem;
  background: var(--bg-light);
  border-radius: var(--radius-xl);
  border: 1px solid var(--border-color);
}

.social-links h3 {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 1.5rem;
}

.social-icons {
  display: flex;
  justify-content: center;
  gap: 1.5rem;
  flex-wrap: wrap;
}

.social-icon {
  width: 48px;
  height: 48px;
  background: var(--bg-white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s;
  border: 2px solid var(--border-color);
}

.social-icon:hover {
  background: linear-gradient(
    135deg,
    var(--primary-color) 0%,
    var(--secondary-color) 100%
  );
  border-color: transparent;
  transform: translateY(-3px);
  box-shadow: var(--shadow-lg);
}

.social-icon svg {
  width: 24px;
  height: 24px;
  fill: var(--text-medium);
  transition: fill 0.3s;
}

.social-icon:hover svg {
  fill: white;
}

/* ============================================
   FOOTER
   ============================================ */
.footer {
  background: linear-gradient(
    135deg,
    var(--primary-color),
    var(--secondary-color)
  );
  color: white;
  padding: 3rem 2rem;
}

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

.footer-simple {
  text-align: center;
}

.footer-simple .logo {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.25rem;
}

.footer-simple .logo-icon {
  fill: white;
}

.footer-simple .logo-image {
  width: 180px;
  height: auto;
  object-fit: contain;
}

.footer-simple .logo-text {
  color: white;
  font-size: 1.5rem;
  font-weight: 700;
}

.footer-simple p {
  color: rgba(255, 255, 255, 0.9);
  font-size: 0.95rem;
  margin: 0.75rem 0;
}

.footer-links {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.25rem;
  margin-top: 1.25rem;
  flex-wrap: wrap;
}

.footer-links a {
  color: rgba(255, 255, 255, 0.85);
  text-decoration: none;
  font-size: 0.9rem;
  transition: all 0.2s;
  font-weight: 500;
}

.footer-links a:hover {
  color: rgba(255, 255, 255, 1);
  transform: translateY(-1px);
}

.footer-separator {
  color: rgba(255, 255, 255, 0.4);
  user-select: none;
  font-weight: 300;
}

/* ============================================
   PRICING PAGE
   ============================================ */
.pricing-section {
  padding: 6rem 2rem 4rem;
  background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
  min-height: calc(100vh - 80px);
}

.pricing-header {
  text-align: center;
  margin-bottom: 3rem;
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  max-width: 1200px;
  margin: 0 auto 3rem;
}

.pricing-card {
  background: var(--bg-white);
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-lg);
  padding: 2rem;
  transition: all 0.3s ease;
  position: relative;
  border: 2px solid transparent;
}

.pricing-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-xl);
}

.pricing-card-featured {
  border-color: var(--primary-color);
  transform: scale(1.05);
}

.pricing-card-featured:hover {
  transform: scale(1.05) translateY(-8px);
}

.pricing-card-best-value {
  border-color: var(--success-color);
}

.pricing-badge {
  position: absolute;
  top: -12px;
  right: 2rem;
  background: var(--primary-color);
  color: white;
  padding: 0.375rem 1rem;
  border-radius: var(--radius-lg);
  font-size: 0.875rem;
  font-weight: 600;
  box-shadow: var(--shadow-md);
}

.pricing-badge-value {
  background: var(--success-color);
}

.pricing-card-header {
  text-align: center;
  margin-bottom: 2rem;
  padding-bottom: 2rem;
  border-bottom: 2px solid var(--border-color);
}

.pricing-icon {
  width: 64px;
  height: 64px;
  margin: 0 auto 1rem;
  background: linear-gradient(
    135deg,
    var(--primary-color),
    var(--secondary-color)
  );
  border-radius: var(--radius-lg);
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
}

.pricing-icon svg {
  width: 32px;
  height: 32px;
}

.pricing-card-title {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 1rem;
}

.pricing-card-price {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
}

.price-amount {
  font-size: 2.5rem;
  font-weight: 800;
  color: var(--primary-color);
  line-height: 1;
}

.price-currency {
  font-size: 2.5rem;
  font-weight: 800;
  color: var(--primary-color);
  line-height: 1;
}

.pricing-save {
  margin-top: 0.5rem;
  color: var(--success-color);
  font-weight: 600;
  font-size: 0.875rem;
}

.pricing-card-body {
  margin-bottom: 2rem;
}

.pricing-features {
  list-style: none;
  padding: 0;
  margin: 0;
}

.pricing-features li {
  padding: 0.75rem 0;
  color: var(--text-medium);
  font-size: 0.9375rem;
  line-height: 1.5;
  border-bottom: 1px solid var(--border-color);
}

.pricing-features li:last-child {
  border-bottom: none;
}

.pricing-card-footer {
  margin-top: auto;
}

.select-package-btn {
  width: 100%;
  padding: 1rem 2rem;
  font-size: 1rem;
  font-weight: 600;
}

.pricing-footer {
  text-align: center;
  max-width: 1200px;
  margin: 0 auto;
  padding-top: 2rem;
  border-top: 2px solid var(--border-color);
}

.btn-secondary {
  background: white;
  color: var(--primary-color);
  border: 2px solid var(--primary-color);
}

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

/* ============================================
   SUCCESS/CANCEL PAGES
   ============================================ */
body:has(.success-icon),
body:has(.cancel-icon) {
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-height: 100vh;
}

body:has(.success-icon) .container,
body:has(.cancel-icon) .container {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
}

body:has(.success-icon) .card,
body:has(.cancel-icon) .card {
  max-width: 600px;
  text-align: center;
  padding: 3rem 2.5rem;
  background: var(--bg-white);
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-xl);
  border: 1px solid var(--border-color);
}

.success-icon,
.cancel-icon {
  width: 80px;
  height: 80px;
  margin: 0 auto 2rem;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  animation: scaleIn 0.5s ease-out;
}

.success-icon {
  background: linear-gradient(
    135deg,
    var(--success-color) 0%,
    var(--accent-color) 100%
  );
}

.cancel-icon {
  background: var(--error-color);
}

.success-icon svg,
.cancel-icon svg {
  width: 40px;
  height: 40px;
  fill: white;
}

body:has(.success-icon) h1,
body:has(.cancel-icon) h1 {
  font-size: 2rem;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 1rem;
}

body:has(.success-icon) p,
body:has(.cancel-icon) p {
  color: var(--text-medium);
  font-size: 1.05rem;
  line-height: 1.7;
  margin-bottom: 1rem;
}

.info-box {
  background: var(--bg-light);
  padding: 1.5rem;
  border-radius: var(--radius-lg);
  margin: 2rem 0;
  text-align: left;
  border: 1px solid var(--border-color);
}

.info-box h3 {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 1rem;
}

.info-box ul {
  list-style: none;
  padding: 0;
}

.info-box li {
  padding: 0.5rem 0;
  padding-left: 1.75rem;
  position: relative;
  color: var(--text-medium);
}

.info-box li:before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--success-color);
  font-weight: bold;
  font-size: 1.1rem;
}

.info-box p {
  margin: 0;
  color: var(--text-medium);
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 2rem;
}

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

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

/* ============================================
   LOADING SPINNER
   ============================================ */
.spinner {
  display: none;
  width: 20px;
  height: 20px;
  border: 3px solid rgba(255, 255, 255, 0.3);
  border-top-color: white;
  border-radius: 50%;
  animation: spin 0.8s linear infinite;
  margin: 0 auto;
}

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

.btn.loading .btn-text {
  display: none;
}

.btn.loading .spinner {
  display: block;
}

/* ============================================
   RESPONSIVE DESIGN - MOBILE
   ============================================ */

/* Tablet and below */
@media (max-width: 968px) {
  .header-container {
    padding: 1rem 1.5rem;
  }

  .trust-indicators {
    display: none;
  }

  .nav {
    position: fixed;
    top: 65px;
    left: 0;
    right: 0;
    background: var(--bg-white);
    flex-direction: column;
    gap: 0;
    padding: 1rem 0;
    box-shadow: var(--shadow-lg);
    transform: translateY(-120%);
    transition: transform 0.3s;
    border-bottom: 1px solid var(--border-color);
  }

  .nav.active {
    transform: translateY(0);
  }

  .nav-link {
    padding: 1rem 2rem;
    width: 100%;
    display: block;
  }

  .nav-cta {
    margin: 0.5rem 1.5rem;
    text-align: center;
  }

  .mobile-menu-toggle {
    display: flex;
  }

  .hero-title {
    font-size: 2.25rem;
  }

  .hero-subtitle {
    font-size: 1.1rem;
  }

  .section-title {
    font-size: 2rem;
  }

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

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

  .brands-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 0.75rem;
  }

  .brand-item {
    padding: 1rem;
    font-size: 0.875rem;
  }

  .step-arrow {
    display: none;
  }

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

/* Mobile */
@media (max-width: 640px) {
  .header-container {
    padding: 1rem;
  }

  .logo-text {
    font-size: 1.1rem;
  }

  .hero-section {
    padding: 4rem 1.5rem;
  }

  .hero-title {
    font-size: 1.875rem;
  }

  .hero-subtitle {
    font-size: 1rem;
  }

  .hero-trust-badges {
    flex-direction: column;
    gap: 0.75rem;
  }

  .hero-badge {
    font-size: 0.875rem;
  }

  .form-section {
    padding: 3rem 1.5rem;
  }

  .form-card {
    padding: 2rem 1.5rem;
  }

  .form-title {
    font-size: 1.5rem;
  }

  .form-description {
    font-size: 0.95rem;
  }

  .benefits-section,
  .how-section,
  .examples-section,
  .faq-section,
  .contact-section {
    padding: 3rem 1.5rem;
  }

  .section-title {
    font-size: 1.75rem;
  }

  .section-subtitle {
    font-size: 1rem;
  }

  .benefit-card {
    padding: 1.5rem;
  }

  .example-card {
    padding: 1.5rem;
  }

  .brands-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 0.5rem;
  }

  .brand-item {
    padding: 0.875rem 0.75rem;
    font-size: 0.8125rem;
  }

  .steps-container {
    gap: 2.5rem;
  }

  .step {
    min-width: 100%;
  }

  body:has(.success-icon) .card,
  body:has(.cancel-icon) .card {
    padding: 2rem 1.5rem;
  }

  body:has(.success-icon) h1,
  body:has(.cancel-icon) h1 {
    font-size: 1.5rem;
  }

  .buttons {
    flex-direction: column;
  }

  .buttons .btn {
    width: 100%;
  }

  .contact-card {
    padding: 1.5rem;
  }

  .social-links {
    padding: 2rem 1.5rem;
  }

  .footer {
    padding: 1.5rem;
  }

  /* Pricing Page Mobile */
  .pricing-section {
    padding: 4rem 1.5rem 3rem;
  }

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

  .pricing-card-featured {
    transform: scale(1);
  }

  .pricing-card-featured:hover {
    transform: translateY(-8px);
  }

  .pricing-card {
    padding: 1.5rem;
  }

  .price-amount {
    font-size: 2rem;
  }

  .pricing-card-title {
    font-size: 1.25rem;
  }
}

/* Extra small devices */
@media (max-width: 375px) {
  .hero-title {
    font-size: 1.625rem;
  }

  .section-title {
    font-size: 1.5rem;
  }

  .form-trust-badges {
    flex-direction: column;
    gap: 0.75rem;
    align-items: center;
  }
}
