:root {
      --bg: #FFFFFF;
      --bg2: #F9F9FA;
      --accent: #4f46e5;
      --accent2: #6366f1;
      --grad: linear-gradient(135deg, #4f46e5, #6366f1);
      --text: #111111;
      --muted: #6B7280;
      --radius: 24px;
      --shadow: 0 4px 12px rgba(99,102,241,0.15);
    }

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

    html, body {
      font-family: "Montserrat", sans-serif;
      color: var(--text);
      background: var(--bg);
      line-height: 1.6;
    }

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

    button {
      font-family: "Montserrat", sans-serif;
      cursor: pointer;
    }

    /* HEADER & NAV */
    .wrapper {
      background: linear-gradient(160deg, #0f0c29 0%, #302b63 50%, #24243e 100%);
    }

    .header {
      display: flex;
      flex-wrap: wrap;
      justify-content: space-between;
      align-items: center;
      padding: 16px 8%;
      max-width: 1400px;
      margin: 0 auto;
    }

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

    .logo a {
      display: flex;
      align-items: center;
    }

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

    .logo-text p {
      color: #fff;
      margin: 0;
    }

    .logo-text p:first-child {
      font-weight: 800;
      font-size: 20px;
    }

    .logo-text p:last-child {
      font-size: 11px;
      color: rgba(255, 255, 255, 0.7);
    }

    .nav-right {
      display: flex;
      align-items: center;
      gap: 20px;
    }

    .order-btn {
      padding: 12px 28px;
      font-size: 15px;
      font-weight: 700;
      border: none;
      border-radius: 12px;
      color: #fff;
      background: var(--grad);
      box-shadow: 0 4px 10px rgba(99, 102, 241, 0.4);
      cursor: pointer;
      transition: all 0.25s;
      font-family: "Montserrat", sans-serif;
    }

    .order-btn:hover {
      transform: translateY(-2px);
      box-shadow: 0 6px 16px rgba(99, 102, 241, 0.6);
    }

    /* LANGUAGE DROPDOWN */
    .language {
      position: relative;
    }

    .lang-toggle {
      display: flex;
      align-items: center;
      gap: 6px;
      background: rgba(255, 255, 255, 0.12);
      border: 1px solid rgba(255, 255, 255, 0.2);
      color: rgba(255, 255, 255, 0.9);
      padding: 8px 14px;
      border-radius: 8px;
      font-size: 13px;
      font-weight: 600;
      cursor: pointer;
      transition: all 0.2s;
      font-family: "Montserrat", sans-serif;
    }

    .lang-toggle:hover {
      background: rgba(255, 255, 255, 0.18);
    }

    .caret {
      display: inline-block;
      width: 8px;
      height: 8px;
      border-right: 2px solid rgba(255, 255, 255, 0.9);
      border-bottom: 2px solid rgba(255, 255, 255, 0.9);
      transform: rotate(-45deg);
      transition: transform 0.25s;
    }

    .lang-menu {
      position: absolute;
      top: 100%;
      right: 0;
      margin-top: 6px;
      background: #fff;
      border-radius: 12px;
      border: 1px solid #e5e5e5;
      box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
      list-style: none;
      opacity: 0;
      visibility: hidden;
      transform: translateY(-8px);
      transition: all 0.2s;
      z-index: 100;
      min-width: 200px;
    }

    .lang-menu.open {
      opacity: 1;
      visibility: visible;
      transform: translateY(0);
    }

    .lang-menu li {
      border-bottom: 1px solid #f0f0f0;
    }

    .lang-menu li:last-child {
      border-bottom: none;
    }

    .lang-menu a {
      display: block;
      padding: 12px 16px;
      color: #111;
      font-size: 14px;
      font-weight: 500;
      transition: background 0.2s;
    }

    .lang-menu a:hover {
      background: #F9F9FA;
    }

    /* HERO / BANNER */
    .banner {
      padding: 56px 8% 72px;
      text-align: center;
      color: #fff;
    }

    .hero-badge {
      display: inline-block;
      background: rgba(255, 255, 255, 0.12);
      color: rgba(255, 255, 255, 0.9);
      border: 1px solid rgba(255, 255, 255, 0.2);
      border-radius: 100px;
      padding: 6px 18px;
      font-size: 13px;
      font-weight: 600;
      margin-bottom: 24px;
    }

    .banner-header h1 {
      font-size: 56px;
      font-weight: 900;
      color: #fff;
      margin: 0 0 20px;
      line-height: 1.15;
    }

    .banner-header p {
      font-size: 20px;
      color: rgba(255, 255, 255, 0.75);
      margin: 0 auto 40px;
      max-width: 600px;
    }

    .banner-buttons {
      display: flex;
      gap: 16px;
      justify-content: center;
      flex-wrap: wrap;
      margin-bottom: 60px;
    }

    .btn-secondary {
      padding: 12px 28px;
      font-size: 15px;
      font-weight: 700;
      border: 2px solid rgba(255, 255, 255, 0.4);
      border-radius: 12px;
      color: #fff;
      text-decoration: none;
      transition: all 0.25s;
      background: transparent;
      cursor: pointer;
      font-family: "Montserrat", sans-serif;
      display: inline-block;
    }

    .btn-secondary:hover {
      background: rgba(255, 255, 255, 0.1);
      border-color: rgba(255, 255, 255, 0.6);
    }

    .hero-stats {
      display: flex;
      align-items: center;
      justify-content: center;
      gap: 40px;
    }

    .stat-item {
      text-align: center;
    }

    .stat-num {
      display: block;
      font-size: 36px;
      font-weight: 900;
      color: #fff;
    }

    .stat-label {
      display: block;
      font-size: 13px;
      color: rgba(255, 255, 255, 0.6);
      margin-top: 4px;
      font-weight: 500;
    }

    .stat-sep {
      width: 1px;
      height: 48px;
      background: rgba(255, 255, 255, 0.2);
    }

    /* SECTIONS */
    .section-white {
      background: #fff;
      padding: 56px 8%;
    }

    .section-grey {
      background: #F9F9FA;
      padding: 56px 8%;
    }

    .section-container {
      max-width: 1200px;
      margin: 0 auto;
    }

    .adv {
      text-align: center;
      margin-bottom: 56px;
    }

    .adv h2 {
      font-size: 48px;
      font-weight: 900;
      color: #111;
      margin: 0 0 12px;
    }

    .adv p {
      font-size: 20px;
      color: #6B7280;
      margin: 0;
    }

    /* SERVICES GRID */
    .services-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
      gap: 28px;
    }

    .service-card {
      background: #fff;
      border-radius: 24px;
      padding: 32px;
      border: 1px solid #f0f0f0;
      box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06), 0 8px 16px rgba(0, 0, 0, 0.04);
      transition: transform 0.2s, box-shadow 0.2s;
    }

    .service-card:hover {
      transform: translateY(-6px);
      box-shadow: 0 6px 20px rgba(99, 102, 241, 0.12), 0 16px 32px rgba(0, 0, 0, 0.08);
    }

    .card-icon {
      width: 52px;
      height: 52px;
      border-radius: 14px;
      background: linear-gradient(135deg, rgba(79, 70, 229, 0.1), rgba(99, 102, 241, 0.15));
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 26px;
      margin-bottom: 20px;
    }

    .service-card h3 {
      font-size: 18px;
      font-weight: 700;
      margin: 0 0 10px;
      color: #111;
    }

    .service-card p {
      font-size: 15px;
      color: #6B7280;
      line-height: 1.65;
      margin: 0;
    }

    /* PAIN GRID */
    .pain-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
      gap: 24px;
    }

    .pain-card {
      background: #fff;
      border-radius: 24px;
      padding: 28px;
      border: 1px solid #f0f0f0;
      box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
      transition: transform 0.2s;
    }

    .pain-card:hover {
      transform: translateY(-4px);
    }

    .pain-card h3 {
      font-size: 18px;
      font-weight: 700;
      margin: 0 0 10px;
    }

    .pain-card p {
      font-size: 15px;
      color: #6B7280;
      margin: 0;
      line-height: 1.65;
    }

    /* ABOUT SECTION */
    .about-inner {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 60px;
      align-items: center;
    }

    .section-badge {
      display: inline-block;
      background: #F9F9FA;
      color: var(--accent);
      border: 1px solid rgba(79, 70, 229, 0.2);
      border-radius: 100px;
      padding: 5px 16px;
      font-size: 12px;
      font-weight: 700;
      text-transform: uppercase;
      letter-spacing: 0.06em;
      margin-bottom: 16px;
    }

    .about-text h2 {
      font-size: 36px;
      font-weight: 800;
      margin: 0 0 16px;
    }

    .about-text p {
      font-size: 17px;
      color: #6B7280;
      line-height: 1.75;
      margin: 0 0 24px;
    }

    .social-links {
      display: flex;
      gap: 16px;
      flex-wrap: wrap;
    }

    .social-links a {
      color: var(--accent);
      font-weight: 600;
      font-size: 14px;
      text-decoration: none;
      transition: color 0.2s;
    }

    .social-links a:hover {
      text-decoration: underline;
    }

    .about-stats {
      display: flex;
      flex-direction: column;
      gap: 16px;
    }

    .about-stat-card {
      background: #F9F9FA;
      border-radius: 16px;
      padding: 20px 24px;
      display: flex;
      align-items: center;
      gap: 20px;
      border: 1px solid rgba(79, 70, 229, 0.08);
    }

    .asc-num {
      font-size: 40px;
      font-weight: 900;
      background: var(--grad);
      -webkit-background-clip: text;
      -webkit-text-fill-color: transparent;
      background-clip: text;
      min-width: 80px;
    }

    .about-stat-card span:last-child {
      font-size: 14px;
      font-weight: 600;
      color: #6B7280;
    }

    /* CLIENTS SECTION */
    .clients-slider-wrap {
      overflow: hidden;
      padding: 4px 0;
    }

    .clients-track {
      display: flex;
      gap: 20px;
      transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    }

    .client-card {
      flex: 0 0 calc((100% - 40px) / 3);
      background: #fff;
      border: 1px solid rgba(79, 70, 229, 0.12);
      border-radius: 20px;
      padding: 24px 20px 18px;
      display: flex;
      flex-direction: column;
      align-items: center;
      gap: 10px;
      box-shadow: 0 2px 8px rgba(0,0,0,0.05);
      transition: transform 0.2s, box-shadow 0.2s, border-color 0.2s;
      text-align: center;
      min-width: 0;
    }

    .client-card:hover {
      transform: translateY(-4px);
      box-shadow: 0 8px 24px rgba(99,102,241,0.12);
      border-color: rgba(79,70,229,0.25);
    }

    .client-logo {
      width: 48px;
      height: 48px;
      border-radius: 10px;
      object-fit: contain;
      background: #f5f5f5;
      padding: 4px;
    }

    .client-logo-placeholder {
      font-size: 32px;
      line-height: 1;
      width: 48px;
      height: 48px;
      display: flex;
      align-items: center;
      justify-content: center;
    }

    .client-name {
      font-size: 14px;
      font-weight: 700;
      color: #111;
      line-height: 1.3;
    }

    .client-stars {
      font-size: 13px;
      color: #f59e0b;
      letter-spacing: 1px;
      line-height: 1;
    }

    .client-location {
      font-size: 12px;
      color: #4f46e5;
      font-weight: 600;
    }

    .client-country {
      font-size: 12px;
      color: #6B7280;
      font-weight: 500;
    }

    .slider-controls {
      display: flex;
      align-items: center;
      justify-content: center;
      gap: 16px;
      margin-top: 24px;
    }

    .slider-dots {
      display: flex;
      gap: 8px;
    }

    .slider-dot {
      width: 8px;
      height: 8px;
      border-radius: 50%;
      background: #e0e0e0;
      border: none;
      cursor: pointer;
      padding: 0;
      transition: background 0.3s, transform 0.3s;
    }

    .slider-dot.active {
      background: var(--accent);
      transform: scale(1.35);
    }

    .slider-arrow {
      width: 40px;
      height: 40px;
      border-radius: 50%;
      border: 1px solid rgba(79,70,229,0.2);
      background: #fff;
      color: var(--accent);
      font-size: 18px;
      cursor: pointer;
      display: flex;
      align-items: center;
      justify-content: center;
      transition: all 0.2s;
      padding: 0;
      line-height: 1;
    }

    .slider-arrow:hover {
      background: var(--accent);
      color: #fff;
      border-color: var(--accent);
    }

    @media (max-width: 900px) {
      .client-card { flex: 0 0 calc((100% - 20px) / 2); }
    }

    @media (max-width: 560px) {
      .client-card { flex: 0 0 100%; }
    }


    /* PRICING SECTION */
    .pricing-grid {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 24px;
      max-width: 860px;
      margin: 0 auto;
    }

    .pricing-card {
      background: #fff;
      border: 1.5px solid rgba(79,70,229,0.15);
      border-radius: 24px;
      padding: 36px 32px 32px;
      display: flex;
      flex-direction: column;
      gap: 24px;
      position: relative;
      transition: box-shadow 0.2s;
    }

    .pricing-card:hover {
      box-shadow: 0 8px 32px rgba(79,70,229,0.10);
    }

    .pricing-card--featured {
      border-color: var(--accent);
      box-shadow: 0 4px 24px rgba(79,70,229,0.13);
      background: linear-gradient(160deg, #faf9ff 0%, #fff 100%);
    }

    .pricing-badge {
      position: absolute;
      top: -14px;
      left: 50%;
      transform: translateX(-50%);
      background: var(--accent);
      color: #fff;
      font-size: 12px;
      font-weight: 700;
      padding: 4px 16px;
      border-radius: 100px;
      white-space: nowrap;
      letter-spacing: 0.5px;
    }

    .pricing-top {
      display: flex;
      flex-direction: column;
      gap: 8px;
    }

    .pricing-name {
      font-size: 20px;
      font-weight: 800;
      color: #111;
    }

    .pricing-price {
      display: flex;
      align-items: baseline;
      gap: 4px;
      margin: 4px 0;
    }

    .pricing-from {
      font-size: 13px;
      color: #888;
      font-weight: 500;
    }

    .pricing-amount {
      font-size: 48px;
      font-weight: 900;
      color: var(--accent);
      line-height: 1;
    }

    .pricing-period {
      font-size: 15px;
      color: #888;
      font-weight: 500;
    }

    .pricing-desc {
      font-size: 14px;
      color: #555;
      line-height: 1.5;
      margin: 0;
    }

    .pricing-features {
      list-style: none;
      padding: 0;
      margin: 0;
      display: flex;
      flex-direction: column;
      gap: 10px;
      flex: 1;
    }

    .pricing-features li {
      font-size: 14px;
      color: #222;
      line-height: 1.4;
    }

    .pricing-features li.muted {
      color: #aaa;
    }

    .pricing-cta {
      width: 100%;
      padding: 14px;
      border-radius: 12px;
      font-size: 15px;
      font-weight: 700;
      cursor: pointer;
      border: none;
      transition: all 0.2s;
    }

    .pricing-cta.btn-primary {
      background: var(--accent);
      color: #fff;
    }

    .pricing-cta.btn-primary:hover {
      background: #4338ca;
      transform: translateY(-1px);
    }

    .pricing-cta.btn-secondary {
      background: transparent;
      color: var(--accent);
      border: 1.5px solid var(--accent);
    }

    .pricing-cta.btn-secondary:hover {
      background: var(--accent);
      color: #fff;
      transform: translateY(-1px);
    }

    .pricing-divider {
      height: 1px;
      background: rgba(79,70,229,0.1);
      margin: 0 -4px;
    }

    .pricing-card--featured .pricing-divider {
      background: rgba(79,70,229,0.2);
    }

    .feature-limit {
      font-size: 14px;
      color: #888;
      background: #f9f9f9;
      border-radius: 8px;
      padding: 6px 10px;
      margin-top: 4px;
    }

    .feature-highlight {
      font-size: 14px;
      color: var(--accent);
      font-weight: 600;
      background: rgba(79,70,229,0.06);
      border-radius: 8px;
      padding: 6px 10px;
      margin-top: 4px;
    }

    .pricing-note {
      text-align: center;
      font-size: 13px;
      color: #777;
      margin-top: 28px;
      max-width: 620px;
      margin-left: auto;
      margin-right: auto;
      line-height: 1.6;
    }

    @media (max-width: 700px) {
      .pricing-grid { grid-template-columns: 1fr; }
      .pricing-amount { font-size: 36px; }
      .pricing-card { padding: 28px 20px 24px; }
    }

        /* FAQ SECTION */
    .faq-list {
      display: flex;
      flex-direction: column;
      gap: 8px;
    }

    .faq-item {
      border-radius: 16px;
      border: 1px solid #f0f0f0;
      overflow: hidden;
    }

    .faq-q {
      width: 100%;
      text-align: left;
      padding: 20px 24px;
      background: #fff;
      border: none;
      cursor: pointer;
      font-size: 16px;
      font-weight: 600;
      color: #111;
      font-family: "Montserrat", sans-serif;
      display: flex;
      justify-content: space-between;
      align-items: center;
      transition: background 0.2s;
    }

    .faq-q::after {
      content: "＋";
      font-size: 20px;
      color: var(--accent);
      flex-shrink: 0;
    }

    .faq-item.open .faq-q::after {
      content: "－";
    }

    .faq-q:hover {
      background: #F9F9FA;
    }

    .faq-a {
      max-height: 0;
      overflow: hidden;
      transition: max-height 0.35s ease;
    }

    .faq-item.open .faq-a {
      max-height: 300px;
    }

    .faq-a p {
      padding: 0 24px 20px;
      margin: 0;
      color: #6B7280;
      font-size: 15px;
      line-height: 1.7;
    }

    /* CTA SECTION */
    .cta-section {
      background: linear-gradient(135deg, #0f0c29, #302b63);
      padding: 56px 8%;
    }

    .cta-section h2 {
      font-size: 40px;
      font-weight: 900;
      color: #fff;
      margin: 0 0 16px;
    }

    .cta-section p {
      font-size: 18px;
      color: rgba(255, 255, 255, 0.75);
      margin: 0 0 40px;
    }

    /* DIVIDER */
    .divider {
      background: linear-gradient(to right, #4f46e5 0%, #6366f1 50%, #00B8B4 100%);
      width: 100%;
      height: 4px;
    }

    /* FOOTER */
    .footer {
      background: #0a0818;
      border-top: 1px solid rgba(255,255,255,0.07);
      padding: 20px 8%;
      display: flex;
      flex-wrap: wrap;
      align-items: center;
      justify-content: space-between;
      font-size: 14px;
      color: rgba(255,255,255,0.35);
    }

    .footer-links a {
      color: rgba(165,180,252,0.75);
      text-decoration: none;
      font-weight: 600;
      transition: color 0.2s;
    }

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

    /* CONTACT SECTION */
    .contact-section {
      background: linear-gradient(160deg, #0f0c29 0%, #302b63 55%, #24243e 100%);
      padding: 56px 8%;
      position: relative;
      overflow: hidden;
    }

    .contact-section::before {
      content: '';
      position: absolute;
      top: -120px;
      right: -120px;
      width: 420px;
      height: 420px;
      background: radial-gradient(circle, rgba(99,102,241,0.18) 0%, transparent 70%);
      pointer-events: none;
    }

    .contact-section-label {
      font-size: 12px;
      color: rgba(165, 180, 252, 0.9);
      font-weight: 700;
      letter-spacing: 2px;
      text-transform: uppercase;
      margin-bottom: 12px;
    }

    .contact-section h2 {
      font-size: 38px;
      font-weight: 900;
      color: #fff;
      margin-bottom: 48px;
    }

    .contact-section-grid {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 60px;
      align-items: start;
    }

    .contact-info-col h3 {
      font-size: 18px;
      font-weight: 700;
      color: #fff;
      margin-bottom: 12px;
    }

    .contact-info-col p {
      font-size: 15px;
      color: rgba(255,255,255,0.6);
      line-height: 1.7;
      margin-bottom: 28px;
    }

    .contact-email-row {
      display: flex;
      align-items: center;
      gap: 10px;
      font-size: 15px;
      margin-bottom: 36px;
    }

    .contact-email-row a {
      color: #a5b4fc;
      text-decoration: none;
      font-weight: 600;
      transition: color 0.2s;
    }

    .contact-email-row a:hover { color: #fff; }

    .contact-social-row {
      display: flex;
      gap: 12px;
    }

    .contact-social-btn {
      display: flex;
      align-items: center;
      gap: 8px;
      background: rgba(255,255,255,0.08);
      border: 1px solid rgba(255,255,255,0.18);
      padding: 11px 18px;
      border-radius: 12px;
      color: rgba(255,255,255,0.85);
      text-decoration: none;
      font-size: 14px;
      font-weight: 600;
      transition: all 0.2s;
    }

    .contact-social-btn:hover {
      background: rgba(255,255,255,0.15);
      border-color: rgba(255,255,255,0.4);
      color: #fff;
    }

    .contact-form-card {
      background: #fff;
      border: 1px solid rgba(79,70,229,0.12);
      box-shadow: 0 8px 40px rgba(79,70,229,0.08);
      border-radius: 20px;
      padding: 36px;
    }

    .cf-group {
      margin-bottom: 18px;
    }

    .cf-group label {
      display: block;
      font-size: 12px;
      font-weight: 700;
      color: #111;
      margin-bottom: 8px;
      text-transform: uppercase;
      letter-spacing: 0.5px;
    }

    .cf-group input,
    .cf-group textarea {
      width: 100%;
      background: #f8f7ff;
      border: 1px solid rgba(79,70,229,0.15);
      color: #111;
      border-radius: 12px;
      padding: 13px 15px;
      font-family: "Montserrat", sans-serif;
      font-size: 14px;
      transition: all 0.2s;
      box-sizing: border-box;
    }

    .cf-group input:focus,
    .cf-group textarea:focus {
      outline: none;
      border-color: var(--accent);
      box-shadow: 0 0 0 3px rgba(79,70,229,0.1);
    }

    .cf-group textarea {
      resize: vertical;
      min-height: 110px;
    }

    .cf-check {
      display: flex;
      align-items: center;
      gap: 10px;
      font-size: 13px;
      color: #6B7280;
      margin-bottom: 20px;
    }

    .cf-check input[type="checkbox"] {
      width: 16px;
      height: 16px;
      accent-color: var(--accent);
      cursor: pointer;
      flex-shrink: 0;
    }

    .cf-submit {
      width: 100%;
      background: var(--grad);
      color: #fff;
      padding: 15px;
      border: none;
      border-radius: 12px;
      font-weight: 700;
      font-size: 15px;
      cursor: pointer;
      font-family: "Montserrat", sans-serif;
      transition: all 0.2s;
      box-shadow: 0 4px 12px rgba(99,102,241,0.3);
    }

    .cf-submit:hover {
      transform: translateY(-2px);
      box-shadow: 0 8px 20px rgba(99,102,241,0.4);
    }

    .cf-success {
      display: none;
      background: rgba(74,222,128,0.12);
      border: 1px solid rgba(74,222,128,0.3);
      color: #16a34a;
      padding: 14px;
      border-radius: 12px;
      margin-bottom: 18px;
      font-size: 14px;
      font-weight: 600;
      text-align: center;
    }

    .cf-success.show { display: block; }

    @media (max-width: 768px) {
      .contact-section-grid { grid-template-columns: 1fr; gap: 40px; }
      .contact-section h2 { font-size: 28px; }
    }

    /* MODAL */
    .modal {
      position: fixed;
      inset: 0;
      display: none;
      align-items: center;
      justify-content: center;
      z-index: 2000;
    }

    .modal.show {
      display: flex;
    }

    .modal__backdrop {
      position: absolute;
      inset: 0;
      background: rgba(0, 0, 0, 0.55);
      backdrop-filter: blur(4px);
    }

    .modal__content {
      position: relative;
      z-index: 1;
      width: min(92vw, 720px);
      background: #fff;
      border-radius: 24px;
      box-shadow: 0 16px 32px rgba(0, 0, 0, 0.12), 0 6px 14px rgba(0, 0, 0, 0.08);
      overflow: hidden;
      max-height: 90vh;
      overflow-y: auto;
    }

    .modal__close {
      position: absolute;
      top: 12px;
      right: 12px;
      width: 40px;
      height: 40px;
      border-radius: 10px;
      border: none;
      cursor: pointer;
      background: rgba(255, 255, 255, 0.2);
      color: #fff;
      font-size: 22px;
      line-height: 1;
      transition: background 0.2s;
      font-family: "Montserrat", sans-serif;
    }

    .modal__close:hover {
      background: rgba(255, 255, 255, 0.3);
    }

    .modal__head {
      padding: 28px 28px 24px;
      color: #fff;
      background: var(--grad);
    }

    .modal__head h2 {
      margin: 0 0 6px;
      font-weight: 800;
      font-size: 24px;
    }

    .modal__head p {
      margin: 0;
      opacity: 0.9;
      font-size: 15px;
    }

    .form {
      padding: 24px 28px 28px;
    }

    .form__row {
      display: flex;
      flex-direction: column;
      gap: 6px;
      margin-bottom: 16px;
    }

    .form label {
      font-weight: 600;
      color: #111;
      font-size: 14px;
    }

    .form input[type="text"],
    .form input[type="email"],
    .form select {
      padding: 12px 14px;
      font-size: 15px;
      border: 1px solid #e6e6e6;
      border-radius: 12px;
      outline: none;
      background: #fff;
      font-family: "Montserrat", sans-serif;
      color: #111;
    }

    .form input:focus,
    .form select:focus {
      border-color: #4f46e5;
      box-shadow: 0 0 0 3px rgba(99, 102, 241, 0.15);
    }

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

    .form__check {
      display: flex;
      align-items: center;
      gap: 10px;
      margin: 8px 0 16px;
      color: #111;
      font-size: 14px;
      cursor: pointer;
    }

    .form__check input[type="checkbox"] {
      width: 18px;
      height: 18px;
      cursor: pointer;
      accent-color: var(--accent);
    }

    .form__check a {
      color: #4f46e5;
      text-decoration: underline;
    }

    .submit-btn {
      width: 100%;
      background: var(--grad);
      color: #fff;
      border: none;
      border-radius: 12px;
      padding: 14px 16px;
      font-weight: 700;
      cursor: pointer;
      transition: transform 0.2s, box-shadow 0.2s;
      box-shadow: 0 4px 10px rgba(99, 102, 241, 0.4);
      font-family: "Montserrat", sans-serif;
      font-size: 16px;
    }

    .submit-btn:hover {
      transform: translateY(-2px);
      box-shadow: 0 6px 16px rgba(99, 102, 241, 0.6);
    }

    .form__note {
      color: #6B7280;
      font-size: 13px;
      margin: 10px 0 0;
      text-align: center;
    }

    .form__success {
      padding: 40px 28px;
      text-align: center;
    }

    .form__success h3 {
      margin: 0 0 8px;
      font-size: 22px;
      font-weight: 800;
    }

    .form__success p {
      color: #6B7280;
      margin: 0 0 20px;
    }

    .form__actions {
      display: flex;
      gap: 12px;
      justify-content: center;
    }

    .btn-link {
      display: inline-block;
      padding: 10px 20px;
      border-radius: 10px;
      background: rgba(99, 102, 241, 0.08);
      color: #111;
      border: none;
      cursor: pointer;
      font-family: "Montserrat", sans-serif;
      font-weight: 600;
      transition: background 0.2s;
    }

    .btn-link:hover {
      background: rgba(99, 102, 241, 0.16);
    }

    .hp {
      position: absolute;
      left: -10000px;
      opacity: 0;
      pointer-events: none;
    }

    .body--lock {
      overflow: hidden;
    }

    /* RESPONSIVE */
    @media (max-width: 768px) {
      .about-inner {
        grid-template-columns: 1fr;
      }

      .banner-header h1 {
        font-size: 36px;
      }

      .adv h2 {
        font-size: 32px;
      }

      .hero-stats {
        gap: 20px;
      }

      .stat-num {
        font-size: 28px;
      }

      .cta-section h2 {
        font-size: 28px;
      }
    }

    @media (max-width: 576px) {
      .header {
        padding: 12px 4%;
      }

      .banner {
        padding: 32px 4% 40px;
      }

      .banner-header h1 {
        font-size: 28px;
      }

      .banner-header p {
        font-size: 16px;
        margin-bottom: 24px;
      }

      .banner-buttons {
        flex-direction: column;
        gap: 12px;
      }

      .order-btn,
      .btn-secondary {
        width: 100%;
      }

      .hero-stats {
        flex-direction: column;
        gap: 24px;
      }

      .stat-sep {
        display: none;
      }

      .section-white,
      .section-grey {
        padding: 32px 4%;
      }

      .adv {
        margin-bottom: 32px;
      }

      .adv h2 {
        font-size: 24px;
      }

      .adv p {
        font-size: 16px;
      }

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

      .service-card {
        padding: 24px;
      }

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

      .modal__content {
        width: min(96vw, 560px);
      }

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

      .form {
        padding: 20px 16px;
      }

      .modal__head {
        padding: 20px 16px;
      }

      .nav-right {
        gap: 12px;
      }

      .lang-toggle {
        padding: 6px 10px;
        font-size: 12px;
      }

      .order-btn {
        padding: 10px 16px;
        font-size: 13px;
      }

      .cta-section {
        padding: 32px 4%;
      }

      .cta-section h2 {
        font-size: 22px;
        margin-bottom: 12px;
      }

      .cta-section p {
        font-size: 15px;
        margin-bottom: 24px;
      }
    }
