* {
      margin: 0;
      padding: 0;
      box-sizing: border-box;
    }

    :root {
      --bg: #000;
      --text: #fff;
      --brand: #fff;
      --line: #2a2a2a;
      --gray: #999;
    }

    body {
      font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
      background: radial-gradient(circle at 20% 0%, #111 0%, #050505 45%, #000 100%);
      color: var(--text);
      line-height: 1.6;
      overflow-x: hidden;
    }

    .container {
      width: 100%;
      max-width: 100%;
      margin-inline: 0;
      padding-inline: 20px;
    }

    header .container,
    .trusted-strip .container,
    .portfolio-section .container,
    .workflow-section .container,
    .world-section .container {
      max-width: 100%;
      padding-inline: 20px;
    }

    /* Header */
    header {
      position: fixed;
      top: 0;
      width: 100%;
      background: rgba(0, 0, 0, 0.95);
      -webkit-backdrop-filter: blur(10px);
      backdrop-filter: blur(10px);
      border-bottom: 1px solid var(--line);
      z-index: 1000;
      padding: 20px 0;
    }

    nav {
      display: flex;
      justify-content: space-between;
      align-items: center;
    }

    .logo {
      font-size: 28px;
      font-weight: 700;
      color: var(--brand);
      text-decoration: none;
    }

    .nav-links {
      display: flex;
      gap: 40px;
      list-style: none;
    }

    .nav-links a {
      color: var(--text);
      text-decoration: none;
      font-size: 15px;
      transition: color 0.3s;
    }

    .nav-links a:hover {
      color: var(--brand);
    }

    /* Hero Section */
    .hero {
      position: relative;
      min-height: 100vh;
      display: flex;
      align-items: center;
      padding-top: 80px;
      overflow: hidden;
    }

    .hero::after {
      content: "";
      position: absolute;
      inset: 0;
      background: linear-gradient(to bottom, rgba(0, 0, 0, 0.45), rgba(0, 0, 0, 0.86));
      z-index: 0;
      pointer-events: none;
    }

    .hero-bg {
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      object-fit: cover;
      object-position: center;
      opacity: 0.34;
      z-index: -1;
    }

    .hero-content {
      padding: 100px 0;
      position: relative;
      z-index: 1;
    }

    .hero-tag {
      display: inline-flex;
      align-items: center;
      gap: 10px;
      padding: 10px 20px;
      background: rgba(255, 255, 255, 0.05);
      border: 1px solid var(--line);
      border-radius: 30px;
      font-size: 14px;
      text-decoration: none;
      color: var(--text);
      margin-bottom: 40px;
      transition: all 0.3s;
    }

    .hero-tag:hover {
      background: rgba(255, 255, 255, 0.1);
      border-color: var(--brand);
    }

    .hero-title {
      font-size: clamp(60px, 10vw, 140px);
      font-weight: 700;
      line-height: 1.1;
      margin-bottom: 30px;
    }

    .hero-subtitle {
      font-size: clamp(18px, 2vw, 24px);
      color: var(--gray);
      max-width: 760px;
      margin-bottom: 50px;
      line-height: 1.5;
    }

    .hero-subtitle span {
      color: var(--brand);
      font-weight: 600;
    }

    .arrow-down {
      width: 120px;
      height: auto;
      opacity: 0.6;
      margin: 40px 0;
    }

    .hero-badge {
      display: flex;
      align-items: flex-start;
      gap: 15px;
    }

    .badge-number {
      font-size: 72px;
      font-weight: 700;
      line-height: 1;
    }

    .badge-text {
      font-size: 16px;
      color: var(--gray);
      line-height: 1.3;
      padding-top: 8px;
    }

    /* Section Spacing */
    .pt-140 { padding-top: 140px; }
    .pb-140 { padding-bottom: 140px; }
    .pt-130 { padding-top: 130px; }
    .pb-150 { padding-bottom: 150px; }
    .pt-100 { padding-top: 100px; }
    .pb-110 { padding-bottom: 110px; }

    .trusted-strip {
      background: #fff;
      color: #111;
      border-top: 1px solid #e8e8e8;
      border-bottom: 1px solid #e8e8e8;
    }

    .trusted-strip .sec-sub-title {
      color: #444;
      text-align: center;
      margin-bottom: 10px;
    }

    .trusted-strip .sec-title {
      text-align: center;
      color: #111;
      margin-bottom: 36px;
    }

    .trusted-logo-grid {
      display: grid;
      grid-template-columns: repeat(6, minmax(120px, 1fr));
      gap: 14px;
      align-items: center;
    }

    .trusted-logo-item {
      border: 1px solid #e6e6e6;
      border-radius: 10px;
      background: #fff;
      min-height: 84px;
      display: grid;
      place-items: center;
      padding: 10px;
    }

    .trusted-logo-item img {
      max-height: 40px;
      width: auto;
      object-fit: contain;
    }

    /* About Section */
    .about-section {
      border-bottom: 1px solid var(--line);
    }

    .about-grid {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 60px;
      align-items: center;
    }

    .about-img img {
      width: 100%;
      height: auto;
      border-radius: 8px;
    }

    .sec-sub-title {
      font-size: 16px;
      color: var(--gray);
      margin-bottom: 15px;
      text-transform: uppercase;
      letter-spacing: 1px;
    }

    .sec-title {
      font-size: clamp(32px, 4vw, 48px);
      font-weight: 600;
      line-height: 1.3;
      margin-bottom: 30px;
    }

    .sec-text p {
      font-size: 16px;
      color: var(--gray);
      line-height: 1.8;
      margin-bottom: 30px;
    }

    .btn {
      display: inline-flex;
      align-items: center;
      gap: 10px;
      padding: 14px 32px;
      background: var(--brand);
      color: var(--bg);
      text-decoration: none;
      font-weight: 600;
      font-size: 15px;
      border-radius: 4px;
      transition: all 0.3s;
    }

    .btn:hover {
      transform: translateY(-2px);
      box-shadow: 0 10px 30px rgba(255, 255, 255, 0.2);
    }

    /* Services Section */
    .services-section {
      border-bottom: 1px solid var(--line);
      position: relative;
      background: #030303;
    }

    .services-intro {
      text-align: center;
      max-width: 800px;
      margin: 0 auto 80px;
    }

    .services-intro p {
      font-size: 18px;
      color: var(--gray);
      margin-top: 20px;
    }

    .service-list {
      position: relative;
    }

    .service-item {
      display: grid;
      grid-template-columns: 1fr 2fr 180px;
      gap: 40px;
      padding: 50px 0;
      border-top: 1px solid var(--line);
      align-items: start;
      position: relative;
      transition: all 0.3s;
      isolation: isolate;
    }

    .service-item:hover {
      background: rgba(255, 255, 255, 0.02);
    }

    .service-item::after {
      content: "";
      position: absolute;
      right: 200px;
      top: 50%;
      transform: translateY(-50%);
      width: 220px;
      height: 140px;
      background-image: var(--service-bg);
      background-size: contain;
      background-position: center;
      background-repeat: no-repeat;
      opacity: 0;
      transition: opacity 0.3s ease;
      pointer-events: none;
      z-index: -1;
      filter: saturate(0.95) contrast(1.05);
    }

    .service-item:hover::after {
      opacity: 0.6;
    }

    .service-title {
      font-size: 40px;
      font-weight: 600;
      line-height: 1.2;
      color: var(--text);
      text-decoration: none;
      transition: color 0.3s;
    }

    .service-title:hover {
      color: var(--brand);
    }

    .service-content p {
      font-size: 16px;
      color: var(--gray);
      margin-bottom: 20px;
      line-height: 1.7;
      max-width: 62ch;
    }

    .service-content ul {
      list-style: none;
      padding: 0;
    }

    .service-content ul li {
      font-size: 14px;
      color: var(--gray);
      padding: 6px 0;
      line-height: 1.55;
    }

    .service-module {
      border: 1px solid rgba(255, 255, 255, 0.1);
      border-radius: 8px;
      background: rgba(255, 255, 255, 0.03);
      overflow: hidden;
    }

    .service-module summary {
      list-style: none;
      cursor: pointer;
      padding: 10px 14px;
      color: #d3d3d3;
      display: flex;
      align-items: center;
      justify-content: space-between;
      font-size: 14px;
      font-weight: 600;
    }

    .service-module summary::-webkit-details-marker {
      display: none;
    }

    .service-module summary::after {
      content: '+';
      color: #fff;
      font-size: 16px;
      line-height: 1;
      margin-left: 12px;
    }

    .service-module[open] summary::after {
      content: 'âˆ’';
    }

    .service-module ul {
      margin: 0;
      padding: 0 14px 12px;
    }

    .service-btn .btn {
      background: transparent;
      border: 1px solid var(--line);
      color: var(--text);
      min-width: 210px;
      justify-content: center;
    }

    .service-btn .btn:hover {
      background: var(--brand);
      color: var(--bg);
      border-color: var(--brand);
    }

    /* Portfolio Section */
    .portfolio-section {
      border-bottom: 1px solid var(--line);
      background: #020202;
    }

    .portfolio-section .container {
      max-width: 100%;
      padding-inline: 20px;
    }

    .portfolio-title {
      font-size: clamp(40px, 6vw, 72px);
      font-weight: 600;
      margin-bottom: 80px;
    }

    .portfolio-grid {
      display: grid;
      grid-template-columns: repeat(3, minmax(0, 1fr));
      gap: 10px;
    }

    .portfolio-card {
      position: relative;
      border: 1px solid var(--line);
      border-radius: 10px;
      overflow: hidden;
      background: #050505;
      text-decoration: none;
      color: var(--text);
    }

    .portfolio-thumb {
      width: 100%;
      height: 340px;
      object-fit: cover;
      display: block;
      background: #111;
      transition: transform 0.35s ease;
    }

    .portfolio-card:hover .portfolio-thumb {
      transform: scale(1.03);
    }

    .portfolio-card-title {
      padding: 18px 20px 6px;
      border-top: 1px solid rgba(255, 255, 255, 0.08);
      background: rgba(0, 0, 0, 0.92);
      font-size: 29px;
      font-weight: 600;
      line-height: 1.2;
      text-align: center;
    }

    .portfolio-proof {
      padding: 0 20px 18px;
      background: rgba(0, 0, 0, 0.92);
      font-size: 13px;
      color: var(--gray);
      line-height: 1.5;
      text-align: center;
    }

    /* Workflow Section */
    .workflow-section {
      border-bottom: 1px solid var(--line);
      padding: 120px 0;
      background: radial-gradient(circle at 50% 0%, #131313 0%, #080808 50%, #020202 100%);
    }

    .workflow-header {
      text-align: center;
      max-width: 840px;
      margin: 0 auto 48px;
    }

    .workflow-title {
      font-size: clamp(42px, 6vw, 84px);
      font-weight: 700;
      line-height: 1.08;
      margin-bottom: 14px;
    }

    .workflow-lead {
      color: var(--gray);
      font-size: clamp(16px, 2vw, 20px);
      line-height: 1.7;
    }

    .workflow-slider {
      position: relative;
      width: 100%;
      margin: 0 auto;
      overflow: visible;
    }

    .workflow-viewport {
      overflow: visible;
      border-radius: 0;
      border: 0;
      background: transparent;
      box-shadow: none;
      touch-action: auto;
      cursor: default;
    }

    .workflow-viewport.dragging {
      cursor: default;
    }

    .workflow-track {
      display: grid;
      grid-template-columns: repeat(2, minmax(0, 1fr));
      gap: 18px;
      will-change: auto;
      transition: none;
    }

    .workflow-slide {
      padding: 0;
      display: flex;
    }

    .workflow-item {
      width: 100%;
      border: 1px solid rgba(255, 255, 255, 0.09);
      border-radius: 14px;
      background: linear-gradient(145deg, rgba(18, 18, 18, 0.94), rgba(8, 8, 8, 0.94));
      padding: 18px;
      display: grid;
      grid-template-columns: 1.05fr 1.2fr;
      gap: 20px;
      align-items: start;
    }

    .workflow-item:hover {
      border-color: rgba(255, 255, 255, 0.22);
    }

    .workflow-media-wrap {
      min-width: 0;
    }

    .workflow-step {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      width: 34px;
      height: 34px;
      border-radius: 50%;
      border: 1px solid rgba(255, 255, 255, 0.34);
      color: #fff;
      font-size: 12px;
      font-weight: 700;
      margin-bottom: 12px;
    }

    .workflow-media {
      width: 100%;
      height: 300px;
      border-radius: 10px;
      overflow: hidden;
      border: 1px solid rgba(255, 255, 255, 0.1);
      margin-bottom: 0;
      background: #111;
    }

    .workflow-media img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      display: block;
      opacity: 0.94;
      transition: transform 0.35s ease;
    }

    .workflow-item:hover .workflow-media img {
      transform: scale(1.04);
    }

    .workflow-content {
      min-width: 0;
      display: flex;
      flex-direction: column;
      height: 100%;
    }

    .workflow-kicker {
      text-transform: uppercase;
      letter-spacing: 0.08em;
      font-size: 12px;
      color: #cfcfcf;
      margin-bottom: 8px;
      font-weight: 600;
    }

    .workflow-item h4 {
      font-size: clamp(24px, 3.4vw, 34px);
      margin-bottom: 10px;
      line-height: 1.22;
      color: #fff;
    }

    .workflow-copy {
      font-size: 14px;
      color: var(--gray);
      line-height: 1.7;
      margin-bottom: 14px;
      max-width: 60ch;
    }

    .workflow-tools {
      list-style: none;
      padding: 0;
      display: flex;
      flex-wrap: wrap;
      gap: 8px;
      margin-bottom: 18px;
    }

    .workflow-tools li {
      display: inline-block;
      padding: 6px 12px;
      background: rgba(255, 255, 255, 0.05);
      border: 1px solid var(--line);
      border-radius: 20px;
      font-size: 12px;
      color: #d8d8d8;
      line-height: 1;
    }

    .workflow-cta {
      margin-top: auto;
      display: inline-flex;
      align-items: center;
      justify-content: center;
      gap: 8px;
      width: fit-content;
      padding: 12px 18px;
      border-radius: 8px;
      border: 1px solid rgba(255, 255, 255, 0.4);
      text-decoration: none;
      color: #fff;
      font-size: 13px;
      font-weight: 600;
      letter-spacing: 0.01em;
      transition: all 0.25s ease;
      background: rgba(255, 255, 255, 0.03);
    }

    .workflow-cta:hover {
      background: #fff;
      color: #000;
      border-color: #fff;
      transform: translateY(-1px);
    }

    .workflow-controls {
      display: none;
    }

    .workflow-nav {
      width: 42px;
      height: 42px;
      border-radius: 999px;
      border: 1px solid rgba(255, 255, 255, 0.38);
      background: rgba(255, 255, 255, 0.03);
      color: #fff;
      font-size: 13px;
      cursor: pointer;
      transition: all 0.25s ease;
    }

    .workflow-nav:hover {
      background: rgba(255, 255, 255, 0.12);
      border-color: rgba(255, 255, 255, 0.65);
    }

    .workflow-nav:disabled {
      opacity: .35;
      cursor: not-allowed;
    }

    .workflow-dots {
      display: inline-flex;
      align-items: center;
      gap: 9px;
      margin: 0 6px;
    }

    .workflow-dot {
      width: 9px;
      height: 9px;
      border-radius: 999px;
      border: 0;
      background: rgba(255, 255, 255, 0.24);
      cursor: pointer;
      padding: 0;
      transition: transform 0.2s ease, background 0.2s ease;
    }

    .workflow-dot.active {
      background: #fff;
      transform: scale(1.18);
    }

    .workflow-progress {
      color: #bcbcbc;
      font-size: 12px;
      min-width: 72px;
      text-align: center;
    }

    .world-section,
    .price-section,
    .blog-section,
    .testimonial-section {
      border-bottom: 1px solid var(--line);
      padding: 120px 0;
      background: #020202;
    }

    .world-map-wrap {
      margin-top: 36px;
      border: 1px solid var(--line);
      border-radius: 14px;
      background: #0a0a0a;
      padding: 18px;
    }

    .world-map-stage {
      position: relative;
      background: #e3f2fd;
      border-radius: 10px;
      overflow: hidden;
      padding: 12px;
      min-height: 320px;
    }

    .world-map-stage img {
      width: 100%;
      display: block;
      border-radius: 8px;
      opacity: 1;
      transition: transform 0.35s ease;
    }

    .world-markers {
      position: absolute;
      inset: 12px;
      pointer-events: auto;
    }

    .map-point {
      position: absolute;
      transform: translate(-50%, -50%);
      cursor: default;
      z-index: 1;
    }

    .map-point:hover {
      z-index: 2;
    }

    .map-dot {
      position: relative;
      width: 11px;
      height: 11px;
      border-radius: 50%;
      background: #ff3b3b;
      border: 2px solid #fff;
      box-shadow: 0 0 0 0 rgba(255, 59, 59, 0.7);
      animation: worldPulse 2s ease-in-out infinite;
    }

    @keyframes worldPulse {
      0% { box-shadow: 0 0 0 0 rgba(255, 59, 59, 0.7); }
      70% { box-shadow: 0 0 0 12px rgba(255, 59, 59, 0); }
      100% { box-shadow: 0 0 0 0 rgba(255, 59, 59, 0); }
    }

    .map-label {
      position: absolute;
      left: 50%;
      bottom: 18px;
      transform: translateX(-50%);
      background: rgba(0, 0, 0, 0.82);
      color: #fff;
      border: 1px solid rgba(255, 255, 255, 0.2);
      border-radius: 6px;
      font-size: 11px;
      font-weight: 600;
      padding: 4px 7px;
      white-space: nowrap;
      opacity: 0;
      transition: opacity 0.2s ease;
      pointer-events: none;
    }

    .map-point:hover .map-label {
      opacity: 1;
    }

    .world-stat {
      margin-top: 16px;
      display: inline-block;
      padding: 10px 16px;
      border-radius: 999px;
      background: #efefef;
      color: #111;
      font-weight: 700;
      font-size: 14px;
    }

    .world-country-line {
      padding: 14px 8px 2px;
      color: #bdbdbd;
      font-size: 14px;
    }

    .world-stats-grid {
      display: grid;
      grid-template-columns: repeat(4, 1fr);
      gap: 14px;
      margin-top: 28px;
    }

    .world-stat-card {
      border: 1px solid var(--line);
      border-radius: 10px;
      padding: 18px 14px;
      text-align: center;
      background: #0a0a0a;
    }

    .world-stat-card h4 {
      font-size: clamp(30px, 4vw, 54px);
      line-height: 1;
      margin-bottom: 10px;
    }

    .world-stat-card p {
      font-size: 14px;
      color: var(--gray);
    }

    .price-grid {
      display: grid;
      grid-template-columns: 1.2fr 1fr;
      gap: 40px;
    }

    .faq-item {
      border-bottom: 1px solid var(--line);
      padding: 10px 0;
    }

    .faq-question {
      width: 100%;
      display: flex;
      align-items: center;
      justify-content: space-between;
      background: transparent;
      border: 0;
      color: var(--text);
      text-align: left;
      cursor: pointer;
      padding: 12px 0;
      font-size: 19px;
      font-weight: 600;
    }

    .faq-icon {
      position: relative;
      width: 20px;
      height: 20px;
      border: 1px solid rgba(255, 255, 255, 0.22);
      border-radius: 50%;
      flex-shrink: 0;
      transition: border-color 0.25s ease, background 0.25s ease;
    }

    .faq-icon::before,
    .faq-icon::after {
      content: "";
      position: absolute;
      top: 50%;
      left: 50%;
      background: var(--gray);
      transform: translate(-50%, -50%);
      transition: transform 0.25s ease, opacity 0.25s ease, background 0.25s ease;
    }

    .faq-icon::before {
      width: 9px;
      height: 1.6px;
    }

    .faq-icon::after {
      width: 1.6px;
      height: 9px;
    }

    .faq-question:hover .faq-icon {
      border-color: rgba(255, 255, 255, 0.65);
    }

    .faq-item.active .faq-icon {
      border-color: #fff;
      background: rgba(255, 255, 255, 0.08);
    }

    .faq-item.active .faq-icon::before,
    .faq-item.active .faq-icon::after {
      background: #fff;
    }

    .faq-item.active .faq-icon::after {
      transform: translate(-50%, -50%) scaleY(0);
      opacity: 0;
    }

    .faq-answer {
      max-height: 0;
      overflow: hidden;
      transition: max-height 0.34s ease;
    }

    .faq-item.active .faq-answer {
      max-height: 220px;
    }

    .faq-answer p {
      color: var(--gray);
      font-size: 14px;
      padding: 2px 0 14px;
      opacity: 0;
      transform: translateY(-4px);
      transition: opacity 0.22s ease, transform 0.22s ease;
    }

    .faq-item.active .faq-answer p {
      opacity: 1;
      transform: translateY(0);
    }

    .price-card {
      border: 1px solid var(--line);
      border-radius: 12px;
      padding: 22px;
      margin-bottom: 16px;
      background: linear-gradient(180deg, #111 0%, #0b0b0b 100%);
      cursor: pointer;
      transition: border-color 0.2s ease, transform 0.2s ease, background 0.2s ease, box-shadow 0.2s ease;
      position: relative;
      overflow: hidden;
    }

    .price-card::before {
      content: "";
      position: absolute;
      top: 0;
      left: 0;
      right: 0;
      height: 2px;
      background: linear-gradient(90deg, #666 0%, #fff 50%, #666 100%);
      opacity: 0.45;
      transition: opacity 0.2s ease;
    }

    .price-card:hover {
      transform: translateY(-2px);
      border-color: #555;
      box-shadow: 0 12px 34px rgba(0, 0, 0, 0.35);
    }

    .price-card:hover::before {
      opacity: 0.75;
    }

    .price-card.active {
      border-color: #fff;
      background: linear-gradient(180deg, #151515 0%, #101010 100%);
      box-shadow: 0 12px 34px rgba(0, 0, 0, 0.45);
    }

    .price-card.active::before {
      opacity: 1;
    }

    .price-card-head {
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 12px;
      margin-bottom: 8px;
    }

    .price-tag {
      border: 1px solid rgba(255, 255, 255, 0.22);
      border-radius: 999px;
      padding: 4px 10px;
      font-size: 11px;
      line-height: 1;
      letter-spacing: 0.08em;
      text-transform: uppercase;
      color: #c8c8c8;
      background: rgba(255, 255, 255, 0.04);
      white-space: nowrap;
    }

    .price-card.active .price-tag {
      color: #fff;
      border-color: rgba(255, 255, 255, 0.5);
      background: rgba(255, 255, 255, 0.1);
    }

    .price-card h4 {
      font-size: 22px;
      margin-bottom: 6px;
    }

    .price-card p {
      color: var(--gray);
      font-size: 14px;
      margin-bottom: 8px;
    }

    .price-amount {
      font-size: 18px;
      font-weight: 700;
      color: var(--text);
      margin-top: 4px;
    }

    .price-details {
      list-style: none;
      margin-top: 12px;
      padding-left: 0;
      max-height: 0;
      overflow: hidden;
      transition: max-height 0.28s ease;
    }

    .price-card.active .price-details {
      max-height: 200px;
    }

    .price-details li {
      color: var(--gray);
      font-size: 13px;
      padding: 3px 0;
    }

    .price-details li::before {
      content: "â€¢";
      color: #fff;
      margin-right: 8px;
      opacity: 0.65;
    }

    .mobile-app-section {
      border-bottom: 1px solid var(--line);
      padding: 120px 0;
      background: #030303;
    }

    .mobile-app-grid {
      display: grid;
      grid-template-columns: 1.2fr 1fr;
      gap: 36px;
      align-items: start;
    }

    .mobile-lead {
      color: var(--gray);
      font-size: 17px;
      line-height: 1.8;
      margin-bottom: 20px;
      max-width: 900px;
    }

    .mobile-feature-list {
      padding: 0;
      margin: 0;
      display: grid;
      gap: 10px;
    }

    .mobile-feature-item {
      border: 1px solid rgba(255, 255, 255, 0.1);
      border-radius: 8px;
      background: rgba(255, 255, 255, 0.03);
      overflow: hidden;
    }

    .mobile-feature-item summary {
      list-style: none;
      cursor: pointer;
      padding: 10px 14px;
      color: #d3d3d3;
      display: flex;
      align-items: center;
      justify-content: space-between;
      font-size: 14px;
    }

    .mobile-feature-item summary::-webkit-details-marker {
      display: none;
    }

    .mobile-feature-item summary::after {
      content: '+';
      color: #fff;
      font-size: 16px;
      line-height: 1;
      margin-left: 12px;
    }

    .mobile-feature-item[open] summary::after {
      content: 'âˆ’';
    }

    .mobile-feature-item p {
      margin: 0;
      padding: 0 14px 12px;
      color: #bdbdbd;
      font-size: 13px;
      line-height: 1.6;
    }

    .mobile-points {
      margin-top: 18px;
      display: flex;
      gap: 10px;
      flex-wrap: wrap;
    }

    .mobile-pill {
      border: 1px solid rgba(255, 255, 255, 0.2);
      border-radius: 999px;
      padding: 7px 12px;
      font-size: 12px;
      color: #f2f2f2;
      background: rgba(255, 255, 255, 0.04);
    }

    .mobile-side {
      border: 1px solid var(--line);
      border-radius: 12px;
      background: #0a0a0a;
      padding: 20px;
    }

    .mobile-side h4 {
      font-size: 20px;
      margin-bottom: 12px;
    }

    .mobile-side p {
      color: var(--gray);
      font-size: 14px;
      margin-bottom: 10px;
    }

    .mobile-steps {
      margin-top: 12px;
      display: grid;
      gap: 10px;
    }

    .mobile-step {
      display: grid;
      grid-template-columns: 34px 1fr;
      gap: 10px;
      align-items: start;
      border: 1px solid rgba(255, 255, 255, 0.08);
      border-radius: 8px;
      padding: 10px;
      background: rgba(255, 255, 255, 0.02);
    }

    .mobile-step-num {
      width: 24px;
      height: 24px;
      border-radius: 50%;
      border: 1px solid rgba(255, 255, 255, 0.35);
      display: grid;
      place-items: center;
      font-size: 12px;
      color: #fff;
      margin-top: 2px;
    }

    .mobile-step h5 {
      font-size: 14px;
      margin-bottom: 4px;
    }

    .mobile-step p {
      font-size: 13px;
      margin: 0;
      color: #bdbdbd;
    }

    .blog-grid {
      display: grid;
      grid-template-columns: repeat(2, 1fr);
      gap: 26px;
      margin-top: 34px;
    }

    .blog-card {
      border: 1px solid var(--line);
      border-radius: 10px;
      overflow: hidden;
      background: #090909;
    }

    .blog-card img {
      width: 100%;
      aspect-ratio: 16 / 10;
      object-fit: cover;
      display: block;
      transition: transform 0.35s ease;
      transform-origin: center;
    }

    .blog-card:hover img {
      transform: scale(1.04);
    }

    .blog-body {
      padding: 16px;
    }

    .blog-meta {
      font-size: 12px;
      color: var(--gray);
      margin-bottom: 8px;
    }

    .blog-title {
      font-size: 18px;
      line-height: 1.4;
      margin-bottom: 12px;
    }

    .testimonial-list {
      margin-top: 24px;
      display: grid;
      grid-template-columns: repeat(2, 1fr);
      gap: 22px;
    }

    .testimonial-card {
      border: 1px solid var(--line);
      border-radius: 12px;
      padding: 20px;
      background: #0a0a0a;
    }

    .testimonial-card p {
      color: #ddd;
      font-size: 15px;
      margin-bottom: 14px;
    }

    .testimonial-card h4 {
      font-size: 18px;
    }

    .testimonial-card span {
      display: block;
      margin-top: 4px;
      color: var(--gray);
      font-size: 13px;
    }

    /* Footer */
    footer {
      border-top: 1px solid var(--line);
      padding: 60px 0 30px;
    }

    .footer-content {
      display: grid;
      grid-template-columns: 2fr 1fr 1fr 1fr;
      gap: 60px;
      margin-bottom: 40px;
    }

    .footer-brand h2 {
      font-size: 32px;
      margin-bottom: 20px;
    }

    .footer-brand p {
      color: var(--gray);
      font-size: 15px;
      line-height: 1.7;
      max-width: 400px;
    }

    .footer-links h3 {
      font-size: 16px;
      margin-bottom: 20px;
      text-transform: uppercase;
      letter-spacing: 1px;
    }

    .footer-links ul {
      list-style: none;
    }

    .footer-links ul li {
      margin-bottom: 12px;
    }

    .footer-links ul li a {
      color: var(--gray);
      text-decoration: none;
      font-size: 14px;
      transition: color 0.3s;
    }

    .footer-links ul li a:hover {
      color: var(--brand);
    }

    .footer-bottom {
      padding-top: 30px;
      border-top: 1px solid var(--line);
      text-align: center;
      color: var(--gray);
      font-size: 14px;
    }

    /* Responsive */

    @media (max-width: 1024px) {
      .about-grid,
      .service-item {
        grid-template-columns: 1fr;
      }

      .workflow-track {
        grid-template-columns: 1fr;
        gap: 14px;
      }

      .workflow-slide {
        padding: 0;
      }

      .workflow-item {
        grid-template-columns: 1fr;
      }

      .workflow-media {
        height: 260px;
      }

      .portfolio-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
      }

      .portfolio-section .container {
        max-width: 100%;
        padding-inline: 12px;
      }

      header .container,
      .trusted-strip .container,
      .workflow-section .container,
      .world-section .container {
        max-width: 100%;
        padding-inline: 12px;
      }

      .service-item::after {
        display: none;
      }

      .price-grid,
      .mobile-app-grid,
      .blog-grid,
      .testimonial-list,
      .world-stats-grid {
        grid-template-columns: 1fr;
      }

      .footer-content {
        grid-template-columns: 1fr 1fr;
      }
    }

    @media (max-width: 768px) {
      .nav-links {
        display: none;
      }

      .workflow-title {
        margin-bottom: 12px;
      }

      .workflow-viewport {
        border-radius: 0;
      }

      .workflow-item {
        padding: 14px;
      }

      .workflow-media {
        height: 210px;
      }

      .workflow-controls {
        display: none;
      }

      .workflow-progress {
        display: none;
      }

      .portfolio-grid {
        grid-template-columns: 1fr;
      }

      .portfolio-thumb {
        height: 300px;
      }

      .portfolio-card-title {
        font-size: 24px;
      }

      .trusted-logo-grid {
        grid-template-columns: repeat(2, 1fr);
      }
