body {
  margin: 0;
}

.wp-site-blocks {
  padding-left: 0 !important;
  padding-right: 0 !important;
}

  *, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
  :root {
    --black: #0A0A0A;
    --teal: #00C9B1;
    --teal-dark: #008F7E;
    --white: #FFFFFF;
    --gray-dark: #1C1C1C;
    --gray-mid: #888888;
    --gray-light: #F5F5F5;
  }
  html { scroll-behavior: smooth; }
  body { font-family: 'DM Sans', sans-serif; background: var(--white); color: var(--black); overflow-x: hidden; }

  /* NAV */
  nav {
    position: fixed; top: 0; left: 0; right: 0; z-index: 100;
    display: flex; align-items: center; justify-content: space-between;
    padding: 20px 60px; background: rgba(10,10,10,0.96);
    backdrop-filter: blur(10px); border-bottom: 1px solid rgba(0,201,177,0.15);
  }
  .nav-logo { font-family: 'Bebas Neue', sans-serif; font-size: 28px; letter-spacing: 2px; color: var(--white); text-decoration: none; }
  .nav-logo span { color: var(--teal); }
  .nav-links { display: flex; gap: 40px; list-style: none; }
  .nav-links a { color: rgba(255,255,255,0.75); text-decoration: none; font-size: 13px; font-weight: 500; letter-spacing: 1.5px; text-transform: uppercase; transition: color 0.2s; }
  .nav-links a:hover { color: var(--teal); }
  .nav-cta { background: var(--teal); color: var(--black); padding: 10px 24px; font-size: 12px; font-weight: 700; letter-spacing: 1.5px; text-transform: uppercase; text-decoration: none; transition: background 0.2s; }
  .nav-cta:hover { background: var(--teal-dark); }

  /* HERO */
  .hero {
    min-height: 100vh; background: var(--black); display: flex; align-items: center;
    padding: 120px 60px 80px; position: relative; overflow: hidden;
  }
  .hero::before {
    content: ''; position: absolute; top: -50%; right: -20%; width: 700px; height: 700px;
    background: radial-gradient(circle, rgba(0,201,177,0.08) 0%, transparent 70%); pointer-events: none;
  }
  .hero-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center; max-width: 1200px; margin: 0 auto; width: 100%; }
  .hero-tag { display: inline-block; background: rgba(0,201,177,0.1); border: 1px solid rgba(0,201,177,0.3); color: var(--teal); padding: 6px 16px; font-size: 11px; font-weight: 700; letter-spacing: 2px; text-transform: uppercase; margin-bottom: 24px; }
  .hero h1 { font-family: 'Bebas Neue', sans-serif; font-size: 96px; line-height: 0.95; color: var(--white); font-weight: 700; margin-bottom: 12px; margin-top: 0px;}
  .hero h1 span { color: var(--teal); }
  .hero-sub { font-size: 18px; color: rgba(255,255,255,0.6); line-height: 1.7; margin-bottom: 40px; max-width: 460px; }
  .hero-actions { display: flex; gap: 16px; align-items: center; }
  .btn-primary { background: var(--teal); color: var(--black); padding: 16px 36px; font-size: 13px; font-weight: 700; letter-spacing: 1.5px; text-transform: uppercase; text-decoration: none; transition: background 0.2s; display: inline-block; }
  .btn-primary:hover { background: var(--teal-dark); }
  .btn-ghost { color: var(--white); padding: 16px 36px; font-size: 13px; font-weight: 700; letter-spacing: 1.5px; text-transform: uppercase; text-decoration: none; border: 1px solid rgba(255,255,255,0.2); transition: all 0.2s; display: inline-block; }
  .btn-ghost:hover { border-color: var(--teal); color: var(--teal); }
  .hero-image { position: relative; display: flex; justify-content: center; }
  .hero-machine { width: 340px; filter: drop-shadow(0 40px 80px rgba(0,201,177,0.2)); }
  .hero-stats { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; margin-top: 60px; padding-top: 40px; border-top: 1px solid rgba(255,255,255,0.08); }
  .stat-item { }
  .stat-num { font-family: 'Bebas Neue', sans-serif; font-size: 42px; font-weight: 700; color: var(--teal); display: block; }
  .stat-label { font-size: 12px; color: rgba(255,255,255,0.5); text-transform: uppercase; letter-spacing: 1px; }

  /* SECTIONS */
  section { padding: 100px 60px; }
  .section-inner { max-width: 1200px; margin: 0 auto; }
  .section-tag { display: inline-block; color: var(--teal); font-size: 11px; font-weight: 700; letter-spacing: 2.5px; text-transform: uppercase; margin-bottom: 16px; }
  .section-title { font-family: 'Bebas Neue', sans-serif; font-size: 56px; font-weight: bold; bold; line-height: 1; margin-bottom: 16px; margin-top: 0px; }
  .section-body { font-size: 16px; color: var(--gray-mid); line-height: 1.8; max-width: 600px; }

  /* WHY VENDOGO */
  .why { background: var(--gray-light); }
  .why-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 2px; margin-top: 60px; }
  .why-card { background: var(--white); padding: 48px 36px; border-top: 3px solid var(--teal); }
  .why-num { font-family: 'Bebas Neue', sans-serif; font-size: 64px; color: rgba(0,201,177,0.15); line-height: 1; margin-bottom: 8px; }
  .why-card h3 { font-size: 18px; font-weight: 700; margin-bottom: 12px; }
  .why-card p { font-size: 15px; color: var(--gray-mid); line-height: 1.7; }

  /* HOW IT WORKS */
  .how { background: var(--black); }
  .how .section-title { color: var(--white); }
  .how .section-body { color: rgba(255,255,255,0.5); }
  .how .section-tag { }
  .steps-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 2px; margin-top: 60px; }
  .step { background: var(--gray-dark); padding: 48px 36px; position: relative; }
  .step::after { content: ''; position: absolute; top: 0; left: 0; right: 0; height: 3px; background: var(--teal); transform: scaleX(0); transform-origin: left; transition: transform 0.4s; }
  .step:hover::after { transform: scaleX(1); }
  .step-num { font-family: 'Bebas Neue', sans-serif; font-size: 80px; color: rgba(0,201,177,0.1); line-height: 1; margin-bottom: 16px; }
  .step h3 { font-size: 20px; font-weight: 700; color: var(--white); margin-bottom: 12px; }
  .step p { font-size: 15px; color: rgba(255,255,255,0.5); line-height: 1.7; }
  .step-arrow { display: none; }

  /* PRODUCTS */
  .products { background: var(--white); }
  .products-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 2px; margin-top: 60px; }
  .product-card { background: var(--gray-light); padding: 40px 28px; transition: background 0.2s; cursor: default; }
  .product-card:hover { background: var(--black); }
  .product-card:hover h3 { color: var(--white); }
  .product-card:hover p { color: rgba(255,255,255,0.5); }
  .product-card:hover .product-icon { color: var(--teal); }
  .product-icon { font-size: 32px; margin-bottom: 20px; color: var(--teal); transition: color 0.2s; }
  .product-card h3 { font-size: 17px; font-weight: 700; margin-bottom: 10px; transition: color 0.2s; }
  .product-card p { font-size: 14px; color: var(--gray-mid); line-height: 1.7; transition: color 0.2s; }
  .product-tag { display: inline-block; background: rgba(0,201,177,0.1); color: var(--teal); font-size: 10px; font-weight: 700; letter-spacing: 1.5px; text-transform: uppercase; padding: 4px 10px; margin-bottom: 14px; }

  /* MACHINES */
  .machines { background: var(--gray-light); }
  .machines-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 2px; margin-top: 60px; }
  .machine-card { background: var(--white); overflow: hidden; }
  .machine-img { background: var(--black); height: 320px; display: flex; align-items: center; justify-content: center; position: relative; overflow: hidden; }
  .machine-img::after { content: ''; position: absolute; bottom: 0; left: 0; right: 0; height: 3px; background: var(--teal); }
  .machine-placeholder { width: 140px; opacity: 0.7; }
  .machine-info { padding: 32px 28px; }
  .machine-info h3 { font-family: 'Bebas Neue', sans-serif; font-size: 28px; margin-bottom: 8px; }
  .machine-info p { font-size: 14px; color: var(--gray-mid); line-height: 1.7; margin-bottom: 20px; }
  .machine-specs { list-style: none; }
  .machine-specs li { font-size: 13px; color: var(--black); padding: 6px 0; border-bottom: 1px solid var(--gray-light); display: flex; align-items: center; gap: 8px; }
  .machine-specs li::before { content: ''; width: 6px; height: 6px; background: var(--teal); display: inline-block; flex-shrink: 0; }

  /* PROPERTY MANAGERS */
  .pm { background: var(--black); overflow: hidden; position: relative; }
  .pm::before { content: ''; position: absolute; left: -200px; top: 50%; transform: translateY(-50%); width: 600px; height: 600px; background: radial-gradient(circle, rgba(0,201,177,0.06) 0%, transparent 70%); pointer-events: none; }
  .pm .section-title { color: var(--white); }
  .pm .section-body { color: rgba(255,255,255,0.5); }
  .pm-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 2px; margin-top: 60px; }
  .pm-card { background: var(--gray-dark); padding: 40px 32px; border-bottom: 3px solid transparent; transition: border-color 0.2s; }
  .pm-card:hover { border-bottom-color: var(--teal); }
  .pm-card h3 { font-size: 36px; font-family: 'Bebas Neue', sans-serif; color: var(--teal); margin-bottom: 8px; }
  .pm-card h4 { font-size: 16px; font-weight: 700; color: var(--white); margin-bottom: 12px; }
  .pm-card p { font-size: 14px; color: rgba(255,255,255,0.5); line-height: 1.7; }

  /* TRUST */
  .trust { background: var(--white); }
  .trust-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 2px; margin-top: 60px; }
  .trust-card { background: var(--gray-light); padding: 40px 32px; border-left: 4px solid var(--teal); }
  .trust-quote { font-size: 15px; color: var(--black); line-height: 1.8; margin-bottom: 24px; font-style: italic; }
  .trust-author { font-size: 13px; font-weight: 700; color: var(--black); }
  .trust-role { font-size: 12px; color: var(--gray-mid); margin-top: 2px; }

  /* CONTACT */
  .contact { background: var(--black); }
  .contact .section-title { color: var(--white); }
  .contact .section-body { color: rgba(255,255,255,0.5); }
  .contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; margin-top: 60px; align-items: start; }
  .contact-info h3 { font-size: 20px; font-weight: 700; color: var(--white); margin-bottom: 20px; }
  .contact-detail { display: flex; align-items: center; gap: 14px; margin-bottom: 16px; }
  .contact-detail-icon { width: 40px; height: 40px; background: rgba(0,201,177,0.1); border: 1px solid rgba(0,201,177,0.2); display: flex; align-items: center; justify-content: center; color: var(--teal); font-size: 16px; flex-shrink: 0; }
  .contact-detail-text { font-size: 15px; color: rgba(255,255,255,0.7); }
  .contact-form { display: flex; flex-direction: column; gap: 16px; }
  .form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
  .form-group { display: flex; flex-direction: column; gap: 6px; }
  .form-group label { font-size: 11px; font-weight: 700; letter-spacing: 1.5px; text-transform: uppercase; color: rgba(255,255,255,0.5); }
  .form-group input, .form-group select, .form-group textarea {
    background: var(--gray-dark); border: 1px solid rgba(255,255,255,0.08);
    color: var(--white); padding: 14px 16px; font-family: 'DM Sans', sans-serif;
    font-size: 15px; outline: none; transition: border-color 0.2s; resize: none;
  }
  .form-group input:focus, .form-group select:focus, .form-group textarea:focus { border-color: var(--teal); color: #fff;}
  .form-group select option { background: var(--gray-dark); }
  .form-submit { background: var(--teal); color: var(--black); padding: 16px; font-family: 'DM Sans', sans-serif; font-size: 13px; font-weight: 700; letter-spacing: 1.5px; text-transform: uppercase; border: none; cursor: pointer; transition: background 0.2s; }
  .form-submit:hover { background: var(--teal-dark); }

  /* FOOTER */
  footer { background: #050505; padding: 60px; border-top: 1px solid rgba(255,255,255,0.05); }
  .footer-inner { max-width: 1200px; margin: 0 auto; }
  .footer-top { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 60px; margin-bottom: 60px; }
  .footer-brand p { font-size: 14px; color: rgba(255,255,255,0.4); line-height: 1.8; margin-top: 16px; max-width: 280px; }
  .footer-col h4 { font-size: 11px; font-weight: 700; letter-spacing: 2px; text-transform: uppercase; color: rgba(255,255,255,0.4); margin-bottom: 20px; }
  .footer-col ul { list-style: none; }
  .footer-col ul li { margin-bottom: 10px; }
  .footer-col ul li a { color: rgba(255,255,255,0.6); text-decoration: none; font-size: 14px; transition: color 0.2s; }
  .footer-col ul li a:hover { color: var(--teal); }
  .footer-bottom { border-top: 1px solid rgba(255,255,255,0.05); padding-top: 30px; display: flex; justify-content: space-between; align-items: center; }
  .footer-bottom p { font-size: 13px; color: rgba(255,255,255,0.3); }
  .footer-logo { font-family: 'Bebas Neue', sans-serif; font-size: 24px; font-weight: bold;color: var(--white); }
  .footer-logo span { color: var(--teal); }

  /* DIVIDER */
  .teal-line { width: 60px; height: 3px; background: var(--teal); margin: 20px 0 40px; }

/* ── TICKER ── */
.ticker{height:40px;background:var(--teal);overflow:hidden;display:flex;align-items:center;position:relative}
.ticker::before,.ticker::after{content:'';position:absolute;top:0;bottom:0;width:80px;z-index:2}
.ticker::before{left:0;background:linear-gradient(90deg,var(--teal),transparent)}
.ticker::after{right:0;background:linear-gradient(-90deg,var(--teal),transparent)}
.ticker-track{display:flex;gap:0;animation:tick 30s linear infinite;white-space:nowrap}
.ti{padding:0 40px;display:inline-flex;align-items:center;gap:20px}
.ti-text{font-size:10px;font-weight:700;letter-spacing:2.5px;text-transform:uppercase;color:var(--black)}
.ti-sep{width:3px;height:3px;background:rgba(0,0,0,0.25);transform:rotate(45deg)}
@keyframes tick{0%{transform:translateX(0)}100%{transform:translateX(-50%)}}

/* SCROLL ANIMATIONS */
.r {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

.r.vis {
  opacity: 1;
  transform: translateY(0);
}

.r-left {
  opacity: 0;
  transform: translateX(-30px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

.r-left.vis {
  opacity: 1;
  transform: translateX(0);
}

.r-right {
  opacity: 0;
  transform: translateX(30px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

.r-right.vis {
  opacity: 1;
  transform: translateX(0);
}

/* delays */
.d1 { transition-delay: 0.1s; }
.d2 { transition-delay: 0.2s; }
.d3 { transition-delay: 0.3s; }
.d4 { transition-delay: 0.4s; }


/* hide default cursor */
body {
  cursor: none;
}

/* dot */
.cur {
  position: fixed;
  width: 8px;
  height: 8px;
  background: #00C9B1;
  border-radius: 50%;
  pointer-events: none;
  z-index: 9999;
  transform: translate(-50%, -50%);
}

/* ring */
.cur-ring {
  position: fixed;
  width: 36px;
  height: 36px;
  border: 1px solid rgba(0,201,177,0.5);
  border-radius: 50%;
  pointer-events: none;
  z-index: 9998;
  transform: translate(-50%, -50%);
  transition: transform 0.15s ease-out;
}