  * {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
  }

  body {
    font-family: Inter, Arial, sans-serif;
    background: #ffffff;
    color: #0f172a;
    overflow-x: hidden;
  }

  a {
    text-decoration: none;
    color: inherit;
  }

  img {
    max-width: 100%;
  }

  .container,
  .topbar .container {
    max-width: 1380px;
    width: 100%;
    margin: auto;
    padding: 0 20px;
  }

  .topbar {
    position: sticky;
    top: 0;
    z-index: 101;
    background: #000;
    color: #fff;
    border-bottom: 1px solid #111;
  }

  .topbar .row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 0;
    font-size: 14px;
    color: #fff;
  }

  header {
    position: sticky;
    top: 38px;
    background: #fff;
    z-index: 100;
    border-bottom: 1px solid #e5e7eb;
  }

  .nav {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 10px 0;
  }

  .logo {
    font-size: 24px;
    font-weight: 800;
    color: #0f3cc9;
  }

  .logo span {
    color: #111827;
  }

  .menu {
    display: flex;
    gap: 18px;
    align-items: center;
  }

  .menu-item {
    position: relative;
    padding: 10px 0;
    font-weight: 600;
    color: #334155;
    cursor: pointer;
  }

  .menu-item::after {
    content: "";
    display: none;
    position: fixed;
    top: 82px;
    left: 0;
    right: 0;
    height: 18px;
    z-index: 998;
    background: transparent;
  }

  .dropdown {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: auto;
    margin: 0;
    max-width: none;
    min-width: 240px;
    padding: 12px;
    background: #fff;
    border: 1px solid #e5e7eb;
    border-radius: 18px;
    box-shadow: 0 18px 40px rgba(0, 0, 0, 0.08);
  }

  .dropdown a {
    display: block;
    padding: 12px;
    border-radius: 12px;
    line-height: 1.45;
  }

  .dropdown small {
    display: block;
    margin-top: 4px;
    color: #64748b;
    font-weight: 500;
  }

  .dropdown a:hover {
    background: #f8fafc;
  }

  .menu-item:hover .dropdown,
  .menu-item:focus-within .dropdown {
    display: block;
  }

  .menu-item:hover::after,
  .menu-item:focus-within::after {
    display: block;
  }

  .actions {
    display: flex;
    gap: 12px;
    align-items: center;
  }

  .btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 11px 18px;
    border-radius: 14px;
    font-weight: 700;
    border: 1px solid #111111;
    cursor: pointer;
    white-space: nowrap;
  }

  .btn-outline {
    background: #111111;
    color: #ffffff;
  }

  .btn-primary {
    background: #0f3cc9;
    color: #fff;
    border-color: #0f3cc9;
  }

  .btn-primary:hover {
    background: #0f3cc9;
  }

  .features-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 12px 10px;
    margin-top: 8px;
  }

  .features-grid .item {
    font-size: 18px;
    color: #000;
    display: flex;
    align-items: center;
  }

  .features-grid .item i {
    color: #0f3cc9;
    
    margin-right: 8px;
    font-size: 18px;
  }

  .hero {
    position: relative;
    padding: 32px 0 60px;
    overflow: hidden;
    background:
      radial-gradient(circle at 12% 70%, rgba(163, 195, 255, 0.72), transparent 24%),
      radial-gradient(circle at 22% 82%, rgba(207, 226, 255, 0.48), transparent 20%),
      radial-gradient(circle at 88% 76%, rgba(205, 184, 255, 0.44), transparent 26%),
      radial-gradient(circle at 78% 100%, rgba(231, 220, 255, 0.38), transparent 18%),
      linear-gradient(180deg, #ffffff 0%, #ffffff 100%);
  }

  .hero::before {
    content: "";
    position: absolute;
    inset: 0;
    background-image: radial-gradient(rgba(125, 145, 185, 0.18) 1px, transparent 1px);
    background-size: 18px 18px;
    opacity: 0.34;
    pointer-events: none;
    mask-image: linear-gradient(90deg, transparent 0%, rgba(0, 0, 0, 0.7) 35%, rgba(0, 0, 0, 0.7) 100%);
  }

  .hero .container {
    position: relative;
    z-index: 1;
  }

  .hero-grid {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 36px;
    align-items: flex-start;
  }

  .tag {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 12px 18px;
    border-radius: 999px;
    font-weight: 500;
    font-size: 16px;
    line-height: 1;
    background: #f8fafc;
    color: #0f3cc9;
    border: 1px solid #e5e7eb;
    box-shadow: none;
    max-width: 100%;
    flex-wrap: wrap;
  }

  .hero h1 {
    font-size: 40px;
    line-height: 1.05;
    margin: 18px 0;
  }

  .hero p {
    font-size: 18px;
    color: #111111;
    max-width: 700px;
  }

  .searchbox {
    margin-top: 28px;
    padding: 0;
    background: transparent;
    border-radius: 30px;
    max-width: 690px;
  }

  .search-label {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 16px 22px 17px;
    background: #ffffff;
    border-radius: 22px 22px 0 0;
    font-size: 16px;
    font-weight: 500;
    color: #111827;
    position: relative;
    z-index: 1;
    box-shadow: none;
  }

  .search-label svg {
    width: 19px;
    height: 19px;
    flex: 0 0 19px;
    stroke: currentColor;
  }

  .searchrow {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-top: -2px;
    padding: 8px 10px 8px 14px;
    background: #ffffff;
    border-radius: 0 26px 26px 26px;
    box-shadow: 0 14px 30px rgba(90, 119, 178, 0.08);
  }

  .searchrow input {
    flex: 1;
    min-width: 0;
    padding: 18px 10px 18px 6px;
    border: 0;
    border-radius: 16px;
    font-size: 16px;
    color: #111827;
    background: transparent;
    outline: none;
  }

  .searchrow input::placeholder {
    color: #9ca3af;
  }

  .search-submit {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 120px;
    padding: 15px 28px;
    border: 0;
    border-radius: 20px;
    background: #0f3cc9;
    color: #fff;
    font-size: 17px;
    font-weight: 700;
    cursor: pointer;
    flex-shrink: 0;
  }

  .domain-searchbox {
    width: 100%;
    margin-top: 28px;
  }

  .domain-searchrow {
    display: flex;
    align-items: center;
    gap: 0;
    width: 100%;
    padding: 0;
    border: 1px solid #e5e7eb;
    background: #ffffff;
    box-shadow: 0 14px 30px rgba(90, 119, 178, 0.08);
  }

  .domain-searchrow input {
    flex: 1;
    min-width: 0;
    padding: 20px 18px;
    border: 0;
    background: transparent;
    color: #111827;
    font-size: 16px;
    outline: none;
  }

  .domain-searchrow input::placeholder {
    color: #9ca3af;
  }

  .domain-searchrow .search-submit {
    align-self: stretch;
    min-width: 150px;
    border-radius: 0;
    padding: 0 30px;
  }

.domain-result-section {
    background: #f8fafc;
    padding: 30px 0 20px;
  }

  .whois-section {
    padding: 52px 0 76px;
    background: linear-gradient(180deg, #f8fbff 0%, #ffffff 100%);
  }

  .whois-head {
    max-width: 760px;
    margin: 0 auto 30px;
    text-align: center;
  }

  .whois-head span,
  .whois-result-head span {
    color: #0f3cc9;
    font-size: 13px;
    font-weight: 800;
  }

  .whois-head h1 {
    color: #0f172a;
    font-size: 42px;
    line-height: 1.1;
    margin: 8px 0 10px;
  }

  .whois-head p {
    color: #64748b;
    font-size: 16px;
    line-height: 1.6;
    margin: 0;
  }

  .whois-panel,
  .whois-result-card {
    max-width: 1120px;
    margin: 0 auto;
    border: 1px solid #e6edf8;
    border-radius: 16px;
    background: #ffffff;
    box-shadow: 0 16px 34px rgba(15, 23, 42, .06);
  }

  .whois-panel {
    padding: 26px;
  }

  .whois-form {
    display: grid;
    gap: 14px;
  }

  .whois-form label {
    color: #0f172a;
    font-size: 14px;
    font-weight: 800;
  }

  .whois-search-row {
    display: flex;
    align-items: stretch;
    border: 1px solid #e5e7eb;
    background: #ffffff;
  }

  .whois-search-row input {
    flex: 1;
    min-width: 0;
    border: 0;
    outline: 0;
    padding: 18px;
    color: #0f172a;
    font-size: 16px;
  }

  .whois-search-row input::placeholder {
    color: #94a3b8;
  }

  .whois-search-row .search-submit {
    min-width: 148px;
    border-radius: 0;
  }

  .whois-captcha {
    min-height: 78px;
  }

  .whois-result-card {
    margin-top: 24px;
    padding: 28px;
  }

  .whois-result-head {
    display: flex;
    justify-content: space-between;
    gap: 16px;
    padding-bottom: 18px;
    border-bottom: 1px solid #e5e7eb;
  }

  .whois-result-head h2 {
    color: #0f172a;
    font-size: 24px;
    line-height: 1.2;
    margin: 6px 0 0;
    overflow-wrap: anywhere;
  }

  .whois-alert {
    margin-top: 18px;
    padding: 16px;
    border-radius: 12px;
    font-size: 14px;
    font-weight: 800;
  }

  .whois-alert.error {
    border: 1px solid #fecaca;
    background: #fef2f2;
    color: #b91c1c;
  }

  .whois-output {
    max-height: 560px;
    margin: 18px 0 0;
    padding: 18px;
    overflow: auto;
    border: 1px solid #e5e7eb;
    border-radius: 12px;
    background: #f8fafc;
    color: #334155;
    font-family: Consolas, "Courier New", monospace;
    font-size: 13px;
    line-height: 1.6;
    white-space: pre-wrap;
  }

  @media (max-width: 640px) {
    .whois-section {
      padding: 36px 0 56px;
    }

    .whois-head h1 {
      font-size: 34px;
    }

    .whois-panel,
    .whois-result-card {
      padding: 20px;
      border-radius: 12px;
    }

    .whois-search-row {
      display: grid;
    }

    .whois-search-row .search-submit {
      min-height: 52px;
      width: 100%;
    }

    .whois-output {
      font-size: 12px;
    }
  }

  .domain-result-panel {
    display: grid;
    grid-template-columns: minmax(260px, 1.45fr) 130px minmax(290px, 1fr) 180px;
    align-items: center;
    gap: 24px;
    min-height: 104px;
    padding: 22px 26px;
    border: 1px solid #e5e7eb;
    border-top: 4px solid #0f3cc9;
    border-radius: 16px 16px 0 0;
    background: #ffffff;
    box-shadow: 0 4px 24px rgba(15, 23, 42, .06);
    transition: box-shadow .15s, border-color .15s;
  }

  .domain-result-panel:hover {
    border-color: #dbeafe;
    box-shadow: 0 12px 30px rgba(15, 60, 201, 0.08);
  }

  .domain-result-main {
    display: grid;
    gap: 7px;
    min-width: 0;
  }

  .domain-result-label {
    color: #0f3cc9;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: .08em;
    text-transform: uppercase;
  }

  .domain-result-name {
    display: flex;
    align-items: center;
    gap: 10px;
    min-width: 0;
  }

  .domain-result-name strong {
    color: #020617;
    font-size: 24px;
    font-weight: 700;
    line-height: 1.15;
    overflow-wrap: anywhere;
  }

  .domain-result-name span {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    height: 22px;
    padding: 2px 8px;
    border: 1px solid #fde047;
    border-radius: 6px;
    background: #fef9c3;
    color: #854d0e;
    font-size: 10px;
    font-weight: 700;
    letter-spacing: .04em;
    flex: 0 0 auto;
  }

  .domain-result-price {
    display: grid;
    gap: 2px;
    justify-items: end;
    min-width: 120px;
  }

  .domain-result-price small {
    color: #94a3b8;
    font-size: 15px;
    font-weight: 600;
    line-height: 1;
    text-decoration: line-through;
  }

  .domain-result-price b {
    color: #0f172a;
    font-size: 27px;
    font-weight: 700;
    line-height: 1;
  }

  .domain-result-price em {
    color: #64748b;
    font-size: 12px;
    font-style: normal;
    font-weight: 600;
    line-height: 1;
  }

  .domain-result-years {
    position: relative;
    display: block;
    min-width: 0;
    border: 1px solid #e2e8f0;
    border-radius: 8px;
    background: #ffffff;
    transition: border-color .15s, box-shadow .15s;
  }

  .domain-result-years:focus-within {
    border-color: #0f3cc9;
    box-shadow: 0 0 0 3px rgba(15, 60, 201, 0.08);
  }

  .domain-result-years select {
    width: 100%;
    min-width: 0;
    padding: 13px 42px 13px 16px;
    border: 0;
    background: transparent;
    color: #334155;
    font-size: 16px;
    font-weight: 600;
    outline: none;
    appearance: none;
    cursor: pointer;
  }

  .domain-result-years i {
    position: absolute;
    top: 50%;
    right: 16px;
    color: #0f3cc9;
    font-size: 14px;
    transform: translateY(-50%);
    pointer-events: none;
  }

  .domain-result-buy {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    min-height: 42px;
    padding: 8px 24px;
    border: 1.5px solid #0f3cc9;
    border-radius: 8px;
    background: #ffffff;
    color: #0f3cc9;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: .04em;
    cursor: pointer;
    transition: background .15s, color .15s, box-shadow .15s;
  }

  .domain-result-buy:hover {
    background: #0f3cc9;
    color: #ffffff;
    box-shadow: 0 10px 20px rgba(15, 60, 201, 0.16);
  }

  .domain-suggestion-list {
    margin-top: 0;
    border: 1px solid #e5e7eb;
    border-top: 0;
    border-radius: 0 0 16px 16px;
    overflow: hidden;
    background: #ffffff;
    box-shadow: 0 4px 24px rgba(15, 23, 42, .05);
  }

  .domain-suggestion-row {
    display: grid;
    grid-template-columns: minmax(260px, 1.45fr) 130px minmax(290px, 1fr) 180px;
    align-items: center;
    gap: 24px;
    min-height: 70px;
    padding: 14px 26px;
    border-bottom: 1px solid #f1f5f9;
    transition: background .12s;
  }

  .domain-suggestion-row:last-child {
    border-bottom: 0;
  }

  .domain-suggestion-row:hover {
    background: #eff6ff;
  }

  .domain-suggestion-name {
    display: flex;
    align-items: center;
    gap: 8px;
    min-width: 0;
  }

  .domain-suggestion-name strong {
    color: #0f172a;
    font-family: monospace;
    font-size: 16px;
    font-weight: 600;
    overflow-wrap: anywhere;
  }

  .domain-suggestion-name span {
    display: inline-block;
    padding: 2px 8px;
    border: 1px solid #fde047;
    border-radius: 6px;
    background: #fef9c3;
    color: #854d0e;
    font-size: 10px;
    font-weight: 700;
    letter-spacing: .04em;
    flex: 0 0 auto;
  }

  .domain-suggestion-price {
    display: grid;
    gap: 2px;
    justify-items: end;
    min-width: 120px;
  }

  .domain-suggestion-price small {
    color: #94a3b8;
    font-size: 13px;
    font-weight: 600;
    line-height: 1;
    text-decoration: line-through;
  }

  .domain-suggestion-price b {
    color: #0f172a;
    font-size: 17px;
    font-weight: 700;
    line-height: 1;
  }

  .domain-suggestion-price span,
  .domain-suggestion-status {
    color: #64748b;
    font-size: 13px;
    font-weight: 500;
  }

  .domain-suggestion-status.is-available {
    color: #0f3cc9;
  }

  .domain-suggestion-status.is-taken {
    color: #b45309;
  }

  .domain-suggestion-actions {
    display: flex;
    justify-content: flex-end;
    gap: 8px;
    width: 100%;
  }

  .domain-check-btn,
  .domain-row-buy,
  .domain-row-transfer {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    min-height: 36px;
    padding: 7px 16px;
    border: 1.5px solid #0f3cc9;
    border-radius: 8px;
    background: #ffffff;
    color: #0f3cc9;
    font-size: 13px;
    font-weight: 800;
    white-space: nowrap;
    cursor: pointer;
    transition: background .15s, color .15s, border-color .15s;
  }

  .domain-check-btn:hover,
  .domain-row-buy:hover {
    background: #0f3cc9;
    color: #ffffff;
  }

  .domain-row-transfer {
    border-color: #64748b;
    color: #475569;
  }

  .domain-row-transfer:hover {
    background: #475569;
    color: #ffffff;
  }

  .domain-suggestion-actions .is-hidden {
    display: none;
  }

  .tlds {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 14px;
    margin-top: 20px;
  }

  .tld {
    border: 1px solid #e5e7eb;
    border-radius: 18px;
    padding: 18px;
    text-align: center;
    background: #fff;
  }

  .hero-card {
    min-height: 460px;
    position: relative;
    padding: 12px 0 0;
    perspective: 1200px;
  }

  .hero-card::before {
    content: "";
    position: absolute;
    left: 50%;
    top: 54%;
    width: 520px;
    height: 520px;
    border: none;
    border-radius: 50%;
    transform: translate(-50%, -50%);
  }

  .hero-card::after {
    content: "";
    position: absolute;
    left: 50%;
    bottom: -58px;
    width: 380px;
    height: 80px;
    transform: translateX(-50%);
    background: radial-gradient(ellipse at center, rgba(255, 255, 255, 0.96) 0%, rgba(255, 255, 255, 0) 72%);
    pointer-events: none;
  }

  .hero-panel,
  .hero-review,
  .hero-pricing {
    position: absolute;
    background: rgba(255, 255, 255, 0.95);
    border: 1px solid rgba(226, 232, 240, 0.95);
    border-radius: 28px;
    box-shadow: 0 24px 45px rgba(43, 61, 98, 0.12);
    backdrop-filter: blur(10px);
    transition: transform 220ms ease-out;
    will-change: transform;
  }

  .hero-panel {
    top: 40px;
    left: 0;
    width: 260px;
    padding: 16px;
    z-index: 2;
  }

  .hero-panel-title {
    display: flex;
    align-items: center;
    gap: 10px;
    color: #1f2937;
    font-size: 17px;
    font-weight: 700;
  }

  .hero-panel-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 28px;
    height: 28px;
    border-radius: 50%;
    background: #f8fafc;
    color: #0f3cc9;
    font-size: 15px;
  }

  .hero-panel p {
    margin-top: 8px;
    font-size: 13px;
    line-height: 1.55;
    color: #64748b;
  }

  .hero-panel-search {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
    margin-top: 18px;
    padding: 8px 8px 8px 18px;
    border: 1px solid #e5e7eb;
    border-radius: 999px;
    background: #fff;
  }

  .hero-panel-search span {
    color: #a1a1aa;
    font-size: 13px;
  }

  .hero-panel-search strong {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: #0f3cc9;
    color: #fff;
    font-size: 18px;
    font-weight: 700;
  }

  .hero-review {
    top: 10px;
    right: 28px;
    width: 220px;
    padding: 12px 14px;
    z-index: 4;
  }

  .hero-review-top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    margin-bottom: 12px;
  }

  .hero-avatars {
    display: flex;
    align-items: center;
  }

  .hero-avatars span {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 28px;
    height: 28px;
    margin-right: -6px;
    border: 2px solid #fff;
    border-radius: 50%;
    background: #f8fafc;
    color: #1f2937;
    font-size: 11px;
    font-weight: 700;
  }

  .hero-stars {
    color: #f4b01b;
    font-size: 15px;
    letter-spacing: 2px;
  }

  .hero-review strong {
    display: block;
    color: #1f2937;
    font-size: 14px;
    line-height: 1.35;
  }

  .hero-review p {
    margin-top: 4px;
    color: #94a3b8;
    font-size: 12px;
  }

  .hero-pricing {
    right: 18px;
    bottom: 0px;
    width: 240px;
    padding: 12px;
    z-index: 5;
  }

  .hero-pricing-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
    padding: 10px 14px;
    border-radius: 18px;
    background: linear-gradient(90deg, #fff6dc 0%, #ffedbf 100%);
    color: #1f2937;
    font-size: 14px;
    font-weight: 700;
  }

  .hero-price-list {
    margin-top: 12px;
  }

  .hero-price-item {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
    padding: 10px 6px;
    border-bottom: 1px solid #eef2f7;
    color: #475569;
    font-size: 13px;
  }

  .hero-price-item:last-child {
    border-bottom: 0;
    padding-bottom: 4px;
  }

  .hero-price-item strong {
    color: #111827;
    font-weight: 600;
  }

  .hero-price-item span {
    color: #64748b;
    white-space: nowrap;
  }

  .hero-person {
    position: absolute;
    right: 120px;
    top: 10px;
    width: 320px;
    max-width: 70%;
    filter: drop-shadow(0 24px 38px rgba(88, 46, 168, 0.16));
    z-index: 0;
  }

  section {
    padding: 60px 0;
  }

  .title {
    text-align: center;
    font-size: 48px;
  }

  .sub {
    text-align: center;
    color: #64748b;
    font-size: 20px;
    max-width: 800px;
    margin: 12px auto 0;
  }

  .legal-page-section {
    padding: 34px 0 70px;
    background: linear-gradient(180deg, #f8fbff 0%, #ffffff 100%);
  }

  .legal-page-head {
    max-width: 820px;
    margin: 0 auto 28px;
    text-align: center;
  }

  .legal-page-head span {
    display: inline-flex;
    align-items: center;
    min-height: 28px;
    padding: 0 12px;
    border-radius: 999px;
    background: #eff6ff;
    color: #0f3cc9;
    font-size: 12px;
    font-weight: 700;
  }

  .legal-page-head h1 {
    color: #0f172a;
    font-size: 42px;
    line-height: 1.12;
    margin: 14px 0 10px;
  }

  .legal-page-head p {
    color: #64748b;
    font-size: 16px;
    line-height: 1.6;
    margin: 0;
  }

  .legal-content-card {
    max-width: 1120px;
    margin: 0 auto;
    padding: 34px;
    border: 1px solid #e6edf8;
    border-radius: 16px;
    background: #ffffff;
    box-shadow: 0 16px 34px rgba(15, 23, 42, .06);
    color: #334155;
    font-size: 15px;
    line-height: 1.72;
    text-align: justify;
  }

  .legal-content-card h2 {
    color: #0f172a;
    font-size: 22px;
    line-height: 1.3;
    margin: 30px 0 10px;
  }

  .legal-version {
    display: inline-flex;
    align-items: center;
    min-height: 26px;
    padding: 0 10px;
    border-radius: 999px;
    background: #eff6ff;
    color: #0f3cc9;
    font-size: 12px;
    font-weight: 700;
    margin-bottom: 18px;
  }

  .legal-content-card h3 {
    color: #0f172a;
    font-size: 17px;
    margin: 18px 0 8px;
  }

  .legal-content-card p {
    margin: 0 0 14px;
  }

  .legal-content-card ol,
  .legal-content-card ul {
    display: grid;
    gap: 10px;
    margin: 0 0 16px;
    padding-left: 22px;
  }

  .about-page-section {
    padding: 42px 0 70px;
    background: linear-gradient(180deg, #f8fbff 0%, #ffffff 100%);
  }

  .about-hero {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 320px;
    gap: 28px;
    align-items: stretch;
  }

  .about-hero-copy {
    padding: 34px;
    border: 1px solid #e6edf8;
    border-radius: 16px;
    background: #ffffff;
    box-shadow: 0 16px 34px rgba(15, 23, 42, .06);
  }

  .about-hero-copy span,
  .about-section-head span {
    display: inline-flex;
    align-items: center;
    min-height: 28px;
    padding: 0 12px;
    border-radius: 999px;
    background: #eff6ff;
    color: #0f3cc9;
    font-size: 12px;
    font-weight: 700;
  }

  .about-hero-copy h1 {
    color: #0f172a;
    font-size: 42px;
    line-height: 1.12;
    margin: 16px 0 14px;
    max-width: 780px;
  }

  .about-hero-copy p {
    color: #475569;
    font-size: 17px;
    line-height: 1.7;
    margin: 0;
    max-width: 820px;
    text-align: justify;
  }

  .about-hero-panel {
    display: grid;
    align-content: center;
    gap: 12px;
    padding: 30px;
    border-radius: 16px;
    background: #0f3cc9;
    color: #ffffff;
    box-shadow: 0 18px 38px rgba(15, 60, 201, .18);
  }

  .about-hero-panel strong {
    font-size: 52px;
    line-height: 1;
  }

  .about-hero-panel span {
    color: #dbeafe;
    font-size: 15px;
    line-height: 1.55;
  }

  .about-stats-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 18px;
    margin-top: 24px;
  }

  .about-stats-grid div,
  .about-story-grid > div,
  .about-timeline-item {
    border: 1px solid #e6edf8;
    border-radius: 14px;
    background: #ffffff;
    box-shadow: 0 12px 28px rgba(15, 23, 42, .05);
  }

  .about-stats-grid div {
    display: grid;
    gap: 8px;
    padding: 24px;
  }

  .about-stats-grid strong {
    color: #0f172a;
    font-size: 34px;
    line-height: 1;
  }

  .about-stats-grid span {
    color: #64748b;
    font-size: 15px;
    line-height: 1.45;
  }

  .about-story-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 22px;
    margin-top: 36px;
  }

  .about-story-grid > div {
    padding: 28px;
  }

  .about-story-grid h2,
  .about-section-head h2 {
    color: #0f172a;
    line-height: 1.2;
    margin: 0;
  }

  .about-story-grid h2 {
    font-size: 26px;
    margin-bottom: 14px;
  }

  .about-story-grid p {
    color: #475569;
    font-size: 15px;
    line-height: 1.75;
    margin: 0 0 14px;
    text-align: justify;
  }

  .about-story-grid p:last-child {
    margin-bottom: 0;
  }

  .about-principles-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 22px;
    margin-top: 24px;
  }

  .about-principles-grid div {
    padding: 26px;
    border: 1px solid #edf2f8;
    border-radius: 16px;
    background: #f8fafc;
    box-shadow: 0 12px 28px rgba(15, 23, 42, .04);
  }

  .about-principles-grid h3 {
    display: flex;
    align-items: center;
    gap: 9px;
    color: #0f172a;
    font-size: 21px;
    line-height: 1.25;
    margin: 0 0 12px;
  }

  .about-principles-grid h3 i {
    color: #0f172a;
    font-size: 13px;
  }

  .about-principles-grid p {
    color: #475569;
    font-size: 14px;
    line-height: 1.7;
    margin: 0;
    text-align: justify;
  }

  .about-timeline-section {
    margin-top: 48px;
  }

  .about-section-head {
    max-width: 720px;
    margin-bottom: 24px;
  }

  .about-section-head h2 {
    font-size: 32px;
    margin-top: 12px;
  }

  .about-timeline {
    position: relative;
    display: grid;
    gap: 18px;
    padding-left: 28px;
  }

  .about-timeline::before {
    content: "";
    position: absolute;
    left: 7px;
    top: 10px;
    bottom: 10px;
    width: 2px;
    background: #dbeafe;
  }

  .about-timeline-item {
    position: relative;
    padding: 22px 24px;
  }

  .about-timeline-item::before {
    content: "";
    position: absolute;
    left: -29px;
    top: 28px;
    width: 14px;
    height: 14px;
    border: 3px solid #ffffff;
    border-radius: 50%;
    background: #0f3cc9;
    box-shadow: 0 0 0 3px #bfdbfe;
  }

  .about-timeline-item span {
    color: #0f3cc9;
    font-size: 13px;
    font-weight: 700;
  }

  .about-timeline-item h3 {
    color: #0f172a;
    font-size: 20px;
    margin: 6px 0 8px;
  }

  .about-timeline-item p {
    color: #475569;
    font-size: 15px;
    line-height: 1.65;
    margin: 0;
    text-align: justify;
  }

  .about-review-section {
    padding-top: 58px;
  }

  .contact-page-section {
    padding: 42px 0 70px;
    background: linear-gradient(180deg, #f8fbff 0%, #ffffff 100%);
  }

  .contact-page-head {
    max-width: 820px;
    margin: 0 auto 28px;
    text-align: center;
  }

  .contact-page-head span {
    display: inline-flex;
    align-items: center;
    min-height: 28px;
    padding: 0 12px;
    border-radius: 999px;
    background: #eff6ff;
    color: #0f3cc9;
    font-size: 12px;
    font-weight: 700;
  }

  .contact-page-head h1 {
    color: #0f172a;
    font-size: 42px;
    line-height: 1.12;
    margin: 14px 0 10px;
  }

  .contact-page-head p {
    color: #64748b;
    font-size: 16px;
    line-height: 1.6;
    margin: 0;
  }

  .contact-alert {
    max-width: 900px;
    margin: 0 auto 22px;
    padding: 14px 18px;
    border-radius: 12px;
    font-size: 14px;
    font-weight: 600;
  }

  .contact-alert.success {
    border: 1px solid #bbf7d0;
    background: #f0fdf4;
    color: #166534;
  }

  .contact-alert.error {
    border: 1px solid #fecaca;
    background: #fef2f2;
    color: #991b1b;
  }

  .contact-layout {
    display: grid;
    grid-template-columns: minmax(0, .9fr) minmax(420px, 1.1fr);
    gap: 26px;
    align-items: start;
  }

  .contact-info-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 16px;
  }

  .contact-info-card,
  .contact-form-card,
  .contact-location-grid div {
    border: 1px solid #e6edf8;
    border-radius: 16px;
    background: #ffffff;
    box-shadow: 0 16px 34px rgba(15, 23, 42, .06);
  }

  .contact-info-card {
    display: grid;
    gap: 8px;
    padding: 22px;
  }

  .contact-info-card i {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 42px;
    height: 42px;
    border-radius: 12px;
    background: #eff6ff;
    color: #0f3cc9;
    font-size: 18px;
  }

  .contact-info-card h2,
  .contact-form-card h2,
  .contact-location-grid h3 {
    color: #0f172a;
    margin: 0;
  }

  .contact-info-card h2 {
    font-size: 18px;
  }

  .contact-info-card p,
  .contact-form-card p,
  .contact-location-grid p {
    color: #64748b;
    font-size: 14px;
    line-height: 1.55;
    margin: 0;
  }

  .contact-info-card a,
  .contact-location-grid a {
    color: #0f3cc9;
    font-size: 14px;
    font-weight: 600;
    text-decoration: none;
    overflow-wrap: anywhere;
  }

  .contact-form-card {
    display: grid;
    gap: 18px;
    padding: 28px;
  }

  .contact-form-card h2 {
    font-size: 26px;
  }

  .contact-form-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 16px;
  }

  .contact-form-card label {
    display: grid;
    gap: 9px;
    color: #475569;
    font-size: 14px;
    font-weight: 600;
  }

  .contact-form-card input,
  .contact-form-card select,
  .contact-form-card textarea {
    width: 100%;
    min-height: 52px;
    padding: 0 16px;
    border: 1px solid #cbd5e1;
    border-radius: 10px;
    background: #f8fafc;
    color: #0f172a;
    font-family: Inter, Arial, sans-serif;
    font-size: 15px;
    outline: none;
  }

  .contact-department-dropdown {
    min-width: 0;
  }

  .contact-department-dropdown .storage-billing-toggle {
    min-height: 52px;
    font-size: 15px;
    font-weight: 700;
  }

  .contact-form-card textarea {
    min-height: 130px;
    padding-top: 14px;
    resize: vertical;
  }

  .contact-form-card input:focus,
  .contact-form-card select:focus,
  .contact-form-card textarea:focus {
    border-color: #0f3cc9;
    box-shadow: 0 0 0 3px rgba(15, 60, 201, .12);
  }

  .contact-submit-btn {
    min-height: 54px;
    border: 0;
    border-radius: 10px;
    background: #0f3cc9;
    color: #ffffff;
    font-family: Inter, Arial, sans-serif;
    font-size: 16px;
    font-weight: 800;
    cursor: pointer;
  }

  .contact-location-section {
    margin-top: 48px;
  }

  .contact-location-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 18px;
  }

  .contact-location-grid div {
    display: grid;
    gap: 10px;
    padding: 24px;
  }

  .notices-page-section {
    padding: 42px 0 70px;
    background: linear-gradient(180deg, #f8fbff 0%, #ffffff 100%);
  }

  .notices-page-head {
    max-width: 760px;
    margin: 0 auto 28px;
    text-align: center;
  }

  .notices-page-head span {
    display: inline-flex;
    align-items: center;
    min-height: 28px;
    padding: 0 12px;
    border-radius: 999px;
    background: #eff6ff;
    color: #0f3cc9;
    font-size: 12px;
    font-weight: 700;
  }

  .notices-page-head h1 {
    color: #0f172a;
    font-size: 42px;
    line-height: 1.12;
    margin: 14px 0 10px;
  }

  .notices-page-head p {
    color: #64748b;
    font-size: 16px;
    line-height: 1.6;
    margin: 0;
  }

  .notices-list {
    display: grid;
    gap: 16px;
    max-width: 1180px;
    margin: 0 auto;
  }

  .notice-card,
  .notice-empty-card {
    border: 1px solid #e6edf8;
    border-radius: 16px;
    background: #ffffff;
    box-shadow: 0 16px 34px rgba(15, 23, 42, .06);
  }

  .notice-card {
    display: grid;
    grid-template-columns: 150px minmax(0, 1fr);
    gap: 22px;
    padding: 24px;
  }

  .notice-card-date {
    display: grid;
    align-content: start;
    gap: 6px;
  }

  .notice-card-date span {
    color: #0f172a;
    font-size: 16px;
    font-weight: 700;
  }

  .notice-card-date em {
    color: #64748b;
    font-size: 13px;
    font-style: normal;
    font-weight: 600;
  }

  .notice-card-date small {
    color: #0f3cc9;
    font-size: 12px;
    font-weight: 700;
  }

  .notice-card-content,
  .notice-empty-card p {
    color: #475569;
    font-size: 15px;
    line-height: 1.7;
    margin: 0;
    text-align: justify;
  }

  .notice-card-content p {
    margin: 0 0 12px;
  }

.notice-card-content p:last-child {
  margin-bottom: 0;
}

.auth-page-section {
  padding: 46px 0 74px;
  background: linear-gradient(180deg, #f8fbff 0%, #ffffff 100%);
}

.auth-page-wrap {
  display: grid;
  grid-template-columns: minmax(0, .9fr) minmax(360px, 520px);
  gap: 28px;
  align-items: start;
}

.auth-page-wrap-small {
  grid-template-columns: minmax(0, .85fr) minmax(340px, 480px);
}

.auth-copy-card,
.auth-form-card {
  border: 1px solid #e6edf8;
  border-radius: 16px;
  background: #ffffff;
  box-shadow: 0 16px 34px rgba(15, 23, 42, .06);
}

.auth-copy-card {
  padding: 34px;
  position: relative;
  overflow: hidden;
}

.auth-copy-card::after {
  content: "";
  position: absolute;
  right: -90px;
  bottom: -110px;
  width: 240px;
  height: 240px;
  border-radius: 50%;
  background: rgba(15, 60, 201, .08);
  pointer-events: none;
}

.auth-copy-card > span {
  display: inline-flex;
  color: #0f3cc9;
  font-size: 13px;
  font-weight: 800;
  margin-bottom: 12px;
}

.auth-copy-card h1 {
  color: #0f172a;
  font-size: 38px;
  line-height: 1.08;
  margin: 0 0 16px;
}

.auth-copy-card p,
.auth-form-card p {
  color: #64748b;
  font-size: 16px;
  line-height: 1.65;
  margin: 0;
}

.auth-visual-panel {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  margin-top: 26px;
  position: relative;
  z-index: 1;
}

.auth-visual-panel div {
  padding: 18px;
  border: 1px solid #dbeafe;
  border-radius: 14px;
  background: linear-gradient(180deg, #f8fbff 0%, #ffffff 100%);
}

.auth-visual-panel strong {
  display: block;
  color: #0f172a;
  font-size: 26px;
  line-height: 1;
  font-weight: 850;
  margin-bottom: 8px;
}

.auth-visual-panel span {
  display: block;
  color: #64748b;
  font-size: 13px;
  line-height: 1.35;
  font-weight: 650;
}

.auth-benefits {
  display: grid;
  gap: 12px;
  margin-top: 28px;
}

.auth-benefits div {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 14px;
  border: 1px solid #dbeafe;
  border-radius: 12px;
  background: #f8fbff;
  color: #1e293b;
}

.auth-benefits span {
  display: grid;
  gap: 4px;
}

.auth-benefits strong {
  color: #0f172a;
  font-size: 15px;
  line-height: 1.25;
  font-weight: 850;
}

.auth-benefits small {
  color: #64748b;
  font-size: 13px;
  line-height: 1.4;
  font-weight: 600;
}

.auth-benefits i {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 34px;
  height: 34px;
  border-radius: 10px;
  background: #eef5ff;
  color: #0f3cc9;
  flex: 0 0 auto;
}

.auth-form-card {
  padding: 30px;
}

.auth-form-card h2 {
  color: #0f172a;
  font-size: 28px;
  line-height: 1.15;
  margin: 0 0 8px;
}

.auth-form {
  display: grid;
  gap: 16px;
  margin-top: 22px;
}

.auth-form-two-col {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.auth-wide {
  grid-column: 1 / -1;
}

.auth-form label {
  display: grid;
  gap: 8px;
  color: #334155;
  font-size: 14px;
  font-weight: 650;
}

.auth-dropdown-field {
  display: grid;
  gap: 8px;
  color: #334155;
  font-size: 14px;
  font-weight: 650;
  min-width: 0;
}

.auth-state-dropdown {
  margin-top: 0;
  min-width: 0 !important;
  width: 100%;
  max-width: 100%;
}

.auth-state-dropdown .storage-billing-toggle {
  min-width: 0;
  max-width: 100%;
  min-height: 54px;
  font-size: 15px;
  font-weight: 700;
  border: 1px solid #cbd5e1;
  background: #f8fafc;
  color: #0f172a;
  box-shadow: none;
}

.auth-state-dropdown .storage-billing-toggle:hover,
.auth-state-dropdown.is-open .storage-billing-toggle,
.auth-state-dropdown .storage-billing-toggle:focus-visible {
  border: 1px solid #cbd5e1;
  background: #f8fafc;
  color: #0f172a;
  box-shadow: none;
}

.auth-state-dropdown .storage-billing-toggle span {
  min-width: 0;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.auth-section-title {
  padding-top: 8px;
  border-top: 1px solid #e5e7eb;
  color: #0f172a;
  font-size: 16px;
  font-weight: 800;
}

.auth-form input {
  width: 100%;
  min-height: 54px;
  padding: 0 16px;
  border: 1px solid #cbd5e1;
  border-radius: 10px;
  background: #f8fafc;
  color: #0f172a;
  font-family: Inter, Arial, sans-serif;
  font-size: 15px;
  font-weight: 600;
  outline: none;
}

.auth-form input:focus {
  border-color: #0f3cc9;
  box-shadow: 0 0 0 3px rgba(15, 60, 201, .10);
  background: #ffffff;
}

.auth-policy-note {
  color: #64748b;
  font-size: 8px;
  line-height: 1.55;
  margin: -4px 0 0;
}

.auth-policy-note a {
  color: #0f3cc9;
  font-weight: 800;
  text-decoration: none;
}

.auth-form button {
  min-height: 54px;
  border: 0;
  border-radius: 10px;
  background: #173fd6;
  color: #ffffff;
  font-family: Inter, Arial, sans-serif;
  font-size: 16px;
  font-weight: 800;
  cursor: pointer;
}

.auth-form button:hover {
  background: #0f33bb;
}

.auth-alert {
  padding: 12px 14px;
  border: 1px solid #bfdbfe;
  border-radius: 10px;
  background: #eff6ff;
  color: #0f3cc9;
  font-size: 14px;
  font-weight: 650;
  margin-top: 18px;
}

.page-warning-message {
  display: flex;
  align-items: center;
  gap: 10px;
  margin: 18px 0 0;
  padding: 14px 16px;
  border: 1px solid #fde68a;
  border-radius: 12px;
  background: #fffbeb;
  color: #92400e;
  font-size: 15px;
  font-weight: 650;
  line-height: 1.45;
}

.page-warning-message i {
  color: #d97706;
}

.checkout-page-section {
  padding: 42px 0 76px;
  background: linear-gradient(180deg, #f8fbff 0%, #ffffff 100%);
}

.checkout-page-head {
  max-width: 720px;
  margin: 0 auto 30px;
  text-align: center;
}

.checkout-page-head span {
  color: #0f3cc9;
  font-size: 13px;
  font-weight: 800;
}

.checkout-page-head h1 {
  color: #0f172a;
  font-size: 42px;
  line-height: 1.1;
  margin: 8px 0 10px;
}

.checkout-page-head p {
  color: #64748b;
  font-size: 16px;
  line-height: 1.6;
  margin: 0;
}

.checkout-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 390px;
  gap: 28px;
  align-items: start;
}

.checkout-items-card,
.checkout-summary-card,
.checkout-empty-card {
  border: 1px solid #e6edf8;
  border-radius: 16px;
  background: #ffffff;
  box-shadow: 0 16px 34px rgba(15, 23, 42, .06);
}

.checkout-items-card,
.checkout-summary-card,
.checkout-empty-card {
  padding: 28px;
}

.checkout-card-head {
  display: flex;
  justify-content: space-between;
  gap: 14px;
  align-items: center;
  padding-bottom: 18px;
  border-bottom: 1px solid #e5e7eb;
}

.checkout-card-head h2,
.checkout-summary-card h2,
.checkout-empty-card h2 {
  color: #0f172a;
  font-size: 24px;
  line-height: 1.2;
  margin: 0;
}

.checkout-card-head span {
  color: #0f3cc9;
  font-size: 13px;
  font-weight: 800;
}

.checkout-items-list {
  display: grid;
}

.checkout-item {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 16px;
  align-items: center;
  padding: 18px 0;
  border-bottom: 1px solid #e5e7eb;
}

.checkout-item:last-child {
  border-bottom: 0;
  padding-bottom: 0;
}

.checkout-item strong {
  display: block;
  color: #0f172a;
  font-size: 17px;
  font-weight: 800;
}

.checkout-item span,
.checkout-item small {
  display: block;
  color: #64748b;
  font-size: 14px;
  line-height: 1.45;
  margin-top: 4px;
}

.checkout-item-price {
  display: flex;
  align-items: center;
  gap: 14px;
}

.checkout-item-price strong {
  white-space: nowrap;
}

.checkout-item-price a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 34px;
  height: 34px;
  border-radius: 9px;
  background: #f8fafc;
  color: #dc2626;
  border: 1px solid #e5e7eb;
}

.checkout-summary-card {
  position: sticky;
  top: 92px;
}

.checkout-summary-line,
.checkout-summary-total {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  padding: 16px 0;
  border-bottom: 1px solid #e5e7eb;
  color: #475569;
  font-size: 15px;
  font-weight: 650;
}

.checkout-summary-line strong {
  color: #334155;
}

.checkout-summary-total {
  border-bottom: 0;
  align-items: baseline;
  color: #0f172a;
  font-size: 19px;
  font-weight: 800;
}

.checkout-summary-total strong {
  color: #0f172a;
  font-size: 30px;
}

.checkout-pay-button,
.checkout-ekyc-box button,
.checkout-empty-card a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  width: 100%;
  min-height: 56px;
  border: 0;
  border-radius: 10px;
  background: #173fd6;
  color: #ffffff;
  font-family: Inter, Arial, sans-serif;
  font-size: 16px;
  font-weight: 850;
  cursor: pointer;
}

.checkout-ekyc-box,
.checkout-error-box {
  margin-top: 18px;
  padding: 16px;
  border-radius: 12px;
}

.checkout-ekyc-box {
  border: 1px solid #fde68a;
  background: #fffbeb;
  color: #92400e;
}

.checkout-ekyc-box strong {
  display: block;
  color: #92400e;
  margin-bottom: 6px;
}

.checkout-ekyc-box p,
.checkout-help-text,
.checkout-empty-card p {
  color: #64748b;
  font-size: 14px;
  line-height: 1.55;
  margin: 0 0 14px;
}

.checkout-error-box {
  border: 1px solid #fecaca;
  background: #fef2f2;
  color: #b91c1c;
  font-size: 14px;
  font-weight: 700;
}

.checkout-help-text {
  font-size: clamp(12px, 2.8vw, 14px);
  margin: 14px 0 0;
  text-align: center;
  white-space: nowrap;
}

.checkout-help-text a {
  color: #0f3cc9;
  font-weight: 800;
  white-space: nowrap;
}

.checkout-trust {
  display: grid;
  gap: 10px;
  justify-items: center;
  color: #64748b;
  font-size: 14px;
  font-weight: 650;
  margin-top: 20px;
}

.checkout-trust i {
  color: #16a34a;
}

.checkout-empty-card {
  max-width: 560px;
  margin: 0 auto;
  text-align: center;
}

.ccavenue-payment-frame {
  display: block;
  border: 1px solid #e6edf8;
  border-radius: 12px;
  background: #ffffff;
  box-shadow: 0 16px 34px rgba(15, 23, 42, .06);
}

.ssl-flow-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 390px;
  gap: 28px;
  align-items: start;
}

.ssl-flow-form {
  display: grid;
  gap: 18px;
  margin-top: 24px;
}

.ssl-flow-form label {
  display: grid;
  gap: 8px;
}

.ssl-dropdown-field {
  display: grid;
  gap: 8px;
}

.ssl-flow-form label span,
.ssl-dropdown-field > span {
  color: #0f172a;
  font-size: 14px;
  font-weight: 850;
}

.ssl-flow-form input,
.ssl-flow-form select {
  width: 100%;
  min-height: 54px;
  padding: 0 16px;
  border: 1px solid #cbd5e1;
  border-radius: 10px;
  background: #f8fafc;
  color: #0f172a;
  font-family: Inter, Arial, sans-serif;
  font-size: 15px;
  font-weight: 650;
  outline: none;
}

.ssl-flow-form input:focus,
.ssl-flow-form select:focus {
  border-color: #0f3cc9;
  box-shadow: 0 0 0 3px rgba(15, 60, 201, .10);
  background: #ffffff;
}

.ssl-flow-form small {
  color: #64748b;
  font-size: 13px;
  line-height: 1.45;
}

.ssl-challenge-list {
  display: grid;
  gap: 16px;
  margin-top: 22px;
}

.ssl-challenge-box {
  display: grid;
  gap: 10px;
  padding: 18px;
  border: 1px solid #e6edf8;
  border-radius: 12px;
  background: #f8fbff;
}

.ssl-challenge-box.is-ok {
  border-color: #bbf7d0;
  background: #f0fdf4;
}

.ssl-challenge-box.is-error {
  border-color: #fecaca;
  background: #fef2f2;
}

.ssl-challenge-box h3 {
  color: #0f172a;
  font-size: 18px;
  line-height: 1.25;
  margin: 0;
}

.ssl-challenge-box p {
  color: #64748b;
  font-size: 14px;
  line-height: 1.5;
  margin: 0;
}

.ssl-challenge-box code {
  display: block;
  padding: 12px;
  overflow-wrap: anywhere;
  border: 1px solid #dbeafe;
  border-radius: 10px;
  background: #ffffff;
  color: #0f172a;
  font-family: Consolas, "Courier New", monospace;
  font-size: 13px;
  line-height: 1.5;
}

.ssl-action-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-items: center;
}

.ssl-action-row .checkout-pay-button {
  width: auto;
  min-height: 46px;
  padding: 0 18px;
  text-decoration: none;
}

.ssl-secondary-action {
  display: inline-flex;
  align-items: center;
  min-height: 46px;
  color: #0f3cc9;
  font-size: 14px;
  font-weight: 850;
  text-decoration: none;
}

.payment-result-section {
  padding: 52px 0 76px;
  background: linear-gradient(180deg, #f8fbff 0%, #ffffff 100%);
}

.payment-result-card {
  max-width: 860px;
  margin: 0 auto;
  padding: 34px;
  border: 1px solid #e6edf8;
  border-radius: 16px;
  background: #ffffff;
  box-shadow: 0 16px 34px rgba(15, 23, 42, .06);
  text-align: center;
}

.payment-result-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 62px;
  height: 62px;
  border-radius: 50%;
  margin-bottom: 18px;
  color: #ffffff;
  font-size: 26px;
}

.payment-result-card.success .payment-result-icon {
  background: #16a34a;
}

.payment-result-card.failed .payment-result-icon {
  background: #dc2626;
}

.payment-result-card h1 {
  color: #0f172a;
  font-size: 38px;
  line-height: 1.1;
  margin: 0 0 10px;
}

.payment-result-card p {
  max-width: 620px;
  margin: 0 auto 22px;
  color: #64748b;
  font-size: 16px;
  line-height: 1.6;
}

.reseller-hero {
  position: relative;
  overflow: hidden;
  padding: 32px 0 44px;
  background:
    radial-gradient(circle at 12% 72%, rgba(163, 195, 255, 0.66), transparent 24%),
    radial-gradient(circle at 86% 30%, rgba(187, 247, 208, 0.38), transparent 24%),
    radial-gradient(circle at 86% 82%, rgba(254, 240, 138, 0.32), transparent 24%),
    linear-gradient(180deg, #ffffff 0%, #f8fbff 100%);
}

.reseller-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: radial-gradient(rgba(125, 145, 185, 0.16) 1px, transparent 1px);
  background-size: 18px 18px;
  opacity: .32;
  pointer-events: none;
  mask-image: linear-gradient(90deg, transparent 0%, rgba(0, 0, 0, 0.7) 35%, rgba(0, 0, 0, 0.7) 100%);
}

.reseller-hero .container {
  position: relative;
  z-index: 1;
}

.reseller-hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(520px, .9fr);
  gap: 24px;
  align-items: flex-start;
}

.reseller-hero-copy h1 {
  max-width: 760px;
  color: #0f172a;
  font-size: 58px;
  line-height: 1.02;
  margin: 18px 0 18px;
}

.reseller-hero-copy p {
  max-width: 650px;
  color: #475569;
  font-size: 18px;
  line-height: 1.65;
  margin: 0 0 24px;
}

.reseller-hero-actions {
  display: flex;
  gap: 18px;
  align-items: center;
  margin-top: 28px;
}

.reseller-hero-actions .search-submit {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 54px;
  min-width: 150px;
  text-decoration: none;
}

.reseller-secondary-link {
  color: #0f3cc9;
  font-size: 15px;
  font-weight: 850;
  text-decoration: none;
}

.reseller-hero-card {
  position: relative;
  min-height: auto;
  max-width: 720px;
  margin-left: 0;
  padding: 58px 24px 44px 0;
}

.reseller-storefront,
.reseller-metric-card {
  border: 1px solid rgba(219, 234, 254, .92);
  border-radius: 18px;
  background: #ffffff;
  box-shadow: 0 24px 54px rgba(15, 23, 42, .12);
}

.reseller-storefront {
  position: relative;
  overflow: hidden;
  background:
    linear-gradient(#ffffff, #ffffff) padding-box,
    linear-gradient(135deg, #0f3cc9, #16a34a, #f59e0b) border-box;
  border: 1px solid transparent;
  min-height: 390px;
}

.reseller-storefront-bar {
  display: flex;
  gap: 8px;
  padding: 14px 18px;
  border-bottom: 1px solid #e5e7eb;
  background: linear-gradient(90deg, #eff6ff 0%, #ecfdf5 52%, #fffbeb 100%);
}

.reseller-storefront-bar span {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: #0f3cc9;
}

.reseller-storefront-bar span:nth-child(2) {
  background: #16a34a;
}

.reseller-storefront-bar span:nth-child(3) {
  background: #f59e0b;
}

.reseller-storefront-body {
  display: grid;
  gap: 16px;
  padding: 26px 32px 28px;
  background:
    radial-gradient(circle at 88% 24%, rgba(15, 60, 201, .08), transparent 28%),
    radial-gradient(circle at 22% 100%, rgba(22, 163, 74, .07), transparent 24%),
    #ffffff;
}

.reseller-storefront-head p {
  max-width: 420px;
  color: #64748b;
  font-size: 14px;
  line-height: 1.55;
  margin: 8px 0 0;
}

.reseller-storefront-body small {
  color: #0f3cc9;
  font-size: 13px;
  font-weight: 850;
}

.reseller-storefront-body strong {
  display: block;
  color: #0f172a;
  font-size: 30px;
  line-height: 1.1;
  margin-top: 8px;
}

.reseller-storefront-body ul {
  display: grid;
  gap: 14px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.reseller-storefront-body li {
  display: flex;
  gap: 10px;
  align-items: center;
  width: fit-content;
  padding: 9px 12px;
  border-radius: 999px;
  background: #f8fafc;
  border: 1px solid #e5e7eb;
  color: #334155;
  font-weight: 750;
}

.reseller-storefront-body li i {
  color: #16a34a;
}

.reseller-hero-product-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
}

.reseller-hero-product-grid div {
  display: grid;
  gap: 8px;
  min-height: 92px;
  padding: 14px;
  align-content: center;
  border: 1px solid #e6edf8;
  border-radius: 14px;
  background: linear-gradient(180deg, #f8fbff 0%, #ffffff 100%);
  box-shadow: 0 10px 22px rgba(15, 23, 42, .05);
}

.reseller-hero-product-grid i {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 34px;
  height: 34px;
  border-radius: 12px;
  background: #eff6ff;
  color: #0f3cc9;
}

.reseller-hero-product-grid div:nth-child(2) i {
  background: #ecfdf5;
  color: #15803d;
}

.reseller-hero-product-grid div:nth-child(3) i {
  background: #fef3c7;
  color: #b45309;
}

.reseller-hero-product-grid div:nth-child(4) i {
  background: #eef2ff;
  color: #4338ca;
}

.reseller-hero-product-grid div:nth-child(5) i {
  background: #f0f9ff;
  color: #0369a1;
}

.reseller-hero-product-grid div:nth-child(6) i {
  background: #fef2f2;
  color: #b91c1c;
}

.reseller-hero-product-grid span {
  color: #0f172a;
  font-size: 13px;
  line-height: 1.25;
  font-weight: 850;
}

.reseller-metric-card {
  position: absolute;
  z-index: 2;
  display: grid;
  gap: 6px;
  min-width: 150px;
  padding: 16px 18px;
  overflow: hidden;
}

.reseller-metric-card.top {
  top: 0;
  right: 18px;
  border-color: rgba(191, 219, 254, .9);
  background: linear-gradient(135deg, #eff6ff 0%, #ffffff 70%);
}

.reseller-metric-card.bottom {
  right: 0;
  bottom: 0;
  border-color: rgba(187, 247, 208, .95);
  background: linear-gradient(135deg, #ecfdf5 0%, #ffffff 72%);
}

.reseller-metric-card span {
  color: #475569;
  font-size: 13px;
  font-weight: 800;
}

.reseller-metric-card strong {
  color: #0f172a;
  font-size: 26px;
  line-height: 1;
}

.reseller-metric-card.top strong {
  color: #0f3cc9;
}

.reseller-metric-card.bottom strong {
  color: #15803d;
  font-size: 19px;
  line-height: 1.08;
}

.reseller-overview-section,
.reseller-features-section,
.reseller-faq-section {
  padding: 70px 0;
  background: #ffffff;
}

.reseller-steps-section,
.reseller-apply-section {
  padding: 70px 0;
  background: #f8fafc;
}

.reseller-section-head {
  max-width: 760px;
  margin: 0 auto 34px;
  text-align: center;
}

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

.reseller-section-head span,
.reseller-apply-copy span {
  color: #0f3cc9;
  font-size: 13px;
  font-weight: 850;
}

.reseller-section-head h2,
.reseller-apply-copy h2 {
  color: #0f172a;
  font-size: 38px;
  line-height: 1.12;
  margin: 8px 0 10px;
}

.reseller-section-head p,
.reseller-apply-copy p {
  color: #64748b;
  font-size: 16px;
  line-height: 1.65;
  margin: 0;
}

.reseller-product-grid,
.reseller-feature-grid,
.reseller-faq-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.reseller-product-grid div,
.reseller-feature-grid div,
.reseller-faq-grid details,
.reseller-form-card,
.reseller-apply-note {
  border: 1px solid #e6edf8;
  border-radius: 14px;
  background: #ffffff;
  box-shadow: 0 14px 30px rgba(15, 23, 42, .05);
}

.reseller-product-grid div {
  display: flex;
  gap: 14px;
  align-items: center;
  padding: 22px;
  color: #0f172a;
}

.reseller-product-grid i,
.reseller-feature-grid i {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  border-radius: 12px;
  background: #eef4ff;
  color: #0f3cc9;
  flex: 0 0 auto;
}

.reseller-product-grid strong,
.reseller-feature-grid strong {
  color: #0f172a;
  font-size: 17px;
  line-height: 1.3;
}

.reseller-steps-grid,
.reseller-apply-grid {
  display: grid;
  grid-template-columns: minmax(0, .8fr) minmax(0, 1.2fr);
  gap: 38px;
  align-items: start;
}

.reseller-steps-list {
  display: grid;
  gap: 14px;
}

.reseller-steps-list div {
  display: grid;
  grid-template-columns: 48px minmax(0, 1fr);
  gap: 16px;
  align-items: start;
  padding: 20px;
  border: 1px solid #e6edf8;
  border-radius: 14px;
  background: #ffffff;
}

.reseller-steps-list span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: #0f3cc9;
  color: #ffffff;
  font-weight: 900;
}

.reseller-steps-list p {
  color: #475569;
  font-size: 15px;
  line-height: 1.55;
  margin: 0;
}

.reseller-feature-grid div {
  padding: 24px;
}

.reseller-feature-grid p {
  color: #64748b;
  font-size: 14px;
  line-height: 1.55;
  margin: 10px 0 0;
}

.reseller-feature-grid strong {
  display: block;
  margin-top: 16px;
}

.reseller-apply-note {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  margin-top: 24px;
  padding: 18px;
  color: #475569;
  font-size: 14px;
  line-height: 1.55;
}

.reseller-apply-note i {
  color: #0f3cc9;
  margin-top: 3px;
}

.reseller-form-card {
  padding: 28px;
}

.reseller-form {
  display: grid;
  gap: 18px;
}

.reseller-form-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
}

.reseller-form label {
  display: grid;
  gap: 8px;
}

.reseller-form label span {
  color: #0f172a;
  font-size: 13px;
  font-weight: 850;
}

.reseller-form input {
  width: 100%;
  min-height: 52px;
  border: 1px solid #e5e7eb;
  border-radius: 10px;
  background: #ffffff;
  color: #0f172a;
  font-size: 15px;
  padding: 0 14px;
  outline: 0;
}

.reseller-form input:focus {
  border-color: #0f3cc9;
  box-shadow: 0 0 0 4px rgba(15, 60, 201, .10);
}

.reseller-captcha {
  min-height: 78px;
}

.reseller-alert {
  margin-bottom: 18px;
  padding: 14px 16px;
  border-radius: 12px;
  font-size: 14px;
  font-weight: 800;
}

.reseller-alert.success {
  border: 1px solid #bbf7d0;
  background: #f0fdf4;
  color: #15803d;
}

.reseller-alert.error {
  border: 1px solid #fecaca;
  background: #fef2f2;
  color: #b91c1c;
}

.reseller-faq-grid details {
  padding: 20px;
}

.reseller-faq-grid summary {
  cursor: pointer;
  color: #0f172a;
  font-size: 16px;
  font-weight: 850;
}

.reseller-faq-grid p {
  color: #64748b;
  font-size: 14px;
  line-height: 1.6;
  margin: 14px 0 0;
}

.reseller-faq-grid a {
  color: #0f3cc9;
  font-weight: 800;
}

@media (max-width: 1024px) {
  .reseller-hero-grid,
  .reseller-steps-grid,
  .reseller-apply-grid {
    grid-template-columns: 1fr;
  }

  .reseller-hero-copy h1 {
    font-size: 48px;
  }

  .reseller-hero-card {
    min-height: 390px;
    max-width: 620px;
  }

  .reseller-product-grid,
  .reseller-feature-grid,
  .reseller-faq-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .reseller-section-head.left {
    max-width: 760px;
    margin: 0 0 28px;
  }
}

@media (max-width: 640px) {
  .reseller-hero,
  .reseller-overview-section,
  .reseller-steps-section,
  .reseller-features-section,
  .reseller-apply-section,
  .reseller-faq-section {
    padding: 42px 0;
  }

  .reseller-hero-copy h1 {
    font-size: 38px;
  }

  .reseller-hero-copy p {
    font-size: 16px;
  }

  .reseller-hero-actions {
    align-items: stretch;
    flex-direction: column;
  }

  .reseller-secondary-link {
    text-align: center;
  }

  .reseller-hero-card {
    display: block;
    min-height: auto;
    padding: 42px 0 48px;
    max-width: 100%;
  }

  .reseller-storefront-body {
    padding: 24px;
  }

  .reseller-metric-card {
    min-width: 132px;
    padding: 13px 14px;
  }

  .reseller-metric-card.top {
    top: 0;
    right: 12px;
  }

  .reseller-metric-card.bottom {
    right: 8px;
    bottom: 0;
  }

  .reseller-metric-card span {
    font-size: 11px;
  }

  .reseller-metric-card strong {
    font-size: 22px;
  }

  .reseller-metric-card.bottom strong {
    font-size: 16px;
  }

  .reseller-hero-product-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .reseller-storefront-body strong {
    font-size: 28px;
  }

  .reseller-section-head h2,
  .reseller-apply-copy h2 {
    font-size: 30px;
  }

  .reseller-product-grid,
  .reseller-feature-grid,
  .reseller-faq-grid,
  .reseller-form-grid {
    grid-template-columns: 1fr;
  }

  .reseller-form-card {
    padding: 20px;
  }
}

.payment-result-orders {
  display: grid;
  gap: 10px;
  max-width: 620px;
  margin: 22px auto;
  text-align: left;
}

.payment-result-orders div {
  padding: 14px 16px;
  border: 1px solid #e6edf8;
  border-radius: 10px;
  background: #f8fbff;
}

.payment-result-orders strong,
.payment-result-orders span {
  display: block;
}

.payment-result-orders strong {
  color: #0f172a;
  font-size: 15px;
}

.payment-result-orders span {
  color: #64748b;
  font-size: 13px;
  margin-top: 4px;
}

.payment-feedback-form {
  display: grid;
  gap: 18px;
  margin-top: 28px;
  text-align: left;
}

.payment-feedback-form h2 {
  color: #0f172a;
  font-size: 18px;
  line-height: 1.25;
  margin: 0;
}

.payment-choice-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 10px;
}

.payment-choice-grid label {
  display: flex;
  align-items: center;
  gap: 8px;
  min-height: 46px;
  padding: 0 12px;
  border: 1px solid #dbeafe;
  border-radius: 10px;
  background: #f8fafc;
  color: #0f172a;
  font-size: 14px;
  font-weight: 700;
}

.payment-feedback-form textarea {
  width: 100%;
  min-height: 110px;
  padding: 14px;
  border: 1px solid #cbd5e1;
  border-radius: 10px;
  background: #f8fafc;
  color: #0f172a;
  font-family: Inter, Arial, sans-serif;
  font-size: 15px;
  outline: none;
  resize: vertical;
}

.payment-result-actions {
  display: flex;
  justify-content: center;
  gap: 12px;
  flex-wrap: wrap;
  margin-top: 8px;
}

.payment-result-actions button,
.payment-result-actions a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 22px;
  border: 0;
  border-radius: 10px;
  background: #173fd6;
  color: #ffffff;
  font-family: Inter, Arial, sans-serif;
  font-size: 15px;
  font-weight: 800;
  cursor: pointer;
}

.payment-result-actions a:nth-child(2) {
  background: #f8fafc;
  color: #0f3cc9;
  border: 1px solid #dbeafe;
}

.payment-result-card small {
  display: block;
  color: #64748b;
  font-size: 14px;
  margin-top: 18px;
}

.auth-links {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  flex-wrap: wrap;
  margin-top: 20px;
  color: #64748b;
  font-size: 14px;
  font-weight: 600;
}

.auth-links a {
  color: #0f3cc9;
  font-weight: 800;
  text-decoration: none;
}

.auth-captcha {
  max-width: 100%;
  overflow: hidden;
}

  .notice-empty-card {
    padding: 28px;
    text-align: center;
  }

  .notice-empty-card h2 {
    color: #0f172a;
    margin: 0 0 8px;
  }

  .plans {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin-top: 40px;
  }

  .plan {
    border: 1px solid #e5e7eb;
    border-radius: 24px;
    padding: 28px;
    background: #fff;
  }

  .plan .highlight {
    display: inline-block;
    background: #0f3cc9;
    color: #fff;
    padding: 8px 12px;
    border-radius: 999px;
    font-size: 13px;
    margin-bottom: 12px;
  }

  .pricing-section {
    background: #ffffff;
  }

  .value-plans {
    gap: 58px 20px;
    align-items: stretch;
    padding-top: 34px;
  }

  .value-plans .plan {
    position: relative;
    display: flex;
    flex-direction: column;
    min-height: 560px;
    overflow: hidden;
    border: 1px solid #e8edf5;
    border-radius: 16px;
    padding: 28px 22px 26px;
    background: #ffffff;
    box-shadow: none;
  }

  .value-plans .plan:nth-child(2) {
    border: 4px solid #0f3cc9;
    margin-top: -38px;
    min-height: 598px;
    padding: 63px 20px 24px;
    background: linear-gradient(180deg, #0f3cc9 0 42px, #ffffff 42px 100%);
    box-shadow: inset 0 0 0 1px #0f3cc9;
  }

  .value-plans .plan:nth-child(2)::before {
    content: "Most Popular";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 42px;
    background: #0f3cc9;
    color: #ffffff;
    font-size: 14px;
    font-weight: 800;
    border-radius: 0;
  }

  .value-plans .plan h3 {
    order: 1;
    color: #0f172a;
    font-size: 18px;
    font-weight: 800;
    margin-bottom: 10px;
  }

  .value-plans .plan > p:first-of-type {
    order: 2;
    min-height: 34px;
    color: #475569;
    font-size: 14px;
    line-height: 1.45;
    margin-bottom: 8px;
  }

  .value-plans .plan h2 {
    order: 3;
    position: relative;
    display: flex;
    align-items: baseline;
    color: #020617;
    font-size: 32px;
    line-height: 1.1;
    margin: 8px 0 10px;
  }

  .value-plans .plan > div {
    order: 4;
    margin-top: 0 !important;
  }

  .value-plans .plan .btn {
    width: 100%;
    min-height: 50px;
    margin: 4px 0 20px;
    border-color: #0f3cc9;
    border-radius: 10px;
    background: #ffffff;
    color: #0f3cc9;
    font-size: 15px;
  }

  .value-plans .plan:nth-child(2) .btn {
    background: #0f3cc9;
    color: #ffffff;
  }

  .value-plans .plan > p:nth-of-type(n+2) {
    order: 5;
    display: flex;
    align-items: center;
    gap: 12px;
    color: #0f172a;
    font-size: 14px;
    line-height: 1.45;
    margin-bottom: 14px;
  }

  .value-plans .plan > p:nth-of-type(n+2) i {
    width: 16px;
    color: #0f172a;
    font-size: 13px;
    text-align: center;
    flex: 0 0 16px;
  }

  .value-plans .plan > p:nth-of-type(2) {
    padding-top: 22px;
    border-top: 1px solid #e5e7eb;
  }

  .object-storage-plans .plan,
  .object-storage-plans .plan:nth-child(2) {
    min-height: auto;
  }

  .mariadb-plans {
    align-items: start;
  }

  .mariadb-plans .plan,
  .mariadb-plans .plan:nth-child(2) {
    min-height: auto;
  }

  .email-hosting-pricing {
    background: linear-gradient(180deg, #f8fbff 0%, #ffffff 100%);
  }

  .email-pricing-layout {
    display: grid;
    grid-template-columns: minmax(240px, 360px) minmax(0, 1fr);
    align-items: center;
    gap: 54px;
  }

  .email-pricing-copy h2 {
    color: #0f172a;
    font-size: 44px;
    line-height: 1.16;
    font-weight: 600;
    margin: 0 0 20px;
  }

  .email-pricing-copy p {
    max-width: 310px;
    color: #475569;
    font-size: 20px;
    line-height: 1.5;
    margin: 0 0 26px;
  }

  .email-billing-switch {
    display: inline-flex;
    flex-direction: row-reverse;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
    min-width: 172px;
    min-height: 48px;
    padding: 5px;
    border: 1px solid #0f3cc9;
    border-radius: 999px;
    background: #ffffff;
    color: #0f3cc9;
    font-size: 14px;
    font-weight: 800;
    box-shadow: 0 10px 24px rgba(15, 60, 201, .1);
    cursor: pointer;
  }

  .email-billing-switch.is-yearly {
    flex-direction: row;
    background: #0f3cc9;
    color: #ffffff;
  }

  .email-billing-label {
    flex: 1;
    text-align: center;
  }

  .email-billing-knob {
    width: 38px;
    height: 38px;
    flex: 0 0 38px;
    border-radius: 50%;
    background: #ffffff;
    box-shadow: 0 3px 10px rgba(15, 23, 42, .12);
  }

  .email-pricing-cards {
    position: relative;
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    align-items: stretch;
    gap: 22px;
  }

  .email-plan-card {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    min-height: 0;
    padding: 54px 34px 34px;
    border: 1px solid #e6edf8;
    border-radius: 16px;
    background: #ffffff;
    box-shadow: 0 16px 34px rgba(15, 23, 42, .06);
    transition: border-color .15s, transform .15s, box-shadow .15s;
  }

  .email-plan-card:hover {
    border-color: rgba(15, 60, 201, .35);
    box-shadow: 0 20px 44px rgba(15, 60, 201, .11);
    transform: translateY(-2px);
  }

  .email-plan-card.is-recommended {
    border: 2px solid #0f3cc9;
  }

  .email-plan-card h3 {
    color: #0f172a;
    font-size: 24px;
    line-height: 1.2;
    font-weight: 800;
    margin: 0 0 18px;
    text-align: center;
  }

  .email-plan-price {
    color: #111827;
    font-size: 42px;
    line-height: 1;
    font-weight: 800;
    margin-bottom: 16px;
  }

  .email-plan-price small {
    color: #475569;
    font-size: 18px;
    font-weight: 700;
  }

  .email-plan-save {
    width: auto;
    min-height: 34px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 4px;
    padding: 0 16px;
    border: 1px solid #bfdbfe;
    border-radius: 8px;
    background: #eff6ff;
    color: #0f3cc9;
    font-size: 14px;
    font-weight: 800;
    margin-bottom: 24px;
  }

  .email-plan-save span {
    font-weight: 500;
  }

  .email-plan-features {
    width: 100%;
    margin: 0 0 28px;
    padding: 0;
    list-style: none;
    color: #334155;
    font-size: 15px;
    text-align: left;
  }

  .email-plan-features li {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 11px 0;
    border-bottom: 1px solid #edf2f7;
  }

  .email-plan-features li::before {
    content: "";
    width: 8px;
    height: 8px;
    flex: 0 0 8px;
    border-radius: 50%;
    background: #0f3cc9;
  }

  .email-id-input {
    width: 100%;
    min-height: 48px;
    margin-top: auto;
    margin-bottom: 16px;
    padding: 0 16px;
    border: 1px solid #cbd5e1;
    border-radius: 10px;
    background: #f8fafc;
    color: #0f172a;
    font-family: Inter, Arial, sans-serif;
    font-size: 14px;
    font-weight: 600;
    outline: none;
  }

  .email-id-input::placeholder {
    color: #7b8794;
    opacity: 1;
  }

  .email-id-input:focus {
    border-color: #0f3cc9;
    box-shadow: 0 0 0 3px rgba(15, 60, 201, .12);
  }

  .email-plan-button {
    width: 100%;
    min-height: 50px;
    border: 0;
    border-radius: 10px;
    background: #0f172a;
    color: #ffffff;
    font-size: 14px;
    font-weight: 900;
    text-transform: uppercase;
    cursor: pointer;
    transition: background .15s, transform .15s;
  }

  .email-plan-button:hover {
    background: #0f3cc9;
    transform: translateY(-1px);
  }

  .email-recommend-badge {
    position: absolute;
    top: 16px;
    left: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    width: auto;
    height: 28px;
    padding: 0 14px;
    border-radius: 999px;
    background: #0f3cc9;
    color: #ffffff;
    font-size: 12px;
    font-weight: 900;
    text-transform: uppercase;
    transform: translateX(-50%);
  }

  @media (max-width: 1100px) {
    .email-pricing-layout {
      grid-template-columns: 1fr;
      gap: 56px;
    }

    .email-pricing-copy {
      text-align: center;
    }

    .email-pricing-copy h2 {
      max-width: 620px;
      margin: 0 auto 18px;
      font-size: 40px;
    }

    .email-pricing-copy p {
      font-size: 24px;
    }
  }

  @media (min-width: 761px) and (max-width: 1100px) {
    .dns-pricing-section .email-pricing-layout {
      grid-template-columns: minmax(220px, 300px) minmax(0, 1fr);
      align-items: center;
      gap: 28px;
    }

    .dns-pricing-section .email-pricing-copy {
      text-align: left;
    }

    .dns-pricing-section .email-pricing-copy h2 {
      max-width: none;
      margin: 0 0 18px;
      font-size: 40px;
    }

    .dns-pricing-section .email-pricing-cards {
      gap: 18px;
    }

    .dns-pricing-section .email-plan-card {
      padding-left: 24px;
      padding-right: 24px;
    }
  }

  @media (max-width: 760px) {
    .email-pricing-cards {
      grid-template-columns: 1fr;
      gap: 48px;
    }

    .email-plan-card {
      min-height: auto;
      padding: 48px 24px 34px;
    }

    .email-pricing-copy h2 {
      font-size: 28px;
      line-height: 1.25;
      margin-bottom: 12px;
    }

    .email-pricing-copy p {
      font-size: 16px;
      line-height: 1.45;
      margin: 0 auto 26px;
    }
  }

  
  .vps-plans-list {
    display: flex;
    flex-direction: column;
    gap: 24px;
    margin-top: 40px;
  }

  .vps-row {
    position: relative;
    border: 1px solid #e5e7eb;
    border-radius: 20px;
    background: #fff;
    padding: 30px 30px;
    transition: all 0.3s ease;
  }

  .vps-row:hover {
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.06);
    border-color: #cbd5e1;
  }

  .vps-row.recommended {
    border: 2px solid #0f3cc9;
    padding: 29px 29px;
  }

  .vps-row.recommended:hover {
    border-color: #0f3cc9;
  }

  .storage-pricing-section .vps-plans-list {
    gap: 14px;
    margin-top: 32px;
  }

  .storage-pricing-section .vps-row {
    border-radius: 18px;
    padding: 22px 30px;
  }

  .storage-pricing-section .vps-row.recommended {
    padding: 21px 29px;
  }

  .storage-pricing-section .vps-row-inner {
    gap: 16px;
    justify-content: space-between;
  }

  .storage-pricing-section .vps-specs {
    flex: 1;
    grid-template-columns: repeat(4, max-content);
    gap: 18px;
  }

  .storage-pricing-section .vps-price-order {
    flex: 0 0 auto;
    gap: 14px;
  }

  .vps-badge {
    position: absolute;
    top: -14px;
    left: 24px;
    background: #0f3cc9;
    color: #fff;
    padding: 6px 16px;
    font-size: 11px;
    font-weight: 800;
    border-radius: 8px 8px 8px 0;
  }

  .vps-row-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
  }

  .vps-info {
    flex: 0 0 230px;
    min-width: 230px;
  }
  
  .vps-info h3 {
    font-size: 21px;
    font-weight: 700;
    color: #111827;
    margin: 0 0 4px 0;
    line-height: 1.18;
  }

  .vps-specs {
    flex: 1;
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    align-items: center;
    gap: 15px;
  }

  .spec-col {
    display: flex;
    align-items: center;
    gap: 8px;
    color: #475569;
    font-size: 13px;
    font-weight: 500;
    white-space: normal;
    overflow-wrap: break-word;
    word-break: break-word;
    min-width: 0;
  }

  .vps-row.recommended .spec-col i {
    color: #0f3cc9;
  }

  .spec-col i {
    color: #0f3cc9;
    font-size: 16px;
    width: 20px;
    text-align: center;
  }

  .vps-price-order {
    flex: 0 0 auto;
    display: flex;
    align-items: center;
    gap: 24px;
  }

  .vps-price {
    text-align: right;
  }

  .vps-price-old {
    font-size: 12px;
    color: #94a3b8;
    text-decoration: line-through;
    margin-right: 6px;
    margin-bottom: -4px;
  }

  .price-main {
    font-size: 18px;
    font-weight: 800;
    color: #111827;
  }
  .price-main span {
    font-size: 13px;
    font-weight: 500;
    color: #64748b;
  }
  
  .vps-save {
    display: inline-block;
    background: #e6f4ea;
    color: #166534;
    font-size: 11px;
    font-weight: 700;
    padding: 2px 8px;
    border-radius: 4px;
    margin-top: 4px;
  }

  .storage-billing-dropdown {
    position: relative;
    min-width: 250px;
  }

  .storage-billing-toggle {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    width: 100%;
    min-height: 46px;
    padding: 0 16px;
    border: 1px solid #dbeafe;
    border-radius: 10px;
    background: linear-gradient(180deg, #ffffff 0%, #f8fbff 100%);
    color: #0f172a;
    font-family: Inter, Arial, sans-serif;
    font-size: 14px;
    font-weight: 800;
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, .8), 0 1px 2px rgba(15, 23, 42, .03);
    cursor: pointer;
    transition: border-color .15s, box-shadow .15s, background .15s, color .15s;
  }

  .storage-billing-toggle:hover,
  .storage-billing-dropdown.is-open .storage-billing-toggle {
    border-color: #b7cdfd;
    background: #ffffff;
  }

  .storage-billing-dropdown.is-open .storage-billing-toggle,
  .storage-billing-toggle:focus-visible {
    border-color: #0f3cc9;
    box-shadow: 0 0 0 3px rgba(15, 60, 201, 0.1);
    outline: none;
  }

  .storage-billing-toggle i {
    color: #0f3cc9;
    font-size: 12px;
    transition: transform .15s;
  }

  .storage-billing-dropdown.is-open .storage-billing-toggle i {
    transform: rotate(180deg);
  }

  .storage-billing-menu {
    position: absolute;
    top: calc(100% + 8px);
    left: 0;
    right: 0;
    z-index: 20;
    display: none;
    padding: 8px;
    border: 1px solid #dbeafe;
    border-radius: 12px;
    background: #ffffff;
    box-shadow: 0 18px 34px rgba(15, 23, 42, .14);
  }

  .storage-billing-dropdown.is-open .storage-billing-menu {
    display: grid;
    gap: 4px;
  }

  .storage-billing-menu button {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    min-height: 36px;
    padding: 0 12px;
    border: 0;
    border-radius: 8px;
    background: transparent;
    color: #475569;
    font-family: Inter, Arial, sans-serif;
    font-size: 14px;
    font-weight: 700;
    text-align: left;
    cursor: pointer;
  }

  .storage-billing-menu button:hover,
  .storage-billing-menu button.active {
    background: #eff6ff;
    color: #0f3cc9;
  }

  .btn-vps-order {
    border-radius: 12px;
    width: 136px;
    padding: 12px 0;
    font-size: 14px;
    font-weight: 700;
    min-width: 136px;
    box-sizing: border-box;
    transition: all 0.3s ease;
  }

  .btn-vps-stockout,
  .btn-vps-stockout:disabled {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 136px;
    min-width: 136px;
    min-height: auto;
    padding: 12px 0;
    border: 1px solid #cbd5e1;
    background: #e5e7eb;
    color: #64748b;
    font-size: 14px;
    line-height: 1.2;
    white-space: nowrap;
    cursor: not-allowed;
    transform: none;
    box-shadow: none;
  }

  .btn-outline-blue {
    background: transparent;
    color: #0f3cc9;
    border: 1px solid #0f3cc9;
  }
  .btn-outline-blue:hover {
    background: #f8fafc;
  }

  .btn-solid-blue {
    background: #0f3cc9;
    color: #fff;
    border: 1px solid #0f3cc9;
  }
  .btn-solid-blue:hover {
    background: #0a2ca1;
    border-color: #0a2ca1;
  }

  @media (max-width: 1024px) {
    .vps-row-inner {
      flex-wrap: wrap;
    }
    .vps-specs {
      grid-template-columns: repeat(3, 1fr);
      gap: 16px 20px;
      order: 2;
      flex: 0 0 100%;
      width: 100%;
      margin-top: 16px;
      padding-top: 20px;
      border-top: 1px solid #f1f5f9;
    }
    .vps-price-order {
      order: 3;
      flex: 0 0 100%;
      width: 100%;
      justify-content: space-between;
      margin-top: 10px;
      padding-top: 20px;
      border-top: 1px solid #f1f5f9;
    }
    .storage-billing-dropdown {
      min-width: 220px;
    }
    .vps-price {
      text-align: left;
    }
  }

  @media (max-width: 640px) {
    .vps-row {
      padding: 24px 20px;
    }
    .vps-row-inner {
      flex-direction: row;
      align-items: center;
      gap: 0;
    }
    .vps-info {
      order: 1;
      flex: 0 0 auto;
      min-width: 0;
    }
    .vps-price-order {
      display: contents;
    }
    .vps-price {
      order: 2;
      flex: 1;
      display: flex;
      align-items: center;
      justify-content: flex-end;
      flex-wrap: wrap;
      gap: 8px;
      text-align: right;
      margin-top: 0;
      margin-left: 10px;
    }
    .storage-billing-dropdown {
      order: 3;
      flex: 0 0 100%;
      width: 100%;
      min-width: 0;
      margin-top: 18px;
    }
    .price-main {
      font-size: 16px;
    }
    .vps-price-old {
      margin-bottom: 0;
      margin-right: 0;
    }
    .vps-save {
      margin-top: 0;
      padding: 2px 6px;
    }
    .vps-specs {
      order: 3;
      flex: 0 0 100%;
      width: 100%;
      grid-template-columns: repeat(2, 1fr);
      gap: 16px 10px;
      margin-top: 18px;
      padding-top: 18px;
      border-top: 1px solid #e5e7eb;
    }
    .storage-pricing-section .vps-row-inner {
      gap: 0 !important;
    }
    .storage-pricing-section .vps-specs {
      flex: 0 0 100% !important;
      width: 100% !important;
      grid-template-columns: repeat(2, 1fr) !important;
      margin-top: 12px !important;
      padding-top: 12px !important;
      border-top: 1px solid #e5e7eb !important;
    }
    .vps-order {
      order: 5;
      flex: 0 0 100%;
      width: 100%;
      margin-top: 20px;
    }
    .btn-vps-order {
      width: 100%;
      justify-content: center;
      font-size: 16px;
      padding: 14px 24px;
    }
  }

  .hosting-category-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    margin-top: 38px;
  }

  .vps-category-cards {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 20px;
    margin-top: 38px;
  }

  .vps-category-card-simple {
    display: flex;
    flex-direction: column;
    min-height: 252px;
    padding: 28px;
    border: 2px solid #0f3cc9;
    border-radius: 16px;
    background: #ffffff;
  }

  .vps-category-card-simple h3 {
    color: #0f172a;
    font-size: 24px;
    line-height: 1.15;
    font-weight: 800;
    margin: 0 0 8px;
  }

  .vps-category-card-simple p {
    min-height: 44px;
    color: #475569;
    font-size: 15px;
    line-height: 1.45;
    margin: 0 0 26px;
  }

  .vps-category-card-simple > span {
    color: #64748b;
    font-size: 12px;
    font-weight: 800;
    letter-spacing: .08em;
    text-transform: uppercase;
    margin-bottom: 6px;
  }

  .vps-category-card-simple h2 {
    color: #020617;
    font-size: 34px;
    line-height: 1;
    font-weight: 900;
    margin: 0 0 24px;
  }

  .vps-category-card-simple h2 small {
    color: #64748b;
    font-size: 16px;
    font-weight: 500;
  }

  .vps-category-card-simple a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    min-height: 50px;
    margin-top: auto;
    border-radius: 8px;
    background: #0f3cc9;
    color: #ffffff;
    font-size: 16px;
    font-weight: 800;
  }

  .hosting-category-card {
    min-height: 370px;
    display: flex;
    flex-direction: column;
    padding: 26px;
    border: 1px solid #e5e7eb;
    border-radius: 16px;
    background:
      radial-gradient(rgba(15, 23, 42, 0.05) 1px, transparent 1px),
      #ffffff;
    background-size: 16px 16px;
    box-shadow: 0 18px 35px rgba(15, 23, 42, 0.04);
  }

  .hosting-category-icon {
    width: 46px;
    height: 46px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 18px;
    border: 1px solid #e5e7eb;
    border-radius: 10px;
    background: #f8fafc;
    color: #0f3cc9;
    font-size: 22px;
    box-shadow: 0 8px 22px rgba(15, 60, 201, 0.12);
  }

  .hosting-category-card h3 {
    color: #020617;
    font-size: 21px;
    line-height: 1.2;
    margin-bottom: 12px;
  }

  .hosting-category-card p {
    color: #475569;
    font-size: 14px;
    line-height: 1.9;
    min-height: 86px;
  }

  .category-price {
    margin-top: auto;
    margin-bottom: 22px;
  }

  .category-price span {
    display: block;
    color: #0f172a;
    font-size: 14px;
    margin-bottom: 8px;
  }

  .category-price del {
    color: #94a3b8;
  }

  .category-price strong {
    display: flex;
    align-items: baseline;
    gap: 4px;
    color: #020617;
    font-size: 18px;
    line-height: 1;
  }

  .category-price small {
    color: #020617;
    font-size: 13px;
    font-weight: 500;
  }

  .category-btn {
    min-height: 50px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    width: 100%;
    border: 1px solid #e2e8f0;
    border-radius: 999px;
    background: #ffffff;
    color: #020617;
    font-size: 15px;
    font-weight: 800;
    transition: border-color 180ms ease, color 180ms ease, transform 180ms ease;
  }

  .category-btn:hover {
    border-color: #0f3cc9;
    color: #0f3cc9;
    transform: translateY(-2px);
  }

  .vps-tooltip {
    position: relative;
    cursor: help;
    display: inline-block;
    vertical-align: super; 
    margin-left: 0; 
    line-height: 0;
    color: #94a3b8;
    font-size: 10px;
    transition: color 0.2s ease;
  }

  
  .vps-tooltip i, 
  .vps-tooltip svg {
    color: inherit !important;
    font-size: 12px !important;
    width: 12px !important;
    height: 12px !important;
  }

  .vps-tooltip:hover {
    color: #0f3cc9;
  }

  .vps-tooltip:hover i {
    color: #0f3cc9;
  }

  .vps-tooltip::after {
    content: attr(data-text);
    position: absolute;
    bottom: calc(100% + 8px);
    left: 50%;
    transform: translateX(-50%);
    width: max-content;
    max-width: 220px;
    padding: 8px 12px;
    background: #1e293b;
    color: #fff;
    font-size: 12px;
    font-weight: 500;
    line-height: 1.4;
    text-align: center;
    border-radius: 6px;
    pointer-events: none;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.2s ease, visibility 0.2s ease;
    z-index: 100;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.15);
  }

  .vps-tooltip::before {
    content: "";
    position: absolute;
    bottom: 100%;
    left: 50%;
    transform: translateX(-50%);
    border-width: 6px;
    border-style: solid;
    border-color: #1e293b transparent transparent transparent;
    pointer-events: none;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.2s ease, visibility 0.2s ease;
    z-index: 100;
  }

  .vps-tooltip:hover::after,
  .vps-tooltip:hover::before {
    opacity: 1;
    visibility: visible;
  }

  .hosting-info-section {
    background: #ffffff;
  }

  .hosting-info-grid {
    display: grid;
    grid-template-columns: 1fr 0.9fr;
    gap: 44px;
    align-items: center;
    margin-top: 42px;
  }

  .hosting-info-content p {
    color: #475569;
    font-size: 16px;
    line-height: 1.85;
    text-align: justify;
  }

  .hosting-info-points {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 16px 18px;
    margin-top: 28px;
  }

  .hosting-info-points div {
    display: flex;
    align-items: center;
    gap: 12px;
    min-height: 50px;
    padding: 12px 14px;
    border: 1px solid #e5e7eb;
    border-radius: 10px;
    background: #f8fafc;
    color: #0f172a;
    font-size: 14px;
    font-weight: 700;
  }

  .hosting-info-points i {
    color: #0f3cc9;
    font-size: 16px;
    flex: 0 0 18px;
    text-align: center;
  }

  .hosting-only-points {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 16px 18px;
    margin-top: 28px;
  }

  .hosting-only-points div {
    display: flex;
    align-items: center;
    gap: 12px;
    min-height: 50px;
    padding: 12px 14px;
    border: 1px solid #e5e7eb;
    border-radius: 10px;
    background: #f8fafc;
    color: #0f172a;
    font-size: 14px;
    font-weight: 700;
  }

  .hosting-only-points i {
    color: #0f3cc9;
    font-size: 16px;
    flex: 0 0 18px;
    text-align: center;
  }

  .hosting-info-image {
    min-height: 360px;
  }

  .image-placeholder {
    min-height: 360px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 12px;
    border: 1px dashed #94a3b8;
    border-radius: 16px;
    background: #f8fafc;
    color: #64748b;
    text-align: center;
  }

  .image-placeholder i {
    color: #0f3cc9;
    font-size: 42px;
  }

  .image-placeholder span {
    font-size: 15px;
    font-weight: 800;
  }

  .partners-section {
    padding-top: 40px;
    overflow: hidden;
    background: #ffffff;
  }

  .partners-marquee {
    position: relative;
    width: 100%;
    margin-top: 38px;
    overflow: hidden;
  }

  .partners-marquee::before,
  .partners-marquee::after {
    content: "";
    position: absolute;
    top: 0;
    bottom: 0;
    z-index: 2;
    width: 120px;
    pointer-events: none;
  }

  .partners-marquee::before {
    left: 0;
    background: linear-gradient(90deg, #ffffff 0%, rgba(255, 255, 255, 0) 100%);
  }

  .partners-marquee::after {
    right: 0;
    background: linear-gradient(270deg, #ffffff 0%, rgba(255, 255, 255, 0) 100%);
  }

  .partners-track {
    display: flex;
    align-items: center;
    width: max-content;
    padding: 12px 0 18px;
    animation: partnersMarquee 32s linear infinite;
  }

  .partners-group {
    display: flex;
    align-items: center;
    gap: 18px;
    flex: 0 0 auto;
    padding-right: 18px;
  }

  .partners-marquee:hover .partners-track {
    animation-play-state: paused;
  }

  .client-logo-card {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    width: 245px;
    min-height: 86px;
    height: auto;
    padding: 14px 20px;
    border: 1px solid #e5e7eb;
    border-radius: 12px;
    background: #ffffff;
    color: #0f172a;
    box-shadow: 0 14px 32px rgba(15, 23, 42, 0.05);
    overflow: hidden;
  }

  .client-logo-card img {
    display: block;
    max-width: 185px;
    max-height: 52px;
    width: auto;
    height: auto;
    object-fit: contain;
  }

  .client-logo-mark {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 42px;
    height: 42px;
    border-radius: 10px;
    background: #f8fafc;
    color: #0f3cc9;
    font-size: 14px;
    font-weight: 900;
    flex: 0 0 42px;
  }

  .client-logo-card span:last-child {
    font-size: 13px;
    font-weight: 800;
    line-height: 1.3;
    text-align: center;
    white-space: normal;
    word-break: break-word;
    overflow-wrap: break-word;
    max-width: 185px;
  }

  .client-logo-card img + span {
    max-width: 110px;
    white-space: normal;
    word-break: break-word;
    overflow-wrap: break-word;
  }

  @keyframes partnersMarquee {
    from {
      transform: translateX(0);
    }

    to {
      transform: translateX(-50%);
    }
  }

  @media (prefers-reduced-motion: reduce) {
    .partners-track {
      width: auto;
      flex-wrap: wrap;
      justify-content: center;
      padding: 0 20px;
      animation: none;
    }

    .partners-group {
      flex-wrap: wrap;
      justify-content: center;
      padding-right: 0;
    }

    .partners-group[aria-hidden="true"] {
      display: none;
    }
  }

  .faq-section {
    background: #ffffff;
  }

  .faq-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 16px 20px;
    margin-top: 40px;
    align-items: start;
  }

  .faq-item {
    overflow: hidden;
    border: 1px solid #e5e7eb;
    border-radius: 12px;
    background: #ffffff;
  }

  .faq-question {
    width: 100%;
    min-height: 66px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 18px;
    padding: 18px 20px;
    border: 0;
    background: #ffffff;
    color: #0f172a;
    font: inherit;
    font-size: 16px;
    font-weight: 800;
    text-align: left;
    cursor: pointer;
  }

  .faq-question i {
    color: #0f3cc9;
    font-size: 14px;
    transition: transform 180ms ease;
  }

  .faq-answer {
    display: none;
    padding: 0 20px 20px;
  }

  .faq-answer p {
    color: #475569;
    font-size: 14px;
    line-height: 1.75;
  }

  .faq-item.active {
    border-color: #0f3cc9;
    box-shadow: 0 16px 34px rgba(15, 23, 42, 0.06);
  }

  .faq-item.active .faq-answer {
    display: block;
  }

  .faq-item.active .faq-question i {
    transform: rotate(180deg);
  }

  .site-footer {
    background: #ffffff;
    border-top: 1px solid #e5e7eb;
    color: #475569;
    padding: 64px 0 28px;
  }

  .footer-inner {
    display: grid;
    grid-template-columns: minmax(240px, 1.45fr) repeat(4, minmax(150px, 1fr));
    gap: 42px;
    align-items: start;
  }

  .footer-logo {
    display: inline-flex;
    align-items: center;
    margin-bottom: 18px;
  }

  .footer-logo img {
    width: 200px;
    height: 20px;
    object-fit: contain;
  }

  .footer-brand p {
    max-width: 310px;
    color: #64748b;
    font-size: 15px;
    line-height: 1.7;
  }

  .footer-social {
    display: flex;
    gap: 10px;
    margin-top: 22px;
  }

  .footer-social a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 38px;
    height: 38px;
    border: 1px solid #e2e8f0;
    border-radius: 8px;
    color: #0f3cc9;
    background: #f8fafc;
    transition: background 180ms ease, border-color 180ms ease, color 180ms ease, transform 180ms ease;
  }

  .footer-social a:hover {
    background: #0f3cc9;
    border-color: #0f3cc9;
    color: #ffffff;
    transform: translateY(-2px);
  }

  .footer-column h4 {
    color: #0f172a;
    font-size: 16px;
    font-weight: 800;
    margin-bottom: 18px;
  }

  .footer-column a {
    display: block;
    width: fit-content;
    color: #64748b;
    font-size: 15px;
    line-height: 1.45;
    margin: 0 0 13px;
    transition: color 180ms ease, transform 180ms ease;
  }

  .footer-column a:hover,
  .footer-legal a:hover {
    color: #0f3cc9;
  }

  .footer-column a:hover {
    transform: translateX(3px);
  }

  .footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 24px;
    margin-top: 54px;
    padding-top: 26px;
    border-top: 1px solid #e5e7eb;
  }

  .footer-legal {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 14px 22px;
    color: #64748b;
    font-size: 14px;
  }

  .footer-legal span {
    color: #475569;
  }

  .payment-icons {
    display: flex;
    align-items: center;
    gap: 8px;
    flex-wrap: wrap;
    justify-content: flex-end;
  }

  .payment-icons span {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: auto;
    height: 26px;
    flex: 0 0 auto;
  }

  .payment-icons img {
    max-width: 40px;
    max-height: 26px;
    width: auto;
    height: auto;
    object-fit: contain;
    display: block;
  }

  .payment-icons i {
    width: auto;
    height: auto;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 27px !important;
    line-height: 1;
    color: #0f3cc9;
  }

  .mobile-toggle {
    display: none;
    font-size: 28px;
    padding: 10px 14px;
    border: 1px solid #e5e7eb;
    border-radius: 12px;
  }

  .chat {
    position: fixed;
    right: 20px;
    bottom: 20px;
    z-index: 200;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    min-height: 52px;
    padding: 0 20px;
    border: 1px solid #e5e7eb;
    border-radius: 999px;
    background: #ffffff;
    color: #0f172a;
    box-shadow: 0 18px 48px rgba(15, 23, 42, 0.16);
    font-weight: 700;
  }

  .chat i {
    color: #0f3cc9;
    font-size: 18px;
  }

  @media screen and (max-width: 1100px) {
    .hosting-category-grid {
      grid-template-columns: repeat(2, 1fr);
    }

    .vps-category-cards {
      grid-template-columns: repeat(2, 1fr);
    }

    .hosting-info-grid {
      grid-template-columns: 1fr;
    }

    .footer-inner {
      grid-template-columns: repeat(3, 1fr);
    }

    .footer-brand {
      grid-column: 1 / -1;
    }
  }

  @media screen and (max-width: 768px) {

    
    html,
    body {
      overflow-x: hidden;
    }

    .hero-grid {
      display: block;
      
    }

    .plans,
    .footer-inner {
      grid-template-columns: 1fr;
    }

    .hosting-category-grid {
      grid-template-columns: 1fr;
    }

    .vps-category-cards {
      grid-template-columns: 1fr;
    }

    .hosting-info-grid {
      gap: 28px;
      margin-top: 30px;
    }

    .hosting-info-content p {
      font-size: 13px;
      line-height: 1.7;
    }

    .hosting-info-points {
      grid-template-columns: 1fr;
    }

    .hosting-info-points div {
      min-height: 44px;
      padding: 10px 12px;
      font-size: 12px;
    }

    .hosting-info-points i {
      font-size: 14px;
    }

    .hosting-only-points {
      grid-template-columns: 1fr;
    }

    .hosting-only-points div {
      min-height: 44px;
      padding: 10px 12px;
      font-size: 12px;
    }

    .hosting-only-points i {
      font-size: 14px;
    }

    .faq-grid {
      grid-template-columns: 1fr;
      gap: 12px;
      margin-top: 28px;
    }

    .faq-question {
      min-height: 56px;
      padding: 14px 16px;
      font-size: 13px;
    }

    .faq-answer {
      padding: 0 16px 16px;
    }

    .faq-answer p {
      font-size: 12px;
      line-height: 1.65;
    }

    .hosting-info-image,
    .image-placeholder {
      min-height: 260px;
    }

    .partners-marquee::before,
    .partners-marquee::after {
      width: 44px;
    }

    .client-logo-card {
      width: 190px;
      height: 68px;
      padding: 12px 14px;
    }

    .client-logo-card img {
      max-width: 132px;
      max-height: 40px;
    }

    .client-logo-mark {
      width: 36px;
      height: 36px;
      font-size: 12px;
      flex-basis: 36px;
    }

    .client-logo-card span:last-child {
      font-size: 12px;
    }

    .client-logo-card img + span {
      max-width: 82px;
    }

    .hero h1 {
      font-size: 48px;
    }

    .tlds {
      grid-template-columns: repeat(2, 1fr);
    }

    
    .tld {
      padding: 10px 12px;
      border-radius: 12px;
      display: flex;
      align-items: center;
      justify-content: space-between;
      text-align: left;
      gap: 6px;
    }

    .tld strong {
      font-size: 14px;
    }

    .tld>div {
      font-size: 13px;
      color: #475569;
    }

    
    .topbar .row {
      flex-wrap: nowrap;
      white-space: nowrap;
      overflow: hidden;
      font-size: 11px;
      padding: 6px 0;
      gap: 6px;
    }

    .topbar .row>div:first-child {
      overflow: hidden;
      text-overflow: ellipsis;
    }

    
    header {
      top: 0;
    }

    
    .tag {
      flex-wrap: nowrap;
      white-space: nowrap;
      font-size: 12px;
      padding: 8px 12px;
      gap: 6px;
      overflow: hidden;
    }

    
    .hero {
      overflow-x: hidden;
      padding: 15px 0 30px !important;
      background:
        radial-gradient(circle at 12% 35%, rgba(163, 195, 255, 0.72), transparent 35%),
        radial-gradient(circle at 82% 45%, rgba(207, 226, 255, 0.48), transparent 35%),
        radial-gradient(circle at 88% 15%, rgba(205, 184, 255, 0.44), transparent 40%),
        radial-gradient(circle at 78% 85%, rgba(231, 220, 255, 0.38), transparent 30%),
        linear-gradient(180deg, #ffffff 0%, #ffffff 100%) !important;
    }

    .hero h1 {
      font-size: 32px;
      margin: 12px 0;
    }

    .hero p {
      font-size: 13px !important;
    }

    .features-grid .item {
      font-size: 13px;
      line-height: 1.4;
    }

    .features-grid .item i {
      font-size: 13px;
      margin-right: 6px;
    }

    .search-label {
      font-size: 13px;
      padding: 12px 16px;
    }

    section {
      padding: 30px 0;
    }

    
    body {
      font-size: 14px;
    }

    
    .hero-card {
      display: block !important;
      width: 480px;
      left: 42%;
      
      transform: translateX(-50%) scale(0.7);
      transform-origin: top center;
      margin-top: 0px;
      margin-bottom: -100px;
    }

    .hero-person {
      right: 80px;
      
      top: -30px !important;
      
      width: 320px;
      max-width: none;
      left: auto;
      transform: none;
    }

    
    .hero-panel {
      left: -60px !important;
      top: -30px !important;
      transform: none !important;
    }

    .hero-review {
      right: -100px !important;
      
      top: 40px !important;
      
      transform: none !important;
    }

    
    .hero-pricing {
      right: -120px !important;
      
      bottom: 80px !important;
      
      transform: scale(1.15) !important;
      transform-origin: right bottom !important;
    }

    h1 {
      font-size: 28px !important;
    }

    h2 {
      font-size: 22px !important;
    }

    h3 {
      font-size: 18px !important;
    }

    h4 {
      font-size: 15px !important;
    }

    .legal-page-section {
      padding: 24px 0 46px;
    }

    .legal-page-head {
      margin-bottom: 20px;
    }

    .legal-page-head h1 {
      font-size: 30px;
    }

    .legal-page-head p {
      font-size: 14px;
    }

    .legal-content-card {
      padding: 22px 18px;
      border-radius: 12px;
      font-size: 14px;
      line-height: 1.68;
    }

    .legal-content-card h2 {
      font-size: 19px;
    }

    .about-page-section {
      padding: 28px 0 46px;
    }

    .about-hero,
    .about-story-grid,
    .about-stats-grid {
      grid-template-columns: 1fr;
    }

    .about-hero-copy,
    .about-hero-panel,
    .about-story-grid > div,
    .about-timeline-item {
      padding: 22px 18px;
      border-radius: 12px;
    }

    .about-hero-copy h1 {
      font-size: 30px;
    }

    .about-hero-copy p {
      font-size: 14px;
    }

    .about-hero-panel strong {
      font-size: 42px;
    }

    .about-stats-grid {
      gap: 14px;
    }

    .about-stats-grid strong {
      font-size: 30px;
    }

    .about-story-grid {
      margin-top: 24px;
    }

    .about-principles-grid {
      grid-template-columns: 1fr;
      gap: 14px;
    }

    .about-principles-grid div {
      padding: 22px 18px;
      border-radius: 12px;
    }

    .about-section-head h2 {
      font-size: 24px;
    }

    .about-timeline {
      padding-left: 22px;
    }

    .about-timeline-item::before {
      left: -23px;
    }

    .contact-page-section {
      padding: 28px 0 46px;
    }

    .contact-page-head h1 {
      font-size: 30px;
    }

    .contact-layout,
    .contact-form-grid,
    .contact-location-grid {
      grid-template-columns: 1fr;
    }

    .contact-info-grid {
      grid-template-columns: repeat(2, minmax(0, 1fr));
      gap: 12px;
    }

    .contact-form-card,
    .contact-info-card,
    .contact-location-grid div {
      padding: 22px 18px;
      border-radius: 12px;
    }

    .contact-info-card {
      gap: 6px;
    }

    .contact-info-card i {
      width: 36px;
      height: 36px;
      border-radius: 10px;
      font-size: 16px;
    }

    .contact-info-card h2 {
      font-size: 16px;
      line-height: 1.2;
    }

    .contact-info-card p,
    .contact-info-card a {
      font-size: 12px;
      line-height: 1.35;
    }

    .contact-form-card h2 {
      font-size: 22px;
    }

    .g-recaptcha {
      transform: scale(.9);
      transform-origin: left top;
      margin-bottom: -8px;
    }

    .notices-page-section {
      padding: 28px 0 46px;
    }

    .notices-page-head h1 {
      font-size: 30px;
    }

    .notice-card {
      grid-template-columns: 1fr;
      gap: 12px;
      padding: 22px 18px;
      border-radius: 12px;
    }

    .title {
      font-size: 24px !important;
    }

    .sub {
      font-size: 14px !important;
    }
  }

  @media screen and (max-width: 768px) {
    body.mobile-menu-open {
      overflow: hidden;
    }

    a,
    button,
    input,
    textarea,
    select,
    label,
    .btn,
    .search-submit,
    .mobile-toggle {
      -webkit-tap-highlight-color: transparent;
    }

    a:focus,
    button:focus,
    input:focus,
    textarea:focus,
    select:focus {
      outline: none;
    }

    .nav {
      flex-wrap: wrap;
      gap: 10px;
    }

    .menu {
      order: 2;
      width: 100%;
      justify-content: flex-start;
    }

    .actions {
      margin-left: auto;
    }
  }

  .mobile-cart-link,
  .mobile-client-link {
    display: none !important;
  }

  
  @media screen and (max-width: 768px) {
    .mobile-hidden {
      display: none !important;
    }
  }

  @media screen and (max-width: 768px) {
    .menu.show .mobile-cart-link,
    .menu.show .mobile-client-link {
      display: block !important;
    }

    .top-cart-icon {
      display: none !important;
    }

    .actions .btn-primary {
      display: none !important;
    }

    .topbar {
      display: none;
    }

    .menu.show {
      display: flex;
      position: fixed;
      top: 58px;
      left: 0;
      right: 0;
      width: 100vw;
      bottom: 0;
      background: #fff;
      padding: 8px 0 100px;
      overflow-y: auto;
      z-index: 999;
      flex-direction: column;
      gap: 8px;
      align-items: stretch;
    }

    .menu.show .menu-item {
      padding: 0 14px;
      border-bottom: 1px solid #eef2f7;
      background: transparent !important;
      -webkit-tap-highlight-color: transparent;
    }

    .menu-item::after {
      display: none !important;
    }

    .menu.show .menu-item>span {
      display: flex;
      justify-content: space-between;
      align-items: center;
      padding: 4px 0;
      font-size: 18px;
      font-weight: 700;
      color: #0f172a;
      cursor: pointer;
      background: transparent !important;
      -webkit-tap-highlight-color: transparent;
    }

    .menu.show .menu-item>span::after {
      content: '';
      display: inline-block;
      width: 8px;
      height: 8px;
      border-top: 2px solid #94a3b8;
      border-right: 2px solid #94a3b8;
      transform: rotate(45deg);
      transition: transform 0.3s;
      margin-right: 6px;
      margin-top: 0px;
    }

    .menu.show .menu-item.active>span::after {
      transform: rotate(135deg);
      margin-top: -4px;
    }

    .menu-item:hover .dropdown,
    .menu-item:focus-within .dropdown {
      display: none;
    }

    .menu.show .menu-item.active .dropdown {
      display: block !important;
      background: transparent !important;
    }

    .menu.show .menu-item:first-child>span {
      color: #0f3cc9;
    }

    .menu.show .dropdown {
      display: none;
      position: static !important;
      width: 100% !important;
      max-width: none !important;
      border: 0;
      box-shadow: none;
      padding: 8px 0 14px;
      background: transparent;
      min-width: auto;
      -webkit-tap-highlight-color: transparent;
    }

    .menu.show .menu-item.active .dropdown {
      display: block !important;
    }

    .menu.show .dropdown>.container {
      display: block !important;
    }


    .menu.show .dropdown h4 {
      font-size: 14px;
      margin: 12px 0;
      color: #94a3b8;
    }

    .menu.show .dropdown a {
      display: flex !important;
      gap: 10px;
      align-items: center;
      justify-content: flex-start;
      padding: 6px 0 !important;
      background: transparent !important;
      border: 0 !important;
      border-bottom: 1px solid #eef2f7 !important;
      margin: 0 !important;
      width: 100% !important;
      border-radius: 0 !important;
      box-shadow: none !important;
      -webkit-tap-highlight-color: transparent;
    }

    .menu.show .dropdown a:active {
      background: transparent !important;
    }

    .menu.show .dropdown a:focus,
    .menu.show .dropdown a:focus-visible {
      outline: none;
      background: transparent !important;
    }

    .menu.show .menu-item.active,
    .menu.show .menu-item.active .dropdown,
    .menu.show .menu-item.active .dropdown > .container,
    .menu.show .menu-item.active .dropdown a {
      background: transparent !important;
    }

    .menu.show .dropdown a span:first-child {
      width: 46px;
      height: 46px;
      border-radius: 12px;
      background: #f8fafc;
      display: flex;
      align-items: center;
      justify-content: center;
      flex: 0 0 48px;
      margin-right: 2px;
    }

    .menu.show .dropdown a span:last-child {
      display: flex;
      flex: 1;
      text-align: left;
      padding-top: 0;
      flex-direction: column;
      gap: 0;
      justify-content: center;
    }

    .menu.show .dropdown strong {
      display: block;
      margin: 0 !important;
      padding: 0 !important;
      font-size: 14px;
      line-height: 1 !important;
    }

    .menu.show .dropdown small {
      display: block;
      margin: -6px 0 0 !important;
      padding: 0 !important;
      font-size: 12px;
      line-height: 1 !important;
      color: #64748b;
    }

    .menu.show .dropdown {
      padding: 0 !important;
    }

    .menu.show .dropdown h4 {
      margin: 8px 0 8px !important;
    }

    .menu.show .dropdown .container {
      padding: 0 0 0 0 !important;
    }


    .menu.show .dropdown .container {
      padding: 0;
      max-width: none;
    }

    .menu.show .dropdown a {
      padding: 12px 14px;
      background: #f8fafc;
      border: 1px solid #e5e7eb;
      border-radius: 14px;
      margin-bottom: 10px;
    }

    .menu.show .dropdown strong {
      display: block;
      font-size: 15px;
    }

    .menu.show .dropdown small {
      font-size: 13px;
    }

    .nav {
      padding: 6px 0;
      gap: 10px;
      flex-wrap: wrap;
    }

    .logo {
      font-size: 18px;
    }

    .mobile-toggle {
      display: block;
      font-size: 22px;
      padding: 8px 10px;
      border-radius: 10px;
    }

    .menu {
      display: none;
      order: 2;
      width: 100%;
      flex-direction: column;
      gap: 8px;
      background: #fff;
      padding: 15px 0;
    }

    .menu.show {
      display: flex;
    }

    .actions .btn-outline {
      display: none;
    }

    .hero {
      padding: 36px 0;
    }

    .hero-grid,
    .plans,
    .footer-inner {
      grid-template-columns: 1fr;
    }

    .hero h1 {
      font-size: 36px;
    }

    .hero p {
      font-size: 18px;
    }

    .hero-card {
      width: 620px;
      left: 50%;
      min-height: 540px;
      margin-top: 34px;
      margin-bottom: -155px;
      transform: translateX(-50%) scale(0.7);
      transform-origin: top center;
    }

    .hero-card::before {
      width: 360px;
      height: 360px;
      top: 52%;
    }

    .hero-card::after {
      width: 360px;
      bottom: -14px;
    }

    .hero-panel {
      top: 8px !important;
      left: 0 !important;
      width: 330px;
      padding: 20px;
      z-index: 1;
    }

    .hero-panel-title {
      font-size: 19px;
    }

    .hero-panel p {
      font-size: 15px;
    }

    .hero-review {
      top: 28px !important;
      right: 24px !important;
      width: 216px;
      padding: 14px 16px;
      z-index: 4;
      transform: none !important;
    }

    .hero-pricing {
      right: 22px !important;
      bottom: 34px !important;
      width: 236px;
      padding: 14px;
      z-index: 5;
      transform: none !important;
    }

    .hero-pricing-head {
      font-size: 15px;
      padding: 12px 14px;
    }

    .hero-price-item {
      font-size: 14px;
      padding: 12px 4px;
    }

    .hero-person {
      right: 110px !important;
      top: 38px !important;
      width: 340px;
      max-width: 78%;
      z-index: 3;
    }

    .searchbox {
      max-width: 100%;
    }

    .search-label {
      padding: 14px 18px 15px;
      font-size: 15px;
    }

    .search-label svg {
      width: 18px;
      height: 18px;
      flex-basis: 18px;
    }

    .searchrow {
      flex-direction: row;
      align-items: center;
      margin-top: -1px;
      padding: 8px 8px 8px 12px;
      border-radius: 0 22px 22px 22px;
      gap: 8px;
    }

    .searchrow input {
      padding: 14px 8px 14px 4px;
      font-size: 15px;
    }

    .search-submit {
      width: auto;
      min-width: 108px;
      padding: 14px 20px;
      font-size: 16px;
    }

    .domain-searchrow {
      gap: 0;
      padding: 0;
    }

    .domain-searchrow input {
      padding: 16px 12px;
      font-size: 15px;
    }

    .domain-searchrow .search-submit {
      min-width: 108px;
      padding: 0 20px;
    }

    .domain-result-section {
      padding: 18px 0 8px;
    }

    .domain-result-panel {
      grid-template-columns: 1fr;
      gap: 14px;
      min-height: 0;
      padding: 18px 16px;
      border-radius: 12px 12px 0 0;
    }

    .domain-result-name strong {
      font-size: 20px;
    }

    .domain-result-price {
      justify-items: start;
    }

    .domain-result-years {
      width: 100%;
    }

    .domain-result-years select {
      font-size: 15px;
    }

    .domain-result-buy {
      order: 4;
      width: 100%;
      min-height: 42px;
    }

    .domain-suggestion-list {
      border-radius: 0 0 12px 12px;
    }

    .domain-suggestion-row {
      grid-template-columns: 1fr;
      gap: 10px;
      padding: 14px 16px;
    }

    .domain-suggestion-actions {
      justify-content: stretch;
    }

    .domain-check-btn,
    .domain-row-buy,
    .domain-row-transfer {
      width: 100%;
    }

    .tlds {
      grid-template-columns: repeat(2, 1fr);
    }

    .value-plans {
      gap: 28px;
      padding-top: 0;
    }

    .value-plans .plan,
    .value-plans .plan:nth-child(2) {
      min-height: auto;
    }

    .value-plans .plan:nth-child(2) {
      margin-top: 0;
    }

    .title {
      font-size: 34px;
    }

    .site-footer {
      padding: 42px 0 22px;
    }

    .footer-inner {
      gap: 30px;
    }

    .footer-brand p {
      max-width: 100%;
    }

    .footer-bottom {
      align-items: flex-start;
      flex-direction: column;
      margin-top: 34px;
    }

    .payment-icons {
      justify-content: flex-start;
      gap: 8px;
    }

    .payment-icons span {
      width: auto;
      height: 24px;
      flex-basis: auto;
    }

    .payment-icons img {
      max-width: 36px;
      max-height: 24px;
    }

    .payment-icons i {
      font-size: 25px !important;
    }

    .chat {
      right: 14px;
      bottom: 14px;
      min-height: 48px;
      padding: 0 16px;
    }
  }

  @media screen and (min-width: 769px) {
    .mobile-toggle {
      display: none !important;
    }

    .menu {
      display: flex !important;
      position: static !important;
      flex-direction: row !important;
      background: transparent !important;
      border: 0 !important;
      padding: 0 !important;
    }

    .actions .btn-outline {
      display: inline-flex !important;
    }

    .topbar {
      display: block !important;
    }
  }

  .box-blue {
    background-color: #0f3cc9 !important;
    color: #ffffff;
    width: 48px;
    height: 48px;
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
  }

  @media screen and (max-width: 768px) {
    .hero-panel {
      left: 72px !important;
      width: 250px;
      padding: 13px;
      border-radius: 22px;
    }

    .hero-panel-title {
      font-size: 15px;
    }

    .hero-panel p,
    .hero-panel-search span {
      font-size: 12px;
    }

    .hero-panel-search {
      margin-top: 12px;
      padding: 7px 7px 7px 14px;
    }

    .hero-panel-search strong {
      width: 28px;
      height: 28px;
      font-size: 15px;
    }

    .hero-review {
      right: 70px !important;
      width: 190px;
      padding: 12px 14px;
    }

    .hero-review strong {
      font-size: 13px;
    }

    .hero-review p {
      font-size: 11px;
    }

    .hero-stars {
      font-size: 13px;
      letter-spacing: 1px;
    }

    .hero-pricing {
      right: 82px !important;
    }
  }

  
  .review-section {
    background: #f8fafc;
  }

  .review-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    margin-top: 38px;
  }

  .review-card {
    display: flex;
    flex-direction: column;
    padding: 26px;
    border: 1px solid #e5e7eb;
    border-radius: 16px;
    background:
      radial-gradient(rgba(15, 23, 42, 0.05) 1px, transparent 1px),
      #ffffff;
    background-size: 16px 16px;
    box-shadow: 0 18px 35px rgba(15, 23, 42, 0.04);
    transition: border-color 0.2s, box-shadow 0.2s, transform 0.2s;
  }

  .review-card:hover {
    border-color: #0f3cc9;
    box-shadow: 0 22px 45px rgba(15, 60, 201, 0.1);
    transform: translateY(-3px);
  }

  .review-stars {
    display: flex;
    gap: 3px;
    margin-bottom: 16px;
  }

  .review-stars i {
    color: #f4b01b;
    font-size: 16px;
  }

  .review-text {
    color: #475569;
    font-size: 14px;
    line-height: 1.75;
    flex: 1;
    margin: 0 0 20px;
  }

  .review-author {
    display: flex;
    align-items: center;
    gap: 12px;
    padding-top: 18px;
    border-top: 1px solid #e5e7eb;
    margin-top: auto;
  }

  .author-avatar {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    background: #eff6ff;
    border: 1px solid #dbeafe;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: #0f3cc9;
    font-size: 26px;
    flex-shrink: 0;
    overflow: hidden;
  }

  .author-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
  }

  .author-info strong {
    display: block;
    font-size: 14px;
    font-weight: 700;
    color: #0f172a;
  }

  .author-info span {
    display: block;
    font-size: 12px;
    color: #64748b;
    margin-top: 2px;
  }

  @media (max-width: 1024px) {
    .review-grid {
      grid-template-columns: repeat(2, 1fr);
    }
  }

  @media (max-width: 600px) {
    .review-grid {
      grid-template-columns: 1fr;
    }
  }

  

  .tld-section {
    background: #f8fafc;
    padding-bottom: 80px;
  }

  .tld-controls {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    margin: 40px 0 18px;
    flex-wrap: wrap;
  }

  .tld-count-label {
    font-size: 14px;
    color: #64748b;
    font-weight: 500;
  }

  .tld-search-wrap {
    position: relative;
    display: flex;
    align-items: center;
  }

  .tld-search-wrap i {
    position: absolute;
    left: 14px;
    color: #94a3b8;
    font-size: 14px;
    pointer-events: none;
  }

  #tld-filter {
    padding: 11px 16px 11px 38px;
    border: 1px solid #e5e7eb;
    border-radius: 10px;
    font-size: 14px;
    color: #0f172a;
    background: #fff;
    width: 280px;
    outline: none;
    transition: border-color .18s;
  }

  #tld-filter:focus {
    border-color: #0f3cc9;
  }

  
  .tld-table-wrap {
    border: 1px solid #e5e7eb;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 4px 24px rgba(15, 23, 42, .06);
    background: #fff;
  }

  .tld-table {
    width: 100%;
    border-collapse: collapse;
    font-size: 14px;
  }

  .tld-table thead tr {
    background: #0f3cc9;
  }

  .tld-table thead th {
    padding: 16px 20px;
    text-align: left;
    color: #fff;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: .04em;
    text-transform: uppercase;
    white-space: nowrap;
  }

  .tld-table tbody tr {
    border-bottom: 1px solid #f1f5f9;
    transition: background .12s;
  }

  .tld-table tbody tr:last-child {
    border-bottom: none;
  }

  .tld-table tbody tr:hover {
    background: #eff6ff;
  }

  .tld-table tbody td {
    padding: 13px 20px;
    vertical-align: middle;
    color: #334155;
  }

  .tld-name strong {
    font-size: 15px;
    font-weight: 800;
    color: #0f172a;
    font-family: monospace;
  }

  .tld-price strong {
    font-weight: 700;
    color: #0f172a;
  }

  .tld-na {
    color: #cbd5e1;
  }

  .tld-badge-sale {
    display: inline-block;
    margin-left: 8px;
    padding: 2px 8px;
    background: #fef9c3;
    border: 1px solid #fde047;
    color: #854d0e;
    border-radius: 6px;
    font-size: 10px;
    font-weight: 800;
    letter-spacing: .04em;
    vertical-align: middle;
  }

  .tld-btn {
    display: inline-flex;
    align-items: center;
    padding: 7px 16px;
    border: 1.5px solid #0f3cc9;
    border-radius: 8px;
    color: #0f3cc9;
    font-size: 13px;
    font-weight: 700;
    background: transparent;
    white-space: nowrap;
    transition: background .15s, color .15s;
  }

  .tld-btn:hover {
    background: #0f3cc9;
    color: #fff;
  }

  
  .tld-pagination {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    gap: 6px;
    margin-top: 32px;
  }

  .tld-page-btn {
    min-width: 38px;
    height: 38px;
    padding: 0 10px;
    border: 1.5px solid #e5e7eb;
    border-radius: 8px;
    background: #fff;
    color: #334155;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: border-color .15s, background .15s, color .15s;
  }

  .tld-page-btn:hover:not(.disabled):not(.active) {
    border-color: #0f3cc9;
    color: #0f3cc9;
  }

  .tld-page-btn.active {
    background: #0f3cc9;
    border-color: #0f3cc9;
    color: #fff;
  }

  .tld-page-btn.disabled {
    opacity: .35;
    cursor: not-allowed;
  }

  .tld-page-ellipsis {
    padding: 0 6px;
    color: #94a3b8;
    font-size: 15px;
  }

  @media (max-width: 700px) {
    .tld-controls {
      flex-direction: column;
      align-items: stretch;
    }

    #tld-filter {
      width: 100%;
    }

    .tld-table-wrap {
      overflow-x: auto;
      -webkit-overflow-scrolling: touch;
      border-radius: 12px;
    }

    .tld-table thead th {
      padding: 12px 10px;
      font-size: 11px;
    }

    .tld-table tbody td {
      padding: 12px 10px;
      font-size: 13px;
    }

    .tld-name strong {
      font-size: 13px;
    }
  }


body.otp-sms-page .value-plans .plan:nth-child(2) {
  border: 1px solid #e8edf5 !important;
  margin-top: 0 !important;
  min-height: unset !important;
  padding: 0 !important;
  background: #ffffff !important;
  box-shadow: none !important;
}

body.otp-sms-page .value-plans .plan:nth-child(2)::before {
  display: none !important;
}

body.otp-sms-page .value-plans .plan:nth-child(2) .btn {
  background: white !important;
  color: #0f3cc9 !important;
  border: 1px solid #0f3cc9 !important;
}


body.otp-sms-page .value-plans .plan h3 {
  order: unset !important;
}

body.otp-sms-page .value-plans .plan > div {
  order: unset !important;
}


body.otp-sms-page .value-plans .plan .btn:hover {
  background: #0f3cc9 !important;
  color: #ffffff !important;
}

.value-plans .plan .database-plan-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  order: 1;
}

.value-plans .plan .database-plan-head > div {
  min-width: 0;
}

.value-plans .plan .database-plan-head h3 {
  margin: 0 0 2px;
  line-height: 1.15;
}

.value-plans .plan .database-plan-head p {
  margin: 0;
  color: #64748b;
  font-size: 14px;
  line-height: 1.15;
  font-weight: 500;
}

.value-plans .plan .database-plan-head strong {
  color: #0f172a;
  font-size: 34px;
  line-height: 1;
  font-weight: 900;
  white-space: nowrap;
}

.value-plans .plan .database-plan-head + div {
  margin-top: 16px !important;
}

.mariadb-plans .plan > p:first-of-type {
  order: 5;
  display: flex;
  align-items: center;
  gap: 12px;
  min-height: 0;
  padding-top: 22px;
  border-top: 1px solid #e5e7eb;
  color: #0f172a;
  font-size: 14px;
  line-height: 1.45;
  margin-bottom: 14px;
}

.mariadb-plans .plan > p:first-of-type i {
  width: 16px;
  color: #0f172a;
  font-size: 13px;
  text-align: center;
  flex: 0 0 16px;
}

.mariadb-plans .plan > p:nth-of-type(2) {
  padding-top: 0;
  border-top: 0;
}

.monitoring-plans .plan > p:first-of-type {
  order: 5;
  display: flex;
  align-items: center;
  gap: 12px;
  min-height: 0;
  padding-top: 22px;
  border-top: 1px solid #e5e7eb;
  color: #0f172a;
  font-size: 14px;
  line-height: 1.45;
  margin-bottom: 14px;
}

.monitoring-plans .plan > p:first-of-type i {
  width: 16px;
  color: #0f172a;
  font-size: 13px;
  text-align: center;
  flex: 0 0 16px;
}

.monitoring-plans .plan > p:nth-of-type(2) {
  padding-top: 0;
  border-top: 0;
}

@media (max-width: 640px) {
  .value-plans .plan .database-plan-head {
    align-items: flex-start;
  }

  .value-plans .plan .database-plan-head strong {
    font-size: 28px;
  }
}


.hosting-config-section {
  padding: 34px 0 70px;
  background: linear-gradient(180deg, #f8fbff 0%, #ffffff 100%);
}

.hosting-config-intro {
  color: #64748b;
  font-size: 16px;
  line-height: 1.5;
  font-weight: 500;
  text-align: center;
  margin: 12px 0 0;
}

.hosting-config-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 420px;
  gap: 32px;
  align-items: stretch;
  margin-top: 38px;
}

.hosting-config-main {
  display: grid;
  gap: 24px;
}

.hosting-config-grid.no-backup {
  align-items: start;
}

.hosting-config-grid.no-backup .hosting-config-card {
  align-self: start;
}

.database-config-grid .hosting-config-main,
.database-config-grid .hosting-config-card {
  align-self: start;
}

.database-config-grid .hosting-config-card {
  padding-bottom: 24px;
}

.database-config-grid .hosting-config-row {
  padding-top: 18px;
}

.database-config-grid .hosting-config-addon-head {
  margin-bottom: 16px;
}

.hosting-config-grid .hosting-config-eyebrow,
.hosting-config-grid .hosting-config-badge {
  font-weight: 700;
}

.hosting-config-grid .hosting-config-card h2,
.hosting-config-grid .hosting-summary-card h2,
.hosting-config-grid .hosting-summary-plan strong {
  font-weight: 700;
}

.hosting-config-grid .hosting-config-field,
.hosting-config-grid .hosting-config-label,
.hosting-config-grid .storage-billing-toggle,
.hosting-config-grid .hosting-backup-option,
.hosting-config-grid .hosting-summary-line,
.hosting-config-grid .hosting-summary-plan span,
.hosting-config-grid .hosting-summary-trust,
.hosting-config-grid .hosting-payment-panel strong {
  font-weight: 500;
}

.hosting-config-grid .hosting-config-price-preview strong,
.hosting-config-grid .hosting-summary-total strong {
  font-weight: 800;
}

.hosting-config-grid .hosting-summary-total {
  font-weight: 600;
}

.monitoring-config-grid .hosting-config-main,
.monitoring-config-grid .hosting-config-card {
  align-self: start;
}

.monitoring-config-grid .hosting-config-card {
  padding-bottom: 24px;
}

.monitoring-config-grid .hosting-config-card-head {
  padding-bottom: 18px;
  margin-bottom: 20px;
}

.monitoring-config-grid .hosting-config-row {
  padding-top: 18px;
}

.monitoring-port-fields {
  display: grid;
  grid-template-columns: minmax(160px, 220px) minmax(0, 1fr);
  gap: 18px;
  align-items: start;
}

.monitoring-port-fields .hosting-config-field input {
  min-height: 54px;
}

.hosting-config-card,
.hosting-summary-card {
  border: 1px solid #e6edf8;
  border-radius: 16px;
  background: #ffffff;
  box-shadow: 0 16px 34px rgba(15, 23, 42, .06);
}

.hosting-config-card {
  padding: 30px;
}

.hosting-config-card-head {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 18px;
  padding-bottom: 22px;
  border-bottom: 1px solid #e5e7eb;
  margin-bottom: 24px;
}

.hosting-config-eyebrow {
  display: block;
  color: #0f3cc9;
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0;
  text-transform: none;
  margin-bottom: 6px;
}

.hosting-config-card h2,
.hosting-summary-card h2 {
  color: #0f172a;
  font-size: 26px;
  line-height: 1.2;
  font-weight: 900;
  margin: 0;
}

.hosting-config-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 28px;
  padding: 0 12px;
  border-radius: 999px;
  background: #0f3cc9;
  color: #ffffff;
  font-size: 12px;
  font-weight: 900;
  white-space: nowrap;
}

.hosting-config-field,
.hosting-config-label {
  display: grid;
  gap: 10px;
  color: #475569;
  font-size: 15px;
  font-weight: 600;
}

.hosting-config-field input {
  width: 100%;
  min-height: 58px;
  padding: 0 18px;
  border: 1px solid #cbd5e1;
  border-radius: 10px;
  background: #f8fafc;
  color: #0f172a;
  font-family: Inter, Arial, sans-serif;
  font-size: 16px;
  font-weight: 600;
  outline: none;
}

.hosting-config-field select {
  width: 100%;
  min-height: 58px;
  padding: 0 46px 0 18px;
  border: 1px solid #cbd5e1;
  border-radius: 10px;
  background: #f8fafc;
  color: #0f172a;
  font-family: Inter, Arial, sans-serif;
  font-size: 16px;
  font-weight: 600;
  outline: none;
  appearance: none;
  background-image: linear-gradient(45deg, transparent 50%, #0f3cc9 50%), linear-gradient(135deg, #0f3cc9 50%, transparent 50%);
  background-position: calc(100% - 23px) 26px, calc(100% - 16px) 26px;
  background-size: 7px 7px, 7px 7px;
  background-repeat: no-repeat;
}

.hosting-config-field input:focus,
.hosting-config-field select:focus {
  border-color: #0f3cc9;
  box-shadow: 0 0 0 3px rgba(15, 60, 201, .12);
}

.vps-config-options {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}

.vps-config-grid {
  align-items: start;
}

.vps-config-grid .hosting-config-main,
.vps-config-grid .hosting-config-card {
  align-self: start;
}

.vps-select-dropdown {
  min-width: 0;
  margin-top: 10px;
}

.vps-select-dropdown .storage-billing-toggle {
  min-height: 58px;
  font-size: 16px;
  font-weight: 700;
}

.vps-config-options .hosting-config-field select {
  min-height: 58px;
  border-color: #dbeafe;
  background-color: #f8fbff;
  background-image: linear-gradient(45deg, transparent 50%, #0f3cc9 50%), linear-gradient(135deg, #0f3cc9 50%, transparent 50%), linear-gradient(180deg, #ffffff 0%, #f8fbff 100%);
  background-position: calc(100% - 23px) 27px, calc(100% - 16px) 27px, 0 0;
  background-size: 7px 7px, 7px 7px, 100% 100%;
  color: #0f172a;
  font-weight: 700;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, .8), 0 1px 2px rgba(15, 23, 42, .03);
}

.vps-config-billing-row {
  grid-template-columns: minmax(260px, 428px);
  align-items: start;
}

.vps-config-billing-field {
  align-content: start;
}

.hosting-config-row {
  display: grid;
  grid-template-columns: minmax(260px, 380px) minmax(180px, 1fr);
  gap: 24px;
  align-items: end;
  padding-top: 24px;
}

.hosting-duration-dropdown {
  min-width: 0;
  margin-top: 10px;
}

.hosting-duration-dropdown .storage-billing-toggle {
  min-height: 58px;
  font-size: 16px;
  font-weight: 700;
}

.hosting-config-price-preview {
  display: grid;
  justify-items: end;
  gap: 8px;
}

.hosting-config-price-preview span {
  color: #64748b;
  font-size: 14px;
  font-weight: 600;
}

.hosting-config-price-preview del {
  color: #64748b;
  font-size: 16px;
  font-weight: 600;
  line-height: 1;
}

.hosting-config-price-preview strong {
  color: #0f172a;
  font-size: 42px;
  line-height: 1;
  font-weight: 900;
}

.hosting-config-price-preview strong span {
  color: #111827;
  font-size: inherit;
}

.email-hosting-config-section .hosting-config-price-preview strong {
  font-size: 30px;
  font-weight: 800;
  white-space: nowrap;
}

.email-hosting-config-section .hosting-config-price-preview del {
  font-size: 15px;
}

.email-hosting-config-section .hosting-config-card {
  padding: 26px 30px;
}

.email-hosting-config-section .hosting-config-card-head {
  padding-bottom: 18px;
  margin-bottom: 18px;
}

.email-hosting-config-section .hosting-config-row {
  padding-top: 18px;
}

.email-hosting-config-section .hosting-config-grid,
.email-hosting-config-section .hosting-config-main,
.email-hosting-config-section .hosting-config-card {
  align-items: start;
  align-self: start;
}

.hosting-config-addon-head {
  display: flex;
  gap: 14px;
  align-items: flex-start;
  margin-bottom: 22px;
}

.hosting-config-addon-head i {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: #eff6ff;
  color: #0f3cc9;
  font-size: 19px;
  flex: 0 0 42px;
}

.hosting-config-addon-head p {
  color: #64748b;
  font-size: 15px;
  line-height: 1.5;
  margin: 6px 0 0;
}

.hosting-backup-option {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 18px;
  border: 1px solid #dbeafe;
  border-radius: 12px;
  background: #f8fbff;
  color: #0f172a;
  font-size: 16px;
  font-weight: 600;
  cursor: pointer;
}

.hosting-backup-option input {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}

.hosting-backup-check {
  width: 22px;
  height: 22px;
  border: 2px solid #cbd5e1;
  border-radius: 6px;
  background: #ffffff;
  flex: 0 0 22px;
}

.hosting-backup-option input:checked + .hosting-backup-check {
  border-color: #0f3cc9;
  background: #0f3cc9;
  box-shadow: inset 0 0 0 4px #ffffff;
}

.hosting-backup-option small {
  display: block;
  color: #64748b;
  font-size: 14px;
  font-weight: 500;
  margin-top: 3px;
}

.hosting-summary-card {
  position: sticky;
  top: 110px;
  padding: 30px;
}

@media (min-width: 1025px) {
  .hosting-summary-card {
    height: 100%;
  }
}

.hosting-summary-plan {
  display: grid;
  gap: 6px;
  margin: 28px 0 22px;
}

.hosting-summary-plan strong {
  color: #0f172a;
  font-size: 20px;
  font-weight: 900;
}

.hosting-summary-plan span {
  color: #64748b;
  font-size: 15px;
  font-weight: 600;
}

.hosting-summary-line,
.hosting-summary-total {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 18px 0;
  border-top: 1px solid #e5e7eb;
  color: #475569;
  font-size: 16px;
  font-weight: 600;
}

.hosting-summary-line strong {
  color: #334155;
  font-size: 17px;
  font-weight: 900;
  white-space: nowrap;
}

.hosting-summary-line small {
  display: block;
  color: #64748b;
  font-size: 13px;
  font-weight: 500;
  margin-top: 4px;
}

.hosting-summary-total {
  color: #0f172a;
  font-size: 20px;
}

.hosting-summary-total strong {
  color: #0f172a;
  font-size: 32px;
  line-height: 1;
  font-weight: 900;
  white-space: nowrap;
}

.hosting-summary-button {
  width: 100%;
  min-height: 56px;
  margin-top: 18px;
  border: 0;
  border-radius: 10px;
  background: #0f3cc9;
  color: #ffffff;
  font-family: Inter, Arial, sans-serif;
  font-size: 16px;
  font-weight: 900;
  cursor: pointer;
  transition: background .15s, transform .15s;
}

.hosting-summary-button:hover {
  background: #0f172a;
  transform: translateY(-1px);
}

.hosting-summary-trust {
  display: grid;
  justify-items: center;
  gap: 0;
  margin-top: 16px;
  color: #0f172a;
  font-size: 15px;
  font-weight: 600;
}

.hosting-summary-trust i {
  color: #16a34a;
  margin-right: 10px;
  font-size: 22px;
  vertical-align: middle;
}

.hosting-payment-panel {
  display: grid;
  justify-items: center;
  gap: 8px;
  margin-top: 14px;
  text-align: center;
}

.hosting-payment-panel strong {
  display: block;
  width: 100%;
  color: #0f172a;
  font-size: 16px;
  font-weight: 700;
  text-align: center;
}

.hosting-payment-icons {
  display: flex;
  justify-content: center;
  flex-wrap: nowrap;
  gap: 18px;
  width: 100%;
}

.hosting-payment-icons span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: auto;
  height: 24px;
  padding: 0;
  border: 0;
  border-radius: 0;
  background: transparent;
  color: #0f3cc9;
  font-size: 11px;
  line-height: 1.1;
  font-weight: 900;
  box-shadow: none;
  text-align: center;
  white-space: normal;
  flex: 0 0 auto;
  min-width: 0;
}

.hosting-payment-icons i {
  font-size: 22px;
  line-height: 1;
}

.hosting-payment-icons .payment-visa {
  color: #172554;
  font-size: 14px;
  font-style: italic;
}

.hosting-payment-icons span:nth-child(2) {
  color: #dc2626;
}

.hosting-payment-icons span:nth-child(4) {
  color: #475569;
}

.hosting-payment-icons span:nth-child(5) {
  color: #2563eb;
}

.hosting-payment-icons span:nth-child(6) {
  color: #6d28d9;
}

.hosting-payment-panel p {
  color: #64748b;
  font-size: 15px;
  line-height: 1.5;
  font-weight: 500;
  margin: 8px 0 0;
}

.hosting-payment-panel p span {
  color: #94a3b8;
  padding: 0 6px;
}

@media (max-width: 1024px) {
  .hosting-config-grid {
    grid-template-columns: 1fr;
    align-items: start;
  }

  .hosting-summary-card {
    position: static;
  }
}

@media (max-width: 640px) {
  .hosting-config-section {
    padding: 38px 0 50px;
  }

  .hosting-config-grid {
    gap: 20px;
    margin-top: 28px;
  }

  .hosting-config-card,
  .hosting-summary-card {
    padding: 22px 18px;
    border-radius: 12px;
  }

  .hosting-config-card-head {
    display: grid;
  }

  .hosting-config-card h2,
  .hosting-summary-card h2 {
    font-size: 22px;
  }

  .hosting-config-row {
    grid-template-columns: 1fr;
    gap: 18px;
  }

  .vps-config-options {
    grid-template-columns: 1fr;
  }

  .monitoring-port-fields {
    grid-template-columns: 1fr;
  }

  .hosting-config-price-preview {
    justify-items: start;
  }

  .hosting-config-price-preview strong,
  .hosting-summary-total strong {
    font-size: 34px;
  }

  .email-hosting-config-section .hosting-config-price-preview strong {
    font-size: 26px;
  }

  .email-hosting-config-section .hosting-config-card {
    padding: 20px 18px;
  }

  .email-hosting-config-section .hosting-config-card-head {
    padding-bottom: 16px;
    margin-bottom: 16px;
  }

  .email-hosting-config-section .hosting-config-row {
    padding-top: 14px;
  }

  .hosting-summary-line,
  .hosting-summary-total {
    align-items: flex-start;
    font-size: 15px;
  }

  .hosting-payment-icons {
    gap: 5px;
  }

  .hosting-payment-icons span {
    height: 22px;
    padding: 0;
    font-size: 7px;
    flex-basis: auto;
  }

  .hosting-payment-icons i {
    font-size: 18px;
  }

  .hosting-payment-icons .payment-visa {
    font-size: 11px;
  }

  .auth-page-section {
    padding: 34px 0 54px;
  }

  .auth-page-wrap,
  .auth-page-wrap-small {
    grid-template-columns: 1fr;
    gap: 18px;
  }

  .auth-copy-card,
  .auth-form-card {
    padding: 22px 18px;
    border-radius: 12px;
  }

  .auth-copy-card {
    display: none;
  }

  .auth-page-wrap .auth-copy-card {
    display: block;
  }

  .auth-copy-card h1 {
    font-size: 28px;
  }

  .auth-copy-card p,
  .auth-form-card p {
    font-size: 14px;
    line-height: 1.55;
  }

  .auth-form-two-col {
    grid-template-columns: 1fr;
  }

  .auth-form input,
  .auth-form button {
    min-height: 50px;
  }

  .auth-captcha {
    transform: scale(.88);
    transform-origin: left top;
    margin-bottom: -8px;
  }

  .checkout-page-section {
    padding: 34px 0 56px;
  }

  .checkout-page-head h1 {
    font-size: 30px;
  }

  .checkout-grid {
    grid-template-columns: 1fr;
    gap: 18px;
  }

  .ssl-flow-grid {
    grid-template-columns: 1fr;
    gap: 18px;
  }

  .checkout-items-card,
  .checkout-summary-card,
  .checkout-empty-card {
    padding: 20px 18px;
    border-radius: 12px;
  }

  .checkout-summary-card {
    position: static;
  }

  .checkout-item {
    grid-template-columns: 1fr;
    gap: 10px;
  }

  .checkout-item-price {
    justify-content: space-between;
  }

  .checkout-summary-total strong {
    font-size: 26px;
  }

  .payment-result-section {
    padding: 36px 0 58px;
  }

  .payment-result-card {
    padding: 24px 18px;
    border-radius: 12px;
  }

  .payment-result-card h1 {
    font-size: 30px;
  }

  .payment-choice-grid {
    grid-template-columns: 1fr 1fr;
  }

  .payment-result-actions {
    display: grid;
    grid-template-columns: 1fr;
  }
}
