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

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

body {
  font-family: "Inter", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI",
    sans-serif;
  color: #0f172a;
  background: #fdf7f0;
  line-height: 1.6;
}

p,
li,
dd {
  color: #0f172a;
}

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

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

.container {
  width: min(1180px, 100% - 2.5rem);
  margin: 0 auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  backdrop-filter: blur(18px);
  background: rgba(253, 247, 240, 0.9);
  border-bottom: 1px solid rgba(209, 213, 219, 0.8);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.3rem 0;
  gap: 1.1rem;
}

.logo {
  display: inline-flex;
  align-items: center;
  gap: 0.7rem;
  color: #1d4ed8;
}

.logo-mark {
  display: block;
  width: 140px;
  height: auto;
}

.logo-mark.small {
  width: 110px;
}

.logo-text {
  display: flex;
  flex-direction: column;
}

.logo-title {
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-size: 0.9rem;
}

.logo-subtitle {
  font-size: 0.7rem;
  color: rgba(255, 245, 236, 0.68);
}

.nav {
  position: relative;
}

.nav-list {
  list-style: none;
  display: flex;
  align-items: center;
  gap: 1.5rem;
  margin: 0;
  padding: 0;
}

.nav-link {
  font-size: 0.82rem;
  color: rgba(15, 23, 42, 0.8);
  padding-bottom: 0.1rem;
  border-bottom: 1px solid transparent;
}

.nav-link:hover {
  color: #1d4ed8;
}

.nav-link.active {
  color: #1d4ed8;
  border-bottom-color: rgba(37, 99, 235, 0.85);
}

.nav-cta {
  padding: 0.32rem 0.8rem;
  border-radius: 999px;
  border: 1px solid rgba(96, 165, 250, 0.8);
  background: radial-gradient(circle at 0 0, rgba(59, 130, 246, 0.12), transparent);
}

.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border-radius: 0.5rem;
  border: 1px solid rgba(148, 163, 184, 0.4);
  background: #fff;
  box-shadow: 0 1px 3px rgba(15, 23, 42, 0.08);
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 5px;
  padding: 0;
  cursor: pointer;
  transition: background 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}

.nav-toggle:hover {
  background: #f8fafc;
  border-color: rgba(59, 130, 246, 0.4);
  box-shadow: 0 2px 8px rgba(59, 130, 246, 0.12);
}

.nav-toggle span {
  display: block;
  width: 18px;
  height: 2px;
  background: #334155;
  border-radius: 999px;
  transition: transform 0.25s ease, opacity 0.2s ease;
}

.nav-toggle.open span:nth-child(1) {
  transform: translateY(3.5px) rotate(45deg);
}

.nav-toggle.open span:nth-child(2) {
  opacity: 0;
}

.nav-toggle.open span:nth-child(3) {
  transform: translateY(-3.5px) rotate(-45deg);
}

.hero {
  padding: 3.2rem 0 3.5rem;
  background:
    radial-gradient(circle at 0 0, rgba(59, 130, 246, 0.35), transparent 60%),
    #f7fbff;
  color: #0f172a;
}

.hero-top {
  position: relative;
  padding: 0;
  min-height: calc(100vh - 60px);
  color: #f9fafb;
  background-color: #0f172a;
  background-image: linear-gradient(120deg, rgba(15, 23, 42, 0.92), rgba(30, 64, 175, 0.78));
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}


.hero-translate {
  position: absolute;
  top: 1.1rem;
  left: auto;
  right: 1.5rem;
  z-index: 2;
  display: flex;
  justify-content: flex-end;
  text-align: right;
}

.hero-translate #google_translate_element {
  display: inline-block;
  text-align: right;
}

.hero-translate .goog-te-gadget,
.hero-translate .goog-te-menu-frame {
  margin-left: auto;
}

.hero-translate iframe {
  margin-left: auto !important;
}

.hero-top::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 0 0, rgba(96, 165, 250, 0.32), transparent 55%),
    radial-gradient(circle at 100% 100%, rgba(15, 23, 42, 0.8), transparent 55%);
  mix-blend-mode: soft-light;
}

.hero-top-inner {
  position: relative;
  z-index: 1;
  min-height: inherit;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.hero-top .container {
  width: min(880px, 100% - 2.5rem);
}

.hero-top-content {
  max-width: 38rem;
  margin: 3rem auto 3.5rem;
}

.hero-top-title {
  font-size: clamp(2.3rem, 2.1rem + 1.4vw, 3rem);
  font-weight: 700;
  letter-spacing: -0.04em;
  margin: 0 0 1rem;
  color: #e5edff;
}

.hero-top-lead {
  margin: 0 0 1.8rem;
  font-size: 0.98rem;
  color: rgba(226, 232, 240, 0.95);
  max-width: 36rem;
  margin-left: auto;
  margin-right: auto;
  font-style: italic;
}

.hero-top-actions {
  display: inline-flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.9rem;
}

.hero-top .btn.primary {
  box-shadow: 0 10px 35px rgba(37, 99, 235, 0.5);
}

.hero-inner {
  display: grid;
  grid-template-columns: minmax(0, 2.1fr) minmax(0, 1.4fr);
  gap: 2.8rem;
  align-items: center;
}

.eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.18em;
  font-size: 0.72rem;
  color: rgba(191, 219, 254, 0.9);
  margin-bottom: 0.8rem;
}

h1,
h2,
h3,
h4 {
  margin: 0 0 0.8rem;
  font-weight: 600;
  color: #0f172a;
}

h1 {
  font-size: clamp(2.1rem, 2.2rem + 1vw, 2.7rem);
  letter-spacing: -0.02em;
}

.accent-text {
  background: linear-gradient(120deg, #93c5fd, #2563eb);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.lead {
  margin: 0 0 1.4rem;
  color: rgba(31, 41, 55, 0.9);
  font-size: 0.98rem;
}

.hero .lead {
  font-size: 0.92rem;
  max-width: 36rem;
}

.lead.narrow {
  max-width: 38rem;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-bottom: 1.5rem;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  font-size: 0.9rem;
  padding: 0.7rem 1.4rem;
  border: none;
  cursor: pointer;
  font-weight: 500;
  text-decoration: none;
  white-space: nowrap;
}

.btn.primary {
  background: linear-gradient(135deg, #2563eb, #1d4ed8);
  color: #eef2ff;
  box-shadow: 0 18px 45px rgba(37, 99, 235, 0.45);
}

.btn.primary.subtle {
  background: rgba(30, 64, 175, 0.25);
  color: #bfdbfe;
  border: 1px solid rgba(129, 140, 248, 0.8);
  box-shadow: none;
}

.btn.secondary {
  background: rgba(15, 23, 42, 0.96);
  color: #e5edff;
  border: 1px solid rgba(96, 165, 250, 0.85);
}

.btn.ghost {
  background: #e0f2ff;
  border: 1px solid rgba(59, 130, 246, 0.6);
  color: #0f172a;
}

.btn.full-width {
  width: 100%;
}

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

.hero-stats dt {
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: #1e40af;
}

.hero-stats dd {
  margin: 0.2rem 0 0;
  font-size: 0.86rem;
  color: #0f172a;
}

.hero-panel {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.hero-card {
  border-radius: 1rem;
  padding: 1.4rem 1.3rem;
  border: 1px solid rgba(96, 165, 250, 0.45);
  background:
    radial-gradient(circle at 0 0, rgba(219, 234, 254, 0.9), transparent 60%),
    #ffffff;
}

.hero-card.muted {
  border-color: rgba(148, 163, 184, 0.45);
  background: radial-gradient(circle at 0 0, rgba(219, 234, 254, 0.8), transparent),
    #f9fafb;
}

.pill-list {
  list-style: none;
  padding: 0;
  margin: 0.3rem 0 0;
  display: flex;
  flex-wrap: wrap;
  gap: 0.45rem;
}

.pill-list li {
  font-size: 0.75rem;
  padding: 0.35rem 0.7rem;
  border-radius: 999px;
  background: rgba(37, 99, 235, 0.08);
  border: 1px solid rgba(96, 165, 250, 0.45);
  color: #0f172a;
}

.section {
  padding: 2.6rem 0;
  background: radial-gradient(circle at 0 -40%, rgba(191, 219, 254, 0.4), transparent),
    #fdf7f0;
  color: #0f172a;
}

.section-alt {
  background: radial-gradient(circle at 100% 0, rgba(191, 219, 254, 0.7), #ffffff);
}

.section-header {
  text-align: left;
  max-width: 40rem;
  margin-bottom: 1.8rem;
}

.section-header h2 {
  font-size: 1.45rem;
}

.section-header p {
  margin: 0;
  color: rgba(148, 163, 184, 0.96);
  font-size: 0.95rem;
}

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

.feature-card {
  border-radius: 1rem;
  padding: 0;
  overflow: hidden;
  background: #ffffff;
  border: 1px solid rgba(209, 213, 219, 0.95);
  color: rgba(31, 41, 55, 0.96);
  font-size: 0.9rem;
}

.feature-card-media {
  margin: 0;
  line-height: 0;
  border-radius: 1rem 1rem 0 0;
  overflow: hidden;
}

.feature-card-media img {
  width: 100%;
  height: 140px;
  object-fit: cover;
  display: block;
}

.feature-card h3 {
  font-size: 1rem;
  margin: 1rem 1.2rem 0.4rem;
}

.feature-card p {
  margin: 0 1.2rem 1.2rem;
}

.feature-card h3:first-child {
  margin-top: 1.35rem;
}

.feature-card p:last-of-type {
  margin-bottom: 1.35rem;
}

.feature-card:not(:has(.feature-card-media)) {
  padding: 1.35rem 1.2rem;
}

.feature-card:not(:has(.feature-card-media)) h3 {
  margin: 0 0 0.4rem;
}

.feature-card:not(:has(.feature-card-media)) p {
  margin: 0;
}

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

.sector-card {
  border-radius: 1rem;
  padding: 0;
  overflow: hidden;
  background: radial-gradient(circle at 0 0, rgba(59, 130, 246, 0.22), transparent),
    #ffffff;
  border: 1px solid rgba(191, 219, 254, 0.9);
  font-size: 0.87rem;
  color: rgba(31, 41, 55, 0.94);
}

.sector-card-media {
  margin: 0;
  line-height: 0;
  border-radius: 1rem 1rem 0 0;
  overflow: hidden;
}

.sector-card-media img {
  width: 100%;
  height: 140px;
  object-fit: cover;
  display: block;
}

.sector-card h3 {
  font-size: 0.98rem;
  margin: 1rem 1.1rem 0.4rem;
}

.sector-card p {
  margin: 0 1.1rem 0.75rem;
}

.sector-card .btn {
  margin: 0 1.1rem 1.2rem;
}

.sector-card h3:first-child {
  margin-top: 1.2rem;
}

.sector-card:not(:has(.sector-card-media)) h3 {
  margin-top: 1.2rem;
}

.sector-card:not(:has(.sector-card-media)) p,
.sector-card:not(:has(.sector-card-media)) .btn {
  margin-left: 1.1rem;
  margin-right: 1.1rem;
}

.sector-card:not(:has(.sector-card-media)) {
  padding: 1.2rem 1.1rem;
}

.sector-card:not(:has(.sector-card-media)) h3 {
  margin: 0 0 0.4rem;
}

.sector-card:not(:has(.sector-card-media)) p,
.sector-card:not(:has(.sector-card-media)) .btn {
  margin: 0;
}

.section-cta {
  margin-top: 1.8rem;
}

.split {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
}

.inline-cta {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.8rem;
}

.page-hero {
  padding: 2.6rem 0 2.4rem;
  background:
    radial-gradient(circle at 0 0, rgba(96, 165, 250, 0.4), transparent 55%),
    #f9fafb;
  color: #0f172a;
}

.page-hero--about {
  position: relative;
  padding: 4.2rem 0;
  background:
    linear-gradient(135deg, rgba(15, 23, 42, 0.78), rgba(15, 23, 42, 0.9)),
    url("https://images.pexels.com/photos/6770618/pexels-photo-6770618.jpeg?auto=compress&cs=tinysrgb&w=1600")
      center/cover no-repeat;
  color: #e5edff;
}

.page-hero--about .container {
  min-height: clamp(360px, 60vh, 520px);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.page-hero--about .eyebrow {
  color: rgba(191, 219, 254, 0.9);
}

.page-hero--about .lead {
  max-width: 40rem;
  color: rgba(226, 232, 240, 0.96);
}

.page-hero--about .hero-actions {
  justify-content: center;
}

.page-hero h1 {
  font-size: clamp(1.9rem, 1.9rem + 0.8vw, 2.3rem);
}

.key-points {
  border-radius: 1rem;
  padding: 1.3rem 1.2rem;
  background: #ffffff;
  border: 1px solid rgba(209, 213, 219, 0.9);
  color: rgba(31, 41, 55, 0.96);
  font-size: 0.88rem;
}

.key-points h3 {
  font-size: 0.98rem;
}

.key-points ul {
  margin: 0.3rem 0 0;
  padding-left: 1.1rem;
}

.key-points li + li {
  margin-top: 0.25rem;
}

.sectors-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 2.3fr);
  gap: 2.2rem;
}

.sectors-nav ul {
  list-style: none;
  padding: 0.6rem 0.9rem;
  margin: 0;
  border-radius: 1rem;
  background: #ffffff;
  border: 1px solid rgba(209, 213, 219, 0.9);
}

.sectors-nav li + li {
  margin-top: 0.3rem;
}

.anchor-link {
  display: block;
  font-size: 0.88rem;
  padding: 0.45rem 0.5rem;
  border-radius: 999px;
  color: rgba(31, 41, 55, 0.9);
}

.anchor-link:hover {
  background: rgba(191, 219, 254, 0.55);
}

.sectors-content {
  display: flex;
  flex-direction: column;
  gap: 1.9rem;
}

.sector-detail h2 {
  font-size: 1.2rem;
}

.sector-detail p {
  font-size: 0.92rem;
  color: rgba(156, 163, 175, 0.98);
}

.sector-detail p + p {
  margin-top: 0.4rem;
}

.checklist {
  padding-left: 1.2rem;
  margin: 0.6rem 0 0;
  font-size: 0.9rem;
}

.checklist li + li {
  margin-top: 0.2rem;
}

.contact-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.6fr) minmax(0, 1.2fr);
  gap: 2rem;
}

.contact-panel {
  border-radius: 1.1rem;
  padding: 1.6rem 1.4rem;
  background: #ffffff;
  border: 1px solid rgba(209, 213, 219, 0.95);
}

.contact-form {
  margin-top: 1rem;
}

.field {
  margin-bottom: 0.9rem;
}

.field label {
  display: block;
  font-size: 0.8rem;
  margin-bottom: 0.25rem;
  color: rgba(55, 65, 81, 0.95);
}

input,
select,
textarea {
  width: 100%;
  padding: 0.6rem 0.65rem;
  border-radius: 0.6rem;
  border: 1px solid rgba(209, 213, 219, 0.9);
  background: #f9fafb;
  color: #0f172a;
  font-family: inherit;
  font-size: 0.9rem;
}

input::placeholder,
textarea::placeholder {
  color: rgba(148, 163, 184, 0.9);
}

.form-note {
  font-size: 0.75rem;
  color: rgba(148, 163, 184, 0.96);
  margin-top: 0.5rem;
}

.contact-info {
  border-radius: 1.1rem;
  padding: 1.5rem 1.25rem;
  background: radial-gradient(circle at 0 0, rgba(219, 234, 254, 0.7), transparent),
    #ffffff;
  border: 1px solid rgba(191, 219, 254, 0.9);
  font-size: 0.9rem;
}

.contact-info p {
  color: rgba(31, 41, 55, 0.94);
}

.contact-list {
  list-style: none;
  padding: 0;
  margin: 0.7rem 0 0;
}

.contact-list li + li {
  margin-top: 0.55rem;
}

.contact-list .label {
  display: block;
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  color: rgba(148, 163, 184, 0.96);
}

/* Shared media styles */
.hero-media,
.page-media,
.sector-media {
  border-radius: 1.1rem;
  overflow: hidden;
  margin: 0;
  box-shadow:
    0 22px 60px rgba(15, 23, 42, 0.08),
    0 0 0 1px rgba(191, 219, 254, 0.9);
}

.hero-media img,
.page-media img,
.sector-media img {
  width: 100%;
  height: 100%;
  max-height: 320px;
  object-fit: cover;
  display: block;
}

/* TradingView widget section */
.tradingview-section {
  padding: 2rem 0;
}

.tradingview-widget-container {
  height: 720px;
  border-radius: 0.75rem;
  overflow: hidden;
  border: 1px solid rgba(148, 163, 184, 0.25);
}

.tradingview-widget-copyright {
  font-size: 0.7rem;
  margin-top: 0.5rem;
  color: rgba(55, 65, 81, 0.7);
}

.tradingview-widget-copyright a {
  color: #2563eb;
  text-decoration: none;
}

.tradingview-widget-copyright a:hover {
  text-decoration: underline;
}

/* FAQ section – accordion dropdowns */
.faq-section {
  padding: 2.6rem 0;
}

.faq-title {
  font-size: 1.5rem;
  margin-bottom: 1.5rem;
  color: #0f172a;
  text-align: center;
}

.faq-list {
  margin: 0 auto;
  padding: 0;
  list-style: none;
  max-width: 42rem;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.faq-item {
  border-radius: 0.75rem;
  border: 1px solid rgba(148, 163, 184, 0.35);
  background: #ffffff;
  overflow: hidden;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.faq-item:hover {
  border-color: rgba(96, 165, 250, 0.5);
}

.faq-item.is-open {
  border-color: rgba(59, 130, 246, 0.5);
  box-shadow: 0 4px 20px rgba(59, 130, 246, 0.08);
}

.faq-question {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  padding: 1rem 1.25rem;
  border: none;
  background: transparent;
  font-family: inherit;
  font-size: 0.95rem;
  font-weight: 600;
  color: #0f172a;
  text-align: left;
  cursor: pointer;
  transition: background 0.2s ease;
}

.faq-question:hover {
  background: rgba(241, 245, 249, 0.8);
}

.faq-question:focus {
  outline: none;
}

.faq-question:focus-visible {
  outline: 2px solid rgba(59, 130, 246, 0.6);
  outline-offset: 2px;
}

.faq-icon {
  flex-shrink: 0;
  width: 1.25rem;
  height: 1.25rem;
  margin-left: 0.75rem;
  position: relative;
  transition: transform 0.25s ease;
}

.faq-icon::before,
.faq-icon::after {
  content: "";
  position: absolute;
  background: #64748b;
  transition: background 0.2s ease;
}

.faq-item.is-open .faq-icon {
  transform: rotate(180deg);
}

.faq-item.is-open .faq-icon::before,
.faq-item.is-open .faq-icon::after {
  background: #2563eb;
}

.faq-icon::before {
  width: 10px;
  height: 2px;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.faq-icon::after {
  width: 2px;
  height: 10px;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.faq-item.is-open .faq-icon::after {
  opacity: 0;
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
}

.faq-answer-inner {
  padding: 0 1.25rem 1.25rem;
  font-size: 0.9rem;
  color: rgba(55, 65, 81, 0.95);
  line-height: 1.6;
}

/* Footer – modern multi-column */
.site-footer {
  padding: 0;
  background: linear-gradient(180deg, #1e3a5f 0%, #0f172a 100%);
  color: rgba(248, 250, 252, 0.9);
  font-size: 0.875rem;
  border-top: 1px solid rgba(59, 130, 246, 0.2);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 2.5rem 2rem;
  padding: 3rem 0 2.5rem;
  max-width: 72rem;
  margin: 0 auto;
}

.footer-col {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.footer-brand-col {
  padding-right: 1rem;
}

.footer-brand {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  color: #fff;
  text-decoration: none;
  font-weight: 600;
  font-size: 1.1rem;
}

.footer-brand:hover {
  color: #93c5fd;
}

.footer-brand .logo-mark.small {
  width: 48px;
  height: auto;
}

.footer-tagline {
  margin: 0;
  font-size: 0.95rem;
  font-weight: 500;
  color: #93c5fd;
  letter-spacing: 0.02em;
}

.footer-about {
  margin: 0;
  font-size: 0.8rem;
  line-height: 1.6;
  color: rgba(248, 250, 252, 0.75);
  max-width: 20rem;
}

.footer-heading {
  margin: 0 0 0.25rem;
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: rgba(248, 250, 252, 0.6);
}

.footer-links {
  margin: 0;
  padding: 0;
  list-style: none;
}

.footer-links li {
  margin: 0;
}

.footer-links a {
  display: inline-block;
  padding: 0.35rem 0;
  color: rgba(248, 250, 252, 0.9);
  text-decoration: none;
  transition: color 0.2s ease, padding-left 0.2s ease;
}

.footer-links a:hover {
  color: #93c5fd;
  padding-left: 0.25rem;
}

.footer-actions {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.footer-btn {
  display: inline-block;
  padding: 0.6rem 1.25rem;
  border-radius: 0.5rem;
  font-weight: 600;
  font-size: 0.85rem;
  text-align: center;
  text-decoration: none;
  transition: background 0.2s ease, color 0.2s ease, border-color 0.2s ease;
}

.footer-btn-primary {
  background: #2563eb;
  color: #fff;
  border: 1px solid #2563eb;
}

.footer-btn-primary:hover {
  background: #1d4ed8;
  border-color: #1d4ed8;
  color: #fff;
}

.footer-btn-secondary {
  background: transparent;
  color: #93c5fd;
  border: 1px solid rgba(147, 197, 253, 0.5);
}

.footer-btn-secondary:hover {
  background: rgba(147, 197, 253, 0.15);
  color: #fff;
  border-color: #93c5fd;
}

.footer-contact-note {
  margin: 0.5rem 0 0;
  font-size: 0.8rem;
  color: rgba(248, 250, 252, 0.7);
}

.footer-contact-note a {
  color: #93c5fd;
  text-decoration: none;
}

.footer-contact-note a:hover {
  text-decoration: underline;
}

.footer-bottom {
  padding: 1.75rem 0;
  border-top: 1px solid rgba(148, 163, 184, 0.2);
  text-align: center;
}

.footer-disclaimer {
  margin: 0 0 0.75rem;
  font-size: 0.75rem;
  line-height: 1.55;
  color: rgba(248, 250, 252, 0.55);
  max-width: 52rem;
  margin-left: auto;
  margin-right: auto;
}

.footer-meta {
  margin: 0;
  font-size: 0.8rem;
  color: rgba(248, 250, 252, 0.5);
}

.footer-translate {
  margin-top: 0.75rem;
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.8rem;
  color: rgba(248, 250, 252, 0.75);
}

.footer-translate-label {
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-size: 0.7rem;
  color: rgba(148, 163, 184, 0.95);
}

.footer-translate #google_translate_element {
  display: inline-block;
}

@media (max-width: 900px) {
  .hero-inner {
    grid-template-columns: minmax(0, 1.4fr) minmax(0, 1.1fr);
  }

  .hero-top-inner {
    align-items: center;
  }

  .grid-3,
  .sectors-summary {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .sectors-layout {
    grid-template-columns: minmax(0, 1fr);
  }

  .contact-layout {
    grid-template-columns: minmax(0, 1fr);
  }

  .footer-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem 1.5rem;
    padding: 2.5rem 0 2rem;
  }

  .footer-brand-col {
    grid-column: 1 / -1;
    padding-right: 0;
  }
}

@media (max-width: 720px) {
  .header-inner {
    padding-block: 0.5rem;
    position: relative;
  }

  .nav {
    width: 100%;
    display: flex;
    justify-content: flex-end;
  }

  .nav-toggle {
    display: inline-flex;
  }

  .nav-list {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    margin: 0.5rem 0 0;
    background: #ffffff;
    border-radius: 0.75rem;
    border: 1px solid rgba(148, 163, 184, 0.3);
    box-shadow: 0 10px 40px rgba(15, 23, 42, 0.12), 0 4px 12px rgba(15, 23, 42, 0.06);
    padding: 0;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    min-width: 100%;
    max-height: 0;
    overflow: hidden;
    opacity: 0;
    pointer-events: none;
    transition: max-height 0.35s ease, opacity 0.25s ease, box-shadow 0.25s ease;
  }

  .nav-list.open {
    max-height: 320px;
    opacity: 1;
    pointer-events: auto;
  }

  .nav-list li {
    border-bottom: 1px solid rgba(241, 245, 249, 0.9);
  }

  .nav-list li:last-child {
    border-bottom: none;
  }

  .nav-link {
    display: block;
    width: 100%;
    padding: 0.85rem 1.25rem;
    font-size: 0.95rem;
    font-weight: 500;
    color: #0f172a;
    text-decoration: none;
    transition: background 0.2s ease, color 0.2s ease;
  }

  .nav-link:hover {
    background: rgba(59, 130, 246, 0.06);
    color: #1d4ed8;
  }

  .nav-link.active {
    background: rgba(59, 130, 246, 0.08);
    color: #1d4ed8;
    border-bottom: none;
  }

  .nav-link.nav-cta {
    margin: 0.5rem 1rem 0.75rem;
    padding: 0.65rem 1rem;
    text-align: center;
    border-radius: 0.5rem;
    background: #2563eb;
    color: #fff;
    border: none;
  }

  .nav-link.nav-cta:hover {
    background: #1d4ed8;
    color: #fff;
  }

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

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 1.75rem;
    padding: 2rem 0 1.5rem;
  }

  .footer-actions {
    flex-direction: row;
    flex-wrap: wrap;
  }

  .footer-bottom {
    padding: 1.25rem 0;
  }

  .hero-top-inner {
    align-items: center;
  }

  .hero-panel {
    order: -1;
  }

  .hero {
    padding-top: 2.3rem;
  }

  .hero-top {
    padding-top: 2.6rem;
  }

  .hero-stats {
    grid-template-columns: minmax(0, 1fr);
  }

  .grid-3,
  .sectors-summary {
    grid-template-columns: minmax(0, 1fr);
  }

  .split,
  .inline-cta {
    flex-direction: column;
    align-items: flex-start;
  }

  .page-hero {
    padding-top: 2.1rem;
  }
}

