/*
Theme Name: tune.my
Template: inkbridge-theme
Version: 1.0.6
Description: Child theme for tune.my marketing website.
Text Domain: tunemy-child
*/

/* ===== tune.my Landing Page Styles ===== */

/* Reset for landing page */
.tunemy-landing {
  margin: 0;
  padding: 0;
  font-family: 'Inter', system-ui, -apple-system, sans-serif;
  color: #0D0D0D;
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
}

.tunemy-landing *, .tunemy-landing *::before, .tunemy-landing *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

.tunemy-landing a {
  text-decoration: none !important;
  color: inherit;
}

/* Section container */
.tm-section {
  width: 100%;
  padding: 80px 120px;
}

@media (max-width: 1024px) {
  .tm-section {
    padding: 60px 40px;
  }
}

@media (max-width: 768px) {
  .tm-section {
    padding: 48px 20px;
  }
}

/* Section header */
.tm-section-header {
  text-align: center;
  margin-bottom: 48px;
}

@media (max-width: 768px) {
  .tm-section-header {
    margin-bottom: 32px;
  }
}

.tm-section-header h2 {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 40px;
  font-weight: 500;
  letter-spacing: -1px;
  color: #0D0D0D;
  margin: 0 0 8px 0;
}

.tm-section-header h2.text-white {
  color: #FFFFFF;
}

@media (max-width: 768px) {
  .tm-section-header h2 {
    font-size: 28px;
  }
}

.tm-section-header p {
  font-family: 'Inter', sans-serif;
  font-size: 16px;
  color: #7A7A7A;
  margin: 0;
}

/* Badge */
.tm-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 12px;
  border: 1px solid #E8E8E8;
  background: #FAFAFA;
  font-family: 'Space Grotesk', sans-serif;
  font-size: 12px;
  font-weight: 600;
  color: #7A7A7A;
  letter-spacing: 2px;
  text-transform: uppercase;
}

.tm-badge-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #E42313;
}

/* ===== HEADER ===== */
.tm-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 48px;
  border-bottom: 1px solid #E8E8E8;
  background: #FFFFFF;
  position: sticky;
  top: 0;
  z-index: 100;
}

@media (max-width: 768px) {
  .tm-header {
    padding: 16px 20px;
  }
}

.tm-logo {
  display: flex;
  align-items: center;
}

.tm-logo-img {
  height: 36px !important;
  max-height: 36px !important;
  width: auto !important;
  display: block;
}

@media (max-width: 768px) {
  .tm-logo-img {
    height: 30px !important;
    max-height: 30px !important;
  }
}

.tm-nav {
  display: flex;
  align-items: center;
  gap: 32px;
}

.tm-nav a {
  font-family: 'Inter', sans-serif;
  font-size: 14px;
  color: #7A7A7A;
  transition: color 0.2s;
}

.tm-nav a:hover {
  color: #0D0D0D;
}

@media (max-width: 768px) {
  .tm-nav {
    display: none;
  }
}

.tm-header-actions {
  display: flex;
  align-items: center;
  gap: 12px;
}

.tm-btn-login {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 13px;
  font-weight: 500;
  color: #7A7A7A;
  background: none;
  border: none;
  cursor: pointer;
  transition: color 0.2s;
}

.tm-btn-login:hover {
  color: #0D0D0D;
}

.tm-btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 20px;
  background: #E42313;
  color: #FFFFFF;
  font-family: 'Space Grotesk', sans-serif;
  font-size: 13px;
  font-weight: 500;
  border: none;
  cursor: pointer;
  transition: background 0.2s;
}

.tm-btn-primary:hover {
  background: #C91F10;
}

.tm-btn-primary.lg {
  padding: 14px 28px;
  font-size: 14px;
}

.tm-btn-primary.xl {
  padding: 16px 32px;
  font-size: 16px;
}

.tm-btn-secondary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 28px;
  background: transparent;
  color: #0D0D0D;
  font-family: 'Space Grotesk', sans-serif;
  font-size: 14px;
  font-weight: 500;
  border: 1px solid #E8E8E8;
  cursor: pointer;
  transition: border-color 0.2s, background 0.2s;
}

.tm-btn-secondary:hover {
  border-color: #0D0D0D;
  background: #FAFAFA;
}

.tm-btn-secondary.dark {
  color: #FFFFFF;
  border-color: #444444;
}

.tm-btn-secondary.dark:hover {
  border-color: #888;
  background: rgba(255,255,255,0.05);
}

.tm-btn-outline-dark {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 20px;
  background: transparent;
  color: #0D0D0D;
  font-family: 'Space Grotesk', sans-serif;
  font-size: 13px;
  font-weight: 500;
  border: 1px solid #0D0D0D;
  cursor: pointer;
  width: 100%;
  transition: background 0.2s;
}

.tm-btn-outline-dark:hover {
  background: #0D0D0D;
  color: #FFFFFF;
}

.tm-btn-cta-full {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 20px;
  background: #E42313;
  color: #FFFFFF;
  font-family: 'Space Grotesk', sans-serif;
  font-size: 13px;
  font-weight: 500;
  border: none;
  cursor: pointer;
  width: 100%;
  transition: background 0.2s;
}

.tm-btn-cta-full:hover {
  background: #C91F10;
}

/* Mobile menu toggle */
.tm-mobile-menu-btn {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
}

@media (max-width: 768px) {
  .tm-mobile-menu-btn {
    display: block;
  }
  .tm-header-actions .tm-btn-login {
    display: none;
  }
}

/* ===== HERO ===== */
.tm-hero {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 32px;
  padding: 80px 120px;
  text-align: center;
  background: #FFFFFF;
}

@media (max-width: 1024px) {
  .tm-hero {
    padding: 60px 40px;
  }
}

@media (max-width: 768px) {
  .tm-hero {
    padding: 48px 20px;
    gap: 24px;
  }
}

.tm-hero h1 {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 56px;
  font-weight: 500;
  letter-spacing: -1px;
  color: #0D0D0D;
  max-width: 800px;
  line-height: 1.1;
  margin: 0;
}

@media (max-width: 768px) {
  .tm-hero h1 {
    font-size: 36px;
  }
}

.tm-hero-sub {
  font-family: 'Inter', sans-serif;
  font-size: 18px;
  color: #7A7A7A;
  max-width: 640px;
  line-height: 1.5;
}

@media (max-width: 768px) {
  .tm-hero-sub {
    font-size: 15px;
  }
}

.tm-hero-cta {
  display: flex;
  align-items: center;
  gap: 16px;
}

@media (max-width: 768px) {
  .tm-hero-cta {
    flex-direction: column;
    width: 100%;
  }
  .tm-hero-cta a, .tm-hero-cta button {
    width: 100%;
    justify-content: center;
  }
}

.tm-trust-logos {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 40px;
  width: 100%;
}

@media (max-width: 768px) {
  .tm-trust-logos {
    gap: 20px;
    flex-wrap: wrap;
  }
}

.tm-trust-logos span {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 16px;
  font-weight: 500;
  color: #B0B0B0;
}

@media (max-width: 768px) {
  .tm-trust-logos span {
    font-size: 13px;
  }
}

.tm-hero-screenshot {
  width: 100%;
  max-width: 960px;
  background: #FAFAFA;
  border: 1px solid #E8E8E8;
  overflow: hidden;
  border-radius: 8px;
}

.tm-hero-screenshot-img {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
}

/* ===== FEATURES ===== */
.tm-features {
  background: #FFFFFF;
}

.tm-features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

@media (max-width: 768px) {
  .tm-features-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }
}

.tm-feature-card {
  display: flex;
  flex-direction: column;
  gap: 20px;
  padding: 28px;
  border: 1px solid #E8E8E8;
}

.tm-feature-card .tm-feature-icon {
  color: #E42313;
  width: 28px;
  height: 28px;
}

.tm-feature-card h3 {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 18px;
  font-weight: 600;
  color: #0D0D0D;
  margin: 0;
}

.tm-feature-card p {
  font-family: 'Inter', sans-serif;
  font-size: 14px;
  color: #7A7A7A;
  line-height: 1.5;
  margin: 0;
}

.tm-feature-card .tm-feature-img {
  width: 100%;
  background: #FAFAFA;
  overflow: hidden;
  border-radius: 6px;
}

.tm-feature-card .tm-feature-img-src {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
}

/* ===== HOW IT WORKS ===== */
.tm-how-it-works {
  background: #0D0D0D;
}

.tm-steps-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

@media (max-width: 768px) {
  .tm-steps-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }
}

.tm-step-card {
  display: flex;
  flex-direction: column;
  gap: 16px;
  padding: 28px;
}

.tm-step-card .tm-step-num {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 36px;
  font-weight: 600;
  color: #E42313;
  letter-spacing: -1px;
}

.tm-step-card h3 {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 18px;
  font-weight: 600;
  color: #FFFFFF;
  margin: 0;
}

.tm-step-card p {
  font-family: 'Inter', sans-serif;
  font-size: 14px;
  color: #7A7A7A;
  line-height: 1.5;
  margin: 0;
}

/* ===== SOCIAL PROOF ===== */
.tm-social-proof {
  background: #FFFFFF;
}

.tm-stats-row {
  display: flex;
  justify-content: space-around;
  padding: 32px 0;
  border-bottom: 1px solid #E8E8E8;
  margin-bottom: 48px;
}

@media (max-width: 768px) {
  .tm-stats-row {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    text-align: center;
    margin-bottom: 32px;
  }
}

.tm-stat {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
}

.tm-stat-value {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 36px;
  font-weight: 600;
  color: #0D0D0D;
  letter-spacing: -1px;
}

@media (max-width: 768px) {
  .tm-stat-value {
    font-size: 28px;
  }
}

.tm-stat-label {
  font-family: 'Inter', sans-serif;
  font-size: 14px;
  color: #7A7A7A;
}

.tm-testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

@media (max-width: 768px) {
  .tm-testimonials-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }
}

.tm-testimonial-card {
  display: flex;
  flex-direction: column;
  gap: 20px;
  padding: 28px;
  border: 1px solid #E8E8E8;
}

.tm-testimonial-card blockquote {
  font-family: 'Inter', sans-serif;
  font-size: 14px;
  color: #0D0D0D;
  line-height: 1.5;
  margin: 0;
  padding: 0;
  border: none;
  background: none;
}

.tm-testimonial-author {
  display: flex;
  align-items: center;
  gap: 12px;
}

.tm-testimonial-avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: #FAFAFA;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  font-weight: 600;
  color: #7A7A7A;
  font-family: 'Space Grotesk', sans-serif;
}

.tm-testimonial-info {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.tm-testimonial-name {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 14px;
  font-weight: 500;
  color: #0D0D0D;
}

.tm-testimonial-role {
  font-family: 'Inter', sans-serif;
  font-size: 12px;
  color: #7A7A7A;
}

/* ===== PRICING ===== */
.tm-pricing {
  background: #FFFFFF;
}

.tm-pricing-header {
  text-align: center;
  margin-bottom: 48px;
}

@media (max-width: 768px) {
  .tm-pricing-header {
    margin-bottom: 32px;
  }
}

.tm-pricing-header h2 {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 40px;
  font-weight: 500;
  letter-spacing: -1px;
  color: #0D0D0D;
  margin: 16px 0 8px 0;
}

@media (max-width: 768px) {
  .tm-pricing-header h2 {
    font-size: 28px;
  }
}

.tm-pricing-header p {
  font-family: 'Inter', sans-serif;
  font-size: 18px;
  color: #7A7A7A;
}

@media (max-width: 768px) {
  .tm-pricing-header p {
    font-size: 14px;
  }
}

.tm-pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

@media (max-width: 768px) {
  .tm-pricing-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }
}

.tm-pricing-card {
  display: flex;
  flex-direction: column;
  gap: 24px;
  padding: 32px;
  border: 1px solid #E8E8E8;
}

.tm-pricing-card.featured {
  background: #0D0D0D;
  border-color: #0D0D0D;
}

.tm-pricing-card .tm-plan-label {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 2px;
  color: #7A7A7A;
}

.tm-pricing-card.featured .tm-plan-label {
  color: #FFFFFF;
}

.tm-pricing-card .tm-plan-label-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.tm-popular-badge {
  display: inline-block;
  padding: 4px 10px;
  background: #E42313;
  color: #FFFFFF;
  font-family: 'Space Grotesk', sans-serif;
  font-size: 11px;
  font-weight: 600;
}

.tm-price-row {
  display: flex;
  align-items: flex-end;
  gap: 4px;
}

.tm-price {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 48px;
  font-weight: 600;
  color: #0D0D0D;
  letter-spacing: -1px;
  line-height: 1;
}

.tm-pricing-card.featured .tm-price {
  color: #FFFFFF;
}

@media (max-width: 768px) {
  .tm-price {
    font-size: 40px;
  }
}

.tm-price-period {
  font-family: 'Inter', sans-serif;
  font-size: 16px;
  color: #7A7A7A;
  padding-bottom: 6px;
}

.tm-pricing-card.featured .tm-price-period {
  color: #B0B0B0;
}

.tm-plan-desc {
  font-family: 'Inter', sans-serif;
  font-size: 14px;
  color: #7A7A7A;
  line-height: 1.5;
}

.tm-pricing-card.featured .tm-plan-desc {
  color: #B0B0B0;
}

.tm-plan-divider {
  height: 1px;
  background: #E8E8E8;
  width: 100%;
}

.tm-pricing-card.featured .tm-plan-divider {
  background: #333333;
}

.tm-plan-features {
  display: flex;
  flex-direction: column;
  gap: 12px;
  flex: 1;
}

.tm-plan-feature {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: 'Inter', sans-serif;
  font-size: 14px;
  color: #0D0D0D;
}

.tm-pricing-card.featured .tm-plan-feature {
  color: #FFFFFF;
}

.tm-check-green {
  color: #22C55E;
  flex-shrink: 0;
}

.tm-check-red {
  color: #E42313;
  flex-shrink: 0;
}

/* ===== FAQ ===== */
.tm-faq {
  background: #FAFAFA;
}

.tm-faq-list {
  max-width: 800px;
  margin: 0 auto;
}

.tm-faq-item {
  padding: 24px 0;
  border-bottom: 1px solid #E8E8E8;
}

.tm-faq-item:last-child {
  border-bottom: none;
}

.tm-faq-question {
  display: flex;
  align-items: center;
  justify-content: space-between;
  cursor: pointer;
  width: 100%;
  background: none;
  border: none;
  text-align: left;
  padding: 0;
}

.tm-faq-question h3 {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 16px;
  font-weight: 500;
  color: #0D0D0D;
  margin: 0;
}

@media (max-width: 768px) {
  .tm-faq-question h3 {
    font-size: 15px;
    padding-right: 16px;
  }
}

.tm-faq-answer {
  font-family: 'Inter', sans-serif;
  font-size: 14px;
  color: #7A7A7A;
  line-height: 1.5;
  margin-top: 12px;
}

.tm-faq-icon {
  color: #7A7A7A;
  flex-shrink: 0;
  transition: transform 0.2s;
}

/* ===== FINAL CTA ===== */
.tm-final-cta {
  background: #0D0D0D;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 32px;
  padding: 100px 120px;
}

@media (max-width: 768px) {
  .tm-final-cta {
    padding: 60px 20px;
    gap: 24px;
  }
}

.tm-final-cta h2 {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 48px;
  font-weight: 500;
  letter-spacing: -1px;
  color: #FFFFFF;
  max-width: 800px;
  margin: 0;
}

@media (max-width: 768px) {
  .tm-final-cta h2 {
    font-size: 28px;
  }
}

.tm-final-cta p {
  font-family: 'Inter', sans-serif;
  font-size: 18px;
  color: #B0B0B0;
  max-width: 700px;
  line-height: 1.5;
}

@media (max-width: 768px) {
  .tm-final-cta p {
    font-size: 14px;
  }
}

.tm-cta-buttons {
  display: flex;
  align-items: center;
  gap: 16px;
}

@media (max-width: 768px) {
  .tm-cta-buttons {
    flex-direction: column;
    width: 100%;
  }
  .tm-cta-buttons a {
    width: 100%;
    justify-content: center;
  }
}

.tm-cta-trust {
  font-family: 'Inter', sans-serif;
  font-size: 13px;
  color: #B0B0B0;
}

@media (max-width: 768px) {
  .tm-cta-trust {
    font-size: 12px;
  }
}

/* ===== CONTACT PAGE ===== */
.tm-contact-hero {
  background: #FAFAFA;
  padding-bottom: 40px;
}

.tm-contact-content {
  background: #FFFFFF;
  padding-top: 0;
}

.tm-contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 64px;
  max-width: 1080px;
  margin: 0 auto;
}

@media (max-width: 768px) {
  .tm-contact-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }
}

.tm-contact-info {
  display: flex;
  flex-direction: column;
  gap: 32px;
}

.tm-contact-info-card {
  padding: 24px;
  border: 1px solid #E8E8E8;
  border-radius: 8px;
  background: #FAFAFA;
}

.tm-contact-info-icon {
  margin-bottom: 12px;
}

.tm-contact-info-card h4 {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 16px;
  font-weight: 600;
  color: #0D0D0D;
  margin-bottom: 4px;
}

.tm-contact-info-card p {
  font-family: 'Inter', sans-serif;
  font-size: 14px;
  color: #0D0D0D;
  line-height: 1.5;
}

.tm-contact-info-sub {
  color: #7A7A7A !important;
  font-size: 13px !important;
  margin-top: 2px;
}

.tm-contact-form-wrap {
  padding: 40px;
  border: 1px solid #E8E8E8;
  border-radius: 8px;
  background: #FFFFFF;
}

.tm-contact-form-wrap h3 {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 24px;
  font-weight: 600;
  color: #0D0D0D;
  margin-bottom: 24px;
}

/* Formidable Forms styling overrides */
.tm-contact-form-wrap .frm_forms .frm_form_field label.frm_primary_label {
  font-family: 'Inter', sans-serif !important;
  font-size: 14px !important;
  font-weight: 500 !important;
  color: #0D0D0D !important;
  margin-bottom: 6px !important;
}

.tm-contact-form-wrap .frm_forms input[type="text"],
.tm-contact-form-wrap .frm_forms input[type="email"],
.tm-contact-form-wrap .frm_forms textarea,
.tm-contact-form-wrap .frm_forms select {
  font-family: 'Inter', sans-serif !important;
  font-size: 14px !important;
  border: 1px solid #E8E8E8 !important;
  border-radius: 6px !important;
  padding: 10px 14px !important;
  background: #FAFAFA !important;
  color: #0D0D0D !important;
  transition: border-color 0.2s !important;
  width: 100% !important;
  box-sizing: border-box !important;
}

.tm-contact-form-wrap .frm_forms input[type="text"]:focus,
.tm-contact-form-wrap .frm_forms input[type="email"]:focus,
.tm-contact-form-wrap .frm_forms textarea:focus,
.tm-contact-form-wrap .frm_forms select:focus {
  border-color: #0D0D0D !important;
  outline: none !important;
  background: #FFFFFF !important;
}

.tm-contact-form-wrap .frm_forms textarea {
  min-height: 120px !important;
  resize: vertical !important;
}

.tm-contact-form-wrap .frm_forms .frm_submit button,
.tm-contact-form-wrap .frm_forms .frm_submit input[type="submit"] {
  font-family: 'Inter', sans-serif !important;
  font-size: 14px !important;
  font-weight: 600 !important;
  padding: 12px 32px !important;
  background: #E42313 !important;
  color: #FFFFFF !important;
  border: none !important;
  border-radius: 6px !important;
  cursor: pointer !important;
  transition: background 0.2s !important;
  width: 100% !important;
}

.tm-contact-form-wrap .frm_forms .frm_submit button:hover,
.tm-contact-form-wrap .frm_forms .frm_submit input[type="submit"]:hover {
  background: #C91F10 !important;
}

.tm-contact-form-wrap .frm_forms .frm_form_field {
  margin-bottom: 16px !important;
}

/* ===== FOOTER ===== */
.tm-footer {
  background: #FFFFFF;
  border-top: 1px solid #E8E8E8;
  padding: 60px 120px 32px 120px;
}

@media (max-width: 1024px) {
  .tm-footer {
    padding: 40px 40px 24px 40px;
  }
}

@media (max-width: 768px) {
  .tm-footer {
    padding: 40px 20px 24px 20px;
  }
}

.tm-footer-top {
  display: grid;
  grid-template-columns: 3fr 5fr;
  gap: 64px;
  margin-bottom: 48px;
}

@media (max-width: 768px) {
  .tm-footer-top {
    grid-template-columns: 1fr;
    gap: 32px;
    margin-bottom: 32px;
  }
}

.tm-footer-brand {
  max-width: 300px;
}

.tm-footer-brand .tm-footer-logo {
  margin-bottom: 16px;
}

.tm-footer-logo-img {
  height: 32px !important;
  max-height: 32px !important;
  width: auto !important;
  display: block;
}

@media (max-width: 768px) {
  .tm-footer-logo-img {
    height: 28px !important;
    max-height: 28px !important;
  }
}

.tm-footer-brand p {
  font-family: 'Inter', sans-serif;
  font-size: 14px;
  color: #7A7A7A;
  line-height: 1.5;
}

/* Override the stray-p hiding rules for the footer brand tagline */
.wp-block-post-content .tunemy-landing .tm-footer-brand > p:not(:empty),
body .tunemy-landing .tm-footer-brand > p:not(:empty) {
  display: block !important;
  height: auto !important;
  margin: 0 !important;
  padding: 0 !important;
  font-size: 14px !important;
  line-height: 1.5 !important;
  overflow: visible !important;
}

@media (max-width: 768px) {
  .tm-footer-brand p {
    font-size: 13px;
  }
}

.tm-footer-links {
  display: flex;
  justify-content: space-between;
}

@media (max-width: 768px) {
  .tm-footer-links {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 32px;
  }
}

.tm-footer-col h4 {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 13px;
  font-weight: 600;
  color: #0D0D0D;
  letter-spacing: 1px;
  margin: 0 0 16px 0;
}

.tm-footer-col ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.tm-footer-col ul li a {
  font-family: 'Inter', sans-serif;
  font-size: 14px;
  color: #7A7A7A;
  transition: color 0.2s;
}

.tm-footer-col ul li a:hover {
  color: #0D0D0D;
}

.tm-footer-divider {
  height: 1px;
  background: #E8E8E8;
  margin-bottom: 32px;
}

.tm-footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

@media (max-width: 768px) {
  .tm-footer-bottom {
    flex-direction: column;
    gap: 8px;
    text-align: center;
  }
}

.tm-footer-bottom span {
  font-family: 'Inter', sans-serif;
  font-size: 13px;
  color: #B0B0B0;
}

/* Lucide icon sizing */
.tm-icon {
  width: 28px;
  height: 28px;
}

.tm-icon-sm {
  width: 18px;
  height: 18px;
}

.tm-icon-xs {
  width: 16px;
  height: 16px;
}

/* SVG icon colors */
.tm-icon-red { color: #E42313; }
.tm-icon-white { color: #FFFFFF; }
.tm-icon-muted { color: #7A7A7A; }
.tm-icon-green { color: #22C55E; }

/* Utility: remove WP defaults that interfere */
.tunemy-landing h1,
.tunemy-landing h2,
.tunemy-landing h3,
.tunemy-landing h4,
.tunemy-landing h5,
.tunemy-landing h6 {
  margin-top: 0;
  margin-bottom: 0;
  letter-spacing: normal;
}

.tunemy-landing p {
  margin-top: 0;
  margin-bottom: 0;
}

.tunemy-landing blockquote {
  border-left: none;
  background: none;
  padding: 0;
  margin: 0;
  font-style: normal;
  font-size: inherit;
}

.tunemy-landing ul {
  list-style: none;
  padding: 0;
}

.tunemy-landing li::marker {
  content: none;
}

/* Hide stray empty paragraphs from wpautop */
.tunemy-landing > p:empty,
.tunemy-landing p:empty,
.tunemy-landing > p br:only-child {
  display: none !important;
  margin: 0 !important;
  padding: 0 !important;
  line-height: 0 !important;
  font-size: 0 !important;
  height: 0 !important;
}

.tunemy-landing .tm-pricing-grid > p,
.tunemy-landing .tm-features-grid > p,
.tunemy-landing .tm-steps-grid > p,
.tunemy-landing .tm-testimonials-grid > p,
.tunemy-landing .tm-stats-row > p,
.tunemy-landing .tm-footer-links > p,
.tunemy-landing .tm-footer-top > p,
.tunemy-landing .tm-hero > p:empty,
.tunemy-landing .tm-section > p:empty,
.tunemy-landing .tm-feature-card > p:empty,
.tunemy-landing .tm-step-card > p:empty,
.tunemy-landing .tm-testimonial-card > p:empty,
.tunemy-landing .tm-pricing-card > p:empty,
.tunemy-landing .tm-faq-item > p:empty,
.tunemy-landing .tm-plan-features > p:empty,
.tunemy-landing .tm-section-header > p:empty,
.tunemy-landing .tm-header > p:empty,
.tunemy-landing .tm-header-actions > p:empty,
.tunemy-landing .tm-footer-brand > p:empty,
.tunemy-landing .tm-testimonial-author > p:empty,
.tunemy-landing .tm-faq-question > p:empty {
  display: none !important;
}

/* High-specificity override for WP block content p tags */
.wp-block-post-content .tunemy-landing .tm-pricing-grid > p,
.wp-block-post-content .tunemy-landing .tm-features-grid > p,
.wp-block-post-content .tunemy-landing .tm-steps-grid > p,
.wp-block-post-content .tunemy-landing .tm-testimonials-grid > p,
.wp-block-post-content .tunemy-landing .tm-stats-row > p,
.wp-block-post-content .tunemy-landing .tm-footer-links > p,
.wp-block-post-content .tunemy-landing .tm-footer-top > p,
.wp-block-post-content .tunemy-landing .tm-feature-card > p,
.wp-block-post-content .tunemy-landing .tm-step-card > p,
.wp-block-post-content .tunemy-landing .tm-testimonial-card > p,
.wp-block-post-content .tunemy-landing .tm-pricing-card > p,
.wp-block-post-content .tunemy-landing .tm-faq-item > p,
.wp-block-post-content .tunemy-landing .tm-plan-features > p,
.wp-block-post-content .tunemy-landing .tm-section-header > p,
.wp-block-post-content .tunemy-landing .tm-header > p,
.wp-block-post-content .tunemy-landing .tm-header-actions > p,
.wp-block-post-content .tunemy-landing .tm-footer-brand > p,
.wp-block-post-content .tunemy-landing .tm-testimonial-author > p,
.wp-block-post-content .tunemy-landing .tm-faq-question > p,
.wp-block-post-content .tunemy-landing .tm-hero > p,
.wp-block-post-content .tunemy-landing .tm-section > p,
.wp-block-post-content .tunemy-landing .tm-final-cta > p,
body .tunemy-landing .tm-pricing-grid > p,
body .tunemy-landing .tm-features-grid > p,
body .tunemy-landing .tm-steps-grid > p,
body .tunemy-landing .tm-testimonials-grid > p,
body .tunemy-landing .tm-stats-row > p,
body .tunemy-landing .tm-feature-card > p,
body .tunemy-landing .tm-step-card > p,
body .tunemy-landing .tm-testimonial-card > p,
body .tunemy-landing .tm-pricing-card > p,
body .tunemy-landing .tm-section-header > p,
body .tunemy-landing .tm-header > p,
body .tunemy-landing .tm-faq-question > p {
  display: none !important;
  height: 0 !important;
  margin: 0 !important;
  padding: 0 !important;
  font-size: 0 !important;
  line-height: 0 !important;
  overflow: hidden !important;
}

/* Nuclear option: hide ALL stray p tags inside landing */
.wp-block-post-content .tunemy-landing p:empty {
  display: none !important;
}

.wp-block-post-content .tunemy-landing > p {
  display: none !important;
}

/* Remove WP post content default spacing */
.tunemy-front-page .wp-block-post-content {
  padding: 0 !important;
}

.tunemy-front-page .wp-block-group {
  padding: 0 !important;
}
