.elementor-3189 .elementor-element.elementor-element-d5260c4{--display:flex;--padding-top:0px;--padding-bottom:0px;--padding-left:0px;--padding-right:0px;}.elementor-3189 .elementor-element.elementor-element-d5260c4.e-con{--align-self:center;}:root{--page-title-display:none;}@media(min-width:768px){.elementor-3189 .elementor-element.elementor-element-d5260c4{--width:100%;}}/* Start custom CSS *//* ============================================
   Patrimon MFO - Landing Page Styles
   Pure CSS Export for WordPress/CMS
   ============================================ */

/* CSS Variables (Design Tokens) */
:root {
  /* Colors */
  --background: hsl(40, 30%, 96%);
  --foreground: hsl(30, 10%, 20%);
  --card: hsl(0, 0%, 100%);
  --card-foreground: hsl(30, 10%, 20%);
  --primary: hsl(30, 10%, 20%);
  --primary-foreground: hsl(40, 30%, 96%);
  --secondary: hsl(30, 10%, 25%);
  --secondary-foreground: hsl(40, 30%, 96%);
  --muted: hsl(40, 20%, 90%);
  --muted-foreground: hsl(30, 10%, 45%);
  --accent: hsl(39, 70%, 50%);
  --accent-foreground: hsl(0, 0%, 100%);
  --destructive: hsl(0, 84%, 60%);
  --border: hsl(40, 20%, 88%);
  
  /* Custom tokens */
  --gold: hsl(39, 70%, 50%);
  --gold-light: hsl(39, 60%, 70%);
  --cream: hsl(40, 30%, 96%);
  --charcoal: hsl(30, 10%, 20%);
  
  /* Gradients */
  --gradient-gold: linear-gradient(135deg, hsl(39, 70%, 50%), hsl(39, 60%, 60%));
  --gradient-hero: linear-gradient(135deg, hsl(40, 30%, 96%) 0%, hsl(40, 25%, 92%) 50%, hsl(39, 30%, 90%) 100%);
  
  /* Shadows */
  --shadow-elegant: 0 4px 30px -10px hsla(39, 70%, 50%, 0.2);
  --shadow-card: 0 10px 40px -15px hsla(30, 10%, 20%, 0.1);
  --shadow-hover: 0 20px 50px -15px hsla(50, 10%, 20%, 0.15);
  
  /* Typography */
  --font-display: "Inter", system-ui, sans-serif;
  --font-body: "Inter", system-ui, sans-serif;
  
  /* Spacing */
  --radius: 0.5rem;
}

/* Reset & Base */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-body);
  background-color: var(--background);
  color: var(--foreground);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-display);
  line-height: 1.2;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  text-decoration: none;
color: inherit;
}

/* Container */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

/* Utilities */
.text-secondary {
  color: var(--secondary);
}

.text-destructive {
  color: var(--destructive);
}

/* ============================================
   Buttons
   ============================================ */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.625rem 1rem;
  font-size: 0.875rem;
  font-weight: 500;
  border-radius: var(--radius);
  border: none;
  cursor: pointer;
  transition: all 0.3s ease;
  white-space: nowrap;
}

.btn-gold {
  background: var(--secondary);
  color: var(--secondary-foreground);

}

.btn-gold:hover {
  background: hsla(30, 10%, 25%, 0.9);
  box-shadow: var(--shadow-hover);
}

.btn-hero {
  background: var(--secondary);
  color: var(--secondary-foreground);
  padding: 1rem 2.5rem;
  font-size: 1rem;
  box-shadow: var(--shadow-elegant);
}

.btn-hero:hover {
  background: hsla(30, 10%, 25%, 0.9);
  box-shadow: var(--shadow-hover);
}

.btn-hero-outline {
  background: transparent;
  color: var(--primary);
  border: 2px solid hsla(30, 10%, 20%, 0.2);
  padding: 1rem 2.5rem;
  font-size: 1rem;
}

.btn-hero-outline:hover {
  background: hsla(30, 10%, 20%, 0.05);
}

.btn-xl {
  padding: 1rem 2.5rem;
  font-size: 1rem;
}

/* ============================================
   Header
   ============================================ */
.header {
  position: fixed;
  top: 2rem;
  left: 4rem;
  right: 0;
  z-index: 50;
  padding: 1.5rem 0;
  transition: all 0.5s ease;
}

.header-scrolled {
  background: hsla(0, 0%, 100%, 0.95);
  backdrop-filter: blur(12px);
  box-shadow: var(--shadow-card);
  padding: 0.75rem 0;
}

.header-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.logo {
  display: flex;
  align-items: center;
}

.logo-image {
  height: 4.5rem;
  width: 10rem;
  align-items: center;
}

.nav-desktop {
  display: none;
  align-items: center;
  gap: 2rem;
}

@media (min-width: 768px) {
  .nav-desktop {
    display: flex;
  }
}

.nav-link {
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--muted-foreground);
  transition: color 0.3s ease;
}

.nav-link:hover {
  color: var(--primary);
}

.mobile-menu-btn {
  display: block;
  background: none;
  border: none;
  color: var(--primary);
  cursor: pointer;
}

@media (min-width: 768px) {
  .mobile-menu-btn {
    display: none;
  }
}

.nav-mobile {
  display: none;
  flex-direction: column;
  gap: 1rem;
  padding: 1.5rem;
  background: hsla(0, 0%, 100%, 0.95);
  backdrop-filter: blur(12px);
  box-shadow: var(--shadow-card);
}

.nav-mobile.active {
  display: flex;
}

@media (min-width: 768px) {
  .nav-mobile {
    display: none !important;
  }
}

/* ============================================
   Hero Section
   ============================================ */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  background: var(--gradient-hero);
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
}

.hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.3;
}

.hero-content {
  position: relative;
  z-index: 10;
  padding-top: 6rem;
}

@media (min-width: 768px) {
  .hero-content {
    padding-top: 0;
  }
}

.hero-text {
  max-width: 80rem;
  padding-right: 40rem
}

.hero-badge {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 1.5rem;
  animation: fadeIn 0.8s ease-out forwards;
}

.badge-line {
  width: 0.25rem;
  height: 2rem;
  background: var(--secondary);
  border-radius: 9999px;
}

.hero-badge span {
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--muted-foreground);
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.hero-title {
  font-size: 3rem;
  font-weight: 200;
  color: var(--muted-foreground);
  margin-bottom: 1.5rem;
  line-height: 1.1;
  animation: slideUp 0.8s ease-out forwards;
}

@media (min-width: 768px) {
  .hero-title {
    font-size: 3.5rem;
  }
}

@media (min-width: 1024px) {
  .hero-title {
    font-size: 4rem;
  }
}

.hero-description {
  font-size: 1.125rem;
  color: var(--muted-foreground);
  margin-bottom: 2.5rem;
  line-height: 1.7;
  animation: slideUp 0.8s ease-out 0.2s forwards;
  opacity: 0;
}

@media (min-width: 768px) {
  .hero-description {
    font-size: 1.25rem;
  }
}

.hero-buttons {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  animation: slideUp 0.8s ease-out 0.4s forwards;
  opacity: 0;
}

@media (min-width: 640px) {
  .hero-buttons {
    flex-direction: row;
  }
}

.scroll-indicator {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  color: var(--muted-foreground);
  transition: color 0.3s ease;
  animation: bounce 2s infinite;
}

.scroll-indicator:hover {
  color: var(--primary);
}

.scroll-indicator span {
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

/* ============================================
   Section Shared Styles
   ============================================ */
.section-header {
  max-width: 48rem;
  margin: 0 auto 4rem;
  text-align: center;
}

.section-label {
  display: block;
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--secondary);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 1rem;
}

.section-title {
  font-size: 1.875rem;
  font-weight: 200;
  color: var(--primary);
  margin-bottom: 1.5rem;
}

@media (min-width: 768px) {
  .section-title {
    font-size: 2.5rem;
  }
}

@media (min-width: 1024px) {
  .section-title {
    font-size: 3rem;
  }
}

.section-description {
  font-size: 1.125rem;
  color: var(--muted-foreground);
}

/* ============================================
   Tax Reform Section
   ============================================ */
.tax-reform {
  padding: 6rem 0;
  background: var(--card);
}

.reform-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.5rem 1rem;
  background: hsla(30, 10%, 25%, 0.1);
  color: var(--secondary);
  border-radius: 9999px;
  margin-bottom: 1.5rem;
}

.reform-badge span {
  font-size: 0.875rem;
  font-weight: 500;
}

.reform-grid {
  display: grid;
  gap: 1.5rem;
  max-width: 64rem;
  margin: 0 auto;
}

@media (min-width: 768px) {
  .reform-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

.reform-card {
  padding: 2rem;
  border-radius: 0.75rem;
  background: hsla(40, 30%, 96%, 0.5);
  border: 1px solid var(--border);
  transition: all 0.3s ease;
}

.reform-card:hover {
  box-shadow: var(--shadow-card);
}

.reform-card-highlight {
  background: hsla(30, 10%, 25%, 0.05);
  border: 2px solid hsla(30, 10%, 25%, 0.2);
}

.reform-card-highlight:hover {
  border-color: hsla(30, 10%, 25%, 0.4);
}

.reform-card-content {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
}

.reform-icon {
  width: 4rem;
  height: 4rem;
  border-radius: 0.5rem;
  overflow: hidden;
  flex-shrink: 0;
}

.reform-icon img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.reform-subtitle {
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--secondary);
  margin-bottom: 0.25rem;
}

.reform-title {
  font-size: 1.25rem;
  font-weight: 500;
  color: var(--primary);
  margin-bottom: 0.75rem;
}

.reform-description {
  font-size: 0.875rem;
  color: var(--muted-foreground);
  line-height: 1.6;
}

/* ============================================
   Services Section
   ============================================ */
.services {
  padding: 6rem 0;
  background: var(--card);
  position: relative;
  overflow: hidden;
}

.services-bg-decoration {
  position: absolute;
  top: 50%;
  right: 0;
  transform: translateY(-50%);
  width: 24rem;
  height: 24rem;
  background: var(--gradient-gold);
  opacity: 0.05;
  border-radius: 50%;
  pointer-events: none;
}

.services-grid {
  display: grid;
  gap: 1.5rem;
  position: relative;
  z-index: 10;
}

@media (min-width: 768px) {
  .services-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1024px) {
  .services-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.service-card {
  padding: 2rem;
  border-radius: 0.5rem;
  background: var(--background);
  border: 1px solid hsla(40, 20%, 88%, 0.5);
  transition: all 0.3s ease;
}

.service-card:hover {
  box-shadow: var(--shadow-card);
}

.service-card:hover .service-icon {
  transform: scale(1.1);
}

.service-icon {
  width: 4rem;
  height: 4rem;
  border-radius: 0.5rem;
  overflow: hidden;
  margin-bottom: 1.5rem;
  transition: transform 0.3s ease;
}

.service-icon img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.service-title {
  font-size: 1.25rem;
  font-weight: 500;
  color: var(--primary);
  margin-bottom: 0.75rem;
}

.service-description {
  font-size: 0.875rem;
  color: var(--muted-foreground);
  line-height: 1.6;
}

/* ============================================
   Impact Section
   ============================================ */
.impact {
  padding: 6rem 0;
  position: relative;
  overflow: hidden;
}

.impact-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.impact-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.impact-overlay {
  position: absolute;
  inset: 0;
  background: hsla(40, 30%, 96%, 0.9);
}

.impact .container {
  position: relative;
  z-index: 10;
}

.impact-grid {
  display: grid;
  gap: 2rem;
  max-width: 64rem;
  margin: 0 auto;
}

@media (min-width: 1024px) {
  .impact-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

.impact-card {
  background: var(--card);
  border-radius: 0.75rem;
  padding: 2rem;
  border: 1px solid var(--border);
}

.impact-card-alert {
  border: 2px solid hsla(0, 84%, 60%, 0.3);
}

.impact-header {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 1.5rem;
}

.impact-icon {
  width: 2.5rem;
  height: 2.5rem;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.impact-icon-positive {
  background: hsla(30, 10%, 25%, 0.1);
  color: var(--secondary);
}

.impact-icon-negative {
  background: hsla(0, 84%, 60%, 0.1);
  color: var(--destructive);
}

.impact-title {
  font-size: 1.125rem;
  font-weight: 500;
  color: var(--primary);
}

.impact-subtitle {
  font-size: 0.875rem;
  color: var(--muted-foreground);
}

.impact-details {
  margin-bottom: 1.5rem;
}

.impact-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0.75rem 0;
  border-bottom: 1px solid var(--border);
  font-size: 0.875rem;
  color: var(--muted-foreground);
}

.impact-row-last {
  border-bottom: none;
}

.impact-value {
  font-weight: 500;
  color: var(--primary);
}

.impact-conclusion {
  border-radius: 0.5rem;
  padding: 1rem;
}

.impact-conclusion p {
  font-size: 0.875rem;
  color: var(--muted-foreground);
}

.impact-conclusion strong {
  color: var(--primary);
}

.impact-conclusion-positive {
  background: hsla(30, 10%, 25%, 0.05);
}

.impact-conclusion-negative {
  background: hsla(0, 84%, 60%, 0.05);
}

.impact-cta {
  text-align: center;
  margin-top: 3rem;
}

.impact-cta p {
  color: var(--muted-foreground);
  margin-bottom: 1.5rem;
}

/* ============================================
   Contact Section
   ============================================ */
.contact {
  padding: 6rem 0;
  background: var(--background);
}

.contact-grid {
  display: grid;
  gap: rem;
}

@media (min-width: 1024px) {
  .contact-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

.contact-description {
  font-size: 1.125rem;
  color: var(--muted-foreground);
  margin-bottom: 2.5rem;
  line-height: 1.7;
}

.contact-details {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}
}

.contact-icon {
  width: 3rem;
  height: 3rem;
  border-radius: 50%;
  background: hsla(30, 10%, 25%, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--secondary);
}

.contact-label {
  display: block;
  font-size: 0.875rem;
  color: var(--muted-foreground);
}

.contact-value {
  display: block;
  font-weight: 500;
  color: var(--primary);
}

.contact-form-container {
  background: var(--card);
  border-radius: 0.75rem;
  padding: 1rem;
  box-shadow: var(--shadow-card);
}

.form-title {
  font-size: 1.25rem;
  font-weight: 500;
  color: var(--primary);
  margin-bottom: 1.5rem;
}

/* ============================================
   Animations
   ============================================ */
@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

@keyframes slideUp {
  from { 
    opacity: 0; 
    transform: translateY(30px); 
  }
  to { 
    opacity: 1; 
    transform: translateY(0); 
  }
}

@keyframes bounce {
  0%, 20%, 50%, 80%, 100% {
    transform: translateX(-50%) translateY(0);
  }
  40% {
    transform: translateX(-50%) translateY(-10px);
  }
  60% {
    transform: translateX(-50%) translateY(-5px);
  }
}

/* ============================================
   Responsive Adjustments
   ============================================ */
@media (max-width: 640px) {
  .container {
    padding: 50 1rem;
  }
  
  .hero-title {
    font-size: 2.25rem;
  }
  
  .section-title {
    font-size: 1.5rem;
  }
  
  .btn-hero,
  .btn-hero-outline {
    padding: 0.400rem 0.400rem;
    font-size: 0.875rem;
    width: 100%;
  }
}/* End custom CSS */