/* =========================================
   OPNEVA – COMPLETE RESPONSIVE STYLESHEET
   ========================================= */

:root {
  --navy: #07111f;
  --navy2: #0b1728;
  --panel: #0e1a2c;
  --panel2: #111c2d;
  --gold: #c89a22;
  --gold2: #e3bb55;
  --text: #f5f7fb;
  --muted: #b7c0ce;
  --line: rgba(210, 167, 52, 0.28);
  --soft: rgba(255, 255, 255, 0.06);
  --shadow: 0 18px 55px rgba(0, 0, 0, 0.28);
  --radius: 22px;
}

/* RESET */

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  width: 100%;
  overflow-x: hidden;
}

body {
  margin: 0;
  padding: 0;
  width: 100%;
  min-width: 0;
  overflow-x: hidden;

  background: #090d14;
  color: var(--text);

  font-family:
    Arial,
    Helvetica,
    sans-serif;

  line-height: 1.6;
}

img {
  display: block;
  max-width: 100%;
  height: auto;
}

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

button,
input,
textarea,
select {
  font: inherit;
}

/* =========================================
   HEADER
   ========================================= */

.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;

  width: 100%;

  background: rgba(7, 17, 31, 0.96);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(14px);
}

.site-header > * {
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
}

.brand {
  display: flex;
  align-items: center;
  gap: 14px;
}

.brand img {
  width: 70px;
  height: 70px;
  object-fit: contain;
}

.main-nav {
  display: flex;
  align-items: center;
  gap: 26px;
}

.main-nav a {
  color: var(--muted);
  font-weight: 700;
}

.main-nav a:hover {
  color: var(--gold2);
}

/* =========================================
   GENERAL SECTIONS
   ========================================= */

main {
  display: block;
  width: 100%;
}

section {
  width: 100%;
}

.section-shell,
.hero,
.sample-section {
  width: 100%;
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 32px;
  padding-right: 32px;
}

.section-shell {
  padding-top: 90px;
  padding-bottom: 90px;
}

.section-light {
  max-width: none;
  background: #111318;
}

.section-light > * {
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
}

/* =========================================
   HERO
   ========================================= */

.hero {
  min-height: calc(100svh - 88px);

  display: flex;
  align-items: center;

  padding-top: 90px;
  padding-bottom: 90px;

  background:
    radial-gradient(
      circle at 75% 20%,
      rgba(200, 154, 34, 0.08),
      transparent 35%
    );
}

.hero > div {
  width: 100%;
  max-width: 900px;
}

.eyebrow {
  margin: 0 0 24px;

  color: var(--gold);
  font-size: 16px;
  font-weight: 800;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}

.hero h1 {
  margin: 0 0 28px;

  max-width: 850px;

  font-size: clamp(54px, 7vw, 92px);
  line-height: 0.98;
  letter-spacing: -0.04em;
}

.hero h1 em {
  color: var(--gold);
  font-style: normal;
}

.hero p {
  max-width: 720px;

  margin: 0 0 34px;

  color: var(--text);
  font-size: 21px;
}

.hero p strong {
  display: block;
  margin-top: 5px;
}

/* =========================================
   BUTTONS
   ========================================= */

.btn,
.button,
.cta-button {
  display: inline-flex;
  justify-content: center;
  align-items: center;

  min-height: 54px;
  padding: 14px 26px;

  border: 1px solid var(--gold);
  border-radius: 999px;

  background: #4a1e00;
  color: #fff;

  font-weight: 800;
  text-align: center;

  transition:
    transform 0.2s ease,
    background 0.2s ease;
}

.btn:hover,
.button:hover,
.cta-button:hover {
  transform: translateY(-2px);
  background: #622900;
}

.btn-secondary,
.button-secondary {
  background: transparent;
  color: var(--gold2);
}

/* =========================================
   HEADINGS
   ========================================= */

h1,
h2,
h3,
h4 {
  overflow-wrap: normal;
  word-break: normal;
}

h2 {
  margin-top: 0;
  margin-bottom: 20px;

  font-size: clamp(34px, 5vw, 56px);
  line-height: 1.08;
}

h3 {
  margin-top: 0;

  font-size: 22px;
  line-height: 1.25;
}

.section-shell > p,
.section-light p {
  color: var(--muted);
}

/* =========================================
   CARDS
   ========================================= */

.cards {
  display: grid;
  gap: 20px;

  width: 100%;
}

.cards-3 {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

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

.card {
  min-width: 0;

  padding: 28px;

  background: var(--soft);

  border: 1px solid rgba(255, 255, 255, 0.10);
  border-radius: var(--radius);

  box-shadow: var(--shadow);
}

.card p {
  margin-bottom: 0;
  color: var(--muted);
}

/* =========================================
   PRICING
   ========================================= */

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 22px;

  width: 100%;
}

.pricing-grid > * {
  min-width: 0;
}

.price-card,
.pricing-card {
  padding: 30px;

  background: var(--soft);

  border: 1px solid rgba(255, 255, 255, 0.10);
  border-radius: var(--radius);
}

.price-card.featured,
.pricing-card.featured {
  border-color: var(--gold);
}

/* =========================================
   STEPS
   ========================================= */

.steps {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;

  width: 100%;
}

.step {
  min-width: 0;

  padding: 24px;

  background: var(--soft);

  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 18px;
}

/* =========================================
   SAMPLE / LOGO SECTION
   ========================================= */

.sample-section {
  padding-top: 80px;
  padding-bottom: 80px;
}

.sample-section img {
  max-width: 420px;
  margin: 30px auto;
}

/* =========================================
   FORMS
   ========================================= */

form {
  width: 100%;
  max-width: 760px;
}

input,
textarea,
select {
  width: 100%;

  padding: 14px 16px;

  color: var(--text);
  background: rgba(255, 255, 255, 0.05);

  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 12px;
}

textarea {
  min-height: 150px;
  resize: vertical;
}

/* =========================================
   FOOTER
   ========================================= */

.site-footer {
  width: 100%;

  padding: 35px 24px;

  background: #05080d;
  border-top: 1px solid var(--line);

  color: var(--muted);
  text-align: center;
}

.site-footer a {
  margin: 0 8px;
}

/* =========================================
   TABLET
   ========================================= */

@media (max-width: 900px) {

  .cards-3 {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

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

  .main-nav {
    gap: 14px;
  }

}

/* =========================================
   MOBILE
   ========================================= */

@media (max-width: 600px) {

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

  .site-header {
    width: 100% !important;
  }

  .site-header > * {
    width: 100% !important;
    max-width: 100% !important;
  }

  .brand img {
    width: 58px;
    height: 58px;
  }

  .main-nav {
    display: none;
  }

  main,
  section {
    width: 100% !important;
    max-width: 100% !important;
  }

  .hero,
  .section-shell,
  .sample-section {
    width: 100% !important;
    max-width: 100% !important;

    margin: 0 !important;

    padding-left: 22px !important;
    padding-right: 22px !important;
  }

  .hero {
    min-height: auto !important;

    padding-top: 55px !important;
    padding-bottom: 60px !important;

    align-items: flex-start;
  }

  .hero > div {
    width: 100% !important;
    max-width: 100% !important;
  }

  .eyebrow {
    margin-bottom: 20px;

    font-size: 13px;
    line-height: 1.6;
    letter-spacing: 0.17em;
  }

  .hero h1 {
    width: 100%;

    margin-bottom: 25px;

    font-size: 42px !important;
    line-height: 1.02 !important;
    letter-spacing: -0.035em;
  }

  .hero p {
    width: 100%;
    max-width: none;

    font-size: 18px;
    line-height: 1.5;
  }

  .section-shell {
    padding-top: 65px;
    padding-bottom: 65px;
  }

  h2 {
    font-size: 34px;
  }

  .cards,
  .cards-3,
  .cards-2,
  .pricing-grid,
  .steps {
    display: grid !important;
    grid-template-columns: 1fr !important;

    width: 100% !important;
  }

  .card,
  .step,
  .price-card,
  .pricing-card {
    width: 100% !important;
    max-width: 100% !important;

    padding: 22px;
  }

  .btn,
  .button,
  .cta-button {
    width: 100%;
    max-width: 390px;

    margin-bottom: 12px;
  }

  .sample-section img {
    width: 100%;
    max-width: 320px;
  }

}

/* =========================================
   VERY SMALL PHONES
   ========================================= */

@media (max-width: 380px) {

  .hero,
  .section-shell,
  .sample-section {
    padding-left: 18px !important;
    padding-right: 18px !important;
  }

  .hero h1 {
    font-size: 37px !important;
  }

  h2 {
    font-size: 31px;
  }

}
