/* Ailares Static HTML Framework */

:root {
  --primary: oklch(0.72 0.18 70);
  --primary-foreground: oklch(0.15 0.01 0);
  --radius: 0.65rem;
  --background: oklch(0.98 0.001 80);
  --foreground: oklch(0.15 0.01 0);
  --secondary: oklch(0.15 0.01 0);
  --secondary-foreground: oklch(0.98 0.001 80);
  --muted: oklch(0.55 0.01 65);
  --accent: oklch(0.72 0.18 70);
  --accent-foreground: oklch(0.15 0.01 0);
  --border: oklch(0.92 0.004 286.32);
  --font-display: "Inter", sans-serif;
  --font-body: "Inter", sans-serif;
}

*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  font-family: var(--font-body);
  background-color: var(--background);
  color: var(--foreground);
  line-height: 1.5;
  min-height: 100vh;
  padding-top: 5.5rem;
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-display);
  font-weight: 700;
}

a {
  color: inherit;
  text-decoration: none;
  cursor: pointer;
}

.inline-link {
  color: var(--accent);
  font-weight: 600;
  text-decoration: underline;
  text-underline-offset: 0.18rem;
}

.inline-link:hover {
  color: color-mix(in oklch, var(--accent) 78%, white);
}

button {
  font-family: inherit;
  cursor: pointer;
  border: none;
  background: none;
}

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

/* Layout */
.page {
  min-height: 100vh;
  background-color: var(--background);
}

.container {
  width: 100%;
  margin-left: auto;
  margin-right: auto;
  padding-left: 1rem;
  padding-right: 1rem;
}

@media (min-width: 640px) {
  .container {
    padding-left: 1.5rem;
    padding-right: 1.5rem;
  }
}

@media (min-width: 1024px) {
  .container {
    padding-left: 2rem;
    padding-right: 2rem;
    max-width: 1280px;
  }
}

/* Navigation */
.site-nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background-color: color-mix(in oklch, var(--background) 95%, transparent);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid var(--border);
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.05);
}

.site-nav .nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 5.5rem;
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  transition: opacity 0.2s;
}

.nav-logo:hover {
  opacity: 0.8;
}

.nav-logo img {
  height: 5rem;
  width: auto;
}

.nav-links {
  display: none;
  align-items: center;
  gap: 2rem;
}

@media (min-width: 768px) {
  .nav-links {
    display: flex;
  }
}

.nav-link {
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--foreground);
  transition: color 0.2s;
  padding-bottom: 0.25rem;
}

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

.nav-link.active {
  color: var(--accent);
  border-bottom: 2px solid var(--accent);
}

.nav-toggle {
  display: block;
  padding: 0.5rem;
  border-radius: 0.5rem;
  transition: background-color 0.2s;
}

.nav-toggle:hover {
  background-color: color-mix(in oklch, var(--accent) 10%, transparent);
}

@media (min-width: 768px) {
  .nav-toggle {
    display: none;
  }
}

.nav-mobile {
  display: none;
  border-top: 1px solid var(--border);
  background-color: var(--background);
}

.nav-mobile.open {
  display: block;
}

.nav-mobile .container {
  padding-top: 1rem;
  padding-bottom: 1rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.nav-mobile .nav-link {
  display: block;
  padding: 0.5rem 0;
}

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

@media (min-width: 768px) {
  .section {
    padding: 6rem 0;
  }
}

.section-hero {
  padding: 5rem 0;
}

@media (min-width: 768px) {
  .section-hero {
    padding: 8rem 0;
  }
}

body[data-page="Home"] .section-hero {
  min-height: calc(100vh - 5.5rem);
  min-height: calc(100dvh - 5.5rem);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0;
}

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

.bg-secondary-textured {
  background-color: var(--secondary);
  background-image: url("../assets/ailares_background.jpg");
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  position: relative;
  color: white;
  overflow: hidden;
}

.bg-secondary-textured::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.3) 0%, rgba(0, 0, 0, 0.5) 100%);
  pointer-events: none;
  z-index: 0;
}

.bg-secondary-textured > .container,
.bg-secondary-textured > .container * {
  position: relative;
  z-index: 1;
}

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

.bg-secondary-light {
  background-color: color-mix(in oklch, var(--secondary) 5%, transparent);
}

.site-footer {
  padding: 2rem 0;
  background-color: var(--secondary);
  color: rgba(255, 255, 255, 0.75);
  font-size: 0.75rem;
  line-height: 1.7;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem 1.25rem;
  margin-bottom: 1rem;
}

.footer-links a {
  color: rgba(255, 255, 255, 0.86);
  font-size: 0.875rem;
  font-weight: 600;
  transition: color 0.2s;
}

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

.site-footer p + p {
  margin-top: 0.75rem;
}

.hubspot-form {
  max-width: 42rem;
  margin: 0 auto;
  text-align: left;
}

.cta-faq-link {
  margin-top: 1.5rem;
  color: rgba(255, 255, 255, 0.88);
  font-size: 1rem;
  font-weight: 500;
  text-align: center;
}

.cta-faq-link a {
  color: inherit;
  text-decoration: underline;
  text-underline-offset: 0.25rem;
  transition: color 0.2s;
}

.cta-faq-link a:hover {
  color: var(--accent);
}

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

.text-white {
  color: white;
}

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

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

.text-white-80 {
  color: rgba(255, 255, 255, 0.8);
}

.text-white-90 {
  color: rgba(255, 255, 255, 0.9);
}

/* Typography */
.hero-title {
  font-size: 2.25rem;
  font-weight: 700;
  margin-bottom: 1rem;
}

@media (min-width: 768px) {
  .hero-title {
    font-size: 3.75rem;
  }
}

.hero-title-lg {
  font-size: 3rem;
}

@media (min-width: 768px) {
  .hero-title-lg {
    font-size: 3.75rem;
  }
}

.section-title {
  font-size: 1.875rem;
  font-weight: 700;
  margin-bottom: 1rem;
}

.section-title-lg {
  font-size: 1.875rem;
  font-weight: 700;
  margin-bottom: 3rem;
  text-align: center;
}

body[data-page="Investing"] .page > .section:nth-of-type(even) .section-title-lg {
  color: var(--accent);
}

@media (min-width: 768px) {
  .section-title {
    font-size: 2.25rem;
  }
}

.subtitle {
  font-size: 1.125rem;
  max-width: 42rem;
  margin-left: auto;
  margin-right: auto;
}

@media (min-width: 768px) {
  .subtitle {
    font-size: 1.25rem;
  }
}

.subtitle.mb-8 {
  margin-bottom: 2rem;
}

.lead {
  font-size: 1.125rem;
  line-height: 1.75;
}

.disclosure-text {
  color: var(--muted);
  font-size: 0.875rem;
  line-height: 1.7;
}

.disclosure-text p + p {
  margin-top: 1rem;
}

.privacy-content {
  color: var(--foreground);
  line-height: 1.75;
}

.privacy-content h2 {
  color: var(--accent);
  font-size: 1.5rem;
  margin-top: 3rem;
  margin-bottom: 1rem;
}

.privacy-content h3 {
  font-size: 1.125rem;
  margin-top: 1.75rem;
  margin-bottom: 0.75rem;
}

.privacy-content p + p,
.privacy-content ul + p {
  margin-top: 1rem;
}

.privacy-content ul {
  margin: 1rem 0 1rem 1.25rem;
}

.privacy-content li + li {
  margin-top: 0.5rem;
}

.privacy-content a {
  color: var(--accent);
  text-decoration: underline;
}

.privacy-updated {
  color: var(--muted);
}

.investing-compact-section {
  padding: 3rem 0;
}

.investing-wide-copy {
  max-width: none;
}

.investing-wide-copy .lead + .lead {
  margin-top: 1.25rem;
}

@media (min-width: 768px) {
  .investing-compact-section {
    padding: 4rem 0;
  }
}

.blog-link-section {
  padding: 4.5rem 0 1.25rem;
  background-color: white;
}

.blog-directory-link {
  color: var(--accent);
  font-size: clamp(2.5rem, 5vw, 4.25rem);
  font-weight: 800;
  text-decoration: underline;
}

.blog-directory-link:hover {
  color: color-mix(in oklch, var(--accent) 78%, black);
  text-decoration: underline;
  text-underline-offset: 0.3rem;
}
.insights-panel-grid {
  display: grid;
  gap: 1.5rem;
}

.insights-panel {
  min-height: 12rem;
  padding: 2rem;
  border: 1px solid var(--border);
  border-radius: 0.5rem;
  background-color: white;
}

.insights-panel h2 {
  margin-bottom: 1rem;
  color: var(--foreground);
  font-size: 1.25rem;
  font-weight: 800;
}

.insights-panel p {
  color: var(--muted);
  line-height: 1.7;
}

.insights-panel p + p {
  margin-top: 1rem;
}

.insights-panel h3 {
  margin-top: 1.5rem;
  margin-bottom: 0.75rem;
  color: var(--foreground);
  font-size: 1.05rem;
  font-weight: 800;
}

.insights-list {
  margin: 0.85rem 0 1.25rem 1.25rem;
  color: var(--muted);
  line-height: 1.7;
}

.insights-list li + li {
  margin-top: 0.35rem;
}

.read-more-spacer {
  display: inline-block;
  width: 3rem;
}

.partnership-main-text {
  color: var(--foreground);
  font-size: 1.125rem;
  line-height: 1.8;
}

.partnership-main-text p + p {
  margin-top: 1.25rem;
}

.floating-insights-cta {
  position: fixed;
  right: 1.5rem;
  top: 50%;
  z-index: 999;
  width: min(18rem, calc(100vw - 3rem));
  padding: 1.5rem;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 0.5rem;
  background-color: var(--secondary);
  color: white;
  box-shadow: 0 1rem 2rem rgba(0, 0, 0, 0.28);
  transform: translateY(-50%);
}

.floating-insights-cta h2 {
  margin-bottom: 0.75rem;
  color: white;
  font-size: 1.125rem;
  font-weight: 800;
}

.floating-insights-cta p {
  margin-bottom: 1rem;
  color: rgba(255, 255, 255, 0.82);
  font-size: 0.9rem;
  line-height: 1.5;
}

.floating-insights-cta .btn-accent {
  width: 100%;
  justify-content: center;
}

.subscribe-modal {
  position: fixed;
  inset: 0;
  z-index: 1200;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 1.5rem;
}

.subscribe-modal.open {
  display: flex;
}

.subscribe-modal-backdrop {
  position: absolute;
  inset: 0;
  background-color: rgba(0, 0, 0, 0.68);
}

.subscribe-modal-panel {
  position: relative;
  z-index: 1;
  width: min(64rem, calc(100vw - 2rem));
  max-height: calc(100vh - 2rem);
  overflow-y: auto;
  padding: 2rem;
  border-radius: 0.5rem;
  background-color: var(--secondary);
  color: white;
  box-shadow: 0 1.5rem 4rem rgba(0, 0, 0, 0.32);
}

.subscribe-modal-panel h2 {
  margin-bottom: 0.5rem;
  font-size: 1.5rem;
  font-weight: 800;
}

.subscribe-modal-panel p {
  margin-bottom: 1.25rem;
  color: rgba(255, 255, 255, 0.82);
  line-height: 1.6;
}

.subscribe-modal-close {
  position: absolute;
  top: 0.75rem;
  right: 0.75rem;
  width: 2rem;
  height: 2rem;
  border-radius: 999px;
  color: white;
  font-size: 1.5rem;
  line-height: 1;
}

.subscribe-modal-close:hover {
  background-color: rgba(255, 255, 255, 0.12);
}

.subscribe-modal-panel .hs-form-frame,
.subscribe-modal-panel .hs-form label,
.subscribe-modal-panel .hs-form legend,
.subscribe-modal-panel .hs-form-field > label,
.subscribe-modal-panel .hs-form-booleancheckbox-display span {
  color: rgba(255, 255, 255, 0.9) !important;
}

.subscribe-modal-panel .hs-form input,
.subscribe-modal-panel .hs-form textarea,
.subscribe-modal-panel .hs-form select {
  color: var(--foreground) !important;
  background-color: white !important;
}

@media (min-width: 768px) {
  .insights-panel-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 640px) {
  .floating-insights-cta {
    left: 1rem;
    right: 1rem;
    top: auto;
    bottom: 1rem;
    width: auto;
    transform: none;
  }
}

/* Grids */
.grid-3 {
  display: grid;
  gap: 2rem;
}

@media (min-width: 768px) {
  .grid-3 {
    grid-template-columns: repeat(3, 1fr);
  }
}

.grid-4 {
  display: grid;
  gap: 1.5rem;
}

@media (min-width: 768px) {
  .grid-4 {
    grid-template-columns: repeat(4, 1fr);
  }
}

.grid-2 {
  display: grid;
  gap: 2rem;
}

@media (min-width: 768px) {
  .grid-2 {
    grid-template-columns: repeat(2, 1fr);
  }
}

.max-w-2xl {
  max-width: 42rem;
  margin-left: auto;
  margin-right: auto;
}

.max-w-4xl {
  max-width: 56rem;
  margin-left: auto;
  margin-right: auto;
}

/* Cards */
.card {
  padding: 2rem;
  background: white;
  border-radius: 0.5rem;
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.05);
  transition: box-shadow 0.2s;
}

.card:hover {
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.card-bordered {
  border: 1px solid var(--border);
}

.card-title {
  font-size: 1.25rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
}

.card-icon {
  width: 3rem;
  height: 3rem;
  background-color: color-mix(in oklch, var(--accent) 20%, transparent);
  border-radius: 0.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1rem;
}

.card-icon svg {
  width: 1.5rem;
  height: 1.5rem;
  color: var(--accent);
}

.card-icon-center {
  margin-left: auto;
  margin-right: auto;
}

.feature-list {
  padding-left: 1.25rem;
  line-height: 1.7;
}

.feature-list li + li {
  margin-top: 0.85rem;
}

/* Buttons */
.ailares-button {
  display: inline-block;
  padding: 0.75rem 1.5rem;
  background-color: var(--accent);
  color: var(--accent-foreground);
  font-weight: 500;
  border-radius: 0.5rem;
  transition: all 0.2s;
}

.ailares-button:hover {
  box-shadow: 0 10px 15px rgba(0, 0, 0, 0.1);
  transform: scale(1.05);
}

.ailares-button:active {
  transform: scale(0.98);
}

.btn-accent {
  display: inline-block;
  padding: 0.75rem 2rem;
  background-color: var(--accent);
  color: var(--accent-foreground);
  font-weight: 500;
  border-radius: 0.5rem;
  transition: all 0.2s;
}

.btn-accent:hover {
  box-shadow: 0 10px 15px rgba(0, 0, 0, 0.1);
  transform: scale(1.05);
}

.btn-accent:active {
  transform: scale(0.98);
}

.mt-8 { margin-top: 2rem; }
.mt-12 { margin-top: 3rem; }
.mb-4 { margin-bottom: 1rem; }
.mb-6 { margin-bottom: 1.5rem; }
.mb-8 { margin-bottom: 2rem; }
.mb-12 { margin-bottom: 3rem; }

/* Forms */
.textarea,
.input-field {
  width: 100%;
  padding: 1.5rem;
  background: white;
  border: 1px solid var(--border);
  border-radius: 0.5rem;
  color: var(--foreground);
  font-family: inherit;
  font-size: inherit;
  line-height: 1.5;
  resize: vertical;
}

.textarea:focus,
.input-field:focus {
  outline: none;
  box-shadow: 0 0 0 2px var(--accent);
}

.textarea-lg {
  min-height: 24rem;
  font-size: 1.125rem;
}

.textarea-md {
  min-height: 10rem;
}

.textarea-sm {
  min-height: 6rem;
  resize: none;
  background: transparent;
  border: none;
  padding: 0;
}

.textarea-sm:focus {
  box-shadow: none;
}

.kpi-card .input-label {
  width: 100%;
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--muted);
  margin-bottom: 0.75rem;
  background: transparent;
  border: none;
  border-bottom: 1px solid color-mix(in oklch, var(--accent) 30%, transparent);
  padding-bottom: 0.5rem;
}

.kpi-card .input-label:focus {
  outline: none;
  border-bottom-color: var(--accent);
}

.kpi-card .input-value {
  width: 100%;
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--accent);
  background: transparent;
  border: none;
}

.kpi-card .input-value:focus {
  outline: none;
}

.performance-section {
  background-color: var(--secondary);
  color: white;
}

.performance-heading {
  display: grid;
  gap: 2rem;
  padding-bottom: 4rem;
}

.performance-section-title {
  font-size: 2.5rem;
  font-weight: 700;
  line-height: 1.05;
}

.performance-section-intro {
  max-width: 31rem;
  color: rgba(255, 255, 255, 0.85);
  font-size: 1rem;
  line-height: 1.5;
}

.performance-dashboard {
  display: grid;
  border-top: 1px solid rgba(255, 255, 255, 0.7);
}

.performance-kpi {
  min-height: 11rem;
  padding: 2rem 0;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  text-align: left;
  border-bottom: 1px solid rgba(255, 255, 255, 0.7);
}

.performance-kpi-value {
  color: var(--accent);
  font-size: 3rem;
  font-weight: 500;
  line-height: 1;
}

.performance-kpi-label {
  margin-top: 0.6rem;
  color: rgba(255, 255, 255, 0.9);
  font-size: 0.875rem;
  font-weight: 500;
  line-height: 1.35;
  text-transform: none;
}

.performance-action {
  margin-top: 3rem;
}

@media (min-width: 768px) {
  .performance-heading {
    grid-template-columns: minmax(0, 1.2fr) minmax(18rem, 1fr);
    align-items: start;
    column-gap: 5rem;
  }

  .performance-section-title {
    font-size: 3rem;
  }

  .performance-dashboard {
    grid-template-columns: repeat(4, 1fr);
    border-top: 0;
  }

  .performance-kpi {
    min-height: 10rem;
    padding: 0 2.5rem;
    border-bottom: 0;
    border-left: 1px solid rgba(255, 255, 255, 0.7);
  }

  .performance-kpi:first-child {
    padding-left: 0;
    border-left: 0;
  }
}

.contact-office address {
  margin-bottom: 1rem;
  color: var(--muted);
  font-style: normal;
  line-height: 1.6;
}

.contact-map {
  width: 100%;
  height: 20rem;
  border: 1px solid var(--border);
  border-radius: 0.5rem;
}

.contact-methods-grid {
  display: grid;
  gap: 1rem;
  margin-top: 1.5rem;
}

@media (min-width: 768px) {
  .contact-methods-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

body[data-page="Contact"] .column-title {
  color: var(--foreground);
}

body[data-page="Contact"] .hubspot-form .hs-form label,
body[data-page="Contact"] .hubspot-form .hs-form legend,
body[data-page="Contact"] .hubspot-form .hs-form-field > label,
body[data-page="Contact"] .hubspot-form .hs-form-booleancheckbox-display span {
  color: rgba(255, 255, 255, 0.9) !important;
}

body[data-page="Contact"] .hubspot-form .hs-form input,
body[data-page="Contact"] .hubspot-form .hs-form textarea,
body[data-page="Contact"] .hubspot-form .hs-form select {
  color: var(--foreground) !important;
  background-color: white !important;
}

.contact-form-panel {
  padding: 2rem;
  background-color: var(--secondary);
  border-radius: 0.5rem;
}

body[data-page="Contact"] .contact-form-panel .column-title {
  color: white;
}

.linkedin-card {
  display: block;
}

.linkedin-icon {
  background-color: #0a66c2;
}

.linkedin-icon svg {
  width: 1.5rem;
  height: 1.5rem;
  fill: white;
}

body[data-page="FAQ"] .page {
  background-color: var(--secondary);
}

.faq-heading-section {
  position: sticky;
  top: 5.5rem;
  z-index: 10;
  background-color: var(--secondary);
  background-image: url("../assets/ailares_background.jpg");
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  border-bottom: 1px solid rgba(255, 255, 255, 0.14);
  min-height: 14rem;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.faq-heading-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.3) 0%, rgba(0, 0, 0, 0.5) 100%);
  pointer-events: none;
  z-index: 0;
}

.faq-heading-section > .container,
.faq-heading-section > .container * {
  position: relative;
  z-index: 1;
}

.faq-heading-section .section-title {
  margin-bottom: 0;
}

.faq-content-section {
  background-color: var(--secondary);
  color: white;
  padding-top: 3rem;
}

.faq-list {
  max-width: 56rem;
  margin: 0 auto;
}

.faq-item {
  border-bottom: 1px solid rgba(255, 255, 255, 0.22);
}

.faq-item:first-child {
  border-top: 1px solid rgba(255, 255, 255, 0.22);
}

.faq-item summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  padding: 1.5rem 0;
  color: white;
  font-size: 1.125rem;
  font-weight: 600;
  line-height: 1.4;
  cursor: pointer;
  list-style: none;
}

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

.faq-plus {
  flex: 0 0 auto;
  color: var(--accent);
  font-size: 1.75rem;
  font-weight: 400;
  line-height: 1;
}

.faq-item[open] .faq-plus {
  transform: rotate(45deg);
}

.faq-answer {
  max-width: 48rem;
  padding: 0 3rem 1.5rem 0;
  color: rgba(255, 255, 255, 0.82);
  font-size: 1rem;
  line-height: 1.7;
}

.faq-answer p + p,
.faq-answer p + ul {
  margin-top: 1rem;
}

.faq-answer ul {
  padding-left: 1.25rem;
}

.faq-answer li + li {
  margin-top: 0.5rem;
}

.faq-table-wrap {
  width: 100%;
  margin-top: 1.5rem;
  overflow-x: auto;
}

.faq-table {
  width: 100%;
  min-width: 42rem;
  border-collapse: collapse;
  color: rgba(255, 255, 255, 0.88);
  font-size: 0.95rem;
}

.faq-table th,
.faq-table td {
  padding: 0.85rem 1rem;
  border: 1px solid rgba(255, 255, 255, 0.28);
  text-align: left;
  vertical-align: middle;
}

.faq-table th {
  color: white;
  font-weight: 700;
  background-color: rgba(255, 255, 255, 0.08);
}

.faq-table td:first-child {
  color: white;
  font-weight: 700;
}

.floating-intro-call {
  position: fixed;
  right: 1.5rem;
  top: 50%;
  transform: translateY(-50%);
  z-index: 999;
}

.floating-intro-call .ailares-button {
  box-shadow: 0 1rem 2rem rgba(0, 0, 0, 0.28);
  white-space: nowrap;
}

@media (max-width: 640px) {
  .floating-intro-call {
    left: 1rem;
    right: 1rem;
    bottom: 1rem;
    top: auto;
    transform: none;
  }

  .floating-intro-call .ailares-button {
    width: 100%;
    text-align: center;
    white-space: normal;
  }
}

/* Hero animations */
.fade-in-up {
  opacity: 0;
  transform: translateY(2rem);
  transition: all 1s ease;
}

.fade-in-up.visible {
  opacity: 1;
  transform: translateY(0);
}

.fade-in-up.delay-200 {
  transition-delay: 200ms;
}

.fade-in-up.delay-300 {
  transition-delay: 300ms;
}

/* 404 Page */
.page-404 {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, #f8fafc 0%, #f1f5f9 100%);
}

.card-404 {
  width: 100%;
  max-width: 32rem;
  margin: 0 1rem;
  padding: 2rem;
  background: rgba(255, 255, 255, 0.8);
  backdrop-filter: blur(8px);
  border-radius: var(--radius);
  box-shadow: 0 10px 15px rgba(0, 0, 0, 0.1);
  text-align: center;
}

.icon-404 {
  display: flex;
  justify-content: center;
  margin-bottom: 1.5rem;
}

.icon-404 svg {
  width: 4rem;
  height: 4rem;
  color: #ef4444;
}

.title-404 {
  font-size: 2.25rem;
  font-weight: 700;
  color: #0f172a;
  margin-bottom: 0.5rem;
}

.subtitle-404 {
  font-size: 1.25rem;
  font-weight: 600;
  color: #334155;
  margin-bottom: 1rem;
}

.text-404 {
  color: #475569;
  margin-bottom: 2rem;
  line-height: 1.75;
}

.btn-home {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.625rem 1.5rem;
  background-color: #2563eb;
  color: white;
  font-weight: 500;
  border-radius: 0.5rem;
  transition: all 0.2s;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.btn-home:hover {
  background-color: #1d4ed8;
  box-shadow: 0 10px 15px rgba(0, 0, 0, 0.1);
}

.btn-home svg {
  width: 1rem;
  height: 1rem;
}

.column-title {
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
}

.textarea-tall {
  min-height: 20rem;
}

/* Add these styles for the contact section layout */
.contact-flex {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 2rem;
  flex-wrap: wrap;
}
