    /* ================================================================
       RESET + BASE
    ================================================================ */
    *, *::before, *::after {
      box-sizing: border-box;
      margin: 0;
      padding: 0;
    }

    :root {
      --dark:        #1A1E2E;
      --dark-2:      #111520;
      --cta:         #C8281E;
      --cta-hover:   #A31E15;
      --accent:      #FF7043;
      --text:        #1A1E2E;
      --text-muted:  #5C6270;
      --bg:          #FFFFFF;
      --bg-alt:      #F4F6FA;
      --border:      #DDE1EC;
      --gold:        #F5A623;
      --font:        -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Arial, sans-serif;
      --radius:      10px;
    }

    html { scroll-behavior: smooth; }

    body {
      font-family: var(--font);
      color: var(--text);
      background: var(--bg);
      line-height: 1.6;
      font-size: 16px;
      /* Reserve space for sticky mobile CTA */
      padding-bottom: 62px;
    }

    a { color: inherit; }

    /* ================================================================
       UTILITIES
    ================================================================ */
    .container {
      max-width: 1100px;
      margin: 0 auto;
    }

    section {
      padding: 56px 20px;
    }

    .bg-alt  { background: var(--bg-alt); }
    .bg-dark { background: var(--dark); color: #fff; }

    .section-title {
      font-size: 24px;
      font-weight: 800;
      line-height: 1.25;
      text-align: center;
      margin-bottom: 10px;
    }
    .bg-dark .section-title { color: #fff; }

    .section-sub {
      font-size: 15px;
      color: var(--text-muted);
      text-align: center;
      margin-bottom: 36px;
      max-width: 580px;
      margin-left: auto;
      margin-right: auto;
    }
    .bg-dark .section-sub { color: rgba(255,255,255,0.65); }

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

    /* ================================================================
       BUTTONS
    ================================================================ */
    .btn {
      display: inline-block;
      padding: 16px 28px;
      border-radius: 6px;
      font-weight: 800;
      font-size: 17px;
      text-decoration: none;
      text-align: center;
      cursor: pointer;
      border: none;
      transition: background 0.15s, transform 0.1s;
      line-height: 1.2;
    }
    .btn:active { transform: scale(0.975); }

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

    .btn-wide {
      display: block;
      width: 100%;
      max-width: 420px;
      margin-left: auto;
      margin-right: auto;
    }

    /* ================================================================
       STICKY MOBILE CTA (hidden on desktop)
    ================================================================ */
    .sticky-bar {
      position: fixed;
      bottom: 0;
      left: 0;
      right: 0;
      z-index: 200;
      background: var(--cta);
      display: flex;
      align-items: center;
      justify-content: center;
      gap: 10px;
      padding: 14px 20px;
      box-shadow: 0 -2px 12px rgba(0,0,0,0.25);
    }
    .sticky-bar a {
      color: #fff;
      font-weight: 800;
      font-size: 18px;
      text-decoration: none;
      letter-spacing: 0.015em;
    }
    .sticky-bar svg { flex-shrink: 0; }

    /* ================================================================
       1. HERO
    ================================================================ */
    #hero {
      position: relative;
      background-color: #28304A;
      background-image: url('../img/покрив-про-hero.webp');
      background-size: cover;
      background-position: center;
      background-repeat: no-repeat;
      padding: 44px 20px 64px;
      text-align: center;
      color: #fff;
    }

    /* Dark overlay — works over both colour fallback and real photo */
    #hero::before {
      content: '';
      position: absolute;
      inset: 0;
      background: rgba(18, 22, 38, 0.80);
      z-index: 0;
    }

    #hero > * { position: relative; z-index: 1; }

    .hero-logo {
      font-size: 18px;
      font-weight: 900;
      letter-spacing: 0.1em;
      color: #fff;
      margin-bottom: 40px;
      /* CLIENT TO PROVIDE: logo file */
      /* Replace this element with: <img src="logo.png" alt="ПокривПро" style="height:44px"> */
    }
    .hero-logo img {
      height: 60px;
      width: auto;
      display: block;
      margin: 0 auto;
      object-fit: contain;
    }
    @media (min-width: 640px) {
      .hero-logo img {
        height: 72px;
      }
    }
    .hero-logo em {
      color: var(--accent);
      font-style: normal;
    }

    #hero h1 {
      font-size: 26px;
      font-weight: 900;
      line-height: 1.2;
      margin-bottom: 14px;
      color: #fff;
    }

    .hero-sub {
      font-size: 16px;
      color: rgba(255,255,255,0.85);
      line-height: 1.55;
      margin-bottom: 28px;
    }

    #hero .btn {
      font-size: 18px;
      padding: 18px 32px;
      margin-bottom: 32px;
    }

    .trust-bar {
      display: flex;
      flex-direction: column;
      gap: 9px;
      align-items: center;
    }
    .trust-bar-item {
      font-size: 13px;
      font-weight: 700;
      color: rgba(255,255,255,0.9);
      letter-spacing: 0.02em;
      display: flex;
      align-items: center;
      gap: 6px;
    }
    .trust-bar-item::before {
      content: '';
      display: inline-block;
      width: 7px;
      height: 7px;
      border-radius: 50%;
      background: var(--accent);
      flex-shrink: 0;
    }

    /* ================================================================
       2. PROBLEM RECOGNITION
    ================================================================ */
    .problem-grid {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 12px;
      margin-bottom: 28px;
    }

    .problem-card {
      background: #fff;
      border: 1px solid var(--border);
      border-radius: var(--radius);
      padding: 20px 12px 16px;
      text-align: center;
      box-shadow: 0 2px 8px rgba(0,0,0,0.04);
    }
    .problem-card svg {
      display: block;
      margin: 0 auto 10px;
    }
    .problem-card p {
      font-size: 13px;
      font-weight: 700;
      color: var(--text);
      line-height: 1.3;
    }

    .problem-cta-text {
      text-align: center;
      font-size: 15px;
      font-weight: 600;
      color: var(--text);
      margin-bottom: 20px;
      line-height: 1.5;
    }

    /* ================================================================
       3. TRUST (WHY POKRIVPRO)
    ================================================================ */
    .trust-grid {
      display: grid;
      grid-template-columns: 1fr;
      gap: 16px;
    }

    .trust-card {
      background: rgba(255,255,255,0.06);
      border: 1px solid rgba(255,255,255,0.1);
      border-radius: var(--radius);
      padding: 28px 24px;
    }
    .trust-card svg { display: block; margin-bottom: 14px; }
    .trust-card h3 {
      font-size: 18px;
      font-weight: 800;
      color: #fff;
      margin-bottom: 8px;
    }
    .trust-card p {
      font-size: 14px;
      color: rgba(255,255,255,0.7);
      line-height: 1.6;
    }

    /* ================================================================
       4. PRICING
    ================================================================ */
    .pricing-grid {
      display: grid;
      grid-template-columns: 1fr;
      gap: 20px;
      margin-bottom: 22px;
    }

    .pricing-card {
      border: 2px solid var(--border);
      border-radius: var(--radius);
      padding: 28px 24px;
      background: #fff;
      position: relative;
    }
    .pricing-card.popular {
      border-color: var(--cta);
      padding-top: 38px;
    }

    .popular-badge {
      position: absolute;
      top: -14px;
      left: 50%;
      transform: translateX(-50%);
      background: var(--cta);
      color: #fff;
      font-size: 11px;
      font-weight: 800;
      letter-spacing: 0.06em;
      padding: 5px 18px;
      border-radius: 20px;
      white-space: nowrap;
      text-transform: uppercase;
    }

    .pricing-card h3 {
      font-size: 18px;
      font-weight: 800;
      margin-bottom: 8px;
    }
    .pricing-price {
      font-size: 30px;
      font-weight: 900;
      color: var(--cta);
      margin-bottom: 8px;
      line-height: 1;
    }
    .pricing-price small {
      font-size: 14px;
      font-weight: 500;
      color: var(--text-muted);
    }
    .pricing-desc {
      font-size: 14px;
      color: var(--text-muted);
      line-height: 1.55;
    }

    .pricing-trust {
      background: var(--bg-alt);
      border-left: 3px solid var(--cta);
      border-radius: 6px;
      padding: 14px 18px;
      font-size: 14px;
      color: var(--text-muted);
      line-height: 1.5;
      margin-bottom: 24px;
    }

    /* ================================================================
       5. PROCESS
    ================================================================ */
    .process-steps {
      display: flex;
      flex-direction: column;
      gap: 0;
    }

    .process-step {
      display: flex;
      align-items: flex-start;
      gap: 18px;
      padding: 22px 0;
      border-bottom: 1px solid var(--border);
    }
    .process-step:last-child { border-bottom: none; }

    .step-num {
      width: 46px;
      height: 46px;
      min-width: 46px;
      border-radius: 50%;
      background: var(--cta);
      color: #fff;
      font-weight: 900;
      font-size: 20px;
      display: flex;
      align-items: center;
      justify-content: center;
    }

    .step-content h3 {
      font-size: 16px;
      font-weight: 800;
      margin-bottom: 3px;
    }
    .step-content p {
      font-size: 14px;
      color: var(--text-muted);
    }

    /* ================================================================
       6. GALLERY (hidden by default — class controls visibility)
    ================================================================ */
    /* REMOVE class 'no-images' from the <section> element when client provides photos */
    section.no-images { display: none; }

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

    .gallery-grid img {
      width: 100%;
      height: 180px;
      object-fit: cover;
      object-position: center;
      border-radius: 6px;
      box-shadow: 0 4px 12px rgba(0,0,0,0.06);
      display: block;
    }

    @media (min-width: 768px) {
      .gallery-grid {
        grid-template-columns: repeat(3, 1fr);
      }
      .gallery-grid img {
        height: 220px;
      }
    }

    @media (min-width: 1024px) {
      .gallery-grid {
        grid-template-columns: repeat(4, 1fr);
      }
      .gallery-grid img {
        height: 260px;
      }
    }

    /* ================================================================
       7. TESTIMONIALS
    ================================================================ */
    .testimonial-grid {
      display: grid;
      grid-template-columns: 1fr;
      gap: 16px;
      margin-bottom: 28px;
    }

    .testimonial-card {
      background: #fff;
      border: 1px solid var(--border);
      border-radius: var(--radius);
      padding: 24px;
      box-shadow: 0 2px 10px rgba(0,0,0,0.05);
    }

    .stars {
      color: var(--gold);
      font-size: 18px;
      letter-spacing: 3px;
      margin-bottom: 12px;
    }

    .testimonial-quote {
      font-size: 14px;
      line-height: 1.7;
      color: var(--text);
      margin-bottom: 16px;
      font-style: italic;
    }

    .testimonial-author {
      font-size: 13px;
      font-weight: 700;
      color: var(--text-muted);
    }


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

    details {
      border: 1px solid var(--border);
      border-radius: var(--radius);
      background: #fff;
      overflow: hidden;
    }

    summary {
      padding: 18px 20px;
      font-weight: 700;
      font-size: 15px;
      cursor: pointer;
      list-style: none;
      display: flex;
      justify-content: space-between;
      align-items: center;
      gap: 16px;
      user-select: none;
      line-height: 1.35;
    }
    summary::-webkit-details-marker { display: none; }
    summary::after {
      content: '+';
      font-size: 24px;
      font-weight: 300;
      color: var(--cta);
      flex-shrink: 0;
      line-height: 1;
      transition: transform 0.3s ease;
    }
    details[open] > summary::after {
      transform: rotate(45deg);
    }

    .faq-answer {
      padding: 0 20px;
      font-size: 14px;
      color: var(--text-muted);
      line-height: 1.7;
      border-top: 1px solid var(--border);
      max-height: 0;
      opacity: 0;
      overflow: hidden;
      transition: max-height 0.3s ease, opacity 0.3s ease, padding 0.3s ease;
    }
    details[open] .faq-answer {
      max-height: 500px;
      opacity: 1;
      padding: 14px 20px 18px;
    }
    .faq-answer a {
      color: var(--cta);
      font-weight: 700;
      text-decoration: none;
    }

    /* ================================================================
       9. FINAL CTA
    ================================================================ */
    #contact {
      padding: 64px 20px;
      text-align: center;
    }

    #contact h2 {
      font-size: 26px;
      font-weight: 900;
      color: #fff;
      margin-bottom: 12px;
      line-height: 1.2;
    }
    #contact .sub {
      font-size: 15px;
      color: rgba(255,255,255,0.75);
      margin-bottom: 32px;
      line-height: 1.5;
    }

    /* CTA button inverted on dark background */
    #contact .btn-contact {
      display: block;
      max-width: 420px;
      margin: 0 auto 28px;
      padding: 20px 32px;
      background: #fff;
      color: var(--cta);
      border-radius: 6px;
      font-weight: 900;
      font-size: 20px;
      text-decoration: none;
      text-align: center;
      transition: background 0.15s;
    }
    #contact .btn-contact:hover { background: #f0f0f0; }

    .contact-alt {
      display: flex;
      flex-direction: column;
      align-items: center;
      gap: 16px;
      margin-bottom: 36px;
    }
    .contact-alt a {
      display: flex;
      align-items: center;
      gap: 10px;
      color: rgba(255,255,255,0.85);
      font-size: 15px;
      font-weight: 700;
      text-decoration: none;
      transition: color 0.15s;
    }
    .contact-alt a:hover { color: #fff; }

    /* ================================================================
       GUARANTEE PLACEHOLDER BOX — cannot be missed before launch
    ================================================================ */
    .guarantee-box {
      border: 3px dashed #C8281E;
      border-radius: 8px;
      padding: 20px 22px;
      max-width: 500px;
      margin: 0 auto;
      background: rgba(255,255,255,0.97);
      text-align: center;
    }
    .guarantee-box strong {
      display: block;
      font-size: 15px;
      font-weight: 900;
      color: #C8281E;
      margin-bottom: 6px;
      text-transform: uppercase;
      letter-spacing: 0.04em;
    }
    .guarantee-box p {
      font-size: 13px;
      color: #8B1A1A;
      line-height: 1.5;
    }

    /* ================================================================
       10. FOOTER
    ================================================================ */
    footer {
      background: var(--dark-2);
      color: rgba(255,255,255,0.55);
      padding: 40px 20px;
      text-align: center;
    }

    .footer-logo {
      font-size: 20px;
      font-weight: 900;
      letter-spacing: 0.1em;
      color: #fff;
      margin-bottom: 10px;
    }
    .footer-logo em {
      color: var(--accent);
      font-style: normal;
    }
    footer .footer-phone {
      display: inline-block;
      color: #fff;
      font-weight: 700;
      font-size: 18px;
      text-decoration: none;
      margin-bottom: 8px;
    }
    footer p {
      font-size: 13px;
      line-height: 1.6;
      margin-bottom: 4px;
    }
    footer .copyright {
      margin-top: 20px;
      font-size: 12px;
    }

    /* ================================================================
       RESPONSIVE — 480px (trust bar goes horizontal)
    ================================================================ */
    @media (min-width: 480px) {
      .trust-bar {
        flex-direction: row;
        flex-wrap: wrap;
        justify-content: center;
        gap: 6px 20px;
      }
    }

    /* ================================================================
       RESPONSIVE — 640px (tablet)
    ================================================================ */
    @media (min-width: 640px) {
      #hero h1              { font-size: 34px; }
      .section-title        { font-size: 30px; }
      #hero .btn            { width: auto; }

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

    /* ================================================================
       RESPONSIVE — 900px (desktop)
    ================================================================ */
    @media (min-width: 900px) {
      /* Remove sticky bar, restore body padding */
      .sticky-bar    { display: none; }
      body           { padding-bottom: 0; }

      section        { padding: 88px 40px; }
      #hero          { padding: 72px 40px 96px; }
      #contact       { padding: 96px 40px; }

      #hero h1       { font-size: 44px; }
      .section-title { font-size: 34px; }
      #contact h2    { font-size: 36px; }

      /* Trust 4-col */
      .trust-grid         { grid-template-columns: repeat(4, 1fr); }

      /* Pricing 3-col */
      .pricing-grid       { grid-template-columns: repeat(3, 1fr); }

      /* Process horizontal */
      .process-steps {
        display: grid;
        grid-template-columns: repeat(4, 1fr);
        gap: 0;
      }
      .process-step {
        flex-direction: column;
        border-bottom: none;
        border-right: 1px solid var(--border);
        padding: 0 28px 0 0;
      }
      .process-step + .process-step {
        padding: 0 28px 0 28px;
      }
      .process-step:last-child {
        border-right: none;
        padding-right: 0;
      }

      /* Testimonials 3-col */
      .testimonial-grid   { grid-template-columns: repeat(3, 1fr); }

      /* Contact alt links side by side */
      .contact-alt {
        flex-direction: row;
        justify-content: center;
        gap: 40px;
      }
    }
        .inline-contact-form {
          max-width: 480px;
          margin: 0 auto;
          background: #ffffff;
          border: 1px solid var(--border);
          border-radius: var(--radius);
          padding: 32px 24px;
          box-shadow: 0 4px 16px rgba(0,0,0,0.06);
          text-align: left;
        }
        .inline-contact-form input,
        .inline-contact-form select {
          width: 100%;
          padding: 14px 16px;
          border: 1px solid #dcdcdc;
          border-radius: 6px;
          font-size: 15px;
          font-family: inherit;
          margin-bottom: 16px;
          background-color: #fcfcfc;
          transition: border-color 0.2s;
        }
        .inline-contact-form input:focus,
        .inline-contact-form select:focus {
          outline: none;
          border-color: var(--cta);
          background-color: #fff;
        }
        .inline-contact-form select {
          appearance: none;
          background-image: url("data:image/svg+xml;charset=UTF-8,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='currentColor' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3e%3cpolyline points='6 9 12 15 18 9'%3e%3c/polyline%3e%3c/svg%3e");
          background-repeat: no-repeat;
          background-position: right 16px center;
          background-size: 16px;
        }
        .inline-contact-form button {
          width: 100%;
          background: var(--cta);
          color: #fff;
          border: none;
          padding: 16px;
          border-radius: 6px;
          font-size: 16px;
          font-weight: 800;
          cursor: pointer;
          transition: background 0.15s;
        }
        .inline-contact-form button:hover {
          background: #b1231a;
        }
        .form-alt-text {
          margin-top: 20px;
          font-size: 15px;
          color: var(--text-muted);
          text-align: center;
        }
        .form-alt-text a {
          color: var(--text);
          font-weight: 700;
          text-decoration: none;
        }
        @media (min-width: 768px) {
          #hero .inline-contact-form {
            max-width: 100%;
            display: flex;
            gap: 16px;
            align-items: center;
          }
          #hero .inline-contact-form input,
          #hero .inline-contact-form select {
            margin-bottom: 0;
            flex: 1;
          }
          #hero .inline-contact-form button {
            width: auto;
            flex-shrink: 0;
            white-space: nowrap;
          }
        }

    /* ================================================================
       INLINE FORM — textarea (used in remonti contact form)
    ================================================================ */
    .inline-contact-form textarea {
      width: 100%;
      padding: 14px 16px;
      border: 1px solid #dcdcdc;
      border-radius: 6px;
      font-size: 15px;
      font-family: inherit;
      margin-bottom: 16px;
      background-color: #fcfcfc;
      transition: border-color 0.2s;
      resize: vertical;
    }
    .inline-contact-form textarea:focus {
      outline: none;
      border-color: var(--cta);
      background-color: #fff;
    }

    /* remonti — keep contact form stacked (vertical) on all screen sizes */
    @media (min-width: 768px) {
      body.page-remonti #problemi .inline-contact-form {
        display: block;
        max-width: 480px;
        margin: 0 auto;
      }
      body.page-remonti #problemi .inline-contact-form input,
      body.page-remonti #problemi .inline-contact-form textarea,
      body.page-remonti #problemi .inline-contact-form select,
      body.page-remonti #problemi .inline-contact-form button {
        width: 100%;
        margin-bottom: 16px;
      }
    }

    /* ================================================================
       PAGE-HOME — hero & trust bar overrides
    ================================================================ */
    body.page-home #hero {
      min-height: 520px;
      padding: 60px 20px;
    }

    body.page-home .trust-bar {
      flex-wrap: wrap;
      justify-content: center;
      gap: 0;
      margin-top: 20px;
      margin-bottom: 4px;
    }
    body.page-home .trust-bar-item {
      font-size: 13px;
      color: rgba(255,255,255,0.9);
      padding: 4px 16px;
      list-style: none;
      font-weight: 700;
      letter-spacing: 0.02em;
    }
    @media (max-width: 600px) {
      body.page-home .trust-bar {
        flex-direction: column;
        gap: 4px;
      }
      body.page-home .trust-bar-item {
        font-size: 12px;
        padding: 2px 8px;
      }
    }

    /* ================================================================
       SERVICE PILLS (homepage hero)
    ================================================================ */
    .service-pills {
      display: flex;
      flex-wrap: wrap;
      justify-content: center;
      gap: 8px;
      margin-top: 24px;
    }
    .service-pills .btn {
      background: rgba(255,255,255,0.12);
      border: 1px solid rgba(255,255,255,0.35);
      color: #fff;
      padding: 7px 16px;
      border-radius: 999px;
      font-size: 13px;
      font-weight: 500;
      white-space: nowrap;
      text-decoration: none;
    }
    .service-pills .btn:hover {
      background: rgba(255,255,255,0.22);
    }
    @media (max-width: 768px) {
      .service-pills {
        display: flex;
        flex-wrap: nowrap;
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
        scroll-padding-left: 16px;
        padding-left: 16px;
        padding-right: 32px;
        gap: 10px;
        justify-content: flex-start;
        scrollbar-width: none;
      }
      .service-pills::-webkit-scrollbar {
        display: none;
      }
      .service-pills .btn {
        flex-shrink: 0;
        white-space: nowrap;
      }
    }

    /* ================================================================
       SECONDARY LINK (homepage)
    ================================================================ */
    .secondary-link {
      margin-top: 12px;
      margin-bottom: 8px;
      text-align: center;
    }
    .secondary-link a {
      color: rgba(255,255,255,0.7);
      font-size: 14px;
      text-decoration: underline;
    }

    /* ================================================================
       SERVICE SECTIONS (homepage)
    ================================================================ */
    .service-layout {
      display: grid;
      grid-template-columns: 1fr;
      gap: 40px;
      align-items: center;
    }
    @media (min-width: 768px) {
      .service-layout {
        grid-template-columns: 1fr 1fr;
      }
      /* Chess layout: alternate image left/right */
      #keremidi .service-layout img,
      #izgrazhdane .service-layout img {
        order: 2;
      }
      #keremidi .service-layout .service-content,
      #izgrazhdane .service-layout .service-content {
        order: 1;
      }
      /* Keep image-right class for backward compatibility */
      .service-layout.image-right img {
        order: 2;
      }
      .service-layout.image-right .service-content {
        order: 1;
      }
    }
    .service-image-placeholder {
      background: #e5e7eb;
      border-radius: var(--radius);
      aspect-ratio: 4/3;
      display: flex;
      align-items: center;
      justify-content: center;
      color: #6b7280;
      font-weight: 700;
      font-size: 18px;
    }
    .service-content h2 {
      font-size: 32px;
      font-weight: 800;
      margin-bottom: 20px;
      line-height: 1.2;
    }
    .service-content p {
      color: var(--text-muted);
      font-size: 16px;
      margin-bottom: 24px;
    }
    .service-list {
      list-style: none;
      margin-bottom: 32px;
    }
    .service-list li {
      display: flex;
      align-items: center;
      gap: 12px;
      margin-bottom: 12px;
      font-weight: 600;
      color: var(--text);
    }
    .service-list li span {
      color: var(--cta);
      font-weight: bold;
    }

    /* ================================================================
       CONTACT OPTIONS ROW (homepage)
    ================================================================ */
    .contact-options-row {
      display: flex;
      flex-direction: column;
      gap: 16px;
      margin-bottom: 40px;
      align-items: center;
      justify-content: center;
    }
    @media (min-width: 768px) {
      .contact-options-row {
        flex-direction: row;
        gap: 24px;
      }
    }
    .contact-option-btn {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      padding: 16px 28px;
      border-radius: 6px;
      font-weight: 800;
      font-size: 17px;
      text-decoration: none;
      color: #fff;
      transition: background 0.15s, transform 0.1s;
      width: 100%;
      max-width: 300px;
    }
    .contact-option-btn:hover { transform: scale(0.975); }
    .contact-tel           { background: var(--cta); }
    .contact-tel:hover     { background: var(--cta-hover); }
    .contact-viber         { background: #7360f2; }
    .contact-viber:hover   { background: #5a4bce; }
    .contact-whatsapp      { background: #25D366; }
    .contact-whatsapp:hover { background: #1eb956; }

    /* ================================================================
       SERVICE CTA BUTTONS — responsive text
    ================================================================ */
    .btn-call {
      display: inline-flex;
      align-items: center;
      justify-content: center;
    }
    .btn-call .btn-text-short {
      display: none;
    }
    @media (max-width: 640px) {
      .btn-call {
        padding: 14px 24px;
      }
      /* Show full text on mobile too */
      .btn-call .btn-text-full {
        display: inline;
      }
      .btn-call .btn-text-short {
        display: none;
      }
    }

    /* ================================================================
       PROCESS SECTION — CTA button hover
    ================================================================ */
    #proces .btn-contact {
      transition: transform 0.15s, box-shadow 0.15s;
    }
    #proces .btn-contact:hover {
      transform: translateY(-2px);
      box-shadow: 0 4px 12px rgba(200, 40, 30, 0.4);
    }

    /* ================================================================
       KONTAKT SECTION — form styling (same as remonti page)
    ================================================================ */
    #kontakt .inline-contact-form {
      max-width: 480px;
      margin: 0 auto;
    }
    #kontakt .inline-contact-form input,
    #kontakt .inline-contact-form textarea {
      width: 100%;
      padding: 14px 16px;
      border: 1px solid #dcdcdc;
      border-radius: 6px;
      font-size: 15px;
      font-family: inherit;
      margin-bottom: 16px;
      background-color: #fcfcfc;
      box-sizing: border-box;
    }
    #kontakt .inline-contact-form input:focus,
    #kontakt .inline-contact-form textarea:focus {
      outline: none;
      border-color: var(--cta);
      background-color: #fff;
    }
    #kontakt .inline-contact-form textarea {
      resize: vertical;
    }
    #kontakt .inline-contact-form button {
      width: 100%;
    }

    /* Desktop: more spacing for form fields */
    @media (min-width: 768px) {
      #kontakt .contact-alt {
        flex-direction: row !important;
        justify-content: center;
        gap: 40px;
      }
      #kontakt .inline-contact-form input,
      #kontakt .inline-contact-form textarea {
        margin-bottom: 28px;
        padding: 16px 18px;
      }
    }

    /* ================================================================
       PAGE-REMONTI — kontakt h2 size
    ================================================================ */
    body.page-remonti #kontakt h2 {
      font-size: 42px;
      text-align: center;
    }
    @media (max-width: 640px) {
      body.page-remonti #kontakt h2 {
        font-size: 32px;
      }
    }
