/* ==========================================================================
   FINCAS CONTRERAS - DESIGN SYSTEM & STYLESHEET
   Aesthetics: High-End Corporate Modernism / Real Estate & Property Management
   Author: Design, SEO & Security Architecture Team
   ========================================================================== */

:root {
  /* Color Palette */
  --primary: #C8102E;           /* Brand Crimson */
  --primary-hover: #A00B22;     /* Darker Crimson */
  --primary-light: #FEE2E2;     /* Soft Red Tint */
  --primary-glow: rgba(200, 16, 46, 0.25);

  --dark-navy: #0B1320;         /* Primary Dark (Slate 950) */
  --dark-surface: #1E293B;      /* Card Dark (Slate 800) */
  --dark-elevated: #334155;     /* Highlight Dark (Slate 700) */
  
  --text-main: #0F172A;
  --text-muted: #475569;
  --text-light: #64748B;
  --text-inverse: #FFFFFF;
  
  --bg-page: #F8FAFC;
  --bg-white: #FFFFFF;
  --bg-subtle: #F1F5F9;
  --bg-card: #FFFFFF;
  
  --border-light: #E2E8F0;
  --border-medium: #CBD5E1;
  --border-focus: #C8102E;
  
  /* Status Colors */
  --accent-gold: #D97706;
  --accent-gold-bg: #FEF3C7;
  --accent-emerald: #059669;
  --accent-emerald-bg: #D1FAE5;
  --accent-blue: #2563EB;
  --accent-blue-bg: #DBEAFE;
  
  /* Typography */
  --font-heading: 'Outfit', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  --font-body: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  
  /* Shadows & Depth */
  --shadow-xs: 0 1px 2px 0 rgba(15, 23, 42, 0.05);
  --shadow-sm: 0 2px 4px -1px rgba(15, 23, 42, 0.06);
  --shadow-md: 0 6px 12px -2px rgba(15, 23, 42, 0.08), 0 3px 6px -3px rgba(15, 23, 42, 0.04);
  --shadow-lg: 0 14px 24px -4px rgba(15, 23, 42, 0.1), 0 6px 10px -5px rgba(15, 23, 42, 0.04);
  --shadow-xl: 0 24px 38px -6px rgba(15, 23, 42, 0.14), 0 10px 14px -6px rgba(15, 23, 42, 0.06);
  --shadow-glow: 0 0 30px rgba(200, 16, 46, 0.25);

  /* Radii */
  --radius-sm: 6px;
  --radius-md: 10px;
  --radius-lg: 16px;
  --radius-xl: 20px;
  --radius-full: 9999px;
  
  /* Transitions */
  --transition-fast: 0.15s ease;
  --transition-normal: 0.25s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-smooth: 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  
  /* Max width */
  --max-width: 1240px;
}

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

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

body {
  font-family: var(--font-body);
  background-color: var(--bg-page);
  color: var(--text-main);
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

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

a {
  color: inherit;
  text-decoration: none;
  transition: var(--transition-fast);
}

button, input, select, textarea {
  font: inherit;
  color: inherit;
}

button {
  cursor: pointer;
  border: none;
  background: none;
}

ul, ol {
  list-style: none;
}

:focus-visible {
  outline: 2px solid var(--primary);
  outline-offset: 3px;
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  font-weight: 700;
  line-height: 1.2;
  color: var(--dark-navy);
  letter-spacing: -0.02em;
}

p {
  color: var(--text-muted);
}

.container {
  width: 100%;
  max-width: var(--max-width);
  margin-left: auto;
  margin-right: auto;
  padding-left: 1.5rem;
  padding-right: 1.5rem;
}

/* ==========================================================================
   TOP BAR & NAVIGATION
   ========================================================================== */
.topbar {
  background-color: var(--dark-navy);
  color: #94A3B8;
  font-size: 0.8125rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  padding: 0.55rem 0;
}

.topbar-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 0.75rem;
}

.topbar-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  color: #F1F5F9;
  font-weight: 500;
}

.topbar-badge .colegiado-pill {
  background-color: rgba(200, 16, 46, 0.25);
  color: #FECACA;
  border: 1px solid rgba(200, 16, 46, 0.45);
  padding: 0.15rem 0.6rem;
  border-radius: var(--radius-sm);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.02em;
}

.topbar-links {
  display: flex;
  align-items: center;
  gap: 1.5rem;
}

.topbar-link {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  color: #CBD5E1;
  transition: color var(--transition-fast);
}

.topbar-link:hover {
  color: var(--text-inverse);
}

/* Sticky Main Navigation */
.navbar {
  position: sticky;
  top: 0;
  z-index: 1000;
  background-color: rgba(255, 255, 255, 0.96);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--border-light);
  transition: all var(--transition-normal);
}

.navbar.scrolled {
  box-shadow: var(--shadow-md);
  background-color: rgba(255, 255, 255, 0.98);
}

.navbar-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 76px;
  position: relative;
}

.brand-logo {
  display: inline-flex;
  align-items: center;
  text-decoration: none;
  flex-shrink: 0;
  z-index: 2;
}

.brand-img {
  height: 44px;
  width: auto;
  max-width: 220px;
  object-fit: contain;
  transition: transform var(--transition-fast);
}

.brand-logo:hover .brand-img {
  transform: scale(1.02);
}

.nav-menu {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 2.25rem;
}

.nav-link {
  font-size: 0.9375rem;
  font-weight: 600;
  color: var(--text-main);
  padding: 0.5rem 0.25rem;
  position: relative;
  transition: color var(--transition-fast);
  white-space: nowrap;
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0%;
  height: 2.5px;
  background-color: var(--primary);
  border-radius: 2px;
  transition: width var(--transition-normal);
}

.nav-link:hover,
.nav-link.active {
  color: var(--primary);
}

.nav-link:hover::after,
.nav-link.active::after {
  width: 100%;
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: 0.85rem;
}

.nav-phone-btn {
  display: none;
}

@media (min-width: 1024px) {
  .nav-phone-btn {
    display: inline-flex;
  }
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 0.9375rem;
  padding: 0.72rem 1.35rem;
  border-radius: var(--radius-md);
  transition: all var(--transition-normal);
  line-height: 1;
  white-space: nowrap;
}

.btn-sm {
  padding: 0.55rem 1.05rem;
  font-size: 0.85rem;
  border-radius: var(--radius-sm);
}

.btn-lg {
  padding: 0.9rem 1.85rem;
  font-size: 1.05rem;
  border-radius: var(--radius-md);
}

.btn-block {
  width: 100%;
}

.btn-primary {
  background-color: var(--primary);
  color: var(--text-inverse);
  box-shadow: 0 4px 14px rgba(200, 16, 46, 0.3);
}

.btn-primary:hover {
  background-color: var(--primary-hover);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(200, 16, 46, 0.4);
}

.btn-secondary {
  background-color: var(--bg-white);
  color: var(--dark-navy);
  border: 1px solid var(--border-light);
  box-shadow: var(--shadow-xs);
}

.btn-secondary:hover {
  background-color: var(--bg-subtle);
  border-color: var(--border-medium);
  transform: translateY(-2px);
}

.btn-outline-white {
  background-color: transparent;
  color: var(--text-inverse);
  border: 2px solid rgba(255, 255, 255, 0.8);
}

.btn-outline-white:hover {
  background-color: var(--text-inverse);
  color: var(--dark-navy);
}

.mobile-menu-btn {
  display: none;
  flex-direction: column;
  justify-content: space-between;
  width: 28px;
  height: 20px;
  background: transparent;
}

.mobile-menu-btn span {
  display: block;
  height: 2.5px;
  width: 100%;
  background-color: var(--dark-navy);
  border-radius: 2px;
  transition: all var(--transition-normal);
}

/* ==========================================================================
   HERO SECTION (Centered High-Impact Editorial Layout)
   ========================================================================== */
.hero {
  position: relative;
  min-height: 600px;
  display: flex;
  align-items: center;
  background: linear-gradient(135deg, rgba(11, 19, 32, 0.94) 0%, rgba(15, 23, 42, 0.88) 45%, rgba(11, 19, 32, 0.93) 100%),
              url('../images/building-modern.jpg') center center/cover no-repeat;
  color: var(--text-inverse);
  padding: 5rem 0 5.5rem;
  overflow: hidden;
}

.hero-glow {
  position: absolute;
  top: -15%;
  right: 15%;
  width: 550px;
  height: 550px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(200, 16, 46, 0.22) 0%, rgba(200, 16, 46, 0) 70%);
  pointer-events: none;
}

.hero-wrapper {
  max-width: 880px;
  margin: 0 auto;
  text-align: center;
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.hero-tag {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background-color: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.18);
  padding: 0.4rem 1.15rem;
  border-radius: var(--radius-full);
  font-size: 0.85rem;
  font-weight: 600;
  color: #F8FAFC;
  margin-bottom: 1.5rem;
}

.hero-tag svg {
  color: #F87171;
}

.hero-title {
  font-size: clamp(2.2rem, 4.2vw, 3.4rem);
  font-weight: 800;
  color: var(--text-inverse);
  line-height: 1.15;
  margin-bottom: 1.25rem;
  letter-spacing: -0.03em;
}

.hero-title span {
  background: linear-gradient(135deg, #FFFFFF 20%, #FCA5A5 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.hero-lead {
  font-size: 1.15rem;
  color: #E2E8F0;
  line-height: 1.7;
  margin-bottom: 2.25rem;
  max-width: 720px;
}

.hero-ctas {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1.15rem;
  margin-bottom: 3rem;
}

.hero-stats-strip {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  width: 100%;
}

.hero-stat-item {
  background: rgba(255, 255, 255, 0.07);
  border: 1px solid rgba(255, 255, 255, 0.14);
  backdrop-filter: blur(10px);
  border-radius: var(--radius-lg);
  padding: 1.25rem 1.5rem;
  display: flex;
  flex-direction: column;
  text-align: center;
}

.hero-stat-number {
  font-family: var(--font-heading);
  font-size: 1.85rem;
  font-weight: 800;
  color: var(--text-inverse);
  line-height: 1.1;
}

.hero-stat-number span {
  color: #F87171;
  font-size: 1.2rem;
}

.hero-stat-label {
  font-size: 0.8125rem;
  color: #94A3B8;
  margin-top: 0.35rem;
  line-height: 1.35;
}

/* ==========================================================================
   TRUST & CREDENTIALS BANNER
   ========================================================================== */
.trust-banner {
  background-color: var(--bg-white);
  border-bottom: 1px solid var(--border-light);
  padding: 1.75rem 0;
}

.trust-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
}

.trust-item {
  display: flex;
  align-items: center;
  gap: 0.85rem;
  padding: 0.5rem;
}

.trust-icon {
  width: 44px;
  height: 44px;
  border-radius: var(--radius-md);
  background-color: var(--bg-subtle);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary);
  flex-shrink: 0;
}

.trust-info h4 {
  font-size: 0.92rem;
  font-weight: 700;
  color: var(--dark-navy);
  margin-bottom: 0.1rem;
}

.trust-info p {
  font-size: 0.78rem;
  color: var(--text-light);
}

/* ==========================================================================
   SECTION COMMON STYLES
   ========================================================================== */
.section {
  padding: 5rem 0;
  position: relative;
}

.section-header {
  text-align: center;
  max-width: 680px;
  margin: 0 auto 3.25rem;
}

.section-subtitle {
  display: inline-block;
  color: var(--primary);
  font-size: 0.8125rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 0.5rem;
}

.section-title {
  font-size: clamp(1.8rem, 2.8vw, 2.35rem);
  font-weight: 800;
  color: var(--dark-navy);
  margin-bottom: 0.85rem;
}

.section-desc {
  font-size: 1rem;
  color: var(--text-muted);
}

/* ==========================================================================
   SERVICES SECTION (4 Core Cards - Balanced 4-column or 2x2 Grid)
   ========================================================================== */
.services-grid-4 {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
}

.service-card {
  background-color: var(--bg-white);
  border-radius: var(--radius-lg);
  border: 1px solid var(--border-light);
  padding: 1.85rem;
  transition: all var(--transition-normal);
  display: flex;
  flex-direction: column;
  height: 100%;
  position: relative;
  overflow: hidden;
}

.service-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3.5px;
  background-color: transparent;
  transition: background-color var(--transition-fast);
}

.service-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-lg);
  border-color: var(--border-medium);
}

.service-card:hover::before {
  background-color: var(--primary);
}

.service-icon-box {
  width: 50px;
  height: 50px;
  border-radius: var(--radius-md);
  background-color: var(--primary-light);
  color: var(--primary);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.25rem;
  transition: all var(--transition-normal);
}

.service-card:hover .service-icon-box {
  transform: scale(1.08);
  background-color: var(--primary);
  color: var(--text-inverse);
}

.service-title {
  font-size: 1.2rem;
  font-weight: 700;
  margin-bottom: 0.6rem;
  color: var(--dark-navy);
}

.service-desc {
  font-size: 0.88rem;
  color: var(--text-muted);
  line-height: 1.6;
  margin-bottom: 1.25rem;
  flex-grow: 1;
}

.service-features {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  margin-bottom: 1.35rem;
  padding-top: 0.85rem;
  border-top: 1px solid var(--border-light);
}

.service-feature-item {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.8rem;
  color: var(--text-main);
  font-weight: 500;
}

.service-feature-item svg {
  color: var(--accent-emerald);
  flex-shrink: 0;
}

.service-link {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--primary);
  margin-top: auto;
}

.service-link:hover {
  gap: 0.65rem;
}

/* ==========================================================================
   CALCULATOR & DIRECT PROPOSAL REQUEST (EXPANDED COMMUNITY AUDIT)
   ========================================================================== */
.calculator-section {
  background: linear-gradient(180deg, #FFFFFF 0%, var(--bg-subtle) 100%);
  border-top: 1px solid var(--border-light);
  border-bottom: 1px solid var(--border-light);
}

/* Proposal Type Switcher / Tab Navigation */
.proposal-switcher-container {
  display: flex;
  justify-content: center;
  margin-bottom: 2.25rem;
}

.proposal-type-switcher {
  display: inline-flex;
  background-color: var(--bg-white);
  padding: 0.45rem;
  border-radius: var(--radius-full);
  border: 1px solid var(--border-medium);
  box-shadow: var(--shadow-sm);
  gap: 0.5rem;
  max-width: 100%;
}

.proposal-type-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.65rem;
  padding: 0.85rem 1.75rem;
  border-radius: var(--radius-full);
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--text-muted);
  background: transparent;
  border: none;
  cursor: pointer;
  transition: all var(--transition-normal);
}

.proposal-type-btn svg {
  color: var(--text-light);
  transition: color var(--transition-fast);
}

.proposal-type-btn:hover {
  color: var(--dark-navy);
  background-color: var(--bg-subtle);
}

.proposal-type-btn.active {
  background-color: var(--dark-navy);
  color: var(--text-inverse);
  box-shadow: var(--shadow-sm);
}

.proposal-type-btn.active svg {
  color: #F87171;
}

.calc-container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2.5rem;
  background-color: var(--bg-white);
  border-radius: var(--radius-xl);
  padding: 2.75rem;
  box-shadow: var(--shadow-lg);
  border: 1px solid var(--border-light);
  align-items: stretch;
}

.proposal-panel {
  display: none !important;
}

.proposal-panel.active {
  display: grid !important;
  animation: fadeIn 0.35s ease;
}

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

.calc-column-left {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  min-width: 0;
}

.calc-block-title {
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--dark-navy);
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding-bottom: 0.65rem;
  border-bottom: 1px solid var(--border-light);
}

.calc-grid-2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.15rem;
  min-width: 0;
}

.calc-card-item {
  background-color: var(--bg-subtle);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-md);
  padding: 1rem;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  min-width: 0;
}

.calc-card-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.calc-card-label {
  font-weight: 700;
  font-size: 0.85rem;
  color: var(--dark-navy);
}

.calc-val-badge {
  background-color: var(--primary-light);
  padding: 0.2rem 0.65rem;
  border-radius: var(--radius-full);
  font-weight: 800;
  color: var(--primary);
  font-size: 0.82rem;
}

.range-slider {
  width: 100%;
  min-width: 0;
  height: 6px;
  border-radius: 3px;
  background: #CBD5E1;
  outline: none;
  -webkit-appearance: none;
  appearance: none;
  cursor: pointer;
}

.range-slider::-webkit-slider-thumb {
  -webkit-appearance: none;
  appearance: none;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: var(--primary);
  cursor: pointer;
  box-shadow: 0 2px 5px rgba(200, 16, 46, 0.35);
  transition: transform var(--transition-fast);
}

.range-slider::-webkit-slider-thumb:hover {
  transform: scale(1.15);
}

/* Feature Toggles (Ascensores & Piscina) */
.features-grid-inline {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 1rem;
  min-width: 0;
}

.feature-select-box {
  background-color: var(--bg-subtle);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-md);
  padding: 0.9rem 1rem;
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
  min-width: 0;
}

.feature-select-box label {
  font-size: 0.82rem;
  font-weight: 700;
  color: var(--dark-navy);
}

.segmented-control {
  display: flex;
  background: #E2E8F0;
  border-radius: var(--radius-sm);
  padding: 2px;
  gap: 2px;
}

.segmented-btn {
  flex: 1;
  text-align: center;
  padding: 0.35rem 0.5rem;
  font-size: 0.8rem;
  font-weight: 600;
  border-radius: 4px;
  background: transparent;
  color: var(--text-muted);
  transition: all var(--transition-fast);
}

.segmented-btn.active {
  background: var(--bg-white);
  color: var(--dark-navy);
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
}

/* Right Column: Direct Proposal Form Card */
.calc-proposal-card {
  background: linear-gradient(135deg, var(--dark-navy) 0%, var(--dark-surface) 100%);
  color: var(--text-inverse);
  border-radius: var(--radius-lg);
  padding: 2.25rem;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  box-shadow: var(--shadow-md);
  min-width: 0;
}

.calc-proposal-header h3 {
  color: var(--text-inverse);
  font-size: 1.3rem;
  margin-bottom: 0.25rem;
}

.calc-proposal-header p {
  color: #94A3B8;
  font-size: 0.83rem;
  margin-bottom: 1.15rem;
}

.proposal-form {
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
}

.proposal-form .form-label {
  color: #E2E8F0;
  font-size: 0.78rem;
  font-weight: 600;
}

.proposal-form .form-input,
.proposal-form .form-select,
.proposal-form .form-textarea {
  background-color: rgba(15, 23, 42, 0.75);
  border: 1px solid rgba(255, 255, 255, 0.2);
  color: var(--text-inverse);
  padding: 0.6rem 0.85rem;
  border-radius: var(--radius-md);
  font-size: 0.85rem;
  font-family: inherit;
  width: 100%;
  transition: all var(--transition-fast);
}

.proposal-form .form-textarea {
  resize: vertical;
  min-height: 68px;
  line-height: 1.45;
}

.proposal-form .form-input::placeholder,
.proposal-form .form-textarea::placeholder {
  color: #94A3B8;
  font-size: 0.82rem;
}

.proposal-form .form-input:focus,
.proposal-form .form-select:focus,
.proposal-form .form-textarea:focus {
  background-color: rgba(15, 23, 42, 0.9);
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(200, 16, 46, 0.2);
  outline: none;
}

.proposal-params-preview {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
  background-color: rgba(255, 255, 255, 0.07);
  border-radius: var(--radius-md);
  padding: 0.75rem 0.95rem;
  font-size: 0.78rem;
  color: #CBD5E1;
  border: 1px solid rgba(255, 255, 255, 0.1);
  margin-top: 0.25rem;
}

.proposal-params-preview strong {
  color: #F87171;
}

/* Staff Multi-Select Chips */
.staff-checkbox-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem;
  margin-top: 0.25rem;
}

.staff-check-pill {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  background-color: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.18);
  color: #E2E8F0;
  padding: 0.3rem 0.65rem;
  border-radius: var(--radius-sm);
  font-size: 0.76rem;
  cursor: pointer;
  user-select: none;
  transition: all var(--transition-fast);
}

.staff-check-pill:hover {
  background-color: rgba(255, 255, 255, 0.15);
}

.staff-check-pill input[type="checkbox"] {
  accent-color: var(--primary);
  width: 14px;
  height: 14px;
  cursor: pointer;
}

.staff-check-pill.checked {
  background-color: rgba(200, 16, 46, 0.25);
  border-color: var(--primary);
  color: #FFFFFF;
}

/* ==========================================================================
   PROPERTIES & HOUSING CATALOG
   ========================================================================== */
.properties-section {
  background-color: var(--bg-page);
}

.properties-controls {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1.25rem;
  margin-bottom: 2.25rem;
  background-color: var(--bg-white);
  padding: 1rem 1.5rem;
  border-radius: var(--radius-lg);
  border: 1px solid var(--border-light);
  box-shadow: var(--shadow-xs);
}

.filter-tabs {
  display: flex;
  gap: 0.5rem;
  flex-wrap: wrap;
}

.filter-btn {
  padding: 0.5rem 1.1rem;
  border-radius: var(--radius-full);
  font-weight: 600;
  font-size: 0.85rem;
  color: var(--text-muted);
  background-color: var(--bg-subtle);
  transition: all var(--transition-fast);
}

.filter-btn:hover {
  background-color: #E2E8F0;
  color: var(--text-main);
}

.filter-btn.active {
  background-color: var(--primary);
  color: var(--text-inverse);
}

.search-and-select {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.search-box {
  position: relative;
  width: 240px;
}

.search-box input {
  padding-left: 2.25rem;
  font-size: 0.85rem;
}

.search-box svg {
  position: absolute;
  left: 0.75rem;
  top: 50%;
  transform: translateY(-50%);
  color: var(--text-light);
}

.properties-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.75rem;
}

.property-card {
  background-color: var(--bg-white);
  border-radius: var(--radius-lg);
  border: 1px solid var(--border-light);
  overflow: hidden;
  box-shadow: var(--shadow-xs);
  transition: all var(--transition-normal);
  display: flex;
  flex-direction: column;
  height: 100%;
}

.property-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-lg);
  border-color: var(--border-medium);
}

.property-thumb {
  position: relative;
  height: 220px;
  overflow: hidden;
}

.property-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--transition-smooth);
}

.property-card:hover .property-thumb img {
  transform: scale(1.06);
}

.property-badges {
  position: absolute;
  top: 0.85rem;
  left: 0.85rem;
  display: flex;
  gap: 0.4rem;
  z-index: 2;
}

.badge {
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  padding: 0.25rem 0.65rem;
  border-radius: var(--radius-sm);
}

.badge-sold {
  background-color: #DC2626;
  color: #FFFFFF;
}

.badge-rent {
  background-color: #2563EB;
  color: #FFFFFF;
}

.badge-sale {
  background-color: #D97706;
  color: #FFFFFF;
}

.badge-featured {
  background-color: var(--dark-navy);
  color: #FFFFFF;
}

.property-content {
  padding: 1.35rem;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.property-location {
  display: flex;
  align-items: center;
  gap: 0.35rem;
  font-size: 0.78rem;
  color: var(--text-light);
  margin-bottom: 0.35rem;
}

.property-title {
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--dark-navy);
  margin-bottom: 0.65rem;
  line-height: 1.3;
}

.property-features {
  display: flex;
  align-items: center;
  gap: 1.15rem;
  padding: 0.65rem 0;
  margin-bottom: 1rem;
  border-top: 1px solid var(--border-light);
  border-bottom: 1px solid var(--border-light);
  font-size: 0.8125rem;
  color: var(--text-muted);
}

.feature-pill {
  display: flex;
  align-items: center;
  gap: 0.35rem;
}

.property-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: auto;
}

.property-price {
  font-family: var(--font-heading);
  font-size: 1.3rem;
  font-weight: 800;
  color: var(--primary);
}

/* ==========================================================================
   LEGAL ACCORDION (ART 20 LPH)
   ========================================================================== */
.legal-section {
  background-color: var(--bg-white);
}

.law-accordion {
  display: flex;
  flex-direction: column;
  gap: 0.9rem;
  max-width: 880px;
  margin: 0 auto;
}

.law-item {
  border: 1px solid var(--border-light);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: all var(--transition-fast);
}

.law-item:hover {
  border-color: var(--border-medium);
}

.law-header {
  padding: 1.15rem 1.5rem;
  background-color: var(--bg-white);
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  user-select: none;
}

.law-header h3 {
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--dark-navy);
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.law-number {
  width: 26px;
  height: 26px;
  border-radius: 50%;
  background-color: var(--primary-light);
  color: var(--primary);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 0.78rem;
  font-weight: 800;
  flex-shrink: 0;
}

.law-chevron {
  color: var(--text-light);
  transition: transform var(--transition-normal);
  flex-shrink: 0;
}

.law-item.open .law-chevron {
  transform: rotate(180deg);
  color: var(--primary);
}

.law-body {
  padding: 0 1.5rem;
  max-height: 0;
  overflow: hidden;
  transition: max-height var(--transition-smooth), padding var(--transition-normal);
  background-color: var(--bg-subtle);
  color: var(--text-muted);
  font-size: 0.9rem;
  line-height: 1.65;
}

.law-item.open .law-body {
  padding: 1.15rem 1.5rem;
  max-height: 350px;
}

/* ==========================================================================
   NEWS & ARTICLES (BLOG & COLEGIO SYNC MODULE)
   ========================================================================== */
.news-section {
  background-color: var(--bg-page);
}

.news-sync-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.75rem;
  font-weight: 600;
  color: #059669;
  background-color: #D1FAE5;
  padding: 0.2rem 0.65rem;
  border-radius: var(--radius-full);
  margin-bottom: 0.75rem;
}

.news-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
}

.news-card {
  background-color: var(--bg-white);
  border-radius: var(--radius-lg);
  border: 1px solid var(--border-light);
  overflow: hidden;
  box-shadow: var(--shadow-xs);
  transition: all var(--transition-normal);
  display: flex;
  flex-direction: column;
  height: 100%;
}

.news-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-lg);
  border-color: var(--border-medium);
}

.news-thumb {
  height: 165px;
  overflow: hidden;
  position: relative;
}

.news-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--transition-smooth);
}

.news-card:hover .news-thumb img {
  transform: scale(1.08);
}

.news-body {
  padding: 1.25rem;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.news-date {
  font-size: 0.72rem;
  font-weight: 600;
  color: var(--text-light);
  margin-bottom: 0.35rem;
  display: flex;
  align-items: center;
  gap: 0.35rem;
}

.news-title {
  font-size: 1rem;
  font-weight: 700;
  color: var(--dark-navy);
  margin-bottom: 0.5rem;
  line-height: 1.35;
}

.news-excerpt {
  font-size: 0.8125rem;
  color: var(--text-muted);
  line-height: 1.55;
  margin-bottom: 1rem;
  flex-grow: 1;
}

.news-read-more {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  font-size: 0.8125rem;
  font-weight: 700;
  color: var(--primary);
  margin-top: auto;
}

/* ==========================================================================
   TESTIMONIALS SECTION
   ========================================================================== */
.testimonials-section {
  background: linear-gradient(180deg, var(--bg-white) 0%, var(--bg-subtle) 100%);
}

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.75rem;
}

.testimonial-card {
  background-color: var(--bg-white);
  border-radius: var(--radius-lg);
  border: 1px solid var(--border-light);
  padding: 2rem;
  box-shadow: var(--shadow-xs);
  display: flex;
  flex-direction: column;
  height: 100%;
}

.stars {
  color: #F59E0B;
  display: flex;
  gap: 0.2rem;
  margin-bottom: 0.85rem;
  font-size: 0.95rem;
}

.testimonial-quote {
  font-size: 0.92rem;
  color: var(--text-main);
  line-height: 1.65;
  margin-bottom: 1.35rem;
  flex-grow: 1;
  font-style: italic;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  border-top: 1px solid var(--border-light);
  padding-top: 0.95rem;
}

.author-avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--primary) 0%, var(--dark-navy) 100%);
  color: var(--text-inverse);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 0.875rem;
}

.author-name {
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--dark-navy);
}

.author-role {
  font-size: 0.72rem;
  color: var(--text-light);
}

/* ==========================================================================
   CONTACT SECTION (OFFICE & LOCATION CENTER)
   ========================================================================== */
.contact-section {
  background-color: var(--bg-white);
}

.contact-single-wrapper {
  max-width: 980px;
  margin: 0 auto;
}

.contact-info-card {
  background-color: var(--dark-navy);
  color: var(--text-inverse);
  border-radius: var(--radius-xl);
  padding: 2.75rem;
  box-shadow: 0 16px 44px rgba(15, 23, 42, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.contact-card-header-top {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  padding-bottom: 1.5rem;
  margin-bottom: 2rem;
  flex-wrap: wrap;
  gap: 1rem;
}

.contact-card-header-top h3 {
  color: var(--text-inverse);
  font-size: 1.65rem;
  font-weight: 800;
  margin-bottom: 0.25rem;
}

.contact-card-header-top p {
  color: #94A3B8;
  font-size: 0.92rem;
  margin: 0;
}

.contact-info-inner-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2.75rem;
  align-items: start;
}

.contact-inner-col {
  display: flex;
  flex-direction: column;
}

.contact-details {
  display: flex;
  flex-direction: column;
  gap: 1.35rem;
}

.contact-detail-row {
  display: flex;
  align-items: flex-start;
  gap: 0.9rem;
}

.contact-detail-icon {
  width: 40px;
  height: 40px;
  border-radius: var(--radius-md);
  background-color: rgba(255, 255, 255, 0.08);
  color: #F87171;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.contact-detail-text h4 {
  color: var(--text-inverse);
  font-size: 0.9rem;
  margin-bottom: 0.2rem;
}

.contact-detail-text a,
.contact-detail-text p {
  color: #CBD5E1;
  font-size: 0.88rem;
  line-height: 1.5;
}

.contact-detail-text a:hover {
  color: #F87171;
}

.contact-schedule-pill {
  background-color: rgba(255, 255, 255, 0.05);
  border-radius: var(--radius-md);
  padding: 1.15rem;
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.contact-schedule-pill h5 {
  color: #E2E8F0;
  font-size: 0.85rem;
  margin-bottom: 0.35rem;
  display: flex;
  align-items: center;
  gap: 0.4rem;
}

.contact-schedule-pill p {
  color: #94A3B8;
  font-size: 0.82rem;
  margin-bottom: 0;
}

/* Contact Detail Card Map */
.contact-card-map {
  margin: 0.75rem 0 0 0;
  border-radius: var(--radius-md);
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.15);
  background: rgba(0, 0, 0, 0.25);
  height: 240px;
  position: relative;
}

.contact-card-map iframe {
  width: 100%;
  height: 100%;
  border: 0;
  display: block;
}

.contact-card-map-btn {
  position: absolute;
  bottom: 0.65rem;
  right: 0.65rem;
  background-color: var(--dark-navy);
  color: #FFFFFF;
  font-size: 0.75rem;
  font-weight: 700;
  padding: 0.4rem 0.85rem;
  border-radius: var(--radius-sm);
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  box-shadow: var(--shadow-md);
  border: 1px solid rgba(255, 255, 255, 0.2);
  text-decoration: none;
  transition: all var(--transition-fast);
}

.contact-card-map-btn:hover {
  background-color: var(--primary);
  color: #FFFFFF;
}

.security-tag-row span {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
}

/* Office Geolocation Map Container */
.contact-map-wrapper {
  margin-top: 2.75rem;
  background-color: var(--bg-white);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-xl);
  padding: 1.5rem;
  box-shadow: var(--shadow-md);
}

.contact-map-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
  margin-bottom: 1.15rem;
}

.contact-map-title {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--dark-navy);
}

.contact-map-title svg {
  color: var(--primary);
}

.contact-map-frame {
  width: 100%;
  height: 380px;
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--border-light);
}

.contact-map-frame iframe {
  width: 100%;
  height: 100%;
  border: 0;
}

.hp-field {
  display: none !important;
  visibility: hidden;
  position: absolute;
  left: -9999px;
}

/* Utilities */
.mt-sm { margin-top: 0.5rem; }
.mt-md { margin-top: 1rem; }
.mb-md { margin-bottom: 1rem; }
.mb-lg { margin-bottom: 1.5rem; }
.text-center { text-align: center; }

/* ==========================================================================
   FOOTER
   ========================================================================== */
.footer {
  background-color: #0B1120;
  color: #94A3B8;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding: 4rem 0 2rem;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.3fr 1fr 1fr 1.1fr;
  gap: 2.5rem;
  margin-bottom: 3rem;
}

.footer-brand h3 {
  color: var(--text-inverse);
  font-size: 1.3rem;
  margin-bottom: 0.65rem;
}

.footer-brand p {
  color: #94A3B8;
  font-size: 0.85rem;
  line-height: 1.6;
  margin-bottom: 1.15rem;
}

.colegiado-card-footer {
  background-color: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  padding: 0.75rem 0.95rem;
  border-radius: var(--radius-md);
  font-size: 0.78rem;
  color: #E2E8F0;
}

.footer-col h4 {
  color: var(--text-inverse);
  font-size: 0.95rem;
  margin-bottom: 1.15rem;
  position: relative;
  padding-bottom: 0.45rem;
}

.footer-col h4::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 24px;
  height: 2px;
  background-color: var(--primary);
}

.footer-links {
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}

.footer-link {
  font-size: 0.85rem;
  color: #94A3B8;
}

.footer-link:hover {
  color: var(--text-inverse);
  padding-left: 3px;
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding-top: 1.75rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
  font-size: 0.8125rem;
}

.footer-legal-links {
  display: flex;
  gap: 1.25rem;
}

.footer-credit {
  text-align: center;
  padding-top: 1.1rem;
  margin-top: 1.1rem;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  font-size: 0.75rem;
  color: #64748B;
}

.footer-credit-link {
  color: #94A3B8;
  text-decoration: underline;
  text-underline-offset: 2px;
}

.footer-credit-link:hover {
  color: var(--text-inverse);
}

/* ==========================================================================
   MODALS & POPUPS
   ========================================================================== */
.modal-backdrop {
  position: fixed;
  inset: 0;
  background-color: rgba(15, 23, 42, 0.75);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  z-index: 2000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1.5rem;
  opacity: 0;
  visibility: hidden;
  transition: all var(--transition-normal);
}

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

.modal-container {
  background-color: var(--bg-white);
  border-radius: var(--radius-xl);
  max-width: 660px;
  width: 100%;
  max-height: 90vh;
  overflow-y: auto;
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.35);
  transform: translateY(20px) scale(0.96);
  transition: all var(--transition-smooth);
  position: relative;
}

.modal-backdrop.active .modal-container {
  transform: translateY(0) scale(1);
}

.modal-header {
  padding: 1.35rem 1.85rem;
  border-bottom: 1px solid var(--border-light);
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: sticky;
  top: 0;
  background-color: var(--bg-white);
  z-index: 10;
}

.modal-title {
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--dark-navy);
}

.modal-close-btn {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background-color: var(--bg-subtle);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-muted);
  transition: all var(--transition-fast);
}

.modal-close-btn:hover {
  background-color: var(--border-light);
  color: var(--dark-navy);
}

.modal-body {
  padding: 1.85rem;
}

/* ==========================================================================
   COOKIE CONSENT BANNER (RGPD / ePrivacy)
   ========================================================================== */
.cookie-banner {
  position: fixed;
  bottom: 1.5rem;
  left: 1.5rem;
  right: 1.5rem;
  max-width: 520px;
  background-color: var(--dark-navy);
  color: var(--text-inverse);
  padding: 1.5rem;
  border-radius: var(--radius-lg);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
  border: 1px solid rgba(255, 255, 255, 0.15);
  z-index: 1900;
  display: none;
  animation: slideUp 0.4s ease-out forwards;
}

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

.cookie-banner h4 {
  color: var(--text-inverse);
  font-size: 1.05rem;
  margin-bottom: 0.4rem;
}

.cookie-banner p {
  font-size: 0.8125rem;
  color: #CBD5E1;
  margin-bottom: 1.15rem;
  line-height: 1.5;
}

.cookie-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem;
  align-items: center;
}

.cookie-btn-reject {
  background: transparent;
  color: #FFFFFF;
  border: 1px solid rgba(255, 255, 255, 0.3);
}

.cookie-more-link {
  font-size: 0.8rem;
  color: #CBD5E1;
  text-decoration: underline;
  margin-left: auto;
}

/* Floating Actions */
.floating-actions {
  position: fixed;
  bottom: 1.75rem;
  right: 1.75rem;
  z-index: 1500;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.floating-btn {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-inverse);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.25);
  transition: all var(--transition-normal);
}

.floating-btn:hover {
  transform: scale(1.1);
}

.floating-whatsapp {
  background-color: #25D366;
}

.floating-phone {
  background-color: var(--primary);
}

/* Toast Notifications */
.toast-container {
  position: fixed;
  top: 1.5rem;
  right: 1.5rem;
  z-index: 3000;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.toast {
  background-color: var(--dark-navy);
  color: var(--text-inverse);
  padding: 0.9rem 1.35rem;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-xl);
  display: flex;
  align-items: center;
  gap: 0.65rem;
  font-size: 0.875rem;
  border-left: 4px solid var(--accent-emerald);
  animation: slideInRight 0.3s ease-out forwards;
}

@keyframes slideInRight {
  from { transform: translateX(100%); opacity: 0; }
  to { transform: translateX(0); opacity: 1; }
}

/* ==========================================================================
   RESPONSIVE MEDIA QUERIES
   ========================================================================== */
@media (max-width: 1024px) {
  .calc-container,
  .contact-grid {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }
  
  .services-grid-4,
  .properties-grid,
  .testimonials-grid,
  .news-grid,
  .trust-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
  }
}

@media (max-width: 768px) {
  .topbar {
    display: none;
  }
  
  .navbar-container {
    height: 68px;
  }
  
  .nav-menu {
    position: fixed;
    top: 68px;
    left: 0;
    right: 0;
    transform: none;
    background-color: var(--bg-white);
    flex-direction: column;
    padding: 1.75rem;
    gap: 1.15rem;
    border-bottom: 1px solid var(--border-light);
    box-shadow: var(--shadow-xl);
    display: none;
  }
  
  .nav-menu.open {
    display: flex;
  }
  
  .mobile-menu-btn {
    display: flex;
  }
  
  .hero {
    min-height: auto;
    padding: 3.5rem 0 4rem;
  }
  
  .hero-stats-strip {
    grid-template-columns: 1fr;
    gap: 0.75rem;
  }
  
  .services-grid-4,
  .properties-grid,
  .news-grid,
  .testimonials-grid,
  .trust-grid {
    grid-template-columns: 1fr;
  }
  
  .form-grid-2 {
    grid-template-columns: 1fr;
  }
  
  .calc-container {
    padding: 1.5rem;
  }

  .calc-proposal-card {
    padding: 1.5rem;
  }

  .contact-info-card {
    padding: 1.75rem;
  }

  .contact-info-inner-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .proposal-type-switcher {
    flex-direction: column;
    width: 100%;
    border-radius: var(--radius-lg);
  }
  
  .proposal-type-btn {
    width: 100%;
    justify-content: center;
    border-radius: var(--radius-md);
    padding: 0.75rem 1rem;
    font-size: 0.88rem;
  }
  
  .footer-grid {
    grid-template-columns: 1fr;
  }
  
  .cookie-banner {
    left: 1rem;
    right: 1rem;
    bottom: 1rem;
  }
}

@media (max-width: 420px) {
  .calc-grid-2,
  .features-grid-inline {
    grid-template-columns: 1fr;
  }
}
