:root {
  --background: 0 0% 98%;
  --foreground: 240 10% 3.9%;
  --card: 0 0% 100%;
  --card-foreground: 240 10% 3.9%;
  --primary: 180 60% 35%;
  --primary-foreground: 0 0% 100%;
  --secondary: 35 80% 55%;
  --secondary-foreground: 240 10% 3.9%;
  --muted: 240 4.8% 95.9%;
  --muted-foreground: 240 3.8% 46.1%;
  --accent: 240 4.8% 95.9%;
  --border: 240 5.9% 90%;
  --input: 240 5.9% 90%;
  --ring: 180 60% 35%;
  --destructive: 0 72.2% 50.6%;
  --radius: 0.75rem;
  --shadow: 0 10px 15px -3px rgb(0 0 0 / 0.1), 0 4px 6px -4px rgb(0 0 0 / 0.1);
  --shadow-xl: 0 20px 25px -5px rgb(0 0 0 / 0.1), 0 8px 10px -6px rgb(0 0 0 / 0.1);
  --shadow-2xl: 0 25px 50px -12px rgb(0 0 0 / 0.25);
}

.dark {
  --background: 240 10% 3.9%;
  --foreground: 0 0% 98%;
  --card: 240 10% 3.9%;
  --card-foreground: 0 0% 98%;
  --primary: 180 60% 45%;
  --secondary: 35 80% 65%;
  --muted: 240 3.7% 15.9%;
  --muted-foreground: 240 5% 64.9%;
  --accent: 240 3.7% 15.9%;
  --border: 240 3.7% 15.9%;
  --input: 240 3.7% 15.9%;
  --ring: 180 60% 45%;
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: Inter, ui-sans-serif, system-ui, sans-serif;
  background: hsl(var(--background));
  color: hsl(var(--foreground));
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
}

img {
  max-width: 100%;
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
}

button,
input,
select,
textarea {
  font: inherit;
  color: inherit;
}

button {
  cursor: pointer;
  background: none;
  border: none;
}

ul {
  list-style: none;
}

h1, h2, h3, h4 {
  font-weight: 700;
  letter-spacing: -0.025em;
  line-height: 1.2;
}

.container {
  width: 100%;
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 1rem;
}

@media (min-width: 768px) {
  .container { padding: 0 2rem; }
}

.gradient-text {
  background: linear-gradient(135deg, hsl(var(--primary)), hsl(var(--secondary)));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.hero-pattern {
  background-color: hsl(var(--background));
  background-image:
    radial-gradient(hsl(var(--primary) / 0.05) 1px, transparent 1px),
    radial-gradient(hsl(var(--secondary) / 0.05) 1px, transparent 1px);
  background-size: 30px 30px;
  background-position: 0 0, 15px 15px;
}

.section-title-underline {
  position: relative;
  padding-bottom: 0.5rem;
  margin-bottom: 1rem;
}

.section-title-underline::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 4px;
  background: linear-gradient(135deg, hsl(var(--primary)), hsl(var(--secondary)));
  border-radius: 2px;
}

.section-title-underline.left::after {
  left: 0;
  transform: none;
}

.page-title-bg {
  background: linear-gradient(to bottom right, hsl(var(--primary) / 0.88), hsl(var(--secondary) / 0.88));
  color: #fff;
  padding: 8rem 0 2.5rem;
  text-align: center;
}

.page-title-bg h1 { color: #fff; }
.page-title-bg p { color: rgb(255 255 255 / 0.85); }

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  font-weight: 600;
  border-radius: 0.5rem;
  transition: all 0.3s ease;
  white-space: nowrap;
}

.btn-lg {
  padding: 1.1rem 2rem;
  font-size: 1.125rem;
}

.btn-md {
  padding: 0.7rem 1.25rem;
  font-size: 0.95rem;
}

.btn-primary {
  background: hsl(var(--primary));
  color: hsl(var(--primary-foreground));
  box-shadow: 0 4px 6px -1px rgb(0 0 0 / 0.1);
}

.btn-primary:hover {
  transform: translateY(-2px);
  background: hsl(var(--primary) / 0.9);
  box-shadow: var(--shadow);
}

.btn-secondary {
  background: hsl(var(--secondary));
  color: hsl(var(--secondary-foreground));
  box-shadow: 0 4px 6px -1px rgb(0 0 0 / 0.1);
}

.btn-secondary:hover {
  transform: translateY(-2px);
  background: hsl(var(--secondary) / 0.9);
}

.btn-outline {
  border: 2px solid hsl(var(--secondary));
  color: hsl(var(--secondary));
  background: transparent;
}

.btn-outline:hover {
  background: hsl(var(--secondary) / 0.1);
}

.btn-outline-primary {
  border: 2px solid hsl(var(--primary));
  color: hsl(var(--primary));
  background: transparent;
}

.btn-outline-primary:hover,
.service-card:hover .btn-outline-primary {
  background: hsl(var(--primary));
  color: #fff;
}

.btn-light {
  background: hsl(var(--background));
  color: hsl(var(--primary));
}

.btn-light:hover {
  transform: translateY(-2px);
  background: hsl(var(--background) / 0.9);
  box-shadow: var(--shadow-xl);
}

.btn-ghost {
  color: hsl(var(--muted-foreground));
  padding: 0.5rem;
  border-radius: 0.5rem;
}

.btn-ghost:hover { color: hsl(var(--primary)); }

.card-hover {
  transition: all 0.3s ease;
}

.card-hover:hover {
  transform: translateY(-0.5rem);
  box-shadow: var(--shadow-2xl);
}

/* Header */
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
}

.site-header.scrolled {
  background: hsl(var(--card) / 0.9);
  backdrop-filter: blur(16px);
  box-shadow: var(--shadow);
  border-bottom-color: hsl(var(--border) / 0.5);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 5.5rem;
}

.brand {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  font-size: 1.35rem;
  font-weight: 800;
}

.brand-mark {
  width: 2.5rem;
  height: 2.5rem;
  border-radius: 0.5rem;
  background: linear-gradient(to right, hsl(var(--primary)), hsl(var(--secondary)));
  display: grid;
  place-items: center;
  color: #fff;
  flex-shrink: 0;
}

.nav-desktop {
  display: none;
  align-items: center;
  gap: 1.75rem;
}

.nav-desktop a {
  font-weight: 500;
  color: hsl(var(--foreground) / 0.8);
}

.nav-desktop a:hover,
.nav-desktop a.active {
  color: hsl(var(--primary));
}

.header-actions {
  display: none;
  align-items: center;
  gap: 0.6rem;
}

.header-mobile-tools {
  display: flex;
  align-items: center;
  gap: 0.25rem;
}

.mobile-nav {
  display: none;
  padding: 0 0 1.25rem;
}

.mobile-nav.open { display: block; }

.mobile-nav a {
  display: block;
  padding: 0.7rem 0.25rem;
  font-weight: 500;
  border-bottom: 1px solid hsl(var(--border) / 0.5);
}

.mobile-nav .mobile-cta {
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
  margin-top: 1rem;
}

@media (min-width: 1024px) {
  .nav-desktop,
  .header-actions { display: flex; }
  .header-mobile-tools { display: none; }
  .mobile-nav,
  .mobile-nav.open { display: none; }
}

/* Hero */
.hero {
  position: relative;
  padding: 7rem 0 5rem;
  overflow: hidden;
}

@media (min-width: 1024px) {
  .hero { padding: 9rem 0 7rem; }
}

.hero-grid {
  display: grid;
  gap: 3rem;
  align-items: center;
}

@media (min-width: 1024px) {
  .hero-grid { grid-template-columns: 1fr 1fr; }
}

.hero h1 {
  font-size: clamp(2.25rem, 5vw, 4.5rem);
  font-weight: 900;
  margin-bottom: 2rem;
  line-height: 1.1;
}

.hero .lead {
  font-size: 1.15rem;
  color: hsl(var(--muted-foreground));
  max-width: 36rem;
  margin-bottom: 2.5rem;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-top: 1.25rem;
}

.hero-link {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  color: hsl(var(--primary));
  font-weight: 600;
}

.hero-stores {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-bottom: 1rem;
}

.store-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.7rem;
  min-width: 11.5rem;
  padding: 0.7rem 1rem;
  border-radius: 0.75rem;
  background: #111827;
  color: #fff;
  box-shadow: 0 8px 16px rgb(0 0 0 / 0.12);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.store-btn:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-xl);
}

.store-btn-icon {
  width: 1.75rem;
  height: 1.75rem;
  display: grid;
  place-items: center;
  flex-shrink: 0;
}

.store-btn-icon svg {
  width: 1.6rem;
  height: 1.6rem;
}

.store-btn small {
  display: block;
  font-size: 0.7rem;
  font-weight: 500;
  opacity: 0.8;
  line-height: 1.1;
}

.store-btn strong {
  display: block;
  font-size: 0.95rem;
  font-weight: 700;
  line-height: 1.2;
}

.hero-community {
  display: flex;
  align-items: center;
  gap: 0.85rem;
  max-width: 28rem;
  padding: 0.9rem 1rem;
  border-radius: 0.9rem;
  background: #25d366;
  color: #fff;
  box-shadow: 0 10px 20px rgb(37 211 102 / 0.28);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.hero-community:hover {
  transform: translateY(-2px);
  box-shadow: 0 14px 24px rgb(37 211 102 / 0.35);
}

.hero-community-icon {
  width: 2.5rem;
  height: 2.5rem;
  border-radius: 999px;
  background: rgb(255 255 255 / 0.18);
  display: grid;
  place-items: center;
  flex-shrink: 0;
}

.hero-community-icon svg {
  width: 1.45rem;
  height: 1.45rem;
}

.hero-community strong {
  display: block;
  font-size: 0.98rem;
}

.hero-community small {
  display: block;
  margin-top: 0.15rem;
  font-size: 0.78rem;
  opacity: 0.92;
  font-weight: 500;
}

.hero-visual {
  position: relative;
  max-width: 36rem;
  margin: 0 auto;
}

.hero-visual img {
  width: 100%;
  aspect-ratio: 4 / 3.5;
  object-fit: cover;
  border-radius: 1.5rem;
  border: 4px solid hsl(var(--card));
  box-shadow: var(--shadow-2xl);
}

.float-card {
  position: absolute;
  background: hsl(var(--card) / 0.85);
  backdrop-filter: blur(12px);
  border: 1px solid hsl(var(--border) / 0.2);
  border-radius: 1rem;
  padding: 1.1rem;
  box-shadow: var(--shadow-xl);
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.float-card.bottom { bottom: -1.5rem; left: -1rem; }
.float-card.top { top: -0.75rem; right: -0.75rem; }

.float-icon {
  width: 3rem;
  height: 3rem;
  border-radius: 999px;
  display: grid;
  place-items: center;
  color: #fff;
  flex-shrink: 0;
}

.float-icon.teal { background: linear-gradient(to bottom right, hsl(var(--primary)), #2dd4bf); }
.float-icon.amber { background: linear-gradient(to bottom right, hsl(var(--secondary)), #fbbf24); }

.float-card strong { display: block; font-size: 0.95rem; }
.float-card span { font-size: 0.75rem; color: hsl(var(--muted-foreground)); }

.search-panel {
  margin-top: 5rem;
  background: hsl(var(--card) / 0.8);
  backdrop-filter: blur(16px);
  border: 1px solid hsl(var(--border) / 0.3);
  border-radius: 1.5rem;
  padding: 1.5rem;
  box-shadow: var(--shadow-2xl);
}

@media (min-width: 640px) {
  .search-panel { padding: 2.5rem; }
}

.search-panel h2 {
  text-align: center;
  font-size: 1.75rem;
  margin-bottom: 2rem;
}

.search-form {
  display: grid;
  gap: 1.25rem;
  align-items: end;
}

@media (min-width: 768px) {
  .search-form { grid-template-columns: 1fr 1fr auto; }
}

.field {
  position: relative;
}

.field svg {
  position: absolute;
  left: 1rem;
  top: 50%;
  transform: translateY(-50%);
  color: hsl(var(--muted-foreground));
  width: 1.25rem;
  height: 1.25rem;
}

.input,
.select,
.textarea {
  width: 100%;
  border: 1px solid hsl(var(--border));
  background: hsl(var(--background));
  border-radius: 0.5rem;
  padding: 0.75rem 0.9rem;
}

.input:focus,
.select:focus,
.textarea:focus {
  outline: none;
  border-color: hsl(var(--primary));
  box-shadow: 0 0 0 3px hsl(var(--primary) / 0.35);
}

.input.icon {
  height: 3.5rem;
  padding-left: 3rem;
}

.form-label {
  display: block;
  font-weight: 600;
  margin-bottom: 0.5rem;
  font-size: 1.05rem;
}

body[data-page="services"] .band:first-of-type {
  padding-top: 7rem;
}

@media (min-width: 1024px) {
  section.band { padding: 6rem 0; }
}

.center { text-align: center; }

.muted { color: hsl(var(--muted-foreground)); }

.section-intro {
  max-width: 48rem;
  margin: 0 auto 3.5rem;
  font-size: 1.15rem;
  color: hsl(var(--muted-foreground));
}

.section-heading {
  font-size: clamp(2rem, 4vw, 3.5rem);
  font-weight: 800;
  margin-bottom: 1rem;
}

/* Services */
.category-block { margin-bottom: 4rem; }

.category-head {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 2rem;
}

.category-head h2 { font-size: clamp(1.6rem, 3vw, 2.25rem); }

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

@media (min-width: 640px) { .service-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) { .service-grid { grid-template-columns: repeat(3, 1fr); } }
@media (min-width: 1280px) { .service-grid { grid-template-columns: repeat(4, 1fr); } }

.service-card {
  position: relative;
  overflow: hidden;
  border-radius: 0.75rem;
  border: 2px solid transparent;
  background: hsl(var(--card));
  box-shadow: var(--shadow);
}

.service-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  opacity: 0.1;
  transition: 0.5s;
}

.service-card:hover {
  border-color: hsl(var(--primary));
}

.service-card:hover::before {
  opacity: 0.2;
  transform: scale(1.05);
}

.service-card-inner {
  position: relative;
  z-index: 1;
  padding: 1.5rem;
  min-height: 11rem;
  display: flex;
  flex-direction: column;
  background: hsl(var(--card) / 0.8);
  backdrop-filter: blur(4px);
}

.service-card-top {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1.25rem;
}

.service-icon {
  width: 3.5rem;
  height: 3.5rem;
  border-radius: 999px;
  display: grid;
  place-items: center;
  color: #fff;
  flex-shrink: 0;
  box-shadow: var(--shadow);
}

.service-card h3 { font-size: 1.2rem; }

.service-card .btn { margin-top: auto; width: 100%; padding: 0.65rem 1rem; }

.bg-construction::before { background-image: url("https://images.unsplash.com/photo-1504307651254-35680f356dfd?auto=format&fit=crop&w=500&q=60"); }
.bg-home-services::before { background-image: url("https://images.unsplash.com/photo-1581578731548-c64695cc6952?auto=format&fit=crop&w=500&q=60"); }
.bg-wellness-beauty::before { background-image: url("https://images.unsplash.com/photo-1540555700478-4be289fbecef?auto=format&fit=crop&w=500&q=60"); }
.bg-education::before { background-image: url("https://images.unsplash.com/photo-1456513080510-7bf3a84b82f8?auto=format&fit=crop&w=500&q=60"); }
.bg-events::before { background-image: url("https://images.unsplash.com/photo-1511795409834-ef04bbd61622?auto=format&fit=crop&w=500&q=60"); }
.bg-tech-support::before { background-image: url("https://images.unsplash.com/photo-1518770660439-4636190af475?auto=format&fit=crop&w=500&q=60"); }
.bg-logistics::before { background-image: url("https://images.unsplash.com/photo-1577703900849-00183f650b80?auto=format&fit=crop&w=500&q=60"); }
.bg-agriculture::before { background-image: url("https://images.unsplash.com/photo-1605000797499-95a51c52692e?auto=format&fit=crop&w=500&q=60"); }

/* Process */
.process-grid {
  display: grid;
  gap: 2rem;
}

@media (min-width: 768px) { .process-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) { .process-grid { grid-template-columns: repeat(4, 1fr); } }

.process-card {
  text-align: center;
  padding: 2rem 1.5rem;
  background: hsl(var(--card));
  border-radius: 1rem;
  box-shadow: var(--shadow-xl);
  border: 2px solid transparent;
}

.process-card:hover { border-color: hsl(var(--primary)); }

.process-icon {
  width: 5rem;
  height: 5rem;
  margin: 0 auto 1.5rem;
  border-radius: 999px;
  display: grid;
  place-items: center;
  color: #fff;
  position: relative;
  box-shadow: var(--shadow-2xl);
  box-shadow: 0 0 0 4px hsl(var(--background)), var(--shadow-2xl);
}

.step-badge {
  position: absolute;
  top: -0.7rem;
  right: -0.7rem;
  width: 2rem;
  height: 2rem;
  border-radius: 999px;
  background: hsl(var(--secondary));
  color: hsl(var(--secondary-foreground));
  font-weight: 800;
  font-size: 0.85rem;
  display: grid;
  place-items: center;
  border: 2px solid hsl(var(--background));
}

.cta-banner {
  margin-top: 4rem;
  text-align: center;
  background: linear-gradient(to bottom right, hsl(var(--primary)), #0d9488);
  color: #fff;
  border-radius: 1.5rem;
  padding: 2.5rem 1.5rem;
  box-shadow: var(--shadow-2xl);
}

@media (min-width: 640px) {
  .cta-banner { padding: 3rem; }
}

.cta-banner h3 { font-size: clamp(1.75rem, 3vw, 2.25rem); margin-bottom: 1.25rem; }
.cta-banner p { opacity: 0.9; max-width: 42rem; margin: 0 auto 2.5rem; font-size: 1.15rem; }
.cta-actions { display: flex; flex-wrap: wrap; gap: 1rem; justify-content: center; }
.cta-banner .btn-outline-light {
  border: 2px solid rgb(255 255 255 / 0.5);
  color: #fff;
}
.cta-banner .btn-outline-light:hover {
  background: rgb(255 255 255 / 0.1);
  border-color: #fff;
}

/* Testimonials */
.quote-grid {
  display: grid;
  gap: 2rem;
}

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

.quote-card {
  background: hsl(var(--card));
  border-radius: 1rem;
  padding: 2rem;
  box-shadow: var(--shadow-xl);
  height: 100%;
}

.quote-top {
  display: flex;
  gap: 1rem;
  margin-bottom: 1.25rem;
}

.avatar {
  width: 4.5rem;
  height: 4.5rem;
  border-radius: 999px;
  background: linear-gradient(to bottom right, hsl(var(--primary)), #2dd4bf);
  display: grid;
  place-items: center;
  color: #fff;
  flex-shrink: 0;
  border: 2px solid hsl(var(--card));
  box-shadow: var(--shadow);
}

.stars { color: #facc15; letter-spacing: 0.05em; }
.quote-card blockquote {
  font-style: italic;
  color: hsl(var(--foreground) / 0.8);
  font-size: 1.05rem;
}

/* Download */
.download-band {
  background: linear-gradient(to bottom right, hsl(var(--primary)), #0d9488);
  color: #fff;
}

.download-grid {
  display: grid;
  gap: 2.5rem;
  align-items: center;
}

@media (min-width: 768px) { .download-grid { grid-template-columns: 1fr 1fr; } }

.download-band h2 {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 800;
  margin-bottom: 1.5rem;
}

.phone-art {
  max-width: 20rem;
  margin: 0 auto;
  filter: drop-shadow(0 25px 25px rgb(0 0 0 / 0.15));
  border-radius: 2rem;
}

.app-store-cards {
  display: grid;
  gap: 1rem;
}

@media (min-width: 640px) {
  .app-store-cards { grid-template-columns: 1fr 1fr; }
}

.app-store-card {
  background: rgb(255 255 255 / 0.14);
  border: 1px solid rgb(255 255 255 / 0.28);
  border-radius: 1rem;
  padding: 1.25rem;
  color: #fff;
}

.app-store-card h3 {
  font-size: 1.05rem;
  margin-bottom: 0.25rem;
}

.app-store-card p {
  font-size: 0.9rem;
  opacity: 0.85;
  margin-bottom: 1rem;
}

.app-store-card .btn {
  width: 100%;
}

/* WhatsApp community */
.community-band {
  background: hsl(var(--background));
}

.community-card {
  display: grid;
  gap: 2rem;
  align-items: center;
  background: linear-gradient(135deg, #ecfdf3, #d1fae5 55%, #ccfbf1);
  border: 1px solid #86efac;
  border-radius: 1.5rem;
  padding: 2rem 1.5rem;
  box-shadow: var(--shadow-xl);
}

@media (min-width: 768px) {
  .community-card {
    grid-template-columns: 1fr auto;
    padding: 2.75rem;
  }
}

.dark .community-card {
  background: linear-gradient(135deg, #052e16, #064e3b);
  border-color: #166534;
}

.community-icon {
  width: 4rem;
  height: 4rem;
  border-radius: 999px;
  background: #22c55e;
  color: #fff;
  display: grid;
  place-items: center;
  margin-bottom: 1rem;
  box-shadow: var(--shadow);
}

.community-card h2 {
  font-size: clamp(1.75rem, 3vw, 2.4rem);
  margin-bottom: 0.75rem;
}

.community-card p {
  color: #166534;
  font-size: 1.05rem;
  max-width: 38rem;
}

.dark .community-card p { color: #bbf7d0; }

.btn-whatsapp {
  background: #16a34a;
  color: #fff;
  box-shadow: 0 4px 6px -1px rgb(0 0 0 / 0.12);
}

.btn-whatsapp:hover {
  transform: translateY(-2px);
  background: #15803d;
  box-shadow: var(--shadow);
}

/* About */
.two-col {
  display: grid;
  gap: 3rem;
  align-items: center;
}

@media (min-width: 768px) { .two-col { grid-template-columns: 1fr 1fr; } }

.round-img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  border-radius: 1rem;
  box-shadow: var(--shadow-2xl);
}

.mission h2 {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-size: 1.85rem;
  margin-bottom: 1rem;
}

.mission p { font-size: 1.1rem; color: hsl(var(--muted-foreground)); line-height: 1.7; }
.mission + .mission { margin-top: 2rem; }

.feature-grid,
.team-grid {
  display: grid;
  gap: 2rem;
}

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

.feature-card,
.team-card {
  background: hsl(var(--card));
  padding: 2rem;
  border-radius: 1rem;
  box-shadow: var(--shadow-xl);
  border: 2px solid transparent;
}

.feature-card:hover { border-color: hsl(var(--primary)); }
.team-card:hover { border-color: hsl(var(--secondary)); }
.team-card { text-align: center; }

.feature-card svg { width: 3rem; height: 3rem; color: hsl(var(--primary)); margin-bottom: 1.1rem; }
.feature-card h3 { font-size: 1.4rem; margin-bottom: 0.6rem; }

.team-photo {
  width: 9rem;
  height: 9rem;
  border-radius: 999px;
  object-fit: cover;
  margin: 0 auto 1.25rem;
  border: 4px solid hsl(var(--card));
  box-shadow: var(--shadow);
}

.team-card .role { color: hsl(var(--secondary)); font-weight: 600; font-size: 1.05rem; }

/* Blog */
.blog-grid {
  display: grid;
  gap: 2.5rem;
}

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

.blog-card {
  background: hsl(var(--card));
  border-radius: 1rem;
  overflow: hidden;
  box-shadow: var(--shadow-xl);
  border: 1px solid hsl(var(--border) / 0.3);
  display: flex;
  flex-direction: column;
  height: 100%;
}

.blog-card img {
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
}

.blog-body { padding: 1.5rem; display: flex; flex-direction: column; flex: 1; }
.chip {
  display: inline-block;
  align-self: start;
  background: hsl(var(--secondary) / 0.12);
  color: hsl(var(--secondary));
  font-weight: 600;
  font-size: 0.8rem;
  padding: 0.25rem 0.75rem;
  border-radius: 999px;
  margin-bottom: 0.75rem;
}
.blog-body h3 { font-size: 1.25rem; margin-bottom: 0.6rem; }
.blog-meta { font-size: 0.85rem; color: hsl(var(--muted-foreground)); margin-top: auto; padding-top: 1rem; }

/* Contact */
.contact-grid {
  display: grid;
  gap: 2.5rem;
}

@media (min-width: 1024px) {
  .contact-grid { grid-template-columns: 2fr 3fr; }
}

.panel {
  background: hsl(var(--card));
  border-radius: 1rem;
  padding: 2rem 1.5rem;
  box-shadow: var(--shadow-xl);
  border: 1px solid hsl(var(--border) / 0.3);
}

@media (min-width: 640px) { .panel { padding: 2.5rem; } }

.contact-row {
  display: flex;
  gap: 1.25rem;
  align-items: flex-start;
  margin-bottom: 1.5rem;
}

.contact-row svg {
  width: 1.75rem;
  height: 1.75rem;
  color: hsl(var(--primary));
  flex-shrink: 0;
  margin-top: 0.2rem;
}

.contact-row.wa svg { color: #22c55e; }
.contact-row h3 { font-size: 1.2rem; }
.contact-row p { color: hsl(var(--muted-foreground)); font-size: 1.05rem; }
.contact-row:hover p { color: hsl(var(--primary)); }

.map-placeholder {
  aspect-ratio: 16 / 9;
  background: hsl(var(--muted));
  border-radius: 0.75rem;
  display: grid;
  place-items: center;
  color: hsl(var(--muted-foreground) / 0.7);
  text-align: center;
  padding: 1rem;
}

.form-stack { display: grid; gap: 1.5rem; }
.form-row {
  display: grid;
  gap: 1.5rem;
}
@media (min-width: 768px) { .form-row { grid-template-columns: 1fr 1fr; } }

.textarea { min-height: 8rem; resize: vertical; }

.file-drop {
  border: 1px dashed hsl(var(--border));
  border-radius: 0.5rem;
  padding: 1.25rem;
  text-align: center;
  background: hsl(var(--card));
}

.check {
  display: flex;
  gap: 0.6rem;
  align-items: flex-start;
  font-size: 0.95rem;
}

.check input { margin-top: 0.3rem; }

/* FAQ */
.faq-list {
  max-width: 56rem;
  margin: 0 auto;
  background: hsl(var(--card));
  border-radius: 1rem;
  padding: 1.5rem;
  box-shadow: var(--shadow-xl);
  border: 1px solid hsl(var(--border) / 0.3);
}

@media (min-width: 640px) { .faq-list { padding: 2.5rem; } }

.faq-item { border-bottom: 1px solid hsl(var(--border)); }
.faq-item:last-child { border-bottom: 0; }

.faq-q {
  width: 100%;
  text-align: left;
  padding: 1.1rem 2rem 1.1rem 0;
  font-weight: 600;
  font-size: 1.05rem;
  position: relative;
}

.faq-q::after {
  content: "+";
  position: absolute;
  right: 0;
  top: 1.05rem;
  color: hsl(var(--primary));
  font-size: 1.4rem;
  font-weight: 400;
}

.faq-item.open .faq-q::after { content: "–"; }

.faq-a {
  display: none;
  padding: 0 0 1.1rem;
  color: hsl(var(--muted-foreground));
  line-height: 1.7;
}

.faq-item.open .faq-a { display: block; }

/* Legal */
.prose {
  max-width: 48rem;
  margin: 0 auto;
  color: #374151;
  font-size: 1.05rem;
  line-height: 1.75;
}

.dark .prose { color: hsl(var(--muted-foreground)); }

.prose h2 {
  font-size: 1.5rem;
  color: #1f2937;
  margin: 2rem 0 0.75rem;
}

.dark .prose h2 { color: hsl(var(--foreground)); }

.prose p { margin-bottom: 0.9rem; }
.prose ul { list-style: disc; padding-left: 1.4rem; margin-bottom: 1rem; }
.prose a { color: hsl(var(--primary)); font-weight: 600; }
.prose a:hover { text-decoration: underline; }

/* 404 */
.empty-state {
  min-height: calc(100vh - 10rem);
  display: grid;
  place-items: center;
  text-align: center;
  padding: 4rem 1rem;
}

.empty-state h1 {
  font-size: 4rem;
  font-weight: 800;
  color: hsl(var(--primary));
}

/* Footer */
.site-footer {
  background: #111827;
  color: #d1d5db;
  padding: 3.5rem 0 1.5rem;
}

.footer-grid {
  display: grid;
  gap: 2rem;
  margin-bottom: 2.5rem;
}

@media (min-width: 768px) { .footer-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) { .footer-grid { grid-template-columns: 1.4fr 1fr 1fr 1.2fr; } }

.site-footer h3 {
  color: #fff;
  font-size: 1.1rem;
  margin-bottom: 1rem;
}

.site-footer a:hover { color: hsl(var(--primary)); }

.footer-brand p { font-size: 0.9rem; margin: 0.75rem 0 1rem; line-height: 1.6; }

.footer-meta {
  display: flex;
  flex-direction: column;
  gap: 0.45rem;
  font-size: 0.9rem;
}

.footer-meta a,
.footer-meta span {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.footer-links { display: grid; gap: 0.5rem; font-size: 0.9rem; }

.newsletter-form {
  display: flex;
}

.newsletter-form input {
  flex: 1;
  height: 2.5rem;
  background: #1f2937;
  border: 1px solid #374151;
  color: #fff;
  border-radius: 0.5rem 0 0 0.5rem;
  padding: 0 0.75rem;
}

.newsletter-form button {
  height: 2.5rem;
  padding: 0 0.85rem;
  border-radius: 0 0.5rem 0.5rem 0;
  background: hsl(var(--primary));
  color: #fff;
}

.socials { display: flex; gap: 0.6rem; margin-top: 0.75rem; }
.socials a {
  width: 2.25rem;
  height: 2.25rem;
  border-radius: 999px;
  background: #1f2937;
  display: grid;
  place-items: center;
}
.socials a:hover { color: #fff; }

.footer-bottom {
  border-top: 1px solid #374151;
  padding-top: 1.25rem;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  align-items: center;
  font-size: 0.875rem;
}

@media (min-width: 640px) {
  .footer-bottom {
    flex-direction: row;
    justify-content: space-between;
  }
}

.heart { color: #ef4444; }

/* Toast */
.toast-root {
  position: fixed;
  top: 1rem;
  right: 1rem;
  z-index: 80;
  display: grid;
  gap: 0.5rem;
}

.toast {
  background: #22c55e;
  color: #fff;
  padding: 0.9rem 1.1rem;
  border-radius: 0.6rem;
  box-shadow: var(--shadow-xl);
  min-width: 16rem;
  max-width: 22rem;
}

.toast.error { background: hsl(var(--destructive)); }
.toast strong { display: block; margin-bottom: 0.15rem; }

.icon {
  width: 1.25rem;
  height: 1.25rem;
  stroke: currentColor;
  fill: none;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.icon-lg { width: 1.5rem; height: 1.5rem; }
.icon-xl { width: 2.5rem; height: 2.5rem; }
.icon-2xl { width: 4rem; height: 4rem; }

.hidden { display: none !important; }
