/* ==========================================================================
   לוח תהילה - Grow Style Design System & RTL Stylesheet
   Inspired by Grow (https://grow.business)
   ========================================================================== */

:root {
  /* Grow Color Palette */
  --bg-deep: #0F0C4D;            /* Deep Grow Midnight Navy */
  --bg-surface-dark: #161268;   /* Dark Surface Navy */
  --bg-light: #F8FAFC;          /* Clean Porcelain Slate */
  --bg-card: #FFFFFF;           /* Crisp White Card */
  --bg-card-subtle: #F1F5F9;    /* Soft Tint Background */
  
  --blue-primary: #2563EB;       /* Grow Electric Tech Blue */
  --blue-hover: #1D4ED8;         /* Primary Hover Blue */
  --blue-soft: #EEF2FF;          /* Soft Lavender Blue Badge Background */
  --blue-border: rgba(37, 99, 235, 0.2);
  
  --indigo-accent: #4F46E5;      /* Indigo Gradient Accent */
  --violet-gradient: linear-gradient(135deg, #2563EB 0%, #4F46E5 100%);
  --text-gradient: linear-gradient(135deg, #0F0C4D 0%, #2563EB 100%);
  
  --gold-primary: #D4A843;       /* Warm Sacred Gold Accent */
  --gold-hover: #B8942E;
  --gold-soft: #FDF6E3;
  
  --text-dark: #0F172A;          /* Charcoal Slate Title */
  --text-muted: #475569;         /* Body Text Slate */
  --text-light: #F8FAFC;         /* Light Text */
  --text-light-muted: #94A3B8;   /* Light Slate Muted */
  
  --border-light: #E2E8F0;       /* Divider & Card Border */
  --border-hover: #CBD5E1;
  --shadow-sm: 0 2px 8px rgba(15, 23, 42, 0.04);
  --shadow-md: 0 10px 30px rgba(15, 23, 42, 0.08);
  --shadow-lg: 0 20px 40px rgba(15, 23, 42, 0.12);
  
  /* Typography - Grow Font Stack */
  --font-heading: 'Rubik', system-ui, -apple-system, sans-serif;
  --font-body: 'Assistant', 'Rubik', system-ui, -apple-system, sans-serif;
  
  /* Layout & Utility */
  --container-max: 1180px;
  --header-height: 80px;
  --radius-sm: 8px;
  --radius-md: 16px;
  --radius-lg: 24px;
  --radius-pill: 9999px;
  
  --transition-fast: 0.2s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-normal: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Reset & Base Setup */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  direction: rtl;
  lang: he;
  scroll-behavior: smooth;
  font-size: 16px;
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: var(--font-body);
  background-color: var(--bg-light);
  color: var(--text-dark);
  line-height: 1.7;
  text-align: right;
  overflow-x: hidden;
  font-weight: 400;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
}

button, input, textarea, select {
  font-family: inherit;
  font-size: inherit;
}

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

.btn:disabled {
  cursor: wait;
  opacity: 0.7;
  transform: none;
}

body.nav-open {
  overflow: hidden;
}

.container {
  width: 100%;
  max-width: var(--container-max);
  margin-left: auto;
  margin-right: auto;
  padding-left: 1.5rem;
  padding-right: 1.5rem;
}

/* Header & Navigation */
.site-header {
  position: fixed;
  top: 0;
  right: 0;
  left: 0;
  height: var(--header-height);
  background-color: rgba(255, 255, 255, 0.94);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  z-index: 1000;
  border-bottom: 1px solid var(--border-light);
  transition: var(--transition-normal);
}

.site-header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
}

.brand-logo {
  display: flex;
  align-items: center;
  gap: 0.85rem;
}

.brand-name {
  font-family: var(--font-heading);
  font-size: 1.6rem;
  font-weight: 800;
  color: var(--bg-deep);
  letter-spacing: -0.02em;
}

.brand-name span {
  color: #D4A843;
}

.nav-menu {
  display: flex;
  align-items: center;
  gap: 2rem;
  list-style: none;
}

.nav-link {
  color: var(--text-muted);
  font-size: 1rem;
  font-weight: 500;
  transition: var(--transition-fast);
  padding: 0.5rem 0;
  position: relative;
}

.nav-link:hover, .nav-link.active {
  color: var(--blue-primary);
  font-weight: 600;
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: 0;
  right: 0;
  width: 0;
  height: 2px;
  background: var(--blue-primary);
  transition: var(--transition-fast);
  border-radius: var(--radius-pill);
}

.nav-link:hover::after, .nav-link.active::after {
  width: 100%;
}

/* Grow Pill Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.85rem 2rem;
  font-size: 1rem;
  font-weight: 600;
  border-radius: var(--radius-pill);
  cursor: pointer;
  transition: var(--transition-normal);
  text-align: center;
  border: 1px solid transparent;
  gap: 0.5rem;
}

.btn-primary {
  background: var(--violet-gradient);
  color: #FFFFFF;
  border-color: transparent;
  box-shadow: 0 4px 14px rgba(37, 99, 235, 0.35);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(37, 99, 235, 0.45);
  background: linear-gradient(135deg, #1D4ED8 0%, #4338CA 100%);
}

.btn-secondary {
  background-color: var(--bg-card);
  color: var(--bg-deep);
  border-color: var(--border-light);
  box-shadow: var(--shadow-sm);
}

.btn-secondary:hover {
  border-color: var(--blue-primary);
  color: var(--blue-primary);
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

.mobile-nav-toggle {
  display: none;
  background: none;
  border: none;
  color: var(--bg-deep);
  font-size: 1.5rem;
  cursor: pointer;
  padding: 0.5rem;
}

/* Grow Style Pill Badges */
.pill-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.4rem 1.1rem;
  background-color: var(--blue-soft);
  color: var(--blue-primary);
  font-size: 0.875rem;
  font-weight: 600;
  border-radius: var(--radius-pill);
  border: 1px solid var(--blue-border);
  margin-bottom: 1.25rem;
}

.pill-badge-spark {
  display: inline-block;
  width: 8px;
  height: 8px;
  background-color: var(--blue-primary);
  border-radius: 50%;
  box-shadow: 0 0 8px var(--blue-primary);
}

/* Hero Section - Grow Style */
.hero-section {
  position: relative;
  padding-top: calc(var(--header-height) + 3.5rem);
  padding-bottom: 5rem;
  background:
    radial-gradient(circle at 15% 18%, rgba(59, 130, 246, 0.38), transparent 34%),
    radial-gradient(circle at 86% 40%, rgba(79, 70, 229, 0.32), transparent 38%),
    linear-gradient(145deg, #0F0C4D 0%, #172A78 54%, #1D4ED8 100%);
  color: #FFFFFF;
  overflow: hidden;
}

.hero-section::before,
.hero-section::after {
  content: '';
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
}

.hero-section::before {
  width: 420px;
  height: 420px;
  top: 8%;
  right: -210px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  box-shadow:
    0 0 0 70px rgba(255, 255, 255, 0.025),
    0 0 0 140px rgba(255, 255, 255, 0.018);
}

.hero-section::after {
  width: 360px;
  height: 360px;
  bottom: -250px;
  left: 6%;
  background: rgba(96, 165, 250, 0.18);
}

.hero-section > .container {
  position: relative;
  z-index: 1;
}

.hero-section .pill-badge {
  border-color: rgba(147, 197, 253, 0.35);
  background: rgba(255, 255, 255, 0.1);
  color: #DBEAFE;
  backdrop-filter: blur(10px);
}

.hero-section .pill-badge-spark {
  background-color: #60A5FA;
  box-shadow: 0 0 10px #60A5FA;
}

.hero-content {
  text-align: center;
  max-width: 880px;
  margin: 0 auto;
  position: relative;
  z-index: 2;
}

.hero-title {
  font-family: var(--font-heading);
  font-size: clamp(2.5rem, 5.2vw, 4rem);
  font-weight: 800;
  line-height: 1.18;
  margin-bottom: 1.25rem;
  color: #FFFFFF;
  letter-spacing: -0.02em;
}

.hero-title span {
  background: linear-gradient(135deg, #F8E1A6 0%, #D4A843 58%, #FDE68A 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.hero-subtitle {
  font-size: clamp(1.15rem, 2vw, 1.4rem);
  color: rgba(239, 246, 255, 0.82);
  font-weight: 400;
  max-width: 740px;
  margin: 0 auto 2.5rem auto;
  line-height: 1.6;
}

.hero-actions {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.25rem;
  margin-bottom: 4rem;
}

.hero-section .btn-primary {
  border-color: rgba(255, 255, 255, 0.16);
  background: linear-gradient(135deg, #3B82F6 0%, #6366F1 100%);
  box-shadow: 0 10px 26px rgba(3, 7, 18, 0.28);
}

.hero-section .btn-primary:hover {
  background: linear-gradient(135deg, #60A5FA 0%, #818CF8 100%);
  box-shadow: 0 14px 32px rgba(3, 7, 18, 0.34);
}

.hero-section .btn-secondary {
  border-color: rgba(255, 255, 255, 0.28);
  background: rgba(255, 255, 255, 0.1);
  color: #FFFFFF;
  box-shadow: none;
  backdrop-filter: blur(10px);
}

.hero-section .btn-secondary:hover {
  border-color: rgba(255, 255, 255, 0.55);
  background: rgba(255, 255, 255, 0.17);
  color: #FFFFFF;
  box-shadow: 0 10px 25px rgba(3, 7, 18, 0.2);
}

.hero-image-wrapper {
  position: relative;
  max-width: 1040px;
  margin: 0 auto;
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: rgba(255, 255, 255, 0.92);
  padding: 8px;
  box-shadow: 0 30px 70px -18px rgba(3, 7, 18, 0.58), 0 0 0 1px rgba(255, 255, 255, 0.28);
}

.hero-image {
  width: 100%;
  height: auto;
  border-radius: calc(var(--radius-lg) - 6px);
  object-fit: cover;
}

/* Common Section Layout */
.section {
  padding: 6rem 0;
  position: relative;
}

.section-header {
  text-align: center;
  max-width: 740px;
  margin: 0 auto 4rem auto;
}

.section-tag {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.875rem;
  font-weight: 700;
  color: var(--blue-primary);
  background-color: var(--blue-soft);
  padding: 0.35rem 1rem;
  border-radius: var(--radius-pill);
  margin-bottom: 1rem;
  border: 1px solid var(--blue-border);
}

.section-title {
  font-family: var(--font-heading);
  font-size: clamp(2rem, 3.5vw, 2.8rem);
  font-weight: 800;
  color: var(--bg-deep);
  line-height: 1.22;
  margin-bottom: 1rem;
  letter-spacing: -0.02em;
}

.section-description {
  font-size: 1.18rem;
  color: var(--text-muted);
  line-height: 1.6;
}

/* What's on Board Section - Grow Style */
.board-content-section {
  background-color: #F8FAFC;
  padding: 6rem 0;
}

.content-groups-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2.25rem;
}

@media (max-width: 860px) {
  .content-groups-grid {
    grid-template-columns: 1fr;
    gap: 1.75rem;
  }
}

.content-group-card {
  background: var(--bg-card);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-lg);
  padding: 2.5rem 2.25rem;
  box-shadow: 0 10px 30px rgba(15, 23, 42, 0.04);
  transition: var(--transition-normal);
  display: flex;
  flex-direction: column;
  position: relative;
  overflow: hidden;
}

.content-group-card::before {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  left: 0;
  height: 4px;
  background: var(--violet-gradient);
  opacity: 0;
  transition: var(--transition-normal);
}

.content-group-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 40px rgba(37, 99, 235, 0.12);
  border-color: rgba(37, 99, 235, 0.35);
}

.content-group-card:hover::before {
  opacity: 1;
}

.card-header-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 1.5rem;
}

.group-badge {
  width: 44px;
  height: 44px;
  background: var(--violet-gradient);
  color: #FFFFFF;
  font-weight: 700;
  font-size: 1.15rem;
  font-family: var(--font-heading);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 14px rgba(37, 99, 235, 0.25);
}

.group-icon {
  width: 44px;
  height: 44px;
  background-color: var(--blue-soft);
  color: var(--blue-primary);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--blue-border);
}

.group-title {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 1.25rem;
  color: var(--bg-deep);
  letter-spacing: -0.01em;
}

.group-items-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.95rem;
}

.group-items-list li {
  position: relative;
  padding-right: 2.25rem;
  color: var(--text-muted);
  font-size: 1.05rem;
  font-weight: 400;
  line-height: 1.5;
  transition: var(--transition-fast);
}

.group-items-list li::before {
  content: '✓';
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 22px;
  height: 22px;
  background-color: #DBEAFE;
  color: #1D4ED8;
  font-weight: 700;
  font-size: 0.85rem;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.group-items-list li:hover {
  color: var(--bg-deep);
  transform: translateX(-3px);
}

/* How It Works Section - Grow Style */
.how-it-works-section {
  background-color: var(--bg-card-subtle);
  border-top: 1px solid var(--border-light);
  border-bottom: 1px solid var(--border-light);
}

.steps-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2.25rem;
  position: relative;
}

.step-card {
  background: var(--bg-card);
  padding: 2.5rem 2rem;
  border-radius: var(--radius-lg);
  border: 1px solid var(--border-light);
  box-shadow: var(--shadow-sm);
  position: relative;
  transition: var(--transition-normal);
}

.step-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
  border-color: rgba(37, 99, 235, 0.3);
}

.step-number {
  display: inline-block;
  font-family: var(--font-heading);
  font-size: 1rem;
  font-weight: 800;
  background: var(--violet-gradient);
  color: #FFFFFF;
  padding: 0.3rem 0.9rem;
  border-radius: var(--radius-pill);
  margin-bottom: 1.25rem;
  box-shadow: 0 4px 12px rgba(37, 99, 235, 0.25);
}

.step-title {
  font-family: var(--font-heading);
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--bg-deep);
  margin-bottom: 0.6rem;
}

.step-text {
  color: var(--text-muted);
  font-size: 1rem;
  line-height: 1.6;
}

/* Human Benefits Section - Grow Style */
.benefits-section {
  background-color: var(--bg-light);
}

.benefits-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem;
}

@media (max-width: 768px) {
  .benefits-grid {
    grid-template-columns: 1fr;
  }
}

.benefit-item {
  display: flex;
  gap: 1.35rem;
  align-items: flex-start;
  padding: 2.25rem 2rem;
  background: var(--bg-card);
  border-radius: var(--radius-lg);
  border: 1px solid var(--border-light);
  box-shadow: var(--shadow-sm);
  transition: var(--transition-normal);
}

.benefit-item:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
  border-color: rgba(37, 99, 235, 0.3);
}

.benefit-icon {
  width: 52px;
  height: 52px;
  flex-shrink: 0;
  background-color: var(--blue-soft);
  color: var(--blue-primary);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 1.3rem;
  border: 1px solid var(--blue-border);
}

.benefit-content h3 {
  font-family: var(--font-heading);
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--bg-deep);
  margin-bottom: 0.4rem;
}

.benefit-content p {
  color: var(--text-muted);
  font-size: 1.02rem;
  line-height: 1.6;
}

/* Mobile & Platform Section */
.platform-section {
  background: linear-gradient(180deg, var(--bg-surface-dark) 0%, var(--bg-deep) 100%);
  color: var(--text-light);
}

.platform-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

@media (max-width: 900px) {
  .platform-grid {
    grid-template-columns: 1fr;
  }
}

.platform-text h2 {
  font-family: var(--font-heading);
  font-size: clamp(2.2rem, 3.5vw, 2.8rem);
  font-weight: 800;
  color: var(--text-light);
  margin-bottom: 1.25rem;
  letter-spacing: -0.02em;
}

.platform-text p {
  color: var(--text-light-muted);
  font-size: 1.15rem;
  margin-bottom: 2rem;
  line-height: 1.65;
}

.platform-features-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 1.1rem;
  margin-bottom: 2rem;
}

.platform-features-list li {
  display: flex;
  align-items: center;
  gap: 0.85rem;
  color: var(--text-light);
  font-size: 1.08rem;
}

.platform-features-list li::before {
  content: '✓';
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 22px;
  height: 22px;
  background-color: var(--blue-primary);
  color: #FFFFFF;
  border-radius: 50%;
  font-size: 0.8rem;
  font-weight: 700;
  flex-shrink: 0;
}

.platform-img-wrapper {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: 0 25px 50px rgba(0, 0, 0, 0.4);
  border: 1px solid rgba(255, 255, 255, 0.15);
  background: #FFFFFF;
  padding: 6px;
}

.platform-img-wrapper img {
  border-radius: calc(var(--radius-lg) - 4px);
}

/* Target Audience Section */
.audience-section {
  background-color: var(--bg-light);
}

.audience-card {
  max-width: 840px;
  margin: 0 auto;
  background: var(--bg-card);
  padding: 3.5rem;
  border-radius: var(--radius-lg);
  border: 1px solid var(--border-light);
  box-shadow: var(--shadow-md);
  text-align: center;
}

.audience-card h3 {
  font-family: var(--font-heading);
  font-size: 1.9rem;
  font-weight: 800;
  color: var(--bg-deep);
  margin-bottom: 1rem;
}

.audience-card p {
  font-size: 1.18rem;
  color: var(--text-muted);
  line-height: 1.65;
  margin-bottom: 2rem;
}

/* FAQ Section - Grow Style Accordion */
.faq-section {
  background-color: var(--bg-card-subtle);
  border-top: 1px solid var(--border-light);
}

.faq-list {
  max-width: 820px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.faq-item {
  background: var(--bg-card);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-md);
  overflow: hidden;
  transition: var(--transition-normal);
  box-shadow: var(--shadow-sm);
}

.faq-item:hover {
  border-color: rgba(37, 99, 235, 0.35);
  box-shadow: var(--shadow-md);
}

.faq-question {
  width: 100%;
  padding: 1.4rem 1.75rem;
  background: none;
  border: none;
  text-align: right;
  font-family: var(--font-heading);
  font-size: 1.18rem;
  font-weight: 600;
  color: var(--bg-deep);
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
}

.faq-icon {
  width: 28px;
  height: 28px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  color: var(--blue-primary);
  background-color: var(--blue-soft);
  border-radius: 50%;
  transition: transform var(--transition-normal);
  flex-shrink: 0;
}

.faq-item.open .faq-icon {
  transform: rotate(45deg);
  background-color: var(--blue-primary);
  color: #FFFFFF;
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease-out, padding 0.3s ease-out;
  padding: 0 1.75rem;
  color: var(--text-muted);
  font-size: 1.05rem;
  line-height: 1.65;
}

.faq-item.open .faq-answer {
  padding: 0 1.75rem 1.5rem 1.75rem;
}

/* Contact Section - Grow Style */
.contact-section {
  background-color: var(--bg-light);
}

.contact-wrapper {
  max-width: 740px;
  margin: 0 auto;
  background: var(--bg-card);
  border-radius: var(--radius-lg);
  padding: 3.5rem;
  border: 1px solid var(--border-light);
  box-shadow: var(--shadow-lg);
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.form-label {
  font-family: var(--font-heading);
  font-weight: 600;
  color: var(--bg-deep);
  font-size: 0.98rem;
}

.form-input, .form-textarea {
  padding: 0.95rem 1.25rem;
  border: 1px solid var(--border-light);
  border-radius: var(--radius-sm);
  background-color: #F8FAFC;
  color: var(--text-dark);
  transition: var(--transition-fast);
}

.form-input:focus, .form-textarea:focus {
  outline: none;
  border-color: var(--blue-primary);
  background-color: #FFFFFF;
  box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.15);
}

.form-textarea {
  resize: vertical;
  min-height: 130px;
}

.form-feedback {
  display: none;
  padding: 1.1rem;
  border-radius: var(--radius-sm);
  background-color: #ECFDF5;
  color: #065F46;
  border: 1px solid #A7F3D0;
  font-weight: 600;
  text-align: center;
}

/* Resources and internal links */
.resources-section {
  background: #F1F5F9;
  border-top: 1px solid var(--border-light);
  border-bottom: 1px solid var(--border-light);
}

.resource-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.25rem;
}

.resource-card {
  display: flex;
  min-height: 225px;
  flex-direction: column;
  padding: 1.75rem;
  border: 1px solid var(--border-light);
  border-radius: var(--radius-md);
  background: #FFFFFF;
  box-shadow: var(--shadow-sm);
  transition: transform var(--transition-normal), border-color var(--transition-normal), box-shadow var(--transition-normal);
}

.resource-card:hover {
  transform: translateY(-5px);
  border-color: rgba(37, 99, 235, 0.35);
  box-shadow: var(--shadow-md);
}

.resource-card--featured {
  border-color: rgba(37, 99, 235, 0.25);
  background: linear-gradient(145deg, #EEF2FF, #FFFFFF);
}

.resource-card-tag {
  margin-bottom: 0.75rem;
  color: var(--blue-primary);
  font-size: 0.82rem;
  font-weight: 700;
}

.resource-card h3 {
  margin-bottom: 0.65rem;
  color: var(--bg-deep);
  font-family: var(--font-heading);
  font-size: 1.3rem;
  line-height: 1.35;
}

.resource-card p {
  color: var(--text-muted);
  line-height: 1.65;
}

.resource-card-link {
  margin-top: auto;
  padding-top: 1rem;
  color: var(--blue-primary);
  font-weight: 700;
}

@media (max-width: 900px) {
  .resource-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 580px) {
  .resource-grid {
    grid-template-columns: 1fr;
  }

  .resource-card {
    min-height: 0;
  }
}

.contact-submit {
  width: 100%;
}

.honeypot-field {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip-path: inset(50%);
  white-space: nowrap;
}

.contact-info-block {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  margin-top: 2.5rem;
  padding: 2rem;
  border: 1px solid #DDE5F1;
  border-radius: 20px;
  background:
    radial-gradient(circle at 100% 0%, rgba(37, 99, 235, 0.1), transparent 36%),
    linear-gradient(145deg, #F8FAFF 0%, #F4F7FB 100%);
  text-align: center;
}

.contact-info-block::before {
  content: '';
  position: absolute;
  z-index: -1;
  width: 180px;
  height: 180px;
  left: -90px;
  bottom: -110px;
  border-radius: 50%;
  background: rgba(79, 70, 229, 0.08);
  filter: blur(2px);
}

.contact-direct-header {
  max-width: 520px;
  margin: 0 auto 1.5rem;
}

.contact-direct-kicker {
  display: inline-flex;
  margin-bottom: 0.55rem;
  color: var(--blue-primary);
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.02em;
}

.contact-direct-header h3 {
  margin-bottom: 0.35rem;
  color: var(--bg-deep);
  font-family: var(--font-heading);
  font-size: clamp(1.35rem, 3vw, 1.65rem);
  font-weight: 800;
}

.contact-direct-header p {
  color: var(--text-muted);
  font-size: 0.98rem;
  line-height: 1.55;
}

.contact-channels {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.85rem;
}

.contact-channel {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  min-width: 0;
  padding: 1rem;
  border: 1px solid #E2E8F0;
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.92);
  box-shadow: 0 8px 24px rgba(15, 23, 42, 0.06);
  text-align: right;
  transition: transform var(--transition-fast), border-color var(--transition-fast), box-shadow var(--transition-fast);
}

.contact-channel:hover {
  transform: translateY(-3px);
  border-color: rgba(37, 99, 235, 0.35);
  box-shadow: 0 14px 30px rgba(15, 23, 42, 0.11);
}

.contact-channel--whatsapp {
  grid-column: 1 / -1;
  padding: 1.1rem 1.25rem;
  border-color: transparent;
  background: linear-gradient(135deg, #22C55E 0%, #16A34A 100%);
  color: #FFFFFF;
  box-shadow: 0 12px 28px rgba(22, 163, 74, 0.22);
}

.contact-channel--whatsapp:hover {
  border-color: transparent;
  box-shadow: 0 16px 34px rgba(22, 163, 74, 0.32);
}

.contact-channel-icon {
  display: grid;
  place-items: center;
  width: 44px;
  height: 44px;
  flex: 0 0 44px;
  border-radius: 13px;
  background: #EEF2FF;
  color: var(--blue-primary);
}

.contact-channel--whatsapp .contact-channel-icon {
  background: rgba(255, 255, 255, 0.18);
  color: #FFFFFF;
}

.contact-channel--email .contact-channel-icon {
  background: #F3E8FF;
  color: #7C3AED;
}

.contact-channel-icon svg {
  width: 22px;
  height: 22px;
}

.contact-channel-copy {
  display: flex;
  min-width: 0;
  flex: 1;
  flex-direction: column;
  line-height: 1.35;
}

.contact-channel-copy strong {
  color: var(--bg-deep);
  font-size: 1rem;
  font-weight: 700;
}

.contact-channel-copy span {
  overflow-wrap: anywhere;
  color: var(--text-muted);
  font-size: 0.86rem;
}

.contact-channel--whatsapp .contact-channel-copy strong,
.contact-channel--whatsapp .contact-channel-copy span {
  color: #FFFFFF;
}

.contact-channel--whatsapp .contact-channel-copy span {
  opacity: 0.86;
}

.contact-channel-arrow {
  flex: 0 0 auto;
  color: #94A3B8;
  font-size: 1.25rem;
  transition: transform var(--transition-fast);
}

.contact-channel--whatsapp .contact-channel-arrow {
  color: #FFFFFF;
}

.contact-channel:hover .contact-channel-arrow {
  transform: translateX(-3px);
}

@media (max-width: 768px) {
  .contact-wrapper {
    padding: 1.5rem;
  }

  .contact-info-block {
    margin-top: 2rem;
    padding: 1.5rem 1rem;
  }

  .contact-channels {
    grid-template-columns: 1fr;
  }

  .contact-channel--whatsapp {
    grid-column: auto;
  }
}

@media (max-width: 420px) {
  .contact-wrapper {
    padding: 1rem;
  }

  .contact-info-block {
    padding: 1.25rem 0.75rem;
  }

  .contact-direct-header {
    margin-bottom: 1.15rem;
  }

  .contact-channel {
    gap: 0.65rem;
    padding: 0.85rem;
  }

  .contact-channel--whatsapp {
    padding: 0.9rem;
  }

  .contact-channel-icon {
    width: 40px;
    height: 40px;
    flex-basis: 40px;
  }

  .contact-channel-arrow {
    display: none;
  }
}

.contact-info-item a {
  color: var(--blue-primary);
  font-weight: 600;
}

.status-badge {
  display: inline-block;
  background-color: #DCFCE7;
  color: #166534;
  font-size: 0.8rem;
  padding: 0.25rem 0.6rem;
  border-radius: var(--radius-pill);
  font-weight: 600;
}

/* Footer - Grow Style */
.site-footer {
  background-color: var(--bg-deep);
  color: var(--text-light-muted);
  padding: 4.5rem 0 2.5rem 0;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 3.5rem;
  margin-bottom: 3.5rem;
}

@media (max-width: 768px) {
  .footer-grid {
    grid-template-columns: 1fr;
  }
}

.footer-brand .brand-name {
  color: #FFFFFF;
  margin-bottom: 1rem;
}

.footer-brand p {
  font-size: 1rem;
  line-height: 1.6;
  max-width: 380px;
}

.footer-title {
  font-family: var(--font-heading);
  color: var(--text-light);
  font-weight: 700;
  font-size: 1.15rem;
  margin-bottom: 1.25rem;
}

.footer-links {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.footer-links a {
  transition: var(--transition-fast);
}

.footer-links a:hover {
  color: var(--blue-primary);
}

.footer-bottom {
  padding-top: 2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
  font-size: 0.9rem;
}

.form-consent {
  display: flex;
  align-items: flex-start;
  gap: 0.7rem;
  margin: 0.2rem 0;
  color: var(--text-muted);
  font-size: 0.88rem;
  line-height: 1.6;
}

.form-consent input[type="checkbox"] {
  flex: 0 0 auto;
  width: 1.15rem;
  height: 1.15rem;
  margin-top: 0.2rem;
  accent-color: var(--blue-primary);
  cursor: pointer;
}

.form-consent label {
  cursor: pointer;
}

.form-consent a {
  color: var(--blue-primary);
  font-weight: 600;
  text-decoration: underline;
  text-underline-offset: 0.18em;
}

.form-consent input[type="checkbox"]:focus-visible {
  outline: 3px solid color-mix(in srgb, var(--blue-primary) 35%, transparent);
  outline-offset: 3px;
}

.cookie-settings-link {
  padding: 0;
  border: 0;
  background: transparent;
  color: inherit;
  font: inherit;
  text-decoration: underline;
  text-underline-offset: 0.2em;
  cursor: pointer;
}

.cookie-settings-link:hover,
.cookie-settings-link:focus-visible {
  color: #FFFFFF;
}

.cookie-banner[hidden] {
  display: none;
}

.cookie-banner {
  position: fixed;
  inset-inline: 1rem;
  bottom: 1rem;
  z-index: 10000;
  margin-inline: auto;
  width: min(100% - 2rem, 980px);
  padding: 1.25rem;
  border: 1px solid var(--border-light);
  border-radius: var(--radius-lg);
  background: #FFFFFF;
  box-shadow: 0 20px 60px rgba(15, 23, 42, 0.24);
  color: var(--text-dark);
}

.cookie-banner__content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
}

.cookie-banner h2 {
  margin: 0 0 0.35rem;
  color: var(--bg-deep);
  font-family: var(--font-heading);
  font-size: 1.15rem;
}

.cookie-banner p {
  max-width: 680px;
  margin: 0;
  color: var(--text-muted);
  font-size: 0.92rem;
  line-height: 1.65;
}

.cookie-banner a {
  color: var(--blue-primary);
  font-weight: 600;
  text-decoration: underline;
  text-underline-offset: 0.18em;
}

.cookie-banner__actions {
  display: flex;
  flex: 0 0 auto;
  gap: 0.75rem;
}

.cookie-banner__actions .btn {
  min-width: 125px;
  white-space: nowrap;
}

.error-page {
  min-height: 100vh;
  display: grid;
  place-items: center;
  padding: 1.5rem;
  background: linear-gradient(180deg, var(--bg-surface-dark), var(--bg-deep));
}

.error-card {
  width: min(100%, 620px);
  padding: clamp(2rem, 6vw, 4rem);
  border-radius: var(--radius-lg);
  background: var(--bg-card);
  box-shadow: var(--shadow-lg);
  text-align: center;
}

.error-card h1 {
  margin: 1rem 0;
  font-family: var(--font-heading);
  font-size: clamp(2rem, 6vw, 3.2rem);
  color: var(--bg-deep);
}

.error-card p {
  margin-bottom: 2rem;
  color: var(--text-muted);
}

/* Responsive Overrides */
@media (max-width: 860px) {
  .nav-menu {
    position: fixed;
    top: var(--header-height);
    right: -100%;
    width: 100%;
    height: calc(100vh - var(--header-height));
    background-color: #FFFFFF;
    flex-direction: column;
    justify-content: flex-start;
    padding: 2.5rem 1.5rem;
    gap: 1.75rem;
    transition: right var(--transition-normal);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
  }

  .nav-menu.open {
    right: 0;
  }

  .mobile-nav-toggle {
    display: block;
  }

  .hero-actions {
    flex-direction: column;
    width: 100%;
  }

  .hero-actions .btn {
    width: 100%;
  }

  .cookie-banner__content {
    align-items: stretch;
    flex-direction: column;
  }

  .cookie-banner__actions .btn {
    flex: 1;
  }
}

@media (max-width: 520px) {
  .cookie-banner {
    inset-inline: 0.65rem;
    bottom: 0.65rem;
    width: calc(100% - 1.3rem);
    padding: 1rem;
  }

  .cookie-banner__actions {
    flex-direction: column-reverse;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *, *::before, *::after {
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
  }
}
