/*
Theme Name: Divi Child Mapora
Theme URI: https://maporasolutions.com
Description: Custom Divi 5 Child Theme for Mapora Solutions (Oklahoma City Web Design & Google Maps Agency for Local Contractors).
Author: Mapora Solutions
Author URI: https://maporasolutions.com
Template: Divi
Version: 1.0.4
Text Domain: divi-child-mapora
*/

/* ==========================================================================
   Mapora Solutions - Official Mobile-First Responsive Stylesheet
   ========================================================================== */

@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800&family=Montserrat:wght@600;700;800;900&display=swap');

/* Force visibility & full width on all mobile devices & Divi wrappers */
.page-template-page-landing,
.page-template-page-landing #page-container,
.page-template-page-landing #et-main-area,
.page-template-page-landing #main-content {
  display: block !important;
  visibility: visible !important;
  opacity: 1 !important;
  width: 100% !important;
  max-width: 100% !important;
  margin: 0 !important;
  padding: 0 !important;
  background: #ffffff !important;
}

/* Hide default Divi theme header & footer on Mapora landing template */
.page-template-page-landing #main-header,
.page-template-page-landing #top-header,
.page-template-page-landing #et-main-area > header,
.page-template-page-landing #main-footer,
.page-template-page-landing footer#main-footer,
.page-template-page-landing #et-footer-nav,
.page-template-page-landing #footer-bottom {
  display: none !important;
}

:root {
  --navy: #0A2240;
  --navy-dark: #061528;
  --navy-light: #143258;
  --blue-pin: #2172AA;
  --blue-pin-light: #EBF5FB;
  --green-growth: #5CB85C;
  --green-growth-hover: #4CAF50;
  --green-glow: rgba(92, 184, 92, 0.4);
  --charcoal: #333333;
  --charcoal-light: #555555;
  --gray-bg: #F8FAFC;
  --gray-border: #E2E8F0;
  --white: #FFFFFF;
  
  --font-heading: 'Montserrat', 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  --font-body: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;

  --shadow-sm: 0 2px 8px rgba(10, 34, 64, 0.06);
  --shadow-md: 0 10px 30px rgba(10, 34, 64, 0.08);
  --shadow-lg: 0 20px 40px rgba(10, 34, 64, 0.12);
  --shadow-green: 0 8px 24px rgba(92, 184, 92, 0.35);

  --radius-sm: 8px;
  --radius-md: 14px;
  --radius-lg: 24px;
  --radius-full: 9999px;

  --transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

/* Base resets */
.mapora-custom-landing *,
.mapora-custom-landing *::before,
.mapora-custom-landing *::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

.mapora-custom-landing {
  font-family: var(--font-body);
  color: var(--charcoal);
  background-color: var(--white);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  width: 100% !important;
  max-width: 100% !important;
  overflow-x: hidden !important;
  display: block !important;
  visibility: visible !important;
}

.mapora-custom-landing h1,
.mapora-custom-landing h2,
.mapora-custom-landing h3,
.mapora-custom-landing h4 {
  font-family: var(--font-heading);
  color: var(--navy);
  line-height: 1.2;
}

.mapora-custom-landing a {
  text-decoration: none;
  color: inherit;
  transition: var(--transition);
}

.mapora-custom-landing img {
  max-width: 100%;
  height: auto;
  display: block;
}

/* Container Utility */
.mapora-custom-landing .container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1.25rem;
}

/* Buttons System */
.mapora-custom-landing .btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.6rem;
  padding: 0.95rem 1.8rem;
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 1.05rem;
  border-radius: var(--radius-sm);
  cursor: pointer;
  border: none;
  transition: var(--transition);
  text-transform: capitalize;
  text-decoration: none;
  text-align: center;
}

.mapora-custom-landing .btn-growth {
  background-color: var(--green-growth) !important;
  color: var(--white) !important;
  box-shadow: var(--shadow-green);
}

.mapora-custom-landing .btn-growth:hover {
  background-color: var(--green-growth-hover) !important;
  transform: translateY(-2px);
  box-shadow: 0 12px 28px rgba(92, 184, 92, 0.45);
}

.mapora-custom-landing .btn-outline-navy {
  background-color: transparent !important;
  color: var(--navy) !important;
  border: 2px solid var(--navy) !important;
}

.mapora-custom-landing .btn-outline-navy:hover {
  background-color: var(--navy) !important;
  color: var(--white) !important;
  transform: translateY(-2px);
}

/* Header & Navigation */
.mapora-custom-landing .site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background-color: rgba(255, 255, 255, 0.98);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--gray-border);
  transition: var(--transition);
  width: 100%;
}

.mapora-custom-landing .header-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 80px;
}

.mapora-custom-landing .logo-wrapper {
  display: flex !important;
  align-items: center !important;
  gap: 0.5rem;
  text-decoration: none;
  flex-shrink: 0 !important; /* CRITICAL: Prevent logo from getting squeezed */
  max-width: 160px;
}

.mapora-custom-landing .logo-img {
  max-height: 54px !important;
  width: auto !important;
  height: auto !important;
  object-fit: contain !important;
  display: block !important;
}

.mapora-custom-landing .nav-menu {
  display: flex;
  align-items: center;
  gap: 2rem;
  list-style: none;
  margin: 0;
  padding: 0;
}

.mapora-custom-landing .nav-link {
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 0.95rem;
  color: var(--navy);
}

.mapora-custom-landing .nav-link:hover {
  color: var(--blue-pin);
}

.mapora-custom-landing .header-actions {
  display: flex;
  align-items: center;
  gap: 0.85rem;
  flex-shrink: 0;
}

.mapora-custom-landing .header-phone {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  font-weight: 700;
  color: var(--navy);
  font-size: 0.95rem;
}

.mapora-custom-landing .header-phone svg {
  color: var(--green-growth);
}

/* HERO SECTION */
.mapora-custom-landing .hero-section {
  padding: 4rem 0 5rem;
  background: linear-gradient(135deg, #FFFFFF 0%, var(--gray-bg) 60%, #EBF5FB 100%);
  position: relative;
  overflow: hidden;
  width: 100%;
}

.mapora-custom-landing .hero-grid {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 3rem;
  align-items: center;
}

.mapora-custom-landing .location-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.4rem 1rem;
  background-color: rgba(33, 114, 170, 0.1);
  color: var(--navy);
  border: 1px solid rgba(33, 114, 170, 0.25);
  border-radius: var(--radius-full);
  font-weight: 700;
  font-size: 0.85rem;
  margin-bottom: 1.25rem;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.mapora-custom-landing .hero-headline {
  font-size: 3.2rem;
  font-weight: 800;
  color: var(--navy);
  margin-bottom: 1.25rem;
  letter-spacing: -0.02em;
}

.mapora-custom-landing .hero-headline span.highlight-green {
  color: var(--green-growth);
  display: inline-block;
}

.mapora-custom-landing .hero-subheadline {
  font-size: 1.15rem;
  color: var(--charcoal-light);
  margin-bottom: 2rem;
  line-height: 1.7;
}

.mapora-custom-landing .hero-cta-group {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 1rem;
  margin-bottom: 2rem;
}

.mapora-custom-landing .hero-trust-bullets {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 1.25rem;
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--charcoal-light);
}

.mapora-custom-landing .trust-item {
  display: flex;
  align-items: center;
  gap: 0.4rem;
}

.mapora-custom-landing .trust-item svg {
  color: var(--green-growth);
}

/* HERO VISUAL MOCKUP */
.mapora-custom-landing .mockup-card {
  background-color: var(--white);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  border: 1px solid var(--gray-border);
  padding: 1.5rem;
  position: relative;
  width: 100%;
}

.mapora-custom-landing .mockup-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 1.25rem;
  padding-bottom: 0.85rem;
  border-bottom: 1px solid var(--gray-border);
}

.mapora-custom-landing .mockup-title {
  font-weight: 700;
  font-size: 0.9rem;
  color: var(--navy);
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.mapora-custom-landing .status-indicator {
  display: inline-block;
  width: 10px;
  height: 10px;
  background-color: var(--green-growth);
  border-radius: 50%;
  box-shadow: 0 0 0 4px var(--green-glow);
}

.mapora-custom-landing .google-maps-preview {
  background: linear-gradient(180deg, #F8FAFC 0%, #FFFFFF 100%);
  border: 1px solid var(--gray-border);
  border-radius: var(--radius-md);
  padding: 1rem;
  margin-bottom: 1rem;
}

.mapora-custom-landing .maps-rank-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  background-color: #DEF7EC;
  color: #03543F;
  font-weight: 700;
  font-size: 0.8rem;
  padding: 0.25rem 0.65rem;
  border-radius: var(--radius-full);
  margin-bottom: 0.75rem;
}

.mapora-custom-landing .contractor-preview-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: var(--white);
  padding: 0.85rem;
  border-radius: var(--radius-sm);
  box-shadow: var(--shadow-sm);
  border-left: 4px solid var(--green-growth);
}

.mapora-custom-landing .contractor-info h4 {
  font-size: 0.95rem;
  color: var(--navy);
}

.mapora-custom-landing .rating-stars {
  color: #F59E0B;
  font-size: 0.85rem;
  display: flex;
  align-items: center;
  gap: 0.25rem;
}

.mapora-custom-landing .phone-action-btn {
  background-color: var(--green-growth);
  color: white;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: var(--shadow-green);
  animation: mapora-pulse-ring 2s infinite;
  flex-shrink: 0;
}

@keyframes mapora-pulse-ring {
  0% { box-shadow: 0 0 0 0 rgba(92, 184, 92, 0.7); }
  70% { box-shadow: 0 0 0 12px rgba(92, 184, 92, 0); }
  100% { box-shadow: 0 0 0 0 rgba(92, 184, 92, 0); }
}

/* SECTION COMMON STYLES */
.mapora-custom-landing .section-padding {
  padding: 5rem 0;
}

.mapora-custom-landing .section-header {
  text-align: center;
  max-width: 750px;
  margin: 0 auto 3.5rem;
}

.mapora-custom-landing .section-subtitle {
  color: var(--blue-pin);
  font-weight: 800;
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 0.5rem;
  display: block;
}

.mapora-custom-landing .section-title {
  font-size: 2.4rem;
  font-weight: 800;
  color: var(--navy);
  margin-bottom: 1rem;
}

.mapora-custom-landing .section-desc {
  font-size: 1.05rem;
  color: var(--charcoal-light);
}

/* CORE SERVICES SECTION */
.mapora-custom-landing .services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

.mapora-custom-landing .service-card {
  background-color: var(--white);
  border: 1px solid var(--gray-border);
  border-radius: var(--radius-md);
  padding: 2.25rem 1.75rem;
  transition: var(--transition);
  position: relative;
  display: flex;
  flex-direction: column;
}

.mapora-custom-landing .service-card:hover {
  transform: translateY(-6px);
  border-color: var(--blue-pin);
  box-shadow: var(--shadow-lg);
}

.mapora-custom-landing .service-icon-box {
  width: 58px;
  height: 58px;
  border-radius: var(--radius-sm);
  background-color: var(--blue-pin-light);
  color: var(--blue-pin);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.25rem;
}

.mapora-custom-landing .service-title {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 0.85rem;
}

.mapora-custom-landing .service-text {
  color: var(--charcoal-light);
  font-size: 0.98rem;
  line-height: 1.6;
}

/* PRICING SECTION */
.mapora-custom-landing .pricing-section {
  background-color: var(--gray-bg);
  border-top: 1px solid var(--gray-border);
  border-bottom: 1px solid var(--gray-border);
}

.mapora-custom-landing .pricing-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem;
  max-width: 980px;
  margin: 0 auto;
}

.mapora-custom-landing .pricing-card {
  background-color: var(--white);
  border-radius: var(--radius-lg);
  border: 2px solid var(--gray-border);
  padding: 2.5rem 2rem;
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  transition: var(--transition);
}

.mapora-custom-landing .pricing-card.featured {
  border-color: var(--green-growth);
  box-shadow: var(--shadow-lg);
}

.mapora-custom-landing .popular-badge {
  position: absolute;
  top: -16px;
  left: 50%;
  transform: translateX(-50%);
  background-color: var(--green-growth);
  color: var(--white);
  font-weight: 800;
  font-size: 0.78rem;
  padding: 0.35rem 1.15rem;
  border-radius: var(--radius-full);
  letter-spacing: 0.5px;
  text-transform: uppercase;
  box-shadow: 0 4px 12px rgba(92, 184, 92, 0.4);
  white-space: nowrap;
}

.mapora-custom-landing .pricing-header {
  margin-bottom: 1.75rem;
  text-align: center;
}

.mapora-custom-landing .plan-name {
  font-size: 1.35rem;
  font-weight: 800;
  color: var(--navy);
  margin-bottom: 0.5rem;
}

.mapora-custom-landing .plan-price-box {
  display: flex;
  align-items: baseline;
  justify-content: center;
  gap: 0.3rem;
  margin-bottom: 0.4rem;
}

.mapora-custom-landing .plan-currency {
  font-size: 1.6rem;
  font-weight: 800;
  color: var(--navy);
}

.mapora-custom-landing .plan-amount {
  font-size: 3.2rem;
  font-weight: 900;
  color: var(--navy);
  line-height: 1;
}

.mapora-custom-landing .plan-period {
  font-size: 0.95rem;
  color: var(--charcoal-light);
  font-weight: 600;
}

.mapora-custom-landing .plan-subtitle {
  font-size: 0.88rem;
  color: var(--blue-pin);
  font-weight: 700;
}

.mapora-custom-landing .pricing-bullets {
  list-style: none;
  margin: 0 0 2rem 0;
  padding: 0;
}

.mapora-custom-landing .pricing-bullet {
  display: flex;
  align-items: flex-start;
  gap: 0.65rem;
  font-size: 0.98rem;
  color: var(--charcoal);
  margin-bottom: 0.85rem;
  line-height: 1.4;
}

.mapora-custom-landing .pricing-bullet svg {
  color: var(--green-growth);
  flex-shrink: 0;
  margin-top: 3px;
}

/* WHY MAPORA SOLUTIONS SECTION */
.mapora-custom-landing .why-section {
  background-color: var(--navy);
  color: var(--white);
  position: relative;
}

.mapora-custom-landing .why-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3.5rem;
  align-items: center;
}

.mapora-custom-landing .why-content h2 {
  color: var(--white);
  font-size: 2.4rem;
  margin-bottom: 1.25rem;
}

.mapora-custom-landing .why-content p {
  color: #CBD5E1;
  font-size: 1.1rem;
  line-height: 1.7;
  margin-bottom: 2rem;
}

.mapora-custom-landing .why-stats-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.25rem;
}

.mapora-custom-landing .stat-card {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  padding: 1.5rem;
  border-radius: var(--radius-md);
  backdrop-filter: blur(10px);
}

.mapora-custom-landing .stat-number {
  font-family: var(--font-heading);
  font-size: 2.2rem;
  font-weight: 800;
  color: var(--green-growth);
  margin-bottom: 0.25rem;
}

.mapora-custom-landing .stat-label {
  color: #94A3B8;
  font-size: 0.9rem;
  font-weight: 600;
}

/* FOOTER & CONTACT SECTION */
.mapora-custom-landing .site-footer {
  background-color: var(--navy-dark);
  color: var(--white);
  padding: 4rem 0 2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.mapora-custom-landing .footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr;
  gap: 2.5rem;
  margin-bottom: 3.5rem;
}

.mapora-custom-landing .footer-brand h3 {
  color: var(--white);
  font-size: 1.6rem;
  margin-bottom: 0.85rem;
}

.mapora-custom-landing .footer-brand p {
  color: #94A3B8;
  margin-bottom: 1.25rem;
  max-width: 350px;
}

.mapora-custom-landing .footer-contact-list,
.mapora-custom-landing .footer-links-list {
  list-style: none;
  margin: 0;
  padding: 0;
}

.mapora-custom-landing .footer-contact-item {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  color: #E2E8F0;
  margin-bottom: 0.85rem;
  font-size: 0.95rem;
}

.mapora-custom-landing .footer-contact-item svg {
  color: var(--green-growth);
  flex-shrink: 0;
}

.mapora-custom-landing .footer-contact-item a:hover {
  color: var(--green-growth);
}

.mapora-custom-landing .footer-links h4 {
  color: var(--white);
  font-size: 1.05rem;
  margin-bottom: 1.15rem;
}

.mapora-custom-landing .footer-links-list li {
  margin-bottom: 0.65rem;
}

.mapora-custom-landing .footer-links-list a {
  color: #94A3B8;
}

.mapora-custom-landing .footer-links-list a:hover {
  color: var(--white);
}

.mapora-custom-landing .footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding-top: 1.75rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  color: #64748B;
  font-size: 0.88rem;
}

/* FREE DEMO MODAL */
.mapora-custom-landing .modal-backdrop {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background-color: rgba(10, 34, 64, 0.8);
  backdrop-filter: blur(8px);
  z-index: 999999;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: var(--transition);
  padding: 1rem;
}

.mapora-custom-landing .modal-backdrop.active {
  opacity: 1;
  visibility: visible;
}

.mapora-custom-landing .modal-card {
  background-color: var(--white);
  border-radius: var(--radius-lg);
  width: 100%;
  max-width: 550px;
  padding: 2.25rem 2rem;
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.35);
  position: relative;
  transform: scale(0.95);
  transition: var(--transition);
  max-height: 90vh;
  overflow-y: auto;
}

.mapora-custom-landing .modal-backdrop.active .modal-card {
  transform: scale(1);
}

.mapora-custom-landing .modal-close-btn {
  position: absolute;
  top: 1rem;
  right: 1rem;
  background: var(--gray-bg);
  border: none;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  color: var(--charcoal);
  transition: var(--transition);
  font-size: 1.25rem;
}

.mapora-custom-landing .modal-close-btn:hover {
  background: var(--navy);
  color: var(--white);
}

.mapora-custom-landing .modal-header h3 {
  font-size: 1.6rem;
  color: var(--navy);
  margin-bottom: 0.4rem;
}

.mapora-custom-landing .modal-header p {
  color: var(--charcoal-light);
  font-size: 0.92rem;
  margin-bottom: 1.25rem;
}

.mapora-custom-landing .demo-form {
  display: flex;
  flex-direction: column;
  gap: 1.1rem;
}

.mapora-custom-landing .form-group {
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
}

.mapora-custom-landing .form-group label {
  font-weight: 700;
  font-size: 0.88rem;
  color: var(--navy);
}

.mapora-custom-landing .form-control {
  padding: 0.8rem 0.95rem;
  border: 1.5px solid var(--gray-border);
  border-radius: var(--radius-sm);
  font-family: var(--font-body);
  font-size: 0.98rem;
  transition: var(--transition);
  width: 100%;
}

.mapora-custom-landing .form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.85rem;
}

/* ==========================================================================
   MOBILE RESPONSIVE BREAKPOINTS
   ========================================================================== */

@media (max-width: 992px) {
  .mapora-custom-landing .nav-menu {
    display: none !important;
  }

  .mapora-custom-landing .hero-grid,
  .mapora-custom-landing .why-grid {
    grid-template-columns: 1fr !important;
    gap: 2.5rem !important;
  }

  .mapora-custom-landing .services-grid {
    grid-template-columns: 1fr !important;
    gap: 1.5rem !important;
  }

  .mapora-custom-landing .pricing-grid {
    grid-template-columns: 1fr !important;
    gap: 2.5rem !important;
  }

  .mapora-custom-landing .footer-grid {
    grid-template-columns: 1fr !important;
    gap: 2rem !important;
  }

  .mapora-custom-landing .hero-headline {
    font-size: 2.4rem !important;
  }

  .mapora-custom-landing .section-title {
    font-size: 2rem !important;
  }
}

@media (max-width: 768px) {
  .mapora-custom-landing .header-container {
    height: 70px !important;
    padding: 0 0.85rem !important;
  }

  .mapora-custom-landing .logo-wrapper {
    max-width: 130px !important;
  }

  .mapora-custom-landing .logo-img {
    max-height: 44px !important;
  }

  .mapora-custom-landing .header-phone span {
    display: none !important;
  }

  .mapora-custom-landing .header-actions .btn {
    padding: 0.55rem 0.95rem !important;
    font-size: 0.85rem !important;
  }

  .mapora-custom-landing .hero-section {
    padding: 2.5rem 0 3.5rem !important;
  }

  .mapora-custom-landing .hero-headline {
    font-size: 2rem !important;
    line-height: 1.25 !important;
  }

  .mapora-custom-landing .hero-subheadline {
    font-size: 1.02rem !important;
    margin-bottom: 1.5rem !important;
  }

  .mapora-custom-landing .hero-cta-group {
    flex-direction: column !important;
    width: 100% !important;
  }

  .mapora-custom-landing .hero-cta-group .btn {
    width: 100% !important;
  }

  .mapora-custom-landing .hero-trust-bullets {
    flex-direction: column !important;
    align-items: flex-start !important;
    gap: 0.6rem !important;
  }

  .mapora-custom-landing .why-stats-grid {
    grid-template-columns: 1fr !important;
    gap: 1rem !important;
  }

  .mapora-custom-landing .form-row {
    grid-template-columns: 1fr !important;
  }

  .mapora-custom-landing .footer-bottom {
    flex-direction: column !important;
    gap: 0.75rem !important;
    text-align: center !important;
  }
}

@media (max-width: 480px) {
  .mapora-custom-landing .container {
    padding: 0 0.85rem !important;
  }

  .mapora-custom-landing .logo-wrapper {
    max-width: 110px !important;
  }

  .mapora-custom-landing .logo-img {
    max-height: 40px !important;
  }

  .mapora-custom-landing .hero-headline {
    font-size: 1.75rem !important;
  }

  .mapora-custom-landing .section-title {
    font-size: 1.65rem !important;
  }

  .mapora-custom-landing .pricing-card {
    padding: 2rem 1.25rem !important;
  }

  .mapora-custom-landing .plan-amount {
    font-size: 2.75rem !important;
  }

  .mapora-custom-landing .modal-card {
    padding: 1.5rem 1.15rem !important;
  }
}
