
:root {
  --primary: #ff7a1a;
  --darkBlue: #171c36;
  --lightBlue: #33407a;
  --darkGray: #5b6278;
  --tomato: #ff7a1a;
  --mint: #19bfa4;
  --border: #e7ecf3;
  --light: #fffaf6;
  --primary-shadow: rgba(255, 122, 26, 0.16);
}

html {
  scroll-padding-top: 110px;
}

body {
  background-color: #ffffff;
  color: var(--darkBlue);
}

img {
  max-width: 100%;
}

.py-100 {
  padding: 100px 0;
}

.py-90 {
  padding: 90px 0;
}

.py-90-30 {
  padding: 90px 0 30px;
}

.py-70 {
  padding: 70px 0;
}

.mt-n-40 {
  margin-top: -40px;
}

.section-kicker {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 8px 14px;
  border-radius: 999px;
  background-color: rgba(255, 122, 26, 0.12);
  color: var(--primary);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.section-kicker.--dark {
  background-color: rgba(255, 255, 255, 0.12);
  color: #fff;
}

.page-section-title {
  font-size: clamp(2rem, 1.4rem + 1.8vw, 3.3rem);
  line-height: 1.08;
  font-weight: 800;
  color: var(--darkBlue);
  margin-bottom: 16px;
}

.page-section-title.--light {
  color: #fff;
}

.page-section-desc {
  font-size: 16px;
  line-height: 1.75;
  color: var(--darkGray);
  max-width: 760px;
}

.page-section-desc.--light {
  color: rgba(255, 255, 255, 0.82);
}

.link-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.link-list li {
  position: relative;
  padding-left: 24px;
  margin-bottom: 12px;
  color: var(--darkBlue);
}

.link-list li::before {
  content: '✓';
  position: absolute;
  left: 0;
  top: 0;
  font-weight: 800;
  color: var(--primary);
}

.hero-checks {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px 18px;
  margin: 28px 0 32px;
  padding: 0;
  list-style: none;
}

.hero-checks li {
  position: relative;
  padding-left: 26px;
  color: rgba(255, 255, 255, 0.9);
  font-weight: 500;
}

.hero-checks li::before {
  content: '✓';
  position: absolute;
  left: 0;
  top: 0;
  color: #fff;
  font-weight: 800;
}

.page-hero {
  position: relative;
  padding: 92px 0 76px;
  background:
    radial-gradient(circle at left top, rgba(255, 122, 26, 0.42), transparent 38%),
    linear-gradient(135deg, rgba(23, 28, 54, 0.98), rgba(35, 43, 82, 0.96)),
    url("../images/backgournds/header-01.png") center/cover no-repeat;
  overflow: hidden;
}

.page-hero::after {
  content: '';
  position: absolute;
  inset: auto -120px -140px auto;
  width: 360px;
  height: 360px;
  border-radius: 50%;
  background: rgba(255, 122, 26, 0.16);
  filter: blur(10px);
}

.page-hero .hero-title {
  font-size: clamp(2.5rem, 1.8rem + 2vw, 4.1rem);
  line-height: 1.04;
  font-weight: 800;
  color: #fff;
  margin: 18px 0 16px;
}

.page-hero .hero-desc {
  font-size: 17px;
  line-height: 1.8;
  color: rgba(255, 255, 255, 0.84);
  max-width: 720px;
}

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

.hero-card,
.soft-card,
.stat-card,
.service-card,
.package-card,
.feature-card,
.contact-card,
.legal-card,
.auth-card,
.panel-card,
.aside-card {
  height: 100%;
  background-color: #fff;
  border: 1px solid var(--border);
  border-radius: 22px;
  box-shadow: -8px 8px 0 var(--primary-shadow);
}

.hero-card,
.soft-card,
.service-card,
.package-card,
.feature-card,
.contact-card,
.legal-card,
.panel-card,
.aside-card {
  padding: 28px;
}

.stat-card,
.domain-card {
  padding: 24px;
}

.hero-card {
  position: relative;
  overflow: hidden;
}

.hero-card::before {
  content: '';
  position: absolute;
  right: -40px;
  bottom: -40px;
  width: 180px;
  height: 180px;
  border-radius: 50%;
  background-color: rgba(255, 122, 26, 0.08);
}

.hero-card .eyebrow,
.package-card .eyebrow {
  display: inline-flex;
  padding: 6px 12px;
  border-radius: 999px;
  background-color: rgba(255, 122, 26, 0.12);
  color: var(--primary);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.hero-card-title {
  font-size: 24px;
  line-height: 1.2;
  font-weight: 800;
  margin: 16px 0 12px;
}

.hero-card-meta {
  display: grid;
  gap: 12px;
  margin-top: 22px;
}

.meta-row {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  font-size: 14px;
  color: var(--darkGray);
}

.meta-row strong {
  color: var(--darkBlue);
  font-weight: 700;
}

.metric-strip {
  position: relative;
  z-index: 3;
}

.metric-card {
  height: 100%;
  padding: 24px 20px;
  background-color: #fff;
  border: 1px solid var(--border);
  border-radius: 18px;
  box-shadow: -6px 6px 0 var(--primary-shadow);
  text-align: center;
}

.metric-card .value {
  font-size: 30px;
  font-weight: 800;
  color: var(--darkBlue);
  line-height: 1;
  margin-bottom: 10px;
}

.metric-card .label {
  color: var(--darkGray);
  font-size: 15px;
  line-height: 1.5;
}

.domain-card {
  height: 100%;
  border: 1px solid var(--border);
  border-radius: 18px;
  background: #fff;
  box-shadow: -6px 6px 0 var(--primary-shadow);
  text-align: center;
}

.domain-card .domain {
  font-size: 28px;
  font-weight: 800;
  color: var(--darkBlue);
  margin-bottom: 10px;
}

.domain-card .price {
  font-size: 24px;
  font-weight: 800;
  color: var(--primary);
  margin-bottom: 8px;
}

.domain-card .note {
  font-size: 14px;
  color: var(--darkGray);
}

.service-card {
  transition: transform 0.18s ease, box-shadow 0.18s ease;
}

.service-card:hover,
.package-card:hover,
.feature-card:hover,
.contact-card:hover,
.legal-card:hover,
.soft-card:hover {
  transform: translateY(-4px);
  box-shadow: -10px 10px 0 var(--primary-shadow);
}

.service-card .service-badge {
  display: inline-flex;
  padding: 6px 12px;
  border-radius: 999px;
  background-color: rgba(23, 28, 54, 0.08);
  color: var(--darkBlue);
  font-size: 12px;
  font-weight: 700;
  margin-bottom: 14px;
}

.service-card .service-icon {
  width: 64px;
  height: 64px;
  object-fit: contain;
  margin-bottom: 22px;
}

.service-card .service-title,
.feature-card .feature-title,
.contact-card .contact-title,
.legal-card .legal-title {
  font-size: 22px;
  line-height: 1.2;
  font-weight: 800;
  margin-bottom: 14px;
}

.service-card p,
.feature-card p,
.contact-card p,
.legal-card p,
.soft-card p,
.panel-card p,
.aside-card p {
  color: var(--darkGray);
  line-height: 1.75;
  margin-bottom: 0;
}

.panel-card {
  padding: 24px;
  background: linear-gradient(180deg, #fffaf6 0%, #fff 100%);
}

.panel-card + .panel-card {
  margin-top: 18px;
}

.panel-card .panel-title {
  font-size: 18px;
  font-weight: 800;
  margin-bottom: 10px;
}

.package-card {
  position: relative;
  overflow: hidden;
}

.package-card.is-featured {
  border-color: rgba(255, 122, 26, 0.35);
  background: linear-gradient(180deg, #fff8f3 0%, #fff 70%);
}

.package-card.is-featured::after {
  content: 'Önerilen';
  position: absolute;
  right: 18px;
  top: 18px;
  padding: 6px 10px;
  border-radius: 999px;
  background-color: var(--primary);
  color: #fff;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.package-card .package-name {
  font-size: 24px;
  font-weight: 800;
  line-height: 1.2;
  margin: 16px 0 14px;
}

.package-card .package-price {
  font-size: 32px;
  font-weight: 900;
  line-height: 1;
  color: var(--darkBlue);
  margin-bottom: 16px;
}

.package-card .package-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 18px;
}

.package-card .package-meta span {
  display: inline-flex;
  padding: 7px 12px;
  border-radius: 999px;
  background-color: #f5f7fb;
  color: var(--darkBlue);
  font-size: 13px;
  font-weight: 600;
}

.package-card .package-features {
  list-style: none;
  margin: 0 0 24px;
  padding: 0;
}

.package-card .package-features li {
  position: relative;
  padding-left: 24px;
  margin-bottom: 12px;
  color: var(--darkGray);
  line-height: 1.55;
}

.package-card .package-features li::before {
  content: '✓';
  position: absolute;
  left: 0;
  top: 0;
  color: var(--primary);
  font-weight: 800;
}

.feature-card .feature-icon {
  width: 56px;
  height: 56px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 18px;
  background-color: rgba(255, 122, 26, 0.14);
  color: var(--primary);
  font-size: 24px;
  font-weight: 900;
  margin-bottom: 18px;
}

.cta-band {
  padding: 34px;
  border-radius: 26px;
  background:
    radial-gradient(circle at top left, rgba(255, 255, 255, 0.14), transparent 32%),
    linear-gradient(135deg, #ff7a1a, #ff9e4a);
  color: #fff;
  box-shadow: -8px 8px 0 rgba(255, 122, 26, 0.18);
}

.cta-band .cta-title {
  font-size: clamp(1.8rem, 1.2rem + 1.1vw, 2.6rem);
  line-height: 1.1;
  font-weight: 800;
  margin-bottom: 14px;
}

.cta-band p {
  color: rgba(255, 255, 255, 0.88);
  margin-bottom: 0;
  line-height: 1.75;
}

.table-wrap {
  overflow: auto;
  background-color: #fff;
  border: 1px solid var(--border);
  border-radius: 22px;
  box-shadow: -8px 8px 0 var(--primary-shadow);
}

.netroa-table {
  width: 100%;
  min-width: 780px;
  border-collapse: collapse;
}

.netroa-table thead th {
  padding: 16px 18px;
  background-color: #fff7f1;
  border-bottom: 1px solid var(--border);
  font-size: 12px;
  font-weight: 800;
  color: var(--darkBlue);
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.netroa-table tbody td {
  padding: 16px 18px;
  border-bottom: 1px solid var(--border);
  color: var(--darkGray);
  vertical-align: top;
}

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

.netroa-table tbody tr:hover {
  background-color: #fffbf8;
}

.netroa-table .td-strong {
  color: var(--darkBlue);
  font-weight: 800;
}

.netroa-table .td-price {
  color: var(--primary);
  font-weight: 900;
  white-space: nowrap;
}

.table-note {
  color: var(--darkGray);
  margin-top: 18px;
  font-size: 15px;
  line-height: 1.7;
}

.info-chip-list {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin: 24px 0 0;
  padding: 0;
  list-style: none;
}

.info-chip-list li {
  display: inline-flex;
  align-items: center;
  padding: 10px 14px;
  border-radius: 999px;
  background-color: #fff;
  border: 1px solid var(--border);
  color: var(--darkBlue);
  box-shadow: -4px 4px 0 var(--primary-shadow);
  font-size: 14px;
  font-weight: 600;
}

.page-banner {
  padding: 24px 26px;
  border-radius: 24px;
  background-color: #fffaf6;
  border: 1px solid rgba(255, 122, 26, 0.16);
}

.page-banner p {
  margin: 0;
  color: var(--darkGray);
  line-height: 1.75;
}

.contact-grid .contact-card {
  padding: 26px;
}

.contact-card .contact-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 18px;
  font-weight: 700;
  color: var(--primary);
}

.contact-card .contact-link:hover {
  color: var(--darkBlue);
}

.contact-icon {
  width: 56px;
  height: 56px;
  border-radius: 18px;
  background-color: rgba(255, 122, 26, 0.14);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--primary);
  font-size: 24px;
  font-weight: 900;
  margin-bottom: 18px;
}

.form-surface {
  padding: 28px;
  border-radius: 22px;
  background-color: #fff;
  border: 1px solid var(--border);
  box-shadow: -8px 8px 0 var(--primary-shadow);
}

.form-surface label {
  display: block;
  margin-bottom: 8px;
  font-size: 14px;
  font-weight: 700;
  color: var(--darkBlue);
}

.form-surface .field {
  margin-bottom: 18px;
}

.form-surface input,
.form-surface textarea,
.form-surface select {
  width: 100%;
  border-radius: 14px;
  border: 1px solid var(--border);
  background-color: #f9fbfe;
  min-height: 54px;
  padding: 14px 16px;
  font-size: 15px;
  color: var(--darkBlue);
  transition: border-color 0.15s ease, box-shadow 0.15s ease;
}

.form-surface textarea {
  min-height: 150px;
  resize: vertical;
}

.form-surface input:focus,
.form-surface textarea:focus,
.form-surface select:focus {
  outline: none;
  border-color: rgba(255, 122, 26, 0.46);
  box-shadow: 0 0 0 4px rgba(255, 122, 26, 0.12);
}

.notice-text {
  font-size: 14px;
  line-height: 1.7;
  color: var(--darkGray);
}

.accordion-card {
  background-color: #fff;
  border: 1px solid var(--border);
  border-radius: 18px;
  box-shadow: -6px 6px 0 var(--primary-shadow);
  overflow: hidden;
}

.accordion-card + .accordion-card {
  margin-top: 16px;
}

.accordion-card summary {
  list-style: none;
  cursor: pointer;
  padding: 22px 24px;
  font-size: 18px;
  font-weight: 800;
  color: var(--darkBlue);
  position: relative;
}

.accordion-card summary::-webkit-details-marker {
  display: none;
}

.accordion-card summary::after {
  content: '+';
  position: absolute;
  right: 24px;
  top: 18px;
  font-size: 26px;
  line-height: 1;
  color: var(--primary);
}

.accordion-card[open] summary::after {
  content: '–';
}

.accordion-card .answer {
  padding: 0 24px 24px;
  color: var(--darkGray);
  line-height: 1.8;
}

.category-title {
  font-size: 24px;
  line-height: 1.2;
  font-weight: 800;
  margin-bottom: 18px;
}

.auth-page {
  padding: 90px 0;
  background:
    radial-gradient(circle at right top, rgba(255, 122, 26, 0.16), transparent 34%),
    linear-gradient(180deg, #fffaf6 0%, #fff 50%);
}

.auth-card {
  padding: 34px;
}

.auth-card .auth-title {
  font-size: 34px;
  line-height: 1.1;
  font-weight: 800;
  margin: 18px 0 10px;
}

.auth-side {
  padding: 34px;
  height: 100%;
  border-radius: 24px;
  background:
    radial-gradient(circle at top left, rgba(255, 255, 255, 0.18), transparent 36%),
    linear-gradient(135deg, #ff7a1a, #ff9d47);
  color: #fff;
  box-shadow: -8px 8px 0 rgba(255, 122, 26, 0.18);
}

.auth-side .auth-side-title {
  font-size: 30px;
  line-height: 1.1;
  font-weight: 800;
  margin: 18px 0 16px;
}

.auth-side p,
.auth-side li {
  color: rgba(255, 255, 255, 0.88);
  line-height: 1.8;
}

.auth-side ul {
  padding-left: 18px;
  margin: 22px 0 0;
}

.breadcrumbs {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  list-style: none;
  padding: 0;
  margin: 26px 0 0;
}

.breadcrumbs li,
.breadcrumbs a {
  color: rgba(255, 255, 255, 0.76);
  font-size: 14px;
}

.breadcrumbs a:hover {
  color: #fff;
}

.breadcrumbs li.current {
  color: #fff;
  font-weight: 700;
}

.page-illustration {
  max-width: 100%;
  max-height: 330px;
  object-fit: contain;
}

.logo-line {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 16px;
  margin-top: 24px;
}

.logo-line .logo-mini {
  height: 36px;
}

.two-col-text {
  column-count: 2;
  column-gap: 30px;
}

.timeline {
  display: grid;
  gap: 18px;
}

.timeline-step {
  padding: 24px;
  border-radius: 20px;
  border: 1px solid var(--border);
  background-color: #fff;
  box-shadow: -6px 6px 0 var(--primary-shadow);
}

.timeline-step .step-number {
  display: inline-flex;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  align-items: center;
  justify-content: center;
  background-color: rgba(255, 122, 26, 0.14);
  color: var(--primary);
  font-size: 16px;
  font-weight: 900;
  margin-bottom: 14px;
}

.timeline-step h4 {
  font-size: 21px;
  font-weight: 800;
  margin-bottom: 12px;
}

.timeline-step p {
  color: var(--darkGray);
  line-height: 1.75;
  margin-bottom: 0;
}

.legal-card .legal-link,
.timeline-step a {
  display: inline-flex;
  margin-top: 16px;
  font-weight: 700;
  color: var(--primary);
}

.legal-card .legal-link:hover,
.timeline-step a:hover {
  color: var(--darkBlue);
}

.inline-note {
  display: inline-flex;
  align-items: center;
  padding: 8px 14px;
  border-radius: 999px;
  background-color: rgba(23, 28, 54, 0.06);
  color: var(--darkBlue);
  font-size: 13px;
  font-weight: 700;
}

.hero-card-list {
  list-style: none;
  padding: 0;
  margin: 20px 0 0;
}

.hero-card-list li {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 14px 0;
  border-bottom: 1px solid var(--border);
}

.hero-card-list li:last-child {
  border-bottom: 0;
}

.hero-card-list .label {
  color: var(--darkGray);
}

.hero-card-list .value {
  color: var(--darkBlue);
  font-weight: 700;
  text-align: right;
}

.theme-navbar .nav-top .brand img {
  height: 42px;
}

.theme-navbar .nav-bottom .links .link > a {
  font-weight: 700;
}

.theme-navbar .nav-bottom .links .link.active > a,
.theme-navbar .nav-bottom .links .link > a:hover,
.theme-navbar .nav-bottom .links .link.has-dropdown-menu.active > a {
  color: var(--primary);
}

.theme-navbar .nav-bottom .dropdown-menu .dm-link:hover {
  color: var(--primary);
}

.theme-navbar .nav-bottom .dropdown-menu {
  border-color: rgba(255, 122, 26, 0.16);
  box-shadow: -4px 4px 0 var(--primary-shadow);
}

.theme-navbar .nav-top .notice {
  font-size: 13px;
  color: var(--darkGray);
  margin-left: 18px;
  padding-left: 18px;
  border-left: 1px solid var(--border);
}

.theme-navbar .nav-top .notice strong {
  color: var(--darkBlue);
}

.theme-footer {
  background-color: #11162c;
  color: rgba(255, 255, 255, 0.78);
}

.theme-footer .support {
  background: linear-gradient(135deg, #171c36, #232b52);
  padding: 70px 0;
}

.theme-footer .support .title-1 {
  color: #fff;
  font-size: 42px;
  line-height: 1.08;
  font-weight: 800;
  margin-bottom: 12px;
}

.theme-footer .support .para-1 {
  color: rgba(255, 255, 255, 0.8);
  max-width: 760px;
  line-height: 1.75;
  margin-bottom: 34px;
}

.theme-footer .support .box {
  height: 100%;
  padding: 26px;
  border-radius: 20px;
  background-color: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.theme-footer .support .box-title {
  color: #fff;
  font-size: 20px;
  font-weight: 800;
  margin-bottom: 8px;
}

.theme-footer .support .box-para {
  color: rgba(255, 255, 255, 0.74);
  margin-bottom: 0;
  line-height: 1.65;
}

.theme-footer .support .icon {
  background-color: rgba(255, 255, 255, 0.1);
  border-radius: 18px;
  min-width: 56px;
  width: 56px;
  height: 56px;
}

.theme-footer .list-group {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 24px;
  padding: 70px 0 38px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.theme-footer .footer-list {
  margin-bottom: 0;
}

.theme-footer .list-title {
  color: #fff;
  font-size: 17px;
  font-weight: 800;
  margin-bottom: 18px;
}

.theme-footer .list-link {
  margin-bottom: 12px;
}

.theme-footer .list-link a,
.theme-footer .para-3,
.theme-footer .copyright,
.theme-footer .signature {
  color: rgba(255, 255, 255, 0.72);
  line-height: 1.75;
}

.theme-footer .list-link a:hover,
.theme-footer .copyright .links a:hover,
.theme-footer .social-list a:hover {
  color: #fff;
}

.theme-footer .footer-bottom {
  padding: 34px 0 42px;
}

.theme-footer .copyright .links {
  gap: 20px;
  flex-wrap: wrap;
  margin-bottom: 18px;
}

.theme-footer .social-list {
  gap: 12px;
}

.theme-footer .social-list a {
  display: inline-flex;
  width: 42px;
  height: 42px;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background-color: rgba(255, 255, 255, 0.08);
}

.theme-footer .social-list img {
  width: 18px;
}

.page-404 {
  padding: 120px 0;
  background:
    radial-gradient(circle at top left, rgba(255, 122, 26, 0.16), transparent 34%),
    linear-gradient(180deg, #fffaf6 0%, #fff 50%);
}

.page-404 .error-card {
  padding: 40px;
  border-radius: 24px;
  background-color: #fff;
  border: 1px solid var(--border);
  box-shadow: -8px 8px 0 var(--primary-shadow);
  text-align: center;
}

.page-404 .code {
  font-size: 110px;
  line-height: 0.95;
  font-weight: 900;
  color: var(--primary);
  margin-bottom: 16px;
}

@media (max-width: 1399.98px) {
  .theme-footer .list-group {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

@media (max-width: 1199.98px) {
  .page-hero {
    padding: 82px 0 68px;
  }

  .theme-navbar .nav-top .notice {
    display: none;
  }

  .metric-strip {
    margin-top: 0;
  }

  .theme-footer .support .title-1 {
    font-size: 34px;
  }
}

@media (max-width: 991.98px) {
  .hero-checks {
    grid-template-columns: 1fr;
  }

  .theme-footer .list-group {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .auth-page {
    padding: 70px 0;
  }
}

@media (max-width: 767.98px) {
  .py-100,
  .py-90,
  .py-90-30 {
    padding-top: 72px;
    padding-bottom: 72px;
  }

  .py-90-30 {
    padding-bottom: 24px;
  }

  .page-hero .hero-title {
    font-size: clamp(2.1rem, 1.6rem + 2vw, 3rem);
  }

  .page-section-title {
    font-size: clamp(1.7rem, 1.3rem + 1.8vw, 2.4rem);
  }

  .hero-card,
  .soft-card,
  .service-card,
  .package-card,
  .feature-card,
  .contact-card,
  .legal-card,
  .auth-card,
  .panel-card,
  .aside-card,
  .form-surface {
    padding: 22px;
  }

  .cta-band {
    padding: 26px;
  }

  .theme-footer .list-group {
    grid-template-columns: 1fr;
    padding-top: 52px;
  }

  .theme-footer .support {
    padding: 54px 0;
  }

  .theme-footer .support .title-1 {
    font-size: 28px;
  }

  .theme-footer .footer-bottom {
    padding-top: 28px;
  }

  .two-col-text {
    column-count: 1;
  }
}


/* Homepage plan switcher */
.se-ii .plans-group > .row {
  row-gap: 24px;
}
.se-ii .side-plan,
.se-ii .plan {
  height: 100%;
}
.se-ii .plans-group .plan-price {
  white-space: nowrap;
}

/* Terms page quick cards */
.terms-quick-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 24px;
  margin: 32px 0 40px;
}
.terms-quick-card {
  border: 1px solid var(--border);
  border-radius: 18px;
  padding: 24px;
  background: #fff;
  box-shadow: 0 18px 40px rgba(17, 37, 82, 0.06);
}
.terms-quick-card h3 {
  color: var(--darkBlue);
  font-size: 1.05rem;
  margin-bottom: 12px;
}
.terms-quick-card p {
  color: var(--lightBlue);
  font-size: 14px;
  line-height: 1.8;
  margin-bottom: 14px;
}
.terms-quick-card a {
  font-size: 14px;
  font-weight: 700;
  color: var(--primary);
}
@media only screen and (max-width: 991.98px) {
  .terms-quick-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }
}

.table-action {
  white-space: nowrap;
}

.table-action .theme-btn {
  white-space: nowrap;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

#homepage-plan-groups .plans-group[hidden] {
  display: none !important;
}

.header-utility-card {
  overflow: hidden;
}

.header-utility-card .content {
  padding: 32px;
}

.header-utility-card .header-card-text {
  color: var(--darkGray);
  line-height: 1.7;
  margin-bottom: 18px;
}

.header-domain-form {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.header-domain-form .th-input {
  flex: 1 1 260px;
  min-height: 54px;
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 14px 16px;
  background-color: #f9fbfe;
}

.header-domain-form .theme-btn {
  min-width: 210px;
}

.quick-links-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  margin-top: 16px;
}

.quick-links-grid .theme-btn {
  width: 100%;
}

.header-utility-side {
  position: relative;
  min-height: 100%;
  border-left: 1px solid var(--border);
  background: url("../images/backgournds/shape-02.png") center no-repeat;
  background-size: 220px;
}

.header-utility-list {
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 30px;
}

.theme-footer .signature a,
.theme-footer .footer-list a:hover,
.theme-footer .footer-bottom .links a:hover {
  color: #fff;
}

.page-hero .search-surface {
  padding: 24px;
  border-radius: 20px;
  background-color: rgba(255, 255, 255, 0.96);
  border: 1px solid rgba(255, 255, 255, 0.4);
  box-shadow: -8px 8px 0 rgba(255, 122, 26, 0.16);
}

.page-hero .search-surface .search-label {
  display: block;
  color: var(--darkBlue);
  font-size: 14px;
  font-weight: 700;
  margin-bottom: 10px;
}

.page-hero .domain-search-form {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.page-hero .domain-search-form input {
  flex: 1 1 260px;
  min-height: 56px;
  border-radius: 14px;
  border: 1px solid var(--border);
  background-color: #f8fbff;
  padding: 14px 16px;
}

.page-hero .domain-search-form input:focus {
  outline: none;
  border-color: rgba(255, 122, 26, 0.42);
  box-shadow: 0 0 0 4px rgba(255, 122, 26, 0.12);
}

.page-hero .domain-search-form .theme-btn {
  min-width: 200px;
}

.live-sync-chip {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 14px;
  border-radius: 999px;
  background-color: rgba(255, 122, 26, 0.14);
  color: var(--primary);
  font-size: 13px;
  font-weight: 700;
}

.live-sync-chip.--light {
  background-color: rgba(255, 255, 255, 0.14);
  color: #fff;
}

.pricing-highlight-list {
  list-style: none;
  padding: 0;
  margin: 18px 0 0;
}

.pricing-highlight-list li {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 14px 0;
  border-bottom: 1px solid var(--border);
}

.pricing-highlight-list li:last-child {
  border-bottom: 0;
}

.pricing-highlight-list .value {
  color: var(--primary);
  font-weight: 800;
}

.domain-table-note {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-items: center;
  justify-content: space-between;
  margin-top: 18px;
}

.dedicated header {
  padding: 100px 0 60px;
  background:
    radial-gradient(circle at left top, rgba(255, 255, 255, 0.16), transparent 32%),
    radial-gradient(circle at right center, rgba(255, 255, 255, 0.08), transparent 30%),
    linear-gradient(135deg, #3029c9, #4337df 48%, #5646ea) !important;
}

.dedicated header .sub-title,
.dedicated header .title,
.dedicated header .para,
.dedicated header .box .count,
.dedicated header .box .text,
.dedicated header .features li {
  color: #fff;
}

.dedicated header .para,
.dedicated header .box .text,
.dedicated header .features li {
  color: rgba(255, 255, 255, 0.88);
}

.dedicated header .users {
  border-color: rgba(255, 255, 255, 0.34);
  background-color: rgba(255, 255, 255, 0.12);
}

.dedicated header .text-box {
  color: #fff;
}

.dedicated header .features {
  padding-left: 24px;
  margin: 0;
}

.dedicated header .links .--outline-primary {
  color: #fff;
  border-color: rgba(255, 255, 255, 0.9);
  background-color: transparent;
}

.dedicated header .links .--outline-primary:hover {
  color: var(--darkBlue);
  background-color: #fff;
}

@media only screen and (max-width: 1199.98px) {
  .header-utility-side {
    display: none !important;
  }
}

@media only screen and (max-width: 767.98px) {
  .quick-links-grid {
    grid-template-columns: 1fr;
  }

  .header-domain-form .theme-btn,
  .page-hero .domain-search-form .theme-btn {
    min-width: 100%;
  }

  .domain-table-note {
    align-items: flex-start;
  }
}
