/* 
 * We Buy Any Unit - Professional Landing Page
 * Clean, Modern, Conversion-Focused Design
 */

/* Reset & Base */
*, *::before, *::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

:root {
  /* Primary Palette */
  --navy: #0f172a;
  --navy-light: #1e293b;
  --slate: #334155;
  --slate-light: #64748b;
  
  /* Accent */
  --emerald: #059669;
  --emerald-light: #10b981;
  --emerald-dark: #047857;
  
  /* Neutrals */
  --white: #ffffff;
  --off-white: #f8fafc;
  --gray-100: #f1f5f9;
  --gray-200: #e2e8f0;
  --gray-300: #cbd5e1;
  --gray-400: #94a3b8;
  --gray-500: #64748b;
  --gray-600: #475569;
  --gray-700: #334155;
  --gray-800: #1e293b;
  --gray-900: #0f172a;
  
  /* Typography */
  --font-sans: 'Inter', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  --font-display: 'Inter', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  
  /* Shadows */
  --shadow-sm: 0 1px 2px 0 rgb(0 0 0 / 0.05);
  --shadow: 0 1px 3px 0 rgb(0 0 0 / 0.1), 0 1px 2px -1px rgb(0 0 0 / 0.1);
  --shadow-md: 0 4px 6px -1px rgb(0 0 0 / 0.1), 0 2px 4px -2px rgb(0 0 0 / 0.1);
  --shadow-lg: 0 10px 15px -3px rgb(0 0 0 / 0.1), 0 4px 6px -4px rgb(0 0 0 / 0.1);
  --shadow-xl: 0 20px 25px -5px rgb(0 0 0 / 0.1), 0 8px 10px -6px rgb(0 0 0 / 0.1);
  
  /* Transitions */
  --transition: 150ms cubic-bezier(0.4, 0, 0.2, 1);
  --transition-slow: 300ms cubic-bezier(0.4, 0, 0.2, 1);
}

/* Load Inter font */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700;800&display=swap');

html {
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body {
  font-family: var(--font-sans);
  font-size: 16px;
  line-height: 1.6;
  color: var(--gray-700);
  background: var(--white);
}

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

/* ==================== HEADER ==================== */
.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--gray-200);
  transition: var(--transition-slow);
}

.header-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 72px;
}

.logo {
  display: flex;
  align-items: center;
  gap: 12px;
}

.logo h1 {
  font-size: 22px;
  font-weight: 700;
  color: var(--navy);
  letter-spacing: -0.02em;
}

.logo-short {
  display: none;
}

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

.logo-mark {
  width: 40px;
  height: 40px;
  background: var(--emerald);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.logo-mark svg {
  width: 24px;
  height: 24px;
  color: white;
}

.nav {
  display: flex;
  align-items: center;
  gap: 32px;
}

.nav-links {
  display: flex;
  gap: 32px;
}

.nav-links a {
  font-size: 15px;
  font-weight: 500;
  color: var(--gray-600);
  text-decoration: none;
  transition: var(--transition);
}

.nav-links a:hover {
  color: var(--navy);
}

.mobile-menu-toggle {
  display: none;
  width: 44px;
  height: 44px;
  align-items: center;
  justify-content: center;
  background: none;
  border: none;
  cursor: pointer;
  border-radius: 8px;
  transition: var(--transition);
}

.mobile-menu-toggle:hover {
  background: var(--gray-100);
}

.mobile-menu-toggle span {
  display: block;
  width: 20px;
  height: 2px;
  background: var(--gray-700);
  position: relative;
  transition: var(--transition);
}

.mobile-menu-toggle span::before,
.mobile-menu-toggle span::after {
  content: '';
  position: absolute;
  left: 0;
  width: 20px;
  height: 2px;
  background: var(--gray-700);
  transition: var(--transition);
}

.mobile-menu-toggle span::before { top: -6px; }
.mobile-menu-toggle span::after { bottom: -6px; }

/* ==================== BUTTONS ==================== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px 24px;
  font-family: var(--font-sans);
  font-size: 15px;
  font-weight: 600;
  text-decoration: none;
  border-radius: 8px;
  border: none;
  cursor: pointer;
  transition: var(--transition);
  white-space: nowrap;
}

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

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

.btn-secondary {
  background: var(--white);
  color: var(--gray-700);
  border: 1px solid var(--gray-300);
}

.btn-secondary:hover {
  background: var(--gray-50);
  border-color: var(--gray-400);
}

.btn-large {
  padding: 16px 32px;
  font-size: 17px;
  border-radius: 10px;
}

.btn-hero {
  background: var(--white);
  color: var(--navy);
  padding: 18px 36px;
  font-size: 17px;
  font-weight: 700;
  border-radius: 10px;
  box-shadow: var(--shadow-lg);
}

.btn-hero:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-xl);
}

/* ==================== HERO ==================== */
.hero {
  position: relative;
  padding: 160px 0 120px;
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-light) 100%);
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: 
    url('../images/hero-bg.jpg') center/cover no-repeat,
    linear-gradient(135deg, rgba(15, 23, 42, 0.95) 0%, rgba(30, 41, 59, 0.9) 100%);
  background-blend-mode: overlay;
}

/* Decorative grid pattern for visual interest */
.hero::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-image: 
    linear-gradient(rgba(255,255,255,0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.03) 1px, transparent 1px);
  background-size: 60px 60px;
  pointer-events: none;
}

.hero .container {
  position: relative;
  z-index: 1;
}

.hero-content {
  max-width: 720px;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 16px;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 100px;
  font-size: 14px;
  font-weight: 500;
  color: var(--emerald-light);
  margin-bottom: 24px;
}

.hero-badge svg {
  width: 16px;
  height: 16px;
}

.hero-title {
  font-family: var(--font-display);
  font-size: 56px;
  font-weight: 800;
  line-height: 1.1;
  color: var(--white);
  letter-spacing: -0.03em;
  margin-bottom: 24px;
}

.hero-title span {
  color: var(--emerald-light);
}

.hero-subtitle {
  font-size: 20px;
  line-height: 1.6;
  color: var(--gray-400);
  margin-bottom: 40px;
  max-width: 560px;
}

.hero-features {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-bottom: 40px;
}

.hero-feature {
  display: flex;
  align-items: center;
  gap: 12px;
  color: var(--white);
  font-size: 16px;
  font-weight: 500;
}

.hero-feature-icon {
  width: 24px;
  height: 24px;
  background: var(--emerald);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.hero-feature-icon svg {
  width: 14px;
  height: 14px;
  color: white;
}

.hero-cta {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  align-items: center;
}

.hero-trust {
  display: flex;
  align-items: center;
  gap: 12px;
  color: var(--gray-400);
  font-size: 14px;
}

.hero-trust-avatars {
  display: flex;
}

.hero-trust-avatars span {
  width: 32px;
  height: 32px;
  background: var(--gray-600);
  border: 2px solid var(--navy);
  border-radius: 50%;
  margin-left: -8px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  font-weight: 600;
  color: white;
}

.hero-trust-avatars span:first-child {
  margin-left: 0;
}

/* ==================== VALUE PROPS ==================== */
.value-props {
  padding: 100px 0;
  background: var(--white);
}

.section-header {
  text-align: center;
  max-width: 640px;
  margin: 0 auto 64px;
}

.section-label {
  display: inline-block;
  font-size: 13px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--emerald);
  margin-bottom: 16px;
}

.section-title {
  font-family: var(--font-display);
  font-size: 40px;
  font-weight: 700;
  color: var(--navy);
  letter-spacing: -0.02em;
  line-height: 1.2;
  margin-bottom: 16px;
}

.section-subtitle {
  font-size: 18px;
  color: var(--gray-500);
  line-height: 1.6;
}

.value-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}

.value-card {
  padding: 32px;
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: 16px;
  transition: var(--transition-slow);
}

.value-card:hover {
  border-color: var(--gray-300);
  box-shadow: var(--shadow-lg);
  transform: translateY(-4px);
}

.value-icon {
  width: 56px;
  height: 56px;
  background: var(--gray-100);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 24px;
}

.value-icon svg {
  width: 28px;
  height: 28px;
  color: var(--emerald);
}

.value-card h3 {
  font-size: 20px;
  font-weight: 600;
  color: var(--navy);
  margin-bottom: 12px;
}

.value-card p {
  font-size: 15px;
  color: var(--gray-500);
  line-height: 1.6;
}

/* ==================== HOW IT WORKS ==================== */
.how-it-works {
  padding: 100px 0;
  background: var(--gray-100);
}

.steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 48px;
  position: relative;
}

.steps::before {
  content: '';
  position: absolute;
  top: 40px;
  left: calc(16.66% + 24px);
  right: calc(16.66% + 24px);
  height: 2px;
  background: var(--gray-300);
}

.step {
  text-align: center;
  position: relative;
}

.step-number {
  width: 80px;
  height: 80px;
  background: var(--white);
  border: 2px solid var(--gray-300);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 24px;
  position: relative;
  z-index: 1;
  transition: var(--transition-slow);
}

.step:hover .step-number {
  border-color: var(--emerald);
  background: var(--emerald);
}

.step-number span {
  font-family: var(--font-display);
  font-size: 32px;
  font-weight: 700;
  color: var(--navy);
  transition: var(--transition);
}

.step:hover .step-number span {
  color: var(--white);
}

.step h3 {
  font-size: 22px;
  font-weight: 600;
  color: var(--navy);
  margin-bottom: 12px;
}

.step p {
  font-size: 15px;
  color: var(--gray-500);
  line-height: 1.6;
  max-width: 280px;
  margin: 0 auto;
}

/* ==================== WHY US ==================== */
.why-us {
  padding: 100px 0;
  background: var(--white);
}

.situations-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}

.situation-card {
  display: flex;
  gap: 20px;
  padding: 28px;
  background: var(--gray-100);
  border-radius: 16px;
  transition: var(--transition-slow);
}

.situation-card:hover {
  background: var(--white);
  box-shadow: var(--shadow-lg);
}

.situation-icon {
  width: 48px;
  height: 48px;
  background: var(--white);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  box-shadow: var(--shadow-sm);
}

.situation-icon svg {
  width: 24px;
  height: 24px;
  color: var(--emerald);
}

.situation-content h3 {
  font-size: 18px;
  font-weight: 600;
  color: var(--navy);
  margin-bottom: 8px;
}

.situation-content p {
  font-size: 14px;
  color: var(--gray-500);
  line-height: 1.6;
}

/* ==================== CONTACT FORM ==================== */
.contact-section {
  padding: 100px 0;
  background: var(--gray-100);
}

.contact-wrapper {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 64px;
  align-items: start;
}

.contact-info h2 {
  font-family: var(--font-display);
  font-size: 36px;
  font-weight: 700;
  color: var(--navy);
  letter-spacing: -0.02em;
  margin-bottom: 16px;
}

.contact-info > p {
  font-size: 17px;
  color: var(--gray-500);
  line-height: 1.6;
  margin-bottom: 40px;
}

.contact-benefits {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.contact-benefit {
  display: flex;
  align-items: flex-start;
  gap: 16px;
}

.contact-benefit-icon {
  width: 44px;
  height: 44px;
  background: var(--emerald);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.contact-benefit-icon svg {
  width: 22px;
  height: 22px;
  color: white;
}

.contact-benefit h4 {
  font-size: 16px;
  font-weight: 600;
  color: var(--navy);
  margin-bottom: 4px;
}

.contact-benefit p {
  font-size: 14px;
  color: var(--gray-500);
}

.contact-form {
  background: var(--white);
  border-radius: 20px;
  padding: 40px;
  box-shadow: var(--shadow-xl);
}

.form-message {
  padding: 16px 20px;
  border-radius: 10px;
  margin-bottom: 24px;
  font-size: 15px;
}

.form-message-success {
  background: #d1fae5;
  border: 1px solid var(--emerald);
  color: #065f46;
}

.form-message-error {
  background: #fee2e2;
  border: 1px solid #ef4444;
  color: #991b1b;
}

.form-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}

.form-group {
  display: flex;
  flex-direction: column;
}

.form-group.full-width {
  grid-column: 1 / -1;
}

.form-group label {
  font-size: 14px;
  font-weight: 500;
  color: var(--gray-700);
  margin-bottom: 8px;
}

.form-group input,
.form-group select,
.form-group textarea {
  padding: 14px 16px;
  border: 1px solid var(--gray-300);
  border-radius: 10px;
  font-family: var(--font-sans);
  font-size: 15px;
  color: var(--gray-700);
  background: var(--white);
  transition: var(--transition);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
  color: var(--gray-400);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--emerald);
  box-shadow: 0 0 0 3px rgba(5, 150, 105, 0.1);
}

.form-group textarea {
  resize: vertical;
  min-height: 100px;
}

.form-submit {
  margin-top: 24px;
}

.form-submit .btn {
  width: 100%;
}

.form-note {
  text-align: center;
  margin-top: 16px;
  font-size: 13px;
  color: var(--gray-500);
}

/* ==================== TRUST SECTION ==================== */
.trust-section {
  padding: 80px 0;
  background: var(--navy);
  position: relative;
  overflow: hidden;
}

.trust-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-image: 
    linear-gradient(rgba(255,255,255,0.02) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.02) 1px, transparent 1px);
  background-size: 40px 40px;
  pointer-events: none;
}

.trust-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  position: relative;
  z-index: 1;
}

.trust-card {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 16px;
  padding: 28px;
  text-align: center;
  transition: var(--transition-slow);
}

.trust-card:hover {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.15);
  transform: translateY(-4px);
}

.trust-card-icon {
  width: 56px;
  height: 56px;
  background: var(--emerald);
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
}

.trust-card-icon svg {
  width: 28px;
  height: 28px;
  color: white;
}

.trust-card-value {
  font-family: var(--font-display);
  font-size: 36px;
  font-weight: 800;
  color: var(--white);
  letter-spacing: -0.02em;
  margin-bottom: 4px;
}

.trust-card-label {
  font-size: 14px;
  font-weight: 600;
  color: var(--emerald-light);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 12px;
}

.trust-card-desc {
  font-size: 14px;
  color: var(--gray-400);
  line-height: 1.5;
}

/* ==================== FAQ ==================== */
.faq-section {
  padding: 100px 0;
  background: var(--gray-100);
}

.faq-list {
  max-width: 720px;
  margin: 0 auto;
}

.faq-item {
  background: var(--white);
  border-radius: 12px;
  margin-bottom: 12px;
  overflow: hidden;
  box-shadow: var(--shadow-sm);
}

.faq-question {
  width: 100%;
  padding: 24px 28px;
  background: none;
  border: none;
  text-align: left;
  font-family: var(--font-sans);
  font-size: 17px;
  font-weight: 600;
  color: var(--navy);
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: var(--transition);
}

.faq-question:hover {
  color: var(--emerald);
}

.faq-icon {
  width: 24px;
  height: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gray-400);
  transition: var(--transition-slow);
}

.faq-item.active .faq-icon {
  transform: rotate(45deg);
  color: var(--emerald);
}

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

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

.faq-answer p {
  padding: 0 28px 24px;
  font-size: 15px;
  color: var(--gray-500);
  line-height: 1.7;
}

/* ==================== FOOTER ==================== */
.footer {
  background: var(--navy);
  padding: 80px 0 32px;
}

.footer-content {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 48px;
  margin-bottom: 64px;
}

.footer-brand p {
  font-size: 15px;
  color: var(--gray-400);
  line-height: 1.6;
  margin-top: 20px;
  max-width: 280px;
}

.footer-section h4 {
  font-size: 14px;
  font-weight: 600;
  color: var(--white);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 20px;
}

.footer-section ul {
  list-style: none;
}

.footer-section ul li {
  margin-bottom: 12px;
}

.footer-section a {
  font-size: 15px;
  color: var(--gray-400);
  text-decoration: none;
  transition: var(--transition);
}

.footer-section a:hover {
  color: var(--white);
}

.footer-contact-item {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 16px;
}

.footer-contact-item svg {
  width: 18px;
  height: 18px;
  color: var(--emerald);
}

.footer-contact-item a,
.footer-contact-item span {
  font-size: 15px;
  color: var(--gray-400);
}

.footer-bottom {
  padding-top: 32px;
  border-top: 1px solid var(--gray-800);
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.footer-bottom p {
  font-size: 14px;
  color: var(--gray-500);
}

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

.footer-links a {
  font-size: 14px;
  color: var(--gray-500);
  text-decoration: none;
  transition: var(--transition);
}

.footer-links a:hover {
  color: var(--white);
}

/* ==================== RESPONSIVE ==================== */
@media (max-width: 1024px) {
  .value-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .contact-wrapper {
    grid-template-columns: 1fr;
    gap: 48px;
  }
  
  .footer-content {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .nav-links {
    display: none;
  }
  
  .mobile-menu-toggle {
    display: flex;
  }
  
  .nav.active .nav-links {
    display: flex;
    flex-direction: column;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--white);
    padding: 24px;
    border-top: 1px solid var(--gray-200);
    box-shadow: var(--shadow-lg);
  }
  
  /* Shorter button text on tablet/phone */
  .btn-text-full {
    display: none;
  }
  
  .btn-text-short {
    display: inline;
  }
  
  .hero {
    padding: 140px 0 80px;
  }
  
  .hero-title {
    font-size: 36px;
  }
  
  .hero-subtitle {
    font-size: 17px;
  }
  
  .hero-features {
    flex-direction: column;
    gap: 16px;
  }
  
  .section-title {
    font-size: 32px;
  }
  
  .value-grid {
    grid-template-columns: 1fr;
  }
  
  .steps {
    grid-template-columns: 1fr;
    gap: 32px;
  }
  
  .steps::before {
    display: none;
  }
  
  .situations-grid {
    grid-template-columns: 1fr;
  }
  
  .form-grid {
    grid-template-columns: 1fr;
  }
  
  .contact-form {
    padding: 28px;
  }
  
  .trust-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
  }
  
  .trust-card {
    padding: 24px 20px;
  }
  
  .trust-card-value {
    font-size: 28px;
  }
  
  .footer-content {
    grid-template-columns: 1fr;
    gap: 32px;
  }
  
  .footer-bottom {
    flex-direction: column;
    gap: 16px;
    text-align: center;
  }
}

@media (max-width: 480px) {
  .container {
    padding: 0 16px;
  }
  
  /* Abbreviated logo on small phones */
  .logo-full {
    display: none;
  }
  
  .logo-short {
    display: inline;
  }
  
  .logo h1 {
    font-size: 18px;
  }
  
  .logo-mark {
    width: 36px;
    height: 36px;
    border-radius: 8px;
  }
  
  .logo-mark svg {
    width: 20px;
    height: 20px;
  }
  
  .header-content {
    height: 64px;
  }
  
  .btn-primary {
    padding: 10px 16px;
    font-size: 14px;
  }
  
  .hero-title {
    font-size: 30px;
  }
  
  .btn-hero {
    width: 100%;
    justify-content: center;
  }
  
  .hero-cta {
    flex-direction: column;
    width: 100%;
  }
  
  .hero-trust {
    justify-content: center;
  }
  
  .trust-grid {
    grid-template-columns: 1fr;
  }
  
  .trust-card {
    display: flex;
    align-items: center;
    text-align: left;
    gap: 20px;
    padding: 20px;
  }
  
  .trust-card-icon {
    margin: 0;
    flex-shrink: 0;
    width: 48px;
    height: 48px;
  }
  
  .trust-card-icon svg {
    width: 24px;
    height: 24px;
  }
  
  .trust-card-value {
    font-size: 24px;
    margin-bottom: 2px;
  }
  
  .trust-card-label {
    font-size: 12px;
    margin-bottom: 6px;
  }
  
  .trust-card-desc {
    font-size: 13px;
  }
}

/* Very small phones - landscape or narrow */
@media (max-width: 380px) {
  .logo h1 {
    font-size: 16px;
  }
  
  .btn-primary {
    padding: 8px 12px;
    font-size: 13px;
  }
}
