/* ============================================
   FASE EV — Premium Theme
   Dark/Light mode with emerald accents
   ============================================ */

/* ---- Theme Variables ---- */
/* DEFAULT: Light mode */
:root {
  --bg-primary: #ffffff;
  --bg-secondary: #f8fafb;
  --bg-card: #ffffff;
  --bg-card-hover: #f3f5f7;
  --accent: #059669;
  --accent-light: #10b981;
  --accent-dark: #047857;
  --accent-glow: rgba(5, 150, 105, 0.08);
  --accent-glow-strong: rgba(5, 150, 105, 0.15);
  --text-primary: #111827;
  --text-secondary: #4b5563;
  --text-muted: #9ca3af;
  --border: rgba(0, 0, 0, 0.08);
  --border-accent: rgba(5, 150, 105, 0.2);
  --shadow-card: 0 2px 16px rgba(0,0,0,0.06);
  --nav-bg: rgba(255, 255, 255, 0.85);
  --input-bg: #f3f5f7;
}

[data-theme="dark"] {
  --bg-primary: #050505;
  --bg-secondary: #0c0c0e;
  --bg-card: #111114;
  --bg-card-hover: #161619;
  --accent: #10b981;
  --accent-light: #34d399;
  --accent-dark: #059669;
  --accent-glow: rgba(16, 185, 129, 0.12);
  --accent-glow-strong: rgba(16, 185, 129, 0.25);
  --text-primary: #f4f4f5;
  --text-secondary: #a1a1aa;
  --text-muted: #71717a;
  --border: rgba(255, 255, 255, 0.06);
  --border-accent: rgba(16, 185, 129, 0.2);
  --shadow-card: 0 4px 24px rgba(0,0,0,0.3);
  --nav-bg: rgba(5, 5, 5, 0.85);
  --input-bg: var(--bg-card);
}

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

html {
  scroll-behavior: smooth;
  scroll-padding-top: 80px;
}

body {
  font-family: 'Inter', sans-serif;
  background: var(--bg-primary);
  color: var(--text-primary);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  transition: background 0.4s, color 0.4s;
}

/* Noise texture — dark only */
body::before {
  content: '';
  position: fixed;
  inset: 0;
  opacity: 0;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
  pointer-events: none;
  z-index: 9999;
}

[data-theme="dark"] body::before { opacity: 0.025; }

/* ---- Typography ---- */
h1, h2, h3, h4, h5, h6 {
  font-family: 'Space Grotesk', sans-serif;
  font-weight: 700;
  line-height: 1.1;
  letter-spacing: -0.02em;
}

a { color: inherit; }

/* ---- Navigation ---- */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 1rem 2rem;
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.nav.scrolled {
  background: var(--nav-bg);
  backdrop-filter: blur(20px) saturate(180%);
  -webkit-backdrop-filter: blur(20px) saturate(180%);
  border-bottom: 1px solid var(--border);
  padding: 0.75rem 2rem;
}

.nav-inner {
  max-width: 1280px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav-logo img {
  height: 40px;
  width: auto;
  transition: opacity 0.3s;
}

.nav-logo:hover img { opacity: 0.8; }

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

.nav-links a {
  color: var(--text-secondary);
  text-decoration: none;
  font-size: 0.875rem;
  font-weight: 500;
  letter-spacing: 0.02em;
  transition: color 0.3s;
  position: relative;
}

.nav-links > li > a::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--accent);
  transition: width 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.nav-links a:hover { color: var(--text-primary); }
.nav-links > li > a:hover::after { width: 100%; }

/* Nav dropdown */
.nav-dropdown {
  position: relative;
}

.nav-dropdown > a {
  display: flex;
  align-items: center;
  gap: 4px;
}

.nav-dropdown > a .chevron {
  width: 14px;
  height: 14px;
  transition: transform 0.3s;
}

.nav-dropdown:hover > a .chevron {
  transform: rotate(180deg);
}

.dropdown-menu {
  position: absolute;
  top: calc(100% + 12px);
  left: 50%;
  transform: translateX(-50%);
  min-width: 220px;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 0.5rem;
  list-style: none;
  opacity: 0;
  visibility: hidden;
  transform: translateX(-50%) translateY(8px);
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  box-shadow: var(--shadow-card);
}

.nav-dropdown:hover .dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateX(-50%) translateY(0);
}

.dropdown-menu li a {
  display: block;
  padding: 0.7rem 1rem;
  border-radius: 10px;
  font-size: 0.875rem;
  transition: all 0.2s;
}

.dropdown-menu li a::after { display: none; }

.dropdown-menu li a:hover {
  background: var(--accent-glow);
  color: var(--accent);
}

/* Nav CTA */
.nav-cta {
  background: var(--accent) !important;
  color: #fff !important;
  padding: 0.5rem 1.25rem;
  border-radius: 8px;
  font-weight: 600 !important;
  transition: all 0.3s !important;
}

/* nav-cta always white text */

.nav-cta:hover {
  background: var(--accent-light) !important;
  transform: translateY(-1px);
  box-shadow: 0 4px 20px var(--accent-glow-strong);
}

.nav-cta::after { display: none !important; }

/* Nav right group */
.nav-right {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

/* Theme toggle */
.theme-toggle {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 10px;
  cursor: pointer;
  color: var(--text-secondary);
  transition: all 0.3s;
}

.theme-toggle:hover {
  color: var(--accent);
  border-color: var(--border-accent);
}

.theme-toggle svg { width: 18px; height: 18px; }

/* Light default: show sun (to switch to dark), hide moon */
.theme-toggle .icon-sun { display: block; }
.theme-toggle .icon-moon { display: none; }
[data-theme="dark"] .theme-toggle .icon-sun { display: none; }
[data-theme="dark"] .theme-toggle .icon-moon { display: block; }

/* Mobile menu toggle */
.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}

.nav-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--text-primary);
  transition: all 0.3s;
  border-radius: 2px;
}

.nav-toggle.active span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.nav-toggle.active span:nth-child(2) { opacity: 0; }
.nav-toggle.active span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

/* ---- Hero ---- */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
  padding: 6rem 2rem 4rem;
}

.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero-bg::before {
  content: '';
  position: absolute;
  width: 800px;
  height: 800px;
  border-radius: 50%;
  background: radial-gradient(circle, var(--accent-glow-strong) 0%, transparent 70%);
  top: -200px;
  right: -200px;
  animation: float 8s ease-in-out infinite;
}

.hero-bg::after {
  content: '';
  position: absolute;
  width: 600px;
  height: 600px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(16, 185, 129, 0.08) 0%, transparent 70%);
  bottom: -100px;
  left: -100px;
  animation: float 10s ease-in-out infinite reverse;
}

.hero-grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(0,0,0,0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(0,0,0,0.03) 1px, transparent 1px);
  background-size: 60px 60px;
  mask-image: radial-gradient(ellipse at center, black 30%, transparent 80%);
  -webkit-mask-image: radial-gradient(ellipse at center, black 30%, transparent 80%);
}

[data-theme="dark"] .hero-grid {
  background-image:
    linear-gradient(rgba(255,255,255,0.02) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.02) 1px, transparent 1px);
}

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

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.5rem 1rem;
  border-radius: 100px;
  border: 1px solid var(--border-accent);
  background: var(--accent-glow);
  color: var(--accent);
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 2rem;
}

.hero-badge svg { width: 14px; height: 14px; }

.hero h1 {
  font-size: clamp(2.8rem, 7vw, 5.5rem);
  margin-bottom: 1.5rem;
  background: linear-gradient(135deg, var(--text-primary) 0%, var(--text-secondary) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

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

.hero-subtitle {
  font-size: clamp(1rem, 2vw, 1.25rem);
  color: var(--text-secondary);
  line-height: 1.7;
  max-width: 640px;
  margin: 0 auto 2.5rem;
}

.hero-actions {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}

.hero-quote {
  margin-top: 4rem;
  padding-top: 2rem;
  border-top: 1px solid var(--border);
  font-style: italic;
  color: var(--text-muted);
  font-size: 0.9rem;
}

.hero-quote span {
  color: var(--accent);
  font-style: normal;
  font-weight: 600;
}

/* ---- Buttons ---- */
.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.875rem 2rem;
  background: var(--accent);
  color: #fff;
  border: none;
  border-radius: 12px;
  font-size: 0.95rem;
  font-weight: 600;
  font-family: 'Inter', sans-serif;
  cursor: pointer;
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  text-decoration: none;
}

.btn-primary:hover {
  background: var(--accent-light);
  transform: translateY(-2px);
  box-shadow: 0 8px 30px var(--accent-glow-strong);
  color: #fff;
}

.btn-secondary {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.875rem 2rem;
  background: transparent;
  color: var(--text-primary);
  border: 1px solid var(--border);
  border-radius: 12px;
  font-size: 0.95rem;
  font-weight: 500;
  font-family: 'Inter', sans-serif;
  cursor: pointer;
  transition: all 0.3s;
  text-decoration: none;
}

.btn-secondary:hover {
  border-color: var(--border-accent);
  background: var(--accent-glow);
}

/* ---- Sections ---- */
section {
  padding: 7rem 2rem;
  position: relative;
}

.section-inner {
  max-width: 1200px;
  margin: 0 auto;
}

.section-label {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--accent);
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 1rem;
}

.section-label::before {
  content: '';
  width: 24px;
  height: 2px;
  background: var(--accent);
  border-radius: 2px;
}

.section-title {
  font-size: clamp(2rem, 4vw, 3rem);
  margin-bottom: 1.25rem;
}

.section-desc {
  font-size: 1.1rem;
  color: var(--text-secondary);
  line-height: 1.7;
  max-width: 640px;
}

.section-divider {
  max-width: 1200px;
  margin: 0 auto;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--border), transparent);
}

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

.section-center .section-label { justify-content: center; }
.section-center .section-desc { margin: 0 auto; }

/* ---- Page Header (inner pages) ---- */
.page-header {
  padding: 10rem 2rem 4rem;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.page-header::before {
  content: '';
  position: absolute;
  width: 600px;
  height: 600px;
  border-radius: 50%;
  background: radial-gradient(circle, var(--accent-glow-strong) 0%, transparent 70%);
  top: -300px;
  left: 50%;
  transform: translateX(-50%);
  animation: float 8s ease-in-out infinite;
}

.page-header .section-inner {
  position: relative;
  z-index: 1;
}

.page-header h1 {
  font-size: clamp(2.5rem, 5vw, 4rem);
  margin-bottom: 1rem;
}

.page-header .page-subtitle {
  font-size: 1.15rem;
  color: var(--text-secondary);
  line-height: 1.7;
  max-width: 600px;
  margin: 0 auto;
}

.page-breadcrumb {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  margin-bottom: 1.5rem;
  font-size: 0.8rem;
  color: var(--text-muted);
}

.page-breadcrumb a {
  color: var(--text-muted);
  text-decoration: none;
  transition: color 0.3s;
}

.page-breadcrumb a:hover { color: var(--accent); }
.page-breadcrumb .sep { opacity: 0.4; }

/* ---- About (Chi Siamo) ---- */
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
  margin-top: 3rem;
}

.about-visual {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  aspect-ratio: 4/5;
  max-height: 560px;
}

.about-visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.about-visual::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 50%, rgba(0,0,0,0.15) 100%);
}

[data-theme="dark"] .about-visual::after {
  background: linear-gradient(180deg, transparent 50%, rgba(5,5,5,0.6) 100%);
}

.about-visual .overlay-badge {
  position: absolute;
  bottom: 1.5rem;
  left: 1.5rem;
  z-index: 2;
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.75rem 1.25rem;
  background: rgba(255,255,255,0.85);
  backdrop-filter: blur(12px);
  border-radius: 12px;
  border: 1px solid var(--border);
}

[data-theme="dark"] .about-visual .overlay-badge {
  background: rgba(5,5,5,0.7);
}

.overlay-badge .badge-number {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 2rem;
  font-weight: 700;
  color: var(--accent);
  line-height: 1;
}

.overlay-badge .badge-text {
  font-size: 0.75rem;
  color: var(--text-secondary);
  line-height: 1.3;
}

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

.about-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-top: 2.5rem;
}

.stat-item {
  text-align: center;
  padding: 1.25rem;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 16px;
  transition: all 0.3s;
  box-shadow: var(--shadow-card);
}

.stat-item:hover {
  border-color: var(--border-accent);
  background: var(--bg-card-hover);
}

.stat-number {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 1.75rem;
  font-weight: 700;
  color: var(--accent);
  display: block;
}

.stat-label {
  font-size: 0.8rem;
  color: var(--text-muted);
  margin-top: 0.25rem;
}

/* ---- Content blocks (inner pages) ---- */
.content-section {
  padding: 5rem 2rem;
}

.content-section.alt-bg {
  background: var(--bg-secondary);
}

.content-block {
  max-width: 800px;
  margin: 0 auto;
}

.content-block h2 {
  font-size: clamp(1.5rem, 3vw, 2rem);
  margin-bottom: 1.5rem;
}

.content-block h3 {
  font-size: 1.35rem;
  margin: 2rem 0 1rem;
  color: var(--accent);
}

.content-block p {
  color: var(--text-secondary);
  line-height: 1.8;
  margin-bottom: 1.25rem;
  font-size: 1.05rem;
}

.content-block ul {
  list-style: none;
  margin: 1.5rem 0;
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}

.content-block ul li {
  display: flex;
  align-items: baseline;
  gap: 0.75rem;
  color: var(--text-secondary);
  line-height: 1.6;
  font-size: 1rem;
}

.content-block ul li::before {
  content: '';
  width: 8px;
  height: 8px;
  background: var(--accent);
  border-radius: 50%;
  flex-shrink: 0;
  margin-top: 0.5rem;
}

.content-two-cols {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: start;
  max-width: 1200px;
  margin: 0 auto;
}

.content-two-cols .content-col p {
  color: var(--text-secondary);
  line-height: 1.8;
  margin-bottom: 1.25rem;
  font-size: 1.05rem;
}

/* Gallery row */
.gallery-row {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.5rem;
  margin: 3rem auto;
  max-width: 1200px;
}

.gallery-item {
  border-radius: 16px;
  overflow: hidden;
  aspect-ratio: 4/3;
  position: relative;
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s;
}

.gallery-item:hover img {
  transform: scale(1.05);
}

.gallery-item .gallery-caption {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 1rem;
  background: linear-gradient(transparent, rgba(0,0,0,0.7));
  color: #fff;
  font-size: 0.85rem;
  font-weight: 500;
}

/* ---- Services ---- */
.services-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
  margin-top: 3rem;
}

.service-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 20px;
  padding: 2.5rem;
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  position: relative;
  overflow: hidden;
  box-shadow: var(--shadow-card);
  text-decoration: none;
  display: block;
}

.service-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--accent), transparent);
  opacity: 0;
  transition: opacity 0.4s;
}

.service-card:hover {
  border-color: var(--border-accent);
  background: var(--bg-card-hover);
  transform: translateY(-4px);
}

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

.service-icon {
  width: 56px;
  height: 56px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 14px;
  background: var(--accent-glow);
  border: 1px solid var(--border-accent);
  margin-bottom: 1.5rem;
  color: var(--accent);
}

.service-icon svg { width: 26px; height: 26px; }

.service-card h3 {
  font-size: 1.35rem;
  margin-bottom: 1rem;
}

.service-card p {
  color: var(--text-secondary);
  line-height: 1.7;
  font-size: 0.95rem;
  margin-bottom: 1.5rem;
}

.service-features {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}

.service-features li {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  font-size: 0.875rem;
  color: var(--text-secondary);
}

.service-features li svg {
  width: 16px;
  height: 16px;
  color: var(--accent);
  flex-shrink: 0;
}

.service-link {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  color: var(--accent);
  font-size: 0.875rem;
  font-weight: 600;
  text-decoration: none;
  margin-top: 1.5rem;
  transition: gap 0.3s;
}

.service-link:hover { gap: 0.8rem; }

/* Features row */
.features-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-top: 3rem;
}

.feature-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 2rem;
  text-align: center;
  transition: all 0.3s;
  box-shadow: var(--shadow-card);
}

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

.feature-icon {
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 12px;
  background: var(--accent-glow);
  color: var(--accent);
  margin: 0 auto 1.25rem;
}

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

.feature-card h4 {
  font-size: 1.1rem;
  margin-bottom: 0.75rem;
}

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

/* ---- Green Energy ---- */
.green-energy { background: var(--bg-secondary); }

.green-energy-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
  margin-top: 3rem;
}

.green-steps {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.green-step {
  display: flex;
  gap: 1.25rem;
  padding: 1.5rem;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 16px;
  transition: all 0.3s;
  box-shadow: var(--shadow-card);
}

.green-step:hover { border-color: var(--border-accent); }

.step-number {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 10px;
  background: var(--accent-glow);
  color: var(--accent);
  font-family: 'Space Grotesk', sans-serif;
  font-weight: 700;
  font-size: 1rem;
  flex-shrink: 0;
}

.green-step h4 { font-size: 1rem; margin-bottom: 0.4rem; }
.green-step p { font-size: 0.875rem; color: var(--text-secondary); line-height: 1.6; }

.green-visual {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}

.green-visual-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 24px;
  padding: 3rem;
  text-align: center;
  position: relative;
  overflow: hidden;
  width: 100%;
  box-shadow: var(--shadow-card);
}

.green-visual-card::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: conic-gradient(from 0deg, transparent, var(--accent-glow), transparent, var(--accent-glow), transparent);
  animation: rotate 12s linear infinite;
  opacity: 0.3;
}

.green-visual-inner { position: relative; z-index: 1; }

.green-big-number {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 5rem;
  font-weight: 700;
  color: var(--accent);
  line-height: 1;
}

.green-big-label {
  font-size: 1.1rem;
  color: var(--text-secondary);
  margin-top: 0.5rem;
}

.green-sources {
  display: flex;
  justify-content: center;
  gap: 2rem;
  margin-top: 2rem;
  flex-wrap: wrap;
}

.green-source {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--text-muted);
  font-size: 0.85rem;
}

.green-source svg { width: 18px; height: 18px; color: var(--accent); }

/* ---- ZapGrid ---- */
.zapgrid-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
  margin-top: 3rem;
}

.zapgrid-features {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.zapgrid-feature {
  display: flex;
  gap: 1rem;
  align-items: start;
}

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

.zapgrid-feature-icon svg { width: 20px; height: 20px; }
.zapgrid-feature h4 { font-size: 0.95rem; margin-bottom: 0.25rem; }
.zapgrid-feature p { font-size: 0.85rem; color: var(--text-secondary); line-height: 1.5; }

.app-badges {
  display: flex;
  gap: 1rem;
  margin-top: 2rem;
}

.app-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.65rem 1.25rem;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 10px;
  color: var(--text-primary);
  text-decoration: none;
  font-size: 0.8rem;
  font-weight: 500;
  transition: all 0.3s;
  box-shadow: var(--shadow-card);
}

.app-badge:hover {
  border-color: var(--border-accent);
  background: var(--bg-card-hover);
}

.app-badge svg { width: 18px; height: 18px; }

/* Phone mockup */
.zapgrid-phone { display: flex; justify-content: center; }

.phone-mockup {
  width: 280px;
  height: 560px;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 36px;
  padding: 12px;
  position: relative;
  box-shadow: 0 40px 80px rgba(0,0,0,0.4);
}

[data-theme="dark"] .phone-mockup {
  box-shadow: 0 40px 80px rgba(0,0,0,0.12);
}

.phone-screen {
  width: 100%;
  height: 100%;
  background: linear-gradient(180deg, #f0fdf4 0%, #ecfdf5 50%, #fff 100%);
  border-radius: 26px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 2rem 1.5rem;
}

[data-theme="dark"] .phone-screen {
  background: linear-gradient(180deg, #0d1117 0%, #111114 50%, var(--bg-card) 100%);
}

.phone-screen .zapgrid-logo-text {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--accent);
  margin-bottom: 0.25rem;
}

.phone-screen .zapgrid-sub { font-size: 0.65rem; color: var(--text-muted); margin-bottom: 2rem; }

.phone-map {
  width: 100%;
  flex: 1;
  background: var(--accent-glow);
  border-radius: 16px;
  border: 1px solid var(--border);
  position: relative;
  overflow: hidden;
  margin-bottom: 1rem;
}

.phone-map::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(16,185,129,0.08) 1px, transparent 1px),
    linear-gradient(90deg, rgba(16,185,129,0.08) 1px, transparent 1px);
  background-size: 30px 30px;
}

.map-pin {
  position: absolute;
  width: 12px;
  height: 12px;
  background: var(--accent);
  border-radius: 50%;
  box-shadow: 0 0 0 4px var(--accent-glow-strong), 0 0 20px var(--accent-glow);
}

.map-pin:nth-child(1) { top: 30%; left: 40%; }
.map-pin:nth-child(2) { top: 55%; left: 65%; }
.map-pin:nth-child(3) { top: 70%; left: 30%; }
.map-pin:nth-child(4) { top: 25%; left: 70%; }

.map-pin::after {
  content: '';
  position: absolute;
  inset: -4px;
  border-radius: 50%;
  border: 2px solid var(--accent);
  animation: ping 2s cubic-bezier(0, 0, 0.2, 1) infinite;
}

.phone-bottom-bar {
  width: 100%;
  display: flex;
  justify-content: space-around;
  padding: 0.5rem 0;
}

.phone-bottom-bar span {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--text-muted);
  opacity: 0.4;
}

.phone-bottom-bar span.active {
  background: var(--accent);
  opacity: 1;
}

/* ---- Tariffe ---- */
.tariffe { background: var(--bg-secondary); }

.tariffe-card {
  max-width: 560px;
  margin: 3rem auto 0;
  background: var(--bg-card);
  border: 1px solid var(--border-accent);
  border-radius: 24px;
  padding: 3rem;
  text-align: center;
  position: relative;
  overflow: hidden;
  box-shadow: var(--shadow-card);
}

.tariffe-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--accent-dark), var(--accent), var(--accent-light));
}

.tariffe-price {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 4rem;
  font-weight: 700;
  color: var(--accent);
  line-height: 1;
  margin: 1.5rem 0 0.5rem;
}

.tariffe-price small {
  font-size: 1.25rem;
  color: var(--text-secondary);
  font-weight: 400;
}

.tariffe-note {
  color: var(--text-muted);
  font-size: 0.875rem;
  margin-bottom: 2rem;
}

.tariffe-locations {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  margin-top: 2rem;
  text-align: left;
}

.tariffe-location {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 1rem;
  background: var(--accent-glow);
  border: 1px solid var(--border);
  border-radius: 12px;
}

.tariffe-location svg { width: 20px; height: 20px; color: var(--accent); flex-shrink: 0; }
.tariffe-location span { font-size: 0.9rem; color: var(--text-secondary); }

/* ---- Contact ---- */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  margin-top: 3rem;
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.form-group label {
  font-size: 0.8rem;
  font-weight: 500;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.form-group input,
.form-group textarea,
.form-group select {
  padding: 0.875rem 1rem;
  background: var(--input-bg);
  border: 1px solid var(--border);
  border-radius: 12px;
  color: var(--text-primary);
  font-family: 'Inter', sans-serif;
  font-size: 0.95rem;
  transition: all 0.3s;
  outline: none;
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
  border-color: var(--accent);
  box-shadow: 0 0 0 3px var(--accent-glow);
}

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

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

.contact-info {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.contact-info-card {
  display: flex;
  gap: 1rem;
  padding: 1.5rem;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 16px;
  transition: all 0.3s;
  box-shadow: var(--shadow-card);
}

.contact-info-card:hover { border-color: var(--border-accent); }

.contact-info-icon {
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 12px;
  background: var(--accent-glow);
  color: var(--accent);
  flex-shrink: 0;
}

.contact-info-icon svg { width: 20px; height: 20px; }

.contact-info-card h4 { font-size: 0.95rem; margin-bottom: 0.25rem; }
.contact-info-card p,
.contact-info-card a {
  font-size: 0.875rem;
  color: var(--text-secondary);
  text-decoration: none;
  transition: color 0.3s;
  line-height: 1.5;
}
.contact-info-card a:hover { color: var(--accent); }

/* ---- CTA Banner ---- */
.cta-banner {
  background: var(--bg-secondary);
  text-align: center;
}

.cta-banner-inner {
  max-width: 700px;
  margin: 0 auto;
}

.cta-banner h2 {
  font-size: clamp(1.75rem, 3.5vw, 2.5rem);
  margin-bottom: 1rem;
}

.cta-banner p {
  color: var(--text-secondary);
  font-size: 1.1rem;
  line-height: 1.7;
  margin-bottom: 2rem;
}

.cta-banner .btn-primary { margin: 0 auto; }

/* ---- Footer ---- */
.footer {
  padding: 3rem 2rem;
  border-top: 1px solid var(--border);
}

.footer-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
}

.footer-copy {
  font-size: 0.8rem;
  color: var(--text-muted);
}

.footer-links {
  display: flex;
  gap: 1.5rem;
  list-style: none;
}

.footer-links a {
  font-size: 0.8rem;
  color: var(--text-muted);
  text-decoration: none;
  transition: color 0.3s;
}

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

/* ---- WhatsApp Button ---- */
.whatsapp-btn {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  width: 60px;
  height: 60px;
  background: #25D366;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 998;
  box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
  transition: transform 0.3s, box-shadow 0.3s;
  text-decoration: none;
  animation: whatsapp-pulse 2s ease-in-out infinite;
}

.whatsapp-btn:hover {
  transform: scale(1.1);
  box-shadow: 0 6px 30px rgba(37, 211, 102, 0.6);
  animation: none;
}

.whatsapp-btn svg {
  width: 32px;
  height: 32px;
  fill: #fff;
}

@keyframes whatsapp-pulse {
  0%, 100% { box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4); }
  50% { box-shadow: 0 4px 30px rgba(37, 211, 102, 0.7), 0 0 0 8px rgba(37, 211, 102, 0.1); }
}

/* ---- Animations ---- */
@keyframes float {
  0%, 100% { transform: translate(0, 0); }
  50% { transform: translate(-30px, 20px); }
}

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

@keyframes ping {
  0% { transform: scale(1); opacity: 0.8; }
  75%, 100% { transform: scale(2.5); opacity: 0; }
}

/* Scroll reveal */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }
.reveal-delay-4 { transition-delay: 0.4s; }

/* ---- Responsive ---- */
@media (max-width: 1024px) {
  .about-grid,
  .green-energy-grid,
  .zapgrid-grid,
  .contact-grid,
  .content-two-cols {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }

  .services-grid { grid-template-columns: 1fr; }
  .features-row { grid-template-columns: 1fr; gap: 1rem; }
  .about-visual { max-height: 400px; }
  .zapgrid-phone { order: -1; }
  .phone-mockup { width: 240px; height: 480px; }
}

@media (max-width: 768px) {
  section { padding: 4rem 1.25rem; }
  .content-section { padding: 3.5rem 1.25rem; }
  .page-header { padding: 8rem 1.25rem 3rem; }

  .nav-links { display: none; }
  .nav-toggle { display: flex; }

  .nav-links.open {
    display: flex;
    flex-direction: column;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--nav-bg);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    padding: 1.5rem 2rem;
    gap: 1rem;
    border-bottom: 1px solid var(--border);
  }

  .nav-links.open .dropdown-menu {
    position: static;
    transform: none;
    opacity: 1;
    visibility: visible;
    background: transparent;
    border: none;
    box-shadow: none;
    padding: 0.5rem 0 0 1rem;
    min-width: auto;
  }

  .hero { padding: 5rem 1.25rem 3rem; }

  .hero-actions {
    flex-direction: column;
    align-items: center;
  }

  .btn-primary, .btn-secondary {
    width: 100%;
    justify-content: center;
  }

  .about-stats { grid-template-columns: repeat(3, 1fr); gap: 0.75rem; }
  .stat-item { padding: 1rem 0.5rem; }
  .stat-number { font-size: 1.4rem; }
  .stat-label { font-size: 0.7rem; }
  .green-big-number { font-size: 3.5rem; }
  .tariffe-card { padding: 2rem; }
  .tariffe-price { font-size: 3rem; }
  .app-badges { flex-direction: column; }
  .gallery-row { grid-template-columns: 1fr; }

  /* Footer mobile */
  .footer-inner { flex-direction: column; text-align: center; gap: 1rem; }
  .footer-links { justify-content: center; flex-wrap: wrap; gap: 1rem; }
  .footer { padding-bottom: 5rem; }

  .whatsapp-btn { width: 54px; height: 54px; bottom: 1.25rem; right: 1.25rem; }
  .whatsapp-btn svg { width: 28px; height: 28px; }

  /* Content blocks mobile */
  .content-block { padding: 0 0.25rem; }
  .content-block h2 { font-size: 1.5rem; }
  .content-block p { font-size: 0.95rem; }

  /* Contact grid mobile */
  .contact-info-card { padding: 1.25rem; }

  /* Tariffe locations mobile */
  .tariffe-location { flex-direction: row; gap: 0.6rem; }
  .tariffe-location span { font-size: 0.85rem; }
}

@media (max-width: 480px) {
  .nav { padding: 0.75rem 1rem; }
  .hero h1 { font-size: 2.2rem; }
  .hero-subtitle { font-size: 0.95rem; }
  .service-card { padding: 1.75rem; }
  .section-title { font-size: 1.6rem; }
  .page-header h1 { font-size: 2rem; }
  .page-header .page-subtitle { font-size: 1rem; }
  .green-step { padding: 1.25rem; }
  .green-step h4 { font-size: 0.9rem; }
  .green-step p { font-size: 0.8rem; }
}

/* ============================================
   PREMIUM ANIMATIONS
   ============================================ */

/* ---- Page Loader ---- */
.page-loader {
  position: fixed;
  inset: 0;
  z-index: 10000;
  background: var(--bg-primary);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: opacity 0.5s ease, visibility 0.5s ease;
}

.page-loader.loaded {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

.loader-logo {
  animation: loaderPulse 1.2s ease-in-out infinite;
}

.loader-logo img {
  height: 50px;
  width: auto;
}

@keyframes loaderPulse {
  0%, 100% { opacity: 0.4; transform: scale(0.96); }
  50% { opacity: 1; transform: scale(1); }
}

/* ---- Scroll Progress Bar ---- */
.scroll-progress {
  position: fixed;
  top: 0;
  left: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--accent-dark), var(--accent), var(--accent-light));
  width: 0%;
  z-index: 1001;
  transition: width 0.1s linear;
  border-radius: 0 2px 2px 0;
}

/* ---- Text Split Reveal ---- */
.text-reveal .word {
  display: inline-block;
  overflow: hidden;
  vertical-align: top;
}

.text-reveal .word-inner {
  display: inline-block;
  transform: translateY(110%);
  transition: transform 0.7s cubic-bezier(0.16, 1, 0.3, 1);
}

.text-reveal.visible .word-inner {
  transform: translateY(0);
}

/* Stagger the words */
.text-reveal .word:nth-child(1) .word-inner { transition-delay: 0s; }
.text-reveal .word:nth-child(2) .word-inner { transition-delay: 0.04s; }
.text-reveal .word:nth-child(3) .word-inner { transition-delay: 0.08s; }
.text-reveal .word:nth-child(4) .word-inner { transition-delay: 0.12s; }
.text-reveal .word:nth-child(5) .word-inner { transition-delay: 0.16s; }
.text-reveal .word:nth-child(6) .word-inner { transition-delay: 0.2s; }
.text-reveal .word:nth-child(7) .word-inner { transition-delay: 0.24s; }
.text-reveal .word:nth-child(8) .word-inner { transition-delay: 0.28s; }
.text-reveal .word:nth-child(9) .word-inner { transition-delay: 0.32s; }
.text-reveal .word:nth-child(10) .word-inner { transition-delay: 0.36s; }

/* ---- Image Reveal (clip-path) ---- */
.img-reveal {
  clip-path: inset(100% 0 0 0);
  transition: clip-path 1s cubic-bezier(0.16, 1, 0.3, 1);
}

.img-reveal.visible {
  clip-path: inset(0 0 0 0);
}

/* ---- Card 3D Tilt ---- */
.tilt-card {
  transform-style: preserve-3d;
  transition: transform 0.15s ease-out;
}

.tilt-card .tilt-shine {
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background: radial-gradient(circle at var(--mouse-x, 50%) var(--mouse-y, 50%), rgba(255,255,255,0.06) 0%, transparent 60%);
  opacity: 0;
  transition: opacity 0.3s;
  pointer-events: none;
  z-index: 1;
}

.tilt-card:hover .tilt-shine { opacity: 1; }

[data-theme="dark"] .tilt-card .tilt-shine {
  background: radial-gradient(circle at var(--mouse-x, 50%) var(--mouse-y, 50%), rgba(255,255,255,0.08) 0%, transparent 60%);
}

/* ---- Magnetic Button ---- */
.magnetic-btn {
  transition: transform 0.2s cubic-bezier(0.16, 1, 0.3, 1);
}

/* ---- Stagger Children ---- */
.stagger-children > * {
  opacity: 0;
  transform: translateY(20px);
  transition: all 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.stagger-children.visible > *:nth-child(1) { transition-delay: 0.05s; }
.stagger-children.visible > *:nth-child(2) { transition-delay: 0.1s; }
.stagger-children.visible > *:nth-child(3) { transition-delay: 0.15s; }
.stagger-children.visible > *:nth-child(4) { transition-delay: 0.2s; }
.stagger-children.visible > *:nth-child(5) { transition-delay: 0.25s; }
.stagger-children.visible > *:nth-child(6) { transition-delay: 0.3s; }
.stagger-children.visible > *:nth-child(7) { transition-delay: 0.35s; }
.stagger-children.visible > *:nth-child(8) { transition-delay: 0.4s; }

.stagger-children.visible > * {
  opacity: 1;
  transform: translateY(0);
}

/* ---- Gradient Text Shimmer ---- */
.shimmer-text {
  background: linear-gradient(
    110deg,
    var(--accent-dark) 0%,
    var(--accent) 25%,
    var(--accent-light) 50%,
    var(--accent) 75%,
    var(--accent-dark) 100%
  );
  background-size: 200% 100%;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  animation: shimmer 4s ease-in-out infinite;
}

@keyframes shimmer {
  0% { background-position: 200% center; }
  100% { background-position: -200% center; }
}

/* ---- Floating Particles in Hero ---- */
.hero-particles {
  position: absolute;
  inset: 0;
  pointer-events: none;
  overflow: hidden;
}

.particle {
  position: absolute;
  width: 4px;
  height: 4px;
  background: var(--accent);
  border-radius: 50%;
  opacity: 0;
  animation: particleFloat linear infinite;
}

.particle:nth-child(1)  { left: 10%; animation-duration: 12s; animation-delay: 0s; }
.particle:nth-child(2)  { left: 20%; animation-duration: 14s; animation-delay: 2s; }
.particle:nth-child(3)  { left: 35%; animation-duration: 10s; animation-delay: 4s; }
.particle:nth-child(4)  { left: 50%; animation-duration: 16s; animation-delay: 1s; }
.particle:nth-child(5)  { left: 65%; animation-duration: 11s; animation-delay: 3s; }
.particle:nth-child(6)  { left: 75%; animation-duration: 13s; animation-delay: 5s; }
.particle:nth-child(7)  { left: 85%; animation-duration: 15s; animation-delay: 2s; }
.particle:nth-child(8)  { left: 92%; animation-duration: 12s; animation-delay: 6s; }

@keyframes particleFloat {
  0% { transform: translateY(100vh) scale(0); opacity: 0; }
  10% { opacity: 0.6; }
  90% { opacity: 0.6; }
  100% { transform: translateY(-100px) scale(1); opacity: 0; }
}

/* ---- Reveal variants ---- */
.reveal-left {
  opacity: 0;
  transform: translateX(-40px);
  transition: all 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

.reveal-right {
  opacity: 0;
  transform: translateX(40px);
  transition: all 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

.reveal-scale {
  opacity: 0;
  transform: scale(0.92);
  transition: all 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

.reveal-left.visible,
.reveal-right.visible,
.reveal-scale.visible {
  opacity: 1;
  transform: none;
}

/* ---- Glow Pulse on accent elements ---- */
.glow-pulse {
  animation: glowPulse 3s ease-in-out infinite;
}

@keyframes glowPulse {
  0%, 100% { box-shadow: 0 0 20px var(--accent-glow); }
  50% { box-shadow: 0 0 40px var(--accent-glow-strong), 0 0 60px var(--accent-glow); }
}

/* ---- Smooth section transitions ---- */
.content-section,
section {
  opacity: 1;
}

/* ---- Hover lift for all cards ---- */
.service-card,
.feature-card,
.green-step,
.contact-info-card,
.stat-item {
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

/* ---- Animated underline on section titles ---- */
.section-title-animated {
  position: relative;
  display: inline-block;
}

.section-title-animated::after {
  content: '';
  position: absolute;
  bottom: -8px;
  left: 0;
  width: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--accent), var(--accent-light));
  border-radius: 3px;
  transition: width 1s cubic-bezier(0.16, 1, 0.3, 1);
}

.section-title-animated.visible::after {
  width: 60px;
}

/* ---- Smooth image parallax ---- */
.parallax-img {
  transition: transform 0.1s linear;
  will-change: transform;
}

/* ---- Reduced motion ---- */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
  .page-loader { display: none; }
  .reveal, .reveal-left, .reveal-right, .reveal-scale,
  .stagger-children > *, .text-reveal .word-inner {
    opacity: 1 !important;
    transform: none !important;
  }
}
