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

:root {
  --coral: #FF6B4A;
  --coral-dark: #E85A3A;
  --coral-light: #FF8F75;
  --charcoal: #2D3436;
  --charcoal-light: #4A5254;
  --charcoal-lighter: #636E70;
  --cream: #FFF8F5;
  --cream-dark: #FEF0EA;
  --white: #FFFFFF;
  --gray-50: #F9FAFB;
  --gray-100: #F3F4F6;
  --gray-200: #E5E7EB;
  --gray-300: #D1D5DB;
  --gray-500: #6B7280;
  --gray-700: #374151;
  --gray-900: #111827;
  --shadow-sm: 0 1px 3px rgba(45, 52, 54, 0.08);
  --shadow-md: 0 4px 16px rgba(45, 52, 54, 0.10);
  --shadow-lg: 0 12px 40px rgba(45, 52, 54, 0.12);
  --shadow-xl: 0 20px 60px rgba(45, 52, 54, 0.15);
  --radius-sm: 8px;
  --radius-md: 14px;
  --radius-lg: 22px;
  --radius-xl: 32px;
  --font-body: 'DM Sans', -apple-system, BlinkMacSystemFont, sans-serif;
  --font-display: 'Playfair Display', 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);
  font-size: 16px;
  line-height: 1.65;
  color: var(--charcoal);
  background: var(--cream);
  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 {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

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

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

.btn-coral {
  background: var(--coral);
  color: var(--white);
  border-color: var(--coral);
}
.btn-coral:hover {
  background: var(--coral-dark);
  border-color: var(--coral-dark);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(255, 107, 74, 0.35);
}

.btn-outline {
  background: transparent;
  color: var(--charcoal);
  border-color: var(--charcoal);
}
.btn-outline:hover {
  background: var(--charcoal);
  color: var(--white);
  transform: translateY(-2px);
}

.btn-white {
  background: var(--white);
  color: var(--charcoal);
  border-color: var(--white);
}
.btn-white:hover {
  background: var(--gray-100);
  transform: translateY(-2px);
  box-shadow: var(--shadow-lg);
}

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

.btn-sm {
  padding: 9px 20px;
  font-size: 14px;
}

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

/* ========== NAV ========== */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: rgba(255, 248, 245, 0.85);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(45, 52, 54, 0.06);
  transition: box-shadow var(--transition);
}
.nav.scrolled {
  box-shadow: var(--shadow-md);
}

.nav-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
  height: 72px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 18px;
  color: var(--charcoal);
}
.logo:hover {
  color: var(--coral);
}
.logo-accent {
  color: var(--coral);
}

.nav-menu {
  display: flex;
  align-items: center;
  gap: 32px;
}
.nav-menu ul {
  display: flex;
  align-items: center;
  gap: 8px;
}
.nav-menu a {
  font-weight: 500;
  font-size: 15px;
  color: var(--charcoal-light);
  padding: 8px 14px;
  border-radius: var(--radius-sm);
  transition: all var(--transition);
}
.nav-menu a:hover {
  color: var(--coral);
  background: rgba(255, 107, 74, 0.07);
}

.nav-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  width: 44px;
  height: 44px;
  position: relative;
  align-items: center;
  justify-content: center;
}
.hamburger,
.hamburger::before,
.hamburger::after {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--charcoal);
  border-radius: 2px;
  transition: all var(--transition);
}
.hamburger {
  position: relative;
}
.hamburger::before,
.hamburger::after {
  content: '';
  position: absolute;
  left: 0;
}
.hamburger::before { top: -7px; }
.hamburger::after { top: 7px; }
.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 {
  top: 0;
  transform: rotate(-45deg);
}

/* ========== HERO ========== */
.hero {
  min-height: 100vh;
  padding: 120px 0 80px;
  position: relative;
  overflow: hidden;
  background: linear-gradient(135deg, var(--cream) 0%, var(--cream-dark) 50%, #FFE8E0 100%);
}

.hero-bg-shapes {
  position: absolute;
  inset: 0;
  pointer-events: none;
  overflow: hidden;
}
.blob {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  opacity: 0.4;
}
.blob-1 {
  width: 500px;
  height: 500px;
  background: var(--coral);
  top: -150px;
  right: -100px;
  opacity: 0.12;
}
.blob-2 {
  width: 350px;
  height: 350px;
  background: var(--coral-light);
  bottom: -80px;
  left: -60px;
  opacity: 0.15;
}
.blob-3 {
  width: 200px;
  height: 200px;
  background: #FFB088;
  top: 40%;
  left: 30%;
  opacity: 0.1;
}

.hero-container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  position: relative;
  z-index: 1;
}

.hero-card {
  background: var(--white);
  border-radius: var(--radius-xl);
  padding: 48px;
  box-shadow: var(--shadow-xl);
  position: relative;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255, 107, 74, 0.1);
  color: var(--coral);
  font-weight: 600;
  font-size: 13px;
  padding: 8px 16px;
  border-radius: 50px;
  margin-bottom: 24px;
  letter-spacing: 0.02em;
}

.hero-title {
  font-family: var(--font-display);
  font-size: clamp(32px, 4.5vw, 56px);
  font-weight: 800;
  line-height: 1.12;
  color: var(--charcoal);
  margin-bottom: 20px;
}
.text-coral {
  color: var(--coral);
}

.hero-sub {
  font-size: 17px;
  line-height: 1.7;
  color: var(--charcoal-lighter);
  margin-bottom: 32px;
  max-width: 500px;
}

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

.hero-visual {
  position: relative;
  display: flex;
  justify-content: center;
}

.hero-photo {
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-xl);
  width: 100%;
  max-width: 420px;
  aspect-ratio: 5/6;
}
.hero-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.float-card {
  position: absolute;
  background: var(--white);
  border-radius: var(--radius-md);
  padding: 14px 18px;
  box-shadow: var(--shadow-lg);
  display: flex;
  align-items: center;
  gap: 12px;
  z-index: 2;
  animation: float 4s ease-in-out infinite;
}
.float-card-1 {
  bottom: 60px;
  left: -30px;
  animation-delay: 0s;
}
.float-card-2 {
  top: 80px;
  right: -20px;
  animation-delay: 1.3s;
}
.float-card-3 {
  bottom: -10px;
  right: 20px;
  animation-delay: 2.6s;
}

.float-card-icon {
  flex-shrink: 0;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--cream);
  border-radius: var(--radius-sm);
}
.float-card-body {
  display: flex;
  flex-direction: column;
}
.float-card-number {
  font-weight: 700;
  font-size: 15px;
  color: var(--charcoal);
  line-height: 1.2;
}
.float-card-label {
  font-size: 12px;
  color: var(--gray-500);
}

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

/* ========== SECTION COMMON ========== */
.section-tag {
  display: inline-block;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--coral);
  margin-bottom: 12px;
}
.section-title {
  font-family: var(--font-display);
  font-size: clamp(28px, 3.5vw, 46px);
  font-weight: 700;
  line-height: 1.15;
  color: var(--charcoal);
  margin-bottom: 16px;
}
.section-sub {
  font-size: 17px;
  color: var(--charcoal-lighter);
  max-width: 560px;
  line-height: 1.7;
}
.section-header {
  text-align: center;
  margin-bottom: 56px;
}
.section-header .section-sub {
  margin: 0 auto;
}

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

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

.service-card {
  background: var(--cream);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: all var(--transition);
  border: 1px solid transparent;
}
.service-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
  border-color: rgba(255, 107, 74, 0.15);
}

.service-card-img {
  overflow: hidden;
  aspect-ratio: 4/3;
}
.service-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}
.service-card:hover .service-card-img img {
  transform: scale(1.06);
}

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

.service-icon {
  width: 52px;
  height: 52px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 107, 74, 0.1);
  border-radius: var(--radius-md);
  margin-bottom: 18px;
}

.service-name {
  font-family: var(--font-display);
  font-size: 20px;
  font-weight: 700;
  color: var(--charcoal);
  margin-bottom: 10px;
}

.service-desc {
  font-size: 15px;
  line-height: 1.7;
  color: var(--charcoal-lighter);
}

/* ========== HOW IT WORKS ========== */
.how-it-works {
  padding: 100px 0;
  background: var(--cream);
}

.steps {
  display: flex;
  flex-direction: column;
  align-items: center;
  max-width: 700px;
  margin: 0 auto;
}

.step {
  display: flex;
  align-items: flex-start;
  gap: 24px;
  width: 100%;
  text-align: left;
}

.step-number-wrap {
  flex-shrink: 0;
  width: 64px;
  height: 64px;
}
.step-number {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 64px;
  height: 64px;
  background: var(--coral);
  color: var(--white);
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 700;
  border-radius: var(--radius-md);
  box-shadow: 0 8px 24px rgba(255, 107, 74, 0.3);
}

.step-content {
  flex: 1;
  padding-top: 12px;
}
.step-title {
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 700;
  color: var(--charcoal);
  margin-bottom: 8px;
}
.step-desc {
  font-size: 15px;
  line-height: 1.7;
  color: var(--charcoal-lighter);
}

.step-connector {
  display: flex;
  justify-content: center;
  padding: 8px 0;
}

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

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

.about-visual {
  position: relative;
}
.about-img-main {
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-xl);
  aspect-ratio: 4/5;
}
.about-img-main img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.about-img-accent {
  position: absolute;
  bottom: -30px;
  right: -30px;
  width: 55%;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  border: 5px solid var(--white);
}
.about-img-accent img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.about-experience-badge {
  position: absolute;
  top: -20px;
  left: -20px;
  background: var(--charcoal);
  color: var(--white);
  border-radius: var(--radius-md);
  padding: 20px 24px;
  text-align: center;
  box-shadow: var(--shadow-lg);
}
.about-experience-badge .exp-number {
  display: block;
  font-family: var(--font-display);
  font-size: 32px;
  font-weight: 800;
  color: var(--coral);
  line-height: 1;
}
.about-experience-badge .exp-label {
  font-size: 12px;
  font-weight: 500;
  opacity: 0.8;
  letter-spacing: 0.04em;
}

.about-content .section-tag {
  text-align: left;
}
.about-content .section-title {
  text-align: left;
}
.about-text {
  font-size: 16px;
  line-height: 1.8;
  color: var(--charcoal-lighter);
  margin-bottom: 16px;
}
.about-features {
  margin-top: 32px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
.about-feature {
  display: flex;
  align-items: center;
  gap: 12px;
  font-weight: 500;
  font-size: 15px;
  color: var(--charcoal);
}
.about-feature-icon {
  flex-shrink: 0;
}

/* ========== TESTIMONIALS ========== */
.testimonials {
  padding: 100px 0;
  background: var(--charcoal);
  color: var(--white);
}
.testimonials .section-tag {
  color: var(--coral-light);
}
.testimonials .section-title {
  color: var(--white);
}
.testimonials .section-sub {
  color: rgba(255, 255, 255, 0.6);
}

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

.testimonial-card {
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--radius-lg);
  padding: 32px;
  transition: all var(--transition);
}
.testimonial-card:hover {
  background: rgba(255, 255, 255, 0.1);
  transform: translateY(-4px);
}

.testimonial-quote {
  font-family: var(--font-display);
  font-size: 64px;
  line-height: 1;
  color: var(--coral);
  margin-bottom: -8px;
}

.testimonial-text {
  font-size: 15px;
  line-height: 1.8;
  color: rgba(255, 255, 255, 0.8);
  margin-bottom: 24px;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 14px;
}
.testimonial-avatar {
  flex-shrink: 0;
}
.testimonial-name {
  display: block;
  font-weight: 600;
  font-size: 15px;
  color: var(--white);
}
.testimonial-location {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.5);
}

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

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

.cta-content {
  flex: 1;
  min-width: 280px;
}
.cta-title {
  font-family: var(--font-display);
  font-size: clamp(26px, 3vw, 40px);
  font-weight: 700;
  color: var(--white);
  line-height: 1.2;
  margin-bottom: 12px;
}
.cta-text {
  font-size: 17px;
  color: rgba(255, 255, 255, 0.85);
  line-height: 1.6;
}

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

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

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

.contact-info .section-tag {
  text-align: left;
}
.contact-info .section-title {
  text-align: left;
}
.contact-sub {
  font-size: 16px;
  color: var(--charcoal-lighter);
  line-height: 1.7;
  margin-bottom: 36px;
}

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

.contact-item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
}
.contact-item-icon {
  flex-shrink: 0;
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 107, 74, 0.1);
  border-radius: var(--radius-sm);
}
.contact-item strong {
  display: block;
  font-size: 14px;
  font-weight: 600;
  color: var(--charcoal);
  margin-bottom: 2px;
}
.contact-item span,
.contact-item a {
  font-size: 15px;
  color: var(--charcoal-lighter);
  line-height: 1.6;
}
.contact-item a:hover {
  color: var(--coral);
  text-decoration: underline;
}

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

.form-title {
  font-family: var(--font-display);
  font-size: 24px;
  font-weight: 700;
  color: var(--charcoal);
  margin-bottom: 6px;
}
.form-sub {
  font-size: 14px;
  color: var(--gray-500);
  margin-bottom: 28px;
}

.form-group {
  margin-bottom: 20px;
}
.form-group label {
  display: block;
  font-size: 13px;
  font-weight: 600;
  color: var(--charcoal);
  margin-bottom: 6px;
  letter-spacing: 0.02em;
}
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 13px 16px;
  border: 1.5px solid var(--gray-200);
  border-radius: var(--radius-sm);
  font-family: var(--font-body);
  font-size: 15px;
  color: var(--charcoal);
  background: var(--gray-50);
  transition: all var(--transition);
  outline: none;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--coral);
  background: var(--white);
  box-shadow: 0 0 0 3px rgba(255, 107, 74, 0.12);
}
.form-group input::placeholder,
.form-group textarea::placeholder {
  color: var(--gray-300);
}
.form-group textarea {
  resize: vertical;
  min-height: 100px;
}

.form-success {
  text-align: center;
  padding: 32px 16px;
}
.form-success h4 {
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 700;
  color: var(--charcoal);
  margin: 12px 0 6px;
}
.form-success p {
  font-size: 15px;
  color: var(--gray-500);
}

/* ========== FOOTER ========== */
.footer {
  background: var(--charcoal);
  color: rgba(255, 255, 255, 0.7);
  padding: 64px 0 0;
}

.footer-inner {
  display: grid;
  grid-template-columns: 1.5fr 2fr;
  gap: 48px;
  padding-bottom: 48px;
}

.footer-brand .logo {
  margin-bottom: 16px;
}
.footer-brand .logo-text {
  color: var(--white);
}
.footer-tagline {
  font-size: 14px;
  line-height: 1.7;
  max-width: 300px;
  opacity: 0.7;
}

.footer-links {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}
.footer-col h4 {
  font-size: 13px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--white);
  margin-bottom: 16px;
}
.footer-col ul {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.footer-col a {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.6);
  transition: color var(--transition);
}
.footer-col a:hover {
  color: var(--coral);
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding: 24px 0;
}
.footer-bottom p {
  text-align: center;
  font-size: 13px;
  opacity: 0.5;
}

/* ========== RESPONSIVE ========== */
@media (max-width: 1024px) {
  .hero-container {
    grid-template-columns: 1fr;
    gap: 48px;
  }
  .hero-card {
    text-align: center;
    max-width: 600px;
    margin: 0 auto;
    padding: 36px;
  }
  .hero-sub {
    margin: 0 auto 32px;
  }
  .hero-actions {
    justify-content: center;
  }
  .hero-visual {
    order: -1;
  }
  .hero-photo {
    max-width: 340px;
  }
  .float-card-1 { left: 0; }
  .float-card-2 { right: 0; }
  .float-card-3 { right: 0; }

  .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: 400px;
    margin: 0 auto;
  }

  .about-container {
    grid-template-columns: 1fr;
    gap: 48px;
  }
  .about-content .section-tag,
  .about-content .section-title {
    text-align: center;
  }
  .about-text {
    text-align: center;
  }
  .about-features {
    max-width: 400px;
    margin: 32px auto 0;
  }

  .contact-container {
    grid-template-columns: 1fr;
    gap: 48px;
  }
  .contact-info .section-tag,
  .contact-info .section-title {
    text-align: center;
  }
  .contact-sub {
    text-align: center;
  }
  .contact-details {
    max-width: 480px;
    margin: 0 auto;
  }
}

@media (max-width: 768px) {
  .nav-menu {
    position: fixed;
    top: 72px;
    left: 0;
    right: 0;
    background: rgba(255, 248, 245, 0.98);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    padding: 24px;
    border-bottom: 1px solid rgba(45, 52, 54, 0.08);
    box-shadow: var(--shadow-lg);
    transform: translateY(-120%);
    opacity: 0;
    visibility: hidden;
    transition: all var(--transition);
  }
  .nav-menu.open {
    transform: translateY(0);
    opacity: 1;
    visibility: visible;
  }
  .nav-menu ul {
    flex-direction: column;
    gap: 4px;
    width: 100%;
  }
  .nav-menu a {
    display: block;
    padding: 12px 16px;
    font-size: 16px;
  }
  .nav-menu li:last-child {
    margin-top: 8px;
  }
  .nav-toggle {
    display: flex;
  }

  .hero {
    padding: 100px 0 60px;
    min-height: auto;
  }
  .hero-card {
    padding: 28px;
  }
  .hero-title {
    font-size: 32px;
  }
  .hero-photo {
    max-width: 280px;
  }
  .float-card {
    padding: 10px 14px;
  }
  .float-card-1 { bottom: 40px; left: -10px; }
  .float-card-2 { top: 40px; right: -10px; }
  .float-card-3 { bottom: 0; right: 10px; }
  .float-card-number { font-size: 13px; }
  .float-card-label { font-size: 11px; }

  .services-grid {
    grid-template-columns: 1fr;
    max-width: 480px;
    margin: 0 auto;
  }
  .testimonials-grid {
    grid-template-columns: 1fr;
  }
  .testimonials-grid .testimonial-card:last-child {
    grid-column: span 1;
    max-width: none;
  }

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

  .footer-inner {
    grid-template-columns: 1fr;
    gap: 32px;
  }
  .footer-links {
    grid-template-columns: repeat(2, 1fr);
  }

  .about-img-accent {
    right: -10px;
    bottom: -20px;
  }
  .about-experience-badge {
    left: -10px;
    top: -10px;
  }
}

@media (max-width: 480px) {
  .container {
    padding: 0 16px;
  }
  .hero-actions {
    flex-direction: column;
  }
  .hero-actions .btn {
    width: 100%;
    justify-content: center;
  }
  .steps {
    gap: 0;
  }
  .step {
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 12px;
  }
  .step-content {
    padding-top: 0;
  }
  .about-features {
    grid-template-columns: 1fr;
  }
  .footer-links {
    grid-template-columns: 1fr;
  }
  .contact-form-wrap {
    padding: 24px;
  }
}

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