:root {
  --bg: #0A0A0A;
  --bg-alt: #111111;
  --text: #FFFFFF;
  --text-soft: rgba(255,255,255,0.82);
  --text-softer: rgba(255,255,255,0.6);
  --accent: #00A6A6;
  --accent-soft: #008F8F;
  --border-soft: rgba(255,255,255,0.12);
  --radius-lg: 18px;
  --radius-md: 12px;
  --radius-sm: 8px;
  --shadow-soft: 0 18px 45px rgba(0,0,0,0.55);
  --max-width: 1120px;
  --transition: 200ms ease-out;
}

*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html, body {
  background: radial-gradient(circle at top, #101820 0%, #050608 60%, #000000 100%);
  color: var(--text);
  font-family: system-ui, -apple-system, BlinkMacSystemFont, "Inter", "Segoe UI", sans-serif;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

body {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

a {
  color: inherit;
  text-decoration: none;
}

main {
  flex: 1;
  display: flex;
  flex-direction: column;
}

.page-shell {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 28px 20px 72px;
}

/* ========================= NAV ========================= */

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  margin-bottom: 40px;
  padding: 10px 14px;
  border-radius: 999px;
  background: radial-gradient(circle at top left, rgba(0,166,166,0.18), rgba(0,0,0,0.9));
  border: 1px solid rgba(255,255,255,0.08);
  backdrop-filter: blur(14px);
}

.nav-left {
  display: flex;
  align-items: center;
  gap: 10px;
}

.logo-mark {
  width: 32px;
  height: 32px;
  border-radius: 999px;
  background: radial-gradient(circle at 30% 0, #3ef3f3 0, #00A6A6 35%, #003c3c 90%);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 0 32px rgba(0,166,166,0.4);
}

.logo-mark span {
  font-size: 16px;
  font-weight: 700;
  color: #0A0A0A;
}

.logo-text {
  display: flex;
  flex-direction: column;
}

.logo-text-main {
  font-size: 15px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-soft);
}

.logo-text-sub {
  font-size: 12px;
  color: var(--text-softer);
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 22px;
  font-size: 14px;
  color: var(--text-softer);
}

.nav-links a {
  position: relative;
  padding-bottom: 3px;
}

.nav-links a.active {
  color: var(--text-soft);
}

.nav-links a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  height: 2px;
  width: 0;
  background: linear-gradient(90deg, var(--accent), #2df0f0);
  border-radius: 999px;
  transition: width var(--transition);
}

.nav-links a:hover::after,
.nav-links a.active::after {
  width: 16px;
}

.nav-cta a {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 9px 15px;
  border-radius: 999px;
  font-size: 13px;
  background: rgba(0,166,166,0.12);
  border: 1px solid rgba(0,166,166,0.5);
  color: var(--accent);
  text-shadow: 0 0 18px rgba(0,166,166,0.7);
  box-shadow: 0 0 22px rgba(0,166,166,0.25);
}

.nav-cta a span.dot {
  width: 7px;
  height: 7px;
  border-radius: 999px;
  background: #3ef3f3;
  box-shadow: 0 0 18px rgba(62,243,243,0.9);
}

/* ========================= HERO ========================= */

.hero {
  display: grid;
  grid-template-columns: minmax(0, 1.25fr) minmax(0, 1.05fr);
  gap: 32px;
  align-items: center;
  margin-bottom: 56px;
}

.hero-kicker {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 5px 11px;
  border-radius: 999px;
  border: 1px solid rgba(255,255,255,0.08);
  background: radial-gradient(circle at 0 0, rgba(0,166,166,0.18) 0, rgba(0,0,0,0.8) 60%);
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  color: var(--text-softer);
  margin-bottom: 18px;
}

.hero-kicker-dot {
  width: 7px;
  height: 7px;
  border-radius: 999px;
  background: #3ef3f3;
  box-shadow: 0 0 16px rgba(62,243,243,0.9);
}

.hero-title {
  font-family: system-ui, -apple-system, BlinkMacSystemFont, "SF Pro Display", "Segoe UI", sans-serif;
  font-size: 40px;
  line-height: 1.08;
  letter-spacing: -0.03em;
  margin-bottom: 14px;
}

.hero-title .accent {
  background: linear-gradient(120deg, #3ef3f3, #00A6A6);
  -webkit-background-clip: text;
  color: transparent;
}

.hero-subtitle {
  font-size: 15px;
  line-height: 1.7;
  color: var(--text-soft);
  max-width: 480px;
  margin-bottom: 22px;
}

.hero-metric-row {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  margin-bottom: 26px;
}

.metric-pill {
  padding: 7px 12px;
  border-radius: 999px;
  border: 1px solid rgba(255,255,255,0.06);
  background: rgba(0,0,0,0.5);
  font-size: 11px;
  color: var(--text-softer);
}

.hero-cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  align-items: center;
  margin-bottom: 18px;
}

.hero-note {
  font-size: 12px;
  color: var(--text-softer);
}

/* Hero media + image */

.hero-media {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.hero-photo {
  border-radius: var(--radius-lg);
  overflow: hidden;
  height: 230px;
  background-image: url("hero.jpg"); /* put hero.jpg next to index.html */
  background-size: cover;
  background-position: center;
  border: 1px solid var(--border-soft);
  box-shadow: var(--shadow-soft);
}

/* Hero right metrics card */

.hero-right {
  border-radius: var(--radius-lg);
  border: 1px solid var(--border-soft);
  background: radial-gradient(circle at 0 0, rgba(0,166,166,0.24) 0, rgba(0,0,0,0.9) 50%);
  padding: 18px;
  box-shadow: var(--shadow-soft);
}

.hero-card-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 8px;
}

.hero-card-title {
  font-size: 12px;
  color: var(--text-softer);
}

.hero-pill {
  font-size: 10px;
  padding: 4px 9px;
  border-radius: 999px;
  border: 1px solid rgba(0,166,166,0.4);
  background: rgba(0,166,166,0.12);
  color: var(--accent);
}

.metric-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0,1fr));
  gap: 10px;
  margin-bottom: 14px;
}

.metric-card {
  border-radius: var(--radius-md);
  padding: 10px 11px;
  border: 1px solid rgba(255,255,255,0.08);
  background: rgba(1,4,6,0.9);
}

.metric-label {
  font-size: 11px;
  color: var(--text-softer);
  margin-bottom: 5px;
}

.metric-value {
  font-size: 16px;
  font-weight: 600;
}

/* ========================= BUTTONS ========================= */

.btn-primary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 11px 22px;
  border-radius: 999px;
  border: none;
  cursor: pointer;
  background: linear-gradient(135deg, var(--accent), #2df0f0);
  color: #021111;
  font-size: 14px;
  font-weight: 600;
  box-shadow: 0 16px 30px rgba(0,166,166,0.55);
}

.btn-secondary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 10px 18px;
  border-radius: 999px;
  border: 1px solid rgba(255,255,255,0.18);
  background: rgba(0,0,0,0.4);
  color: var(--text-soft);
  font-size: 13px;
}

/* Hover micro-interactions */

.btn-primary,
.btn-secondary {
  transition: transform 160ms ease-out, box-shadow 160ms ease-out, background 160ms ease-out, border-color 160ms ease-out;
}

.btn-primary:hover {
  transform: translateY(-1px);
  box-shadow: 0 20px 36px rgba(0,166,166,0.7);
}

.btn-secondary:hover {
  transform: translateY(-1px);
  border-color: rgba(255,255,255,0.4);
}

/* ========================= SECTIONS ========================= */

.section {
  margin-bottom: 52px;
}

.section-header {
  margin-bottom: 22px;
}

.section-kicker {
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--text-softer);
  margin-bottom: 6px;
}

.section-title {
  font-size: 24px;
  letter-spacing: -0.02em;
  margin-bottom: 6px;
}

.section-subtitle {
  font-size: 14px;
  color: var(--text-soft);
  max-width: 520px;
}

/* Listing strip with images */

.listing-strip {
  display: grid;
  grid-template-columns: repeat(2, minmax(0,1fr));
  gap: 12px;
}

.listing-thumb {
  border-radius: var(--radius-lg);
  height: 170px;
  background-image: url("listing-1.jpg"); /* add listing-1.jpg in folder */
  background-size: cover;
  background-position: center;
  border: 1px solid var(--border-soft);
  box-shadow: var(--shadow-soft);
}

.listing-thumb-alt {
  background-image: url("listing-2.jpg"); /* add listing-2.jpg too */
}

/* ========================= PROBLEM GRID ========================= */

.problem-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0,1fr));
  gap: 14px;
}

.problem-card {
  border-radius: var(--radius-md);
  border: 1px solid rgba(255,255,255,0.06);
  background: rgba(3,7,10,0.9);
  padding: 14px 13px;
  font-size: 13px;
  color: var(--text-soft);
}

.problem-label {
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  color: var(--text-softer);
  margin-bottom: 8px;
}

.problem-title {
  font-size: 14px;
  margin-bottom: 8px;
}

.problem-body {
  font-size: 13px;
}

/* ========================= OFFER / SERVICES ========================= */

.offer-layout {
  display: grid;
  grid-template-columns: minmax(0,1.3fr) minmax(0,0.9fr);
  gap: 20px;
}

.offer-main {
  border-radius: var(--radius-lg);
  border: 1px solid var(--border-soft);
  background: linear-gradient(145deg, rgba(0,166,166,0.16), rgba(0,0,0,0.94));
  padding: 18px 18px 16px;
}

.badge {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 4px 9px;
  border-radius: 999px;
  border: 1px solid rgba(255,255,255,0.16);
  background: rgba(0,0,0,0.7);
  font-size: 10px;
  color: var(--text-softer);
  margin-bottom: 8px;
}

.badge-dot {
  width: 7px;
  height: 7px;
  border-radius: 999px;
  background: #3ef3f3;
}

.offer-title {
  font-size: 18px;
  margin-bottom: 6px;
}

.offer-body {
  font-size: 13px;
  color: var(--text-soft);
  margin-bottom: 12px;
}

.offer-list {
  list-style: none;
  font-size: 13px;
  color: var(--text-soft);
  margin-bottom: 14px;
}

.offer-list li {
  display: flex;
  gap: 8px;
  margin-bottom: 6px;
}

.offer-list li .bullet {
  color: var(--accent);
  font-size: 14px;
}

.offer-side {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

/* ========================= CARDS & LAYOUT ========================= */

.page-header {
  margin-bottom: 26px;
}

.page-title {
  font-size: 26px;
  letter-spacing: -0.02em;
  margin-bottom: 6px;
}

.page-subtitle {
  font-size: 14px;
  color: var(--text-soft);
  max-width: 520px;
}

.two-col {
  display: grid;
  grid-template-columns: minmax(0,1.3fr) minmax(0,0.9fr);
  gap: 20px;
}

.card {
  border-radius: var(--radius-lg);
  border: 1px solid rgba(255,255,255,0.08);
  background: rgba(3,7,10,0.95);
  padding: 16px 16px 14px;
  font-size: 13px;
  color: var(--text-soft);
}

.card h3 {
  font-size: 16px;
  margin-bottom: 8px;
}

.card ul {
  list-style: none;
}

.card ul li {
  display: flex;
  gap: 8px;
  margin-bottom: 6px;
}

.card ul li .bullet {
  color: var(--accent);
  font-size: 14px;
}

/* Card hover */

.card,
.problem-card,
.metric-card,
.listing-thumb,
.hero-right {
  transition: transform 180ms ease-out, box-shadow 180ms ease-out, border-color 180ms ease-out;
}

.card:hover,
.problem-card:hover,
.metric-card:hover,
.listing-thumb:hover,
.hero-right:hover {
  transform: translateY(-3px);
  border-color: rgba(255,255,255,0.2);
  box-shadow: 0 22px 40px rgba(0,0,0,0.7);
}

/* ========================= FORMS ========================= */

.form-block {
  border-radius: var(--radius-lg);
  border: 1px solid rgba(255,255,255,0.12);
  background: rgba(3,8,12,0.96);
  padding: 18px 16px;
}

.form-block label {
  font-size: 12px;
  display: block;
  margin-bottom: 5px;
  color: var(--text-soft);
}

.form-block input,
.form-block textarea {
  width: 100%;
  border-radius: 999px;
  border: 1px solid rgba(255,255,255,0.16);
  background: rgba(0,0,0,0.7);
  padding: 9px 11px;
  font-size: 13px;
  color: var(--text);
  margin-bottom: 10px;
  outline: none;
}

.form-block textarea {
  border-radius: 12px;
  min-height: 96px;
  resize: vertical;
}

.form-block input::placeholder,
.form-block textarea::placeholder {
  color: var(--text-softer);
}

.small-note {
  font-size: 11px;
  color: var(--text-softer);
}

/* ========================= FOOTER ========================= */

.footer {
  border-top: 1px solid rgba(255,255,255,0.06);
  padding: 18px 20px 26px;
  font-size: 11px;
  color: var(--text-softer);
}

.footer-inner {
  max-width: var(--max-width);
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: space-between;
}
/* ========================= MINI RESULTS STRIP ========================= */

.mini-results {
  margin: 32px 0 48px;
  padding: 12px 0;
}

.mini-results-inner {
  display: grid;
  grid-template-columns: repeat(4, minmax(0,1fr));
  gap: 12px;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: var(--radius-lg);
  padding: 14px 20px;
  backdrop-filter: blur(10px);
}

.mini-result {
  display: flex;
  flex-direction: column;
  text-align: center;
}

.mini-number {
  font-size: 17px;
  font-weight: 600;
  color: #3ef3f3;
  text-shadow: 0 0 12px rgba(62,243,243,0.5);
  margin-bottom: 4px;
}

.mini-label {
  font-size: 11px;
  color: var(--text-softer);
  letter-spacing: 0.04em;
}

/* ========================= ANIMATIONS ========================= */

.reveal {
  opacity: 0;
  transform: translateY(16px);
  animation: fadeUp 600ms var(--transition) forwards;
}

.reveal-delay-1 {
  animation-delay: 150ms;
}

.reveal-delay-2 {
  animation-delay: 300ms;
}

.reveal-delay-3 {
  animation-delay: 450ms;
}

@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(18px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* ========================= RESPONSIVE ========================= */

@media (max-width: 900px) {
  .hero,
  .offer-layout,
  .two-col {
    grid-template-columns: minmax(0,1fr);
  }
  .hero {
    gap: 22px;
  }
  .hero-media {
    order: -1;
  }
  .nav {
    margin-bottom: 28px;
  }
  .listing-strip {
    grid-template-columns: minmax(0,1fr);
  }
}

@media (max-width: 640px) {.mini-results-inner {
  grid-template-columns: repeat(2, minmax(0,1fr));
}

  .page-shell {
    padding-inline: 16px;
  }
  .hero-title {
    font-size: 30px;
  }
  .hero-subtitle {
    font-size: 14px;
  }
  .nav {
    padding-inline: 12px;
  }
   
}

