/* HERO */
.hero {
  position: relative;
  min-height: 85vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: var(--dark);
}
.hero-bg { position: absolute; inset: 0; }
.hero-bg-img { width: 100%; height: 100%; object-fit: cover; }
.hero-bg-placeholder {
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, #1a1a1a 0%, #2e2a20 50%, #1a1a1a 100%);
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(15,15,15,0.92) 0%, rgba(15,15,15,0.65) 60%, rgba(15,15,15,0.3) 100%);
}
.hero-content {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 4rem;
  padding: 6rem 2rem;
}
.hero-title {
  font-family: 'Oswald', sans-serif;
  font-size: clamp(2.6rem, 5.5vw, 4.5rem);
  font-weight: 700;
  line-height: 1.0;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  color: #fff;
  margin-bottom: 1.2rem;
}
.hero-accent { color: var(--yellow); }
.hero-sub {
  font-size: 1rem;
  color: #ccc;
  max-width: 480px;
  font-weight: 300;
  line-height: 1.7;
  margin-bottom: 2rem;
}
.hero-actions { display: flex; gap: 1rem; flex-wrap: wrap; }
.hero-btn-main { font-size: 0.95rem; padding: 0.9rem 2rem; }

.hero-badges { display: flex; flex-direction: column; gap: 1rem; justify-content: center; }
.hero-badge {
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: var(--radius);
  padding: 1.5rem;
  display: flex;
  align-items: center;
  gap: 1.2rem;
  transition: all 0.3s ease;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}
.hero-badge:hover {
  background: rgba(245, 197, 24, 0.1);
  border-color: var(--yellow);
  transform: translateX(8px);
  box-shadow: 0 10px 40px rgba(245, 197, 24, 0.15);
}
.hero-badge-icon i,
.hero-badge-icon svg {
  color: var(--yellow);
  width: 32px;
  height: 32px;
  stroke-width: 1px;
  display: block;
}
.hero-badge-text {
  font-family: 'Oswald', sans-serif;
  font-size: 1.2rem;
  font-weight: 600;
  color: #fff;
  line-height: 1.2;
}
.hero-badge-text span {
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.85rem;
}

/* ABOUT */
.about-section { padding: 6rem 0; background: var(--bg); }
.about-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 5rem; align-items: center; }
.about-photos { position: relative; height: 480px; }
.about-photo { border-radius: 6px; overflow: hidden; position: absolute; }
.about-photo-placeholder {
  background: var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  font-size: 0.78rem;
  color: var(--muted);
  line-height: 1.5;
}
.about-photo--main { width: 75%; height: 75%; top: 0; left: 0; box-shadow: var(--shadow-lg); }
.about-photo--secondary { width: 50%; height: 50%; bottom: 0; right: 0; box-shadow: var(--shadow-lg); border: 4px solid var(--bg); }
.about-badge-float {
  position: absolute;
  bottom: 30%;
  left: 68%;
  background: var(--yellow);
  color: var(--dark);
  font-size: 0.72rem;
  font-weight: 700;
  line-height: 1.4;
  padding: 0.8rem 1rem;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  display: flex;
  align-items: center;
  gap: 0.4rem;
  z-index: 2;
  white-space: nowrap;
}
.about-heading {
  font-family: 'Oswald', sans-serif;
  font-size: clamp(1.8rem, 3vw, 2.5rem);
  font-weight: 600;
  text-transform: uppercase;
  line-height: 1.1;
  margin-bottom: 1.2rem;
}
.about-p { color: var(--light-txt); font-weight: 300; line-height: 1.75; margin-bottom: 1rem; }
.about-p--last { margin-bottom: 2rem; }
.about-stats { display: flex; gap: 0; border: 1px solid var(--border); border-radius: var(--radius); overflow: hidden; }
.about-stat { padding: 1.2rem 1.5rem; flex: 1; text-align: center; background: var(--surface); }
.about-stat-sep { width: 1px; background: var(--border); }
.about-stat-num { display: inline; font-family: 'Oswald', sans-serif; font-size: 2rem; font-weight: 700; color: var(--yellow2); }
.about-stat-label { display: block; font-size: 0.72rem; color: var(--muted); margin-top: 0.2rem; text-transform: uppercase; letter-spacing: 0.05em; }

/* START PRO */
.startpro-section { padding: 6rem 0; background: var(--dark); }
.startpro-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 5rem; align-items: center; }
.startpro-heading {
  font-family: 'Oswald', sans-serif;
  font-size: clamp(1.7rem, 3vw, 2.4rem);
  font-weight: 600;
  text-transform: uppercase;
  line-height: 1.1;
  color: #fff;
  margin-bottom: 1.2rem;
}
.startpro-brand { color: var(--yellow); }
.startpro-p { color: #bbb; font-weight: 300; line-height: 1.75; margin-bottom: 2rem; }
.tools-list { display: flex; flex-wrap: wrap; gap: 0.5rem; }
.tool-chip {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.12);
  padding: 0.4rem 0.9rem;
  border-radius: 2px;
  font-size: 0.8rem;
  color: #ccc;
  transition: all 0.2s;
}
.tool-chip:hover { border-color: var(--yellow); color: var(--yellow); background: var(--yellow-bg); }
.tool-chip svg {
  width: 16px;
  height: 16px;
  stroke-width: 2px;
}
.startpro-img-placeholder,
.startpro-img {
  width: 100%;
  height: 380px;
  border-radius: 6px;
  overflow: hidden;
}
.startpro-img-placeholder {
  background: #1a1a1a;
  border: 1px solid #333;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  font-size: 0.78rem;
  color: #666;
  line-height: 1.6;
}
.startpro-img {
  object-fit: cover;
  object-position: center;
  border: 1px solid var(--border);
  box-shadow: var(--shadow-lg);
}
.tag-light { border-color: rgba(245,197,24,0.4); background: rgba(245,197,24,0.08); }

/* BONUS SECTION */
.bonus-section { padding: 6rem 0; background: var(--surface); }
.bonus-head { text-align: center; align-items: center; display: flex; flex-direction: column; }
.bonus-head-accent { color: var(--yellow2); }
.bonus-steps {
  display: flex;
  align-items: center;
  gap: 0;
  margin-top: 3rem;
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 6px;
  overflow: hidden;
}
.bonus-step {
  flex: 1;
  padding: 2.5rem 2rem;
  text-align: center;
  position: relative;
  transition: background 0.2s;
}
.bonus-step:hover { background: var(--yellow-bg); }
.bonus-step-num {
  position: absolute;
  top: 1rem; left: 1rem;
  font-family: 'Oswald', sans-serif;
  font-size: 3rem;
  font-weight: 700;
  color: var(--border);
  line-height: 1;
}
.bonus-step-icon {
  color: var(--yellow2);
  font-size: 2.5rem;
  margin-bottom: 1rem;
}
.bonus-step-icon svg {
  width: 40px;
  height: 40px;
  stroke-width: 1.5px;
}
.bonus-step h3 { font-family: 'Oswald', sans-serif; font-size: 1.1rem; font-weight: 600; text-transform: uppercase; margin-bottom: 0.6rem; letter-spacing: 0.04em; }
.bonus-step p { font-size: 0.82rem; color: var(--light-txt); line-height: 1.6; font-weight: 300; }
.bonus-step-arrow { font-size: 1.5rem; color: var(--yellow2); padding: 0 0.5rem; flex-shrink: 0; }
.bonus-cta { text-align: center; margin-top: 2.5rem; }
.bonus-cta-btn { font-size: 0.95rem; padding: 0.9rem 2.2rem; }

/* WHY US */
.why-section { padding: 6rem 0; background: var(--bg); }
.why-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5px;
  background: var(--border);
  border: 1.5px solid var(--border);
  border-radius: 6px;
  overflow: hidden;
}
.why-card {
  background: var(--surface);
  padding: 2.5rem 2rem;
  transition: background 0.2s;
  position: relative;
  overflow: hidden;
}
.why-card::after {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: var(--yellow);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.3s;
}
.why-card:hover { background: var(--card); }
.why-card:hover::after { transform: scaleX(1); }
.why-icon {
  color: var(--yellow2);
  font-size: 2rem;
  margin-bottom: 1rem;
}
.why-icon svg {
  width: 40px;
  height: 40px;
  stroke-width: 1.5px;
}
.why-card h3 { font-family: 'Oswald', sans-serif; font-size: 1.05rem; font-weight: 600; text-transform: uppercase; letter-spacing: 0.04em; margin-bottom: 0.6rem; }
.why-card p { font-size: 0.85rem; color: var(--light-txt); line-height: 1.65; font-weight: 300; }

/* MAP */
.map-section { padding: 6rem 0; background: var(--surface); border-top: 1px solid var(--border); }
.map-grid { display: grid; grid-template-columns: 1fr 1.5fr; gap: 4rem; align-items: center; }
.map-heading {
  font-family: 'Oswald', sans-serif;
  font-size: 2rem;
  font-weight: 600;
  text-transform: uppercase;
  margin-bottom: 1.5rem;
  line-height: 1.1;
}
.map-heading-accent { color: var(--yellow2); }
.contact-rows { display: flex; flex-direction: column; gap: 1.2rem; }
.contact-row { display: flex; align-items: flex-start; gap: 1rem; }
.contact-row-icon { font-size: 1.3rem; flex-shrink: 0; }
.contact-row-icon i,
.contact-row-icon svg {
  color: var(--yellow);
  width: 28px;
  height: 28px;
}
.contact-row strong { display: block; font-size: 0.8rem; font-weight: 600; text-transform: uppercase; letter-spacing: 0.05em; color: var(--muted); margin-bottom: 0.2rem; }
.contact-row span,
.contact-row a { font-size: 0.9rem; color: var(--text); }
.contact-phone { color: var(--yellow2); font-weight: 600; }
.map-embed { height: 360px; border-radius: 6px; overflow: hidden; border: 1px solid var(--border); }
.map-embed iframe { width: 100%; height: 100%; border: 0; display: block; }
.map-placeholder {
  width: 100%;
  height: 100%;
  background: var(--card);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  gap: 0.5rem;
  color: var(--muted);
  font-size: 0.82rem;
}
.map-placeholder-icon { font-size: 3rem; }
.map-placeholder strong { color: var(--text); }

/* RESPONSIVE */
@media (max-width: 860px) {
  .hero-content { grid-template-columns: 1fr; gap: 2rem; padding: 5rem 1.5rem; }
  .hero-badges { flex-direction: row; flex-wrap: wrap; }
  .hero-badge { flex: 1; min-width: 140px; }
  .about-grid,
  .startpro-grid,
  .map-grid { grid-template-columns: 1fr; gap: 3rem; }
  .about-photos { height: 300px; }
  .why-grid { grid-template-columns: 1fr 1fr; }
  .bonus-steps { flex-direction: column; }
  .bonus-step-arrow { transform: rotate(90deg); }
}

@media (max-width: 640px) {
  .hero {
    min-height: auto;
    align-items: flex-start;
  }

  .hero-content {
    padding: 4rem 1rem;
  }

  .hero-title {
    font-size: clamp(2.15rem, 12vw, 3rem);
    line-height: 1.05;
  }

  .hero-sub {
    font-size: 0.95rem;
    line-height: 1.65;
  }

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

  .hero-actions .btn,
  .hero-actions .btn-outline-white {
    width: 100%;
  }

  .about-section,
  .startpro-section,
  .bonus-section,
  .why-section,
  .map-section {
    padding: 3.5rem 0;
  }

  .about-grid,
  .startpro-grid,
  .map-grid {
    gap: 2rem;
  }

  .about-photos { height: 260px; }

  .about-photo--main {
    width: 82%;
    height: 72%;
  }

  .about-photo--secondary {
    width: 48%;
    height: 42%;
  }

  .about-badge-float {
    left: auto;
    right: 0;
    bottom: 20%;
    max-width: 72%;
    white-space: normal;
  }

  .about-stats {
    flex-direction: column;
  }

  .about-stat-sep {
    width: 100%;
    height: 1px;
  }

  .startpro-img-placeholder,
  .startpro-img {
    height: 260px;
  }

  .tools-list {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .tool-chip {
    justify-content: center;
    text-align: center;
  }

  .bonus-step {
    width: 100%;
    padding: 2.25rem 1.25rem;
  }

  .bonus-step-arrow {
    line-height: 1;
    padding: 0.25rem 0;
  }

  .why-grid { grid-template-columns: 1fr; }
  .why-card { padding: 2rem 1.25rem; }

  .map-embed { height: 280px; }
}

@media (max-width: 560px) {
  .why-grid { grid-template-columns: 1fr; }
  .hero-badges { display: none; }
}

@media (max-width: 380px) {
  .hero-content { padding: 3.25rem 0.85rem; }
  .tools-list { grid-template-columns: 1fr; }
  .about-photos { height: 220px; }
  .about-badge-float { font-size: 0.68rem; }
}
