.tzg-gate-page {
  --tzg-primary: #0f3d5e;
  --tzg-secondary: #f59e0b;
  --tzg-dark: #111827;
  --tzg-muted: #6b7280;
  --tzg-soft: #f3f6f9;
  --tzg-white: #ffffff;
  --tzg-border: #e5e7eb;
  font-family: inherit;
  color: var(--tzg-dark);
  background: #ffffff;
}

.tzg-gate-page * {
  box-sizing: border-box;
}

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

.tzg-section {
  padding: 82px 0;
}

.tzg-hero {
  position: relative;
  padding: 96px 0 82px;
  background:
    radial-gradient(circle at top right, rgba(245, 158, 11, .18), transparent 34%),
    linear-gradient(135deg, #071d2e 0%, #0f3d5e 52%, #12314a 100%);
  color: #ffffff;
  overflow: hidden;
}

.tzg-hero::after {
  content: "";
  position: absolute;
  inset: auto -8% -22% auto;
  width: 420px;
  height: 420px;
  background: rgba(255,255,255,.07);
  border-radius: 999px;
}

.tzg-hero-grid {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1.08fr .92fr;
  gap: 46px;
  align-items: center;
}

.tzg-badge,
.tzg-section-label {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 13px;
  border-radius: 999px;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: .2px;
}

.tzg-badge {
  background: rgba(255,255,255,.12);
  color: #fff;
  border: 1px solid rgba(255,255,255,.22);
}

.tzg-section-label {
  background: rgba(245,158,11,.12);
  color: #9a5b00;
  margin-bottom: 14px;
}

.tzg-hero h1 {
  margin: 18px 0 18px;
  font-size: clamp(36px, 5vw, 64px);
  line-height: 1.04;
  letter-spacing: -1.8px;
  color: #ffffff;
}

.tzg-hero p {
  max-width: 680px;
  color: rgba(255,255,255,.84);
  font-size: 18px;
  line-height: 1.75;
  margin: 0;
}

.tzg-hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 30px;
}

.tzg-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 14px 22px;
  border-radius: 14px;
  font-weight: 800;
  text-decoration: none !important;
  transition: .25s ease;
  border: 1px solid transparent;
}

.tzg-btn-primary {
  color: #111827 !important;
  background: var(--tzg-secondary);
  box-shadow: 0 18px 40px rgba(245,158,11,.25);
}

.tzg-btn-primary:hover {
  transform: translateY(-2px);
  filter: brightness(1.03);
}

.tzg-btn-secondary {
  color: #ffffff !important;
  background: rgba(255,255,255,.08);
  border-color: rgba(255,255,255,.22);
}

.tzg-btn-secondary:hover {
  background: rgba(255,255,255,.15);
}

.tzg-btn-light {
  color: var(--tzg-primary) !important;
  background: #ffffff;
}

.tzg-trust-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
  margin-top: 34px;
  max-width: 620px;
}

.tzg-trust-row div {
  padding: 16px;
  border-radius: 16px;
  background: rgba(255,255,255,.09);
  border: 1px solid rgba(255,255,255,.16);
}

.tzg-trust-row strong {
  display: block;
  color: #ffffff;
  font-size: 20px;
}

.tzg-trust-row span {
  display: block;
  margin-top: 4px;
  color: rgba(255,255,255,.72);
  font-size: 13px;
}

.tzg-hero-card {
  background: rgba(255,255,255,.1);
  border: 1px solid rgba(255,255,255,.18);
  border-radius: 28px;
  padding: 18px;
  box-shadow: 0 30px 80px rgba(0,0,0,.24);
  backdrop-filter: blur(12px);
}

.tzg-card-visual {
  min-height: 250px;
  border-radius: 22px;
  background:
    linear-gradient(135deg, rgba(245,158,11,.22), rgba(255,255,255,.08)),
    linear-gradient(180deg, #163f5b, #092235);
  display: flex;
  align-items: end;
  justify-content: center;
  padding: 34px 20px;
  overflow: hidden;
}

.tzg-gate-illustration {
  width: min(360px, 100%);
  height: 145px;
  border: 8px solid rgba(255,255,255,.85);
  border-bottom: 12px solid rgba(255,255,255,.85);
  border-radius: 16px 16px 6px 6px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 10px;
  padding: 12px;
  position: relative;
}

.tzg-gate-illustration::before,
.tzg-gate-illustration::after {
  content: "";
  position: absolute;
  top: -28px;
  width: 14px;
  height: 174px;
  background: rgba(255,255,255,.9);
  border-radius: 10px;
}

.tzg-gate-illustration::before {
  left: -20px;
}

.tzg-gate-illustration::after {
  right: -20px;
}

.tzg-gate-illustration span {
  display: block;
  background: rgba(255,255,255,.28);
  border-radius: 10px;
}

.tzg-estimate-box {
  padding: 22px 6px 6px;
}

.tzg-estimate-box h2 {
  color: #ffffff;
  font-size: 24px;
  margin: 0 0 10px;
}

.tzg-estimate-box p {
  font-size: 15px;
  line-height: 1.7;
  color: rgba(255,255,255,.76);
}

.tzg-estimate-box ul {
  list-style: none;
  padding: 0;
  margin: 18px 0 0;
  display: grid;
  gap: 10px;
}

.tzg-estimate-box li {
  position: relative;
  padding-left: 26px;
  color: rgba(255,255,255,.9);
  font-size: 15px;
}

.tzg-estimate-box li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--tzg-secondary);
  font-weight: 900;
}

.tzg-two-col {
  display: grid;
  grid-template-columns: .9fr 1.1fr;
  gap: 54px;
  align-items: start;
}

.tzg-section h2 {
  margin: 0;
  font-size: clamp(28px, 3.2vw, 44px);
  line-height: 1.15;
  letter-spacing: -.8px;
  color: var(--tzg-dark);
}

.tzg-section h3 {
  margin: 0 0 10px;
  color: var(--tzg-dark);
}

.tzg-section p {
  color: var(--tzg-muted);
  line-height: 1.75;
  font-size: 16px;
}

.tzg-center {
  text-align: center;
  max-width: 760px;
  margin: 0 auto 38px;
}

.tzg-card-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}

.tzg-service-card {
  padding: 26px;
  border-radius: 22px;
  background: #ffffff;
  border: 1px solid var(--tzg-border);
  box-shadow: 0 18px 50px rgba(15, 61, 94, .08);
  transition: .25s ease;
}

.tzg-service-card:hover {
  transform: translateY(-5px);
  border-color: rgba(245,158,11,.45);
}

.tzg-icon {
  width: 48px;
  height: 48px;
  display: grid;
  place-items: center;
  border-radius: 14px;
  background: rgba(15,61,94,.08);
  color: var(--tzg-primary);
  font-weight: 900;
  margin-bottom: 18px;
}

.tzg-benefits,
.tzg-process,
.tzg-internal-links {
  background: var(--tzg-soft);
}

.tzg-sticky-title {
  position: sticky;
  top: 30px;
}

.tzg-benefit-list {
  display: grid;
  gap: 16px;
}

.tzg-benefit-item {
  background: #ffffff;
  border: 1px solid var(--tzg-border);
  border-radius: 20px;
  padding: 24px;
  box-shadow: 0 14px 42px rgba(17, 24, 39, .06);
}

.tzg-process-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}

.tzg-process-step {
  position: relative;
  background: #ffffff;
  padding: 26px;
  border-radius: 22px;
  border: 1px solid var(--tzg-border);
}

.tzg-process-step span {
  display: inline-grid;
  place-items: center;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: var(--tzg-primary);
  color: #ffffff;
  font-weight: 900;
  margin-bottom: 18px;
}

.tzg-usecase-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
}

.tzg-usecase-grid div {
  padding: 18px;
  border-radius: 16px;
  background: #ffffff;
  border: 1px solid var(--tzg-border);
  text-align: center;
  font-weight: 800;
  color: var(--tzg-primary);
  box-shadow: 0 12px 36px rgba(15, 61, 94, .06);
}

.tzg-table-wrap {
  overflow-x: auto;
  border-radius: 18px;
  border: 1px solid var(--tzg-border);
  background: #ffffff;
}

.tzg-table {
  width: 100%;
  border-collapse: collapse;
  min-width: 560px;
}

.tzg-table th,
.tzg-table td {
  padding: 17px;
  text-align: left;
  border-bottom: 1px solid var(--tzg-border);
}

.tzg-table th {
  background: var(--tzg-primary);
  color: #ffffff;
}

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

.tzg-link-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
}

.tzg-link-grid a {
  display: flex;
  align-items: center;
  min-height: 58px;
  padding: 16px;
  border-radius: 16px;
  background: #ffffff;
  color: var(--tzg-primary) !important;
  text-decoration: none !important;
  font-weight: 800;
  border: 1px solid var(--tzg-border);
  transition: .25s ease;
}

.tzg-link-grid a:hover {
  transform: translateY(-3px);
  border-color: var(--tzg-secondary);
}

.tzg-faq-list {
  display: grid;
  gap: 13px;
}

.tzg-faq-item {
  border: 1px solid var(--tzg-border);
  border-radius: 18px;
  background: #ffffff;
  overflow: hidden;
}

.tzg-faq-question {
  width: 100%;
  border: 0;
  background: #ffffff;
  color: var(--tzg-dark);
  padding: 20px;
  cursor: pointer;
  text-align: left;
  font-weight: 900;
  font-size: 16px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.tzg-faq-question span {
  width: 30px;
  height: 30px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: rgba(15,61,94,.08);
  color: var(--tzg-primary);
  flex: 0 0 auto;
}

.tzg-faq-answer {
  display: none;
  padding: 0 20px 20px;
}

.tzg-faq-item.is-open .tzg-faq-answer {
  display: block;
}

.tzg-faq-item.is-open .tzg-faq-question span {
  background: var(--tzg-secondary);
  color: #111827;
}

.tzg-cta {
  padding: 76px 0;
  background: #ffffff;
}

.tzg-cta-box {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  padding: 44px;
  border-radius: 28px;
  background:
    radial-gradient(circle at top right, rgba(245,158,11,.22), transparent 28%),
    linear-gradient(135deg, #0f3d5e, #071d2e);
  color: #ffffff;
}

.tzg-cta-box h2 {
  color: #ffffff;
  margin: 0 0 12px;
  font-size: clamp(28px, 3vw, 42px);
}

.tzg-cta-box p {
  color: rgba(255,255,255,.8);
  margin: 0;
  max-width: 720px;
}

.tzg-floating-wa {
  position: fixed;
  right: 22px;
  bottom: 22px;
  z-index: 999;
  width: 58px;
  height: 58px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: #22c55e;
  color: #ffffff !important;
  font-weight: 900;
  text-decoration: none !important;
  box-shadow: 0 18px 40px rgba(34,197,94,.35);
}

@media (max-width: 980px) {
  .tzg-hero-grid,
  .tzg-two-col {
    grid-template-columns: 1fr;
  }

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

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

  .tzg-sticky-title {
    position: static;
  }

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

@media (max-width: 640px) {
  .tzg-section {
    padding: 58px 0;
  }

  .tzg-hero {
    padding: 72px 0 58px;
  }

  .tzg-trust-row,
  .tzg-card-grid,
  .tzg-process-grid,
  .tzg-usecase-grid,
  .tzg-link-grid {
    grid-template-columns: 1fr;
  }

  .tzg-hero-actions {
    flex-direction: column;
  }

  .tzg-btn {
    width: 100%;
  }

  .tzg-cta-box {
    padding: 28px;
  }

  .tzg-floating-wa {
    width: 54px;
    height: 54px;
    right: 16px;
    bottom: 16px;
  }
}