/* Conversion Fuel — design tokens lifted from the original Elementor kit. */
:root {
  --primary:   #6E1238;
  --secondary: #1E2E3D;
  --text:      #2B2B2B;
  --accent:    #C9922E;
  --white:     #FFFFFF;
  --gray:      #9A9FA4;
  --light:     #F1F2F4;
  --page-bg:   #1B1B1B;
  --container: 1140px;
  --sans: "Montserrat", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --body: "Roboto", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

*, *::before, *::after { box-sizing: border-box; }

html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }

body {
  margin: 0;
  background-color: var(--page-bg);
  color: var(--text);
  font-family: var(--sans);
  font-weight: 300;
  line-height: 1.6;
}

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

a { color: inherit; }

h1, h2, h3 { font-family: var(--sans); margin: 0 0 .5em; line-height: 1.2; }
h2 { font-size: 40px; font-weight: 700; }
h3 { font-weight: 400; }

p { margin: 0 0 1em; }

.container {
  max-width: var(--container);
  margin-inline: auto;
  padding-inline: 20px;
}

.sr-only {
  position: absolute; width: 1px; height: 1px;
  padding: 0; margin: -1px; overflow: hidden;
  clip: rect(0 0 0 0); white-space: nowrap; border: 0;
}

/* ---------------------------------------------------------------- header */
.site-header { background: var(--page-bg); padding: 18px 0; }

.site-header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
}

.site-logo img { width: 259px; max-width: 60vw; }

.site-nav ul {
  display: flex;
  align-items: center;
  gap: 20px;
  margin: 0; padding: 0;
  list-style: none;
  flex-wrap: wrap;
}

.site-nav a {
  font-family: var(--body);
  font-size: 20px;
  font-weight: 400;
  color: var(--white);
  text-decoration: none;
  transition: color .2s ease;
}

.site-nav a:hover,
.site-nav a:focus,
.site-nav a[aria-current="page"] { color: var(--accent); }

/* ---------------------------------------------------------------- buttons */
.btn {
  display: inline-block;
  background-color: var(--accent);
  color: var(--white);
  font-family: var(--body);
  font-weight: 500;
  font-size: 16px;
  line-height: 1;
  padding: 20px;
  border: 0;
  border-radius: 3px;
  text-decoration: none;
  cursor: pointer;
  transition: background-color .2s ease;
}

.btn:hover, .btn:focus { background-color: var(--secondary); color: var(--white); }

.btn--wide { padding: 20px 40px; }

/* ---------------------------------------------------------------- hero */
.hero { background: var(--page-bg); padding-bottom: 20px; }

.hero__grid {
  display: grid;
  grid-template-columns: 30% 1fr;
  gap: 40px;
  align-items: center;
}

.hero__photo img { border-radius: 4px; }

.hero h1 {
  font-size: 60px;
  font-weight: 700;
  color: var(--white);
  margin-bottom: .3em;
}

.hero ul {
  color: var(--white);
  font-family: var(--body);
  font-size: 18px;
  margin: 0 0 1.4em;
  padding-left: 1.2em;
}

/* ---------------------------------------------------------------- sections */
.section        { padding: 50px 0; }
.section--white { background: var(--white); }
.section--light { background: var(--light); }
.section--dark  { background: var(--text); }

.section--white h2 { color: var(--text); font-weight: 700; }
.section--light h2 { color: var(--accent); font-weight: 600; }
.section--dark  h2 { color: var(--white); font-weight: 600; }
.section--dark  p  { color: var(--white); }

.lede { max-width: 68ch; }

/* problems: heading + video, then three bordered cards */
.intro-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: center;
  margin-bottom: 40px;
}

.video-embed {
  position: relative;
  aspect-ratio: 16 / 9;
  border-radius: 8px;
  overflow: hidden;
  background: #000;
  border: 0;
  padding: 0;
  width: 100%;
  cursor: pointer;
  display: block;
}

.video-embed img,
.video-embed iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  border: 0;
}

.video-embed__play {
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  width: 68px; height: 48px;
  background: rgba(0, 0, 0, .7);
  border-radius: 12px;
  display: grid;
  place-items: center;
  transition: background-color .2s ease;
}

.video-embed:hover .video-embed__play { background: #C9922E; }

.video-embed__play::after {
  content: "";
  border-style: solid;
  border-width: 10px 0 10px 17px;
  border-color: transparent transparent transparent #fff;
  margin-left: 4px;
}

.card-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.card {
  border: 1px solid var(--gray);
  border-radius: 16px;
  padding: 24px 20px;
}

.card h3 { font-size: 20px; font-weight: 700; margin-bottom: .5em; }
.card p  { margin: 0; font-family: var(--body); }

/* approach: four icon + text columns */
.approach-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
  margin-top: 30px;
}

.approach-item img { width: 68px; margin-bottom: 12px; }
.approach-item strong { display: block; font-weight: 700; margin-bottom: .4em; }
.approach-item p { font-family: var(--body); margin: 0; }

/* results: three light cards on the dark band */
.results-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin: 34px 0;
}

.results-card {
  background: var(--light);
  border-radius: 16px;
  padding: 34px 20px;
  display: grid;
  place-items: center;
  text-align: center;
  min-height: 130px;
}

.results-card h3 {
  color: var(--text);
  font-size: 20px;
  font-weight: 700;
  margin: 0;
}

.center { text-align: center; }

/* about */
.about-grid {
  display: grid;
  grid-template-columns: 23% 1fr;
  gap: 40px;
  align-items: center;
}

.about-grid img { border-radius: 6px; }

.about-grid h2 {
  font-size: 60px;
  font-weight: 700;
  color: var(--accent);
}

.about-grid p {
  font-family: var(--body);
  font-weight: 400;
  color: var(--secondary);
}

/* ---------------------------------------------------------------- page banner */
.page-banner {
  background: var(--page-bg);
  padding: 40px 0 50px;
}

.page-banner h1 {
  font-size: 46px;
  font-weight: 700;
  line-height: 50px;
  color: var(--white);
  margin: 0;
  max-width: 22ch;
}

.page-banner--center h1 { max-width: none; text-align: center; }

/* ---------------------------------------------------------------- article */
.article { background: var(--white); }

.article h2 {
  font-size: 40px;
  font-weight: 700;
  color: var(--text);
  margin-top: 1.2em;
}

.article h2:first-child { margin-top: 0; }

.article h3 {
  font-size: 24px;
  font-weight: 700;
  color: var(--text);
  margin-top: 1.4em;
}

.article p,
.article li {
  font-family: var(--body);
  font-weight: 400;
  color: var(--text);
}

.article a { color: var(--primary); }

.article ul { padding-left: 1.3em; }
.article li { margin-bottom: .5em; }

.article figure { margin: 30px 0; }

.article__hero { margin-bottom: 30px; border-radius: 8px; overflow: hidden; }

.brandmark { max-width: 300px; margin: 24px 0; }

.legal { max-width: 820px; }
.legal h2 { font-size: 32px; }
.legal h3 { font-size: 20px; }
.legal .updated { color: var(--gray); font-family: var(--body); }

/* ---------------------------------------------------------------- contact */
.contact-form {
  max-width: 640px;
  font-family: var(--body);
}

.field { margin-bottom: 20px; }

.field > label,
.field > legend {
  display: block;
  font-weight: 500;
  color: var(--text);
  margin-bottom: 6px;
  padding: 0;
}

.field input,
.field textarea {
  width: 100%;
  font-family: var(--body);
  font-size: 16px;
  color: var(--text);
  padding: 12px 14px;
  border: 1px solid var(--gray);
  border-radius: 6px;
  background: var(--white);
}

.field input:focus,
.field textarea:focus {
  outline: 2px solid var(--accent);
  outline-offset: 1px;
  border-color: var(--accent);
}

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

.field fieldset { border: 0; padding: 0; margin: 0; }

.name-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.name-row .sub { font-size: 13px; color: var(--gray); margin-top: 4px; display: block; }

.hp { position: absolute; left: -9999px; }

/* ---------------------------------------------------------------- footer */
.site-footer {
  background: var(--page-bg);
  padding: 40px 0;
}

.site-footer .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
}

.site-footer img { width: 220px; }

.site-footer nav ul {
  display: flex;
  gap: 28px;
  margin: 0; padding: 0;
  list-style: none;
  flex-wrap: wrap;
}

.site-footer a {
  font-family: var(--sans);
  font-size: 16px;
  font-weight: 400;
  color: var(--white);
  text-decoration: none;
  transition: color .2s ease;
}

.site-footer a:hover, .site-footer a:focus { color: var(--accent); }

/* ---------------------------------------------------------------- responsive */
@media (max-width: 1024px) {
  .hero h1, .about-grid h2 { font-size: 46px; }
  .page-banner h1 { font-size: 38px; line-height: 1.2; }
  h2 { font-size: 32px; }
  .approach-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 767px) {
  .hero__grid,
  .intro-grid,
  .about-grid { grid-template-columns: 1fr; }

  .hero__photo { max-width: 320px; }
  .about-grid img { max-width: 260px; }

  .card-row,
  .results-grid,
  .approach-grid,
  .name-row { grid-template-columns: 1fr; }

  .hero h1, .about-grid h2 { font-size: 38px; }
  h2 { font-size: 28px; }
  .article h2 { font-size: 28px; }
  .site-nav a { font-size: 17px; }
  .site-nav ul { gap: 14px; }
  .site-header .container { justify-content: center; }
  .site-footer .container { justify-content: center; text-align: center; }
}
