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

:root {
  --pink-50: #fff5f7;
  --pink-100: #ffe8ee;
  --pink-200: #fcd1dc;
  --pink-300: #f9a8c0;
  --pink-400: #f472a0;
  --pink-500: #e84d88;
  --pink-600: #d42f72;
  --pink-700: #b81e5b;
  --white: #ffffff;
  --gray-50: #fafafa;
  --gray-100: #f5f5f5;
  --gray-200: #e5e5e5;
  --gray-400: #a3a3a3;
  --gray-500: #737373;
  --gray-600: #525252;
  --gray-700: #404040;
  --gray-800: #262626;
  --gray-900: #171717;
  --shadow-sm: 0 1px 3px rgba(0,0,0,0.06);
  --shadow-md: 0 4px 20px rgba(0,0,0,0.08);
  --shadow-lg: 0 10px 40px rgba(0,0,0,0.1);
  --shadow-pink: 0 4px 20px rgba(244,114,160,0.25);
  --radius-sm: 8px;
  --radius-md: 12px;
  --radius-lg: 20px;
  --radius-xl: 28px;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 80px;
}

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  color: var(--gray-800);
  background: var(--white);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4 {
  font-family: 'Playfair Display', Georgia, serif;
  line-height: 1.2;
}

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

img { max-width: 100%; }
a { text-decoration: none; color: inherit; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }

/* ===== Buttons ===== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-weight: 500;
  border-radius: 50px;
  transition: all 0.25s ease;
  font-size: 0.95rem;
  padding: 10px 24px;
}

.btn-primary {
  background: var(--pink-500);
  color: var(--white);
  box-shadow: var(--shadow-pink);
}

.btn-primary:hover {
  background: var(--pink-600);
  transform: translateY(-1px);
  box-shadow: 0 6px 24px rgba(244,114,160,0.35);
}

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

.btn-outline:hover {
  background: var(--pink-100);
  border-color: var(--pink-400);
}

.btn-lg {
  padding: 14px 32px;
  font-size: 1.05rem;
}

.btn-full { width: 100%; }

.btn-nav {
  background: var(--pink-500);
  color: var(--white);
  padding: 8px 20px;
  font-size: 0.9rem;
}

.btn-nav:hover { background: var(--pink-600); }

/* ===== Navbar ===== */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: rgba(255,255,255,0.85);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(252,209,220,0.4);
  transition: box-shadow 0.3s;
}

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

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

.logo {
  font-family: 'Playfair Display', serif;
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--pink-600);
}

.logo-icon {
  color: var(--pink-400);
  font-size: 1.2rem;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 32px;
  list-style: none;
}

.nav-links a {
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--gray-600);
  transition: color 0.2s;
}

.nav-links a:hover { color: var(--pink-600); }

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 4px;
}

.nav-toggle span {
  width: 24px;
  height: 2px;
  background: var(--gray-700);
  border-radius: 2px;
  transition: all 0.3s;
}

/* ===== Hero ===== */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: 120px 0 80px;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, var(--pink-50) 0%, var(--white) 40%, var(--pink-100) 100%);
  z-index: -2;
}

.hero-bg::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -30%;
  width: 800px;
  height: 800px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(252,209,220,0.4) 0%, transparent 70%);
  z-index: -1;
}

.hero-bg::after {
  content: '';
  position: absolute;
  bottom: -30%;
  left: -20%;
  width: 600px;
  height: 600px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255,232,238,0.5) 0%, transparent 70%);
  z-index: -1;
}

.hero-content {
  text-align: center;
  max-width: 700px;
  margin: 0 auto;
}

.hero-badge {
  display: inline-block;
  background: var(--pink-100);
  color: var(--pink-600);
  padding: 6px 18px;
  border-radius: 50px;
  font-size: 0.85rem;
  font-weight: 500;
  margin-bottom: 24px;
  letter-spacing: 0.02em;
}

.hero h1 {
  font-size: clamp(2.4rem, 6vw, 3.8rem);
  color: var(--gray-900);
  margin-bottom: 20px;
}

.hero-sub {
  font-size: 1.1rem;
  color: var(--gray-500);
  max-width: 520px;
  margin: 0 auto 36px;
  line-height: 1.7;
}

.hero-actions {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 56px;
}

.hero-trust {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 32px;
}

.trust-item { text-align: center; }

.trust-number {
  display: block;
  font-family: 'Playfair Display', serif;
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--pink-600);
}

.trust-label {
  font-size: 0.8rem;
  color: var(--gray-500);
  font-weight: 500;
}

.trust-divider {
  width: 1px;
  height: 36px;
  background: var(--pink-200);
}

/* ===== Section Styling ===== */
.section-badge {
  display: inline-block;
  background: var(--pink-100);
  color: var(--pink-600);
  padding: 5px 16px;
  border-radius: 50px;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  margin-bottom: 12px;
}

.section-title {
  font-size: clamp(1.8rem, 4vw, 2.6rem);
  color: var(--gray-900);
  margin-bottom: 16px;
}

.section-title.left { text-align: left; }

.section-sub {
  color: var(--gray-500);
  font-size: 1.05rem;
  max-width: 540px;
  margin: 0 auto 48px;
  line-height: 1.7;
}

/* ===== Services ===== */
.services {
  padding: 100px 0;
  text-align: center;
  background: var(--white);
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 24px;
  margin-top: 48px;
  align-items: start; /* cards size to their own content; opening one won't stretch the others */
}

.service-card {
  position: relative;
  background: var(--white);
  border: 1px solid var(--pink-100);
  border-radius: var(--radius-lg);
  padding: 40px 28px 32px;
  text-align: center;
  transition: all 0.3s ease;
}

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

.service-card.featured {
  border-color: var(--pink-300);
  background: linear-gradient(180deg, var(--pink-50) 0%, var(--white) 100%);
}

.card-badge {
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--pink-500);
  color: var(--white);
  padding: 4px 16px;
  border-radius: 50px;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.02em;
}

.service-icon {
  font-size: 2.4rem;
  margin-bottom: 16px;
}

.service-card h3 {
  font-size: 1.2rem;
  margin-bottom: 10px;
  color: var(--gray-800);
}

.service-card p {
  font-size: 0.9rem;
  color: var(--gray-500);
  line-height: 1.6;
  margin-bottom: 16px;
}

.service-time {
  display: inline-block;
  background: var(--pink-50);
  color: var(--pink-600);
  padding: 4px 14px;
  border-radius: 50px;
  font-size: 0.8rem;
  font-weight: 500;
}

.service-details {
  margin-top: 18px;
  text-align: left;
  border-top: 1px solid var(--pink-100);
  padding-top: 14px;
}

.service-details summary {
  list-style: none;
  cursor: pointer;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--pink-600);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  user-select: none;
}

.service-details summary::-webkit-details-marker { display: none; }

.service-details summary::after {
  content: '\25BC';
  font-size: 0.6rem;
  transition: transform 0.2s ease;
}

.service-details[open] summary::after { transform: rotate(180deg); }

.service-details ul {
  list-style: none;
  margin-top: 14px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.service-details li {
  position: relative;
  padding-left: 22px;
  font-size: 0.85rem;
  color: var(--gray-600);
  line-height: 1.45;
}

.service-details li::before {
  content: '\2713';
  position: absolute;
  left: 0;
  top: 1px;
  color: var(--pink-400);
  font-size: 0.8rem;
  font-weight: 700;
}

.service-details li strong { color: var(--gray-800); }

/* ===== Pricing Portal ===== */
.pricing {
  padding: 100px 0;
  background: linear-gradient(180deg, var(--pink-50) 0%, var(--white) 100%);
  text-align: center;
}

.quote-portal {
  max-width: 620px;
  margin: 0 auto;
  background: var(--white);
  border-radius: var(--radius-xl);
  padding: 48px 36px;
  box-shadow: var(--shadow-lg);
  border: 1px solid var(--pink-100);
}

.progress-bar {
  height: 4px;
  background: var(--pink-100);
  border-radius: 4px;
  margin-bottom: 20px;
  overflow: hidden;
}

.progress-fill {
  height: 100%;
  background: var(--pink-400);
  border-radius: 4px;
  width: 25%;
  transition: width 0.4s ease;
}

.progress-steps {
  display: flex;
  justify-content: center;
  gap: 12px;
  margin-bottom: 36px;
}

.step-dot {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.8rem;
  font-weight: 600;
  background: var(--pink-50);
  color: var(--pink-300);
  border: 2px solid var(--pink-200);
  transition: all 0.3s;
}

.step-dot.active {
  background: var(--pink-500);
  color: var(--white);
  border-color: var(--pink-500);
}

.step-dot.done {
  background: var(--pink-200);
  color: var(--pink-600);
  border-color: var(--pink-300);
}

.quote-step {
  display: none;
}

.quote-step.active {
  display: block;
  animation: fadeUp 0.35s ease;
}

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

.quote-step h3 {
  font-size: 1.3rem;
  margin-bottom: 28px;
  color: var(--gray-800);
}

.optional-tag {
  font-family: 'Inter', sans-serif;
  font-size: 0.75rem;
  font-weight: 500;
  color: var(--gray-400);
  background: var(--gray-100);
  padding: 2px 10px;
  border-radius: 50px;
  vertical-align: middle;
}

/* Option buttons */
.option-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
}

.option-grid.cols-3 {
  grid-template-columns: repeat(3, 1fr);
}

.option-btn {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  padding: 24px 16px;
  border: 2px solid var(--pink-100);
  border-radius: var(--radius-md);
  background: var(--white);
  transition: all 0.2s ease;
  cursor: pointer;
}

.option-btn:hover {
  border-color: var(--pink-300);
  background: var(--pink-50);
}

.option-btn.selected {
  border-color: var(--pink-500);
  background: var(--pink-50);
  box-shadow: 0 0 0 3px rgba(232,77,136,0.12);
}

.option-icon {
  font-size: 1.6rem;
}

.option-label {
  font-weight: 600;
  font-size: 0.95rem;
  color: var(--gray-800);
}

.option-desc {
  font-size: 0.8rem;
  color: var(--gray-400);
}

.save-tag {
  color: var(--pink-500) !important;
  font-weight: 600 !important;
}

/* Extras checkboxes */
.extras-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
  margin-bottom: 28px;
}

.extra-btn {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 14px 16px;
  border: 2px solid var(--pink-100);
  border-radius: var(--radius-sm);
  cursor: pointer;
  transition: all 0.2s;
  text-align: left;
}

.extra-btn:hover {
  border-color: var(--pink-300);
  background: var(--pink-50);
}

.extra-btn input {
  display: none;
}

.extra-btn input:checked ~ .extra-check {
  background: var(--pink-500);
  color: var(--white);
  border-color: var(--pink-500);
}

.extra-btn input:checked ~ .extra-info .extra-label {
  color: var(--pink-600);
}

.extra-check {
  width: 24px;
  height: 24px;
  border: 2px solid var(--pink-200);
  border-radius: 6px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.7rem;
  color: transparent;
  transition: all 0.2s;
  flex-shrink: 0;
}

.extra-info {
  display: flex;
  flex-direction: column;
}

.extra-label {
  font-weight: 500;
  font-size: 0.9rem;
  color: var(--gray-700);
  transition: color 0.2s;
}

.extra-price {
  font-size: 0.8rem;
  color: var(--gray-400);
}

.btn-next {
  margin-top: 8px;
}

/* Address lookup (step 4) */
.step-note {
  font-size: 0.85rem;
  color: var(--gray-500);
  margin: -16px 0 22px;
  line-height: 1.5;
}

.address-field {
  position: relative;
  text-align: left;
  margin-bottom: 10px;
}

.address-field input {
  width: 100%;
  padding: 14px 16px;
  border: 2px solid var(--pink-100);
  border-radius: var(--radius-sm);
  font-family: inherit;
  font-size: 0.95rem;
  color: var(--gray-800);
  outline: none;
  transition: border-color 0.2s;
}

.address-field input:focus { border-color: var(--pink-400); }
.address-field input::placeholder { color: var(--gray-400); }

.addr-suggestions {
  list-style: none;
  position: absolute;
  left: 0;
  right: 0;
  top: calc(100% + 4px);
  background: var(--white);
  border: 1px solid var(--pink-200);
  border-radius: var(--radius-sm);
  box-shadow: var(--shadow-md);
  z-index: 20;
  max-height: 230px;
  overflow-y: auto;
  display: none;
}

.addr-suggestions.open { display: block; }

.addr-suggestions li {
  padding: 11px 14px;
  font-size: 0.88rem;
  color: var(--gray-700);
  cursor: pointer;
  border-bottom: 1px solid var(--pink-50);
}

.addr-suggestions li:last-child { border-bottom: 0; }

.addr-suggestions li:hover,
.addr-suggestions li.active {
  background: var(--pink-50);
  color: var(--pink-700);
}

.travel-note {
  font-size: 0.85rem;
  color: var(--gray-500);
  min-height: 20px;
  margin-bottom: 18px;
  text-align: center;
}

.travel-note.fee { color: var(--pink-600); font-weight: 600; }
.travel-note.local { color: #16a34a; font-weight: 600; }
.travel-note.checking { color: var(--gray-400); }

/* Result */
.result-card {
  text-align: center;
}

.result-header {
  margin-bottom: 8px;
}

.result-sparkle {
  font-size: 2rem;
  display: block;
  margin-bottom: 4px;
}

.result-header h3 {
  font-size: 1.1rem;
  color: var(--gray-500);
  font-family: 'Inter', sans-serif;
  font-weight: 500;
}

.result-price {
  margin: 16px 0 20px;
}

.price-dollar {
  font-size: 1.6rem;
  font-weight: 600;
  color: var(--pink-400);
  vertical-align: top;
  line-height: 1;
}

.price-amount {
  font-family: 'Playfair Display', serif;
  font-size: 4rem;
  font-weight: 700;
  color: var(--pink-600);
  line-height: 1;
}

.price-amount.custom {
  font-size: 2rem;
}

.result-breakdown {
  font-size: 0.85rem;
  color: var(--gray-500);
  margin-bottom: 8px;
  line-height: 1.8;
}

.result-discount {
  font-size: 0.9rem;
  color: var(--pink-500);
  font-weight: 600;
  margin-bottom: 16px;
}

.result-note {
  font-size: 0.8rem;
  color: var(--gray-400);
  margin-bottom: 28px;
}

.result-actions {
  display: flex;
  gap: 12px;
  justify-content: center;
  flex-wrap: wrap;
}

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

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

.about-content p {
  color: var(--gray-600);
  margin-bottom: 16px;
  line-height: 1.7;
}

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

.about-feature {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 500;
  font-size: 0.9rem;
  color: var(--gray-700);
}

.feature-check {
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: var(--pink-100);
  color: var(--pink-500);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.7rem;
  flex-shrink: 0;
}

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

.about-card {
  background: linear-gradient(135deg, var(--pink-50) 0%, var(--pink-100) 100%);
  border-radius: var(--radius-xl);
  padding: 48px 36px;
  text-align: center;
  max-width: 380px;
  border: 1px solid var(--pink-200);
}

.about-card-icon {
  font-size: 2.4rem;
  margin-bottom: 20px;
  color: var(--pink-400);
}

.promise-title {
  font-size: 1.3rem;
  color: var(--gray-800);
  margin-bottom: 12px;
}

.promise-text {
  font-size: 0.95rem;
  color: var(--gray-600);
  line-height: 1.7;
  margin-bottom: 24px;
}

.about-serving {
  display: flex;
  flex-direction: column;
  gap: 4px;
  font-size: 0.85rem;
  color: var(--gray-500);
}

.serving-label {
  font-weight: 600;
  color: var(--pink-500);
  text-transform: uppercase;
  letter-spacing: 0.04em;
  font-size: 0.75rem;
  margin-bottom: 4px;
}

/* ===== Contact ===== */
.contact {
  padding: 100px 0;
  background: linear-gradient(180deg, var(--white) 0%, var(--pink-50) 100%);
  text-align: center;
}

.contact-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 48px;
  text-align: left;
}

.contact-form {
  background: var(--white);
  padding: 36px;
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-md);
  border: 1px solid var(--pink-100);
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

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

.form-group label {
  display: block;
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--gray-700);
  margin-bottom: 6px;
}

.form-group input,
.form-group textarea {
  width: 100%;
  padding: 12px 16px;
  border: 2px solid var(--pink-100);
  border-radius: var(--radius-sm);
  font-family: inherit;
  font-size: 0.95rem;
  color: var(--gray-800);
  background: var(--white);
  transition: border-color 0.2s;
  outline: none;
}

.form-group input:focus,
.form-group textarea:focus {
  border-color: var(--pink-400);
}

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

.form-group textarea {
  resize: vertical;
}

.contact-info {
  display: flex;
  flex-direction: column;
  gap: 20px;
  padding-top: 16px;
}

.info-card {
  background: var(--white);
  border: 1px solid var(--pink-100);
  border-radius: var(--radius-md);
  padding: 24px;
  display: flex;
  align-items: center;
  gap: 16px;
  transition: all 0.2s;
}

.info-card:hover {
  border-color: var(--pink-300);
  box-shadow: var(--shadow-sm);
}

.info-icon {
  font-size: 1.6rem;
  flex-shrink: 0;
}

.info-card h4 {
  font-family: 'Inter', sans-serif;
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  color: var(--gray-400);
  font-weight: 600;
  margin-bottom: 2px;
}

.info-card p {
  color: var(--gray-800);
  font-weight: 500;
}

/* ===== Footer ===== */
.footer {
  background: var(--gray-900);
  color: var(--gray-400);
  padding: 48px 0;
  text-align: center;
}

.footer-brand {
  font-family: 'Playfair Display', serif;
  font-size: 1.2rem;
  color: var(--pink-300);
  margin-bottom: 8px;
}

.footer-brand p {
  font-family: 'Inter', sans-serif;
  font-size: 0.85rem;
  color: var(--gray-500);
  margin-top: 4px;
}

.footer-links {
  display: flex;
  justify-content: center;
  gap: 28px;
  margin: 24px 0;
}

.footer-links a {
  font-size: 0.85rem;
  transition: color 0.2s;
}

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

.footer-copy {
  font-size: 0.75rem;
  color: var(--gray-600);
}

/* ===== Contact booking CTA / Square embed ===== */
.contact-cta {
  margin: 0 0 40px;
}

.square-embed {
  max-width: 920px;
  margin: 0 auto;
  background: var(--white);
  border: 1px solid var(--pink-100);
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-md);
  padding: 16px;
  overflow: hidden;
}

.square-embed iframe {
  border: 0;
  width: 100%;
  display: block;
}

/* ===== Form Success ===== */
.form-success {
  text-align: center;
  padding: 40px 20px;
}

.form-success .success-icon {
  font-size: 3rem;
  margin-bottom: 16px;
}

.form-success h3 {
  font-size: 1.4rem;
  margin-bottom: 8px;
  color: var(--gray-800);
}

.form-success p {
  color: var(--gray-500);
}

/* ===== Responsive ===== */
@media (max-width: 768px) {
  .nav-toggle {
    display: flex;
  }

  .nav-links {
    display: none;
    position: absolute;
    top: 70px;
    left: 0;
    right: 0;
    background: var(--white);
    flex-direction: column;
    padding: 24px;
    gap: 20px;
    border-bottom: 1px solid var(--pink-100);
    box-shadow: var(--shadow-md);
  }

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

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

  .hero-trust {
    gap: 20px;
  }

  .trust-number { font-size: 1.2rem; }

  .services-grid {
    grid-template-columns: 1fr;
    max-width: 400px;
    margin: 48px auto 0;
  }

  .quote-portal {
    padding: 32px 20px;
  }

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

  .option-grid.cols-3 {
    grid-template-columns: 1fr;
  }

  .option-btn {
    flex-direction: row;
    text-align: left;
    padding: 16px 20px;
  }

  .option-icon {
    font-size: 1.4rem;
  }

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

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

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

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

  .form-row {
    grid-template-columns: 1fr;
  }

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

  .price-amount {
    font-size: 3rem;
  }
}

@media (max-width: 480px) {
  .hero h1 {
    font-size: 2rem;
  }

  .section-title {
    font-size: 1.6rem;
  }

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