/* ===== CSS VARIABLES ===== */
:root {
  /* Colors */
  --cream-50: #fdfaf6;
  --cream-100: #faf5ee;
  --cream-200: #f3ebdd;
  --cream-300: #e8dcc5;
  --cream-400: #d9c5a4;
  --brown-50: #faf6f1;
  --brown-100: #f1e8db;
  --brown-200: #e2cfb4;
  --brown-300: #c9a980;
  --brown-400: #b08968;
  --brown-500: #9b7651;
  --brown-600: #7d5d3f;
  --brown-700: #5e4530;
  --brown-800: #3d2d20;
  
  /* Fonts */
  --font-sans: 'Manrope', system-ui, -apple-system, sans-serif;
  --font-script: 'Caveat', cursive;
  
  /* Transitions */
  --transition-fast: 0.2s ease;
  --transition-normal: 0.3s ease;
  --transition-slow: 0.5s ease;
}

/* ===== RESET & BASE ===== */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 80px;
  font-size: 16px;
}

body {
  font-family: var(--font-sans);
  background: var(--cream-50);
  color: var(--brown-800);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  text-decoration: none;
  color: inherit;
}

ul {
  list-style: none;
}

button {
  font-family: inherit;
  cursor: pointer;
  border: none;
  background: none;
}

/* ===== UTILITIES ===== */
.container {
  width: 100%;
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 1rem;
}

.container--narrow {
  max-width: 800px;
}

.text-accent {
  color: var(--brown-500);
}

.float {
  display: inline-block;
  animation: float 4s ease-in-out infinite;
}

@keyframes float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-6px); }
}

@keyframes fadeUp {
  from { opacity: 0; transform: translateY(20px); }
  to { opacity: 1; transform: translateY(0); }
}

@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

@keyframes blob {
  0%, 100% { transform: translate(0, 0) scale(1); }
  33% { transform: translate(20px, -10px) scale(1.05); }
  66% { transform: translate(-10px, 15px) scale(0.97); }
}

.section-header {
  text-align: center;
  margin-bottom: 2.5rem;
}

.section-title {
  font-size: clamp(1.75rem, 5vw, 3rem);
  font-weight: 700;
  color: var(--brown-800);
  margin-bottom: 0.75rem;
}

.section-subtitle {
  color: var(--brown-700);
  font-size: clamp(0.875rem, 2vw, 1rem);
  max-width: 600px;
  margin: 0 auto;
}

.section-cta {
  text-align: center;
  margin-top: 2rem;
}

.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.75rem 1.5rem;
  border-radius: 9999px;
  font-size: 0.875rem;
  font-weight: 600;
  transition: all var(--transition-normal);
}

.btn svg {
  width: 1.25rem;
  height: 1.25rem;
}

.btn--primary {
  background: var(--brown-400);
  color: white;
}

.btn--primary:hover {
  background: var(--brown-500);
}

.btn--outline {
  background: var(--brown-100);
  color: var(--brown-700);
  border: 1px solid var(--brown-200);
}

.btn--outline:hover {
  background: var(--brown-200);
}

/* ===== HEADER ===== */
.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: rgba(253, 250, 246, 0.95);
  backdrop-filter: blur(8px);
  transition: all var(--transition-normal);
}

.header--scrolled {
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
}

.header__container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 4rem;
}

.header__logo {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.header__paw {
  width: 1.75rem;
  height: 1.75rem;
  color: var(--brown-400);
}

.header__logo-text {
  display: flex;
  flex-direction: column;
  line-height: 1.1;
}

.header__name {
  font-size: 1.125rem;
  font-weight: 600;
  color: var(--brown-700);
}

.header__subtitle {
  font-size: 0.625rem;
  color: var(--brown-500);
}

.header__nav {
  display: none;
  gap: 0.25rem;
}

.header__link {
  padding: 0.5rem 0.75rem;
  font-size: 0.875rem;
  color: var(--brown-700);
  border-radius: 0.5rem;
  transition: all var(--transition-fast);
}

.header__link:hover {
  background: var(--cream-100);
  color: var(--brown-500);
}

.header__phone {
  display: none;
  align-items: center;
  gap: 0.5rem;
  padding: 0.5rem 1rem;
  background: var(--brown-400);
  color: white;
  border-radius: 9999px;
  font-size: 0.875rem;
  font-weight: 500;
  transition: background var(--transition-fast);
}

.header__phone:hover {
  background: var(--brown-500);
}

.header__phone-icon {
  width: 1rem;
  height: 1rem;
}

.header__menu-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 2.5rem;
  height: 2.5rem;
  color: var(--brown-700);
}

.header__menu-icon,
.header__close-icon {
  width: 1.5rem;
  height: 1.5rem;
}

.header__close-icon {
  display: none;
}

.header__menu-btn[aria-expanded="true"] .header__menu-icon {
  display: none;
}

.header__menu-btn[aria-expanded="true"] .header__close-icon {
  display: block;
}

.header__mobile {
  display: none;
  background: var(--cream-50);
  border-top: 1px solid var(--cream-200);
}

.header__mobile--open {
  display: block;
  animation: fadeIn 0.3s ease;
}

.header__mobile-nav {
  padding: 1rem;
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}

.header__mobile-link {
  padding: 0.75rem 1rem;
  color: var(--brown-700);
  border-radius: 0.5rem;
  transition: background var(--transition-fast);
}

.header__mobile-link:hover {
  background: var(--cream-100);
}

.header__mobile-phone {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-top: 0.5rem;
  padding: 0.75rem 1rem;
  background: var(--brown-400);
  color: white;
  border-radius: 0.5rem;
  font-weight: 500;
  justify-content: center;
}

.header__mobile-phone svg {
  width: 1rem;
  height: 1rem;
}

/* ===== HERO SECTION ===== */
.hero {
  position: relative;
  padding-top: 6rem;
  padding-bottom: 3rem;
  overflow: hidden;
}

.hero__bg {
  position: absolute;
  inset: 0;
  background-image: radial-gradient(rgba(176, 137, 104, 0.05) 1px, transparent 1px);
  background-size: 16px 16px;
  pointer-events: none;
}

.hero__blob {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  opacity: 0.4;
  animation: blob 14s ease-in-out infinite;
}

.hero__blob--1 {
  width: 18rem;
  height: 18rem;
  background: var(--brown-200);
  top: -5rem;
  right: -5rem;
}

.hero__blob--2 {
  width: 18rem;
  height: 18rem;
  background: var(--cream-300);
  bottom: -5rem;
  left: -5rem;
  animation-delay: 3s;
}

.hero__container {
  display: grid;
  gap: 2rem;
  align-items: center;
}

.hero__content {
  animation: fadeUp 0.7s ease-out;
}

.hero__badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.375rem 0.75rem;
  background: var(--brown-100);
  border-radius: 9999px;
  font-size: 0.75rem;
  color: var(--brown-700);
  margin-bottom: 1rem;
}

.hero__badge-dot {
  width: 0.5rem;
  height: 0.5rem;
  background: #22c55e;
  border-radius: 50%;
  animation: pulse 2s infinite;
}

@keyframes pulse {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.5; }
}

.hero__title {
  font-size: clamp(1.75rem, 5vw, 3.5rem);
  font-weight: 700;
  color: var(--brown-800);
  line-height: 1.2;
  margin-bottom: 1rem;
}

.hero__title-accent {
  color: var(--brown-500);
}

.hero__heart {
  display: inline-block;
  animation: float 4s ease-in-out infinite;
}

.hero__text {
  font-size: clamp(0.9375rem, 2vw, 1.125rem);
  color: var(--brown-700);
  margin-bottom: 1rem;
  max-width: 40rem;
}

.hero__list {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  margin-bottom: 1.5rem;
}

.hero__list-item {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-size: 0.9375rem;
  color: var(--brown-700);
}

.hero__list-icon {
  font-size: 1.25rem;
}

.hero__buttons {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.hero__btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.875rem 1.5rem;
  border-radius: 9999px;
  font-size: 0.9375rem;
  font-weight: 600;
  transition: all var(--transition-normal);
}

.hero__btn-icon {
  width: 1.25rem;
  height: 1.25rem;
}

.hero__btn--primary {
  background: var(--brown-500);
  color: white;
  box-shadow: 0 10px 25px -5px rgba(155, 118, 81, 0.4);
}

.hero__btn--primary:hover {
  background: var(--brown-600);
  transform: scale(1.02);
}

.hero__btn--secondary {
  background: var(--cream-100);
  color: var(--brown-700);
  border: 1px solid var(--brown-200);
}

.hero__btn--secondary:hover {
  background: var(--cream-200);
}

.hero__image-wrapper {
  position: relative;
  animation: fadeUp 0.7s ease-out 0.2s both;
}

.hero__image {
  border-radius: 1.5rem;
  overflow: hidden;
  box-shadow: 0 25px 50px -12px rgba(93, 69, 48, 0.25);
}

.hero__image img {
  width: 100%;
  height: auto;
  aspect-ratio: 4/5;
  object-fit: cover;
}

.hero__card {
  position: absolute;
  top: 1rem;
  right: 1rem;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(8px);
  border-radius: 1rem;
  padding: 0.75rem 1rem;
  box-shadow: 0 10px 25px -5px rgba(0, 0, 0, 0.1);
  max-width: 12rem;
  animation: float 4s ease-in-out infinite;
}

.hero__card-header {
  display: flex;
  align-items: center;
  gap: 0.375rem;
  margin-bottom: 0.25rem;
}

.hero__card-icon {
  font-size: 1rem;
}

.hero__card-title {
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--brown-700);
}

.hero__card-text {
  font-size: 0.625rem;
  color: var(--brown-600);
  line-height: 1.4;
}

.hero__advantages {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0.75rem;
  margin-top: 2.5rem;
}

.hero__advantage {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.75rem 1rem;
  background: rgba(255, 255, 255, 0.7);
  backdrop-filter: blur(4px);
  border-radius: 1rem;
  border: 1px solid var(--cream-200);
  transition: border-color var(--transition-fast);
  animation: fadeUp 0.7s ease-out both;
}

.hero__advantage:hover {
  border-color: var(--brown-300);
}

.hero__advantage-icon {
  font-size: 1.5rem;
  flex-shrink: 0;
}

.hero__advantage-text {
  font-size: 0.75rem;
  color: var(--brown-700);
  line-height: 1.3;
}

/* ===== SERVICES SECTION ===== */
.services {
  padding: 4rem 0;
  background: white;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='80' height='80' viewBox='0 0 80 80'%3E%3Cpath fill='%23b08968' fill-opacity='0.06' d='M40 30c-3 0-5 3-5 6s2 6 5 6 5-3 5-6-2-6-5-6zm-12 0c-2 0-4 2-4 5s2 5 4 5 4-2 4-5-2-5-4-5zm24 0c-2 0-4 2-4 5s2 5 4 5 4-2 4-5-2-5-4-5zm-18 12c-2 0-4 2-4 4s2 4 4 4 4-2 4-4-2-4-4-4zm12 0c-2 0-4 2-4 4s2 4 4 4 4-2 4-4-2-4-4-4zm-6 4c-3 0-5 2-5 4 0 1 1 2 2 3l3 2 3-2c1-1 2-2 2-3 0-2-2-4-5-4z'/%3E%3C/svg%3E");
}

.services__grid {
  display: grid;
  grid-template-columns: repeat(1, 1fr);
  gap: 1rem;
}

.service-card {
  background: var(--cream-50);
  border-radius: 1rem;
  overflow: hidden;
  border: 1px solid var(--cream-200);
  transition: all var(--transition-normal);
  animation: fadeUp 0.7s ease-out both;
}

.service-card:hover {
  border-color: var(--brown-300);
  box-shadow: 0 20px 25px -5px rgba(155, 118, 81, 0.15);
  transform: translateY(-4px);
}

.service-card__image {
  aspect-ratio: 1;
  overflow: hidden;
  background: var(--brown-100);
}

.service-card__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.service-card:hover .service-card__image img {
  transform: scale(1.1);
}

.service-card__content {
  padding: 1rem;
}

.service-card__title {
  font-size: 1rem;
  font-weight: 600;
  color: var(--brown-800);
  margin-bottom: 0.375rem;
}

.service-card__text {
  font-size: 0.8125rem;
  color: var(--brown-600);
  margin-bottom: 0.5rem;
  line-height: 1.4;
}

.service-card__price {
  font-size: 0.9375rem;
  font-weight: 600;
  color: var(--brown-500);
}

/* ===== PORTFOLIO SECTION ===== */
.portfolio {
  padding: 4rem 0;
  background: var(--cream-100);
}

.portfolio__grid {
  display: grid;
  grid-template-columns: repeat(1, 1fr);
  gap: 1rem;
}

.portfolio-card {
  background: white;
  border-radius: 1rem;
  overflow: hidden;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
  transition: box-shadow var(--transition-normal);
  animation: fadeUp 0.7s ease-out both;
}

.portfolio-card:hover {
  box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
}

.portfolio-card__images {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
}

.portfolio-card__image {
  position: relative;
  aspect-ratio: 1;
  overflow: hidden;
  background: var(--brown-100);
}

.portfolio-card__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.portfolio-card__label {
  position: absolute;
  top: 0.5rem;
  left: 0.5rem;
  padding: 0.25rem 0.5rem;
  background: rgba(93, 69, 48, 0.8);
  color: white;
  font-size: 0.625rem;
  border-radius: 9999px;
  backdrop-filter: blur(4px);
}

.portfolio-card__label--after {
  left: auto;
  right: 0.5rem;
  background: rgba(176, 137, 104, 0.9);
}

.portfolio-card__breed {
  padding: 0.75rem;
  text-align: center;
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--brown-700);
}

/* ===== ABOUT SECTION ===== */
.about {
  padding: 4rem 0;
  background: white;
}

.about__grid {
  display: grid;
  gap: 1rem;
}

.about__card--info {
  background: var(--cream-100);
  border-radius: 1rem;
  padding: 1.5rem;
}

.about__title {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--brown-800);
  margin-bottom: 1rem;
}

.about__text {
  font-size: 0.9375rem;
  color: var(--brown-700);
  margin-bottom: 0.75rem;
  line-height: 1.6;
}

.about__checklist {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  margin: 1rem 0;
}

.about__checklist li {
  display: flex;
  gap: 0.5rem;
  font-size: 0.875rem;
  color: var(--brown-700);
}

.about__checklist svg {
  width: 1.25rem;
  height: 1.25rem;
  color: #22c55e;
  flex-shrink: 0;
  margin-top: 0.125rem;
}

.about__image {
  position: relative;
  border-radius: 1rem;
  overflow: hidden;
  background: var(--brown-100);
}

.about__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  min-height: 300px;
}

.about__book {
  position: absolute;
  bottom: 0.75rem;
  right: 0.75rem;
  background: var(--cream-50);
  border-radius: 1rem;
  padding: 0.75rem 1rem;
  box-shadow: 0 10px 25px -5px rgba(0, 0, 0, 0.1);
  max-width: 10rem;
}

.about__book-text {
  font-size: 0.625rem;
  color: var(--brown-600);
  margin-bottom: 0.125rem;
}

.about__book-title {
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--brown-800);
}

.about__values {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.about__values-card {
  background: var(--brown-50);
  border-radius: 1rem;
  padding: 1.25rem;
}

.about__values-title {
  font-size: 1.125rem;
  font-weight: 600;
  color: var(--brown-800);
  margin-bottom: 1rem;
}

.about__values-list {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.about__values-list li {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  font-size: 0.875rem;
  color: var(--brown-700);
}

.about__values-num {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 1.75rem;
  height: 1.75rem;
  background: var(--brown-200);
  color: var(--brown-600);
  border-radius: 50%;
  font-size: 0.75rem;
  font-weight: 600;
  flex-shrink: 0;
}

.about__values-text {
  font-size: 0.875rem;
  color: var(--brown-700);
  margin-bottom: 0.75rem;
  line-height: 1.6;
}

.about__values-image {
  width: 100%;
  height: 10rem;
  object-fit: cover;
  border-radius: 0.75rem;
}

/* ===== PROCESS SECTION ===== */
.process {
  padding: 4rem 0;
  background: white;
}

.process__grid {
  display: grid;
  grid-template-columns: repeat(1, 1fr);
  gap: 1rem;
}

.process__step {
  position: relative;
  background: var(--cream-50);
  border-radius: 1rem;
  padding: 1.25rem;
  border: 1px solid var(--cream-200);
  transition: border-color var(--transition-fast);
  animation: fadeUp 0.7s ease-out both;
}

.process__step:hover {
  border-color: var(--brown-300);
}

.process__num {
  font-size: 3rem;
  font-weight: 700;
  color: var(--brown-200);
  line-height: 1;
  margin-bottom: 0.5rem;
}

.process__title {
  font-size: 1rem;
  font-weight: 600;
  color: var(--brown-800);
  margin-bottom: 0.375rem;
}

.process__text {
  font-size: 0.8125rem;
  color: var(--brown-600);
  line-height: 1.5;
}

/* ===== PRICES SECTION ===== */
.prices {
  padding: 4rem 0;
  background: var(--cream-100);
}

.prices__list {
  background: white;
  border-radius: 1.5rem;
  overflow: hidden;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
}

.prices__item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1rem 1.25rem;
  transition: background var(--transition-fast);
}

.prices__item:not(:last-child) {
  border-bottom: 1px solid var(--cream-200);
}

.prices__item:hover {
  background: var(--cream-50);
}

.prices__info {
  flex: 1;
  min-width: 0;
}

.prices__name {
  font-size: 0.9375rem;
  font-weight: 600;
  color: var(--brown-800);
}

.prices__note {
  font-size: 0.75rem;
  color: var(--brown-600);
  margin-top: 0.125rem;
}

.prices__price {
  font-size: 1rem;
  font-weight: 600;
  color: var(--brown-500);
  white-space: nowrap;
}

.prices__discount {
  text-align: center;
  font-size: 0.875rem;
  color: var(--brown-600);
  margin-top: 1rem;
}

/* ===== WORK SECTION ===== */
.work {
  padding: 4rem 0;
  background: var(--cream-100);
}

.work__grid {
  display: grid;
  grid-template-columns: repeat(1, 1fr);
  gap: 1rem;
}

.work__card {
  background: white;
  border-radius: 1rem;
  padding: 1.25rem;
}

.work__card--yes {
  border: 2px solid #dcfce7;
}

.work__card--no {
  border: 2px solid #fee2e2;
}

.work__card--rules {
  background: var(--brown-400);
  color: white;
}

.work__card-header {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 1rem;
}

.work__icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 2.25rem;
  height: 2.25rem;
  border-radius: 50%;
  flex-shrink: 0;
}

.work__icon svg {
  width: 1.25rem;
  height: 1.25rem;
}

.work__icon--yes {
  background: #dcfce7;
  color: #22c55e;
}

.work__icon--no {
  background: #fee2e2;
  color: #ef4444;
}

.work__icon--rules {
  background: rgba(255, 255, 255, 0.2);
  color: white;
}

.work__title {
  font-size: 1rem;
  font-weight: 600;
  color: var(--brown-800);
}

.work__card--rules .work__title {
  color: white;
}

.work__list {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.work__list li {
  display: flex;
  gap: 0.5rem;
  font-size: 0.875rem;
  color: var(--brown-700);
}

.work__card--rules .work__list li {
  color: var(--cream-100);
}

.work__bullet {
  margin-top: 0.125rem;
}

.work__bullet--yes {
  color: #22c55e;
}

.work__bullet--no {
  color: #ef4444;
}

.work__bullet--rules {
  color: var(--brown-200);
}

/* ===== REVIEWS SECTION ===== */
.reviews {
  padding: 4rem 0;
  background: white;
}

.reviews__grid {
  display: grid;
  grid-template-columns: repeat(1, 1fr);
  gap: 1rem;
}

.review-card {
  background: var(--cream-50);
  border-radius: 1rem;
  padding: 1.25rem;
  border: 1px solid var(--cream-200);
  transition: border-color var(--transition-fast);
  animation: fadeUp 0.7s ease-out both;
}

.review-card:hover {
  border-color: var(--brown-300);
}

.review-card__header {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 0.75rem;
}

.review-card__avatar {
  width: 2.75rem;
  height: 2.75rem;
  border-radius: 50%;
  object-fit: cover;
  background: var(--brown-200);
}

.review-card__name {
  font-size: 0.9375rem;
  font-weight: 600;
  color: var(--brown-800);
}

.review-card__stars {
  display: flex;
  gap: 0.125rem;
  margin-top: 0.25rem;
}

.review-card__stars svg {
  width: 0.875rem;
  height: 0.875rem;
  color: #fbbf24;
}

.review-card__text {
  font-size: 0.875rem;
  color: var(--brown-700);
  line-height: 1.6;
}

/* ===== FAQ SECTION ===== */
.faq {
  padding: 4rem 0;
  background: var(--cream-100);
}

.faq__list {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.faq__item {
  background: white;
  border-radius: 1rem;
  border: 1px solid var(--cream-200);
  overflow: hidden;
  transition: border-color var(--transition-fast);
}

.faq__item:hover {
  border-color: var(--brown-300);
}

.faq__question {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  width: 100%;
  padding: 1rem 1.25rem;
  font-size: 0.9375rem;
  font-weight: 500;
  color: var(--brown-800);
  text-align: left;
}

.faq__icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 1.75rem;
  height: 1.75rem;
  background: var(--brown-100);
  color: var(--brown-600);
  border-radius: 50%;
  flex-shrink: 0;
  transition: transform var(--transition-normal);
}

.faq__icon svg {
  width: 1rem;
  height: 1rem;
}

.faq__item[aria-expanded="true"] .faq__icon {
  transform: rotate(45deg);
}

.faq__answer {
  display: none;
  padding: 0 1.25rem 1rem;
}

.faq__item[aria-expanded="true"] .faq__answer {
  display: block;
  animation: fadeIn 0.3s ease;
}

.faq__answer p {
  font-size: 0.875rem;
  color: var(--brown-700);
  line-height: 1.7;
}

/* ===== CTA SECTION ===== */
.cta {
  padding: 4rem 0;
}

.cta__card {
  position: relative;
  background: linear-gradient(135deg, var(--brown-300), var(--brown-500));
  border-radius: 1.5rem;
  padding: 2rem 1.5rem;
  overflow: hidden;
}

.cta__bg {
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 20% 50%, rgba(255, 255, 255, 0.1) 0%, transparent 50%),
              radial-gradient(circle at 80% 80%, rgba(255, 255, 255, 0.1) 0%, transparent 50%);
  pointer-events: none;
}

.cta__content {
  position: relative;
  margin-bottom: 1.5rem;
}

.cta__badge {
  display: inline-flex;
  align-items: center;
  gap: 0.375rem;
  padding: 0.375rem 0.75rem;
  background: rgba(255, 255, 255, 0.2);
  border-radius: 9999px;
  font-size: 0.75rem;
  color: white;
  margin-bottom: 1rem;
}

.cta__badge svg {
  width: 0.875rem;
  height: 0.875rem;
}

.cta__title {
  font-size: clamp(1.25rem, 4vw, 2rem);
  font-weight: 700;
  color: white;
  margin-bottom: 0.75rem;
  line-height: 1.3;
}

.cta__text {
  font-size: 0.9375rem;
  color: rgba(255, 255, 255, 0.9);
  line-height: 1.6;
}

.cta__buttons {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.cta__btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 1rem 1.5rem;
  border-radius: 9999px;
  font-size: 0.9375rem;
  font-weight: 600;
  transition: all var(--transition-normal);
}

.cta__btn svg {
  width: 1.25rem;
  height: 1.25rem;
}

.cta__btn--primary {
  background: white;
  color: var(--brown-700);
}

.cta__btn--primary:hover {
  background: var(--cream-100);
}

.cta__btn--secondary {
  background: rgba(255, 255, 255, 0.1);
  color: white;
  border: 2px solid rgba(255, 255, 255, 0.3);
  backdrop-filter: blur(4px);
}

.cta__btn--secondary:hover {
  background: rgba(255, 255, 255, 0.2);
}

/* ===== FOOTER ===== */
.footer {
  background: var(--brown-700);
  color: var(--cream-100);
  padding: 2.5rem 0 1.5rem;
}

.footer__grid {
  display: grid;
  grid-template-columns: repeat(1, 1fr);
  gap: 1.5rem;
  margin-bottom: 1.5rem;
}

.footer__logo {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 0.75rem;
}

.footer__logo svg {
  width: 1.75rem;
  height: 1.75rem;
  color: var(--cream-200);
}

.footer__name {
  font-size: 1.125rem;
  font-weight: 600;
  color: white;
}

.footer__subtitle {
  font-size: 0.625rem;
  color: var(--cream-300);
}

.footer__text {
  font-size: 0.8125rem;
  color: var(--cream-200);
  line-height: 1.6;
}

.footer__title {
  font-size: 0.875rem;
  font-weight: 600;
  color: white;
  margin-bottom: 0.75rem;
}

.footer__nav ul {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.footer__nav a {
  font-size: 0.8125rem;
  color: var(--cream-200);
  transition: color var(--transition-fast);
}

.footer__nav a:hover {
  color: white;
}

.footer__contacts-list {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  margin-bottom: 1rem;
}

.footer__phone {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.875rem;
  color: var(--cream-200);
  transition: color var(--transition-fast);
}

.footer__phone:hover {
  color: white;
}

.footer__phone svg {
  width: 1rem;
  height: 1rem;
}

.footer__address {
  display: flex;
  align-items: flex-start;
  gap: 0.5rem;
  font-size: 0.8125rem;
  color: var(--cream-200);
  line-height: 1.5;
}

.footer__social {
  display: flex;
  gap: 0.5rem;
}

.footer__social-link {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 2.5rem;
  height: 2.5rem;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  color: var(--cream-200);
  transition: all var(--transition-fast);
}

.footer__social-link:hover {
  background: rgba(255, 255, 255, 0.2);
  color: white;
}

.footer__social-link svg {
  width: 1.25rem;
  height: 1.25rem;
}

.footer__bottom {
  padding-top: 1rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  text-align: center;
}

.footer__bottom p {
  font-size: 0.75rem;
  color: var(--cream-200);
}

/* ===== RESPONSIVE ===== */
@media (min-width: 640px) {
  .header__nav {
    display: flex;
  }
  
  .header__phone {
    display: flex;
  }
  
  .header__menu-btn {
    display: none;
  }
  
  .hero__container {
    grid-template-columns: 1fr 1fr;
  }
  
  .hero__buttons {
    flex-direction: row;
  }
  
  .hero__advantages {
    grid-template-columns: repeat(5, 1fr);
  }
  
  .services__grid {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .portfolio__grid {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .about__grid {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .about__values {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .process__grid {
    grid-template-columns: repeat(3, 1fr);
  }
  
  .work__grid {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .work__card--rules {
    grid-column: span 2;
  }
  
  .reviews__grid {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .footer__grid {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .footer__bottom {
    flex-direction: row;
    justify-content: space-between;
  }
}

@media (min-width: 768px) {
  .section-header {
    margin-bottom: 3.5rem;
  }
  
  .services__grid {
    grid-template-columns: repeat(3, 1fr);
  }
  
  .process__grid {
    grid-template-columns: repeat(5, 1fr);
  }
  
  .work__grid {
    grid-template-columns: repeat(3, 1fr);
  }
  
  .work__card--rules {
    grid-column: auto;
  }
  
  .reviews__grid {
    grid-template-columns: repeat(4, 1fr);
  }
  
  .cta__card {
    padding: 3rem 4rem;
  }
  
  .cta__buttons {
    flex-direction: row;
    max-width: 600px;
  }
  
  .footer__grid {
    grid-template-columns: 2fr 1fr 1fr 1.5fr;
  }
}

@media (min-width: 1024px) {
  .services__grid {
    grid-template-columns: repeat(5, 1fr);
  }
  
  .portfolio__grid {
    grid-template-columns: repeat(4, 1fr);
  }
  
  .about__grid {
    grid-template-columns: 1fr 1fr 1.5fr;
  }
  
  .about__card--info {
    grid-row: span 2;
  }
}
