/* ==========================================================================
   LimoSuite Marketing — Design System
   Generated: 2026-03-28
   ========================================================================== */

/* ==========================================================================
   1. RESET + BASE
   ========================================================================== */

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

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: 'Inter', system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  font-size: 1rem;
  line-height: 1.7;
  color: #4b5563;
  background-color: #fafafa;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

img,
picture,
video,
canvas,
svg {
  display: block;
  max-width: 100%;
}

input,
button,
textarea,
select {
  font: inherit;
}

/* ==========================================================================
   2. TYPOGRAPHY
   ========================================================================== */

h1,
h2,
h3,
h4,
h5,
h6 {
  color: #1a1a1a;
  line-height: 1.2;
}

h1 {
  font-size: 2.5rem;
  font-weight: 800;
  letter-spacing: -0.02em;
}

h2 {
  font-size: 1.8rem;
  font-weight: 700;
  letter-spacing: -0.01em;
}

h3 {
  font-size: 1.2rem;
  font-weight: 600;
}

h4 {
  font-size: 1rem;
  font-weight: 600;
}

p {
  font-size: 1rem;
  line-height: 1.7;
  color: #4b5563;
}

a {
  color: #2563eb;
  text-decoration: none;
  transition: color 0.2s ease;
}

a:hover {
  color: #1d4ed8;
}

ul,
ol {
  list-style: none;
}

/* ==========================================================================
   3. CONTAINER
   ========================================================================== */

.container {
  max-width: 1140px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 24px;
  padding-right: 24px;
  width: 100%;
}

/* ==========================================================================
   4. NAVBAR
   ========================================================================== */

.navbar {
  position: sticky;
  top: 0;
  background: #ffffff;
  z-index: 1000;
  transition: box-shadow 0.25s ease;
  border-bottom: 1px solid transparent;
}

.navbar.scrolled {
  box-shadow: 0 2px 16px rgba(0, 0, 0, 0.08);
  border-bottom-color: #f3f4f6;
}

.navbar .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 70px;
}

.nav-logo img {
  height: 36px;
  width: auto;
}

.nav-menu {
  display: flex;
  align-items: center;
  gap: 32px;
  list-style: none;
}

.nav-menu a {
  color: #4b5563;
  font-weight: 500;
  font-size: 0.95rem;
  text-decoration: none;
  padding: 4px 0;
  position: relative;
  transition: color 0.2s ease;
}

.nav-menu a::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 0;
  height: 2px;
  background: #2563eb;
  transition: width 0.2s ease;
}

.nav-menu a:hover {
  color: #2563eb;
}

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

.nav-menu a.active {
  color: #2563eb;
}

.nav-menu a.active::after {
  width: 100%;
}

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

.nav-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 40px;
  height: 40px;
  background: none;
  border: none;
  cursor: pointer;
  gap: 5px;
  padding: 4px;
  border-radius: 8px;
  transition: background 0.2s;
}

.nav-toggle:hover {
  background: #f3f4f6;
}

.nav-toggle span {
  display: block;
  width: 22px;
  height: 2px;
  background: #1a1a1a;
  border-radius: 2px;
  transition: transform 0.25s ease, opacity 0.2s ease;
}

.nav-toggle.open span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.nav-toggle.open span:nth-child(2) {
  opacity: 0;
}

.nav-toggle.open span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

/* ==========================================================================
   5. BUTTONS
   ========================================================================== */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px 28px;
  border-radius: 10px;
  font-weight: 600;
  font-size: 0.95rem;
  font-family: inherit;
  text-decoration: none;
  border: none;
  cursor: pointer;
  transition: background 0.2s ease, color 0.2s ease, box-shadow 0.2s ease, transform 0.15s ease;
  white-space: nowrap;
  line-height: 1;
}

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

.btn-primary {
  background: #2563eb;
  color: #ffffff;
  border: 2px solid #2563eb;
}

.btn-primary:hover {
  background: #1d4ed8;
  border-color: #1d4ed8;
  color: #ffffff;
  box-shadow: 0 4px 12px rgba(37, 99, 235, 0.3);
}

.btn-outline {
  background: transparent;
  color: #2563eb;
  border: 2px solid #2563eb;
}

.btn-outline:hover {
  background: #2563eb;
  color: #ffffff;
  box-shadow: 0 4px 12px rgba(37, 99, 235, 0.2);
}

.btn-lg {
  padding: 16px 36px;
  font-size: 1.1rem;
  border-radius: 12px;
}

.btn-sm {
  padding: 8px 20px;
  font-size: 0.85rem;
  border-radius: 8px;
}

.btn-gold {
  background: #d4af37;
  color: #000000;
  border: 2px solid #d4af37;
}

.btn-gold:hover {
  background: #c9a22e;
  border-color: #c9a22e;
  color: #000000;
  box-shadow: 0 4px 12px rgba(212, 175, 55, 0.35);
}

/* ==========================================================================
   6. HERO
   ========================================================================== */

.hero {
  padding: 100px 0 80px;
  background: linear-gradient(180deg, #f0f7ff 0%, #fafafa 100%);
  text-align: center;
}

.hero h1 {
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

.hero p {
  max-width: 560px;
  margin: 16px auto 32px;
  font-size: 1.15rem;
  color: #4b5563;
}

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

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: #eff6ff;
  color: #2563eb;
  padding: 6px 16px;
  border-radius: 20px;
  font-size: 0.85rem;
  font-weight: 600;
  margin-bottom: 24px;
}

/* ==========================================================================
   7. SECTION
   ========================================================================== */

.section {
  padding: 80px 0;
}

.section-alt {
  background: #f0f4ff;
}

.section-white {
  background: #ffffff;
}

.section-dark {
  background: #1a1a1a;
  color: #e5e7eb;
}

.section-dark h2 {
  color: #ffffff;
}

.section-dark p {
  color: #9ca3af;
}

.section-header {
  text-align: center;
  margin-bottom: 48px;
}

.section-header p {
  max-width: 600px;
  margin: 12px auto 0;
  font-size: 1.05rem;
}

/* ==========================================================================
   8. FEATURE GRID
   ========================================================================== */

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

.feature-card {
  background: #ffffff;
  padding: 32px;
  border-radius: 16px;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.08);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.feature-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
}

.feature-card .icon {
  width: 48px;
  height: 48px;
  background: #eff6ff;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
  color: #2563eb;
  flex-shrink: 0;
}

.feature-card .icon svg {
  width: 24px;
  height: 24px;
}

.feature-card h3 {
  margin-bottom: 8px;
  color: #1a1a1a;
}

.feature-card p {
  color: #4b5563;
  font-size: 0.95rem;
  line-height: 1.65;
}

/* ==========================================================================
   9. STEPS
   ========================================================================== */

.steps {
  display: flex;
  gap: 40px;
  justify-content: center;
  flex-wrap: wrap;
  position: relative;
}

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

.step-number {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: #2563eb;
  color: #ffffff;
  font-size: 1.4rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 16px;
  box-shadow: 0 4px 12px rgba(37, 99, 235, 0.3);
}

.step h3 {
  margin-bottom: 8px;
  color: #1a1a1a;
}

.step p {
  font-size: 0.95rem;
  color: #4b5563;
}

/* ==========================================================================
   10. PRICING
   ========================================================================== */

.pricing-toggle {
  display: flex;
  justify-content: center;
  gap: 0;
  margin-bottom: 40px;
}

.pricing-toggle button {
  padding: 10px 24px;
  border: 1px solid #d1d5db;
  background: #ffffff;
  cursor: pointer;
  font-weight: 600;
  font-size: 0.9rem;
  color: #4b5563;
  transition: background 0.2s, color 0.2s, border-color 0.2s;
}

.pricing-toggle button:first-child {
  border-radius: 8px 0 0 8px;
  border-right: none;
}

.pricing-toggle button:last-child {
  border-radius: 0 8px 8px 0;
  border-left: none;
}

.pricing-toggle button.active {
  background: #2563eb;
  color: #ffffff;
  border-color: #2563eb;
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  align-items: start;
}

.pricing-card {
  background: #ffffff;
  border-radius: 16px;
  padding: 32px;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.08);
  text-align: center;
  position: relative;
  transition: box-shadow 0.25s ease;
}

.pricing-card:hover {
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
}

.pricing-card.featured {
  border: 2px solid #2563eb;
  box-shadow: 0 4px 20px rgba(37, 99, 235, 0.15);
}

.pricing-card .badge-popular {
  position: absolute;
  top: -14px;
  left: 50%;
  transform: translateX(-50%);
  background: #2563eb;
  color: #ffffff;
  padding: 4px 16px;
  border-radius: 20px;
  font-size: 0.8rem;
  font-weight: 600;
  white-space: nowrap;
}

.pricing-card .plan-name {
  font-size: 1.3rem;
  font-weight: 700;
  color: #1a1a1a;
}

.pricing-card .price {
  font-size: 2.4rem;
  font-weight: 800;
  color: #1a1a1a;
  margin: 16px 0 4px;
  line-height: 1;
}

.pricing-card .price-period {
  font-size: 0.9rem;
  color: #9ca3af;
  margin-bottom: 8px;
}

.pricing-card .plan-desc {
  font-size: 0.9rem;
  color: #6b7280;
  margin-bottom: 4px;
}

.pricing-card ul {
  list-style: none;
  text-align: left;
  margin: 24px 0;
}

.pricing-card li {
  padding: 8px 0;
  border-bottom: 1px solid #f3f4f6;
  font-size: 0.9rem;
  color: #4b5563;
  display: flex;
  align-items: flex-start;
  gap: 4px;
}

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

.pricing-card li::before {
  content: '✓';
  color: #059669;
  font-weight: 700;
  margin-right: 8px;
  flex-shrink: 0;
}

.pricing-card .btn {
  width: 100%;
  margin-top: 8px;
}

.pricing-monthly,
.pricing-yearly {
  display: none;
}

.pricing-monthly.visible,
.pricing-yearly.visible {
  display: block;
}

.pricing-save-badge {
  display: inline-block;
  background: #ecfdf5;
  color: #059669;
  font-size: 0.75rem;
  font-weight: 600;
  padding: 2px 10px;
  border-radius: 12px;
  margin-left: 6px;
}

/* ==========================================================================
   11. FAQ
   ========================================================================== */

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

.faq-item {
  border-bottom: 1px solid #e5e7eb;
  padding: 0;
}

.faq-item:first-child {
  border-top: 1px solid #e5e7eb;
}

.faq-question {
  width: 100%;
  background: none;
  border: none;
  padding: 20px 0;
  font-size: 1rem;
  font-weight: 600;
  color: #1a1a1a;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  text-align: left;
  gap: 16px;
  font-family: inherit;
  line-height: 1.5;
}

.faq-question:hover {
  color: #2563eb;
}

.faq-question svg {
  width: 20px;
  height: 20px;
  transition: transform 0.2s ease;
  flex-shrink: 0;
  color: #9ca3af;
}

.faq-item.open .faq-question {
  color: #2563eb;
}

.faq-item.open .faq-question svg {
  transform: rotate(180deg);
  color: #2563eb;
}

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

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

.faq-answer p {
  padding: 0 0 20px;
  color: #4b5563;
  line-height: 1.7;
}

/* ==========================================================================
   12. FORMS
   ========================================================================== */

.form-card {
  max-width: 560px;
  margin: 0 auto;
  background: #ffffff;
  padding: 40px;
  border-radius: 16px;
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.08);
}

.form-group {
  margin-bottom: 20px;
}

.form-group label {
  display: block;
  font-weight: 600;
  font-size: 0.9rem;
  margin-bottom: 6px;
  color: #1a1a1a;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 12px 16px;
  border: 1px solid #d1d5db;
  border-radius: 10px;
  font-size: 1rem;
  font-family: inherit;
  color: #1a1a1a;
  background: #ffffff;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
  appearance: none;
  -webkit-appearance: none;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
  color: #9ca3af;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: #2563eb;
  box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.15);
}

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

.form-group select {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='none' viewBox='0 0 24 24' stroke='%239ca3af'%3E%3Cpath stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='M19 9l-7 7-7-7'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 12px center;
  background-size: 16px;
  padding-right: 40px;
  cursor: pointer;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.honeypot {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  overflow: hidden;
  opacity: 0;
  tab-index: -1;
}

/* ==========================================================================
   13. FOOTER
   ========================================================================== */

.footer {
  background: #1a1a1a;
  color: #e5e7eb;
  padding: 60px 0 24px;
}

.footer-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
  margin-bottom: 40px;
}

.footer-brand {
  grid-column: span 1;
}

.footer-brand img {
  height: 32px;
  margin-bottom: 16px;
  filter: brightness(0) invert(1);
}

.footer-brand p {
  color: #9ca3af;
  font-size: 0.9rem;
  line-height: 1.65;
}

.footer h4 {
  color: #d4af37;
  margin-bottom: 16px;
  font-size: 0.95rem;
  font-weight: 600;
  letter-spacing: 0.02em;
  text-transform: uppercase;
}

.footer a {
  color: #9ca3af;
  text-decoration: none;
  display: block;
  padding: 4px 0;
  font-size: 0.9rem;
  transition: color 0.2s ease;
}

.footer a:hover {
  color: #ffffff;
}

.footer-bottom {
  border-top: 1px solid #333333;
  padding-top: 24px;
  text-align: center;
  color: #666666;
  font-size: 0.85rem;
}

.footer-social {
  display: flex;
  gap: 12px;
  margin-top: 16px;
}

.footer-social a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  background: #2a2a2a;
  border-radius: 8px;
  color: #9ca3af;
  transition: background 0.2s, color 0.2s;
  padding: 0;
}

.footer-social a:hover {
  background: #2563eb;
  color: #ffffff;
}

.footer-social a svg {
  width: 18px;
  height: 18px;
}

/* ==========================================================================
   14. ALERTS
   ========================================================================== */

.alert {
  padding: 16px 20px;
  border-radius: 12px;
  margin-bottom: 24px;
  font-size: 0.95rem;
  font-weight: 500;
  display: flex;
  align-items: flex-start;
  gap: 12px;
}

.alert-success {
  background: #ecfdf5;
  color: #059669;
  border: 1px solid #a7f3d0;
}

.alert-error {
  background: #fef2f2;
  color: #dc2626;
  border: 1px solid #fca5a5;
}

.alert-info {
  background: #eff6ff;
  color: #2563eb;
  border: 1px solid #bfdbfe;
}

.alert-warning {
  background: #fffbeb;
  color: #d97706;
  border: 1px solid #fde68a;
}

/* ==========================================================================
   15. BADGES
   ========================================================================== */

.badge {
  display: inline-block;
  padding: 4px 12px;
  border-radius: 20px;
  font-size: 0.8rem;
  font-weight: 600;
  line-height: 1.4;
}

.badge-blue {
  background: #eff6ff;
  color: #2563eb;
}

.badge-gold {
  background: #fef9c3;
  color: #92400e;
}

.badge-green {
  background: #ecfdf5;
  color: #059669;
}

.badge-gray {
  background: #f3f4f6;
  color: #6b7280;
}

/* ==========================================================================
   16. UTILITIES
   ========================================================================== */

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

.text-left {
  text-align: left;
}

.text-right {
  text-align: right;
}

.text-muted {
  color: #9ca3af;
}

.text-white {
  color: #ffffff;
}

.text-primary {
  color: #2563eb;
}

.text-gold {
  color: #d4af37;
}

.text-success {
  color: #059669;
}

.text-error {
  color: #dc2626;
}

.hidden {
  display: none !important;
}

.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

/* Margin bottom */
.mb-0 { margin-bottom: 0 !important; }
.mb-1 { margin-bottom: 8px !important; }
.mb-2 { margin-bottom: 16px !important; }
.mb-3 { margin-bottom: 24px !important; }
.mb-4 { margin-bottom: 32px !important; }
.mb-5 { margin-bottom: 48px !important; }

/* Margin top */
.mt-0 { margin-top: 0 !important; }
.mt-1 { margin-top: 8px !important; }
.mt-2 { margin-top: 16px !important; }
.mt-3 { margin-top: 24px !important; }
.mt-4 { margin-top: 32px !important; }
.mt-5 { margin-top: 48px !important; }

/* Padding helpers */
.p-0 { padding: 0 !important; }

/* Flex utilities */
.d-flex { display: flex; }
.align-center { align-items: center; }
.justify-center { justify-content: center; }
.justify-between { justify-content: space-between; }
.flex-wrap { flex-wrap: wrap; }
.gap-1 { gap: 8px; }
.gap-2 { gap: 16px; }
.gap-3 { gap: 24px; }
.gap-4 { gap: 32px; }

/* ==========================================================================
   17. COMPARISON TABLE
   ========================================================================== */

.table-wrapper {
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  border-radius: 12px;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.08);
}

.comparison-table {
  width: 100%;
  border-collapse: collapse;
  background: #ffffff;
  border-radius: 12px;
  overflow: hidden;
}

.comparison-table th {
  background: #1a1a1a;
  color: #d4af37;
  padding: 14px;
  text-align: center;
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.03em;
  text-transform: uppercase;
}

.comparison-table th:first-child {
  text-align: left;
}

.comparison-table td {
  padding: 12px 14px;
  text-align: center;
  border-bottom: 1px solid #f3f4f6;
  font-size: 0.9rem;
  color: #4b5563;
}

.comparison-table td:first-child {
  text-align: left;
  color: #1a1a1a;
  font-weight: 500;
}

.comparison-table tbody tr:last-child td {
  border-bottom: none;
}

.comparison-table tbody tr:hover td {
  background: #fafafa;
}

.comparison-table .plan-header {
  font-weight: 700;
  color: #1a1a1a;
}

.comparison-table .check {
  color: #059669;
  font-weight: 700;
  font-size: 1rem;
}

.comparison-table .cross {
  color: #d1d5db;
  font-weight: 700;
  font-size: 1rem;
}

/* ==========================================================================
   18. TESTIMONIALS
   ========================================================================== */

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

.testimonial-card {
  background: #ffffff;
  padding: 28px;
  border-radius: 16px;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.08);
}

.testimonial-stars {
  color: #d4af37;
  font-size: 1.1rem;
  margin-bottom: 16px;
  letter-spacing: 2px;
}

.testimonial-text {
  font-size: 0.95rem;
  line-height: 1.7;
  color: #4b5563;
  margin-bottom: 20px;
  font-style: italic;
}

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

.testimonial-avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: #eff6ff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 1rem;
  color: #2563eb;
  flex-shrink: 0;
}

.testimonial-author-info strong {
  display: block;
  font-size: 0.9rem;
  font-weight: 700;
  color: #1a1a1a;
}

.testimonial-author-info span {
  font-size: 0.82rem;
  color: #9ca3af;
}

/* ==========================================================================
   19. LOGOS / TRUST BAR
   ========================================================================== */

.logo-bar {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 40px;
  flex-wrap: wrap;
  padding: 32px 0;
}

.logo-bar img {
  height: 32px;
  width: auto;
  opacity: 0.45;
  filter: grayscale(100%);
  transition: opacity 0.2s, filter 0.2s;
}

.logo-bar img:hover {
  opacity: 0.8;
  filter: grayscale(0%);
}

/* ==========================================================================
   20. STATS BAR
   ========================================================================== */

.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  text-align: center;
}

.stat-item .stat-number {
  font-size: 2.2rem;
  font-weight: 800;
  color: #1a1a1a;
  line-height: 1;
  display: block;
}

.stat-item .stat-label {
  font-size: 0.9rem;
  color: #6b7280;
  margin-top: 6px;
}

/* ==========================================================================
   RESPONSIVE — TABLET (max 1024px)
   ========================================================================== */

@media (max-width: 1024px) {
  .feature-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .pricing-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .testimonial-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .stats-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .footer-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  h1 {
    font-size: 2.1rem;
  }

  h2 {
    font-size: 1.6rem;
  }
}

/* ==========================================================================
   RESPONSIVE — MOBILE (max 768px)
   ========================================================================== */

@media (max-width: 768px) {
  /* Typography */
  h1 {
    font-size: 1.8rem;
  }

  h2 {
    font-size: 1.4rem;
  }

  h3 {
    font-size: 1.1rem;
  }

  /* Section */
  .section {
    padding: 48px 0;
  }

  .section-header {
    margin-bottom: 32px;
  }

  /* Hero */
  .hero {
    padding: 64px 0 48px;
  }

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

  /* Navbar */
  .nav-toggle {
    display: flex;
  }

  .nav-cta {
    display: none;
  }

  .nav-menu {
    display: none;
    position: absolute;
    top: 70px;
    left: 0;
    right: 0;
    background: #ffffff;
    flex-direction: column;
    gap: 0;
    padding: 8px 0 16px;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
    border-bottom: 1px solid #f3f4f6;
    z-index: 999;
  }

  .nav-menu.open {
    display: flex;
  }

  .nav-menu li {
    width: 100%;
  }

  .nav-menu a {
    display: block;
    padding: 12px 24px;
    border-radius: 0;
    width: 100%;
  }

  .nav-menu a::after {
    display: none;
  }

  .nav-menu a:hover {
    background: #f3f4f6;
  }

  .navbar .container {
    position: relative;
  }

  /* Feature grid */
  .feature-grid {
    grid-template-columns: 1fr;
  }

  /* Pricing */
  .pricing-grid {
    grid-template-columns: 1fr;
  }

  /* Testimonials */
  .testimonial-grid {
    grid-template-columns: 1fr;
  }

  /* Footer */
  .footer-grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  /* Form */
  .form-card {
    padding: 28px 20px;
  }

  .form-row {
    grid-template-columns: 1fr;
  }

  /* Steps */
  .steps {
    gap: 24px;
  }

  .step {
    min-width: 160px;
  }

  /* Stats */
  .stats-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  /* Buttons */
  .btn-lg {
    padding: 14px 28px;
    font-size: 1rem;
  }

  /* Hero buttons */
  .hero-buttons {
    gap: 12px;
  }

  .hero-buttons .btn {
    width: 100%;
    max-width: 320px;
  }

  /* Logo bar */
  .logo-bar {
    gap: 24px;
  }
}

/* ==========================================================================
   RESPONSIVE — SMALL MOBILE (max 480px)
   ========================================================================== */

@media (max-width: 480px) {
  h1 {
    font-size: 1.6rem;
  }

  h2 {
    font-size: 1.25rem;
  }

  .container {
    padding-left: 16px;
    padding-right: 16px;
  }

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

  .stat-item .stat-number {
    font-size: 1.8rem;
  }

  .pricing-card {
    padding: 24px 20px;
  }

  .feature-card {
    padding: 24px 20px;
  }

  .comparison-table th,
  .comparison-table td {
    padding: 10px 8px;
    font-size: 0.82rem;
  }
}

/* ==========================================================================
   PRINT
   ========================================================================== */

@media print {
  .navbar,
  .nav-toggle,
  .hero-buttons,
  .footer,
  .btn {
    display: none !important;
  }

  body {
    background: #fff;
    color: #000;
  }

  .section {
    padding: 24px 0;
  }
}
