/* ===================================================
   JOFFREY SCANS 3D — Design System
   Palette : Dark navy + Cyan accent + Orange CTA
   =================================================== */

:root {
  --dark: #0c1222;
  --dark-mid: #131d33;
  --dark-light: #1a2744;
  --accent: #00b4d8;
  --accent-soft: rgba(0, 180, 216, 0.12);
  --accent-glow: rgba(0, 180, 216, 0.25);
  --cta: #ff6b35;
  --cta-hover: #e85a28;
  --white: #ffffff;
  --light-bg: #f8fafc;
  --light-bg2: #f1f5f9;
  --text-dark: #1e293b;
  --text-medium: #64748b;
  --text-light: #94a3b8;
  --border: #e2e8f0;
  --border-dark: #1e3050;
  --radius: 12px;
  --radius-lg: 20px;
  --shadow: 0 2px 16px rgba(0, 0, 0, 0.06);
  --shadow-lg: 0 8px 32px rgba(0, 0, 0, 0.1);
  --font: system-ui, -apple-system, 'Segoe UI', Roboto, sans-serif;
  --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

/* === RESET === */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--font);
  color: var(--text-dark);
  line-height: 1.6;
  background: var(--white);
  overflow-x: hidden;
}
a { text-decoration: none; color: inherit; }
img { max-width: 100%; height: auto; display: block; }
ul { list-style: none; }

/* === NAVIGATION === */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: rgba(12, 18, 34, 0.92);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--border-dark);
  transition: background var(--transition);
}
.nav-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 68px;
}
.nav-logo {
  display: flex;
  align-items: center;
  gap: 12px;
  font-weight: 800;
  font-size: 18px;
  color: var(--white);
  letter-spacing: -0.3px;
}
.nav-logo img {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid rgba(0, 180, 216, 0.4);
}
.nav-logo span { color: var(--accent); }
.nav-links {
  display: flex;
  align-items: center;
  gap: 8px;
}
.nav-links a {
  padding: 8px 16px;
  font-size: 14px;
  font-weight: 500;
  color: var(--text-light);
  border-radius: 8px;
  transition: color var(--transition), background var(--transition);
}
.nav-links a:hover,
.nav-links a.active {
  color: var(--white);
  background: rgba(255, 255, 255, 0.06);
}
.nav-cta {
  padding: 9px 20px !important;
  background: var(--cta) !important;
  color: var(--white) !important;
  font-weight: 600 !important;
  border-radius: 8px !important;
  transition: background var(--transition), transform var(--transition) !important;
}
.nav-cta:hover {
  background: var(--cta-hover) !important;
  transform: translateY(-1px);
}

/* Burger menu */
.nav-burger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}
.nav-burger span {
  width: 24px;
  height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: transform var(--transition), opacity var(--transition);
}
.nav-burger.open span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.nav-burger.open span:nth-child(2) { opacity: 0; }
.nav-burger.open span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

/* === HERO === */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 120px 24px 80px;
  background:
    radial-gradient(ellipse at 25% 40%, rgba(0, 180, 216, 0.12) 0%, transparent 55%),
    radial-gradient(ellipse at 75% 60%, rgba(0, 180, 216, 0.08) 0%, transparent 50%),
    radial-gradient(ellipse at 50% 100%, rgba(255, 107, 53, 0.05) 0%, transparent 40%),
    linear-gradient(180deg, var(--dark) 0%, var(--dark-mid) 100%);
  overflow: hidden;
}
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(circle at 1px 1px, rgba(255,255,255,0.03) 1px, transparent 0);
  background-size: 40px 40px;
  pointer-events: none;
}
.hero-content {
  position: relative;
  max-width: 800px;
  z-index: 1;
}
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 16px;
  background: var(--accent-soft);
  border: 1px solid rgba(0, 180, 216, 0.25);
  border-radius: 100px;
  font-size: 13px;
  font-weight: 600;
  color: var(--accent);
  margin-bottom: 28px;
}
.hero-badge::before {
  content: '';
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--accent);
  animation: pulse 2s ease-in-out infinite;
}
@keyframes pulse {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.4; }
}
.hero h1 {
  font-size: clamp(36px, 6vw, 60px);
  font-weight: 800;
  color: var(--white);
  line-height: 1.1;
  letter-spacing: -1.5px;
  margin-bottom: 20px;
}
.hero h1 em {
  font-style: normal;
  background: linear-gradient(135deg, var(--accent), #38bdf8);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.hero-sub {
  font-size: clamp(16px, 2.2vw, 20px);
  color: var(--text-light);
  max-width: 560px;
  margin: 0 auto 36px;
  line-height: 1.6;
}
.hero-buttons {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}

/* === BUTTONS === */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 28px;
  font-size: 15px;
  font-weight: 600;
  border-radius: 10px;
  border: none;
  cursor: pointer;
  transition: transform var(--transition), box-shadow var(--transition), background var(--transition);
  font-family: var(--font);
}
.btn-primary {
  background: var(--cta);
  color: var(--white);
}
.btn-primary:hover {
  background: var(--cta-hover);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(255, 107, 53, 0.3);
}
.btn-secondary {
  background: rgba(255, 255, 255, 0.08);
  color: var(--white);
  border: 1px solid rgba(255, 255, 255, 0.15);
}
.btn-secondary:hover {
  background: rgba(255, 255, 255, 0.14);
  transform: translateY(-2px);
}
.btn-light {
  background: var(--white);
  color: var(--dark);
}
.btn-light:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-lg);
}
.btn-accent {
  background: var(--accent);
  color: var(--dark);
  font-weight: 700;
}
.btn-accent:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px var(--accent-glow);
}

/* === STATS BAR === */
.stats-bar {
  background: var(--white);
  border-bottom: 1px solid var(--border);
  padding: 0 24px;
}
.stats-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  justify-content: center;
  gap: 0;
}
.stat-item {
  flex: 1;
  max-width: 280px;
  text-align: center;
  padding: 28px 24px;
  border-right: 1px solid var(--border);
}
.stat-item:last-child { border-right: none; }
.stat-number {
  font-size: 32px;
  font-weight: 800;
  color: var(--dark);
  letter-spacing: -1px;
  margin-bottom: 4px;
}
.stat-number span { color: var(--accent); }
.stat-label {
  font-size: 14px;
  color: var(--text-medium);
  font-weight: 500;
}

/* === SECTIONS === */
.section {
  padding: 96px 24px;
}
.section-alt {
  background: var(--light-bg);
}
.section-dark {
  background: var(--dark);
  color: var(--white);
}
.section-inner {
  max-width: 1200px;
  margin: 0 auto;
}
.section-header {
  text-align: center;
  margin-bottom: 56px;
}
.section-label {
  display: inline-block;
  font-size: 13px;
  font-weight: 700;
  color: var(--accent);
  text-transform: uppercase;
  letter-spacing: 1.5px;
  margin-bottom: 12px;
}
.section-title {
  font-size: clamp(28px, 4vw, 40px);
  font-weight: 800;
  letter-spacing: -0.8px;
  line-height: 1.2;
  margin-bottom: 16px;
}
.section-dark .section-title { color: var(--white); }
.section-desc {
  font-size: 17px;
  color: var(--text-medium);
  max-width: 600px;
  margin: 0 auto;
}
.section-dark .section-desc { color: var(--text-light); }

/* === SERVICES GRID === */
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.service-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 36px 28px;
  transition: transform var(--transition), box-shadow var(--transition), border-color var(--transition);
}
.service-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
  border-color: var(--accent);
}
.service-icon {
  width: 56px;
  height: 56px;
  border-radius: 14px;
  background: var(--accent-soft);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  font-size: 24px;
}
.service-card h3 {
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 10px;
  letter-spacing: -0.3px;
}
.service-card p {
  font-size: 15px;
  color: var(--text-medium);
  line-height: 1.6;
}
.service-price {
  display: inline-block;
  margin-top: 16px;
  font-size: 14px;
  font-weight: 600;
  color: var(--accent);
  padding: 4px 12px;
  background: var(--accent-soft);
  border-radius: 6px;
}

/* === HOW IT WORKS === */
.steps-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  position: relative;
}
.steps-grid::before {
  content: '';
  position: absolute;
  top: 36px;
  left: calc(16.66% + 24px);
  right: calc(16.66% + 24px);
  height: 2px;
  background: linear-gradient(90deg, var(--accent), var(--border), var(--accent));
  opacity: 0.3;
}
.step-card {
  text-align: center;
  position: relative;
}
.step-number {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  background: var(--accent-soft);
  border: 2px solid rgba(0, 180, 216, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  font-size: 28px;
  font-weight: 800;
  color: var(--accent);
  position: relative;
  z-index: 1;
}
.step-card h3 {
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 8px;
}
.step-card p {
  font-size: 15px;
  color: var(--text-medium);
  max-width: 280px;
  margin: 0 auto;
}

/* === PORTFOLIO GRID === */
.portfolio-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}
.portfolio-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: transform var(--transition), box-shadow var(--transition);
}
.portfolio-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}
.portfolio-thumb {
  height: 220px;
  background: linear-gradient(135deg, var(--dark-mid), var(--dark-light));
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
}
.portfolio-thumb::after {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 30% 50%, var(--accent-glow) 0%, transparent 60%);
  pointer-events: none;
}
.portfolio-thumb-icon {
  font-size: 48px;
  position: relative;
  z-index: 1;
}
.portfolio-info {
  padding: 24px;
}
.portfolio-type {
  display: inline-block;
  font-size: 12px;
  font-weight: 600;
  color: var(--accent);
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 8px;
}
.portfolio-info h3 {
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 8px;
}
.portfolio-info p {
  font-size: 14px;
  color: var(--text-medium);
  margin-bottom: 16px;
}
.portfolio-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 14px;
  font-weight: 600;
  color: var(--accent);
  transition: gap var(--transition);
}
.portfolio-link:hover { gap: 10px; }

/* === TESTIMONIAL === */
.testimonial-card {
  max-width: 700px;
  margin: 0 auto;
  text-align: center;
  padding: 48px;
  background: var(--white);
  border-radius: var(--radius-lg);
  border: 1px solid var(--border);
  box-shadow: var(--shadow);
  position: relative;
}
.testimonial-card::before {
  content: '\201C';
  position: absolute;
  top: 20px;
  left: 32px;
  font-size: 80px;
  font-weight: 800;
  color: var(--accent);
  opacity: 0.15;
  line-height: 1;
}
.testimonial-text {
  font-size: 18px;
  font-style: italic;
  color: var(--text-dark);
  line-height: 1.7;
  margin-bottom: 24px;
}
.testimonial-author {
  font-size: 15px;
  font-weight: 700;
  color: var(--text-dark);
}
.testimonial-role {
  font-size: 13px;
  color: var(--text-medium);
}

/* === CTA SECTION === */
.cta-section {
  padding: 96px 24px;
  text-align: center;
  background:
    radial-gradient(ellipse at 50% 50%, var(--accent-soft) 0%, transparent 60%),
    var(--dark);
}
.cta-section .section-inner { max-width: 640px; }
.cta-section h2 {
  font-size: clamp(28px, 4vw, 38px);
  font-weight: 800;
  color: var(--white);
  margin-bottom: 16px;
  letter-spacing: -0.5px;
}
.cta-section p {
  font-size: 17px;
  color: var(--text-light);
  margin-bottom: 32px;
}
.cta-buttons {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}

/* === PAGE HERO (sous-pages) === */
.page-hero {
  padding: 140px 24px 64px;
  text-align: center;
  background:
    radial-gradient(ellipse at 50% 80%, rgba(0, 180, 216, 0.08) 0%, transparent 50%),
    linear-gradient(180deg, var(--dark) 0%, var(--dark-mid) 100%);
}
.page-hero h1 {
  font-size: clamp(32px, 5vw, 48px);
  font-weight: 800;
  color: var(--white);
  letter-spacing: -1px;
  margin-bottom: 12px;
}
.page-hero p {
  font-size: 17px;
  color: var(--text-light);
  max-width: 520px;
  margin: 0 auto;
}

/* === FORM (DEVIS) === */
.devis-container {
  max-width: 680px;
  margin: -32px auto 0;
  padding: 0 24px 64px;
  position: relative;
  z-index: 1;
}
.form-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 36px 32px;
  box-shadow: var(--shadow-lg);
  border: 1px solid var(--border);
  margin-bottom: 24px;
}
.form-card h2 {
  font-size: 18px;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 20px;
  padding-bottom: 12px;
  border-bottom: 2px solid var(--light-bg2);
}
.form-row {
  display: flex;
  gap: 16px;
  margin-bottom: 16px;
}
.form-group {
  flex: 1;
  margin-bottom: 16px;
}
.form-row .form-group { margin-bottom: 0; }
.form-group label {
  display: block;
  font-size: 13px;
  font-weight: 600;
  color: var(--text-dark);
  margin-bottom: 6px;
}
.form-group label .req { color: var(--cta); margin-left: 2px; }
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 11px 14px;
  border: 1.5px solid var(--border);
  border-radius: 10px;
  font-size: 15px;
  font-family: var(--font);
  color: var(--text-dark);
  background: var(--white);
  transition: border-color var(--transition), box-shadow var(--transition);
  -webkit-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 3px var(--accent-soft);
}
.form-group input.error,
.form-group select.error,
.form-group textarea.error {
  border-color: #ef4444;
  box-shadow: 0 0 0 3px rgba(239, 68, 68, 0.1);
}
.error-msg {
  color: #ef4444;
  font-size: 12px;
  margin-top: 4px;
  display: none;
}
.form-group textarea { resize: vertical; min-height: 80px; }
.checkbox-group {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin-bottom: 16px;
  padding: 14px 16px;
  background: var(--light-bg);
  border-radius: 10px;
  border: 1px solid var(--border);
}
.checkbox-group input[type="checkbox"] {
  width: 18px;
  height: 18px;
  margin-top: 2px;
  accent-color: var(--accent);
  flex-shrink: 0;
}
.checkbox-group .cb-label {
  font-size: 14px;
  color: var(--text-dark);
  cursor: pointer;
}
.checkbox-group .cb-label strong { color: var(--dark); }
.checkbox-group .cb-label .price { color: var(--accent); font-weight: 600; }
.btn-submit {
  display: block;
  width: 100%;
  padding: 15px 24px;
  background: var(--cta);
  color: var(--white);
  border: none;
  border-radius: 12px;
  font-size: 16px;
  font-weight: 700;
  cursor: pointer;
  font-family: var(--font);
  transition: background var(--transition), transform var(--transition), box-shadow var(--transition);
}
.btn-submit:hover {
  background: var(--cta-hover);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(255, 107, 53, 0.3);
}
.btn-submit:disabled {
  opacity: 0.6;
  cursor: not-allowed;
  transform: none;
  box-shadow: none;
}
.form-note {
  font-size: 13px;
  color: var(--text-medium);
  text-align: center;
  margin-top: 14px;
}
.hp-field { position: absolute; left: -9999px; opacity: 0; height: 0; }

/* === CONTACT === */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: start;
}
.contact-info-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 36px;
  box-shadow: var(--shadow);
}
.contact-item {
  display: flex;
  gap: 16px;
  padding: 20px 0;
  border-bottom: 1px solid var(--border);
}
.contact-item:last-child { border-bottom: none; }
.contact-icon {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: var(--accent-soft);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  flex-shrink: 0;
}
.contact-item h3 {
  font-size: 15px;
  font-weight: 700;
  margin-bottom: 2px;
}
.contact-item p {
  font-size: 14px;
  color: var(--text-medium);
}
.contact-item a {
  color: var(--accent);
  font-weight: 600;
}
.social-links {
  display: flex;
  gap: 12px;
  margin-top: 24px;
}
.social-link {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: var(--light-bg);
  border: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  transition: background var(--transition), border-color var(--transition), transform var(--transition);
}
.social-link:hover {
  background: var(--accent-soft);
  border-color: var(--accent);
  transform: translateY(-2px);
}
.contact-map {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow);
}
.contact-map-header {
  padding: 24px 36px;
}
.contact-map-header h3 {
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 8px;
}
.contact-map-header p {
  font-size: 14px;
  color: var(--text-medium);
}
.contact-map-visual {
  height: 300px;
  background:
    radial-gradient(ellipse at 50% 50%, var(--accent-glow) 0%, transparent 50%),
    linear-gradient(135deg, var(--dark-mid), var(--dark-light));
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-light);
  font-size: 14px;
}

/* === FOOTER === */
.footer {
  background: var(--dark);
  color: var(--text-light);
  padding: 56px 24px 32px;
  border-top: 1px solid var(--border-dark);
}
.footer-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: start;
  gap: 48px;
  margin-bottom: 40px;
}
.footer-brand {
  max-width: 300px;
}
.footer-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 800;
  font-size: 18px;
  color: var(--white);
  margin-bottom: 12px;
}
.footer-logo img {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  object-fit: cover;
}
.footer-logo span { color: var(--accent); }
.footer-brand p {
  font-size: 14px;
  color: var(--text-medium);
  line-height: 1.6;
}
.footer-nav h4 {
  font-size: 14px;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 16px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}
.footer-nav a {
  display: block;
  font-size: 14px;
  color: var(--text-medium);
  padding: 4px 0;
  transition: color var(--transition);
}
.footer-nav a:hover { color: var(--accent); }
.footer-bottom {
  max-width: 1200px;
  margin: 0 auto;
  padding-top: 24px;
  border-top: 1px solid var(--border-dark);
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 13px;
  color: var(--text-medium);
}
.footer-bottom a { color: var(--accent); }

/* === ANIMATIONS === */
.fade-up {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
.fade-up.visible {
  opacity: 1;
  transform: translateY(0);
}

/* === RESPONSIVE === */
@media (max-width: 900px) {
  .services-grid { grid-template-columns: 1fr; gap: 16px; }
  .steps-grid { grid-template-columns: 1fr; gap: 24px; }
  .steps-grid::before { display: none; }
  .portfolio-grid { grid-template-columns: 1fr; }
  .contact-grid { grid-template-columns: 1fr; }
  .footer-inner { flex-direction: column; gap: 32px; }
  .footer-bottom { flex-direction: column; gap: 8px; text-align: center; }
}

@media (max-width: 768px) {
  .nav-links {
    display: none;
    position: fixed;
    top: 68px;
    left: 0;
    right: 0;
    background: rgba(12, 18, 34, 0.98);
    flex-direction: column;
    padding: 16px 24px 24px;
    gap: 4px;
    border-bottom: 1px solid var(--border-dark);
  }
  .nav-links.open { display: flex; }
  .nav-links a { padding: 12px 16px; font-size: 16px; }
  .nav-burger { display: flex; }

  .hero { min-height: auto; padding: 120px 20px 60px; }
  .hero h1 { letter-spacing: -0.5px; }

  .section { padding: 64px 20px; }
  .page-hero { padding: 110px 20px 48px; }

  .stats-inner { flex-direction: column; }
  .stat-item { border-right: none; border-bottom: 1px solid var(--border); padding: 16px 24px; }
  .stat-item:last-child { border-bottom: none; }
  .stat-number { font-size: 24px; }

  .form-row { flex-direction: column; gap: 0; }
  .form-card { padding: 24px 20px; }
  .devis-container { padding: 0 16px 48px; }

  .cta-section { padding: 64px 20px; }

  .testimonial-card { padding: 32px 24px; }
}

@media (max-width: 480px) {
  .hero-buttons { flex-direction: column; align-items: center; }
  .btn { width: 100%; justify-content: center; }
  .cta-buttons { flex-direction: column; align-items: center; }
}
