* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: Arial, Helvetica, sans-serif;
  color: #0f172a;
  background: #f8fafc;
}

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 24px 6%;
  border-bottom: 1px solid #e2e8f0;
  background: rgba(255, 255, 255, 0.94);
  -webkit-backdrop-filter: blur(14px);
  backdrop-filter: blur(14px);
}

.logo {
  display: flex;
  align-items: center;
  gap: 10px;

  font-weight: 900;
  letter-spacing: 3px;
}

.logo img {
  width: 34px;
  height: 34px;
}

.nav-links {
  display: flex;
  gap: 24px;
  font-size: 14px;
  font-weight: 700;
}

.hero {
  position: relative;
  display: grid;
  grid-template-columns: 60% 40%;
  gap: 48px;
  align-items: center;
  padding: 100px 6%;
  min-height: 820px;
  overflow: hidden;

  background:
    linear-gradient(
      90deg,
      rgba(0, 0, 0, 0.45) 0%,
      rgba(0, 0, 0, 0.35) 45%,
      rgba(0, 0, 0, 0.65) 100%
    ),
    url("/images/hero-night.png");

  background-size: cover;
   background-position: center 20%;
  background-repeat: no-repeat;
}

.hero-content,
.hero-visual {
position: relative;
z-index: 2;
}

.eyebrow {
  margin: 0 0 12px;
  color: #2563eb;
  font-size: 13px;
  font-weight: 900;
  letter-spacing: 2px;
  text-transform: uppercase;
}

.hero h1 {
  margin: 0;
  font-size: clamp(70px, 5vw, 88px);
  line-height: 0.95;
  letter-spacing: -3px;
  color: white;
}

.hero-subtitle {
max-width: 620px;
margin: 24px 0;
color: rgba(255,255,255,.92);
font-size: 20px;
line-height: 1.6;
}

.hero-actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

.primary-button,
.secondary-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 22px;
  border-radius: 10px;
  font-weight: 800;
}

.primary-button {
  background: #2563eb;
  color: #ffffff;
  box-shadow: 0 14px 30px rgba(37, 99, 235, 0.25);
}

.primary-button:hover {
  background: #1d4ed8;
}

.secondary-button {
   border: 1px solid rgba(255,255,255,.4);
  color: white;
  transition: all 0.2s ease;
}

.secondary-button:hover {
   background: rgba(255,255,255,.08);
  border-color: white;
  color: white;
}

.hero-visual {
display: flex;
justify-content: center;
align-items: center;
height: 340px;
color: #2563eb;
font-size: 20px;
font-weight: 700;
background: transparent;
border: none;
}

.section {
  padding: 70px 6%;
  border-top: 1px solid #e2e8f0;
}

.section-heading {
  text-align: center;
  margin-bottom: 32px;
}

.section-heading h2,
.support-section h2 {
  margin: 0;
  font-size: clamp(30px, 4vw, 48px);
  letter-spacing: -1px;
}

.feature-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.feature-card,
.product-card,
.support-card {
  padding: 28px;
  border: 1px solid #e2e8f0;
  border-radius: 24px;
  background: #ffffff;
}

.feature-card,
.product-card {
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.feature-card:hover,
.product-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 18px 45px rgba(15, 23, 42, 0.08);
}

.feature-card h3,
.product-card h3 {
  margin: 0 0 12px;
  font-size: 22px;
}

.feature-card p,
.product-card p,
.support-section p {
  color: #475569;
  line-height: 1.6;
}

.product-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px;
}

.product-image {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 320px;
  margin-bottom: 24px;
  border: 1px solid #dbeafe;
  border-radius: 20px;
  background: linear-gradient(135deg, #ffffff, #eff6ff);
  overflow: hidden;
  box-shadow: 0 24px 60px rgba(15, 23, 42, 0.08);
}

.product-image img {
  display: block;
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
}

.mobile-preview {
  background: #f8fafc;
}

.mobile-preview img {
  width: auto;
  height: 280px;
  max-width: 90%;
  object-fit: contain;
  filter: drop-shadow(0 12px 24px rgba(0,0,0,.18));
}

.desktop-preview {
  background: #f8fafc;
}


.desktop-preview img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}




.placeholder {
  position: relative;
  padding: 20px;
  z-index: 1;
}

.placeholder::before {
  content: "";
  position: absolute;
  width: 72px;
  height: 72px;
  border-radius: 999px;
  background: rgba(37, 99, 235, 0.12);
  z-index: -1;
}

.product-card ul {
  margin: 20px 0 0;
  padding-left: 20px;
  color: #334155;
  line-height: 1.8;
}

.workflow-link {
  margin-top: 40px;
  text-align: center;
  font-size: 18px;
}

.workflow-link a {
  font-weight: 800;
}

.support-section {
  display: grid;
  grid-template-columns: 1.3fr 0.7fr;
  gap: 32px;
  align-items: center;
  margin: 70px 6%;
  padding: 42px;
  border-radius: 28px;
  background: #0f172a;
  color: #ffffff;
}

.support-section p {
  color: #cbd5e1;
}

.support-card {
  background: #ffffff;
  color: #0f172a;
}

.support-card p {
  margin: 0 0 8px;
  color: #64748b;
  font-weight: 800;
}

.support-card a {
  color: #2563eb;
  font-weight: 900;
}

.site-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
  padding: 40px 6%;
  border-top: 1px solid #e2e8f0;
  background: #ffffff;
  color: #64748b;
  font-size: 14px;
}

.site-footer div:first-child {
  color: #0f172a;
  font-weight: 900;
  letter-spacing: 3px;
}

.footer-links {
  display: flex;
  gap: 24px;
  justify-content: center;
  flex-wrap: wrap;
}

.footer-links a {
  color: #475569;
  font-weight: 700;
}

.footer-links a:hover {
  color: #2563eb;
}

.phone-wrapper {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
}

.phone-image {
  width: 900px;
  max-width: 900px;
  height: auto;
  display: block;
  transform: translateX(50px) translateY(55px) rotate(9deg);
  filter: drop-shadow(0 30px 60px rgba(0,0,0,.45));
}

.phone-wrapper::before {
  content: "";
  position: absolute;

  width: 800px;
  height: 800px;

  border-radius: 30%;

  background: radial-gradient(
    circle,
    rgba(37,99,235,.35) 0%,
    rgba(37,99,235,0) 70%
  );

  filter: blur(10px);
}

@media (max-width: 900px) {
  .site-header {
    flex-direction: column;
    align-items: flex-start;
    gap: 16px;
  }

  .nav-links {
    flex-wrap: wrap;
  }

  .hero,
  .product-grid,
  .support-section {
    grid-template-columns: 1fr;
  }

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

  .site-footer {
    flex-direction: column;
    align-items: flex-start;
  }

  .footer-links {
    justify-content: flex-start;
  }
}


@media (max-width: 600px) {
  .hero h1 {
    font-size: 44px;
    letter-spacing: -2px;
  }

  .hero-subtitle {
    font-size: 17px;
  }

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

  .hero-visual {
    height: 300px;
  }

 
  


}

.logo-link {
  display: flex;
  align-items: center;
  gap: 10px;
}


.content-section {
  padding: 70px 6%;
}

.content-grid {
  display: grid;
  gap: 24px;
  margin-top: 28px;
}

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

.content-card {
  padding: 32px;
  border: 1px solid #e2e8f0;
  border-radius: 24px;
  background: #ffffff;
  box-shadow: 0 18px 45px rgba(15, 23, 42, 0.05);
}

.content-card h2,
.content-card h3 {
  margin-top: 0;
  color: #0f172a;
}

.content-card p,
.content-card li {
  color: #475569;
  line-height: 1.7;
}

.content-card a {
  color: #2563eb;
  font-weight: 800;
}

.highlight-card {
  background: #0f172a;
  color: #ffffff;
}

.highlight-card h2 {
  color: #ffffff;
}

.highlight-card p {
  color: #cbd5e1;
}

.content-button {
  margin-top: 12px;
  color: #ffffff !important;
}

.legal-content .content-card {
  max-width: 980px;
  margin: 0 auto;
}

.legal-content h2 {
  margin-top: 34px;
}

.legal-content h2:first-child {
  margin-top: 0;
}

@media (max-width: 900px) {
  .two-columns {
    grid-template-columns: 1fr;
  }
}


/* ===== Premium subpage layouts ===== */
.subpage {
  background:
    radial-gradient(circle at 12% 0%, rgba(37, 99, 235, 0.10), transparent 32%),
    linear-gradient(180deg, #f8fafc 0%, #eef4ff 100%);
  min-height: 70vh;
}


.page-hero {
  position: relative;
  overflow: hidden;
  padding: 92px 6% 78px;
  background:
    radial-gradient(circle at 78% 20%, rgba(96, 165, 250, 0.32), transparent 34%),
    linear-gradient(135deg, #08111f 0%, #0f172a 42%, #1d4ed8 140%);
  color: #ffffff;
  text-align: left;
}

.page-hero::after {
  content: "";
  position: absolute;
  right: -120px;
  bottom: -180px;
  width: 460px;
  height: 460px;
  border-radius: 999px;
  background: rgba(37, 99, 235, 0.25);
  filter: blur(14px);
}

.page-hero-inner {
  position: relative;
  z-index: 2;
  max-width: 900px;
  margin: 0 auto;
}

.page-hero h1 {
  max-width: 860px;
  margin: 0;
  font-size: clamp(46px, 7vw, 78px);
  line-height: 0.95;
  letter-spacing: -3px;
}

.page-hero p:not(.eyebrow) {
  max-width: 720px;
  margin: 24px 0 0;
  color: #dbeafe;
  font-size: 19px;
  line-height: 1.7;
}

.page-meta {
  display: inline-flex;
  margin-top: 26px;
  padding: 10px 14px;
  border: 1px solid rgba(255,255,255,.18);
  border-radius: 999px;
  background: rgba(255,255,255,.08);
  color: #bfdbfe;
  font-size: 13px;
  font-weight: 800;
}

.page-cta {
  margin-top: 28px;
}

.legal-layout {
  display: grid;
  grid-template-columns: 260px minmax(0, 980px);
  gap: 28px;
  align-items: start;
  justify-content: center;
}

.legal-sidebar {
  position: sticky;
  top: 110px;
  padding: 22px;
  border: 1px solid #dbeafe;
  border-radius: 24px;
  background: rgba(255,255,255,.78);
  box-shadow: 0 18px 50px rgba(15, 23, 42, 0.06);
}

.sidebar-label {
  margin: 0 0 14px;
  color: #2563eb;
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 1.5px;
  text-transform: uppercase;
}

.legal-sidebar a {
  display: block;
  padding: 10px 0;
  color: #475569;
  font-size: 14px;
  font-weight: 800;
  border-bottom: 1px solid #e2e8f0;
}

.legal-sidebar a:last-child {
  border-bottom: 0;
}

.legal-sidebar a:hover {
  color: #2563eb;
}

.legal-card {
  padding: 10px;
  border: 1px solid #dbeafe;
  border-radius: 30px;
  background: rgba(255,255,255,.82);
  box-shadow: 0 24px 70px rgba(15, 23, 42, 0.08);
}

.legal-block {
  position: relative;
  padding: 30px 34px 30px 82px;
  border-bottom: 1px solid #e2e8f0;
}

.legal-block:last-child {
  border-bottom: 0;
}

.section-number {
  position: absolute;
  left: 30px;
  top: 33px;
  width: 34px;
  height: 34px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 10px;
  background: #eff6ff;
  color: #2563eb;
  font-size: 12px;
  font-weight: 900;
}

.legal-block h2 {
  margin: 0 0 10px;
  color: #0f172a;
  font-size: 25px;
  letter-spacing: -0.4px;
}

.legal-block p {
  margin: 0 0 12px;
  color: #475569;
  font-size: 16px;
  line-height: 1.75;
}

.legal-block a {
  color: #2563eb;
  font-weight: 900;
}

.contact-block {
  background: linear-gradient(135deg, rgba(239,246,255,.8), rgba(255,255,255,.8));
  border-radius: 0 0 22px 22px;
}

.support-page-grid {
  display: grid;
  grid-template-columns: 1.1fr 1fr 1fr;
  gap: 22px;
  align-items: stretch;
}

.support-contact-card,
.support-topic-card {
  border: 1px solid #dbeafe;
  border-radius: 26px;
  background: #ffffff;
  box-shadow: 0 20px 60px rgba(15, 23, 42, 0.07);
}

.support-contact-card {
  grid-row: span 2;
  padding: 34px;
  background:
    radial-gradient(circle at 80% 20%, rgba(96,165,250,.24), transparent 32%),
    #0f172a;
  color: #ffffff;
}

.support-contact-card h2 {
  margin: 0 0 18px;
  font-size: 36px;
  letter-spacing: -1px;
}

.support-contact-card a {
  display: inline-flex;
  margin: 8px 0 18px;
  color: #ffffff;
  font-size: 18px;
  font-weight: 900;
  word-break: break-word;
}

.support-contact-card p:not(.eyebrow) {
  color: #cbd5e1;
  line-height: 1.7;
}

.support-topic-card {
  padding: 28px;
}

.support-topic-card h3 {
  margin: 0 0 12px;
  font-size: 22px;
}

.support-topic-card p {
  margin: 0;
  color: #475569;
  line-height: 1.7;
}

.workflow-steps {
  display: grid;
  gap: 22px;
  max-width: 980px;
  margin: 0 auto;
}

.workflow-step {
  background: #ffffff;
  border: 1px solid #e2e8f0;
  border-radius: 24px;
  padding: 30px;
  box-shadow: 0 18px 45px rgba(15, 23, 42, 0.06);
}

.workflow-step span {
  display: inline-flex;
  width: 42px;
  height: 42px;
  border-radius: 999px;
  align-items: center;
  justify-content: center;
  background: #2563eb;
  color: #ffffff;
  font-weight: 900;
  margin-bottom: 16px;
}

.workflow-step h2 {
  margin: 0 0 10px;
  font-size: 26px;
}

.workflow-step p {
  margin: 0;
  color: #475569;
  line-height: 1.7;
}

@media (max-width: 980px) {
  .legal-layout,
  .support-page-grid {
    grid-template-columns: 1fr;
  }

  .legal-sidebar {
    position: static;
  }
}

@media (max-width: 600px) {
  .page-hero {
    padding: 70px 6% 56px;
  }

  .page-hero h1 {
    font-size: 42px;
    letter-spacing: -2px;
  }

  .legal-block {
    padding: 76px 22px 26px;
  }

  .section-number {
    left: 22px;
    top: 26px;
  }
}

.legal-block {
  padding: 34px;
}

.section-number {
  display: none;
}

.topic-icon {
  display: inline-flex;
  width: 46px;
  height: 46px;
  align-items: center;
  justify-content: center;
  border-radius: 14px;
  background: #eff6ff;
  color: #2563eb;
  font-size: 22px;
  margin-bottom: 16px;
}

@media (max-width: 600px) {
  .legal-block {
    padding: 26px 22px;
  }
}
