/* ═══════════════════════════════════════════
   SEO Strategy & Consulting Page Styles
   ═══════════════════════════════════════════ */

/* ── Script/Italic Title Style ── */
.script-title {
  font-weight: 700;
  letter-spacing: -0.03em;
}

/* ══════════════════════════════
   1. HERO SECTION
   ══════════════════════════════ */
.strat-hero {
  position: relative;
  background: #ffffff;
  padding: 48px 0 36px;
  overflow: hidden;
}

.strat-hero__inner {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 40px;
  align-items: center;
}

.strat-hero__content {
  position: relative;
  z-index: 2;
}

.strat-hero__title {
  color: #000;
  font-size: 2.8rem;
  font-weight: 700;
  line-height: 1.15;
  margin-bottom: 24px;
  letter-spacing: -0.03em !important;
}

.strat-hero__title .text-green {
  color: #0A882E;
}

.strat-hero p {
  color: #475569;
  font-size: 1rem;
  line-height: 1.75;
  max-width: 460px;
  margin-bottom: 32px;
}

.strat-hero__buttons {
  display: flex;
  gap: 28px;
  align-items: center;
  flex-wrap: wrap;
}

.strat-hero__image {
  position: relative;
  z-index: 1;
}

.strat-hero__image img {
  width: 100%;
  height: auto;
  display: block;
  max-width: 600px;
  margin-left: auto;
}

/* ══════════════════════════════
   2. WHAT YOU GET
   ══════════════════════════════ */
.strat-whatyouget {
  padding: 56px 0;
  background: #F8F9FA;
}

.strat-whatyouget__header {
  text-align: center;
  max-width: 700px;
  margin: 0 auto 28px;
}

.strat-whatyouget__badge {
  display: inline-block;
  color: #0A882E;
  font-size: .75rem;
  font-weight: 700;
  letter-spacing: .15em;
  text-transform: uppercase;
  margin-bottom: 12px;
}

.strat-whatyouget__header h2 {
  font-size: 2.5rem;
  font-weight: 700;
  color: #000;
  margin-bottom: 12px;
}

.strat-whatyouget__header p {
  font-size: 1.05rem;
  color: #64748B;
  line-height: 1.7;
}

.strat-whatyouget__list {
  width: 100%;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.strat-whatyouget__item {
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 28px 32px;
  background: #fff;
  border: 1px solid #e9edf1;
  border-radius: 16px;
  transition: all .25s;
}

.strat-whatyouget__item:hover {
  box-shadow: 0 6px 20px rgba(0,0,0,.04);
  border-color: #d1d5db;
}

.strat-whatyouget__icon {
  width: 48px;
  height: 48px;
  min-width: 48px;
  background: #E8F5E9;
  color: #0A882E;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
}

.strat-whatyouget__text {
  flex: 1;
}

.strat-whatyouget__text h4 {
  font-size: 1rem;
  font-weight: 700;
  color: #1e293b;
  margin-bottom: 4px;
  text-align: left;
}

.strat-whatyouget__text p {
  font-size: .9rem;
  color: #64748B;
  line-height: 1.55;
  margin: 0;
}

.strat-whatyouget__num {
  width: 44px;
  height: 44px;
  min-width: 44px;
  background: #E8F5E9;
  color: #0A882E;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: .95rem;
  font-weight: 700;
  margin-left: auto;
}

/* ══════════════════════════════
   3. THE STRATEGIC DIFFERENCE
   ══════════════════════════════ */
.strat-difference {
  padding: 56px 0;
  background: #fff;
}

.strat-difference__header {
  text-align: center;
  max-width: 700px;
  margin: 0 auto 28px;
}

.strat-difference__header h2 {
  font-size: 2.5rem;
  font-weight: 700;
  color: #000;
  margin-bottom: 16px;
}

.strat-difference__header p {
  font-size: 1.05rem;
  color: #64748B;
  line-height: 1.7;
}

.strat-difference__table {
  width: 100%;
  margin: 0 auto;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 4px 30px rgba(0,0,0,.04);
  border: 1px solid #e2e8f0;
}

.strat-difference__thead {
  display: grid;
  grid-template-columns: 1fr 1fr;
  background: #f1f5f9;
}

.strat-difference__th {
  padding: 24px 32px;
  font-size: .85rem;
  font-weight: 700;
  color: #1e293b;
  letter-spacing: .08em;
  text-transform: uppercase;
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
}

.strat-difference__th--green {
  background: #0A882E;
  color: #fff;
}

.strat-difference__row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  border-bottom: 1px solid #f1f5f9;
  background: #fff;
}

.strat-difference__row:last-child {
  border-bottom: none;
}

.strat-difference__td {
  padding: 24px 32px;
  display: flex;
  align-items: center;
  font-size: .95rem;
  font-weight: 600;
  color: #1e293b;
  line-height: 1.5;
}

.strat-difference__td--trad {
  color: #64748B;
  border-right: 1px solid #f1f5f9;
}

.strat-difference__td--pro {
  justify-content: space-between;
}

.strat-difference__icon-trad {
  width: 36px;
  height: 36px;
  min-width: 36px;
  background: #E8F5E9;
  color: #0A882E;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: .9rem;
  margin-right: 24px;
}

.strat-difference__num {
  width: 32px;
  height: 32px;
  min-width: 32px;
  font-size: .75rem;
  border-radius: 50%;
  background: #E8F5E9;
  color: #0A882E;
}

/* ══════════════════════════════
   4. STRATEGIC FRAMEWORK (TABS)
   ══════════════════════════════ */
.strat-framework {
  padding: 56px 0;
  background: #F8F9FA;
}

.strat-framework__header {
  text-align: center;
  max-width: 900px;
  margin: 0 auto 40px;
}

.strat-framework__header h2 {
  font-size: 2.6rem;
  font-weight: 700;
  color: #000;
  margin-bottom: 12px;
  letter-spacing: -0.02em;
}

.strat-framework__header p {
  font-size: 1.05rem;
  color: #64748B;
  line-height: 1.7;
}

.strat-framework__container {
  width: 100%;
  margin: 0 auto;
  background: #fff;
  border: 1px solid #e2e8f0;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(0,0,0,.02);
}

.strat-framework__tabs {
  display: flex;
  border-bottom: 1px solid #f1f5f9;
  padding: 12px 24px;
}

.strat-framework__tab {
  flex: 1;
  padding: 16px;
  background: transparent;
  border: none;
  border-radius: 50px;
  font-size: .95rem;
  font-weight: 600;
  color: #64748B;
  cursor: pointer;
  transition: all .25s;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
}

.strat-framework__tab:hover {
  color: #0A882E;
}

.strat-framework__tab.active {
  background: #E8F5E9;
  color: #0A882E;
}

.strat-framework__panels {
  padding: 48px;
}

.strat-framework__panel {
  display: none;
}

.strat-framework__panel.active {
  display: block;
  animation: stratFadeIn .4s ease;
}

@keyframes stratFadeIn {
  from { opacity: 0; transform: translateY(12px); }
  to   { opacity: 1; transform: translateY(0); }
}

.strat-framework__panel-header {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 24px;
}

.strat-framework__panel-icon {
  width: 40px;
  height: 40px;
  min-width: 40px;
  background: #E8F5E9;
  color: #0A882E;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
}

.strat-framework__panel-title {
  font-size: 1.25rem;
  font-weight: 700;
  color: #000;
  white-space: nowrap;
}

.strat-framework__panel-line {
  flex-grow: 1;
  height: 1px;
  background: #e2e8f0;
}

.strat-framework__panel-desc {
  font-size: 1.05rem;
  color: #64748B;
  line-height: 1.7;
  margin-bottom: 32px;
}

.strat-framework__callout {
  background: #f8faf8;
  border: 1px solid #E8F5E9;
  border-radius: 12px;
  padding: 24px 32px;
  display: flex;
  align-items: flex-start;
  gap: 16px;
}

.strat-framework__callout-icon {
  color: #0A882E;
  font-size: 1.2rem;
  margin-top: 2px;
}

.strat-framework__callout-text {
  font-size: .95rem;
  color: #1e293b;
  line-height: 1.6;
}

.strat-framework__callout-text strong {
  color: #0A882E;
  font-weight: 700;
}

.strat-framework__steplist {
  border: 1px solid #e2e8f0;
  border-radius: 16px;
  background: #fff;
  overflow: hidden;
}

.strat-framework__stepitem {
  display: flex;
  align-items: flex-start;
  gap: 20px;
  padding: 28px 32px;
  border-bottom: 1px solid #e2e8f0;
}

.strat-framework__stepitem:last-child {
  border-bottom: none;
}

.strat-framework__stepitem-num {
  width: 34px;
  height: 34px;
  min-width: 34px;
  background: #15803d; /* dark green */
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: .95rem;
  font-weight: 700;
  box-shadow: 0 4px 10px rgba(21, 128, 61, 0.3);
  margin-top: 2px;
}

.strat-framework__stepitem-content h4 {
  font-size: 1.05rem;
  font-weight: 700;
  color: #000;
  margin-bottom: 6px;
  text-align: left;
}

.strat-framework__stepitem-content p {
  font-size: .95rem;
  color: #64748B;
  line-height: 1.6;
  margin: 0;
}

.strat-framework__stepitem--grid {
  display: grid;
  grid-template-columns: 34px 140px 1fr;
  align-items: center;
}

.strat-framework__stepitem--grid h4 {
  font-size: 1.05rem;
  font-weight: 700;
  color: #000;
  margin: 0;
  text-align: left;
}

.strat-framework__stepitem--grid p {
  font-size: .95rem;
  color: #64748B;
  line-height: 1.6;
  margin: 0;
}

.strat-framework__stepitem--grid .strat-framework__stepitem-num {
  margin-top: 0;
}

/* ══════════════════════════════
   5. WHAT YOU RECEIVE (CARDS)
   ══════════════════════════════ */
.strat-receive {
  padding: 56px 0;
  background: #fff;
}

.strat-receive__header {
  text-align: center;
  max-width: 700px;
  margin: 0 auto 28px;
}

.strat-receive__header h2 {
  font-size: 2.8rem;
  font-weight: 700;
  color: #000;
  margin-bottom: 12px;
  letter-spacing: -0.02em;
}

.strat-receive__header p {
  font-size: 1.05rem;
  color: #64748B;
  line-height: 1.7;
}

.strat-receive__list {
  display: flex;
  flex-direction: column;
  gap: 16px;
  width: 100%;
  margin: 0 auto;
}

.strat-receive__item {
  background: #FAFAFA;
  border: 1px solid #f1f5f9;
  border-radius: 16px;
  padding: 24px 32px;
  display: flex;
  align-items: center;
  gap: 24px;
}

.strat-receive__icon {
  width: 52px;
  height: 52px;
  min-width: 52px;
  background: #E8F5E9;
  color: #0A882E;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.25rem;
}

.strat-receive__text {
  flex-grow: 1;
}

.strat-receive__text h4 {
  font-size: 1.1rem;
  font-weight: 700;
  color: #000;
  margin-bottom: 6px;
  text-align: left;
}

.strat-receive__text p {
  font-size: .95rem;
  color: #64748B;
  line-height: 1.6;
  margin: 0;
}

/* ══════════════════════════════
   6. CTA
   ══════════════════════════════ */
.strat-cta {
  padding: 56px 0;
  background: #F8F9FA;
}

.strat-cta__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  width: 100%;
  margin: 0 auto;
}

.strat-cta__content {
  text-align: left;
}

.strat-cta__content h2 {
  font-size: 3.2rem;
  font-weight: 700;
  color: #000;
  line-height: 1.1;
  margin-bottom: 24px;
  letter-spacing: -0.02em;
  text-align: left;
}

.strat-cta__content p {
  font-size: 1.05rem;
  color: #64748B;
  line-height: 1.6;
  margin-bottom: 40px;
  max-width: 400px;
}

.strat-cta__trust-badge {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: .95rem;
  color: #475569;
  font-weight: 600;
  margin-bottom: 24px;
}

.strat-cta__trust-badge i {
  color: #0A882E;
  font-size: 1.1rem;
}

.strat-cta__logos {
  display: flex;
  align-items: center;
  gap: 32px;
}

.strat-cta__logo {
  display: flex;
  align-items: center;
  gap: 6px;
  color: #94a3b8;
  font-size: 1.1rem;
  font-weight: 600;
}

.strat-cta__form-wrapper {
  background: #fff;
  border-radius: 24px;
  padding: 40px;
  box-shadow: 0 20px 60px rgba(0,0,0,.04);
}

.strat-cta__form-group {
  margin-bottom: 24px;
}

.strat-cta__form-group label {
  display: block;
  font-size: .9rem;
  font-weight: 700;
  color: #0f172a;
  margin-bottom: 8px;
}

.strat-cta__form-group input {
  width: 100%;
  padding: 14px 16px;
  background: #f8fafc;
  border: 1px solid #f1f5f9;
  border-radius: 8px;
  font-size: .95rem;
  color: #333;
  outline: none;
  transition: all .2s;
}

.strat-cta__form-group input::placeholder {
  color: #94a3b8;
}

.strat-cta__form-group input:focus {
  background: #fff;
  border-color: #0A882E;
  box-shadow: 0 0 0 3px rgba(10,136,46,.1);
}

.strat-cta__submit {
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 8px;
  padding: 16px;
  background: #0A882E;
  color: #fff;
  font-size: 1rem;
  font-weight: 700;
  border: none;
  border-radius: 8px;
  cursor: pointer;
  transition: background .2s;
}

.strat-cta__submit:hover {
  background: #086a23;
}

/* ══════════════════════════════
   7. FAQ
   ══════════════════════════════ */
.strat-faq {
  padding: 56px 0;
  background: #fff;
}

.strat-faq__header {
  text-align: center;
  margin-bottom: 28px;
}

.strat-faq__header h2 {
  font-size: 2.5rem;
  font-weight: 700;
  color: #000;
}

.strat-faq__container {
  width: 100%;
  margin: 0 auto;
}

.strat-faq__wrapper {
  background: #fff;
  border: 1px solid #e2e8f0;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(0,0,0,.02);
}

.strat-faq__item {
  border-bottom: 1px solid #e2e8f0;
  transition: all .3s;
}

.strat-faq__item:last-child {
  border-bottom: none;
}

.strat-faq__question {
  width: 100%;
  padding: 32px;
  background: none;
  border: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  text-align: left;
}

.strat-faq__question span:first-child {
  font-size: 1.1rem;
  font-weight: 700;
  color: #000;
  flex: 1;
  padding-right: 20px;
}

.strat-faq__icon {
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  color: #64748B;
  transition: all .3s;
}

.strat-faq__item.active .strat-faq__icon {
  color: #0A882E;
}

.strat-faq__answer {
  padding: 0 32px 32px;
}

.strat-faq__answer p {
  font-size: .95rem;
  color: #64748B;
  line-height: 1.7;
  margin: 0;
}

/* ══════════════════════════════
   8. FINAL CTA
   ══════════════════════════════ */
.strat-final-cta {
  padding: 48px 0 56px;
  background: #fff;
}

.strat-final-cta__card {
  text-align: center;
  background: #F8FAF9;
  border: 1px solid #E8F5E9;
  border-radius: 20px;
  border-bottom: 8px solid #0A882E;
  padding: 80px 40px;
  width: 100%;
  margin: 0 auto;
}

.strat-final-cta__card h2 {
  font-size: 3rem;
  font-weight: 700;
  color: #000;
  margin-bottom: 20px;
  letter-spacing: -0.02em;
}

.strat-final-cta__card p {
  font-size: 1.1rem;
  color: #64748B;
  margin-bottom: 40px;
}

.strat-final-cta__btn {
  display: inline-block;
  padding: 18px 40px;
  background: #0A882E;
  color: #fff;
  font-weight: 700;
  font-size: 1.05rem;
  border-radius: 8px;
  transition: all .2s;
  text-decoration: none;
}

.strat-final-cta__btn:hover {
  background: #086a23;
  transform: translateY(-2px);
  color: #fff;
}

/* ══════════════════════════════
   RESPONSIVE
   ══════════════════════════════ */
@media (max-width: 1024px) {
  .strat-hero__inner {
    display: flex;
    flex-direction: column;
    gap: 40px;
  }
  .strat-hero__content {
    display: contents;
  }
  .strat-hero__title { order: 1; font-size: 2.2rem; text-align: center; }
  .strat-hero p { order: 2; margin: 0 auto 32px auto; text-align: center; }
  .strat-hero__image {
    order: 3;
  }
  .strat-hero__buttons { order: 4; justify-content: center; }
  .strat-hero__image img {
    max-width: 500px;
    margin: 0 auto;
  }
  .strat-receive__grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .strat-difference__table {
    font-size: .85rem;
  }
}

@media (max-width: 768px) {
  .strat-hero {
    padding: 60px 0 40px;
  }
  .strat-hero__title {
    font-size: 1.8rem;
  }
  .strat-whatyouget,
  .strat-difference,
  .strat-framework,
  .strat-receive,
  .strat-cta,
  .strat-faq {
    padding: 60px 0;
  }
  .strat-whatyouget__header h2,
  .strat-difference__header h2,
  .strat-framework__header h2,
  .strat-receive__header h2,
  .strat-cta__card h2,
  .strat-faq__header h2 {
    font-size: 1.8rem;
  }
  .strat-receive__item {
    padding: 20px 24px;
    gap: 16px;
  }
  .strat-difference__thead,
  .strat-difference__row {
    grid-template-columns: 1fr 1fr;
  }
  .strat-difference__th {
    padding: 16px 8px;
    font-size: 0.75rem;
  }
  .strat-difference__th:first-child {
    border-bottom: none;
  }
  .strat-difference__row {
    border-bottom: 1px solid #f1f5f9;
  }
  .strat-difference__td {
    padding: 16px 12px;
    justify-content: flex-start;
    align-items: flex-start;
    font-size: 0.85rem;
  }
  .strat-difference__td--trad {
    border-right: 1px solid #f1f5f9;
    border-bottom: none;
  }
  .strat-difference__icon-trad {
    width: 28px;
    height: 28px;
    min-width: 28px;
    font-size: 0.75rem;
    margin-right: 12px;
    border-radius: 6px;
  }
  .strat-difference__num {
    display: none;
  }
  .strat-whatyouget__item {
    padding: 20px 20px;
    gap: 14px;
  }
  .strat-whatyouget__num {
    display: none;
  }
  .strat-cta__grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .strat-cta__content h2 {
    font-size: 2.2rem;
  }
  .strat-cta__form-wrapper {
    padding: 24px;
  }
  .strat-framework__tabs {
    flex-direction: row;
    overflow-x: auto;
    padding: 16px 24px;
    gap: 12px;
    white-space: nowrap;
    -webkit-overflow-scrolling: touch;
    -ms-overflow-style: none;
    scrollbar-width: none;
    border-bottom: 1px solid #f1f5f9;
    /* Elegant fade effect on edges for mobile scrollability */
    -webkit-mask-image: linear-gradient(to right, transparent, black 24px, black calc(100% - 24px), transparent);
    mask-image: linear-gradient(to right, transparent, black 24px, black calc(100% - 24px), transparent);
  }
  .strat-framework__tabs::-webkit-scrollbar {
    display: none;
  }
  .strat-framework__tab {
    flex: 1 0 auto;
    padding: 12px 20px;
    font-size: .95rem;
    justify-content: center;
    background: #f1f5f9;
    border-radius: 50px;
    color: #475569;
    outline: none;
    border: 1px solid transparent;
  }
  .strat-framework__tab.active {
    background: #E8F5E9;
    color: #0A882E;
    border-color: #0A882E;
  }
  .strat-framework__tab:focus {
    outline: none;
  }
  .strat-framework__panels {
    padding: 24px;
  }
  .strat-framework__panel-header {
    flex-wrap: wrap;
  }
  .strat-framework__callout {
    padding: 20px;
    flex-direction: column;
    gap: 12px;
  }
  .strat-framework__stepitem {
    padding: 20px;
    gap: 14px;
  }
  .strat-framework__stepitem--grid {
    grid-template-columns: 1fr;
    gap: 12px;
  }
  .strat-framework__stepitem--grid .strat-framework__stepitem-num {
    margin-bottom: 8px;
  }
  .strat-final-cta__card {
    padding: 40px 24px;
  }
  .strat-final-cta__card h2 {
    font-size: 2.2rem;
  }
  .strat-final-cta__btn {
    width: 100%;
    padding: 16px 20px;
  }
  .strat-faq__question {
    padding: 24px 20px;
  }
  .strat-faq__question span:first-child {
    font-size: 1rem;
  }
  .strat-faq__answer {
    padding: 0 20px 24px;
  }
}

@media (max-width: 480px) {
  .strat-hero__title {
    font-size: 1.5rem;
  }
  .strat-hero__image img {
    max-width: 100%;
  }
}
