﻿    :root {
      --bg: #0b0b0e;
      --bg-2: #121218;
      --panel: #15151b;
      --panel-2: #1b1b23;
      --line: rgba(255,255,255,0.07);
      --text: #f6f7fb;
      --muted: #a4a9b7;
      --green: #b7ff4d;
      --green-2: #9ded33;
      --dark: #050507;
      --radius: 20px;
      --shadow: 0 14px 36px rgba(0,0,0,0.24);
      --max: 1180px;
    }

    * { box-sizing: border-box; }
    html { scroll-behavior: smooth; }
    body {
      margin: 0;
      color: var(--text);
      font-family: Arial, Helvetica, sans-serif;
      background:
        radial-gradient(circle at top right, rgba(183,255,77,0.07), transparent 20%),
        linear-gradient(180deg, #0b0b0e 0%, #09090c 100%);
    }

    img { display: block; max-width: 100%; }
    a { color: inherit; text-decoration: none; }
    .container { width: min(calc(100% - 32px), var(--max)); margin: 0 auto; }

    .site-header {
      position: sticky;
      top: 0;
      z-index: 50;
      background: rgba(11,11,14,0.86);
      backdrop-filter: blur(18px);
      border-bottom: 1px solid var(--line);
    }

    .header-row,
    .footer-row {
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 20px;
      padding: 14px 0;
    }

    .logo img { height: 42px; width: auto; }

    .nav {
      display: flex;
      align-items: center;
      gap: 20px;
      color: var(--muted);
      font-size: 13px;
      flex-wrap: wrap;
    }

    .nav a:hover,
    .footer-links a:hover,
    .lang:hover { color: #fff; }

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

    .lang {
      padding: 9px 14px;
      border: 1px solid var(--line);
      border-radius: 999px;
      color: var(--muted);
      font-size: 14px;
    }

    .hero {
      padding: 22px 0 24px;
    }

    .mac-banner {
      display: grid;
      grid-template-columns: 1.15fr 0.85fr;
      gap: 22px;
      align-items: center;
      margin-bottom: 22px;
      padding: 24px;
      background: linear-gradient(135deg, #17171f 0%, #101015 100%);
      border: 1px solid var(--line);
      border-radius: 26px;
      overflow: hidden;
      box-shadow: var(--shadow);
    }

    .mac-copy h2 {
      margin: 0 0 10px;
      font-size: clamp(28px, 5vw, 48px);
      line-height: 1.06;
      font-weight: 800;
    }

    .mac-copy p,
    .hero-copy p,
    .section-head p,
    .card p,
    .faq-answer,
    .tool-card p,
    .testimonial p,
    .footer-note {
      margin: 0;
      color: var(--muted);
      line-height: 1.65;
    }

    .button-row {
      display: flex;
      gap: 14px;
      flex-wrap: wrap;
      margin-top: 18px;
    }

    .btn {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      min-height: 46px;
      padding: 0 20px;
      border-radius: 999px;
      font-weight: 700;
      transition: transform 0.18s ease;
    }

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

    .btn-primary {
      background: linear-gradient(135deg, var(--green) 0%, var(--green-2) 100%);
      color: #111;
    }

    .btn-dark {
      background: rgba(255,255,255,0.04);
      border: 1px solid var(--line);
      color: var(--text);
    }

    .btn-ghost {
      min-height: 40px;
      padding: 0 16px;
      background: rgba(255,255,255,0.04);
      border: 1px solid var(--line);
      color: var(--text);
      font-size: 14px;
    }

    .mac-visual {
      position: relative;
      min-height: 260px;
      border-radius: 22px;
      background:
        linear-gradient(180deg, rgba(0,0,0,0.08), rgba(0,0,0,0.18)),
        url("assets/images/header_effect.webp") center/cover no-repeat;
    }

    .download-chip {
      position: absolute;
      left: 16px;
      right: 16px;
      bottom: 16px;
      display: flex;
      align-items: center;
      gap: 12px;
      padding: 14px 16px;
      border-radius: 16px;
      background: rgba(8,8,10,0.8);
      border: 1px solid rgba(255,255,255,0.08);
    }

    .download-chip img { width: 28px; height: 28px; }
    .download-chip strong { display: block; font-size: 14px; }
    .download-chip span { color: var(--muted); font-size: 12px; }

    .hero-main {
      display: grid;
      grid-template-columns: 0.95fr 1.05fr;
      gap: 24px;
      align-items: center;
    }

    .compare-card {
      padding: 16px;
      border-radius: 24px;
      background: var(--panel);
      border: 1px solid var(--line);
      box-shadow: var(--shadow);
    }

    .compare-grid {
      display: grid;
      grid-template-columns: repeat(2, 1fr);
      gap: 8px;
    }

    .compare-item {
      overflow: hidden;
      border-radius: 18px;
      background: #101014;
      border: 1px solid rgba(255,255,255,0.06);
    }

    .compare-item img {
      width: 100%;
      aspect-ratio: 4 / 5;
      object-fit: cover;
    }

    .compare-item span {
      display: block;
      padding: 11px 14px 13px;
      font-weight: 700;
      text-align: center;
      font-size: 14px;
    }

    .hero-copy h1 {
      margin: 0 0 16px;
      font-size: clamp(34px, 5vw, 58px);
      line-height: 1.02;
      font-weight: 800;
    }

    .hero-badges {
      display: flex;
      align-items: center;
      gap: 12px;
      flex-wrap: wrap;
      margin-bottom: 16px;
    }

    .badge {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      padding: 7px 11px;
      border-radius: 999px;
      border: 1px solid var(--line);
      background: rgba(255,255,255,0.04);
      color: var(--muted);
      font-size: 12px;
      font-weight: 700;
    }

    .badge-dot {
      width: 8px;
      height: 8px;
      border-radius: 999px;
      background: var(--green);
      box-shadow: 0 0 0 4px rgba(183,255,77,0.12);
    }

    .hero-copy .status {
      margin-top: 16px;
      color: #9095a6;
      font-size: 13px;
    }

    section {
      padding: 28px 0;
    }

    .section-head {
      max-width: 840px;
      margin-bottom: 18px;
    }

    .section-head h2 {
      margin: 0 0 10px;
      font-size: clamp(28px, 4vw, 42px);
      line-height: 1.08;
    }

    .steps,
    .creative-grid,
    .testimonials,
    .tools-grid,
    .faq-grid {
      display: grid;
      gap: 16px;
    }

    .steps { grid-template-columns: repeat(3, 1fr); }
    .creative-grid { grid-template-columns: repeat(2, 1fr); }
    .testimonials { grid-template-columns: repeat(3, 1fr); }
    .tools-grid { grid-template-columns: repeat(4, 1fr); }
    .faq-grid { grid-template-columns: repeat(2, 1fr); }

    .card,
    .testimonial,
    .tool-card,
    .faq-item {
      border: 1px solid var(--line);
      background: var(--panel);
      border-radius: var(--radius);
      box-shadow: var(--shadow);
    }

    .card {
      padding: 22px;
    }

    .steps .card {
      background:
        linear-gradient(180deg, rgba(183,255,77,0.04), transparent 90px),
        var(--panel);
    }

    .step-number {
      display: inline-flex;
      width: 34px;
      height: 34px;
      align-items: center;
      justify-content: center;
      border-radius: 999px;
      margin-bottom: 12px;
      background: rgba(183,255,77,0.12);
      color: var(--green);
      font-weight: 800;
    }

    .card h3,
    .tool-card h3,
    .faq-question {
      margin: 0 0 10px;
      font-size: 19px;
      line-height: 1.25;
    }

    .creative-item {
      display: flex;
      flex-direction: column;
      overflow: hidden;
    }

    .feature-visual {
      overflow: hidden;
      border-radius: 24px;
      border: 1px solid var(--line);
      background: var(--panel);
      box-shadow: var(--shadow);
    }

    .feature-visual img {
      width: 100%;
      aspect-ratio: 16 / 9;
      object-fit: cover;
    }

    .creative-item img {
      width: 100%;
      min-height: 280px;
      max-height: 360px;
      object-fit: contain;
      object-position: center;
      background: #101014;
      padding: 18px 18px 0;
    }

    .creative-copy {
      padding: 22px;
    }

    .creative-copy p {
      font-size: 15px;
    }

    .creative-copy .btn {
      margin-top: 16px;
    }

    .testimonial {
      padding: 22px;
    }

    .testimonial strong {
      display: block;
      margin-top: 16px;
      color: #fff;
    }

    .tool-card {
      padding: 14px;
      min-height: 100%;
      background:
        linear-gradient(180deg, rgba(255,255,255,0.018), transparent 68%),
        var(--panel);
      position: relative;
      overflow: hidden;
      display: flex;
      flex-direction: column;
      gap: 12px;
    }

    .tool-media {
      width: 100%;
      aspect-ratio: 4 / 3;
      object-fit: cover;
      object-position: center;
      border-radius: 14px;
      border: 1px solid rgba(255,255,255,0.08);
      background: #101014;
    }

    .tool-card h3 { font-size: 17px; margin: 0; }

    .tool-card p { font-size: 14px; line-height: 1.55; }

    .tool-card::after {
      content: "";
      position: absolute;
      right: -26px;
      bottom: -26px;
      width: 74px;
      height: 74px;
      border-radius: 999px;
      background: radial-gradient(circle, rgba(183,255,77,0.14), transparent 70%);
    }

    .faq-item {
      padding: 18px 20px;
      background:
        linear-gradient(180deg, rgba(255,255,255,0.02), transparent 90px),
        var(--panel);
      box-shadow: none;
    }

    .faq-question {
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 16px;
      margin: 0;
      cursor: pointer;
      list-style: none;
      font-size: 17px;
    }

    .faq-question::-webkit-details-marker { display: none; }

    .plus {
      flex: 0 0 auto;
      width: 22px;
      height: 22px;
      position: relative;
    }

    .plus::before,
    .plus::after {
      content: "";
      position: absolute;
      top: 50%;
      left: 50%;
      border-radius: 999px;
      background: var(--green);
      transform: translate(-50%, -50%);
      transition: transform 0.2s ease, opacity 0.2s ease;
    }

    .plus::before {
      width: 18px;
      height: 2px;
    }

    .plus::after {
      width: 2px;
      height: 18px;
    }

    details[open] .plus::after {
      opacity: 0;
      transform: translate(-50%, -50%) scaleY(0.25);
    }

    .faq-answer {
      padding-top: 12px;
      font-size: 14px;
    }

    .pricing-section {
      padding: 34px 0 10px;
    }

    .pricing-head {
      max-width: 920px;
      text-align: center;
      margin: 0 auto 22px;
    }

    .pricing-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 20px;
      align-items: start;
      max-width: 940px;
      margin: 0 auto;
    }

    .price-card {
      position: relative;
      padding: 24px 20px 20px;
      border-radius: 22px;
      border: 1px solid rgba(255,255,255,0.16);
      background: linear-gradient(180deg, rgba(255,255,255,0.045), rgba(255,255,255,0.02));
      box-shadow: var(--shadow);
      min-height: 336px;
    }

    .price-card.featured {
      border-color: rgba(183,255,77,0.85);
      box-shadow: 0 0 0 1px rgba(183,255,77,0.3), 0 0 22px rgba(183,255,77,0.16), 0 18px 42px rgba(0,0,0,0.32);
    }

    .price-card::before {
      content: "LIMITED TIME";
      position: absolute;
      top: 16px;
      left: -8px;
      padding: 6px 8px;
      border-radius: 10px;
      background: #ff4d57;
      color: #fff;
      font-size: 10px;
      font-weight: 800;
      line-height: 1;
      letter-spacing: 0.04em;
      transform: rotate(-12deg);
      box-shadow: 0 6px 14px rgba(255, 77, 87, 0.24);
    }

    .price-card:first-child::before {
      content: none;
    }

    .price-badge {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      min-width: 118px;
      height: 32px;
      margin: -40px auto 16px;
      padding: 0 18px;
      border-radius: 999px;
      background: linear-gradient(135deg, var(--green) 0%, var(--green-2) 100%);
      color: #111;
      font-size: 14px;
      font-weight: 800;
    }

    .price-badge.muted {
      background: #a9acb3;
      color: #fff;
    }

    .price-top {
      display: grid;
      gap: 10px;
      text-align: center;
      margin-bottom: 12px;
    }

    .plan-name {
      font-size: 16px;
      font-weight: 700;
      line-height: 1.1;
      color: #e8ebf5;
    }

    .plan-price {
      font-size: 50px;
      font-weight: 800;
      line-height: 1;
      letter-spacing: -0.04em;
      color: #fff;
    }

    .plan-old {
      margin-left: 8px;
      font-size: 16px;
      font-weight: 700;
      color: #8c8f9b;
      text-decoration: line-through;
      letter-spacing: normal;
    }

    .plan-unit {
      margin-left: 4px;
      font-size: 16px;
      font-weight: 700;
      color: #bfc4d1;
      letter-spacing: normal;
    }

    .plan-subline,
    .plan-meta {
      text-align: center;
      color: var(--muted);
      font-size: 13px;
      line-height: 1.5;
    }

    .plan-subline {
      min-height: 38px;
      margin-bottom: 14px;
    }

    .price-action {
      display: flex;
      align-items: center;
      justify-content: center;
      min-height: 48px;
      margin-bottom: 14px;
      border-radius: 10px;
      background: linear-gradient(135deg, var(--green) 0%, var(--green-2) 100%);
      color: #111;
      font-weight: 800;
    }

    .price-action.muted {
      background: rgba(255,255,255,0.1);
      color: #fff;
    }

    .price-card:first-child .price-top {
      margin-top: 22px;
    }

    .price-card:first-child .plan-price {
      margin-bottom: 10px;
    }

    .cta {
      margin-top: 8px;
      padding: 34px 0 48px;
    }

    .cta-box {
      padding: 30px;
      border-radius: 26px;
      border: 1px solid rgba(183,255,77,0.12);
      background:
        radial-gradient(circle at right top, rgba(183,255,77,0.12), transparent 28%),
        linear-gradient(135deg, #17171f 0%, #111117 100%);
      box-shadow: var(--shadow);
      text-align: center;
    }

    .cta-box h2 {
      margin: 0 0 12px;
      font-size: clamp(30px, 4vw, 46px);
      line-height: 1.08;
    }

    .cta-box p {
      max-width: 760px;
      margin: 0 auto;
      color: var(--muted);
      line-height: 1.7;
    }

    .cta-box .button-row {
      justify-content: center;
      margin-top: 22px;
    }

    .site-footer {
      border-top: 1px solid var(--line);
      background: #0a0a0d;
    }

    .page-shell {
      padding: 32px 0 56px;
    }

    .page-hero {
      margin-bottom: 24px;
      padding: 30px;
      border: 1px solid var(--line);
      border-radius: 28px;
      background:
        radial-gradient(circle at top right, rgba(183,255,77,0.12), transparent 24%),
        linear-gradient(135deg, #17171f 0%, #101015 100%);
      box-shadow: var(--shadow);
    }

    .eyebrow {
      display: inline-flex;
      align-items: center;
      min-height: 30px;
      padding: 0 12px;
      border-radius: 999px;
      background: rgba(183,255,77,0.1);
      color: var(--green);
      font-size: 12px;
      font-weight: 800;
      letter-spacing: 0.04em;
      text-transform: uppercase;
    }

    .page-hero h1 {
      margin: 14px 0 12px;
      font-size: clamp(34px, 5vw, 56px);
      line-height: 1.02;
    }

    .page-hero p {
      max-width: 860px;
      margin: 0;
      color: var(--muted);
      line-height: 1.7;
      font-size: 17px;
    }

    .crumbs {
      display: flex;
      gap: 10px;
      flex-wrap: wrap;
      margin: 0 0 16px;
      color: #b4bac9;
      font-size: 14px;
      font-weight: 700;
    }

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

    .note-box {
      margin-top: 18px;
      padding: 16px 18px;
      border: 1px solid rgba(183,255,77,0.14);
      border-radius: 18px;
      background: rgba(183,255,77,0.05);
      color: #d6dccb;
      line-height: 1.65;
    }

    .updated-meta {
      margin: 14px 0 0;
      color: var(--muted);
      font-size: 14px;
      line-height: 1.5;
    }

    .meta-line {
      display: flex;
      gap: 12px;
      flex-wrap: wrap;
      margin-top: 16px;
      color: #c4c8d6;
      font-size: 14px;
      font-weight: 700;
    }

    .content-card {
      padding: 28px;
      border: 1px solid var(--line);
      border-radius: 24px;
      background: var(--panel);
      box-shadow: var(--shadow);
    }

    .content-card + .content-card {
      margin-top: 20px;
    }

    .content-card .button-row {
      margin-top: 20px;
    }

    .legal-copy h2,
    .legal-copy h3 {
      margin: 26px 0 12px;
      line-height: 1.15;
    }

    .legal-copy h2:first-child,
    .legal-copy h3:first-child {
      margin-top: 0;
    }

    .legal-copy p,
    .legal-copy li {
      color: var(--muted);
      line-height: 1.75;
      font-size: 15px;
    }

    .legal-copy ul {
      margin: 0 0 18px 20px;
      padding: 0;
    }

    .stats-grid,
    .blog-grid,
    .guide-grid {
      display: grid;
      gap: 16px;
    }

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

    .stat-card,
    .blog-card {
      border: 1px solid var(--line);
      border-radius: 22px;
      background: var(--panel);
      box-shadow: var(--shadow);
      overflow: hidden;
    }

    .stat-card {
      padding: 22px;
      background:
        linear-gradient(180deg, rgba(183,255,77,0.05), transparent 88px),
        var(--panel);
    }

    .stat-card strong {
      display: block;
      margin-bottom: 10px;
      font-size: 32px;
      line-height: 1;
      color: #fff;
    }

    .stat-card p {
      margin: 0;
      color: var(--muted);
      line-height: 1.65;
    }

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

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

    .guide-card {
      padding: 22px;
      border: 1px solid var(--line);
      border-radius: 22px;
      background:
        linear-gradient(180deg, rgba(255,255,255,0.03), transparent 90px),
        var(--panel);
      box-shadow: var(--shadow);
    }

    .guide-card h3 {
      margin: 0 0 10px;
      font-size: 22px;
      line-height: 1.2;
    }

    .guide-card p {
      margin: 0 0 14px;
      color: var(--muted);
      line-height: 1.65;
    }

    .guide-card a {
      color: var(--green);
      font-weight: 800;
    }

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

    .mini-panel {
      padding: 18px;
      border-radius: 18px;
      border: 1px solid var(--line);
      background: rgba(255,255,255,0.03);
    }

    .mini-panel h3 {
      margin: 0 0 10px;
      font-size: 18px;
      line-height: 1.2;
    }

    .mini-panel p,
    .mini-panel li {
      margin: 0;
      color: var(--muted);
      line-height: 1.7;
      font-size: 15px;
    }

    .mini-panel ul {
      margin: 0 0 0 18px;
      padding: 0;
    }

    .blog-card img {
      width: 100%;
      aspect-ratio: 16 / 10;
      object-fit: cover;
      background: #101014;
    }

    .blog-copy {
      padding: 20px;
    }

    .blog-card-link {
      display: block;
      height: 100%;
    }

    .blog-card-link:hover .blog-copy h3 {
      color: var(--green);
    }

    .blog-copy h3 {
      margin: 0 0 10px;
      font-size: 22px;
      line-height: 1.2;
      transition: color 0.18s ease;
    }

    .blog-copy p {
      margin: 0 0 12px;
      color: var(--muted);
      line-height: 1.65;
    }

    .blog-meta {
      color: #c4c8d6;
      font-size: 13px;
      font-weight: 700;
    }

    .pagination {
      display: flex;
      justify-content: center;
      gap: 10px;
      margin-top: 24px;
    }

    .page-pill {
      display: inline-flex;
      width: 42px;
      height: 42px;
      align-items: center;
      justify-content: center;
      border-radius: 999px;
      border: 1px solid var(--line);
      background: rgba(255,255,255,0.04);
      color: var(--text);
      font-weight: 800;
    }

    .page-pill.active {
      background: linear-gradient(135deg, var(--green) 0%, var(--green-2) 100%);
      color: #111;
      border-color: transparent;
    }

    .footer-columns {
      display: grid;
      grid-template-columns: 1.2fr 1fr;
      gap: 24px;
      align-items: start;
      width: 100%;
    }

    .footer-brand {
      display: flex;
      align-items: center;
      gap: 16px;
    }

    .footer-brand img { height: 40px; width: auto; }

    .footer-links {
      display: flex;
      gap: 16px;
      flex-wrap: wrap;
      color: var(--muted);
      font-size: 14px;
    }

    .footer-stack {
      display: flex;
      flex-direction: column;
      gap: 14px;
      align-items: flex-end;
    }

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

    .socials a {
      display: inline-flex;
      width: 40px;
      height: 40px;
      align-items: center;
      justify-content: center;
      border-radius: 999px;
      border: 1px solid var(--line);
      background: rgba(255,255,255,0.04);
    }

    .socials img { width: 18px; height: 18px; }

    @media (max-width: 1080px) {
      .hero-main,
      .mac-banner,
      .creative-item,
      .steps,
      .creative-grid,
      .testimonials,
      .stats-grid,
      .tools-grid,
      .blog-grid,
      .guide-grid,
      .mini-grid,
      .faq-grid,
      .pricing-grid,
      .footer-columns {
        grid-template-columns: 1fr;
      }
    }

    @media (max-width: 760px) {
      .header-row,
      .footer-row {
        flex-direction: column;
        align-items: flex-start;
      }

      .nav {
        gap: 14px;
        font-size: 13px;
      }

      .header-actions,
      .footer-stack {
        align-items: flex-start;
      }

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

      .price-card {
        min-height: 0;
      }

      .plan-price {
        font-size: 42px;
      }
    }
