:root {
  --primary: #1ed760;
  --secondary: #0b3d2a;
  --accent: #6eea3f;
  --bg: #ffffff;
  --glass: rgba(255, 255, 255, 0.75);
  --glow: rgba(30, 215, 96, 0.25);
  --text: #0c2a1c;
  --muted: #4a6b5b;
  --shadow: 0 18px 40px rgba(7, 40, 24, 0.12);
}

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

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
  -ms-text-size-adjust: 100%;
}

* {
  -webkit-tap-highlight-color: rgba(30, 215, 96, 0.2);
}

body {
  font-family: "Inter", system-ui, -apple-system, sans-serif;
  background: #ffffff;
  color: var(--text);
  line-height: 1.6;
  min-height: 100vh;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
  -webkit-overflow-scrolling: touch;
  overscroll-behavior-y: contain;
}

body::before {
  content: "";
  position: fixed;
  inset: -20%;
  z-index: -1;
  background: radial-gradient(circle at 20% 20%, rgba(30, 215, 96, 0.22), transparent 40%),
    radial-gradient(circle at 80% 10%, rgba(110, 234, 63, 0.18), transparent 45%),
    radial-gradient(circle at 50% 90%, rgba(30, 215, 96, 0.2), transparent 50%),
    linear-gradient(120deg, rgba(255, 255, 255, 0.9), rgba(240, 255, 247, 0.8));
  animation: greenFlow 18s ease-in-out infinite alternate;
  opacity: 0.9;
  pointer-events: none;
}

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

img.lazy {
  filter: blur(10px);
  transform: scale(1.02);
  transition: filter 0.6s ease, transform 0.6s ease;
}

img.lazy.is-loaded {
  filter: blur(0);
  transform: scale(1);
}

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

.container {
  width: min(1200px, 92%);
  margin: 0 auto;
}

.hidden {
  display: none;
}

.glass {
  background: var(--glass);
  border: 1px solid rgba(11, 61, 42, 0.08);
  box-shadow: var(--shadow);
  backdrop-filter: blur(14px);
}

.topbar {
  background: rgba(255, 255, 255, 0.92);
  border-bottom: 1px solid rgba(11, 61, 42, 0.08);
  padding: 8px 0;
  font-size: 0.85rem;
  color: var(--muted);
}

.topbar .topbar-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
}

.topbar .topbar-left {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

.header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(11, 61, 42, 0.08);
  transition: transform 0.3s ease, background 0.3s ease;
  will-change: transform;
  transform: translateZ(0);
}

.header.is-hidden {
  transform: translateY(-100%);
}

.navbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 16px 0;
}

.brand {
  font-weight: 700;
  font-size: 1.35rem;
  letter-spacing: 0.5px;
  color: var(--accent);
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 18px;
  list-style: none;
}

.nav-links > li {
  position: relative;
}

.nav-links a {
  font-size: 0.95rem;
  padding: 6px 4px;
  color: var(--text);
  transition: color 0.3s ease;
}

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

.dropdown {
  position: absolute;
  top: 110%;
  left: 0;
  min-width: 210px;
  padding: 12px;
  background: rgba(255, 255, 255, 0.98);
  border: 1px solid rgba(11, 61, 42, 0.08);
  border-radius: 12px;
  box-shadow: var(--shadow);
  opacity: 0;
  pointer-events: none;
  transform: translateY(8px);
  transition: all 0.3s ease;
}

.nav-links li:hover .dropdown,
.nav-links li:focus-within .dropdown {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}

.dropdown a {
  display: block;
  padding: 8px 6px;
  font-size: 0.9rem;
  color: var(--muted);
}

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

.dropdown-title {
  display: block;
  margin: 8px 6px 6px;
  font-size: 0.75rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(11, 61, 42, 0.55);
}

.dropdown a.sub-item {
  padding-left: 14px;
  font-size: 0.88rem;
}

.header-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 10px 20px;
  border-radius: 999px;
  background: var(--primary);
  color: #062014;
  font-weight: 600;
  box-shadow: 0 0 24px rgba(30, 215, 96, 0.35);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: 12px;
}

.icon-button {
  width: 40px;
  height: 40px;
  border-radius: 999px;
  border: 1px solid rgba(11, 61, 42, 0.2);
  background: rgba(255, 255, 255, 0.9);
  display: grid;
  place-items: center;
  cursor: pointer;
  color: var(--secondary);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.icon-button svg,
.icon-button img {
  width: 20px;
  height: 20px;
  display: block;
}

.icon-button img {
  object-fit: contain;
}

.icon-button:hover {
  transform: translateY(-1px);
  box-shadow: 0 6px 16px rgba(30, 215, 96, 0.15);
}

.header-cta:hover {
  transform: scale(1.03);
  box-shadow: 0 0 40px rgba(30, 215, 96, 0.55);
}

.hero {
  position: relative;
  min-height: 100vh;
  display: grid;
  place-items: center;
  padding: 140px 0 120px;
  overflow: hidden;
}

.hero video,
.hero .hero-image {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 1;
}

.hero .hero-image {
  background: url("/assets/hero-forest.jpg") center/cover no-repeat;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(120deg, rgba(0, 0, 0, 0.65), rgba(6, 26, 16, 0.75));
  z-index: 2;
}

.hero::after {
  content: "";
  position: absolute;
  inset: -20%;
  background: radial-gradient(circle at 30% 30%, rgba(30, 215, 96, 0.18), transparent 40%),
    radial-gradient(circle at 70% 20%, rgba(166, 255, 77, 0.2), transparent 35%),
    radial-gradient(circle at 50% 70%, rgba(8, 48, 30, 0.55), transparent 45%);
  animation: heroGlow 14s ease-in-out infinite alternate;
  z-index: 2;
  mix-blend-mode: screen;
}

.hero-noise {
  position: absolute;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='200' height='200'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.9' numOctaves='2' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='200' height='200' filter='url(%23n)' opacity='.15'/%3E%3C/svg%3E");
  opacity: 0.15;
  z-index: 2;
  mix-blend-mode: soft-light;
}

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

.hero h1 {
  font-size: clamp(2.6rem, 4vw, 4.5rem);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  line-height: 1.1;
  margin-bottom: 20px;
  color: rgba(255, 255, 255, 0.92);
  text-shadow: 0 8px 30px rgba(0, 0, 0, 0.45);
}

.hero h1 span {
  display: block;
  color: rgba(255, 255, 255, 0.88);
}

.hero-title-line {
  display: block;
  opacity: 0;
  transform: translate3d(0, 20px, 0);
  letter-spacing: 0.28em;
  will-change: opacity, transform;
  animation: heroText 1.2s ease forwards;
}

.hero-title-line.delay-1 {
  animation-delay: 0.2s;
}

.hero-title-line.delay-2 {
  animation-delay: 0.45s;
}

.hero .hero-slogan {
  margin-top: 18px;
  font-size: 1.05rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.78);
}

.hero-actions {
  margin-top: 34px;
  display: flex;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
  z-index: 10;
  position: relative;
}

.hero-actions .btn {
  min-width: 160px;
  font-weight: 700;
  font-size: 1.05rem;
  padding: 14px 28px;
  box-shadow: 0 8px 24px rgba(30, 215, 96, 0.5);
  transition: all 0.3s ease;
}

.hero-actions .btn-primary,
.hero-actions a.btn-primary {
  background: #1ed760 !important;
  background-color: #1ed760 !important;
  color: #06180f !important;
  box-shadow: 0 8px 32px rgba(30, 215, 96, 0.6) !important;
  border: none !important;
  border-color: transparent !important;
}

.hero-actions .btn-primary:hover,
.hero-actions a.btn-primary:hover {
  background: #1ed760 !important;
  background-color: #1ed760 !important;
  transform: translateY(-3px) scale(1.03) !important;
  box-shadow: 0 12px 40px rgba(30, 215, 96, 0.7) !important;
}

.hero-actions .btn:hover {
  transform: translateY(-3px) scale(1.03);
  box-shadow: 0 12px 40px rgba(30, 215, 96, 0.7);
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px 24px;
  border-radius: 999px;
  font-weight: 600;
  border: 1px solid transparent;
  transition: transform 0.3s ease, box-shadow 0.3s ease, color 0.3s ease, background 0.3s ease;
  position: relative;
  overflow: hidden;
}

.btn-primary {
  background: var(--primary);
  color: #06180f;
  box-shadow: 0 0 30px rgba(30, 215, 96, 0.45);
}

.btn-secondary {
  background: transparent;
  border-color: rgba(11, 61, 42, 0.4);
  color: var(--secondary);
  border-width: 2px;
}

.btn-secondary:hover {
  background: rgba(11, 61, 42, 0.05);
  border-color: var(--secondary);
  color: var(--secondary);
}

.btn:hover {
  transform: translateY(-2px) scale(1.02);
  box-shadow: 0 0 40px rgba(30, 215, 96, 0.55);
}

.btn::after {
  content: "";
  position: absolute;
  width: 10px;
  height: 10px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.55);
  opacity: 0;
  transform: scale(1);
  pointer-events: none;
}

.btn-ripple {
  position: absolute;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.5);
  transform: scale(0);
  animation: ripple 0.5s ease-out;
  pointer-events: none;
}

.section {
  padding: 90px 0;
  position: relative;
}

.section-title {
  font-size: clamp(1.8rem, 2.5vw, 2.6rem);
  margin-bottom: 24px;
  color: var(--accent);
}

.section-kicker {
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--secondary);
  margin-bottom: 10px;
}

.stepper {
  margin-top: 18px;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.stepper .step {
  padding: 8px 14px;
  border-radius: 999px;
  border: 1px solid rgba(11, 61, 42, 0.15);
  background: rgba(255, 255, 255, 0.85);
  font-size: 0.85rem;
  color: var(--muted);
}

.stepper .step.is-active {
  background: rgba(30, 215, 96, 0.18);
  border-color: rgba(30, 215, 96, 0.35);
  color: var(--secondary);
}

.section-subtitle {
  color: var(--muted);
  max-width: 720px;
}

.slider {
  position: relative;
  overflow: hidden;
}

.slider-track {
  display: flex;
  transition: transform 0.8s ease;
}

.slide {
  min-width: 100%;
  padding: 48px 0;
}

.slide-card {
  padding: 36px;
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.9);
  border: 1px solid rgba(11, 61, 42, 0.08);
  box-shadow: var(--shadow);
}

.slider-nav {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 14px;
  margin-top: 20px;
}

.slider-dots {
  display: flex;
  gap: 10px;
}

.slider-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.2);
  cursor: pointer;
  transition: transform 0.3s ease, background 0.3s ease;
}

.slider-dot.is-active {
  background: var(--accent);
  transform: scale(1.3);
}

.slider-arrow {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 1px solid rgba(11, 61, 42, 0.2);
  background: rgba(255, 255, 255, 0.9);
  color: var(--secondary);
  display: grid;
  place-items: center;
  cursor: pointer;
}

.grid {
  display: grid;
  gap: 24px;
}

.grid-3 {
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
}

.grid-2 {
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  align-items: start;
}

.grid-4 {
  grid-template-columns: repeat(auto-fit, minmax(210px, 1fr));
}

.card {
  position: relative;
  padding: 22px;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.92);
  border: 1px solid rgba(11, 61, 42, 0.08);
  box-shadow: 0 12px 30px rgba(7, 40, 24, 0.12);
  overflow: hidden;
  transition: transform 0.35s ease, box-shadow 0.35s ease;
  will-change: transform;
  transform: translateZ(0);
}

.card:hover {
  transform: translateY(-6px);
  box-shadow: 0 16px 50px rgba(30, 215, 96, 0.18);
}

.card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(120deg, rgba(30, 215, 96, 0.12), transparent 60%);
  opacity: 0;
  transition: opacity 0.4s ease;
  pointer-events: none;
}

.card:hover::after {
  opacity: 1;
}

.card img {
  border-radius: 14px;
  margin-bottom: 16px;
  width: 100%;
  height: auto;
  aspect-ratio: 16 / 9;
  object-fit: cover;
}

.card-slideshow {
  position: relative;
  border-radius: 14px;
  overflow: hidden;
  height: 180px;
  margin-bottom: 16px;
  aspect-ratio: 16 / 9;
  will-change: contents;
}

.card-slideshow img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0;
  will-change: opacity;
  transform: translateZ(0);
  animation: cardSlide 16s infinite;
}

.card-slideshow img:nth-child(1) { animation-delay: 0s; }
.card-slideshow img:nth-child(2) { animation-delay: 4s; }
.card-slideshow img:nth-child(3) { animation-delay: 8s; }
.card-slideshow img:nth-child(4) { animation-delay: 12s; }

.icon-line {
  width: 40px;
  height: 40px;
  display: inline-grid;
  place-items: center;
  border-radius: 12px;
  border: 1px solid rgba(30, 215, 96, 0.35);
  color: var(--secondary);
  margin-bottom: 12px;
}

.icon-line svg {
  width: 22px;
  height: 22px;
  stroke: currentColor;
  fill: none;
  stroke-width: 2;
}

.granule-hero {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  background: linear-gradient(120deg, rgba(30, 215, 96, 0.12), rgba(255, 255, 255, 0.9));
}

.granule-hero-text h2 {
  margin: 8px 0;
}

.media {
  position: relative;
  border-radius: 14px;
  overflow: hidden;
  margin-bottom: 16px;
}

.media img {
  width: 100%;
}

.media.skeleton::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(120deg, rgba(30, 215, 96, 0.08), rgba(166, 255, 77, 0.25), rgba(30, 215, 96, 0.08));
  animation: shimmer 1.6s infinite;
}

.card ul {
  list-style: none;
  margin-top: 12px;
  display: grid;
  gap: 6px;
  color: var(--muted);
}

.tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 12px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  font-size: 0.8rem;
  color: var(--muted);
}

.icon-line {
  width: 40px;
  height: 40px;
  border-radius: 12px;
  display: grid;
  place-items: center;
  background: rgba(30, 215, 96, 0.12);
  border: 1px solid rgba(30, 215, 96, 0.25);
  margin-bottom: 12px;
}

.icon-line svg {
  width: 22px;
  height: 22px;
  stroke: var(--primary);
  fill: none;
  stroke-width: 1.6;
}

.breadcrumb {
  font-size: 0.9rem;
  color: var(--muted);
  margin-bottom: 18px;
}

.side-panel {
  display: grid;
  gap: 18px;
}

.sidebar-card {
  padding: 18px;
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.92);
  border: 1px solid rgba(11, 61, 42, 0.08);
}

.category-list a {
  display: block;
  padding: 8px 0;
  color: var(--muted);
}

.category-list a.is-active {
  color: var(--accent);
  font-weight: 600;
}

.filters input {
  width: 100%;
  padding: 10px 14px;
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.95);
  border: 1px solid rgba(11, 61, 42, 0.12);
  color: var(--text);
}

form label {
  display: grid;
  gap: 6px;
  margin-bottom: 12px;
  font-size: 0.9rem;
  color: var(--muted);
}

form small {
  font-size: 0.75rem;
  color: var(--muted);
}

.req {
  color: #e14848;
  font-weight: 700;
}

form input,
form textarea,
form select {
  width: 100%;
  padding: 10px 14px;
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.95);
  border: 1px solid rgba(11, 61, 42, 0.12);
  color: var(--text);
  position: relative;
  z-index: 2;
  pointer-events: auto;
}

.references-strip {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
  gap: 16px;
  align-items: center;
}

.references-strip img {
  filter: grayscale(1) brightness(1.1);
  opacity: 0.8;
  transition: all 0.3s ease;
}

.references-strip img:hover {
  filter: none;
  opacity: 1;
}

.cert-grid img {
  border-radius: 14px;
  cursor: pointer;
}

.cta-band {
  padding: 36px;
  border-radius: 26px;
  background: linear-gradient(120deg, rgba(30, 215, 96, 0.18), rgba(240, 255, 247, 0.95));
  display: grid;
  gap: 12px;
  align-items: center;
}

.cta-band.light {
  background: linear-gradient(120deg, rgba(30, 215, 96, 0.2), rgba(255, 255, 255, 0.95));
  border: 1px solid rgba(11, 61, 42, 0.08);
}

.cta-band.light {
  background: linear-gradient(120deg, rgba(30, 215, 96, 0.12), rgba(255, 255, 255, 0.95));
}

.footer {
  padding: 60px 0 30px;
  background: #f4fbf6;
  border-top: 1px solid rgba(11, 61, 42, 0.08);
}

.footer-grid {
  display: grid;
  gap: 24px;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
}

.footer h4 {
  margin-bottom: 16px;
  color: var(--accent);
}

.footer a {
  color: var(--muted);
  font-size: 0.9rem;
  display: block;
  margin-bottom: 8px;
}

.footer-bottom {
  text-align: center;
  margin-top: 30px;
  color: var(--muted);
  font-size: 0.85rem;
}

.cookie-bar {
  position: fixed;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
  background: rgba(255, 255, 255, 0.95);
  border: 1px solid rgba(11, 61, 42, 0.12);
  border-radius: 999px;
  padding: 10px 18px;
  z-index: 400;
}

.cookie-bar .container {
  display: flex;
  align-items: center;
  gap: 14px;
}

.whatsapp-fab {
  position: fixed;
  right: 24px;
  bottom: 24px;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: #25d366;
  color: #fff;
  display: grid;
  place-items: center;
  box-shadow: 0 0 20px rgba(37, 211, 102, 0.4);
  z-index: 500;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  animation: fabPulse 2.6s ease-in-out infinite;
}

.whatsapp-fab:hover {
  transform: scale(1.08);
  box-shadow: 0 0 28px rgba(37, 211, 102, 0.55);
}

.whatsapp-fab img {
  width: 28px;
  height: 28px;
  display: block;
}

.lightbox {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.7);
  display: none;
  place-items: center;
  z-index: 200;
}

.lightbox img {
  max-width: min(90vw, 800px);
  border-radius: 16px;
  box-shadow: var(--shadow);
}

.lightbox.is-open {
  display: grid;
}

.particles-layer {
  position: absolute;
  inset: 0;
  z-index: 2;
  pointer-events: none;
}

.toast {
  position: fixed;
  bottom: 20px;
  right: 20px;
  padding: 14px 18px;
  border-radius: 12px;
  background: rgba(10, 40, 26, 0.95);
  border: 1px solid rgba(255, 255, 255, 0.1);
  opacity: 0;
  transform: translateY(20px);
  transition: all 0.4s ease;
  z-index: 300;
}

.toast.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.spec-table {
  width: 100%;
  border-collapse: collapse;
  margin-top: 12px;
  font-size: 0.95rem;
}

.spec-table th,
.spec-table td {
  text-align: left;
  padding: 8px 10px;
  border-bottom: 1px solid rgba(11, 61, 42, 0.08);
}

.spec-table th {
  color: var(--secondary);
  width: 40%;
}

.product-gallery {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(70px, 1fr));
  gap: 10px;
  margin-top: 16px;
}

.gallery-thumb {
  border: 1px solid rgba(11, 61, 42, 0.12);
  border-radius: 10px;
  background: #ffffff;
  padding: 4px;
  cursor: pointer;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.gallery-thumb:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(11, 61, 42, 0.15);
}

.gallery-thumb img {
  width: 100%;
  height: 64px;
  object-fit: cover;
  border-radius: 8px;
}

.map-full {
  width: 100%;
}

.map-embed {
  position: relative;
  padding-top: 56.25%;
  border-radius: 18px;
  overflow: hidden;
  box-shadow: var(--shadow);
  border: 1px solid rgba(11, 61, 42, 0.1);
}

.map-embed::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(120deg, rgba(30, 215, 96, 0.12), rgba(255, 255, 255, 0.8));
  z-index: 0;
}

.map-embed iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
  z-index: 1;
}

.map-full {
  padding: 0;
}

@media (max-width: 640px) {
  .map-embed {
    padding-top: 70%;
  }
}

.map-embed iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
}

.whatsapp-fab {
  position: fixed;
  right: 20px;
  bottom: 20px;
  width: 54px;
  height: 54px;
  border-radius: 50%;
  background: #25d366;
  display: grid;
  place-items: center;
  color: #0b2f20;
  box-shadow: 0 0 20px rgba(37, 211, 102, 0.45);
  z-index: 500;
  animation: fabPulse 2.6s ease-in-out infinite;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.call-fab {
  position: fixed;
  right: 20px;
  bottom: 86px;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: rgba(11, 61, 42, 0.95);
  display: grid;
  place-items: center;
  color: #ffffff;
  box-shadow: 0 0 16px rgba(11, 61, 42, 0.35);
  z-index: 499;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.call-fab svg {
  width: 20px;
  height: 20px;
  fill: currentColor;
}

.call-fab:hover {
  transform: scale(1.06);
  box-shadow: 0 0 22px rgba(11, 61, 42, 0.5);
}

.search-overlay {
  position: fixed;
  inset: 0;
  background: rgba(8, 20, 14, 0.45);
  display: none;
  place-items: center;
  z-index: 600;
  padding: 20px;
}

.category-modal {
  position: fixed;
  inset: 0;
  background: rgba(6, 14, 10, 0.5);
  display: none;
  place-items: center;
  z-index: 650;
  padding: 20px;
}

.category-modal.is-open {
  display: grid;
}

.category-modal-content {
  width: min(1100px, 100%);
  max-height: 85vh;
  overflow: auto;
  padding: 24px;
  border-radius: 22px;
}

.category-modal-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 16px;
}

.modal-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 16px;
}

.search-overlay.is-open {
  display: grid;
}

.search-panel {
  width: min(900px, 100%);
  padding: 24px;
  border-radius: 20px;
  display: grid;
  gap: 16px;
}

.search-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.search-panel input {
  width: 100%;
  padding: 12px 16px;
  border-radius: 14px;
  border: 1px solid rgba(11, 61, 42, 0.15);
  background: #ffffff;
}

.search-results {
  display: grid;
  gap: 18px;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
}

.result-list {
  display: grid;
  gap: 10px;
}

.result-item {
  padding: 10px 12px;
  border-radius: 12px;
  border: 1px solid rgba(11, 61, 42, 0.1);
  background: rgba(255, 255, 255, 0.8);
  display: grid;
  grid-template-columns: 52px 1fr;
  gap: 12px;
  align-items: center;
}

.result-item a {
  color: var(--secondary);
  font-weight: 600;
}

.result-item p {
  font-size: 0.85rem;
  color: var(--muted);
  margin-top: 4px;
}

.result-thumb {
  width: 52px;
  height: 52px;
  border-radius: 10px;
  overflow: hidden;
  background: rgba(30, 215, 96, 0.08);
  border: 1px solid rgba(11, 61, 42, 0.08);
}

.result-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.search-hint {
  font-size: 0.8rem;
  color: var(--muted);
}

/* Quote Form - Modern Design */
.quote-hero {
  background: linear-gradient(135deg, rgba(30, 215, 96, 0.08) 0%, rgba(11, 61, 42, 0.12) 100%);
  padding: 80px 0 60px;
  position: relative;
  overflow: hidden;
}

.quote-hero::before {
  content: "";
  position: absolute;
  top: -50%;
  right: -10%;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(30, 215, 96, 0.15) 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
}

.quote-hero-content {
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
  position: relative;
  z-index: 1;
}

.quote-title {
  font-size: clamp(2rem, 4vw, 3rem);
  margin: 16px 0 20px;
  color: var(--accent);
  font-weight: 700;
  line-height: 1.2;
}

.quote-subtitle {
  font-size: 1.1rem;
  color: var(--muted);
  line-height: 1.6;
  margin-bottom: 32px;
}

.quote-features {
  display: flex;
  justify-content: center;
  gap: 32px;
  flex-wrap: wrap;
  margin-top: 40px;
}

.quote-feature {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 12px 20px;
  background: rgba(255, 255, 255, 0.9);
  border-radius: 12px;
  border: 1px solid rgba(30, 215, 96, 0.2);
  font-weight: 600;
  color: var(--secondary);
  font-size: 0.95rem;
}

.quote-feature-icon {
  font-size: 1.3rem;
}

.quote-form-section {
  padding: 60px 0;
  background: #fafafa;
}

.quote-form {
  max-width: 900px;
  margin: 0 auto;
}

.quote-form-section-header {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-bottom: 24px;
  padding-bottom: 20px;
  border-bottom: 2px solid rgba(30, 215, 96, 0.2);
}

.quote-section-number {
  width: 56px;
  height: 56px;
  border-radius: 12px;
  background: linear-gradient(135deg, var(--primary), var(--secondary));
  color: white;
  display: grid;
  place-items: center;
  font-size: 1.5rem;
  font-weight: 700;
  flex-shrink: 0;
  box-shadow: 0 4px 12px rgba(30, 215, 96, 0.3);
}

.quote-section-title {
  font-size: 1.6rem;
  color: var(--accent);
  margin: 0 0 4px;
  font-weight: 700;
}

.quote-section-desc {
  color: var(--muted);
  font-size: 0.95rem;
  margin: 0;
}

.quote-form-card {
  background: white;
  border-radius: 20px;
  padding: 32px;
  margin-bottom: 40px;
  box-shadow: 0 4px 20px rgba(7, 40, 24, 0.08);
  border: 1px solid rgba(30, 215, 96, 0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.quote-form-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(30, 215, 96, 0.15);
}

.form-grid-modern {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 24px;
  margin-bottom: 24px;
}

.form-field {
  display: flex;
  flex-direction: column;
}

.form-label {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.form-label-text {
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--secondary);
  margin-bottom: 4px;
}

.form-input-wrapper {
  position: relative;
  display: flex;
  align-items: center;
}

.form-icon {
  position: absolute;
  left: 14px;
  font-size: 1.1rem;
  z-index: 1;
  pointer-events: none;
}

.form-input,
.form-select,
.form-textarea {
  width: 100%;
  padding: 14px 14px 14px 44px;
  border-radius: 12px;
  border: 2px solid rgba(11, 61, 42, 0.12);
  background: rgba(255, 255, 255, 0.98);
  color: var(--text);
  font-size: 0.95rem;
  transition: all 0.3s ease;
  font-family: inherit;
}

.form-input:focus,
.form-select:focus,
.form-textarea:focus {
  outline: none;
  border-color: var(--primary);
  box-shadow: 0 0 0 4px rgba(30, 215, 96, 0.12);
  background: white;
}

.form-textarea {
  padding: 14px;
  min-height: 120px;
  resize: vertical;
  font-family: inherit;
}

.form-select {
  cursor: pointer;
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%230b3d2a' d='M6 9L1 4h10z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 14px center;
  padding-right: 40px;
}

.form-field-quantity .form-quantity-wrapper {
  display: flex;
  gap: 12px;
  align-items: stretch;
}

.form-features-section {
  margin: 32px 0;
  padding: 24px;
  background: rgba(30, 215, 96, 0.04);
  border-radius: 16px;
  border: 1px solid rgba(30, 215, 96, 0.15);
}

.checkbox-group-modern {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 12px;
  margin-top: 12px;
}

.checkbox-modern {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 12px 16px;
  background: white;
  border-radius: 10px;
  border: 2px solid rgba(11, 61, 42, 0.1);
  cursor: pointer;
  transition: all 0.2s ease;
  font-size: 0.9rem;
}

.checkbox-modern:hover {
  border-color: var(--primary);
  background: rgba(30, 215, 96, 0.04);
}

.checkbox-modern input[type="checkbox"] {
  width: 18px;
  height: 18px;
  cursor: pointer;
  accent-color: var(--primary);
}

.checkbox-modern input[type="checkbox"]:checked + span {
  font-weight: 600;
  color: var(--secondary);
}

.radio-group-modern {
  display: grid;
  gap: 12px;
  margin-top: 12px;
}

.radio-modern {
  display: block;
  cursor: pointer;
}

.radio-modern input[type="radio"] {
  display: none;
}

.radio-content {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 16px 20px;
  background: white;
  border-radius: 12px;
  border: 2px solid rgba(11, 61, 42, 0.12);
  transition: all 0.3s ease;
}

.radio-modern:hover .radio-content {
  border-color: var(--primary);
  background: rgba(30, 215, 96, 0.04);
}

.radio-modern input[type="radio"]:checked + .radio-content {
  border-color: var(--primary);
  background: rgba(30, 215, 96, 0.1);
  box-shadow: 0 0 0 3px rgba(30, 215, 96, 0.1);
}

.radio-icon {
  font-size: 1.3rem;
}

.radio-text {
  font-weight: 600;
  color: var(--secondary);
}

.form-file-wrapper {
  position: relative;
  display: flex;
  align-items: center;
  padding: 14px 14px 14px 44px;
  border-radius: 12px;
  border: 2px dashed rgba(11, 61, 42, 0.2);
  background: rgba(255, 255, 255, 0.5);
  cursor: pointer;
  transition: all 0.3s ease;
}

.form-file-wrapper:hover {
  border-color: var(--primary);
  background: rgba(30, 215, 96, 0.04);
}

.form-file {
  position: absolute;
  inset: 0;
  opacity: 0;
  cursor: pointer;
  width: 100%;
  height: 100%;
}

.form-file-label {
  color: var(--muted);
  font-size: 0.9rem;
}

.form-hint {
  display: block;
  margin-top: 6px;
  font-size: 0.8rem;
  color: var(--muted);
}

.form-kvkk {
  margin-top: 24px;
  padding-top: 24px;
  border-top: 1px solid rgba(11, 61, 42, 0.1);
}

.kvkk-checkbox {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 0.9rem;
  line-height: 1.5;
}

.kvkk-checkbox a {
  color: var(--primary);
  text-decoration: underline;
}

.quote-form-submit {
  text-align: center;
  margin-top: 40px;
}

.btn-submit-quote {
  padding: 16px 48px;
  font-size: 1.1rem;
  font-weight: 700;
  min-width: 240px;
  position: relative;
}

.btn-submit-quote:disabled {
  opacity: 0.7;
  cursor: not-allowed;
}

.btn-loader {
  display: inline-block;
  animation: spin 1s linear infinite;
}

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

.form-submit-hint {
  margin-top: 16px;
  font-size: 0.9rem;
  color: var(--muted);
}

/* Responsive - Quote Form */
@media (max-width: 768px) and (min-width: 481px) {
  .quote-hero {
    padding: 60px 0 40px;
  }
  
  .quote-features {
    gap: 16px;
  }
  
  .quote-feature {
    padding: 10px 16px;
    font-size: 0.85rem;
  }
  
  .quote-form-section-header {
    flex-direction: column;
    align-items: flex-start;
    gap: 16px;
  }
  
  .quote-section-number {
    width: 48px;
    height: 48px;
    font-size: 1.3rem;
  }
  
  .quote-section-title {
    font-size: 1.3rem;
  }
  
  .quote-form-card {
    padding: 24px 20px;
  }
  
  .form-grid-modern {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  
  .checkbox-group-modern {
    grid-template-columns: 1fr;
  }
  
  .form-field-quantity .form-quantity-wrapper {
    flex-direction: column;
  }
  
  .form-field-quantity .form-quantity-wrapper select {
    width: 100%;
  }
  
  .btn-submit-quote {
    width: 100%;
    min-width: auto;
  }
  
  .modal-panel {
    padding: 32px 24px;
  }
  
  .modal-panel h3 {
    font-size: 1.5rem;
  }
}

/* About Page - Professional Design */
.about-hero {
  background: linear-gradient(135deg, rgba(30, 215, 96, 0.12) 0%, rgba(11, 61, 42, 0.15) 100%);
  padding: 100px 0 80px;
  position: relative;
  overflow: hidden;
}

.about-hero::before {
  content: "";
  position: absolute;
  top: -30%;
  right: -10%;
  width: 800px;
  height: 800px;
  background: radial-gradient(circle, rgba(30, 215, 96, 0.2) 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
}

.about-hero::after {
  content: "";
  position: absolute;
  bottom: -20%;
  left: -5%;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(30, 215, 96, 0.15) 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
}

.about-hero-content {
  max-width: 900px;
  margin: 0 auto;
  text-align: center;
  position: relative;
  z-index: 1;
}

.about-hero-title {
  font-size: clamp(2.5rem, 5vw, 4rem);
  margin: 20px 0 24px;
  color: var(--accent);
  font-weight: 800;
  line-height: 1.2;
  letter-spacing: -0.02em;
}

.about-hero-subtitle {
  font-size: 1.2rem;
  color: var(--muted);
  line-height: 1.7;
  margin-bottom: 48px;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

.about-hero-stats {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 32px;
  margin-top: 60px;
}

.stat-item {
  padding: 24px;
  background: rgba(255, 255, 255, 0.95);
  border-radius: 16px;
  border: 1px solid rgba(30, 215, 96, 0.2);
  box-shadow: 0 8px 24px rgba(7, 40, 24, 0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.stat-item:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 32px rgba(30, 215, 96, 0.2);
}

.stat-number {
  font-size: 2.5rem;
  font-weight: 800;
  color: var(--primary);
  margin-bottom: 8px;
  line-height: 1;
}

.stat-label {
  font-size: 0.9rem;
  color: var(--muted);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.about-intro {
  padding: 80px 0;
  background: white;
}

.about-intro-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 60px;
  align-items: center;
}

.about-intro-text h2 {
  font-size: 2.2rem;
  margin: 16px 0 24px;
  color: var(--accent);
  font-weight: 700;
  line-height: 1.3;
}

.about-intro-text p {
  font-size: 1.05rem;
  line-height: 1.8;
  color: var(--text);
  margin-bottom: 20px;
}

.about-intro-visual {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}

.about-visual-card {
  padding: 32px 24px;
  background: linear-gradient(135deg, rgba(30, 215, 96, 0.08), rgba(30, 215, 96, 0.04));
  border-radius: 20px;
  border: 1px solid rgba(30, 215, 96, 0.15);
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.about-visual-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 32px rgba(30, 215, 96, 0.2);
}

.about-visual-icon {
  font-size: 3rem;
  margin-bottom: 16px;
}

.about-visual-card h3 {
  font-size: 1.1rem;
  color: var(--secondary);
  margin: 0 0 8px;
  font-weight: 700;
}

.about-visual-card p {
  font-size: 0.9rem;
  color: var(--muted);
  margin: 0;
}

.about-values {
  padding: 80px 0;
  background: #fafafa;
}

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

.values-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 32px;
}

.value-card {
  padding: 40px 32px;
  background: white;
  border-radius: 24px;
  border: 1px solid rgba(11, 61, 42, 0.1);
  box-shadow: 0 4px 20px rgba(7, 40, 24, 0.08);
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.value-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 40px rgba(30, 215, 96, 0.2);
  border-color: rgba(30, 215, 96, 0.3);
}

.value-icon-wrapper {
  margin-bottom: 24px;
}

.value-icon {
  width: 80px;
  height: 80px;
  margin: 0 auto;
  display: grid;
  place-items: center;
  font-size: 2.5rem;
  background: linear-gradient(135deg, rgba(30, 215, 96, 0.15), rgba(30, 215, 96, 0.08));
  border-radius: 20px;
  border: 2px solid rgba(30, 215, 96, 0.2);
}

.value-card h3 {
  font-size: 1.4rem;
  color: var(--accent);
  margin: 0 0 16px;
  font-weight: 700;
}

.value-card p {
  font-size: 1rem;
  line-height: 1.7;
  color: var(--text);
  margin: 0;
}

.about-manifesto {
  padding: 80px 0;
  background: linear-gradient(135deg, rgba(30, 215, 96, 0.1), rgba(11, 61, 42, 0.08));
}

.manifesto-card {
  max-width: 900px;
  margin: 0 auto;
  padding: 60px 50px;
  background: white;
  border-radius: 28px;
  box-shadow: 0 20px 60px rgba(7, 40, 24, 0.15);
  border: 1px solid rgba(30, 215, 96, 0.2);
}

.manifesto-label {
  display: inline-block;
  padding: 8px 16px;
  background: rgba(30, 215, 96, 0.12);
  border-radius: 8px;
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--secondary);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 24px;
}

.manifesto-title {
  font-size: clamp(2rem, 4vw, 3rem);
  color: var(--accent);
  margin: 0 0 24px;
  font-weight: 800;
  line-height: 1.2;
}

.manifesto-text {
  font-size: 1.1rem;
  line-height: 1.8;
  color: var(--text);
  margin-bottom: 32px;
}

.manifesto-features {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
}

.manifesto-feature {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 12px 20px;
  background: rgba(30, 215, 96, 0.08);
  border-radius: 12px;
  font-weight: 600;
  color: var(--secondary);
}

.manifesto-feature-icon {
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: var(--primary);
  color: white;
  display: grid;
  place-items: center;
  font-size: 0.9rem;
  font-weight: 700;
}

.about-mission {
  padding: 80px 0;
  background: white;
}

.mission-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
  gap: 40px;
}

.mission-card {
  padding: 48px 40px;
  background: linear-gradient(135deg, rgba(30, 215, 96, 0.06), rgba(30, 215, 96, 0.02));
  border-radius: 24px;
  border: 1px solid rgba(30, 215, 96, 0.15);
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.mission-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 16px 48px rgba(30, 215, 96, 0.2);
}

.mission-icon {
  font-size: 4rem;
  margin-bottom: 24px;
}

.mission-card h3 {
  font-size: 1.8rem;
  color: var(--accent);
  margin: 0 0 20px;
  font-weight: 700;
}

.mission-card p {
  font-size: 1.05rem;
  line-height: 1.8;
  color: var(--text);
  margin: 0;
}

.about-approach {
  padding: 80px 0;
  background: #fafafa;
}

.approach-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 32px;
}

.approach-item {
  padding: 36px 28px;
  background: white;
  border-radius: 20px;
  border: 1px solid rgba(11, 61, 42, 0.1);
  box-shadow: 0 4px 20px rgba(7, 40, 24, 0.08);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  position: relative;
}

.approach-item:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 36px rgba(30, 215, 96, 0.2);
}

.approach-number {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  background: linear-gradient(135deg, var(--primary), var(--secondary));
  color: white;
  display: grid;
  place-items: center;
  font-size: 1.3rem;
  font-weight: 700;
  margin-bottom: 20px;
}

.approach-item h3 {
  font-size: 1.3rem;
  color: var(--accent);
  margin: 0 0 12px;
  font-weight: 700;
}

.approach-item p {
  font-size: 0.95rem;
  line-height: 1.7;
  color: var(--text);
  margin: 0;
}

.about-cta {
  padding: 80px 0;
  background: linear-gradient(135deg, rgba(30, 215, 96, 0.1), rgba(11, 61, 42, 0.08));
}

.about-cta .cta-band {
  text-align: center;
  max-width: 700px;
  margin: 0 auto;
}

.about-cta .cta-band h2 {
  font-size: 2.2rem;
  color: var(--accent);
  margin: 0 0 16px;
  font-weight: 700;
}

.about-cta .cta-band p {
  font-size: 1.1rem;
  color: var(--muted);
  margin-bottom: 32px;
}

/* Responsive - About Page */
@media (max-width: 968px) {
  .about-intro-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  
  .about-intro-visual {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .mission-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) and (min-width: 481px) {
  .about-hero {
    padding: 60px 0 50px;
  }
  
  .about-hero-stats {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }
  
  .stat-number {
    font-size: 2rem;
  }
  
  .about-intro {
    padding: 60px 0;
  }
  
  .about-intro-text h2 {
    font-size: 1.8rem;
  }
  
  .about-visual-card {
    padding: 24px 16px;
  }
  
  .about-visual-icon {
    font-size: 2rem;
  }
  
  .values-grid,
  .approach-grid {
    grid-template-columns: 1fr;
  }
  
  .manifesto-card {
    padding: 40px 28px;
  }
  
  .manifesto-title {
    font-size: 1.8rem;
  }
  
  .manifesto-features {
    flex-direction: column;
  }
  
  .mission-card {
    padding: 36px 28px;
  }
  
  .mission-icon {
    font-size: 3rem;
  }
}

.form-grid {
  display: grid;
  gap: 20px;
}

.form-row {
  display: grid;
  gap: 12px;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
}

.form-card {
  padding: 24px;
  border-radius: 18px;
}

.form-card h3 {
  font-size: 1.1rem;
  margin-bottom: 12px;
  color: var(--accent);
}

.form-card .form-row {
  gap: 16px;
}

form input,
form textarea,
form select {
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

form input:focus,
form textarea:focus,
form select:focus {
  border-color: rgba(30, 215, 96, 0.5);
  box-shadow: 0 0 0 3px rgba(30, 215, 96, 0.12);
  outline: none;
}

.modal {
  position: fixed;
  inset: 0;
  background: rgba(4, 20, 12, 0.75);
  backdrop-filter: blur(4px);
  display: none;
  place-items: center;
  z-index: 300;
  padding: 24px;
  animation: fadeIn 0.3s ease;
}

@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

.modal.is-open {
  display: grid;
}

.modal-panel {
  width: min(540px, 94vw);
  background: white;
  border-radius: 24px;
  padding: 40px 32px;
  text-align: center;
  border: 1px solid rgba(30, 215, 96, 0.2);
  box-shadow: 0 24px 80px rgba(7, 40, 24, 0.25);
  position: relative;
  animation: slideUp 0.4s ease;
}

@keyframes slideUp {
  from {
    opacity: 0;
    transform: translateY(30px) scale(0.95);
  }
  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

.modal-icon {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  background: linear-gradient(135deg, rgba(30, 215, 96, 0.2), rgba(30, 215, 96, 0.1));
  color: var(--secondary);
  display: grid;
  place-items: center;
  margin: 0 auto 20px;
  font-size: 36px;
  font-weight: 700;
  border: 3px solid rgba(30, 215, 96, 0.3);
  animation: scaleIn 0.5s ease 0.2s both;
}

@keyframes scaleIn {
  from {
    transform: scale(0);
  }
  to {
    transform: scale(1);
  }
}

.modal-panel h3 {
  font-size: 1.8rem;
  color: var(--accent);
  margin: 0 0 12px;
  font-weight: 700;
}

.modal-panel p {
  font-size: 1rem;
  color: var(--muted);
  line-height: 1.6;
  margin: 0 0 28px;
}

.modal-actions {
  margin-top: 24px;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 12px;
}

.modal-close {
  position: absolute;
  top: 16px;
  right: 16px;
  width: 36px;
  height: 36px;
  border: none;
  background: rgba(11, 61, 42, 0.08);
  border-radius: 8px;
  font-size: 22px;
  color: var(--muted);
  cursor: pointer;
  display: grid;
  place-items: center;
  transition: all 0.2s ease;
}

.modal-close:hover {
  background: rgba(11, 61, 42, 0.15);
  color: var(--secondary);
  transform: rotate(90deg);
}

.input-with-icon {
  position: relative;
}

.input-with-icon span {
  position: absolute;
  left: 12px;
  top: 50%;
  transform: translateY(-50%);
  color: rgba(11, 61, 42, 0.6);
}

.input-with-icon input,
.input-with-icon select {
  padding-left: 40px;
}

.checkbox-group,
.radio-group {
  display: grid;
  gap: 8px;
}

.soft-success {
  display: grid;
  place-items: center;
  text-align: center;
  padding: 24px;
  border-radius: 18px;
  background: rgba(30, 215, 96, 0.12);
  border: 1px solid rgba(30, 215, 96, 0.2);
  color: var(--secondary);
}

.soft-success .check {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: rgba(30, 215, 96, 0.2);
  display: grid;
  place-items: center;
  margin-bottom: 12px;
}

.contact-cards {
  display: grid;
  gap: 16px;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
}

.contact-card a {
  color: var(--secondary);
  font-weight: 600;
}
.whatsapp-fab svg {
  width: 26px;
  height: 26px;
  fill: #ffffff;
}

.whatsapp-fab:hover {
  transform: scale(1.08);
  box-shadow: 0 0 30px rgba(37, 211, 102, 0.6);
}

.map-embed {
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 9;
  border-radius: 18px;
  overflow: hidden;
  box-shadow: var(--shadow);
}

.map-full {
  width: 100vw;
  margin-left: calc(50% - 50vw);
  padding: 0 16px;
}

.map-embed iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
}

.skeleton {
  position: relative;
  overflow: hidden;
  background: rgba(10, 30, 22, 0.6);
}

.skeleton::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(120deg, transparent, rgba(166, 255, 77, 0.2), transparent);
  animation: shimmer 1.6s infinite;
}

.reveal {
  opacity: 0;
  transform: translateY(20px) scale(0.98) translateZ(0);
  filter: blur(4px);
  transition: opacity 0.3s ease, transform 0.3s ease, filter 0.3s ease;
  will-change: opacity, transform;
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0) scale(1) translateZ(0);
  filter: blur(0);
  will-change: auto;
}

.page-transition {
  opacity: 0;
  transition: opacity 0.4s ease;
}

.page-transition.is-loaded {
  opacity: 1;
}

@keyframes heroGlow {
  from { transform: translateY(-2%) scale(1); }
  to { transform: translateY(2%) scale(1.05); }
}

@keyframes greenFlow {
  0% {
    transform: translate3d(0, 0, 0) scale(1);
    filter: hue-rotate(0deg) saturate(1.1);
  }
  50% {
    transform: translate3d(-2%, -1%, 0) scale(1.04);
    filter: hue-rotate(8deg) saturate(1.2);
  }
  100% {
    transform: translate3d(2%, 1%, 0) scale(1.06);
    filter: hue-rotate(-6deg) saturate(1.05);
  }
}

@keyframes heroText {
  to {
    opacity: 1;
    transform: translate3d(0, 0, 0);
  }
}

@keyframes fabPulse {
  0% {
    box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.4);
  }
  70% {
    box-shadow: 0 0 0 12px rgba(37, 211, 102, 0);
  }
  100% {
    box-shadow: 0 0 0 0 rgba(37, 211, 102, 0);
  }
}

@keyframes ripple {
  to {
    transform: scale(2.6);
    opacity: 0;
  }
}

@keyframes cardSlide {
  0% { opacity: 0; }
  8% { opacity: 1; }
  25% { opacity: 1; }
  33% { opacity: 0; }
  100% { opacity: 0; }
}

@keyframes fabPulse {
  0% { box-shadow: 0 0 0 rgba(37, 211, 102, 0.4); }
  70% { box-shadow: 0 0 18px rgba(37, 211, 102, 0.2); }
  100% { box-shadow: 0 0 0 rgba(37, 211, 102, 0.4); }
}

@keyframes shimmer {
  0% { transform: translateX(-100%); }
  100% { transform: translateX(100%); }
}

@media (max-width: 900px) and (min-width: 481px) {
  .navbar {
    flex-direction: row;
    flex-wrap: wrap;
  }

  .nav-links {
    flex-wrap: wrap;
    justify-content: center;
  }

  .hero h1 {
    letter-spacing: 0.12em;
  }
}

@media (max-width: 680px) and (min-width: 481px) {
  .hero {
    padding-top: 120px;
  }

  .hero-actions {
    flex-direction: row;
    flex-wrap: wrap;
  }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.001ms !important;
    scroll-behavior: auto !important;
  }
}

/* Mobile-First Responsive Improvements - Enhanced */
@media (max-width: 480px) {
  * {
    box-sizing: border-box;
  }
  
  html, body {
    margin: 0 !important;
    padding: 0 !important;
    width: 100% !important;
    max-width: 100% !important;
    overflow-x: hidden !important;
    -webkit-text-size-adjust: 100% !important;
  }
  
  .container:not(.navbar) {
    width: 100% !important;
    padding: 0 8px !important;
    margin: 0 !important;
    max-width: 100% !important;
    box-sizing: border-box !important;
  }
  
  .section .container {
    padding: 0 8px !important;
  }
  
  body {
    font-size: 14px;
  }
  
  h1, .section-title {
    font-size: 1.5rem !important;
    line-height: 1.3 !important;
  }
  
  h2 {
    font-size: 1.3rem !important;
  }
  
  h3 {
    font-size: 1.1rem !important;
  }
  
  h4 {
    font-size: 1rem !important;
  }
  
  p, span, a, li {
    font-size: 0.9rem !important;
  }
  
  .btn {
    min-height: 40px;
    padding: 10px 20px;
    font-size: 0.85rem;
  }
  
  .icon-button {
    min-width: 40px;
    min-height: 40px;
    width: 40px;
    height: 40px;
  }
  
  .header-cta {
    padding: 8px 16px;
    font-size: 0.85rem;
  }
  
  input, textarea, select {
    font-size: 16px !important; /* Prevents zoom on iOS */
    min-height: 44px;
  }
  
  .header {
    padding: 0 !important;
  }
  
  .header {
    padding: 0 !important;
  }
  
  .header .container.navbar {
    width: 100% !important;
    padding: 6px 4px !important;
    margin: 0 !important;
    max-width: 100% !important;
    box-sizing: border-box !important;
  }
  
  .navbar {
    display: flex !important;
    flex-direction: row !important;
    flex-wrap: nowrap !important;
    gap: 4px !important;
    padding: 0 !important;
    overflow-x: auto !important;
    -webkit-overflow-scrolling: touch !important;
    scrollbar-width: none !important;
    width: 100% !important;
    align-items: center !important;
    justify-content: flex-start !important;
    box-sizing: border-box !important;
  }
  
  .navbar::-webkit-scrollbar {
    display: none !important;
    width: 0 !important;
    height: 0 !important;
  }
  
  .brand {
    font-size: 0.8rem !important;
    white-space: nowrap !important;
    flex-shrink: 0 !important;
    padding: 0 4px !important;
    margin: 0 !important;
  }
  
  .header nav {
    flex: 1 1 auto !important;
    min-width: 0 !important;
    overflow-x: auto !important;
    -webkit-overflow-scrolling: touch !important;
    scrollbar-width: none !important;
  }
  
  .header nav::-webkit-scrollbar {
    display: none !important;
  }
  
  .nav-links {
    flex-direction: row !important;
    width: auto !important;
    gap: 1px !important;
    flex-wrap: nowrap !important;
    overflow-x: auto !important;
    -webkit-overflow-scrolling: touch !important;
    margin: 0 !important;
    padding: 0 !important;
    list-style: none !important;
    display: flex !important;
    align-items: center !important;
    scrollbar-width: none !important;
  }
  
  .nav-links::-webkit-scrollbar {
    display: none !important;
  }
  
  .nav-links > li {
    width: auto !important;
    border-bottom: none !important;
    flex-shrink: 0 !important;
    margin: 0 !important;
    display: block !important;
  }
  
  .nav-links > li > a {
    display: block !important;
    padding: 4px 5px !important;
    min-height: auto !important;
    font-size: 0.65rem !important;
    white-space: nowrap !important;
    line-height: 1.2 !important;
  }
  
  .dropdown {
    position: absolute;
    top: 100%;
    left: 0;
    min-width: 160px;
    max-height: 70vh;
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
    padding: 8px;
  }
  
  .dropdown a {
    padding: 6px 8px;
    min-height: auto;
    font-size: 0.7rem;
  }
  
  .nav-actions {
    gap: 4px;
    flex-shrink: 0;
    margin-left: auto;
  }
  
  .header-cta {
    padding: 5px 10px;
    font-size: 0.7rem;
    white-space: nowrap;
  }
  
  .icon-button {
    width: 32px;
    height: 32px;
    flex-shrink: 0;
    padding: 0;
  }
  
  .icon-button img,
  .icon-button svg {
    width: 16px;
    height: 16px;
  }
  
  .topbar {
    padding: 6px 12px;
    font-size: 0.75rem;
  }
  
  .topbar .topbar-inner {
    gap: 8px;
  }
  
  .hero {
    min-height: 70vh !important;
    padding: 80px 12px 50px !important;
  }
  
  .hero-content {
    padding: 0 12px !important;
  }
  
  .hero h1 {
    font-size: 1.4rem !important;
    line-height: 1.2 !important;
  }
  
  .hero-title-line {
    font-size: 1.4rem !important;
    display: block !important;
    margin-bottom: 8px !important;
  }
  
  .hero-slogan {
    font-size: 0.8rem !important;
    margin-bottom: 20px !important;
  }
  
  .hero-actions {
    gap: 8px !important;
    flex-wrap: wrap !important;
    flex-direction: row !important;
    margin-top: 20px !important;
  }
  
  .hero-actions .btn {
    font-size: 0.75rem !important;
    padding: 8px 14px !important;
    min-width: auto !important;
    flex: 1;
    min-width: 120px;
  }
  
  .section {
    padding: 30px 0 !important;
  }
  
  .section .container {
    padding: 0 12px !important;
  }
  
  .card {
    padding: 14px !important;
    margin: 0 !important;
    border-radius: 12px !important;
  }
  
  .section-kicker {
    font-size: 0.7rem !important;
    margin-bottom: 6px !important;
  }
  
  .section-subtitle {
    font-size: 0.8rem !important;
    margin-bottom: 20px !important;
  }
  
  .grid-2, .grid-3, .grid-4 {
    grid-template-columns: 1fr !important;
    gap: 12px !important;
  }
  
  .quote-hero-stats {
    grid-template-columns: repeat(2, 1fr) !important;
    gap: 8px !important;
  }
  
  .stat-item {
    padding: 12px 8px !important;
  }
  
  .stat-number {
    font-size: 1.5rem !important;
  }
  
  .stat-label {
    font-size: 0.7rem !important;
  }
  
  .about-intro-grid {
    grid-template-columns: 1fr !important;
    gap: 20px !important;
  }
  
  .about-intro-visual {
    grid-template-columns: 1fr !important;
    gap: 12px !important;
  }
  
  .values-grid, .approach-grid, .mission-grid {
    grid-template-columns: 1fr !important;
    gap: 12px !important;
  }
  
  .form-grid-modern {
    grid-template-columns: 1fr !important;
    gap: 16px !important;
  }
  
  .checkbox-group-modern {
    grid-template-columns: 1fr !important;
    gap: 8px !important;
  }
  
  .modal-panel {
    width: 100vw !important;
    padding: 20px 16px !important;
    margin: 0 !important;
    border-radius: 16px 16px 0 0 !important;
  }
  
  .quote-form-card {
    padding: 16px 12px !important;
  }
  
  .quote-form-section-header {
    gap: 12px !important;
    padding-bottom: 12px !important;
  }
  
  .quote-section-number {
    width: 40px !important;
    height: 40px !important;
    font-size: 1.1rem !important;
  }
  
  .quote-section-title {
    font-size: 1.1rem !important;
  }
  
  .quote-section-desc {
    font-size: 0.75rem !important;
  }
  
  .whatsapp-fab, .call-fab {
    width: 52px;
    height: 52px;
    bottom: 16px;
  }
  
  .whatsapp-fab {
    right: 16px;
  }
  
  .whatsapp-fab img {
    width: 24px;
    height: 24px;
  }
  
  .call-fab {
    right: 76px;
  }
  
  .call-fab svg {
    width: 22px;
    height: 22px;
  }
  
  table {
    font-size: 0.85rem;
    display: block;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
  }
  
  img {
    height: auto;
    max-width: 100%;
  }
  
  video {
    width: 100%;
    height: auto;
  }
}

/* Touch Device Optimizations */
@media (hover: none) and (pointer: coarse) {
  .btn:hover {
    transform: none;
  }
  
  .card:hover {
    transform: none;
  }
  
  a, button {
    -webkit-tap-highlight-color: rgba(30, 215, 96, 0.3);
  }
  
  input:focus, textarea:focus, select:focus {
    outline: 3px solid rgba(30, 215, 96, 0.3);
    outline-offset: 2px;
  }
}

/* Landscape Mobile */
@media (max-width: 768px) and (orientation: landscape) {
  .hero {
    min-height: 100vh;
    padding: 80px 0 60px;
  }
  
  .section {
    padding: 40px 0;
  }
}

/* High DPI Displays */
@media (-webkit-min-device-pixel-ratio: 2), (min-resolution: 192dpi) {
  img {
    image-rendering: -webkit-optimize-contrast;
    image-rendering: crisp-edges;
  }
}
