/* ============================================================
   SGL Lender Landing Page — styles/lender.css
   Namespaced with .sgl- to coexist with The7 parent theme
   Updated: 2026-03-22
   ============================================================ */

/* ─── Custom Properties ─────────────────────────────────────── */
.sgl-lender-article {
  --sgl-green: #266933;
  --sgl-navy: #0A4057;
  --sgl-purple: #7800D4;
  --sgl-pink: #CFA19C;
  --sgl-mint: #A2D3C8;
  --sgl-tan: #E6E2D9;
  --sgl-lime: #D8E483;
  --sgl-gold: #FFD200;
  --sgl-light-green: #C7EDDE;
  --sgl-white: #FFFFFF;
  --sgl-black: #000000;

  --sgl-font-heading: 'Barlow Condensed', sans-serif;
  --sgl-font-body: 'Roboto', sans-serif;
  --sgl-font-script: 'Quickpen', cursive;

  --sgl-max-width: 1200px;
  --sgl-gutter: 2rem;
}

/* ─── Article Reset ──────────────────────────────────────────── */
.sgl-lender-article {
  max-width: none;
  padding: 0;
  margin: 0;
  font-family: var(--sgl-font-body);
  color: var(--sgl-navy);
  line-height: 1.6;
}

/* Override The7's #main padding */
.single-sgl_lender #main {
  padding: 0;
  background: var(--sgl-white);
}

.single-sgl_lender .site-main {
  max-width: none;
  padding: 0;
  margin: 0;
}

/* Hide The7 page title */
.single-sgl_lender .page-title,
.single-sgl_lender .entry-title {
  display: none;
}

/* Full-bleed utility — breaks out of any parent container */
.sgl-full-bleed {
  width: 100vw;
  margin-left: 50%;
  transform: translateX(-50%);
}


/* ═══════════════════════════════════════════════════════════════
   HERO SECTION
   ═══════════════════════════════════════════════════════════════ */

.sgl-hero {
  position: relative;
  width: 100vw;
  margin-left: 50%;
  transform: translateX(-50%);
  background:
    url('/wp-content/uploads/2022/12/Texture_HomePage.png') repeat left 477px;
  background-color: var(--sgl-white);
  overflow: visible;
}

/* Background image — top portion only */
.sgl-hero__bg {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 615px;
  background-size: cover;
  background-position: center;
  z-index: 1;
}

/* Green pattern sidebar on left */
.sgl-hero__pattern {
  position: absolute;
  top: 476px;
  left: -45px;
  width: 184px;
  height: 200px;
  background-repeat: no-repeat;
  background-size: 184px 200px;
  z-index: 1;
}

/* Content container — heading + form side by side */
.sgl-hero__content {
  position: relative;
  z-index: 2;
  max-width: var(--sgl-max-width);
  margin: 0 auto;
  padding: 84px var(--sgl-gutter) 40px;
  display: flex;
  flex-direction: column;
  gap: 34px;
}

/* ─── Mint heading box ──────────────────────────────────────── */
.sgl-hero__heading-box {
  position: relative;
  background: var(--sgl-mint);
  padding: 32px 25px 50px 25px;
  max-width: 747px;
  width: 100%;
  border: 1px solid rgba(0,0,0,0.1);
  border-radius: 2px;
}

.sgl-hero__pink-accent {
  position: absolute;
  top: 254px;
  right: 10%;
  width: 30px;
  height: 45px;
  z-index: 3;
}

.sgl-hero__pink-accent img {
  width: 100%;
  height: auto;
  display: block;
}

.sgl-hero__title {
  display: block !important;
  visibility: visible !important;
  font-family: var(--sgl-font-heading);
  font-size: 80px;
  font-weight: 600;
  line-height: 80px;
  letter-spacing: -0.8px;
  color: var(--sgl-black);
  text-transform: uppercase;
  margin: 0;
  padding-bottom: 5px;
}

.sgl-hero__title span {
  display: block;
}

.sgl-hero__subtitle {
  display: block !important;
  font-family: var(--sgl-font-body);
  font-size: 23px;
  font-weight: 400;
  line-height: 32px;
  letter-spacing: -0.23px;
  color: var(--sgl-navy);
  margin: 0;
  position: absolute;
  top: 122px;
  left: 330px;
  right: 31px;
}

/* ─── Form area ─────────────────────────────────────────────── */
.sgl-hero__form-area {

  max-width: 964px;
  margin-left: auto;
  background: var(--sgl-tan);
  padding: 36px 51px;
}

.sgl-hero__form {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.sgl-form-row {
  display: flex;
  gap: 16px;
}

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

/* Bottom section: Questions spans 2 rows, Name/Email + actions on the right */
.sgl-form-grid-bottom {
  display: grid;
  grid-template-columns: 5fr 4fr 4fr;
  gap: 16px;
}

.sgl-form-group--questions {
  grid-row: 1 / 3;
}

.sgl-form-group--questions textarea {
  height: 100%;
}

.sgl-form-bottom-actions {
  grid-column: 2 / 4;
  display: flex;
  align-items: center;
  gap: 16px;
}

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

.sgl-form-row--submit {
  justify-content: flex-end;
  align-items: center;
  flex-wrap: wrap;
  gap: 16px;
}

.sgl-form-checkbox {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  flex: 1;
  cursor: pointer;
}

.sgl-form-checkbox input[type="checkbox"] {
  width: 22px;
  height: 22px;
  flex-shrink: 0;
  margin-top: 2px;
  border: 1px solid rgba(0,0,0,0.5);
  border-radius: 0;
  background: transparent;
  appearance: none;
  -webkit-appearance: none;
  cursor: pointer;
}

.sgl-form-checkbox input[type="checkbox"]:checked {
  background: var(--sgl-navy);
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='14' height='10' viewBox='0 0 14 10'%3E%3Cpath d='M1 5l4 4L13 1' stroke='%23fff' fill='none' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: center;
}

.sgl-form-checkbox span {
  font-family: var(--sgl-font-body);
  font-size: 14px;
  line-height: 1.4;
  color: var(--sgl-navy);
}

.sgl-form__note {
  font-family: var(--sgl-font-body);
  font-size: 18px;
  line-height: 1.5;
  text-align: center;
  color: var(--sgl-navy);
  margin: 16px 0 0;
}

.sgl-form__error {
  background: #fef2f2;
  border: 1px solid #fca5a5;
  color: #991b1b;
  padding: 12px 16px;
  border-radius: 6px;
  font-size: 14px;
  line-height: 1.5;
  margin: 16px 0 0;
}

.sgl-form__success {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 40px;
  background: var(--sgl-tan);
}

.sgl-form__success-icon {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: var(--sgl-green);
  color: var(--sgl-white);
  font-size: 32px;
  line-height: 64px;
  text-align: center;
  margin-bottom: 20px;
}

.sgl-form__success-message {
  font-family: var(--sgl-font-body);
  font-size: 20px;
  line-height: 1.5;
  color: var(--sgl-navy);
  max-width: 400px;
  margin: 0;
}

.sgl-form-group {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.sgl-form-group--full {
  flex: 1;
}

.sgl-form-group label {
  font-family: var(--sgl-font-heading);
  font-size: 23px;
  font-weight: 600;
  color: var(--sgl-black);
  text-transform: uppercase;
  letter-spacing: -0.23px;
  line-height: 32px;
}

.sgl-form-group input,
.sgl-form-group select,
.sgl-form-group textarea {
  font-family: var(--sgl-font-body);
  font-size: 15px;
  padding: 10px 12px;
  border: 1px solid rgba(0,0,0,0.5);
  border-radius: 0;
  background: transparent !important;
  background-color: transparent !important;
  color: var(--sgl-navy);
  appearance: none;
  -webkit-appearance: none;
}

.sgl-form-group input::placeholder,
.sgl-form-group textarea::placeholder {
  color: var(--sgl-navy);
  opacity: 0.7;
  font-style: italic;
}

/* Prevent browser autofill from changing field background */
.sgl-form-group input:-webkit-autofill,
.sgl-form-group input:-webkit-autofill:hover,
.sgl-form-group input:-webkit-autofill:focus,
.sgl-form-group textarea:-webkit-autofill {
  -webkit-box-shadow: 0 0 0 1000px var(--sgl-tan) inset !important;
  -webkit-text-fill-color: var(--sgl-navy) !important;
  transition: background-color 5000s ease-in-out 0s;
}

.sgl-form-group select {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%230A4057' fill='none' stroke-width='1.5'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 12px center;
  padding-right: 32px;
}

.sgl-form-group textarea {
  resize: vertical;
}

.sgl-form__submit {
  font-family: var(--sgl-font-heading);
  font-size: 23px;
  font-weight: 600;
  padding: 12px 40px;
  background: #004750;
  color: var(--sgl-light-green);
  border: none;
  border-radius: 10px;
  cursor: pointer;
  text-transform: uppercase;
  letter-spacing: -0.23px;
  transition: background-color 0.2s;
}

.sgl-form__submit:hover {
  background: #003840;
}

/* Purple bar — not in hero per Figma design, only in Why section */
.sgl-hero__purple-bar {
  display: none;
}


/* ═══════════════════════════════════════════════════════════════
   BIO SECTION
   ═══════════════════════════════════════════════════════════════ */

.sgl-bio {
  position: relative;
  width: 100vw;
  margin-left: 50%;
  transform: translateX(-50%);
  background: url('/wp-content/uploads/2022/12/Texture_HomePage.png') repeat;
  padding: 0;
  overflow: visible;
}


/* Green pattern strip — hidden, not in Figma design */
.sgl-bio__pattern {
  display: none;
}

.sgl-bio__content {
  position: relative;
  z-index: 2;
  max-width: var(--sgl-max-width);
  margin: 0 auto;
  padding: 0 var(--sgl-gutter);
  display: flex;
  gap: 50px;
  align-items: stretch;
}

.sgl-bio__headshot {
  flex: 0 0 340px;
  max-width: 340px;
  align-self: flex-start;
  padding-top: 60px;
}

.sgl-bio__headshot img {
  display: block;
  width: 100%;
  height: auto;
  object-fit: cover;
}

.sgl-bio__text-area {
  flex: 1;
  padding: 60px 0;
}

.sgl-bio__subtitle {
  font-family: var(--sgl-font-heading);
  font-size: 64px;
  font-weight: 600;
  letter-spacing: -1.28px;
  color: var(--sgl-black);
  text-transform: uppercase;
  line-height: 1;
  margin: -10px 0 0;
}

/* Heading area — carries the full-bleed texture that extends up into the hero */
.sgl-bio__heading-area {
  position: relative;
  padding-bottom: 68px;
  padding-right: 100px;
  text-align: center;
}


.sgl-bio__name {
  display: block !important;
  font-family: var(--sgl-font-script);
  font-size: 70px;
  font-weight: 400;
  color: var(--sgl-green);
  line-height: 1;
  letter-spacing: -1.4px;
  margin: 0 0 -5px;
}

.sgl-bio__body {
  position: relative;
  margin-top: 35px;
}

/* White overlay — covers from midpoint of gap to bottom of bio section */
.sgl-bio__body::before {
  content: '';
  position: absolute;
  left: -9999px;
  right: -9999px;
  top: -32px;
  bottom: -9999px;
  background: var(--sgl-white);
  z-index: -1;
}

.sgl-bio__body,
.sgl-bio__body p {
  font-family: var(--sgl-font-body);
  font-size: 23px;
  line-height: 34px;
  letter-spacing: -0.23px;
  color: var(--sgl-navy);
}

.sgl-bio__body {
  margin: 0;
}

.sgl-bio__body p {
  margin: 0 0 12px;
}

.sgl-bio__body p:last-child {
  margin-bottom: 0;
}


/* ═══════════════════════════════════════════════════════════════
   TESTIMONIALS SECTION
   ═══════════════════════════════════════════════════════════════ */

.sgl-testimonials {
  position: relative;
  width: 100vw;
  margin-left: 50%;
  transform: translateX(-50%);
  background: var(--sgl-white);
  padding: 70px 0 80px;
}

.sgl-testimonials__grid {
  max-width: var(--sgl-max-width);
  margin: 0 auto;
  padding: 0 var(--sgl-gutter);
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 30px;
}

.sgl-testimonial-card {
  background: var(--sgl-pink);
  border: none;
  padding: 35px 30px 30px;
  position: relative;
  display: flex;
  flex-direction: column;
}

.sgl-testimonial-card__quote-mark {
  display: block;
  width: 52px;
  height: 51px;
  margin: 0 auto 30px;
}

.sgl-testimonial-card__text {
  font-family: var(--sgl-font-body);
  font-size: 20px;
  line-height: 30px;
  letter-spacing: -0.2px;
  color: var(--sgl-white);
  margin: 0 0 20px;
  flex: 1;
}

.sgl-testimonial-card__attribution {
  font-family: var(--sgl-font-heading);
  font-size: 30px;
  font-weight: 600;
  color: var(--sgl-white);
  text-transform: uppercase;
  letter-spacing: -0.3px;
  line-height: 28px;
  text-align: right;
  margin: auto 0 0;
}

.sgl-testimonial-card__role {
  display: block;
  font-family: inherit;
  font-size: inherit;
  font-weight: inherit;
  letter-spacing: inherit;
  text-transform: none;
  color: var(--sgl-navy);
  margin-top: 0;
}


/* ═══════════════════════════════════════════════════════════════
   WHY CHOOSE US SECTION
   ═══════════════════════════════════════════════════════════════ */

.sgl-why {
  position: relative;
  width: 100vw;
  margin-left: 50%;
  transform: translateX(-50%);
  background-color: var(--sgl-white);
  background-size: auto;
  background-repeat: repeat;
  padding: 80px 0 0;
}

.sgl-why__heading {
  display: block !important;
  font-family: var(--sgl-font-heading);
  font-size: 64px;
  font-weight: 600;
  text-transform: uppercase;
  color: var(--sgl-black);
  text-align: left;
  max-width: var(--sgl-max-width);
  margin: 0 auto 50px;
  padding: 0 var(--sgl-gutter);
  line-height: 1;
  letter-spacing: -1.28px;
}

.sgl-why__content {
  max-width: var(--sgl-max-width);
  margin: 0 auto;
  padding: 0 var(--sgl-gutter);
  display: grid;
  grid-template-columns: 1fr 482px;
  gap: 30px 40px;
  align-items: start;
  overflow: visible;
}

.sgl-why__prop {
  grid-column: 1;
  display: flex;
  align-items: flex-start;
  gap: 32px;
}

/* First prop spans full width */
.sgl-why__prop--1 {
  grid-column: 1 / -1;
}

.sgl-why__arrow {
  width: 65px;
  height: 65px;
  flex-shrink: 0;
  transform: translateY(-15px);
}

.sgl-why__prop-content {
  flex: 1;
}

.sgl-why__prop-title {
  font-family: var(--sgl-font-script);
  font-size: 44px;
  font-weight: 400;
  color: var(--sgl-black);
  line-height: 1;
  letter-spacing: -0.88px;
  margin: 0 0 8px;
}

.sgl-why__prop-desc {
  font-family: var(--sgl-font-body);
  font-size: 23px;
  line-height: 34px;
  letter-spacing: -0.23px;
  color: var(--sgl-black);
  margin: 0;
  padding-left: 50px;
}

.sgl-why__image {
  grid-column: 2;
  grid-row: 2 / span 3;
  position: relative;
}

.sgl-why__image img {
  display: block;
  width: 100%;
  height: auto;
  object-fit: cover;
}

.sgl-why__image-bar {
  width: 200px;
  margin-top: -5px;
}

.sgl-why__image-bar img {
  width: 100%;
  height: auto;
  display: block;
}

.sgl-why__pink-accent {
  position: absolute;
  bottom: 40px;
  right: -25px;
  width: 50px;
  z-index: 2;
}

.sgl-why__pink-accent img {
  width: 100%;
  height: auto;
  display: block;
}


/* ═══════════════════════════════════════════════════════════════
   PRODUCTS SECTION
   ═══════════════════════════════════════════════════════════════ */

.sgl-products {
  position: relative;
  width: 100vw;
  margin-left: 50%;
  transform: translateX(-50%);
  background: url('/wp-content/uploads/2022/12/Texture_HomePage.png') repeat;
  padding: 120px 0;
}

/* White covers products below the title + first half of card row */
.sgl-products::after {
  content: '';
  position: absolute;
  left: 0;
  right: 0;
  top: 300px;
  bottom: 0;
  background: var(--sgl-white);
  z-index: 0;
}

.sgl-products__heading,
.sgl-products > * {
  position: relative;
  z-index: 1;
  max-width: var(--sgl-max-width);
  margin-left: auto;
  margin-right: auto;
  padding-left: var(--sgl-gutter);
  padding-right: var(--sgl-gutter);
}

.sgl-products__heading {
  display: block !important;
  font-family: var(--sgl-font-heading);
  font-size: 72px;
  font-weight: 600;
  text-transform: uppercase;
  color: var(--sgl-black);
  text-align: center;
  max-width: var(--sgl-max-width);
  margin: 0 auto 40px;
  padding: 0 var(--sgl-gutter);
  line-height: 1;
}

.sgl-products .loan-products {
  box-sizing: border-box;
}


/* ═══════════════════════════════════════════════════════════════
   RESPONSIVE — 1024px
   ═══════════════════════════════════════════════════════════════ */

@media (max-width: 1024px) {
  .sgl-hero__content {
    padding: 40px var(--sgl-gutter) 30px;
  }

  .sgl-hero__heading-box {
    max-width: 36rem;
  }

  .sgl-hero__title {
    display: block !important;
    font-size: 62px;
    line-height: 62px;
  }

  .sgl-hero__subtitle {
    position: static;
    display: block !important;
    margin: 15px 0 0;
  }

  .sgl-hero__form-area {
    max-width: 100%;
    margin-left: 0;
  }

  .sgl-form-row--thirds {
    grid-template-columns: 1fr 1fr;
  }

  .sgl-form-grid-bottom {
    grid-template-columns: 1fr 1fr !important;
  }

  .sgl-form-group--questions {
    grid-column: 1 / -1 !important;
    grid-row: auto !important;
  }

  .sgl-form-group--questions textarea {
    height: auto;
  }

  .sgl-form-bottom-actions {
    grid-column: 1 / -1;
    display: grid !important;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
  }

  .sgl-hero__purple-bar {
    margin-left: 40px;
  }

  /* Bio */
  .sgl-bio__content {
    flex-direction: column;
    gap: 0;
  }

  .sgl-bio__headshot {
    flex: none;
    max-width: 400px;
    width: 100%;
    order: -1;
    align-self: center;
    padding-top: 0;
  }

  .sgl-bio__headshot img {
    max-height: 50vh;
    object-fit: cover;
    object-position: top;
  }

  .sgl-bio__text-area {
    padding: 30px 0;
  }

  .sgl-bio__heading-area {
    padding-right: 0;
  }

  .sgl-bio__name {
    font-size: 56px;
  }

  .sgl-bio__subtitle {
    font-size: 48px;
  }

  .sgl-bio__body,
  .sgl-bio__body p {
    font-size: 20px;
    line-height: 30px;
  }

  /* Why Choose Us */
  .sgl-why__heading {
    font-size: 50px;
  }

  .sgl-why__content {
    display: flex;
    flex-direction: column;
    gap: 25px;
  }

  .sgl-why__prop--1 { order: 1; }
  .sgl-why__image   { order: 2; max-width: 400px; align-self: center; overflow: visible; }
  .sgl-why__prop--2 { order: 3; }
  .sgl-why__prop--3 { order: 4; }
  .sgl-why__prop--4 { order: 5; }

  .sgl-why__pink-accent {
    right: -20px;
    width: 40px;
  }
}


/* ═══════════════════════════════════════════════════════════════
   RESPONSIVE — 660px
   ═══════════════════════════════════════════════════════════════ */

@media (max-width: 660px) {
  .sgl-hero__pattern {
    width: 100px;
    height: 150px;
    background-size: 100px 110px;
    top: 300px;
    left: -20px;
  }

  .sgl-hero__content {
    padding: 30px 16px;
  }

  .sgl-hero__heading-box {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    padding: 25px 20px;
    max-width: 19rem;
  }

  .sgl-hero__title {
    font-size: 46px;
    line-height: 46px;
    max-width: none;
  }

  .sgl-hero__subtitle {
    font-size: 18px;
    line-height: 26px;
  }

  .sgl-hero__form-area {
    padding: 20px;
    max-width: 100%;
    margin-left: 0;
  }

  .sgl-form-group label {
    font-size: 16px;
    line-height: 24px;
  }

  .sgl-form-row--thirds {
    grid-template-columns: 1fr;
  }

  .sgl-form-grid-bottom {
    grid-template-columns: 1fr !important;
  }

  .sgl-form-group--questions {
    grid-row: auto !important;
  }

  .sgl-form-bottom-actions {
    display: flex !important;
    flex-direction: column;
    gap: 16px;
  }

  .sgl-hero__pink-accent {
    display: none;
    width: 25px;
    right: 5%;
    top: 180px;
  }

  .sgl-hero__purple-bar {
    margin-left: 20px;
    max-width: 200px;
  }

  /* Bio */
  .sgl-bio__pattern {
    width: 25px;
    background-size: 25px 28px;
  }

  .sgl-bio__content {
    flex-direction: column;
    padding: 0 16px;
    gap: 0;
  }

  .sgl-bio__headshot {
    flex: none;
    max-width: 100%;
    width: 100%;
  }

  .sgl-bio__text-area {
    padding: 30px 0;
  }

  .sgl-bio__name {
    font-size: 45px;
  }

  .sgl-bio__subtitle {
    font-size: 36px;
  }

  .sgl-bio__body,
  .sgl-bio__body p {
    font-size: 18px;
    line-height: 28px;
  }

  /* Testimonials */
  .sgl-testimonials {
    padding: 40px 0 50px;
  }

  .sgl-testimonials__grid {
    grid-template-columns: 1fr;
    padding: 0 16px;
  }

  .sgl-testimonial-card__attribution {
    font-size: 22px;
    line-height: 22px;
  }

  /* Why Choose Us */
  .sgl-why {
    padding: 50px 0 0;
  }

  .sgl-why__heading {
    font-size: 38px;
    padding: 0 16px;
  }

  .sgl-why__content {
    padding: 0 16px;
  }

  .sgl-why__content {
    display: flex;
    flex-direction: column;
    gap: 25px;
  }

  /* Mobile reorder: Relationship-Driven → image → Speed, Competitiveness, Flexibility */
  .sgl-why__prop--1 { order: 1; }
  .sgl-why__image   { order: 2; max-width: 100%; overflow: visible; }

  .sgl-why__pink-accent {
    right: -15px;
    width: 35px;
  }
  .sgl-why__prop--2 { order: 3; }
  .sgl-why__prop--3 { order: 4; }
  .sgl-why__prop--4 { order: 5; }

  .sgl-why__prop-title {
    font-size: 33px;
  }

  .sgl-why__prop-desc {
    font-size: 18px;
    line-height: 28px;
  }

  /* Products */
  .sgl-products {
    padding: 40px 0;
  }

  .sgl-products__heading {
    font-size: 42px;
  }
}


/* ═══════════════════════════════════════════════════════════════
   RESPONSIVE — 576px
   ═══════════════════════════════════════════════════════════════ */

@media (max-width: 576px) {
  /* Hero — smaller mint box */
  .sgl-hero__heading-box {
    max-width: 17rem;
    padding: 22px 18px;
  }

  .sgl-hero__title {
    font-size: 40px;
    line-height: 40px;
  }

  .sgl-hero__subtitle {
    margin-top: 0;
    padding-left: 3ch;
  }

  /* Form — tighter spacing, note matches field size */
  .sgl-hero__form {
    gap: 10px;
  }

  .sgl-form__note {
    font-size: 15px;
  }

  /* Bio */
  .sgl-bio__name {
    font-size: 38px;
  }

  .sgl-bio__subtitle {
    font-size: 36px;
  }

  /* Testimonials — halved top padding, smaller quotes */
  .sgl-testimonials {
    padding-top: 20px;
  }

  .sgl-testimonial-card__quote-mark {
    width: 42px;
    height: 41px;
    margin-bottom: 15px;
  }

  .sgl-testimonial-card__text {
    font-size: 16px;
    line-height: 24px;
  }

  /* Why Choose Us — smaller image, half-size arrows, no paragraph indent */
  .sgl-why__image {
    max-width: 80%;
  }
  .sgl-why__heading {
    font-size: 36px;
  }

  .sgl-why__arrow {
    width: 32px;
    height: 32px;
    transform: translateY(-7px);
  }

  .sgl-why__prop {
    gap: 22px;
  }

  .sgl-why__prop-desc {
    padding-left: 0;
  }

  .sgl-why__prop-title {
    font-size: 29px;
  }

  /* Products */
  .sgl-products__heading {
    font-size: 36px;
  }
}
