﻿:root {
  --bg: #f3f8ff;
  --surface: rgba(255, 255, 255, 0.86);
  --surface-strong: #ffffff;
  --text: #112136;
  --muted: #536177;
  --primary: #0d6efd;
  --primary-strong: #0057d8;
  --accent: #11b9ab;
  --line: #d4ddee;
  --radius: 18px;
  --shadow-xs: 0 4px 12px rgba(17, 33, 54, 0.06);
  --shadow-sm: 0 8px 24px rgba(17, 33, 54, 0.09);
  --shadow-md: 0 12px 36px rgba(17, 33, 54, 0.11);
  --shadow-lg: 0 18px 50px rgba(17, 33, 54, 0.14);
  --shadow-xl: 0 24px 64px rgba(17, 33, 54, 0.18);
}

body.dark-mode {
  --bg: #0f1726;
  --surface: rgba(18, 27, 43, 0.86);
  --surface-strong: #132036;
  --text: #e6f0ff;
  --muted: #a5b5cc;
  --primary: #5ba8ff;
  --primary-strong: #8ec2ff;
  --accent: #4cd8cb;
  --line: #29405f;
  --shadow-xs: 0 4px 12px rgba(0, 0, 0, 0.2);
  --shadow-sm: 0 8px 24px rgba(0, 0, 0, 0.25);
  --shadow-md: 0 12px 36px rgba(0, 0, 0, 0.3);
  --shadow-lg: 0 18px 50px rgba(0, 0, 0, 0.35);
  --shadow-xl: 0 24px 64px rgba(0, 0, 0, 0.4);
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: "Manrope", sans-serif;
  background: radial-gradient(circle at top right, #dce8ff 0%, transparent 46%),
    radial-gradient(circle at left 85%, #d6fff9 0%, transparent 42%),
    var(--bg);
  color: var(--text);
  line-height: 1.75;
}

body.dark-mode {
  background: radial-gradient(circle at top right, #172b45 0%, transparent 46%),
    radial-gradient(circle at left 85%, #133c38 0%, transparent 42%),
    var(--bg);
}

.container {
  width: min(1120px, 92%);
  margin: 0 auto;
}

.section-pad {
  padding: 100px 0;
}

h1,
h2,
h3,
h4 {
  font-family: "Sora", sans-serif;
  line-height: 1.24;
  color: var(--text);
}

h1 {
  font-size: clamp(2rem, 4.8vw, 3.8rem);
  letter-spacing: -1px;
  margin-bottom: 20px;
}

h2 {
  font-size: clamp(1.5rem, 3.3vw, 2.45rem);
  letter-spacing: -0.7px;
  margin-bottom: 16px;
}

h3 {
  font-size: clamp(1.1rem, 2.2vw, 1.45rem);
  margin-bottom: 12px;
}

h4 {
  font-size: 1rem;
  margin-bottom: 8px;
}

p {
  color: var(--muted);
  letter-spacing: 0.2px;
}

.eyebrow {
  color: var(--accent);
  text-transform: uppercase;
  letter-spacing: 0.13em;
  font-size: 0.78rem;
  font-weight: 800;
  margin-bottom: 12px;
}

.page-loader {
  position: fixed;
  inset: 0;
  display: grid;
  place-items: center;
  background: var(--bg);
  z-index: 2000;
  transition: opacity 0.3s ease, visibility 0.3s ease;
}

.page-loader.hide {
  opacity: 0;
  visibility: hidden;
}

.loader-spinner {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 3px solid color-mix(in srgb, var(--primary) 18%, transparent);
  border-top-color: var(--primary);
  animation: spin 0.9s linear infinite;
}

@keyframes spin {
  to {
    transform: rotate(360deg);
  }
}

.bg-orb {
  position: fixed;
  border-radius: 999px;
  filter: blur(38px);
  z-index: -1;
  pointer-events: none;
}

.orb-1 {
  width: 240px;
  height: 240px;
  left: -90px;
  bottom: 12%;
  background: color-mix(in srgb, var(--accent) 35%, transparent);
}

.orb-2 {
  width: 280px;
  height: 280px;
  right: -110px;
  top: 20%;
  background: color-mix(in srgb, var(--primary) 30%, transparent);
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 1200;
  backdrop-filter: blur(10px);
  background: color-mix(in srgb, var(--surface) 85%, transparent);
  border-bottom: 1px solid color-mix(in srgb, var(--line) 84%, transparent);
}

.nav-wrap {
  min-height: 76px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
}

.brand {
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
}

.brand-mark {
  width: 36px;
  height: 36px;
  border-radius: 12px;
  display: grid;
  place-items: center;
  color: #fff;
  font-weight: 800;
  font-family: "Sora", sans-serif;
  background: linear-gradient(145deg, var(--primary), var(--accent));
}

.brand-text {
  color: var(--text);
  font-weight: 800;
  font-family: "Sora", sans-serif;
  font-size: 1.04rem;
}

.main-nav {
  display: flex;
  align-items: center;
  gap: 18px;
  white-space: nowrap;
}

.main-nav a,
.socials a {
  text-decoration: none;
  color: var(--text);
  font-weight: 600;
  transition: color 0.2s ease;
}

.main-nav a:hover,
.socials a:hover {
  color: var(--primary);
}

.nav-dropdown {
  position: relative;
}

.nav-dropdown-toggle {
  cursor: default;
  color: var(--text);
  font-weight: 600;
  transition: color 0.2s ease;
}

.nav-dropdown-toggle::after {
  content: " \25BE";
  font-size: 0.8em;
}

.nav-dropdown:hover .nav-dropdown-toggle,
.nav-dropdown:focus-within .nav-dropdown-toggle {
  color: var(--primary);
}

.dropdown-menu {
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%);
  min-width: 210px;
  display: none;
  margin-top: 0;
  padding: 10px;
  border: 1px solid var(--line);
  border-radius: 12px;
  background: var(--surface-strong);
  box-shadow: var(--shadow-lg);
  gap: 4px;
  z-index: 1400;
}

.nav-dropdown:hover .dropdown-menu {
  display: grid;
}

.nav-dropdown:focus-within .dropdown-menu {
  display: grid;
}

.dropdown-menu a {
  display: block;
  width: 100%;
  padding: 8px 10px;
  border-radius: 8px;
}

.dropdown-menu a:hover {
  background: color-mix(in srgb, var(--primary) 10%, transparent);
}

.menu-toggle {
  display: none;
  width: 42px;
  height: 38px;
  border: 1px solid var(--line);
  border-radius: 10px;
  background: var(--surface-strong);
  cursor: pointer;
}

.menu-toggle span {
  display: block;
  width: 20px;
  height: 2px;
  background: var(--text);
  margin: 5px auto;
}

.mode-toggle {
  border: 1px solid var(--line);
  background: var(--surface-strong);
  color: var(--text);
  border-radius: 999px;
  width: 46px;
  height: 36px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0;
  cursor: pointer;
  flex-shrink: 0;
}

.mode-toggle .mode-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  line-height: 0;
}

.mode-toggle .icon-sun {
  display: none;
}

body.dark-mode .mode-toggle .icon-moon {
  display: none;
}

body.dark-mode .mode-toggle .icon-sun {
  display: inline-flex;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.06fr 1fr;
  align-items: center;
  gap: 42px;
}

.hero-sub {
  margin: 16px 0 28px;
  max-width: 58ch;
  font-size: 1.04rem;
}

.hero-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.hero-points {
  list-style: none;
  margin-top: 24px;
  display: grid;
  gap: 10px;
}

.hero-points li {
  color: var(--text);
  display: flex;
  align-items: center;
  gap: 10px;
}

.hero-points li::before {
  content: "";
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--accent);
}

.btn {
  text-decoration: none;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  min-height: 46px;
  padding: 0 22px;
  border-radius: 12px;
  font-weight: 700;
  letter-spacing: 0.3px;
  transition: transform 0.25s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.25s ease;
  border: none;
  cursor: pointer;
  position: relative;
  overflow: hidden;
}

.btn:hover {
  transform: translateY(-3px);
}

.btn-primary {
  background: linear-gradient(145deg, var(--primary), var(--primary-strong));
  color: #fff;
  box-shadow: var(--shadow-md);
}

.btn-primary:hover {
  box-shadow: var(--shadow-lg);
}

.btn-ghost {
  border: 1.5px solid var(--line);
  background: var(--surface-strong);
  color: var(--text);
}

.btn-ghost:hover {
  border-color: var(--primary);
}

.ripple-wave {
  position: absolute;
  border-radius: 50%;
  transform: scale(0);
  animation: ripple 0.55s linear;
  background: color-mix(in srgb, #ffffff 60%, transparent);
  pointer-events: none;
}

@keyframes ripple {
  to {
    transform: scale(4);
    opacity: 0;
  }
}

.mockup-card {
  border: 1px solid var(--line);
  border-radius: 24px;
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  background: var(--surface-strong);
}

.mockup-topbar {
  height: 42px;
  border-bottom: 1px solid var(--line);
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 0 14px;
}

.mockup-topbar span {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: #b9cae7;
}

.mockup-body {
  padding: 20px;
  display: grid;
  gap: 18px;
}

.stat-card {
  padding: 16px;
  border-radius: 16px;
  background: color-mix(in srgb, var(--primary) 12%, var(--surface-strong));
  border: 1px solid color-mix(in srgb, var(--primary) 25%, transparent);
}

.stat-card h3 {
  margin: 6px 0;
}

.chart-bars {
  min-height: 120px;
  display: flex;
  align-items: flex-end;
  gap: 12px;
}

.chart-bars span {
  flex: 1;
  height: var(--h);
  background: linear-gradient(to top, var(--accent), var(--primary));
  border-radius: 999px;
  min-width: 28px;
}

.card,
.price-card,
.contact-form,
.contact-map,
.slide,
.blog-card,
.faq-item,
.doc-wrap article {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--surface);
  box-shadow: var(--shadow-sm);
}

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

.section-head p {
  margin-bottom: 8px;
}

.service-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
}

.card {
  padding: 26px;
  transition: transform 0.28s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.28s ease;
}

.card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-lg);
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1.08fr;
  gap: 34px;
  align-items: center;
}

.about-text {
  margin: 8px 0;
}

.about-copy p {
  margin: 10px 0 22px;
}

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

.team-grid article {
  border: 1px solid var(--line);
  border-radius: 16px;
  overflow: hidden;
  background: var(--surface);
}

.team-grid img {
  width: 100%;
  height: 200px;
  object-fit: cover;
}

.team-grid h4,
.team-grid p {
  padding: 0 12px;
}

.team-grid h4 {
  margin-top: 10px;
}

.team-grid p {
  margin-bottom: 12px;
}

.project-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
}

.project {
  position: relative;
  border-radius: 16px;
  overflow: hidden;
  min-height: 220px;
  border: 1px solid var(--line);
}

.project img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.45s ease;
}

.project-overlay {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  gap: 6px;
  padding: 16px;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.78) 0%, rgba(0, 0, 0, 0.42) 45%, rgba(0, 0, 0, 0.08) 100%);
}

.project-overlay h3,
.project-overlay p {
  color: #fff;
  margin: 0;
}

.project-overlay h3 {
  font-size: clamp(1.05rem, 2vw, 1.4rem);
}

.project-overlay p {
  font-size: 0.98rem;
  line-height: 1.5;
}

.project:hover img {
  transform: scale(1.06);
}

.testimonial-slider {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 12px;
}

.slides {
  position: relative;
  min-height: 240px;
}

.slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transform: translateX(24px);
  transition: opacity 0.35s ease, transform 0.35s ease;
  padding: 26px;
}

.slide.active {
  opacity: 1;
  transform: translateX(0);
}

.slide p {
  font-size: 1.08rem;
  color: var(--text);
  margin-bottom: 16px;
}

.slider-btn {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  border: 1px solid var(--line);
  background: var(--surface-strong);
  color: var(--text);
  cursor: pointer;
}

.slider-dots {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-top: 18px;
}

.slider-dots button {
  width: 10px;
  height: 10px;
  border: 0;
  border-radius: 50%;
  background: color-mix(in srgb, var(--muted) 40%, transparent);
  cursor: pointer;
  transition: all 0.25s ease;
}

.slider-dots button:hover {
  transform: scale(1.2);
}

.slider-dots button.active {
  width: 30px;
  border-radius: 999px;
  background: var(--primary);
}

.cta-banner {
  background: linear-gradient(135deg, var(--primary) 0%, var(--accent) 100%) !important;
  color: #fff;
  text-align: center;
  box-shadow: var(--shadow-lg);
}

.cta-banner h2 {
  color: #fff !important;
}

.cta-banner p {
  color: rgba(255, 255, 255, 0.94);
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}

.price-card {
  padding: 24px;
  position: relative;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.price-card:hover,
.price-card:active,
.price-card:focus-within {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
}

.price-card .price {
  font-size: 2rem;
  font-weight: 800;
  color: var(--text);
  margin: 8px 0 14px;
}

.price-card ul {
  list-style: none;
  display: grid;
  gap: 10px;
  margin-bottom: 22px;
}

.price-card ul li::before {
  content: "• ";
  color: var(--accent);
}

.price-card.highlight {
  border-color: color-mix(in srgb, var(--primary) 45%, var(--line));
}

.price-card.highlight:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-xl);
}

.price-card.highlight:active,
.price-card.highlight:focus-within {
  transform: translateY(-6px);
  box-shadow: var(--shadow-xl);
}

.badge {
  position: absolute;
  top: 12px;
  right: 12px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-size: 0.72rem;
  background: var(--primary);
  color: #fff;
  padding: 6px 10px;
  border-radius: 999px;
  font-weight: 700;
}

.faq-list {
  display: grid;
  gap: 12px;
}

.faq-item {
  overflow: hidden;
  transition: box-shadow 0.25s ease, border-color 0.25s ease;
}

.faq-item[open] {
  border-color: var(--primary);
  box-shadow: var(--shadow-md);
}

.faq-trigger {
  list-style: none;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 18px 22px;
  font-weight: 700;
  color: var(--text);
  cursor: pointer;
}

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

.faq-icon {
  width: 24px;
  height: 24px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: color-mix(in srgb, var(--primary) 14%, transparent);
  color: var(--primary);
  transition: transform 0.25s ease;
}

.faq-item[open] .faq-icon {
  transform: rotate(45deg);
}

.faq-body {
  padding: 0 22px 18px;
}

.blog-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 22px;
}

.blog-card {
  overflow: hidden;
  border-radius: 16px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.blog-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-lg);
}

.blog-image {
  height: 200px;
  background: color-mix(in srgb, var(--primary) 10%, transparent);
}

.blog-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.blog-content {
  padding: 22px;
}

.blog-date {
  font-size: 0.84rem;
  margin-bottom: 8px;
}

.read-more {
  text-decoration: none;
  color: var(--primary);
  font-weight: 700;
}

.contact-grid {
  display: grid;
  grid-template-columns: minmax(280px, 0.9fr) minmax(340px, 1.1fr);
  gap: 24px;
  align-items: start;
}

.contact-copy h2 {
  margin-bottom: 12px;
}

.contact-copy p {
  margin-bottom: 16px;
}

.contact-map {
  min-height: 170px;
  display: grid;
  place-items: center;
  font-weight: 700;
  color: color-mix(in srgb, var(--text) 72%, var(--muted));
  background: linear-gradient(
    135deg,
    color-mix(in srgb, var(--primary) 10%, var(--surface)),
    color-mix(in srgb, var(--accent) 10%, var(--surface))
  );
}

.contact-form {
  padding: 22px;
  display: grid;
  gap: 9px;
}

.contact-form label {
  font-weight: 700;
  color: var(--text);
  margin-top: 6px;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: 12px 14px;
  font: inherit;
  color: var(--text);
  background: var(--surface-strong);
}

.contact-form input:focus,
.contact-form textarea:focus {
  outline: none;
  border-color: var(--primary);
  box-shadow: 0 0 0 3px color-mix(in srgb, var(--primary) 18%, transparent);
}

.contact-form textarea {
  resize: vertical;
  min-height: 130px;
}

.form-status {
  min-height: 20px;
  font-size: 0.92rem;
  margin-top: 6px;
}

.inner-hero {
  padding: 118px 0 70px;
}

.inner-hero h1 {
  max-width: 14ch;
}

.inner-hero p {
  max-width: 56ch;
}

.simple-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
}

.doc-wrap {
  display: grid;
  gap: 14px;
}

.doc-wrap article {
  padding: 18px;
}

.doc-wrap code {
  background: color-mix(in srgb, var(--primary) 15%, transparent);
  padding: 2px 7px;
  border-radius: 8px;
}

.site-footer {
  padding: 28px 0 20px;
  border-top: 1px solid var(--line);
}

.footer-card {
  background: transparent;
  border: 0;
  border-radius: 0;
  padding: 0;
  box-shadow: none;
  max-width: 980px;
  margin: 0 auto;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.25fr 0.9fr;
  gap: 36px;
  padding-bottom: 16px;
  border-bottom: 1px solid var(--line);
}

.footer-grid > div:last-child {
  justify-self: center;
}

.footer-brand p {
  margin: 10px 0;
  max-width: 38ch;
}

.footer-meta {
  list-style: none;
  display: grid;
  gap: 4px;
  margin: 0 0 10px;
}

.footer-meta li {
  color: var(--muted);
  font-size: 0.94rem;
}

.footer-title {
  margin-bottom: 10px;
  font-size: 0.98rem;
}

.footer-list {
  list-style: none;
  display: grid;
  gap: 6px;
}

.footer-list a {
  text-decoration: none;
  color: var(--muted);
  font-weight: 500;
  transition: color 0.2s ease;
}

.footer-list a:hover {
  color: var(--primary);
}

.footer-bottom {
  padding-top: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  flex-wrap: wrap;
  text-align: center;
}

.footer-bottom p {
  font-size: 0.88rem;
}

.socials {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}

.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

.back-to-top {
  position: fixed;
  right: 18px;
  bottom: 18px;
  width: 46px;
  height: 46px;
  border: none;
  border-radius: 14px;
  display: grid;
  place-items: center;
  font-family: "Sora", sans-serif;
  font-weight: 800;
  color: #fff;
  background: linear-gradient(145deg, var(--primary), var(--accent));
  box-shadow: var(--shadow-lg);
  cursor: pointer;
  z-index: 1300;
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  transition: opacity 0.22s ease, transform 0.22s ease, visibility 0.22s ease;
}

.back-to-top span {
  font-size: 1.35rem;
  line-height: 1;
  transform: translateY(-1px);
}

.back-to-top.visible {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

@media (max-width: 1200px) {
  .menu-toggle {
    display: inline-block;
  }

  .main-nav {
    position: absolute;
    top: 76px;
    left: 4%;
    right: 4%;
    background: var(--surface-strong);
    border: 1px solid var(--line);
    border-radius: 14px;
    box-shadow: var(--shadow-lg);
    display: none;
    flex-direction: column;
    align-items: flex-start;
    gap: 6px;
    padding: 14px;
  }

  .main-nav.open {
    display: flex;
  }

  .main-nav a {
    width: 100%;
    padding: 8px 10px;
    border-radius: 8px;
  }

  .main-nav .nav-dropdown {
    width: 100%;
  }

  .main-nav .nav-dropdown-toggle {
    display: block;
    width: 100%;
    padding: 8px 10px;
    border-radius: 8px;
  }

  .main-nav .dropdown-menu {
    position: static;
    transform: none;
    min-width: 100%;
    margin-top: 6px;
    box-shadow: var(--shadow-sm);
  }

  .main-nav a:hover {
    background: color-mix(in srgb, var(--primary) 10%, transparent);
  }
}

@media (max-width: 980px) {
  .section-pad {
    padding: 84px 0;
  }

  .hero-grid,
  .about-grid,
  .contact-grid {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .service-grid,
  .pricing-grid,
  .project-grid,
  .blog-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 18px;
  }

  .simple-grid,
  .team-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .price-card.highlight,
  .price-card.highlight:hover {
    transform: translateY(0);
  }

  .inner-hero {
    padding: 96px 0 56px;
  }

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

@media (max-width: 680px) {
  .section-pad {
    padding: 72px 0;
  }

  .service-grid,
  .pricing-grid,
  .project-grid,
  .blog-grid,
  .simple-grid,
  .team-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .testimonial-slider {
    grid-template-columns: 1fr;
  }

  .slides {
    min-height: 220px;
  }

  .slide {
    padding: 20px;
  }

  .slider-btn {
    display: none;
  }

  .contact-form {
    padding: 18px;
  }

  .contact-map {
    min-height: 150px;
  }

  .btn {
    min-height: 44px;
    padding: 0 18px;
  }

  .footer-card {
    padding: 0;
  }

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

  .footer-bottom {
    align-items: flex-start;
    flex-direction: column;
  }

  .inner-hero h1 {
    max-width: 100%;
  }
}
