/* Полностью переписываю CSS для точного соответствия React дизайну */
/* Reset */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

.btn-primary{
    text-decoration: none;
}

/* Fonts and Variables */
:root {
  --font-sans: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --font-serif: "Instrument Serif", Georgia, serif;
  --bg: #f7f5f3;
  --text-primary: #37322f;
  --text-secondary: rgba(55, 50, 47, 0.8);
  --text-muted: rgba(55, 50, 47, 0.7);
  --border: rgba(55, 50, 47, 0.12);
  --border-light: rgba(55, 50, 47, 0.06);
}

body {
  font-family: var(--font-sans);
  background: var(--bg);
  color: var(--text-primary);
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
}

/* Page Layout */
.page-wrapper {
  width: 100%;
  min-height: 100vh;
  background: var(--bg);
  overflow-x: hidden;
}

.page-container {
  width: 100%;
  max-width: 1160px;
  margin: 0 auto;
  position: relative;
  padding: 0 16px;
}

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

/* Vertical Lines */
.vertical-line {
  position: absolute;
  width: 1px;
  height: 100%;
  background: var(--border);
  box-shadow: 1px 0 0 white;
  z-index: 0;
}

.vertical-line-left {
  left: 16px;
}

.vertical-line-right {
  right: 16px;
}

@media (min-width: 1024px) {
  .vertical-line-left {
    left: 0;
  }
  .vertical-line-right {
    right: 0;
  }
}

.content-wrapper {
  position: relative;
  z-index: 10;
}

/* Navigation */
.nav-container {
  height: 84px;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 24px;
  border-bottom: 1px solid var(--border-light);
}

.nav-line {
  position: absolute;
  left: 0;
  top: 42px;
  width: 100%;
  height: 0;
  border-top: 1px solid var(--border);
  box-shadow: 0 1px 0 white;
}

.nav {
  width: 100%;
  max-width: 700px;
  height: 48px;
  background: var(--bg);
  backdrop-filter: blur(8px);
  box-shadow: 0 0 0 2px white;
  border-radius: 50px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 6px 8px 6px 16px;
  position: relative;
  z-index: 30;
}

.nav-content {
  display: flex;
  align-items: center;
  gap: 20px;
}

.nav-brand {
  font-size: 20px;
  font-weight: 500;
  color: #2f3037;
}

.nav-links {
  display: none;
  gap: 16px;
}

@media (min-width: 640px) {
  .nav-links {
    display: flex;
  }
}

.nav-links a {
  font-size: 13px;
  font-weight: 500;
  color: rgba(49, 45, 43, 0.8);
  text-decoration: none;
  transition: color 0.2s;
}

.nav-links a:hover {
  color: var(--text-primary);
}

.nav-cta {
  display: flex;
  gap: 12px;
}

.btn-call {
  padding: 6px 14px;
  background: white;
  box-shadow: 0 1px 2px rgba(55, 50, 47, 0.12);
  border: none;
  border-radius: 50px;
  font-size: 13px;
  font-weight: 500;
  color: var(--text-primary);
  cursor: pointer;
  transition: all 0.2s;
}

.btn-call:hover {
  box-shadow: 0 2px 4px rgba(55, 50, 47, 0.16);
}

/* Hero Section */
.hero-section {
  padding-top: 216px;
  padding-bottom: 64px;
  display: flex;
  flex-direction: column;
  align-items: center;
  position: relative;
}

@media (max-width: 962px){
  .hero-section{
    padding-top: 100px;
  }
}

.hero-content {
  width: 100%;
  max-width: 937px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 24px;
  text-align: center;
}

.hero-title {
  font-family: var(--font-serif);
  font-size: 80px;
  font-weight: 400;
  line-height: 1.2;
  color: var(--text-primary);
  margin: 0;
}

@media (max-width: 768px) {
  .hero-title {
    font-size: 52px;
  }
}

@media (max-width: 480px) {
  .hero-title {
    font-size: 36px;
  }
}

.hero-subtitle {
  max-width: 506px;
  font-size: 18px;
  font-weight: 500;
  line-height: 1.5;
  color: var(--text-secondary);
}

@media (max-width: 768px) {
  .hero-subtitle {
    font-size: 16px;
  }
}

.hero-cta {
  margin-top: 48px;
  display: flex;
  justify-content: center;
}

.btn-primary {
  height: 48px;
  padding: 6px 48px;
  background: #37322f;
  box-shadow: 0 0 0 2.5px rgba(255, 255, 255, 0.08) inset;
  border: none;
  border-radius: 50px;
  font-size: 15px;
  font-weight: 500;
  color: white;
  cursor: pointer;
  position: relative;
  overflow: hidden;
  transition: all 0.2s;
}

.btn-primary::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 176px;
  height: 41px;
  background: linear-gradient(to bottom, rgba(255, 255, 255, 0), rgba(0, 0, 0, 0.1));
  mix-blend-mode: multiply;
}

.btn-primary:hover {
  background: #2a2520;
}

/* Hero Pattern */
.hero-pattern {
  position: absolute;
  top: 320px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 0;
  pointer-events: none;
}

.pattern-image {
  width: 2808px;
  height: auto;
  opacity: 0.5;
  mix-blend-mode: multiply;
  filter: hue-rotate(15deg) saturate(0.7) brightness(1.2);
}

/* Dashboard Preview */
.dashboard-preview {
  width: 100%;
  max-width: 960px;
  margin: 64px 0 0;
  position: relative;
  z-index: 5;
}

.dashboard-container {
  width: 100%;
  height: 695.55px;
  background: white;
  box-shadow: 0 0 0 0.906px rgba(0, 0, 0, 0.08);
  border-radius: 9.06px;
  overflow: hidden;
}

@media (max-width: 768px) {
  .dashboard-container {
    height: 450px;
  }
}

@media (max-width: 480px) {
  .dashboard-container {
    height: 280px;
  }
}

.dashboard-image {
  width: 100%;
  height: 100%;
  position: relative;
}

.dashboard-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0;
  transition: opacity 0.5s ease-in-out;
}

.dashboard-img.active {
  opacity: 1;
}

/* Feature Cards */
.feature-cards-container {
  width: 100%;
  border-top: 1px solid #e0dedb;
  border-bottom: 1px solid #e0dedb;
  display: flex;
  align-items: stretch;
  margin-top: 0;
}

.pattern-left,
.pattern-right {
  width: 48px;
  position: relative;
  overflow: hidden;
}

.pattern-left::before,
.pattern-right::before {
  content: "";
  position: absolute;
  width: 162px;
  left: -58px;
  top: -120px;
  height: 2000px;
  background: repeating-linear-gradient(
    -45deg,
    transparent,
    transparent 12px,
    rgba(3, 7, 18, 0.08) 12px,
    rgba(3, 7, 18, 0.08) 13px
  );
}

.feature-cards {
  flex: 1;
  display: flex;
  flex-direction: column;
}

@media (min-width: 768px) {
  .feature-cards {
    flex-direction: row;
  }
}

.feature-card {
  flex: 1;
  padding: 20px 24px;
  border-bottom: 1px solid #e0dedb;
  cursor: pointer;
  position: relative;
  transition: all 0.3s;
}

@media (min-width: 768px) {
  .feature-card {
    border-bottom: none;
    border-right: 1px solid rgba(224, 222, 219, 0.8);
  }
  .feature-card:last-child {
    border-right: none;
  }
}

.feature-card.active {
  background: white;
  box-shadow: 0 0 0 0.75px #e0dedb inset;
}

.feature-progress {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 2px;
  background: rgba(50, 45, 43, 0.08);
  opacity: 0;
}

.feature-card.active .feature-progress {
  opacity: 1;
}

.feature-progress::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 0;
  background: #322d2b;
  animation: progress 5s linear forwards;
}

@keyframes progress {
  to {
    width: 100%;
  }
}

.feature-content h3 {
  font-size: 14px;
  font-weight: 600;
  line-height: 1.4;
  color: #49423d;
  margin-bottom: 8px;
}

.feature-content p {
  font-size: 13px;
  font-weight: 400;
  line-height: 1.7;
  color: #605a57;
  margin: 0;
}

/* Social Proof */
.social-proof {
  width: 100%;
  border-bottom: 1px solid var(--border);
  padding: 64px 0;
}

.social-proof-header {
  max-width: 586px;
  margin: 0 auto;
  text-align: center;
  padding: 20px 24px;
}

.badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 14px;
  background: white;
  box-shadow: 0 0 0 4px rgba(55, 50, 47, 0.05);
  border: 1px solid rgba(2, 6, 23, 0.08);
  border-radius: 90px;
  font-size: 12px;
  font-weight: 500;
  color: var(--text-primary);
  margin-bottom: 16px;
}

.badge svg {
  width: 14px;
  height: 14px;
}

.social-proof-header h2 {
  font-size: 48px;
  font-weight: 600;
  line-height: 1.25;
  color: #49423d;
  margin-bottom: 16px;
  letter-spacing: -0.02em;
}

@media (max-width: 768px) {
  .social-proof-header h2 {
    font-size: 32px;
  }
}

.social-proof-header p {
  font-size: 16px;
  line-height: 1.75;
  color: #605a57;
  margin: 0;
}

/* Logo Grid */
.logo-grid-container {
  width: 100%;
  border-top: 1px solid var(--border);
  display: flex;
  margin-top: 64px;
}

.logo-grid {
  flex: 1;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  border-left: 1px solid var(--border);
  border-right: 1px solid var(--border);
}

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

.logo-item {
  height: 160px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 12px;
  border-bottom: 1px solid #e3e2e1;
  border-right: 0.5px solid #e3e2e1;
}

@media (min-width: 768px) {
  .logo-item:nth-child(4n) {
    border-right: 1px solid #e3e2e1;
  }
}

.logo-item svg {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  box-shadow: 0 -4px 8px rgba(255, 255, 255, 0.64) inset;
}

.logo-item span {
  font-size: 18px;
  font-weight: 500;
  color: var(--text-primary);
  text-align: center;
}

/* Services Section */
.services-section {
  width: 100%;
  border-bottom: 1px solid var(--border);
  padding: 64px 0;
}

.services-header {
  max-width: 616px;
  margin: 0 auto;
  text-align: center;
  padding: 20px 24px;
  margin-bottom: 64px;
}

.services-header h2 {
  font-size: 48px;
  font-weight: 600;
  line-height: 1.25;
  color: #49423d;
  margin-bottom: 16px;
  letter-spacing: -0.02em;
}

@media (max-width: 768px) {
  .services-header h2 {
    font-size: 32px;
  }
}

.services-header p {
  font-size: 16px;
  line-height: 1.75;
  color: #605a57;
}

/* Bento Grid */
.bento-grid-container {
  width: 100%;
  display: flex;
}

.bento-grid {
  flex: 1;
  display: grid;
  grid-template-columns: 1fr;
  gap: 0;
  border-left: 1px solid var(--border);
  border-right: 1px solid var(--border);
}

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

.bento-item {
  padding: 48px;
  border-bottom: 1px solid var(--border);
  display: flex;
  flex-direction: column;
  gap: 24px;
}

@media (min-width: 768px) {
  .bento-item:nth-child(odd) {
    border-right: 1px solid var(--border);
  }
}

.bento-item h3 {
  font-size: 20px;
  font-weight: 600;
  line-height: 1.3;
  color: var(--text-primary);
  margin: 0;
}

.bento-item p {
  font-size: 16px;
  line-height: 1.6;
  color: #605a57;
  margin: 0;
}

.bento-visual {
  width: 100%;
  height: 300px;
  background: linear-gradient(135deg, #f0f9ff 0%, #e0f2fe 100%);
  border-radius: 8px;
  display: none;
}

/* Pricing Section */
.pricing-section {
  width: 100%;
  border-bottom: 1px solid var(--border);
  padding: 64px 24px;
}

.pricing-header {
  max-width: 616px;
  margin: 0 auto 64px;
  text-align: center;
}

.pricing-header h2 {
  font-size: 48px;
  font-weight: 600;
  line-height: 1.25;
  color: #49423d;
  margin-bottom: 16px;
  letter-spacing: -0.02em;
}

@media (max-width: 768px) {
  .pricing-header h2 {
    font-size: 32px;
  }
}

.pricing-header p {
  font-size: 16px;
  line-height: 1.75;
}

.pricing-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 32px;
  max-width: 1200px;
  margin: 0 auto;
}

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

.pricing-card {
  padding: 40px 32px;
  background: white;
  border: 2px solid rgba(2, 6, 23, 0.08);
  border-radius: 12px;
  display: flex;
  flex-direction: column;
  position: relative;
  transition: all 0.3s;
}

.pricing-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.08);
}

.pricing-card.featured {
  border-color: #37322f;
  background: linear-gradient(135deg, #f9f8f7 0%, white 100%);
}

.pricing-badge {
  position: absolute;
  top: 16px;
  right: 16px;
  padding: 4px 12px;
  background: #37322f;
  color: white;
  font-size: 12px;
  font-weight: 600;
  border-radius: 50px;
}

.pricing-icon {
  width: 64px;
  height: 64px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, #5d4e37 0%, #3d2e17 100%);
  color: white;
  border-radius: 12px;
  margin-bottom: 24px;
}

.pricing-card h3 {
  font-size: 24px;
  font-weight: 600;
  color: var(--text-primary);
  margin-bottom: 12px;
}

.pricing-card > p {
  font-size: 15px;
  line-height: 1.6;
  color: #605a57;
  margin-bottom: 24px;
  flex-grow: 1;
}

.pricing-price {
  display: flex;
  align-items: baseline;
  gap: 8px;
  margin-bottom: 24px;
  padding-top: 24px;
  border-top: 1px solid rgba(2, 6, 23, 0.08);
}

.pricing-price .price {
  font-size: 36px;
  font-weight: 700;
  color: #37322f;
}

.pricing-price .period {
  font-size: 14px;
  color: #605a57;
}

.pricing-features {
  list-style: none;
  margin-bottom: 32px;
}

.pricing-features li {
  padding: 8px 0;
  font-size: 14px;
  color: #605a57;
  position: relative;
  padding-left: 24px;
}

.pricing-features li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: #10b981;
  font-weight: 600;
}

.btn-outline {
  width: 100%;
  padding: 12px 24px;
  background: transparent;
  border: 2px solid #37322f;
  border-radius: 8px;
  font-size: 15px;
  font-weight: 600;
  color: #37322f;
  cursor: pointer;
  transition: all 0.2s;
}

.btn-outline:hover {
  background: #37322f;
  color: white;
}

.pricing-card.featured .btn-primary {
  width: 100%;
}

/* Documentation Section */
.documentation-section {
  width: 100%;
  border-bottom: 1px solid var(--border);
}

.documentation-header {
  max-width: 586px;
  margin: 0 auto;
  text-align: center;
  padding: 64px 24px;
  border-bottom: 1px solid var(--border);
}

.documentation-header h2 {
  font-size: 48px;
  font-weight: 600;
  line-height: 1.25;
  color: #49423d;
  margin-bottom: 16px;
  letter-spacing: -0.02em;
}

@media (max-width: 768px) {
  .documentation-header h2 {
    font-size: 32px;
  }
}

.documentation-header p {
  font-size: 16px;
  line-height: 1.75;
  color: #605a57;
}

.documentation-content {
  display: flex;
  flex-direction: column;
  padding: 44px 36px;
  gap: 48px;
}

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

.documentation-cards {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 16px;
  max-width: 400px;
}

.documentation-card {
  width: 100%;
  border: 1px solid rgba(2, 6, 23, 0.08);
  cursor: pointer;
  position: relative;
  transition: all 0.3s;
}

.documentation-card.active {
  background: white;
  box-shadow: 0 0 0 0.75px #e0dedb inset;
  border-color: transparent;
}

.documentation-progress {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 2px;
  background: rgba(50, 45, 43, 0.08);
  opacity: 0;
}

.documentation-card.active .documentation-progress {
  opacity: 1;
}

.documentation-progress::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 0;
  background: #322d2b;
  animation: docProgress 5s linear forwards;
}

@keyframes docProgress {
  to {
    width: 100%;
  }
}

.documentation-card-content {
  padding: 20px 24px;
}

.documentation-card h3 {
  font-size: 14px;
  font-weight: 600;
  line-height: 1.4;
  color: #49423d;
  margin-bottom: 8px;
}

.documentation-card p {
  font-size: 13px;
  line-height: 1.7;
  color: #605a57;
  margin: 0;
  white-space: pre-line;
}

.documentation-visual {
  flex: 1;
  width: 100%;
  max-width: 580px;
  height: 420px;
  position: relative;
  border-radius: 8px;
  overflow: hidden;
}

@media (max-width: 768px) {
  .documentation-visual {
    height: 250px;
  }
}

.documentation-image {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  background: white;
  box-shadow: 0 0 0 0.906px rgba(0, 0, 0, 0.08);
  border-radius: 8px;
  opacity: 0;
  transition: opacity 0.3s ease-in-out;
}

.documentation-image img{
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.documentation-image[data-visual-index="0"] {
  background: linear-gradient(135deg, #dbeafe 0%, #bfdbfe 100%);
}

.documentation-image[data-visual-index="1"] {
  background: linear-gradient(135deg, #e9d5ff 0%, #d8b4fe 100%);
}

.documentation-image[data-visual-index="2"] {
  background: linear-gradient(135deg, #d1fae5 0%, #a7f3d0 100%);
}

.documentation-image.active {
  opacity: 1;
}

/* Testimonials Section */
.testimonials-section {
  width: 100%;
  border-bottom: 1px solid var(--border);
  padding: 68px 0;
  display: none;
}

.testimonials-content {
  display: flex;
  flex-direction: column;
  gap: 24px;
  padding: 0 48px;
  align-items: center;
}

@media (min-width: 768px) {
  .testimonials-content {
    flex-direction: row;
    gap: 48px;
  }
}

.testimonial-image-wrapper {
  width: 192px;
  height: 200px;
  position: relative;
  flex-shrink: 0;
}

.testimonial-image {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 8px;
  opacity: 0;
  transform: scale(0.95);
  transition: opacity 0.7s ease-in-out, transform 0.7s ease-in-out;
}

.testimonial-image.active {
  opacity: 1;
  transform: scale(1);
}

.testimonial-text {
  flex: 1;
  position: relative;
  min-height: 210px;
}

.testimonial-quote {
  position: absolute;
  inset: 0;
  opacity: 0;
  filter: blur(4px);
  transition: opacity 0.7s ease-in-out, filter 0.7s ease-in-out;
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.testimonial-quote.active {
  opacity: 1;
  filter: blur(0);
}

.quote-text {
  font-size: 32px;
  font-weight: 500;
  line-height: 1.3;
  color: #49423d;
  margin: 0;
  letter-spacing: -0.01em;
}

@media (max-width: 768px) {
  .quote-text {
    font-size: 24px;
  }
}

.quote-author {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.author-name {
  font-size: 18px;
  font-weight: 500;
  line-height: 1.4;
  color: rgba(73, 66, 61, 0.9);
}

.author-company {
  font-size: 18px;
  font-weight: 500;
  line-height: 1.4;
  color: rgba(73, 66, 61, 0.7);
}

.testimonial-navigation {
  display: flex;
  gap: 14px;
  align-items: center;
}

.testimonial-nav-btn {
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: white;
  border: 1px solid rgba(0, 0, 0, 0.15);
  border-radius: 50%;
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.08);
  cursor: pointer;
  transition: all 0.2s;
}

.testimonial-nav-btn:hover {
  background: #f9f8f7;
}

/* FAQ Section */
.faq-section {
  width: 100%;
  border-bottom: 1px solid var(--border);
  padding: 64px 24px;
}

.faq-header {
  max-width: 616px;
  margin: 0 auto 64px;
  text-align: center;
}

.faq-header h2 {
  font-size: 48px;
  font-weight: 600;
  line-height: 1.25;
  color: #49423d;
  margin-bottom: 16px;
  letter-spacing: -0.02em;
}

@media (max-width: 768px) {
  .faq-header h2 {
    font-size: 32px;
  }
}

.faq-header p {
  font-size: 16px;
  line-height: 1.75;
  color: #605a57;
}

.faq-list {
  max-width: 800px;
  margin: 0 auto;
}

.faq-item {
  border-bottom: 1px solid rgba(2, 6, 23, 0.08);
}

.faq-question {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 24px 0;
  background: none;
  border: none;
  font-size: 18px;
  font-weight: 600;
  color: var(--text-primary);
  text-align: left;
  cursor: pointer;
  transition: color 0.2s;
}

.faq-question:hover {
  color: #5d4e37;
}

.faq-question svg {
  flex-shrink: 0;
  transition: transform 0.3s;
}

.faq-item.active .faq-question svg {
  transform: rotate(180deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
}

.faq-item.active .faq-answer {
  max-height: 500px;
}

.faq-answer p {
  padding-bottom: 24px;
  font-size: 16px;
  line-height: 1.75;
  color: #605a57;
}

/* CTA Section */
.cta-section {
  width: 100%;
  padding: 96px 24px;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  position: relative;
  overflow: hidden;
}

.cta-pattern {
  position: absolute;
  inset: 0;
  background: repeating-linear-gradient(
    -45deg,
    transparent,
    transparent 12px,
    rgba(3, 7, 18, 0.08) 12px,
    rgba(3, 7, 18, 0.08) 13px
  );
}

.cta-content {
  max-width: 586px;
  margin: 0 auto;
  text-align: center;
  position: relative;
  z-index: 10;
}

.cta-content h2 {
  font-size: 48px;
  font-weight: 600;
  line-height: 1.2;
  color: #49423d;
  margin-bottom: 16px;
  letter-spacing: -0.02em;
}

@media (max-width: 768px) {
  .cta-content h2 {
    font-size: 32px;
  }
}

.cta-content p {
  font-size: 16px;
  font-weight: 500;
  line-height: 1.75;
  color: #605a57;
  margin-bottom: 48px;
}

.btn-large {
  padding: 12px 48px;
  font-size: 16px;
}

/* Footer */
.footer {
  padding: 40px 0 0;
}

.footer-content {
  display: grid;
  grid-template-columns: 1fr;
  gap: 32px;
  padding: 32px 24px 64px;
}

@media (min-width: 768px) {
  .footer-content {
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 48px;
  }
}

.footer-brand {
  font-size: 20px;
  font-weight: 600;
  color: #49423d;
  margin-bottom: 16px;
}

.footer-column p {
  font-size: 14px;
  font-weight: 500;
  color: rgba(73, 66, 61, 0.9);
  margin-bottom: 16px;
}

.footer-social {
  display: flex;
  gap: 16px;
}

.footer-social a {
  width: 32px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #49423d;
  transition: color 0.2s;
}

.footer-social a:hover {
  color: #37322f;
}

.footer-column h4 {
  font-size: 14px;
  font-weight: 500;
  color: rgba(73, 66, 61, 0.5);
  margin-bottom: 16px;
}

.footer-column ul {
  list-style: none;
}

.footer-column ul li {
  margin-bottom: 12px;
}

.footer-column a {
  font-size: 14px;
  color: #49423d;
  text-decoration: none;
  transition: color 0.2s;
}

.footer-column a:hover {
  color: #37322f;
}

.footer-pattern {
  width: 100%;
  height: 48px;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  position: relative;
  overflow: hidden;
}

.footer-pattern::before {
  content: "";
  position: absolute;
  inset: 0;
  background: repeating-linear-gradient(
    -45deg,
    transparent,
    transparent 12px,
    rgba(3, 7, 18, 0.08) 12px,
    rgba(3, 7, 18, 0.08) 13px
  );
}
