.trz-glass-page {
  font-family: inherit;
  color: #172033;
  background: #ffffff;
  overflow: hidden;
}

.trz-glass-page * {
  box-sizing: border-box;
}

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

.trz-hero {
  position: relative;
  padding: 96px 0 72px;
  background:
    radial-gradient(circle at top right, rgba(0, 153, 255, .16), transparent 32%),
    linear-gradient(135deg, #f7fbff 0%, #ffffff 55%, #eef7ff 100%);
}

.trz-hero-grid {
  display: grid;
  grid-template-columns: 1.08fr .92fr;
  gap: 48px;
  align-items: center;
}

.trz-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 9px 14px;
  border-radius: 999px;
  background: rgba(0, 104, 201, .1);
  color: #005fae;
  font-size: 14px;
  font-weight: 700;
  margin-bottom: 18px;
}

.trz-hero h1 {
  font-size: clamp(34px, 5vw, 62px);
  line-height: 1.05;
  margin: 0 0 20px;
  letter-spacing: -1.4px;
  color: #101828;
}

.trz-hero-subtitle {
  font-size: 18px;
  line-height: 1.75;
  color: #4b5565;
  margin: 0 0 28px;
  max-width: 720px;
}

.trz-hero-cta {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-bottom: 30px;
}

.trz-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;
  border: 1px solid transparent;
  cursor: pointer;
  transition: .25s ease;
  font-size: 15px;
}

.trz-btn-primary {
  background: #0069c9;
  color: #ffffff !important;
  box-shadow: 0 14px 28px rgba(0, 105, 201, .24);
}

.trz-btn-primary:hover {
  transform: translateY(-2px);
  background: #0056a6;
}

.trz-btn-secondary {
  background: #ffffff;
  color: #172033 !important;
  border-color: #d9e4f2;
}

.trz-btn-secondary:hover {
  border-color: #0069c9;
  color: #0069c9 !important;
}

.trz-btn-light {
  background: #ffffff;
  color: #0069c9 !important;
}

.trz-btn-light:hover {
  transform: translateY(-2px);
}

.trz-full {
  width: 100%;
}

.trz-trust-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
}

.trz-trust-row div {
  padding: 16px;
  border: 1px solid #e2edf8;
  border-radius: 18px;
  background: rgba(255, 255, 255, .76);
  backdrop-filter: blur(8px);
}

.trz-trust-row strong {
  display: block;
  color: #101828;
  font-size: 15px;
  margin-bottom: 4px;
}

.trz-trust-row span {
  display: block;
  color: #667085;
  font-size: 13px;
}

.trz-hero-card {
  position: relative;
}

.trz-glass-visual {
  position: relative;
  min-height: 480px;
  border-radius: 34px;
  padding: 30px;
  background:
    linear-gradient(145deg, rgba(255,255,255,.72), rgba(218,238,255,.7)),
    repeating-linear-gradient(90deg, rgba(255,255,255,.36) 0 2px, transparent 2px 80px);
  border: 1px solid rgba(0, 105, 201, .14);
  box-shadow: 0 28px 70px rgba(16, 24, 40, .14);
  overflow: hidden;
}

.trz-glass-visual:before {
  content: "";
  position: absolute;
  inset: 26px;
  border-radius: 28px;
  border: 1px solid rgba(0, 105, 201, .18);
}

.trz-door-frame {
  position: absolute;
  inset: 58px 52px 78px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
  z-index: 2;
}

.trz-door-panel {
  border-radius: 20px;
  background:
    linear-gradient(120deg, rgba(255,255,255,.75), rgba(190,225,255,.34)),
    linear-gradient(90deg, rgba(255,255,255,.1), rgba(255,255,255,.42));
  border: 3px solid rgba(0, 105, 201, .35);
  box-shadow: inset 0 0 0 1px rgba(255,255,255,.7);
  position: relative;
}

.trz-door-panel:after {
  content: "";
  position: absolute;
  width: 10px;
  height: 48px;
  background: #0069c9;
  border-radius: 999px;
  right: 18px;
  top: 50%;
  transform: translateY(-50%);
}

.trz-door-panel-2:after {
  left: 18px;
  right: auto;
}

.trz-quote-box {
  position: relative;
  margin: -74px 28px 0;
  padding: 24px;
  border-radius: 24px;
  background: #ffffff;
  box-shadow: 0 22px 50px rgba(16, 24, 40, .16);
  z-index: 5;
}

.trz-quote-box h2 {
  font-size: 22px;
  margin: 0 0 8px;
  color: #101828;
}

.trz-quote-box p {
  color: #5b667a;
  margin: 0 0 14px;
  line-height: 1.65;
}

.trz-quote-box a {
  color: #0069c9;
  font-weight: 800;
  text-decoration: none;
}

.trz-section {
  padding: 84px 0;
}

.trz-section-soft {
  background: #f7fbff;
}

.trz-section-dark {
  background: linear-gradient(135deg, #101828, #173b63);
  color: #ffffff;
}

.trz-section-head {
  text-align: center;
  max-width: 820px;
  margin: 0 auto 38px;
}

.trz-section-head.trz-left {
  text-align: left;
  margin-left: 0;
}

.trz-section-head span {
  display: inline-block;
  color: #0069c9;
  font-weight: 900;
  margin-bottom: 10px;
}

.trz-section-dark .trz-section-head span {
  color: #9fd0ff;
}

.trz-section-head h2 {
  font-size: clamp(28px, 4vw, 44px);
  line-height: 1.14;
  letter-spacing: -1px;
  margin: 0 0 14px;
  color: #101828;
}

.trz-section-dark .trz-section-head h2 {
  color: #ffffff;
}

.trz-section-head p {
  color: #5b667a;
  font-size: 17px;
  line-height: 1.75;
  margin: 0;
}

.trz-section-dark .trz-section-head p {
  color: rgba(255,255,255,.76);
}

.trz-feature-grid,
.trz-service-grid,
.trz-step-grid,
.trz-link-grid {
  display: grid;
  gap: 20px;
}

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

.trz-service-grid {
  grid-template-columns: repeat(3, 1fr);
}

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

.trz-link-grid {
  grid-template-columns: repeat(3, 1fr);
}

.trz-feature-card,
.trz-service-card,
.trz-step-card,
.trz-link-card,
.trz-spec-box,
.trz-wa-form {
  border-radius: 24px;
  padding: 26px;
  background: #ffffff;
  border: 1px solid #e2edf8;
  box-shadow: 0 14px 34px rgba(16, 24, 40, .06);
}

.trz-feature-card h3,
.trz-service-card h3,
.trz-step-card h3 {
  margin: 0 0 10px;
  color: #101828;
  font-size: 21px;
}

.trz-feature-card p,
.trz-service-card p,
.trz-step-card p {
  margin: 0;
  color: #5b667a;
  line-height: 1.7;
}

.trz-icon {
  display: inline-flex;
  width: 46px;
  height: 46px;
  align-items: center;
  justify-content: center;
  border-radius: 16px;
  background: #e9f4ff;
  color: #0069c9;
  font-weight: 900;
  margin-bottom: 18px;
}

.trz-two-col,
.trz-estimate-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 44px;
  align-items: start;
}

.trz-check-list {
  list-style: none;
  padding: 0;
  margin: 0 0 26px;
  display: grid;
  gap: 14px;
}

.trz-check-list li {
  position: relative;
  padding-left: 34px;
  color: #4b5565;
  line-height: 1.65;
}

.trz-check-list li:before {
  content: "✓";
  position: absolute;
  left: 0;
  top: 0;
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: #e9f4ff;
  color: #0069c9;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-weight: 900;
}

.trz-spec-box {
  background:
    linear-gradient(180deg, #ffffff, #f7fbff);
}

.trz-spec-box h3 {
  margin: 0 0 18px;
  font-size: 26px;
  color: #101828;
}

.trz-spec-item {
  padding: 18px 0;
  border-top: 1px solid #e4edf7;
}

.trz-spec-item strong {
  display: block;
  margin-bottom: 6px;
  color: #101828;
}

.trz-spec-item span {
  color: #5b667a;
  line-height: 1.65;
}

.trz-step-card {
  background: rgba(255,255,255,.08);
  border-color: rgba(255,255,255,.16);
  box-shadow: none;
}

.trz-step-card span {
  display: inline-flex;
  width: 42px;
  height: 42px;
  border-radius: 14px;
  align-items: center;
  justify-content: center;
  background: #ffffff;
  color: #0069c9;
  font-weight: 900;
  margin-bottom: 16px;
}

.trz-step-card h3 {
  color: #ffffff;
}

.trz-step-card p {
  color: rgba(255,255,255,.76);
}

.trz-info-list {
  display: grid;
  gap: 14px;
}

.trz-info-list div {
  padding: 18px 20px;
  border-radius: 18px;
  background: #f7fbff;
  border: 1px solid #e2edf8;
}

.trz-info-list strong {
  color: #101828;
}

.trz-info-list p {
  margin: 5px 0 0;
  color: #5b667a;
}

.trz-wa-form h3 {
  font-size: 26px;
  margin: 0 0 8px;
  color: #101828;
}

.trz-wa-form p {
  margin: 0 0 20px;
  color: #5b667a;
  line-height: 1.65;
}

.trz-wa-form label {
  display: block;
  margin: 14px 0 7px;
  font-weight: 800;
  color: #101828;
}

.trz-wa-form input,
.trz-wa-form select,
.trz-wa-form textarea {
  width: 100%;
  min-height: 48px;
  border-radius: 14px;
  border: 1px solid #d9e4f2;
  padding: 12px 14px;
  font: inherit;
  outline: none;
  background: #ffffff;
}

.trz-wa-form textarea {
  min-height: 112px;
  resize: vertical;
  margin-bottom: 18px;
}

.trz-wa-form input:focus,
.trz-wa-form select:focus,
.trz-wa-form textarea:focus {
  border-color: #0069c9;
  box-shadow: 0 0 0 4px rgba(0, 105, 201, .1);
}

.trz-link-card {
  text-decoration: none !important;
  color: #101828 !important;
  font-weight: 900;
  transition: .25s ease;
}

.trz-link-card:hover {
  transform: translateY(-3px);
  color: #0069c9 !important;
  border-color: #0069c9;
}

.trz-faq-wrap {
  max-width: 920px;
}

.trz-faq {
  display: grid;
  gap: 14px;
}

.trz-faq-item {
  border: 1px solid #e2edf8;
  border-radius: 20px;
  background: #ffffff;
  overflow: hidden;
  box-shadow: 0 12px 28px rgba(16, 24, 40, .05);
}

.trz-faq-question {
  width: 100%;
  border: 0;
  background: #ffffff;
  padding: 20px 22px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 18px;
  cursor: pointer;
  font: inherit;
  font-weight: 900;
  color: #101828;
  text-align: left;
}

.trz-faq-question span {
  width: 30px;
  height: 30px;
  border-radius: 50%;
  background: #e9f4ff;
  color: #0069c9;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 auto;
}

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

.trz-faq-answer p {
  margin: 0;
  color: #5b667a;
  line-height: 1.7;
}

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

.trz-faq-item.is-open .trz-faq-question span {
  background: #0069c9;
  color: #ffffff;
}

.trz-final-cta {
  padding: 80px 0;
  background:
    radial-gradient(circle at top left, rgba(255,255,255,.22), transparent 30%),
    linear-gradient(135deg, #0069c9, #003f7a);
  color: #ffffff;
  text-align: center;
}

.trz-final-cta h2 {
  font-size: clamp(28px, 4vw, 46px);
  line-height: 1.15;
  margin: 0 0 14px;
  color: #ffffff;
}

.trz-final-cta p {
  max-width: 760px;
  margin: 0 auto 26px;
  color: rgba(255,255,255,.82);
  font-size: 17px;
  line-height: 1.75;
}

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

  .trz-feature-grid,
  .trz-service-grid,
  .trz-step-grid,
  .trz-link-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .trz-hero {
    padding-top: 72px;
  }

  .trz-glass-visual {
    min-height: 420px;
  }
}

@media (max-width: 640px) {
  .trz-container {
    width: min(100% - 24px, 1180px);
  }

  .trz-hero {
    padding: 56px 0 54px;
  }

  .trz-section {
    padding: 58px 0;
  }

  .trz-trust-row,
  .trz-feature-grid,
  .trz-service-grid,
  .trz-step-grid,
  .trz-link-grid {
    grid-template-columns: 1fr;
  }

  .trz-hero-cta {
    display: grid;
  }

  .trz-btn {
    width: 100%;
  }

  .trz-glass-visual {
    min-height: 340px;
    border-radius: 26px;
  }

  .trz-door-frame {
    inset: 44px 32px 64px;
  }

  .trz-quote-box {
    margin: -52px 12px 0;
  }
}