:root {
      --bg: #f7f9ff;
      --surface: #ffffff;
      --surface-2: #eef3ff;
      --text: #12192e;
      --muted: #667085;
      --primary: #5b5cf0;
      --primary-dark: #4243ce;
      --accent: #18b6a4;
      --border: #dfe5f2;
      --dark: #0d1326;
      --success: #16a36a;
      --shadow: 0 18px 50px rgba(38, 51, 94, 0.12);
      --shadow-soft: 0 12px 30px rgba(38, 51, 94, 0.08);
      --radius-lg: 26px;
      --radius-md: 18px;
      --radius-sm: 12px;
      --container: 1180px;
    }

    * {
      box-sizing: border-box;
      margin: 0;
      padding: 0;
    }

    html {
      scroll-behavior: smooth;
    }

    body {
      font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
      color: var(--text);
      background: var(--bg);
      line-height: 1.65;
      overflow-x: hidden;
    }

    body.menu-open {
      overflow: hidden;
    }

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

    button,
    input {
      font: inherit;
    }

    button {
      cursor: pointer;
    }

    img,
    svg {
      display: block;
      max-width: 100%;
    }

    .container {
      width: min(calc(100% - 40px), var(--container));
      margin-inline: auto;
    }

    .section {
      padding: 105px 0;
    }

    .section-header {
      max-width: 720px;
      margin: 0 auto 52px;
      text-align: center;
    }

    .section-header h2 {
      font-size: clamp(2rem, 4vw, 3.2rem);
      line-height: 1.12;
      letter-spacing: -0.04em;
      margin-bottom: 18px;
    }

    .section-header p {
      color: var(--muted);
      font-size: 1.05rem;
    }

    .eyebrow {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      margin-bottom: 16px;
      color: var(--primary);
      font-weight: 800;
      font-size: 0.78rem;
      letter-spacing: 0.12em;
      text-transform: uppercase;
    }

    .eyebrow::before {
      content: "";
      width: 26px;
      height: 2px;
      border-radius: 999px;
      background: var(--primary);
    }

    .btn {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      gap: 10px;
      min-height: 52px;
      padding: 0 22px;
      border: 1px solid transparent;
      border-radius: 12px;
      font-weight: 800;
      transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
    }

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

    .btn-primary {
      color: #fff;
      background: linear-gradient(135deg, var(--primary), #7475ff);
      box-shadow: 0 12px 25px rgba(91, 92, 240, 0.27);
    }

    .btn-primary:hover {
      box-shadow: 0 16px 32px rgba(91, 92, 240, 0.35);
    }

    .btn-light {
      color: var(--text);
      background: #fff;
      border-color: var(--border);
    }

    .btn-light:hover {
      box-shadow: var(--shadow-soft);
    }

    .site-header {
      position: absolute;
      inset: 0 0 auto;
      z-index: 50;
      padding: 20px 0;
    }

    .nav {
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 28px;
    }

    .brand {
      display: inline-flex;
      align-items: center;
      gap: 10px;
      font-size: 1.35rem;
      font-weight: 900;
      letter-spacing: -0.03em;
    }

    .brand-mark {
      width: 42px;
      height: 42px;
      display: grid;
      place-items: center;
      border-radius: 13px;
      color: #fff;
      background: linear-gradient(145deg, var(--primary), #7f80ff);
      box-shadow: 0 10px 24px rgba(91, 92, 240, 0.3);
    }

    .nav-links {
      display: flex;
      align-items: center;
      gap: 30px;
      list-style: none;
      color: #3f485d;
      font-weight: 700;
      font-size: 0.94rem;
    }

    .nav-links a {
      transition: color 0.2s ease;
    }

    .nav-links a:hover {
      color: var(--primary);
    }

    .nav-actions {
      display: flex;
      align-items: center;
      gap: 12px;
    }

    .login-link {
      font-weight: 800;
      color: #344054;
      padding: 10px;
    }

    .menu-btn {
      display: none;
      width: 46px;
      height: 46px;
      border: 1px solid var(--border);
      border-radius: 12px;
      background: #fff;
      color: var(--text);
    }

    .hero {
      position: relative;
      min-height: 810px;
      padding: 175px 0 105px;
      overflow: hidden;
      background:
        radial-gradient(circle at 80% 18%, rgba(91, 92, 240, 0.16), transparent 34%),
        radial-gradient(circle at 10% 70%, rgba(24, 182, 164, 0.12), transparent 28%),
        linear-gradient(180deg, #fbfcff 0%, #f2f5ff 100%);
    }

    .hero::before {
      content: "";
      position: absolute;
      inset: 0;
      opacity: 0.32;
      background-image:
        linear-gradient(rgba(80, 95, 150, 0.12) 1px, transparent 1px),
        linear-gradient(90deg, rgba(80, 95, 150, 0.12) 1px, transparent 1px);
      background-size: 54px 54px;
      mask-image: linear-gradient(to bottom, #000 0%, transparent 80%);
      pointer-events: none;
    }

    .hero-grid {
      position: relative;
      z-index: 1;
      display: grid;
      grid-template-columns: 1.02fr 0.98fr;
      align-items: center;
      gap: 68px;
    }

    .hero h1 {
      max-width: 700px;
      font-size: clamp(3rem, 6vw, 5.4rem);
      line-height: 0.99;
      letter-spacing: -0.065em;
      margin-bottom: 25px;
    }

    .hero h1 span {
      color: var(--primary);
    }

    .hero-copy {
      max-width: 620px;
      color: var(--muted);
      font-size: 1.12rem;
      margin-bottom: 34px;
    }

    .hero-actions {
      display: flex;
      flex-wrap: wrap;
      gap: 14px;
      margin-bottom: 34px;
    }

    .trust-row {
      display: flex;
      flex-wrap: wrap;
      align-items: center;
      gap: 20px;
      color: #4a556d;
      font-weight: 700;
      font-size: 0.9rem;
    }

    .trust-row span {
      display: inline-flex;
      align-items: center;
      gap: 8px;
    }

    .trust-row svg {
      color: var(--success);
    }

    .server-visual {
      position: relative;
      min-height: 500px;
      display: grid;
      place-items: center;
    }

    .orbit {
      position: absolute;
      border: 1px dashed rgba(91, 92, 240, 0.28);
      border-radius: 50%;
      animation: rotate 22s linear infinite;
    }

    .orbit-1 {
      width: 430px;
      height: 430px;
    }

    .orbit-2 {
      width: 320px;
      height: 320px;
      animation-direction: reverse;
      animation-duration: 18s;
    }

    .orbit-dot {
      position: absolute;
      width: 15px;
      height: 15px;
      border-radius: 50%;
      background: var(--primary);
      box-shadow: 0 0 0 8px rgba(91, 92, 240, 0.12);
    }

    .orbit-1 .orbit-dot {
      top: 22px;
      left: 76px;
    }

    .orbit-2 .orbit-dot {
      right: 10px;
      bottom: 85px;
      background: var(--accent);
      box-shadow: 0 0 0 8px rgba(24, 182, 164, 0.12);
    }

    @keyframes rotate {
      to { transform: rotate(360deg); }
    }

    .server-stack {
      position: relative;
      z-index: 2;
      width: min(100%, 390px);
      padding: 28px;
      border: 1px solid rgba(255,255,255,0.8);
      border-radius: 30px;
      background: rgba(255,255,255,0.76);
      backdrop-filter: blur(18px);
      box-shadow: 0 28px 70px rgba(62, 75, 135, 0.18);
      transform: perspective(1000px) rotateY(-8deg) rotateX(3deg);
    }

    .server-header {
      display: flex;
      align-items: center;
      justify-content: space-between;
      margin-bottom: 20px;
    }

    .server-header strong {
      font-size: 1.05rem;
    }

    .live-status {
      display: inline-flex;
      align-items: center;
      gap: 7px;
      padding: 7px 10px;
      border-radius: 999px;
      color: #0f7d50;
      background: #e7f8f0;
      font-weight: 800;
      font-size: 0.75rem;
    }

    .live-status::before {
      content: "";
      width: 7px;
      height: 7px;
      border-radius: 50%;
      background: #1dc176;
      box-shadow: 0 0 0 5px rgba(29, 193, 118, 0.14);
    }

    .server-unit {
      position: relative;
      display: flex;
      align-items: center;
      gap: 15px;
      padding: 16px;
      margin-top: 12px;
      border: 1px solid #e3e7f2;
      border-radius: 15px;
      background: #fff;
      box-shadow: 0 7px 18px rgba(45, 55, 90, 0.06);
    }

    .server-light {
      width: 11px;
      height: 11px;
      flex: 0 0 auto;
      border-radius: 50%;
      background: #24c47b;
      box-shadow: 0 0 0 5px rgba(36, 196, 123, 0.13);
    }

    .server-lines {
      flex: 1;
    }

    .server-lines b {
      display: block;
      font-size: 0.88rem;
      margin-bottom: 7px;
    }

    .progress {
      height: 6px;
      border-radius: 999px;
      background: #edf0f7;
      overflow: hidden;
    }

    .progress span {
      display: block;
      height: 100%;
      border-radius: inherit;
      background: linear-gradient(90deg, var(--primary), #8889ff);
    }

    .server-meta {
      color: var(--muted);
      font-size: 0.72rem;
      font-weight: 700;
      white-space: nowrap;
    }

    .floating-card {
      position: absolute;
      z-index: 3;
      display: flex;
      align-items: center;
      gap: 12px;
      min-width: 180px;
      padding: 14px 16px;
      border: 1px solid rgba(255,255,255,0.86);
      border-radius: 15px;
      background: rgba(255,255,255,0.9);
      box-shadow: var(--shadow-soft);
      backdrop-filter: blur(14px);
    }

    .floating-card svg {
      color: var(--primary);
    }

    .floating-card b {
      display: block;
      font-size: 0.83rem;
    }

    .floating-card span {
      display: block;
      color: var(--muted);
      font-size: 0.72rem;
    }

    .fc-one {
      top: 58px;
      right: -8px;
    }

    .fc-two {
      left: -30px;
      bottom: 70px;
    }

    .domain-wrap {
      position: relative;
      z-index: 3;
      margin-top: -52px;
    }

    .domain-box {
      padding: 32px;
      border: 1px solid rgba(255,255,255,0.9);
      border-radius: 24px;
      background: #fff;
      box-shadow: var(--shadow);
    }

    .domain-grid {
      display: grid;
      grid-template-columns: 0.7fr 1.3fr;
      align-items: center;
      gap: 35px;
    }

    .domain-box h3 {
      font-size: 1.55rem;
      line-height: 1.2;
      margin-bottom: 7px;
    }

    .domain-box p {
      color: var(--muted);
      font-size: 0.93rem;
    }

    .domain-form {
      display: flex;
      align-items: center;
      gap: 10px;
      padding: 8px;
      border: 1px solid var(--border);
      border-radius: 15px;
      background: #f8faff;
    }

    .domain-form input {
      flex: 1;
      min-width: 0;
      padding: 12px 14px;
      border: 0;
      outline: 0;
      background: transparent;
      color: var(--text);
    }

    .domain-form button {
      min-height: 48px;
      padding: 0 24px;
      border: 0;
      border-radius: 11px;
      color: #fff;
      background: var(--primary);
      font-weight: 800;
    }

    .domain-result {
      display: none;
      margin-top: 12px;
      color: var(--success);
      font-weight: 800;
      font-size: 0.9rem;
    }

    .domain-result.show {
      display: block;
    }

    .domain-prices {
      display: flex;
      flex-wrap: wrap;
      gap: 18px;
      margin-top: 16px;
      color: #4f5b72;
      font-size: 0.82rem;
      font-weight: 800;
    }

    .domain-prices b {
      color: var(--primary);
    }

    .features-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 24px;
    }

    .feature-card {
      padding: 31px;
      border: 1px solid var(--border);
      border-radius: var(--radius-md);
      background: var(--surface);
      transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
    }

    .feature-card:hover {
      transform: translateY(-7px);
      border-color: rgba(91, 92, 240, 0.28);
      box-shadow: var(--shadow-soft);
    }

    .icon-box {
      width: 54px;
      height: 54px;
      display: grid;
      place-items: center;
      margin-bottom: 20px;
      border-radius: 15px;
      color: var(--primary);
      background: var(--surface-2);
    }

    .feature-card:nth-child(2) .icon-box,
    .feature-card:nth-child(5) .icon-box {
      color: var(--accent);
      background: #e7faf7;
    }

    .feature-card h3 {
      font-size: 1.2rem;
      margin-bottom: 9px;
    }

    .feature-card p {
      color: var(--muted);
      font-size: 0.95rem;
    }

    .pricing-section {
      background: #fff;
    }

    .billing-toggle {
      width: max-content;
      display: flex;
      align-items: center;
      gap: 6px;
      margin: -22px auto 44px;
      padding: 6px;
      border: 1px solid var(--border);
      border-radius: 13px;
      background: #f5f7fc;
    }

    .toggle-btn {
      min-width: 110px;
      padding: 10px 15px;
      border: 0;
      border-radius: 9px;
      color: var(--muted);
      background: transparent;
      font-weight: 800;
    }

    .toggle-btn.active {
      color: #fff;
      background: var(--primary);
      box-shadow: 0 7px 18px rgba(91, 92, 240, 0.23);
    }

    .pricing-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 24px;
      align-items: stretch;
    }

    .price-card {
      position: relative;
      display: flex;
      flex-direction: column;
      padding: 34px;
      border: 1px solid var(--border);
      border-radius: 22px;
      background: #fff;
      transition: transform 0.25s ease, box-shadow 0.25s ease;
    }

    .price-card:hover {
      transform: translateY(-7px);
      box-shadow: var(--shadow);
    }

    .price-card.popular {
      color: #fff;
      border-color: transparent;
      background:
        radial-gradient(circle at 100% 0%, rgba(255,255,255,0.16), transparent 30%),
        linear-gradient(155deg, #5758e8, #3536b9);
      box-shadow: 0 24px 50px rgba(66, 67, 206, 0.28);
      transform: translateY(-10px);
    }

    .price-card.popular:hover {
      transform: translateY(-16px);
    }

    .popular-tag {
      position: absolute;
      top: 18px;
      right: 18px;
      padding: 7px 10px;
      border-radius: 999px;
      color: #fff;
      background: rgba(255,255,255,0.17);
      font-size: 0.72rem;
      font-weight: 900;
      text-transform: uppercase;
      letter-spacing: 0.08em;
    }

    .plan-name {
      font-size: 1.25rem;
      margin-bottom: 8px;
    }

    .plan-desc {
      min-height: 50px;
      color: var(--muted);
      font-size: 0.91rem;
    }

    .popular .plan-desc,
    .popular .price-note,
    .popular .plan-features {
      color: rgba(255,255,255,0.78);
    }

    .price {
      display: flex;
      align-items: end;
      gap: 5px;
      margin: 22px 0 3px;
    }

    .currency {
      font-size: 1.1rem;
      font-weight: 800;
      transform: translateY(-24px);
    }

    .price-value {
      font-size: 3.8rem;
      line-height: 1;
      letter-spacing: -0.06em;
      font-weight: 900;
    }

    .price-period {
      color: var(--muted);
      font-weight: 700;
      margin-bottom: 7px;
    }

    .popular .price-period {
      color: rgba(255,255,255,0.72);
    }

    .price-note {
      color: var(--muted);
      font-size: 0.8rem;
      margin-bottom: 23px;
    }

    .price-card .btn {
      width: 100%;
      margin-bottom: 25px;
    }

    .popular .btn {
      color: var(--primary-dark);
      background: #fff;
      box-shadow: none;
    }

    .plan-features {
      display: grid;
      gap: 13px;
      color: #4f5b72;
      list-style: none;
      font-size: 0.9rem;
    }

    .plan-features li {
      display: flex;
      align-items: center;
      gap: 10px;
    }

    .plan-features svg {
      flex: 0 0 auto;
      color: var(--success);
    }

    .popular .plan-features svg {
      color: #91ffd0;
    }

    .performance {
      overflow: hidden;
    }

    .performance-grid {
      display: grid;
      grid-template-columns: 0.95fr 1.05fr;
      align-items: center;
      gap: 80px;
    }

    .performance-copy h2 {
      font-size: clamp(2rem, 4vw, 3.25rem);
      line-height: 1.13;
      letter-spacing: -0.045em;
      margin-bottom: 20px;
    }

    .performance-copy > p {
      color: var(--muted);
      margin-bottom: 28px;
    }

    .check-list {
      display: grid;
      gap: 16px;
      list-style: none;
      margin-bottom: 32px;
    }

    .check-list li {
      display: flex;
      align-items: flex-start;
      gap: 12px;
      color: #3e495e;
      font-weight: 700;
    }

    .check-list .check {
      width: 26px;
      height: 26px;
      flex: 0 0 auto;
      display: grid;
      place-items: center;
      border-radius: 8px;
      color: #0d8756;
      background: #dcf8ec;
    }

    .analytics-panel {
      padding: 28px;
      border: 1px solid var(--border);
      border-radius: 26px;
      background: #fff;
      box-shadow: var(--shadow);
    }

    .analytics-top {
      display: flex;
      align-items: center;
      justify-content: space-between;
      margin-bottom: 25px;
    }

    .analytics-top p {
      color: var(--muted);
      font-size: 0.84rem;
    }

    .analytics-top b {
      font-size: 1.05rem;
    }

    .analytics-top select {
      padding: 9px 12px;
      border: 1px solid var(--border);
      border-radius: 9px;
      color: #4a556d;
      background: #fff;
      font-weight: 700;
    }

    .chart {
      position: relative;
      height: 230px;
      border-left: 1px solid #e8ecf4;
      border-bottom: 1px solid #e8ecf4;
      background-image: linear-gradient(#edf0f6 1px, transparent 1px);
      background-size: 100% 46px;
      overflow: hidden;
    }

    .chart svg {
      position: absolute;
      inset: 0;
      width: 100%;
      height: 100%;
    }

    .chart-stats {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 12px;
      margin-top: 20px;
    }

    .chart-stat {
      padding: 15px;
      border-radius: 13px;
      background: #f7f8fc;
    }

    .chart-stat span {
      display: block;
      color: var(--muted);
      font-size: 0.74rem;
      margin-bottom: 5px;
    }

    .chart-stat b {
      font-size: 1.08rem;
    }

    .stats-band {
      background: var(--dark);
      color: #fff;
    }

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

    .stat-item {
      padding: 12px 25px;
      text-align: center;
      border-right: 1px solid rgba(255,255,255,0.12);
    }

    .stat-item:last-child {
      border-right: 0;
    }

    .stat-item b {
      display: block;
      font-size: clamp(2rem, 4vw, 3rem);
      line-height: 1;
      margin-bottom: 12px;
    }

    .stat-item span {
      color: rgba(255,255,255,0.67);
      font-size: 0.9rem;
    }

    .testimonials {
      background: #fff;
    }

    .testimonial-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 24px;
    }

    .testimonial-card {
      padding: 30px;
      border: 1px solid var(--border);
      border-radius: 19px;
      background: #fff;
      box-shadow: 0 9px 25px rgba(38, 51, 94, 0.06);
    }

    .stars {
      color: #f6a71a;
      letter-spacing: 3px;
      margin-bottom: 16px;
    }

    .testimonial-card > p {
      color: #4d586e;
      margin-bottom: 25px;
    }

    .customer {
      display: flex;
      align-items: center;
      gap: 12px;
    }

    .avatar {
      width: 46px;
      height: 46px;
      display: grid;
      place-items: center;
      border-radius: 50%;
      color: #fff;
      background: linear-gradient(135deg, var(--primary), #9b9cff);
      font-weight: 900;
    }

    .customer b {
      display: block;
      font-size: 0.93rem;
    }

    .customer span {
      color: var(--muted);
      font-size: 0.78rem;
    }

    .faq-grid {
      max-width: 860px;
      margin: 0 auto;
      display: grid;
      gap: 14px;
    }

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

    .faq-question {
      width: 100%;
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 20px;
      padding: 21px 23px;
      border: 0;
      background: transparent;
      color: var(--text);
      text-align: left;
      font-weight: 850;
    }

    .faq-icon {
      width: 28px;
      height: 28px;
      flex: 0 0 auto;
      display: grid;
      place-items: center;
      border-radius: 8px;
      color: var(--primary);
      background: var(--surface-2);
      transition: transform 0.25s ease;
    }

    .faq-answer {
      max-height: 0;
      overflow: hidden;
      color: var(--muted);
      transition: max-height 0.3s ease;
    }

    .faq-answer p {
      padding: 0 23px 22px;
    }

    .faq-item.active .faq-answer {
      max-height: 220px;
    }

    .faq-item.active .faq-icon {
      transform: rotate(45deg);
    }

    .cta {
      padding: 0 0 105px;
    }

    .cta-box {
      position: relative;
      overflow: hidden;
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 34px;
      padding: 56px;
      border-radius: 28px;
      color: #fff;
      background:
        radial-gradient(circle at 90% 10%, rgba(255,255,255,0.18), transparent 29%),
        linear-gradient(135deg, #5354e7, #3334ae);
      box-shadow: 0 24px 55px rgba(58, 59, 180, 0.25);
    }

    .cta-box::after {
      content: "";
      position: absolute;
      width: 220px;
      height: 220px;
      right: -75px;
      bottom: -100px;
      border: 30px solid rgba(255,255,255,0.08);
      border-radius: 50%;
    }

    .cta-copy {
      position: relative;
      z-index: 1;
      max-width: 650px;
    }

    .cta-copy h2 {
      font-size: clamp(2rem, 4vw, 3.2rem);
      line-height: 1.1;
      letter-spacing: -0.045em;
      margin-bottom: 13px;
    }

    .cta-copy p {
      color: rgba(255,255,255,0.75);
    }

    .cta-box .btn {
      position: relative;
      z-index: 1;
      flex: 0 0 auto;
      color: var(--primary-dark);
      background: #fff;
    }

    footer {
      padding: 72px 0 25px;
      color: rgba(255,255,255,0.72);
      background: #090f20;
    }

    .footer-grid {
      display: grid;
      grid-template-columns: 1.5fr repeat(4, 1fr);
      gap: 42px;
      padding-bottom: 50px;
    }

    .footer-brand .brand {
      color: #fff;
      margin-bottom: 18px;
    }

    .footer-brand p {
      max-width: 320px;
      font-size: 0.9rem;
      margin-bottom: 22px;
    }

    .socials {
      display: flex;
      gap: 10px;
    }

    .socials a {
      width: 39px;
      height: 39px;
      display: grid;
      place-items: center;
      border: 1px solid rgba(255,255,255,0.12);
      border-radius: 10px;
      transition: background 0.2s ease, color 0.2s ease;
    }

    .socials a:hover {
      color: #fff;
      background: var(--primary);
    }

    .footer-col h4 {
      color: #fff;
      font-size: 0.92rem;
      margin-bottom: 18px;
    }

    .footer-col ul {
      display: grid;
      gap: 11px;
      list-style: none;
      font-size: 0.86rem;
    }

    .footer-col a:hover {
      color: #fff;
    }

    .footer-bottom {
      display: flex;
      justify-content: space-between;
      gap: 20px;
      padding-top: 24px;
      border-top: 1px solid rgba(255,255,255,0.1);
      font-size: 0.8rem;
    }

    .footer-bottom div {
      display: flex;
      gap: 20px;
    }

    @media (max-width: 1024px) {
      .nav-links {
        gap: 18px;
      }

      .hero-grid,
      .performance-grid {
        gap: 45px;
      }

      .server-stack {
        transform: none;
      }

      .features-grid,
      .pricing-grid,
      .testimonial-grid {
        gap: 18px;
      }

      .price-card,
      .feature-card {
        padding: 26px;
      }

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

    @media (max-width: 860px) {
      .site-header {
        position: fixed;
        padding: 12px 0;
        background: rgba(255,255,255,0.94);
        border-bottom: 1px solid var(--border);
        backdrop-filter: blur(15px);
      }

      .menu-btn {
        display: grid;
        place-items: center;
      }

      .nav-actions .login-link,
      .nav-actions .btn {
        display: none;
      }

      .nav-links {
        position: fixed;
        inset: 72px 20px auto;
        display: none;
        flex-direction: column;
        align-items: stretch;
        padding: 20px;
        border: 1px solid var(--border);
        border-radius: 18px;
        background: #fff;
        box-shadow: var(--shadow);
      }

      .nav-links.active {
        display: flex;
      }

      .nav-links a {
        display: block;
        padding: 10px;
      }

      .hero {
        padding-top: 140px;
      }

      .hero-grid,
      .performance-grid,
      .domain-grid {
        grid-template-columns: 1fr;
      }

      .hero-copy,
      .hero h1 {
        max-width: 760px;
      }

      .server-visual {
        min-height: 450px;
      }

      .features-grid,
      .pricing-grid,
      .testimonial-grid {
        grid-template-columns: 1fr 1fr;
      }

      .price-card.popular {
        transform: none;
      }

      .price-card.popular:hover {
        transform: translateY(-7px);
      }

      .pricing-grid .price-card:last-child {
        grid-column: 1 / -1;
        max-width: 520px;
        width: 100%;
        justify-self: center;
      }

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

      .stat-item:nth-child(2) {
        border-right: 0;
      }

      .stat-item {
        padding-block: 25px;
      }

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

      .footer-brand {
        grid-column: 1 / -1;
      }
    }

    @media (max-width: 620px) {
      .container {
        width: min(calc(100% - 28px), var(--container));
      }

      .section {
        padding: 78px 0;
      }

      .hero {
        min-height: auto;
        padding-bottom: 88px;
      }

      .hero h1 {
        font-size: clamp(2.65rem, 13vw, 4rem);
      }

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

      .hero-actions .btn {
        width: 100%;
      }

      .server-visual {
        min-height: 400px;
      }

      .orbit-1 {
        width: 330px;
        height: 330px;
      }

      .orbit-2 {
        width: 245px;
        height: 245px;
      }

      .server-stack {
        padding: 18px;
      }

      .fc-one {
        right: -8px;
        top: 18px;
      }

      .fc-two {
        left: -5px;
        bottom: 26px;
      }

      .floating-card {
        min-width: 155px;
        padding: 11px 12px;
      }

      .domain-wrap {
        margin-top: -35px;
      }

      .domain-box {
        padding: 22px;
      }

      .domain-form {
        align-items: stretch;
        flex-direction: column;
      }

      .features-grid,
      .pricing-grid,
      .testimonial-grid,
      .stats-grid {
        grid-template-columns: 1fr;
      }

      .pricing-grid .price-card:last-child {
        grid-column: auto;
        max-width: none;
      }

      .stat-item {
        border-right: 0;
        border-bottom: 1px solid rgba(255,255,255,0.12);
      }

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

      .chart-stats {
        grid-template-columns: 1fr;
      }

      .cta-box {
        align-items: flex-start;
        flex-direction: column;
        padding: 38px 26px;
      }

      .cta-box .btn {
        width: 100%;
      }

      .footer-grid {
        grid-template-columns: 1fr 1fr;
        gap: 32px 24px;
      }

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

    @media (prefers-reduced-motion: reduce) {
      *,
      *::before,
      *::after {
        scroll-behavior: auto !important;
        animation-duration: 0.001ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.001ms !important;
      }
    }

    /* Enhanced Prixhost motion and expanded homepage */
    :root {
      --primary: #6847f5;
      --primary-dark: #4d2ed0;
      --accent: #08bfae;
      --electric: #44d9ff;
      --purple-soft: #f0edff;
    }

    @keyframes heroGlow {
      0%, 100% { transform: translate3d(0, 0, 0) scale(1); opacity: .55; }
      50% { transform: translate3d(-22px, 18px, 0) scale(1.08); opacity: .8; }
    }

    @keyframes floatSoft {
      0%, 100% { transform: translateY(0); }
      50% { transform: translateY(-12px); }
    }

    @keyframes pulseRing {
      0% { box-shadow: 0 0 0 0 rgba(104, 71, 245, .3); }
      70% { box-shadow: 0 0 0 16px rgba(104, 71, 245, 0); }
      100% { box-shadow: 0 0 0 0 rgba(104, 71, 245, 0); }
    }

    @keyframes marquee {
      from { transform: translateX(0); }
      to { transform: translateX(-50%); }
    }

    @keyframes shimmer {
      0% { transform: translateX(-120%); }
      100% { transform: translateX(160%); }
    }

    @keyframes dashMove {
      to { stroke-dashoffset: -70; }
    }

    .hero::after {
      content: "";
      position: absolute;
      width: 520px;
      height: 520px;
      right: -180px;
      top: -170px;
      border-radius: 50%;
      background: radial-gradient(circle, rgba(68, 217, 255, .28), rgba(104, 71, 245, .10) 45%, transparent 70%);
      filter: blur(12px);
      animation: heroGlow 8s ease-in-out infinite;
      pointer-events: none;
    }

    .brand-mark {
      position: relative;
      overflow: hidden;
    }

    .brand-mark::after {
      content: "";
      position: absolute;
      inset: -30% auto -30% -70%;
      width: 45%;
      background: linear-gradient(90deg, transparent, rgba(255,255,255,.65), transparent);
      transform: rotate(18deg);
      animation: shimmer 5s ease-in-out infinite;
    }

    .server-stack {
      animation: floatSoft 5.8s ease-in-out infinite;
      transform-style: preserve-3d;
      transition: transform .25s ease;
    }

    .floating-card {
      animation: floatSoft 4.6s ease-in-out infinite;
    }

    .fc-two {
      animation-delay: -2.2s;
    }

    .server-light {
      animation: pulseRing 2.4s infinite;
    }

    .reveal {
      opacity: 0;
      transform: translateY(34px);
      transition:
        opacity .75s cubic-bezier(.2,.65,.25,1),
        transform .75s cubic-bezier(.2,.65,.25,1);
      transition-delay: var(--reveal-delay, 0ms);
    }

    .reveal.revealed {
      opacity: 1;
      transform: translateY(0);
    }

    .logo-cloud {
      padding: 38px 0 8px;
      overflow: hidden;
    }

    .logo-cloud-label {
      color: #7b8497;
      text-align: center;
      font-size: .78rem;
      font-weight: 900;
      letter-spacing: .13em;
      text-transform: uppercase;
      margin-bottom: 22px;
    }

    .logo-marquee {
      position: relative;
      overflow: hidden;
      mask-image: linear-gradient(90deg, transparent, #000 10%, #000 90%, transparent);
    }

    .logo-track {
      width: max-content;
      display: flex;
      align-items: center;
      gap: 70px;
      padding: 14px 0;
      animation: marquee 25s linear infinite;
    }

    .logo-track:hover {
      animation-play-state: paused;
    }

    .client-logo {
      display: inline-flex;
      align-items: center;
      gap: 10px;
      color: #768097;
      font-size: 1.08rem;
      font-weight: 900;
      white-space: nowrap;
      filter: grayscale(1);
      opacity: .75;
    }

    .client-logo span {
      width: 30px;
      height: 30px;
      display: grid;
      place-items: center;
      border-radius: 9px;
      color: var(--primary);
      background: var(--purple-soft);
      font-size: .84rem;
    }

    .solutions-section {
      position: relative;
      overflow: hidden;
      color: #fff;
      background:
        radial-gradient(circle at 12% 20%, rgba(68,217,255,.16), transparent 28%),
        radial-gradient(circle at 90% 84%, rgba(104,71,245,.22), transparent 34%),
        #0a1125;
    }

    .solutions-section .section-header p {
      color: rgba(255,255,255,.65);
    }

    .solutions-section .eyebrow {
      color: #86eaff;
    }

    .solutions-section .eyebrow::before {
      background: #86eaff;
    }

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

    .solution-card {
      position: relative;
      min-height: 335px;
      display: flex;
      flex-direction: column;
      padding: 28px;
      border: 1px solid rgba(255,255,255,.12);
      border-radius: 22px;
      background: rgba(255,255,255,.055);
      backdrop-filter: blur(12px);
      overflow: hidden;
      transition: transform .28s ease, border-color .28s ease, background .28s ease;
    }

    .solution-card:hover {
      transform: translateY(-9px);
      border-color: rgba(134,234,255,.4);
      background: rgba(255,255,255,.085);
    }

    .solution-card::after {
      content: "";
      position: absolute;
      width: 120px;
      height: 120px;
      right: -50px;
      top: -50px;
      border-radius: 50%;
      background: rgba(104,71,245,.28);
      filter: blur(5px);
      transition: transform .4s ease;
    }

    .solution-card:hover::after {
      transform: scale(1.45);
    }

    .solution-icon {
      width: 58px;
      height: 58px;
      display: grid;
      place-items: center;
      margin-bottom: 24px;
      border: 1px solid rgba(255,255,255,.14);
      border-radius: 17px;
      color: #8beeff;
      background: rgba(255,255,255,.07);
    }

    .solution-card h3 {
      font-size: 1.25rem;
      margin-bottom: 11px;
    }

    .solution-card p {
      color: rgba(255,255,255,.63);
      font-size: .92rem;
      margin-bottom: 23px;
    }

    .solution-card ul {
      display: grid;
      gap: 10px;
      margin-top: auto;
      list-style: none;
      color: rgba(255,255,255,.82);
      font-size: .84rem;
      font-weight: 750;
    }

    .solution-card li {
      display: flex;
      align-items: center;
      gap: 8px;
    }

    .solution-card li::before {
      content: "";
      width: 7px;
      height: 7px;
      border-radius: 50%;
      background: var(--accent);
      box-shadow: 0 0 0 5px rgba(8,191,174,.1);
    }

    .process-section {
      background:
        linear-gradient(180deg, #fff, #f7f9ff);
    }

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

    .process-grid::before {
      content: "";
      position: absolute;
      top: 34px;
      left: 11%;
      right: 11%;
      border-top: 2px dashed #d5dcf0;
    }

    .process-step {
      position: relative;
      z-index: 1;
      text-align: center;
    }

    .step-number {
      width: 68px;
      height: 68px;
      display: grid;
      place-items: center;
      margin: 0 auto 22px;
      border: 8px solid #f7f9ff;
      border-radius: 50%;
      color: #fff;
      background: linear-gradient(135deg, var(--primary), #8d75ff);
      box-shadow: 0 13px 28px rgba(104,71,245,.25);
      font-size: 1.02rem;
      font-weight: 900;
      transition: transform .28s ease;
    }

    .process-step:hover .step-number {
      transform: rotate(-8deg) scale(1.08);
    }

    .process-step h3 {
      font-size: 1.06rem;
      margin-bottom: 8px;
    }

    .process-step p {
      color: var(--muted);
      font-size: .88rem;
    }

    .migration-section {
      position: relative;
      overflow: hidden;
      background: #fff;
    }

    .migration-grid {
      display: grid;
      grid-template-columns: 1.05fr .95fr;
      align-items: center;
      gap: 76px;
    }

    .migration-copy h2 {
      font-size: clamp(2rem, 4vw, 3.25rem);
      line-height: 1.12;
      letter-spacing: -.045em;
      margin-bottom: 19px;
    }

    .migration-copy > p {
      color: var(--muted);
      margin-bottom: 26px;
    }

    .migration-points {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 14px;
      margin-bottom: 30px;
    }

    .migration-point {
      display: flex;
      align-items: center;
      gap: 10px;
      padding: 13px 14px;
      border: 1px solid var(--border);
      border-radius: 12px;
      background: #fafbff;
      color: #3f4a60;
      font-size: .86rem;
      font-weight: 800;
    }

    .migration-point span {
      width: 24px;
      height: 24px;
      display: grid;
      place-items: center;
      flex: 0 0 auto;
      border-radius: 7px;
      color: var(--success);
      background: #e3f9ef;
    }

    .migration-visual {
      position: relative;
      min-height: 440px;
      display: grid;
      place-items: center;
    }

    .migration-orbit {
      position: absolute;
      width: 360px;
      height: 360px;
      border: 1px dashed rgba(104,71,245,.28);
      border-radius: 50%;
      animation: rotate 24s linear infinite;
    }

    .migration-orbit::before,
    .migration-orbit::after {
      content: "";
      position: absolute;
      width: 24px;
      height: 24px;
      border-radius: 9px;
      background: var(--primary);
      box-shadow: 0 8px 20px rgba(104,71,245,.28);
    }

    .migration-orbit::before {
      left: 26px;
      top: 66px;
    }

    .migration-orbit::after {
      right: 32px;
      bottom: 58px;
      background: var(--accent);
    }

    .migration-core {
      position: relative;
      z-index: 2;
      width: 245px;
      padding: 30px;
      text-align: center;
      border: 1px solid var(--border);
      border-radius: 28px;
      background: rgba(255,255,255,.9);
      box-shadow: var(--shadow);
      backdrop-filter: blur(16px);
    }

    .migration-core-icon {
      width: 74px;
      height: 74px;
      display: grid;
      place-items: center;
      margin: 0 auto 17px;
      border-radius: 22px;
      color: #fff;
      background: linear-gradient(135deg, var(--primary), #927cff);
      box-shadow: 0 14px 28px rgba(104,71,245,.28);
      animation: pulseRing 2.8s infinite;
    }

    .migration-core h3 {
      margin-bottom: 5px;
    }

    .migration-core p {
      color: var(--muted);
      font-size: .82rem;
    }

    .transfer-line {
      position: absolute;
      width: 75%;
      height: 2px;
      background: linear-gradient(90deg, transparent, var(--primary), var(--accent), transparent);
      animation: shimmer 3.6s linear infinite;
    }

    .datacenter-section {
      color: #fff;
      background:
        linear-gradient(rgba(7,12,27,.91), rgba(7,12,27,.95)),
        radial-gradient(circle at 55% 45%, #233766, #070c1b 60%);
    }

    .datacenter-section .section-header p {
      color: rgba(255,255,255,.62);
    }

    .datacenter-section .eyebrow {
      color: #86eaff;
    }

    .datacenter-section .eyebrow::before {
      background: #86eaff;
    }

    .datacenter-layout {
      display: grid;
      grid-template-columns: 1.25fr .75fr;
      gap: 42px;
      align-items: stretch;
    }

    .map-panel {
      position: relative;
      min-height: 440px;
      border: 1px solid rgba(255,255,255,.11);
      border-radius: 24px;
      background:
        radial-gradient(circle at 35% 35%, rgba(68,217,255,.08), transparent 24%),
        rgba(255,255,255,.035);
      overflow: hidden;
    }

    .world-grid {
      position: absolute;
      inset: 0;
      opacity: .18;
      background-image:
        linear-gradient(rgba(255,255,255,.15) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255,255,255,.15) 1px, transparent 1px);
      background-size: 42px 42px;
      mask-image: radial-gradient(circle at center, #000 20%, transparent 80%);
    }

    .network-lines {
      position: absolute;
      inset: 12% 8%;
      width: 84%;
      height: 76%;
    }

    .network-lines path {
      stroke-dasharray: 10 10;
      animation: dashMove 4s linear infinite;
    }

    .map-node {
      position: absolute;
      width: 17px;
      height: 17px;
      border: 4px solid rgba(255,255,255,.75);
      border-radius: 50%;
      background: var(--primary);
      box-shadow: 0 0 0 10px rgba(104,71,245,.15);
      animation: pulseRing 2.6s infinite;
    }

    .node-na { left: 18%; top: 34%; }
    .node-eu { left: 48%; top: 29%; animation-delay: -.7s; }
    .node-me { left: 59%; top: 48%; animation-delay: -1.4s; }
    .node-ap { left: 79%; top: 53%; animation-delay: -2.1s; }
    .node-au { left: 84%; top: 76%; animation-delay: -1s; }
    .node-sa { left: 31%; top: 71%; animation-delay: -.4s; }

    .region-panel {
      display: flex;
      flex-direction: column;
      padding: 28px;
      border: 1px solid rgba(255,255,255,.11);
      border-radius: 24px;
      background: rgba(255,255,255,.045);
    }

    .region-tabs {
      display: flex;
      flex-wrap: wrap;
      gap: 9px;
      margin-bottom: 24px;
    }

    .region-tab {
      padding: 9px 12px;
      border: 1px solid rgba(255,255,255,.12);
      border-radius: 9px;
      color: rgba(255,255,255,.67);
      background: transparent;
      font-size: .78rem;
      font-weight: 800;
    }

    .region-tab.active {
      color: #07121d;
      border-color: #86eaff;
      background: #86eaff;
    }

    .region-detail {
      flex: 1;
      display: flex;
      flex-direction: column;
    }

    .region-detail h3 {
      font-size: 1.5rem;
      margin-bottom: 8px;
    }

    .region-detail > p {
      color: rgba(255,255,255,.6);
      font-size: .9rem;
      margin-bottom: 22px;
    }

    .region-metrics {
      display: grid;
      gap: 12px;
      margin-top: auto;
    }

    .region-metric {
      display: flex;
      justify-content: space-between;
      gap: 15px;
      padding: 15px;
      border-radius: 12px;
      background: rgba(255,255,255,.055);
      color: rgba(255,255,255,.66);
      font-size: .84rem;
    }

    .region-metric b {
      color: #fff;
    }

    .integrations-section {
      background: #fff;
    }

    .integration-grid {
      display: grid;
      grid-template-columns: repeat(6, 1fr);
      gap: 15px;
    }

    .integration-card {
      min-height: 135px;
      display: grid;
      place-items: center;
      gap: 10px;
      padding: 20px 12px;
      border: 1px solid var(--border);
      border-radius: 16px;
      background: #fff;
      color: #414c62;
      text-align: center;
      font-size: .82rem;
      font-weight: 900;
      transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease;
    }

    .integration-card:hover {
      transform: translateY(-7px) rotate(-1deg);
      border-color: rgba(104,71,245,.3);
      box-shadow: var(--shadow-soft);
    }

    .integration-symbol {
      width: 50px;
      height: 50px;
      display: grid;
      place-items: center;
      border-radius: 15px;
      color: var(--primary);
      background: var(--purple-soft);
      font-size: 1.05rem;
      font-weight: 950;
    }

    .support-strip {
      margin-top: 48px;
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 18px;
    }

    .support-mini {
      display: flex;
      align-items: center;
      gap: 14px;
      padding: 21px;
      border: 1px solid var(--border);
      border-radius: 15px;
      background: #fff;
    }

    .support-mini span {
      width: 45px;
      height: 45px;
      display: grid;
      place-items: center;
      flex: 0 0 auto;
      border-radius: 13px;
      color: var(--primary);
      background: var(--purple-soft);
    }

    .support-mini b {
      display: block;
      margin-bottom: 2px;
      font-size: .9rem;
    }

    .support-mini small {
      color: var(--muted);
      font-size: .77rem;
    }

    .tilt-card {
      transform-style: preserve-3d;
      will-change: transform;
    }

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

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

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

      .process-grid::before {
        display: none;
      }

      .migration-grid,
      .datacenter-layout {
        grid-template-columns: 1fr;
      }

      .migration-copy {
        order: 1;
      }

      .migration-visual {
        order: 2;
      }
    }

    @media (max-width: 620px) {
      .solution-grid,
      .process-grid,
      .migration-points,
      .integration-grid,
      .support-strip {
        grid-template-columns: 1fr;
      }

      .logo-track {
        gap: 42px;
      }

      .solution-card {
        min-height: 300px;
      }

      .migration-visual {
        min-height: 360px;
      }

      .migration-orbit {
        width: 300px;
        height: 300px;
      }

      .map-panel {
        min-height: 330px;
      }
    }

/* ===== Prixhost multi-page navigation and inner pages ===== */
.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  padding: 13px 0;
  border-bottom: 1px solid rgba(223, 229, 242, .9);
  background: rgba(255, 255, 255, .94);
  box-shadow: 0 8px 28px rgba(20, 29, 56, .045);
  backdrop-filter: blur(18px);
}

.nav {
  min-height: 64px;
}

.nav-links {
  gap: 2px;
  color: #171b29;
}

.nav-links > li {
  position: relative;
  display: flex;
  align-items: center;
}

.nav-links > li > a {
  display: block;
  padding: 12px 9px;
  border-radius: 9px;
  font-size: .9rem;
  white-space: nowrap;
}

.nav-links > li > a.active,
.nav-links > li > a:hover {
  color: var(--primary);
  background: #f7f5ff;
}

.dropdown-toggle {
  width: 27px;
  height: 34px;
  display: grid;
  place-items: center;
  margin-left: -7px;
  border: 0;
  color: #171b29;
  background: transparent;
  border-radius: 7px;
}

.dropdown-toggle svg {
  transition: transform .22s ease;
}

.has-dropdown.open .dropdown-toggle svg,
.has-dropdown:hover .dropdown-toggle svg {
  transform: rotate(180deg);
}

.dropdown-menu {
  position: absolute;
  top: calc(100% + 11px);
  left: 0;
  width: 258px;
  padding: 10px;
  border: 1px solid var(--border);
  border-radius: 16px;
  background: rgba(255,255,255,.98);
  box-shadow: 0 22px 55px rgba(27, 37, 75, .16);
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  transition: opacity .2s ease, transform .2s ease, visibility .2s ease;
}

.has-dropdown:hover > .dropdown-menu,
.has-dropdown:focus-within > .dropdown-menu,
.has-dropdown.open > .dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.dropdown-menu a {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 12px;
  border-radius: 11px;
  color: #344054;
}

.dropdown-menu a:hover,
.dropdown-menu a.active {
  color: var(--primary);
  background: #f5f3ff;
}

.dropdown-menu-icon {
  width: 34px;
  height: 34px;
  flex: 0 0 auto;
  display: grid;
  place-items: center;
  border-radius: 10px;
  color: var(--primary);
  background: var(--purple-soft);
  font-size: .75rem;
  font-weight: 900;
}

.dropdown-menu strong {
  display: block;
  color: inherit;
  font-size: .86rem;
  margin-bottom: 2px;
}

.dropdown-menu small {
  display: block;
  color: #7b8498;
  font-size: .7rem;
  line-height: 1.4;
}

.nav-actions .client-button {
  min-height: 50px;
  padding: 0 23px;
  border-radius: 14px;
}

.home-page .hero {
  padding-top: 105px;
}

.inner-page {
  background: #fff;
}

.inner-page main {
  min-height: 55vh;
}

.inner-hero {
  position: relative;
  overflow: hidden;
  padding: 95px 0 88px;
  background:
    radial-gradient(circle at 82% 22%, rgba(104, 71, 245, .17), transparent 31%),
    radial-gradient(circle at 8% 82%, rgba(8, 191, 174, .11), transparent 24%),
    linear-gradient(180deg, #fbfcff, #f3f5ff);
}

.inner-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  opacity: .25;
  background-image:
    linear-gradient(rgba(78,91,140,.12) 1px, transparent 1px),
    linear-gradient(90deg, rgba(78,91,140,.12) 1px, transparent 1px);
  background-size: 52px 52px;
  mask-image: linear-gradient(to bottom, #000, transparent 90%);
}

.inner-hero-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1.02fr .98fr;
  align-items: center;
  gap: 70px;
}

.breadcrumb {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px;
  margin-bottom: 22px;
  color: #737d91;
  font-size: .82rem;
  font-weight: 750;
}

.breadcrumb a:hover {
  color: var(--primary);
}

.inner-hero h1 {
  max-width: 720px;
  font-size: clamp(2.7rem, 5vw, 4.9rem);
  line-height: 1.01;
  letter-spacing: -.06em;
  margin-bottom: 23px;
}

.inner-hero h1 span {
  color: var(--primary);
}

.inner-hero-copy {
  max-width: 650px;
  color: var(--muted);
  font-size: 1.08rem;
  margin-bottom: 31px;
}

.hero-mini-points {
  display: flex;
  flex-wrap: wrap;
  gap: 17px;
  margin-top: 26px;
  color: #4e596f;
  font-size: .86rem;
  font-weight: 800;
}

.hero-mini-points span {
  display: inline-flex;
  align-items: center;
  gap: 7px;
}

.hero-mini-points span::before {
  content: "✓";
  width: 22px;
  height: 22px;
  display: grid;
  place-items: center;
  border-radius: 7px;
  color: #0b8754;
  background: #dcf8ec;
  font-size: .72rem;
}

.inner-visual-card {
  position: relative;
  min-height: 415px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 34px;
  border: 1px solid rgba(255,255,255,.92);
  border-radius: 28px;
  background: rgba(255,255,255,.82);
  box-shadow: 0 28px 70px rgba(48, 59, 112, .17);
  backdrop-filter: blur(18px);
  overflow: hidden;
}

.inner-visual-card::before {
  content: "";
  position: absolute;
  width: 180px;
  height: 180px;
  top: -80px;
  right: -60px;
  border-radius: 50%;
  background: rgba(104,71,245,.13);
}

.visual-title {
  position: relative;
  display: flex;
  align-items: center;
  gap: 13px;
  margin-bottom: 25px;
}

.visual-title-icon {
  width: 52px;
  height: 52px;
  display: grid;
  place-items: center;
  border-radius: 16px;
  color: #fff;
  background: linear-gradient(135deg, var(--primary), #8f78ff);
  box-shadow: 0 12px 26px rgba(104,71,245,.27);
}

.visual-title strong {
  display: block;
  font-size: 1rem;
}

.visual-title small {
  color: var(--muted);
}

.visual-list {
  position: relative;
  display: grid;
  gap: 12px;
}

.visual-list-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 15px;
  padding: 15px 16px;
  border: 1px solid #e7eaf3;
  border-radius: 13px;
  background: #fff;
  color: #4b566b;
  font-size: .84rem;
  box-shadow: 0 6px 16px rgba(34, 45, 80, .045);
}

.visual-list-item b {
  color: var(--text);
}

.status-dot {
  width: 10px;
  height: 10px;
  flex: 0 0 auto;
  border-radius: 50%;
  background: #24c47b;
  box-shadow: 0 0 0 5px rgba(36,196,123,.12);
}

.page-section {
  padding: 94px 0;
}

.page-section.alt {
  background: #f7f9ff;
}

.page-heading {
  max-width: 720px;
  margin: 0 auto 48px;
  text-align: center;
}

.page-heading.left {
  max-width: 620px;
  margin: 0 0 42px;
  text-align: left;
}

.page-heading h2 {
  font-size: clamp(2rem, 4vw, 3.25rem);
  line-height: 1.12;
  letter-spacing: -.045em;
  margin-bottom: 16px;
}

.page-heading p {
  color: var(--muted);
}

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

.content-card {
  padding: 29px;
  border: 1px solid var(--border);
  border-radius: 19px;
  background: #fff;
  box-shadow: 0 8px 24px rgba(41,52,91,.055);
  transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease;
}

.content-card:hover {
  transform: translateY(-7px);
  border-color: rgba(104,71,245,.28);
  box-shadow: var(--shadow-soft);
}

.content-icon {
  width: 53px;
  height: 53px;
  display: grid;
  place-items: center;
  margin-bottom: 19px;
  border-radius: 15px;
  color: var(--primary);
  background: var(--purple-soft);
}

.content-card h3 {
  font-size: 1.15rem;
  margin-bottom: 9px;
}

.content-card p {
  color: var(--muted);
  font-size: .91rem;
}

.product-price-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
  align-items: stretch;
}

.product-plan {
  position: relative;
  display: flex;
  flex-direction: column;
  padding: 32px;
  border: 1px solid var(--border);
  border-radius: 21px;
  background: #fff;
  transition: transform .25s ease, box-shadow .25s ease;
}

.product-plan:hover {
  transform: translateY(-7px);
  box-shadow: var(--shadow);
}

.product-plan.featured {
  color: #fff;
  border-color: transparent;
  background: linear-gradient(155deg, #6545ef, #4025b8);
  box-shadow: 0 22px 48px rgba(76,47,201,.26);
}

.plan-label {
  position: absolute;
  top: 17px;
  right: 17px;
  padding: 6px 9px;
  border-radius: 999px;
  color: var(--primary);
  background: #f0edff;
  font-size: .66rem;
  font-weight: 900;
  letter-spacing: .07em;
  text-transform: uppercase;
}

.featured .plan-label {
  color: #fff;
  background: rgba(255,255,255,.16);
}

.product-plan h3 {
  font-size: 1.22rem;
  margin-bottom: 7px;
}

.product-plan > p {
  min-height: 49px;
  color: var(--muted);
  font-size: .88rem;
}

.featured > p,
.featured .product-features,
.featured .product-price small {
  color: rgba(255,255,255,.74);
}

.product-price {
  margin: 22px 0;
}

.product-price strong {
  font-size: 3.25rem;
  line-height: 1;
  letter-spacing: -.055em;
}

.product-price small {
  color: var(--muted);
  font-weight: 750;
}

.product-plan .btn {
  width: 100%;
  margin-bottom: 24px;
}

.featured .btn {
  color: var(--primary-dark);
  background: #fff;
  box-shadow: none;
}

.product-features {
  display: grid;
  gap: 12px;
  margin-top: auto;
  color: #4d586d;
  list-style: none;
  font-size: .86rem;
}

.product-features li {
  display: flex;
  align-items: center;
  gap: 9px;
}

.product-features li::before {
  content: "✓";
  color: var(--success);
  font-weight: 900;
}

.featured .product-features li::before {
  color: #9dffd7;
}

.split-section {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 72px;
}

.split-copy h2 {
  font-size: clamp(2rem, 4vw, 3.2rem);
  line-height: 1.12;
  letter-spacing: -.045em;
  margin-bottom: 18px;
}

.split-copy > p {
  color: var(--muted);
  margin-bottom: 25px;
}

.check-rows {
  display: grid;
  gap: 13px;
}

.check-row {
  display: flex;
  align-items: flex-start;
  gap: 11px;
  color: #455066;
  font-weight: 700;
  font-size: .91rem;
}

.check-row span {
  width: 25px;
  height: 25px;
  flex: 0 0 auto;
  display: grid;
  place-items: center;
  border-radius: 8px;
  color: var(--success);
  background: #e2f9ef;
  font-size: .75rem;
}

.info-panel {
  padding: 30px;
  border: 1px solid var(--border);
  border-radius: 23px;
  background: #fff;
  box-shadow: var(--shadow);
}

.metric-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 13px;
}

.metric-box {
  padding: 19px;
  border-radius: 14px;
  background: #f6f8fd;
}

.metric-box small {
  display: block;
  color: var(--muted);
  font-size: .74rem;
  margin-bottom: 5px;
}

.metric-box strong {
  font-size: 1.16rem;
}

.search-panel {
  padding: 28px;
  border: 1px solid var(--border);
  border-radius: 21px;
  background: #fff;
  box-shadow: var(--shadow-soft);
}

.large-search-form {
  display: flex;
  gap: 10px;
  padding: 8px;
  border: 1px solid var(--border);
  border-radius: 14px;
  background: #f7f9fd;
}

.large-search-form input,
.form-control,
.form-select,
.form-textarea {
  width: 100%;
  border: 1px solid var(--border);
  border-radius: 11px;
  outline: none;
  color: var(--text);
  background: #fff;
  transition: border-color .2s ease, box-shadow .2s ease;
}

.large-search-form input {
  flex: 1;
  min-width: 0;
  padding: 13px 14px;
  border: 0;
  background: transparent;
}

.form-control,
.form-select,
.form-textarea {
  padding: 13px 14px;
}

.form-control:focus,
.form-select:focus,
.form-textarea:focus {
  border-color: rgba(104,71,245,.55);
  box-shadow: 0 0 0 4px rgba(104,71,245,.09);
}

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

.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.form-group {
  display: grid;
  gap: 7px;
}

.form-group.full {
  grid-column: 1 / -1;
}

.form-group label {
  color: #39445a;
  font-size: .82rem;
  font-weight: 800;
}

.form-message {
  display: none;
  margin-top: 13px;
  padding: 12px 14px;
  border-radius: 10px;
  color: #0c7b4d;
  background: #e4f9ef;
  font-size: .84rem;
  font-weight: 800;
}

.form-message.show {
  display: block;
}

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

.tld-card {
  padding: 24px;
  border: 1px solid var(--border);
  border-radius: 17px;
  background: #fff;
  text-align: center;
  transition: transform .23s ease, box-shadow .23s ease;
}

.tld-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-soft);
}

.tld-card strong {
  display: block;
  color: var(--primary);
  font-size: 1.5rem;
  margin-bottom: 5px;
}

.tld-card span {
  color: var(--muted);
  font-size: .82rem;
}

.config-table-wrap {
  border: 1px solid var(--border);
  border-radius: 19px;
  overflow-x: auto;
  background: #fff;
  box-shadow: var(--shadow-soft);
}

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

.config-table th,
.config-table td {
  padding: 17px 19px;
  border-bottom: 1px solid #e9edf5;
  text-align: left;
  font-size: .86rem;
}

.config-table th {
  color: #667085;
  background: #f7f9fd;
  font-size: .75rem;
  letter-spacing: .06em;
  text-transform: uppercase;
}

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

.config-table td:first-child {
  color: var(--text);
  font-weight: 850;
}

.config-table .btn {
  min-height: 40px;
  padding: 0 15px;
  font-size: .79rem;
}

.about-stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}

.about-stat {
  padding: 27px;
  border: 1px solid var(--border);
  border-radius: 17px;
  background: #fff;
  text-align: center;
}

.about-stat strong {
  display: block;
  color: var(--primary);
  font-size: 2.1rem;
  line-height: 1;
  margin-bottom: 9px;
}

.about-stat span {
  color: var(--muted);
  font-size: .82rem;
}

.timeline {
  max-width: 840px;
  margin: 0 auto;
  display: grid;
  gap: 18px;
}

.timeline-item {
  display: grid;
  grid-template-columns: 100px 1fr;
  gap: 22px;
  padding: 24px;
  border: 1px solid var(--border);
  border-radius: 17px;
  background: #fff;
}

.timeline-year {
  color: var(--primary);
  font-size: 1.25rem;
  font-weight: 900;
}

.timeline-item p {
  color: var(--muted);
  font-size: .9rem;
  margin-top: 5px;
}

.contact-layout {
  display: grid;
  grid-template-columns: .75fr 1.25fr;
  gap: 34px;
}

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

.contact-item {
  display: flex;
  gap: 14px;
  padding: 20px;
  border: 1px solid var(--border);
  border-radius: 15px;
  background: #fff;
}

.contact-item-icon {
  width: 43px;
  height: 43px;
  flex: 0 0 auto;
  display: grid;
  place-items: center;
  border-radius: 12px;
  color: var(--primary);
  background: var(--purple-soft);
}

.contact-item b {
  display: block;
  margin-bottom: 4px;
}

.contact-item p,
.contact-item a {
  color: var(--muted);
  font-size: .84rem;
}

.login-shell {
  min-height: calc(100vh - 180px);
  display: grid;
  grid-template-columns: 1fr 1fr;
  background: #f7f9ff;
}

.login-side {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 70px max(40px, 8vw);
  color: #fff;
  background:
    radial-gradient(circle at 20% 20%, rgba(68,217,255,.18), transparent 28%),
    linear-gradient(145deg, #111a3b, #3922a7);
  overflow: hidden;
}

.login-side h1 {
  max-width: 580px;
  font-size: clamp(2.5rem, 5vw, 4.6rem);
  line-height: 1.02;
  letter-spacing: -.055em;
  margin-bottom: 20px;
}

.login-side p {
  max-width: 560px;
  color: rgba(255,255,255,.7);
}

.login-benefits {
  display: grid;
  gap: 13px;
  margin-top: 31px;
  list-style: none;
  color: rgba(255,255,255,.85);
  font-size: .9rem;
  font-weight: 750;
}

.login-benefits li::before {
  content: "✓";
  margin-right: 10px;
  color: #8fffd7;
}

.login-form-side {
  display: grid;
  place-items: center;
  padding: 50px 25px;
}

.login-card {
  width: min(100%, 470px);
  padding: 36px;
  border: 1px solid var(--border);
  border-radius: 22px;
  background: #fff;
  box-shadow: var(--shadow);
}

.login-card h2 {
  font-size: 1.9rem;
  margin-bottom: 7px;
}

.login-card > p {
  color: var(--muted);
  font-size: .9rem;
  margin-bottom: 24px;
}

.login-card .form-group {
  margin-bottom: 14px;
}

.login-card .btn {
  width: 100%;
  margin-top: 8px;
}

.form-meta {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  margin: 14px 0;
  color: var(--muted);
  font-size: .78rem;
}

.form-meta a {
  color: var(--primary);
  font-weight: 800;
}

.inner-cta {
  padding: 0 0 90px;
}

.inner-cta-box {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
  padding: 46px;
  border-radius: 24px;
  color: #fff;
  background: linear-gradient(135deg, #6545ef, #3620a8);
  box-shadow: 0 22px 50px rgba(65,39,178,.22);
}

.inner-cta-box h2 {
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  line-height: 1.1;
  letter-spacing: -.04em;
  margin-bottom: 9px;
}

.inner-cta-box p {
  color: rgba(255,255,255,.72);
}

.inner-cta-box .btn {
  flex: 0 0 auto;
  color: var(--primary-dark);
  background: #fff;
  box-shadow: none;
}

.footer-col a.active {
  color: #fff;
}

@media (max-width: 1120px) {
  .menu-btn {
    display: grid;
    place-items: center;
  }

  .nav-actions .login-link,
  .nav-actions .client-button {
    display: none;
  }

  .nav-links {
    position: fixed;
    inset: 86px 20px auto;
    max-height: calc(100vh - 110px);
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 14px;
    border: 1px solid var(--border);
    border-radius: 18px;
    background: #fff;
    box-shadow: var(--shadow);
    overflow-y: auto;
  }

  .nav-links.active {
    display: flex;
  }

  .nav-links > li {
    display: grid;
    grid-template-columns: 1fr auto;
    border-bottom: 1px solid #edf0f6;
  }

  .nav-links > li:last-child {
    border-bottom: 0;
  }

  .nav-links > li > a {
    padding: 13px 11px;
  }

  .dropdown-toggle {
    width: 46px;
    height: 46px;
    margin: 2px;
  }

  .dropdown-menu {
    position: static;
    grid-column: 1 / -1;
    width: auto;
    max-height: 0;
    padding: 0 8px;
    border: 0;
    border-radius: 0;
    box-shadow: none;
    opacity: 1;
    visibility: visible;
    transform: none;
    overflow: hidden;
    transition: max-height .27s ease, padding .27s ease;
  }

  .has-dropdown:hover > .dropdown-menu,
  .has-dropdown:focus-within > .dropdown-menu {
    max-height: 0;
    padding: 0 8px;
  }

  .has-dropdown.open > .dropdown-menu,
  .has-dropdown.open:hover > .dropdown-menu,
  .has-dropdown.open:focus-within > .dropdown-menu {
    max-height: 430px;
    padding: 4px 8px 12px;
  }
}

@media (max-width: 900px) {
  .inner-hero-grid,
  .split-section,
  .contact-layout,
  .login-shell {
    grid-template-columns: 1fr;
  }

  .inner-visual-card {
    min-height: auto;
  }

  .service-grid,
  .content-card-grid,
  .product-price-grid {
    grid-template-columns: 1fr 1fr;
  }

  .product-plan:last-child {
    grid-column: 1 / -1;
    width: min(100%, 560px);
    justify-self: center;
  }

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

  .login-side {
    min-height: 430px;
  }
}

@media (max-width: 620px) {
  .home-page .hero {
    padding-top: 80px;
  }

  .inner-hero {
    padding: 72px 0 68px;
  }

  .inner-hero h1 {
    font-size: clamp(2.45rem, 13vw, 3.6rem);
  }

  .page-section {
    padding: 72px 0;
  }

  .service-grid,
  .content-card-grid,
  .product-price-grid,
  .tld-grid,
  .about-stats,
  .metric-grid,
  .form-grid {
    grid-template-columns: 1fr;
  }

  .product-plan:last-child {
    grid-column: auto;
    width: auto;
  }

  .large-search-form {
    flex-direction: column;
  }

  .large-search-form .btn {
    width: 100%;
  }

  .form-group.full {
    grid-column: auto;
  }

  .timeline-item {
    grid-template-columns: 1fr;
    gap: 8px;
  }

  .inner-cta-box {
    align-items: flex-start;
    flex-direction: column;
    padding: 34px 25px;
  }

  .inner-cta-box .btn {
    width: 100%;
  }

  .login-card {
    padding: 27px 22px;
  }
}
