/* ========================================
   SEO YOLO — Static Site Styles
   ======================================== */

/* Fonts */
@font-face {
  font-family: 'Behind The Nineties';
  font-style: normal;
  font-weight: 400;
  src: url('fonts/Behind-The-Nineties-Rg.otf') format('opentype');
  font-display: swap;
}
@font-face {
  font-family: 'Behind The Nineties';
  font-style: normal;
  font-weight: 500;
  src: url('fonts/Behind-The-Nineties-Md.otf') format('opentype');
  font-display: swap;
}
@font-face {
  font-family: 'Behind The Nineties';
  font-style: normal;
  font-weight: 600;
  src: url('fonts/Behind-The-Nineties-Smbd.otf') format('opentype');
  font-display: swap;
}
@font-face {
  font-family: 'Behind The Nineties';
  font-style: normal;
  font-weight: 700;
  src: url('fonts/Behind-The-Nineties-Bd.otf') format('opentype');
  font-display: swap;
}
@font-face {
  font-family: 'Behind The Nineties';
  font-style: normal;
  font-weight: 800;
  src: url('fonts/Behind-The-Nineties-Xbd.otf') format('opentype');
  font-display: swap;
}
@font-face {
  font-family: 'Behind The Nineties';
  font-style: normal;
  font-weight: 900;
  src: url('fonts/Behind-The-Nineties-Blk.otf') format('opentype');
  font-display: swap;
}

/* Reset & Base */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: 'Inter Tight', 'Behind The Nineties', -apple-system, BlinkMacSystemFont, sans-serif;
  color: #1e1e1e;
  background-color: #fefbf0;
  font-size: 18px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; height: auto; display: block; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }
h1, h2, h3, h4 { font-family: 'Behind The Nineties', sans-serif; line-height: 1.2; }

/* Container */
.container { max-width: 1200px; margin: 0 auto; padding: 0 24px; }
.container--narrow { max-width: 900px; margin: 0 auto; padding: 0 24px; }

/* Text underline effect */
.text-underline {
  position: relative;
  display: inline-block;
  z-index: 1;
}
.text-underline::before {
  width: 100%;
  position: absolute;
  left: 0;
  content: "";
  height: 12px;
  background-image: url('images/line.svg');
  bottom: 0;
  background-repeat: no-repeat;
  z-index: -1;
  border-radius: 30px;
}
.text-underline.white-bg::before {
  background-image: url('images/white-line.png');
}

/* ========================================
   HEADER
   ======================================== */
.header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: #fff;
  border-bottom: 1px solid #eee;
  padding: 12px 0;
}
.header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.header__logo img {
  max-height: 40px;
  width: auto;
}
.header__nav {
  display: flex;
  align-items: center;
  gap: 32px;
}
.header__nav a {
  font-family: 'Behind The Nineties', sans-serif;
  font-weight: 500;
  font-size: 15px;
  color: #1e1e1e;
  transition: color 0.2s;
}
.header__nav a:hover { color: #f7d147; }
.header__cta {
  background: #1e1e1e;
  color: #fff !important;
  padding: 10px 24px;
  border-radius: 50px;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.5px;
  transition: background 0.2s;
}
.header__cta:hover { background: #f7d147; color: #1e1e1e !important; }

/* Mobile menu toggle */
.header__toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  flex-direction: column;
  gap: 5px;
  padding: 4px;
}
.header__toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: #1e1e1e;
  transition: transform 0.3s;
}

/* ========================================
   HERO SECTION
   ======================================== */
.hero {
  padding: 80px 0 60px;
  background: #fefbf0;
}
.hero .container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}
.hero__content { max-width: 560px; }
.hero__title {
  font-size: 42px;
  font-weight: 700;
  line-height: 1.15;
  margin-bottom: 20px;
  color: #1e1e1e;
}
.hero__subtitle {
  font-size: 17px;
  color: #555;
  margin-bottom: 24px;
  line-height: 1.7;
  font-weight: 400;
}
.hero__bullets {
  margin-bottom: 28px;
}
.hero__bullets li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 15px;
  font-weight: 500;
  margin-bottom: 8px;
  color: #1e1e1e;
}
.hero__bullets li::before {
  content: "✓";
  color: #f7d147;
  font-weight: 700;
  font-size: 18px;
}
.hero__buttons {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}
.hero__image img {
  width: 100%;
  max-width: 520px;
  margin-left: auto;
}

/* Buttons */
.btn {
  display: inline-block;
  padding: 14px 32px;
  border-radius: 50px;
  font-family: 'Behind The Nineties', sans-serif;
  font-weight: 600;
  font-size: 15px;
  transition: all 0.2s;
  cursor: pointer;
  border: 2px solid transparent;
}
.btn--primary {
  background: #1e1e1e;
  color: #fff;
}
.btn--primary:hover { background: #f7d147; color: #1e1e1e; }
.btn--secondary {
  background: transparent;
  color: #1e1e1e;
  border-color: #1e1e1e;
}
.btn--secondary:hover { background: #1e1e1e; color: #fff; }

/* ========================================
   FEATURES (3 cards below hero)
   ======================================== */
.features {
  padding: 60px 0;
  background: #fefbf0;
}
.features__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}
.feature-card {
  background: #fff;
  border: 2px solid #1e1e1e;
  border-radius: 16px;
  padding: 32px 28px;
  text-align: center;
  box-shadow: 4px 4px 0 #1e1e1e;
  transition: transform 0.2s, box-shadow 0.2s;
}
.feature-card:hover {
  transform: translateY(-4px);
  box-shadow: 6px 6px 0 #1e1e1e;
}
.feature-card__icon {
  width: 56px;
  height: 56px;
  margin: 0 auto 16px;
}
.feature-card__title {
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 8px;
}
.feature-card__text {
  font-size: 14px;
  color: #555;
  line-height: 1.6;
}

/* ========================================
   SERVICE CARDS (Why Choose Us)
   ======================================== */
.service-cards {
  padding: 80px 0;
  background: #fefbf0;
}
.section-header {
  text-align: center;
  margin-bottom: 48px;
}
.section-header__title {
  font-size: 36px;
  font-weight: 700;
  margin-bottom: 12px;
}
.section-header__subtitle {
  font-size: 17px;
  color: #555;
  max-width: 700px;
  margin: 0 auto;
  line-height: 1.6;
}
.service-cards__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 24px;
}
.service-card {
  background: #fff;
  border: 2px solid #1e1e1e;
  border-radius: 16px;
  padding: 28px 24px;
  text-align: center;
  box-shadow: 4px 4px 0 #1e1e1e;
}
.service-card__icon {
  width: 48px;
  height: 48px;
  margin: 0 auto 12px;
}
.service-card__title {
  font-size: 16px;
  font-weight: 700;
  margin-bottom: 8px;
}
.service-card__text {
  font-size: 13px;
  color: #555;
  line-height: 1.5;
}

/* ========================================
   PROCESS TIMELINE
   ======================================== */
.process {
  padding: 80px 0;
  background: #fff;
}
.process .container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}
.process__steps { counter-reset: step; }
.process__step {
  display: flex;
  gap: 20px;
  margin-bottom: 32px;
  counter-increment: step;
}
.process__step-number {
  width: 48px;
  height: 48px;
  background: #f7d147;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Behind The Nineties', sans-serif;
  font-weight: 700;
  font-size: 20px;
  flex-shrink: 0;
}
.process__step-title {
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 4px;
}
.process__step-text {
  font-size: 14px;
  color: #555;
  line-height: 1.6;
}
.process__image img {
  width: 100%;
  max-width: 480px;
  margin: 0 auto;
}

/* ========================================
   TESTIMONIAL
   ======================================== */
.testimonial {
  padding: 80px 0;
  background: #1e1e1e;
  color: #fff;
}
.testimonial .container { text-align: center; max-width: 800px; }
.testimonial__stars {
  font-size: 28px;
  color: #f7d147;
  margin-bottom: 24px;
}
.testimonial__quote {
  font-size: 20px;
  font-style: italic;
  line-height: 1.7;
  margin-bottom: 24px;
  font-weight: 400;
}
.testimonial__author {
  font-family: 'Behind The Nineties', sans-serif;
  font-weight: 700;
  font-size: 18px;
}
.testimonial__company {
  font-size: 14px;
  color: #aaa;
  margin-top: 4px;
}

/* ========================================
   SERVICES LIST (with image)
   ======================================== */
.services-list {
  padding: 80px 0;
  background: #fefbf0;
}
.services-list .container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}
.services-list__title {
  font-size: 36px;
  font-weight: 700;
  margin-bottom: 32px;
}
.services-list__items {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.services-list__item {
  display: flex;
  gap: 16px;
  align-items: flex-start;
}
.services-list__item-number {
  width: 36px;
  height: 36px;
  background: #f7d147;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 14px;
  flex-shrink: 0;
}
.services-list__item-title {
  font-size: 16px;
  font-weight: 700;
  margin-bottom: 2px;
}
.services-list__item-text {
  font-size: 14px;
  color: #555;
  line-height: 1.5;
}
.services-list__image img {
  width: 100%;
  max-width: 480px;
  margin: 0 auto;
}

/* ========================================
   STATS
   ======================================== */
.stats {
  padding: 60px 0;
  background: #fff;
}
.stats__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  text-align: center;
}
.stat-card {
  padding: 40px 24px;
  border-radius: 16px;
}
.stat-card--yellow { background: #f7d147; }
.stat-card--dark { background: #1e1e1e; color: #fff; }
.stat-card--cream { background: #fefbf0; border: 2px solid #1e1e1e; }
.stat-card__number {
  font-family: 'Behind The Nineties', sans-serif;
  font-size: 42px;
  font-weight: 700;
  margin-bottom: 8px;
  position: relative;
  display: inline-block;
}
.stat-card__number::before {
  width: 100%;
  position: absolute;
  left: -10px;
  content: "";
  height: 12px;
  background-image: url('images/line.svg');
  bottom: 0;
  border-radius: 30px;
  background-repeat: no-repeat;
  z-index: -1;
}
.stat-card__text {
  font-size: 15px;
  line-height: 1.5;
}

/* ========================================
   CTA SECTION
   ======================================== */
.cta-section {
  padding: 80px 0;
  background: #f7d147;
  text-align: center;
}
.cta-section__title {
  font-size: 36px;
  font-weight: 700;
  margin-bottom: 12px;
}
.cta-section__text {
  font-size: 17px;
  margin-bottom: 28px;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}
.cta-section .btn--primary {
  background: #1e1e1e;
  color: #fff;
  padding: 16px 40px;
  font-size: 16px;
}
.cta-section .btn--primary:hover { background: #333; }

/* ========================================
   FAQ
   ======================================== */
.faq {
  padding: 80px 0;
  background: #fefbf0;
}
.faq__title {
  font-size: 36px;
  font-weight: 700;
  text-align: center;
  margin-bottom: 48px;
}
.faq__list {
  max-width: 800px;
  margin: 0 auto;
}
.faq__item {
  border-bottom: 1px solid #ddd;
  padding: 20px 0;
}
.faq__question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  font-family: 'Behind The Nineties', sans-serif;
  font-weight: 600;
  font-size: 17px;
  background: none;
  border: none;
  width: 100%;
  text-align: left;
  padding: 0;
  color: #1e1e1e;
}
.faq__question::after {
  content: "+";
  font-size: 24px;
  font-weight: 400;
  transition: transform 0.3s;
  flex-shrink: 0;
  margin-left: 16px;
}
.faq__item.active .faq__question::after {
  content: "−";
}
.faq__answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease, padding 0.3s ease;
  font-size: 15px;
  color: #555;
  line-height: 1.7;
}
.faq__item.active .faq__answer {
  max-height: 500px;
  padding-top: 12px;
}

/* ========================================
   FOOTER
   ======================================== */
.footer {
  background: #1a1a1a;
  color: #fff;
  padding: 60px 0 30px;
}
.footer__grid {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 40px;
  margin-bottom: 40px;
}
.footer__logo img {
  max-height: 36px;
  filter: brightness(0) invert(1);
  margin-bottom: 12px;
}
.footer__tagline {
  font-size: 13px;
  color: #aaa;
  line-height: 1.6;
}
.footer__heading {
  font-family: 'Behind The Nineties', sans-serif;
  font-weight: 700;
  font-size: 16px;
  margin-bottom: 16px;
}
.footer__links a {
  display: block;
  font-size: 14px;
  color: #ccc;
  margin-bottom: 10px;
  transition: color 0.2s;
}
.footer__links a:hover { color: #f7d147; }
.footer__social {
  display: flex;
  gap: 12px;
}
.footer__social a {
  width: 40px;
  height: 40px;
  border: 1px solid #444;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #ccc;
  transition: all 0.2s;
  font-size: 18px;
}
.footer__social a:hover {
  background: #f7d147;
  border-color: #f7d147;
  color: #1e1e1e;
}
.footer__divider {
  border: none;
  border-top: 1px solid #333;
  margin-bottom: 20px;
}
.footer__bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 13px;
  color: #888;
}
.footer__legal { display: flex; gap: 20px; }
.footer__legal a { color: #888; transition: color 0.2s; }
.footer__legal a:hover { color: #f7d147; }

/* ========================================
   PAGE HERO (inner pages)
   ======================================== */
.page-hero {
  padding: 60px 0;
  background: #fefbf0;
}
.page-hero .container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}
.page-hero__title {
  font-size: 38px;
  font-weight: 700;
  margin-bottom: 16px;
}
.page-hero__text {
  font-size: 16px;
  color: #555;
  line-height: 1.7;
  margin-bottom: 24px;
}
.page-hero__image img {
  width: 100%;
  max-width: 480px;
  margin-left: auto;
}

/* ========================================
   TEAM SECTION
   ======================================== */
.team {
  padding: 80px 0;
  background: #fff;
}
.team__grid {
  display: flex;
  justify-content: center;
  gap: 40px;
  flex-wrap: wrap;
}
.team-card {
  background: #fefbf0;
  border: 2px solid #1e1e1e;
  border-radius: 16px;
  padding: 32px;
  text-align: center;
  max-width: 320px;
  box-shadow: 4px 4px 0 #1e1e1e;
}
.team-card__image {
  width: 120px;
  height: 120px;
  border-radius: 50%;
  object-fit: cover;
  margin: 0 auto 16px;
}
.team-card__name {
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 4px;
}
.team-card__role {
  font-size: 14px;
  color: #f7d147;
  font-weight: 600;
  margin-bottom: 12px;
}
.team-card__bio {
  font-size: 14px;
  color: #555;
  line-height: 1.6;
}

/* ========================================
   WHY US (feature cards - about page)
   ======================================== */
.why-us {
  padding: 80px 0;
  background: #fefbf0;
}

/* ========================================
   SERVICES PAGE
   ======================================== */
.services-detail {
  padding: 80px 0;
  background: #fefbf0;
}
.services-detail__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}
.service-detail-card {
  background: #fff;
  border: 2px solid #1e1e1e;
  border-radius: 16px;
  padding: 32px 24px;
  box-shadow: 4px 4px 0 #1e1e1e;
}
.service-detail-card__title {
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 12px;
}
.service-detail-card__text {
  font-size: 14px;
  color: #555;
  line-height: 1.6;
}

/* ========================================
   CONTACT PAGE
   ======================================== */
.contact {
  padding: 80px 0;
  background: #fefbf0;
}
.contact .container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: start;
}
.contact__form {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.contact__form input,
.contact__form textarea {
  width: 100%;
  padding: 14px 18px;
  border: 2px solid #1e1e1e;
  border-radius: 12px;
  font-family: inherit;
  font-size: 15px;
  background: #fff;
  transition: border-color 0.2s;
}
.contact__form input:focus,
.contact__form textarea:focus {
  outline: none;
  border-color: #f7d147;
}
.contact__form textarea { min-height: 150px; resize: vertical; }
.contact__form button {
  align-self: flex-start;
}
.contact__info { padding-top: 20px; }
.contact__info-item {
  margin-bottom: 24px;
}
.contact__info-label {
  font-family: 'Behind The Nineties', sans-serif;
  font-weight: 700;
  font-size: 16px;
  margin-bottom: 4px;
}
.contact__info-value {
  font-size: 15px;
  color: #555;
}
.contact__image img {
  width: 100%;
  max-width: 400px;
  margin-top: 32px;
}

/* ========================================
   BLOG LISTING
   ======================================== */
.blog-listing {
  padding: 80px 0;
  background: #fefbf0;
}
.blog-listing__title {
  font-size: 36px;
  font-weight: 700;
  text-align: center;
  margin-bottom: 48px;
}
.blog-listing__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}
.blog-card {
  background: #fff;
  border: 2px solid #1e1e1e;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 4px 4px 0 #1e1e1e;
  transition: transform 0.2s, box-shadow 0.2s;
}
.blog-card:hover {
  transform: translateY(-4px);
  box-shadow: 6px 6px 0 #1e1e1e;
}
.blog-card__image {
  width: 100%;
  aspect-ratio: 16/9;
  object-fit: cover;
}
.blog-card__body { padding: 20px; }
.blog-card__category {
  display: inline-block;
  background: #f7d147;
  color: #1e1e1e;
  font-size: 11px;
  font-weight: 700;
  padding: 4px 10px;
  border-radius: 50px;
  margin-bottom: 10px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}
.blog-card__title {
  font-size: 17px;
  font-weight: 700;
  margin-bottom: 8px;
  line-height: 1.3;
}
.blog-card__title a:hover { color: #f7d147; }
.blog-card__excerpt {
  font-size: 13px;
  color: #555;
  line-height: 1.6;
  margin-bottom: 12px;
}
.blog-card__meta {
  font-size: 12px;
  color: #999;
}

/* ========================================
   RESPONSIVE
   ======================================== */
@media (max-width: 992px) {
  .hero .container,
  .process .container,
  .services-list .container,
  .page-hero .container,
  .contact .container {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .hero__image, .page-hero__image { order: -1; }
  .hero__image img, .page-hero__image img, .process__image img, .services-list__image img {
    max-width: 400px;
    margin: 0 auto;
  }
  .features__grid,
  .services-detail__grid,
  .blog-listing__grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .stats__grid { grid-template-columns: 1fr; max-width: 400px; margin: 0 auto; }
  .footer__grid { grid-template-columns: 1fr; gap: 24px; }
  .footer__bottom { flex-direction: column; gap: 12px; text-align: center; }
}

@media (max-width: 768px) {
  .header__nav { display: none; }
  .header__nav.active {
    display: flex;
    flex-direction: column;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: #fff;
    padding: 24px;
    gap: 16px;
    border-bottom: 1px solid #eee;
    box-shadow: 0 4px 12px rgba(0,0,0,0.08);
  }
  .header__toggle { display: flex; }

  .hero__title { font-size: 32px; }
  .section-header__title, .faq__title, .services-list__title,
  .page-hero__title, .cta-section__title, .blog-listing__title { font-size: 28px; }

  .features__grid,
  .service-cards__grid,
  .services-detail__grid,
  .blog-listing__grid {
    grid-template-columns: 1fr;
  }
}

/* ========================================
   COOKIE CONSENT
   ======================================== */
.cookie-consent {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: #fff;
  padding: 18px 24px;
  box-shadow: 0 -2px 10px rgba(0,0,0,0.08);
  z-index: 8000;
  display: flex;
  align-items: center;
  gap: 24px;
  font-size: 15px;
}
.cookie-consent.hidden { display: none; }
.cookie-consent__buttons { display: flex; gap: 12px; flex-shrink: 0; }
.cookie-consent__accept {
  padding: 12px 24px;
  background: #1a1a1a;
  color: #fff;
  border: none;
  border-radius: 6px;
  font-size: 15px;
  font-weight: 600;
  cursor: pointer;
}
.cookie-consent__decline {
  padding: 12px 24px;
  background: #fff;
  color: #374151;
  border: 2px solid #d1d5db;
  border-radius: 6px;
  font-size: 15px;
  font-weight: 600;
  cursor: pointer;
}

/* ========================================
   BREADCRUMB
   ======================================== */
.breadcrumb {
  padding: 14px 0;
  background: #fefbf0;
  font-size: 14px;
  color: #999;
}
.breadcrumb a {
  color: #666;
  transition: color 0.2s;
}
.breadcrumb a:hover { color: #f7d147; }
.breadcrumb__sep { margin: 0 8px; }
.breadcrumb__current { color: #1e1e1e; font-weight: 500; }

/* ========================================
   INDUSTRY HERO
   ======================================== */
.industry-hero {
  padding: 80px 0 48px;
  background: #fefbf0;
  text-align: center;
}
.industry-hero h1 {
  font-size: 42px;
  font-weight: 700;
  line-height: 1.15;
  max-width: 800px;
  margin: 0 auto 20px;
}
.industry-hero__subtitle {
  font-size: 20px;
  color: #555;
  max-width: 660px;
  margin: 0 auto 32px;
  line-height: 1.7;
  font-weight: 400;
}

/* ========================================
   TRUST STRIP
   ======================================== */
.trust-strip {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 6px 20px;
  margin-top: 32px;
  font-size: 14px;
  font-weight: 500;
  color: #1e1e1e;
}
.trust-strip span {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  white-space: nowrap;
}
.trust-strip span::before {
  content: "\2713";
  color: #f7d147;
  font-weight: 700;
  font-size: 16px;
}

/* ========================================
   INDUSTRY CONTENT SECTIONS
   ======================================== */
.industry-content {
  padding: 64px 0;
  background: #fff;
}
.industry-content--alt {
  background: #fefbf0;
}
.industry-content h2 {
  font-size: 32px;
  font-weight: 700;
  margin-bottom: 24px;
  line-height: 1.2;
}
.industry-content p {
  font-size: 18px;
  color: #555;
  line-height: 1.8;
  margin-bottom: 16px;
}
.industry-content p:last-child {
  margin-bottom: 0;
}
.industry-content strong {
  color: #1e1e1e;
}
.industry-content a {
  color: #1e1e1e;
  text-decoration: underline;
  text-decoration-color: #f7d147;
  text-underline-offset: 3px;
  text-decoration-thickness: 2px;
  font-weight: 500;
  transition: color 0.2s;
}
.industry-content a:hover {
  color: #f7d147;
}
.industry-terms {
  margin-top: 24px;
  padding-top: 20px;
  border-top: 1px solid #eee;
  font-size: 14px;
  color: #888;
  line-height: 1.8;
}
.industry-terms strong {
  color: #666;
}

/* ========================================
   INDUSTRY CARDS (What's Included)
   ======================================== */
.industry-cards {
  padding: 80px 0;
  background: #fff;
}
.industry-cards .service-cards__grid {
  grid-template-columns: repeat(3, 1fr);
}
.industry-cards .service-card {
  text-align: left;
}
.industry-cards .service-card__title {
  font-size: 19px;
  margin-bottom: 10px;
}
.industry-cards .service-card__text {
  font-size: 16px;
  line-height: 1.6;
}
.industry-cards a {
  color: #1e1e1e;
  text-decoration: underline;
  text-decoration-color: #f7d147;
  text-underline-offset: 2px;
  text-decoration-thickness: 2px;
  transition: color 0.2s;
}
.industry-cards a:hover { color: #f7d147; }
.industry-note {
  text-align: center;
  font-size: 13px;
  color: #888;
  margin-top: 32px;
  font-style: italic;
}

/* ========================================
   PROCESS (no image variant)
   ======================================== */
.process--no-image .container {
  grid-template-columns: 1fr;
  max-width: 800px;
}
.process--no-image .section-header {
  text-align: center;
}

/* ========================================
   PROOF SECTION (Why SEO YOLO intro)
   ======================================== */
.proof-intro {
  padding: 64px 0 0;
  background: #fff;
  text-align: center;
}
.proof-intro h2 {
  font-family: 'Behind The Nineties', sans-serif;
  font-size: 32px;
  font-weight: 700;
  margin-bottom: 16px;
}
.proof-intro p {
  font-size: 18px;
  color: #555;
  line-height: 1.8;
  max-width: 700px;
  margin: 0 auto;
}
.proof-intro a {
  color: #1e1e1e;
  text-decoration: underline;
  text-decoration-color: #f7d147;
  text-underline-offset: 3px;
  text-decoration-thickness: 2px;
  font-weight: 500;
  transition: color 0.2s;
}
.proof-intro a:hover { color: #f7d147; }

/* ========================================
   CTA SECONDARY LINE
   ======================================== */
.cta-section__secondary {
  font-size: 14px;
  color: #555;
  margin-top: 16px;
}
.cta-section__secondary a {
  color: #1e1e1e;
  text-decoration: underline;
  font-weight: 500;
}

/* ========================================
   INDUSTRY PAGE RESPONSIVE
   ======================================== */
@media (max-width: 992px) {
  .industry-cards .service-cards__grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .process--no-image .container {
    max-width: 100%;
  }
}
@media (max-width: 768px) {
  .industry-hero h1 { font-size: 30px; }
  .industry-hero__subtitle { font-size: 16px; }
  .industry-content h2, .proof-intro h2 { font-size: 26px; }
  .trust-strip { gap: 4px 16px; font-size: 13px; }
  .industry-cards .service-cards__grid {
    grid-template-columns: 1fr;
  }
}
