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

:root {
  --burgundy: #943040;
  --burgundy-dark: #7a2635;
  --burgundy-deep: #5e1d29;
  --blush: #FADADD;
  --blush-light: #FFF5F5;
  --blush-mid: #FCE8E8;
  --cream: #FFF9F7;
  --dark: #1A1A1A;
  --dark-soft: #2D2D2D;
  --gray: #6B6B6B;
  --gray-light: #9A9A9A;
  --white: #FFFFFF;
  --font-heading: 'Space Grotesk', sans-serif;
  --font-body: 'Outfit', sans-serif;
  --shadow-sm: 0 1px 3px rgba(148, 48, 64, 0.08);
  --shadow-md: 0 4px 20px rgba(148, 48, 64, 0.12);
  --shadow-lg: 0 8px 40px rgba(148, 48, 64, 0.16);
  --radius-sm: 8px;
  --radius-md: 12px;
  --radius-lg: 20px;
  --radius-xl: 28px;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: var(--font-body);
  color: var(--dark);
  background: var(--cream);
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

/* Background dots pattern */
.bg-dots {
  position: fixed;
  top: 0; left: 0;
  width: 100%; height: 100%;
  pointer-events: none;
  z-index: 0;
  background-image: radial-gradient(circle, var(--blush) 1px, transparent 1px);
  background-size: 32px 32px;
  opacity: 0.5;
}

/* ─── HEADER ─── */
.header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  background: rgba(255, 249, 247, 0.85);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(148, 48, 64, 0.08);
  transition: box-shadow 0.3s ease;
}

.header.scrolled {
  box-shadow: var(--shadow-md);
}

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

.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  color: var(--dark);
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 1.25rem;
}

.logo-icon {
  width: 36px;
  height: 36px;
  background: var(--burgundy);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  transform: rotate(-5deg);
  transition: transform 0.3s ease;
}

.logo:hover .logo-icon {
  transform: rotate(0deg);
}

.logo-accent {
  color: var(--burgundy);
}

.nav {
  display: flex;
  align-items: center;
  gap: 32px;
}

.nav-link {
  text-decoration: none;
  color: var(--dark-soft);
  font-weight: 500;
  font-size: 0.938rem;
  position: relative;
  transition: color 0.2s ease;
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--burgundy);
  border-radius: 1px;
  transition: width 0.3s ease;
}

.nav-link:hover {
  color: var(--burgundy);
}

.nav-link:hover::after {
  width: 100%;
}

.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 24px;
  border-radius: var(--radius-xl);
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 0.938rem;
  text-decoration: none;
  border: none;
  cursor: pointer;
  transition: all 0.3s ease;
  white-space: nowrap;
}

.btn-primary {
  background: var(--burgundy);
  color: var(--white);
  box-shadow: 0 4px 16px rgba(148, 48, 64, 0.3);
}

.btn-primary:hover {
  background: var(--burgundy-dark);
  transform: translateY(-2px);
  box-shadow: 0 6px 24px rgba(148, 48, 64, 0.4);
}

.btn-nav {
  background: var(--burgundy);
  color: var(--white);
  padding: 10px 20px;
  font-size: 0.875rem;
}

.btn-nav:hover {
  background: var(--burgundy-dark);
  transform: translateY(-1px);
}

.btn-outline {
  background: transparent;
  color: var(--dark);
  border: 2px solid var(--dark);
}

.btn-outline:hover {
  background: var(--dark);
  color: var(--white);
}

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

.btn-outline-white:hover {
  background: var(--white);
  color: var(--burgundy);
  border-color: var(--white);
}

.btn-white {
  background: var(--white);
  color: var(--burgundy);
  box-shadow: var(--shadow-md);
}

.btn-white:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-lg);
}

.btn-full {
  width: 100%;
  justify-content: center;
  padding: 16px 24px;
  font-size: 1rem;
}

.menu-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
}

.menu-toggle span {
  width: 24px;
  height: 2px;
  background: var(--dark);
  border-radius: 2px;
  transition: all 0.3s ease;
}

.menu-toggle.active span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}

.menu-toggle.active span:nth-child(2) {
  opacity: 0;
}

.menu-toggle.active span:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -5px);
}

.mobile-menu {
  display: none;
  position: fixed;
  top: 72px; left: 0; right: 0; bottom: 0;
  background: rgba(255, 249, 247, 0.98);
  backdrop-filter: blur(16px);
  z-index: 999;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 24px;
}

.mobile-menu.open {
  display: flex;
}

.mobile-nav-link {
  text-decoration: none;
  color: var(--dark);
  font-family: var(--font-heading);
  font-size: 1.5rem;
  font-weight: 600;
  transition: color 0.2s;
}

.mobile-nav-link:hover {
  color: var(--burgundy);
}

.btn-mobile {
  background: var(--burgundy);
  color: var(--white);
  padding: 14px 32px;
  font-size: 1rem;
  border-radius: var(--radius-xl);
}

/* ─── HERO ─── */
.hero {
  position: relative;
  z-index: 1;
  padding: 120px 0 80px;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  top: -200px;
  right: -200px;
  width: 800px;
  height: 800px;
  background: radial-gradient(circle, var(--blush) 0%, transparent 70%);
  pointer-events: none;
}

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

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--blush);
  color: var(--burgundy);
  padding: 8px 16px;
  border-radius: var(--radius-xl);
  font-size: 0.813rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 24px;
}

.badge-dot {
  width: 8px;
  height: 8px;
  background: var(--burgundy);
  border-radius: 50%;
  animation: pulse 2s infinite;
}

@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.5; transform: scale(1.3); }
}

.hero-headline {
  font-family: var(--font-heading);
  font-size: clamp(2.25rem, 5vw, 3.75rem);
  font-weight: 700;
  line-height: 1.1;
  color: var(--dark);
  margin-bottom: 24px;
  letter-spacing: -0.02em;
}

.accent-underline {
  position: relative;
  color: var(--burgundy);
  display: inline;
}

.accent-underline::after {
  content: '';
  position: absolute;
  bottom: 2px;
  left: 0;
  width: 100%;
  height: 12px;
  background: var(--blush);
  z-index: -1;
  border-radius: 2px;
  transform: skewX(-8deg);
}

.hero-sub {
  font-size: 1.125rem;
  color: var(--gray);
  line-height: 1.7;
  margin-bottom: 36px;
  max-width: 480px;
}

.hero-actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 48px;
}

.hero-stats {
  display: flex;
  gap: 32px;
  align-items: center;
}

.stat {
  display: flex;
  align-items: baseline;
  gap: 2px;
}

.stat-num {
  font-family: var(--font-heading);
  font-size: 2rem;
  font-weight: 700;
  color: var(--burgundy);
}

.stat-suffix {
  font-family: var(--font-heading);
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--burgundy);
}

.stat-label {
  font-size: 0.813rem;
  color: var(--gray);
  margin-left: 4px;
  display: block;
  line-height: 1.3;
}

.stat-divider {
  width: 1px;
  height: 40px;
  background: var(--blush);
}

/* Hero visual */
.hero-visual {
  position: relative;
}

.hero-img-wrapper {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}

.hero-img-wrapper img {
  display: block;
  width: 100%;
  height: auto;
  object-fit: cover;
}

.hero-shape {
  position: absolute;
  z-index: -1;
}

.hero-shape--circle {
  top: -40px;
  right: -40px;
  width: 160px;
  height: 160px;
  background: var(--burgundy);
  border-radius: 50%;
  opacity: 0.15;
}

.hero-shape--rect {
  bottom: -30px;
  left: -30px;
  width: 120px;
  height: 120px;
  background: var(--blush);
  border-radius: var(--radius-md);
  transform: rotate(15deg);
  opacity: 0.8;
}

.hero-card {
  position: absolute;
  bottom: 40px;
  left: -40px;
  background: var(--white);
  padding: 20px 24px;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-lg);
  display: flex;
  align-items: flex-start;
  gap: 16px;
  z-index: 2;
}

.hero-card-icon {
  width: 44px;
  height: 44px;
  background: var(--burgundy);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  flex-shrink: 0;
}

.hero-card-title {
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 0.938rem;
  margin-bottom: 2px;
}

.hero-card-desc {
  font-size: 0.813rem;
  color: var(--gray);
  line-height: 1.4;
}

/* ─── SECTION COMMON ─── */
.section-tag {
  display: inline-block;
  font-size: 0.813rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--burgundy);
  margin-bottom: 12px;
}

.section-title {
  font-family: var(--font-heading);
  font-size: clamp(1.75rem, 4vw, 2.75rem);
  font-weight: 700;
  line-height: 1.15;
  color: var(--dark);
  margin-bottom: 20px;
  letter-spacing: -0.02em;
}

.highlight {
  color: var(--burgundy);
}

/* ─── SERVICES ─── */
.services {
  position: relative;
  z-index: 1;
  padding: 100px 0;
  background: var(--white);
}

.services::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--burgundy), var(--blush), var(--burgundy));
}

.section-header {
  text-align: center;
  max-width: 600px;
  margin: 0 auto 60px;
}

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

.service-card {
  background: var(--cream);
  border-radius: var(--radius-lg);
  padding: 36px 28px;
  transition: all 0.4s ease;
  border: 1px solid transparent;
  position: relative;
  overflow: hidden;
}

.service-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 4px;
  background: var(--burgundy);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s ease;
}

.service-card:hover {
  background: var(--white);
  border-color: var(--blush);
  box-shadow: var(--shadow-lg);
  transform: translateY(-4px);
}

.service-card:hover::before {
  transform: scaleX(1);
}

.service-icon {
  width: 56px;
  height: 56px;
  background: var(--blush);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--burgundy);
  margin-bottom: 20px;
  transition: all 0.3s ease;
}

.service-card:hover .service-icon {
  background: var(--burgundy);
  color: var(--white);
  transform: scale(1.05) rotate(-3deg);
}

.service-card h3 {
  font-family: var(--font-heading);
  font-size: 1.125rem;
  font-weight: 600;
  margin-bottom: 10px;
  color: var(--dark);
}

.service-card p {
  font-size: 0.938rem;
  color: var(--gray);
  line-height: 1.65;
}

/* ─── WHY US ─── */
.why-us {
  position: relative;
  z-index: 1;
  padding: 100px 0;
  overflow: hidden;
}

.why-us::before {
  content: '';
  position: absolute;
  top: 100px; right: -100px;
  width: 400px; height: 400px;
  background: radial-gradient(circle, var(--blush) 0%, transparent 70%);
  pointer-events: none;
  opacity: 0.6;
}

.why-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.why-visual {
  position: relative;
}

.why-img-block {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}

.why-img-block img {
  display: block;
  width: 100%;
  height: auto;
  object-fit: cover;
}

.why-shape-block {
  position: absolute;
  bottom: -24px;
  right: -24px;
  width: 180px;
  height: 180px;
  background: var(--burgundy);
  border-radius: var(--radius-lg);
  opacity: 0.12;
  z-index: -1;
}

.why-content {
  position: relative;
}

.why-list {
  display: flex;
  flex-direction: column;
  gap: 32px;
  margin-top: 40px;
}

.why-item {
  display: flex;
  gap: 20px;
  align-items: flex-start;
}

.why-num {
  font-family: var(--font-heading);
  font-size: 2rem;
  font-weight: 700;
  color: var(--blush);
  line-height: 1;
  flex-shrink: 0;
  width: 48px;
}

.why-item h3 {
  font-family: var(--font-heading);
  font-size: 1.063rem;
  font-weight: 600;
  margin-bottom: 6px;
  color: var(--dark);
}

.why-item p {
  font-size: 0.938rem;
  color: var(--gray);
  line-height: 1.65;
}

/* ─── ABOUT ─── */
.about {
  position: relative;
  z-index: 1;
  padding: 100px 0;
  background: var(--white);
  overflow: hidden;
}

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

.about-visual {
  position: relative;
}

.about-img-main {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}

.about-img-main img {
  display: block;
  width: 100%;
  height: auto;
  object-fit: cover;
}

.about-img-secondary {
  position: absolute;
  bottom: -40px;
  right: -40px;
  width: 45%;
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  border: 4px solid var(--white);
}

.about-img-secondary img {
  display: block;
  width: 100%;
  height: auto;
  object-fit: cover;
}

.about-shape {
  position: absolute;
  top: -30px;
  left: -30px;
  width: 140px;
  height: 140px;
  background: var(--blush);
  border-radius: 50%;
  opacity: 0.6;
  z-index: -1;
}

.about-content {
  position: relative;
}

.about-content .section-title {
  margin-bottom: 24px;
}

.about-content > p {
  font-size: 1rem;
  color: var(--gray);
  line-height: 1.75;
  margin-bottom: 16px;
}

.about-features {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-top: 32px;
}

.about-feat {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.938rem;
  font-weight: 500;
  color: var(--dark-soft);
}

.about-feat svg {
  color: var(--burgundy);
  flex-shrink: 0;
}

/* ─── CTA STRIP ─── */
.cta-strip {
  position: relative;
  z-index: 1;
  padding: 80px 0;
  background: var(--burgundy);
  overflow: hidden;
}

.cta-inner {
  display: flex;
  align-items: center;
  gap: 48px;
  position: relative;
}

.cta-shapes {
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 100%;
  pointer-events: none;
  overflow: hidden;
}

.cta-shape {
  position: absolute;
  border-radius: 50%;
  opacity: 0.1;
  background: var(--white);
}

.cta-shape--1 {
  width: 300px; height: 300px;
  top: -100px; left: -80px;
}

.cta-shape--2 {
  width: 160px; height: 160px;
  bottom: -60px; right: 20%;
}

.cta-shape--3 {
  width: 80px; height: 80px;
  top: 20%; right: 40%;
  border-radius: var(--radius-md);
  transform: rotate(30deg);
  opacity: 0.15;
}

.cta-content {
  flex: 1;
}

.cta-title {
  font-family: var(--font-heading);
  font-size: clamp(1.5rem, 3.5vw, 2.5rem);
  font-weight: 700;
  color: var(--white);
  line-height: 1.2;
  margin-bottom: 16px;
}

.cta-desc {
  font-size: 1.063rem;
  color: rgba(255,255,255,0.75);
  line-height: 1.65;
  max-width: 480px;
}

.cta-actions {
  display: flex;
  gap: 16px;
  flex-shrink: 0;
  flex-wrap: wrap;
}

/* ─── CONTACT ─── */
.contact {
  position: relative;
  z-index: 1;
  padding: 100px 0;
}

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

.contact-desc {
  font-size: 1rem;
  color: var(--gray);
  line-height: 1.7;
  margin-bottom: 36px;
}

.contact-details {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.contact-item {
  display: flex;
  gap: 16px;
  align-items: flex-start;
}

.contact-icon {
  width: 48px;
  height: 48px;
  background: var(--blush);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--burgundy);
  flex-shrink: 0;
}

.contact-label {
  font-size: 0.813rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--gray-light);
  margin-bottom: 4px;
}

.contact-value {
  font-size: 0.938rem;
  color: var(--dark);
  line-height: 1.6;
}

.contact-value a {
  color: var(--burgundy);
  text-decoration: none;
  transition: color 0.2s;
}

.contact-value a:hover {
  color: var(--burgundy-dark);
  text-decoration: underline;
}

.contact-form-wrap {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 40px;
  box-shadow: var(--shadow-lg);
  border: 1px solid var(--blush);
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.form-group label {
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--dark-soft);
}

.form-group input,
.form-group select,
.form-group textarea {
  font-family: var(--font-body);
  font-size: 0.938rem;
  padding: 12px 16px;
  border: 2px solid var(--blush-mid);
  border-radius: var(--radius-sm);
  background: var(--cream);
  color: var(--dark);
  transition: all 0.2s ease;
  outline: none;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--burgundy);
  background: var(--white);
  box-shadow: 0 0 0 3px rgba(148, 48, 64, 0.1);
}

.form-group textarea {
  resize: vertical;
  min-height: 120px;
}

.form-success {
  display: none;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  text-align: center;
  padding: 32px 20px;
  background: var(--blush-light);
  border-radius: var(--radius-md);
  color: var(--burgundy);
}

.form-success.show {
  display: flex;
}

.form-success svg {
  color: var(--burgundy);
}

.form-success p {
  font-size: 0.938rem;
  line-height: 1.6;
}

/* ─── FOOTER ─── */
.footer {
  position: relative;
  z-index: 1;
  background: var(--dark);
  color: var(--white);
  padding: 60px 0 0;
}

.footer-inner {
  display: grid;
  grid-template-columns: 2fr 1fr 1.5fr;
  gap: 48px;
  padding-bottom: 48px;
  border-bottom: 1px solid rgba(255,255,255,0.1);
}

.footer-brand .logo {
  color: var(--white);
  margin-bottom: 16px;
}

.footer-brand .logo-accent {
  color: var(--blush);
}

.footer-desc {
  font-size: 0.938rem;
  color: rgba(255,255,255,0.6);
  line-height: 1.7;
  max-width: 280px;
}

.footer-links {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.footer-links a {
  color: rgba(255,255,255,0.6);
  text-decoration: none;
  font-size: 0.938rem;
  transition: color 0.2s;
}

.footer-links a:hover {
  color: var(--blush);
}

.footer-contact {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.footer-contact p {
  font-size: 0.938rem;
  color: rgba(255,255,255,0.6);
  line-height: 1.6;
}

.footer-contact a {
  color: rgba(255,255,255,0.6);
  text-decoration: none;
  transition: color 0.2s;
}

.footer-contact a:hover {
  color: var(--blush);
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 24px 0;
  font-size: 0.813rem;
  color: rgba(255,255,255,0.4);
}

.footer-bottom p {
  margin: 0;
}

/* ─── ANIMATIONS ─── */
.fade-up {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.fade-up.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ─── RESPONSIVE ─── */
@media (max-width: 1024px) {
  .hero-inner {
    grid-template-columns: 1fr;
    gap: 48px;
  }

  .hero-visual {
    max-width: 480px;
    margin: 0 auto;
  }

  .hero-card {
    left: 0;
  }

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

  .why-grid,
  .about-inner,
  .contact-grid {
    grid-template-columns: 1fr;
    gap: 48px;
  }

  .why-visual {
    order: -1;
    max-width: 480px;
  }

  .cta-inner {
    flex-direction: column;
    text-align: center;
  }

  .cta-desc {
    max-width: 100%;
  }

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

@media (max-width: 768px) {
  .nav {
    display: none;
  }

  .menu-toggle {
    display: flex;
  }

  .hero {
    padding: 100px 0 60px;
    min-height: auto;
  }

  .hero-headline {
    font-size: clamp(1.75rem, 7vw, 2.5rem);
  }

  .hero-actions {
    flex-direction: column;
  }

  .hero-actions .btn {
    justify-content: center;
  }

  .hero-stats {
    flex-wrap: wrap;
    gap: 20px;
  }

  .stat-divider {
    display: none;
  }

  .hero-card {
    position: relative;
    bottom: auto;
    left: auto;
    margin-top: 16px;
  }

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

  .about-img-secondary {
    position: relative;
    bottom: auto;
    right: auto;
    width: 60%;
    margin-top: -40px;
    margin-left: auto;
  }

  .about-features {
    grid-template-columns: 1fr;
  }

  .contact-form-wrap {
    padding: 24px;
  }

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

  .footer-bottom {
    flex-direction: column;
    gap: 8px;
    text-align: center;
  }
}

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

  .hero {
    padding: 90px 0 48px;
  }

  .services,
  .why-us,
  .about,
  .contact {
    padding: 64px 0;
  }

  .cta-strip {
    padding: 56px 0;
  }

  .service-card {
    padding: 28px 22px;
  }
}
