@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700;800;900&display=swap');

:root {
  --page: #f7f7f8;
  --surface: #ffffff;
  --ink: #111827;
  --ink-soft: #4b5563;
  --muted: #7b8494;
  --line: #e5e7eb;
  --line-strong: #cfd5df;
  --red: #e4002b;
  --red-dark: #b80f23;
  --red-soft: rgba(228, 0, 43, .08);
  --green: #0f9f6e;
  --shadow: 0 18px 50px rgba(17, 24, 39, .08);
  --shadow-soft: 0 8px 24px rgba(17, 24, 39, .06);
  --radius: 14px;
}

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

* {
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  overflow-x: hidden;
  background: var(--page);
}

body {
  min-height: 100vh;
  overflow-x: hidden;
  color: var(--ink);
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  font-size: 15px;
  line-height: 1.6;
  letter-spacing: 0;
  background:
    linear-gradient(90deg, rgba(17, 24, 39, .045) 1px, transparent 1px),
    linear-gradient(180deg, rgba(17, 24, 39, .04) 1px, transparent 1px),
    linear-gradient(180deg, #fff 0%, #f7f7f8 52%, #fff 100%);
  background-size: 92px 92px, 92px 92px, auto;
  -webkit-font-smoothing: antialiased;
  font-variant-numeric: tabular-nums;
}

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

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

button,
input,
textarea,
select {
  font: inherit;
}

button {
  cursor: pointer;
}

::selection {
  background: var(--red);
  color: #fff;
}

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

.section {
  padding: clamp(64px, 8vw, 104px) 0;
}

.section-sm {
  padding: 54px 0;
}

.reveal {
  opacity: 0;
  transform: translateY(16px);
  transition: opacity .5s ease, transform .5s ease;
}

.reveal.in-view {
  opacity: 1;
  transform: translateY(0);
}

#header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255, 255, 255, .94);
  border-bottom: 1px solid var(--line);
  box-shadow: 0 10px 30px rgba(17, 24, 39, .05);
  backdrop-filter: blur(18px);
}

.header-inner {
  width: min(1220px, calc(100% - 48px));
  height: 82px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.logo {
  display: inline-flex;
  align-items: center;
  min-width: 210px;
}

.logo-img {
  width: 46px;
  height: 46px;
  flex: 0 0 auto;
  object-fit: cover;
  background: #050505;
  border: 1px solid rgba(228, 0, 43, .18);
  border-radius: 12px;
}

.logo::after {
  content: "Tesla Yatırım";
  margin-left: 12px;
  color: var(--ink);
  font-size: 17px;
  font-weight: 900;
}

.footer-brand .logo::after {
  color: #fff;
}

.nav-desktop,
.nav-actions {
  display: flex;
  align-items: center;
  gap: 8px;
}

.nav-link,
.mobile-nav-link {
  display: inline-flex;
  align-items: center;
  min-height: 40px;
  padding: 8px 14px;
  border: 1px solid transparent;
  border-radius: 999px;
  color: var(--ink-soft);
  font-size: 14px;
  font-weight: 700;
  transition: background .2s ease, border-color .2s ease, color .2s ease;
}

.nav-link:hover,
.nav-link.active,
.mobile-nav-link:hover,
.mobile-nav-link.active {
  color: var(--ink);
  background: #f2f4f7;
  border-color: var(--line);
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-height: 44px;
  padding: 10px 18px;
  border: 1px solid var(--line-strong);
  border-radius: 999px;
  background: #fff;
  color: var(--ink);
  font-size: 14px;
  font-weight: 800;
  white-space: nowrap;
  transition: background .2s ease, border-color .2s ease, color .2s ease, box-shadow .2s ease, transform .2s ease;
}

.btn:hover {
  transform: translateY(-1px);
  background: #f9fafb;
  border-color: #9ca3af;
  box-shadow: var(--shadow-soft);
}

.btn-primary {
  background: var(--red);
  border-color: var(--red);
  color: #fff;
  box-shadow: 0 14px 32px rgba(228, 0, 43, .18);
}

.btn-primary:hover {
  background: var(--red-dark);
  border-color: var(--red-dark);
  color: #fff;
}

.btn-lg {
  min-height: 48px;
  padding: 12px 22px;
}

.btn-xl {
  min-height: 52px;
  padding: 13px 24px;
}

.btn-full {
  width: 100%;
}

.mobile-toggle {
  display: none;
  width: 44px;
  height: 44px;
  place-items: center;
  border: 1px solid var(--line);
  border-radius: 12px;
  background: #fff;
  color: var(--ink);
}

.mobile-toggle svg {
  width: 22px;
  height: 22px;
}

.mobile-menu {
  display: none;
  position: fixed;
  inset: 82px 0 0;
  z-index: 99;
  flex-direction: column;
  gap: 8px;
  padding: 18px 20px 32px;
  background: rgba(255, 255, 255, .98);
  border-top: 1px solid var(--line);
  overflow-y: auto;
}

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

.live-market-strip {
  position: sticky;
  top: 78px;
  z-index: 88;
  display: grid;
  grid-template-columns: 190px minmax(0, 1fr);
  align-items: stretch;
  height: 48px;
  border-bottom: 1px solid rgba(255, 255, 255, .09);
  background: #090b10;
  color: #fff;
  box-shadow: 0 12px 30px rgba(16, 21, 31, .12);
}

.market-strip-head {
  display: grid;
  align-content: center;
  gap: 2px;
  height: 48px;
  padding: 8px 16px 8px 24px;
  border-right: 1px solid rgba(255, 255, 255, .11);
}

.market-strip-head span {
  color: #fff;
  font-size: 12px;
  font-weight: 900;
}

.market-strip-head strong {
  color: #8f99aa;
  font-size: 10px;
  font-weight: 800;
}

.market-ticker {
  position: relative;
  overflow: hidden;
  height: 48px;
}

.market-ticker::before,
.market-ticker::after {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  z-index: 2;
  width: 70px;
  pointer-events: none;
}

.market-ticker::before {
  left: 0;
  background: linear-gradient(90deg, #090b10, transparent);
}

.market-ticker::after {
  right: 0;
  background: linear-gradient(270deg, #090b10, transparent);
}

.ticker-track {
  display: flex;
  width: max-content;
  height: 48px;
  animation: ticker-scroll 42s linear infinite;
}

.market-ticker:hover .ticker-track {
  animation-play-state: paused;
}

.ticker-item {
  display: inline-grid;
  grid-template-columns: auto auto auto;
  align-items: center;
  gap: 10px;
  height: 48px;
  min-width: 190px;
  padding: 0 20px;
  border-right: 1px solid rgba(255, 255, 255, .1);
  white-space: nowrap;
}

.ticker-symbol {
  color: #c7ceda;
  font-size: 12px;
  font-weight: 900;
}

.ticker-price {
  color: #fff;
  font-size: 13px;
  font-weight: 900;
}

.ticker-change {
  min-width: 58px;
  padding: 3px 6px;
  border-radius: 999px;
  color: #aeb7c6;
  background: rgba(255, 255, 255, .06);
  font-size: 11px;
  font-weight: 900;
  text-align: center;
}

.ticker-change.up {
  color: #b8f7dc;
  background: rgba(31, 185, 129, .11);
}

.ticker-change.down {
  color: #ffb8c1;
  background: rgba(228, 0, 43, .13);
}

.ticker-item.loading {
  min-width: 320px;
}

@keyframes ticker-scroll {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-50%);
  }
}

.mobile-divider {
  border: 0;
  border-top: 1px solid var(--line);
  margin: 10px 0;
}

.mobile-actions {
  display: grid;
  gap: 10px;
}

.trust-shell {
  background: transparent;
}

.trust-hero {
  width: min(1180px, calc(100% - 48px));
  min-height: calc(100vh - 82px);
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(0, .95fr) minmax(420px, 1.05fr);
  gap: clamp(36px, 6vw, 76px);
  align-items: center;
  padding: clamp(38px, 6vw, 78px) 0 clamp(48px, 7vw, 88px);
}

.trust-hero__copy {
  position: relative;
}

.trust-hero__copy::before {
  content: "";
  position: absolute;
  left: -24px;
  top: 10px;
  width: 3px;
  height: 92px;
  border-radius: 999px;
  background: var(--red);
}

.trust-eyebrow,
.eyebrow {
  display: inline-flex;
  align-items: center;
  width: fit-content;
  gap: 8px;
  margin-bottom: 18px;
  padding: 7px 12px;
  border: 1px solid rgba(228, 0, 43, .18);
  border-radius: 999px;
  background: var(--red-soft);
  color: var(--red-dark);
  font-size: 12px;
  font-weight: 900;
}

.trust-hero h1 {
  max-width: 660px;
  color: var(--ink);
  font-size: clamp(40px, 4vw, 60px);
  line-height: 1.04;
  font-weight: 900;
}

.trust-hero__copy p {
  max-width: 620px;
  margin-top: 18px;
  color: var(--ink-soft);
  font-size: clamp(16px, 1.15vw, 18px);
}

.trust-actions,
.cta-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 30px;
}

.trust-dashboard {
  position: relative;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 22px;
  background: #fff;
  box-shadow: var(--shadow);
}

.trust-dashboard::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    linear-gradient(90deg, rgba(228, 0, 43, .06) 1px, transparent 1px),
    linear-gradient(180deg, rgba(17, 24, 39, .055) 1px, transparent 1px);
  background-size: 54px 54px;
}

.trust-dashboard > * {
  position: relative;
}

.trust-dashboard__header,
.trust-chart-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.trust-dashboard__header {
  min-height: 96px;
  padding: 24px 28px;
  border-bottom: 1px solid var(--line);
}

.trust-dashboard__header span,
.trust-chart-head span,
.trust-dashboard__rows span {
  display: block;
  color: var(--muted);
  font-size: 12px;
  font-weight: 800;
}

.trust-dashboard__header strong {
  display: block;
  margin-top: 4px;
  color: var(--ink);
  font-size: 24px;
}

.trust-dashboard__header svg {
  width: 46px;
  height: 46px;
  padding: 10px;
  border: 1px solid rgba(228, 0, 43, .2);
  border-radius: 14px;
  background: var(--red-soft);
  color: var(--red);
}

.trust-dashboard__chart {
  padding: 26px 28px 18px;
}

.trust-chart-head {
  margin-bottom: 12px;
}

.trust-chart-head strong,
.trust-dashboard__rows em {
  color: var(--red);
  font-size: 13px;
  font-style: normal;
  font-weight: 800;
}

.trust-dashboard__chart svg {
  width: 100%;
  height: 260px;
}

.trust-dashboard__rows {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-top: 1px solid var(--line);
}

.trust-dashboard__rows div {
  padding: 20px;
  border-right: 1px solid var(--line);
  background: rgba(247, 247, 248, .74);
}

.trust-dashboard__rows div:last-child {
  border-right: 0;
}

.trust-dashboard__rows strong {
  display: block;
  margin-top: 8px;
  color: var(--ink);
}

.trust-dashboard__rows em {
  display: block;
  margin-top: 6px;
  font-size: 12px;
}

.trust-proof {
  width: min(1180px, calc(100% - 48px));
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  padding-bottom: clamp(54px, 8vw, 94px);
}

.trust-proof div,
.trust-platform__grid article,
.trust-process,
.trust-cta,
.vision-card,
.val-card,
.stat-block,
.contact-form-panel,
.contact-info-panel,
.office-card,
.faq-category,
.faq-cta-band,
.legal-toc,
.legal-info-box,
.legal-right-card,
.auth-panel,
.cta-card {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, .9);
  box-shadow: var(--shadow-soft);
}

.trust-proof div {
  padding: 26px;
}

.trust-proof span,
.trust-process__list span {
  color: var(--red);
  font-size: 13px;
  font-weight: 900;
}

.trust-proof strong {
  display: block;
  margin-top: 34px;
  color: var(--ink);
  font-size: 20px;
}

.trust-proof p,
.trust-platform__grid p,
.trust-process__list p,
.trust-section__head p,
.trust-cta p,
.section-sub,
.page-sub {
  margin-top: 10px;
  color: var(--ink-soft);
}

.trust-section {
  width: min(1180px, calc(100% - 48px));
  margin: 0 auto;
  padding: clamp(54px, 8vw, 98px) 0;
}

.trust-section__head,
.section-header {
  display: grid;
  grid-template-columns: minmax(220px, .36fr) minmax(0, .74fr);
  gap: 34px;
  align-items: end;
  margin-bottom: 28px;
}

.trust-section__head h2,
.trust-process__intro h2,
.trust-cta h2,
.section-title,
.page-title,
.page-hero-title,
.cta-title {
  color: var(--ink);
  font-size: clamp(34px, 4.2vw, 62px);
  line-height: 1.04;
  font-weight: 900;
}

.trust-section__head p {
  max-width: 660px;
  font-size: 17px;
}

.trust-platform__grid,
.values-grid,
.features-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}

.trust-platform__grid article,
.val-card,
.feature-card {
  min-height: 292px;
  padding: 26px;
  transition: transform .22s ease, box-shadow .22s ease, border-color .22s ease;
}

.trust-platform__grid article:hover,
.val-card:hover,
.feature-card:hover,
.faq-category:hover {
  transform: translateY(-4px);
  border-color: rgba(228, 0, 43, .22);
  box-shadow: var(--shadow);
}

.trust-platform__grid svg,
.val-icon svg,
.faq-cat-icon svg,
.cip-icon-ring svg,
.cip-item-icon svg,
.lrc-icon svg {
  width: 34px;
  height: 34px;
  color: var(--red);
}

.trust-platform__grid svg {
  margin-bottom: 52px;
}

.trust-platform__grid h3,
.val-title,
.trust-title,
.contact-panel-title,
.faq-cat-header h2 {
  color: var(--ink);
  font-size: 22px;
  line-height: 1.18;
}

.trust-process {
  display: grid;
  grid-template-columns: .72fr 1.28fr;
  overflow: hidden;
}

.trust-process__intro {
  padding: clamp(28px, 4vw, 46px);
  border-right: 1px solid var(--line);
}

.trust-process__list {
  display: grid;
}

.trust-process__list div {
  display: grid;
  grid-template-columns: 64px 230px 1fr;
  gap: 18px;
  align-items: center;
  min-height: 134px;
  padding: 22px 28px;
  border-bottom: 1px solid var(--line);
}

.trust-process__list div:last-child {
  border-bottom: 0;
}

.trust-process__list strong {
  color: var(--ink);
  font-size: 20px;
}

.trust-cta,
.cta-card {
  width: min(1180px, calc(100% - 48px));
  margin: 0 auto clamp(56px, 8vw, 96px);
  padding: clamp(32px, 5vw, 56px);
  background:
    linear-gradient(120deg, rgba(228, 0, 43, .08), transparent 42%),
    #fff;
}

.trust-cta h2,
.cta-title {
  max-width: 760px;
}

.trust-cta p,
.cta-sub {
  max-width: 620px;
  font-size: 17px;
}

.page-hero,
.page-hero-section {
  padding: clamp(56px, 8vw, 94px) 0 34px;
}

.page-hero-inner {
  max-width: 840px;
}

.breadcrumb {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 18px;
  color: var(--muted);
  font-size: 13px;
  font-weight: 700;
}

.breadcrumb svg {
  width: 15px;
  height: 15px;
}

.about-split,
.contact-layout,
.legal-layout {
  display: grid;
  grid-template-columns: .95fr 1.05fr;
  gap: 24px;
  align-items: start;
}

.vision-card,
.contact-form-panel,
.contact-info-panel {
  padding: clamp(26px, 4vw, 38px);
}

.diff-list,
.cip-body,
.faq-list,
.legal-toc nav,
.security-list {
  display: grid;
  gap: 12px;
}

.diff-item,
.cip-item,
.security-item {
  display: grid;
  grid-template-columns: 44px 1fr;
  gap: 14px;
  align-items: start;
  padding: 16px;
  border: 1px solid var(--line);
  border-radius: 12px;
  background: #fff;
}

.diff-num,
.cip-item-icon,
.cip-icon-ring,
.val-icon,
.faq-cat-icon,
.lrc-icon,
.faq-cta-icon {
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  border-radius: 12px;
  background: var(--red-soft);
  color: var(--red);
  font-weight: 900;
}

.stats-band {
  padding: 42px 0;
}

.stats-inner,
.legal-rights-grid,
.form-row-2 {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
}

.stats-inner {
  grid-template-columns: repeat(4, 1fr);
}

.stat-block {
  padding: 24px;
}

.stat-num {
  color: var(--red);
  font-size: 34px;
  font-weight: 900;
}

.stat-lbl {
  color: var(--ink-soft);
}

.contact-panel-sub,
.cip-subtitle,
.cip-item-label,
.trust-text,
.val-text,
.diff-body p {
  color: var(--ink-soft);
}

.cip-title,
.cip-item-value,
.diff-body h4 {
  color: var(--ink);
  font-weight: 800;
}

.form-group {
  display: grid;
  gap: 7px;
  margin-bottom: 14px;
}

.form-label,
.auth-form label {
  color: var(--ink);
  font-size: 13px;
  font-weight: 800;
}

.form-control,
.form-input,
.form-textarea,
.form-select,
input,
textarea,
select {
  width: 100%;
  min-height: 46px;
  padding: 12px 14px;
  border: 1px solid var(--line-strong);
  border-radius: 12px;
  background: #fff;
  color: var(--ink);
  outline: 0;
  transition: border-color .2s ease, box-shadow .2s ease;
}

.form-textarea,
textarea {
  min-height: 130px;
  resize: vertical;
}

.form-control:focus,
.form-input:focus,
.form-textarea:focus,
input:focus,
textarea:focus,
select:focus {
  border-color: var(--red);
  box-shadow: 0 0 0 4px rgba(228, 0, 43, .1);
}

.form-alert {
  display: none;
  align-items: center;
  gap: 10px;
  margin-bottom: 18px;
  padding: 12px 14px;
  border: 1px solid rgba(15, 159, 110, .28);
  border-radius: 12px;
  background: rgba(15, 159, 110, .08);
  color: #0b7a55;
  font-weight: 700;
}

.form-alert.error {
  border-color: rgba(228, 0, 43, .28);
  background: rgba(228, 0, 43, .08);
  color: #9f1239;
}

.form-alert svg {
  width: 18px;
  height: 18px;
}

.map-ph {
  min-height: 260px;
  display: grid;
  place-items: center;
  border: 1px solid var(--line);
  border-radius: 14px;
  background: #f7f7f8;
  color: var(--muted);
  text-align: center;
}

.faq-page-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 18px;
}

.faq-category {
  padding: 24px;
}

.faq-cat-header {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 18px;
}

.faq-item {
  border-top: 1px solid var(--line);
}

.faq-q {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  padding: 16px 0;
  border: 0;
  background: transparent;
  color: var(--ink);
  font-weight: 800;
  text-align: left;
}

.faq-chevron {
  width: 18px;
  height: 18px;
  transition: transform .2s ease;
}

.faq-q[aria-expanded="true"] .faq-chevron {
  transform: rotate(180deg);
}

.faq-a {
  display: none;
  padding: 0 0 16px;
  color: var(--ink-soft);
}

.faq-a.open {
  display: block;
}

.faq-link,
.footer-copy a,
.footer-legal-links a,
.legal-section a {
  color: var(--red);
  font-weight: 800;
}

.faq-cta-band {
  width: min(860px, 100%);
  margin: 36px auto 0;
  padding: 26px;
  text-align: center;
}

.legal-layout {
  grid-template-columns: 250px 1fr;
}

.legal-toc {
  position: sticky;
  top: 104px;
  padding: 18px;
}

.legal-toc-title {
  margin-bottom: 12px;
  color: var(--ink);
  font-size: 13px;
  font-weight: 900;
}

.legal-toc-link {
  display: block;
  padding: 8px 10px;
  border-radius: 8px;
  color: var(--ink-soft);
  font-size: 13px;
  font-weight: 700;
}

.legal-toc-link:hover {
  background: #f2f4f7;
  color: var(--ink);
}

.legal-section {
  padding-bottom: 34px;
  margin-bottom: 34px;
  border-bottom: 1px solid var(--line);
}

.legal-section h2 {
  margin-bottom: 14px;
  color: var(--ink);
  font-size: 26px;
  line-height: 1.2;
}

.legal-section h3 {
  margin: 20px 0 8px;
  color: var(--ink);
  font-size: 17px;
}

.legal-section p,
.legal-section li {
  color: var(--ink-soft);
  font-size: 14px;
  line-height: 1.8;
}

.legal-list {
  display: grid;
  gap: 8px;
  margin: 12px 0;
  padding-left: 18px;
}

.legal-table {
  display: block;
  width: 100%;
  overflow-x: auto;
  border-collapse: collapse;
  margin: 16px 0;
}

.legal-table th,
.legal-table td {
  border: 1px solid var(--line);
  padding: 10px;
  color: var(--ink-soft);
  text-align: left;
}

.legal-table th {
  color: var(--ink);
  background: #f7f7f8;
}

.legal-notice {
  padding: 14px;
  border: 1px solid rgba(228, 0, 43, .22);
  border-left: 3px solid var(--red);
  border-radius: 12px;
  background: var(--red-soft);
  color: var(--ink-soft);
}

.legal-notice--warning {
  border-color: rgba(214, 161, 74, .36);
  border-left-color: #d6a14a;
  background: rgba(214, 161, 74, .08);
}

.legal-info-box {
  overflow: hidden;
}

.lib-row {
  display: grid;
  grid-template-columns: 160px 1fr;
  gap: 14px;
  padding: 12px;
  border-bottom: 1px solid var(--line);
}

.lib-row:last-child {
  border-bottom: 0;
}

.lib-label {
  color: var(--muted);
  font-size: 12px;
  font-weight: 900;
}

.lib-val {
  color: var(--ink-soft);
  font-size: 13px;
}

.legal-right-card {
  padding: 18px;
}

.auth-page {
  min-height: calc(100vh - 82px);
  display: grid;
  place-items: center;
  padding: clamp(42px, 7vw, 90px) 24px;
}

.auth-panel {
  width: min(520px, 100%);
  padding: clamp(28px, 5vw, 46px);
}

.auth-panel h1 {
  color: var(--ink);
  font-size: clamp(34px, 4vw, 48px);
  line-height: 1.06;
  font-weight: 900;
}

.auth-panel p {
  margin-top: 14px;
  color: var(--ink-soft);
}

.auth-form {
  display: grid;
  gap: 10px;
  margin-top: 28px;
}

.auth-form .btn {
  margin-top: 10px;
}

.auth-note {
  font-size: 14px;
}

.auth-note a {
  color: var(--red);
  font-weight: 800;
}

.site-footer {
  background: #111827;
  color: #fff;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.35fr repeat(4, 1fr);
  gap: 24px;
  padding: 48px 0 34px;
}

.footer-brand .logo-img {
  border-color: rgba(255, 255, 255, .12);
}

.footer-logo {
  min-width: 214px;
  align-items: center;
}

.footer-logo::after {
  display: none;
}

.footer-logo .logo-img {
  width: 214px;
  height: auto;
  border: 0;
  border-radius: 0;
  background: transparent;
  object-fit: contain;
}

.footer-brand-desc,
.footer-link-list a,
.footer-contact-row span,
.footer-legal,
.footer-copy,
.footer-bottom p {
  color: #cbd5e1;
  font-size: 13px;
}

.footer-brand-desc {
  margin-top: 14px;
  max-width: 280px;
}

.footer-col-title {
  margin-bottom: 12px;
  color: #fff;
  font-size: 12px;
  font-weight: 900;
}

.footer-link-list {
  display: grid;
  gap: 8px;
  list-style: none;
}

.footer-link-list a:hover,
.footer-copy a:hover,
.footer-legal-links a:hover {
  color: #fff;
}

.footer-contact-row {
  display: flex;
  gap: 10px;
  align-items: flex-start;
  margin-bottom: 10px;
}

.footer-contact-row svg {
  width: 15px;
  height: 15px;
  margin-top: 2px;
  color: #ff6b70;
  flex: 0 0 auto;
}

.footer-bottom {
  display: grid;
  gap: 10px;
  padding: 22px 0;
  border-top: 1px solid rgba(255, 255, 255, .1);
}

.footer-legal {
  max-width: 960px;
}

.footer-legal-links {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

#cookie-banner {
  position: fixed;
  right: 96px;
  left: auto;
  bottom: 18px;
  z-index: 220;
  width: min(560px, calc(100% - 132px));
  display: none;
  align-items: center;
  gap: 16px;
  padding: 16px;
  border: 1px solid var(--line);
  border-radius: 16px;
  background: #fff;
  box-shadow: var(--shadow);
}

#cookie-banner.visible {
  display: flex;
}

.cookie-text {
  color: var(--ink-soft);
  font-size: 13px;
  flex: 1;
}

.cookie-text a {
  color: var(--red);
  font-weight: 800;
}

.cookie-btns {
  display: flex;
  gap: 8px;
}

.whatsapp-container {
  position: fixed;
  right: 22px;
  bottom: 24px;
  z-index: 210;
  display: grid;
  justify-items: center;
  gap: 7px;
}

.wp-text {
  padding: 6px 9px;
  border: 1px solid rgba(228, 0, 43, .18);
  border-radius: 6px;
  background: #111827;
  color: #fff;
  font-size: 11px;
  font-weight: 800;
  box-shadow: var(--shadow-soft);
}

.whatsapp-float {
  width: 52px;
  height: 52px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(228, 0, 43, .22);
  border-radius: 8px;
  background: linear-gradient(180deg, #171d29, #0c1018);
  box-shadow: var(--shadow);
}

.whatsapp-float svg {
  width: 25px;
  height: 25px;
}

@media (max-width: 1100px) {
  .nav-desktop,
  .nav-actions {
    display: none;
  }

  .mobile-toggle {
    display: grid;
  }

  .trust-hero,
  .trust-section__head,
  .section-header,
  .about-split,
  .contact-layout,
  .legal-layout,
  .trust-process {
    grid-template-columns: 1fr;
  }

  .trust-process__intro {
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .trust-platform__grid,
  .values-grid,
  .features-grid,
  .faq-page-grid {
    grid-template-columns: repeat(2, 1fr);
  }

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

  .legal-toc {
    position: static;
  }
}

@media (max-width: 760px) {
  .container,
  .header-inner,
  .trust-hero,
  .trust-proof,
  .trust-section,
  .trust-cta,
  .cta-card {
    width: min(100% - 28px, 1180px);
  }

  .header-inner {
    height: 70px;
  }

  .mobile-menu {
    inset-top: 70px;
    top: 70px;
  }

  .logo {
    min-width: 0;
  }

  .logo-img {
    width: 40px;
    height: 40px;
  }

  .logo::after {
    font-size: 15px;
  }

  .trust-hero {
    min-height: auto;
    grid-template-columns: 1fr;
    padding-top: 42px;
  }

  .trust-hero__copy::before {
    left: 0;
    top: -18px;
    width: 72px;
    height: 3px;
  }

  .trust-hero h1 {
    font-size: clamp(36px, 10vw, 48px);
  }

  .trust-dashboard__rows,
  .trust-proof,
  .trust-platform__grid,
  .values-grid,
  .features-grid,
  .faq-page-grid,
  .stats-inner,
  .legal-rights-grid,
  .form-row-2,
  .trust-process__list div,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .trust-dashboard__rows div {
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .trust-dashboard__rows div:last-child {
    border-bottom: 0;
  }

  .trust-dashboard__chart svg {
    height: 210px;
  }

  .trust-process__list div {
    align-items: start;
  }

  .lib-row {
    grid-template-columns: 1fr;
  }

  #cookie-banner {
    left: 14px;
    right: auto;
    bottom: 14px;
    width: calc(100% - 28px);
    flex-direction: column;
    align-items: stretch;
  }

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

/* Premium institutional redesign */
:root {
  --page: #f4f5f7;
  --surface: #ffffff;
  --ink: #10151f;
  --ink-soft: #4a5566;
  --muted: #7a8494;
  --line: #dfe3ea;
  --line-strong: #bcc5d2;
  --red: #e4002b;
  --red-dark: #b60022;
  --red-soft: rgba(228, 0, 43, .075);
  --charcoal: #090b10;
  --charcoal-2: #121722;
  --shadow: 0 24px 70px rgba(16, 21, 31, .12);
  --shadow-soft: 0 10px 34px rgba(16, 21, 31, .08);
  --radius: 8px;
}

body {
  background:
    linear-gradient(180deg, #ffffff 0, #f4f5f7 420px, #ffffff 100%);
}

#header {
  background: rgba(255, 255, 255, .97);
  border-top: 3px solid var(--red);
  border-bottom: 1px solid var(--line);
  box-shadow: none;
}

.header-inner {
  height: 78px;
  width: min(1240px, calc(100% - 48px));
}

.logo {
  min-width: 190px;
}

.logo-lockup {
  min-width: 214px;
}

.logo-lockup::after {
  display: none;
}

.logo-lockup .logo-img {
  width: 214px;
  height: auto;
  border: 0;
  border-radius: 0;
  background: transparent;
  object-fit: contain;
}

.nav-link,
.mobile-nav-link {
  border-radius: 6px;
  color: #303846;
  font-size: 13px;
  min-height: 38px;
  padding: 8px 12px;
}

.nav-link:hover,
.nav-link.active,
.mobile-nav-link:hover,
.mobile-nav-link.active {
  background: #f0f2f5;
  border-color: #e3e7ee;
}

.btn {
  border-radius: 6px;
  min-height: 42px;
  box-shadow: none;
}

.btn-primary {
  background: var(--red);
  border-color: var(--red);
  box-shadow: 0 16px 34px rgba(228, 0, 43, .18);
}

.btn-secondary {
  background: #fff;
  border-color: #c7cfda;
  color: #111827;
}

.btn svg {
  width: 17px;
  height: 17px;
}

.trust-shell {
  background: transparent;
}

.executive-hero {
  width: min(1240px, calc(100% - 48px));
  min-height: 760px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(420px, .76fr) minmax(600px, 1.24fr);
  gap: clamp(32px, 5vw, 72px);
  align-items: center;
  padding: clamp(34px, 5vw, 66px) 0 clamp(42px, 6vw, 74px);
}

.executive-copy {
  position: relative;
  padding-top: 8px;
}

.executive-copy::before {
  content: "";
  position: absolute;
  left: -26px;
  top: 12px;
  width: 4px;
  height: 148px;
  background: var(--red);
}

.market-kicker,
.premium-heading > span,
.workflow-copy > span,
.premium-cta span {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--red);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0;
  text-transform: uppercase;
}

.market-kicker span + span {
  color: #6b7280;
  font-weight: 800;
}

.market-kicker span + span::before {
  content: "";
  display: inline-block;
  width: 28px;
  height: 1px;
  margin-right: 10px;
  vertical-align: middle;
  background: #b8c0cc;
}

.executive-copy h1 {
  max-width: 560px;
  margin-top: 22px;
  color: var(--ink);
  font-size: clamp(42px, 4.35vw, 64px);
  line-height: .98;
  font-weight: 900;
}

.executive-copy p {
  max-width: 590px;
  margin-top: 22px;
  color: var(--ink-soft);
  font-size: 17px;
  line-height: 1.75;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 32px;
}

.institutional-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  margin-top: 42px;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.institutional-row div {
  padding: 16px 18px 16px 0;
  border-right: 1px solid var(--line);
}

.institutional-row div + div {
  padding-left: 18px;
}

.institutional-row div:last-child {
  border-right: 0;
}

.institutional-row strong,
.institutional-row span {
  display: block;
}

.institutional-row strong {
  color: var(--ink);
  font-size: 15px;
}

.institutional-row span {
  margin-top: 4px;
  color: var(--muted);
  font-size: 12px;
  font-weight: 800;
}

.hero-visual {
  position: relative;
  min-height: 620px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: visible;
}

.hero-visual::before {
  content: "";
  position: absolute;
  inset: 12% 2% 6% 16%;
  border-radius: 40px;
  background:
    radial-gradient(circle at 72% 34%, rgba(228, 0, 43, .14), transparent 34%),
    linear-gradient(180deg, rgba(255, 255, 255, .92), rgba(247, 248, 250, .68));
  box-shadow: 0 34px 90px rgba(16, 21, 31, .12);
}

.hero-visual img {
  position: relative;
  z-index: 1;
  width: min(720px, 112%);
  max-width: none;
  height: auto;
  object-fit: contain;
  mix-blend-mode: multiply;
  filter: drop-shadow(0 28px 44px rgba(16, 21, 31, .16));
}

.terminal-panel {
  overflow: hidden;
  border: 1px solid #202635;
  border-radius: 8px;
  background:
    radial-gradient(circle at 78% 16%, rgba(228, 0, 43, .16), transparent 26%),
    linear-gradient(180deg, rgba(255, 255, 255, .03), transparent 34%),
    var(--charcoal);
  color: #fff;
  box-shadow: 0 32px 90px rgba(16, 21, 31, .22);
}

.terminal-top {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  align-items: center;
  min-height: 82px;
  padding: 22px 28px;
  border-bottom: 1px solid rgba(255, 255, 255, .1);
}

.terminal-top span,
.panel-title span,
.terminal-bottom span {
  display: block;
  color: #9aa4b4;
  font-size: 11px;
  font-weight: 900;
  text-transform: uppercase;
}

.terminal-top strong {
  display: block;
  margin-top: 6px;
  color: #fff;
  font-size: 21px;
  line-height: 1.15;
}

.terminal-status {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  min-height: 34px;
  padding: 7px 10px;
  border: 1px solid rgba(31, 185, 129, .28);
  border-radius: 999px;
  color: #b8f7dc;
  background: rgba(31, 185, 129, .08);
  font-size: 12px;
  font-weight: 900;
}

.terminal-status span {
  width: 8px;
  height: 8px;
  border-radius: 999px;
  background: #22c55e;
}

.terminal-tabs {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border-bottom: 1px solid rgba(255, 255, 255, .1);
  background: rgba(255, 255, 255, .025);
}

.terminal-tabs span {
  padding: 12px 18px;
  border-right: 1px solid rgba(255, 255, 255, .08);
  color: #9aa4b4;
  font-size: 12px;
  font-weight: 900;
}

.terminal-tabs span:last-child {
  border-right: 0;
}

.terminal-tabs .active {
  color: #fff;
  background: rgba(228, 0, 43, .16);
  box-shadow: inset 0 -2px 0 var(--red);
}

.terminal-grid {
  display: grid;
  grid-template-columns: 1fr 212px;
  min-height: 342px;
}

.terminal-chart {
  padding: 24px 28px;
  border-right: 1px solid rgba(255, 255, 255, .1);
  background:
    linear-gradient(135deg, rgba(228, 0, 43, .08), transparent 40%),
    linear-gradient(90deg, rgba(255, 255, 255, .06) 1px, transparent 1px),
    linear-gradient(180deg, rgba(255, 255, 255, .055) 1px, transparent 1px);
  background-size: 100% 100%, 56px 56px, 56px 56px;
}

.panel-title {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  align-items: center;
}

.panel-title strong {
  color: #fff;
  font-size: 14px;
}

.terminal-chart svg {
  width: 100%;
  height: 252px;
  margin-top: 14px;
}

.terminal-watch {
  display: grid;
}

.watch-row {
  display: grid;
  gap: 4px;
  align-content: center;
  min-height: 85px;
  padding: 18px;
  border-bottom: 1px solid rgba(255, 255, 255, .1);
}

.watch-row:last-child {
  border-bottom: 0;
}

.watch-row span {
  color: #aeb7c6;
  font-size: 12px;
  font-weight: 900;
}

.watch-row strong {
  color: #fff;
  font-size: 14px;
}

.watch-row em {
  color: #8f99aa;
  font-size: 11px;
  font-style: normal;
  font-weight: 800;
}

.terminal-bottom {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-top: 1px solid rgba(255, 255, 255, .1);
}

.terminal-bottom div {
  padding: 18px 22px;
  border-right: 1px solid rgba(255, 255, 255, .1);
}

.terminal-bottom div:last-child {
  border-right: 0;
}

.terminal-bottom strong {
  display: block;
  margin-top: 7px;
  color: #fff;
  font-size: 16px;
}

.terminal-note {
  padding: 12px 22px;
  border-top: 1px solid rgba(255, 255, 255, .1);
  color: #8f99aa;
  font-size: 11px;
  line-height: 1.5;
}

.credibility-band {
  width: min(1240px, calc(100% - 48px));
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
  box-shadow: var(--shadow-soft);
}

.credibility-band div {
  min-height: 138px;
  padding: 24px;
  border-right: 1px solid var(--line);
  background: linear-gradient(180deg, rgba(255, 255, 255, .94), rgba(247, 248, 250, .72));
}

.credibility-band div:last-child {
  border-right: 0;
}

.credibility-band svg,
.suite-card svg {
  width: 30px;
  height: 30px;
  color: var(--red);
}

.credibility-band strong,
.credibility-band span {
  display: block;
}

.credibility-band strong {
  margin-top: 22px;
  color: var(--ink);
  font-size: 17px;
}

.credibility-band span {
  margin-top: 6px;
  color: var(--muted);
  font-size: 13px;
}

.premium-section {
  width: min(1240px, calc(100% - 48px));
  margin: 0 auto;
  padding: clamp(72px, 8vw, 112px) 0;
}

.premium-heading {
  display: grid;
  grid-template-columns: minmax(260px, .9fr) minmax(380px, 1.1fr);
  gap: 46px;
  align-items: end;
  margin-bottom: 30px;
}

.premium-heading h2,
.workflow-copy h2,
.premium-cta h2 {
  color: var(--ink);
  font-size: clamp(36px, 4.6vw, 64px);
  line-height: 1;
  font-weight: 900;
}

.premium-heading p,
.premium-cta p {
  color: var(--ink-soft);
  font-size: 17px;
  line-height: 1.75;
}

.suite-grid {
  display: grid;
  grid-template-columns: 1.15fr .85fr .85fr;
  gap: 16px;
}

.suite-card {
  position: relative;
  overflow: hidden;
  min-height: 330px;
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
  box-shadow: var(--shadow-soft);
}

.suite-card-large {
  background:
    linear-gradient(135deg, rgba(228, 0, 43, .08), transparent 42%),
    #fff;
}

.suite-card::after {
  content: "";
  position: absolute;
  left: 28px;
  right: 28px;
  bottom: 28px;
  height: 1px;
  background: linear-gradient(90deg, var(--red), transparent);
  opacity: .45;
}

.suite-card h3 {
  margin-top: 76px;
  color: var(--ink);
  font-size: 26px;
  line-height: 1.1;
}

.suite-card p {
  margin-top: 12px;
  color: var(--ink-soft);
}

.workflow-panel {
  width: min(1240px, calc(100% - 48px));
  margin: 0 auto clamp(72px, 8vw, 112px);
  display: grid;
  grid-template-columns: .78fr 1.22fr;
  overflow: hidden;
  border: 1px solid #202635;
  border-radius: 8px;
  background: var(--charcoal);
  color: #fff;
  box-shadow: 0 28px 80px rgba(16, 21, 31, .16);
}

.workflow-copy {
  padding: clamp(32px, 5vw, 54px);
  border-right: 1px solid rgba(255, 255, 255, .11);
}

.workflow-copy h2 {
  margin-top: 18px;
  color: #fff;
}

.workflow-steps {
  display: grid;
}

.workflow-steps div {
  display: grid;
  grid-template-columns: 72px 220px 1fr;
  gap: 20px;
  align-items: center;
  min-height: 142px;
  padding: 24px 30px;
  border-bottom: 1px solid rgba(255, 255, 255, .11);
}

.workflow-steps div:last-child {
  border-bottom: 0;
}

.workflow-steps span {
  color: var(--red);
  font-size: 13px;
  font-weight: 900;
}

.workflow-steps strong {
  color: #fff;
  font-size: 19px;
  line-height: 1.2;
}

.workflow-steps p {
  color: #b8c0cc;
}

.premium-cta {
  width: min(1240px, calc(100% - 48px));
  margin: 0 auto clamp(60px, 8vw, 96px);
  display: flex;
  justify-content: space-between;
  gap: 32px;
  align-items: end;
  padding: clamp(34px, 5vw, 56px);
  border: 1px solid var(--line);
  border-left: 5px solid var(--red);
  border-radius: 8px;
  background: #fff;
  box-shadow: var(--shadow-soft);
}

.premium-cta h2 {
  max-width: 680px;
  margin-top: 16px;
}

.premium-cta p {
  max-width: 690px;
  margin-top: 14px;
}

#cookie-banner {
  border-radius: 8px;
}

@media (max-width: 1100px) {
  .executive-hero,
  .premium-heading,
  .workflow-panel {
    grid-template-columns: 1fr;
  }

  .terminal-grid,
  .suite-grid,
  .credibility-band {
    grid-template-columns: repeat(2, 1fr);
  }

  .workflow-copy {
    border-right: 0;
    border-bottom: 1px solid rgba(255, 255, 255, .11);
  }

  .workflow-steps div {
    grid-template-columns: 56px 1fr;
  }

  .workflow-steps p {
    grid-column: 2;
  }

  .credibility-band div:nth-child(2) {
    border-right: 0;
  }

  .credibility-band div:nth-child(-n+2) {
    border-bottom: 1px solid var(--line);
  }
}

@media (max-width: 760px) {
  .header-inner,
  .executive-hero,
  .credibility-band,
  .premium-section,
  .workflow-panel,
  .premium-cta {
    width: min(100% - 28px, 1240px);
  }

  .logo-lockup {
    min-width: 170px;
  }

  .logo-lockup .logo-img {
    width: 170px;
  }

  .executive-hero {
    min-height: auto;
    padding-top: 38px;
  }

  .executive-copy::before {
    left: 0;
    top: -14px;
    width: 72px;
    height: 3px;
  }

  .executive-copy h1 {
    font-size: clamp(38px, 11vw, 50px);
  }

  .hero-visual {
    min-height: 440px;
  }

  .hero-visual img {
    width: min(560px, 118%);
  }

  .institutional-row,
  .terminal-grid,
  .terminal-bottom,
  .credibility-band,
  .suite-grid {
    grid-template-columns: 1fr;
  }

  .institutional-row div,
  .institutional-row div + div,
  .terminal-bottom div,
  .credibility-band div {
    padding-left: 0;
    border-right: 0;
  }

  .institutional-row div,
  .terminal-bottom div,
  .credibility-band div {
    border-bottom: 1px solid var(--line);
  }

  .terminal-bottom div {
    padding-left: 22px;
    border-bottom-color: rgba(255, 255, 255, .1);
  }

  .terminal-bottom div:last-child,
  .credibility-band div:last-child {
    border-bottom: 0;
  }

  .terminal-chart {
    border-right: 0;
    border-bottom: 1px solid rgba(255, 255, 255, .1);
  }

  .terminal-chart svg {
    height: 220px;
  }

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

  .workflow-steps div {
    grid-template-columns: 1fr;
  }

  .workflow-steps p {
    grid-column: auto;
  }
}
