/* MinuteBytes — Design System */
:root {
  --brand: #2563eb;
  --brand-dark: #1d4ed8;
  --brand-soft: rgba(37, 99, 235, 0.08);
  --accent: #f59e0b;
  --accent-soft: rgba(245, 158, 11, 0.12);
  --slate-50: #f8fafc;
  --slate-100: #f1f5f9;
  --slate-200: #e2e8f0;
  --slate-300: #cbd5e1;
  --slate-400: #94a3b8;
  --slate-500: #64748b;
  --slate-600: #475569;
  --slate-700: #334155;
  --slate-800: #1e293b;
  --slate-900: #0f172a;
  --white: #ffffff;
  --green-100: #dcfce7;
  --green-600: #16a34a;
  --purple-100: #f3e8ff;
  --purple-600: #9333ea;
  --shadow-sm: 0 1px 2px rgba(15, 23, 42, 0.06);
  --shadow-md: 0 4px 12px rgba(15, 23, 42, 0.08);
  --shadow-lg: 0 12px 32px rgba(15, 23, 42, 0.12);
  --shadow-xl: 0 24px 60px rgba(15, 23, 42, 0.18);
  --radius-sm: 8px;
  --radius-md: 12px;
  --radius-lg: 16px;
  --radius-xl: 24px;
  --radius-2xl: 32px;
  --max-w: 1200px;
  --font-display: 'Outfit', system-ui, sans-serif;
  --font-body: 'Inter', system-ui, sans-serif;
}

* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  font-family: var(--font-body);
  color: var(--slate-900);
  background: var(--slate-50);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button { font-family: inherit; cursor: pointer; border: 0; background: none; }

.container { max-width: var(--max-w); margin: 0 auto; padding: 0 24px; }

/* ---------- Nav ---------- */
.nav {
  position: sticky; top: 0; z-index: 50;
  background: rgba(255, 255, 255, 0.8);
  backdrop-filter: saturate(180%) blur(12px);
  -webkit-backdrop-filter: saturate(180%) blur(12px);
  border-bottom: 1px solid var(--slate-200);
}
.nav-inner {
  display: flex; align-items: center; justify-content: space-between;
  height: 76px;
}
.brand { display: flex; align-items: center; gap: 10px; }
.brand-mark {
  width: 40px; height: 40px; border-radius: 12px;
  background: var(--brand); color: white;
  display: grid; place-items: center;
  font-family: var(--font-display); font-weight: 800; font-style: italic; font-size: 20px;
}
.brand-name {
  font-family: var(--font-display); font-weight: 700; font-size: 22px;
  letter-spacing: -0.02em;
}
.nav-links { display: flex; align-items: center; gap: 32px; }
.nav-links a {
  font-weight: 500; color: var(--slate-600); font-size: 15px;
  transition: color 0.15s;
}
.nav-links a:hover, .nav-links a.active { color: var(--brand); }
.nav-cta {
  background: var(--brand); color: white;
  padding: 10px 22px; border-radius: 999px;
  font-weight: 600; font-size: 15px;
  transition: background 0.15s, transform 0.15s;
}
.nav-cta:hover { background: var(--brand-dark); }
.nav-toggle { display: none; }

@media (max-width: 860px) {
  .nav-links, .nav-cta { display: none; }
  .nav-toggle {
    display: grid; place-items: center;
    width: 44px; height: 44px; border-radius: 10px;
    background: var(--slate-100);
  }
  .nav-toggle span { display: block; width: 20px; height: 2px; background: var(--slate-900); position: relative; }
  .nav-toggle span::before, .nav-toggle span::after {
    content: ''; position: absolute; left: 0; width: 20px; height: 2px; background: var(--slate-900);
  }
  .nav-toggle span::before { top: -6px; }
  .nav-toggle span::after { top: 6px; }
  .nav.open .nav-links {
    display: flex; flex-direction: column; gap: 16px;
    position: absolute; top: 76px; left: 0; right: 0;
    background: white; padding: 24px;
    border-bottom: 1px solid var(--slate-200);
  }
  .nav.open .nav-cta { display: inline-block; margin: 0 24px 24px; text-align: center; position: absolute; top: calc(76px + 220px); left:0; right:0; }
}

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  padding: 14px 28px; border-radius: 14px;
  font-weight: 700; font-size: 16px;
  transition: transform 0.15s, background 0.15s, box-shadow 0.15s;
}
.btn-primary {
  background: var(--slate-900); color: white;
  box-shadow: var(--shadow-md);
}
.btn-primary:hover { background: #000; transform: translateY(-2px); box-shadow: var(--shadow-lg); }
.btn-brand { background: var(--brand); color: white; box-shadow: var(--shadow-md); }
.btn-brand:hover { background: var(--brand-dark); transform: translateY(-2px); }
.btn-whatsapp {
  background: #25d366; color: white; box-shadow: var(--shadow-md);
}
.btn-whatsapp:hover { background: #1ebe5d; transform: translateY(-2px); }
.btn-ghost {
  background: white; color: var(--slate-900); border: 1px solid var(--slate-200);
}
.btn-ghost:hover { background: var(--slate-100); }
.btn-lg { padding: 18px 36px; font-size: 18px; border-radius: 16px; }

/* ---------- Hero ---------- */
.hero { padding:30px 0 30px; position: relative; overflow: hidden; }
.hero-grid {
  display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: center;
}
.eyebrow {
  display: inline-flex; align-items: center; gap: 8px;
  background: var(--brand-soft); color: var(--brand);
  border: 1px solid rgba(37, 99, 235, 0.15);
  padding: 6px 16px; border-radius: 999px;
  font-size: 13px; font-weight: 600; letter-spacing: 0.06em;
  text-transform: uppercase; margin-bottom: 24px;
}
.dot { width: 8px; height: 8px; border-radius: 50%; background: var(--brand); position: relative; }
.dot::before {
  content: ''; position: absolute; inset: 0; border-radius: 50%; background: var(--brand);
  animation: ping 1.6s ease-in-out infinite;
}
@keyframes ping {
  0% { transform: scale(1); opacity: 0.8; }
  80%, 100% { transform: scale(2.5); opacity: 0; }
}
.hero h1 {
  font-family: var(--font-display); font-weight: 800;
  font-size: clamp(40px, 6vw, 72px); line-height: 1.05;
  letter-spacing: -0.025em; margin-bottom: 28px;
}
.hero h1 .accent-price {
  color: var(--brand); font-style: italic;
  text-decoration: underline; text-decoration-color: var(--accent);
  text-decoration-thickness: 4px; text-underline-offset: 6px;
}
.hero p.lead {
  font-size: 18px; color: var(--slate-600);
  max-width: 500px; margin-bottom: 15px;
}
.hero p.text-d{
color: var(--slate-600);
font-size: 18px;	
}
.hero p.mb-d{
margin-bottom: 20px;
}
.hero-actions { display: flex; gap: 16px; flex-wrap: wrap; align-items: center; }
.rating { display: flex; align-items: center; gap: 12px; padding: 0 8px; }
.avatars { display: flex; }
.avatars span {
  width: 32px; height: 32px; border-radius: 50%;
  border: 2px solid white; margin-left: -8px;
  background: var(--slate-300);
}
.avatars span:first-child { margin-left: 0; background: var(--slate-200); }
.avatars span:nth-child(3) { background: var(--slate-400); }
.rating-text { font-size: 14px; color: var(--slate-500); font-style: italic; font-weight: 500; }

.hero-visual { position: relative; }
.hero-card {
  aspect-ratio: 4 / 3; background: white;
  border-radius: 24px; box-shadow: var(--shadow-xl);
  border: 1px solid var(--slate-200);
  padding: 16px; overflow: hidden;
  display: flex; flex-direction: column;
}
.hero-card-bar { display: flex; gap: 6px; margin-bottom: 16px; }
.hero-card-bar i { width: 10px; height: 10px; border-radius: 50%; background: var(--slate-200); display: block; }
.hero-card-screen {
  flex: 1; border-radius: 14px; padding: 24px;
  background: linear-gradient(135deg, #eef4ff 0%, #fff7e8 100%);
  display: flex; flex-direction: column; gap: 12px;
}
.hero-card-screen .h { height: 14px; border-radius: 6px; background: var(--slate-300); width: 50%; }
.hero-card-screen .h.lg { height: 22px; width: 70%; background: var(--slate-700); }
.hero-card-screen .row { display: flex; gap: 8px; margin-top: 8px; }
.hero-card-screen .row .box { flex: 1; height: 60px; border-radius: 10px; background: white; box-shadow: var(--shadow-sm); }
.hero-card-screen .cta { margin-top: auto; height: 38px; width: 140px; border-radius: 10px; background: var(--brand); }

.hero-badge {
  position: absolute; bottom: -28px; left: -28px;
  background: var(--accent); color: white;
  padding: 20px 24px; border-radius: 20px;
  box-shadow: var(--shadow-lg);
}
.hero-badge p:first-child { font-family: var(--font-display); font-weight: 800; font-size: 36px; line-height: 1; }
.hero-badge p:last-child { font-size: 11px; font-weight: 700; letter-spacing: 0.12em; text-transform: uppercase; opacity: 0.95; margin-top: 4px; }

/* ---------- Sections ---------- */
section { padding: 30px 0; }
.section-head { text-align: center; max-width: 720px; margin: 0 auto 64px; }
.section-head.left { text-align: left; margin: 0 0 56px; }
.section-eyebrow {
  display: inline-block; font-size: 13px; font-weight: 700;
  letter-spacing: 0.12em; text-transform: uppercase;
  color: var(--brand); margin-bottom: 12px;
}
h2.section-title {
  font-family: var(--font-display); font-weight: 800;
  font-size: clamp(32px, 4vw, 48px); line-height: 1.1;
  letter-spacing: -0.02em; margin-bottom: 16px;
}
.section-sub { font-size: 17px; color: var(--slate-600); }

.bg-white { background: white; }
.bg-slate { background: var(--slate-50); }
.bg-dark { background: var(--slate-900); color: white; }
.bg-dark .section-title { color: white; }
.bg-dark .section-sub { color: var(--slate-400); }

/* ---------- Features ---------- */
.features-grid {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px;
}
.feature-card {
  padding: 28px; border-radius: 20px;
  background: var(--slate-50); border: 1px solid var(--slate-100);
  transition: transform 0.2s, box-shadow 0.2s;
}
.feature-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.feature-icon {
  width: 48px; height: 48px; border-radius: 12px;
  display: grid; place-items: center; font-weight: 800; font-size: 20px;
  margin-bottom: 18px;
}
.feature-icon.brand { background: var(--brand-soft); color: var(--brand); }
.feature-icon.accent { background: var(--accent-soft); color: var(--accent); }
.feature-icon.green { background: var(--green-100); color: var(--green-600); }
.feature-icon.purple { background: var(--purple-100); color: var(--purple-600); }
.feature-card h3 { font-family: var(--font-display); font-size: 20px; font-weight: 700; margin-bottom: 8px; }
.feature-card p { font-size: 14px; color: var(--slate-500); }

/* ---------- Industries ---------- */
.industries-grid {
  display: grid; grid-template-columns: repeat(6, 1fr); gap: 16px;
}
.industry-card {
  aspect-ratio: 1; border-radius: 20px;
  background: var(--slate-800); border: 1px solid var(--slate-700);
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  gap: 12px; padding: 16px;
  transition: border-color 0.2s, transform 0.2s;
}
.industry-card:hover { border-color: rgba(37, 99, 235, 0.5); transform: translateY(-4px); }
.industry-icon {
  width: 44px; height: 44px; border-radius: 50%;
  background: var(--slate-700); display: grid; place-items: center;
  font-size: 20px;
  transition: background 0.2s;
}
.industry-card:hover .industry-icon { background: rgba(37, 99, 235, 0.2); }
.industry-card span { font-weight: 600; font-size: 14px; text-align: center; }

/* ---------- Pricing ---------- */
.pricing-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px;
  align-items: stretch;
}
.price-card {
  background: white; border-radius: 24px;
  border: 1px solid var(--slate-200); padding: 36px 32px;
  display: flex; flex-direction: column;
  position: relative;
}
.price-card.featured {
  background: var(--slate-900); color: white;
  border-color: var(--slate-900);
  transform: scale(1.03);
  box-shadow: var(--shadow-xl);
}
.price-card .badge-pop {
  position: absolute; top: -14px; left: 50%; transform: translateX(-50%);
  background: var(--accent); color: white;
  padding: 6px 16px; border-radius: 999px;
  font-size: 11px; font-weight: 800; letter-spacing: 0.1em; text-transform: uppercase;
}
.price-tier { font-size: 13px; font-weight: 700; letter-spacing: 0.12em; text-transform: uppercase; color: var(--brand); }
.price-card.featured .price-tier { color: #93c5fd; }
.price-amount {
  font-family: var(--font-display); font-weight: 800;
  font-size: 48px; line-height: 1; margin-top: 12px;
}
.price-amount small { font-size: 16px; font-weight: 500; color: var(--slate-500); margin-left: 4px; }
.price-card.featured .price-amount small { color: var(--slate-400); }
.price-desc { color: var(--slate-500); font-size: 14px; margin-top: 8px; margin-bottom: 28px; }
.price-card.featured .price-desc { color: var(--slate-400); }
.price-list { list-style: none; flex: 1; display: flex; flex-direction: column; gap: 12px; margin-bottom: 28px; }
.price-list li {
  display: flex; align-items: flex-start; gap: 10px; font-size: 14px; color: var(--slate-700);
}
.price-card.featured .price-list li { color: var(--slate-200); }
.price-list li::before {
  content: '✓'; color: var(--brand); font-weight: 800; flex-shrink: 0;
}
.price-card.featured .price-list li::before { color: var(--accent); }
.price-cta {
  width: 100%; padding: 14px;
  border-radius: 12px; font-weight: 700; font-size: 15px;
  background: var(--slate-100); color: var(--slate-900);
  display: inline-block; text-align: center;
  transition: background 0.15s;
}
.price-cta:hover { background: var(--slate-200); }
.price-card.featured .price-cta { background: var(--brand); color: white; }
.price-card.featured .price-cta:hover { background: var(--brand-dark); }

/* ---------- Process ---------- */
.process-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 32px;
}
.process-step {
  background: white; padding: 36px; border-radius: 24px;
  border: 1px solid var(--slate-200);
}
.process-num {
  font-family: var(--font-display); font-weight: 800; font-style: italic;
  font-size: 56px; color: var(--brand); line-height: 1; margin-bottom: 12px;
}
.process-step h3 { font-family: var(--font-display); font-size: 22px; font-weight: 700; margin-bottom: 8px; }
.process-step p { color: var(--slate-600); font-size: 15px; }

/* ---------- Testimonials ---------- */
.testi-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.testi-card {
  background: white; padding: 32px; border-radius: 20px;
  border: 1px solid var(--slate-200);
}
.testi-stars { color: var(--accent); font-size: 16px; margin-bottom: 16px; letter-spacing: 2px; }
.testi-quote { font-size: 16px; color: var(--slate-700); margin-bottom: 24px; line-height: 1.6; }
.testi-author { display: flex; align-items: center; gap: 12px; }
.testi-avatar {
  width: 44px; height: 44px; border-radius: 50%;
  background: linear-gradient(135deg, var(--brand), var(--accent));
  color: white; display: grid; place-items: center;
  font-weight: 700; font-family: var(--font-display);
}
.testi-name { font-weight: 700; font-size: 15px; }
.testi-role { font-size: 13px; color: var(--slate-500); }

/* ---------- FAQ ---------- */
.faq-list { max-width: 800px; margin: 0 auto; display: flex; flex-direction: column; gap: 12px; }
.faq-item {
  background: white; border: 1px solid var(--slate-200); border-radius: 16px;
  overflow: hidden; transition: box-shadow 0.2s;
}
.faq-item.open { box-shadow: var(--shadow-md); }
.faq-q {
  width: 100%; text-align: left; padding: 22px 24px;
  display: flex; justify-content: space-between; align-items: center; gap: 16px;
  font-weight: 700; font-size: 16px; color: var(--slate-900);
  font-family: var(--font-display);
}
.faq-q::after {
  content: '+'; font-size: 24px; color: var(--brand); font-weight: 400;
  transition: transform 0.2s;
}
.faq-item.open .faq-q::after { content: '−'; }
.faq-a {
  display: none; padding: 0 24px 24px;
  color: var(--slate-600); font-size: 15px; line-height: 1.7;
}
.faq-item.open .faq-a { display: block; }

/* ---------- CTA Band ---------- */
.cta-band {
  background: var(--accent); border-radius: 48px;
  padding: 80px 48px; text-align: center; color: white;
}
.cta-band h2 {
  font-family: var(--font-display); font-weight: 800;
  font-size: clamp(32px, 4.5vw, 56px); line-height: 1.1; margin-bottom: 32px;
}
.cta-actions { display: flex; flex-wrap: wrap; justify-content: center; gap: 16px; }
.cta-band .btn-primary { background: white; color: var(--accent); }
.cta-band .btn-primary:hover { background: var(--slate-50); }
.cta-band .btn-ghost { background: rgba(0,0,0,0.1); border-color: rgba(255,255,255,0.25); color: white; }
.cta-band .btn-ghost:hover { background: rgba(0,0,0,0.2); }

/* ---------- Footer ---------- */
.footer {
  border-top: 1px solid var(--slate-200);
  padding: 64px 0 32px; background: white;
}
.footer-grid {
  display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 48px; margin-bottom: 48px;
}
.footer-brand p { color: var(--slate-500); font-size: 14px; margin-top: 16px; max-width: 320px; }
.footer h4 { font-family: var(--font-display); font-size: 15px; font-weight: 700; margin-bottom: 16px; }
.footer ul { list-style: none; display: flex; flex-direction: column; gap: 10px; }
.footer ul a { color: var(--slate-500); font-size: 14px; transition: color 0.15s; }
.footer ul a:hover { color: var(--brand); }
.footer-bottom {
  padding-top: 24px; border-top: 1px solid var(--slate-200);
  display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 16px;
  color: var(--slate-400); font-size: 13px;
}
.footer-bottom .legal { display: flex; gap: 24px; }

/* ---------- Floating WhatsApp ---------- */
.wa-float {
  position: fixed; bottom: 24px; right: 24px; z-index: 60;
  background: #25d366; color: white;
  width: 60px; height: 60px; border-radius: 50%;
  display: grid; place-items: center;
  box-shadow: 0 10px 30px rgba(37, 211, 102, 0.5);
  font-weight: 800; font-size: 28px;
  transition: transform 0.2s;
}
.wa-float:hover { transform: scale(1.08); }

/* ---------- Page hero (sub pages) ---------- */
.page-hero {
  padding: 80px 0 64px; text-align: center;
}
.page-hero h1 {
  font-family: var(--font-display); font-weight: 800;
  font-size: clamp(40px, 5.5vw, 64px); line-height: 1.05;
  letter-spacing: -0.025em; margin-bottom: 20px;
}
.page-hero p { font-size: 18px; color: var(--slate-600); max-width: 640px; margin: 0 auto; }

/* ---------- Form ---------- */
.form-grid {
  display: grid; grid-template-columns: 1fr 1fr; gap: 48px;
  background: white; border-radius: 24px; padding: 48px;
  border: 1px solid var(--slate-200);
}
.form { display: flex; flex-direction: column; gap: 18px; }
.field { display: flex; flex-direction: column; gap: 8px; }
.field label { font-size: 14px; font-weight: 600; color: var(--slate-700); }
.field input, .field select, .field textarea {
  font-family: inherit; font-size: 15px;
  padding: 14px 16px; border-radius: 12px;
  border: 1px solid var(--slate-200); background: var(--slate-50);
  color: var(--slate-900); transition: border-color 0.15s, background 0.15s;
}
.field input:focus, .field select:focus, .field textarea:focus {
  outline: none; border-color: var(--brand); background: white;
  box-shadow: 0 0 0 3px var(--brand-soft);
}
.field textarea { min-height: 120px; resize: vertical; }
.field .err { color: #dc2626; font-size: 13px; display: none; }
.field.has-err input, .field.has-err textarea, .field.has-err select { border-color: #dc2626; }
.field.has-err .err { display: block; }
.form-status { font-size: 14px; font-weight: 600; color: var(--green-600); display: none; }
.form-status.show { display: block; }

.contact-card {
  background: var(--slate-50); padding: 24px; border-radius: 16px;
  display: flex; gap: 16px; align-items: flex-start;
  border: 1px solid var(--slate-100);
}
.contact-icon {
  width: 44px; height: 44px; border-radius: 12px;
  background: var(--brand); color: white;
  display: grid; place-items: center; font-weight: 800; flex-shrink: 0;
}
.contact-card h4 { font-family: var(--font-display); font-size: 17px; font-weight: 700; margin-bottom: 4px; }
.contact-card p { color: var(--slate-600); font-size: 14px; }
.contact-card a { color: var(--brand); font-weight: 600; }

/* ---------- Stats ---------- */
.stats { display: grid; grid-template-columns: repeat(4, 1fr); gap: 32px; }
.stat { text-align: center; }
.stat-num {
  font-family: var(--font-display); font-weight: 800; font-size: 48px;
  color: var(--brand); line-height: 1;
}
.stat-label { font-size: 14px; color: var(--slate-500); margin-top: 8px; font-weight: 500; }

/* ---------- Service list ---------- */
.svc-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 24px; }
.svc-card {
  background: white; padding: 32px; border-radius: 20px;
  border: 1px solid var(--slate-200);
  display: flex; gap: 20px;
}
.svc-card .feature-icon { flex-shrink: 0; }
.svc-card h3 { font-family: var(--font-display); font-size: 20px; font-weight: 700; margin-bottom: 8px; }
.svc-card p { color: var(--slate-600); font-size: 15px; }

/* ---------- Responsive ---------- */
@media (max-width: 1024px) {
  .hero-grid { grid-template-columns: 1fr; gap: 80px; }
  .features-grid { grid-template-columns: repeat(2, 1fr); }
  .industries-grid { grid-template-columns: repeat(4, 1fr); }
  .pricing-grid { grid-template-columns: 1fr; max-width: 480px; margin: 0 auto; }
  .price-card.featured { transform: none; }
  .process-grid, .testi-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .form-grid { grid-template-columns: 1fr; padding: 32px; }
  .svc-grid { grid-template-columns: 1fr; }
  .stats { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 600px) {
  section { padding: 64px 0; }
  .industries-grid { grid-template-columns: repeat(2, 1fr); }
  .features-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; gap: 32px; }
  .cta-band { padding: 56px 24px; border-radius: 32px; }
}


.hero-slider{
  position:relative;
  width:100%;
  height:420px;
  overflow:hidden;
  border-radius:24px;
}

.slide{
  position:absolute;
  inset:0;
  width:100%;
  height:100%;
  object-fit:cover;
  opacity:0;
  transition:opacity .8s ease;
}

.slide.active{
  opacity:1;
}