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

html {
  scroll-behavior: smooth;
}

body {
  font-family: Arial, Helvetica, sans-serif;
  background: #f6f7fb;
  color: #171717;
}

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

.topbar {
  background: linear-gradient(90deg, #ffea00, #ff8a00);
  color: #111;
  padding: 10px 6%;
  display: flex;
  justify-content: space-between;
  gap: 15px;
  flex-wrap: wrap;
  font-weight: 800;
}

.header {
  position: sticky;
  top: 0;
  z-index: 20;
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(16px);
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 6%;
  box-shadow: 0 10px 35px rgba(0,0,0,0.08);
}

.logo {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 24px;
  font-weight: 900;
  letter-spacing: -1px;
}

.logo-mark {
  width: 48px;
  height: 48px;
  background: #111;
  color: #ffea00;
  border-radius: 14px;
  display: grid;
  place-items: center;
  font-size: 18px;
}

.logo strong {
  color: #ff8a00;
}

.nav {
  display: flex;
  gap: 28px;
  font-weight: 800;
}

.nav a:hover {
  color: #ff8a00;
}

.header-call {
  background: #111;
  color: #ffea00;
  padding: 13px 20px;
  border-radius: 999px;
  font-weight: 900;
}

.hero {
  min-height: 86vh;
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 45px;
  align-items: center;
  padding: 80px 6%;
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(circle at 10% 20%, rgba(255,234,0,0.28), transparent 35%),
    radial-gradient(circle at 90% 20%, rgba(255,138,0,0.28), transparent 32%),
    linear-gradient(135deg, #111 0%, #242424 45%, #101010 100%);
  color: white;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.04) 1px, transparent 1px);
  background-size: 42px 42px;
  mask-image: linear-gradient(to bottom, black, transparent);
}

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

.pill,
.eyebrow,
.section-title span {
  display: inline-block;
  background: #ffea00;
  color: #111;
  padding: 9px 16px;
  border-radius: 999px;
  font-weight: 900;
  margin-bottom: 18px;
}

.hero h1 {
  font-size: clamp(42px, 6vw, 82px);
  line-height: 0.98;
  letter-spacing: -3px;
  max-width: 950px;
}

.hero p {
  color: #e7e7e7;
  font-size: 20px;
  margin: 28px 0;
  max-width: 820px;
}

.hero-actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 16px 24px;
  border-radius: 999px;
  font-weight: 950;
  transition: 0.25s;
}

.btn:hover {
  transform: translateY(-3px);
}

.btn-primary {
  background: linear-gradient(90deg, #ffea00, #ff8a00);
  color: #111;
}

.btn-light {
  background: white;
  color: #111;
}

.hero-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
  margin-top: 32px;
  max-width: 620px;
}

.hero-stats div {
  background: rgba(255,255,255,0.09);
  border: 1px solid rgba(255,255,255,0.12);
  padding: 20px;
  border-radius: 22px;
}

.hero-stats strong {
  display: block;
  font-size: 26px;
  color: #ffea00;
}

.hero-stats span {
  color: #d4d4d4;
}

.hero-card {
  background: rgba(255,255,255,0.1);
  border: 1px solid rgba(255,255,255,0.16);
  border-radius: 34px;
  padding: 18px;
  box-shadow: 0 30px 90px rgba(0,0,0,0.35);
}

.hero-card img {
  width: 100%;
  border-radius: 24px;
  display: block;
}

.hero-card-text {
  padding: 20px 8px 6px;
  display: grid;
  gap: 5px;
}

.hero-card-text strong {
  font-size: 22px;
}

.hero-card-text span {
  color: #d4d4d4;
}

.section {
  padding: 90px 6%;
}

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

.section-title h2,
.content h2,
.cta h2 {
  font-size: clamp(34px, 4vw, 58px);
  line-height: 1.05;
  letter-spacing: -2px;
}

.section-title p,
.content p,
.cta p {
  color: #616161;
  font-size: 18px;
  margin-top: 16px;
}

.cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 26px;
}

.card {
  background: white;
  border-radius: 30px;
  padding: 34px;
  box-shadow: 0 18px 55px rgba(0,0,0,0.08);
  border: 1px solid #ececec;
}

.icon {
  width: 64px;
  height: 64px;
  background: #111;
  color: #ffea00;
  display: grid;
  place-items: center;
  border-radius: 20px;
  font-size: 30px;
  margin-bottom: 22px;
}

.card h3 {
  font-size: 25px;
  margin-bottom: 12px;
}

.card p {
  color: #666;
  font-size: 16px;
}

.dark {
  background: #111;
  color: white;
}

.light p {
  color: #d4d4d4;
}

.box-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}

.box-item {
  min-height: 250px;
  padding: 34px;
  border-radius: 30px;
  background:
    linear-gradient(145deg, rgba(255,234,0,0.18), rgba(255,138,0,0.07)),
    #1d1d1d;
  border: 1px solid rgba(255,255,255,0.12);
}

.box-item strong {
  display: block;
  font-size: 32px;
  color: #ffea00;
  margin-bottom: 15px;
}

.box-item p {
  color: #ddd;
  font-size: 18px;
}

.split {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 50px;
  align-items: center;
}

.visual-panel {
  min-height: 520px;
  border-radius: 40px;
  background:
    linear-gradient(160deg, #ffea00, #ff8a00);
  padding: 28px;
  display: grid;
  place-items: center;
  box-shadow: 0 25px 70px rgba(255,138,0,0.25);
}

.visual-box {
  width: 100%;
  background: #111;
  color: white;
  border-radius: 32px;
  padding: 38px;
  text-align: center;
}

.visual-box span {
  color: #ffea00;
  font-size: 18px;
  font-weight: 950;
}

.visual-box h2 {
  font-size: clamp(38px, 5vw, 74px);
  line-height: 0.95;
  margin: 20px 0;
}

.visual-box p {
  color: #ddd;
  font-size: 20px;
}

.visual-box a {
  display: block;
  margin-top: 24px;
  background: #ffea00;
  color: #111;
  padding: 18px;
  border-radius: 999px;
  font-size: 28px;
  font-weight: 950;
}

.checks {
  display: grid;
  gap: 13px;
  margin-top: 26px;
}

.checks div {
  background: white;
  border: 1px solid #e9e9e9;
  box-shadow: 0 10px 35px rgba(0,0,0,0.05);
  border-radius: 18px;
  padding: 17px 20px;
  font-weight: 850;
}

.cta {
  margin: 0 6%;
  padding: 70px 7%;
  border-radius: 42px;
  text-align: center;
  background:
    radial-gradient(circle at center, rgba(255,234,0,0.32), transparent 50%),
    #111;
  color: white;
}

.cta p {
  color: #ddd;
  max-width: 760px;
  margin: 18px auto 28px;
}

.contact-section {
  background: linear-gradient(180deg, #f6f7fb, #ffffff);
}

.contact-wrap {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: 30px;
  background: white;
  border-radius: 36px;
  padding: 34px;
  box-shadow: 0 25px 70px rgba(0,0,0,0.08);
}

.contact-info {
  background: #111;
  color: white;
  padding: 32px;
  border-radius: 28px;
}

.contact-info h3 {
  color: #ffea00;
  font-size: 30px;
  margin-bottom: 20px;
}

.contact-info p {
  margin-bottom: 14px;
  color: #e5e5e5;
}

.form {
  display: grid;
  gap: 14px;
}

.form input,
.form select,
.form textarea {
  width: 100%;
  border: 1px solid #ddd;
  background: #f8f8f8;
  padding: 16px;
  border-radius: 16px;
  font-size: 16px;
}

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

.form button {
  border: none;
  background: linear-gradient(90deg, #ffea00, #ff8a00);
  color: #111;
  padding: 17px;
  border-radius: 999px;
  font-weight: 950;
  font-size: 16px;
  cursor: pointer;
}

footer {
  background: #080808;
  color: #d4d4d4;
  padding: 35px 6%;
  display: grid;
  gap: 8px;
  text-align: center;
}

footer strong {
  color: #ffea00;
  font-size: 22px;
}

@media (max-width: 980px) {
  .header {
    flex-direction: column;
    gap: 16px;
  }

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

  .hero,
  .cards,
  .box-grid,
  .split,
  .contact-wrap {
    grid-template-columns: 1fr;
  }

  .hero-stats {
    grid-template-columns: 1fr;
  }

  .hero h1 {
    letter-spacing: -1px;
  }
}

@media (max-width: 560px) {
  .section,
  .hero {
    padding-left: 5%;
    padding-right: 5%;
  }

  .header-call {
    width: 100%;
    text-align: center;
  }

  .nav {
    gap: 14px;
    font-size: 14px;
  }

  .topbar {
    font-size: 14px;
  }
}


.hp-field {
  display: none !important;
}


.photo-section {
  background: #ffffff;
}

.photo-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 26px;
}

.photo-article {
  background: #fff;
  border: 1px solid #ececec;
  border-radius: 30px;
  overflow: hidden;
  box-shadow: 0 18px 55px rgba(0,0,0,0.08);
}

.photo-article img {
  width: 100%;
  height: 260px;
  object-fit: cover;
  display: block;
}

.photo-article div {
  padding: 26px;
}

.photo-article h3 {
  font-size: 23px;
  margin-bottom: 10px;
}

.photo-article p {
  color: #666;
  font-size: 16px;
}

@media (max-width: 980px) {
  .photo-grid {
    grid-template-columns: 1fr;
  }

  .photo-article img {
    height: 280px;
  }
}
