/* ============================================
   JJ Studio — Premium Dark Theme
   ============================================ */

/* ── CSS Variables ────────────────────────── */
:root {
  --accent: #e87040;
  --accent-light: #f09060;
  --accent-dark: #c55a28;
  --bg: #0a0a0a;
  --bg-surface: #111111;
  --bg-surface-2: #161616;
  --bg-card: #141414;
  --border: rgba(255,255,255,0.07);
  --border-accent: rgba(232,112,64,0.3);
  --text: #f0f0f0;
  --text-secondary: #888;
  --text-muted: #555;
  --font: 'Inter', system-ui, -apple-system, sans-serif;
  --radius: 12px;
  --radius-lg: 20px;
  --shadow: 0 4px 30px rgba(0,0,0,0.4);
  --shadow-accent: 0 8px 40px rgba(232,112,64,0.2);
  --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  --max-w: 1200px;
  --nav-h: 70px;
}

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

html {
  scroll-behavior: smooth;
  scroll-padding-top: var(--nav-h);
}

body {
  background: var(--bg);
  color: var(--text);
  font-family: var(--font);
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

img, svg { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }
input, select, textarea { font-family: inherit; }
ul { list-style: none; }

/* ── Utilities ────────────────────────────── */
.container {
  width: 100%;
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 24px;
}

.gradient-text {
  background: linear-gradient(135deg, var(--accent), var(--accent-light));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* ── Buttons ──────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 28px;
  border-radius: var(--radius);
  font-weight: 600;
  font-size: 15px;
  transition: var(--transition);
  white-space: nowrap;
}

.btn-primary {
  background: linear-gradient(135deg, var(--accent), var(--accent-light));
  color: #fff;
  box-shadow: 0 4px 20px rgba(232,112,64,0.35);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(232,112,64,0.5);
}

.btn-ghost {
  background: rgba(255,255,255,0.06);
  color: var(--text);
  border: 1px solid var(--border);
}

.btn-ghost:hover {
  background: rgba(255,255,255,0.1);
  border-color: rgba(255,255,255,0.15);
  transform: translateY(-2px);
}

.btn-service {
  width: 100%;
  justify-content: center;
  padding: 12px 20px;
  font-size: 14px;
  background: rgba(232,112,64,0.1);
  color: var(--accent);
  border: 1px solid var(--border-accent);
  border-radius: 8px;
  margin-top: auto;
}

.btn-service:hover {
  background: linear-gradient(135deg, var(--accent), var(--accent-light));
  color: #fff;
  border-color: transparent;
  transform: translateY(-1px);
  box-shadow: 0 4px 20px rgba(232,112,64,0.3);
}

.btn-full { width: 100%; justify-content: center; }

/* ── Navbar ───────────────────────────────── */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  height: var(--nav-h);
  z-index: 1000;
  transition: var(--transition);
}

.navbar.scrolled {
  background: rgba(10,10,10,0.95);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border);
}

.nav-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 24px;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 800;
  font-size: 18px;
  letter-spacing: -0.5px;
  transition: opacity 0.2s;
}

.nav-logo:hover { opacity: 0.85; }

.logo-box {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  background: linear-gradient(135deg, var(--accent), var(--accent-light));
  border-radius: 8px;
  font-size: 14px;
  font-weight: 900;
  color: #fff;
  letter-spacing: -1px;
  flex-shrink: 0;
}

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

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

.nav-links a {
  padding: 8px 14px;
  border-radius: 8px;
  font-size: 14px;
  font-weight: 500;
  color: var(--text-secondary);
  transition: var(--transition);
}

.nav-links a:hover { color: var(--text); background: rgba(255,255,255,0.06); }

.nav-cta {
  background: linear-gradient(135deg, var(--accent), var(--accent-light)) !important;
  color: #fff !important;
  font-weight: 600 !important;
  box-shadow: 0 2px 12px rgba(232,112,64,0.3);
}

.nav-cta:hover {
  box-shadow: 0 4px 20px rgba(232,112,64,0.5) !important;
  transform: translateY(-1px);
}

.nav-links a.active {
  color: var(--accent) !important;
  background: rgba(232,112,64,0.08) !important;
}

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 8px;
}

.hamburger span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--text);
  border-radius: 2px;
  transition: var(--transition);
}

/* ── Mobile Menu ──────────────────────────── */
.mobile-menu {
  display: none;
  position: fixed;
  top: var(--nav-h);
  left: 0;
  right: 0;
  background: rgba(10,10,10,0.98);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border);
  z-index: 999;
  padding: 16px 24px;
  transform: translateY(-10px);
  opacity: 0;
  pointer-events: none;
  transition: var(--transition);
}

.mobile-menu.open {
  transform: translateY(0);
  opacity: 1;
  pointer-events: all;
  display: block;
}

.mobile-menu ul { display: flex; flex-direction: column; gap: 4px; }

.mobile-menu a {
  display: block;
  padding: 12px 16px;
  border-radius: 8px;
  font-weight: 500;
  color: var(--text-secondary);
  transition: var(--transition);
}

.mobile-menu a:hover { color: var(--text); background: rgba(255,255,255,0.06); }

/* ── Hero ─────────────────────────────────── */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  padding: calc(var(--nav-h) + 60px) 24px 80px;
}

#particleCanvas {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  z-index: 1;
  pointer-events: none;
}

.orb-1 {
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(232,112,64,0.18) 0%, transparent 70%);
  top: -100px;
  right: -100px;
  animation: orbFloat 8s ease-in-out infinite;
}

.orb-2 {
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(240,144,96,0.1) 0%, transparent 70%);
  bottom: 50px;
  left: -50px;
  animation: orbFloat 12s ease-in-out infinite reverse;
}

@keyframes orbFloat {
  0%, 100% { transform: translate(0, 0) scale(1); }
  33% { transform: translate(30px, -20px) scale(1.05); }
  66% { transform: translate(-20px, 30px) scale(0.95); }
}

.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  max-width: 800px;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(232,112,64,0.12);
  border: 1px solid rgba(232,112,64,0.3);
  color: var(--accent-light);
  padding: 8px 16px;
  border-radius: 100px;
  font-size: 13px;
  font-weight: 500;
  margin-bottom: 28px;
  animation: badgePulse 3s ease-in-out infinite;
}

.badge-dot {
  width: 8px;
  height: 8px;
  background: #4caf50;
  border-radius: 50%;
  box-shadow: 0 0 8px #4caf50;
  animation: dotPulse 2s ease-in-out infinite;
}

@keyframes badgePulse {
  0%, 100% { box-shadow: 0 0 0 0 rgba(232,112,64,0.2); }
  50% { box-shadow: 0 0 0 8px rgba(232,112,64,0); }
}

@keyframes dotPulse {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.5; }
}

.hero-title {
  font-size: clamp(56px, 10vw, 96px);
  font-weight: 900;
  letter-spacing: -4px;
  line-height: 1;
  margin-bottom: 24px;
}

.hero-tagline {
  font-size: clamp(20px, 3vw, 28px);
  font-weight: 600;
  color: var(--text);
  line-height: 1.35;
  margin-bottom: 16px;
}

.hero-sub {
  font-size: 17px;
  color: var(--text-secondary);
  margin-bottom: 40px;
  line-height: 1.7;
}

.highlight {
  color: var(--accent-light);
  font-weight: 500;
}

.hero-actions {
  display: flex;
  gap: 12px;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 60px;
}

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

.stat { text-align: center; }

.stat-num {
  display: block;
  font-size: 28px;
  font-weight: 800;
  background: linear-gradient(135deg, var(--accent), var(--accent-light));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  letter-spacing: -1px;
}

.stat-label {
  display: block;
  font-size: 12px;
  color: var(--text-muted);
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.stat-divider {
  width: 1px;
  height: 40px;
  background: var(--border);
}

.scroll-indicator {
  position: absolute;
  bottom: 30px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  color: var(--text-muted);
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 1px;
  animation: scrollBounce 2s ease-in-out infinite;
}

.scroll-mouse {
  width: 22px;
  height: 34px;
  border: 2px solid var(--text-muted);
  border-radius: 11px;
  display: flex;
  justify-content: center;
  padding-top: 6px;
}

.scroll-wheel {
  width: 3px;
  height: 6px;
  background: var(--text-muted);
  border-radius: 2px;
  animation: scrollWheel 2s ease-in-out infinite;
}

@keyframes scrollWheel {
  0% { transform: translateY(0); opacity: 1; }
  100% { transform: translateY(10px); opacity: 0; }
}

@keyframes scrollBounce {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50% { transform: translateX(-50%) translateY(6px); }
}

/* ── Sections ─────────────────────────────── */
.section {
  padding: 100px 0;
}

.section-dark {
  background: var(--bg-surface);
  position: relative;
}

.section-dark::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--border), transparent);
}

.section-dark::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--border), transparent);
}

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

.section-tag {
  display: inline-block;
  padding: 6px 14px;
  background: rgba(232,112,64,0.1);
  color: var(--accent);
  border-radius: 100px;
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 16px;
}

.section-title {
  font-size: clamp(32px, 5vw, 48px);
  font-weight: 800;
  letter-spacing: -2px;
  line-height: 1.1;
  margin-bottom: 16px;
}

.section-sub {
  color: var(--text-secondary);
  font-size: 17px;
  line-height: 1.7;
}

/* ── Services ─────────────────────────────── */
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 20px;
}

.service-card {
  position: relative;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 28px;
  display: flex;
  flex-direction: column;
  gap: 20px;
  transition: var(--transition);
  overflow: hidden;
}

.service-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(232,112,64,0.05) 0%, transparent 60%);
  opacity: 0;
  transition: var(--transition);
  pointer-events: none;
}

.service-card:hover {
  border-color: var(--border-accent);
  transform: translateY(-4px);
  box-shadow: 0 20px 60px rgba(0,0,0,0.4), 0 0 0 1px rgba(232,112,64,0.1);
}

.service-card:hover::before { opacity: 1; }

.service-badge {
  position: absolute;
  top: 16px;
  right: 16px;
  background: linear-gradient(135deg, var(--accent), var(--accent-light));
  color: #fff;
  font-size: 11px;
  font-weight: 700;
  padding: 4px 10px;
  border-radius: 100px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.service-icon-wrap {
  width: 52px;
  height: 52px;
  background: rgba(232,112,64,0.1);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition);
}

.service-card:hover .service-icon-wrap {
  background: rgba(232,112,64,0.2);
  transform: scale(1.1);
}

.service-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 24px;
  height: 24px;
  color: var(--accent);
  flex-shrink: 0;
}

.service-body h3 {
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 8px;
  letter-spacing: -0.5px;
}

.service-body p {
  color: var(--text-secondary);
  font-size: 14px;
  line-height: 1.6;
  margin-bottom: 16px;
}

.service-price {
  display: flex;
  align-items: baseline;
  gap: 4px;
}

.price-from {
  font-size: 12px;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.price-amount {
  font-size: 24px;
  font-weight: 800;
  background: linear-gradient(135deg, var(--accent), var(--accent-light));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  letter-spacing: -1px;
}

.price-btw {
  font-size: 11px;
  color: var(--text-muted);
  font-weight: 400;
  margin-left: 2px;
}

/* ── Features ─────────────────────────────── */
.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 20px;
}

.feature-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 28px;
  transition: var(--transition);
}

.feature-card:hover {
  border-color: var(--border-accent);
  transform: translateY(-4px);
  box-shadow: var(--shadow);
}

.feature-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 56px;
  height: 56px;
  background: rgba(232,112,64,0.1);
  border-radius: 14px;
  margin-bottom: 20px;
  color: var(--accent);
  transition: var(--transition);
  flex-shrink: 0;
}

.feature-card:hover .feature-icon {
  background: rgba(232,112,64,0.2);
  transform: scale(1.05);
}

.feature-card h3 {
  font-size: 17px;
  font-weight: 700;
  margin-bottom: 8px;
}

.feature-card p {
  color: var(--text-secondary);
  font-size: 14px;
  line-height: 1.6;
}

.feature-card strong { color: var(--text); }

/* ── Portfolio ────────────────────────────── */
.portfolio-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 20px;
}

.portfolio-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: var(--transition);
}

.portfolio-card:hover {
  border-color: var(--border-accent);
  transform: translateY(-4px);
  box-shadow: 0 20px 60px rgba(0,0,0,0.4);
}

.portfolio-thumb {
  height: 180px;
  background: linear-gradient(
    135deg,
    color-mix(in srgb, var(--thumb-color) 40%, #0a0a0a),
    color-mix(in srgb, var(--thumb-color) 20%, #0a0a0a)
  );
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
}

.portfolio-thumb::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 30% 40%, rgba(255,255,255,0.05) 0%, transparent 60%);
}

.portfolio-thumb-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
}

.thumb-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,0.85);
}

.thumb-label {
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: rgba(255,255,255,0.5);
  background: rgba(0,0,0,0.3);
  padding: 4px 10px;
  border-radius: 100px;
}

.portfolio-info { padding: 24px; }

.portfolio-info h3 {
  font-size: 17px;
  font-weight: 700;
  margin-bottom: 8px;
}

.portfolio-info p {
  color: var(--text-secondary);
  font-size: 13px;
  line-height: 1.6;
  margin-bottom: 16px;
}

.tech-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-bottom: 20px;
}

.tag {
  padding: 4px 10px;
  background: rgba(255,255,255,0.05);
  border: 1px solid var(--border);
  border-radius: 6px;
  font-size: 11px;
  font-weight: 500;
  color: var(--text-secondary);
}

.portfolio-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: var(--accent);
  font-size: 13px;
  font-weight: 600;
  transition: var(--transition);
}

.portfolio-link:hover {
  color: var(--accent-light);
  gap: 10px;
}

/* ── Testimonials ─────────────────────────── */
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 20px;
}

.testimonial-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 28px;
  transition: var(--transition);
  position: relative;
}

.testimonial-card::before {
  content: '"';
  position: absolute;
  top: 16px;
  right: 24px;
  font-size: 80px;
  font-family: Georgia, serif;
  color: rgba(232,112,64,0.1);
  line-height: 1;
}

.testimonial-card:hover {
  border-color: var(--border-accent);
  transform: translateY(-4px);
  box-shadow: var(--shadow);
}

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

.testimonial-quote {
  color: var(--text-secondary);
  font-size: 15px;
  line-height: 1.7;
  margin-bottom: 24px;
  font-style: italic;
}

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

.testimonial-avatar {
  width: 42px;
  height: 42px;
  background: linear-gradient(135deg, var(--accent), var(--accent-light));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 13px;
  font-weight: 700;
  color: #fff;
  flex-shrink: 0;
}

.author-name {
  display: block;
  font-weight: 600;
  font-size: 14px;
}

.author-company {
  display: block;
  color: var(--text-muted);
  font-size: 12px;
}

/* ── Contact ──────────────────────────────── */
.contact-layout {
  display: flex;
  gap: 32px;
  align-items: flex-start;
}

.contact-form-wrap {
  flex: 1;
  min-width: 0;
}

.contact-info {
  width: 380px;
  flex-shrink: 0;
}

.contact-form-wrap {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 36px;
}

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

.form-group {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-bottom: 20px;
}

.form-group label {
  font-size: 13px;
  font-weight: 600;
  color: var(--text-secondary);
}

.required { color: var(--accent); }
.optional { color: var(--text-muted); font-weight: 400; }

.form-group input,
.form-group select,
.form-group textarea {
  background: var(--bg-surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 13px 16px;
  color: var(--text);
  font-size: 15px;
  transition: var(--transition);
  appearance: none;
  -webkit-appearance: none;
}

.form-group select {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8' fill='none'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%23888' stroke-width='1.5' stroke-linecap='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 16px center;
  padding-right: 40px;
  cursor: pointer;
}

.form-group select option {
  background: var(--bg-surface);
  color: var(--text);
}

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

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--accent);
  box-shadow: 0 0 0 3px rgba(232,112,64,0.15);
  background: var(--bg-surface-2);
}

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

.form-notice {
  margin-top: 16px;
  padding: 12px 16px;
  border-radius: var(--radius);
  font-size: 14px;
  font-weight: 500;
  display: none;
}

.form-notice.success {
  display: block;
  background: rgba(76,175,80,0.1);
  border: 1px solid rgba(76,175,80,0.3);
  color: #81c784;
}

.form-notice.error {
  display: block;
  background: rgba(244,67,54,0.1);
  border: 1px solid rgba(244,67,54,0.3);
  color: #ef9a9a;
}

/* Contact Info Sidebar */
.contact-info {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.contact-info-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 24px;
}

.contact-info-card h3 {
  font-size: 14px;
  font-weight: 600;
  color: var(--text-secondary);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 16px;
}

.contact-methods { display: flex; flex-direction: column; gap: 12px; }

.contact-method {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 14px;
  background: rgba(255,255,255,0.03);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  transition: var(--transition);
}

.contact-method:hover {
  border-color: var(--border-accent);
  background: rgba(232,112,64,0.05);
  transform: translateX(4px);
}

.contact-method.whatsapp .method-icon { color: #25d366; }
.contact-method.email .method-icon { color: var(--accent); }

.method-text {
  display: flex;
  flex-direction: column;
  gap: 2px;
  overflow: hidden;
}

.method-label {
  font-size: 11px;
  font-weight: 600;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.method-value {
  font-size: 13px;
  font-weight: 500;
  color: var(--text);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.response-times { display: flex; flex-direction: column; gap: 14px; }

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

.resp-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  background: transparent;
  border-radius: 10px;
  flex-shrink: 0;
  color: var(--accent);
}

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

.resp-icon-wa {
  color: #25d366;
}

.resp-item strong {
  display: block;
  font-size: 13px;
  font-weight: 600;
}

.resp-item span {
  display: block;
  font-size: 12px;
  color: var(--text-muted);
}

.guarantee-card {
  border-color: rgba(232,112,64,0.2);
  background: rgba(232,112,64,0.05);
}

.guarantee-content {
  display: flex;
  gap: 14px;
  align-items: flex-start;
}

.guarantee-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  background: transparent;
  border-radius: 14px;
  flex-shrink: 0;
  color: var(--accent);
}

.guarantee-content strong {
  display: block;
  font-size: 14px;
  font-weight: 700;
  margin-bottom: 6px;
}

.guarantee-content p {
  font-size: 13px;
  color: var(--text-secondary);
  line-height: 1.5;
}

/* ── Spin animation ───────────────────────── */
.spin {
  animation: spin 1s linear infinite;
}

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

/* ── Footer ───────────────────────────────── */
.footer {
  background: var(--bg-surface);
  border-top: 1px solid var(--border);
  padding: 60px 0 0;
}

.footer-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 24px 48px;
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 40px;
}

.footer-brand .nav-logo { margin-bottom: 12px; }

.footer-tagline {
  color: var(--text-muted);
  font-size: 14px;
}

.footer-links h4,
.footer-social h4 {
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--text-muted);
  margin-bottom: 16px;
}

.footer-links ul { display: flex; flex-direction: column; gap: 8px; }

.footer-links a {
  font-size: 14px;
  color: var(--text-secondary);
  transition: color 0.2s;
}

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

.social-links {
  display: flex;
  gap: 10px;
  margin-bottom: 16px;
}

.social-link {
  width: 38px;
  height: 38px;
  background: rgba(255,255,255,0.05);
  border: 1px solid var(--border);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-secondary);
  transition: var(--transition);
}

.social-link:hover {
  background: rgba(232,112,64,0.1);
  border-color: var(--border-accent);
  color: var(--accent);
  transform: translateY(-2px);
}

.footer-email {
  font-size: 12px;
  color: var(--text-muted);
  word-break: break-all;
  transition: color 0.2s;
}

.footer-email:hover { color: var(--accent); }

.footer-bottom {
  border-top: 1px solid var(--border);
  padding: 20px 24px;
  max-width: var(--max-w);
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 13px;
  color: var(--text-muted);
}

.footer-ai { color: var(--text-muted); }

/* ── Back to Top ──────────────────────────── */
.back-to-top {
  position: fixed;
  bottom: 32px;
  right: 32px;
  width: 44px;
  height: 44px;
  background: var(--accent);
  color: #fff;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 20px rgba(232,112,64,0.4);
  opacity: 0;
  pointer-events: none;
  transform: translateY(16px);
  transition: var(--transition);
  z-index: 100;
}

.back-to-top.visible {
  opacity: 1;
  pointer-events: all;
  transform: translateY(0);
}

.back-to-top:hover {
  background: var(--accent-light);
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(232,112,64,0.5);
}

/* ── Scroll Animations ────────────────────── */
.fade-in {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}

/* Stagger for grids */
.services-grid .fade-in:nth-child(1) { transition-delay: 0.0s; }
.services-grid .fade-in:nth-child(2) { transition-delay: 0.08s; }
.services-grid .fade-in:nth-child(3) { transition-delay: 0.16s; }
.services-grid .fade-in:nth-child(4) { transition-delay: 0.24s; }
.services-grid .fade-in:nth-child(5) { transition-delay: 0.32s; }
.services-grid .fade-in:nth-child(6) { transition-delay: 0.40s; }

.features-grid .fade-in:nth-child(1) { transition-delay: 0.0s; }
.features-grid .fade-in:nth-child(2) { transition-delay: 0.08s; }
.features-grid .fade-in:nth-child(3) { transition-delay: 0.16s; }
.features-grid .fade-in:nth-child(4) { transition-delay: 0.24s; }
.features-grid .fade-in:nth-child(5) { transition-delay: 0.32s; }
.features-grid .fade-in:nth-child(6) { transition-delay: 0.40s; }

/* ── Responsive ───────────────────────────── */
@media (max-width: 1024px) {
  .contact-layout {
    flex-direction: column;
  }
  .contact-info {
    width: 100%;
  }

  .footer-inner {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 768px) {
  :root { --nav-h: 60px; }

  .nav-links { display: none; }

  .hamburger {
    display: flex;
  }

  .hero-title { letter-spacing: -2px; }

  .hero-stats {
    gap: 20px;
  }

  .stat-divider { display: none; }

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

  .footer-inner {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .footer-bottom {
    flex-direction: column;
    gap: 8px;
    text-align: center;
  }

  .back-to-top {
    bottom: 20px;
    right: 20px;
  }

  .section { padding: 72px 0; }

  .services-grid,
  .features-grid,
  .portfolio-grid,
  .testimonials-grid {
    grid-template-columns: 1fr;
  }

  .br-md { display: none; }
}

@media (max-width: 480px) {
  .hero-actions { flex-direction: column; align-items: stretch; }
  .hero-actions .btn { justify-content: center; }
  .contact-form-wrap { padding: 24px; }
}

/* ── Selection Color ──────────────────────── */
::selection {
  background: rgba(232,112,64,0.3);
  color: #fff;
}

/* ── Scrollbar ────────────────────────────── */
::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: var(--bg); }
::-webkit-scrollbar-thumb {
  background: rgba(232,112,64,0.4);
  border-radius: 3px;
}
::-webkit-scrollbar-thumb:hover { background: var(--accent); }

/* ═══════════════════════════════════════════════════════════════
   ASSI INTRO CARD (Over Ons section)
   ═══════════════════════════════════════════════════════════════ */
.assi-intro-card {
  display: flex;
  align-items: center;
  gap: 36px;
  background: linear-gradient(135deg, rgba(232,112,64,0.08) 0%, rgba(232,112,64,0.02) 100%);
  border: 1px solid rgba(232,112,64,0.25);
  border-radius: var(--radius-lg);
  padding: 36px;
  margin-bottom: 56px;
  position: relative;
  overflow: hidden;
}

.assi-intro-card::before {
  content: '';
  position: absolute;
  top: -60px;
  right: -60px;
  width: 200px;
  height: 200px;
  background: radial-gradient(circle, rgba(232,112,64,0.12) 0%, transparent 70%);
  pointer-events: none;
}

.assi-intro-avatar-wrap {
  position: relative;
  flex-shrink: 0;
}

.assi-intro-avatar {
  width: 110px;
  height: 110px;
  border-radius: 50%;
  border: 3px solid rgba(232,112,64,0.4);
  object-fit: cover;
  box-shadow: 0 0 30px rgba(232,112,64,0.2);
}

.assi-intro-fallback {
  display: none;
  width: 110px;
  height: 110px;
  border-radius: 50%;
  background: linear-gradient(135deg, rgba(232,112,64,0.2), rgba(240,144,96,0.1));
  border: 3px solid rgba(232,112,64,0.4);
  align-items: center;
  justify-content: center;
  color: var(--accent);
}

.assi-intro-status-dot {
  position: absolute;
  bottom: 8px;
  right: 8px;
  width: 18px;
  height: 18px;
  background: #4caf50;
  border: 3px solid var(--bg-surface);
  border-radius: 50%;
  box-shadow: 0 0 10px rgba(76,175,80,0.6);
  animation: dotPulse 2s ease-in-out infinite;
}

.assi-intro-text h3 {
  font-size: 24px;
  font-weight: 800;
  letter-spacing: -0.75px;
  margin-bottom: 12px;
  line-height: 1.2;
}

.assi-intro-text p {
  color: var(--text-secondary);
  font-size: 15px;
  line-height: 1.75;
  margin-bottom: 24px;
  max-width: 520px;
}

@media (max-width: 768px) {
  .assi-intro-card {
    flex-direction: column;
    text-align: center;
    padding: 28px 24px;
    gap: 24px;
  }
  .assi-intro-text p { max-width: 100%; }
  .assi-intro-text .btn { width: 100%; justify-content: center; }
}

/* ═══════════════════════════════════════════════════════════════
   ASSI CHAT WIDGET
   ═══════════════════════════════════════════════════════════════ */

/* Container */
.assi-widget {
  position: fixed;
  bottom: 24px;
  right: 24px;
  z-index: 9999;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 12px;
  pointer-events: none;
}

.assi-widget > * {
  pointer-events: all;
}

/* Speech bubble */
.assi-bubble {
  position: relative;
  background: #fff;
  color: #0a0a0a;
  padding: 10px 16px;
  border-radius: 18px 18px 4px 18px;
  font-size: 13px;
  font-weight: 600;
  white-space: nowrap;
  box-shadow: 0 4px 24px rgba(0,0,0,0.25);
  opacity: 0;
  transform: translateY(10px) scale(0.92);
  transition: opacity 0.35s ease, transform 0.35s cubic-bezier(0.34, 1.56, 0.64, 1);
  pointer-events: none;
}

.assi-bubble.show {
  opacity: 1;
  transform: translateY(0) scale(1);
}

/* Toggle button */
.assi-toggle {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: linear-gradient(135deg, #e87040, #f09060);
  box-shadow: 0 4px 24px rgba(232,112,64,0.55);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  border: none;
  transition: transform 0.3s cubic-bezier(0.34, 1.56, 0.64, 1), box-shadow 0.3s ease;
  animation: assiWiggle 5s ease-in-out 3s infinite;
  overflow: hidden;
  position: relative;
}

.assi-toggle:hover {
  transform: scale(1.1) !important;
  box-shadow: 0 8px 32px rgba(232,112,64,0.7);
  animation: none;
}

.assi-toggle.active {
  animation: none;
}

@keyframes assiWiggle {
  0%, 82%, 100% { transform: rotate(0deg) scale(1); }
  85% { transform: rotate(-10deg) scale(1.06); }
  90% { transform: rotate(10deg) scale(1.06); }
  95% { transform: rotate(-5deg) scale(1.03); }
  98% { transform: rotate(3deg) scale(1.01); }
}

.assi-toggle-avatar {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  object-fit: cover;
  position: absolute;
  transition: opacity 0.25s ease, transform 0.25s ease;
}

.assi-toggle.active .assi-toggle-avatar {
  opacity: 0;
  transform: scale(0.4) rotate(-90deg);
}

.assi-toggle-close {
  position: absolute;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  opacity: 0;
  transform: scale(0.4) rotate(90deg);
  transition: opacity 0.25s ease, transform 0.25s ease;
}

.assi-toggle.active .assi-toggle-close {
  opacity: 1;
  transform: scale(1) rotate(0deg);
}

/* Chat panel */
.assi-panel {
  width: 390px;
  height: 520px;
  background: #0e0e0e;
  border: 1px solid rgba(255,255,255,0.09);
  border-radius: 20px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  box-shadow: 0 24px 64px rgba(0,0,0,0.7), 0 0 0 1px rgba(232,112,64,0.08);
  opacity: 0;
  transform: translateY(16px) scale(0.94);
  transform-origin: bottom right;
  transition: opacity 0.3s cubic-bezier(0.34, 1.56, 0.64, 1),
              transform 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
  pointer-events: none;
}

.assi-panel.open {
  opacity: 1;
  transform: translateY(0) scale(1);
  pointer-events: all;
}

/* Panel header */
.assi-panel-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 20px;
  background: linear-gradient(135deg, rgba(232,112,64,0.14) 0%, rgba(232,112,64,0.04) 100%);
  border-bottom: 1px solid rgba(255,255,255,0.07);
  flex-shrink: 0;
}

.assi-header-info {
  display: flex;
  align-items: center;
  gap: 12px;
}

.assi-header-avatar {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  border: 2px solid rgba(232,112,64,0.45);
  object-fit: cover;
  box-shadow: 0 0 12px rgba(232,112,64,0.2);
}

.assi-header-name {
  display: block;
  font-size: 15px;
  font-weight: 700;
  color: #f0f0f0;
  letter-spacing: -0.25px;
}

.assi-header-status {
  display: block;
  font-size: 11px;
  color: #4caf50;
  font-weight: 500;
  letter-spacing: 0.2px;
}

.assi-close {
  width: 32px;
  height: 32px;
  border-radius: 8px;
  background: rgba(255,255,255,0.06);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #888;
  transition: background 0.2s ease, color 0.2s ease;
  flex-shrink: 0;
}

.assi-close:hover {
  background: rgba(255,255,255,0.12);
  color: #f0f0f0;
}

/* Messages area */
.assi-messages {
  flex: 1;
  overflow-y: auto;
  padding: 16px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  scrollbar-width: thin;
  scrollbar-color: rgba(232,112,64,0.25) transparent;
}

.assi-messages::-webkit-scrollbar { width: 4px; }
.assi-messages::-webkit-scrollbar-track { background: transparent; }
.assi-messages::-webkit-scrollbar-thumb {
  background: rgba(232,112,64,0.25);
  border-radius: 2px;
}

/* Message rows */
.assi-msg {
  display: flex;
  align-items: flex-end;
  gap: 8px;
  animation: msgAppear 0.28s ease;
}

@keyframes msgAppear {
  from { opacity: 0; transform: translateY(8px); }
  to   { opacity: 1; transform: translateY(0); }
}

.assi-msg-bot  { flex-direction: row; }
.assi-msg-user { flex-direction: row-reverse; }

.assi-msg-avatar {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  border: 1.5px solid rgba(232,112,64,0.35);
  object-fit: cover;
  flex-shrink: 0;
}

.assi-msg-avatar-fallback {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: linear-gradient(135deg, #e87040, #f09060);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  flex-shrink: 0;
}

.assi-msg-bubble {
  max-width: 78%;
  padding: 10px 14px;
  border-radius: 16px;
  font-size: 14px;
  line-height: 1.55;
  white-space: pre-wrap;
  word-break: break-word;
}

.assi-msg-bot .assi-msg-bubble {
  background: rgba(255,255,255,0.07);
  border: 1px solid rgba(255,255,255,0.08);
  color: #eee;
  border-bottom-left-radius: 4px;
}

.assi-msg-user .assi-msg-bubble {
  background: linear-gradient(135deg, #e87040, #f09060);
  color: #fff;
  border-bottom-right-radius: 4px;
  box-shadow: 0 2px 12px rgba(232,112,64,0.3);
}

/* Quick reply chips */
.assi-quick-replies {
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
  padding: 2px 0 2px 36px;
}

.assi-chip {
  padding: 6px 13px;
  background: rgba(232,112,64,0.09);
  border: 1px solid rgba(232,112,64,0.22);
  border-radius: 100px;
  color: #f09060;
  font-size: 12px;
  font-weight: 500;
  cursor: pointer;
  font-family: inherit;
  transition: all 0.2s ease;
  white-space: nowrap;
}

.assi-chip:hover {
  background: rgba(232,112,64,0.2);
  border-color: rgba(232,112,64,0.45);
  color: #fff;
  transform: translateY(-1px);
  box-shadow: 0 2px 10px rgba(232,112,64,0.2);
}

/* Action buttons after bot response */
.assi-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  padding: 2px 0 2px 36px;
  animation: msgAppear 0.28s ease;
}

.assi-action-btn {
  padding: 8px 14px;
  background: rgba(232,112,64,0.12);
  border: 1px solid rgba(232,112,64,0.3);
  border-radius: 100px;
  color: #fff;
  font-size: 13px;
  font-weight: 500;
  cursor: pointer;
  font-family: inherit;
  transition: all 0.2s ease;
  white-space: nowrap;
}

.assi-action-btn:hover {
  background: linear-gradient(135deg, #e87040, #f09060);
  border-color: transparent;
  transform: translateY(-1px);
  box-shadow: 0 2px 12px rgba(232,112,64,0.3);
}

/* Typing indicator */
.assi-typing {
  align-items: center;
  gap: 8px;
  padding: 4px 16px 10px;
  flex-shrink: 0;
  display: none;
}

.assi-typing[hidden] {
  display: none !important;
}

.assi-typing-dots {
  display: flex;
  gap: 4px;
  padding: 10px 14px;
  background: rgba(255,255,255,0.07);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 16px 16px 16px 4px;
}

.assi-typing-dots span {
  width: 6px;
  height: 6px;
  background: #777;
  border-radius: 50%;
  animation: typingDot 1.4s ease-in-out infinite;
}

.assi-typing-dots span:nth-child(2) { animation-delay: 0.2s; }
.assi-typing-dots span:nth-child(3) { animation-delay: 0.4s; }

@keyframes typingDot {
  0%, 60%, 100% { transform: translateY(0); opacity: 0.4; }
  30% { transform: translateY(-6px); opacity: 1; }
}

.assi-typing-label {
  font-size: 11px;
  color: #555;
  margin-left: 2px;
}

/* Input area */
.assi-input-area {
  display: flex;
  align-items: flex-end;
  gap: 10px;
  padding: 12px 14px;
  background: rgba(255,255,255,0.025);
  border-top: 1px solid rgba(255,255,255,0.07);
  flex-shrink: 0;
}

.assi-input {
  flex: 1;
  background: rgba(255,255,255,0.07);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 12px;
  padding: 10px 14px;
  color: #f0f0f0;
  font-size: 14px;
  font-family: inherit;
  resize: none;
  min-height: 42px;
  max-height: 100px;
  line-height: 1.5;
  overflow-y: auto;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.assi-input:focus {
  outline: none;
  border-color: rgba(232,112,64,0.45);
  box-shadow: 0 0 0 3px rgba(232,112,64,0.1);
}

.assi-input::placeholder { color: #444; }

.assi-send {
  width: 42px;
  height: 42px;
  border-radius: 11px;
  background: linear-gradient(135deg, #e87040, #f09060);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  flex-shrink: 0;
  transition: transform 0.2s ease, box-shadow 0.2s ease, opacity 0.2s ease;
  box-shadow: 0 2px 14px rgba(232,112,64,0.4);
}

.assi-send:hover:not(:disabled) {
  transform: translateY(-2px);
  box-shadow: 0 4px 20px rgba(232,112,64,0.55);
}

.assi-send:disabled {
  opacity: 0.45;
  cursor: not-allowed;
}

/* Reposition back-to-top above widget */
.back-to-top {
  bottom: 100px !important;
}

/* ── Mobile: chat panel responsive ── */
@media (max-width: 640px) {
  .assi-widget {
    bottom: 0;
    right: 0;
    width: 100%;
  }

  .assi-toggle {
    margin: 0 16px 16px auto;
  }

  .assi-panel {
    position: fixed;
    inset: 0;
    width: 100%;
    height: 100%;
    border-radius: 0;
    transform: translateY(100%);
    max-height: 100dvh;
    z-index: 99999;
  }

  .assi-panel.open {
    transform: translateY(0);
  }

  /* Bigger close button on mobile */
  .assi-close {
    width: 44px;
    height: 44px;
    border-radius: 12px;
    background: rgba(255,255,255,0.1);
  }

  .assi-close svg {
    width: 20px;
    height: 20px;
  }

  /* Bigger header on mobile */
  .assi-panel-header {
    padding: 16px 16px;
    padding-top: max(16px, env(safe-area-inset-top));
  }

  /* Input area safe area */
  .assi-input-area {
    padding-bottom: max(12px, env(safe-area-inset-bottom));
  }

  .assi-bubble {
    margin-right: 80px;
    white-space: normal;
    max-width: calc(100vw - 100px);
  }

  .back-to-top {
    display: none !important;
  }

  /* Hero mobile tweaks */
  .hero {
    padding-top: calc(var(--nav-h) + 30px);
    padding-bottom: 40px;
    min-height: auto;
  }

  .hero-badge {
    font-size: 11px;
    padding: 6px 12px;
  }

  .hero-sub {
    font-size: 15px;
    margin-bottom: 28px;
  }

  .hero-stats {
    gap: 16px;
  }

  .stat-num { font-size: 22px; }
  .stat-label { font-size: 10px; }

  .scroll-indicator { display: none; }

  /* Service cards stack */
  .services-grid {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .service-card { padding: 20px; }

  /* Features stack */
  .features-grid {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .feature-card { padding: 20px; }

  /* Portfolio stack */
  .portfolio-grid {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  /* Testimonials stack */
  .testimonials-grid {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  /* Contact stacked */
  .contact-layout {
    flex-direction: column;
  }

  .contact-info {
    width: 100%;
  }

  .contact-form-wrap {
    padding: 20px;
  }

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

  /* Section spacing mobile */
  .section { padding: 60px 0; }
  .section-header { margin-bottom: 40px; }
  .section-title { font-size: 28px; letter-spacing: -1px; }
  .section-sub { font-size: 15px; }

  /* Assi intro card mobile */
  .assi-intro-card {
    flex-direction: column;
    text-align: center;
    padding: 24px 20px;
    gap: 20px;
  }
  .assi-intro-avatar { width: 80px; height: 80px; }
  .assi-intro-text p { font-size: 14px; }
  .assi-intro-text .btn { width: 100%; justify-content: center; }

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

  .footer-bottom {
    flex-direction: column;
    gap: 8px;
    text-align: center;
  }

  /* Contact methods mobile */
  .contact-method {
    padding: 12px;
  }

  .method-value {
    font-size: 12px;
  }

  /* Guarantee card */
  .guarantee-content {
    flex-direction: column;
    text-align: center;
    gap: 12px;
  }

  /* Navbar mobile */
  .nav-links { display: none; }
  .hamburger { display: flex; }
}
