:root {
  --primary: #2e7d32;
  --primary-strong: #1b5e20;
  --bg: #f5f8f6;
  --bg-darker: #edf3ef;
  --surface: #ffffff;
  --surface-strong: #eff5f1;
  --headline: #0a1a0f;
  --text: #2c3830;
  --muted: #5c6b61;
  --border: rgba(46, 125, 50, 0.08);
  --shadow: 0 20px 50px -15px rgba(46, 125, 50, 0.1);
  --accent: #43a047;
}

[data-theme="dark"] {
  --bg: #050d07;
  --bg-darker: #020503;
  --surface: #0a160d;
  --surface-strong: #0f1f14;
  --headline: #f1f7f3;
  --text: #cbd5ce;
  --muted: #8ca395;
  --border: rgba(255, 255, 255, 0.08);
  --shadow: 0 40px 80px -20px rgba(0, 0, 0, 0.6);
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Manrope", sans-serif;
  background:
    radial-gradient(circle at 12% 8%, rgba(76, 175, 80, 0.08), transparent 24%),
    radial-gradient(circle at 82% 10%, rgba(46, 125, 50, 0.08), transparent 22%),
    linear-gradient(180deg, var(--bg) 0%, var(--bg-darker) 100%);
  color: var(--text);
  min-height: 100vh;
  transition: background-color 0.3s ease, color 0.3s ease;
}

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

.site-shell {
  position: relative;
  overflow: clip;
}

.ambient {
  position: absolute;
  inset: auto;
  border-radius: 999px;
  filter: blur(88px);
  opacity: 0.2;
  pointer-events: none;
}

.ambient-one {
  width: 26rem;
  height: 26rem;
  top: 7rem;
  right: -8rem;
  background: var(--primary);
}

.ambient-two {
  width: 24rem;
  height: 24rem;
  top: 32rem;
  left: -10rem;
  background: var(--accent);
}

/* Premium Card & Glassmorphism */
.panel-card, .glass-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 32px;
  box-shadow: var(--shadow);
  transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
}

.panel-card:hover, .glass-card:hover {
  transform: translateY(-8px);
  border-color: rgba(46, 125, 50, 0.4);
  box-shadow: 0 30px 60px -10px rgba(46, 125, 50, 0.15);
}

.glass-card {
  background: rgba(255, 255, 255, 0.03);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
}

[data-theme="light"] .glass-card {
  background: rgba(255, 255, 255, 0.7);
}

/* Updated Hero Styles */
.hero-centered {
  padding: 10rem 0 6rem;
  background: radial-gradient(circle at top center, rgba(46, 125, 50, 0.05) 0%, transparent 60%);
}

.hero-title {
  font-family: 'Sora', sans-serif;
  letter-spacing: -0.02em;
}

/* Updated Trust Strip */
.trust-strip {
  padding: 4rem 0;
}

.trust-panel {
  padding: 3rem;
  background: var(--surface-strong);
  border-radius: 40px;
  border: 1px solid var(--border);
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 2rem;
}

.trust-copy {
  max-width: 800px;
  font-size: 1.2rem;
  color: var(--headline);
  font-weight: 600;
}

.tag-list {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1rem;
}

/* Header */
.site-header {
  position: sticky;
  top: 0;
  z-index: 30;
  backdrop-filter: blur(20px);
  background: rgba(10, 18, 24, 0.6);
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

html[data-theme="light"] .site-header {
  background: rgba(240, 244, 241, 0.75);
  border-bottom-color: rgba(20, 40, 30, 0.08);
}

.brand-mark {
  display: inline-flex;
  align-items: center;
  gap: 0.72rem;
}

.brand-logo {
  height: 42px;
  width: auto;
  display: block;
}

.theme-logo {
  display: inline-block;
  line-height: 0;
}

.nav-panel {
  display: flex;
  align-items: center;
  gap: 0.4rem;
}

.nav-panel a,
.theme-toggle {
  color: var(--muted);
  padding: 0.8rem 1rem;
  border-radius: 999px;
  transition: transform 0.25s ease, background-color 0.25s ease, color 0.25s ease;
  font-size: 0.95rem;
}

.nav-panel a:hover,
.theme-toggle:hover {
  transform: translateY(-1px);
  color: var(--headline);
  background: rgba(255, 255, 255, 0.06);
}

html[data-theme="light"] .nav-panel a:hover,
html[data-theme="light"] .theme-toggle:hover {
  background: rgba(20, 40, 30, 0.06);
}

.nav-panel a.active {
  color: var(--primary);
  font-weight: 700;
}

/* Dropdown */
.nav-dropdown {
  position: relative;
}

.nav-dropdown > a {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
}

.nav-dropdown > a::after {
  content: "▾";
  font-size: 0.7rem;
  opacity: 0.6;
  transition: transform 0.25s ease;
}

.nav-dropdown:hover > a::after {
  transform: rotate(180deg);
}

.dropdown-menu {
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%) translateY(4px);
  min-width: 260px;
  padding: 0.6rem;
  border-radius: 18px;
  background: var(--surface-strong);
  border: 1px solid var(--border);
  box-shadow: var(--shadow);
  backdrop-filter: blur(24px);
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.25s ease, transform 0.25s ease, visibility 0.25s;
  z-index: 50;
}

.nav-dropdown:hover .dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateX(-50%) translateY(0);
}

.dropdown-menu a {
  display: block;
  padding: 0.65rem 1rem;
  border-radius: 12px;
  color: var(--muted);
  font-size: 0.92rem;
  transition: background 0.2s ease, color 0.2s ease;
}

.dropdown-menu a:hover {
  background: rgba(76, 175, 80, 0.1);
  color: var(--headline);
  transform: none;
}

/* Data tables */
.data-table {
  width: 100%;
  border-collapse: collapse;
  margin: 1.2rem 0;
  border-radius: 16px;
  overflow: hidden;
  font-size: 0.95rem;
}

.data-table thead th {
  background: linear-gradient(135deg, rgba(76, 175, 80, 0.18), rgba(46, 125, 50, 0.18));
  color: var(--headline);
  font-weight: 700;
  padding: 0.85rem 1rem;
  text-align: left;
  border-bottom: 1px solid var(--border);
}

.data-table tbody td {
  padding: 0.75rem 1rem;
  color: var(--muted);
  border-bottom: 1px solid var(--border);
}

.data-table tbody tr:last-child td {
  border-bottom: 0;
}

.data-table tbody tr:nth-child(even) {
  background: rgba(255, 255, 255, 0.02);
}

html[data-theme="light"] .data-table tbody tr:nth-child(even) {
  background: rgba(0, 0, 0, 0.02);
}

.data-table .highlight {
  color: var(--primary);
  font-weight: 700;
}


.theme-toggle {
  display: inline-flex;
  align-items: center;
  border: 0;
  background: rgba(255, 255, 255, 0.04);
  cursor: pointer;
  font: inherit;
  font-weight: 700;
  padding: 0.72rem;
}

.theme-toggle-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 1.8rem;
  height: 1.8rem;
  border-radius: 50%;
  background: linear-gradient(135deg, rgba(76, 175, 80, 0.22), rgba(46, 125, 50, 0.22));
  color: var(--headline);
  font-size: 0.9rem;
}

html[data-theme="light"] .theme-toggle-icon {
  color: var(--brand-dark);
}

.nav-toggle {
  border: 0;
  background: transparent;
  padding: 0.3rem;
  cursor: pointer;
}

.nav-toggle span {
  display: block;
  width: 28px;
  height: 2px;
  margin: 6px 0;
  border-radius: 999px;
  background: var(--headline);
}

/* Sections */
.hero-section,
.content-section {
  position: relative;
  padding: 2rem 0 4.5rem;
}

.hero-section {
  padding-top: 3.6rem;
}

.eyebrow {
  margin: 0 0 1rem;
  color: var(--primary);
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.hero-title,
.section-title,
.footer-heading,
.feature-card h3,
.reason-card h3,
.about-grid h3,
.service-card h3 {
  margin: 0;
  font-family: "Sora", sans-serif;
  color: var(--headline);
  letter-spacing: -0.04em;
  text-shadow: 0 4px 12px rgba(0, 0, 0, 0.05); /* Subtler shadow */
}

.hero-title {
  max-width: 16ch;
  font-size: clamp(2.8rem, 7vw, 5.2rem);
  line-height: 1.05;
}

.section-title {
  max-width: 18ch;
  font-size: clamp(2rem, 4.5vw, 3.6rem);
  line-height: 1.05;
}

.section-title-wide {
  max-width: 100%;
  font-size: clamp(2.4rem, 5.5vw, 4.8rem);
}

.centered-title {
  margin-inline: auto;
}

.hero-text,
.section-copy,
.feature-card p,
.benefit-card p,
.about-grid p,
.trust-copy,
.contact-points,
.footer-copy,
.site-footer a,
.site-footer span,
.contact-form p,
.service-card p {
  color: var(--muted);
  line-height: 1.75;
  font-size: 1.02rem;
}

/* Panel card */
.panel-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 28px;
  box-shadow: var(--shadow);
  backdrop-filter: blur(24px);
}

/* Buttons */
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 0 1.35rem;
  border-radius: 999px;
  font-weight: 800;
  transition: transform 0.25s ease, box-shadow 0.25s ease, background-color 0.25s ease;
}

.button:hover {
  transform: translateY(-2px);
}

.button-primary {
  background: linear-gradient(135deg, var(--primary), var(--primary-strong));
  color: #fff;
  box-shadow: 0 12px 24px rgba(46, 125, 50, 0.2);
}

.button-primary:hover {
  filter: brightness(1.1);
  box-shadow: 0 16px 32px rgba(46, 125, 50, 0.3);
}

.button-secondary {
  border: 1px solid var(--border);
  background: var(--surface);
  color: var(--headline);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.03);
}

.button-secondary:hover {
  border-color: var(--primary);
  background: var(--surface-strong);
}

/* Hero stats */
.hero-stats {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1rem;
  margin-top: 0.25rem;
  width: 100%;
}

.hero-stats article {
  min-width: 0;
  padding: 0.9rem 1rem;
  border-radius: 20px;
  border: 1px solid var(--border);
  background: rgba(255, 255, 255, 0.03);
}

.hero-stats strong {
  display: block;
  color: var(--headline);
  font-size: 1.45rem;
}

.hero-stats span {
  color: var(--muted);
  font-size: 0.92rem;
}

/* Hero visual — finance dashboard */
.hero-visual {
  transform: translateY(-1.75rem);
}

.hero-shell {
  align-items: start;
}

.hero-window {
  overflow: hidden;
  border-radius: 24px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: linear-gradient(180deg, rgba(10, 18, 24, 0.94), rgba(8, 14, 20, 0.88));
}

html[data-theme="light"] .hero-window {
  background: linear-gradient(180deg, rgba(252, 254, 252, 0.98), rgba(240, 245, 240, 0.92));
}

.hero-window-bar {
  display: flex;
  gap: 0.45rem;
  padding: 0.9rem 1rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.hero-window-bar span {
  width: 0.72rem;
  height: 0.72rem;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.18);
}

.hero-dashboard {
  display: grid;
  grid-template-columns: 140px 1fr;
  min-height: 370px;
}

.dashboard-sidebar {
  display: grid;
  gap: 0.8rem;
  padding: 1rem;
  border-right: 1px solid rgba(255, 255, 255, 0.08);
}

.dashboard-sidebar span {
  border-radius: 16px;
  background: linear-gradient(135deg, rgba(76, 175, 80, 0.14), rgba(46, 125, 50, 0.14));
  padding: 0.8rem;
  color: var(--text);
}

.dashboard-main {
  padding: 1.2rem;
}

.dashboard-metric {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 1rem;
  padding: 1rem;
  border-radius: 20px;
  background: linear-gradient(135deg, rgba(76, 175, 80, 0.16), rgba(102, 187, 106, 0.14));
}

.dashboard-metric small {
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: 0.14em;
}

.dashboard-metric strong {
  font-size: 2rem;
  color: var(--headline);
}

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

.dashboard-grid div,
.signal-card {
  min-height: 92px;
  border-radius: 18px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.03)),
    linear-gradient(135deg, rgba(76, 175, 80, 0.18), rgba(46, 125, 50, 0.14));
}

.dashboard-chart {
  height: 170px;
  margin-top: 1rem;
  border-radius: 22px;
  background:
    linear-gradient(180deg, transparent, rgba(76, 175, 80, 0.18)),
    linear-gradient(90deg, rgba(255, 255, 255, 0.06) 1px, transparent 1px),
    linear-gradient(rgba(255, 255, 255, 0.06) 1px, transparent 1px);
  background-size: auto, 24px 24px, 24px 24px;
  position: relative;
  overflow: hidden;
}

.dashboard-chart::after {
  content: "";
  position: absolute;
  inset: auto 0 20px 0;
  height: 70px;
  background: linear-gradient(90deg, transparent 0%, rgba(76, 175, 80, 0.62) 18%, rgba(46, 125, 50, 0.9) 54%, transparent 100%);
  clip-path: polygon(0 76%, 18% 56%, 30% 66%, 45% 40%, 62% 48%, 77% 18%, 100% 4%, 100% 100%, 0 100%);
}

.hero-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.7rem;
  margin-top: 1rem;
}

/* Tag pill */
.tag-pill {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.62rem 0.92rem;
  border-radius: 999px;
  border: 1px solid var(--border);
  background: rgba(255, 255, 255, 0.04);
  color: var(--headline);
  font-size: 0.92rem;
}

/* Trust strip */
.trust-strip {
  padding: 0 0 2rem;
}

.trust-panel {
  border-radius: 28px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(255, 255, 255, 0.05);
  box-shadow: var(--shadow);
  backdrop-filter: blur(16px);
}

html[data-theme="light"] .trust-panel {
  border-color: rgba(20, 40, 30, 0.12);
  background: rgba(255, 255, 255, 0.9);
  box-shadow: 0 24px 60px rgba(40, 70, 50, 0.12);
}

/* Section heading */
.section-heading {
  display: grid;
  gap: 1rem;
  margin-bottom: 2rem;
}

/* Grids */
.feature-grid,
.benefit-grid,
.reason-grid,
.about-grid {
  display: grid;
  gap: 1.2rem;
}

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

.feature-card,
.benefit-card,
.reason-card,
.about-grid article,
.form-card {
  padding: 1.4rem;
}

.feature-card {
  min-height: 240px;
}

.feature-icon,
.benefit-number {
  width: 3rem;
  height: 3rem;
  border-radius: 18px;
  background: linear-gradient(135deg, rgba(76, 175, 80, 0.26), rgba(46, 125, 50, 0.26));
  margin-bottom: 1rem;
}

.feature-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.14);
}

.feature-icon svg {
  width: 1.4rem;
  height: 1.4rem;
  stroke: #f8fbff;
  stroke-width: 1.8;
  fill: none;
  stroke-linecap: round;
  stroke-linejoin: round;
}

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

.reason-grid,
.about-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

/* Intelligence / signal section */
.intelligence-visual {
  padding: 1.5rem;
}

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

.signal-card {
  padding: 1rem;
  min-height: 132px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.05);
}

.signal-card p {
  margin: 0 0 0.55rem;
  color: var(--primary);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.signal-card h3 {
  margin: 0 0 0.5rem;
  color: var(--headline);
  font-family: "Sora", sans-serif;
  font-size: 1.05rem;
}

.signal-card span {
  color: var(--muted);
  line-height: 1.55;
  font-size: 0.92rem;
}

.assistant-card {
  margin-top: 1rem;
  padding: 1.2rem;
  border-radius: 22px;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.05), rgba(76, 175, 80, 0.06));
}

.assistant-card p {
  margin: 0 0 0.5rem;
  color: var(--primary-strong);
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.14em;
}

.assistant-card strong {
  color: var(--headline);
  font-family: "Sora", sans-serif;
  font-size: 1.3rem;
}

/* Analytics panel */
.analytics-panel {
  padding: 1.6rem;
}

.analytics-bars {
  display: flex;
  align-items: end;
  gap: 0.8rem;
  margin-top: 2rem;
  min-height: 180px;
}

.analytics-bars span {
  display: block;
  flex: 1;
  height: var(--bar);
  border-radius: 18px 18px 8px 8px;
  background: linear-gradient(180deg, var(--primary), rgba(46, 125, 50, 0.5));
}

/* Contact */
.contact-points {
  display: grid;
  gap: 0.8rem;
  margin-top: 1.4rem;
}

.contact-form {
  display: grid;
  gap: 1rem;
}

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

.contact-form label {
  display: grid;
  gap: 0.45rem;
}

.contact-form span {
  color: var(--headline);
  font-weight: 700;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  border: 1px solid var(--border);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.04);
  padding: 0.95rem 1rem;
  color: var(--text);
  font: inherit;
  outline: none;
  transition: border-color 0.25s ease, box-shadow 0.25s ease;
}

.contact-form input:focus,
.contact-form textarea:focus {
  border-color: rgba(76, 175, 80, 0.6);
  box-shadow: 0 0 0 4px rgba(76, 175, 80, 0.12);
}

.contact-form small {
  color: #fda4af;
}

.form-alert {
  margin-bottom: 1rem;
  border-radius: 18px;
  padding: 0.9rem 1rem;
}

.form-alert.success {
  background: rgba(22, 163, 74, 0.15);
  color: #bbf7d0;
}

.form-alert.error {
  background: rgba(190, 24, 93, 0.18);
  color: #fecdd3;
}

.form-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 1rem;
}

/* Footer */
.site-footer {
  border-top: 1px solid var(--border);
  padding-top: 3rem;
  padding-bottom: 1.5rem;
}

.site-footer a,
.site-footer span {
  display: block;
  margin-bottom: 0.7rem;
}

.footer-logo {
  height: 36px;
  width: auto;
  margin-bottom: 1rem;
}

.secp-complaint-banner {
  width: 100%;
  height: auto;
  border-radius: 16px;
  display: block;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.complaint-banner-link {
  display: block;
  border-radius: 16px;
  overflow: hidden;
}

.complaint-banner-link:hover .secp-complaint-banner {
  transform: translateY(-4px);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.12);
}

/* Service card (services page) */
.service-card {
  padding: 2rem;
  margin-bottom: 2rem;
}

.service-card h3 {
  font-size: 1.5rem;
  margin-bottom: 0.8rem;
}

.service-list {
  list-style: none;
  padding: 0;
  margin: 1rem 0;
}

.service-list li {
  position: relative;
  padding-left: 1.5rem;
  margin-bottom: 0.6rem;
  color: var(--muted);
  line-height: 1.7;
}

.service-list li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--primary);
  font-weight: 800;
}

/* CEO section */
.ceo-card {
  padding: 2.5rem;
}

.ceo-img {
  width: 160px;
  height: 160px;
  border-radius: 50%;
  object-fit: cover;
  border: 4px solid var(--primary);
  box-shadow: 0 12px 30px rgba(76, 175, 80, 0.2);
  display: block;
  margin: 0 auto;
}

.ceo-name {
  font-family: "Sora", sans-serif;
  color: var(--headline);
  font-size: 1.4rem;
  margin: 1rem 0 0.35rem;
}

.ceo-title {
  color: var(--primary);
  font-weight: 700;
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
}

/* Value cards */
.value-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1rem;
}

.value-card {
  padding: 1.4rem;
  text-align: center;
}

.value-card h4 {
  color: var(--headline);
  font-family: "Sora", sans-serif;
  margin: 0.6rem 0 0.4rem;
}

.value-card .value-icon {
  width: 3.2rem;
  height: 3.2rem;
  margin: 0 auto;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, rgba(76, 175, 80, 0.2), rgba(46, 125, 50, 0.2));
  font-size: 1.4rem;
}

/* Strength cards */
.strength-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.2rem;
}

.strength-card {
  padding: 1.6rem;
  text-align: center;
}

.strength-card h4 {
  color: var(--headline);
  font-family: "Sora", sans-serif;
  margin: 0.6rem 0 0.4rem;
}

.strength-card .strength-icon {
  width: 3.6rem;
  height: 3.6rem;
  margin: 0 auto 0.5rem;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, rgba(76, 175, 80, 0.2), rgba(46, 125, 50, 0.2));
  font-size: 1.5rem;
}

/* Animations */
.reveal-up,
.reveal-scale,
.reveal-left,
.reveal-right,
.reveal-text,
.split-lines .line {
  opacity: 0;
}

.split-lines .line {
  display: block;
  overflow: hidden;
}

.split-lines .line > span {
  display: block;
  transform: translateY(112%);
}

.text-center .split-lines .line {
  display: flex;
  justify-content: center;
}

.text-center .split-lines .line > span {
  text-align: center;
}

/* Map */
.map-frame {
  border-radius: 20px;
  overflow: hidden;
  border: 1px solid var(--border);
}

.map-frame iframe {
  width: 100%;
  height: 300px;
  border: 0;
  filter: grayscale(0.3);
}

/* Contact info list */
.contact-info-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.contact-info-list li {
  display: flex;
  align-items: flex-start;
  gap: 0.8rem;
  margin-bottom: 1.2rem;
  color: var(--muted);
  line-height: 1.7;
}

.contact-info-list .info-icon {
  width: 2.2rem;
  height: 2.2rem;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, rgba(76, 175, 80, 0.2), rgba(46, 125, 50, 0.2));
  flex-shrink: 0;
  font-size: 0.9rem;
}

/* Board member list */
.board-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1.2rem;
}

.board-card {
  padding: 1.4rem;
}

.board-card h4 {
  color: var(--headline);
  font-family: "Sora", sans-serif;
  margin: 0 0 0.35rem;
}

.board-card .board-role {
  color: var(--primary);
  font-weight: 700;
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 0.5rem;
}

/* Responsive */
@media (max-width: 1024px) {
  .feature-grid,
  .reason-grid,
  .about-grid,
  .strength-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

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

  .hero-title,
  .section-title {
    max-width: none;
  }
}

@media (max-width: 768px) {
  .nav-panel {
    position: fixed;
    top: 84px;
    left: 1rem;
    right: 1rem;
    display: grid;
    gap: 0.35rem;
    padding: 1rem;
    border-radius: 24px;
    background: var(--surface-strong);
    border: 1px solid var(--border);
    transform: translateY(-16px);
    opacity: 0;
    pointer-events: none;
    transition: transform 0.25s ease, opacity 0.25s ease;
  }

  .nav-panel.is-open {
    transform: translateY(0);
    opacity: 1;
    pointer-events: auto;
  }

  .hero-dashboard,
  .field-grid,
  .benefit-grid,
  .feature-grid,
  .reason-grid,
  .about-grid,
  .signal-grid,
  .strength-grid,
  .board-grid {
    grid-template-columns: 1fr;
  }

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

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

  .brand-logo {
    height: 32px;
  }

  .hero-visual {
    transform: none;
  }
}

@media (max-width: 560px) {
  .hero-stats {
    grid-template-columns: 1fr;
  }

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