  /* gortsIN landing — professional Armenian UI */

  :root {
    --bg-deep: #0a0e17;
    --bg-card: rgba(18, 24, 38, 0.72);
    --bg-card-hover: rgba(26, 34, 54, 0.85);
    --border: rgba(100, 120, 180, 0.18);
    --text: #e8ecf4;
    --text-muted: #8b95a8;
    --accent: #3d8bfd;
    --accent-2: #7c5cff;
    --accent-glow: rgba(61, 139, 253, 0.35);
    --whatsapp: #25d366;
    --whatsapp-hover: #20bd5a;
    --radius: 16px;
    --radius-sm: 10px;
    --font: "Noto Sans Armenian", "Segoe UI", system-ui, sans-serif;
    --ease: cubic-bezier(0.22, 1, 0.36, 1);
  }

  *,
  *::before,
  *::after {
    box-sizing: border-box;
  }

  html {
    scroll-behavior: smooth;
  }

  body {
    margin: 0;
    font-family: var(--font);
    background: var(--bg-deep);
    color: var(--text);
    line-height: 1.65;
    overflow-x: hidden;
  }

  /* Animated mesh background */
  .bg-mesh {
    position: fixed;
    inset: 0;
    z-index: -2;
    background:
      radial-gradient(ellipse 80% 50% at 20% -10%, rgba(61, 139, 253, 0.22), transparent 50%),
      radial-gradient(ellipse 60% 40% at 90% 60%, rgba(124, 92, 255, 0.18), transparent 45%),
      radial-gradient(ellipse 50% 30% at 40% 100%, rgba(61, 139, 253, 0.12), transparent 40%),
      var(--bg-deep);
  }

  .bg-grid {
    position: fixed;
    inset: 0;
    z-index: -1;
    background-image:
      linear-gradient(rgba(255, 255, 255, 0.03) 1px, transparent 1px),
      linear-gradient(90deg, rgba(255, 255, 255, 0.03) 1px, transparent 1px);
    background-size: 64px 64px;
    mask-image: radial-gradient(ellipse 70% 70% at 50% 30%, black, transparent);
    pointer-events: none;
  }

  .orbs {
    position: fixed;
    inset: 0;
    z-index: -1;
    pointer-events: none;
    overflow: hidden;
  }

  .orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    opacity: 0.45;
    animation: float-orb 18s var(--ease) infinite;
  }

  .orb-1 {
    width: 420px;
    height: 420px;
    background: var(--accent);
    top: -120px;
    right: -80px;
    animation-delay: 0s;
  }

  .orb-2 {
    width: 320px;
    height: 320px;
    background: var(--accent-2);
    bottom: 10%;
    left: -100px;
    animation-delay: -6s;
  }

  .orb-3 {
    width: 240px;
    height: 240px;
    background: #2dd4bf;
    top: 45%;
    right: 15%;
    opacity: 0.25;
    animation-delay: -12s;
  }

  @keyframes float-orb {
    0%,
    100% {
      transform: translate(0, 0) scale(1);
    }
    33% {
      transform: translate(30px, -20px) scale(1.05);
    }
    66% {
      transform: translate(-20px, 15px) scale(0.95);
    }
  }

  .container {
    width: min(1120px, 92vw);
    margin-inline: auto;
    padding-inline: 1rem;
  }

  /* Header */
  .site-header {
    position: sticky;
    top: 0;
    z-index: 100;
    padding: 1rem 0;
    backdrop-filter: blur(16px);
    background: rgba(10, 14, 23, 0.75);
    border-bottom: 1px solid var(--border);
    transition: padding 0.3s var(--ease), background 0.3s;
  }

  .site-header.scrolled {
    padding: 0.65rem 0;
    background: rgba(10, 14, 23, 0.92);
  }

  .header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1.5rem;
  }

  .logo-link {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    text-decoration: none;
    color: var(--text);
  }

  .logo-img {
    height: 44px;
    width: auto;
    max-width: 160px;
    object-fit: contain;
    display: block;
  }

  .logo-img.is-placeholder {
    display: none;
  }

  .logo-fallback {
    display: flex;
    align-items: center;
    justify-content: center;
    min-width: 44px;
    height: 44px;
    padding: 0 0.75rem;
    background: linear-gradient(135deg, var(--accent), var(--accent-2));
    border-radius: var(--radius-sm);
    font-weight: 700;
    font-size: 0.95rem;
    letter-spacing: -0.02em;
  }

  .logo-link.has-image .logo-fallback {
    display: none;
  }

  .logo-link.has-image .logo-img.is-placeholder {
    display: block;
  }

  .brand-name {
    font-weight: 700;
    font-size: 1.15rem;
    letter-spacing: 0.02em;
  }

  .nav-desktop {
    display: flex;
    align-items: center;
    gap: 0.35rem;
  }

  .nav-desktop a {
    color: var(--text-muted);
    text-decoration: none;
    padding: 0.5rem 0.85rem;
    border-radius: 8px;
    font-size: 0.9rem;
    transition: color 0.2s, background 0.2s;
  }

  .nav-desktop a:hover {
    color: var(--text);
    background: rgba(255, 255, 255, 0.06);
  }

  .nav-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    padding: 0.5rem;
    background: transparent;
    border: 1px solid var(--border);
    border-radius: 8px;
    cursor: pointer;
    color: var(--text);
  }

  .nav-toggle span {
    display: block;
    width: 22px;
    height: 2px;
    background: currentColor;
    transition: transform 0.25s, opacity 0.25s;
  }

  .nav-toggle[aria-expanded="true"] span:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
  }

  .nav-toggle[aria-expanded="true"] span:nth-child(2) {
    opacity: 0;
  }

  .nav-toggle[aria-expanded="true"] span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
  }

  .nav-mobile {
    display: none;
    flex-direction: column;
    gap: 0.25rem;
    padding: 1rem 0 0;
    border-top: 1px solid var(--border);
    margin-top: 1rem;
  }

  .nav-mobile.open {
    display: flex;
  }

  .nav-mobile a {
    color: var(--text);
    text-decoration: none;
    padding: 0.65rem 0.75rem;
    border-radius: 8px;
    font-size: 0.95rem;
  }

  .nav-mobile a:hover {
    background: rgba(255, 255, 255, 0.06);
  }

  @media (max-width: 900px) {
    .nav-desktop {
      display: none;
    }

    .nav-toggle {
      display: flex;
    }
  }

  /* Hero */
  .hero {
    padding: clamp(3rem, 10vw, 6rem) 0 clamp(4rem, 12vw, 7rem);
    text-align: center;
  }

  .hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.4rem 1rem;
    background: rgba(61, 139, 253, 0.12);
    border: 1px solid rgba(61, 139, 253, 0.28);
    border-radius: 999px;
    font-size: 0.8rem;
    color: #9ec5ff;
    margin-bottom: 1.5rem;
    animation: fade-up 0.8s var(--ease) backwards;
  }

  .hero h1 {
    margin: 0 0 1rem;
    font-size: clamp(1.85rem, 5vw, 2.85rem);
    font-weight: 700;
    line-height: 1.2;
    letter-spacing: -0.02em;
    animation: fade-up 0.8s var(--ease) 0.08s backwards;
  }

  .hero h1 .highlight {
    background: linear-gradient(120deg, var(--accent), #5eead4, var(--accent-2));
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
  }

  .hero-lead {
    max-width: 36rem;
    margin: 0 auto 2rem;
    color: var(--text-muted);
    font-size: 1.05rem;
    animation: fade-up 0.8s var(--ease) 0.16s backwards;
  }

  @keyframes fade-up {
    from {
      opacity: 0;
      transform: translateY(20px);
    }
    to {
      opacity: 1;
      transform: translateY(0);
    }
  }

  /* Slogan block */
  .slogan-block {
    position: relative;
    max-width: 720px;
    margin: 0 auto 2.5rem;
    padding: clamp(1.5rem, 4vw, 2.25rem) clamp(1.5rem, 4vw, 2.5rem);
    background: linear-gradient(135deg, rgba(61, 139, 253, 0.15), rgba(124, 92, 255, 0.12));
    border: 1px solid rgba(124, 92, 255, 0.25);
    border-radius: var(--radius);
    overflow: hidden;
    animation: fade-up 0.8s var(--ease) 0.24s backwards;
  }

  .slogan-block::before {
    content: "";
    position: absolute;
    inset: -50%;
    background: conic-gradient(from 180deg at 50% 50%, transparent, rgba(61, 139, 253, 0.08), transparent 40%);
    animation: spin-slow 14s linear infinite;
    pointer-events: none;
  }

  .slogan-block-inner {
    position: relative;
    z-index: 1;
  }

  .slogan-block p {
    margin: 0;
    font-size: clamp(1.15rem, 3.2vw, 1.55rem);
    font-weight: 600;
    line-height: 1.45;
    letter-spacing: 0.01em;
  }

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

  .hero-cta {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    animation: fade-up 0.8s var(--ease) 0.32s backwards;
  }

  .btn-wa {
    display: inline-flex;
    align-items: center;
    gap: 0.65rem;
    padding: 0.85rem 1.5rem;
    background: var(--whatsapp);
    color: #fff;
    font-weight: 600;
    font-size: 1rem;
    text-decoration: none;
    border-radius: 12px;
    border: none;
    cursor: pointer;
    transition: transform 0.2s var(--ease), box-shadow 0.2s, background 0.2s;
    box-shadow: 0 8px 28px rgba(37, 211, 102, 0.35);
  }

  .btn-wa:hover {
    background: var(--whatsapp-hover);
    transform: translateY(-2px);
    box-shadow: 0 12px 36px rgba(37, 211, 102, 0.45);
  }

  .btn-wa:active {
    transform: translateY(0);
  }

  .btn-wa svg {
    flex-shrink: 0;
  }

  .btn-ghost {
    display: inline-flex;
    align-items: center;
    padding: 0.85rem 1.35rem;
    color: var(--text-muted);
    text-decoration: none;
    font-weight: 500;
    font-size: 0.95rem;
    border-radius: 12px;
    border: 1px solid var(--border);
    transition: color 0.2s, border-color 0.2s, background 0.2s;
  }

  .btn-ghost:hover {
    color: var(--text);
    border-color: rgba(255, 255, 255, 0.2);
    background: rgba(255, 255, 255, 0.04);
  }

  /* Sections */
  section {
    padding: clamp(3rem, 8vw, 5rem) 0;
  }

  .section-label {
    display: block;
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--accent);
    margin-bottom: 0.65rem;
  }

  section h2 {
    margin: 0 0 1rem;
    font-size: clamp(1.5rem, 3.5vw, 2rem);
    font-weight: 700;
    letter-spacing: -0.02em;
  }

  .section-intro {
    max-width: 42rem;
    color: var(--text-muted);
    margin-bottom: 2rem;
  }

  /* Reveal on scroll */
  .reveal {
    opacity: 0;
    transform: translateY(28px);
    transition: opacity 0.7s var(--ease), transform 0.7s var(--ease);
  }

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

  /* Cards grid */
  .cards-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1.25rem;
  }

  .card {
    padding: 1.5rem 1.5rem 1.65rem;
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    backdrop-filter: blur(12px);
    transition: transform 0.35s var(--ease), border-color 0.35s, background 0.35s, box-shadow 0.35s;
  }

  .card:hover {
    transform: translateY(-4px);
    border-color: rgba(61, 139, 253, 0.35);
    background: var(--bg-card-hover);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.35);
  }

  .card-icon {
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: var(--radius-sm);
    background: linear-gradient(135deg, rgba(61, 139, 253, 0.25), rgba(124, 92, 255, 0.2));
    font-size: 1.25rem;
    margin-bottom: 1rem;
  }

  .card h3 {
    margin: 0 0 0.6rem;
    font-size: 1.1rem;
    font-weight: 600;
  }

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

  /* Stats */
  .stats-section {
    border-block: 1px solid var(--border);
    background: rgba(0, 0, 0, 0.2);
  }

  .stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    text-align: center;
  }

  .stat-item {
    padding: 1rem;
  }

  .stat-value {
    font-size: clamp(2rem, 5vw, 2.75rem);
    font-weight: 700;
    line-height: 1.1;
    font-variant-numeric: tabular-nums;
  }

  .stat-number {
    background: linear-gradient(120deg, var(--text), var(--accent));
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
  }

  .stat-suffix {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--accent);
  }

  .stat-label {
    margin-top: 0.5rem;
    color: var(--text-muted);
    font-size: 0.9rem;
    max-width: 14rem;
    margin-inline: auto;
  }

  /* What you get list */
  .get-list {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 0.85rem;
  }

  .get-list li {
    display: flex;
    align-items: flex-start;
    gap: 0.85rem;
    padding: 1rem 1.15rem;
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius-sm);
    transition: border-color 0.25s, transform 0.25s var(--ease);
  }

  .get-list li:hover {
    border-color: rgba(61, 139, 253, 0.3);
    transform: translateX(4px);
  }

  .get-list .get-icon {
    flex-shrink: 0;
    width: 44px;
    height: 44px;
    border-radius: var(--radius-sm);
    background: linear-gradient(135deg, rgba(61, 139, 253, 0.22), rgba(124, 92, 255, 0.18));
    border: 1px solid rgba(61, 139, 253, 0.2);
    color: #9ec5ff;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 0.05rem;
    transition: color 0.25s, border-color 0.25s, background 0.25s, transform 0.25s var(--ease);
  }

  .get-list li:hover .get-icon {
    color: #c4d9ff;
    border-color: rgba(61, 139, 253, 0.4);
    background: linear-gradient(135deg, rgba(61, 139, 253, 0.32), rgba(124, 92, 255, 0.24));
    transform: scale(1.04);
  }

  .get-list .get-icon svg {
    width: 22px;
    height: 22px;
  }

  /* Pricing */
  .pricing-section {
    border-block: 1px solid var(--border);
    background: rgba(0, 0, 0, 0.15);
  }

  .pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 1.25rem;
    align-items: stretch;
  }

  .pricing-card {
    position: relative;
    display: flex;
    flex-direction: column;
    padding: 1.65rem 1.5rem 1.5rem;
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    backdrop-filter: blur(12px);
    transition: transform 0.35s var(--ease), border-color 0.35s, box-shadow 0.35s;
  }

  .pricing-card:hover {
    transform: translateY(-4px);
    border-color: rgba(61, 139, 253, 0.35);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.35);
  }

  .pricing-card-featured {
    border-color: rgba(61, 139, 253, 0.45);
    background: linear-gradient(165deg, rgba(61, 139, 253, 0.12), var(--bg-card));
    box-shadow: 0 0 0 1px rgba(61, 139, 253, 0.15);
  }

  .pricing-badge {
    position: absolute;
    top: 1rem;
    right: 1rem;
    padding: 0.25rem 0.6rem;
    font-size: 0.7rem;
    font-weight: 600;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    color: #0a0e17;
    background: linear-gradient(120deg, var(--accent), #5eead4);
    border-radius: 999px;
  }

  .pricing-name {
    margin: 0 0 0.75rem;
    font-size: 1.25rem;
    font-weight: 700;
    letter-spacing: -0.02em;
  }

  .pricing-card-featured .pricing-name {
    padding-right: 5.5rem;
  }

  .pricing-users {
    margin: 0 0 0.5rem;
    font-size: 0.95rem;
    color: var(--text-muted);
  }

  .pricing-users strong {
    color: var(--text);
    font-weight: 600;
  }

  .pricing-storage {
    margin: 0 0 0.85rem;
    font-size: 0.95rem;
    color: var(--text-muted);
  }

  .pricing-include-list {
    margin: 0 0 1.15rem;
    padding: 0 0 0 1.1rem;
    font-size: 0.85rem;
    color: var(--text-muted);
    line-height: 1.55;
  }

  .pricing-include-list li {
    margin-bottom: 0.35rem;
  }

  .pricing-include-list li::marker {
    color: var(--accent);
  }

  .pricing-amount {
    display: flex;
    align-items: baseline;
    gap: 0.5rem;
    flex-wrap: wrap;
    margin-bottom: 0.5rem;
  }

  .pricing-price {
    font-size: clamp(1.65rem, 4vw, 2rem);
    font-weight: 700;
    font-variant-numeric: tabular-nums;
    background: linear-gradient(120deg, var(--text), var(--accent));
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
  }

  .pricing-period {
    font-size: 0.95rem;
    color: var(--text-muted);
  }

  .pricing-yearly {
    margin: 0 0 1.35rem;
    font-size: 0.9rem;
    color: var(--text-muted);
  }

  .pricing-yearly strong {
    color: #9ec5ff;
    font-weight: 600;
  }

  .pricing-cta {
    margin-top: auto;
    justify-content: center;
    text-align: center;
    font-size: 0.95rem;
  }

  .pricing-extra {
    margin: 2rem 0 0;
    padding: 1rem 1.15rem;
    font-size: 0.92rem;
    color: var(--text-muted);
    text-align: center;
    background: rgba(61, 139, 253, 0.08);
    border: 1px solid rgba(61, 139, 253, 0.2);
    border-radius: var(--radius-sm);
  }

  .pricing-extra strong {
    color: var(--text);
  }

  @media (max-width: 600px) {
    .pricing-card-featured .pricing-name {
      padding-right: 0;
      padding-top: 1.75rem;
    }

    .pricing-badge {
      top: 0.85rem;
      right: 0.85rem;
    }
  }

  /* Footer CTA */
  .footer-cta {
    text-align: center;
    padding: clamp(3rem, 8vw, 4.5rem) 0;
  }

  .footer-cta .slogan-block {
    margin-bottom: 1.75rem;
  }

  .site-footer {
    padding: 1.5rem 0 2rem;
    border-top: 1px solid var(--border);
    text-align: center;
    color: var(--text-muted);
    font-size: 0.85rem;
  }

  .site-footer a {
    color: var(--accent);
    text-decoration: none;
  }

  .site-footer a:hover {
    text-decoration: underline;
  }

  /* Reduced motion */
  @media (prefers-reduced-motion: reduce) {
    html {
      scroll-behavior: auto;
    }

    .orb,
    .slogan-block::before,
    .reveal {
      animation: none;
      transition: none;
    }

    .reveal {
      opacity: 1;
      transform: none;
    }
  }
