/* ==============================================
   MEO Dash Landing Page Styles
   - .meo- prefix to avoid conflicts with common.css
   ============================================== */

/* ---- Header fix: box-sizing mismatch with common.css ---- */
/* common.css expects border-box for .radius_btn/.radius_btns,
   but without a global reset they default to content-box,
   making the header ~30px taller than intended. */
.radius_btn,
.radius_btns {
  box-sizing: border-box !important;
}

/* Color Variables */
:root {
  --meo-primary: #00b4c5;
  --meo-primary-dark: #00a8b8;
  --meo-secondary: #005BAC;
  --meo-accent: #ff8c00;
  --meo-light-gray: #f5f7fa;
  --meo-dark: #333333;
  --meo-text: #444444;
  --meo-border: #e0e0e0;
  --meo-white: #ffffff;
}

/* ---- Hero / KV Section ---- */
.meo-hero {
  position: relative;
  min-height: 400px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--meo-white);
  overflow: hidden;
  background-size: cover;
  background-position: center;
  padding: 90px 0 32px;
}

.meo-hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 40, 60, 0.35);
  z-index: 1;
}

.meo-hero-inner {
  position: relative;
  z-index: 2;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  display: flex;
  gap: 40px;
  align-items: center;
  width: 100%;
}

.meo-hero-inner--center {
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.meo-hero-left {
  flex: 1;
  min-width: 0;
}

.meo-hero-logos {
  display: inline-flex;
  align-items: stretch;
  margin-bottom: 14px;
  background: rgba(255, 255, 255, 0.97);
  border-radius: 0;
  box-shadow: none;
  overflow: hidden;
}

.meo-logo-wrap {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 14px 32px;
}

.meo-logo-sep {
  width: 1px;
  background: rgba(0, 0, 0, 0.1);
  flex-shrink: 0;
}

.meo-logo {
  max-height: 58px;
  width: auto;
}

.gmo-logo {
  max-height: 38px;
  width: auto;
}

.meo-hero-title {
  font-size: 38px;
  font-weight: 700;
  line-height: 1.3;
  margin-bottom: 12px;
  letter-spacing: -0.5px;
  color: var(--meo-white);
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.35);
}

.meo-hero-badge {
  margin-bottom: 0;
}

.meo-hero-badge img {
  max-width: 110px;
  height: auto;
}

.meo-no1-badges {
  margin-top: 0;
}

.meo-no1-badges img {
  max-width: 340px;
  width: 100%;
  height: auto;
}

.meo-hero-right {
  flex: 0 0 420px;
  max-width: 420px;
}

/* ---- Form Card ---- */
.meo-form-card {
  background: var(--meo-white);
  border-radius: 12px;
  padding: 28px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.2);
}

.meo-form-header {
  margin-bottom: 20px;
  text-align: center;
}

.meo-form-header img {
  max-width: 100%;
  height: auto;
}

.meo-form {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.meo-form-group {
  display: flex;
  flex-direction: column;
}

.meo-form-group label {
  font-size: 13px;
  font-weight: 600;
  margin-bottom: 6px;
  color: var(--meo-dark);
}

.meo-form-group input {
  padding: 10px 14px;
  border: 1px solid var(--meo-border);
  border-radius: 6px;
  font-size: 14px;
  font-family: inherit;
  transition: border-color 0.3s ease;
  background: var(--meo-white);
  color: var(--meo-dark);
}

.meo-form-group input:focus {
  outline: none;
  border-color: var(--meo-primary);
  box-shadow: 0 0 0 3px rgba(0, 180, 197, 0.15);
}

.meo-form-group .meo-input-error {
  border-color: #e74c3c;
}

.meo-form-error-msg {
  color: #e74c3c;
  font-size: 12px;
  margin-top: 4px;
}

.meo-form-submit {
  margin-top: 8px;
  width: 100%;
  padding: 14px 20px;
  border: none;
  border-radius: 6px;
  background: linear-gradient(135deg, var(--meo-primary) 0%, var(--meo-primary-dark) 100%);
  color: var(--meo-white);
  font-size: 16px;
  font-weight: 700;
  cursor: pointer;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  font-family: inherit;
}

.meo-form-submit:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(0, 180, 197, 1);
}

/* ---- Section Common ---- */
.meo-section {
  padding: 70px 0;
}

.meo-section--gray {
  background-color: var(--meo-light-gray);
}

.meo-section--gradient {
  background: var(--meo-white);
  color: var(--meo-dark);
}

.meo-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.meo-section-title {
  font-size: 34px;
  font-weight: 700;
  text-align: center;
  margin-bottom: 16px;
  line-height: 1.4;
  color: var(--meo-dark);
}

.meo-section-title--white {
  color: var(--meo-white);
}

.meo-subtitle {
  font-size: 17px;
  text-align: center;
  color: var(--meo-text);
  margin-bottom: 40px;
}

.meo-subtitle--white {
  color: rgba(255, 255, 255, 0.9);
}

/* ---- Why MEO Section ---- */
.meo-why-content {
  display: flex;
  gap: 50px;
  align-items: center;
  margin: 40px 0;
}

.meo-why-left {
  flex: 0 0 280px;
  text-align: center;
}

.meo-why-left img {
  max-width: 100%;
  height: auto;
}

.meo-why-right {
  flex: 1;
  min-width: 0;
}

.meo-why-right p {
  margin-bottom: 18px;
  font-size: 15px;
  line-height: 1.9;
  color: var(--meo-text);
}

.meo-comparison {
  margin-top: 40px;
  text-align: center;
}

.meo-comparison img {
  max-width: 100%;
  height: auto;
}

/* ---- What is MEO Section ---- */
.meo-what-content {
  display: flex;
  gap: 50px;
  align-items: center;
  margin: 40px 0;
}

.meo-what-image {
  flex: 0 0 380px;
  text-align: center;
}

.meo-what-image img {
  max-width: 100%;
  height: auto;
  border-radius: 8px;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08);
}

.meo-what-text {
  flex: 1;
  min-width: 0;
}

.meo-what-text p {
  margin-bottom: 18px;
  font-size: 15px;
  line-height: 1.9;
  color: var(--meo-text);
}

/* ---- Effectiveness Section ---- */
.meo-effectiveness-content {
  display: flex;
  flex-direction: column;
  gap: 40px;
  align-items: center;
  margin-top: 40px;
}

.meo-action-rate,
.meo-user-flow {
  width: 100%;
  max-width: 800px;
  background: var(--meo-white);
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.07);
  border: 1px solid var(--meo-border);
}

.meo-action-rate img,
.meo-user-flow img {
  display: block;
  width: 100%;
  height: auto;
}

.meo-key-message {
  text-align: center;
  margin-top: 30px;
}

.meo-key-message p {
  font-size: 22px;
  font-weight: 700;
  color: var(--meo-secondary);
}

.meo-key-message .meo-large-num {
  font-size: 34px;
  font-weight: 800;
}

/* ---- Features Grid ---- */
.meo-features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  margin: 40px 0;
}

.meo-feature-card {
  background: var(--meo-white);
  padding: 28px;
  border-radius: 10px;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.06);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  text-align: center;
}

.meo-feature-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
}

.meo-feature-image {
  margin-bottom: 20px;
  height: 180px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  border-radius: 6px;
}

.meo-feature-image img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
}

.meo-feature-title {
  font-size: 17px;
  font-weight: 700;
  margin-bottom: 12px;
  color: var(--meo-dark);
}

.meo-feature-desc {
  font-size: 14px;
  line-height: 1.8;
  color: var(--meo-text);
  text-align: left;
}

/* ---- Case Studies ---- */
.meo-case-studies {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 30px;
  margin: 40px 0;
}

.meo-case-study {
  background: var(--meo-white);
  padding: 24px;
  border-radius: 10px;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.06);
}

.meo-case-image {
  margin-bottom: 16px;
  border-radius: 6px;
  overflow: hidden;
}

.meo-case-image img {
  display: block;
  width: 100%;
  height: auto;
}

.meo-case-content {
  display: flex;
  align-items: flex-start;
  gap: 12px;
}

.meo-case-icon {
  width: 24px;
  height: 24px;
  flex-shrink: 0;
  margin-top: 3px;
}

.meo-case-text {
  font-size: 14px;
  line-height: 1.8;
  color: var(--meo-text);
}

/* ---- Trust Section ---- */
.meo-trust-section {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 30px;
  padding: 20px 0;
}

.meo-partnership {
  max-width: 360px;
  width: 100%;
}

.meo-publishers {
  max-width: 700px;
  width: 100%;
}

.meo-partnership img,
.meo-publishers img {
  display: block;
  max-width: 100%;
  height: auto;
}

.meo-trust-text {
  text-align: center;
  font-size: 15px;
  line-height: 1.8;
  max-width: 700px;
  color: var(--meo-text);
}

/* ---- Testimonials ---- */
.meo-testimonials {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 30px;
  margin: 40px 0;
}

.meo-testimonial-card {
  background: var(--meo-white);
  padding: 24px;
  border-radius: 10px;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.06);
}

.meo-testimonial-image {
  margin-bottom: 20px;
  border-radius: 6px;
  overflow: hidden;
  height: 220px;
}

.meo-testimonial-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.meo-testimonial-quote {
  font-size: 15px;
  line-height: 1.8;
  color: var(--meo-text);
  margin-bottom: 12px;
  border-left: 3px solid var(--meo-primary);
  padding-left: 16px;
}

.meo-testimonial-name {
  font-size: 13px;
  font-weight: 600;
  color: var(--meo-primary);
  text-align: right;
}

/* ---- CTA Sections ---- */
.meo-cta-section {
  padding: 60px 20px;
  text-align: center;
}

.meo-cta-section--gradient {
  background: linear-gradient(135deg, var(--meo-primary) 0%, var(--meo-primary-dark) 100%);
  color: var(--meo-white);
}

.meo-cta-buttons {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
  margin-top: 30px;
}

/* 中段CTAボタン - ヘッダーボタンと同デザイン */
.meo-cta-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 36px;
  border-radius: 40px;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.25s ease;
  font-size: 16px;
  text-align: center;
  min-width: 220px;
  cursor: pointer;
}

/* 資料ダウンロード - ティールグリーンのグラデーション (ヘッダーの資料ダウンロードと同じ) */
.meo-cta-btn--primary {
  background: linear-gradient(77deg, #00546c 0%, #007e8f 28%, #1c9f91 90%);
  color: var(--meo-white);
  border: none;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.2);
}

.meo-cta-btn--primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 24px rgba(0, 0, 0, 0.25);
}

/* お問い合わせ - 白背景＋ティールグリーン枠 (ヘッダーのお問い合わせと同じ) */
.meo-cta-btn--outline {
  background: var(--meo-white);
  border: 1.5px solid #1c9f91;
  color: #1c9f91;
}

.meo-cta-btn--outline:hover {
  background: rgba(139, 255, 243, 1);
  transform: translateY(-2px);
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
}

/* ---- FAQ Section ---- */
.meo-faq {
  max-width: 800px;
  margin: 40px auto 0;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.meo-faq-item {
  background: var(--meo-white);
  border-radius: 8px;
  overflow: hidden;
  border: 1px solid var(--meo-border);
}

.meo-faq-item.active {
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
}

.meo-faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 18px 20px;
  cursor: pointer;
  background: var(--meo-white);
  transition: background-color 0.2s ease;
  user-select: none;
}

.meo-faq-question:hover {
  background-color: var(--meo-light-gray);
}

.meo-faq-question h3 {
  font-size: 15px;
  font-weight: 600;
  color: var(--meo-dark);
  margin: 0;
  padding: 0;
  line-height: 1.5;
}

.meo-faq-toggle {
  font-size: 22px;
  font-weight: 300;
  color: var(--meo-primary);
  transition: transform 0.3s ease;
  flex-shrink: 0;
  margin-left: 16px;
}

.meo-faq-item.active .meo-faq-toggle {
  transform: rotate(45deg);
}

.meo-faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease, padding 0.3s ease;
  background-color: var(--meo-light-gray);
  padding: 0 20px;
}

.meo-faq-item.active .meo-faq-answer {
  max-height: 500px;
  padding: 20px;
}

.meo-faq-answer p {
  font-size: 14px;
  line-height: 1.8;
  color: var(--meo-text);
  margin: 0;
}

/* ---- Hero Tagline ---- */
.meo-hero-tagline {
  display: inline-block;
  background: var(--meo-accent);
  color: var(--meo-white);
  font-size: 22px;
  font-weight: 700;
  padding: 7px 22px;
  border-radius: 6px;
  margin-bottom: 6px;
  letter-spacing: 1px;
  box-shadow: 0 3px 12px rgba(255, 140, 0, 0.35);
}

.meo-hero-badges-row {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  margin-bottom: 14px;
}

/* ---- Hero CTA Buttons (matches header .radius_btn / .radius_btns.fill) ---- */
.meo-hero-cta {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
  margin-top: 4px;
}

.meo-hero-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 36px;
  border-radius: 40px;
  font-weight: 600;
  font-size: 16px;
  text-decoration: none;
  transition: all 0.25s ease;
  cursor: pointer;
  min-width: 220px;
  position: relative;
  overflow: hidden;
  z-index: 1;
}

/* 資料請求 - teal gradient fill (same as header 資料ダウンロード) */
.meo-hero-btn--primary {
  background: linear-gradient(77deg, #00546c 0%, #007e8f 28%, #1c9f91 90%);
  color: var(--meo-white);
  border: none;
  box-shadow: 0 4px 16px rgba(0, 126, 143, 0.35);
}

.meo-hero-btn--primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 24px rgba(0, 126, 143, 0.45);
}

/* お問い合わせ - white bg with teal border (same as header お問い合わせ) */
.meo-hero-btn--outline {
  background: var(--meo-white);
  color: #1c9f91;
  border: 1.5px solid #1c9f91;
}

.meo-hero-btn--outline:hover {
  background: rgba(125, 233, 222, 1);
  transform: translateY(-2px);
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
}

/* ---- Required Badge ---- */
.meo-required {
  display: inline-block;
  background: #e74c3c;
  color: #fff;
  font-size: 10px;
  padding: 1px 6px;
  border-radius: 3px;
  margin-left: 4px;
  font-weight: 600;
  vertical-align: middle;
}

/* ---- Form Row (2-column) ---- */
.meo-form-row {
  display: flex;
  gap: 12px;
}

.meo-form-row .meo-form-group {
  flex: 1;
  min-width: 0;
}

/* ---- Select Styling ---- */
.meo-form-group select {
  padding: 10px 14px;
  border: 1px solid var(--meo-border);
  border-radius: 6px;
  font-size: 14px;
  font-family: inherit;
  transition: border-color 0.3s ease;
  background: var(--meo-white);
  color: var(--meo-dark);
  appearance: none;
  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 fill='%23666' d='M6 8L0 0h12z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 12px center;
  padding-right: 36px;
  cursor: pointer;
  width: 100%;
}

.meo-form-group select:focus {
  outline: none;
  border-color: var(--meo-primary);
  box-shadow: 0 0 0 3px rgba(0, 180, 197, 0.15);
}

/* ---- Textarea ---- */
.meo-form-group textarea {
  padding: 10px 14px;
  border: 1px solid var(--meo-border);
  border-radius: 6px;
  font-size: 14px;
  font-family: inherit;
  transition: border-color 0.3s ease;
  background: var(--meo-white);
  color: var(--meo-dark);
  resize: vertical;
  width: 100%;
}

.meo-form-group textarea:focus {
  outline: none;
  border-color: var(--meo-primary);
  box-shadow: 0 0 0 3px rgba(0, 180, 197, 0.15);
}

/* ---- MEO Reasons Section ---- */
.meo-reasons {
  display: flex;
  flex-direction: column;
  gap: 24px;
  margin-top: 40px;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
}

.meo-reason-item {
  display: flex;
  align-items: flex-start;
  gap: 24px;
  background: var(--meo-white);
  border-radius: 12px;
  padding: 28px 32px;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.06);
  border-left: 5px solid var(--meo-primary);
}

.meo-reason-num {
  font-size: 42px;
  font-weight: 800;
  color: var(--meo-primary);
  line-height: 1;
  font-family: 'Montserrat', sans-serif;
  flex-shrink: 0;
  opacity: 0.85;
  min-width: 56px;
}

.meo-reason-body {
  flex: 1;
  min-width: 0;
}

.meo-reason-title {
  font-size: 19px;
  font-weight: 700;
  color: var(--meo-dark);
  margin-bottom: 10px;
}

.meo-reason-text {
  font-size: 15px;
  line-height: 1.85;
  color: var(--meo-text);
  margin: 0;
}

/* ---- Pricing Section ---- */
.meo-pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin: 40px 0 24px;
}

.meo-pricing-card {
  background: var(--meo-white);
  border-radius: 12px;
  box-shadow: 0 2px 16px rgba(0, 0, 0, 0.08);
  overflow: hidden;
  position: relative;
  border: 2px solid var(--meo-border);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.meo-pricing-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 28px rgba(0, 0, 0, 0.12);
}

.meo-pricing-card--featured {
  border-color: var(--meo-primary);
  box-shadow: 0 4px 24px rgba(0, 180, 197, 0.2);
}

.meo-pricing-popular {
  background: var(--meo-primary);
  color: var(--meo-white);
  font-size: 13px;
  font-weight: 700;
  text-align: center;
  padding: 6px 0;
  letter-spacing: 0.5px;
}

/* Invisible spacer keeps non-featured cards vertically aligned with featured */
.meo-pricing-popular--spacer {
  background: transparent !important;
  color: transparent !important;
  pointer-events: none;
  user-select: none;
}

.meo-pricing-header {
  background: var(--meo-light-gray);
  padding: 24px 24px 16px;
  text-align: center;
  border-bottom: 1px solid var(--meo-border);
}

.meo-pricing-card--featured .meo-pricing-header {
  background: rgba(0, 180, 197, 0.08);
}

.meo-pricing-plan {
  font-size: 22px;
  font-weight: 700;
  color: var(--meo-secondary);
  margin-bottom: 6px;
}

.meo-pricing-kw {
  font-size: 13px;
  color: var(--meo-text);
  font-weight: 500;
}

.meo-pricing-body {
  padding: 24px;
  text-align: center;
}

.meo-pricing-price {
  margin-bottom: 10px;
}

.meo-pricing-label {
  display: block;
  font-size: 12px;
  color: var(--meo-text);
  margin-bottom: 4px;
}

.meo-pricing-amount {
  font-size: 30px;
  font-weight: 800;
  color: var(--meo-dark);
  line-height: 1.2;
  margin: 0;
}

.meo-pricing-unit {
  font-size: 14px;
  font-weight: 500;
}

.meo-pricing-annual {
  font-size: 13px;
  color: var(--meo-text);
  background: var(--meo-light-gray);
  border-radius: 4px;
  padding: 6px 12px;
  display: inline-block;
  margin-top: 8px;
}

.meo-pricing-note {
  text-align: center;
  font-size: 14px;
  color: var(--meo-text);
  margin-top: 16px;
}

/* ---- Contact Form Section ---- */
.meo-contact-section {
  padding: 80px 0;
  background: linear-gradient(160deg, #f0fafc 0%, #e8f4f8 100%);
}

.meo-contact-form-wrap {
  max-width: 760px;
  margin: 40px auto 0;
  background: var(--meo-white);
  border-radius: 16px;
  padding: 40px;
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.08);
}

.meo-contact-form {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.meo-contact-submit-wrap {
  text-align: center;
  margin-top: 8px;
}

.meo-contact-submit {
  min-width: 280px;
  font-size: 18px;
  padding: 16px 40px;
  background: linear-gradient(135deg, var(--meo-accent) 0%, #e07a00 100%);
}

/* ---- Scroll Fade In ---- */
.meo-fade-in {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.meo-fade-in.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.meo-fade-in.meo-delay-1 { transition-delay: 0.1s; }
.meo-fade-in.meo-delay-2 { transition-delay: 0.2s; }
.meo-fade-in.meo-delay-3 { transition-delay: 0.3s; }
.meo-fade-in.meo-delay-4 { transition-delay: 0.4s; }

/* ---- Responsive: Tablet ---- */
@media (max-width: 960px) {
  .meo-hero-inner {
    flex-direction: column;
    text-align: center;
    gap: 30px;
  }

  .meo-hero-left {
    display: flex;
    flex-direction: column;
    align-items: center;
  }

  .meo-hero-logos {
    justify-content: center;
  }

  .meo-hero-title {
    font-size: 32px;
  }

  .meo-hero-btn {
    padding: 12px 28px;
    font-size: 15px;
    min-width: 180px;
  }

  .meo-no1-badges img {
    max-width: 360px;
  }

  .meo-hero-right {
    flex: none;
    max-width: 440px;
    width: 100%;
  }

  .meo-section-title {
    font-size: 26px;
  }

  .meo-why-content,
  .meo-what-content {
    flex-direction: column;
    gap: 30px;
  }

  .meo-why-left,
  .meo-what-image {
    flex: none;
    max-width: 320px;
    margin: 0 auto;
  }

  .meo-features-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .meo-case-studies,
  .meo-testimonials {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .meo-cta-buttons {
    flex-direction: column;
    align-items: center;
  }

  .meo-cta-btn {
    min-width: unset;
    width: 100%;
    max-width: 360px;
  }

  .meo-pricing-grid {
    grid-template-columns: 1fr;
    max-width: 440px;
    margin-left: auto;
    margin-right: auto;
  }

  .meo-reason-item {
    padding: 20px 24px;
  }

  .meo-reason-num {
    font-size: 34px;
    min-width: 44px;
  }

  .meo-contact-form-wrap {
    padding: 30px 24px;
  }
}

/* ---- Responsive: Mobile ---- */
@media (max-width: 600px) {
  .meo-hero {
    padding: 80px 0 32px;
    min-height: auto;
  }

  .meo-hero-title {
    font-size: 24px;
  }

  .meo-hero-tagline {
    font-size: 14px;
    padding: 5px 14px;
  }

  .meo-hero-logos {
    flex-direction: row;
  }

  .meo-logo-wrap {
    padding: 12px 16px;
  }

  .meo-hero-badges-row {
    flex-direction: column;
    gap: 12px;
  }

  .meo-no1-badges img {
    max-width: 280px;
  }

  .meo-hero-cta {
    flex-direction: column;
    align-items: center;
    gap: 12px;
  }

  .meo-hero-btn {
    padding: 12px 28px;
    font-size: 14px;
    min-width: unset;
    width: 100%;
    max-width: 300px;
  }

  .meo-logo {
    max-height: 44px;
  }

  .gmo-logo {
    max-height: 28px;
  }

  .meo-section {
    padding: 50px 0;
  }

  .meo-section-title {
    font-size: 22px;
  }

  .meo-subtitle {
    font-size: 14px;
  }

  .meo-form-card {
    padding: 20px;
  }

  .meo-faq-question {
    padding: 14px 16px;
  }

  .meo-faq-question h3 {
    font-size: 14px;
  }

  .meo-testimonial-image {
    height: 160px;
  }

  .meo-key-message p {
    font-size: 18px;
  }

  .meo-key-message .meo-large-num {
    font-size: 26px;
  }

  .meo-cta-section {
    padding: 40px 16px;
  }

  .meo-form-row {
    flex-direction: column;
    gap: 0;
  }

  .meo-reason-item {
    flex-direction: column;
    gap: 12px;
  }

  .meo-reason-num {
    font-size: 30px;
  }

  .meo-pricing-amount {
    font-size: 26px;
  }

  .meo-contact-form-wrap {
    padding: 24px 16px;
  }

  .meo-contact-submit {
    min-width: unset;
    width: 100%;
  }
}
