@import url('https://fonts.googleapis.com/css2?family=Space+Grotesk:wght@400;500;600;700&family=DM+Sans:ital,opsz,wght@0,9..40,400;0,9..40,500;1,9..40,400&display=swap');

/* ── Variables ── */
:root {
  --bg:        #ffffff;
  --surface:   #f7f7f8;
  --panel:     #ffffff;
  --border:    #e8e8ed;
  --text:      #0f0f18;
  --muted:     #6b6b80;
  --orange:    #ff5a00;
  --red:       #e8004f;
  --green:     #16a34a;
  --grad:      linear-gradient(135deg, #ff5a00, #e8004f);
  --shadow:    0 1px 3px rgba(0,0,0,0.07), 0 4px 16px rgba(0,0,0,0.05);
  --shadow-md: 0 4px 20px rgba(0,0,0,0.08);
  --shadow-lg: 0 8px 40px rgba(0,0,0,0.1);
}

/* ── Reset ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: 'DM Sans', system-ui, sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
  overflow-x: hidden;
}
a { color: inherit; text-decoration: none; }
img { display: block; max-width: 100%; }
.container { width: min(1100px, 92%); margin: 0 auto; }

/* ── Ticker ── */
.ticker { background: var(--grad); overflow: hidden; white-space: nowrap; padding: 0.42rem 0; }
.ticker-inner {
  display: inline-block;
  font-family: 'Space Grotesk', sans-serif;
  font-weight: 600;
  font-size: 0.78rem;
  letter-spacing: 0.06em;
  color: #fff;
  animation: marquee 30s linear infinite;
}
@keyframes marquee { from { transform: translateX(0); } to { transform: translateX(-50%); } }

/* ── Header ── */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255,255,255,0.92);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--border);
}
.nav-wrap {
  min-height: 64px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
}
.brand { display: flex; align-items: center; gap: 0.75rem; }
.brand img { width: 40px; height: 40px; border-radius: 11px; object-fit: cover; box-shadow: var(--shadow); }
.brand-name {
  font-family: 'Space Grotesk', sans-serif;
  font-weight: 700;
  font-size: 1rem;
  background: var(--grad);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  line-height: 1.2;
}
.brand-tag { font-size: 0.7rem; color: var(--muted); line-height: 1.2; }
.main-nav { display: flex; align-items: center; gap: 1.5rem; font-size: 0.88rem; font-weight: 500; }
.main-nav a:not(.btn-nav) { color: var(--muted); transition: color 0.15s; }
.main-nav a:not(.btn-nav):hover { color: var(--orange); }
.btn-nav {
  padding: 0.46rem 1.05rem;
  border-radius: 8px;
  background: var(--grad);
  color: #fff;
  font-family: 'Space Grotesk', sans-serif;
  font-weight: 600;
  font-size: 0.82rem;
}

/* ── Hero ── */
/* IMAGE PATH: hero background set via inline style on .hero-bg in index.html */
.hero {
  position: relative;
  overflow: hidden;
  min-height: 92vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.hero-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  z-index: 0;
}
.hero-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(105deg, rgba(5,5,20,0.82) 0%, rgba(5,5,20,0.55) 55%, rgba(5,5,20,0.25) 100%);
}
.hero-inner { position: relative; z-index: 1; padding: 6rem 0 4rem; }
.hero-content { max-width: 620px; }

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  background: rgba(255,90,0,0.18);
  color: #ffb380;
  border: 1px solid rgba(255,90,0,0.35);
  border-radius: 999px;
  padding: 0.28rem 0.9rem;
  font-family: 'Space Grotesk', sans-serif;
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 1rem;
}
.eyebrow-dot {
  width: 6px; height: 6px;
  border-radius: 50%;
  background: #ff7a30;
  animation: blink 2s ease-in-out infinite;
}
@keyframes blink { 0%, 100% { opacity: 1; } 50% { opacity: 0.3; } }

h1 {
  font-family: 'Space Grotesk', sans-serif;
  font-size: clamp(2.4rem, 5.5vw, 4rem);
  font-weight: 700;
  line-height: 1.06;
  letter-spacing: -0.03em;
  margin-bottom: 1rem;
  color: #fff;
}
.grad {
  background: var(--grad);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
.hero-desc { color: rgba(255,255,255,0.7); max-width: 46ch; font-size: 1.02rem; margin-bottom: 2rem; line-height: 1.65; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 0.75rem; }

.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.75rem 1.5rem;
  border-radius: 10px;
  background: var(--grad);
  color: #fff;
  font-family: 'Space Grotesk', sans-serif;
  font-weight: 600;
  font-size: 0.9rem;
  box-shadow: 0 4px 20px rgba(255,90,0,0.4);
  transition: opacity 0.15s, transform 0.15s;
}
.btn-primary:hover { opacity: 0.88; transform: translateY(-1px); }

.btn-ghost {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.75rem 1.5rem;
  border-radius: 10px;
  background: rgba(255,255,255,0.08);
  color: #fff;
  border: 1.5px solid rgba(255,255,255,0.25);
  font-family: 'Space Grotesk', sans-serif;
  font-weight: 600;
  font-size: 0.9rem;
  backdrop-filter: blur(6px);
  transition: background 0.15s, border-color 0.15s;
}
.btn-ghost:hover { background: rgba(255,255,255,0.14); border-color: rgba(255,255,255,0.4); }

.float-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  background: var(--green);
  color: #fff;
  font-family: 'Space Grotesk', sans-serif;
  font-weight: 700;
  font-size: 0.74rem;
  padding: 0.34rem 0.9rem;
  border-radius: 999px;
  box-shadow: 0 4px 12px rgba(22,163,74,0.35);
  margin-bottom: 1.2rem;
}
.badge-dot { width: 7px; height: 7px; border-radius: 50%; background: #fff; animation: blink 1.5s ease-in-out infinite; }

/* ── Stats ── */
.stats {
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 2.5rem 0;
  background: #fff;
}
.stats-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1rem; text-align: center; }
.stat-num {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 2.2rem;
  font-weight: 700;
  background: var(--grad);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  line-height: 1;
}
.stat-label { font-size: 0.82rem; color: var(--muted); margin-top: 0.3rem; }

/* ── Sections ── */
.section { padding: 5rem 0; }
.section-alt { background: var(--surface); }
h2 {
  font-family: 'Space Grotesk', sans-serif;
  font-size: clamp(1.6rem, 3vw, 2.1rem);
  font-weight: 700;
  letter-spacing: -0.025em;
  line-height: 1.2;
  color: var(--text);
}
.section-tag {
  display: inline-block;
  border-radius: 999px;
  padding: 0.25rem 0.75rem;
  font-family: 'Space Grotesk', sans-serif;
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  margin-bottom: 0.7rem;
}
.tag-orange { background: rgba(255,90,0,0.08); color: var(--orange); border: 1px solid rgba(255,90,0,0.18); }
.tag-green  { background: rgba(22,163,74,0.07); color: var(--green);  border: 1px solid rgba(22,163,74,0.2); }
.section-intro { color: var(--muted); margin-top: 0.4rem; margin-bottom: 2.5rem; max-width: 52ch; }
.section-head  { margin-bottom: 2.5rem; }

/* ── Service Cards ── */
.card-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1rem; }
.card {
  background: var(--panel);
  border: 1px solid var(--border);
  border-radius: 18px;
  padding: 1.8rem 1.6rem;
  box-shadow: var(--shadow);
  transition: border-color 0.2s, transform 0.2s, box-shadow 0.2s;
}
.card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }
.card:nth-child(1):hover { border-color: rgba(255,90,0,0.4); }
.card:nth-child(2):hover { border-color: rgba(232,0,79,0.35); }
.card:nth-child(3):hover { border-color: rgba(22,163,74,0.4); }
.card h3 { font-family: 'Space Grotesk', sans-serif; font-weight: 600; font-size: 1.05rem; margin-bottom: 0.5rem; color: var(--text); }
.card p  { color: var(--muted); font-size: 0.92rem; line-height: 1.55; }

/* ── Pricing ── */
.pricing-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1rem; }
.price-card {
  background: var(--panel);
  border: 1px solid var(--border);
  border-radius: 18px;
  padding: 1.8rem;
  text-align: center;
  position: relative;
  box-shadow: var(--shadow);
}
.price-card.featured { border-color: rgba(255,90,0,0.45); box-shadow: 0 8px 32px rgba(255,90,0,0.1); }
.featured-badge {
  position: absolute;
  top: -13px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--grad);
  color: #fff;
  font-family: 'Space Grotesk', sans-serif;
  font-weight: 700;
  font-size: 0.7rem;
  padding: 0.28rem 0.9rem;
  border-radius: 999px;
  white-space: nowrap;
}
.price-label  { font-size: 0.78rem; color: var(--muted); font-weight: 500; margin-bottom: 0.5rem; text-transform: uppercase; letter-spacing: 0.06em; }
.price-amount { font-family: 'Space Grotesk', sans-serif; font-size: 2.4rem; font-weight: 700; line-height: 1; margin-bottom: 0.2rem; color: var(--text); }
.price-card.featured .price-amount { background: var(--grad); -webkit-background-clip: text; -webkit-text-fill-color: transparent; }
.price-unit { font-size: 0.78rem; color: var(--muted); margin-bottom: 1.4rem; }
.price-features { list-style: none; text-align: left; margin-bottom: 1.6rem; }
.price-features li {
  font-size: 0.88rem;
  color: var(--muted);
  padding: 0.44rem 0;
  border-bottom: 1px solid var(--border);
  display: flex;
  align-items: center;
  gap: 0.5rem;
}
.price-features li::before { content: ''; width: 5px; height: 5px; border-radius: 50%; background: var(--orange); flex-shrink: 0; }
.price-features li:last-child { border-bottom: none; }
.btn-price { width: 100%; padding: 0.68rem; border-radius: 10px; font-family: 'Space Grotesk', sans-serif; font-weight: 600; font-size: 0.88rem; cursor: pointer; border: none; }
.btn-price.solid   { background: var(--grad); color: #fff; box-shadow: 0 3px 12px rgba(255,90,0,0.25); }
.btn-price.outline { background: transparent; color: var(--text); border: 1.5px solid var(--border); }

/* ── Products ── */
.product-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 3rem; align-items: center; }
.product-img  { width: 100%; border-radius: 20px; border: 1px solid var(--border); box-shadow: var(--shadow-lg); }
.list { list-style: none; margin-top: 1.3rem; }
.list li {
  padding: 0.55rem 0;
  border-bottom: 1px solid var(--border);
  font-size: 0.93rem;
  color: var(--muted);
  display: flex;
  align-items: center;
  gap: 0.65rem;
}
.list li::before { content: ''; width: 5px; height: 5px; border-radius: 50%; background: var(--green); flex-shrink: 0; }
.list li:last-child { border-bottom: none; }

/* ── Gallery ── */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-template-rows: 220px 220px;
  gap: 0.75rem;
}
.gallery-item {
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid var(--border);
  background: var(--surface);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--muted);
  font-size: 0.82rem;
  font-family: 'Space Grotesk', sans-serif;
  transition: transform 0.2s, box-shadow 0.2s;
}
.gallery-item img { width: 100%; height: 100%; object-fit: cover; }
.gallery-item:hover { transform: scale(1.02); box-shadow: var(--shadow-md); }
.gallery-item.tall  { grid-row: span 2; }

/* ── Testimonials ── */
.testi-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1rem; }
.testi-card {
  background: var(--panel);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 1.6rem;
  box-shadow: var(--shadow);
}
.testi-stars  { color: var(--orange); letter-spacing: 2px; font-size: 0.9rem; margin-bottom: 0.8rem; }
.testi-text   { color: var(--muted); font-size: 0.9rem; font-style: italic; margin-bottom: 1.1rem; line-height: 1.6; }
.testi-author { font-family: 'Space Grotesk', sans-serif; font-weight: 600; font-size: 0.85rem; color: var(--text); }
.testi-role   { font-size: 0.78rem; color: var(--muted); }

/* ── Socials ── */
.social-links { display: flex; flex-wrap: wrap; gap: 0.75rem; margin-top: 1.8rem; }
.social-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  padding: 0.65rem 1.2rem;
  border-radius: 11px;
  font-family: 'Space Grotesk', sans-serif;
  font-weight: 600;
  font-size: 0.88rem;
  color: #fff;
  transition: transform 0.15s, opacity 0.15s;
}
.social-btn:hover { transform: translateY(-2px); opacity: 0.9; }
.social-btn svg   { width: 17px; height: 17px; flex-shrink: 0; }
.s-instagram { background: linear-gradient(135deg,#f58529,#dd2a7b,#8134af); box-shadow: 0 3px 12px rgba(221,42,123,0.22); }
.s-whatsapp  { background: #25d366; color: #052e12; box-shadow: 0 3px 12px rgba(37,211,102,0.2); }
.s-facebook  { background: #1877f2; box-shadow: 0 3px 12px rgba(24,119,242,0.2); }
.s-tiktok    { background: #010101; border: 1px solid #2e2e2e; box-shadow: 0 3px 12px rgba(0,0,0,0.15); }

/* ── Contact ── */
.contact-wrap {
  background: var(--panel);
  border: 1px solid var(--border);
  border-radius: 22px;
  padding: 2.8rem;
  max-width: 580px;
  margin: 0 auto;
  box-shadow: var(--shadow-lg);
}
.contact-form { display: grid; gap: 0.6rem; margin-top: 1.6rem; }
label { font-size: 0.82rem; font-weight: 500; color: var(--muted); margin-top: 0.3rem; }
input, textarea {
  background: var(--surface);
  color: var(--text);
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 0.72rem 0.9rem;
  font: inherit;
  font-size: 0.93rem;
  width: 100%;
  transition: border-color 0.15s, box-shadow 0.15s;
}
input:focus, textarea:focus {
  outline: none;
  border-color: rgba(255,90,0,0.45);
  box-shadow: 0 0 0 3px rgba(255,90,0,0.07);
}
textarea { resize: vertical; }
input::placeholder, textarea::placeholder { color: var(--muted); opacity: 0.55; }
.btn-submit {
  width: 100%;
  padding: 0.8rem;
  border-radius: 10px;
  background: var(--grad);
  color: #fff;
  font-family: 'Space Grotesk', sans-serif;
  font-weight: 700;
  font-size: 0.95rem;
  cursor: pointer;
  border: none;
  margin-top: 0.5rem;
  box-shadow: 0 4px 16px rgba(255,90,0,0.25);
  transition: opacity 0.15s, transform 0.15s;
}
.btn-submit:hover { opacity: 0.88; transform: translateY(-1px); }

/* ── Footer ── */
.site-footer { border-top: 1px solid var(--border); padding: 1.6rem 0; margin-top: 2rem; }
.footer-wrap {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  font-size: 0.84rem;
  color: var(--muted);
}
.footer-wrap a:hover { color: var(--text); }

/* ── Responsive ── */
@media (max-width: 900px) {
  .product-grid  { grid-template-columns: 1fr; }
  .card-grid     { grid-template-columns: 1fr 1fr; }
  .pricing-grid  { grid-template-columns: 1fr 1fr; }
  .testi-grid    { grid-template-columns: 1fr 1fr; }
  .stats-grid    { grid-template-columns: repeat(2, 1fr); }
  .main-nav      { gap: 0.75rem; font-size: 0.84rem; }
}
@media (max-width: 560px) {
  .card-grid, .pricing-grid, .testi-grid { grid-template-columns: 1fr; }
  .stats-grid    { grid-template-columns: 1fr 1fr; }
  .gallery-grid  { grid-template-columns: 1fr 1fr; grid-template-rows: auto; }
  .gallery-item.tall { grid-row: span 1; }
  .social-links  { flex-direction: column; }
  .hero-actions  { flex-direction: column; }
  .btn-primary, .btn-ghost { width: 100%; justify-content: center; }
  .hero { padding: 3.5rem 0 2.5rem; }
  .main-nav a:not(.btn-nav) { display: none; }
}
