/* Malkia Web Factory — Stylesheet
   Off-white + gold academic palette
   Inter (sans-serif) for everything
   Consistent vertical rhythm */

:root {
  --background: hsl(40, 20%, 96%);
  --foreground: hsl(220, 15%, 18%);
  --card: hsl(40, 15%, 98%);
  --card-foreground: hsl(220, 15%, 18%);
  --primary: hsl(220, 15%, 18%);
  --primary-foreground: hsl(40, 20%, 96%);
  --secondary: hsl(40, 12%, 92%);
  --secondary-foreground: hsl(220, 15%, 18%);
  --muted: hsl(40, 10%, 90%);
  --muted-foreground: hsl(220, 8%, 46%);
  --accent: hsl(42, 65%, 48%);
  --accent-foreground: hsl(220, 15%, 18%);
  --border: hsl(40, 12%, 85%);
  --destructive: hsl(0, 60%, 50%);
  --ring: hsl(42, 65%, 48%);
  --radius: 0.5rem;

  --font-body: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
}

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

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-body);
  color: var(--foreground);
  background: var(--background);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

h1, h2, h3, h4 {
  font-family: var(--font-body);
  font-weight: 700;
  line-height: 1.25;
}
h1 { font-size: 2.25rem; }
h2 { font-size: 1.75rem; }
h3 { font-size: 1.2rem; }

a { color: var(--accent); text-decoration: none; }
a:hover { opacity: 0.85; }

img { max-width: 100%; height: auto; }

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

/* Utilities */
.text-center { text-align: center; }
.text-muted { color: var(--muted-foreground); }
.text-primary { color: var(--primary); }
.text-accent { color: var(--accent); }
.mt-1 { margin-top: 0.5rem; }
.mt-2 { margin-top: 1rem; }
.mt-3 { margin-top: 2rem; }

.label {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--accent);
  margin-bottom: 0.5rem;
}

/* Buttons */
.btn {
  display: inline-block;
  padding: 0.7rem 1.4rem;
  border-radius: var(--radius);
  font-family: var(--font-body);
  font-size: 0.875rem;
  font-weight: 500;
  border: none;
  cursor: pointer;
  transition: all 0.2s;
  text-align: center;
}
.btn-primary { background: var(--primary); color: var(--primary-foreground); }
.btn-primary:hover { opacity: 0.9; color: var(--primary-foreground); }
.btn-accent { background: var(--accent); color: #fff; }
.btn-accent:hover { opacity: 0.85; color: #fff; }
.btn-outline { background: transparent; border: 1px solid var(--border); color: var(--foreground); }
.btn-outline:hover { border-color: var(--accent); color: var(--accent); }
.btn-full { width: 100%; }
.btn-sm { font-size: 0.8rem; padding: 0.4rem 1rem; }
.btn-lg { font-size: 0.95rem; padding: 0.8rem 2rem; }
.btn-ghost { background: transparent; color: var(--muted-foreground); }
.btn-ghost:hover { color: var(--foreground); }

/* ===== Navbar ===== */
.site-navbar {
  background: var(--primary);
  position: sticky;
  top: 0;
  z-index: 100;
  transition: box-shadow 0.2s;
}
.site-navbar.navbar-scrolled { box-shadow: 0 1px 8px rgba(0,0,0,0.08); }
.navbar-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 3.75rem;
}
.navbar-brand {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--primary-foreground);
  letter-spacing: -0.02em;
}
.brand-accent { color: var(--accent); }
.navbar-links { display: flex; align-items: center; gap: 0.25rem; }
.navbar-links a {
  color: hsla(40, 20%, 96%, 0.75);
  font-size: 0.875rem;
  font-weight: 500;
  padding: 0.45rem 0.7rem;
  border-radius: calc(var(--radius) - 2px);
  transition: all 0.2s;
}
.navbar-links a:hover { background: hsla(255, 255, 255, 0.08); color: var(--primary-foreground); opacity: 1; }
.navbar-links a.active { color: var(--accent); }

.mobile-menu-btn {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  flex-direction: column;
  gap: 5px;
  padding: 0.5rem;
  -webkit-tap-highlight-color: transparent;
}
.mobile-menu-btn span { display: block; width: 22px; height: 2px; background: var(--primary-foreground); transition: all 0.3s; }

/* ===== Hero ===== */
.hero {
  padding: 6rem 0 5rem;
  text-align: center;
  background: var(--background);
}
.hero-inner { max-width: 40rem; margin: 0 auto; }
.hero h1 { font-size: 2.75rem; color: var(--foreground); line-height: 1.2; }
.hero-sub { max-width: 32rem; margin: 1.25rem auto 0; color: var(--muted-foreground); font-size: 1.05rem; line-height: 1.6; }

/* ===== Sections ===== */
.section { padding: 4.5rem 0; }
.section-alt { background: hsl(40, 15%, 93%); }
.section + .section { border-top: 1px solid var(--border); }
.section-cta {
  background: var(--primary);
  color: var(--primary-foreground);
}
.section-cta h2 { color: var(--primary-foreground); }
.section-cta p { color: hsla(40, 20%, 96%, 0.8); max-width: 30rem; margin: 0.75rem auto 0; line-height: 1.6; }

/* ===== Cards ===== */
.card-grid { display: grid; gap: 1.5rem; }
.card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.75rem;
  transition: box-shadow 0.2s;
}
.card:hover { box-shadow: 0 2px 8px rgba(0,0,0,0.04); }
.card-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2.25rem;
  height: 2.25rem;
  border-radius: var(--radius);
  background: hsla(42, 65%, 48%, 0.1);
  color: var(--accent);
  font-size: 1.1rem;
  margin-bottom: 0.75rem;
}

.feature-list { list-style: none; margin-top: 1rem; }
.feature-list li { font-size: 0.875rem; color: var(--muted-foreground); padding: 0.3rem 0; line-height: 1.5; }

/* ===== Pricing ===== */
.pricing-grid { display: grid; gap: 1.5rem; }
.pricing-card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 2rem;
  display: flex;
  flex-direction: column;
}
.pricing-highlighted { border-color: var(--accent); box-shadow: 0 0 0 1px var(--accent); }
.pricing-price { font-size: 2rem; font-weight: 700; margin: 0.5rem 0; }
.pricing-price span { font-size: 0.875rem; font-weight: 400; color: var(--muted-foreground); }
.pricing-card .feature-list { flex: 1; }
.pricing-card .feature-list li { display: flex; align-items: flex-start; gap: 0.5rem; }

/* ===== Founders ===== */
.founders-grid { display: grid; gap: 2.5rem; max-width: 48rem; margin: 2rem auto 0; }
.founder-card { text-align: center; }
.founder-avatar {
  width: 7rem; height: 7rem; border-radius: 50%;
  background: var(--secondary); color: var(--primary);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.75rem; font-weight: 700;
  margin: 0 auto 0.75rem;
  border: 3px solid hsla(42, 65%, 48%, 0.3);
}
.founder-role { color: var(--accent); font-size: 0.8rem; font-weight: 500; margin-bottom: 0.5rem; }

/* ===== About grid ===== */
.about-grid { display: grid; gap: 2.5rem; max-width: 48rem; margin: 0 auto; }
.principles-list { list-style: none; margin-top: 0.75rem; }
.principles-list li {
  display: flex;
  align-items: flex-start;
  gap: 0.5rem;
  padding: 0.4rem 0;
  font-size: 0.9rem;
  color: var(--muted-foreground);
  line-height: 1.6;
}
.principles-list .principle-icon {
  color: var(--accent);
  margin-top: 0.2rem;
  flex-shrink: 0;
}

/* ===== Process ===== */
.process-list { max-width: 42rem; margin: 0 auto; }
.process-step {
  display: flex;
  gap: 1.25rem;
  margin-bottom: 2.25rem;
}
.step-number {
  flex-shrink: 0;
  width: 2.5rem;
  height: 2.5rem;
  border-radius: 50%;
  background: var(--primary);
  color: var(--primary-foreground);
  font-size: 0.8rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
}
.process-step h3 { font-size: 1.1rem; font-weight: 600; }
.process-step p { margin-top: 0.35rem; color: var(--muted-foreground); font-size: 0.9rem; line-height: 1.6; }

/* ===== FAQ ===== */
.faq-list { max-width: 40rem; margin: 2rem auto 0; }
.faq-item { border-bottom: 1px solid var(--border); }
.faq-item summary {
  padding: 1rem 0; cursor: pointer; font-weight: 600;
  font-size: 0.95rem;
  list-style: none; display: flex; justify-content: space-between; align-items: center;
  line-height: 1.5;
}
.faq-item summary::after { content: '+'; font-size: 1.1rem; color: var(--accent); }
.faq-item[open] summary::after { content: '−'; }
.faq-item p { padding: 0 0 1rem; color: var(--muted-foreground); font-size: 0.9rem; line-height: 1.6; }

/* ===== Portfolio ===== */
.portfolio-grid { display: grid; gap: 1.5rem; }
.portfolio-card {
  display: block; border-radius: var(--radius); overflow: hidden;
  border: 1px solid var(--border); background: var(--card); transition: box-shadow 0.2s;
}
.portfolio-card:hover { box-shadow: 0 2px 12px rgba(0,0,0,0.05); }
.portfolio-card img { width: 100%; aspect-ratio: 16/9; object-fit: cover; }
.portfolio-placeholder { aspect-ratio: 16/9; background: var(--muted); }
.portfolio-info { padding: 1.25rem; }
.badge { font-size: 0.7rem; background: hsla(42, 65%, 48%, 0.1); color: var(--accent); padding: 0.2rem 0.5rem; border-radius: 4px; font-weight: 600; text-transform: uppercase; }

.project-hero-image { width: 100%; border-radius: var(--radius); margin: 2rem 0; }
.project-section { margin-top: 2rem; }
.project-section h2 { font-size: 1.25rem; margin-bottom: 0.5rem; }

.back-link { display: inline-block; color: var(--muted-foreground); font-size: 0.875rem; margin-bottom: 1rem; }
.back-link:hover { color: var(--accent); opacity: 1; }

/* ===== Forms ===== */
.form { display: flex; flex-direction: column; gap: 1.25rem; }
.form-group { display: flex; flex-direction: column; gap: 0.35rem; }
.form-group label { font-size: 0.875rem; font-weight: 500; }
.form-group input, .form-group select, .form-group textarea {
  padding: 0.65rem 0.75rem;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  font-family: var(--font-body);
  font-size: 1rem;
  background: #fff;
  color: var(--foreground);
  -webkit-appearance: none;
  appearance: none;
}
.form-group input:focus, .form-group select:focus, .form-group textarea:focus {
  outline: none;
  border-color: var(--accent);
  box-shadow: 0 0 0 2px hsla(42, 65%, 48%, 0.15);
}

/* ===== Modal ===== */
.modal {
  position: fixed; inset: 0; z-index: 200;
  display: flex; align-items: center; justify-content: center; padding: 1rem;
}
.modal-overlay { position: absolute; inset: 0; background: hsla(220, 15%, 18%, 0.5); }
.modal-content {
  position: relative; background: var(--background);
  border: 1px solid var(--border);
  border-radius: var(--radius); padding: 1.5rem;
  max-width: 30rem; width: 100%; max-height: 90vh; overflow-y: auto;
  box-shadow: 0 12px 40px rgba(0,0,0,0.12);
  -webkit-overflow-scrolling: touch;
}
.modal-close {
  position: absolute; top: 0.75rem; right: 0.75rem;
  background: none; border: none; font-size: 1.5rem;
  color: var(--muted-foreground); cursor: pointer;
  width: 2rem; height: 2rem;
  display: flex; align-items: center; justify-content: center;
}
.modal-close:hover { color: var(--foreground); }

/* ===== Alerts ===== */
.alert { padding: 0.75rem 1rem; border-radius: var(--radius); font-size: 0.875rem; line-height: 1.5; }
.alert-success { background: #ecfdf5; color: #065f46; border: 1px solid #a7f3d0; }
.alert-error { background: #fef2f2; color: #991b1b; border: 1px solid #fecaca; }

/* ===== Admin ===== */
.admin-table { width: 100%; border-collapse: collapse; font-size: 0.875rem; }
.admin-table th, .admin-table td { text-align: left; padding: 0.75rem; border-bottom: 1px solid var(--border); }
.admin-table th { font-weight: 600; font-size: 0.75rem; text-transform: uppercase; letter-spacing: 0.05em; color: var(--muted-foreground); }
.admin-nav { display: flex; gap: 0.75rem; flex-wrap: wrap; }
.link-btn { background: none; border: none; cursor: pointer; font-size: 0.875rem; color: var(--accent); }
.link-btn.danger { color: var(--destructive); }
.link-btn:hover { text-decoration: underline; }
.btn-danger { background: var(--destructive); color: #fff; border: none; cursor: pointer; border-radius: var(--radius); }
.btn-danger:hover { opacity: 0.9; }

/* ===== Settings ===== */
.settings-card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.5rem;
}
.badge-status {
  font-size: 0.875rem;
  font-weight: 600;
  padding: 0.25rem 0.75rem;
  border-radius: 9999px;
}
.badge-enabled { background: hsla(140, 60%, 40%, 0.15); color: hsl(140, 50%, 35%); }
.badge-disabled { background: hsla(220, 8%, 46%, 0.15); color: var(--muted-foreground); }

/* ===== Table responsive ===== */
.table-responsive { overflow-x: auto; -webkit-overflow-scrolling: touch; }

/* ===== Footer ===== */
.site-footer {
  background: var(--primary);
  color: hsla(40, 20%, 96%, 0.8);
  padding: 3rem 0 0;
}
.footer-grid { display: grid; gap: 2rem; }
.site-footer h4 {
  font-size: 0.8rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--accent);
  margin-bottom: 0.75rem;
}
.site-footer p { font-size: 0.875rem; line-height: 1.6; }
.site-footer ul { list-style: none; }
.site-footer li { padding: 0.2rem 0; }
.site-footer a { color: hsla(40, 20%, 96%, 0.75); font-size: 0.875rem; }
.site-footer a:hover { color: var(--primary-foreground); opacity: 1; }
.footer-bottom {
  border-top: 1px solid hsla(255, 255, 255, 0.08);
  margin-top: 2.5rem;
  padding: 1.25rem 0;
  font-size: 0.75rem;
  text-align: center;
}

/* ===== Reviews Carousel ===== */
.reviews-carousel {
  position: relative;
  overflow: hidden;
  padding: 0 0.5rem;
}
.reviews-track {
  display: flex;
  gap: 1.5rem;
  transition: transform 0.4s ease;
}
.sticky-note {
  min-width: 260px;
  flex: 0 0 calc(33.333% - 1rem);
  padding: 1.5rem;
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  min-height: 200px;
  display: flex;
  flex-direction: column;
  transition: all 0.3s;
}
.sticky-stars { margin-bottom: 0.75rem; display: flex; gap: 2px; }
.star { color: hsla(220, 8%, 46%, 0.3); font-size: 0.9rem; }
.star-filled { color: var(--accent); }
.sticky-content {
  flex: 1;
  font-size: 0.875rem;
  line-height: 1.6;
  color: var(--muted-foreground);
}
.sticky-author {
  margin-top: 1rem;
  padding-top: 0.75rem;
  border-top: 1px solid var(--border);
}
.sticky-author strong { display: block; font-size: 0.875rem; font-weight: 600; color: var(--foreground); }
.sticky-author span { font-size: 0.75rem; color: var(--muted-foreground); }
.carousel-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: var(--background);
  border: 1px solid var(--border);
  border-radius: 50%;
  width: 36px;
  height: 36px;
  cursor: pointer;
  z-index: 5;
  font-size: 0.75rem;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 1px 4px rgba(0,0,0,0.06);
  transition: background 0.2s;
}
.carousel-arrow:hover { background: hsla(42, 65%, 48%, 0.08); }
.carousel-prev { left: -1rem; }
.carousel-next { right: -1rem; }

.carousel-dots { display: flex; justify-content: center; gap: 0.375rem; margin-top: 1.5rem; }
.carousel-dot {
  height: 0.5rem;
  border-radius: 9999px;
  border: none;
  cursor: pointer;
  transition: all 0.2s;
  padding: 0;
}
.carousel-dot-active { width: 1.5rem; background: var(--accent); }
.carousel-dot-inactive { width: 0.5rem; background: hsla(220, 8%, 46%, 0.25); }

/* ===== Project Detail ===== */
.project-details-grid { display: grid; gap: 2rem; margin-top: 2rem; }
.project-details-grid h3 {
  font-weight: 600;
  color: var(--primary);
}
.project-details-grid p {
  margin-top: 0.5rem;
  font-size: 0.875rem;
  color: var(--muted-foreground);
  line-height: 1.6;
}

/* ===== Contact Info Cards ===== */
.contact-info-cards { display: grid; gap: 1rem; }
.contact-info-card {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  padding: 1rem;
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
}
.contact-info-icon { font-size: 1.1rem; flex-shrink: 0; margin-top: 0.1rem; }
.contact-info-card strong { font-size: 0.8rem; display: block; }
.contact-info-card p { font-size: 0.8rem; color: var(--muted-foreground); margin: 0; line-height: 1.5; }

/* ===== Floating CTA ===== */
.floating-cta {
  position: fixed;
  bottom: 2rem;
  right: 1.5rem;
  z-index: 90;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  background: var(--accent);
  color: #fff;
  padding: 0.7rem 1.2rem;
  border-radius: 3rem;
  font-family: var(--font-body);
  font-size: 0.85rem;
  font-weight: 600;
  cursor: pointer;
  box-shadow: 0 3px 12px rgba(0,0,0,0.12);
  transition: transform 0.2s, box-shadow 0.2s, opacity 0.3s;
  opacity: 0;
  pointer-events: none;
  -webkit-tap-highlight-color: transparent;
}
.floating-cta.floating-cta-visible {
  opacity: 1;
  pointer-events: auto;
}
.floating-cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 5px 16px rgba(0,0,0,0.18);
}
.floating-cta-icon { font-size: 1rem; }

/* ===== Add-ons ===== */
.addons-grid { display: grid; gap: 1.5rem; }
.addon-card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 2rem;
  display: flex;
  flex-direction: column;
}
.addon-header {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1.25rem;
}
.addon-pricing {
  padding: 1rem;
  background: hsla(42, 65%, 48%, 0.05);
  border-radius: var(--radius);
  border: 1px solid hsla(42, 65%, 48%, 0.12);
}
.addon-price {
  font-size: 1.75rem;
  font-weight: 700;
}
.addon-price span { font-size: 0.875rem; font-weight: 400; color: var(--muted-foreground); }
.addon-alt { font-size: 0.8rem; color: var(--muted-foreground); margin-top: 0.25rem; }
.addon-save {
  display: inline-block;
  font-size: 0.7rem;
  font-weight: 600;
  background: hsla(140, 60%, 40%, 0.12);
  color: hsl(140, 50%, 35%);
  padding: 0.1rem 0.4rem;
  border-radius: 4px;
  margin-left: 0.25rem;
}


/* =============================================================================
   RESPONSIVE BREAKPOINTS
   ============================================================================= */

@media (min-width: 1024px) {
  .portfolio-grid { grid-template-columns: repeat(3, 1fr); }
}

@media (min-width: 768px) {
  .hero { padding: 7rem 0 6rem; }
  .hero h1 { font-size: 3rem; }

  .card-grid { grid-template-columns: repeat(3, 1fr); }
  .pricing-grid { grid-template-columns: repeat(3, 1fr); }
  .footer-grid { grid-template-columns: repeat(4, 1fr); }
  .about-grid { grid-template-columns: repeat(2, 1fr); }
  .project-details-grid { grid-template-columns: repeat(3, 1fr); }
  .addons-grid { grid-template-columns: repeat(2, 1fr); }
  .portfolio-grid { grid-template-columns: repeat(2, 1fr); }
  .contact-info-cards { grid-template-columns: repeat(3, 1fr); }
}

@media (min-width: 600px) {
  .founders-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 1023px) {
  .sticky-note { flex: 0 0 calc(50% - 0.75rem); }
}

@media (max-width: 768px) {
  .mobile-menu-btn { display: flex; }
  .navbar-links {
    display: none;
    flex-direction: column;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--primary);
    padding: 1rem 1.5rem;
    gap: 0.25rem;
    border-top: 1px solid hsla(255, 255, 255, 0.08);
    box-shadow: 0 6px 16px rgba(0,0,0,0.1);
  }
  .navbar-links.open { display: flex; }
  .navbar-links a {
    padding: 0.7rem 1rem;
    font-size: 1rem;
    border-radius: var(--radius);
  }
  .navbar-links a:hover { background: hsla(255, 255, 255, 0.06); }

  .container { padding: 0 1.25rem; }

  .hero { padding: 3.5rem 0 3rem; }
  .hero h1 { font-size: 2rem; }
  .hero-sub { font-size: 0.95rem; }

  .section { padding: 3rem 0; }

  h1 { font-size: 1.75rem; }
  h2 { font-size: 1.35rem; }

  .card-grid { grid-template-columns: 1fr; }
  .pricing-grid { grid-template-columns: 1fr; }
  .addons-grid { grid-template-columns: 1fr; }
  .portfolio-grid { grid-template-columns: 1fr; }
  .contact-info-cards { grid-template-columns: 1fr; }

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

  .process-step { gap: 1rem; }
  .step-number { width: 2.25rem; height: 2.25rem; font-size: 0.7rem; }

  .founders-grid { grid-template-columns: 1fr; gap: 2rem; }
  .founder-avatar { width: 6rem; height: 6rem; font-size: 1.5rem; }

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

  .sticky-note { flex: 0 0 100%; min-width: auto; }
  .carousel-prev { left: 0; }
  .carousel-next { right: 0; }

  .floating-cta { bottom: 1.25rem; right: 1rem; padding: 0.6rem 1rem; font-size: 0.8rem; }

  .admin-table { font-size: 0.75rem; }
  .admin-table th, .admin-table td { padding: 0.5rem; }
  .admin-nav { gap: 0.5rem; }

  .pricing-card { padding: 1.5rem; }
  .addon-card { padding: 1.5rem; }

  .project-details-grid { grid-template-columns: 1fr; }

  .modal { padding: 0.5rem; }
  .modal-content { padding: 1.25rem; max-height: 95vh; }
}

@media (max-width: 480px) {
  .container { padding: 0 1rem; }

  .hero { padding: 3rem 0 2.5rem; }
  .hero h1 { font-size: 1.65rem; }
  .hero-sub { font-size: 0.9rem; }

  .section { padding: 2.5rem 0; }
  h1 { font-size: 1.6rem; }
  h2 { font-size: 1.25rem; }

  .btn-lg { font-size: 0.875rem; padding: 0.65rem 1.5rem; }

  .footer-grid { grid-template-columns: 1fr; gap: 1.5rem; }

  .pricing-price { font-size: 1.75rem; }

  .process-step h3 { font-size: 1rem; }
  .process-step p { font-size: 0.85rem; }

  .faq-item summary { font-size: 0.9rem; padding: 0.75rem 0; }
  .faq-item p { font-size: 0.825rem; }

  .floating-cta-text { display: none; }
  .floating-cta { padding: 0.75rem; border-radius: 50%; }
  .floating-cta-icon { font-size: 1.2rem; }
}
