:root {
  --black: #0d0d0d;
  --dark: #141414;
  --card: #1a1a1a;
  --green: #2ecc52;
  --green-dark: #20a03c;
  --green-glow: rgba(46, 204, 82, 0.15);
  --white: #f5f5f0;
  --gray: #888;
}

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

html {
  scroll-behavior: smooth;
}

body {
  background: var(--black);
  color: var(--white);
  font-family: 'DM Sans', sans-serif;
  overflow-x: hidden;
  cursor: none;
}

/* CURSOR */
.cursor {
  width: 12px;
  height: 12px;
  background: var(--green);
  border-radius: 50%;
  position: fixed;
  top: 0;
  left: 0;
  pointer-events: none;
  z-index: 9999;
  transform: translate(-50%, -50%);
  transition: width .3s, height .3s;
}

.cursor-ring {
  width: 36px;
  height: 36px;
  border: 1.5px solid rgba(46, 204, 82, .5);
  border-radius: 50%;
  position: fixed;
  top: 0;
  left: 0;
  pointer-events: none;
  z-index: 9998;
  transform: translate(-50%, -50%);
  transition: width .3s, height .3s;
}

/* NOISE */
body::before {
  content: '';
  position: fixed;
  inset: 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='.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='.04'/%3E%3C/svg%3E");
  pointer-events: none;
  z-index: 0;
  opacity: .5;
}

/* NAV */
nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  padding: 1.3rem 3rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: linear-gradient(to bottom, rgba(13, 13, 13, .95), transparent);
  backdrop-filter: blur(4px);
  transition: background .3s;
}

.nav-logo {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 1.6rem;
  letter-spacing: 3px;
  color: var(--green);
}

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

.nav-center a {
  color: var(--gray);
  text-decoration: none;
  font-size: .78rem;
  font-weight: 500;
  letter-spacing: 2px;
  text-transform: uppercase;
  transition: color .3s;
}

.nav-center a:hover {
  color: var(--green);
}

.nav-right {
  display: flex;
  align-items: center;
  gap: 1rem;
}

/* LANG TOGGLE */
.lang-toggle {
  display: flex;
  align-items: center;
  background: rgba(255, 255, 255, .05);
  border: 1px solid rgba(255, 255, 255, .1);
  border-radius: 100px;
  padding: 3px;
  gap: 2px;
}

.lang-btn {
  padding: .35rem .9rem;
  border-radius: 100px;
  border: none;
  background: transparent;
  font-family: 'Syne', sans-serif;
  font-weight: 700;
  font-size: .72rem;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--gray);
  cursor: none;
  transition: background .25s, color .25s;
}

.lang-btn.active {
  background: var(--green);
  color: var(--black);
}

.nav-cta {
  background: var(--green);
  color: var(--black) !important;
  padding: .55rem 1.4rem;
  border-radius: 2px;
  font-weight: 600 !important;
  transition: background .3s, transform .2s !important;
}

.nav-cta:hover {
  background: var(--green-dark) !important;
  transform: translateY(-1px);
}

/* HERO */
.hero {
  min-height: 100vh;
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  padding: 8rem 3rem 4rem;
  position: relative;
  overflow: hidden;
  gap: 4rem;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 60% 70% at 70% 50%, rgba(46, 204, 82, .07) 0%, transparent 70%);
  pointer-events: none;
}

.hero-grid-lines {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(46, 204, 82, .04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(46, 204, 82, .04) 1px, transparent 1px);
  background-size: 60px 60px;
  pointer-events: none;
}

.hero-content {
  position: relative;
  z-index: 1;
}

.hero-tag {
  display: inline-flex;
  align-items: center;
  gap: .6rem;
  border: 1px solid rgba(46, 204, 82, .3);
  padding: .4rem 1rem;
  border-radius: 100px;
  font-size: .72rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--green);
  margin-bottom: 2rem;
  opacity: 0;
  animation: fadeUp .8s ease forwards .2s;
}

.hero-tag .dot {
  width: 6px;
  height: 6px;
  background: var(--green);
  border-radius: 50%;
  animation: pulse 2s infinite;
}

.hero-title {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(5rem, 10vw, 9rem);
  line-height: .9;
  letter-spacing: 2px;
  opacity: 0;
  animation: fadeUp .8s ease forwards .4s;
}

.hero-title .accent {
  color: var(--green);
}

.hero-subtitle {
  font-family: 'Syne', sans-serif;
  font-size: clamp(1rem, 2vw, 1.2rem);
  font-weight: 400;
  color: var(--gray);
  margin-top: 1.5rem;
  max-width: 420px;
  line-height: 1.7;
  opacity: 0;
  animation: fadeUp .8s ease forwards .6s;
}

.hero-cta {
  display: flex;
  gap: 1rem;
  margin-top: 2.5rem;
  opacity: 0;
  animation: fadeUp .8s ease forwards .8s;
}

.btn-primary {
  background: var(--green);
  color: var(--black);
  padding: .9rem 2.2rem;
  font-family: 'Syne', sans-serif;
  font-weight: 700;
  font-size: .85rem;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  border: none;
  cursor: none;
  clip-path: polygon(0 0, calc(100% - 12px) 0, 100% 12px, 100% 100%, 12px 100%, 0 calc(100% - 12px));
  transition: background .3s, transform .2s;
  text-decoration: none;
  display: inline-block;
}

.btn-primary:hover {
  background: var(--green-dark);
  transform: translateY(-2px);
}

.btn-secondary {
  background: transparent;
  color: var(--white);
  padding: .9rem 2.2rem;
  font-family: 'Syne', sans-serif;
  font-weight: 600;
  font-size: .85rem;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  border: 1px solid rgba(255, 255, 255, .15);
  cursor: none;
  transition: border-color .3s, color .3s, transform .2s;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: .6rem;
}

.btn-secondary:hover {
  border-color: var(--green);
  color: var(--green);
  transform: translateY(-2px);
}

.hero-stats {
  display: flex;
  gap: 2rem;
  margin-top: 3rem;
  padding-top: 2rem;
  border-top: 1px solid rgba(255, 255, 255, .07);
  opacity: 0;
  animation: fadeUp .8s ease forwards 1s;
}

.stat-num {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 2.2rem;
  color: var(--green);
  line-height: 1;
}

.stat-label {
  font-size: .72rem;
  color: var(--gray);
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-top: .2rem;
}

/* HERO VISUAL */
.hero-visual {
  position: relative;
  z-index: 1;
  opacity: 0;
  animation: fadeRight 1s ease forwards .5s;
}

.showcase-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-areas:
    "origin destination"
    "product product";
  gap: 1rem;
}

.origin-card {
  grid-area: origin;
}

.destination-card {
  grid-area: destination;
}

.siphon-card {
  grid-area: product;
}

.showcase-card {
  background: var(--card);
  border: 1px solid rgba(255, 255, 255, .07);
  border-radius: 20px;
  padding: 2rem 1.5rem 1.5rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  position: relative;
  overflow: hidden;
  transition: transform .4s ease, border-color .3s;
}

.showcase-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: var(--accent, var(--green));
}

.showcase-card:hover {
  transform: translateY(-8px);
  border-color: rgba(46, 204, 82, .35);
}

.showcase-card.siphon-card {
  flex-direction: row;
  gap: 2rem;
  padding: 1.8rem 2.5rem;
  text-align: left;
  align-items: center;
}

.card-svg-wrap {
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}

.card-label {
  font-family: 'Syne', sans-serif;
  font-weight: 700;
  font-size: .75rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--gray);
  margin-top: .8rem;
}

.siphon-card .card-label {
  margin-top: 0;
}

.card-desc {
  font-size: .78rem;
  color: rgba(136, 136, 136, .7);
  line-height: 1.5;
  margin-top: .4rem;
}

/* SCROLL INDICATOR */
.scroll-indicator {
  position: absolute;
  bottom: 3rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: .5rem;
  opacity: 0;
  animation: fadeUp .8s ease forwards 1.2s;
}

.scroll-text {
  font-size: .65rem;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--gray);
}

.scroll-line {
  width: 1px;
  height: 50px;
  background: linear-gradient(to bottom, var(--green), transparent);
  animation: scrollPulse 2s ease infinite;
}

/* DIVIDER */
.divider {
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(46, 204, 82, .2), transparent);
  margin: 0 3rem;
}

/* SECTIONS */
section {
  padding: 8rem 3rem;
  position: relative;
  z-index: 1;
}

.section-number {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 10rem;
  line-height: 1;
  color: rgba(46, 204, 82, .06);
  position: absolute;
  right: 3rem;
  top: 4rem;
  pointer-events: none;
  user-select: none;
}

.section-tag {
  font-size: .7rem;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--green);
  font-family: 'Syne', sans-serif;
  font-weight: 600;
  margin-bottom: 1rem;
  display: flex;
  align-items: center;
  gap: .8rem;
}

.section-tag::before {
  content: '';
  width: 24px;
  height: 1px;
  background: var(--green);
}

.section-title {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(3rem, 6vw, 5.5rem);
  letter-spacing: 1px;
  line-height: .95;
}

/* ABOUT */
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 6rem;
  align-items: center;
  margin-top: 5rem;
}

.about-cards {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.about-card {
  background: var(--card);
  border: 1px solid rgba(255, 255, 255, .06);
  border-radius: 12px;
  padding: 2rem;
  position: relative;
  overflow: hidden;
  transition: border-color .3s, transform .3s;
}

.about-card::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(46, 204, 82, .04), transparent);
  pointer-events: none;
  opacity: 0;
  transition: opacity .3s;
}

.about-card:hover {
  border-color: rgba(46, 204, 82, .25);
  transform: translateX(6px);
}

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

.card-icon {
  font-size: 1.8rem;
  margin-bottom: 1rem;
}

.card-title {
  font-family: 'Syne', sans-serif;
  font-size: 1.05rem;
  font-weight: 700;
  margin-bottom: .6rem;
}

.card-text {
  font-size: .88rem;
  color: var(--gray);
  line-height: 1.75;
}

.about-visual {
  background: linear-gradient(135deg, #0f1f0f, #0d0d0d);
  border: 1px solid rgba(46, 204, 82, .15);
  border-radius: 20px;
  aspect-ratio: 3/4;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 1.5rem;
  position: relative;
  overflow: hidden;
}

.about-visual::before {
  content: '';
  position: absolute;
  width: 300px;
  height: 300px;
  background: radial-gradient(circle, rgba(46, 204, 82, .12), transparent 70%);
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.floating-siphons {
  display: flex;
  gap: 1rem;
  z-index: 1;
  position: relative;
}

.float-1 {
  animation: floatA 3s ease-in-out infinite;
}

.float-2 {
  animation: floatB 3s ease-in-out infinite .5s;
}

.float-3 {
  animation: floatA 3s ease-in-out infinite 1s;
}

.brand-badge {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  background: rgba(13, 13, 13, .9);
  border: 1px solid rgba(46, 204, 82, .3);
  border-radius: 100px;
  padding: .6rem 1.6rem;
  font-family: 'Syne', sans-serif;
  font-weight: 700;
  font-size: .8rem;
  color: var(--green);
  letter-spacing: 2px;
  text-transform: uppercase;
  white-space: nowrap;
  z-index: 2;
}

.about-word {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 1.3rem;
  letter-spacing: 4px;
  color: rgba(46, 204, 82, .5);
  text-align: center;
  z-index: 1;
  position: relative;
}

/* WHY */
.why {
  background: linear-gradient(180deg, var(--black), var(--dark));
}

.why-features {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-top: 5rem;
}

.feature-card {
  background: var(--card);
  border: 1px solid rgba(255, 255, 255, .06);
  border-radius: 14px;
  padding: 2.5rem 2rem;
  position: relative;
  overflow: hidden;
  transition: transform .4s ease, border-color .3s;
}

.feature-card::before {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: var(--green);
  transform: scaleX(0);
  transition: transform .4s ease;
  transform-origin: left;
}

.feature-card:hover {
  transform: translateY(-6px);
  border-color: rgba(46, 204, 82, .2);
}

.feature-card:hover::before {
  transform: scaleX(1);
}

.feature-num {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 4rem;
  color: rgba(46, 204, 82, .1);
  line-height: 1;
  margin-bottom: 1rem;
}

.feature-icon {
  font-size: 2rem;
  margin-bottom: 1rem;
}

.feature-title {
  font-family: 'Syne', sans-serif;
  font-weight: 700;
  font-size: 1.1rem;
  margin-bottom: .8rem;
}

.feature-text {
  font-size: .87rem;
  color: var(--gray);
  line-height: 1.75;
}

.payment-methods {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  margin-top: 3rem;
  align-items: center;
}

.payment-title {
  font-size: .72rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--gray);
  font-family: 'Syne', sans-serif;
}

.payment-chip {
  background: var(--card);
  border: 1px solid rgba(255, 255, 255, .08);
  border-radius: 8px;
  padding: .7rem 1.4rem;
  font-size: .8rem;
  font-family: 'Syne', sans-serif;
  font-weight: 600;
  color: var(--gray);
  display: flex;
  align-items: center;
  gap: .5rem;
  transition: border-color .3s, color .3s;
}

.payment-chip:hover {
  border-color: var(--green);
  color: var(--white);
}

/* PRICING */
.pricing {
  background: var(--dark);
}

.pricing-tabs {
  display: flex;
  background: rgba(255, 255, 255, .04);
  border-radius: 10px;
  padding: 4px;
  width: fit-content;
  margin: 3rem 0 4rem;
  border: 1px solid rgba(255, 255, 255, .06);
}

.tab {
  padding: .7rem 2rem;
  border-radius: 7px;
  font-family: 'Syne', sans-serif;
  font-weight: 600;
  font-size: .82rem;
  letter-spacing: 1px;
  text-transform: uppercase;
  cursor: none;
  border: none;
  background: transparent;
  color: var(--gray);
  transition: all .3s;
}

.tab.active {
  background: var(--green);
  color: var(--black);
}

.pricing-content {
  display: none;
}

.pricing-content.active {
  display: block;
}

.residential-card {
  background: var(--card);
  border: 1px solid rgba(46, 204, 82, .2);
  border-radius: 20px;
  padding: 3rem;
  max-width: 500px;
  position: relative;
  overflow: hidden;
}

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

.price-main {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 6rem;
  color: var(--green);
  line-height: 1;
}

.price-unit {
  font-size: 1rem;
  color: var(--gray);
  margin-top: -.5rem;
  margin-bottom: 2rem;
}

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

.price-features li {
  display: flex;
  align-items: center;
  gap: 1rem;
  font-size: .92rem;
  color: var(--gray);
}

.price-features li::before {
  content: '✓';
  width: 24px;
  height: 24px;
  background: var(--green-glow);
  border: 1px solid rgba(46, 204, 82, .3);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--green);
  font-size: .75rem;
  flex-shrink: 0;
}

.commercial-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
}

.price-item {
  background: var(--card);
  border: 1px solid rgba(255, 255, 255, .06);
  border-radius: 14px;
  padding: 1.8rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  transition: border-color .3s, transform .3s;
}

.price-item:hover {
  border-color: rgba(46, 204, 82, .3);
  transform: translateX(4px);
}

.price-item-label {
  font-family: 'Syne', sans-serif;
  font-weight: 600;
  font-size: .9rem;
  margin-bottom: .3rem;
}

.price-item-desc {
  font-size: .78rem;
  color: var(--gray);
}

.price-item-amount {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 2.2rem;
  color: var(--green);
  flex-shrink: 0;
}

.deposit-note {
  background: rgba(46, 204, 82, .08);
  border: 1px solid rgba(46, 204, 82, .2);
  border-radius: 10px;
  padding: 1.2rem 1.6rem;
  display: flex;
  align-items: center;
  gap: 1rem;
  font-size: .85rem;
  color: var(--green);
  font-family: 'Syne', sans-serif;
  font-weight: 600;
}

/* CONTACT */
.contact {
  background: var(--black);
  text-align: center;
  padding: 8rem 3rem 6rem;
}

.contact-glow {
  position: absolute;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(46, 204, 82, .06), transparent 70%);
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  pointer-events: none;
}

.contact-title {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(3.5rem, 8vw, 7rem);
  letter-spacing: 2px;
  line-height: .95;
  position: relative;
  z-index: 1;
}

.contact-title .green {
  color: var(--green);
}

.contact-subtitle {
  color: var(--gray);
  font-size: 1rem;
  margin-top: 1.5rem;
  margin-bottom: 3rem;
  position: relative;
  z-index: 1;
}

.contact-methods {
  display: flex;
  justify-content: center;
  gap: 2rem;
  flex-wrap: wrap;
  position: relative;
  z-index: 1;
  margin-bottom: 4rem;
}

.contact-card {
  background: var(--card);
  border: 1px solid rgba(255, 255, 255, .07);
  border-radius: 16px;
  padding: 2rem 2.5rem;
  text-align: center;
  min-width: 200px;
  transition: border-color .3s, transform .3s;
}

.contact-card:hover {
  border-color: rgba(46, 204, 82, .3);
  transform: translateY(-6px);
}

.contact-card-icon {
  font-size: 2rem;
  margin-bottom: .8rem;
}

.contact-card-label {
  font-size: .7rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--gray);
  font-family: 'Syne', sans-serif;
  margin-bottom: .5rem;
}

.contact-card-value {
  font-family: 'Syne', sans-serif;
  font-weight: 700;
  font-size: 1rem;
}

.coverage {
  position: relative;
  z-index: 1;
  display: inline-flex;
  align-items: center;
  gap: .8rem;
  background: rgba(46, 204, 82, .08);
  border: 1px solid rgba(46, 204, 82, .2);
  border-radius: 100px;
  padding: .8rem 2rem;
  font-family: 'Syne', sans-serif;
  font-weight: 600;
  font-size: .85rem;
  color: var(--green);
}

/* FOOTER */
footer {
  background: var(--dark);
  border-top: 1px solid rgba(255, 255, 255, .05);
  padding: 3rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: relative;
  z-index: 1;
}

.footer-logo {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 1.4rem;
  letter-spacing: 3px;
  color: var(--green);
}

.footer-text {
  font-size: .78rem;
  color: var(--gray);
}

.footer-ig {
  font-family: 'Syne', sans-serif;
  font-weight: 600;
  font-size: .82rem;
  color: var(--green);
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: .5rem;
  transition: opacity .3s;
}

.footer-ig:hover {
  opacity: .7;
}

/* REVEAL */
.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity .8s ease, transform .8s ease;
}

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

.reveal-delay-1 {
  transition-delay: .1s;
}

.reveal-delay-2 {
  transition-delay: .2s;
}

.reveal-delay-3 {
  transition-delay: .3s;
}

@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeRight {
  from {
    opacity: 0;
    transform: translateX(30px);
  }

  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes pulse {

  0%,
  100% {
    opacity: 1;
    transform: scale(1);
  }

  50% {
    opacity: .5;
    transform: scale(.8);
  }
}

@keyframes scrollPulse {

  0%,
  100% {
    opacity: .3;
  }

  50% {
    opacity: 1;
  }
}

@keyframes floatA {

  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-14px);
  }
}

@keyframes floatB {

  0%,
  100% {
    transform: translateY(-7px);
  }

  50% {
    transform: translateY(7px);
  }
}

@media (max-width:768px) {

  .showcase-grid {
    grid-template-columns: 1fr;
    grid-template-areas:
      "origin"
      "destination"
      "product";
  }
  
  nav {
    padding: 1rem 1.5rem;
  }

  .nav-center {
    display: none;
  }

  .hero {
    grid-template-columns: 1fr;
    padding: 7rem 1.5rem 4rem;
    min-height: auto;
    gap: 3rem;
  }

  section {
    padding: 5rem 1.5rem;
  }

  .about-grid {
    grid-template-columns: 1fr;
    gap: 3rem;
  }

  .about-visual {
    display: none;
  }

  .why-features {
    grid-template-columns: 1fr;
  }

  .commercial-grid {
    grid-template-columns: 1fr;
  }

  .contact-methods {
    gap: 1rem;
  }

  footer {
    flex-direction: column;
    gap: 1rem;
    text-align: center;
  }

  .divider {
    margin: 0 1.5rem;
  }
}

.pdf-modal {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.85);
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 9999;
}

.pdf-modal.active {
  display: flex;
}

.pdf-modal-content {
  width: 90%;
  height: 90%;
  background: #111;
  border-radius: 12px;
  overflow: hidden;
  position: relative;
}

#pdfViewer {
  width: 100%;
  height: 100%;
  border: none;
}

.pdf-close {
  position: absolute;
  top: 10px;
  right: 14px;
  background: transparent;
  border: none;
  color: white;
  font-size: 1.5rem;
  cursor: pointer;
}

/* MOBILE FIXES */
@media (max-width: 768px) {

  html,
  body {
    overflow-x: hidden;
    width: 100%;
  }

  body {
    cursor: auto;
  }

  .cursor,
  .cursor-ring {
    display: none;
  }

  nav {
    padding: 1rem;
  }

  .hero {
    padding: 6.5rem 1rem 3rem;
    gap: 2rem;
  }

  .hero-title {
    font-size: clamp(3.5rem, 16vw, 5rem);
    line-height: .9;
  }

  .hero-subtitle {
    font-size: .95rem;
    max-width: 100%;
  }

  .hero-cta {
    flex-direction: column;
    width: 100%;
  }

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

  section {
    padding: 4rem 1rem;
  }

  .section-title,
  .contact-title {
    line-height: 1;
  }

  .section-number {
    display: none;
  }

  .contact-methods {
    flex-direction: column;
    align-items: stretch;
  }

  .contact-card {
    min-width: unset;
    width: 100%;
    padding: 1.5rem;
  }

  .coverage {
    width: 100%;
    border-radius: 16px;
    justify-content: center;
    text-align: center;
    padding: 1rem;
  }

  .pricing-tabs {
    width: 100%;
  }

  .tab {
    flex: 1;
    padding: .8rem 1rem;
  }

  .residential-card {
    padding: 2rem 1.5rem;
  }

  .price-main {
    font-size: 4.5rem;
  }

  footer {
    padding: 2rem 1rem;
  }

  iframe,
  img,
  svg,
  video {
    max-width: 100%;
    height: auto;
  }
}

svg {
  max-width: 100%;
}