/* ==========================================================================
   ManagementAssignment.co.uk — Homepage Styles
   All classes prefixed with "ma-" to avoid ANY conflict with Turitor theme.
   This file ONLY loads on the front page (see functions.php).
   ========================================================================== */

/* ---------- VARIABLES ---------- */
:root {
  --ma-ink: #0f1923;
  --ma-slate: #1b2838;
  --ma-ocean: #1a5276;
  --ma-teal: #0e8c7f;
  --ma-teal-light: #14b8a6;
  --ma-gold: #d4a843;
  --ma-gold-light: #f0d78c;
  --ma-cream: #faf8f4;
  --ma-warm-white: #fefdfb;
  --ma-smoke: #e8e4de;
  --ma-text: #2c3e50;
  --ma-text-light: #6b7b8d;
  --ma-card-shadow: 0 4px 24px rgba(15,25,35,0.08);
  --ma-card-hover: 0 12px 40px rgba(15,25,35,0.14);
}

/* ---------- RESET TURITOR OVERRIDES FOR HOMEPAGE ---------- */
#ma-homepage {
  font-family: 'Plus Jakarta Sans', sans-serif;
  color: var(--ma-text);
  line-height: 1.6;
}
#ma-homepage *,
#ma-homepage *::before,
#ma-homepage *::after {
  box-sizing: border-box;
}
#ma-homepage h1,
#ma-homepage h2,
#ma-homepage h3,
#ma-homepage h4 {
  font-family: 'DM Serif Display', serif;
  color: var(--ma-ink);
  margin: 0;
  padding: 0;
  line-height: 1.2;
}
#ma-homepage p {
  margin: 0;
}
#ma-homepage a {
  text-decoration: none;
  color: inherit;
}
#ma-homepage ul {
  list-style: none;
  margin: 0;
  padding: 0;
}

/* ---------- HIDE TURITOR HEADER/FOOTER ON HOMEPAGE ---------- */
/* Turitor uses these common selectors — adjust if your theme differs */
body.home .site-header,
body.page-template-front-page .site-header,
body.home .ts-header,
body.page-template-front-page .ts-header,
body.home #ts-header,
body.page-template-front-page #ts-header,
body.home .site-footer,
body.page-template-front-page .site-footer,
body.home .ts-footer,
body.page-template-front-page .ts-footer,
body.home #ts-footer,
body.page-template-front-page #ts-footer,
body.home .footer-area,
body.page-template-front-page .footer-area {
  display: none !important;
}

/* ---------- CONTAINER ---------- */
.ma-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 32px;
}

/* ---------- NAVIGATION ---------- */
.ma-nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 9999;
  background: rgba(255,255,255,0.92);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(0,0,0,0.05);
  transition: all 0.3s;
}
.ma-nav-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 32px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
}

/* Logo */
.ma-logo {
  display: flex;
  align-items: center;
  gap: 10px;
}
.ma-logo-mark {
  width: 40px;
  height: 40px;
  border-radius: 10px;
  background: linear-gradient(135deg, var(--ma-ocean), var(--ma-teal));
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-weight: 800;
  font-size: 16px;
  letter-spacing: -0.5px;
  font-family: 'Plus Jakarta Sans', sans-serif;
}
.ma-logo-text {
  font-family: 'DM Serif Display', serif;
  font-size: 20px;
  color: var(--ma-ink);
}
.ma-logo-text span {
  color: var(--ma-teal);
}

/* Nav Links */
.ma-nav-links {
  display: flex;
  gap: 32px;
  align-items: center;
  list-style: none;
  margin: 0;
  padding: 0;
}
.ma-nav-links a {
  font-size: 14px;
  font-weight: 600;
  color: var(--ma-text);
  transition: color 0.2s;
  letter-spacing: 0.2px;
  font-family: 'Plus Jakarta Sans', sans-serif;
}
.ma-nav-links a:hover {
  color: var(--ma-teal);
}
.ma-nav-cta {
  background: var(--ma-teal) !important;
  color: white !important;
  padding: 10px 24px !important;
  border-radius: 8px !important;
  font-weight: 700 !important;
  font-size: 13px !important;
  letter-spacing: 0.3px;
  transition: all 0.3s;
  text-transform: uppercase;
}
.ma-nav-cta:hover {
  background: var(--ma-ocean) !important;
  transform: translateY(-1px);
  box-shadow: 0 4px 16px rgba(14,140,127,0.3);
}

/* Hamburger */
.ma-hamburger {
  display: none;
  cursor: pointer;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  padding: 8px;
}
.ma-hamburger span {
  width: 24px;
  height: 2px;
  background: var(--ma-ink);
  border-radius: 2px;
  transition: all 0.3s;
}

/* Mobile Menu */
.ma-mobile-menu {
  display: none;
  position: fixed;
  top: 72px;
  left: 0;
  right: 0;
  background: white;
  padding: 20px 32px 28px;
  box-shadow: 0 8px 30px rgba(0,0,0,0.1);
  z-index: 9998;
  flex-direction: column;
  gap: 4px;
}
.ma-mobile-menu.active {
  display: flex;
}
.ma-mobile-menu a {
  display: block;
  padding: 12px 0;
  font-size: 15px;
  font-weight: 600;
  color: var(--ma-text);
  border-bottom: 1px solid #f0f0f0;
  font-family: 'Plus Jakarta Sans', sans-serif;
}
.ma-mobile-menu a:last-child {
  border: none;
}
.ma-mobile-menu .ma-nav-cta {
  display: inline-block;
  text-align: center;
  margin-top: 12px;
}

/* ---------- HERO ---------- */
.ma-hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  background: var(--ma-ink);
  overflow: hidden;
}
.ma-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 20% 50%, rgba(26,82,118,0.4) 0%, transparent 60%),
    radial-gradient(ellipse at 80% 20%, rgba(14,140,127,0.2) 0%, transparent 50%),
    radial-gradient(ellipse at 60% 80%, rgba(212,168,67,0.08) 0%, transparent 40%);
}
.ma-hero-grid {
  position: absolute;
  inset: 0;
  opacity: 0.04;
  background-image:
    linear-gradient(rgba(255,255,255,0.3) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.3) 1px, transparent 1px);
  background-size: 60px 60px;
}
.ma-hero-inner {
  position: relative;
  max-width: 1200px;
  margin: 0 auto;
  padding: 120px 32px 80px;
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 60px;
  align-items: center;
}
.ma-hero-content {
  z-index: 2;
}

/* Hero Badge */
.ma-hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(14,140,127,0.15);
  border: 1px solid rgba(14,140,127,0.3);
  padding: 6px 16px;
  border-radius: 100px;
  font-size: 12px;
  font-weight: 700;
  color: var(--ma-teal-light);
  letter-spacing: 0.8px;
  text-transform: uppercase;
  margin-bottom: 28px;
  font-family: 'Plus Jakarta Sans', sans-serif;
  animation: maFadeInUp 0.8s ease both;
}
.ma-hero-badge::before {
  content: '';
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--ma-teal-light);
  animation: maPulse 2s infinite;
}
@keyframes maPulse {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.4; }
}

/* Hero Heading */
#ma-homepage .ma-hero h1 {
  font-size: clamp(40px, 5vw, 60px);
  line-height: 1.08;
  color: white;
  margin-bottom: 24px;
  letter-spacing: -1px;
  animation: maFadeInUp 0.8s 0.15s ease both;
}
#ma-homepage .ma-hero h1 em {
  font-style: italic;
  color: var(--ma-gold-light);
}
.ma-hero-sub {
  font-size: 17px;
  line-height: 1.7;
  color: rgba(255,255,255,0.65);
  max-width: 500px;
  margin-bottom: 40px;
  animation: maFadeInUp 0.8s 0.3s ease both;
}

/* Hero Buttons */
.ma-hero-actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  animation: maFadeInUp 0.8s 0.45s ease both;
}
.ma-btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: var(--ma-teal);
  color: white;
  padding: 16px 32px;
  border-radius: 10px;
  font-weight: 700;
  font-size: 15px;
  font-family: 'Plus Jakarta Sans', sans-serif;
  transition: all 0.3s;
  border: none;
  cursor: pointer;
}
.ma-btn-primary:hover {
  background: #0ca899;
  color: white;
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(14,140,127,0.35);
}
.ma-btn-secondary {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: transparent;
  color: white;
  padding: 16px 32px;
  border-radius: 10px;
  font-weight: 700;
  font-size: 15px;
  font-family: 'Plus Jakarta Sans', sans-serif;
  border: 1.5px solid rgba(255,255,255,0.25);
  transition: all 0.3s;
  cursor: pointer;
}
.ma-btn-secondary:hover {
  border-color: rgba(255,255,255,0.5);
  background: rgba(255,255,255,0.05);
  color: white;
}

/* Hero Stats */
.ma-hero-stats {
  display: flex;
  gap: 40px;
  margin-top: 50px;
  padding-top: 30px;
  border-top: 1px solid rgba(255,255,255,0.1);
  animation: maFadeInUp 0.8s 0.6s ease both;
}
#ma-homepage .ma-stat-item h3 {
  font-size: 32px;
  color: var(--ma-gold-light);
  font-family: 'DM Serif Display', serif;
}
.ma-stat-item p {
  font-size: 12px;
  color: rgba(255,255,255,0.5);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-top: 4px;
}

/* Hero Right — Qualification Cards */
.ma-hero-right {
  z-index: 2;
  animation: maFadeInUp 1s 0.4s ease both;
}
.ma-qual-stack {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.ma-qual-card {
  display: flex;
  align-items: center;
  gap: 20px;
  background: rgba(255,255,255,0.06);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 16px;
  padding: 24px 28px;
  transition: all 0.4s;
  cursor: pointer;
}
.ma-qual-card:hover {
  background: rgba(255,255,255,0.1);
  transform: translateX(8px);
  border-color: rgba(255,255,255,0.2);
}
.ma-qual-icon {
  width: 56px;
  height: 56px;
  border-radius: 14px;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  font-size: 14px;
  color: white;
  letter-spacing: -0.3px;
  font-family: 'Plus Jakarta Sans', sans-serif;
}
.ma-qual-icon.cmi { background: linear-gradient(135deg, #1a5276, #2980b9); }
.ma-qual-icon.cipd { background: linear-gradient(135deg, #6c3483, #9b59b6); }
.ma-qual-icon.ilm { background: linear-gradient(135deg, #b7950b, #d4ac0d); }

#ma-homepage .ma-qual-card h4 {
  font-size: 17px;
  color: white;
  margin-bottom: 4px;
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-weight: 700;
}
.ma-qual-card p {
  font-size: 13px;
  color: rgba(255,255,255,0.5);
  line-height: 1.5;
}
.ma-qual-levels {
  display: flex;
  gap: 6px;
  margin-top: 8px;
  flex-wrap: wrap;
}
.ma-qual-levels span {
  font-size: 11px;
  font-weight: 700;
  padding: 3px 10px;
  border-radius: 100px;
  background: rgba(255,255,255,0.08);
  color: rgba(255,255,255,0.6);
  letter-spacing: 0.3px;
  font-family: 'Plus Jakarta Sans', sans-serif;
}

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

/* ---------- TRUST BAR ---------- */
.ma-trust-bar {
  background: var(--ma-cream);
  border-bottom: 1px solid var(--ma-smoke);
  padding: 28px 32px;
}
.ma-trust-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 48px;
  flex-wrap: wrap;
}
.ma-trust-item {
  display: flex;
  align-items: center;
  gap: 10px;
}
.ma-trust-icon {
  font-size: 20px;
}
.ma-trust-item span:last-child {
  font-size: 13px;
  font-weight: 700;
  color: var(--ma-text);
  letter-spacing: 0.2px;
}

/* ---------- SECTION STYLES ---------- */
.ma-section-label {
  display: inline-block;
  font-size: 11px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--ma-teal);
  margin-bottom: 12px;
  font-family: 'Plus Jakarta Sans', sans-serif;
}
#ma-homepage .ma-section-title {
  font-size: clamp(30px, 4vw, 42px);
  margin-bottom: 16px;
  line-height: 1.15;
  letter-spacing: -0.5px;
}
.ma-section-desc {
  font-size: 16px;
  color: var(--ma-text-light);
  max-width: 560px;
  line-height: 1.7;
  margin-bottom: 56px;
}

/* ---------- SERVICES ---------- */
.ma-services {
  padding: 100px 32px;
  background: var(--ma-warm-white);
}
.ma-services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.ma-service-card {
  background: white;
  border: 1px solid #eee;
  border-radius: 16px;
  padding: 36px 30px;
  transition: all 0.4s;
  position: relative;
  overflow: hidden;
}
.ma-service-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--ma-teal), var(--ma-ocean));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s;
}
.ma-service-card:hover {
  box-shadow: var(--ma-card-hover);
  transform: translateY(-4px);
  border-color: transparent;
}
.ma-service-card:hover::before {
  transform: scaleX(1);
}
.ma-service-icon {
  width: 52px;
  height: 52px;
  border-radius: 14px;
  background: linear-gradient(135deg, rgba(14,140,127,0.1), rgba(26,82,118,0.1));
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  margin-bottom: 20px;
}
#ma-homepage .ma-service-card h3 {
  font-size: 20px;
  margin-bottom: 10px;
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-weight: 700;
  color: var(--ma-ink);
}
.ma-service-card p {
  font-size: 14px;
  color: var(--ma-text-light);
  line-height: 1.65;
}

/* ---------- HOW IT WORKS ---------- */
.ma-how-it-works {
  padding: 100px 32px;
  background: var(--ma-cream);
}
.ma-steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
}
.ma-step {
  text-align: center;
  position: relative;
}
.ma-step::after {
  content: '→';
  position: absolute;
  right: -20px;
  top: 32px;
  font-size: 24px;
  color: var(--ma-smoke);
  font-weight: 300;
}
.ma-step:last-child::after {
  display: none;
}
.ma-step-num {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  margin: 0 auto 20px;
  background: linear-gradient(135deg, var(--ma-teal), var(--ma-ocean));
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'DM Serif Display', serif;
  font-size: 24px;
  color: white;
}
#ma-homepage .ma-step h3 {
  font-size: 17px;
  margin-bottom: 8px;
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-weight: 700;
}
.ma-step p {
  font-size: 13px;
  color: var(--ma-text-light);
  line-height: 1.6;
  max-width: 220px;
  margin: 0 auto;
}

/* ---------- QUALIFICATIONS ---------- */
.ma-quals {
  padding: 100px 32px;
  background: var(--ma-warm-white);
}
.ma-quals-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}
.ma-qual-detail-card {
  border: 1px solid #eee;
  border-radius: 20px;
  overflow: hidden;
  background: white;
  transition: all 0.4s;
}
.ma-qual-detail-card:hover {
  box-shadow: var(--ma-card-hover);
  transform: translateY(-4px);
}
.ma-qual-header {
  padding: 32px 28px 24px;
}
.ma-qual-header.cmi-bg { background: linear-gradient(135deg, #1a5276, #2980b9); }
.ma-qual-header.cipd-bg { background: linear-gradient(135deg, #6c3483, #9b59b6); }
.ma-qual-header.ilm-bg { background: linear-gradient(135deg, #7d6608, #d4ac0d); }
#ma-homepage .ma-qual-header h3 {
  color: white;
  font-size: 22px;
  margin-bottom: 4px;
}
.ma-qual-header p {
  color: rgba(255,255,255,0.75);
  font-size: 13px;
}
.ma-qual-body {
  padding: 28px;
}
.ma-qual-body li {
  padding: 10px 0;
  border-bottom: 1px solid #f3f3f3;
  font-size: 14px;
  color: var(--ma-text);
  display: flex;
  align-items: center;
  gap: 10px;
}
.ma-qual-body li:last-child {
  border: none;
}
.ma-qual-body li::before {
  content: '✓';
  color: var(--ma-teal);
  font-weight: 800;
  font-size: 14px;
}
.ma-qual-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 16px;
  color: var(--ma-teal) !important;
  font-weight: 700;
  font-size: 14px;
  transition: gap 0.3s;
  font-family: 'Plus Jakarta Sans', sans-serif;
}
.ma-qual-link:hover {
  gap: 14px;
}

/* ---------- WHY US ---------- */
.ma-why {
  padding: 100px 32px;
  background: var(--ma-ink);
  position: relative;
  overflow: hidden;
}
.ma-why::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 30% 50%, rgba(14,140,127,0.15), transparent 60%);
}
.ma-why .ma-container {
  position: relative;
}
.ma-why-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}
.ma-why-card {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 16px;
  padding: 32px 28px;
  transition: all 0.4s;
}
.ma-why-card:hover {
  background: rgba(255,255,255,0.08);
  border-color: rgba(255,255,255,0.15);
}
.ma-why-icon {
  font-size: 28px;
  margin-bottom: 16px;
  display: block;
}
#ma-homepage .ma-why-card h3 {
  color: white;
  font-size: 18px;
  margin-bottom: 8px;
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-weight: 700;
}
.ma-why-card p {
  color: rgba(255,255,255,0.5);
  font-size: 14px;
  line-height: 1.65;
}

/* ---------- TESTIMONIALS ---------- */
.ma-testimonials {
  padding: 100px 32px;
  background: var(--ma-cream);
}
.ma-test-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.ma-test-card {
  background: white;
  border-radius: 16px;
  padding: 32px 28px;
  border: 1px solid #eee;
  transition: all 0.3s;
}
.ma-test-card:hover {
  box-shadow: var(--ma-card-shadow);
}
.ma-test-stars {
  color: var(--ma-gold);
  font-size: 16px;
  margin-bottom: 16px;
  letter-spacing: 2px;
}
.ma-test-quote {
  font-size: 14px;
  color: var(--ma-text);
  line-height: 1.7;
  margin-bottom: 20px;
  font-style: italic;
}
.ma-test-author {
  display: flex;
  align-items: center;
  gap: 12px;
}
.ma-test-avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--ma-teal), var(--ma-ocean));
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-weight: 800;
  font-size: 14px;
  font-family: 'Plus Jakarta Sans', sans-serif;
}
.ma-test-name {
  font-weight: 700;
  font-size: 14px;
  color: var(--ma-ink);
}
.ma-test-role {
  font-size: 12px;
  color: var(--ma-text-light);
}

/* ---------- FAQ ---------- */
.ma-faq {
  padding: 100px 32px;
  background: var(--ma-warm-white);
}
.ma-faq-inner {
  max-width: 760px;
  margin: 0 auto;
}
.ma-faq-item {
  border-bottom: 1px solid var(--ma-smoke);
}
.ma-faq-q {
  width: 100%;
  background: none;
  border: none;
  text-align: left;
  padding: 24px 0;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 16px;
  font-weight: 700;
  color: var(--ma-ink);
  font-family: 'Plus Jakarta Sans', sans-serif;
  line-height: 1.4;
}
.ma-faq-q::after {
  content: '+';
  font-size: 24px;
  color: var(--ma-teal);
  font-weight: 300;
  transition: transform 0.3s;
  flex-shrink: 0;
  margin-left: 16px;
}
.ma-faq-item.ma-faq-open .ma-faq-q::after {
  transform: rotate(45deg);
}
.ma-faq-a {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease;
}
.ma-faq-a-inner {
  padding: 0 0 24px;
  font-size: 14px;
  color: var(--ma-text-light);
  line-height: 1.7;
}
.ma-faq-item.ma-faq-open .ma-faq-a {
  max-height: 300px;
}

/* ---------- CTA ---------- */
.ma-cta {
  padding: 100px 32px;
  background: linear-gradient(135deg, var(--ma-teal), var(--ma-ocean));
  text-align: center;
}
.ma-cta-inner {
  max-width: 640px;
  margin: 0 auto;
}
#ma-homepage .ma-cta h2 {
  color: white;
  font-size: clamp(30px, 4vw, 42px);
  margin-bottom: 16px;
}
.ma-cta p {
  color: rgba(255,255,255,0.75);
  font-size: 16px;
  line-height: 1.7;
  margin-bottom: 36px;
}
.ma-cta .ma-btn-primary:hover {
  box-shadow: 0 8px 30px rgba(0,0,0,0.2);
  transform: translateY(-3px);
}

/* ---------- FOOTER ---------- */
.ma-footer {
  background: var(--ma-ink);
  color: rgba(255,255,255,0.5);
  padding: 60px 32px 30px;
}
.ma-footer-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 48px;
}
#ma-homepage .ma-footer h4 {
  color: white;
  font-size: 15px;
  margin-bottom: 20px;
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-weight: 700;
}
.ma-footer p {
  font-size: 13px;
  line-height: 1.7;
}
.ma-footer li {
  margin-bottom: 10px;
}
.ma-footer a {
  font-size: 13px;
  color: rgba(255,255,255,0.5);
  transition: color 0.2s;
}
.ma-footer a:hover {
  color: var(--ma-teal-light);
}
.ma-footer-bottom {
  max-width: 1200px;
  margin: 40px auto 0;
  padding-top: 24px;
  border-top: 1px solid rgba(255,255,255,0.08);
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 12px;
}
.ma-footer-disclaimer {
  max-width: 1200px;
  margin: 20px auto 0;
  font-size: 11px;
  color: rgba(255,255,255,0.3);
  line-height: 1.6;
  padding-top: 16px;
  border-top: 1px solid rgba(255,255,255,0.05);
}

/* ---------- WHATSAPP FLOAT ---------- */
.ma-wa-float {
  position: fixed;
  bottom: 28px;
  right: 28px;
  z-index: 9990;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: #25d366;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 20px rgba(37,211,102,0.4);
  transition: all 0.3s;
  cursor: pointer;
}
.ma-wa-float:hover {
  transform: scale(1.1);
  box-shadow: 0 6px 28px rgba(37,211,102,0.5);
}

/* ==========================================================================
   RESPONSIVE
   ========================================================================== */
@media (max-width: 1024px) {
  .ma-hero-inner {
    grid-template-columns: 1fr;
    text-align: center;
  }
  .ma-hero-sub {
    margin: 0 auto 40px;
  }
  .ma-hero-actions {
    justify-content: center;
  }
  .ma-hero-stats {
    justify-content: center;
  }
  .ma-hero-right {
    display: none;
  }
  .ma-services-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .ma-quals-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .ma-steps {
    grid-template-columns: repeat(2, 1fr);
  }
  .ma-step::after {
    display: none;
  }
  .ma-footer-inner {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 768px) {
  .ma-nav-links {
    display: none !important;
  }
  .ma-hamburger {
    display: flex;
  }
  .ma-services-grid {
    grid-template-columns: 1fr;
  }
  .ma-quals-grid {
    grid-template-columns: 1fr;
  }
  .ma-why-grid {
    grid-template-columns: 1fr;
  }
  .ma-test-grid {
    grid-template-columns: 1fr;
  }
  .ma-steps {
    grid-template-columns: 1fr;
  }
  .ma-trust-inner {
    gap: 20px;
  }
  .ma-trust-item span:last-child {
    font-size: 12px;
  }
  .ma-hero-stats {
    gap: 24px;
    flex-wrap: wrap;
  }
  .ma-footer-inner {
    grid-template-columns: 1fr;
    gap: 32px;
  }
  .ma-footer-bottom {
    flex-direction: column;
    gap: 12px;
    text-align: center;
  }
  .ma-hero-inner {
    padding: 100px 20px 60px;
  }
  .ma-services,
  .ma-how-it-works,
  .ma-quals,
  .ma-why,
  .ma-testimonials,
  .ma-faq,
  .ma-cta {
    padding: 70px 20px;
  }
}
