@font-face {
  font-family: 'Inter';
  src: url('../fonts/inter-subset.woff2') format('woff2');
  font-weight: 400 700;
  font-style: normal;
  font-display: swap;
}

*, *::before, *::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Helvetica, Arial, sans-serif;
  font-size: 16px;
  font-weight: 400;
  line-height: 1.65;
  color: #334155;
  background-color: #F8FAFC;
  margin: 0;
  padding: 0;
}

h1, h2, h3, h4, h5, h6 {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Helvetica, Arial, sans-serif;
  color: #0F172A;
  margin-top: 0;
}

h1 { font-size: 56px; font-weight: 700; line-height: 1.15; letter-spacing: -0.02em; }
h2 { font-size: 34px; font-weight: 700; line-height: 1.25; letter-spacing: -0.01em; }
h3 { font-size: 24px; font-weight: 600; line-height: 1.35; letter-spacing: -0.008em; }
h4 { font-size: 18px; font-weight: 600; line-height: 1.4; letter-spacing: 0; }

p { margin-bottom: 1rem; }

a { color: #0284C7; text-decoration: none; transition: color 0.2s; }
a:hover { color: #0369A1; }

img { max-width: 100%; height: auto; display: block; }

.container { max-width: 1140px; margin: 0 auto; padding: 0 24px; }
.container-narrow { max-width: 780px; margin: 0 auto; padding: 0 24px; }

.section-pad { padding: 96px 0; }
.section-pad-sm { padding: 64px 0; }

.bg-base { background-color: #F8FAFC; }
.bg-alt { background-color: #EFF6FF; }
.bg-dark { background-color: #0B1929; }
.bg-card { background-color: #FFFFFF; }
.bg-dark-card { background-color: #162236; }

.text-heading { color: #0F172A; }
.text-body { color: #334155; }
.text-muted { color: #64748B; }
.text-heading-dark { color: #F1F5F9; }
.text-body-dark { color: #CBD5E1; }
.text-muted-dark { color: #94A3B8; }

.section-label {
  display: inline-block;
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.04em;
  color: #0284C7;
  text-transform: uppercase;
  margin-bottom: 12px;
}

.section-title {
  font-size: 34px;
  font-weight: 700;
  line-height: 1.25;
  letter-spacing: -0.01em;
  color: #0F172A;
  margin-bottom: 16px;
}

.section-subtitle {
  font-size: 18px;
  font-weight: 400;
  line-height: 1.65;
  color: #64748B;
  margin-bottom: 0;
}

.section-header {
  text-align: center;
  max-width: 640px;
  margin: 0 auto 56px;
}

.dark-section .section-title { color: #F1F5F9; }
.dark-section .section-subtitle { color: #94A3B8; }
.dark-section .section-label { color: #0284C7; }

.gw-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Helvetica, Arial, sans-serif;
  font-size: 15px;
  font-weight: 600;
  line-height: 1;
  letter-spacing: 0.01em;
  border-radius: 6px;
  border: none;
  cursor: pointer;
  text-decoration: none;
  transition: background-color 0.2s, color 0.2s, border-color 0.2s, box-shadow 0.2s;
  padding: 14px 28px;
  white-space: nowrap;
}

.gw-btn-primary {
  background: #0284C7;
  color: #FFFFFF;
  border: 2px solid #0284C7;
}
.gw-btn-primary:hover {
  background: #0369A1;
  border-color: #0369A1;
  color: #FFFFFF;
}

.gw-btn-outline {
  background: transparent;
  color: #0284C7;
  border: 2px solid #0284C7;
}
.gw-btn-outline:hover {
  background: rgba(2,132,199,0.10);
  color: #0284C7;
}

.gw-btn-dark-outline {
  background: transparent;
  color: #F1F5F9;
  border: 2px solid rgba(241,245,249,0.35);
}
.gw-btn-dark-outline:hover {
  background: rgba(241,245,249,0.10);
  color: #FFFFFF;
}

.gw-btn-sm {
  padding: 10px 20px;
  font-size: 14px;
}

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  height: 64px;
  display: flex;
  align-items: center;
  transition: background-color 0.3s, box-shadow 0.3s;
}

.site-header.nav-transparent {
  background: transparent;
}

.site-header.nav-solid,
.site-header.scrolled {
  background: rgba(11, 25, 41, 0.97);
  backdrop-filter: blur(10px);
  box-shadow: 0 2px 8px rgba(0,0,0,0.3);
}

.site-nav {
  width: 100%;
}

.site-nav .nav-inner {
  max-width: 1140px;
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 64px;
}

.site-nav .nav-logo {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 20px;
  font-weight: 700;
  color: #F1F5F9;
  text-decoration: none;
  letter-spacing: -0.01em;
}

.site-nav .nav-logo i {
  font-size: 20px;
  color: #0284C7;
}

.site-nav .nav-logo:hover { color: #FFFFFF; text-decoration: none; }

.nav-links {
  display: flex;
  align-items: center;
  gap: 8px;
  list-style: none;
  margin: 0;
  padding: 0;
}

.nav-links a {
  font-size: 15px;
  font-weight: 500;
  letter-spacing: 0.01em;
  color: #CBD5E1;
  text-decoration: none;
  padding: 8px 12px;
  border-radius: 6px;
  transition: color 0.2s, background 0.2s;
  white-space: nowrap;
}

.nav-links a:hover {
  color: #FFFFFF;
  background: rgba(255,255,255,0.08);
}

.nav-links a.active {
  color: #0284C7;
  background: rgba(2,132,199,0.12);
}

.btn-nav-cta,
.site-nav .btn-nav-cta,
.nav-links .btn-nav-cta,
.nav-links a.btn-nav-cta,
.nav-links a.btn-nav-cta:hover,
.nav-links a.btn-nav-cta:focus,
.nav-links a.btn-nav-cta:active,
.nav-links a.btn-nav-cta.active {
  background: #0284C7;
  color: #FFFFFF;
  border: 2px solid #0284C7;
  padding: 8px 20px;
  font-weight: 600;
  font-size: 14px;
  border-radius: 6px;
}

.btn-nav-cta:hover,
.nav-links a.btn-nav-cta:hover {
  background: #0369A1;
  border-color: #0369A1;
  color: #FFFFFF;
}

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}

.nav-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: #F1F5F9;
  border-radius: 2px;
  transition: all 0.3s;
}

.gw-hero {
  position: relative;
  background-color: #0B1929;
  overflow: hidden;
}

.gw-hero-home {
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: 120px 0 96px;
}

.gw-hero-page {
  min-height: 320px;
  height: 40vh;
  display: flex;
  align-items: center;
  padding: 96px 0 64px;
  margin-top: 64px;
}

.gw-hero-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  z-index: 0;
}

.gw-hero-overlay {
  position: absolute;
  inset: 0;
  background: rgba(11, 25, 41, 0.72);
  z-index: 1;
  pointer-events: none;
}

.gw-hero-content {
  position: relative;
  z-index: 2;
}

.gw-hero-home h1 {
  font-size: 56px;
  font-weight: 700;
  line-height: 1.15;
  letter-spacing: -0.02em;
  color: #F1F5F9;
  margin-bottom: 24px;
}

.gw-hero-home h1 .accent { color: #0284C7; }

.gw-hero-home .hero-sub {
  font-size: 20px;
  line-height: 1.65;
  color: #CBD5E1;
  margin-bottom: 40px;
  max-width: 540px;
}

.hero-actions {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 40px;
}

.hero-trust {
  font-size: 14px;
  color: #94A3B8;
  display: flex;
  align-items: center;
  gap: 8px;
}

.hero-trust i { color: #0284C7; font-size: 14px; }

.gw-hero-page h1 {
  font-size: 42px;
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: -0.015em;
  color: #F1F5F9;
  margin-bottom: 16px;
}

.gw-hero-page .hero-sub {
  font-size: 18px;
  line-height: 1.65;
  color: #CBD5E1;
  margin-bottom: 0;
  max-width: 560px;
}

.hero-visual-frame {
  position: relative;
  z-index: 2;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 24px 64px rgba(0,0,0,0.45);
  background: #162236;
  border: 1px solid #1E3A5A;
}

.hero-visual-frame img {
  width: 100%;
  height: auto;
  display: block;
}

.hero-ui-mockup {
  background: #162236;
  border-radius: 20px;
  padding: 24px;
  border: 1px solid #1E3A5A;
  box-shadow: 0 24px 64px rgba(0,0,0,0.45);
}

.hero-ui-mockup .mockup-bar {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 20px;
  padding-bottom: 16px;
  border-bottom: 1px solid #1E3A5A;
}

.mockup-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
}
.mockup-dot.red { background: #EF4444; }
.mockup-dot.yellow { background: #F59E0B; }
.mockup-dot.green { background: #10B981; }

.mockup-tag {
  display: inline-block;
  padding: 3px 10px;
  border-radius: 20px;
  font-size: 12px;
  font-weight: 500;
  margin: 3px 4px 3px 0;
}

.mockup-tag-blue { background: rgba(2,132,199,0.2); color: #38BDF8; }
.mockup-tag-purple { background: rgba(99,102,241,0.2); color: #A5B4FC; }
.mockup-tag-green { background: rgba(16,185,129,0.2); color: #6EE7B7; }

.mockup-quote {
  background: rgba(2,132,199,0.08);
  border-left: 3px solid #0284C7;
  padding: 10px 14px;
  margin: 10px 0;
  border-radius: 0 6px 6px 0;
  font-size: 13px;
  color: #CBD5E1;
  line-height: 1.5;
}

.mockup-metric {
  background: #0B1929;
  border-radius: 12px;
  padding: 14px 20px;
  margin-top: 12px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.mockup-metric .metric-val {
  font-size: 28px;
  font-weight: 700;
  color: #0284C7;
}

.mockup-metric .metric-label {
  font-size: 12px;
  color: #64748B;
}

.gw-card {
  background: #FFFFFF;
  border: 1px solid #E2E8F0;
  border-radius: 12px;
  padding: 32px;
  box-shadow: 0 1px 3px rgba(15,23,42,0.08), 0 1px 2px rgba(15,23,42,0.04);
  display: flex;
  flex-direction: column;
  height: 100%;
  transition: box-shadow 0.25s, transform 0.25s;
}

.gw-card:hover {
  box-shadow: 0 4px 16px rgba(15,23,42,0.12), 0 2px 6px rgba(15,23,42,0.06);
  transform: translateY(-2px);
}

.gw-card-dark {
  background: #162236;
  border: 1px solid #1E3A5A;
  border-radius: 12px;
  padding: 32px;
  display: flex;
  flex-direction: column;
  height: 100%;
}

.card-icon {
  width: 52px;
  height: 52px;
  border-radius: 12px;
  background: rgba(2,132,199,0.12);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  flex-shrink: 0;
}

.card-icon i {
  font-size: 22px;
  color: #0284C7;
}

.card-icon-secondary {
  background: rgba(99,102,241,0.12);
}
.card-icon-secondary i { color: #6366F1; }

.gw-card h3 {
  font-size: 20px;
  font-weight: 600;
  color: #0F172A;
  margin-bottom: 12px;
}

.gw-card p {
  font-size: 15px;
  color: #64748B;
  line-height: 1.65;
  margin-bottom: 0;
  flex: 1;
}

.gw-card-dark h3 { color: #F1F5F9; font-size: 20px; font-weight: 600; margin-bottom: 12px; }
.gw-card-dark p { color: #94A3B8; font-size: 15px; line-height: 1.65; flex: 1; margin-bottom: 0; }

.card-body-flex {
  flex: 1;
  display: flex;
  flex-direction: column;
}

.card-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}

.card-grid .col-card {
  flex: 1 1 calc(33.333% - 16px);
  min-width: 260px;
}

.logo-strip {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 40px 60px;
  padding: 48px 0;
}

.logo-strip-item {
  font-size: 18px;
  font-weight: 700;
  color: #94A3B8;
  letter-spacing: -0.01em;
  white-space: nowrap;
}

.how-step {
  text-align: center;
  padding: 32px 24px;
}

.step-number {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: rgba(2,132,199,0.12);
  font-size: 26px;
  font-weight: 700;
  color: #0284C7;
  margin: 0 auto 20px;
}

.step-icon {
  font-size: 28px;
  color: #0284C7;
  margin-bottom: 16px;
}

.how-step h3 {
  font-size: 20px;
  font-weight: 600;
  color: #0F172A;
  margin-bottom: 12px;
}

.how-step p {
  font-size: 15px;
  color: #64748B;
  margin-bottom: 0;
}

.step-connector {
  display: flex;
  align-items: center;
  justify-content: center;
  padding-top: 32px;
}

.step-connector i {
  font-size: 20px;
  color: #CBD5E1;
}

.testimonial-card {
  background: #162236;
  border: 1px solid #1E3A5A;
  border-radius: 12px;
  padding: 32px;
  height: 100%;
  display: flex;
  flex-direction: column;
}

.testimonial-quote {
  font-size: 16px;
  line-height: 1.65;
  color: #CBD5E1;
  margin-bottom: 24px;
  flex: 1;
  font-style: italic;
}

.testimonial-quote::before { content: '\201C'; }
.testimonial-quote::after { content: '\201D'; }

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 14px;
}

.author-avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: rgba(2,132,199,0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  font-weight: 700;
  color: #0284C7;
  flex-shrink: 0;
}

.author-info .author-name {
  font-size: 15px;
  font-weight: 600;
  color: #F1F5F9;
  margin-bottom: 2px;
}

.author-info .author-role {
  font-size: 13px;
  color: #64748B;
}

.stat-item {
  text-align: center;
  padding: 32px 24px;
}

.stat-number {
  font-size: 48px;
  font-weight: 700;
  color: #0284C7;
  line-height: 1;
  margin-bottom: 8px;
}

.stat-label {
  font-size: 16px;
  font-weight: 500;
  color: #334155;
}

.stat-icon {
  font-size: 24px;
  color: #0284C7;
  margin-bottom: 12px;
}

.pricing-card {
  background: #FFFFFF;
  border: 1px solid #E2E8F0;
  border-radius: 12px;
  padding: 40px 32px;
  display: flex;
  flex-direction: column;
  height: 100%;
  box-shadow: 0 1px 3px rgba(15,23,42,0.08), 0 1px 2px rgba(15,23,42,0.04);
  position: relative;
  transition: box-shadow 0.25s;
}

.pricing-card.featured {
  border-top: 3px solid #0284C7;
  box-shadow: 0 4px 16px rgba(15,23,42,0.12), 0 2px 6px rgba(15,23,42,0.06);
  transform: translateY(-4px);
}

.pricing-badge {
  display: inline-block;
  background: rgba(2,132,199,0.12);
  color: #0284C7;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  padding: 4px 12px;
  border-radius: 20px;
  margin-bottom: 12px;
}

.pricing-tier {
  font-size: 22px;
  font-weight: 700;
  color: #0F172A;
  margin-bottom: 8px;
}

.pricing-price {
  margin-bottom: 8px;
}

.pricing-price .amount {
  font-size: 48px;
  font-weight: 700;
  color: #0F172A;
  line-height: 1;
}

.pricing-price .period {
  font-size: 16px;
  color: #64748B;
}

.pricing-annual {
  font-size: 14px;
  color: #64748B;
  margin-bottom: 24px;
}

.pricing-desc {
  font-size: 15px;
  color: #64748B;
  margin-bottom: 28px;
  flex: 0;
}

.pricing-features {
  list-style: none;
  margin: 0 0 32px;
  padding: 0;
  flex: 1;
}

.pricing-features li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 14px;
  color: #334155;
  padding: 8px 0;
  border-bottom: 1px solid #F1F5F9;
}

.pricing-features li:last-child { border-bottom: none; }

.pricing-features li i {
  font-size: 13px;
  color: #16A34A;
  margin-top: 3px;
  flex-shrink: 0;
}

.pricing-cta {
  margin-top: auto;
}

.pricing-toggle {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  margin-bottom: 48px;
}

.pricing-toggle-label {
  font-size: 15px;
  font-weight: 500;
  color: #334155;
}

.pricing-toggle .toggle-track {
  width: 52px;
  height: 28px;
  border-radius: 14px;
  background: #CBD5E1;
  position: relative;
  cursor: pointer;
  transition: background 0.2s;
}

.pricing-toggle .toggle-track.on { background: #0284C7; }

.pricing-toggle .toggle-thumb {
  position: absolute;
  top: 3px;
  left: 3px;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: #FFFFFF;
  transition: left 0.2s;
}

.pricing-toggle .toggle-track.on .toggle-thumb { left: 27px; }

.pricing-save-badge {
  background: rgba(2,132,199,0.12);
  color: #0284C7;
  font-size: 12px;
  font-weight: 600;
  padding: 3px 10px;
  border-radius: 20px;
  margin-left: 8px;
}

.faq-item {
  border-bottom: 1px solid #E2E8F0;
  padding: 24px 0;
}

.faq-question {
  display: flex;
  align-items: center;
  justify-content: space-between;
  cursor: pointer;
  font-size: 18px;
  font-weight: 600;
  color: #0F172A;
  gap: 16px;
  user-select: none;
}

.faq-question i {
  font-size: 16px;
  color: #0284C7;
  transition: transform 0.25s;
  flex-shrink: 0;
}

.faq-item.open .faq-question i { transform: rotate(180deg); }

.faq-answer {
  display: none;
  font-size: 16px;
  color: #334155;
  line-height: 1.65;
  padding-top: 16px;
}

.faq-item.open .faq-answer { display: block; }

.comparison-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 15px;
}

.comparison-table th {
  font-size: 15px;
  font-weight: 600;
  color: #0F172A;
  padding: 16px 20px;
  background: #F8FAFC;
  border-bottom: 2px solid #E2E8F0;
  text-align: left;
}

.comparison-table th:not(:first-child) {
  text-align: center;
}

.comparison-table td {
  padding: 14px 20px;
  border-bottom: 1px solid #F1F5F9;
  color: #334155;
  vertical-align: middle;
}

.comparison-table td:not(:first-child) {
  text-align: center;
  color: #64748B;
}

.comparison-table td .fa-check { color: #16A34A; }
.comparison-table td .fa-minus { color: #CBD5E1; font-size: 12px; }

.comparison-table tr:hover td { background: #F8FAFC; }

.blog-card {
  background: #FFFFFF;
  border: 1px solid #E2E8F0;
  border-radius: 12px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  height: 100%;
  box-shadow: 0 1px 3px rgba(15,23,42,0.08), 0 1px 2px rgba(15,23,42,0.04);
  transition: box-shadow 0.25s, transform 0.25s;
}

.blog-card:hover {
  box-shadow: 0 4px 16px rgba(15,23,42,0.12), 0 2px 6px rgba(15,23,42,0.06);
  transform: translateY(-2px);
}

.blog-card-img {
  display: block;
  width: 100%;
  height: 200px;
  object-fit: cover;
}

.blog-card-body {
  padding: 24px;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.blog-tag {
  display: inline-block;
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.04em;
  color: #0284C7;
  text-transform: uppercase;
  margin-bottom: 10px;
}

.blog-card-title {
  font-size: 17px;
  font-weight: 600;
  color: #0F172A;
  line-height: 1.4;
  margin-bottom: 10px;
}

.blog-card-title a {
  color: #0F172A;
  text-decoration: none;
}

.blog-card-title a:hover { color: #0284C7; }

.blog-card-excerpt {
  font-size: 14px;
  color: #64748B;
  line-height: 1.6;
  margin-bottom: 0;
  flex: 1;
}

.blog-card-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: auto;
  padding-top: 16px;
}

.blog-date {
  font-size: 13px;
  color: #94A3B8;
}

.read-more {
  font-size: 14px;
  font-weight: 600;
  color: #0284C7;
  text-decoration: none;
}

.read-more:hover { color: #0369A1; }
.read-more i { font-size: 12px; margin-left: 4px; }

.team-card {
  background: #FFFFFF;
  border: 1px solid #E2E8F0;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 1px 3px rgba(15,23,42,0.08), 0 1px 2px rgba(15,23,42,0.04);
  display: flex;
  flex-direction: column;
  height: 100%;
}

.team-card-img {
  width: 100%;
  aspect-ratio: 1 / 1;
  height: auto;
  object-fit: cover;
  object-position: center center;
}

.team-card-body {
  padding: 24px;
}

.team-name {
  font-size: 18px;
  font-weight: 600;
  color: #0F172A;
  margin-bottom: 4px;
}

.team-role {
  font-size: 14px;
  color: #0284C7;
  font-weight: 500;
}

.feature-zigzag {
  padding: 80px 0;
}

.feature-zigzag .row + .row {
  margin-top: 80px;
}

.feature-zigzag-img {
  width: 100%;
  height: 320px;
  object-fit: cover;
  border-radius: 12px;
  box-shadow: 0 4px 16px rgba(15,23,42,0.12), 0 2px 6px rgba(15,23,42,0.06);
}

.feature-badge {
  display: inline-block;
  background: rgba(2,132,199,0.12);
  color: #0284C7;
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  padding: 4px 12px;
  border-radius: 20px;
  margin-bottom: 16px;
}

.integration-item {
  background: #FFFFFF;
  border: 1px solid #E2E8F0;
  border-radius: 12px;
  padding: 24px;
  text-align: center;
  box-shadow: 0 1px 3px rgba(15,23,42,0.08);
  transition: box-shadow 0.2s;
}

.integration-item:hover {
  box-shadow: 0 4px 16px rgba(15,23,42,0.12);
}

.integration-icon {
  width: 56px;
  height: 56px;
  border-radius: 14px;
  background: #F8FAFC;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 12px;
}

.integration-icon i {
  font-size: 24px;
  color: #334155;
}

.integration-name {
  font-size: 14px;
  font-weight: 600;
  color: #0F172A;
}

.trust-item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  padding: 24px 0;
  border-bottom: 1px solid #1E3A5A;
}

.trust-item:last-child { border-bottom: none; }

.trust-icon {
  width: 44px;
  height: 44px;
  border-radius: 10px;
  background: rgba(2,132,199,0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.trust-icon i { font-size: 20px; color: #0284C7; }

.trust-content h4 { color: #F1F5F9; font-size: 16px; font-weight: 600; margin-bottom: 6px; }
.trust-content p { color: #94A3B8; font-size: 14px; margin-bottom: 0; }

.cta-strip {
  text-align: center;
  padding: 96px 0;
}

.cta-strip h2 { color: #F1F5F9; margin-bottom: 16px; }
.cta-strip p { color: #94A3B8; font-size: 18px; margin-bottom: 36px; }

.site-footer {
  background-color: #0B1929;
  padding: 64px 0 0;
  color: #CBD5E1;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 40px;
  margin-bottom: 48px;
}

.footer-logo {
  font-size: 20px;
  font-weight: 700;
  color: #F1F5F9;
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 14px;
}

.footer-logo i { color: #0284C7; }
.footer-logo:hover { color: #FFFFFF; text-decoration: none; }

.footer-brand p {
  font-size: 14px;
  color: #94A3B8;
  line-height: 1.65;
  margin-bottom: 20px;
}

.footer-social {
  display: flex;
  gap: 12px;
  list-style: none;
  margin: 0;
  padding: 0;
}

.footer-social a {
  width: 36px;
  height: 36px;
  border-radius: 8px;
  background: rgba(255,255,255,0.06);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #94A3B8;
  text-decoration: none;
  transition: background 0.2s, color 0.2s;
  font-size: 14px;
}

.footer-social a:hover {
  background: rgba(2,132,199,0.2);
  color: #0284C7;
}

.footer-col h4 {
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: #F1F5F9;
  margin-bottom: 16px;
}

.footer-col ul {
  list-style: none;
  margin: 0;
  padding: 0;
}

.footer-col ul li {
  margin-bottom: 10px;
}

.footer-col ul a {
  font-size: 14px;
  color: #94A3B8;
  text-decoration: none;
  transition: color 0.2s;
}

.footer-col ul a:hover { color: #0284C7; }

.footer-contact-item {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin-bottom: 12px;
  font-size: 14px;
  color: #94A3B8;
}

.footer-contact-item i {
  font-size: 14px;
  color: #64748B;
  margin-top: 2px;
  flex-shrink: 0;
}

.footer-bottom {
  border-top: 1px solid #1E3A5A;
  padding: 24px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
}

.footer-bottom p {
  font-size: 13px;
  color: #64748B;
  margin: 0;
}

.footer-bottom a {
  font-size: 13px;
  color: #64748B;
  text-decoration: none;
}

.footer-bottom a:hover { color: #0284C7; }

.contact-form-section {
  background: #FFFFFF;
  border: 1px solid #E2E8F0;
  border-radius: 12px;
  padding: 48px;
  box-shadow: 0 1px 3px rgba(15,23,42,0.08);
}

.gw-form-label {
  display: block;
  font-size: 14px;
  font-weight: 500;
  color: #334155;
  margin-bottom: 6px;
}

.gw-form-input {
  display: block;
  width: 100%;
  padding: 12px 16px;
  font-size: 16px;
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Helvetica, Arial, sans-serif;
  color: #0F172A;
  background: #FFFFFF;
  border: 1px solid #E2E8F0;
  border-radius: 6px;
  outline: none;
  transition: border-color 0.2s;
}

.gw-form-input::placeholder { color: #94A3B8; }

.gw-form-input:focus {
  border: 2px solid #0284C7;
}

textarea.gw-form-input {
  resize: vertical;
  min-height: 120px;
}

.contact-info-block {
  padding: 32px 0;
}

.contact-info-item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  margin-bottom: 28px;
}

.contact-info-item:last-child { margin-bottom: 0; }

.contact-info-icon {
  width: 44px;
  height: 44px;
  border-radius: 10px;
  background: rgba(2,132,199,0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.contact-info-icon i { font-size: 18px; color: #0284C7; }

.contact-info-text h4 {
  font-size: 16px;
  font-weight: 600;
  color: #0F172A;
  margin-bottom: 4px;
}

.contact-info-text p {
  font-size: 15px;
  color: #64748B;
  margin-bottom: 0;
}

.mission-img {
  width: 100%;
  height: 380px;
  object-fit: cover;
  border-radius: 12px;
  box-shadow: 0 4px 16px rgba(15,23,42,0.12);
}

.investors-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: center;
}

.investor-item {
  background: #FFFFFF;
  border: 1px solid #E2E8F0;
  border-radius: 12px;
  padding: 24px 32px;
  text-align: center;
  box-shadow: 0 1px 3px rgba(15,23,42,0.08);
  min-width: 180px;
}

.investor-name {
  font-size: 16px;
  font-weight: 700;
  color: #0F172A;
  margin-bottom: 4px;
}

.investor-type {
  font-size: 13px;
  color: #64748B;
}

.article-hero {
  background-color: #0B1929;
  padding: 96px 0 64px;
  margin-top: 64px;
  text-align: center;
}

.article-hero h1 {
  font-size: 42px;
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: -0.015em;
  color: #F1F5F9;
  margin-bottom: 20px;
}

.article-meta {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  font-size: 14px;
  color: #94A3B8;
  flex-wrap: wrap;
}

.article-meta .cat-tag {
  background: rgba(2,132,199,0.15);
  color: #38BDF8;
  padding: 3px 10px;
  border-radius: 20px;
  font-size: 12px;
  font-weight: 500;
}

.article-content {
  max-width: 780px;
  margin: 0 auto;
  padding: 64px 24px;
}

.article-content h2 {
  font-size: 28px;
  font-weight: 700;
  color: #0F172A;
  margin-top: 48px;
  margin-bottom: 16px;
}

.article-content h3 {
  font-size: 22px;
  font-weight: 600;
  color: #0F172A;
  margin-top: 32px;
  margin-bottom: 12px;
}

.article-content p {
  font-size: 17px;
  line-height: 1.75;
  color: #334155;
  margin-bottom: 1.25rem;
}

.article-content ul, .article-content ol {
  font-size: 17px;
  line-height: 1.75;
  color: #334155;
  padding-left: 28px;
  margin-bottom: 1.25rem;
}

.article-content img {
  width: 100%;
  max-width: 100%;
  height: auto;
  border-radius: 10px;
  margin: 32px 0;
}

.article-nav {
  max-width: 780px;
  margin: 0 auto;
  padding: 0 24px 64px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}

.article-nav-item {
  background: #FFFFFF;
  border: 1px solid #E2E8F0;
  border-radius: 12px;
  padding: 20px 24px;
  text-decoration: none;
  transition: box-shadow 0.2s;
}

.article-nav-item:hover {
  box-shadow: 0 4px 16px rgba(15,23,42,0.12);
  text-decoration: none;
}

.article-nav-item .nav-dir {
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: #94A3B8;
  margin-bottom: 6px;
}

.article-nav-item .nav-title {
  font-size: 15px;
  font-weight: 600;
  color: #0F172A;
  line-height: 1.4;
}

.legal-content {
  max-width: 780px;
  margin: 0 auto;
  padding: 64px 24px;
}

.legal-content h2 {
  font-size: 26px;
  font-weight: 700;
  color: #0F172A;
  margin-top: 48px;
  margin-bottom: 16px;
}

.legal-content h3 {
  font-size: 20px;
  font-weight: 600;
  color: #0F172A;
  margin-top: 32px;
  margin-bottom: 12px;
}

.legal-content p, .legal-content li {
  font-size: 16px;
  line-height: 1.75;
  color: #334155;
}

.legal-content ul, .legal-content ol {
  padding-left: 28px;
  margin-bottom: 1.25rem;
}

.page-404 {
  min-height: 100vh;
  background-color: #0B1929;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 40px 24px;
}

.error-404-num {
  font-size: 120px;
  font-weight: 700;
  color: #0284C7;
  line-height: 1;
  margin-bottom: 24px;
  letter-spacing: -0.03em;
}

.error-404-title {
  font-size: 28px;
  font-weight: 700;
  color: #F1F5F9;
  margin-bottom: 16px;
}

.error-404-body {
  font-size: 16px;
  color: #94A3B8;
  margin-bottom: 36px;
  max-width: 460px;
}

.error-404-logo {
  position: absolute;
  top: 24px;
  left: 32px;
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 20px;
  font-weight: 700;
  color: #F1F5F9;
  text-decoration: none;
}

.error-404-logo i { color: #0284C7; }

.divider-dots {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  margin: 16px 0;
}

.divider-dots span {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #E2E8F0;
}

.divider-dots span:nth-child(2) { background: #0284C7; }

@media (max-width: 991px) {
  h1 { font-size: 42px; }
  h2 { font-size: 28px; }
  .gw-hero-home h1 { font-size: 40px; }
  .gw-hero-page h1 { font-size: 34px; }

  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 32px;
  }

  .card-grid .col-card {
    flex: 1 1 calc(50% - 12px);
  }
}

@media (max-width: 768px) {
  .nav-links {
    display: none;
    position: absolute;
    top: 64px;
    left: 0;
    right: 0;
    background: rgba(11, 25, 41, 0.98);
    flex-direction: column;
    padding: 16px 24px 24px;
    gap: 4px;
    border-top: 1px solid #1E3A5A;
  }

  .nav-links.open { display: flex; }

  .nav-links a {
    padding: 12px 16px;
    width: 100%;
  }

  .nav-toggle { display: flex; }

  .site-header { position: relative; }
  .site-header.nav-transparent { position: fixed; }
  .site-header.nav-solid { position: fixed; }

  .gw-hero-home {
    padding: 100px 0 64px;
    min-height: 80vh;
  }

  .hero-visual-frame,
  .hero-ui-mockup {
    margin-top: 40px;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .footer-bottom {
    flex-direction: column;
    align-items: flex-start;
  }

  .stat-number { font-size: 40px; }
  .pricing-card.featured { transform: none; }

  .card-grid .col-card {
    flex: 1 1 100%;
  }

  .article-nav {
    grid-template-columns: 1fr;
  }

  .contact-form-section {
    padding: 32px 24px;
  }
}

/* Logo dark/light variant swap */
.logo-img {
  max-height: 40px;
  width: auto;
  vertical-align: middle;
  display: inline-block;
}
/* Light hero default: show dark logo */
.site-nav .logo-img--dark { display: inline-block; }
.site-nav .logo-img--light { display: none; }
/* When nav on dark bg (scrolled dark, hero-dark, navbar-dark), swap */
.site-nav.on-dark .logo-img--dark,
.navbar-dark .logo-img--dark,
body.hero-dark .site-nav .logo-img--dark { display: none; }
.site-nav.on-dark .logo-img--light,
.navbar-dark .logo-img--light,
body.hero-dark .site-nav .logo-img--light { display: inline-block; }
