/* ==========================================
   CUSTOM VARIABLES & CONFIGURATION
   ========================================== */
:root {
  /* Color Palette - Inspired by reference design */
  --color-cream: #f5f1e8;
  --color-charcoal: #2a2a2a;
  --color-dark-bg: #1a1a1a;
  --color-accent: #4a90e2;
  --color-accent-hover: #357abd;
  --color-light-gray: #e8e8e8;
  --color-mid-gray: #9a9a9a;
  --color-success: #22c55e;
  --color-error: #ef4444;

  /* Typography */
  --font-heading: "Playfair Display", serif;
  --font-body: "Inter", sans-serif;

  /* Spacing */
  --container-max: 1280px;
  --spacing-section: 120px;

  /* Effects */
  --shadow-soft: 0 4px 24px rgba(0, 0, 0, 0.06);
  --shadow-medium: 0 8px 32px rgba(0, 0, 0, 0.1);
  --shadow-hard: 0 12px 48px rgba(0, 0, 0, 0.15);
  --transition-smooth: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-fast: all 0.2s ease;
}

/* ==========================================
   BASE STYLES & RESETS
   ========================================== */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: var(--font-body);
  background-color: var(--color-cream);
  color: var(--color-charcoal);
  line-height: 1.6;
  overflow-x: hidden;
}

.font-inter {
  font-family: var(--font-body);
}

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

/* ==========================================
   UTILITY CLASSES
   ========================================== */
.container-custom {
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 2rem;
}

/* ==========================================
   COOKIE POPUP
   ========================================== */
.cookie-popup {
  position: fixed;
  bottom: 2rem;
  left: 2rem;
  right: 2rem;
  max-width: 500px;
  background: white;
  border-radius: 16px;
  box-shadow: var(--shadow-hard);
  padding: 1.5rem;
  z-index: 9999;
  opacity: 0;
  transform: translateY(20px);
  transition: var(--transition-smooth);
  pointer-events: none;
}

.cookie-popup.active {
  opacity: 1;
  transform: translateY(0);
  pointer-events: all;
}

.cookie-content {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.cookie-text {
  font-size: 0.9rem;
  color: var(--color-charcoal);
  line-height: 1.5;
}

.cookie-link {
  color: var(--color-accent);
  text-decoration: underline;
  transition: var(--transition-fast);
}

.cookie-link:hover {
  color: var(--color-accent-hover);
}

.cookie-btn {
  background: var(--color-charcoal);
  color: white;
  border: none;
  padding: 0.75rem 1.5rem;
  border-radius: 8px;
  font-weight: 600;
  cursor: pointer;
  transition: var(--transition-fast);
}

.cookie-btn:hover {
  background: var(--color-accent);
  transform: translateY(-2px);
}

/* ==========================================
   HEADER
   ========================================== */
.header-main {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  background: rgba(245, 241, 232, 0.95);
  backdrop-filter: blur(12px);
  z-index: 1000;
  padding: 1.5rem 0;
  border-bottom: 1px solid rgba(42, 42, 42, 0.08);
  transition: var(--transition-smooth);
}

.header-main.scrolled {
  padding: 1rem 0;
  box-shadow: var(--shadow-soft);
}

.header-wrapper {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
}

.logo-text {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--color-charcoal);
  text-decoration: none;
  letter-spacing: -0.02em;
  transition: var(--transition-fast);
}

.logo-text:hover {
  color: var(--color-accent);
}

.nav-desktop {
  display: flex;
  gap: 2rem;
  align-items: center;
}

.nav-link {
  color: var(--color-charcoal);
  text-decoration: none;
  font-weight: 500;
  font-size: 0.95rem;
  position: relative;
  transition: var(--transition-fast);
}

.nav-link::after {
  content: "";
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--color-accent);
  transition: var(--transition-smooth);
}

.nav-link:hover {
  color: var(--color-accent);
}

.nav-link:hover::after {
  width: 100%;
}

.btn-primary {
  background: var(--color-charcoal);
  color: white;
  padding: 0.75rem 1.75rem;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 600;
  font-size: 0.9rem;
  transition: var(--transition-smooth);
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
}

.btn-primary:hover {
  background: var(--color-accent);
  transform: translateY(-2px);
  box-shadow: var(--shadow-medium);
}

.burger-menu {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0.5rem;
}

.burger-line {
  width: 26px;
  height: 2px;
  background: var(--color-charcoal);
  transition: var(--transition-smooth);
}

.mobile-menu {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: var(--color-cream);
  padding: 6rem 2rem 2rem;
  opacity: 0;
  pointer-events: none;
  transition: var(--transition-smooth);
  z-index: 999;
}

.mobile-menu.active {
  opacity: 1;
  pointer-events: all;
}

.mobile-menu-content {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.mobile-link {
  color: var(--color-charcoal);
  text-decoration: none;
  font-size: 1.5rem;
  font-weight: 600;
  font-family: var(--font-heading);
  transition: var(--transition-fast);
}

.mobile-link:hover {
  color: var(--color-accent);
  transform: translateX(8px);
}

/* ==========================================
   HERO SECTION
   ========================================== */
.hero-section {
  padding: 140px 0 var(--spacing-section);
  position: relative;
  overflow: hidden;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.hero-visual {
  position: relative;
}

.hero-shape-container {
  position: relative;
}

.organic-shape {
  position: absolute;
  top: -40px;
  right: -40px;
  width: 420px;
  height: 420px;
  background: linear-gradient(135deg, rgba(74, 144, 226, 0.1) 0%, rgba(74, 144, 226, 0.05) 100%);
  border-radius: 45% 55% 52% 48% / 48% 45% 55% 52%;
  animation: morphShape 20s ease-in-out infinite;
  z-index: 1;
}

@keyframes morphShape {
  0%,
  100% {
    border-radius: 45% 55% 52% 48% / 48% 45% 55% 52%;
    transform: rotate(0deg) scale(1);
  }
  25% {
    border-radius: 55% 45% 48% 52% / 52% 55% 45% 48%;
    transform: rotate(90deg) scale(1.05);
  }
  50% {
    border-radius: 48% 52% 55% 45% / 45% 48% 52% 55%;
    transform: rotate(180deg) scale(1);
  }
  75% {
    border-radius: 52% 48% 45% 55% / 55% 52% 48% 45%;
    transform: rotate(270deg) scale(1.05);
  }
}

.hero-image-wrapper {
  position: relative;
  z-index: 2;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: var(--shadow-hard);
}

.hero-main-image {
  width: 100%;
  height: auto;
  display: block;
  transition: var(--transition-smooth);
}

.hero-main-image:hover {
  transform: scale(1.02);
}

.floating-badge {
  position: absolute;
  background: white;
  padding: 1rem 1.5rem;
  border-radius: 12px;
  box-shadow: var(--shadow-medium);
  display: flex;
  align-items: center;
  gap: 0.75rem;
  z-index: 3;
  animation: floatBadge 3s ease-in-out infinite;
}

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

.badge-1 {
  top: 20px;
  left: -20px;
  animation-delay: 0s;
}

.badge-2 {
  bottom: 40px;
  right: -30px;
  animation-delay: 1.5s;
}

.badge-icon {
  width: 24px;
  height: 24px;
  color: var(--color-accent);
}

.floating-badge span {
  font-weight: 600;
  font-size: 0.9rem;
  color: var(--color-charcoal);
}

.hero-content {
  position: relative;
}

.hero-title {
  font-family: var(--font-heading);
  font-size: 4rem;
  line-height: 1.1;
  margin-bottom: 2rem;
  letter-spacing: -0.03em;
}

.title-line {
  display: block;
  animation: fadeInUp 0.8s ease forwards;
  opacity: 0;
}

.title-line:nth-child(1) {
  animation-delay: 0.2s;
}

.title-line:nth-child(2) {
  animation-delay: 0.4s;
}

.title-line:nth-child(3) {
  animation-delay: 0.6s;
}

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

.title-accent {
  color: var(--color-accent);
}

.hero-description {
  margin-bottom: 3rem;
}

.hero-text {
  font-size: 1.1rem;
  line-height: 1.7;
  color: var(--color-charcoal);
  margin-bottom: 1rem;
}

.hero-text-secondary {
  font-size: 1rem;
  line-height: 1.7;
  color: var(--color-mid-gray);
}

.hero-stats {
  display: flex;
  gap: 2rem;
  align-items: center;
  margin-bottom: 2rem;
}

.stat-item {
  flex: 1;
}

.stat-number {
  font-family: var(--font-heading);
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--color-accent);
  line-height: 1;
  margin-bottom: 0.5rem;
}

.stat-label {
  font-size: 0.9rem;
  color: var(--color-mid-gray);
}

.stat-divider {
  width: 1px;
  height: 50px;
  background: var(--color-light-gray);
}

.hero-decorative-element {
  position: absolute;
  bottom: 0;
  right: 0;
  opacity: 0.3;
  pointer-events: none;
}

/* ==========================================
   ABOUT SECTION
   ========================================== */
.about-section {
  padding: var(--spacing-section) 0;
  background: white;
}

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

.section-label {
  display: inline-block;
  font-size: 0.85rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--color-accent);
  margin-bottom: 1.5rem;
  padding: 0.5rem 1rem;
  background: rgba(74, 144, 226, 0.08);
  border-radius: 6px;
}

.section-title {
  font-family: var(--font-heading);
  font-size: 3rem;
  line-height: 1.2;
  margin-bottom: 2rem;
  letter-spacing: -0.02em;
}

.about-text-block {
  margin-bottom: 3rem;
}

.about-paragraph {
  font-size: 1.05rem;
  line-height: 1.8;
  color: var(--color-charcoal);
  margin-bottom: 1.25rem;
}

.about-features {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
}

.feature-card {
  perspective: 1000px;
  height: 160px;
  cursor: pointer;
}

.feature-card-inner {
  position: relative;
  width: 100%;
  height: 100%;
  transition: transform 0.6s;
  transform-style: preserve-3d;
}

.feature-card[data-flip-card].flipped .feature-card-inner {
  transform: rotateY(180deg);
}

.feature-card-front,
.feature-card-back {
  position: absolute;
  width: 100%;
  height: 100%;
  backface-visibility: hidden;
  border-radius: 12px;
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.feature-card-front {
  background: var(--color-cream);
  border: 1px solid var(--color-light-gray);
}

.feature-card-back {
  background: var(--color-charcoal);
  color: white;
  transform: rotateY(180deg);
}

.feature-icon {
  width: 32px;
  height: 32px;
  color: var(--color-accent);
  margin-bottom: 1rem;
}

.feature-title {
  font-family: var(--font-heading);
  font-size: 1.25rem;
  margin-bottom: 0.5rem;
}

.feature-description {
  font-size: 0.95rem;
  color: var(--color-mid-gray);
}

.feature-back-text {
  font-size: 1rem;
  line-height: 1.6;
}

.about-visual {
  position: relative;
}

.about-image-container {
  position: relative;
}

.organic-shape-small {
  position: absolute;
  top: -30px;
  left: -30px;
  width: 200px;
  height: 200px;
  background: linear-gradient(135deg, rgba(74, 144, 226, 0.12) 0%, rgba(74, 144, 226, 0.06) 100%);
  border-radius: 40% 60% 55% 45% / 50% 40% 60% 50%;
  animation: morphShape 15s ease-in-out infinite;
  z-index: 1;
}

.about-image {
  position: relative;
  z-index: 2;
  width: 100%;
  border-radius: 16px;
  box-shadow: var(--shadow-hard);
}

.about-accent-card {
  position: absolute;
  bottom: -30px;
  right: -30px;
  background: var(--color-accent);
  padding: 2rem;
  border-radius: 12px;
  box-shadow: var(--shadow-hard);
  z-index: 3;
  max-width: 240px;
}

.accent-card-content {
  color: white;
}

.accent-number {
  font-family: var(--font-heading);
  font-size: 2.5rem;
  font-weight: 700;
  line-height: 1;
  margin-bottom: 0.5rem;
}

.accent-text {
  font-size: 0.95rem;
  line-height: 1.5;
}

/* ==========================================
   CASES SECTION
   ========================================== */
.cases-section {
  padding: var(--spacing-section) 0;
  background: var(--color-cream);
}

.section-header-center {
  text-align: center;
  max-width: 700px;
  margin: 0 auto 4rem;
}

.section-title-center {
  font-family: var(--font-heading);
  font-size: 3rem;
  line-height: 1.2;
  margin-bottom: 1.5rem;
  letter-spacing: -0.02em;
}

.section-description {
  font-size: 1.1rem;
  line-height: 1.7;
  color: var(--color-mid-gray);
}

.cases-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

.case-card {
  background: white;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: var(--shadow-soft);
  transition: var(--transition-smooth);
  cursor: pointer;
}

.case-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-hard);
}

.case-visual {
  position: relative;
  height: 280px;
  overflow: hidden;
}

.case-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: var(--transition-smooth);
}

.case-card:hover .case-image {
  transform: scale(1.05);
}

.case-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(to bottom, transparent 0%, rgba(0, 0, 0, 0.3) 100%);
}

.case-content {
  padding: 1.75rem;
}

.case-title {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  margin-bottom: 1rem;
  line-height: 1.3;
}

.case-description {
  font-size: 1rem;
  line-height: 1.6;
  color: var(--color-mid-gray);
}

.case-expanded-content {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.5s ease;
}

.case-card[data-expand-card].expanded .case-expanded-content {
  max-height: 500px;
  margin-top: 1.5rem;
}

.case-list {
  list-style: none;
  padding: 0;
}

.case-list li {
  padding-left: 1.5rem;
  position: relative;
  margin-bottom: 0.75rem;
  font-size: 0.95rem;
  line-height: 1.6;
  color: var(--color-charcoal);
}

.case-list li::before {
  content: "→";
  position: absolute;
  left: 0;
  color: var(--color-accent);
  font-weight: 700;
}

/* ==========================================
   TEAM SECTION
   ========================================== */
.team-section {
  padding: var(--spacing-section) 0;
  background: white;
}

.team-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
}

.team-member {
  text-align: center;
  cursor: pointer;
  transition: var(--transition-smooth);
}

.team-member[data-rotate-card]:hover {
  transform: rotateY(10deg) translateY(-8px);
}

.team-avatar {
  position: relative;
  margin-bottom: 1.5rem;
  width: 100%;
  aspect-ratio: 1;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: var(--shadow-medium);
}

.team-photo {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: var(--transition-smooth);
}

.team-member:hover .team-photo {
  transform: scale(1.05);
}

.team-badge {
  position: absolute;
  top: 1rem;
  right: 1rem;
  width: 40px;
  height: 40px;
  background: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-accent);
  box-shadow: var(--shadow-soft);
}

.team-name {
  font-family: var(--font-heading);
  font-size: 1.25rem;
  margin-bottom: 0.5rem;
}

.team-role {
  font-size: 0.9rem;
  color: var(--color-accent);
  font-weight: 600;
  margin-bottom: 1rem;
}

.team-bio {
  font-size: 0.95rem;
  line-height: 1.6;
  color: var(--color-mid-gray);
}

/* ==========================================
   CONTACTS SECTION
   ========================================== */
.contacts-section {
  padding: var(--spacing-section) 0;
  background: var(--color-cream);
}

.contacts-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  margin-bottom: 4rem;
}

.contacts-description {
  font-size: 1.1rem;
  line-height: 1.7;
  color: var(--color-mid-gray);
  margin-bottom: 3rem;
}

.contacts-details {
  margin-bottom: 3rem;
}

.contact-item {
  display: flex;
  gap: 1.25rem;
  margin-bottom: 2rem;
}

.contact-icon {
  width: 48px;
  height: 48px;
  background: white;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-accent);
  flex-shrink: 0;
  box-shadow: var(--shadow-soft);
}

.contact-label {
  font-size: 0.85rem;
  color: var(--color-mid-gray);
  margin-bottom: 0.25rem;
}

.contact-link {
  color: var(--color-charcoal);
  text-decoration: none;
  font-weight: 600;
  transition: var(--transition-fast);
}

.contact-link:hover {
  color: var(--color-accent);
}

.contact-text {
  color: var(--color-charcoal);
  font-weight: 500;
}

.work-format {
  padding: 1.5rem;
  background: white;
  border-radius: 12px;
  border-left: 4px solid var(--color-accent);
}

.work-format-title {
  font-family: var(--font-heading);
  font-size: 1.25rem;
  margin-bottom: 0.75rem;
}

.work-format-text {
  font-size: 1rem;
  line-height: 1.6;
  color: var(--color-mid-gray);
}

.contacts-form-wrapper {
  background: white;
  padding: 2.5rem;
  border-radius: 16px;
  box-shadow: var(--shadow-medium);
}

.contact-form {
  width: 100%;
}

.form-header {
  margin-bottom: 2rem;
}

.form-title {
  font-family: var(--font-heading);
  font-size: 2rem;
  margin-bottom: 0.5rem;
}

.form-subtitle {
  font-size: 1rem;
  color: var(--color-mid-gray);
}

.form-group {
  margin-bottom: 1.5rem;
}

.form-label {
  display: block;
  font-weight: 600;
  font-size: 0.9rem;
  margin-bottom: 0.5rem;
  color: var(--color-charcoal);
}

.form-input,
.form-textarea {
  width: 100%;
  padding: 0.875rem 1rem;
  border: 2px solid var(--color-light-gray);
  border-radius: 8px;
  font-family: var(--font-body);
  font-size: 1rem;
  transition: var(--transition-fast);
  background: white;
}

.form-input:focus,
.form-textarea:focus {
  outline: none;
  border-color: var(--color-accent);
  box-shadow: 0 0 0 3px rgba(74, 144, 226, 0.1);
}

.form-textarea {
  resize: vertical;
  min-height: 120px;
}

.form-error {
  display: none;
  font-size: 0.85rem;
  color: var(--color-error);
  margin-top: 0.5rem;
}

.form-error.active {
  display: block;
}

.form-checkbox-group {
  margin-bottom: 2rem;
}

.checkbox-label {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  cursor: pointer;
}

.checkbox-input {
  position: absolute;
  opacity: 0;
}

.checkbox-custom {
  width: 20px;
  height: 20px;
  border: 2px solid var(--color-light-gray);
  border-radius: 4px;
  flex-shrink: 0;
  position: relative;
  transition: var(--transition-fast);
}

.checkbox-input:checked + .checkbox-custom {
  background: var(--color-accent);
  border-color: var(--color-accent);
}

.checkbox-input:checked + .checkbox-custom::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 10px;
  height: 6px;
  border-left: 2px solid white;
  border-bottom: 2px solid white;
  transform: translate(-50%, -60%) rotate(-45deg);
}

.checkbox-text {
  font-size: 0.9rem;
  line-height: 1.5;
  color: var(--color-charcoal);
}

.checkbox-link {
  color: var(--color-accent);
  text-decoration: underline;
  transition: var(--transition-fast);
}

.checkbox-link:hover {
  color: var(--color-accent-hover);
}

.form-submit {
  width: 100%;
  background: var(--color-charcoal);
  color: white;
  border: none;
  padding: 1rem 2rem;
  border-radius: 8px;
  font-weight: 600;
  font-size: 1rem;
  cursor: pointer;
  transition: var(--transition-smooth);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
}

.form-submit:hover {
  background: var(--color-accent);
  transform: translateY(-2px);
  box-shadow: var(--shadow-medium);
}

.submit-icon {
  transition: var(--transition-fast);
}

.form-submit:hover .submit-icon {
  transform: translateX(4px);
}

.map-section {
  margin-top: 4rem;
}

.map-title {
  font-family: var(--font-heading);
  font-size: 2rem;
  margin-bottom: 1.5rem;
}

.map-wrapper {
  height: 420px;
  overflow: hidden;
  border-radius: 16px;
  box-shadow: var(--shadow-medium);
}

/* ==========================================
   FOOTER
   ========================================== */
.footer-main {
  background: var(--color-dark-bg);
  color: white;
  padding: 4rem 0 2rem;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 3rem;
  margin-bottom: 3rem;
}

.footer-logo {
  font-family: var(--font-heading);
  font-size: 1.75rem;
  font-weight: 700;
  margin-bottom: 1rem;
}

.footer-tagline {
  font-size: 0.95rem;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.7);
  margin-bottom: 1.5rem;
}

.footer-social {
  display: flex;
  gap: 1rem;
}

.social-link {
  width: 40px;
  height: 40px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  transition: var(--transition-fast);
}

.social-link:hover {
  background: var(--color-accent);
  transform: translateY(-2px);
}

.footer-links-title {
  font-family: var(--font-heading);
  font-size: 1.1rem;
  margin-bottom: 1.25rem;
}

.footer-nav {
  list-style: none;
  padding: 0;
}

.footer-nav li {
  margin-bottom: 0.75rem;
}

.footer-link {
  color: rgba(255, 255, 255, 0.7);
  text-decoration: none;
  font-size: 0.95rem;
  transition: var(--transition-fast);
}

.footer-link:hover {
  color: var(--color-accent);
  padding-left: 4px;
}

.footer-contact-list {
  list-style: none;
  padding: 0;
}

.footer-contact-list li {
  margin-bottom: 0.75rem;
}

.footer-contact-link {
  color: rgba(255, 255, 255, 0.7);
  text-decoration: none;
  font-size: 0.95rem;
  transition: var(--transition-fast);
}

.footer-contact-link:hover {
  color: var(--color-accent);
}

.footer-contact-text {
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.95rem;
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 2rem;
}

.footer-bottom-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.footer-copyright {
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.6);
}

.footer-cta-btn {
  background: var(--color-accent);
  color: white;
  border: none;
  padding: 0.75rem 1.5rem;
  border-radius: 8px;
  font-weight: 600;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  transition: var(--transition-smooth);
}

.footer-cta-btn:hover {
  background: var(--color-accent-hover);
  transform: translateY(-2px);
}

/* ==========================================
   RESPONSIVE DESIGN
   ========================================== */
@media (max-width: 1024px) {
  .hero-grid,
  .about-grid,
  .contacts-grid {
    grid-template-columns: 1fr;
    gap: 3rem;
  }

  .hero-visual {
    order: -1;
  }

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

  .team-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
  }
}

@media (max-width: 768px) {
  .nav-desktop,
  .header-cta {
    display: none;
  }

  .burger-menu {
    display: flex;
  }

  .mobile-menu {
    display: block;
  }

  .hero-title {
    font-size: 2.5rem;
  }

  .section-title,
  .section-title-center {
    font-size: 2rem;
  }

  .hero-stats {
    flex-direction: column;
    gap: 1.5rem;
  }

  .stat-divider {
    display: none;
  }

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

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

  .footer-bottom-content {
    flex-direction: column;
    gap: 1.5rem;
    text-align: center;
  }
}
