/* ============================================
   Neutral Ground Classics — Styles
   ============================================ */

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

:root {
  --burgundy: #7B2D3A;
  --burgundy-dark: #5E1F2A;
  --burgundy-light: #9A3D4D;
  --blush: #FDF2F0;
  --blush-mid: #F9E4DF;
  --blush-dark: #F0CFC6;
  --cream: #FFFAF8;
  --text-dark: #1A1214;
  --text-mid: #4A3538;
  --text-light: #7A6064;
  --white: #FFFFFF;
  --shadow-sm: 0 2px 8px rgba(123, 45, 58, 0.06);
  --shadow-md: 0 4px 20px rgba(123, 45, 58, 0.1);
  --shadow-lg: 0 8px 40px rgba(123, 45, 58, 0.12);
  --shadow-xl: 0 16px 60px rgba(123, 45, 58, 0.15);
  --radius-sm: 10px;
  --radius-md: 16px;
  --radius-lg: 24px;
  --radius-xl: 32px;
  --font-display: 'DM Serif Display', Georgia, serif;
  --font-body: 'Inter', -apple-system, sans-serif;
  --font-accent: 'Lora', Georgia, serif;
  --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

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

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

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

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

ul {
  list-style: none;
}

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

.skip-link {
  position: absolute;
  top: -100%;
  left: 16px;
  background: var(--burgundy);
  color: var(--white);
  padding: 8px 16px;
  border-radius: var(--radius-sm);
  z-index: 9999;
  font-size: 14px;
  font-weight: 500;
}

.skip-link:focus {
  top: 16px;
}

/* ---------- BUTTONS ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 28px;
  border-radius: 50px;
  font-family: var(--font-body);
  font-size: 15px;
  font-weight: 600;
  border: 2px solid transparent;
  cursor: pointer;
  transition: all var(--transition);
  white-space: nowrap;
  text-align: center;
}

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

.btn:active {
  transform: translateY(0);
}

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

.btn-primary:hover {
  background: var(--burgundy-dark);
  border-color: var(--burgundy-dark);
}

.btn-secondary {
  background: transparent;
  color: var(--burgundy);
  border-color: var(--burgundy);
}

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

.btn-lg {
  padding: 16px 36px;
  font-size: 16px;
}

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

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

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

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

.btn-full {
  width: 100%;
  justify-content: center;
  padding: 16px 28px;
}

/* ---------- HEADER ---------- */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: rgba(255, 250, 248, 0.92);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(123, 45, 58, 0.08);
  transition: all var(--transition);
}

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

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

.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--burgundy);
  font-family: var(--font-display);
}

.logo-mark {
  display: flex;
  align-items: center;
}

.logo-text {
  display: flex;
  flex-direction: column;
  line-height: 1.1;
}

.logo-line1 {
  font-size: 17px;
  font-weight: 400;
  letter-spacing: -0.01em;
}

.logo-line2 {
  font-size: 13px;
  font-weight: 400;
  color: var(--text-light);
  letter-spacing: 0.02em;
  text-transform: uppercase;
}

/* ---------- NAV ---------- */
.nav-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
  position: relative;
  width: 40px;
  height: 40px;
}

.hamburger,
.hamburger::before,
.hamburger::after {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--burgundy);
  border-radius: 2px;
  transition: all var(--transition);
}

.hamburger {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.hamburger::before {
  content: '';
  position: absolute;
  top: -7px;
  left: 0;
}

.hamburger::after {
  content: '';
  position: absolute;
  bottom: -7px;
  left: 0;
}

.nav-toggle[aria-expanded="true"] .hamburger {
  background: transparent;
}

.nav-toggle[aria-expanded="true"] .hamburger::before {
  top: 0;
  transform: rotate(45deg);
}

.nav-toggle[aria-expanded="true"] .hamburger::after {
  bottom: 0;
  transform: rotate(-45deg);
}

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

.nav-list a {
  padding: 8px 16px;
  font-size: 14px;
  font-weight: 500;
  color: var(--text-mid);
  border-radius: 50px;
  transition: all var(--transition);
}

.nav-list a:hover {
  color: var(--burgundy);
  background: var(--blush);
}

.btn-nav {
  margin-left: 8px;
  padding: 10px 22px;
  font-size: 14px;
}

/* ---------- HERO ---------- */
.hero {
  padding: 120px 0 0;
  background: var(--cream);
  overflow: hidden;
  min-height: 90vh;
  display: flex;
  flex-direction: column;
}

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

.hero-tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--blush);
  color: var(--burgundy);
  padding: 8px 18px;
  border-radius: 50px;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  margin-bottom: 24px;
}

.hero-headline {
  font-family: var(--font-display);
  font-size: clamp(40px, 5vw, 64px);
  line-height: 1.1;
  color: var(--text-dark);
  margin-bottom: 24px;
  letter-spacing: -0.02em;
}

.hero-headline .accent {
  color: var(--burgundy);
  font-style: italic;
}

.hero-sub {
  font-family: var(--font-accent);
  font-size: 18px;
  color: var(--text-mid);
  line-height: 1.7;
  margin-bottom: 36px;
  max-width: 480px;
}

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

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

.badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--white);
  color: var(--text-mid);
  padding: 10px 18px;
  border-radius: 50px;
  font-size: 13px;
  font-weight: 500;
  box-shadow: var(--shadow-sm);
  border: 1px solid rgba(123, 45, 58, 0.06);
}

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

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

.hero-img-stack {
  position: relative;
}

.hero-img {
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-xl);
}

.hero-img-1 {
  width: 100%;
  aspect-ratio: 520 / 640;
}

.hero-img-1 img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-img-2 {
  position: absolute;
  bottom: -40px;
  left: -40px;
  width: 55%;
  border: 5px solid var(--cream);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}

.hero-img-2 img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-card {
  position: absolute;
  top: 50%;
  right: -24px;
  transform: translateY(-50%);
  background: var(--white);
  padding: 16px 24px;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-lg);
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 14px;
  font-weight: 500;
  color: var(--text-dark);
  border: 1px solid rgba(123, 45, 58, 0.06);
  animation: float 4s ease-in-out infinite;
}

@keyframes float {
  0%, 100% { transform: translateY(-50%) translateX(0); }
  50% { transform: translateY(-53%) translateX(4px); }
}

.hero-wave {
  margin-top: auto;
}

.hero-wave svg {
  display: block;
  width: 100%;
  height: 60px;
}

/* ---------- SECTION COMMON ---------- */
.section-header {
  text-align: center;
  max-width: 640px;
  margin: 0 auto 60px;
}

.section-header.light {
  color: var(--white);
}

.section-tag {
  display: inline-block;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--burgundy);
  margin-bottom: 16px;
}

.section-tag.light {
  color: var(--blush-dark);
}

.section-title {
  font-family: var(--font-display);
  font-size: clamp(32px, 4vw, 48px);
  line-height: 1.15;
  color: var(--text-dark);
  margin-bottom: 16px;
  letter-spacing: -0.02em;
}

.section-title.light {
  color: var(--white);
}

.section-title .accent {
  color: var(--burgundy);
  font-style: italic;
}

.section-title .accent-light {
  color: var(--blush);
  font-style: italic;
}

.section-sub {
  font-family: var(--font-accent);
  font-size: 17px;
  color: var(--text-mid);
  line-height: 1.7;
}

.section-sub.light {
  color: rgba(255,255,255,0.75);
}

/* ---------- SERVICES ---------- */
.services {
  padding: 80px 0 100px;
  background: var(--blush);
}

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

.service-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 36px 28px;
  transition: all var(--transition);
  border: 1px solid rgba(123, 45, 58, 0.05);
}

.service-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
  border-color: rgba(123, 45, 58, 0.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 var(--transition);
}

.service-card:hover .service-icon {
  background: var(--burgundy);
  color: var(--white);
}

.service-card h3 {
  font-family: var(--font-display);
  font-size: 20px;
  margin-bottom: 10px;
  color: var(--text-dark);
}

.service-card p {
  font-size: 14px;
  color: var(--text-mid);
  line-height: 1.7;
}

/* ---------- ABOUT ---------- */
.about {
  padding: 100px 0;
  background: var(--cream);
}

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

.about-visual {
  position: relative;
}

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

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

.about-img-accent {
  position: absolute;
  bottom: -30px;
  right: -30px;
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 5px solid var(--cream);
  box-shadow: var(--shadow-md);
}

.about-img-accent img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.about-stat-card {
  position: absolute;
  top: -20px;
  left: -20px;
  background: var(--burgundy);
  color: var(--white);
  padding: 20px 28px;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-lg);
}

.about-stat-card .stat-number {
  display: block;
  font-family: var(--font-display);
  font-size: 22px;
  margin-bottom: 4px;
}

.about-stat-card .stat-label {
  font-size: 12px;
  opacity: 0.8;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.about-content .section-tag {
  text-align: left;
}

.about-content .section-title {
  text-align: left;
  margin-bottom: 20px;
}

.about-content > p {
  font-size: 15px;
  color: var(--text-mid);
  line-height: 1.8;
  margin-bottom: 16px;
}

.about-features {
  margin: 28px 0 32px;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.about-feature {
  display: flex;
  align-items: center;
  gap: 14px;
  font-size: 15px;
  color: var(--text-dark);
  font-weight: 500;
}

.feature-check {
  width: 24px;
  height: 24px;
  background: var(--blush);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--burgundy);
  flex-shrink: 0;
}

/* ---------- WHY US ---------- */
.why-us {
  padding: 100px 0;
  background: var(--burgundy);
}

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

.why-card {
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: var(--radius-lg);
  padding: 40px 32px;
  transition: all var(--transition);
}

.why-card:hover {
  background: rgba(255, 255, 255, 0.12);
  transform: translateY(-4px);
}

.why-number {
  font-family: var(--font-display);
  font-size: 48px;
  color: rgba(253, 242, 240, 0.2);
  line-height: 1;
  margin-bottom: 16px;
}

.why-card h3 {
  font-family: var(--font-display);
  font-size: 22px;
  color: var(--white);
  margin-bottom: 12px;
  line-height: 1.3;
}

.why-card p {
  font-size: 14px;
  color: rgba(253, 242, 240, 0.7);
  line-height: 1.8;
}

/* ---------- TESTIMONIALS ---------- */
.testimonials {
  padding: 100px 0;
  background: var(--cream);
}

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

.testimonial-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 36px 28px;
  border: 1px solid rgba(123, 45, 58, 0.06);
  transition: all var(--transition);
  position: relative;
}

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

.testimonial-quote {
  margin-bottom: 20px;
  opacity: 0.8;
}

.testimonial-text {
  font-family: var(--font-accent);
  font-size: 15px;
  color: var(--text-mid);
  line-height: 1.8;
  margin-bottom: 24px;
  font-style: italic;
}

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

.author-avatar {
  width: 40px;
  height: 40px;
  background: var(--blush);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--burgundy);
}

.author-name {
  display: block;
  font-weight: 600;
  font-size: 14px;
  color: var(--text-dark);
}

.author-detail {
  font-size: 13px;
  color: var(--text-light);
}

/* ---------- CTA ---------- */
.cta {
  padding: 80px 0;
  background: linear-gradient(135deg, var(--burgundy) 0%, var(--burgundy-dark) 100%);
}

.cta-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
}

.cta-content {
  flex: 1;
  max-width: 520px;
}

.cta-title {
  font-family: var(--font-display);
  font-size: clamp(28px, 3.5vw, 42px);
  color: var(--white);
  line-height: 1.2;
  margin-bottom: 16px;
}

.cta-text {
  font-family: var(--font-accent);
  font-size: 16px;
  color: rgba(253, 242, 240, 0.75);
  line-height: 1.7;
}

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

/* ---------- CONTACT ---------- */
.contact {
  padding: 100px 0;
  background: var(--blush);
}

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

.contact-info .section-tag,
.contact-info .section-title,
.contact-info .section-sub {
  text-align: left;
}

.contact-info .section-title {
  margin-bottom: 16px;
}

.contact-info .section-sub {
  margin-bottom: 36px;
}

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

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

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

.contact-item strong {
  display: block;
  font-size: 14px;
  color: var(--text-dark);
  margin-bottom: 4px;
}

.contact-item p,
.contact-item a {
  font-size: 14px;
  color: var(--text-mid);
  line-height: 1.6;
}

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

.map-wrapper {
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-md);
}

/* Contact Form */
.contact-form-wrapper {
  background: var(--white);
  border-radius: var(--radius-xl);
  padding: 40px;
  box-shadow: var(--shadow-md);
  border: 1px solid rgba(123, 45, 58, 0.06);
}

.contact-form-wrapper h3 {
  font-family: var(--font-display);
  font-size: 24px;
  color: var(--text-dark);
  margin-bottom: 8px;
}

.form-sub {
  font-size: 14px;
  color: var(--text-light);
  margin-bottom: 28px;
}

.form-group {
  margin-bottom: 20px;
}

.form-group label {
  display: block;
  font-size: 13px;
  font-weight: 600;
  color: var(--text-dark);
  margin-bottom: 6px;
  letter-spacing: 0.02em;
}

.form-group input,
.form-group textarea {
  width: 100%;
  padding: 12px 16px;
  border: 1.5px solid var(--blush-dark);
  border-radius: var(--radius-sm);
  font-family: var(--font-body);
  font-size: 15px;
  color: var(--text-dark);
  background: var(--cream);
  transition: all var(--transition);
  outline: none;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
  color: var(--text-light);
}

.form-group input:focus,
.form-group textarea:focus {
  border-color: var(--burgundy);
  background: var(--white);
  box-shadow: 0 0 0 3px rgba(123, 45, 58, 0.08);
}

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

.form-success {
  display: none;
  text-align: center;
  padding: 40px 20px;
}

.form-success.show {
  display: block;
  animation: fadeIn 0.4s ease;
}

.form-success svg {
  margin: 0 auto 16px;
}

.form-success h4 {
  font-family: var(--font-display);
  font-size: 22px;
  color: var(--burgundy);
  margin-bottom: 8px;
}

.form-success p {
  font-size: 14px;
  color: var(--text-mid);
  line-height: 1.7;
}

.form-success a {
  color: var(--burgundy);
  font-weight: 600;
}

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

/* ---------- FOOTER ---------- */
.site-footer {
  background: var(--text-dark);
  color: rgba(253, 242, 240, 0.7);
  padding: 60px 0 0;
}

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

.footer-brand p {
  font-size: 14px;
  line-height: 1.7;
  margin-top: 16px;
  max-width: 280px;
}

.footer-logo {
  color: var(--white);
}

.footer-logo .logo-line2 {
  color: rgba(253, 242, 240, 0.5);
}

.footer-links h4,
.footer-contact h4 {
  font-family: var(--font-display);
  font-size: 16px;
  color: var(--white);
  margin-bottom: 16px;
}

.footer-links ul,
.footer-contact ul {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer-links a {
  font-size: 14px;
  color: rgba(253, 242, 240, 0.6);
  transition: all var(--transition);
}

.footer-links a:hover {
  color: var(--white);
  padding-left: 4px;
}

.footer-contact li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 13px;
  line-height: 1.6;
}

.footer-contact svg {
  flex-shrink: 0;
  margin-top: 3px;
  opacity: 0.6;
}

.footer-contact a {
  color: rgba(253, 242, 240, 0.6);
  transition: color var(--transition);
}

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

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

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

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

/* ---------- RESPONSIVE ---------- */
@media (max-width: 1024px) {
  .hero-grid {
    gap: 40px;
  }

  .hero-img-2 {
    left: -20px;
    bottom: -20px;
  }

  .hero-card {
    right: -12px;
  }

  .about-grid {
    gap: 48px;
  }

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

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

  .testimonials-grid .testimonial-card:last-child {
    grid-column: span 2;
    max-width: 50%;
    justify-self: center;
  }
}

@media (max-width: 768px) {
  .nav-toggle {
    display: block;
    z-index: 1001;
  }

  .nav-list {
    position: fixed;
    top: 0;
    right: -100%;
    width: 280px;
    height: 100vh;
    background: var(--cream);
    flex-direction: column;
    align-items: stretch;
    padding: 100px 32px 32px;
    gap: 4px;
    box-shadow: var(--shadow-xl);
    transition: right var(--transition);
    z-index: 999;
  }

  .nav-list.open {
    right: 0;
  }

  .nav-list a {
    padding: 14px 16px;
    font-size: 16px;
    border-radius: var(--radius-sm);
  }

  .btn-nav {
    margin-left: 0;
    margin-top: 16px;
    text-align: center;
    justify-content: center;
  }

  .nav-overlay {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(26, 18, 20, 0.4);
    z-index: 998;
  }

  .nav-overlay.show {
    display: block;
  }

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

  .hero-grid {
    grid-template-columns: 1fr;
    gap: 48px;
    padding-bottom: 60px;
  }

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

  .hero-img-2 {
    width: 50%;
    left: -10px;
    bottom: -16px;
  }

  .hero-card {
    right: -8px;
    padding: 12px 18px;
    font-size: 13px;
  }

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

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

  .hero-badges {
    justify-content: center;
  }

  .hero-wave svg {
    height: 40px;
  }

  .services {
    padding: 60px 0 80px;
  }

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

  .about {
    padding: 60px 0;
  }

  .about-grid {
    grid-template-columns: 1fr;
    gap: 48px;
  }

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

  .about-content .section-tag,
  .about-content .section-title {
    text-align: center;
  }

  .about-content > p {
    text-align: center;
  }

  .about-content .btn {
    display: inline-flex;
    justify-content: center;
  }

  .why-us {
    padding: 60px 0;
  }

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

  .testimonials {
    padding: 60px 0;
  }

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

  .testimonials-grid .testimonial-card:last-child {
    grid-column: span 1;
    max-width: 100%;
  }

  .cta {
    padding: 60px 0;
  }

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

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

  .cta-actions {
    flex-direction: column;
    width: 100%;
    max-width: 320px;
  }

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

  .contact {
    padding: 60px 0;
  }

  .contact-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .contact-info .section-tag,
  .contact-info .section-title,
  .contact-info .section-sub {
    text-align: center;
  }

  .contact-info .section-sub {
    margin-bottom: 28px;
  }

  .contact-form-wrapper {
    padding: 28px;
  }

  .footer-top {
    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-headline {
    font-size: 36px;
  }

  .hero-img-2 {
    width: 45%;
  }

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

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

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