/* ============================================
   FONTS — SELF-HOSTED (max performance)
   Inter (body/UI) + Oswald (display/headings)
   ============================================ */

@font-face {
  font-family: 'Inter';
  src: url('/services/assets/fonts/inter-variable.woff2') format('woff2-variations'),
    url('/services/assets/fonts/inter-variable.woff2') format('woff2');
  font-weight: 100 900;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Oswald';
  src: url('/services/assets/fonts/oswald-variable.woff2') format('woff2-variations'),
    url('/services/assets/fonts/oswald-variable.woff2') format('woff2');
  font-weight: 200 700;
  font-style: normal;
  font-display: swap;
}

:root {
  --primary: #1a1a1a;
  --accent: #f97316;
  --accent-dark: #ea580c;
  --gray-light: #f9fafb;
  --gray: #e5e7eb;
  --gray-dark: #6b7280;
  --dark: #1f2937;
  --white: #ffffff;

  --font-sans: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  --font-display: 'Oswald', 'Inter', -apple-system, sans-serif;
  --font-main: 'Inter', -apple-system, sans-serif;
  --container-width: 1200px;
}

/* Reset & Base */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: var(--font-main), var(--font-sans);
  font-size: 16px;
  line-height: 1.6;
  color: var(--dark);
  background-color: var(--white);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  font-weight: 400;
}

a {
  color: var(--accent);
  text-decoration: none;
  transition: all 0.3s ease;
}

a:hover {
  color: var(--accent-dark);
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: var(--font-display);
  font-weight: 700;
  line-height: 1.05;
  color: var(--primary);
  margin-bottom: 1rem;
  letter-spacing: 0.005em;
  text-transform: uppercase;
}

h1 {
  font-size: clamp(2.25rem, 5.5vw, 4rem);
  font-weight: 700;
  letter-spacing: 0.01em;
  line-height: 1;
}

h2 {
  font-size: clamp(1.875rem, 4.2vw, 2.75rem);
  font-weight: 700;
  letter-spacing: 0.005em;
  line-height: 1.05;
}

h3 {
  font-size: clamp(1.35rem, 3vw, 1.625rem);
  font-weight: 600;
  letter-spacing: 0.01em;
  text-transform: none;
  line-height: 1.15;
}

h4,
h5,
h6 {
  font-weight: 600;
  text-transform: none;
}

p {
  margin-bottom: 1rem;
  font-family: var(--font-main);
}

/* Utilities */
.container {
  max-width: var(--container-width);
  margin: 0 auto;
  padding: 0 1.5rem;
}

.section-padding {
  padding: 4rem 0;
}

.bg-dark {
  background-color: var(--primary);
  color: var(--white);
}

.bg-dark h1,
.bg-dark h2,
.bg-dark h3 {
  color: var(--orange);
}

.bg-gray {
  background-color: var(--gray-light);
}

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

.text-primary {
  color: var(--accent);
}

.text-white {
  color: var(--white);
}

.text-dark {
  color: var(--dark);
}

.mt-2 {
  margin-top: 1rem;
}

.mt-3 {
  margin-top: 1.5rem;
}

.mt-4 {
  margin-top: 2rem;
}

.max-w-3xl {
  max-width: 48rem;
  margin: 0 auto;
}

.max-w-lg {
  max-width: 32rem;
  margin: 0 auto;
}

/* Grid System */
.grid {
  display: grid;
  gap: 2rem;
}

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

.grid-cols-3 {
  grid-template-columns: repeat(3, 1fr);
}

.grid-cols-4 {
  grid-template-columns: repeat(4, 1fr);
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.95rem 1.75rem;
  font-family: var(--font-display);
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  font-size: 0.95rem;
  border-radius: 10px;
  border: none;
  cursor: pointer;
  text-decoration: none;
  position: relative;
  overflow: hidden;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  white-space: nowrap;
}

.btn::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
  transition: left 0.6s ease;
  z-index: 1;
}

.btn:hover::before {
  left: 100%;
}

.btn>* {
  position: relative;
  z-index: 2;
}

.btn-primary {
  background: linear-gradient(135deg, #f97316 0%, #ea580c 100%);
  color: white;
  box-shadow: 0 6px 20px rgba(249, 115, 22, 0.45);
}

.btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 32px rgba(249, 115, 22, 0.55);
  color: white;
}

.btn-primary:active {
  transform: translateY(-1px);
}

.btn-secondary {
  background: white;
  color: var(--color-primary);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}

.btn-secondary:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.15);
  color: var(--color-primary);
}

.btn-outline {
  background: transparent;
  color: #f97316;
  border: 1.5px solid rgba(0, 0, 0, 0.4);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}

.btn-outline:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: #f97316;
  transform: translateY(-3px);
  color: #f97316;
}

.btn-large {
  padding: 1.15rem 2.5rem;
  font-size: 1.05rem;
  letter-spacing: 0.06em;
  border-radius: 12px;
}

/* Header */
.site-header {
  background: var(--white);
  padding: 1rem 0;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  position: sticky;
  top: 0;
  z-index: 100;
}

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

/* ===== LOGO HEADER ===== */
.logo {
  display: inline-flex;
  align-items: center;
  text-decoration: none;
  line-height: 1;
  flex-shrink: 0;
}

.logo-img {
  height: 50px;
  width: auto;
  max-width: 100%;
  display: block;
  object-fit: contain;
  transition: opacity 0.2s ease;
}

.logo:hover .logo-img {
  opacity: 0.85;
}

/* Responsive */
@media (max-width: 768px) {
  .logo-img {
    height: 40px;
  }
}

@media (max-width: 480px) {
  .logo-img {
    height: 36px;
  }
}

.header-nav {
  display: flex;
  gap: 1.5rem;
}

.header-nav a {
  font-family: var(--font-main);
  color: var(--gray-dark);
  font-weight: 500;
  font-size: 0.95rem;
  text-decoration: none;
  transition: color 0.2s ease;
}

.header-nav a:hover {
  color: var(--accent);
}

.phone-link {
  display: inline-flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0;
  background: linear-gradient(135deg, #f97316 0%, #ea580c 100%);
  padding: 0.625rem 1.25rem;
  border-radius: 8px;
  text-decoration: none;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  border: none;
  position: relative;
  overflow: hidden;
  box-shadow: 0 6px 20px rgba(249, 115, 22, 0.35);
  line-height: 1;
}

.phone-link::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
  transition: left 0.6s ease;
}

.phone-link:hover::before {
  left: 100%;
}

.phone-link:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 30px rgba(249, 115, 22, 0.5);
}

.phone-label {
  font-family: var(--font-display);
  font-size: 0.7rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: rgba(255, 255, 255, 0.85);
  margin-bottom: 2px;
  position: relative;
  z-index: 1;
}

.phone-number {
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-weight: 700;
  color: white;
  letter-spacing: 0.02em;
  position: relative;
  z-index: 1;
  line-height: 1;
}

@media (max-width: 768px) {
  .header-cta {
    display: none;
  }
}

/* Hero Section */
.hero {
  background:
    linear-gradient(135deg, rgba(15, 15, 15, 0.85) 0%, rgba(26, 26, 26, 0.75) 50%, rgba(15, 15, 15, 0.9) 100%),
    url('/services/assets/images/hero-bg.png') center/cover no-repeat;
  background-attachment: scroll;
  color: var(--white);
  padding: 6rem 0;
  position: relative;
  overflow: hidden;
  min-height: 600px;
  display: flex;
  align-items: center;
}

.hero .container {
  position: relative;
  z-index: 2;
}

/* Eliminar el patrón decorativo viejo */
.hero::before {
  display: none;
}

/* Vignette sutil para mejorar legibilidad */
.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at center, transparent 0%, rgba(0, 0, 0, 0.3) 100%);
  z-index: 1;
  pointer-events: none;
}

@media (max-width: 768px) {
  .hero {
    padding: 4rem 0;
    min-height: 500px;
    background-attachment: scroll;
  }
}

.eyebrow,
.hero-eyebrow {
  display: inline-block;
  font-family: var(--font-display);
  background: var(--accent);
  color: var(--white);
  padding: 0.5rem 1.125rem;
  border-radius: 4px;
  font-size: 0.875rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  margin-bottom: 1.5rem;
}

.hero h1 {
  font-size: 3.5rem;
  margin-bottom: 1.5rem;
}

.hero-subtitle {
  font-family: var(--font-main);
  font-size: clamp(1.05rem, 2vw, 1.25rem);
  color: var(--gray-dark);
  margin-bottom: 2.5rem;
  max-width: 600px;
  line-height: 1.55;
  font-weight: 400;
}

/* Trust Bar */
.trust-bar {
  background: var(--gray-light);
  border-bottom: 1px solid var(--gray);
  padding: 1rem 0;
}

.trust-bar-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
}

.trust-bar-item {
  font-family: var(--font-main);
  font-weight: 600;
  font-size: 0.9rem;
}

/* Cards */
.card {
  background: var(--white);
  padding: 2rem;
  border-radius: 8px;
  border: 1px solid var(--gray);
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
  transition: transform 0.3s ease, border-color 0.3s ease;
}

.hover-lift:hover {
  transform: translateY(-5px);
  border-color: var(--accent);
}

.service-card {
  display: block;
  background: var(--white);
  padding: 2rem;
  border-radius: 8px;
  border: 1px solid var(--gray);
  text-decoration: none;
  color: var(--dark);
  transition: all 0.3s ease;
}

.service-card:hover {
  transform: translateY(-5px);
  border-color: var(--accent);
  box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
}

.service-card-icon {
  font-size: 2.5rem;
  margin-bottom: 1rem;
}

.read-more {
  color: var(--accent);
  font-weight: 600;
  font-size: 0.9rem;
}

/* Lists */
.check-list {
  list-style: none;
}

.check-list li {
  position: relative;
  padding-left: 1.5rem;
  margin-bottom: 0.5rem;
}

.check-list li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--accent);
  font-weight: bold;
}

/* Process Steps */
.steps-list {
  list-style: none;
  counter-reset: steps;
}

.steps-list li {
  position: relative;
  padding-left: 3rem;
  margin-bottom: 1.5rem;
}

.steps-list li::before {
  counter-increment: steps;
  content: counter(steps);
  position: absolute;
  left: 0;
  top: -2px;
  width: 32px;
  height: 32px;
  background: var(--accent);
  color: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: bold;
}

/* Areas Grid */
.neighborhood-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
  gap: 1rem;
}

.neighborhood-item {
  background: rgba(255, 255, 255, 0.1);
  padding: 0.5rem 1rem;
  border-radius: 4px;
  font-size: 0.9rem;
}

.zip-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.zip-tag {
  background: var(--accent);
  color: var(--white);
  padding: 0.25rem 0.75rem;
  border-radius: 999px;
  font-size: 0.875rem;
  font-weight: 600;
}

/* FAQ */
.faq-item {
  background: var(--white);
  margin-bottom: 1rem;
  border-radius: 4px;
  border: 1px solid var(--gray);
  overflow: hidden;
}

.faq-item summary {
  font-family: var(--font-main);
  padding: 1.25rem;
  font-weight: 600;
  font-size: 1.0625rem;
  cursor: pointer;
  list-style: none;
  position: relative;
}

.faq-item summary::-webkit-details-marker {
  display: none;
}

.faq-item summary::after {
  content: '+';
  position: absolute;
  right: 1.25rem;
  top: 50%;
  transform: translateY(-50%);
  font-size: 1.5rem;
  transition: transform 0.3s ease;
}

.faq-item[open] summary::after {
  transform: translateY(-50%) rotate(45deg);
}

.faq-answer {
  padding: 0 1.25rem 1.25rem;
  border-top: 1px solid var(--gray);
}

/* Footer */
.site-footer {
  font-family: var(--font-main);
  background: var(--primary);
  color: var(--gray);
  padding: 4rem 0 2rem;
}

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

/* ===== LOGO FOOTER ===== */
.footer-brand {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin-bottom: 1.5rem;
}

.footer-logo {
  display: inline-block;
  text-decoration: none;
  line-height: 1;
}

.footer-logo-img {
  height: 56px;
  width: auto;
  max-width: 220px;
  display: block;
  object-fit: contain;
  transition: opacity 0.2s ease;
}

.footer-logo:hover .footer-logo-img {
  opacity: 0.85;
}

.footer-tagline {
  font-family: var(--font-main);
  color: rgba(255, 255, 255, 0.65);
  font-size: 0.95rem;
  line-height: 1.5;
  margin: 0;
  max-width: 320px;
}

@media (max-width: 768px) {
  .footer-logo-img {
    height: 48px;
  }
}

/* ===== LOGO FORM PANEL ===== */
.form-visual-logo {
  display: inline-block;
  margin-bottom: 2rem;
  text-decoration: none;
  line-height: 1;
}

.form-visual-logo-img {
  height: 44px;
  width: auto;
  max-width: 180px;
  display: block;
  object-fit: contain;
  opacity: 0.95;
  transition: opacity 0.2s ease;
}

.form-visual-logo:hover .form-visual-logo-img {
  opacity: 1;
}

@media (max-width: 968px) {
  .form-visual-logo-img {
    height: 40px;
  }

  .form-visual-logo {
    margin-bottom: 1.5rem;
  }
}

.site-footer h4 {
  font-family: var(--font-display);
  color: var(--white);
  font-size: 1rem;
  margin-bottom: 1.25rem;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  font-weight: 600;
}

.site-footer ul {
  list-style: none;
}

.site-footer ul li {
  font-family: var(--font-main);
  margin-bottom: 0.75rem;
}

.site-footer a {
  font-family: var(--font-main);
  color: var(--gray);
}

.site-footer a:hover {
  color: var(--accent);
}

.footer-bottom {
  font-family: var(--font-main);
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 2rem;
  text-align: center;
  font-size: 0.9rem;
}

/* Form */
.form-group {
  margin-bottom: 1.5rem;
}

.form-group label {
  display: block;
  font-weight: 600;
  margin-bottom: 0.5rem;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 0.75rem;
  border: 1px solid var(--gray-dark);
  border-radius: 4px;
  font-family: inherit;
}

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

/* Responsive */
@media (max-width: 1024px) {
  .grid-cols-4 {
    grid-template-columns: repeat(2, 1fr);
  }

  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 768px) {

  .grid-cols-3,
  .grid-cols-2 {
    grid-template-columns: 1fr;
  }

  /* .header-nav { display: none; } - Removed for new mobile menu */
  .hero h1 {
    font-size: 2.5rem;
  }

  .hero-cta {
    flex-direction: column;
  }

  .trust-bar-item {
    width: 100%;
    text-align: center;
  }

  .form-row {
    grid-template-columns: 1fr;
  }
}

/* ===== EDITORIAL SERVICES ===== */
.services-editorial {
  background: var(--white);
  padding: 6rem 0;
  position: relative;
}

.editorial-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0;
  border-top: 1px solid var(--gray);
  border-left: 1px solid var(--gray);
}

.editorial-card {
  display: flex;
  align-items: flex-start;
  gap: 2rem;
  padding: 3rem 2.5rem;
  border-right: 1px solid var(--gray);
  border-bottom: 1px solid var(--gray);
  background: var(--white);
  text-decoration: none;
  color: inherit;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
}

.editorial-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 0;
  height: 4px;
  background: var(--accent);
  transition: width 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.editorial-card:hover {
  background: var(--gray-light);
  transform: translateY(-4px);
  box-shadow: 0 20px 40px -15px rgba(0, 0, 0, 0.1);
  z-index: 2;
}

.editorial-card:hover::before {
  width: 100%;
}

.editorial-card:hover .editorial-number {
  color: var(--accent);
  transform: scale(1.05);
}

.editorial-card:hover .editorial-link {
  gap: 1rem;
  color: var(--accent);
}

.editorial-card:hover .editorial-link svg {
  transform: translateX(4px);
}

.editorial-number {
  font-family: var(--font-display);
  font-size: clamp(3.5rem, 7vw, 5.5rem);
  font-weight: 800;
  line-height: 0.85;
  color: var(--gray-200);
  letter-spacing: -0.02em;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  flex-shrink: 0;
  font-feature-settings: "tnum";
  font-variant-numeric: tabular-nums;
}

.editorial-content {
  flex: 1;
  padding-top: 0.5rem;
}

.editorial-content h3 {
  font-family: var(--font-display);
  font-size: 1.625rem;
  font-weight: 700;
  margin-bottom: 0.75rem;
  color: var(--primary);
  letter-spacing: 0.005em;
  text-transform: uppercase;
  line-height: 1.05;
}

.editorial-content p {
  color: var(--dark);
  font-size: 0.95rem;
  line-height: 1.6;
  margin-bottom: 1.25rem;
}

.editorial-link {
  font-family: var(--font-display);
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-weight: 600;
  font-size: 0.875rem;
  color: var(--primary);
  text-transform: uppercase;
  letter-spacing: 0.15em;
  transition: all 0.3s ease;
}

.editorial-link svg {
  transition: transform 0.3s ease;
}

@media (max-width: 768px) {
  .services-editorial {
    padding: 3rem 0;
  }

  .editorial-grid {
    grid-template-columns: 1fr;
    border-left: none;
  }

  .editorial-card {
    padding: 2rem 1.5rem;
    gap: 1.25rem;
    border-left: 1px solid var(--gray);
  }

  .editorial-number {
    font-size: 2.5rem;
  }

  .editorial-content h3 {
    font-size: 1.25rem;
  }
}

/* ===== AREAS MODERN — CONCRETE THEMED ===== */
.areas-modern {
  background: var(--color-primary);
  padding: 6rem 0;
  position: relative;
  overflow: hidden;
}

.areas-modern::before {
  content: "";
  position: absolute;
  top: -50%;
  right: -20%;
  width: 800px;
  height: 800px;
  background: radial-gradient(circle, rgba(249, 115, 22, 0.08) 0%, transparent 70%);
  pointer-events: none;
}

/* Fix section header colors in dark section */
.areas-modern-header .section-eyebrow {
  color: var(--color-accent) !important;
}

.areas-modern-header h2 {
  color: rgb(0, 0, 0) !important;
}

.areas-modern-header p {
  color: rgb(0, 0, 0) !important;
  font-size: 1.05rem;
}

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

.area-modern-card {
  position: relative;
  background:
    linear-gradient(145deg, rgba(31, 31, 31, 0.95) 0%, rgba(22, 22, 22, 0.95) 100%),
    url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='200' height='200' viewBox='0 0 200 200'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='3' stitchTiles='stitch'/%3E%3CfeColorMatrix values='0 0 0 0 1 0 0 0 0 1 0 0 0 0 1 0 0 0 0.15 0'/%3E%3C/filter%3E%3Crect width='200' height='200' filter='url(%23n)' opacity='0.6'/%3E%3C/svg%3E");
  background-size: cover, 200px 200px;
  background-blend-mode: normal, overlay;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 16px;
  padding: 2rem;
  text-decoration: none;
  color: white;
  overflow: hidden;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  display: flex;
  flex-direction: column;
  min-height: 360px;
  isolation: isolate;
}

/* Concrete texture overlay */
.area-modern-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    repeating-linear-gradient(45deg,
      transparent 0px,
      transparent 40px,
      rgba(255, 255, 255, 0.015) 40px,
      rgba(255, 255, 255, 0.015) 41px),
    repeating-linear-gradient(-45deg,
      transparent 0px,
      transparent 60px,
      rgba(255, 255, 255, 0.01) 60px,
      rgba(255, 255, 255, 0.01) 61px);
  pointer-events: none;
  z-index: 0;
}

/* Construction corner accent */
.area-modern-card::after {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  width: 70px;
  height: 70px;
  background: linear-gradient(135deg, var(--color-accent) 0%, transparent 70%);
  opacity: 0.4;
  transition: all 0.4s ease;
  z-index: 0;
}

.area-modern-card>* {
  position: relative;
  z-index: 1;
}

.area-modern-card:hover {
  transform: translateY(-8px);
  border-color: var(--color-accent);
  box-shadow:
    0 25px 50px -15px rgba(249, 115, 22, 0.4),
    0 0 0 1px rgba(249, 115, 22, 0.2);
}

.area-modern-card:hover::after {
  width: 120px;
  height: 120px;
  opacity: 0.6;
}

.area-modern-state {
  display: inline-block;
  font-family: var(--font-display);
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.25em;
  color: var(--color-accent);
  text-transform: uppercase;
  margin-bottom: 0.875rem;
  padding: 0.3125rem 0.75rem;
  background: rgba(249, 115, 22, 0.1);
  border: 1px solid rgba(249, 115, 22, 0.25);
  border-radius: 4px;
}

.area-modern-card h3 {
  font-family: var(--font-display);
  font-size: 2.5rem;
  font-weight: 700;
  color: white;
  margin-bottom: 0.5rem;
  letter-spacing: 0.01em;
  text-transform: uppercase;
  line-height: 0.95;
}

.area-modern-pop {
  color: rgba(255, 255, 255, 0.5);
  font-size: 0.875rem;
  margin-bottom: 1.5rem;
  font-weight: 500;
}

.area-modern-zips {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-bottom: 1.5rem;
}

.area-modern-zips span {
  font-family: 'SF Mono', 'Consolas', monospace;
  font-size: 0.75rem;
  background: rgba(255, 255, 255, 0.06);
  color: rgba(255, 255, 255, 0.7);
  border: 1px solid rgba(255, 255, 255, 0.1);
  padding: 0.375rem 0.625rem;
  border-radius: 6px;
  font-weight: 500;
  transition: all 0.3s ease;
}

.area-modern-zips span.more {
  background: rgba(249, 115, 22, 0.15);
  color: var(--color-accent);
  border-color: rgba(249, 115, 22, 0.3);
}

/* CTA — now a SOLID ORANGE BUTTON */
.area-modern-cta {
  display: flex;
  align-self: stretch;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  background: linear-gradient(135deg, #f97316 0%, #ea580c 100%);
  color: white !important;
  padding: 0.875rem 1.25rem;
  border-radius: 10px;
  font-family: var(--font-display);
  font-size: 0.825rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  border: none;
  margin-top: auto;
  position: relative;
  overflow: hidden;
  box-shadow: 0 4px 14px rgba(249, 115, 22, 0.4);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.area-modern-cta::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
  transition: left 0.6s ease;
}

.area-modern-card:hover .area-modern-cta {
  box-shadow: 0 8px 24px rgba(249, 115, 22, 0.6);
  transform: translateY(-1px);
}

.area-modern-card:hover .area-modern-cta::before {
  left: 100%;
}

.area-modern-cta svg {
  transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.area-modern-card:hover .area-modern-cta svg {
  transform: translateX(4px);
}

/* Responsive */
@media (max-width: 1024px) {
  .areas-modern-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 640px) {
  .areas-modern {
    padding: 3rem 0;
  }

  .areas-modern-grid {
    grid-template-columns: 1fr;
  }

  .area-modern-card {
    min-height: 320px;
    padding: 1.75rem;
  }

  .area-modern-card h3 {
    font-size: 1.75rem;
  }
}

/* ===== MODERN FORM — 2 COLUMN LAYOUT ===== */
.form-section {
  background: linear-gradient(180deg, var(--color-gray-50) 0%, var(--color-white) 100%);
  padding: 6rem 0;
  position: relative;
}

.form-split {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  background: var(--color-white);
  border-radius: 24px;
  overflow: hidden;
  box-shadow:
    0 1px 3px rgba(0, 0, 0, 0.05),
    0 30px 80px -20px rgba(0, 0, 0, 0.15);
  border: 1px solid var(--color-gray-100);
  max-width: 1100px;
  margin: 0 auto;
}

/* LEFT VISUAL PANEL */
.form-visual {
  position: relative;
  background:
    linear-gradient(135deg, rgba(15, 15, 15, 0.92) 0%, rgba(26, 26, 26, 0.85) 50%, rgba(15, 15, 15, 0.95) 100%),
    url('/services/assets/images/hero-bg.png') center/cover no-repeat;
  padding: 3.5rem 3rem;
  color: white;
  display: flex;
  align-items: center;
  min-height: 100%;
  overflow: hidden;
}

.form-visual::before {
  content: "";
  position: absolute;
  top: -50%;
  right: -30%;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(249, 115, 22, 0.15) 0%, transparent 70%);
  pointer-events: none;
}

.form-visual-content {
  position: relative;
  z-index: 1;
}

.form-visual-eyebrow {
  display: inline-block;
  color: var(--color-accent);
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  padding: 0.375rem 0.875rem;
  background: rgba(249, 115, 22, 0.12);
  border: 1px solid rgba(249, 115, 22, 0.3);
  border-radius: 6px;
  margin-bottom: 1.5rem;
}

.form-visual h2 {
  font-family: var(--font-display);
  color: white;
  font-size: clamp(1.875rem, 3vw, 2.5rem);
  line-height: 1.0;
  margin-bottom: 1rem;
  letter-spacing: 0.01em;
  text-transform: uppercase;
  font-weight: 700;
}

.form-visual-subtitle {
  font-size: 1rem;
  color: rgba(255, 255, 255, 0.75);
  margin-bottom: 2.5rem;
  line-height: 1.6;
}

.form-features {
  list-style: none;
  padding: 0;
  margin: 0 0 2.5rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.form-features li {
  display: flex;
  align-items: center;
  gap: 0.875rem;
  color: rgba(255, 255, 255, 0.9);
  font-size: 0.95rem;
  font-weight: 500;
}

.form-features li svg {
  flex-shrink: 0;
  color: var(--color-accent);
  background: rgba(249, 115, 22, 0.15);
  border-radius: 50%;
  padding: 4px;
  width: 28px;
  height: 28px;
}

.form-contact-direct {
  padding-top: 1.5rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.form-contact-label {
  font-size: 0.75rem;
  color: rgba(255, 255, 255, 0.5);
  text-transform: uppercase;
  letter-spacing: 0.15em;
  margin-bottom: 0.625rem;
  font-weight: 600;
}

.form-contact-phone {
  font-family: var(--font-display);
  font-weight: 700;
  letter-spacing: 0.005em;
  display: inline-flex;
  align-items: center;
  gap: 0.625rem;
  color: white;
  text-decoration: none;
  font-size: 1.5rem;
  transition: color 0.2s ease;
}

.form-contact-phone:hover {
  color: var(--color-accent);
}

.form-contact-phone svg {
  color: var(--color-accent);
}

/* RIGHT FORM PANEL */
.form-wrapper-modern {
  padding: 3.5rem 3rem;
  background: white;
}

.form-modern-title {
  font-family: var(--font-display);
  font-size: 1.625rem;
  font-weight: 700;
  color: var(--color-primary);
  margin-bottom: 2rem;
  letter-spacing: 0.005em;
  text-transform: uppercase;
}

.form-modern {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.25rem;
}

/* ============================================
   FORM FIELDS — STYLE: BORDES COMPLETOS
   (Style: Stripe / Linear / Notion)
   ============================================ */

.form-field {
  position: relative;
}

.form-field input,
.form-field select,
.form-field textarea {
  width: 100%;
  padding: 1.25rem 1rem 0.75rem;
  border: 1.5px solid var(--color-gray-200);
  background: var(--color-white);
  font-size: 1rem;
  font-family: var(--font-main);
  color: var(--color-primary);
  outline: none;
  border-radius: 10px;
  transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
  appearance: none;
  -webkit-appearance: none;
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.02);
}

.form-field textarea {
  resize: vertical;
  min-height: 90px;
  padding-top: 1.5rem;
  line-height: 1.5;
}

/* Hover state */
.form-field input:hover,
.form-field select:hover,
.form-field textarea:hover {
  border-color: var(--color-gray-300);
}

/* Focus state — borde naranja + glow sutil */
.form-field input:focus,
.form-field select:focus,
.form-field textarea:focus {
  border-color: var(--color-accent);
  box-shadow: 0 0 0 4px rgba(249, 115, 22, 0.1);
}

/* Floating label — posición inicial dentro del input */
.form-field label {
  position: absolute;
  top: 1rem;
  left: 1rem;
  font-size: 1rem;
  color: var(--color-gray-500);
  font-family: var(--font-main);
  pointer-events: none;
  transition: all 0.2s cubic-bezier(0.4, 0, 0.2, 1);
  transform-origin: 0 0;
  font-weight: 500;
  background: var(--color-white);
  padding: 0 0.375rem;
  margin-left: -0.375rem;
}

/* Floating label — cuando input tiene contenido o está enfocado
   El label "sube" y corta el borde superior con fondo blanco */
.form-field input:focus ~ label,
.form-field input:not(:placeholder-shown) ~ label,
.form-field textarea:focus ~ label,
.form-field textarea:not(:placeholder-shown) ~ label,
.form-field select:focus ~ label,
.form-field select:valid ~ label {
  transform: translateY(-1.65rem) scale(0.85);
  color: var(--color-accent);
  font-weight: 600;
}

/* Ocultar la línea inferior antigua (ya no se usa) */
.form-line {
  display: none;
}

/* Custom select arrow */
.form-field-select {
  position: relative;
}

.form-field-select::after {
  content: "";
  position: absolute;
  right: 1.25rem;
  top: 50%;
  width: 8px;
  height: 8px;
  border-right: 2px solid var(--color-gray-500);
  border-bottom: 2px solid var(--color-gray-500);
  transform: translateY(-75%) rotate(45deg);
  pointer-events: none;
  transition: all 0.3s ease;
}

.form-field-select select {
  padding-right: 2.5rem;
  cursor: pointer;
}

.form-field-select:focus-within::after {
  border-color: var(--color-accent);
  transform: translateY(-25%) rotate(225deg);
}

/* Mobile — fix de zoom en iOS + ajustes de spacing */
@media (max-width: 768px) {
  .form-field input,
  .form-field select,
  .form-field textarea {
    padding: 1.125rem 0.875rem 0.625rem;
    font-size: 16px; /* CRÍTICO: evita zoom automático en iOS */
  }

  .form-field label {
    top: 0.95rem;
    left: 0.875rem;
  }
}

.form-submit-modern {
  margin-top: 0.75rem;
  width: 100%;
}

.form-disclaimer {
  font-size: 0.8125rem;
  color: var(--color-gray-500);
  text-align: center;
  margin-top: 0.75rem;
  line-height: 1.5;
}

/* Responsive */
@media (max-width: 968px) {
  .form-split {
    grid-template-columns: 1fr;
    max-width: 600px;
  }

  .form-visual {
    padding: 2.5rem 2rem;
  }

  .form-wrapper-modern {
    padding: 2.5rem 2rem;
  }
}

@media (max-width: 768px) {
  .form-section {
    padding: 3rem 0;
  }

  .form-split {
    border-radius: 16px;
  }

  .form-visual {
    padding: 2rem 1.5rem;
  }

  .form-wrapper-modern {
    padding: 2rem 1.5rem;
  }

  .form-row {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  .form-features li {
    font-size: 0.9rem;
  }

  .form-contact-phone {
    font-size: 1.25rem;
  }
}

/* ===== MOBILE TOGGLE ===== */
.mobile-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
  width: 44px;
  height: 44px;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 5px;
  z-index: 101;
}

.mobile-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--primary);
  transition: all 0.3s ease;
  border-radius: 2px;
}

.mobile-toggle.is-active span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.mobile-toggle.is-active span:nth-child(2) {
  opacity: 0;
}

.mobile-toggle.is-active span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

.mobile-phone {
  display: none;
}

body.menu-open {
  overflow: hidden;
}

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

/* Tablet y mobile (< 1024px) */
@media (max-width: 1024px) {
  .header-inner {
    gap: 1rem;
  }

  .header-nav {
    gap: 1.25rem;
  }

  .header-nav a {
    font-size: 0.9rem;
  }

  .hero h1 {
    font-size: clamp(1.75rem, 5vw, 2.75rem);
  }

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

/* Mobile (< 768px) */
@media (max-width: 768px) {

  /* Container con menos padding */
  .container {
    padding: 0 1rem;
  }

  /* Header */
  .mobile-toggle {
    display: flex;
  }

  .header-cta {
    display: none;
  }

  .header-nav {
    position: fixed;
    top: 0;
    right: -100%;
    width: 85%;
    max-width: 320px;
    height: 100vh;
    background: var(--primary);
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    padding: 5rem 2rem 2rem;
    gap: 1.5rem;
    transition: right 0.3s ease;
    z-index: 100;
    overflow-y: auto;
  }

  .header-nav.is-open {
    right: 0;
    box-shadow: -10px 0 30px rgba(0, 0, 0, 0.3);
  }

  .header-nav a {
    color: var(--white);
    font-size: 1.125rem;
    font-weight: 600;
    width: 100%;
    padding: 0.75rem 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  }

  .header-nav a:hover {
    color: var(--accent);
  }

  .mobile-phone {
    font-family: var(--font-display);
    font-weight: 600;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    display: flex !important;
    align-items: center;
    gap: 0.5rem;
    background: var(--accent);
    color: var(--white) !important;
    padding: 1rem !important;
    border-radius: 8px;
    margin-top: 1rem;
    border-bottom: none !important;
    justify-content: center;
  }

  /* Hero */
  .hero {
    padding: 3rem 0;
  }

  .hero h1 {
    font-size: clamp(1.75rem, 7vw, 2.5rem);
    line-height: 1.15;
  }

  .hero-subtitle {
    font-size: 1rem;
  }

  .hero-cta {
    flex-direction: column;
    width: 100%;
  }

  .hero-cta .btn {
    width: 100%;
  }

  .hero-trust {
    gap: 1.5rem;
  }

  .trust-number {
    font-size: 1.5rem;
  }

  /* Trust bar */
  .trust-bar-inner {
    gap: 1rem;
    flex-direction: column;
  }

  .trust-bar-item {
    font-size: 0.875rem;
  }

  /* Sections */
  .section {
    padding: 2.5rem 0;
  }

  h2 {
    font-size: clamp(1.5rem, 5vw, 2rem);
  }

  /* Grids */
  .grid-cols-4,
  .grid-cols-3,
  .grid-cols-2 {
    grid-template-columns: 1fr;
    gap: 1rem;
  }

  .services-list {
    grid-template-columns: 1fr;
  }

  /* Cards */
  .card {
    padding: 1.5rem;
  }

  /* Process */
  .process-steps {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  /* Pricing */
  .pricing-card {
    padding: 2rem 1.5rem;
  }

  .pricing-range {
    font-size: 2.5rem;
  }

  /* FAQ */
  .faq-item summary {
    font-size: 1rem;
  }

  /* CTA section */
  .cta-section {
    padding: 3rem 0;
  }

  .cta-section .hero-cta {
    flex-direction: column;
  }

  .cta-section .btn {
    width: 100%;
  }

  /* Footer */
  .footer-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
    text-align: left;
  }

  /* Internal links */
  .link-grid {
    grid-template-columns: 1fr;
  }

  /* Form */
  .contact-form {
    padding: 1.5rem;
  }
}

/* Mobile pequeño (< 480px) */
@media (max-width: 480px) {
  .logo {
    font-size: 1.1rem;
  }

  .hero {
    padding: 2.5rem 0;
  }

  .hero-trust {
    flex-direction: column;
    gap: 1rem;
    align-items: flex-start;
  }

  .btn {
    padding: 0.875rem 1.25rem;
    font-size: 0.95rem;
  }

  .btn-large {
    padding: 1rem 1.5rem;
    font-size: 1rem;
  }
}

/* Touch targets - todos los botones y links mínimo 44x44px */
@media (max-width: 768px) {

  .btn,
  .phone-link,
  .header-nav a,
  .area-tag,
  .link-grid a {
    min-height: 44px;
  }
}

/* ===== NEW TYPOGRAPHY CLASSES ===== */
.trust-number {
  font-family: var(--font-display);
  font-size: 2.25rem;
  font-weight: 700;
  color: var(--color-accent);
  line-height: 1;
  letter-spacing: 0.01em;
}

.trust-label {
  font-family: var(--font-main);
  font-size: 0.875rem;
  color: var(--color-gray-300);
  margin-top: 0.375rem;
  font-weight: 500;
}

.pricing-range {
  font-family: var(--font-display);
  font-size: clamp(2.75rem, 6vw, 3.75rem);
  font-weight: 800;
  color: var(--color-primary);
  line-height: 1;
  margin: 1rem 0;
  letter-spacing: 0.005em;
}

.step-number {
  font-family: var(--font-display);
  font-weight: 800;
  letter-spacing: 0;
}

/* ===== TYPOGRAPHY RESPONSIVE FINE-TUNING ===== */

/* Tablet ajustes */
@media (max-width: 1024px) {
  h1 {
    letter-spacing: 0.005em;
  }

  h2 {
    letter-spacing: 0.005em;
  }
}

/* Mobile fine-tuning para Oswald */
@media (max-width: 768px) {
  h1 {
    font-size: clamp(1.875rem, 7vw, 2.625rem);
    line-height: 1.05;
    letter-spacing: 0.005em;
  }

  h2 {
    font-size: clamp(1.625rem, 5.5vw, 2.125rem);
    line-height: 1.1;
  }

  h3 {
    font-size: 1.25rem;
  }

  .editorial-number {
    font-size: 2.75rem;
  }

  .area-modern-card h3 {
    font-size: 2rem;
  }

  .pricing-range {
    font-size: 2.5rem;
  }

  .logo {
    font-size: 1.25rem;
  }
}

/* Improve Oswald rendering on Windows/Chrome */
h1,
h2,
h3,
h4,
.logo,
.editorial-number,
.area-modern-card h3,
.pricing-range,
.step-number,
.form-visual h2 {
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
}

/* ============================================
   FIX: Hero subtitle en pillar/money pages
   ============================================ */

.hero .hero-subtitle,
.hero.bg-dark .hero-subtitle {
  color: rgba(255, 255, 255, 0.85);
  font-size: clamp(1.05rem, 2vw, 1.25rem);
  line-height: 1.55;
  max-width: 700px;
  margin: 1.5rem auto 2rem;
  font-family: var(--font-main);
  font-weight: 400;
  text-align: center;
}

/* ===== THANK YOU PAGE ===== */
.thankyou-content {
  max-width: 800px;
  margin: 0 auto;
}

.thankyou-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 120px;
  height: 120px;
  background: rgba(249, 115, 22, 0.15);
  color: var(--color-accent);
  border-radius: 50%;
  margin-bottom: 2rem;
  border: 2px solid rgba(249, 115, 22, 0.3);
  animation: pulse-success 2s ease-out;
}

@keyframes pulse-success {
  0% {
    transform: scale(0.8);
    opacity: 0;
    box-shadow: 0 0 0 0 rgba(249, 115, 22, 0.5);
  }
  50% {
    box-shadow: 0 0 0 20px rgba(249, 115, 22, 0);
  }
  100% {
    transform: scale(1);
    opacity: 1;
    box-shadow: 0 0 0 0 rgba(249, 115, 22, 0);
  }
}

.thankyou-features {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  margin-top: 4rem;
  padding-top: 3rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.thankyou-feature {
  text-align: center;
}

.thankyou-feature strong {
  display: block;
  font-family: var(--font-display);
  font-size: 1.1rem;
  color: var(--color-accent);
  margin-bottom: 0.5rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.thankyou-feature p {
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.95rem;
  margin: 0;
}

@media (max-width: 768px) {
  .thankyou-icon {
    width: 90px;
    height: 90px;
  }
  .thankyou-features {
    grid-template-columns: 1fr;
    gap: 1.5rem;
    margin-top: 2.5rem;
    padding-top: 2rem;
  }
}

/* ===== SOCIAL ICONS — HEADER ===== */
.header-social {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border-radius: 10px;
  background: var(--color-gray-100);
  color: var(--color-gray-700);
  transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
  text-decoration: none;
  flex-shrink: 0;
}

.header-social:hover {
  background: linear-gradient(135deg, #833AB4 0%, #FD1D1D 50%, #FCAF45 100%);
  color: white;
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(225, 48, 108, 0.3);
}

@media (max-width: 768px) {
  .header-social {
    display: none; /* Se oculta en mobile, el hamburger menu lo maneja */
  }
}

/* ===== SOCIAL ICONS — FOOTER ===== */
.footer-social {
  display: flex;
  gap: 0.75rem;
  margin-top: 1.5rem;
  flex-wrap: wrap;
}

.footer-social a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.05);
  color: rgba(255, 255, 255, 0.7);
  border: 1px solid rgba(255, 255, 255, 0.1);
  transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
  text-decoration: none;
}

.footer-social a:hover {
  color: white;
  border-color: var(--color-accent);
  background: rgba(249, 115, 22, 0.15);
  transform: translateY(-3px);
}

/* Instagram-specific hover gradient */
.footer-social a[aria-label*="Instagram"]:hover {
  background: linear-gradient(135deg, #833AB4 0%, #FD1D1D 50%, #FCAF45 100%);
  border-color: transparent;
}

/* Facebook-specific hover color */
.footer-social a[aria-label*="Facebook"]:hover {
  background: #1877F2;
  border-color: transparent;
}

/* Google-specific hover color */
.footer-social a[aria-label*="Google"]:hover {
  background: #4285F4;
  border-color: transparent;
}

.footer-license {
  font-family: var(--font-main);
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.5);
  display: inline-block;
  padding-top: 0.5rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  margin-top: 0.5rem;
  line-height: 1.5;
}