/*
 * Theme Name:  Luongo Marco
 * Theme URI:   https://luongomarco.it
 * Description: Premium Liquid Glass dark theme — Consulente IT, Marketing & Finanza
 * Author:      Luongo Marco
 * Version:     2.0
 * Text Domain: luongo-marco
 */

/* ============================================================
   CUSTOM PROPERTIES
   ============================================================ */
:root {
  --lm-bg:            #0F172A;
  --lm-bg-2:          #111827;
  --lm-bg-card:       rgba(255, 255, 255, 0.04);
  --lm-border:        rgba(255, 255, 255, 0.08);
  --lm-border-strong: rgba(255, 255, 255, 0.15);
  --lm-primary:       #1E3A8A;
  --lm-blue:          #3B82F6;
  --lm-gold:          #C59B3D;
  --lm-text:          #F1F5F9;
  --lm-muted:         #94A3B8;
  --lm-subtle:        #64748B;
  --lm-cloud:         #6366F1;
  --lm-software:      #3B82F6;
  --lm-cyber:         #EF4444;
  --lm-ads:           #F97316;
  --lm-seo:           #8B5CF6;
  --lm-finance:       #10B981;
  --lm-radius-sm:     8px;
  --lm-radius:        16px;
  --lm-radius-full:   100px;
  --lm-shadow:        0 4px 24px rgba(0, 0, 0, 0.3);
  --lm-shadow-lg:     0 8px 48px rgba(0, 0, 0, 0.5);
  --lm-font-head:     'Lexend', sans-serif;
  --lm-font-body:     'Source Sans 3', sans-serif;
  --lm-transition:    all 0.25s ease-out;
}

/* ============================================================
   RESET & BASE
   ============================================================ */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

body {
  background-color: var(--lm-bg);
  color: var(--lm-text);
  font-family: var(--lm-font-body);
  font-size: 16px;
  font-weight: 400;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

img,
video {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  color: var(--lm-blue);
  text-decoration: none;
  transition: var(--lm-transition);
}

a:hover {
  color: var(--lm-text);
}

ul,
ol {
  list-style: none;
  padding: 0;
  margin: 0;
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--lm-font-head);
  color: var(--lm-text);
  line-height: 1.15;
  letter-spacing: -0.02em;
}

/* ============================================================
   SKIP LINK (ACCESSIBILITY)
   ============================================================ */
.skip-to-content {
  position: absolute;
  top: -48px;
  left: 16px;
  background: var(--lm-blue);
  color: #fff;
  padding: 8px 16px;
  border-radius: var(--lm-radius-sm);
  font-size: 14px;
  font-weight: 600;
  z-index: 200;
  transition: top 0.2s;
}

.skip-to-content:focus {
  top: 16px;
}

/* ============================================================
   HEADER
   ============================================================ */
.lm-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  height: 68px;
  background: rgba(15, 23, 42, 0.85);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--lm-border);
}

.lm-header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 48px;
  height: 100%;
}

.lm-logo {
  font-family: var(--lm-font-head);
  font-size: 20px;
  font-weight: 700;
  color: var(--lm-text);
  text-decoration: none;
  letter-spacing: -0.02em;
  display: inline-flex;
  align-items: center;
  gap: 2px;
  flex-shrink: 0;
}

.lm-logo::after {
  content: '.';
  color: var(--lm-gold);
  font-size: 26px;
  line-height: 0;
  position: relative;
  top: 3px;
}

.lm-nav {
  display: flex;
  align-items: center;
  gap: 4px;
}

.lm-nav a {
  color: var(--lm-muted);
  font-family: var(--lm-font-body);
  font-size: 13px;
  font-weight: 500;
  text-decoration: none;
  padding: 6px 14px;
  border-radius: var(--lm-radius-sm);
  transition: var(--lm-transition);
  white-space: nowrap;
}

.lm-nav a:hover {
  background: rgba(255, 255, 255, 0.06);
  color: var(--lm-text);
}

.lm-nav-cta {
  background: var(--lm-blue) !important;
  color: #ffffff !important;
  font-weight: 600 !important;
  padding: 8px 20px !important;
  border-radius: var(--lm-radius-sm) !important;
  margin-left: 8px;
}

.lm-nav-cta:hover {
  background: #2563EB !important;
  color: #ffffff !important;
  transform: translateY(-1px);
  box-shadow: var(--lm-shadow);
}

/* Mobile hamburger */
.lm-burger {
  display: none;
  background: none;
  border: 1px solid var(--lm-border);
  border-radius: var(--lm-radius-sm);
  padding: 8px;
  cursor: pointer;
  color: var(--lm-text);
  transition: var(--lm-transition);
  align-items: center;
  justify-content: center;
  line-height: 0;
}

.lm-burger:hover {
  background: rgba(255, 255, 255, 0.06);
  border-color: var(--lm-border-strong);
}

#lm-mobile-nav {
  display: none;
  position: fixed;
  top: 68px;
  left: 0;
  right: 0;
  background: rgba(15, 23, 42, 0.97);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  border-bottom: 1px solid var(--lm-border);
  padding: 16px 24px 24px;
  z-index: 99;
  flex-direction: column;
  gap: 4px;
}

#lm-mobile-nav.open {
  display: flex;
}

#lm-mobile-nav a {
  color: var(--lm-muted);
  font-size: 15px;
  font-weight: 500;
  padding: 12px 16px;
  border-radius: var(--lm-radius-sm);
  transition: var(--lm-transition);
  border: 1px solid transparent;
  text-decoration: none;
}

#lm-mobile-nav a:hover {
  background: rgba(255, 255, 255, 0.06);
  color: var(--lm-text);
  border-color: var(--lm-border);
}

#lm-mobile-nav .lm-nav-cta {
  background: var(--lm-blue) !important;
  color: #ffffff !important;
  border-color: transparent !important;
  margin-top: 8px;
  text-align: center;
  justify-content: center;
  display: block;
}

/* ============================================================
   BUTTONS
   ============================================================ */
.lm-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-family: var(--lm-font-head);
  font-size: 14px;
  font-weight: 600;
  text-decoration: none;
  border-radius: var(--lm-radius-sm);
  padding: 12px 28px;
  transition: var(--lm-transition);
  cursor: pointer;
  border: none;
  outline: none;
  white-space: nowrap;
  letter-spacing: 0.01em;
  line-height: 1.2;
}

.lm-btn-primary {
  background: var(--lm-blue);
  color: #ffffff;
}

.lm-btn-primary:hover {
  background: #2563EB;
  color: #ffffff;
  transform: translateY(-1px);
  box-shadow: var(--lm-shadow-lg);
}

.lm-btn-outline {
  background: transparent;
  border: 1px solid var(--lm-border-strong);
  color: var(--lm-text);
}

.lm-btn-outline:hover {
  background: rgba(255, 255, 255, 0.06);
  border-color: rgba(255, 255, 255, 0.3);
  color: var(--lm-text);
}

.lm-btn-gold {
  background: var(--lm-gold);
  color: #0F172A;
  font-weight: 700;
}

.lm-btn-gold:hover {
  background: #B8862A;
  color: #0F172A;
  transform: translateY(-1px);
  box-shadow: var(--lm-shadow);
}

.lm-btn-cloud    { background: var(--lm-cloud);   color: #ffffff; }
.lm-btn-software { background: var(--lm-software); color: #ffffff; }
.lm-btn-cyber    { background: var(--lm-cyber);   color: #ffffff; }
.lm-btn-ads      { background: var(--lm-ads);     color: #ffffff; }
.lm-btn-seo      { background: var(--lm-seo);     color: #ffffff; }
.lm-btn-finance  { background: var(--lm-finance); color: #ffffff; }

.lm-btn-cloud:hover    { background: #4F46E5; color: #fff; transform: translateY(-1px); }
.lm-btn-software:hover { background: #2563EB; color: #fff; transform: translateY(-1px); }
.lm-btn-cyber:hover    { background: #DC2626; color: #fff; transform: translateY(-1px); }
.lm-btn-ads:hover      { background: #EA6C00; color: #fff; transform: translateY(-1px); }
.lm-btn-seo:hover      { background: #7C3AED; color: #fff; transform: translateY(-1px); }
.lm-btn-finance:hover  { background: #059669; color: #fff; transform: translateY(-1px); }

.lm-btn-sm {
  padding: 8px 18px;
  font-size: 13px;
}

.lm-btn-lg {
  padding: 16px 40px;
  font-size: 16px;
}

/* ============================================================
   LAYOUT UTILITIES
   ============================================================ */
.lm-section {
  padding: 96px 48px;
}

.lm-section--alt {
  background: #080E1A;
}

.lm-wrap {
  max-width: 1200px;
  margin: 0 auto;
}

.lm-wrap-narrow {
  max-width: 800px;
  margin: 0 auto;
}

.lm-wrap-xs {
  max-width: 640px;
  margin: 0 auto;
}

.lm-grid-2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
  align-items: start;
}

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

.lm-grid-4 {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

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

.lm-text-center .lm-subtitle {
  margin-left: auto;
  margin-right: auto;
}

.lm-flex          { display: flex; align-items: center; }
.lm-flex-gap-8    { gap: 8px; }
.lm-flex-gap-16   { gap: 16px; }
.lm-flex-gap-24   { gap: 24px; }
.lm-flex-gap-32   { gap: 32px; }
.lm-flex-wrap     { flex-wrap: wrap; }
.lm-items-start   { align-items: flex-start; }

/* ============================================================
   TYPOGRAPHY
   ============================================================ */
.lm-kicker {
  display: block;
  font-family: var(--lm-font-body);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--lm-gold);
  margin-bottom: 16px;
}

.lm-title {
  font-family: var(--lm-font-head);
  font-size: clamp(36px, 5vw, 64px);
  font-weight: 700;
  letter-spacing: -0.03em;
  line-height: 1.1;
  color: var(--lm-text);
  margin: 0 0 20px;
}

.lm-title-lg {
  font-family: var(--lm-font-head);
  font-size: clamp(48px, 6vw, 80px);
  font-weight: 700;
  letter-spacing: -0.03em;
  line-height: 1.05;
  color: var(--lm-text);
  margin: 0 0 24px;
}

.lm-title-sm {
  font-family: var(--lm-font-head);
  font-size: clamp(24px, 3vw, 36px);
  font-weight: 600;
  letter-spacing: -0.02em;
  line-height: 1.2;
  color: var(--lm-text);
  margin: 0 0 16px;
}

.lm-subtitle {
  font-size: 18px;
  color: var(--lm-muted);
  line-height: 1.7;
  max-width: 600px;
  margin: 0 0 40px;
}

.lm-lead {
  font-size: 20px;
  color: var(--lm-muted);
  line-height: 1.6;
}

.lm-text-muted  { color: var(--lm-muted); }
.lm-text-subtle { color: var(--lm-subtle); }
.lm-text-gold   { color: var(--lm-gold); }
.lm-text-blue   { color: var(--lm-blue); }

/* ============================================================
   CARD COMPONENT
   ============================================================ */
.lm-card {
  background: var(--lm-bg-card);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid var(--lm-border);
  border-radius: var(--lm-radius);
  padding: 32px;
  position: relative;
  overflow: hidden;
  transition: var(--lm-transition);
}

.lm-card:hover {
  border-color: var(--lm-border-strong);
  transform: translateY(-4px);
  box-shadow: var(--lm-shadow-lg);
}

.lm-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.1), transparent);
  transition: var(--lm-transition);
}

/* Service card top-line accents */
.lm-card--cloud::before    { background: linear-gradient(90deg, var(--lm-cloud), rgba(99, 102, 241, 0.2), transparent); }
.lm-card--software::before { background: linear-gradient(90deg, var(--lm-software), rgba(59, 130, 246, 0.2), transparent); }
.lm-card--cyber::before    { background: linear-gradient(90deg, var(--lm-cyber), rgba(239, 68, 68, 0.2), transparent); }
.lm-card--ads::before      { background: linear-gradient(90deg, var(--lm-ads), rgba(249, 115, 22, 0.2), transparent); }
.lm-card--seo::before      { background: linear-gradient(90deg, var(--lm-seo), rgba(139, 92, 246, 0.2), transparent); }
.lm-card--finance::before  { background: linear-gradient(90deg, var(--lm-finance), rgba(16, 185, 129, 0.2), transparent); }

.lm-card--cloud:hover    { border-color: rgba(99, 102, 241, 0.3); }
.lm-card--software:hover { border-color: rgba(59, 130, 246, 0.3); }
.lm-card--cyber:hover    { border-color: rgba(239, 68, 68, 0.3); }
.lm-card--ads:hover      { border-color: rgba(249, 115, 22, 0.3); }
.lm-card--seo:hover      { border-color: rgba(139, 92, 246, 0.3); }
.lm-card--finance:hover  { border-color: rgba(16, 185, 129, 0.3); }

.lm-card-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  border-radius: 12px;
  margin-bottom: 20px;
  flex-shrink: 0;
}

.lm-card-icon--cloud    { background: rgba(99, 102, 241, 0.12);  color: var(--lm-cloud); }
.lm-card-icon--software { background: rgba(59, 130, 246, 0.12);  color: var(--lm-software); }
.lm-card-icon--cyber    { background: rgba(239, 68, 68, 0.12);   color: var(--lm-cyber); }
.lm-card-icon--ads      { background: rgba(249, 115, 22, 0.12);  color: var(--lm-ads); }
.lm-card-icon--seo      { background: rgba(139, 92, 246, 0.12);  color: var(--lm-seo); }
.lm-card-icon--finance  { background: rgba(16, 185, 129, 0.12);  color: var(--lm-finance); }

.lm-card-title {
  font-family: var(--lm-font-head);
  font-size: 18px;
  font-weight: 600;
  color: var(--lm-text);
  margin: 0 0 10px;
  letter-spacing: -0.01em;
}

.lm-card-desc {
  font-size: 14px;
  color: var(--lm-muted);
  line-height: 1.6;
  margin-bottom: 20px;
}

.lm-card-link {
  font-size: 13px;
  font-weight: 600;
  color: var(--lm-muted);
  text-decoration: none;
  transition: var(--lm-transition);
  display: inline-flex;
  align-items: center;
  gap: 4px;
  margin-top: 8px;
}

.lm-card-link:hover {
  color: var(--lm-text);
  opacity: 1;
}

/* ============================================================
   STAT / NUMBER DISPLAY
   ============================================================ */
.lm-stat {
  text-align: center;
  padding: 32px 24px;
}

.lm-stat-num {
  font-family: var(--lm-font-head);
  font-size: clamp(40px, 5vw, 64px);
  font-weight: 700;
  color: var(--lm-gold);
  letter-spacing: -0.04em;
  display: block;
  line-height: 1;
  margin-bottom: 10px;
}

.lm-stat-label {
  font-size: 13px;
  color: var(--lm-muted);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  line-height: 1.4;
  display: block;
}

/* ============================================================
   FEATURE / CHECK LIST
   ============================================================ */
.lm-check-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.lm-check-list li {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  font-size: 15px;
  color: var(--lm-muted);
  line-height: 1.5;
}

.lm-check-list li svg {
  flex-shrink: 0;
  margin-top: 2px;
}

/* ============================================================
   PROCESS STEPS
   ============================================================ */
.lm-steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.lm-step {
  background: var(--lm-bg-card);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid var(--lm-border);
  border-radius: var(--lm-radius);
  padding: 28px 24px;
  text-align: center;
  position: relative;
  transition: var(--lm-transition);
}

.lm-step:hover {
  border-color: var(--lm-border-strong);
  transform: translateY(-4px);
  box-shadow: var(--lm-shadow);
}

.lm-step-num {
  font-family: var(--lm-font-head);
  font-size: 56px;
  font-weight: 800;
  color: rgba(255, 255, 255, 0.05);
  display: block;
  line-height: 1;
  margin-bottom: 8px;
  letter-spacing: -0.04em;
}

.lm-step-title {
  font-family: var(--lm-font-head);
  font-size: 16px;
  font-weight: 600;
  color: var(--lm-text);
  margin: 8px 0 10px;
}

.lm-step-desc {
  font-size: 14px;
  color: var(--lm-muted);
  line-height: 1.55;
}

/* ============================================================
   BADGES / PILLS
   ============================================================ */
.lm-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-family: var(--lm-font-body);
  font-size: 12px;
  font-weight: 600;
  padding: 5px 14px;
  border-radius: var(--lm-radius-full);
  border: 1px solid;
  letter-spacing: 0.01em;
}

.lm-badge--gold     { color: var(--lm-gold);     border-color: rgba(197, 155, 61, 0.3);  background: rgba(197, 155, 61, 0.1); }
.lm-badge--blue     { color: var(--lm-blue);     border-color: rgba(59, 130, 246, 0.3);  background: rgba(59, 130, 246, 0.1); }
.lm-badge--cloud    { color: var(--lm-cloud);    border-color: rgba(99, 102, 241, 0.3);  background: rgba(99, 102, 241, 0.1); }
.lm-badge--software { color: var(--lm-software); border-color: rgba(59, 130, 246, 0.3);  background: rgba(59, 130, 246, 0.1); }
.lm-badge--cyber    { color: var(--lm-cyber);    border-color: rgba(239, 68, 68, 0.3);   background: rgba(239, 68, 68, 0.1); }
.lm-badge--ads      { color: var(--lm-ads);      border-color: rgba(249, 115, 22, 0.3);  background: rgba(249, 115, 22, 0.1); }
.lm-badge--seo      { color: var(--lm-seo);      border-color: rgba(139, 92, 246, 0.3);  background: rgba(139, 92, 246, 0.1); }
.lm-badge--finance  { color: var(--lm-finance);  border-color: rgba(16, 185, 129, 0.3);  background: rgba(16, 185, 129, 0.1); }

/* ============================================================
   SECTION DIVIDER
   ============================================================ */
.lm-divider {
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--lm-border), transparent);
  margin: 0;
  border: none;
}

/* ============================================================
   DISCLAIMER BOX
   ============================================================ */
.lm-disclaimer {
  border: 1px solid rgba(197, 155, 61, 0.2);
  background: rgba(197, 155, 61, 0.05);
  border-radius: 12px;
  padding: 24px 28px;
  font-size: 13px;
  color: var(--lm-muted);
  line-height: 1.7;
}

.lm-disclaimer strong {
  color: var(--lm-gold);
  font-weight: 600;
}

/* ============================================================
   FOOTER
   ============================================================ */
.lm-footer {
  background: #080E1A;
  border-top: 1px solid var(--lm-border);
  padding: 64px 48px 32px;
}

.lm-footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 40px;
  max-width: 1200px;
  margin: 0 auto;
}

.lm-footer-logo {
  font-family: var(--lm-font-head);
  font-size: 20px;
  font-weight: 700;
  color: var(--lm-text);
  letter-spacing: -0.02em;
  display: inline-flex;
  align-items: center;
  gap: 2px;
  margin-bottom: 16px;
  text-decoration: none;
}

.lm-footer-logo::after {
  content: '.';
  color: var(--lm-gold);
  font-size: 26px;
  line-height: 0;
  position: relative;
  top: 3px;
}

.lm-footer-tagline {
  font-size: 14px;
  color: var(--lm-muted);
  margin-bottom: 16px;
  line-height: 1.5;
  display: block;
}

.lm-footer-meta {
  font-size: 12px;
  color: var(--lm-subtle);
  line-height: 1.9;
}

.lm-footer-meta a {
  color: var(--lm-subtle);
  text-decoration: none;
}

.lm-footer-meta a:hover {
  color: var(--lm-muted);
}

.lm-footer-heading {
  font-family: var(--lm-font-body);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--lm-gold);
  margin-bottom: 16px;
  margin-top: 0;
  display: block;
}

.lm-footer-col .lm-footer-heading + .lm-footer-heading {
  margin-top: 32px;
}

.lm-footer-links {
  list-style: none;
  padding: 0;
  margin: 0 0 24px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.lm-footer-links a {
  color: var(--lm-muted);
  text-decoration: none;
  font-size: 14px;
  transition: var(--lm-transition);
  display: inline-block;
}

.lm-footer-links a:hover {
  color: var(--lm-text);
}

.lm-footer-legal {
  grid-column: 1 / -1;
  border-top: 1px solid var(--lm-border);
  margin-top: 48px;
  padding-top: 28px;
  font-size: 12px;
  color: var(--lm-subtle);
  line-height: 1.85;
}

.lm-footer-legal a {
  color: var(--lm-subtle);
  text-decoration: none;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  padding-bottom: 1px;
}

.lm-footer-legal a:hover {
  color: var(--lm-muted);
  border-bottom-color: rgba(255, 255, 255, 0.3);
}

.lm-footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 16px;
  font-size: 12px;
  color: var(--lm-subtle);
}

/* ============================================================
   MAIN CONTENT OFFSET (accounts for fixed header)
   ============================================================ */
main {
  padding-top: 68px;
}

/* ============================================================
   RESPONSIVE — 1024px
   ============================================================ */
@media (max-width: 1024px) {
  .lm-grid-2 {
    grid-template-columns: 1fr;
  }

  .lm-section {
    padding: 72px 32px;
  }

  .lm-header-inner {
    padding: 0 32px;
  }

  .lm-footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 32px;
  }

  .lm-footer {
    padding: 56px 32px 28px;
  }

  .lm-steps {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* ============================================================
   RESPONSIVE — 768px
   ============================================================ */
@media (max-width: 768px) {
  .lm-grid-3,
  .lm-grid-4 {
    grid-template-columns: 1fr;
  }

  .lm-title {
    font-size: clamp(28px, 8vw, 48px);
  }

  .lm-title-lg {
    font-size: clamp(32px, 9vw, 56px);
  }

  .lm-title-sm {
    font-size: clamp(22px, 5vw, 28px);
  }

  .lm-subtitle {
    font-size: 16px;
  }

  .lm-nav {
    display: none;
  }

  .lm-burger {
    display: inline-flex;
  }

  .lm-section {
    padding: 64px 24px;
  }

  .lm-steps {
    grid-template-columns: repeat(2, 1fr);
  }

  .lm-footer {
    padding: 48px 24px 24px;
  }

  .lm-footer-grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .lm-footer-bottom {
    flex-direction: column;
    gap: 8px;
    text-align: center;
  }
}

/* ============================================================
   RESPONSIVE — 480px
   ============================================================ */
@media (max-width: 480px) {
  .lm-section {
    padding: 56px 20px;
  }

  .lm-title {
    font-size: clamp(26px, 7vw, 36px);
  }

  .lm-title-lg {
    font-size: clamp(26px, 8vw, 44px);
  }

  .lm-steps {
    grid-template-columns: 1fr;
  }

  .lm-header-inner {
    padding: 0 20px;
  }

  .lm-btn {
    padding: 10px 20px;
    font-size: 13px;
  }
}
