/*
Theme Name: Growth Leader Core Lightning Child
Theme URI: https://makeday-kk.com/
Description: Lightning child theme for the Growth Leader Core one-page landing page.
Author: Growth Leader Core
Template: lightning
Version: 1.0.0
Requires at least: 6.5
Requires PHP: 7.4
Text Domain: growth-leader-core
*/

:root {
  --glc-navy: #0f2742;
  --glc-navy-2: #18385c;
  --glc-blue: #256b9f;
  --glc-green: #1f8a70;
  --glc-ink: #1f2933;
  --glc-muted: #5c6672;
  --glc-line: #dbe5ee;
  --glc-soft: #f4f8fb;
  --glc-soft-blue: #eaf4f8;
  --glc-white: #ffffff;
  --glc-radius: 8px;
  --glc-shadow: 0 18px 50px rgba(15, 39, 66, 0.12);
}

html {
  scroll-behavior: smooth;
}

body.glc-landing-page {
  margin: 0;
  color: var(--glc-ink);
  background: var(--glc-white);
  font-family: -apple-system, BlinkMacSystemFont, "Helvetica Neue", "Yu Gothic", YuGothic, Meiryo, sans-serif;
  line-height: 1.8;
  letter-spacing: 0;
}

.glc-landing-page * {
  box-sizing: border-box;
}

.glc-landing-page a {
  color: inherit;
}

.glc-container {
  width: min(100% - 40px, 1160px);
  margin: 0 auto;
}

.glc-site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  background: rgba(255, 255, 255, 0.96);
  border-bottom: 1px solid rgba(219, 229, 238, 0.9);
  backdrop-filter: blur(12px);
}

.glc-header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  min-height: 72px;
}

.glc-brand {
  display: inline-flex;
  flex-direction: column;
  justify-content: center;
  text-decoration: none;
}

.glc-brand-name {
  color: var(--glc-navy);
  font-size: 20px;
  font-weight: 800;
  line-height: 1.2;
}

.glc-brand-label {
  color: var(--glc-muted);
  font-size: 12px;
  font-weight: 700;
  line-height: 1.4;
}

.glc-nav {
  display: flex;
  align-items: center;
  gap: 22px;
  color: var(--glc-navy);
  font-size: 14px;
  font-weight: 700;
}

.glc-nav a {
  text-decoration: none;
}

.glc-nav a:hover,
.glc-nav a:focus-visible {
  color: var(--glc-blue);
}

.glc-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 14px 26px;
  border: 1px solid transparent;
  border-radius: var(--glc-radius);
  background: var(--glc-green);
  color: var(--glc-white);
  font-size: 16px;
  font-weight: 800;
  line-height: 1.25;
  text-align: center;
  text-decoration: none;
  transition: background 0.18s ease, border-color 0.18s ease, color 0.18s ease, transform 0.18s ease, box-shadow 0.18s ease;
}

.glc-button:hover,
.glc-button:focus-visible {
  background: #176f5a;
  color: var(--glc-white);
  box-shadow: 0 12px 28px rgba(31, 138, 112, 0.24);
  transform: translateY(-1px);
}

.glc-button--small {
  min-height: 42px;
  padding: 10px 18px;
  font-size: 14px;
}

.glc-button--secondary {
  background: var(--glc-navy);
}

.glc-button--secondary:hover,
.glc-button--secondary:focus-visible {
  background: var(--glc-navy-2);
  box-shadow: 0 12px 28px rgba(15, 39, 66, 0.22);
}

.glc-main {
  overflow: hidden;
}

.glc-hero {
  position: relative;
  padding: 92px 0 82px;
  color: var(--glc-white);
  background:
    linear-gradient(135deg, rgba(15, 39, 66, 0.96), rgba(24, 56, 92, 0.92)),
    radial-gradient(circle at 78% 26%, rgba(65, 153, 192, 0.25), transparent 30%);
}

.glc-hero::after {
  position: absolute;
  right: max(24px, calc((100vw - 1160px) / 2));
  bottom: 0;
  width: min(38vw, 430px);
  height: 72%;
  content: "";
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.13), rgba(255, 255, 255, 0.03)),
    repeating-linear-gradient(0deg, rgba(255, 255, 255, 0.18) 0 1px, transparent 1px 54px),
    repeating-linear-gradient(90deg, rgba(255, 255, 255, 0.16) 0 1px, transparent 1px 54px);
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-bottom: 0;
  border-radius: 8px 8px 0 0;
  opacity: 0.75;
}

.glc-hero-content {
  position: relative;
  z-index: 1;
  width: min(100%, 760px);
}

.glc-eyebrow {
  display: inline-flex;
  align-items: center;
  min-height: 32px;
  margin: 0 0 22px;
  padding: 5px 12px;
  border: 1px solid rgba(255, 255, 255, 0.25);
  border-radius: 999px;
  color: #d8edf5;
  font-size: 13px;
  font-weight: 800;
}

.glc-hero h1 {
  margin: 0;
  font-size: clamp(34px, 4.4vw, 58px);
  font-weight: 900;
  line-height: 1.18;
  letter-spacing: 0;
}

.glc-lead {
  margin: 26px 0 0;
  color: #e6eef5;
  font-size: 18px;
  line-height: 1.9;
}

.glc-hero-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 16px;
  margin-top: 34px;
}

.glc-note {
  max-width: 560px;
  margin: 18px 0 0;
  color: #c8d8e4;
  font-size: 14px;
}

.glc-center {
  text-align: center;
}

.glc-section {
  padding: 86px 0;
}

.glc-section--soft {
  background: var(--glc-soft);
}

.glc-section--blue {
  background: var(--glc-soft-blue);
}

.glc-section--navy {
  color: var(--glc-white);
  background: var(--glc-navy);
}

.glc-section-heading {
  width: min(100%, 780px);
  margin-bottom: 38px;
}

.glc-section-heading--center {
  margin-right: auto;
  margin-left: auto;
  text-align: center;
}

.glc-section-heading h2 {
  margin: 0;
  color: var(--glc-navy);
  font-size: clamp(27px, 3vw, 40px);
  font-weight: 900;
  line-height: 1.35;
  letter-spacing: 0;
}

.glc-section--navy .glc-section-heading h2 {
  color: var(--glc-white);
}

.glc-section-heading p {
  margin: 18px 0 0;
  color: var(--glc-muted);
  font-size: 17px;
}

.glc-section--navy .glc-section-heading p {
  color: #d8e6ee;
}

.glc-problem-list {
  display: grid;
  gap: 12px;
  width: min(100%, 720px);
  margin: 0;
  padding: 0;
  list-style: none;
}

.glc-problem-list li {
  padding: 18px 20px;
  border-left: 4px solid var(--glc-blue);
  background: var(--glc-white);
  color: var(--glc-navy);
  font-size: 18px;
  font-weight: 800;
  box-shadow: 0 8px 22px rgba(15, 39, 66, 0.06);
}

.glc-text-block {
  width: min(100%, 780px);
  margin-top: 28px;
  color: var(--glc-muted);
  font-size: 17px;
}

.glc-grid {
  display: grid;
  gap: 22px;
}

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

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

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

.glc-card {
  height: 100%;
  padding: 28px;
  border: 1px solid var(--glc-line);
  border-radius: var(--glc-radius);
  background: var(--glc-white);
  box-shadow: 0 12px 34px rgba(15, 39, 66, 0.07);
}

.glc-card h3 {
  margin: 0;
  color: var(--glc-navy);
  font-size: 21px;
  font-weight: 900;
  line-height: 1.45;
}

.glc-card p {
  margin: 14px 0 0;
  color: var(--glc-muted);
  font-size: 15.5px;
}

.glc-solution-card {
  padding: 24px;
  border-top: 4px solid var(--glc-green);
}

.glc-solution-card strong {
  display: block;
  color: var(--glc-navy);
  font-size: 18px;
  font-weight: 900;
}

.glc-skill-card {
  position: relative;
  padding-top: 58px;
}

.glc-skill-number {
  position: absolute;
  top: 24px;
  left: 28px;
  color: var(--glc-blue);
  font-size: 20px;
  font-weight: 900;
  line-height: 1;
}

.glc-service-card {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.glc-service-label {
  display: inline-flex;
  align-self: flex-start;
  min-height: 30px;
  padding: 4px 10px;
  border-radius: 999px;
  background: var(--glc-soft-blue);
  color: var(--glc-blue);
  font-size: 13px;
  font-weight: 900;
}

.glc-price {
  margin-top: auto;
  color: var(--glc-navy);
  font-size: 20px;
  font-weight: 900;
}

.glc-profile {
  display: grid;
  grid-template-columns: 0.9fr 1.4fr;
  gap: 42px;
  align-items: center;
}

.glc-profile-badge {
  padding: 34px;
  border-radius: var(--glc-radius);
  background: var(--glc-navy);
  color: var(--glc-white);
  box-shadow: var(--glc-shadow);
}

.glc-profile-badge strong {
  display: block;
  margin-bottom: 12px;
  font-size: 24px;
  font-weight: 900;
  line-height: 1.35;
}

.glc-profile-badge span {
  color: #d8e6ee;
  font-weight: 700;
}

.glc-profile-text p {
  margin: 0 0 18px;
  color: var(--glc-muted);
  font-size: 16.5px;
}

.glc-cta-box {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 28px;
  align-items: center;
  padding: 42px;
  border-radius: var(--glc-radius);
  background: linear-gradient(135deg, var(--glc-navy), var(--glc-navy-2));
  color: var(--glc-white);
  box-shadow: var(--glc-shadow);
}

.glc-cta-box h2 {
  margin: 0;
  font-size: clamp(25px, 3vw, 38px);
  font-weight: 900;
  line-height: 1.38;
  letter-spacing: 0;
}

.glc-cta-box p {
  margin: 16px 0 0;
  color: #d8e6ee;
}

.glc-faq {
  display: grid;
  gap: 14px;
}

.glc-faq details {
  border: 1px solid var(--glc-line);
  border-radius: var(--glc-radius);
  background: var(--glc-white);
}

.glc-faq summary {
  cursor: pointer;
  padding: 20px 24px;
  color: var(--glc-navy);
  font-weight: 900;
}

.glc-faq p {
  margin: 0;
  padding: 0 24px 22px;
  color: var(--glc-muted);
}

.glc-site-footer {
  padding: 34px 0 80px;
  color: #d8e6ee;
  background: #0b1d31;
}

.glc-footer-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  font-size: 13px;
}

.glc-mobile-cta {
  display: none;
}

@media (max-width: 980px) {
  .glc-nav a:not(.glc-button) {
    display: none;
  }

  .glc-hero::after {
    width: 48vw;
    opacity: 0.35;
  }

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

  .glc-profile,
  .glc-cta-box {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 720px) {
  .glc-container {
    width: min(100% - 28px, 1160px);
  }

  .glc-header-inner {
    min-height: 64px;
  }

  .glc-brand-name {
    font-size: 17px;
  }

  .glc-brand-label {
    font-size: 11px;
  }

  .glc-nav .glc-button {
    display: none;
  }

  .glc-hero {
    padding: 62px 0 64px;
  }

  .glc-hero::after {
    display: none;
  }

  .glc-eyebrow {
    font-size: 12px;
  }

  .glc-lead {
    font-size: 16px;
  }

  .glc-hero-actions,
  .glc-button {
    width: 100%;
  }

  .glc-section {
    padding: 62px 0;
  }

  .glc-section-heading {
    margin-bottom: 28px;
  }

  .glc-problem-list li {
    padding: 16px;
    font-size: 16px;
  }

  .glc-grid--2,
  .glc-grid--3,
  .glc-grid--4 {
    grid-template-columns: 1fr;
  }

  .glc-card {
    padding: 22px;
  }

  .glc-card h3 {
    font-size: 19px;
  }

  .glc-profile-badge,
  .glc-cta-box {
    padding: 28px 22px;
  }

  .glc-footer-inner {
    align-items: flex-start;
    flex-direction: column;
  }

  .glc-mobile-cta {
    position: fixed;
    right: 14px;
    bottom: 14px;
    left: 14px;
    z-index: 30;
    display: flex;
  }

  .glc-site-footer {
    padding-bottom: 106px;
  }
}
