* {
  box-sizing: border-box;
}

html,
body {
  margin: 0;
  padding: 0;
}

body {
  font-family: system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  background: #f9fafb;
  color: #0f172a;
}

.page-wrapper {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  background: #f9fafb;
  color: #0f172a;
}

.main-content {
  flex: 1 0 auto;
  padding-top: 56px;
}

.navbar {
  position: sticky;
  top: 0;
  z-index: 1100;
  width: 100%;
  background: rgba(15, 23, 42, 0.9);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid rgba(148, 163, 184, 0.35);
  box-shadow: 0 8px 20px rgba(15, 23, 42, 0.35);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 8px 16px;
}

.navbar-inner {
  width: 100%;
  max-width: 1320px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  position: relative;
}

.navbar-brand {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
}

.logo-placeholder {
  width: auto;
  max-height: 48px;
  min-height: 40px;
  aspect-ratio: 3 / 1;
  border-radius: 999px;
  background: radial-gradient(circle at 0% 0%, rgba(59, 130, 246, 0.4), transparent 55%), radial-gradient(circle at 100% 0%, rgba(248, 113, 113, 0.4), transparent 55%), #020617;
  border: 1px solid rgba(148, 163, 184, 0.7);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 4px 14px;
  color: #e5e7eb;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  white-space: nowrap;
  object-fit: contain;
}

.navbar-brand-title {
  font-size: 18px;
  font-weight: 700;
  color: #f9fafb;
  line-height: 1.2;
}

.navbar-brand-subtitle {
  font-size: 11px;
  font-weight: 500;
  color: #e5e7eb;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.navbar-links {
  display: flex;
  align-items: center;
  gap: 20px;
}

.navbar-link {
  font-size: 14px;
  font-weight: 500;
  color: #e5e7eb;
  padding: 8px 4px;
  text-decoration: none;
  border-bottom: 2px solid transparent;
  transition: color 0.2s ease, border-color 0.2s ease, transform 0.2s ease;
}

.navbar-link:hover {
  color: #ffffff;
  border-color: #f97316;
  transform: translateY(-1px);
}

.navbar-link-active {
  color: #ffffff;
  border-color: #f97316;
}

.navbar-cta {
  margin-left: 16px;
}

.navbar-mobile-toggle {
  display: none;
  width: 36px;
  height: 36px;
  border-radius: 999px;
  border: 1px solid rgba(148, 163, 184, 0.7);
  background: rgba(15, 23, 42, 0.9);
  color: #e5e7eb;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.2s ease;
}

.navbar-mobile-toggle:hover {
  background: rgba(30, 64, 175, 0.9);
  border-color: #f97316;
  transform: scale(1.03);
}

.navbar-mobile-toggle-bar {
  width: 18px;
  height: 2px;
  background: #e5e7eb;
  display: block;
  border-radius: 999px;
}

.navbar-mobile-toggle-bar + .navbar-mobile-toggle-bar {
  margin-top: 4px;
}

.navbar-mobile-menu {
  display: none;
  flex-direction: column;
  gap: 4px;
  padding: 8px 0 12px;
  background: rgba(15, 23, 42, 0.98);
  backdrop-filter: blur(16px);
  position: absolute;
  left: 0;
  right: 0;
  top: 100%;
  border-bottom: 1px solid rgba(148, 163, 184, 0.35);
}

.navbar-mobile-menu.open {
  display: flex;
}

.navbar-mobile-item {
  padding: 10px 20px;
  font-size: 14px;
  font-weight: 500;
  color: #e5e7eb;
  text-decoration: none;
  display: flex;
  align-items: center;
  justify-content: space-between;
  transition: background 0.2s ease, color 0.2s ease;
}

.navbar-mobile-item:hover {
  background: rgba(30, 64, 175, 0.9);
  color: #ffffff;
}

.btn {
  padding: 12px 24px;
  min-height: 44px;
  background: #1e3a8a;
  color: #ffffff;
  border: 1px solid #1e3a8a;
  border-radius: 999px;
  font-size: 16px;
  font-weight: 600;
  line-height: 1.2;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  cursor: pointer;
  transition: all 0.2s ease;
  box-shadow: 0 2px 4px rgba(15, 23, 42, 0.15);
  text-decoration: none;
  white-space: nowrap;
}

.btn-primary {
  background: #1e3a8a;
  border-color: #1e3a8a;
}

.btn-primary:hover {
  background: #111827;
  border-color: #111827;
  box-shadow: 0 6px 14px rgba(15, 23, 42, 0.25);
  transform: translateY(-2px);
}

.btn-primary:active {
  background: #0f172a;
  border-color: #0f172a;
  transform: translateY(0);
  box-shadow: 0 2px 4px rgba(15, 23, 42, 0.2);
}

.btn-secondary {
  padding: 10px 22px;
  min-height: 40px;
  background: #ffffff;
  color: #1e3a8a;
  border: 1px solid #cbd5f5;
  border-radius: 999px;
  font-size: 15px;
  font-weight: 500;
  line-height: 1.2;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  cursor: pointer;
  transition: all 0.2s ease;
  box-shadow: 0 1px 2px rgba(15, 23, 42, 0.08);
  text-decoration: none;
}

.btn-secondary:hover {
  background: #eff6ff;
  border-color: #1e3a8a;
  box-shadow: 0 4px 10px rgba(15, 23, 42, 0.15);
  transform: translateY(-1px);
}

.btn-secondary:active {
  background: #e5e7eb;
  transform: translateY(0);
  box-shadow: 0 1px 2px rgba(15, 23, 42, 0.15);
}

.btn-tertiary {
  padding: 4px 0;
  min-height: 32px;
  background: transparent;
  color: #1e3a8a;
  border: none;
  border-radius: 4px;
  font-size: 14px;
  font-weight: 500;
  line-height: 1.4;
  display: inline-flex;
  align-items: center;
  justify-content: flex-start;
  gap: 4px;
  cursor: pointer;
  transition: color 0.2s ease, transform 0.2s ease;
  text-decoration: none;
}

.btn-tertiary:hover {
  color: #0f172a;
  transform: translateY(-1px);
}

.hero {
  padding: 72px 16px 56px;
  background: radial-gradient(circle at top left, rgba(59, 130, 246, 0.18), transparent 55%), radial-gradient(circle at top right, rgba(248, 113, 113, 0.18), transparent 55%), #0f172a;
  color: #f9fafb;
  display: flex;
  justify-content: center;
  align-items: stretch;
  position: relative;
  overflow: hidden;
}

.hero-inner {
  width: 100%;
  max-width: 1320px;
  display: grid;
  grid-template-columns: minmax(0, 3fr) minmax(0, 2.5fr);
  gap: 40px;
  align-items: center;
}

.hero-badge-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 20px;
}

.hero-badge {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 6px 10px;
  border-radius: 999px;
  border: 1px solid rgba(191, 219, 254, 0.8);
  background: rgba(15, 23, 42, 0.7);
  color: #e5e7eb;
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.hero-title {
  font-size: 40px;
  line-height: 1.1;
  font-weight: 800;
  letter-spacing: -0.03em;
  margin: 0 0 16px;
  color: #ffffff;
}

.hero-subtitle {
  font-size: 18px;
  line-height: 1.5;
  font-weight: 500;
  color: #e5e7eb;
  margin: 0 0 24px;
}

.hero-meta-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 16px;
  margin: 0 0 28px;
}

.hero-meta-item {
  padding: 12px 14px;
  border-radius: 12px;
  background: rgba(15, 23, 42, 0.85);
  border: 1px solid rgba(148, 163, 184, 0.6);
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.hero-meta-label {
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: #cbd5f5;
  font-weight: 600;
}

.hero-meta-value {
  font-size: 14px;
  font-weight: 600;
  color: #f9fafb;
}

.hero-cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-items: center;
  margin: 0 0 18px;
}

.hero-support-text {
  font-size: 13px;
  color: #cbd5f5;
}

.hero-note {
  font-size: 12px;
  color: #e5e7eb;
  opacity: 0.9;
}

.hero-aside {
  justify-self: stretch;
  align-self: stretch;
  display: flex;
  flex-direction: column;
  gap: 16px;
  padding: 20px 20px 18px;
  border-radius: 20px;
  background: rgba(15, 23, 42, 0.85);
  border: 1px solid rgba(148, 163, 184, 0.6);
  box-shadow: 0 24px 60px rgba(15, 23, 42, 0.7);
}

.hero-aside-heading {
  font-size: 16px;
  font-weight: 600;
  color: #e5e7eb;
  margin: 0;
}

.hero-aside-list {
  display: flex;
  flex-direction: column;
  gap: 10px;
  font-size: 13px;
  color: #e5e7eb;
}

.hero-aside-item {
  display: flex;
  justify-content: space-between;
  gap: 12px;
}

.hero-aside-label {
  font-weight: 500;
  color: #cbd5f5;
}

.hero-aside-value {
  font-weight: 600;
  color: #fbbf24;
}

.hero-aside-footer {
  margin-top: 8px;
  font-size: 11px;
  color: #cbd5f5;
}

.section {
  padding: 48px 16px;
  background: #f9fafb;
  color: #0f172a;
  display: flex;
  justify-content: center;
}

.section-inner {
  width: 100%;
  max-width: 1320px;
}

.section-header {
  margin-bottom: 24px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.section-kicker {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #1e3a8a;
}

.page-title {
  font-size: 28px;
  line-height: 1.25;
  font-weight: 700;
  color: #0f172a;
  margin: 0 0 8px;
  letter-spacing: -0.02em;
}

.section-title {
  font-size: 26px;
  font-weight: 700;
  line-height: 1.25;
  color: #0f172a;
  margin: 0;
}

.section-subtitle {
  font-size: 15px;
  color: #4b5563;
  max-width: 720px;
}

.card-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 260px), 1fr));
  gap: 24px;
  align-items: stretch;
  width: 100%;
}

.card {
  display: flex;
  flex-direction: column;
  min-height: 180px;
  padding: 20px 18px;
  background: #ffffff;
  border-radius: 16px;
  border: 1px solid #e5e7eb;
  box-shadow: 0 4px 10px rgba(15, 23, 42, 0.06);
  transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}

.card:hover {
  transform: translateY(-4px);
  box-shadow: 0 10px 24px rgba(15, 23, 42, 0.12);
  border-color: #bfdbfe;
}

.card-header {
  font-size: 16px;
  font-weight: 600;
  color: #111827;
  margin-bottom: 8px;
}

.card-body {
  font-size: 14px;
  color: #374151;
  flex: 1 1 auto;
}

.card-footer {
  margin-top: auto;
  padding-top: 12px;
  font-size: 12px;
  color: #6b7280;
  border-top: 1px dashed #e5e7eb;
}

.cta-band {
  margin: 32px 0;
  padding: 18px 20px;
  border-radius: 18px;
  background: linear-gradient(135deg, #1e3a8a 0%, #0f766e 45%, #b91c1c 100%);
  color: #f9fafb;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  box-shadow: 0 16px 40px rgba(15, 23, 42, 0.45);
}

.cta-text {
  font-size: 16px;
  font-weight: 600;
  margin: 0;
}

.cta-subtext {
  font-size: 13px;
  opacity: 0.9;
  margin-top: 4px;
}

.cta-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.faq-list {
  margin-top: 24px;
}

.faq-item {
  border-radius: 14px;
  border: 1px solid #e5e7eb;
  background: #ffffff;
  padding: 14px 16px;
  margin-bottom: 10px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  transition: border-color 0.2s ease, box-shadow 0.2s ease, transform 0.2s ease;
  box-shadow: 0 1px 3px rgba(15, 23, 42, 0.06);
}

.faq-item:hover {
  border-color: #bfdbfe;
  box-shadow: 0 6px 14px rgba(15, 23, 42, 0.12);
  transform: translateY(-2px);
}

.faq-question {
  font-size: 14px;
  font-weight: 600;
  color: #111827;
}

.faq-answer {
  font-size: 13px;
  color: #4b5563;
}

.speaker-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 220px), 1fr));
  gap: 24px;
  align-items: stretch;
  width: 100%;
}

.speaker-card {
  display: flex;
  flex-direction: column;
  min-height: 220px;
  padding: 20px 18px;
  background: #ffffff;
  border-radius: 16px;
  border: 1px solid #e5e7eb;
  box-shadow: 0 4px 10px rgba(15, 23, 42, 0.06);
  transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}

.speaker-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 10px 24px rgba(15, 23, 42, 0.12);
  border-color: #bfdbfe;
}

.speaker-card-header {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 12px;
}

.speaker-avatar-wrapper {
  width: 64px;
  height: 64px;
  border-radius: 999px;
  overflow: hidden;
  background: #e5e7eb;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  border: 1px solid #cbd5f5;
}

.speaker-avatar-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.speaker-avatar-placeholder {
  font-size: 11px;
  color: #6b7280;
  text-align: center;
  padding: 8px;
}

.speaker-name {
  font-size: 16px;
  font-weight: 600;
  color: #111827;
  margin: 0 0 2px;
}

.speaker-title {
  font-size: 13px;
  color: #4b5563;
  margin: 0;
}

.speaker-body {
  font-size: 13px;
  color: #4b5563;
  margin: 8px 0 0;
  flex: 1 1 auto;
}

.speaker-footer {
  margin-top: auto;
  padding-top: 12px;
  font-size: 12px;
  color: #6b7280;
  border-top: 1px dashed #e5e7eb;
}

.tariff-table-wrapper {
  width: 100%;
  overflow: hidden;
  border-radius: 16px;
  border: 1px solid #e5e7eb;
  background: #ffffff;
  box-shadow: 0 6px 16px rgba(15, 23, 42, 0.08);
  padding: 4px;
}

.tariff-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 14px;
}

.tariff-table thead {
  background: #0f172a;
  color: #f9fafb;
}

.tariff-table th {
  padding: 12px 14px;
  font-weight: 600;
  text-align: left;
  border-bottom: 1px solid #1f2937;
  white-space: nowrap;
}

.tariff-table td {
  padding: 10px 14px;
  color: #111827;
  border-bottom: 1px solid #e5e7eb;
}

.tariff-table tbody tr:hover {
  background: #f9fafb;
}

.abstract-ladder-wrapper {
  padding: 20px 18px;
  border-radius: 16px;
  background: #ffffff;
  border: 1px solid #e5e7eb;
  box-shadow: 0 4px 10px rgba(15, 23, 42, 0.06);
}

.abstract-ladder ol {
  margin: 0;
  padding-left: 20px;
  font-size: 14px;
  color: #374151;
}

.input {
  width: 100%;
  min-height: 44px;
  padding: 10px 12px;
  border-radius: 10px;
  border: 1px solid #d1d5db;
  background: #ffffff;
  color: #111827;
  font-size: 14px;
  line-height: 1.4;
  transition: border-color 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
  box-shadow: 0 1px 2px rgba(15, 23, 42, 0.04);
}

.input::placeholder {
  color: #9ca3af;
}

.input:hover {
  border-color: #9ca3af;
  background: #f9fafb;
}

.input:focus {
  outline: none;
  border-color: #2563eb;
  box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.25);
}

.textarea {
  width: 100%;
  min-height: 120px;
  padding: 10px 12px;
  border-radius: 10px;
  border: 1px solid #d1d5db;
  background: #ffffff;
  color: #111827;
  font-size: 14px;
  line-height: 1.5;
  resize: vertical;
  transition: border-color 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
  box-shadow: 0 1px 2px rgba(15, 23, 42, 0.04);
}

.textarea:hover {
  border-color: #9ca3af;
  background: #f9fafb;
}

.textarea:focus {
  outline: none;
  border-color: #2563eb;
  box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.25);
}

.form-field {
  margin-bottom: 16px;
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.form-field label {
  font-size: 13px;
  font-weight: 500;
  color: #111827;
}

.footer {
  margin-top: 40px;
  background: #020617;
  color: #e5e7eb;
  padding: 24px 16px 18px;
  border-top: 1px solid #1f2937;
  display: flex;
  justify-content: center;
}

.footer-inner {
  width: 100%;
  max-width: 1320px;
  display: grid;
  grid-template-columns: minmax(0, 2fr) minmax(0, 1.4fr) minmax(0, 1.4fr);
  gap: 24px;
  align-items: flex-start;
}

.footer-brand {
  font-size: 13px;
  color: #e5e7eb;
}

.footer-heading {
  font-size: 13px;
  font-weight: 600;
  margin-bottom: 8px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: #9ca3af;
}

.footer-link {
  font-size: 13px;
  color: #e5e7eb;
  text-decoration: none;
  display: block;
  margin-bottom: 4px;
  transition: color 0.2s ease, transform 0.2s ease;
}

.footer-link:hover {
  color: #f97316;
  transform: translateX(2px);
}

.footer-bottom {
  grid-column: 1 / -1;
  border-top: 1px solid #1f2937;
  margin-top: 8px;
  padding-top: 10px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
  font-size: 12px;
  color: #9ca3af;
}

.footer-created-by {
  font-weight: 500;
  color: #e5e7eb;
}

.contact-strip {
  margin: 32px 0 0;
  padding: 14px 18px;
  border-radius: 14px;
  background: rgba(15, 23, 42, 0.95);
  color: #e5e7eb;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  box-shadow: 0 10px 30px rgba(15, 23, 42, 0.6);
}

.contact-strip-text {
  font-size: 14px;
  font-weight: 500;
}

.contact-strip-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.venue-card {
  display: flex;
  flex-direction: column;
  min-height: 200px;
  padding: 20px 18px;
  background: #ffffff;
  border-radius: 16px;
  border: 1px solid #e5e7eb;
  box-shadow: 0 4px 10px rgba(15, 23, 42, 0.06);
  transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}

.venue-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 10px 24px rgba(15, 23, 42, 0.12);
  border-color: #bfdbfe;
}

.venue-header {
  font-size: 16px;
  font-weight: 600;
  color: #111827;
  margin-bottom: 8px;
}

.venue-body {
  font-size: 14px;
  color: #374151;
  flex: 1 1 auto;
}

.venue-meta {
  margin-top: 8px;
  font-size: 13px;
  color: #6b7280;
}

.venue-footer {
  margin-top: auto;
  padding-top: 10px;
  font-size: 12px;
  color: #6b7280;
  border-top: 1px dashed #e5e7eb;
}

.travel-timeline {
  margin-top: 24px;
}

.travel-item {
  position: relative;
  padding: 12px 0 12px 24px;
  border-left: 2px solid #e5e7eb;
  margin-left: 6px;
}

.travel-dot {
  position: absolute;
  left: -6px;
  top: 16px;
  width: 10px;
  height: 10px;
  border-radius: 999px;
  background: #1e3a8a;
  border: 2px solid #f9fafb;
  box-shadow: 0 0 0 2px rgba(37, 99, 235, 0.4);
}

.travel-title {
  font-size: 14px;
  font-weight: 600;
  color: #111827;
  margin-bottom: 2px;
}

.travel-body {
  font-size: 13px;
  color: #4b5563;
}

.committee-list {
  margin-top: 16px;
}

.committee-item {
  display: flex;
  flex-direction: column;
  padding: 10px 0;
  border-bottom: 1px solid #e5e7eb;
}

.committee-name {
  font-size: 14px;
  font-weight: 600;
  color: #111827;
}

.committee-role {
  font-size: 13px;
  color: #4b5563;
}

.contact-card {
  display: flex;
  flex-direction: column;
  min-height: 160px;
  padding: 18px 18px;
  background: #ffffff;
  border-radius: 16px;
  border: 1px solid #e5e7eb;
  box-shadow: 0 4px 10px rgba(15, 23, 42, 0.06);
  transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}

.contact-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 24px rgba(15, 23, 42, 0.12);
  border-color: #bfdbfe;
}

.contact-title {
  font-size: 15px;
  font-weight: 600;
  color: #111827;
  margin-bottom: 6px;
}

.contact-body {
  font-size: 14px;
  color: #374151;
  flex: 1 1 auto;
}

.contact-footer {
  margin-top: 10px;
  font-size: 13px;
  color: #1e3a8a;
}

.modal {
  position: fixed;
  inset: 0;
  z-index: 2000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 16px;
}

.modal[hidden] {
  display: none;
}

.modal-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(15, 23, 42, 0.55);
  backdrop-filter: blur(8px);
}

.modal-dialog {
  position: relative;
  z-index: 1;
  max-width: 640px;
  width: 100%;
  background: #ffffff;
  border-radius: 18px;
  box-shadow: 0 24px 60px rgba(15, 23, 42, 0.55);
  padding: 20px 20px 16px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.modal-header {
  font-size: 18px;
  font-weight: 600;
  color: #0f172a;
}

.modal-body {
  font-size: 14px;
  color: #374151;
}

.modal-footer {
  margin-top: 8px;
  display: flex;
  justify-content: flex-end;
  gap: 8px;
}

.modal-close {
  position: absolute;
  top: 10px;
  right: 10px;
  width: 32px;
  height: 32px;
  border-radius: 999px;
  border: 1px solid #e5e7eb;
  background: #f9fafb;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.2s ease;
}

.modal-close:hover {
  background: #eff6ff;
  border-color: #2563eb;
}

@media (max-width: 1023px) {
  .navbar-links {
    display: none;
  }

  .navbar-cta {
    display: none;
  }

  .navbar-mobile-toggle {
    display: flex;
  }

  .hero-inner {
    grid-template-columns: minmax(0, 1fr);
    gap: 32px;
  }

  .hero-title {
    font-size: 32px;
  }
}

@media (max-width: 639px) {
  .section {
    padding: 32px 16px;
  }

  .section-title {
    font-size: 22px;
  }

  .page-title {
    font-size: 24px;
  }

  .hero {
    padding: 64px 16px 40px;
  }

  .hero-title {
    font-size: 26px;
  }

  .hero-subtitle {
    font-size: 16px;
  }

  .cta-band {
    flex-direction: column;
    align-items: flex-start;
  }

  .contact-strip {
    flex-direction: column;
    align-items: flex-start;
  }

  .footer-inner {
    grid-template-columns: minmax(0, 1fr);
    gap: 16px;
  }

  .footer-bottom {
    flex-direction: column;
    align-items: flex-start;
  }
}
