:root {
      --ink: #111827;
      --muted: #4f5968;
      --soft: #f4fbff;
      --paper: #f8fcff;
      --white: #ffffff;
      --line: #d7e1ea;
      --brand: #0f766e;
      --brand-dark: #115c51;
      --gold: #f7c66d;
      --rose: #dc6a5e;
      --blue: #2563eb;
      --shadow: 0 24px 70px rgba(15, 23, 42, 0.08);
      --page-grid:
        linear-gradient(rgba(92, 121, 148, 0.08) 1px, transparent 1px),
        linear-gradient(90deg, rgba(92, 121, 148, 0.08) 1px, transparent 1px);
      --page-grid-size: 24px 24px, 24px 24px;
    }

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

    img,
    picture,
    svg,
    video {
      max-width: 100%;
      height: auto;
      display: block;
    }

    html {
      scroll-behavior: smooth;
      scroll-padding-top: 96px;
    }

    body {
      font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
      background:
        var(--page-grid),
        var(--paper);
      background-size: var(--page-grid-size), auto;
      color: var(--ink);
      line-height: 1.6;
      padding-top: 76px;
    }

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

    .container {
      width: min(1140px, calc(100% - 40px));
      margin: auto;
    }

    header {
      position: fixed;
      top: 0;
      left: 0;
      right: 0;
      z-index: 90;
      width: 100%;
      background: #ffffff;
      border-bottom: 1px solid #dbe7e3;
      backdrop-filter: blur(16px);
    }

    .navbar {
      display: grid;
      grid-template-columns: auto minmax(0, 1fr) auto;
      align-items: center;
      min-height: 76px;
      gap: 20px;
    }

    .logo {
      display: inline-flex;
      align-items: center;
      justify-self: start;
      color: #172033;
    }

    .logo-img {
      display: block;
      width: 178px;
      max-width: 46vw;
      height: auto;
    }

    .nav-links {
      display: flex;
      align-items: center;
      gap: 22px;
      justify-content: center;
      justify-self: center;
      color: #354052;
      font-size: 15px;
      font-weight: 750;
    }

    .nav-links a {
      position: relative;
      transition: color 0.2s ease;
    }

    .nav-links a:hover {
      color: var(--brand);
    }

    .preview-link {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      min-height: 48px;
      padding: 0 28px;
      border: 2px solid var(--brand);
      border-radius: 999px;
      background: transparent;
      color: var(--brand);
      font-family: inherit;
      font-size: 13px;
      font-weight: 900;
      line-height: 1;
      text-transform: uppercase;
      letter-spacing: 0.5px;
      transition: all 0.2s ease;
      white-space: nowrap;
    }

    .preview-link:hover,
    .preview-link.active {
      border-color: var(--brand-dark);
      background: rgba(15, 118, 110, 0.08);
      color: var(--brand-dark);
      transform: translateY(-2px);
      box-shadow: 0 12px 28px rgba(15, 118, 110, 0.15);
    }

    .nav-links a.active::after,
    .nav-links a:hover::after {
      content: "";
      position: absolute;
      left: 50%;
      bottom: -10px;
      width: 28px;
      height: 3px;
      transform: translateX(-50%);
      border-radius: 999px;
      background: var(--brand);
    }

    .preview-link::after,
    .preview-link:hover::after {
      display: none;
    }

    .mobile-preview-link {
      display: none;
    }

    .nav-actions {
      display: flex;
      justify-self: end;
      justify-content: flex-end;
      align-items: center;
      gap: 12px;
    }

    .whatsapp-float {
      position: fixed;
      right: calc(26px + env(safe-area-inset-right));
      bottom: calc(26px + env(safe-area-inset-bottom));
      z-index: 60;
      display: grid;
      place-items: center;
      width: 68px;
      height: 68px;
      border-radius: 50%;
      background: #25d366;
      color: var(--white) !important;
      box-shadow: 0 18px 42px rgba(17, 24, 39, 0.28);
      transition: transform 0.2s ease, background 0.2s ease, box-shadow 0.2s ease;
    }

    .whatsapp-float:hover {
      background: #1ebe5d;
      color: var(--white) !important;
      transform: translateY(-3px);
      box-shadow: 0 22px 48px rgba(17, 24, 39, 0.34);
    }

    .whatsapp-float svg {
      display: block;
      width: 34px;
      height: 34px;
    }

    .email-toast {
      position: fixed;
      top: calc(96px + env(safe-area-inset-top));
      right: calc(24px + env(safe-area-inset-right));
      z-index: 80;
      display: grid;
      grid-template-columns: 44px minmax(0, 1fr);
      align-items: center;
      gap: 14px;
      width: min(360px, calc(100vw - 32px));
      padding: 16px;
      border: 1px solid rgba(34, 197, 94, 0.38);
      border-radius: 12px;
      background:
        linear-gradient(135deg, rgba(34, 197, 94, 0.12), rgba(34, 211, 238, 0.08)),
        rgba(8, 13, 26, 0.94);
      color: #f8fafc;
      box-shadow: 0 24px 70px rgba(0, 0, 0, 0.28);
      opacity: 0;
      pointer-events: none;
      transform: translateX(calc(100% + 36px));
      transition: opacity 0.24s ease, transform 0.24s ease;
    }

    .email-toast.active {
      opacity: 1;
      transform: translateX(0);
    }

    .email-toast-icon {
      display: grid;
      place-items: center;
      width: 44px;
      height: 44px;
      border-radius: 50%;
      background: #22c55e;
      color: #052e16;
    }

    .email-toast-icon svg {
      width: 24px;
      height: 24px;
    }

    .email-toast strong,
    .email-toast em {
      display: block;
    }

    .email-toast strong {
      color: #ffffff;
      font-size: 15px;
      line-height: 1.2;
    }

    .email-toast em {
      margin-top: 3px;
      color: #cbd5e1;
      font-size: 13px;
      font-style: normal;
      font-weight: 750;
      line-height: 1.35;
    }

    .nav-cta {
      min-width: auto;
      min-height: 48px;
      padding: 0 28px;
      border-radius: 999px;
      font-size: 15px;
      font-weight: 900;
      line-height: 1;
      letter-spacing: 0;
      box-shadow: 0 12px 28px rgba(18, 63, 59, 0.18);
    }

    .mobile-menu-btn {
      display: none;
      width: 44px;
      height: 44px;
      border: 1px solid var(--line);
      border-radius: 8px;
      background: var(--white);
      color: var(--ink);
      font-size: 24px;
      cursor: pointer;
    }

    .btn-primary,
    .btn-secondary {
      display: inline-flex;
      justify-content: center;
      align-items: center;
      min-height: 48px;
      padding: 0 20px;
      border-radius: 8px;
      font-weight: 850;
      transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
    }

    .btn-primary {
      border: 0;
      border-radius: 8px;
      background: var(--brand-dark);
      color: var(--white) !important;
      font-size: 15px;
      font-weight: 900;
      line-height: 1;
      letter-spacing: 0;
      box-shadow: 0 14px 30px rgba(18, 63, 59, 0.24);
    }

    .btn-primary:hover {
      background: #0b302d;
      color: var(--white) !important;
      transform: translateY(-2px);
      box-shadow: 0 18px 36px rgba(11, 48, 45, 0.28);
    }

    .btn-secondary {
      background: var(--white);
      color: var(--brand-dark);
      border: 1px solid #9bd4ce;
    }

    .btn-secondary:hover {
      transform: translateY(-2px);
      box-shadow: 0 14px 30px rgba(17, 24, 39, 0.08);
    }

    .hero {
      position: relative;
      overflow: hidden;
      padding: 78px 0 58px;
      background:
        var(--page-grid),
        radial-gradient(circle at 18% 10%, rgba(242, 169, 0, 0.12), transparent 26%),
        radial-gradient(circle at 82% 8%, rgba(15, 118, 110, 0.16), transparent 30%),
        linear-gradient(180deg, #fffdf8 0%, #f7fbfa 64%, #fffdf8 100%);
      background-size: var(--page-grid-size), auto, auto, auto;
    }

    .hero::after {
      display: none;
    }

    .hero-grid {
      position: relative;
      z-index: 1;
      display: grid;
      grid-template-columns: minmax(0, 0.92fr) minmax(340px, 0.72fr);
      align-items: center;
      gap: 38px;
      text-align: left;
    }

    .eyebrow {
      display: inline-flex;
      align-items: center;
      gap: 10px;
      margin-bottom: 18px;
      padding: 8px 12px;
      border: 1px solid rgba(15, 118, 110, 0.2);
      border-radius: 999px;
      background: rgba(255, 255, 255, 0.76);
      color: var(--brand-dark);
      font-size: 14px;
      font-weight: 850;
    }

    .eyebrow::before {
      content: "";
      width: 9px;
      height: 9px;
      border-radius: 50%;
      background: var(--gold);
      box-shadow: 0 0 0 5px rgba(242, 169, 0, 0.16);
    }

    h1 {
      max-width: 980px;
      margin: 0 0 22px;
      font-size: clamp(42px, 6vw, 68px);
      line-height: 1.02;
      letter-spacing: 0;
    }

    h1 span {
      color: var(--brand);
      font-family: Georgia, "Times New Roman", serif;
      font-style: italic;
      font-weight: 800;
    }

    .hero p {
      max-width: 760px;
      margin: 0 0 28px;
      color: #485467;
      font-size: 19px;
    }

    .hero-actions {
      display: flex;
      justify-content: flex-start;
      align-items: center;
      gap: 18px;
      margin: 0;
      flex-wrap: wrap;
    }

    .hero-actions .btn-primary,
    .hero-actions .btn-secondary {
      min-width: 205px;
    }

    .hero-media {
      display: flex;
      justify-content: flex-end;
      align-items: center;
    }

    .hero-slideshow {
      position: relative;
      width: min(100%, 520px);
      aspect-ratio: 1 / 1.2;
    }

    .hero-slide {
      position: absolute;
      inset: 0;
      display: block;
      width: 100%;
      height: 100%;
      object-fit: contain;
      filter: drop-shadow(0 22px 42px rgba(17, 24, 39, 0.12));
      opacity: 0;
      animation: heroSlideshow 8s infinite ease-in-out;
    }

    .hero-slide.is-second {
      animation-delay: 4s;
    }

    @keyframes heroSlideshow {
      0%,
      45% {
        opacity: 1;
      }

      50%,
      95% {
        opacity: 0;
      }

      100% {
        opacity: 1;
      }
    }

    .section {
      padding: 60px 0;
      background:
        var(--page-grid),
        var(--paper);
      background-size: var(--page-grid-size), auto;
    }

    .services-intro {
      padding: 66px 0 26px;
      background:
        var(--page-grid),
        linear-gradient(180deg, #ffffff 0%, var(--paper) 100%);
      background-size: var(--page-grid-size), auto;
    }

    .services-intro-row {
      display: grid;
      grid-template-columns: 1fr auto;
      gap: 28px;
      align-items: center;
    }

    .services-intro h2 {
      max-width: 900px;
      margin-bottom: 10px;
      font-size: clamp(34px, 5vw, 54px);
      line-height: 1.08;
      letter-spacing: 0;
    }

    .services-intro em {
      color: var(--brand);
      font-family: Georgia, "Times New Roman", serif;
      font-style: italic;
      font-weight: 800;
    }

    .services-intro p {
      max-width: 660px;
      color: var(--muted);
      font-size: 17px;
    }

    .section.soft {
      background:
        var(--page-grid),
        var(--soft);
      background-size: var(--page-grid-size), auto;
    }

    .section-title {
      max-width: 760px;
      margin: 0 auto 42px;
      text-align: center;
    }

    .section-title span {
      color: var(--brand);
      font-size: 13px;
      font-weight: 900;
      letter-spacing: 0.08em;
      text-transform: uppercase;
    }

    .section-title h2 {
      margin: 10px 0 12px;
      font-size: clamp(30px, 4vw, 44px);
      line-height: 1.12;
    }

    .section-title p {
      color: var(--muted);
      font-size: 17px;
    }

    .services-grid,
    .trust-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 18px;
    }

    .service-card,
    .trust-card,
    .process-card,
    .faq-item {
      border: 1px solid var(--line);
      border-radius: 8px;
      background: var(--white);
      box-shadow: 0 12px 30px rgba(17, 24, 39, 0.05);
    }

    .service-card {
      position: relative;
      padding: 26px;
      transition: transform 0.2s ease, box-shadow 0.2s ease;
    }

    .service-card:hover {
      transform: translateY(-5px);
      box-shadow: 0 20px 46px rgba(17, 24, 39, 0.1);
    }

    .service-arrow {
      position: absolute;
      top: 24px;
      right: 24px;
      display: grid;
      place-items: center;
      width: 32px;
      height: 32px;
      color: var(--brand);
      font-size: 26px;
      font-weight: 700;
      line-height: 1;
      transition: color 0.2s ease, transform 0.2s ease;
    }

    .service-arrow:hover {
      color: var(--brand-dark);
      transform: translate(3px, -3px);
    }

    .service-icon,
    .trust-icon {
      display: grid;
      place-items: center;
      width: 50px;
      height: 50px;
      margin-bottom: 18px;
      border-radius: 8px;
      background: #e6f6f3;
      color: var(--brand-dark);
      font-weight: 950;
      font-size: 22px;
    }

    .service-card:nth-child(2n) .service-icon,
    .trust-card:nth-child(2n) .trust-icon {
      background: #fff4d7;
      color: #8a5a00;
    }

    .service-card:nth-child(3n) .service-icon,
    .trust-card:nth-child(3n) .trust-icon {
      background: #ffe9e5;
      color: #9f2f23;
    }

    .service-card h3,
    .trust-card h3,
    .process-card h3,
    .faq-item h3 {
      margin-bottom: 10px;
      font-size: 21px;
      line-height: 1.25;
    }

    .service-card p,
    .trust-card p,
    .process-card p,
    .faq-item p {
      color: var(--muted);
    }

    .service-card ul {
      margin-top: 16px;
      padding-left: 18px;
      color: #4b5563;
      font-size: 15px;
    }

    .services-more-row {
      display: flex;
      justify-content: center;
      margin-top: 10px;
    }

    .small-see-more {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      padding: 10px 14px;
      border: 1px solid rgba(15, 118, 110, 0.22);
      border-radius: 8px;
      background: rgba(255, 255, 255, 0.72);
      color: var(--brand);
      font-size: 14px;
      font-weight: 850;
      transition: color 0.2s ease, transform 0.2s ease, box-shadow 0.2s ease;
    }

    .small-see-more:hover {
      color: var(--brand-dark);
      transform: translateY(-2px);
      box-shadow: 0 12px 26px rgba(17, 24, 39, 0.08);
    }

    .split {
      display: grid;
      grid-template-columns: 0.9fr 1.1fr;
      gap: 42px;
      align-items: center;
    }

    .statement {
      padding: 34px;
      border-radius: 8px;
      background: var(--brand-dark);
      color: var(--white);
      box-shadow: var(--shadow);
    }

    .statement h2 {
      margin-bottom: 18px;
      font-size: clamp(30px, 4vw, 42px);
      line-height: 1.12;
    }

    .statement p {
      color: #ccfbf1;
    }

    .check-list {
      display: grid;
      gap: 14px;
      margin-top: 24px;
      list-style: none;
    }

    .check-list li {
      display: flex;
      gap: 12px;
      color: #f0fdfa;
      font-weight: 750;
    }

    .check-list li::before {
      content: "";
      flex: 0 0 10px;
      width: 10px;
      height: 10px;
      margin-top: 8px;
      border-radius: 50%;
      background: var(--gold);
    }

    .trust-card,
    .faq-item {
      padding: 24px;
    }

    .process-grid {
      display: grid;
      grid-template-columns: repeat(4, 1fr);
      gap: 18px;
    }

    .process-card {
      padding: 24px;
    }

    .step-number {
      display: grid;
      place-items: center;
      width: 42px;
      height: 42px;
      margin-bottom: 18px;
      border-radius: 50%;
      background: var(--ink);
      color: var(--white);
      font-weight: 900;
    }

    .faq-grid {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 18px;
    }

    .contact {
      background:
        linear-gradient(rgba(255, 255, 255, 0.025) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, 0.025) 1px, transparent 1px),
        #111827;
      background-size: 24px 24px, 24px 24px, auto;
      color: var(--white);
    }

    .contact-grid {
      display: grid;
      grid-template-columns: minmax(0, 0.72fr) minmax(560px, 1.28fr);
      gap: 44px;
      align-items: start;
    }

    .contact-copy {
      position: sticky;
      top: 110px;
    }

    .contact h2 {
      margin-bottom: 16px;
      font-size: clamp(32px, 4vw, 46px);
      line-height: 1.1;
    }

    .contact p,
    .contact-info {
      color: #d1d5db;
    }

    .contact-info {
      display: grid;
      gap: 12px;
      margin-top: 26px;
    }

    .contact-info div {
      padding: 14px 0;
      border-bottom: 1px solid rgba(255, 255, 255, 0.12);
    }

    .contact-info a {
      color: var(--white);
      font-weight: 800;
    }

    .contact-form {
      padding: 42px;
      border: 1px solid rgba(148, 163, 184, 0.22);
      border-radius: 18px;
      background:
        linear-gradient(rgba(255, 255, 255, 0.018) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, 0.018) 1px, transparent 1px),
        linear-gradient(135deg, rgba(15, 23, 42, 0.86), rgba(12, 18, 33, 0.78));
      background-size: 22px 22px, 22px 22px, auto;
      color: #e5e7eb;
      box-shadow: 0 26px 70px rgba(0, 0, 0, 0.28);
      backdrop-filter: blur(12px);
    }

    .form-row {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 24px;
    }

    .form-field {
      margin-bottom: 26px;
    }

    .form-field label {
      display: block;
      margin-bottom: 10px;
      color: rgba(209, 213, 219, 0.58);
      font-size: 13px;
      font-weight: 850;
      text-transform: uppercase;
    }

    .form-field label span {
      text-transform: none;
    }

    .contact-form input,
    .contact-form textarea,
    .contact-form select {
      width: 100%;
      min-height: 58px;
      padding: 0 20px;
      border: 1px solid rgba(148, 163, 184, 0.22);
      border-radius: 8px;
      color: #e5e7eb;
      background: rgba(8, 13, 26, 0.76);
      font: inherit;
      font-size: 17px;
      font-weight: 700;
      transition: border-color 0.2s ease, background 0.2s ease, box-shadow 0.2s ease;
    }

    .contact-form input::placeholder,
    .contact-form textarea::placeholder {
      color: rgba(156, 163, 175, 0.48);
    }

    .contact-form select {
      appearance: none;
      cursor: pointer;
    }

    .contact-form textarea {
      min-height: 132px;
      padding-top: 18px;
      resize: vertical;
    }

    .phone-input {
      display: grid;
      grid-template-columns: 48px 88px 1fr;
      align-items: center;
      min-height: 58px;
      overflow: hidden;
      border: 1px solid rgba(148, 163, 184, 0.22);
      border-radius: 8px;
      background: rgba(8, 13, 26, 0.76);
      transition: border-color 0.2s ease, background 0.2s ease, box-shadow 0.2s ease;
    }

    .phone-input:focus-within {
      border-color: rgba(139, 92, 246, 0.72);
      background: rgba(9, 14, 28, 0.94);
      box-shadow: 0 0 0 4px rgba(139, 92, 246, 0.12);
    }

    .phone-input span,
    .phone-input .phone-code {
      border-right: 1px solid rgba(148, 163, 184, 0.18);
    }

    .phone-input span {
      display: grid;
      place-items: center;
      min-height: 58px;
      color: #d1d5db;
      font-size: 18px;
      font-weight: 900;
    }

    .phone-input input {
      min-width: 0;
      min-height: 58px;
      border: 0;
      border-radius: 0;
      background: transparent;
      box-shadow: none;
    }

    .phone-input input:focus {
      outline: 0;
      box-shadow: none;
    }

    .contact-form input:focus,
    .contact-form textarea:focus,
    .contact-form select:focus {
      border-color: rgba(139, 92, 246, 0.72);
      background: rgba(9, 14, 28, 0.94);
      outline: 0;
      box-shadow: 0 0 0 4px rgba(139, 92, 246, 0.12);
    }

    .contact-form .phone-input input:focus {
      background: transparent;
      box-shadow: none;
    }

    .contact-submit {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      gap: 10px;
      width: 100%;
      min-height: 60px;
      border: 1px solid rgba(148, 163, 184, 0.24);
      border-radius: 999px;
      background:
        linear-gradient(135deg, rgba(255, 255, 255, 0.075), rgba(255, 255, 255, 0.018)),
        rgba(8, 13, 26, 0.78);
      color: #f8fafc;
      font: inherit;
      font-size: 16px;
      font-weight: 900;
      box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.09), 0 20px 46px rgba(0, 0, 0, 0.22);
      cursor: pointer;
      transition: border-color 0.2s ease, transform 0.2s ease, background 0.2s ease, box-shadow 0.2s ease, color 0.2s ease, opacity 0.2s ease;
    }

    .contact-submit:hover {
      border-color: rgba(196, 181, 253, 0.58);
      background:
        linear-gradient(135deg, rgba(139, 92, 246, 0.18), rgba(34, 211, 238, 0.08)),
        rgba(8, 13, 26, 0.92);
      color: #ffffff;
      transform: translateY(-2px);
      box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.12), 0 24px 54px rgba(0, 0, 0, 0.28);
    }

    .contact-submit svg {
      width: 21px;
      height: 21px;
    }

    .form-status {
      min-height: 22px;
      margin-top: 14px;
      color: #c4b5fd;
      font-size: 14px;
      font-weight: 800;
    }

    button {
      width: 100%;
      border: 0;
      cursor: pointer;
      font: inherit;
      font-size: 16px;
    }

    button:disabled {
      cursor: not-allowed;
      opacity: 0.72;
    }

    .site-footer {
      padding: 0;
      background:
        linear-gradient(rgba(255, 255, 255, 0.025) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, 0.025) 1px, transparent 1px),
        radial-gradient(circle at 18% 0%, rgba(15, 118, 110, 0.18), transparent 34%),
        radial-gradient(circle at 82% 12%, rgba(139, 92, 246, 0.18), transparent 32%),
        #111827;
      background-size: 24px 24px, 24px 24px, auto, auto, auto;
      border-top: 1px solid rgba(255, 255, 255, 0.12);
      color: var(--white);
      font-size: 18px;
    }

    .footer-main {
      display: grid;
      grid-template-columns: repeat(4, minmax(0, 1fr));
      gap: 58px;
      padding: 86px 0 72px;
    }

    .footer-column {
      display: grid;
      align-content: start;
      gap: 20px;
    }

    .footer-column h2 {
      margin: 0 0 18px;
      color: #ffffff;
      font-size: 24px;
      line-height: 1.2;
    }

    .footer-column h2::after {
      content: "";
      display: block;
      width: 42px;
      height: 3px;
      margin-top: 12px;
      border-radius: 999px;
      background: #8b5cf6;
    }

    .footer-column a,
    .footer-column p {
      margin: 0;
      color: #d1d5db;
      line-height: 1.45;
    }

    .footer-column a {
      transition: color 0.2s ease, transform 0.2s ease;
    }

    .footer-column a:hover {
      color: #c4b5fd;
      transform: translateX(3px);
    }

    .footer-phone-row {
      display: flex;
      justify-content: center;
      gap: 22px;
      padding: 0 0 34px;
      color: #f8fafc;
      font-size: 15px;
      font-weight: 760;
      line-height: 1;
      flex-wrap: wrap;
    }

    .footer-phone-row a {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      min-height: 52px;
      padding: 0 24px;
      border: 1px solid rgba(148, 163, 184, 0.22);
      border-radius: 999px;
      background:
        linear-gradient(135deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.025)),
        rgba(8, 13, 26, 0.52);
      color: #f8fafc;
      box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.08), 0 14px 34px rgba(0, 0, 0, 0.18);
      transition: border-color 0.2s ease, background 0.2s ease, color 0.2s ease, transform 0.2s ease, box-shadow 0.2s ease;
      white-space: nowrap;
    }

    .footer-phone-row a:hover {
      border-color: rgba(196, 181, 253, 0.58);
      background:
        linear-gradient(135deg, rgba(139, 92, 246, 0.18), rgba(15, 118, 110, 0.12)),
        rgba(8, 13, 26, 0.66);
      color: #ffffff;
      transform: translateY(-2px);
      box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.1), 0 18px 42px rgba(0, 0, 0, 0.24);
    }

    .footer-bottom {
      border-top: 1px solid rgba(255, 255, 255, 0.14);
      background: rgba(8, 13, 26, 0.5);
    }

    .footer-bottom-row {
      display: flex;
      justify-content: space-between;
      align-items: center;
      gap: 24px;
      padding: 28px 0;
    }

    .footer-bottom-row p {
      margin: 0;
      color: rgba(255, 255, 255, 0.9);
      font-size: 16px;
      font-weight: 750;
    }

    .footer-links {
      display: flex;
      align-items: center;
      gap: 22px;
      flex-wrap: wrap;
      font-size: 16px;
      font-weight: 750;
    }

    .footer-links a {
      color: var(--white);
      transition: opacity 0.2s ease;
    }

    .footer-links a:hover {
      opacity: 0.76;
    }

    @media (max-width: 960px) {
      .hero-grid,
      .split,
      .contact-grid {
        grid-template-columns: 1fr;
      }

      .hero-grid {
        text-align: center;
      }

      h1,
      .hero p {
        margin-left: auto;
        margin-right: auto;
      }

      .hero-actions,
      .hero-media {
        justify-content: center;
      }

      .hero-slideshow {
        width: min(100%, 460px);
      }

      .services-intro-row {
        grid-template-columns: 1fr;
      }

      .services-grid,
      .trust-grid {
        grid-template-columns: repeat(2, 1fr);
      }

      .process-grid {
        grid-template-columns: repeat(2, 1fr);
      }

      .contact-copy {
        position: static;
      }

      .footer-main {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 44px;
      }
    }

    @media (max-width: 720px) {
      .container {
        width: min(calc(100% - 28px), 1140px);
      }

      .navbar {
        grid-template-columns: 1fr auto;
      }

      .mobile-menu-btn {
        display: grid;
        place-items: center;
      }

      .nav-actions {
        justify-content: flex-end;
      }

      .nav-cta {
        display: none;
      }

      .nav-links {
        position: absolute;
        top: 76px;
        left: 14px;
        right: 14px;
        display: none;
        flex-direction: column;
        align-items: stretch;
        gap: 6px;
        padding: 14px;
        border: 1px solid var(--line);
        border-radius: 8px;
        background: var(--white);
        box-shadow: 0 18px 36px rgba(17, 24, 39, 0.14);
      }

      .nav-links.active {
        display: flex;
      }

      .nav-links a {
        padding: 10px;
      }

      .nav-actions .nav-preview-link {
        display: none;
      }

      .nav-links .mobile-preview-link {
        display: inline-flex;
        width: 100%;
        min-height: 44px;
      }

      .contact-form {
        padding: 24px;
        border-radius: 14px;
      }

      .form-row {
        grid-template-columns: 1fr;
        gap: 0;
      }

      .form-field {
        margin-bottom: 20px;
      }

      .phone-input {
        grid-template-columns: 42px 76px 1fr;
      }

      .whatsapp-float {
        right: calc(18px + env(safe-area-inset-right));
        bottom: calc(18px + env(safe-area-inset-bottom));
        width: 60px;
        height: 60px;
      }

      .whatsapp-float svg {
        width: 30px;
        height: 30px;
      }

      .email-toast {
        top: calc(88px + env(safe-area-inset-top));
        right: calc(14px + env(safe-area-inset-right));
        left: calc(14px + env(safe-area-inset-left));
        width: auto;
        transform: translateY(-18px);
      }

      .email-toast.active {
        transform: translateY(0);
      }

      .hero {
        padding: 54px 0 56px;
      }

      .hero p {
        font-size: 17px;
      }

      .services-intro {
        padding: 48px 0 18px;
      }

      .services-grid,
      .trust-grid,
      .process-grid,
      .faq-grid {
        grid-template-columns: 1fr;
      }

      .section {
        padding: 60px 0;
      }

      .footer-main {
        grid-template-columns: 1fr;
        gap: 34px;
        padding: 58px 0 44px;
      }

      .footer-column {
        gap: 14px;
      }

      .footer-phone-row {
        flex-direction: column;
        align-items: center;
        gap: 12px;
        text-align: center;
      }

      .footer-bottom-row,
      .footer-links {
        flex-direction: column;
        justify-content: center;
        text-align: center;
      }
    }

    @media (max-width: 540px) {
      .hero {
        padding: 42px 0;
      }

      .hero h1 {
        font-size: clamp(32px, 8vw, 46px);
      }

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

      .hero-actions {
        justify-content: center;
        gap: 14px;
      }

      .services-intro {
        padding: 36px 0 14px;
      }

      .section {
        padding: 48px 0;
      }

      .contact-form {
        padding: 22px;
      }

      .contact-info {
        gap: 10px;
      }

      .contact-info div {
        padding: 12px 0;
      }

      .phone-input {
        grid-template-columns: 38px 68px minmax(0, 1fr);
      }

      .phone-input span,
      .phone-input input {
        min-height: 54px;
      }

      .phone-input input {
        padding: 0 14px;
        font-size: 16px;
      }

      .phone-input .phone-code {
        padding: 0 10px;
      }

      .form-row {
        gap: 18px;
      }

      .contact-submit {
        min-height: 54px;
      }

      .footer-main {
        padding: 48px 0 34px;
      }

      .footer-column h2 {
        font-size: 20px;
      }
    }

    @media (max-width: 1180px) and (min-width: 721px) {
      .navbar {
        grid-template-columns: 1fr auto;
      }

      .mobile-menu-btn {
        display: grid;
        place-items: center;
      }

      .nav-cta,
      .nav-actions .nav-preview-link {
        display: none;
      }

      .nav-links {
        position: absolute;
        top: 76px;
        left: 20px;
        right: 20px;
        display: none;
        flex-direction: column;
        align-items: stretch;
        gap: 6px;
        padding: 14px;
        border: 1px solid var(--line);
        border-radius: 8px;
        background: var(--white);
        box-shadow: 0 18px 36px rgba(17, 24, 39, 0.14);
      }

      .nav-links.active {
        display: flex;
      }

      .nav-links a {
        padding: 10px;
      }

      .nav-links .mobile-preview-link {
        display: inline-flex;
        width: 100%;
        min-height: 44px;
      }
    }

    @media (max-width: 420px) {
      .container {
        width: min(calc(100% - 22px), 1140px);
      }

      .logo-img {
        width: 146px;
      }

      .hero-actions .btn-primary,
      .hero-actions .btn-secondary,
      .services-intro-row .btn-primary,
      .footer-phone-row a {
        width: 100%;
      }

      .phone-input {
        grid-template-columns: 34px 62px minmax(0, 1fr);
      }
    }

    img,
    picture,
    svg,
    video {
      max-width: 100%;
      height: auto;
    }

    html,
    body {
      max-width: 100%;
      overflow-x: hidden;
    }

    .service-card,
    .trust-card,
    .process-card,
    .faq-item,
    .contact-form,
    .statement,
    .footer-column {
      min-width: 0;
    }

    .footer-phone-row a,
    .footer-column a,
    .contact-info a {
      max-width: 100%;
      overflow-wrap: anywhere;
    }
