/* ================================================
   Huuki Oy — Rakennus & Remontointi Tampere
   CSS — Navy/Red palette, Montserrat + Open Sans
   ================================================ */

@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@400;600;700;800;900&family=Open+Sans:wght@400;500;600&display=swap');

/* ==================== CUSTOM PROPERTIES ==================== */
:root {
  --color-primary:   #16213E;
  --color-secondary: #0F3460;
  --color-accent:    #E94560;
  --color-dark:      #0A0A1A;
  --color-light:     #F0F2F5;
  --color-white:     #FFFFFF;
  --color-gray:      #8892A4;
  --color-border:    rgba(255,255,255,0.08);

  --font-heading: 'Montserrat', sans-serif;
  --font-body:    'Open Sans', sans-serif;

  --max-width: 1180px;
  --section-pad: clamp(60px, 8vw, 100px);
  --row-gap: clamp(48px, 6vw, 80px);

  --radius: 4px;
  --shadow: 0 20px 60px rgba(0,0,0,0.35);
  --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

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

html {
  scroll-behavior: smooth;
  font-size: 16px;
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: var(--font-body);
  color: var(--color-primary);
  background: var(--color-dark);
  line-height: 1.65;
  overflow-x: hidden;
}

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

a { color: inherit; text-decoration: none; }
ul { list-style: none; }
button { cursor: pointer; border: none; background: none; }

/* ==================== UTILITY ==================== */
.container {
  width: 100%;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 clamp(20px, 5vw, 48px);
}

.section-label {
  display: inline-block;
  font-family: var(--font-heading);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--color-accent);
  margin-bottom: 14px;
}
.section-label--light { color: rgba(255,255,255,0.65); }

.section-intro {
  text-align: center;
  max-width: 640px;
  margin: 0 auto var(--row-gap);
}
.section-intro h2 {
  font-family: var(--font-heading);
  font-size: clamp(1.9rem, 3.5vw, 2.8rem);
  font-weight: 800;
  color: var(--color-white);
  margin-bottom: 16px;
  line-height: 1.2;
}
.section-desc {
  color: rgba(255,255,255,0.6);
  font-size: 1.05rem;
}

/* ==================== BUTTONS ==================== */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-heading);
  font-size: 0.875rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 14px 28px;
  border-radius: var(--radius);
  border: 2px solid transparent;
  transition: var(--transition);
  white-space: nowrap;
  position: relative;
  overflow: hidden;
}
.btn::after {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(255,255,255,0.1);
  opacity: 0;
  transition: opacity 0.2s;
}
.btn:hover::after { opacity: 1; }

.btn-primary {
  background: var(--color-accent);
  color: var(--color-white);
  border-color: var(--color-accent);
}
.btn-primary:hover {
  background: #c5374f;
  border-color: #c5374f;
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(233,69,96,0.4);
}

.btn-outline {
  background: transparent;
  color: var(--color-white);
  border-color: rgba(255,255,255,0.5);
}
.btn-outline:hover {
  border-color: var(--color-white);
  background: rgba(255,255,255,0.07);
}

.btn-accent {
  background: var(--color-accent);
  color: var(--color-white);
  padding: 12px 24px;
  font-size: 0.8rem;
}
.btn-accent:hover {
  background: #c5374f;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(233,69,96,0.35);
}

.btn-lg { padding: 18px 40px; font-size: 0.95rem; }

/* ==================== HEADER ==================== */
.site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  transition: background var(--transition), box-shadow var(--transition);
  padding: 0;
}
.site-header.scrolled {
  background: rgba(10, 10, 26, 0.97);
  box-shadow: 0 2px 30px rgba(0,0,0,0.5);
  backdrop-filter: blur(12px);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 70px;
}

.logo {
  display: flex;
  flex-direction: column;
  gap: 1px;
}
.logo-main {
  font-family: var(--font-heading);
  font-size: 1.35rem;
  font-weight: 800;
  color: var(--color-white);
  letter-spacing: 0.12em;
  line-height: 1;
}
.logo-sub {
  font-family: var(--font-heading);
  font-size: 0.52rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--color-accent);
  line-height: 1;
}

.nav-list {
  display: flex;
  align-items: center;
  gap: 8px;
}
.nav-link {
  font-family: var(--font-heading);
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.8);
  padding: 8px 14px;
  border-radius: var(--radius);
  transition: color var(--transition), background var(--transition);
}
.nav-link:hover { color: var(--color-white); background: rgba(255,255,255,0.07); }

.nav-cta {
  background: var(--color-accent);
  color: var(--color-white) !important;
  padding: 9px 18px;
}
.nav-cta:hover { background: #c5374f; }

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 8px;
}
.hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--color-white);
  border-radius: 2px;
  transition: var(--transition);
}
.hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ==================== HERO ==================== */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  transform: scale(1.05);
  transition: transform 8s ease;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(10,10,26,0.88) 0%,
    rgba(15,52,96,0.7) 50%,
    rgba(10,10,26,0.75) 100%
  );
}

.hero-content {
  position: relative;
  z-index: 2;
  padding-top: 80px;
  padding-bottom: 60px;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-heading);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--color-accent);
  border: 1px solid rgba(233,69,96,0.4);
  padding: 6px 14px;
  border-radius: 2px;
  margin-bottom: 24px;
}

.hero-headline {
  font-family: var(--font-heading);
  font-size: clamp(2.6rem, 7vw, 5.5rem);
  font-weight: 800;
  color: var(--color-white);
  line-height: 1.07;
  margin-bottom: 24px;
  max-width: 820px;
}
.hero-headline .accent { color: var(--color-accent); }

.hero-sub {
  font-size: clamp(1.05rem, 2vw, 1.35rem);
  color: rgba(255,255,255,0.75);
  max-width: 560px;
  margin-bottom: 36px;
  line-height: 1.6;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-bottom: 56px;
}

.hero-stats {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  padding-top: 32px;
  border-top: 1px solid rgba(255,255,255,0.12);
}
.hero-stat {
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.stat-num {
  font-family: var(--font-heading);
  font-size: 2rem;
  font-weight: 800;
  color: var(--color-white);
  line-height: 1;
}
.stat-unit {
  font-family: var(--font-heading);
  font-size: 1.4rem;
  font-weight: 800;
  color: var(--color-accent);
}
.stat-icon {
  font-size: 1.6rem;
  line-height: 1;
}
.stat-label {
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  color: rgba(255,255,255,0.55);
  text-transform: uppercase;
}

.hero-scroll {
  position: absolute;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  color: rgba(255,255,255,0.5);
  animation: bounce 2s infinite;
  transition: color var(--transition);
}
.hero-scroll:hover { color: var(--color-white); }

@keyframes bounce {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50% { transform: translateX(-50%) translateY(8px); }
}

/* ==================== SERVICES ==================== */
.services {
  background: var(--color-dark);
  padding: var(--section-pad) 0;
}

.service-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  max-width: var(--max-width);
  margin: 0 auto var(--row-gap);
  align-items: stretch;
  overflow: hidden;
  border-radius: 6px;
  box-shadow: var(--shadow);
}

.service-row--text-left .service-row__content { order: 1; }
.service-row--text-left .service-row__image   { order: 2; }
.service-row--image-left .service-row__image  { order: 1; }
.service-row--image-left .service-row__content{ order: 2; }

.service-row__content {
  background: var(--color-secondary);
  padding: clamp(36px, 5vw, 56px);
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 16px;
  position: relative;
}

.service-number {
  font-family: var(--font-heading);
  font-size: 4rem;
  font-weight: 900;
  color: rgba(255,255,255,0.06);
  position: absolute;
  top: 16px;
  right: 24px;
  line-height: 1;
  pointer-events: none;
  user-select: none;
}

.service-row__content h3 {
  font-family: var(--font-heading);
  font-size: clamp(1.4rem, 2.5vw, 1.85rem);
  font-weight: 800;
  color: var(--color-white);
  line-height: 1.2;
}

.service-price {
  font-family: var(--font-heading);
  font-size: 1rem;
  color: rgba(255,255,255,0.6);
}
.service-price strong {
  color: var(--color-accent);
  font-size: 1.25rem;
}

.service-row__content p {
  color: rgba(255,255,255,0.72);
  font-size: 0.97rem;
  line-height: 1.7;
}

.service-features {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.service-features li {
  font-size: 0.88rem;
  color: rgba(255,255,255,0.65);
  padding-left: 20px;
  position: relative;
}
.service-features li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 8px;
  width: 8px;
  height: 2px;
  background: var(--color-accent);
}

.service-row__image {
  overflow: hidden;
  position: relative;
  min-height: 320px;
}
.service-row__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  min-height: 280px;
  transition: transform 0.6s ease;
}
.service-row:hover .service-row__image img {
  transform: scale(1.04);
}

/* Clip-path section divider after services */
.services::after {
  content: '';
  display: block;
  height: 80px;
  background: var(--color-primary);
  clip-path: polygon(0 0, 100% 50%, 100% 100%, 0 100%);
  margin-top: var(--section-pad);
}

/* ==================== ABOUT ==================== */
.about {
  background: var(--color-primary);
  padding: var(--section-pad) 0;
  position: relative;
}

.about::before {
  content: '';
  display: block;
  height: 80px;
  background: var(--color-primary);
  clip-path: polygon(0 0, 100% 0, 100% 100%, 0 50%);
  position: absolute;
  top: -79px;
  left: 0; right: 0;
}

.about-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(40px, 6vw, 80px);
  align-items: center;
  margin-bottom: var(--row-gap);
}

.about-content h2 {
  font-family: var(--font-heading);
  font-size: clamp(1.7rem, 3vw, 2.4rem);
  font-weight: 800;
  color: var(--color-white);
  margin-bottom: 20px;
  line-height: 1.2;
}
.about-content p {
  color: rgba(255,255,255,0.7);
  font-size: 0.97rem;
  line-height: 1.75;
  margin-bottom: 16px;
}

.about-highlights {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin: 24px 0;
}
.highlight {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-heading);
  font-size: 0.88rem;
  font-weight: 600;
  color: rgba(255,255,255,0.85);
}
.highlight svg { color: var(--color-accent); flex-shrink: 0; }

.about-image {
  overflow: hidden;
  border-radius: 4px;
  box-shadow: var(--shadow);
  position: relative;
}
.about-image::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0;
  right: 0;
  height: 40%;
  background: linear-gradient(to top, rgba(22,33,62,0.5), transparent);
  pointer-events: none;
}
.about-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  min-height: 400px;
  transition: transform 0.6s ease;
}
.about-image:hover img { transform: scale(1.03); }

.about-stats {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 0;
  padding: 48px;
  background: rgba(255,255,255,0.04);
  border-radius: 6px;
  border: 1px solid var(--color-border);
  margin-top: 0;
}

.about-stat {
  flex: 1;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  padding: 0 24px;
}
.about-stat--divider {
  flex: none;
  width: 1px;
  height: 60px;
  background: var(--color-border);
  padding: 0;
}

.about-stat__num {
  font-family: var(--font-heading);
  font-size: clamp(2.2rem, 4vw, 3.2rem);
  font-weight: 800;
  color: var(--color-white);
  line-height: 1;
}
.about-stat__unit {
  font-family: var(--font-heading);
  font-size: 1.6rem;
  font-weight: 800;
  color: var(--color-accent);
}
.about-stat__label {
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  color: rgba(255,255,255,0.5);
  text-transform: uppercase;
}

/* ==================== TESTIMONIALS ==================== */
.testimonials {
  background: var(--color-light);
  padding: var(--section-pad) 0;
  clip-path: polygon(0 4%, 100% 0, 100% 96%, 0 100%);
  margin: 20px 0;
  padding-top: calc(var(--section-pad) + 40px);
  padding-bottom: calc(var(--section-pad) + 40px);
}
.testimonials .container { position: relative; z-index: 1; }
.testimonials .section-label { color: var(--color-accent); }
.testimonials h2 {
  font-family: var(--font-heading);
  font-size: clamp(1.7rem, 3vw, 2.4rem);
  font-weight: 800;
  color: var(--color-primary);
  text-align: center;
  margin-bottom: var(--row-gap);
}

.testimonials-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px;
}

.testimonial-card {
  background: var(--color-white);
  border-radius: 6px;
  padding: clamp(28px, 4vw, 44px);
  box-shadow: 0 10px 40px rgba(22,33,62,0.12);
  border-top: 3px solid var(--color-accent);
  display: flex;
  flex-direction: column;
  gap: 18px;
  transition: transform var(--transition), box-shadow var(--transition);
}
.testimonial-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 20px 60px rgba(22,33,62,0.18);
}

.testimonial-stars {
  color: #F59E0B;
  font-size: 1.1rem;
  letter-spacing: 2px;
}
.testimonial-text {
  font-size: 0.97rem;
  color: var(--color-primary);
  line-height: 1.75;
  font-style: italic;
}
.testimonial-author {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-top: auto;
}
.testimonial-avatar {
  width: 44px;
  height: 44px;
  background: linear-gradient(135deg, var(--color-secondary), var(--color-accent));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-heading);
  font-size: 0.78rem;
  font-weight: 700;
  color: var(--color-white);
  flex-shrink: 0;
}
.testimonial-name {
  display: block;
  font-family: var(--font-heading);
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--color-primary);
  font-style: normal;
}
.testimonial-location {
  display: block;
  font-size: 0.78rem;
  color: var(--color-gray);
}

/* ==================== CTA SECTION ==================== */
.cta-section {
  position: relative;
  padding: var(--section-pad) 0;
  overflow: hidden;
}

.cta-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
}

.cta-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(233,69,96,0.9) 0%,
    rgba(22,33,62,0.92) 60%
  );
}

.cta-content {
  position: relative;
  z-index: 2;
  text-align: center;
}
.cta-content .section-label { color: rgba(255,255,255,0.7); }
.cta-content h2 {
  font-family: var(--font-heading);
  font-size: clamp(2rem, 4.5vw, 3.5rem);
  font-weight: 800;
  color: var(--color-white);
  margin-bottom: 20px;
  line-height: 1.15;
}
.cta-sub {
  color: rgba(255,255,255,0.8);
  font-size: 1.05rem;
  max-width: 580px;
  margin: 0 auto 48px;
  line-height: 1.65;
}

.cta-contact-grid {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 20px;
  margin-bottom: 40px;
}

.contact-block {
  display: flex;
  align-items: center;
  gap: 14px;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: 4px;
  padding: 16px 24px;
  min-width: 200px;
  transition: background var(--transition);
}
.contact-block:hover { background: rgba(255,255,255,0.14); }

.contact-icon {
  width: 40px;
  height: 40px;
  background: var(--color-accent);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-white);
  flex-shrink: 0;
}

.contact-label {
  display: block;
  font-family: var(--font-heading);
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.55);
  margin-bottom: 2px;
}
.contact-value {
  display: block;
  font-family: var(--font-heading);
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--color-white);
  transition: color var(--transition);
}
a.contact-value:hover { color: var(--color-accent); }

/* ==================== FOOTER ==================== */
.site-footer {
  background: var(--color-dark);
  border-top: 1px solid var(--color-border);
}

.footer-inner {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: clamp(32px, 5vw, 60px);
  padding-top: clamp(48px, 6vw, 72px);
  padding-bottom: clamp(48px, 6vw, 72px);
}

.footer-tagline {
  font-size: 0.88rem;
  color: rgba(255,255,255,0.45);
  margin-top: 16px;
  max-width: 280px;
  line-height: 1.6;
}

.footer-heading {
  font-family: var(--font-heading);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--color-accent);
  margin-bottom: 20px;
}

.footer-nav ul,
.footer-contact ul {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.footer-nav a,
.footer-contact a,
.footer-contact li {
  font-size: 0.88rem;
  color: rgba(255,255,255,0.55);
  transition: color var(--transition);
}
.footer-nav a:hover,
.footer-contact a:hover { color: var(--color-white); }

.footer-bottom {
  border-top: 1px solid var(--color-border);
  padding: 20px 0;
}
.footer-bottom .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 8px;
}
.footer-bottom p {
  font-size: 0.78rem;
  color: rgba(255,255,255,0.3);
}
.footer-reg { font-size: 0.72rem !important; }

/* ==================== SCROLL ANIMATIONS ==================== */

/* Clip-path reveal */
.reveal-clip {
  animation: clipReveal linear both;
  animation-timeline: view();
  animation-range: entry 0% entry 35%;
}

@keyframes clipReveal {
  from {
    clip-path: inset(0 100% 0 0);
    opacity: 0;
    transform: scale(0.97);
  }
  to {
    clip-path: inset(0 0% 0 0);
    opacity: 1;
    transform: scale(1);
  }
}

/* Individual card stagger */
.testimonial-card:nth-child(1) { animation-delay: 0s; }
.testimonial-card:nth-child(2) { animation-delay: 0.12s; }

/* Service rows alternate reveal direction */
.service-row--text-left { animation: slideInLeft linear both; animation-timeline: view(); animation-range: entry 0% entry 40%; }
.service-row--image-left { animation: slideInRight linear both; animation-timeline: view(); animation-range: entry 0% entry 40%; }

@keyframes slideInLeft {
  from { transform: translateX(-40px); opacity: 0; }
  to   { transform: translateX(0);     opacity: 1; }
}
@keyframes slideInRight {
  from { transform: translateX(40px); opacity: 0; }
  to   { transform: translateX(0);    opacity: 1; }
}

/* Hero entry animations */
.animate-fade-up {
  animation: fadeUp 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94) both;
}
.delay-1 { animation-delay: 0.15s; }
.delay-2 { animation-delay: 0.3s; }
.delay-3 { animation-delay: 0.45s; }
.delay-4 { animation-delay: 0.6s; }

@keyframes fadeUp {
  from { opacity: 0; transform: translateY(30px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* ==================== RESPONSIVE ==================== */
@media (max-width: 900px) {
  .service-row {
    grid-template-columns: 1fr;
  }
  .service-row--text-left .service-row__content { order: 1; }
  .service-row--text-left .service-row__image   { order: 2; }
  .service-row--image-left .service-row__image  { order: 2; }
  .service-row--image-left .service-row__content{ order: 1; }

  .service-row__image {
    min-height: 280px;
  }
  .service-row__image img {
    min-height: 280px;
  }

  .about-inner {
    grid-template-columns: 1fr;
  }
  .about-image { order: -1; }
  .about-image img { min-height: 280px; }

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

  .footer-inner {
    grid-template-columns: 1fr 1fr;
  }
  .footer-brand {
    grid-column: 1 / -1;
  }

  .about-stats {
    flex-direction: column;
    padding: 32px 24px;
  }
  .about-stat--divider {
    width: 60px;
    height: 1px;
  }
}

@media (max-width: 640px) {
  .main-nav {
    display: none;
    position: fixed;
    top: 70px; left: 0; right: 0;
    background: rgba(10,10,26,0.98);
    backdrop-filter: blur(16px);
    padding: 24px;
    border-top: 1px solid var(--color-border);
  }
  .main-nav.open { display: block; }
  .nav-list {
    flex-direction: column;
    align-items: flex-start;
    gap: 4px;
  }
  .nav-link {
    display: block;
    width: 100%;
    padding: 14px 16px;
    font-size: 0.92rem;
  }

  .hamburger { display: flex; }

  .hero-stats { gap: 20px; }

  .hero-actions { flex-direction: column; }
  .hero-actions .btn { text-align: center; justify-content: center; }

  .cta-contact-grid { flex-direction: column; align-items: center; }
  .contact-block { width: 100%; max-width: 320px; }

  .footer-inner {
    grid-template-columns: 1fr;
  }
  .footer-bottom .container {
    flex-direction: column;
    align-items: flex-start;
  }

  .service-row__content { padding: 28px 24px; }

  .testimonials {
    clip-path: none;
    margin: 0;
  }

  .services::after { display: none; }
  .about::before { display: none; }
}
