
  :root {
    --bg: #050508;
    --bg2: #0c0c14;
    --bg3: #12121e;
    --surface: rgba(255,255,255,0.08);
    --surface2: rgba(255,255,255,0.07);
    --border: rgba(255,255,255,0.08);
    --border2: rgba(255,255,255,0.15);
    --text: #f0f0f8;
    --text2: #8888aa;
    --text3: #555570;
    --accent: #7c6ef7;
    --accent2: #a855f7;
    --accent3: #06d6a0;
    --accent4: #f72585;
    --glow: rgba(124,110,247,0.15);
    --glow2: rgba(6,214,160,0.1);
  }
  * { margin:0; padding:0; box-sizing:border-box; }
  html { scroll-behavior: smooth; }
  body {
    background: var(--bg);
    color: var(--text);
    font-family: 'Space Grotesk', sans-serif;
    overflow-x: hidden;
  }

  /* Background grid */
  body::before {
    content: '';
    position: fixed; inset: 0;
    background-image:
      linear-gradient(rgba(124,110,247,0.03) 1px, transparent 1px),
      linear-gradient(90deg, rgba(124,110,247,0.03) 1px, transparent 1px);
    background-size: 60px 60px;
    z-index: 0; pointer-events: none;
  }

  /* Orbs */
  .orb {
    position: fixed; border-radius: 50%;
    filter: blur(80px); pointer-events: none; z-index: 0;
  }
  .orb1 { width: 600px; height: 600px; background: rgba(124,110,247,0.08); top: -200px; right: -200px; }
  .orb2 { width: 400px; height: 400px; background: rgba(6,214,160,0.06); bottom: 10%; left: -150px; }
  .orb3 { width: 300px; height: 300px; background: rgba(247,37,133,0.05); top: 50%; right: 10%; }

  /* Nav */
  nav {
    position: fixed; top: 0; left: 0; right: 0;
    z-index: 100;
    display: flex; align-items: center; justify-content: space-between;
    padding: 20px 80px;
    background: rgba(5,5,8,0.7);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--border);
  }
  .logo {
    font-family: 'Syne', sans-serif;
    font-weight: 800; font-size: 18px;
    letter-spacing: -0.5px;
    background: linear-gradient(135deg, #fff 0%, var(--accent) 100%);
    -webkit-background-clip: text; -webkit-text-fill-color: transparent;
  }
  .nav-links { display: flex; gap: 32px; align-items: center; }
  .nav-links a {
    color: var(--text2); text-decoration: none;
    font-size: 13px; font-weight: 500; letter-spacing: 0.5px;
    text-transform: uppercase;
    transition: color 0.2s;
  }
  .nav-links a:hover { color: var(--text); }
  .lang-switch {
    display: flex; gap: 4px;
    background: var(--surface); border-radius: 8px; padding: 4px;
    border: 1px solid var(--border);
  }
  .lang-btn {
    background: none; border: none; color: var(--text3);
    font-size: 11px; font-weight: 600; padding: 4px 10px;
    border-radius: 5px; cursor: pointer; transition: all 0.2s;
    font-family: 'Space Grotesk', sans-serif; letter-spacing: 0.5px;
  }
  .lang-btn.active { background: var(--accent); color: #fff; }
  .nav-cta {
    background: var(--accent); color: #fff;
    border: none; padding: 10px 22px; border-radius: 8px;
    font-size: 13px; font-weight: 600; cursor: pointer;
    font-family: 'Space Grotesk', sans-serif;
    transition: all 0.25s; letter-spacing: 0.3px;
    position: relative; overflow: hidden;
  }
  .nav-cta::before {
    content: ''; position: absolute; inset: 0;
    background: linear-gradient(135deg, transparent, rgba(255,255,255,0.1));
    opacity: 0; transition: opacity 0.2s;
  }
  .nav-cta:hover { transform: translateY(-2px); box-shadow: 0 8px 30px rgba(124,110,247,0.4); }
  .nav-cta:hover::before { opacity: 1; }
  .nav-pricing {
    color: var(--text2); text-decoration: none;
    font-size: 13px; font-weight: 600;
    padding: 8px 14px; border-radius: 8px;
    border: 1px solid var(--border2);
    background: var(--surface);
    transition: all 0.2s;
    font-family: 'Space Grotesk', sans-serif;
    letter-spacing: 0.3px;
  }
  .nav-pricing:hover {
    color: var(--text); border-color: var(--accent);
    background: rgba(124,110,247,0.12);
  }

  /* Pricing */
  .pricing-wrap { display: flex; flex-direction: column; gap: 56px; margin-top: 8px; }
  .pricing-block-title {
    font-family: 'Syne', sans-serif;
    font-size: clamp(20px, 2.4vw, 28px);
    font-weight: 700; letter-spacing: -0.5px;
    margin-bottom: 20px; color: var(--text);
  }
  .pricing-table {
    width: 100%;
    border-collapse: separate; border-spacing: 0;
    background: rgba(255,255,255,0.03);
    border: 1px solid var(--border);
    border-radius: 16px;
    overflow: hidden;
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    font-size: 14px;
  }
  .pricing-table thead th {
    background: rgba(124,110,247,0.08);
    color: var(--text);
    font-family: 'Syne', sans-serif;
    font-weight: 700;
    text-align: left;
    padding: 18px 20px;
    font-size: 13px;
    letter-spacing: 0.3px;
    border-bottom: 1px solid var(--border2);
    vertical-align: top;
  }
  .pricing-table thead th .col-foot {
    display: block;
    font-family: 'Space Grotesk', sans-serif;
    font-weight: 400;
    font-size: 11px;
    color: var(--text3);
    margin-top: 6px;
    line-height: 1.4;
    letter-spacing: 0.1px;
    max-width: 240px;
  }
  .pricing-table tbody td {
    padding: 16px 20px;
    color: var(--text2);
    border-bottom: 1px solid var(--border);
    vertical-align: top;
    line-height: 1.5;
  }
  .pricing-table tbody tr:last-child td { border-bottom: none; }
  .pricing-table tbody tr:hover td { background: rgba(255,255,255,0.025); }
  .pricing-table .pkg {
    color: var(--text);
    font-weight: 600;
    font-family: 'Syne', sans-serif;
    letter-spacing: 0.2px;
  }
  .pricing-table .price-intro {
    color: var(--accent3);
    font-weight: 600;
    white-space: nowrap;
  }
  .pricing-table .price-std {
    color: var(--text);
    font-weight: 500;
    white-space: nowrap;
  }
  .pricing-table .price-month {
    color: var(--accent);
    font-weight: 600;
    white-space: nowrap;
  }
  .pricing-table .price-year {
    color: var(--text);
    font-weight: 500;
    white-space: nowrap;
  }
  .pricing-table .delivery, .pricing-table .hours {
    color: var(--text2);
    white-space: nowrap;
  }
  .pricing-scroll { width: 100%; overflow-x: auto; -webkit-overflow-scrolling: touch; }

  /* Automation */
  .automation-sub {
    font-size: 18px; line-height: 1.65; color: var(--text2);
    max-width: 760px; margin-bottom: 56px;
  }
  .auto-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 20px;
    margin-bottom: 56px;
  }
  .auto-card {
    position: relative;
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: 16px;
    padding: 28px 24px;
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    box-shadow: 0 8px 32px rgba(0,0,0,0.3), inset 0 1px 0 rgba(255,255,255,0.08);
    transition: transform 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease;
    display: flex; flex-direction: column; gap: 16px;
  }
  .auto-card:hover {
    transform: translateY(-4px);
    border-color: rgba(255,255,255,0.2);
  }
  .auto-card.auto-1 { background: linear-gradient(135deg, rgba(124,110,247,0.08) 0%, rgba(255,255,255,0.03) 100%); }
  .auto-card.auto-2 { background: linear-gradient(135deg, rgba(6,214,160,0.08) 0%, rgba(255,255,255,0.03) 100%); }
  .auto-card.auto-3 { background: linear-gradient(135deg, rgba(247,37,133,0.08) 0%, rgba(255,255,255,0.03) 100%); }
  .auto-card.auto-4 { background: linear-gradient(135deg, rgba(168,85,247,0.08) 0%, rgba(255,255,255,0.03) 100%); }
  .auto-card.auto-5 { background: linear-gradient(135deg, rgba(56,189,248,0.08) 0%, rgba(255,255,255,0.03) 100%); }
  .auto-card.auto-6 { background: linear-gradient(135deg, rgba(251,191,36,0.08) 0%, rgba(255,255,255,0.03) 100%); }
  .auto-card.auto-1:hover { box-shadow: 0 8px 40px rgba(0,0,0,0.3), 0 0 30px rgba(124,110,247,0.2), inset 0 1px 0 rgba(255,255,255,0.12); }
  .auto-card.auto-2:hover { box-shadow: 0 8px 40px rgba(0,0,0,0.3), 0 0 30px rgba(6,214,160,0.2), inset 0 1px 0 rgba(255,255,255,0.12); }
  .auto-card.auto-3:hover { box-shadow: 0 8px 40px rgba(0,0,0,0.3), 0 0 30px rgba(247,37,133,0.2), inset 0 1px 0 rgba(255,255,255,0.12); }
  .auto-card.auto-4:hover { box-shadow: 0 8px 40px rgba(0,0,0,0.3), 0 0 30px rgba(168,85,247,0.2), inset 0 1px 0 rgba(255,255,255,0.12); }
  .auto-card.auto-5:hover { box-shadow: 0 8px 40px rgba(0,0,0,0.3), 0 0 30px rgba(56,189,248,0.2), inset 0 1px 0 rgba(255,255,255,0.12); }
  .auto-card.auto-6:hover { box-shadow: 0 8px 40px rgba(0,0,0,0.3), 0 0 30px rgba(251,191,36,0.2), inset 0 1px 0 rgba(255,255,255,0.12); }
  .auto-icon {
    width: 48px; height: 48px;
    border-radius: 12px;
    display: flex; align-items: center; justify-content: center;
    font-size: 22px;
  }
  .auto-card.auto-1 .auto-icon { background: rgba(124,110,247,0.15); color: #7c6ef7; }
  .auto-card.auto-2 .auto-icon { background: rgba(6,214,160,0.15); color: #06d6a0; }
  .auto-card.auto-3 .auto-icon { background: rgba(247,37,133,0.15); color: #f72585; }
  .auto-card.auto-4 .auto-icon { background: rgba(168,85,247,0.15); color: #a855f7; }
  .auto-card.auto-5 .auto-icon { background: rgba(56,189,248,0.15); color: #38bdf8; }
  .auto-card.auto-6 .auto-icon { background: rgba(251,191,36,0.15); color: #fbbf24; }
  .auto-card.auto-featured {
    grid-column: 1 / -1;
    background: linear-gradient(135deg, rgba(124,110,247,0.14) 0%, rgba(167,139,250,0.06) 100%);
    border-color: rgba(124,110,247,0.35);
    flex-direction: row; align-items: center; gap: 28px; padding: 28px 32px;
  }
  .auto-card.auto-featured:hover {
    box-shadow: 0 8px 40px rgba(0,0,0,0.3), 0 0 40px rgba(124,110,247,0.25), inset 0 1px 0 rgba(255,255,255,0.12);
    border-color: rgba(124,110,247,0.6);
  }
  .auto-card.auto-featured .auto-icon { background: rgba(124,110,247,0.2); color: #a78bfa; flex-shrink: 0; }
  .auto-featured-body { flex: 1; display: flex; flex-direction: column; gap: 6px; }
  .auto-featured-title { font-size: 17px; font-weight: 700; color: var(--text); margin: 0; }
  .auto-featured-desc { font-size: 14px; line-height: 1.5; color: rgba(255,255,255,0.6); margin: 0; }
  .auto-featured-link {
    flex-shrink: 0; display: inline-flex; align-items: center; gap: 6px;
    background: rgba(124,110,247,0.2); border: 1px solid rgba(124,110,247,0.45);
    color: #a78bfa; font-size: 14px; font-weight: 600;
    padding: 10px 20px; border-radius: 50px; text-decoration: none;
    transition: all 0.2s;
  }
  .auto-featured-link:hover { background: rgba(124,110,247,0.35); border-color: rgba(167,139,250,0.7); color: #c4b5fd; }
  @media (max-width: 600px) {
    .auto-card.auto-featured { flex-direction: column; align-items: flex-start; }
    .auto-featured-link { align-self: flex-start; }
  }
  .auto-text {
    font-size: 15px; line-height: 1.55;
    color: var(--text);
    font-weight: 500;
  }
  .auto-cta {
    background: linear-gradient(135deg, rgba(124,110,247,0.10), rgba(6,214,160,0.06));
    border: 1px solid var(--border2);
    border-radius: 20px;
    padding: 36px 40px;
    display: flex; align-items: center; justify-content: space-between;
    gap: 24px;
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
  }
  .auto-cta-text {
    font-family: 'Syne', sans-serif;
    font-size: clamp(18px, 2vw, 22px);
    font-weight: 600;
    color: var(--text);
    letter-spacing: -0.2px;
    line-height: 1.4;
  }

  /* Hero */
  .hero {
    position: relative; z-index: 1;
    min-height: 100vh;
    display: flex; align-items: center;
    padding: 120px 80px 80px;
    overflow: hidden;
  }
  .hero-inner { max-width: 100%; position: relative; z-index: 1; }
  .hero-badge {
    display: inline-flex; align-items: center; gap: 8px;
    background: var(--surface); border: 1px solid var(--border2);
    border-radius: 100px; padding: 6px 16px 6px 8px;
    font-size: 12px; font-weight: 500; color: var(--text2);
    margin-bottom: 32px;
    animation: fadeUp 0.6s ease both;
  }
  .badge-dot {
    width: 8px; height: 8px; border-radius: 50%;
    background: var(--accent3); position: relative;
  }
  .badge-dot::after {
    content: ''; position: absolute; inset: -3px;
    border-radius: 50%; background: rgba(6,214,160,0.3);
    animation: pulse 2s infinite;
  }
  @keyframes pulse { 0%,100%{transform:scale(1);opacity:1} 50%{transform:scale(1.5);opacity:0} }

  .hero h1 {
    font-family: 'Syne', sans-serif;
    font-size: clamp(40px, 6vw, 80px);
    font-weight: 800; line-height: 1.05;
    letter-spacing: -2px; margin-bottom: 24px;
    animation: fadeUp 0.6s 0.1s ease both;
  }
  .h1-line2 {
    background: linear-gradient(135deg, var(--accent) 0%, var(--accent2) 50%, var(--accent4) 100%);
    -webkit-background-clip: text; -webkit-text-fill-color: transparent;
  }
  .hero-sub {
    font-size: 20px; line-height: 1.7; color: var(--text2);
    max-width: 700px; margin-bottom: 48px;
    animation: fadeUp 0.6s 0.2s ease both;
  }
  .hero-sub strong { color: var(--text); font-weight: 500; }
  .hero-actions {
    display: flex; gap: 16px; flex-wrap: wrap;
    animation: fadeUp 0.6s 0.3s ease both;
  }
  .btn-primary {
    background: var(--accent); color: #fff;
    border: none; padding: 14px 28px; border-radius: 10px;
    font-size: 15px; font-weight: 600; cursor: pointer;
    font-family: 'Space Grotesk', sans-serif;
    transition: all 0.25s; letter-spacing: 0.2px;
    position: relative; overflow: hidden;
  }
  .btn-primary::before {
    content: ''; position: absolute; inset: 0;
    background: linear-gradient(135deg, transparent, rgba(255,255,255,0.1));
    opacity: 0; transition: opacity 0.2s;
  }
  .btn-primary:hover { transform: translateY(-2px); box-shadow: 0 8px 30px rgba(124,110,247,0.4); }
  .btn-primary:hover::before { opacity: 1; }
  .btn-ghost {
    background: var(--surface); color: var(--text);
    border: 1px solid var(--border2); padding: 14px 28px; border-radius: 10px;
    font-size: 15px; font-weight: 500; cursor: pointer;
    font-family: 'Space Grotesk', sans-serif;
    transition: all 0.2s;
  }
  .btn-ghost:hover { background: var(--surface2); border-color: var(--accent); }

  /* Stats row */
  .stats-row {
    display: flex; gap: 48px; margin-top: 64px;
    padding-top: 48px; border-top: 1px solid var(--border);
    animation: fadeUp 0.6s 0.4s ease both;
    align-items: flex-start;
  }
  .stat-item { display: flex; flex-direction: column; gap: 6px; }
  .stat-num {
    font-family: 'Syne', sans-serif; font-size: 52px; font-weight: 800;
    background: linear-gradient(135deg, #fff, var(--accent));
    -webkit-background-clip: text; -webkit-text-fill-color: transparent;
    line-height: 1; display: block; height: 56px; line-height: 56px;
  }
  .stat-num.icon {
    background: none; -webkit-text-fill-color: initial;
    font-size: 44px; display: block; height: 56px; line-height: 56px;
  }
  .stat-label { font-size: 16px; color: var(--text3); font-weight: 500; }

  /* Sections */
  section { position: relative; z-index: 1; padding: 100px 80px; }
  .section-label {
    font-size: 14px; font-weight: 700; letter-spacing: 2px;
    text-transform: uppercase; color: var(--accent);
    margin-bottom: 16px;
  }
  .section-title {
    font-family: 'Syne', sans-serif; font-size: clamp(28px, 4vw, 48px);
    font-weight: 800; letter-spacing: -1px; margin-bottom: 48px;
  }

  /* Services / Trinity — vertical card flip */
  .services-row {
    display: flex; flex-direction: row; gap: 20px;
    justify-content: flex-start; align-items: stretch;
    width: 100%;
  }
  .flip-wrap {
    flex: 1; min-width: 0;
    perspective: 900px; cursor: pointer;
  }
  .flip-inner {
    position: relative;
    width: 100%; height: 280px;
    transform-style: preserve-3d;
    transition: transform 0.55s cubic-bezier(0.45, 0.05, 0.55, 0.95);
    border-radius: 16px;
  }
  .flip-wrap.flipped .flip-inner { transform: rotateY(180deg); }
  .flip-front, .flip-back {
    position: absolute; inset: 0;
    border-radius: 16px;
    backface-visibility: hidden;
    -webkit-backface-visibility: hidden;
    border: 1px solid rgba(255,255,255,0.1);
    display: flex; flex-direction: column;
    align-items: center; justify-content: center;
    padding: 24px 16px; text-align: center;
  }
  .flip-front {
    background: rgba(255,255,255,0.08);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    box-shadow: 0 8px 32px rgba(0,0,0,0.3), inset 0 1px 0 rgba(255,255,255,0.08);
    transition: border-color 0.3s, box-shadow 0.3s;
  }
  .apps-front {
    background: linear-gradient(135deg, rgba(124,110,247,0.08) 0%, rgba(255,255,255,0.03) 100%);
  }
  .web-front {
    background: linear-gradient(135deg, rgba(6,214,160,0.08) 0%, rgba(255,255,255,0.03) 100%);
  }
  .auto-front {
    background: linear-gradient(135deg, rgba(247,37,133,0.08) 0%, rgba(255,255,255,0.03) 100%);
  }
  .flip-wrap:hover .flip-front {
    border-color: rgba(255,255,255,0.2);
  }
  .flip-wrap:hover .apps-front {
    box-shadow: 0 8px 40px rgba(0,0,0,0.3), 0 0 30px rgba(124,110,247,0.2), inset 0 1px 0 rgba(255,255,255,0.12);
  }
  .flip-wrap:hover .web-front {
    box-shadow: 0 8px 40px rgba(0,0,0,0.3), 0 0 30px rgba(6,214,160,0.2), inset 0 1px 0 rgba(255,255,255,0.12);
  }
  .flip-wrap:hover .auto-front {
    box-shadow: 0 8px 40px rgba(0,0,0,0.3), 0 0 30px rgba(247,37,133,0.2), inset 0 1px 0 rgba(255,255,255,0.12);
  }
  .flip-back {
    background: rgba(18,18,30,0.85);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    transform: rotateY(180deg);
    border-color: rgba(255,255,255,0.12);
    box-shadow: 0 8px 32px rgba(0,0,0,0.4), inset 0 1px 0 rgba(255,255,255,0.06);
  }
  .flip-icon {
    font-size: 48px; margin-bottom: 16px;
    display: block;
  }
  .flip-title {
    font-family: 'Syne', sans-serif; font-size: 22px;
    font-weight: 700; letter-spacing: -0.3px; line-height: 1.2;
  }
  .apps-front .flip-title { color: var(--accent); }
  .web-front .flip-title { color: var(--accent3); }
  .auto-front .flip-title { color: var(--accent4); }
  .flip-hint {
    font-size: 12px; color: var(--text3); margin-top: 14px;
    letter-spacing: 0.5px; text-transform: uppercase;
  }
  .flip-back-text {
    font-size: 16px; line-height: 1.65; color: var(--text2);
  }
  .flip-back-icon {
    font-size: 36px; margin-bottom: 14px; display: block; opacity: 0.6;
  }



  .flip-back-btn {
    margin-top: 16px; background: var(--accent); color: #fff;
    border: none; padding: 8px 18px; border-radius: 8px;
    font-size: 12px; font-weight: 600; cursor: pointer;
    font-family: 'Space Grotesk', sans-serif; letter-spacing: 0.3px;
    transition: background 0.2s;
  }
  .flip-back-btn:hover { background: var(--accent2); }

  /* Project panel */
  .project-panel {
    overflow: hidden;
    max-height: 0; transition: max-height 0.5s cubic-bezier(0.4,0,0.2,1), opacity 0.4s ease;
    opacity: 0;
  }
  .project-panel.open { max-height: 2000px; opacity: 1; overflow: visible; }
  .project-panel-inner {
    padding-top: 24px;
    display: grid; grid-template-columns: repeat(3, 1fr); gap: 14px;
  }
  .proj-card {
    background: rgba(255,255,255,0.08);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: 14px; padding: 20px 16px;
    display: flex; flex-direction: column; gap: 8px;
    transition: border-color 0.3s, box-shadow 0.3s;
    box-shadow: 0 4px 20px rgba(0,0,0,0.2), inset 0 1px 0 rgba(255,255,255,0.06);
    position: relative;
    height: 280px;
  }
  .proj-card::before {
    content: ''; position: absolute; inset: 0;
    border-radius: 14px;
    background: radial-gradient(circle at 50% 0%, rgba(124,110,247,0.12) 0%, transparent 70%);
    opacity: 0; transition: opacity 0.3s;
    pointer-events: none;
  }
  .proj-card:hover { border-color: rgba(255,255,255,0.18); }
  .proj-card:hover { box-shadow: 0 4px 30px rgba(0,0,0,0.3), 0 0 20px rgba(124,110,247,0.15), inset 0 1px 0 rgba(255,255,255,0.1); }
  .proj-card:hover::before { opacity: 1; }
  .proj-icon { font-size: 36px; }
  .proj-name { font-family: 'Syne', sans-serif; font-size: 20px; font-weight: 700; line-height: 1.2; }
  .proj-desc { font-size: 14px; color: var(--text2); line-height: 1.5; flex: 1; }
  .proj-link {
    display: inline-block; font-size: 13px; font-weight: 600;
    color: var(--accent); text-decoration: none; letter-spacing: 0.5px;
    text-transform: uppercase; margin-top: 4px;
    transition: color 0.2s;
  }
  .proj-link:hover { color: var(--accent2); }
  .proj-link.as-button { background: none; border: none; padding: 0; cursor: pointer; font-family: inherit; }
  .proj-badge {
    position: absolute; top: 14px; right: 14px;
    background: linear-gradient(135deg, var(--accent), var(--accent2));
    color: #fff; font-size: 10px; font-weight: 700;
    letter-spacing: 0.8px; text-transform: uppercase;
    padding: 4px 10px; border-radius: 999px;
    box-shadow: 0 2px 12px rgba(124,110,247,0.4);
    z-index: 2;
  }

  /* Coming soon panel */
  .coming-soon-panel {
    display: flex; flex-direction: column; align-items: flex-start; gap: 8px;
    padding-top: 24px;
  }
  .cs-badge {
    display: inline-flex; align-items: center; gap: 8px;
    background: rgba(247,37,133,0.08); border: 1px solid rgba(247,37,133,0.2);
    border-radius: 100px; padding: 8px 16px;
    font-size: 12px; font-weight: 600; color: var(--accent4);
  }
  .cs-dot {
    width: 6px; height: 6px; border-radius: 50%;
    background: var(--accent4); animation: pulse 1.5s infinite;
  }
  .cs-text { font-size: 13px; color: var(--text3); padding-left: 4px; }

  /* About */
  .about-grid {
    max-width: 100%;
  }
  .about-text p { font-size: 20px; line-height: 1.8; color: var(--text2); margin-bottom: 20px; }
  .about-text strong { color: var(--text); font-weight: 500; }

  /* Contact */
  .contact-card {
    max-width: 100%;
    background: var(--surface); border: 1px solid var(--border);
    border-radius: 20px; padding: 48px;
  }
  .contact-card p { font-size: 20px; color: var(--text2); line-height: 1.7; margin-bottom: 32px; }
  .contact-links { display: flex; gap: 12px; flex-wrap: wrap; }
  .contact-link {
    display: flex; align-items: center; gap: 8px;
    background: var(--surface2); border: 1px solid var(--border2);
    border-radius: 10px; padding: 12px 20px;
    text-decoration: none; color: var(--text);
    font-size: 14px; font-weight: 500;
    transition: all 0.2s;
  }
  .contact-link:hover { background: var(--accent); border-color: transparent; transform: translateY(-2px); }

  /* Modal */
  .modal-overlay {
    position: fixed; inset: 0; z-index: 200;
    background: rgba(5,5,8,0.95);
    backdrop-filter: blur(10px);
    display: flex; align-items: center; justify-content: center;
    opacity: 0; pointer-events: none; transition: opacity 0.3s;
  }
  .modal-overlay.open { opacity: 1; pointer-events: all; }
  .modal {
    background: var(--bg2); border: 1px solid var(--border2);
    border-radius: 20px; padding: 40px; max-width: 560px; width: 90%;
    transform: scale(0.95) translateY(20px);
    transition: transform 0.3s;
  }
  .modal-overlay.open .modal { transform: scale(1) translateY(0); }
  .modal-close {
    position: absolute; top: 20px; right: 20px;
    background: var(--surface); border: 1px solid var(--border);
    color: var(--text2); width: 36px; height: 36px;
    border-radius: 50%; cursor: pointer; font-size: 18px;
    display: flex; align-items: center; justify-content: center;
    transition: all 0.2s;
  }
  .modal-close:hover { background: var(--surface2); color: var(--text); }
  .modal h3 { font-family: 'Syne', sans-serif; font-size: 24px; font-weight: 800; margin-bottom: 8px; }
  .modal p { color: var(--text2); font-size: 15px; line-height: 1.7; margin-bottom: 24px; }
  .modal-input {
    width: 100%; background: var(--surface); border: 1px solid var(--border);
    border-radius: 10px; padding: 12px 16px; color: var(--text);
    font-family: 'Space Grotesk', sans-serif; font-size: 14px;
    margin-bottom: 12px; outline: none; transition: border-color 0.2s;
  }
  .modal-input:focus { border-color: var(--accent); }
  textarea.modal-input { min-height: 100px; resize: none; }
  .modal-submit {
    width: 100%; background: var(--accent); color: #fff; border: none;
    padding: 14px; border-radius: 10px; font-size: 15px; font-weight: 600;
    cursor: pointer; font-family: 'Space Grotesk', sans-serif; transition: all 0.2s;
  }
  .modal-submit:hover { background: var(--accent2); }

  /* Footer */
  footer {
    position: relative; z-index: 1;
    border-top: 1px solid var(--border);
    padding: 32px 80px;
    display: flex; justify-content: space-between; align-items: center;
  }
  footer p { font-size: 13px; color: var(--text3); }
  .footer-right { display: flex; align-items: center; gap: 16px; justify-content: center; }
  .social-link {
    display: inline-flex; align-items: center; justify-content: center;
    width: 38px; height: 38px; border-radius: 10px;
    color: var(--text2);
    border: 1px solid var(--border2);
    transition: color 0.25s ease, background 0.25s ease, border-color 0.25s ease, transform 0.25s ease;
  }
  .social-link:hover {
    color: #fff;
    border-color: transparent;
    background: linear-gradient(135deg, var(--accent) 0%, var(--accent4) 100%);
    transform: translateY(-2px);
  }
  .social-link svg { width: 18px; height: 18px; }

  /* Animations */
  @keyframes fadeUp {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
  }
  .reveal { opacity: 0; transform: translateY(30px); transition: opacity 0.7s ease, transform 0.7s ease; }
  .reveal.in { opacity: 1; transform: translateY(0); }

  @media (max-width: 900px) {
    nav { padding: 12px 16px; flex-wrap: wrap; gap: 8px; }
    nav > div:last-child { gap: 6px !important; flex-wrap: wrap; justify-content: space-between; flex: 1 1 100%; }
    .nav-links { display: none; }
    .nav-pricing { padding: 6px 10px; font-size: 11px; }
    .pricing-table { font-size: 12px; }
    .pricing-table thead th { padding: 12px 14px; font-size: 11px; }
    .pricing-table tbody td { padding: 12px 14px; }
    .pricing-block-title { font-size: 20px; margin-bottom: 14px; }
    .automation-sub { font-size: 15px; margin-bottom: 32px; }
    .auto-grid { grid-template-columns: 1fr; gap: 12px; margin-bottom: 32px; }
    .auto-card { padding: 18px 16px; gap: 12px; }
    .auto-icon { width: 40px; height: 40px; font-size: 18px; }
    .auto-text { font-size: 14px; }
    .auto-cta { flex-direction: column; align-items: flex-start; padding: 24px 20px; gap: 16px; }
    .auto-cta-text { font-size: 16px; }
    .logo { font-size: 15px; }
    .lang-switch { padding: 3px; }
    .lang-btn { padding: 3px 8px; font-size: 10px; }
    .nav-cta { padding: 8px 14px; font-size: 12px; }

    .hero { padding: 80px 20px 60px; }
    .hero h1 { font-size: clamp(32px, 8vw, 56px); letter-spacing: -1px; }
    .hero-sub { font-size: 16px; }

    .stats-row { gap: 16px; flex-wrap: nowrap; margin-top: 40px; padding-top: 32px; }
    .stat-item { flex: 1; min-width: 0; }
    .stat-num { font-size: 32px; height: 38px; line-height: 38px; }
    .stat-num.icon { font-size: 28px; height: 38px; line-height: 38px; }
    .stat-label { font-size: 11px; }

    section { padding: 48px 20px; }
    .section-title { font-size: clamp(24px, 6vw, 40px); }
    .section-label { font-size: 11px; }

    .services-row { gap: 10px; }
    .flip-inner { height: 260px; }
    .flip-front, .flip-back { padding: 14px 10px; justify-content: center; }
    .flip-icon { font-size: 28px; margin-bottom: 8px; }
    .flip-title { font-size: 14px; }
    .flip-hint { margin-top: 6px; font-size: 9px; }
    .flip-back-icon { font-size: 20px; margin-bottom: 6px; }
    .flip-back-text { font-size: 11px; line-height: 1.4; }
    .flip-back-btn { font-size: 10px; padding: 6px 12px; margin-top: 8px; }

    .project-panel-inner { grid-template-columns: 1fr; gap: 10px; }
    .proj-card { height: auto; min-height: 120px; }

    .about-text p { font-size: 16px; }
    .contact-card { padding: 24px 16px; }
    .contact-card p { font-size: 16px; }

    footer { padding: 24px 20px; flex-direction: column; gap: 8px; text-align: center; }
  }

  @media (max-width: 560px) {
    nav { padding: 10px 12px; }
    .logo { font-size: 14px; }
    .nav-pricing { padding: 5px 8px; font-size: 10px; letter-spacing: 0.1px; }
    .lang-switch { padding: 2px; }
    .lang-btn { padding: 2px 6px; font-size: 9px; }
    .nav-cta { padding: 6px 10px; font-size: 10px; }
    .hero { padding-top: 110px; }
  }

  /* FAQ */
  .faq-intro { max-width: 65ch; color: var(--text2); font-size: 16px; line-height: 1.7; margin-top: 8px; }
  .faq-group { margin-top: 44px; }
  .faq-group-title { font-size: 13px; text-transform: uppercase; letter-spacing: 0.12em; color: var(--accent); margin: 0 0 8px; }
  .faq-item { border-bottom: 1px solid var(--border); }
  .faq-item summary { cursor: pointer; padding: 20px 0; font-size: 17px; font-weight: 500; color: var(--text); list-style: none; display: flex; justify-content: space-between; gap: 20px; align-items: center; transition: color 0.2s; }
  .faq-item summary:hover { color: var(--accent2); }
  .faq-item summary::-webkit-details-marker { display: none; }
  .faq-item summary::after { content: '+'; color: var(--accent); font-size: 24px; line-height: 1; flex-shrink: 0; transition: transform 0.2s; }
  .faq-item[open] summary::after { transform: rotate(45deg); }
  .faq-item .faq-a { padding: 0 0 22px; color: var(--text2); line-height: 1.75; max-width: 70ch; }

  /* Blog index */
  .blog-intro { max-width: 65ch; color: var(--text2); font-size: 16px; line-height: 1.7; margin-top: 8px; }
  .blog-list { display: flex; flex-direction: column; gap: 18px; margin-top: 44px; max-width: 820px; }
  .blog-card {
    display: block; text-decoration: none;
    padding: 28px 30px; border-radius: 18px;
    background: rgba(255,255,255,0.03);
    border: 1px solid var(--border);
    transition: border-color 0.25s, background 0.25s, transform 0.25s;
  }
  .blog-card:hover { border-color: var(--accent); background: rgba(124,110,247,0.06); transform: translateY(-3px); }
  .blog-card-meta { font-size: 12px; letter-spacing: 0.06em; text-transform: uppercase; color: var(--text3); margin-bottom: 12px; }
  .blog-card-title { font-family: 'Syne', sans-serif; font-size: clamp(20px, 2.4vw, 26px); font-weight: 700; letter-spacing: -0.5px; color: var(--text); line-height: 1.2; }
  .blog-card-desc { color: var(--text2); font-size: 15px; line-height: 1.65; margin-top: 12px; max-width: 60ch; }
  .blog-card-link { display: inline-block; margin-top: 16px; color: var(--accent); font-size: 14px; font-weight: 600; }

  /* Blog post (article) */
  .post-wrap { max-width: 720px; }
  .post-back { display: inline-block; color: var(--text2); text-decoration: none; font-size: 14px; font-weight: 600; margin-bottom: 28px; transition: color 0.2s; }
  .post-back:hover { color: var(--accent); }
  .post-meta { font-size: 13px; letter-spacing: 0.06em; text-transform: uppercase; color: var(--text3); margin-bottom: 18px; }
  .post-title { font-family: 'Syne', sans-serif; font-size: clamp(30px, 5vw, 52px); font-weight: 800; letter-spacing: -1px; line-height: 1.08; }
  .post-answer {
    margin-top: 28px; padding: 22px 26px;
    border-left: 3px solid var(--accent);
    background: rgba(124,110,247,0.07);
    border-radius: 0 14px 14px 0;
    color: var(--text); font-size: 18px; line-height: 1.7;
  }
  .post-body { margin-top: 12px; }
  .post-body p { color: var(--text2); font-size: 17px; line-height: 1.8; margin-top: 22px; max-width: 68ch; }
  .post-body .post-h2 {
    font-family: 'Syne', sans-serif; font-size: clamp(22px, 3vw, 30px);
    font-weight: 700; letter-spacing: -0.5px; color: var(--text);
    margin-top: 52px; line-height: 1.2;
  }
  .post-body .post-ul { margin-top: 18px; padding-left: 22px; color: var(--text2); line-height: 1.8; max-width: 68ch; }
  .post-body .post-ul li { margin-top: 8px; }
  .post-cta {
    margin-top: 56px; padding: 32px; border-radius: 18px;
    background: rgba(255,255,255,0.03); border: 1px solid var(--border);
    display: flex; flex-direction: column; gap: 18px; align-items: flex-start;
  }
  .post-cta-text { color: var(--text); font-size: 18px; line-height: 1.6; max-width: 52ch; }
  @media (max-width: 560px) {
    .post-answer { font-size: 16px; padding: 18px 20px; }
    .post-body p { font-size: 16px; }
    .blog-card { padding: 22px; }
  }
