/* ===== CSS Variables ===== */
:root {
  --background: hsl(240, 10%, 96%);
  --foreground: hsl(240, 10%, 20%);
  --card: hsl(240, 10%, 98%);
  --card-foreground: hsl(240, 10%, 20%);
  --primary: hsl(35, 58%, 58%);
  --primary-foreground: hsl(240, 10%, 98%);
  --secondary: hsl(240, 10%, 25%);
  --secondary-foreground: hsl(240, 10%, 96%);
  --muted: hsl(240, 10%, 93%);
  --muted-foreground: hsl(240, 10%, 48%);
  --accent: hsl(35, 58%, 58%);
  --accent-foreground: hsl(240, 10%, 98%);
  --border: hsl(240, 10%, 88%);
  --input: hsl(240, 10%, 88%);
  --ring: hsl(35, 58%, 58%);
  
  --font-serif: 'Playfair Display', serif;
  --font-sans: 'Inter', sans-serif;
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-serif);
  background-color: var(--background);
  color: var(--foreground);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

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

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

button {
  font-family: inherit;
  cursor: pointer;
  border: none;
  background: none;
}

input, select, textarea {
  font-family: var(--font-sans);
}

/* ===== Container ===== */
.container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 1rem;
}

@media (min-width: 1024px) {
  .container {
    padding: 0 2rem;
  }
}

/* ===== Typography ===== */
.section-title {
  font-size: 2.25rem;
  font-weight: 700;
  letter-spacing: -0.02em;
  text-wrap: balance;
}

.section-title--large {
  font-size: 2.5rem;
}

.section-title--serif {
  font-family: var(--font-serif);
}

.section-subtitle {
  font-family: var(--font-sans);
  font-size: 1.125rem;
  color: var(--muted-foreground);
  max-width: 42rem;
  margin: 0 auto;
}

@media (min-width: 640px) {
  .section-title {
    font-size: 3rem;
  }
  .section-title--large {
    font-size: 3.5rem;
  }
}

@media (min-width: 1024px) {
  .section-title {
    font-size: 3.75rem;
  }
  .section-title--large {
    font-size: 4.5rem;
  }
  .section-subtitle {
    font-size: 1.25rem;
  }
}

/* ===== Buttons ===== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  font-family: var(--font-sans);
  font-weight: 600;
  padding: 0.75rem 1.5rem;
  border-radius: 0.375rem;
  transition: all 0.2s;
  white-space: nowrap;
}

.btn:hover {
  transform: scale(1.05);
}

.btn--primary {
  background-color: var(--primary);
  color: var(--primary-foreground);
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
}

.btn--primary:hover {
  background-color: hsl(35, 58%, 52%);
}

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

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

.btn--outline-light {
  border: 2px solid rgba(255, 255, 255, 0.2);
  color: var(--accent-foreground);
}

.btn--outline-light:hover {
  background-color: rgba(255, 255, 255, 0.1);
}

.btn--lg {
  padding: 1rem 2rem;
  font-size: 1.125rem;
}

.btn--full {
  width: 100%;
}

/* ===== Header ===== */
.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 50;
  background-color: rgba(244, 243, 241, 0.95);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid var(--border);
}

.header__container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 4rem;
}

@media (min-width: 1024px) {
  .header__container {
    height: 5rem;
  }
}

.header__logo {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  transition: opacity 0.2s;
}

.header__logo:hover {
  opacity: 0.8;
}

.header__logo-icon {
  width: 2rem;
  height: 2rem;
  background-color: var(--secondary);
}

.header__logo span {
  font-size: 1.25rem;
  font-weight: 600;
  letter-spacing: -0.02em;
}

@media (min-width: 1024px) {
  .header__logo span {
    font-size: 1.5rem;
  }
}

.header__nav {
  display: none;
  align-items: center;
  gap: 2rem;
  font-family: var(--font-sans);
  font-size: 0.875rem;
}

@media (min-width: 768px) {
  .header__nav {
    display: flex;
  }
}

.header__link {
  transition: color 0.2s;
}

.header__link:hover {
  color: var(--primary);
}

.header__phone {
  display: none;
  align-items: center;
  gap: 0.5rem;
  font-family: var(--font-sans);
  font-size: 0.875rem;
  font-weight: 600;
  transition: color 0.2s;
}

.header__phone:hover {
  color: var(--primary);
}

@media (min-width: 1024px) {
  .header__phone {
    display: flex;
  }
}

.header__burger {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 2.5rem;
  height: 2.5rem;
  padding: 0.5rem;
  border-radius: 0.375rem;
  transition: background-color 0.2s;
}

.header__burger:hover {
  background-color: var(--muted);
}

.header__burger span {
  width: 100%;
  height: 2px;
  background-color: var(--foreground);
  transition: all 0.3s;
}

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

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

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

@media (min-width: 768px) {
  .header__burger {
    display: none;
  }
}

/* Mobile Menu */
.mobile-menu {
  display: none;
  flex-direction: column;
  gap: 1rem;
  padding: 1rem;
  font-family: var(--font-sans);
  font-size: 0.875rem;
  border-top: 1px solid var(--border);
}

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

@media (min-width: 768px) {
  .mobile-menu {
    display: none !important;
  }
}

.mobile-menu__phone {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-weight: 600;
}

.mobile-menu__link {
  transition: color 0.2s;
}

.mobile-menu__link:hover {
  color: var(--primary);
}

/* ===== Hero ===== */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: var(--background);
  padding: 8rem 0 4rem;
}

@media (min-width: 1024px) {
  .hero {
    padding: 10rem 0 5rem;
  }
}

.hero__container {
  text-align: center;
}

.hero__content {
  max-width: 72rem;
  margin: 0 auto;
}

.hero__title {
  font-size: 2.75rem;
  font-weight: 700;
  letter-spacing: -0.02em;
  line-height: 1.1;
  text-wrap: balance;
  margin-bottom: 1.5rem;
}

@media (min-width: 640px) {
  .hero__title {
    font-size: 3.5rem;
  }
}

@media (min-width: 1024px) {
  .hero__title {
    font-size: 5rem;
  }
}

.hero__subtitle {
  font-family: var(--font-sans);
  font-size: 1.25rem;
  color: var(--muted-foreground);
  max-width: 48rem;
  margin: 0 auto 3rem;
}

@media (min-width: 1024px) {
  .hero__subtitle {
    font-size: 1.75rem;
  }
}

.hero__buttons {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  justify-content: center;
  align-items: center;
  margin-bottom: 3rem;
}

@media (min-width: 640px) {
  .hero__buttons {
    flex-direction: row;
    gap: 1.5rem;
  }
}

.hero__stats {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1.5rem;
  font-family: var(--font-sans);
  font-size: 1rem;
}

@media (min-width: 1024px) {
  .hero__stats {
    gap: 3rem;
    font-size: 1.125rem;
  }
}

.hero__stat {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.hero__stat-value {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--primary);
}

.hero__stat-icon {
  color: var(--primary);
}

.hero__stat-divider {
  display: none;
  color: var(--muted-foreground);
}

@media (min-width: 640px) {
  .hero__stat-divider {
    display: inline;
  }
}

/* ===== Value Proposition ===== */
.value-proposition {
  padding: 5rem 0 6rem;
  background-color: var(--accent);
  color: var(--accent-foreground);
}

@media (min-width: 1024px) {
  .value-proposition {
    padding: 8rem 0 10rem;
  }
}

.value-proposition__header {
  text-align: center;
  margin-bottom: 4rem;
}

.value-proposition__header .section-title {
  color: var(--accent-foreground);
  margin-bottom: 1.5rem;
}

.value-proposition__header .section-subtitle {
  color: rgba(255, 255, 255, 0.9);
}

.value-proposition__grid {
  display: grid;
  gap: 2rem;
  max-width: 64rem;
  margin: 0 auto 3rem;
}

@media (min-width: 768px) {
  .value-proposition__grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 2.5rem;
  }
}

.value-card {
  display: flex;
  gap: 1rem;
}

.value-card__icon {
  flex-shrink: 0;
  width: 3rem;
  height: 3rem;
  border-radius: 50%;
  background-color: rgba(255, 255, 255, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
}

.value-card__title {
  font-size: 1.25rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
}

.value-card__text {
  color: rgba(255, 255, 255, 0.9);
  line-height: 1.6;
}

.value-proposition__cta {
  text-align: center;
  padding-top: 2rem;
}

.value-proposition__note {
  margin-top: 1rem;
  font-family: var(--font-sans);
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.8);
}

/* ===== Who We Work With ===== */
.who-we-work {
  padding: 5rem 0;
  background-color: rgba(45, 46, 55, 0.1);
}

@media (min-width: 1024px) {
  .who-we-work {
    padding: 8rem 0;
  }
}

.who-we-work__header {
  text-align: center;
  margin-bottom: 4rem;
}

.who-we-work__header .section-title {
  margin-bottom: 1rem;
}

.who-we-work__list {
  max-width: 48rem;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.who-we-work__item {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  font-family: var(--font-sans);
  font-size: 1.25rem;
}

@media (min-width: 1024px) {
  .who-we-work__item {
    font-size: 1.5rem;
  }
}

.who-we-work__check {
  flex-shrink: 0;
  width: 2rem;
  height: 2rem;
  border-radius: 50%;
  background-color: rgba(201, 168, 108, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 0.25rem;
  color: var(--primary);
}

.who-we-work__cta {
  text-align: center;
  padding-top: 3rem;
}

/* ===== Services ===== */
.services {
  padding: 5rem 0;
  background-color: var(--muted);
}

@media (min-width: 1024px) {
  .services {
    padding: 8rem 0;
  }
}

.services__header {
  text-align: center;
  margin-bottom: 4rem;
}

.services__header .section-title {
  margin-bottom: 1rem;
}

.services__grid {
  display: grid;
  gap: 1.5rem;
  margin-bottom: 3rem;
}

@media (min-width: 640px) {
  .services__grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1024px) {
  .services__grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
  }
}

.service-card {
  background-color: var(--card);
  border: 1px solid var(--border);
  border-radius: 0.375rem;
  padding: 1.5rem;
  transition: all 0.3s;
}

@media (min-width: 1024px) {
  .service-card {
    padding: 2rem;
  }
}

.service-card:hover {
  border-color: var(--primary);
  box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
  transform: translateY(-4px);
}

.service-card__icon {
  width: 3rem;
  height: 3rem;
  background-color: rgba(201, 168, 108, 0.1);
  border-radius: 0.375rem;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary);
  margin-bottom: 1rem;
  transition: all 0.3s;
}

.service-card:hover .service-card__icon {
  background-color: rgba(201, 168, 108, 0.2);
  transform: scale(1.1);
}

.service-card__title {
  font-size: 1.25rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
  transition: color 0.2s;
}

@media (min-width: 1024px) {
  .service-card__title {
    font-size: 1.5rem;
  }
}

.service-card:hover .service-card__title {
  color: var(--primary);
}

.service-card__text {
  font-family: var(--font-sans);
  font-size: 0.875rem;
  color: var(--muted-foreground);
  line-height: 1.6;
}

@media (min-width: 1024px) {
  .service-card__text {
    font-size: 1rem;
  }
}

.services__cta {
  text-align: center;
}

.services__note {
  font-family: var(--font-sans);
  color: var(--muted-foreground);
  margin-bottom: 1.5rem;
}

/* ===== Portfolio ===== */
.portfolio {
  padding: 5rem 0;
  background-color: var(--background);
}

@media (min-width: 1024px) {
  .portfolio {
    padding: 8rem 0;
  }
}

.portfolio__header {
  text-align: center;
  margin-bottom: 4rem;
}

.portfolio__header .section-title {
  margin-bottom: 1rem;
}

.portfolio__grid {
  display: grid;
  gap: 2rem;
  margin-bottom: 3rem;
}

@media (min-width: 768px) {
  .portfolio__grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1024px) {
  .portfolio__grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.portfolio-card {
  cursor: pointer;
}

.portfolio-card__image {
  position: relative;
  aspect-ratio: 4 / 3;
  overflow: hidden;
  border-radius: 0.5rem;
  border: 1px solid var(--border);
  background-color: var(--muted);
  margin-bottom: 1rem;
  transition: all 0.3s;
}

.portfolio-card:hover .portfolio-card__image {
  border-color: var(--primary);
  box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
}

.portfolio-card__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.7s ease-out;
}

.portfolio-card:hover .portfolio-card__image img {
  transform: scale(1.1);
}

.portfolio-card__category {
  font-family: var(--font-sans);
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--muted-foreground);
  margin-bottom: 0.5rem;
}

.portfolio-card__title {
  font-size: 1.125rem;
  font-weight: 600;
  transition: color 0.2s;
}

@media (min-width: 1024px) {
  .portfolio-card__title {
    font-size: 1.25rem;
  }
}

.portfolio-card:hover .portfolio-card__title {
  color: var(--primary);
}

.portfolio__cta-block {
  background-color: var(--accent);
  border-radius: 0.5rem;
  padding: 3rem 2rem;
  text-align: center;
  margin-top: 4rem;
}

@media (min-width: 1024px) {
  .portfolio__cta-block {
    padding: 5rem 4rem;
  }
}

.portfolio__cta-title {
  font-size: 1.75rem;
  font-weight: 700;
  color: var(--accent-foreground);
  margin-bottom: 1rem;
  text-wrap: balance;
}

@media (min-width: 1024px) {
  .portfolio__cta-title {
    font-size: 2.25rem;
  }
}

.portfolio__cta-text {
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 2rem;
  max-width: 42rem;
  margin-left: auto;
  margin-right: auto;
}

.portfolio__cta-buttons {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  justify-content: center;
  align-items: center;
}

@media (min-width: 640px) {
  .portfolio__cta-buttons {
    flex-direction: row;
  }
}

/* ===== Concepts ===== */
.concepts {
  padding: 5rem 0;
  background-color: var(--muted);
}

@media (min-width: 1024px) {
  .concepts {
    padding: 8rem 0;
  }
}

.concepts__header {
  text-align: center;
  margin-bottom: 4rem;
}

.concepts__header .section-title {
  margin-bottom: 1rem;
}

.concepts__grid {
  display: grid;
  gap: 2rem;
  margin-bottom: 3rem;
}

@media (min-width: 768px) {
  .concepts__grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 2.5rem;
  }
}

.concept-card {
  cursor: pointer;
}

.concept-card__image {
  position: relative;
  aspect-ratio: 16 / 10;
  overflow: hidden;
  border-radius: 0.5rem;
  border: 1px solid var(--border);
  background-color: var(--background);
  margin-bottom: 1rem;
  transition: all 0.3s;
}

.concept-card:hover .concept-card__image {
  border-color: var(--primary);
  box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
}

.concept-card__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.7s ease-out;
}

.concept-card:hover .concept-card__image img {
  transform: scale(1.05);
}

.concept-card__category {
  font-family: var(--font-sans);
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--muted-foreground);
  margin-bottom: 0.5rem;
}

.concept-card__title {
  font-size: 1.25rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
  transition: color 0.2s;
}

@media (min-width: 1024px) {
  .concept-card__title {
    font-size: 1.5rem;
  }
}

.concept-card:hover .concept-card__title {
  color: var(--primary);
}

.concept-card__text {
  font-family: var(--font-sans);
  font-size: 0.875rem;
  color: var(--muted-foreground);
}

@media (min-width: 1024px) {
  .concept-card__text {
    font-size: 1rem;
  }
}

.concepts__cta-block {
  background-color: var(--accent);
  border-radius: 0.5rem;
  padding: 2.5rem 2rem;
  text-align: center;
  margin-top: 3rem;
}

@media (min-width: 1024px) {
  .concepts__cta-block {
    padding: 3.5rem 3rem;
  }
}

.concepts__cta-title {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--accent-foreground);
  margin-bottom: 0.75rem;
  text-wrap: balance;
}

@media (min-width: 1024px) {
  .concepts__cta-title {
    font-size: 1.75rem;
  }
}

.concepts__cta-text {
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 1.5rem;
  max-width: 42rem;
  margin-left: auto;
  margin-right: auto;
  font-size: 1rem;
}

/* ===== Lead Magnet ===== */
.lead-magnet {
  padding: 4rem 0 6rem;
  background-color: rgba(45, 46, 55, 0.1);
}

.lead-magnet__card {
  background-color: var(--background);
  border-radius: 1rem;
  box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
  border: 1px solid var(--border);
  padding: 2rem;
  display: grid;
  gap: 2rem;
  align-items: center;
  max-width: 64rem;
  margin: 0 auto;
}

@media (min-width: 768px) {
  .lead-magnet__card {
    grid-template-columns: 1fr 1fr;
    padding: 3rem;
  }
}

.lead-magnet__badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.5rem 1rem;
  background-color: rgba(201, 168, 108, 0.1);
  color: var(--primary);
  border-radius: 9999px;
  font-family: var(--font-sans);
  font-size: 0.875rem;
  font-weight: 600;
  margin-bottom: 1rem;
}

.lead-magnet__title {
  font-size: 1.75rem;
  font-weight: 700;
  margin-bottom: 1rem;
  text-wrap: balance;
}

@media (min-width: 768px) {
  .lead-magnet__title {
    font-size: 2rem;
  }
}

.lead-magnet__text {
  color: var(--muted-foreground);
  margin-bottom: 1.5rem;
  text-wrap: pretty;
}

.lead-magnet__list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.lead-magnet__list li {
  display: flex;
  align-items: flex-start;
  gap: 0.5rem;
  font-family: var(--font-sans);
  font-size: 0.875rem;
  color: var(--muted-foreground);
}

.lead-magnet__list svg {
  flex-shrink: 0;
  color: var(--primary);
  margin-top: 0.125rem;
}

.lead-magnet__form-wrapper {
  background-color: rgba(45, 46, 55, 0.15);
  border-radius: 0.75rem;
  padding: 1.5rem;
}

@media (min-width: 768px) {
  .lead-magnet__form-wrapper {
    padding: 2rem;
  }
}

.lead-magnet__form {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.lead-magnet__label {
  font-family: var(--font-sans);
  font-size: 0.875rem;
  font-weight: 500;
}

.lead-magnet__input {
  width: 100%;
  padding: 0.75rem 1rem;
  border: 1px solid var(--border);
  border-radius: 0.5rem;
  background-color: var(--background);
  font-size: 1rem;
  transition: all 0.2s;
}

.lead-magnet__input:focus {
  outline: none;
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(201, 168, 108, 0.2);
}

.lead-magnet__privacy {
  font-family: var(--font-sans);
  font-size: 0.75rem;
  color: var(--muted-foreground);
  text-align: center;
}

/* ===== Stats ===== */
.stats {
  padding: 4rem 0 5rem;
  background-color: var(--primary);
  color: var(--primary-foreground);
}

@media (min-width: 1024px) {
  .stats {
    padding: 5rem 0 6rem;
  }
}

.stats__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem;
  max-width: 72rem;
  margin: 0 auto;
}

@media (min-width: 1024px) {
  .stats__grid {
    grid-template-columns: repeat(4, 1fr);
    gap: 3rem;
  }
}

.stats__item {
  text-align: center;
}

.stats__icon {
  font-size: 1.75rem;
  opacity: 0.8;
  margin-bottom: 0.5rem;
}

.stats__value {
  font-size: 2.25rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
}

@media (min-width: 1024px) {
  .stats__value {
    font-size: 2.75rem;
  }
}

.stats__label {
  font-family: var(--font-sans);
  font-size: 0.875rem;
  opacity: 0.9;
}

@media (min-width: 1024px) {
  .stats__label {
    font-size: 1rem;
  }
}

/* ===== Why Us ===== */
.why-us {
  padding: 5rem 0;
  background-color: var(--background);
}

@media (min-width: 1024px) {
  .why-us {
    padding: 8rem 0;
  }
}

.why-us__header {
  text-align: center;
  margin-bottom: 4rem;
}

.why-us__header .section-title {
  margin-bottom: 1.5rem;
}

.why-us__grid {
  display: grid;
  gap: 2rem;
  max-width: 72rem;
  margin: 0 auto;
}

@media (min-width: 768px) {
  .why-us__grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

.benefit-card {
  background-color: var(--card);
  border: 1px solid var(--border);
  border-radius: 0.75rem;
  padding: 2rem;
  transition: all 0.3s;
}

.benefit-card:hover {
  border-color: var(--primary);
  box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
}

.benefit-card__icon {
  font-size: 2.25rem;
  margin-bottom: 1rem;
}

.benefit-card__title {
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 0.75rem;
}

.benefit-card__text {
  color: var(--muted-foreground);
  line-height: 1.6;
}

.why-us__cta {
  text-align: center;
  padding-top: 3rem;
}

/* ===== Process ===== */
.process {
  padding: 5rem 0;
  background-color: rgba(244, 243, 241, 0.5);
}

@media (min-width: 1024px) {
  .process {
    padding: 8rem 0;
  }
}

.process__header {
  text-align: center;
  margin-bottom: 4rem;
  max-width: 48rem;
  margin-left: auto;
  margin-right: auto;
}

.process__header .section-title {
  margin-bottom: 1rem;
}

.process__timeline {
  position: relative;
  max-width: 72rem;
  margin: 0 auto;
}

.process__line {
  display: none;
  position: absolute;
  left: 2rem;
  top: 0;
  bottom: 0;
  width: 2px;
  background-color: rgba(201, 168, 108, 0.2);
}

@media (min-width: 768px) {
  .process__line {
    display: block;
  }
}

.process__step {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin-bottom: 2.5rem;
}

@media (min-width: 768px) {
  .process__step {
    flex-direction: row;
    gap: 3rem;
  }
}

.process__number {
  font-size: 2.25rem;
  font-weight: 700;
  color: var(--primary);
  flex-shrink: 0;
}

@media (min-width: 768px) {
  .process__number {
    position: relative;
    z-index: 10;
    width: 4rem;
    height: 4rem;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: var(--primary);
    color: var(--primary-foreground);
    border-radius: 50%;
    font-size: 1.25rem;
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
  }
}

.process__card {
  flex: 1;
  background-color: var(--background);
  border: 1px solid var(--border);
  border-radius: 0.75rem;
  padding: 1.5rem;
  box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
  transition: box-shadow 0.3s;
}

@media (min-width: 768px) {
  .process__card {
    padding: 2rem;
  }
}

.process__card:hover {
  box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
}

.process__card-header {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin-bottom: 1rem;
}

@media (min-width: 640px) {
  .process__card-header {
    flex-direction: row;
    justify-content: space-between;
    align-items: flex-start;
  }
}

.process__card-title {
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
}

@media (min-width: 1024px) {
  .process__card-title {
    font-size: 1.75rem;
  }
}

.process__card-text {
  color: var(--muted-foreground);
}

@media (min-width: 1024px) {
  .process__card-text {
    font-size: 1.125rem;
  }
}

.process__duration {
  flex-shrink: 0;
  padding: 0.375rem 0.75rem;
  background-color: rgba(201, 168, 108, 0.1);
  color: var(--primary);
  border-radius: 9999px;
  font-family: var(--font-sans);
  font-size: 0.875rem;
  font-weight: 600;
  white-space: nowrap;
}

.process__deliverables {
  padding-top: 1rem;
  border-top: 1px solid var(--border);
}

.process__deliverables-title {
  font-family: var(--font-sans);
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--muted-foreground);
  margin-bottom: 0.75rem;
}

.process__deliverables ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.process__deliverables li {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-family: var(--font-sans);
  font-size: 0.875rem;
}

.process__deliverables svg {
  flex-shrink: 0;
  color: var(--primary);
}

.process__cta {
  text-align: center;
  padding-top: 3rem;
}

.process__note {
  margin-top: 1rem;
  font-family: var(--font-sans);
  font-size: 0.875rem;
  color: var(--muted-foreground);
}

/* ===== Team ===== */
.team {
  padding: 6rem 0;
  background-color: var(--background);
}

.team__header {
  text-align: center;
  margin-bottom: 4rem;
  max-width: 48rem;
  margin-left: auto;
  margin-right: auto;
}

.team__header .section-title {
  margin-bottom: 1.5rem;
}

.team__grid {
  display: grid;
  gap: 2rem;
  max-width: 84rem;
  margin: 0 auto;
}

@media (min-width: 768px) {
  .team__grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1024px) {
  .team__grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.team-card {
  background-color: rgba(244, 243, 241, 0.3);
  border: 1px solid rgba(226, 224, 219, 0.5);
  border-radius: 0.125rem;
  padding: 1.5rem;
  transition: border-color 0.3s;
}

.team-card:hover {
  border-color: rgba(201, 168, 108, 0.3);
}

.team-card__header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 1rem;
  margin-bottom: 1rem;
}

.team-card__name {
  font-family: var(--font-serif);
  font-size: 1.5rem;
  margin-bottom: 0.25rem;
}

.team-card__role {
  font-family: var(--font-sans);
  font-size: 0.875rem;
  color: var(--muted-foreground);
  font-weight: 500;
  margin-bottom: 0.25rem;
}

.team-card__business-role {
  font-family: var(--font-sans);
  font-size: 0.75rem;
  color: var(--primary);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.team-card__education {
  font-family: var(--font-sans);
  font-size: 0.75rem;
  color: var(--muted-foreground);
  margin-top: 0.25rem;
}

.team-card__experience {
  flex-shrink: 0;
  background-color: var(--background);
  border: 1px solid rgba(226, 224, 219, 0.5);
  padding: 0.375rem 0.75rem;
  border-radius: 0.125rem;
  font-family: var(--font-sans);
  font-size: 0.75rem;
  font-weight: 500;
}

.team-card__quote {
  font-style: italic;
  font-size: 0.875rem;
  color: var(--muted-foreground);
  border-left: 2px solid var(--primary);
  padding-left: 1rem;
  padding-top: 0.25rem;
  padding-bottom: 0.25rem;
  margin-bottom: 1rem;
}

.team-card__description {
  font-family: var(--font-sans);
  font-size: 0.875rem;
  color: var(--muted-foreground);
  line-height: 1.6;
  margin-bottom: 1rem;
}

.team-card__achievements {
  display: flex;
  flex-direction: column;
  gap: 0.375rem;
}

.team-card__achievement {
  display: flex;
  align-items: flex-start;
  gap: 0.5rem;
  font-family: var(--font-sans);
  font-size: 0.75rem;
  color: var(--muted-foreground);
}

.team-card__achievement svg {
  flex-shrink: 0;
  color: var(--primary);
  margin-top: 0.125rem;
}

.team__cta {
  text-align: center;
  margin-top: 5rem;
}

.team__link {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  font-size: 1.125rem;
  font-weight: 500;
  transition: color 0.2s;
}

.team__link:hover {
  color: var(--primary);
}

.team__link svg {
  transition: transform 0.2s;
}

.team__link:hover svg {
  transform: translateX(4px);
}

/* ===== Contact Form ===== */
.contact {
  padding: 5rem 0;
  background-color: var(--background);
}

@media (min-width: 1024px) {
  .contact {
    padding: 8rem 0;
  }
}

.contact__header {
  text-align: center;
  margin-bottom: 3rem;
}

.contact__header .section-title {
  margin-bottom: 1rem;
}

.contact__form {
  max-width: 56rem;
  margin: 0 auto;
  background-color: var(--card);
  border: 1px solid var(--border);
  border-radius: 0.5rem;
  padding: 2rem;
}

@media (min-width: 1024px) {
  .contact__form {
    padding: 3rem;
  }
}

.contact__row {
  display: grid;
  gap: 1.5rem;
  margin-bottom: 1.5rem;
}

@media (min-width: 768px) {
  .contact__row {
    grid-template-columns: repeat(2, 1fr);
  }
}

.contact__row--three {
  grid-template-columns: 1fr;
}

@media (min-width: 768px) {
  .contact__row--three {
    grid-template-columns: repeat(3, 1fr);
  }
}

.contact__field {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  margin-bottom: 1.5rem;
}

.contact__field label {
  font-family: var(--font-sans);
  font-size: 0.875rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.contact__field input,
.contact__field select,
.contact__field textarea {
  width: 100%;
  padding: 0.75rem;
  border: 1px solid var(--input);
  border-radius: 0.375rem;
  background-color: var(--background);
  font-size: 1rem;
  transition: all 0.2s;
}

.contact__field input:focus,
.contact__field select:focus,
.contact__field textarea:focus {
  outline: none;
  border-color: var(--ring);
  box-shadow: 0 0 0 3px rgba(201, 168, 108, 0.2);
}

.contact__field textarea {
  resize: none;
}

.contact__privacy {
  margin-top: 1.5rem;
  font-family: var(--font-sans);
  font-size: 0.75rem;
  color: var(--muted-foreground);
  text-align: center;
}

.contact__privacy a {
  text-decoration: underline;
  transition: color 0.2s;
}

.contact__privacy a:hover {
  color: var(--foreground);
}

/* ===== Footer ===== */
.footer {
  background-color: var(--secondary);
  color: var(--secondary-foreground);
  padding: 3rem 0 4rem;
}

@media (min-width: 1024px) {
  .footer {
    padding: 4rem 0 5rem;
  }
}

.footer__grid {
  display: grid;
  gap: 3rem;
  margin-bottom: 3rem;
}

@media (min-width: 768px) {
  .footer__grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

.footer__logo {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 1rem;
}

.footer__logo-icon {
  width: 2rem;
  height: 2rem;
  background-color: var(--secondary-foreground);
}

.footer__logo span {
  font-size: 1.25rem;
  font-weight: 600;
  letter-spacing: -0.02em;
}

.footer__description {
  font-family: var(--font-sans);
  font-size: 0.875rem;
  opacity: 0.8;
  line-height: 1.6;
}

.footer__title {
  font-size: 1.125rem;
  font-weight: 600;
  margin-bottom: 1rem;
}

.footer__contact-item {
  display: flex;
  align-items: flex-start;
  gap: 0.5rem;
  font-family: var(--font-sans);
  font-size: 0.875rem;
  opacity: 0.8;
  margin-bottom: 0.75rem;
}

.footer__contact-item svg {
  flex-shrink: 0;
  margin-top: 0.25rem;
}

.footer__contact-item p {
  line-height: 1.6;
}

.footer__contact-item a {
  display: block;
  transition: color 0.2s;
}

.footer__contact-item a:hover {
  color: var(--primary);
}

.footer__contact-item span {
  display: block;
  font-size: 0.75rem;
  opacity: 0.6;
}

.footer__bottom {
  padding-top: 2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.2);
  display: flex;
  flex-direction: column;
  gap: 1rem;
  font-family: var(--font-sans);
  font-size: 0.875rem;
  opacity: 0.6;
}

@media (min-width: 768px) {
  .footer__bottom {
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
  }
}

.footer__links {
  display: flex;
  gap: 1.5rem;
}

.footer__links a {
  transition: opacity 0.2s;
}

.footer__links a:hover {
  opacity: 1;
}

/* ===== Sticky CTA ===== */
.sticky-cta {
  position: fixed;
  bottom: 1rem;
  right: 1rem;
  z-index: 40;
  opacity: 0;
  visibility: hidden;
  transform: translateY(1rem);
  transition: all 0.3s;
}

.sticky-cta.visible {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

@media (min-width: 1024px) {
  .sticky-cta {
    bottom: 2rem;
    right: 2rem;
  }
}

/* ===== Animations ===== */
@keyframes fade-in {
  from {
    opacity: 0;
    transform: translateY(1rem);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.animate-fade-in {
  animation: fade-in 0.5s ease-out forwards;
  opacity: 0;
}

/* ===== Utility ===== */
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}
