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

    body {
      font-family: 'Segoe UI', Arial, sans-serif;
      font-size: 15px;
      line-height: 1.55;
      color: #333;
      background: #fff;
    }

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

    img {
      max-width: 100%;
      display: block;
    }

    .container {
      max-width: 1140px;
      margin: 0 auto;
      padding: 0 20px;
    }

    /* ============ TOP BAR ============ */
    .topbar {
      background: #0a1628;
      color: #d8dde3;
      font-size: 13px;
      padding: 8px 0;
      border-bottom: 1px solid #1a2640;
    }

    .topbar .container {
      display: flex;
      justify-content: space-between;
      align-items: center;
      flex-wrap: wrap;
      gap: 8px;
    }

    .topbar-phone {
      color: #f5a623;
      font-weight: 600;
      display: inline-flex;
      align-items: center;
      gap: 6px;
    }

    .topbar-hours {
      display: inline-flex;
      align-items: center;
      gap: 6px;
    }

    .topbar-hours::before {
      content: "";
      width: 8px;
      height: 8px;
      border-radius: 50%;
      background: #4caf50;
      display: inline-block;
    }

    /* SVG icons */
    .ico {
      width: 18px;
      height: 18px;
      stroke: currentColor;
      fill: none;
      stroke-width: 1.8;
      stroke-linecap: round;
      stroke-linejoin: round;
      flex-shrink: 0;
    }

    /* ============ HEADER / NAV ============ */
    .header {
      background: #fff;
      box-shadow: 0 2px 6px rgba(0, 0, 0, 0.08);
      padding: 14px 0;
      position: sticky;
      top: 0;
      z-index: 100;
    }

    .header .container {
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 20px;
    }

    .logo {
      display: flex;
      align-items: center;
      gap: 10px;
      font-weight: 700;
      font-size: 20px;
      color: #0a1628;
    }

    .logo-img {
      height: 44px;
      width: auto;
      display: block;
    }


    .logo-mark {
      width: 40px;
      height: 40px;
      background: #0a1628;
      color: #f5a623;
      display: flex;
      align-items: center;
      justify-content: center;
      border-radius: 3px;
    }

    .logo-mark .ico {
      width: 22px;
      height: 22px;
      stroke-width: 1.8;
    }

    .logo-text small {
      display: block;
      font-size: 11px;
      font-weight: 400;
      color: #666;
      letter-spacing: 1px;
      text-transform: uppercase;
      margin-top: -2px;
    }

    .nav {
      display: flex;
      gap: 28px;
    }

    .nav a {
      font-size: 14px;
      color: #333;
      padding: 6px 0;
      border-bottom: 2px solid transparent;
      transition: border-color .15s;
    }

    .nav a:hover {
      border-bottom-color: #f5a623;
    }

    .nav a.active {
      border-bottom-color: #f5a623;
      font-weight: 600;
    }

    .btn {
      display: inline-block;
      font-family: inherit;
      font-size: 14px;
      font-weight: 600;
      padding: 11px 20px;
      border-radius: 3px;
      border: 2px solid transparent;
      cursor: pointer;
      transition: background .15s, color .15s, border-color .15s;
      text-align: center;
    }

    .btn-primary {
      background: #f5a623;
      color: #0a1628;
      border-color: #f5a623;
    }

    .btn-primary:hover {
      background: #e0951a;
      border-color: #e0951a;
    }

    .btn-outline {
      background: transparent;
      color: #fff;
      border-color: #fff;
    }

    .btn-outline:hover {
      background: #fff;
      color: #0a1628;
    }

    .btn-outline-dark {
      background: transparent;
      color: #0a1628;
      border-color: #0a1628;
    }

    .btn-outline-dark:hover {
      background: #0a1628;
      color: #fff;
    }

    .btn-phone {
      display: inline-flex;
      align-items: center;
      gap: 8px;
    }

    .btn-phone .ico {
      width: 16px;
      height: 16px;
      stroke-width: 2;
    }

    .header-cta {
      font-size: 14px;
    }

    /* ============ HERO ============ */
    .hero {
      position: relative;
      color: #fff;
      min-height: 540px;
      background-image: linear-gradient(rgba(10, 22, 40, 0.45), rgba(10, 22, 40, 0.55)),
        url('/assets/hero.jpeg');
      background-size: cover;
      background-position: center;
      border-bottom: 4px solid #f5a623;
      overflow: hidden;
    }

    .hero .container {
      display: grid;
      grid-template-columns: 1.1fr 1fr;
      gap: 40px;
      align-items: center;
      min-height: 540px;
      padding-top: 60px;
      padding-bottom: 60px;
      position: relative;
    }

    .hero-left {
      position: relative;
      padding: 50px 40px 50px 30px;
    }

    .hero-left::before {
      content: "";
      position: absolute;
      top: 0;
      bottom: 0;
      right: 0;
      left: -50vw;
      background: rgba(245, 245, 245, 0.92);
      z-index: 0;
    }

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

    .hero-badge {
      display: inline-block;
      background: #0a1628;
      color: #fff;
      font-size: 13px;
      font-weight: 500;
      padding: 7px 22px;
      margin-bottom: 22px;
      position: relative;
      clip-path: polygon(8px 0, calc(100% - 8px) 0, 100% 50%, calc(100% - 8px) 100%, 8px 100%, 0 50%);
    }

    .hero h1 {
      font-size: 42px;
      line-height: 1.1;
      font-weight: 700;
      color: #0a1628;
      margin: 0;
      max-width: 540px;
    }

    .hero h1 .accent {
      color: #f5a623;
    }

    .hero-right {
      padding: 20px 0;
    }

    .hero .tagline {
      font-size: 16px;
      color: #fff;
      margin-bottom: 22px;
      max-width: 420px;
      line-height: 1.55;
      text-shadow: 0 1px 8px rgba(0, 0, 0, 0.4);
    }

    .hero-row {
      display: flex;
      align-items: center;
      gap: 22px;
      flex-wrap: wrap;
    }

    .hero-row .btn-primary {
      padding: 12px 22px;
      font-size: 15px;
      display: inline-flex;
      align-items: center;
      gap: 10px;
    }

    .hero-row .btn-primary::after {
      content: "→";
      font-size: 16px;
    }

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

    .avatars {
      display: flex;
    }

    .avatar {
      width: 38px;
      height: 38px;
      border-radius: 50%;
      border: 2px solid #fff;
      margin-left: -10px;
      background-size: cover;
      background-position: center;
      box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
    }

    .avatar:first-child {
      margin-left: 0;
    }

    .avatar.a1 {
      background-image: url('https://images.unsplash.com/photo-1507003211169-0a1dd7228f2d?auto=format&fit=crop&w=120&q=80');
    }

    .avatar.a2 {
      background-image: url('https://images.unsplash.com/photo-1472099645785-5658abf4ff4e?auto=format&fit=crop&w=120&q=80');
    }

    .avatar.a3 {
      background-image: url('https://images.unsplash.com/photo-1500648767791-00dcc994a43e?auto=format&fit=crop&w=120&q=80');
    }

    .satisfaction-text {
      font-size: 14px;
      line-height: 1.3;
      color: #fff;
      text-shadow: 0 1px 4px rgba(0, 0, 0, 0.4);
    }

    .satisfaction-text .stars {
      color: #f5a623;
      letter-spacing: 1px;
      display: block;
      font-size: 15px;
      margin-bottom: 2px;
    }

    .satisfaction-text strong {
      font-weight: 600;
    }

    /* ============ ABOUT ============ */
    .about {
      padding: 70px 0;
      background: #fff;
    }

    .about .container {
      display: grid;
      grid-template-columns: 1.1fr 1fr;
      gap: 60px;
      align-items: center;
    }

    .section-label {
      color: #f5a623;
      font-size: 13px;
      font-weight: 600;
      text-transform: uppercase;
      letter-spacing: 2px;
      margin-bottom: 12px;
    }

    .section-title {
      font-size: 30px;
      color: #0a1628;
      margin-bottom: 20px;
      line-height: 1.2;
    }

    .about p {
      margin-bottom: 14px;
      color: #444;
      font-size: 15px;
    }

    .about-sign {
      margin-top: 22px;
      font-style: italic;
      color: #0a1628;
      font-size: 15px;
      border-left: 3px solid #f5a623;
      padding-left: 14px;
    }

    .about-image {
      border-radius: 4px;
      aspect-ratio: 5/6;
      width: 100%;
      object-fit: cover;
      object-position: center;
      display: block;
    }

    /* ============ SERVICES ============ */
    .services {
      padding: 70px 0 80px;
      background: #fafafa;
    }

    .services-head {
      text-align: center;
      margin-bottom: 40px;
    }

    .services-head .kicker {
      display: inline-flex;
      align-items: center;
      gap: 12px;
      color: #0a1628;
      font-size: 14px;
      font-weight: 500;
      margin-bottom: 10px;
    }

    .services-head .kicker::before,
    .services-head .kicker::after {
      content: "";
      width: 26px;
      height: 2px;
      background: #f5a623;
    }

    .services-head h2 {
      font-size: 34px;
      color: #0a1628;
      font-weight: 700;
    }

    .services-layout {
      display: grid;
      grid-template-columns: 1fr 320px;
      gap: 36px;
      align-items: start;
    }

    .services-main {
      display: flex;
      flex-direction: column;
      gap: 36px;
    }

    .service-block {
      background: #fff;
      border: 1px solid #ececec;
      padding: 26px;
      border-radius: 2px;
    }

    .service-block-img {
      width: 100%;
      aspect-ratio: 16/10;
      object-fit: cover;
      object-position: center;
      display: block;
      margin-bottom: 22px;
      background-color: #e8e8e8;
    }

    .service-block h3 {
      font-size: 26px;
      color: #0a1628;
      font-weight: 700;
      margin-bottom: 18px;
      line-height: 1.2;
    }

    .service-block p {
      color: #2e3a4a;
      font-size: 14.5px;
      line-height: 1.75;
      margin-bottom: 18px;
      text-align: justify;
    }

    .service-block p:last-child {
      margin-bottom: 0;
    }

    .service-block strong {
      color: #0a1628;
      font-weight: 600;
    }

    /* sidebar */
    .services-sidebar {
      display: flex;
      flex-direction: column;
      gap: 16px;
      position: sticky;
      top: 90px;
    }

    .sidebar-card {
      background: #fff;
      border: 1px solid #ececec;
      padding: 20px;
      border-radius: 2px;
    }

    .sidebar-phone {
      display: flex;
      align-items: center;
      gap: 14px;
    }

    .sidebar-phone-icon {
      width: 44px;
      height: 44px;
      border-radius: 50%;
      background: #fff;
      border: 1px solid #e4e4e4;
      display: flex;
      align-items: center;
      justify-content: center;
      color: #0a1628;
      flex-shrink: 0;
    }

    .sidebar-phone-icon .ico {
      width: 18px;
      height: 18px;
    }

    .sidebar-phone-text {
      font-size: 14px;
      color: #6b7280;
      line-height: 1.4;
    }

    .sidebar-phone-text strong {
      display: block;
      color: #0a1628;
      font-size: 17px;
      font-weight: 700;
      letter-spacing: 0.5px;
    }

    .sidebar-promo-img {
      width: 100%;
      aspect-ratio: 16/9;
      background-size: cover;
      background-position: center;
      margin-bottom: 14px;
      background-color: #e8e8e8;
    }

    .sidebar-promo h4 {
      font-size: 15px;
      color: #0a1628;
      font-weight: 700;
      margin-bottom: 6px;
    }

    .sidebar-promo p {
      font-size: 13px;
      color: #6b7280;
      line-height: 1.5;
    }

    .sidebar-menu h4 {
      font-size: 17px;
      color: #0a1628;
      font-weight: 700;
      margin-bottom: 14px;
    }

    .sidebar-menu ul {
      list-style: none;
      display: flex;
      flex-direction: column;
      gap: 10px;
    }

    .sidebar-menu li a {
      display: flex;
      justify-content: space-between;
      align-items: center;
      padding: 12px 14px;
      background: #fff;
      border: 1px solid #e4e4e4;
      border-radius: 3px;
      color: #0a1628;
      font-size: 13.5px;
      font-weight: 500;
      transition: background .15s, border-color .15s;
    }

    .sidebar-menu li a:hover {
      background: #fafafa;
      border-color: #f5a623;
    }

    .sidebar-menu li a::after {
      content: "↗";
      color: #0a1628;
      font-size: 14px;
      margin-left: 8px;
    }

    /* ============ CTA BANNER ============ */
    .cta-banner {
      background: #0a1628;
      color: #fff;
      padding: 55px 0;
      text-align: center;
      border-top: 4px solid #f5a623;
      border-bottom: 4px solid #f5a623;
    }

    .cta-banner h2 {
      font-size: 26px;
      margin-bottom: 8px;
    }

    .cta-banner .phone-big {
      font-size: 44px;
      color: #f5a623;
      font-weight: 700;
      margin: 10px 0 6px;
      letter-spacing: 2px;
    }

    .cta-banner .phone-big a {
      display: inline-block;
    }

    .cta-banner .phone-big a:hover {
      text-decoration: underline;
    }

    .cta-banner p {
      color: #c6cdd6;
      font-size: 15px;
    }

    /* ============ TESTIMONIALS ============ */
    .testimonials {
      padding: 80px 0 90px;
      background: #fdf4ec;
    }

    .testimonials-head {
      text-align: center;
      margin-bottom: 50px;
    }

    .testimonials-head .kicker {
      display: inline-flex;
      align-items: center;
      gap: 12px;
      color: #0a1628;
      font-size: 14px;
      font-weight: 500;
      margin-bottom: 14px;
    }

    .testimonials-head .kicker::before,
    .testimonials-head .kicker::after {
      content: "";
      width: 26px;
      height: 2px;
      background: #f5a623;
    }

    .testimonials-head h2 {
      font-size: 36px;
      color: #0a1628;
      font-weight: 700;
      line-height: 1.1;
    }

    .testimonials-viewport {
      position: relative;
      padding: 0 60px;
    }

    .testimonials-track {
      overflow: hidden;
    }

    .testimonials-grid {
      display: flex;
      gap: 18px;
      transition: transform .4s ease;
      will-change: transform;
    }

    .review-card {
      background: #fcdfc7;
      padding: 28px 24px 26px;
      position: relative;
      flex: 0 0 calc((100% - 54px) / 4);
      box-sizing: border-box;
      /* notched top-right corner */
      clip-path: polygon(0 0, calc(100% - 22px) 0, 100% 22px, 100% 100%, 0 100%);
    }

    .review-card:nth-child(2n) {
      padding: 30px 24px 24px;
    }

    .review-card:nth-child(3n) {
      padding: 28px 22px 28px;
    }

    .review-rating {
      display: flex;
      align-items: center;
      gap: 10px;
      margin-bottom: 16px;
      font-weight: 600;
      color: #0a1628;
      font-size: 15px;
    }

    .review-rating .stars {
      color: #f5a623;
      letter-spacing: 2px;
      font-size: 14px;
    }

    .review-rating .review-google {
      margin-left: auto;
      display: inline-flex;
      align-items: center;
      gap: 5px;
      font-size: 11px;
      color: #6b6459;
      font-weight: 500;
    }

    .review-rating .review-google svg {
      width: 14px;
      height: 14px;
      flex-shrink: 0;
    }

    .review-text {
      color: #2e3a4a;
      font-size: 14px;
      line-height: 1.65;
      margin-bottom: 26px;
    }

    .review-footer {
      display: flex;
      align-items: center;
      gap: 12px;
      margin-top: auto;
    }

    .review-avatar {
      width: 42px;
      height: 42px;
      border-radius: 50%;
      background-size: cover;
      background-position: center;
      flex-shrink: 0;
      border: 2px solid #fff;
    }

    .review-avatar.r1 {
      background-image: url('https://images.unsplash.com/photo-1552058544-f2b08422138a?auto=format&fit=crop&w=160&q=80');
    }

    .review-avatar.r2 {
      background-image: url('https://images.unsplash.com/photo-1500648767791-00dcc994a43e?auto=format&fit=crop&w=160&q=80');
    }

    .review-avatar.r3 {
      background-image: url('https://images.unsplash.com/photo-1507003211169-0a1dd7228f2d?auto=format&fit=crop&w=160&q=80');
    }

    .review-avatar.r4 {
      background-image: url('https://images.unsplash.com/photo-1599566150163-29194dcaad36?auto=format&fit=crop&w=160&q=80');
    }

    .review-avatar.r5 {
      background-image: url('https://images.unsplash.com/photo-1506794778202-cad84cf45f1d?auto=format&fit=crop&w=160&q=80');
    }

    .review-avatar.r6 {
      background-image: url('https://images.unsplash.com/photo-1519085360753-af0119f7cbe7?auto=format&fit=crop&w=160&q=80');
    }

    .review-avatar.r7 {
      background-image: url('https://images.unsplash.com/photo-1531427186611-ecfd6d936c79?auto=format&fit=crop&w=160&q=80');
    }

    .review-avatar.r8 {
      background-image: url('https://images.unsplash.com/photo-1570295999919-56ceb5ecca61?auto=format&fit=crop&w=160&q=80');
    }

    .review-avatar.r9 {
      background-image: url('https://images.unsplash.com/photo-1463453091185-61582044d556?auto=format&fit=crop&w=160&q=80');
    }

    .review-avatar.r10 {
      background-image: url('https://images.unsplash.com/photo-1557862921-37829c790f19?auto=format&fit=crop&w=160&q=80');
    }

    .review-author {
      font-size: 14px;
      color: #0a1628;
      font-weight: 700;
      line-height: 1.2;
    }

    .review-city {
      color: #6b6459;
      font-weight: 400;
      font-size: 12px;
      margin-top: 2px;
      display: block;
    }

    .carousel-arrow {
      position: absolute;
      top: 50%;
      transform: translateY(-50%);
      width: 44px;
      height: 44px;
      border-radius: 50%;
      border: 1.5px solid #0a1628;
      background: transparent;
      color: #0a1628;
      display: flex;
      align-items: center;
      justify-content: center;
      cursor: pointer;
      font-size: 18px;
      transition: background .15s, color .15s;
      z-index: 3;
    }

    .carousel-arrow:hover {
      background: #0a1628;
      color: #f5a623;
    }

    .carousel-arrow.prev {
      left: 0;
    }

    .carousel-arrow.next {
      right: 0;
    }

    .google-badge {
      text-align: center;
      margin-top: 36px;
      font-size: 13px;
      color: #666;
      display: flex;
      align-items: center;
      justify-content: center;
      gap: 8px;
      flex-wrap: wrap;
    }

    .google-badge svg {
      width: 16px;
      height: 16px;
      flex-shrink: 0;
    }

    /* ============ CONTACT ============ */
    .contact {
      padding: 80px 0;
      background: #161616;
      color: #fff;
    }

    .contact .container {
      display: grid;
      grid-template-columns: 1.1fr 1fr;
      gap: 60px;
      align-items: center;
    }

    .contact-map {
      width: 100%;
      aspect-ratio: 16/11;
      border: 0;
      display: block;
      border-radius: 2px;
    }

    .contact-kicker {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      color: #f5a623;
      font-weight: 600;
      font-size: 14px;
      margin-bottom: 14px;
    }

    .contact-kicker-logo {
      height: 24px;
      width: auto;
      display: block;
    }

    .contact h2 {
      font-size: 38px;
      color: #fff;
      margin-bottom: 16px;
      font-weight: 700;
      line-height: 1.1;
    }

    .contact-lead {
      color: #b8b8b8;
      font-size: 15px;
      line-height: 1.6;
      margin-bottom: 22px;
      max-width: 460px;
    }

    .contact-phone {
      font-size: 28px;
      font-weight: 700;
      color: #fff;
      letter-spacing: 1px;
    }

    .contact-phone a:hover {
      color: #f5a623;
    }

    /* ============ FOOTER ============ */
    .footer {
      background: #161616;
      color: #9a9a9a;
      padding: 48px 0 0;
      font-size: 13px;
      position: relative;
    }

    .footer-cta {
      background: #f5a623;
      color: #fff;
      border-radius: 6px;
      padding: 28px 40px;
      display: flex;
      justify-content: space-between;
      align-items: center;
      gap: 20px;
      max-width: 1100px;
      margin: 0 auto;
      transform: translateY(-50%);
      flex-wrap: wrap;
    }

    .footer-cta h3 {
      color: #fff;
      font-size: 26px;
      font-weight: 700;
      margin: 0;
    }

    .footer-cta .footer-cta-btn {
      background: #fff;
      color: #161616;
      font-weight: 600;
      padding: 12px 22px;
      border-radius: 4px;
      font-size: 15px;
      border: none;
    }

    .footer-cta .footer-cta-btn:hover {
      background: #f5f5f5;
    }

    .footer-inner {
      text-align: center;
      padding: 0 20px;
      margin-top: -20px;
    }

    .footer-logo {
      display: inline-flex;
      align-items: center;
      gap: 12px;
      color: #fff;
      font-size: 22px;
      font-weight: 700;
      margin-bottom: 14px;
    }

    .footer-logo .logo-mark {
      width: 38px;
      height: 38px;
      background: #f5a623;
      color: #161616;
      display: flex;
      align-items: center;
      justify-content: center;
      border-radius: 50%;
    }

    .footer-logo .logo-mark .ico {
      width: 20px;
      height: 20px;
      stroke-width: 2;
    }

    .footer-logo small {
      display: block;
      color: #f5a623;
      font-size: 12px;
      font-weight: 500;
      letter-spacing: 1px;
      margin-top: 2px;
    }

    .footer-tag {
      color: #9a9a9a;
      font-size: 14px;
      margin-bottom: 22px;
    }

    .footer-social {
      display: flex;
      justify-content: center;
      gap: 12px;
      margin-bottom: 32px;
    }

    .footer-social a {
      width: 40px;
      height: 40px;
      border-radius: 50%;
      background: #2a2a2a;
      color: #f5a623;
      display: inline-flex;
      align-items: center;
      justify-content: center;
      transition: background .15s, color .15s, transform .15s;
    }

    .footer-social a:hover {
      background: #f5a623;
      color: #161616;
      transform: translateY(-2px);
    }

    .footer-social .ico-fill {
      width: 18px;
      height: 18px;
      fill: currentColor;
    }

    .footer-copy {
      border-top: 1px solid #2a2a2a;
      padding-top: 22px;
      color: #7a7a7a;
      font-size: 13px;
    }

    .scroll-top {
      position: fixed;
      right: 24px;
      bottom: 24px;
      width: 44px;
      height: 44px;
      border-radius: 50%;
      background: #f5a623;
      color: #fff;
      border: none;
      cursor: pointer;
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 18px;
      box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
      z-index: 50;
    }

    .scroll-top:hover {
      background: #e0951a;
    }

    /* ============ RESPONSIVE ============ */
    @media (max-width: 900px) {

      .hero .container,
      .about .container,
      .contact .container,
      .services-grid,
      .services-layout,
      .footer .container {
        grid-template-columns: 1fr;
      }


      .services-sidebar {
        position: static;
      }

      .testimonials-track {
        overflow-x: auto;
        overflow-y: hidden;
        -webkit-overflow-scrolling: touch;
        scroll-snap-type: x proximity;
        scrollbar-width: none;
        touch-action: pan-x;
      }

      .testimonials-track::-webkit-scrollbar {
        display: none;
      }

      .testimonials-grid {
        transform: none !important;
        padding: 0 14px;
        width: max-content;
      }

      .review-card {
        flex: 0 0 auto;
        width: 78vw;
        max-width: 320px;
        scroll-snap-align: start;
      }

      .testimonials-viewport {
        padding: 0 0 60px 0;
      }

      .carousel-arrow {
        width: 38px;
        height: 38px;
        font-size: 14px;
        top: auto;
        bottom: 0;
        transform: none;
      }

      .carousel-arrow.prev {
        left: calc(50% - 48px);
        right: auto;
      }

      .carousel-arrow.next {
        right: calc(50% - 48px);
        left: auto;
      }

      .testimonials-head h2 {
        font-size: 28px;
      }

      .hero h1 {
        font-size: 30px;
      }

      .nav {
        display: none;
      }

      .cta-banner .phone-big {
        font-size: 32px;
      }

      .hero {
        min-height: auto;
      }

      .hero-left {
        padding: 30px 20px;
      }

      .hero-left::before {
        left: 0;
        right: 0;
      }

      .hero-right {
        padding: 0;
      }

      .about,
      .services,
      .testimonials,
      .contact {
        padding: 50px 0;
      }

      .contact h2 {
        font-size: 28px;
      }

      .footer-cta {
        flex-direction: column;
        text-align: center;
        padding: 22px 24px;
        transform: none;
        margin: 0 auto;
        max-width: calc(100% - 32px);
      }

      .footer-cta h3 {
        font-size: 22px;
      }

      .footer {
        padding-top: 28px;
      }

      .footer-inner {
        margin-top: 24px;
      }
    }

    @media (max-width: 600px) {
      .container {
        padding: 0 14px;
      }

      .topbar {
        font-size: 12px;
      }

      .topbar .container {
        justify-content: center;
      }

      .header .container {
        gap: 10px;
      }

      .logo {
        font-size: 16px;
        gap: 8px;
      }

      .logo-img {
        height: 36px;
      }

      .logo-text small {
        font-size: 10px;
      }

      .header-cta .btn {
        padding: 9px 12px;
        font-size: 13px;
      }

      .hero h1 {
        font-size: 26px;
      }

      .hero-left {
        padding: 24px 16px;
      }

      .hero-row {
        flex-direction: column;
        align-items: flex-start;
        gap: 16px;
      }

      .section-title {
        font-size: 22px;
      }

      .services-head h2 {
        font-size: 24px;
      }

      .services-layout {
        gap: 22px;
      }

      .service-block {
        padding: 18px;
      }

      .service-block h3 {
        font-size: 20px;
      }

      .testimonials-head h2 {
        font-size: 22px;
      }

      .review-card {
        width: 82vw;
        padding: 22px 18px;
      }

      .cta-banner h2 {
        font-size: 20px;
      }

      .cta-banner .phone-big {
        font-size: 26px;
        letter-spacing: 1px;
      }

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

      .contact-phone {
        font-size: 22px;
      }

      .footer-cta h3 {
        font-size: 18px;
      }

      .footer-cta-btn {
        font-size: 14px;
        padding: 10px 18px;
      }

      .about,
      .services,
      .testimonials,
      .contact {
        padding: 40px 0;
      }
    }

    /* ============ FAQ ============ */
    .faq {
      padding: 80px 0;
      background: #f8f6f1;
    }

    .faq-head {
      text-align: center;
      margin-bottom: 48px;
    }

    .faq-head .kicker {
      color: #f5a623;
      font-size: 12px;
      letter-spacing: 2px;
      text-transform: uppercase;
      font-weight: 600;
      margin-bottom: 14px;
    }

    .faq-head h2 {
      font-size: 32px;
      color: #0a1628;
      font-weight: 700;
      letter-spacing: -0.5px;
      margin: 0;
    }

    .faq-head p {
      color: #6b6459;
      font-size: 15px;
      max-width: 620px;
      margin: 14px auto 0;
      line-height: 1.6;
    }

    .faq-list {
      max-width: 820px;
      margin: 0 auto;
      display: flex;
      flex-direction: column;
      gap: 12px;
    }

    .faq-item {
      background: #fff;
      border: 1px solid #ece7dd;
      border-radius: 4px;
      overflow: hidden;
    }

    .faq-item[open] {
      border-color: #f5a623;
    }

    .faq-item summary {
      list-style: none;
      cursor: pointer;
      padding: 18px 22px;
      display: flex;
      align-items: center;
      gap: 14px;
      font-weight: 600;
      color: #0a1628;
      font-size: 15px;
      line-height: 1.4;
    }

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

    .faq-item summary::after {
      content: '';
      width: 14px;
      height: 14px;
      margin-left: auto;
      flex-shrink: 0;
      background: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%230a1628' stroke-width='2.2' stroke-linecap='round' stroke-linejoin='round'><path d='M6 9l6 6 6-6'/></svg>") no-repeat center / contain;
      transition: transform 0.2s ease;
    }

    .faq-item[open] summary::after {
      transform: rotate(180deg);
    }

    .faq-item .faq-answer {
      padding: 0 22px 20px 22px;
      color: #2e3a4a;
      font-size: 14px;
      line-height: 1.7;
    }

    @media (max-width: 600px) {
      .faq {
        padding: 40px 0;
      }
      .faq-head h2 {
        font-size: 24px;
      }
      .faq-item summary {
        font-size: 14px;
        padding: 16px 18px;
      }
      .faq-item .faq-answer {
        padding: 0 18px 18px 18px;
      }
    }

    /* Floating call CTA */
    .floating-call {
      position: fixed;
      bottom: 80px;
      right: 24px;
      width: 64px;
      height: 64px;
      border-radius: 50%;
      background: #f5a623;
      color: #fff;
      display: flex;
      align-items: center;
      justify-content: center;
      box-shadow: 0 8px 24px rgba(0, 0, 0, 0.25);
      z-index: 9999;
      text-decoration: none;
      animation: floating-call-pulse 2s ease-out infinite;
      transition: transform 0.2s ease, background 0.2s ease;
    }

    .floating-call:hover,
    .floating-call:focus {
      background: #e0951a;
      transform: scale(1.05);
    }

    .floating-call .ico {
      width: 30px;
      height: 30px;
    }

    @keyframes floating-call-pulse {
      0% {
        box-shadow: 0 8px 24px rgba(0, 0, 0, 0.25), 0 0 0 0 rgba(245, 166, 35, 0.6);
      }
      70% {
        box-shadow: 0 8px 24px rgba(0, 0, 0, 0.25), 0 0 0 18px rgba(245, 166, 35, 0);
      }
      100% {
        box-shadow: 0 8px 24px rgba(0, 0, 0, 0.25), 0 0 0 0 rgba(245, 166, 35, 0);
      }
    }

    @media (max-width: 600px) {
      .floating-call {
        width: 56px;
        height: 56px;
        bottom: 76px;
        right: 24px;
      }
      .floating-call .ico {
        width: 26px;
        height: 26px;
      }
    }

    /* ============ LISTES SERVICES ============ */
    .service-list-head {
      font-weight: 600 !important;
      margin-top: 14px !important;
      margin-bottom: 8px !important;
      color: #0a1628 !important;
    }
    .service-list {
      list-style: none;
      padding: 0;
      margin: 0 0 6px 0;
    }
    .service-list li {
      position: relative;
      padding: 4px 0 4px 22px;
      color: #2e3a4a;
      font-size: 14.5px;
      line-height: 1.5;
    }
    .service-list li::before {
      content: "✓";
      position: absolute;
      left: 0;
      top: 4px;
      color: #f5a623;
      font-weight: 700;
    }

/* ===== NUISIBLES GRID ===== */
.nuisibles-grid-section { padding: 70px 0; background:#fff; }
.nuisibles-grid { display:grid; grid-template-columns:repeat(3,1fr); gap:16px; }
.nuisible-card { display:flex; align-items:center; justify-content:space-between;
  padding:22px 20px; background:#fafafa; border:1px solid #ececec; border-left:3px solid #f5a623;
  color:#0a1628; font-weight:600; font-size:15px; transition:background .15s,border-color .15s; }
.nuisible-card::after { content:"↗"; color:#f5a623; }
.nuisible-card:hover { background:#fff; border-color:#f5a623; }
@media (max-width:900px){ .nuisibles-grid{ grid-template-columns:1fr 1fr; } }
@media (max-width:600px){ .nuisibles-grid{ grid-template-columns:1fr; } }
/* ===== FOOTER LINK COLUMNS ===== */
/* ===== FOOTER 2 NIVEAUX (grille SEO + bloc infos + barre copyright) ===== */
.footer-intro { text-align:center; color:#cfcfcf; font-size:15px; max-width:920px; margin:0 auto 36px; padding:0 20px; line-height:1.6; }

/* Niveau 2 : grille de liens SEO (5 colonnes) */
.footer-seo { display:grid; grid-template-columns:repeat(5,1fr); gap:28px; padding-bottom:36px; border-bottom:1px solid #2a2a2a; }
.footer-seo-col h4 { color:#fff; font-size:14px; margin-bottom:12px; letter-spacing:.5px; }
.footer-seo-col ul { list-style:none; display:flex; flex-direction:column; gap:7px; margin:0; padding:0; }
.footer-seo-col a { color:#9a9a9a; font-size:13px; }
.footer-seo-col a:hover { color:#f5a623; }

/* Niveau 3 : bloc infos (3 colonnes) */
.footer-info { display:grid; grid-template-columns:1.3fr 1fr 1fr; gap:40px; padding:40px 0; align-items:start; }
.footer-info-col h4 { color:#fff; font-size:15px; margin:0 0 14px; letter-spacing:.5px; }
.footer-info .footer-logo { margin-bottom:18px; }
.footer-line { color:#9a9a9a; font-size:13px; line-height:1.6; margin:0 0 12px; }
.footer-line em { color:#7a7a7a; font-style:italic; }
.footer-phone { display:inline-flex; align-items:center; gap:10px; color:#f5a623; font-size:23px; font-weight:800; text-decoration:none; margin:2px 0 18px; }
.footer-phone .ico { width:22px; height:22px; }
.footer-phone:hover { color:#fff; }
.footer-links { list-style:none; margin:0 0 18px; padding:0; display:flex; flex-direction:column; gap:9px; }
.footer-links a { color:#9a9a9a; font-size:13px; }
.footer-links a:hover { color:#f5a623; }
.footer-link-strong { display:inline-flex; align-items:center; gap:8px; color:#fff; font-weight:600; font-size:14px; text-decoration:none; }
.footer-link-strong .ico { width:16px; height:16px; color:#f5a623; }
.footer-link-strong:hover { color:#f5a623; }
.footer-info .footer-social { justify-content:flex-start; margin-bottom:0; }

/* Niveau 4 : barre copyright */
.footer-bottom { background:#0e0e0e; padding:18px 0; }
.footer-bottom .container { color:#7a7a7a; font-size:13px; text-align:center; }

@media (max-width:1000px){
  .footer-seo { grid-template-columns:repeat(3,1fr); }
  .footer-info { grid-template-columns:1fr 1fr; }
}
@media (max-width:680px){
  .footer-seo { grid-template-columns:1fr 1fr; }
  .footer-info { grid-template-columns:1fr; }
}

.footer-cols { display:grid; grid-template-columns:repeat(4,1fr); gap:28px;
  max-width:1100px; margin:0 auto 36px; padding:0 20px; }
.footer-cols h4 { color:#fff; font-size:14px; margin-bottom:12px; letter-spacing:.5px; }
.footer-cols ul { list-style:none; display:flex; flex-direction:column; gap:7px; }
.footer-cols a { color:#9a9a9a; font-size:13px; }
.footer-cols a:hover { color:#f5a623; }
@media (max-width:900px){ .footer-cols{ grid-template-columns:1fr 1fr; } }
@media (max-width:600px){ .footer-cols{ grid-template-columns:1fr; text-align:center; } }
/* ===== INNER PAGE HERO (pages thématiques) ===== */
.page-hero { background:#0a1628; color:#fff; padding:64px 0; border-bottom:4px solid #f5a623; }
.page-hero h1 { font-size:34px; line-height:1.15; margin-bottom:14px; }
.page-hero p { color:#c6cdd6; max-width:680px; font-size:16px; }
.page-hero .btn-primary { margin-top:22px; }
.page-section { padding:60px 0; }
.page-section:nth-of-type(even){ background:#fafafa; }
.breadcrumb { font-size:13px; color:#6b7280; padding:14px 0; }
.breadcrumb a:hover { color:#f5a623; }
/* ===== DEVIS FORM ===== */
.devis-form { max-width:620px; display:flex; flex-direction:column; gap:14px; }
.devis-form label { font-weight:600; color:#0a1628; font-size:14px; }
.devis-form input, .devis-form select, .devis-form textarea {
  width:100%; padding:12px 14px; border:1px solid #d9d9d9; border-radius:3px; font:inherit; }
.devis-form textarea { min-height:120px; resize:vertical; }

/* ===== PAGE CONTACT (deux cartes + bandeau d'atouts) ===== */
.contact-cols { display:grid; grid-template-columns:1fr 1fr; gap:28px; align-items:start; }
.contact-card { background:#fff; border:1px solid #e6e6e6; border-radius:6px; padding:30px 28px; box-shadow:0 2px 14px rgba(10,22,40,.05); }
.contact-card h2 { display:flex; align-items:center; justify-content:center; gap:10px; color:#0a1628; font-size:20px; margin:0 0 4px; text-align:center; }
.contact-card h2 .ico { width:22px; height:22px; color:#f5a623; }
.contact-card .card-sub { text-align:center; color:#666; font-style:italic; font-size:14px; margin:0 0 22px; }

/* Carte « Appel direct » */
.call-card { display:flex; flex-direction:column; align-items:center; text-align:center; }
.call-card .card-label { font-weight:700; color:#0a1628; font-size:15px; margin:8px 0 14px; }
.call-card .card-label span { font-weight:400; color:#888; font-size:13px; }
.call-btn { display:inline-flex; align-items:center; gap:12px; background:#0a1628; color:#f5a623; font-size:26px; font-weight:800; letter-spacing:.5px; padding:18px 30px; border-radius:6px; text-decoration:none; transition:background .15s; }
.call-btn .ico { width:26px; height:26px; color:#f5a623; }
.call-btn:hover { background:#142847; }
.call-card .card-note { color:#666; font-size:14px; margin:20px 0 0; max-width:320px; }

/* Carte « Formulaire de rappel » */
.form-card .devis-form { max-width:none; gap:6px; }
.form-card .devis-form label { margin-top:8px; }
.devis-form input[type=file] { padding:8px; background:#fafafa; }
.form-hint { font-size:12px; color:#888; margin:2px 0 4px; }
.form-check { display:flex; align-items:flex-start; gap:8px; font-weight:400 !important; color:#444; font-size:13px; margin-top:12px; }
.form-check input[type=checkbox] { width:auto; margin-top:2px; flex:0 0 auto; }
.form-card .devis-form button { margin-top:16px; }

/* Bandeau d'atouts (3 colonnes) */
.contact-badges { background:#f7f8fa; padding:40px 0; border-top:1px solid #eee; }
.contact-badges .container { display:flex; justify-content:center; gap:60px; flex-wrap:wrap; }
.contact-badges .badge { display:flex; flex-direction:column; align-items:center; text-align:center; gap:12px; color:#0a1628; font-weight:700; font-size:15px; line-height:1.4; }
.contact-badges .badge .ico { width:40px; height:40px; color:#f5a623; stroke-width:1.5; }

@media (max-width:760px){
  .contact-cols { grid-template-columns:1fr; gap:20px; }
  .contact-badges .container { gap:30px; }
  .call-btn { font-size:22px; }
}
/* ===== BLOG GRID ===== */
.blog-grid { display:grid; grid-template-columns:repeat(3,1fr); gap:24px; }
.blog-card { background:#fff; border:1px solid #ececec; border-radius:3px; overflow:hidden; }
.blog-card img { width:100%; aspect-ratio:16/10; object-fit:cover; }
.blog-card .blog-card-body { padding:18px; }
.blog-card h3 { font-size:18px; color:#0a1628; margin-bottom:8px; }
.blog-card p { font-size:14px; color:#555; margin-bottom:10px; }
@media (max-width:900px){ .blog-grid{ grid-template-columns:1fr 1fr; } }
@media (max-width:600px){ .blog-grid{ grid-template-columns:1fr; } }
.article-body { max-width:760px; }
.article-body h2 { font-size:24px; color:#0a1628; margin:28px 0 12px; }
.article-body p { margin-bottom:14px; color:#2e3a4a; line-height:1.75; }
/* ===== ENGAGEMENTS (bandeau accueil) ===== */
.engagements { background:#fafafa; padding:46px 0; border-bottom:1px solid #ececec; }
.engagements-grid { display:grid; grid-template-columns:repeat(4,1fr); gap:24px; }
.engagement { text-align:center; }
.engagement-ico { width:54px; height:54px; border-radius:50%; background:#0a1628; color:#f5a623; display:flex; align-items:center; justify-content:center; margin:0 auto 14px; }
.engagement-ico .ico { width:26px; height:26px; }
.engagement h3 { font-size:16px; color:#0a1628; margin-bottom:8px; }
.engagement p { font-size:13.5px; color:#555; line-height:1.55; }
@media (max-width:900px){ .engagements-grid{ grid-template-columns:1fr 1fr; } }
@media (max-width:600px){ .engagements-grid{ grid-template-columns:1fr; } }
/* ===== URGENCE ARGUMENT ===== */
.urgence-argument { background:#fff; padding:60px 0; }
.urgence-argument .container { max-width:820px; }
.urgence-argument p { color:#444; font-size:15px; line-height:1.75; margin-bottom:14px; }
