@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@300;400;500;600;700&family=Recursive:wght@400;500&display=swap');

:root {
  --sky-white: #FFFFFF;
  --soft-blue: #DBEAFE;
  --deep-navy: #1E3A5F;
  --steel-gray: #475569;
  --muted-blue: #64748B;
  --workshop-blue: #0EA5E9;
  --workshop-blue-dark: #0284C7;
  --lavender-glow: #A78BFA;
  --mint-glow: #6EE7B7;
  --cream: #FEF3C7;
  --font-primary: 'Outfit', -apple-system, BlinkMacSystemFont, sans-serif;
  --font-mono: 'Recursive', 'SF Mono', Consolas, monospace;
}

*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-primary);
  font-size: 16px;
  line-height: 1.7;
  color: var(--steel-gray);
  background: var(--sky-white);
  overflow-x: hidden;
}

strong, p {
  color: inherit;
}

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

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

ul, ol {
  list-style: none;
}

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

input, textarea, select {
  font-family: inherit;
  font-size: inherit;
}

.container {
  width: 100%;
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 24px;
}

.header {
  position: fixed;
  top: 24px;
  left: 50%;
  transform: translateX(-50%);
  width: calc(100% - 80px);
  max-width: 1400px;
  height: 72px;
  background: rgba(255, 255, 255, 0.99);
  backdrop-filter: blur(20px);
  border: 1px solid rgba(14, 165, 233, 0.08);
  border-radius: 0 0 24px 24px;
  box-shadow: 0 8px 32px rgba(14, 165, 233, 0.06);
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 32px;
  transition: all 0.3s ease;
}

.header.scrolled {
  width: 100%;
  height: 56px;
  border-radius: 0;
  box-shadow: 0 8px 40px rgba(14, 165, 233, 0.1);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
}

.logo {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-shrink: 0;
}

.logo-icon {
  width: 44px;
  height: 44px;
  background: linear-gradient(135deg, var(--workshop-blue), var(--lavender-glow));
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 16px rgba(14, 165, 233, 0.25);
}

.logo-icon svg {
  width: 24px;
  height: 24px;
}

.logo-text {
  font-family: var(--font-primary);
  font-weight: 700;
  font-size: 15px;
  letter-spacing: -0.01em;
  color: var(--deep-navy);
}

.nav-desktop {
  display: flex;
  align-items: center;
  gap: 4px;
}

.nav-link {
  padding: 12px 18px;
  border-radius: 16px;
  font-family: var(--font-primary);
  font-weight: 500;
  font-size: 13px;
  color: var(--steel-gray);
  transition: all 0.2s ease;
  cursor: pointer;
  white-space: nowrap;
}

.nav-link:hover {
  background: rgba(14, 165, 233, 0.08);
  transform: translateY(-2px);
  color: var(--workshop-blue);
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-shrink: 0;
}

.header-phone {
  font-family: var(--font-mono);
  font-size: 11px;
  color: var(--workshop-blue);
  letter-spacing: 0.02em;
  display: none;
}

.btn-primary {
  padding: 12px 24px;
  background: linear-gradient(135deg, var(--workshop-blue), var(--workshop-blue-dark));
  color: white;
  font-family: var(--font-primary);
  font-weight: 700;
  font-size: 13px;
  letter-spacing: -0.01em;
  border-radius: 16px;
  box-shadow: 0 4px 16px rgba(14, 165, 233, 0.25);
  transition: all 0.25s ease-out;
  white-space: nowrap;
}

.btn-primary:hover {
  box-shadow: 0 8px 28px rgba(14, 165, 233, 0.35);
  transform: translateY(-2px);
}

.btn-secondary {
  padding: 22px 44px;
  background: transparent;
  border: 2px solid var(--deep-navy);
  color: var(--deep-navy);
  font-family: var(--font-primary);
  font-weight: 600;
  border-radius: 20px;
  transition: all 0.25s ease-out;
  white-space: nowrap;
}

.btn-secondary:hover {
  border-color: var(--workshop-blue);
  color: var(--workshop-blue);
  box-shadow: 0 6px 20px rgba(14, 165, 233, 0.15);
}

.mobile-menu-toggle {
  display: none;
  width: 48px;
  height: 48px;
  background: rgba(14, 165, 233, 0.08);
  border-radius: 12px;
  align-items: center;
  justify-content: center;
  cursor: pointer;
}

.mobile-menu-toggle svg {
  width: 24px;
  height: 24px;
  stroke: var(--workshop-blue);
}

.mobile-menu {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  background: rgba(255, 255, 255, 0.99);
  backdrop-filter: blur(24px);
  z-index: 9999;
  display: none;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding-top: 100px;
  transform: scale(0.95);
  opacity: 0;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.mobile-menu.active {
  display: flex;
  transform: scale(1);
  opacity: 1;
}

.mobile-menu-close {
  position: absolute;
  top: 32px;
  right: 48px;
  width: 48px;
  height: 48px;
  background: rgba(14, 165, 233, 0.08);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
}

.mobile-menu-close svg {
  width: 24px;
  height: 24px;
  stroke: var(--workshop-blue);
}

.mobile-nav-link {
  font-family: var(--font-primary);
  font-weight: 700;
  font-size: 28px;
  color: var(--deep-navy);
  padding: 16px 0;
  text-align: center;
  transition: all 0.2s ease;
}

.mobile-nav-link:hover {
  color: var(--workshop-blue);
  transform: translateY(-4px);
}

.mobile-nav-divider {
  width: 60px;
  height: 2px;
  background: var(--workshop-blue);
  margin: 0 auto;
}

.mobile-menu-phone {
  position: absolute;
  bottom: 48px;
  left: 50%;
  transform: translateX(-50%);
  font-family: var(--font-mono);
  font-size: 14px;
  color: var(--workshop-blue);
}

.mobile-menu-cta {
  position: absolute;
  bottom: 80px;
  left: 50%;
  transform: translateX(-50%);
}

@keyframes meshFloat1 {
  0%, 100% { transform: translate(0, 0) scale(1); }
  50% { transform: translate(50px, 30px) scale(1.08); }
}

@keyframes meshFloat2 {
  0%, 100% { transform: translate(0, 0) scale(1); }
  50% { transform: translate(-40px, 50px) scale(0.92); }
}

@keyframes meshFloat3 {
  0%, 100% { transform: translate(0, 0) scale(1); }
  50% { transform: translate(30px, -40px) scale(1.05); }
}

@keyframes meshFloat4 {
  0%, 100% { transform: translate(0, 0) scale(1); }
  50% { transform: translate(-50px, -30px) scale(0.95); }
}

@keyframes meshGridMove {
  0%, 100% { transform: translate(0, 0); }
  50% { transform: translate(30px, 20px); }
}

.mesh-background {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
  pointer-events: none;
  z-index: 0;
}

.mesh-blob {
  position: absolute;
  border-radius: 50%;
  filter: blur(120px);
  opacity: 0.35;
}

.mesh-blob-1 {
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(14, 165, 233, 0.06) 0%, rgba(167, 139, 250, 0.04) 50%, transparent 70%);
  top: -100px;
  right: -100px;
  animation: meshFloat1 45s ease-in-out infinite alternate;
}

.mesh-blob-2 {
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(167, 139, 250, 0.05) 0%, transparent 70%);
  bottom: -50px;
  left: -50px;
  animation: meshFloat2 50s ease-in-out infinite alternate;
}

.mesh-blob-3 {
  width: 350px;
  height: 350px;
  background: radial-gradient(circle, rgba(110, 231, 183, 0.04) 0%, transparent 70%);
  top: 50%;
  left: 30%;
  animation: meshFloat3 48s ease-in-out infinite alternate;
}

.mesh-blob-4 {
  width: 300px;
  height: 300px;
  background: radial-gradient(circle, rgba(252, 211, 77, 0.03) 0%, transparent 70%);
  bottom: 30%;
  right: 20%;
  animation: meshFloat4 55s ease-in-out infinite alternate;
}

.mesh-grid-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: 
    linear-gradient(rgba(14, 165, 233, 0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(14, 165, 233, 0.04) 1px, transparent 1px);
  background-size: 80px 80px;
  animation: meshGridMove 25s ease-in-out infinite alternate;
  filter: blur(40px);
  pointer-events: none;
}

.hero {
  min-height: 100vh;
  background: var(--sky-white);
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
}

.hero-content {
  position: relative;
  z-index: 4;
  padding: 140px 80px 120px 80px;
  display: grid;
  grid-template-columns: 7fr 5fr;
  gap: 24px;
  align-items: center;
  max-width: 1400px;
  margin: 0 auto;
  width: 100%;
}

.hero-left {
  z-index: 1;
}

.hero-decor {
  margin-bottom: 28px;
}

.hero-decor svg {
  width: 56px;
  height: 56px;
  stroke: rgba(14, 165, 233, 0.4);
  animation: scaleIn 0.4s ease-out;
}

@keyframes scaleIn {
  from { transform: scale(0); opacity: 0; }
  to { transform: scale(1); opacity: 1; }
}

.hero-title {
  font-family: var(--font-primary);
  font-weight: 700;
  font-size: 96px;
  letter-spacing: -0.02em;
  line-height: 0.78;
  color: var(--deep-navy);
  margin-bottom: 8px;
}

.hero-title-accent {
  font-family: var(--font-primary);
  font-weight: 700;
  font-size: 48px;
  letter-spacing: -0.01em;
  line-height: 0.85;
  color: var(--workshop-blue);
  margin-bottom: 16px;
}

.hero-subtitle-en {
  font-family: var(--font-mono);
  font-size: 12px;
  color: rgba(71, 85, 105, 0.5);
  margin-bottom: 20px;
}

.hero-description {
  font-size: 17px;
  line-height: 1.7;
  color: var(--steel-gray);
  max-width: 480px;
  margin-bottom: 28px;
}

.hero-markers {
  display: flex;
  gap: 12px;
  margin-bottom: 16px;
}

.hero-marker {
  width: 24px;
  height: 10px;
  background: var(--workshop-blue);
  border-radius: 5px;
  filter: drop-shadow(0 4px 12px rgba(14, 165, 233, 0.2));
}

.hero-line {
  width: 200px;
  height: 4px;
  background: linear-gradient(90deg, var(--workshop-blue), var(--lavender-glow));
  border-radius: 2px;
  margin-bottom: 32px;
}

.hero-buttons {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.hero-right {
  position: relative;
  height: 520px;
  z-index: 0;
}

.hero-bento {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-template-rows: repeat(2, 1fr);
  gap: 16px;
  height: 100%;
}

.bento-item {
  border-radius: 16-24px;
  overflow: hidden;
  box-shadow: 0 16px 48px rgba(30, 58, 95, 0.06);
  position: relative;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.bento-item:hover {
  z-index: 10;
  transform: scale(1.02);
}

.bento-item-1 {
  grid-row: span 2;
  border-radius: 24px;
  margin-top: -16px;
  margin-left: -16px;
  box-shadow: 0 24px 64px rgba(30, 58, 95, 0.08);
}

.bento-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(0.98);
}

.hero-card {
  position: absolute;
  background: rgba(255, 255, 255, 0.98);
  backdrop-filter: blur(16px);
  border: 1px solid rgba(14, 165, 233, 0.08);
  border-radius: 16px;
  padding: 14px 18px;
  box-shadow: 0 16px 48px rgba(30, 58, 95, 0.06);
  z-index: 5;
}

.hero-card-1 {
  top: 40px;
  right: 24px;
}

.hero-card-2 {
  bottom: 40px;
  right: 24px;
  z-index: 4;
}

.hero-card-label {
  font-family: var(--font-primary);
  font-weight: 700;
  font-size: 12px;
  color: var(--deep-navy);
}

.hero-card-value {
  font-family: var(--font-mono);
  font-size: 11px;
  color: var(--workshop-blue);
}

.seamless-transition {
  height: 80px;
  background: radial-gradient(ellipse 60% 100% at 50% 50%, rgba(219, 234, 254, 0.9), transparent);
  margin: -40px 0;
  position: relative;
  z-index: 5;
}

.section {
  padding: 100px 0 80px;
  position: relative;
}

.section-blue {
  background: var(--soft-blue);
}

.section-dark {
  background: var(--deep-navy);
  color: white;
}

.section-dark strong, .section-dark p {
  color: white;
}

.section-header {
  text-align: center;
  margin-bottom: 64px;
  padding: 0 80px;
}

.section-label {
  font-family: var(--font-mono);
  font-size: 12px;
  color: var(--muted-blue);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 12px;
}

.section-dark .section-label {
  color: rgba(255, 255, 255, 0.6);
}

.section-title {
  font-family: var(--font-primary);
  font-weight: 700;
  font-size: 48px;
  letter-spacing: -0.02em;
  color: var(--deep-navy);
  margin-bottom: 16px;
}

.section-dark .section-title {
  color: white;
}

.section-subtitle {
  font-size: 17px;
  color: var(--steel-gray);
  max-width: 600px;
  margin: 0 auto;
}

.section-dark .section-subtitle {
  color: rgba(255, 255, 255, 0.7);
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  padding: 0 80px;
}

.service-card {
  background: rgba(255, 255, 255, 0.98);
  backdrop-filter: blur(16px);
  border: 1px solid rgba(14, 165, 233, 0.08);
  border-radius: 20px;
  padding: 24px;
  box-shadow: 0 16px 48px rgba(30, 58, 95, 0.06);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  z-index: 1;
  margin-bottom: -12px;
}

.service-card:hover {
  transform: scale(1.04);
  background: white;
  box-shadow: 0 24px 64px rgba(0, 0, 0, 0.06);
  border-color: rgba(14, 165, 233, 0.15);
  z-index: 10;
}

.service-card:hover .service-icon {
  transform: scale(1.1);
}

.service-card:hover .service-title {
  color: var(--workshop-blue);
}

.service-icon {
  width: 48px;
  height: 48px;
  margin-bottom: 12px;
  transition: transform 0.3s ease;
}

.service-icon svg {
  width: 100%;
  height: 100%;
  stroke: var(--workshop-blue);
}

.service-title {
  font-family: var(--font-primary);
  font-weight: 700;
  font-size: 14px;
  color: var(--deep-navy);
  margin-bottom: 6px;
  transition: color 0.3s ease;
}

.service-text {
  font-size: 13px;
  color: var(--steel-gray);
  line-height: 1.6;
  margin-top: 6px;
}

.service-price {
  font-family: var(--font-mono);
  font-size: 12px;
  color: var(--muted-blue);
  margin-top: 12px;
}

.about-split {
  display: grid;
  grid-template-columns: 55% 45%;
  min-height: 600px;
  position: relative;
}

.about-left {
  position: relative;
  padding: 80px;
}

.about-image {
  width: 100%;
  height: 100%;
  min-height: 500px;
  border-radius: 24px;
  overflow: hidden;
  position: relative;
}

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

.about-image-decor {
  position: absolute;
  bottom: 40px;
  left: 40px;
}

.about-image-decor svg {
  width: 56px;
  height: 56px;
  stroke: rgba(14, 165, 233, 0.3);
}

.about-image-block {
  position: absolute;
  top: 20px;
  left: -40px;
  width: 120px;
  height: 80px;
  background: rgba(14, 165, 233, 0.04);
  border-radius: 20px;
  z-index: 10;
  transition: all 0.3s ease;
}

.about-image:hover .about-image-block {
  z-index: 20;
  opacity: 1;
}

.about-right {
  padding: 80px 60px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.about-decor {
  margin-bottom: 24px;
}

.about-decor svg {
  width: 48px;
  height: 48px;
  stroke: rgba(14, 165, 233, 0.4);
}

.about-title {
  font-family: var(--font-primary);
  font-weight: 700;
  font-size: 28px;
  letter-spacing: -0.02em;
  color: var(--deep-navy);
  margin-bottom: 24px;
}

.about-text {
  font-size: 16px;
  color: var(--steel-gray);
  line-height: 1.75;
  margin-bottom: 24px;
}

.about-divider {
  width: 40px;
  height: 2px;
  background: rgba(14, 165, 233, 0.1);
  margin: 20px 0;
}

.process-timeline {
  position: relative;
  padding: 40px 80px;
}

.timeline-line {
  position: absolute;
  left: 50%;
  top: 0;
  bottom: 0;
  width: 4px;
  background: linear-gradient(180deg, var(--workshop-blue), var(--lavender-glow), var(--workshop-blue));
  transform: translateX(-50%);
}

.timeline-item {
  width: calc(50% - 60px);
  background: rgba(255, 255, 255, 0.98);
  backdrop-filter: blur(16px);
  border-radius: 20px;
  padding: 24px 28px;
  border: 1px solid rgba(14, 165, 233, 0.08);
  box-shadow: 0 16px 48px rgba(30, 58, 95, 0.06);
  margin-bottom: -12px;
  position: relative;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.timeline-item:nth-child(odd) {
  margin-right: auto;
}

.timeline-item:nth-child(even) {
  margin-left: auto;
  margin-top: 72px;
}

.timeline-item:hover {
  transform: scale(1.04);
  z-index: 10;
}

.timeline-dot {
  width: 14px;
  height: 14px;
  background: var(--workshop-blue);
  border-radius: 50%;
  border: 4px solid white;
  box-shadow: 0 0 0 4px var(--workshop-blue);
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
}

.timeline-icon {
  width: 48px;
  height: 48px;
  margin-bottom: 12px;
}

.timeline-icon svg {
  width: 100%;
  height: 100%;
  stroke: var(--workshop-blue);
}

.timeline-title {
  font-family: var(--font-primary);
  font-weight: 700;
  font-size: 16px;
  color: var(--deep-navy);
  margin-bottom: 6px;
}

.timeline-text {
  font-size: 14px;
  color: var(--steel-gray);
  line-height: 1.6;
  margin-top: 6px;
}

.timeline-image {
  height: 100px;
  border-radius: 16px;
  margin-top: 12px;
  overflow: hidden;
}

.timeline-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(0.98);
}

.portfolio-carousel {
  position: relative;
  height: 480px;
  display: flex;
  justify-content: center;
  align-items: center;
  perspective: 1400px;
  margin-top: 48px;
  padding: 0 80px;
}

.carousel-container {
  position: relative;
  width: 300px;
  height: 400px;
  transform-style: preserve-3d;
}

.portfolio-card {
  position: absolute;
  width: 300px;
  height: 400px;
  background: rgba(255, 255, 255, 0.98);
  backdrop-filter: blur(16px);
  border: 1px solid rgba(14, 165, 233, 0.08);
  border-radius: 20px;
  box-shadow: 0 16px 48px rgba(30, 58, 95, 0.06);
  overflow: hidden;
  transition: all 0.5s ease;
}

.portfolio-card-center {
  transform: rotateY(0deg) translateZ(320px) scale(1.04);
  z-index: 100;
  box-shadow: 0 24px 64px rgba(14, 165, 233, 0.12);
}

.portfolio-card-left-1 {
  transform: rotateY(52deg) translateZ(320px);
  opacity: 0.7;
}

.portfolio-card-left-2 {
  transform: rotateY(104deg) translateZ(320px);
  opacity: 0.4;
}

.portfolio-card-right-1 {
  transform: rotateY(-52deg) translateZ(320px);
  opacity: 0.7;
}

.portfolio-card-right-2 {
  transform: rotateY(-104deg) translateZ(320px);
  opacity: 0.4;
}

.portfolio-card-image {
  height: 120px;
  overflow: hidden;
}

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

.portfolio-card-content {
  padding: 24px;
}

.portfolio-card-icon {
  width: 40px;
  height: 40px;
  margin-bottom: 12px;
}

.portfolio-card-icon svg {
  width: 100%;
  height: 100%;
  stroke: var(--workshop-blue);
}

.portfolio-card-title {
  font-family: var(--font-primary);
  font-weight: 700;
  font-size: 16px;
  color: var(--deep-navy);
  margin-bottom: 4px;
}

.portfolio-card-role {
  font-family: var(--font-primary);
  font-size: 12px;
  color: var(--muted-blue);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 8px;
}

.portfolio-card-text {
  font-size: 13px;
  color: var(--steel-gray);
  line-height: 1.5;
  margin-top: 8px;
}

.portfolio-card-rating {
  display: flex;
  gap: 4px;
  margin-top: 8px;
}

.portfolio-card-rating svg {
  width: 16px;
  height: 16px;
  fill: var(--workshop-blue);
}

.portfolio-card-accent {
  height: 4px;
  width: 100%;
  background: linear-gradient(90deg, var(--workshop-blue), var(--lavender-glow));
  border-radius: 0 0 20px 20px;
}

.carousel-arrow {
  position: absolute;
  width: 52px;
  height: 52px;
  background: rgba(255, 255, 255, 0.98);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(14, 165, 233, 0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 200;
  transition: all 0.25s ease;
}

.carousel-arrow:hover {
  background: var(--workshop-blue);
}

.carousel-arrow:hover svg {
  stroke: white;
}

.carousel-arrow svg {
  width: 24px;
  height: 24px;
  stroke: var(--workshop-blue);
}

.carousel-arrow-left {
  left: 15%;
}

.carousel-arrow-right {
  right: 15%;
}

.testimonials-marquee {
  background: linear-gradient(90deg, var(--deep-navy), #2D4A6F);
  height: 48px;
  overflow: hidden;
  display: flex;
  align-items: center;
}

.marquee-content {
  display: flex;
  animation: marquee 25s linear infinite;
  white-space: nowrap;
  font-family: var(--font-primary);
  font-weight: 700;
  font-size: 14px;
  color: white;
  letter-spacing: 0.1em;
}

@keyframes marquee {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

.testimonials-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  padding: 80px;
}

.testimonials-left {
  display: flex;
  flex-direction: column;
}

.testimonials-decor {
  margin-bottom: 24px;
}

.testimonials-decor svg {
  width: 48px;
  height: 48px;
  stroke: rgba(14, 165, 233, 0.5);
}

.testimonials-title {
  font-family: var(--font-primary);
  font-weight: 700;
  font-size: 32px;
  letter-spacing: -0.01em;
  color: var(--deep-navy);
  margin-bottom: 32px;
}

.testimonial-card {
  background: rgba(255, 255, 255, 0.98);
  backdrop-filter: blur(16px);
  border: 1px solid rgba(14, 165, 233, 0.08);
  border-radius: 16px;
  padding: 20px 24px;
  box-shadow: 0 16px 48px rgba(30, 58, 95, 0.06);
  margin-bottom: 16px;
  display: flex;
  gap: 16px;
}

.testimonial-icon {
  width: 40px;
  height: 40px;
  flex-shrink: 0;
}

.testimonial-icon svg {
  width: 100%;
  height: 100%;
  stroke: var(--workshop-blue);
}

.testimonial-content {
  flex: 1;
}

.testimonial-name {
  font-family: var(--font-primary);
  font-weight: 700;
  font-size: 14px;
  color: var(--deep-navy);
  margin-bottom: 4px;
}

.testimonial-text {
  font-size: 13px;
  color: var(--steel-gray);
  margin-top: 4px;
}

.testimonial-rating {
  display: flex;
  gap: 4px;
  margin-top: 8px;
}

.testimonial-rating svg {
  width: 14px;
  height: 14px;
  fill: var(--workshop-blue);
}

.testimonials-right {
  position: relative;
  min-height: 400px;
}

.testimonials-image {
  width: 100%;
  height: 100%;
  min-height: 400px;
  border-radius: 24px;
  overflow: hidden;
  position: relative;
}

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

.testimonials-cta {
  position: absolute;
  bottom: 40px;
  right: 40px;
  padding: 20px 40px;
  background: linear-gradient(135deg, var(--workshop-blue), var(--workshop-blue-dark));
  color: white;
  font-family: var(--font-primary);
  font-weight: 700;
  font-size: 14px;
  border-radius: 20px;
  box-shadow: 0 8px 32px rgba(14, 165, 233, 0.4);
  transition: all 0.25s ease;
}

.testimonials-cta:hover {
  box-shadow: 0 12px 40px rgba(14, 165, 233, 0.5);
  transform: translateY(-2px);
}

.faq-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  padding: 0 80px;
}

.faq-card {
  background: rgba(255, 255, 255, 0.97);
  backdrop-filter: blur(16px);
  border: 1px solid rgba(14, 165, 233, 0.08);
  border-radius: 20px;
  padding: 24px;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  margin-bottom: -12px;
}

.faq-card:hover {
  flex-grow: 1.6;
  background: white;
  box-shadow: 0 24px 64px rgba(0, 0, 0, 0.06);
  border-color: rgba(14, 165, 233, 0.15);
  z-index: 10;
  transform: scale(1.04);
}

.faq-card:hover .faq-icon {
  transform: scale(1.1);
}

.faq-card:hover .faq-title {
  color: var(--workshop-blue);
}

.faq-icon {
  width: 44px;
  height: 44px;
  margin-bottom: 12px;
  transition: transform 0.3s ease;
}

.faq-icon svg {
  width: 100%;
  height: 100%;
  stroke: var(--workshop-blue);
}

.faq-title {
  font-family: var(--font-primary);
  font-weight: 700;
  font-size: 14px;
  color: var(--deep-navy);
  margin-bottom: 6px;
  transition: color 0.3s ease;
}

.faq-text {
  font-size: 13px;
  color: var(--steel-gray);
  line-height: 1.6;
  margin-top: 6px;
}

.achievements-stack {
  max-width: 900px;
  margin: 0 auto;
  padding: 0 80px;
}

.achievement-card {
  width: 100%;
  background: rgba(255, 255, 255, 0.98);
  backdrop-filter: blur(16px);
  border-radius: 20px;
  border: 1px solid rgba(14, 165, 233, 0.08);
  box-shadow: 0 16px 48px rgba(30, 58, 95, 0.06);
  margin-bottom: -15px;
  padding: 0;
  position: relative;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  overflow: hidden;
}

.achievement-card:hover {
  transform: translateY(-4px);
  z-index: 10;
}

.achievement-accent {
  height: 4px;
  background: linear-gradient(90deg, var(--workshop-blue), var(--lavender-glow));
  border-radius: 4px 4px 0 0;
}

.achievement-content {
  display: flex;
  align-items: center;
  padding: 24px;
  gap: 24px;
}

.achievement-icon {
  width: 48px;
  height: 48px;
  flex-shrink: 0;
}

.achievement-icon svg {
  width: 100%;
  height: 100%;
  stroke: var(--workshop-blue);
}

.achievement-image {
  width: 140px;
  height: 100px;
  border-radius: 16px;
  overflow: hidden;
  flex-shrink: 0;
}

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

.achievement-info {
  flex: 1;
}

.achievement-value {
  font-family: var(--font-primary);
  font-weight: 700;
  font-size: 40px;
  color: var(--workshop-blue);
  line-height: 1;
}

.achievement-label {
  font-family: var(--font-primary);
  font-size: 13px;
  color: var(--muted-blue);
  margin-top: 4px;
}

.achievement-text {
  font-size: 14px;
  color: var(--steel-gray);
  line-height: 1.6;
  margin-top: 8px;
  max-width: 400px;
}

.team-node-graph {
  position: relative;
  min-height: 520px;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 40px 80px;
}

.team-center-node {
  width: 160px;
  height: 160px;
  background: rgba(14, 165, 233, 0.08);
  border: 2px solid var(--workshop-blue);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 16px 48px rgba(30, 58, 95, 0.12);
  position: relative;
  z-index: 10;
}

.team-center-inner {
  width: 120px;
  height: 120px;
  border: 1px solid rgba(167, 139, 250, 0.2);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.team-center-icon {
  width: 64px;
  height: 64px;
}

.team-center-icon svg {
  width: 100%;
  height: 100%;
  stroke: white;
}

.team-node {
  position: absolute;
  background: rgba(255, 255, 255, 0.98);
  backdrop-filter: blur(16px);
  border-radius: 16px;
  border: 1px solid rgba(14, 165, 233, 0.08);
  padding: 18px 20px;
  box-shadow: 0 16px 48px rgba(30, 58, 95, 0.06);
  width: 180px;
  text-align: center;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.team-node:hover {
  transform: scale(1.06);
  z-index: 20;
}

.team-node:nth-child(2) { top: 20px; left: 50%; transform: translateX(-50%); }
.team-node:nth-child(3) { top: 100px; right: 15%; }
.team-node:nth-child(4) { bottom: 100px; right: 15%; }
.team-node:nth-child(5) { bottom: 20px; left: 50%; transform: translateX(-50%); }
.team-node:nth-child(6) { bottom: 100px; left: 15%; }
.team-node:nth-child(7) { top: 100px; left: 15%; }

.team-node:hover:nth-child(2) { transform: translateX(-50%) scale(1.06); }
.team-node:hover:nth-child(5) { transform: translateX(-50%) scale(1.06); }

.team-node-image {
  height: 70px;
  border-radius: 12px;
  overflow: hidden;
  margin-bottom: 10px;
}

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

.team-node-icon {
  width: 40px;
  height: 40px;
  margin: 0 auto 10px;
}

.team-node-icon svg {
  width: 100%;
  height: 100%;
  stroke: var(--workshop-blue);
}

.team-node-name {
  font-family: var(--font-primary);
  font-weight: 700;
  font-size: 14px;
  color: var(--deep-navy);
  margin-bottom: 4px;
}

.team-node-role {
  font-size: 12px;
  color: var(--steel-gray);
  line-height: 1.5;
}

.contact-accordion {
  padding: 0 80px;
}

.accordion-item {
  background: rgba(255, 255, 255, 0.98);
  backdrop-filter: blur(16px);
  border-radius: 16px;
  border: 1px solid rgba(14, 165, 233, 0.08);
  box-shadow: 0 16px 48px rgba(30, 58, 95, 0.06);
  margin-bottom: 16px;
  overflow: hidden;
  transition: all 0.3s ease;
}

.accordion-item:hover {
  border-color: rgba(14, 165, 233, 0.15);
  box-shadow: 0 24px 64px rgba(14, 165, 233, 0.08);
}

.accordion-item.active {
  border-left: 4px solid var(--workshop-blue);
}

.accordion-header {
  display: flex;
  align-items: center;
  padding: 24px;
  cursor: pointer;
}

.accordion-icon {
  width: 44px;
  height: 44px;
  margin-right: 16px;
  flex-shrink: 0;
}

.accordion-icon svg {
  width: 100%;
  height: 100%;
  stroke: var(--workshop-blue);
}

.accordion-title {
  flex: 1;
  font-family: var(--font-primary);
  font-weight: 700;
  font-size: 16px;
  color: var(--deep-navy);
}

.accordion-chevron {
  width: 24px;
  height: 24px;
  transition: transform 0.3s ease;
}

.accordion-chevron svg {
  width: 100%;
  height: 100%;
  stroke: var(--muted-blue);
}

.accordion-item.active .accordion-chevron {
  transform: rotate(180deg);
}

.accordion-item.active .accordion-chevron svg {
  stroke: var(--workshop-blue);
}

.accordion-content {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
}

.accordion-item.active .accordion-content {
  max-height: 500px;
}

.accordion-accent {
  height: 4px;
  background: linear-gradient(90deg, var(--workshop-blue), var(--lavender-glow));
  margin-bottom: 16px;
  border-radius: 2px;
}

.accordion-image {
  height: 180px;
  border-radius: 16px;
  overflow: hidden;
  margin: 0 24px 16px;
}

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

.accordion-text {
  padding: 0 24px 24px;
  font-size: 16px;
  color: var(--steel-gray);
  line-height: 1.75;
}

.footer {
  background: var(--deep-navy);
  color: white;
  padding: 80px 0 40px;
}

.footer strong, .footer p {
  color: white;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 48px;
  padding: 0 80px;
  margin-bottom: 48px;
}

.footer-brand {
  max-width: 300px;
}

.footer-logo {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 20px;
}

.footer-logo-icon {
  width: 44px;
  height: 44px;
  background: linear-gradient(135deg, var(--workshop-blue), var(--lavender-glow));
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.footer-logo-icon svg {
  width: 24px;
  height: 24px;
}

.footer-logo-text {
  font-family: var(--font-primary);
  font-weight: 700;
  font-size: 15px;
  color: white;
}

.footer-text {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.7);
  line-height: 1.7;
}

.footer-title {
  font-family: var(--font-primary);
  font-weight: 700;
  font-size: 14px;
  color: white;
  margin-bottom: 20px;
}

.footer-links {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.footer-link {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.7);
  transition: color 0.2s ease;
}

.footer-link:hover {
  color: var(--workshop-blue);
}

.footer-contact-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin-bottom: 16px;
}

.footer-contact-icon {
  width: 20px;
  height: 20px;
  flex-shrink: 0;
  margin-top: 2px;
}

.footer-contact-icon svg {
  width: 100%;
  height: 100%;
  stroke: var(--workshop-blue);
}

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

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding: 24px 80px 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.footer-copyright {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.5);
}

.footer-legal {
  display: flex;
  gap: 24px;
}

.footer-legal-link {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.5);
  transition: color 0.2s ease;
}

.footer-legal-link:hover {
  color: var(--workshop-blue);
}

.cookie-banner {
  position: fixed;
  bottom: 24px;
  left: 24px;
  background: rgba(30, 58, 95, 0.98);
  backdrop-filter: blur(16px);
  border-radius: 20px;
  padding: 24px;
  max-width: 420px;
  box-shadow: 0 24px 64px rgba(0, 0, 0, 0.2);
  z-index: 9999;
  display: none;
}

.cookie-banner.show {
  display: block;
}

.cookie-title {
  font-family: var(--font-primary);
  font-weight: 700;
  font-size: 16px;
  color: white;
  margin-bottom: 8px;
}

.cookie-text {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.7);
  line-height: 1.6;
  margin-bottom: 16px;
}

.cookie-buttons {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.cookie-btn {
  padding: 10px 20px;
  border-radius: 12px;
  font-family: var(--font-primary);
  font-weight: 600;
  font-size: 13px;
  transition: all 0.25s ease;
}

.cookie-btn-accept {
  background: linear-gradient(135deg, var(--workshop-blue), var(--workshop-blue-dark));
  color: white;
}

.cookie-btn-accept:hover {
  box-shadow: 0 4px 16px rgba(14, 165, 233, 0.3);
  transform: translateY(-2px);
}

.cookie-btn-decline {
  background: transparent;
  border: 1px solid rgba(255, 255, 255, 0.2);
  color: white;
}

.cookie-btn-decline:hover {
  border-color: var(--workshop-blue);
  color: var(--workshop-blue);
}

.cookie-link {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.5);
  margin-top: 12px;
  display: block;
}

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

.reveal-fade {
  opacity: 0;
  transition: opacity 0.6s ease-out;
}

.reveal-up {
  opacity: 0;
  transform: translateY(24px);
  transition: all 0.65s ease-out;
}

.reveal-scale {
  opacity: 0;
  transform: scale(0.96);
  transition: all 0.6s ease-out;
}

.reveal-left {
  opacity: 0;
  transform: translateX(-24px);
  transition: all 0.6s ease-out;
}

.reveal-glassy {
  opacity: 0;
  transform: scale(0.9);
  border-radius: 50%;
  transition: all 0.5s ease-out;
}

.reveal-visible {
  opacity: 1;
  transform: translate(0) scale(1);
  border-radius: 0;
}

::-webkit-scrollbar {
  width: 8px;
}

::-webkit-scrollbar-track {
  background: rgba(14, 165, 233, 0.05);
}

::-webkit-scrollbar-thumb {
  background: linear-gradient(180deg, var(--workshop-blue), var(--workshop-blue-dark));
  border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
  opacity: 0.8;
}

@media (max-width: 1200px) {
  .services-grid {
    grid-template-columns: repeat(3, 1fr);
  }
  
  .faq-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .footer-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 1024px) {
  .header {
    width: 100%;
    height: 60px;
    top: 0;
    border-radius: 0;
    padding: 0 20px;
  }
  
  .nav-desktop {
    display: none;
  }
  
  .mobile-menu-toggle {
    display: flex;
  }
  
  .header-actions {
    display: none;
  }
  
  .logo-text {
    font-size: 13px;
  }
  
  .hero-content {
    grid-template-columns: 1fr;
    padding: 100px 40px 80px;
    text-align: center;
  }
  
  .hero-left {
    order: 1;
  }
  
  .hero-right {
    order: 2;
    height: 400px;
    margin-top: 40px;
  }
  
  .hero-title {
    font-size: 64px;
  }
  
  .hero-title-accent {
    font-size: 36px;
  }
  
  .hero-description {
    margin: 0 auto 32px;
  }
  
  .hero-markers {
    justify-content: center;
  }
  
  .hero-line {
    margin: 0 auto 32px;
  }
  
  .hero-buttons {
    justify-content: center;
  }
  
  .section {
    padding: 80px 0 60px;
  }
  
  .section-header {
    padding: 0 40px;
  }
  
  .section-title {
    font-size: 36px;
  }
  
  .services-grid,
  .faq-grid,
  .contact-accordion {
    padding: 0 40px;
  }
  
  .about-split {
    grid-template-columns: 1fr;
  }
  
  .about-left {
    padding: 40px;
    min-height: 400px;
  }
  
  .about-right {
    padding: 40px;
  }
  
  .process-timeline {
    padding: 40px;
  }
  
  .timeline-line {
    left: 20px;
  }
  
  .timeline-item {
    width: calc(100% - 60px);
    margin-left: 60px !important;
    margin-right: 0 !important;
    margin-top: 0 !important;
  }
  
  .timeline-dot {
    left: -40px;
    top: 24px;
    transform: translate(0, 0);
  }
  
  .portfolio-carousel {
    height: auto;
    padding: 40px;
    overflow: hidden;
  }
  
  .carousel-container {
    display: none;
  }
  
  .portfolio-list {
    display: flex;
    flex-direction: column;
    gap: 20px;
    width: 100%;
  }
  
  .portfolio-card-static {
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(16px);
    border-radius: 20px;
    overflow: hidden;
    display: flex;
    gap: 20px;
    padding: 20px;
  }
  
  .portfolio-card-static-image {
    width: 120px;
    height: 120px;
    border-radius: 16px;
    overflow: hidden;
    flex-shrink: 0;
  }
  
  .portfolio-card-static-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
  }
  
  .portfolio-card-static-content {
    flex: 1;
  }
  
  .testimonials-grid {
    grid-template-columns: 1fr;
    padding: 40px;
  }
  
  .testimonials-right {
    min-height: 300px;
  }
  
  .achievements-stack {
    padding: 0 40px;
  }
  
  .team-node-graph {
    padding: 40px;
    min-height: auto;
    flex-direction: column;
  }
  
  .team-center-node {
    margin-bottom: 40px;
  }
  
  .team-node {
    position: static;
    transform: none !important;
    width: 100%;
    margin-bottom: 16px;
  }
  
  .team-node:hover {
    transform: scale(1.02) !important;
  }
  
  .footer-grid {
    grid-template-columns: 1fr;
    gap: 32px;
    padding: 0 40px;
  }
  
  .footer-bottom {
    flex-direction: column;
    gap: 16px;
    padding: 24px 40px 0;
    text-align: center;
  }
  
  .cookie-banner {
    left: 16px;
    right: 16px;
    max-width: none;
  }
}

@media (max-width: 768px) {
  .services-grid {
    grid-template-columns: 1fr;
  }
  
  .faq-grid {
    grid-template-columns: 1fr;
  }
  
  .hero-title {
    font-size: 48px;
  }
  
  .hero-title-accent {
    font-size: 28px;
  }
  
  .hero-right {
    height: 300px;
  }
  
  .section-title {
    font-size: 28px;
  }
  
  .testimonials-title {
    font-size: 24px;
  }
  
  .achievement-content {
    flex-direction: column;
    text-align: center;
  }
  
  .achievement-info {
    width: 100%;
  }
  
  .footer {
    padding: 60px 0 32px;
  }
}

@media (max-width: 480px) {
  .hero-content {
    padding: 80px 20px 60px;
  }
  
  .hero-title {
    font-size: 40px;
  }
  
  .hero-buttons {
    flex-direction: column;
    width: 100%;
  }
  
  .btn-primary,
  .btn-secondary {
    width: 100%;
    text-align: center;
  }
  
  .section-header {
    padding: 0 20px;
  }
  
  .services-grid,
  .faq-grid,
  .contact-accordion,
  .about-left,
  .about-right,
  .process-timeline,
  .testimonials-grid,
  .achievements-stack,
  .team-node-graph {
    padding: 0 20px;
  }
  
  .footer-grid,
  .footer-bottom {
    padding: 0 20px;
  }
  
  .cookie-banner {
    bottom: 16px;
    left: 16px;
    right: 16px;
    padding: 20px;
  }
}

.page-hero {
  min-height: 280px;
  background: var(--sky-white);
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
  padding: 120px 80px 60px;
}

.page-hero .mesh-background {
  opacity: 0.5;
}

.page-hero-content {
  position: relative;
  z-index: 4;
  max-width: 560px;
}

.breadcrumbs {
  font-family: var(--font-mono);
  font-size: 12px;
  color: var(--muted-blue);
  letter-spacing: 0.08em;
  margin-bottom: 16px;
}

.page-hero-title {
  font-family: var(--font-primary);
  font-weight: 700;
  font-size: 48px;
  letter-spacing: -0.02em;
  color: var(--deep-navy);
  margin-bottom: 16px;
}

.page-hero-markers {
  display: flex;
  gap: 8px;
  margin-top: 16px;
}

.page-hero-marker {
  width: 12px;
  height: 6px;
  background: var(--workshop-blue);
  border-radius: 3px;
}

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

.form-label {
  display: block;
  font-family: var(--font-primary);
  font-weight: 600;
  font-size: 14px;
  color: var(--deep-navy);
  margin-bottom: 8px;
}

.form-input,
.form-textarea,
.form-select {
  width: 100%;
  padding: 14px 18px;
  border: 1px solid rgba(14, 165, 233, 0.15);
  border-radius: 12px;
  font-family: var(--font-primary);
  font-size: 15px;
  color: var(--steel-gray);
  background: white;
  transition: all 0.25s ease;
}

.form-input:focus,
.form-textarea:focus,
.form-select:focus {
  outline: none;
  border-color: var(--workshop-blue);
  box-shadow: 0 0 0 4px rgba(14, 165, 233, 0.1);
}

.form-input::placeholder,
.form-textarea::placeholder {
  color: var(--muted-blue);
}

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

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

@media (max-width: 480px) {
  .form-row {
    grid-template-columns: 1fr;
  }
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
  padding: 0 80px;
}

.contact-form-section {
  background: rgba(255, 255, 255, 0.98);
  backdrop-filter: blur(16px);
  border-radius: 24px;
  padding: 40px;
  border: 1px solid rgba(14, 165, 233, 0.08);
  box-shadow: 0 16px 48px rgba(30, 58, 95, 0.06);
}

.contact-form-title {
  font-family: var(--font-primary);
  font-weight: 700;
  font-size: 24px;
  color: var(--deep-navy);
  margin-bottom: 8px;
}

.contact-form-subtitle {
  font-size: 14px;
  color: var(--muted-blue);
  margin-bottom: 32px;
}

.contact-info-section {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.contact-info-card {
  background: rgba(255, 255, 255, 0.98);
  backdrop-filter: blur(16px);
  border-radius: 20px;
  padding: 24px;
  border: 1px solid rgba(14, 165, 233, 0.08);
  box-shadow: 0 16px 48px rgba(30, 58, 95, 0.06);
  display: flex;
  align-items: flex-start;
  gap: 16px;
}

.contact-info-icon {
  width: 48px;
  height: 48px;
  background: linear-gradient(135deg, var(--workshop-blue), var(--lavender-glow));
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.contact-info-icon svg {
  width: 24px;
  height: 24px;
  stroke: white;
}

.contact-info-label {
  font-family: var(--font-primary);
  font-weight: 700;
  font-size: 14px;
  color: var(--deep-navy);
  margin-bottom: 4px;
}

.contact-info-value {
  font-size: 14px;
  color: var(--steel-gray);
  line-height: 1.5;
}

.map-container {
  width: 100%;
  height: 300px;
  border-radius: 20px;
  overflow: hidden;
  margin-top: 24px;
}

.map-container iframe {
  width: 100%;
  height: 100%;
  border: none;
}

@media (max-width: 1024px) {
  .contact-grid {
    grid-template-columns: 1fr;
    padding: 0 40px;
  }
  
  .page-hero {
    padding: 100px 40px 40px;
  }
  
  .page-hero-title {
    font-size: 36px;
  }
}

@media (max-width: 768px) {
  .contact-grid {
    padding: 0 20px;
  }
  
  .page-hero {
    padding: 80px 20px 40px;
  }
  
  .page-hero-title {
    font-size: 28px;
  }
}

.thank-you-page {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 80px 20px;
}

.thank-you-content {
  max-width: 600px;
}

.thank-you-icon {
  width: 80px;
  height: 80px;
  background: linear-gradient(135deg, var(--workshop-blue), var(--lavender-glow));
  border-radius: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 32px;
}

.thank-you-icon svg {
  width: 40px;
  height: 40px;
  stroke: white;
}

.thank-you-title {
  font-family: var(--font-primary);
  font-weight: 700;
  font-size: 36px;
  color: var(--deep-navy);
  margin-bottom: 16px;
}

.thank-you-text {
  font-size: 17px;
  color: var(--steel-gray);
  line-height: 1.7;
  margin-bottom: 32px;
}

.legal-content {
  max-width: 800px;
  margin: 0 auto;
  padding: 40px 80px 80px;
}

.legal-title {
  font-family: var(--font-primary);
  font-weight: 700;
  font-size: 28px;
  color: var(--deep-navy);
  margin-bottom: 24px;
}

.legal-section {
  margin-bottom: 32px;
}

.legal-section-title {
  font-family: var(--font-primary);
  font-weight: 700;
  font-size: 18px;
  color: var(--deep-navy);
  margin-bottom: 12px;
}

.legal-text {
  font-size: 15px;
  color: var(--steel-gray);
  line-height: 1.8;
  margin-bottom: 16px;
}

.legal-list {
  list-style: disc;
  padding-left: 24px;
  margin-bottom: 16px;
}

.legal-list li {
  font-size: 15px;
  color: var(--steel-gray);
  line-height: 1.8;
  margin-bottom: 8px;
}

@media (max-width: 768px) {
  .legal-content {
    padding: 40px 20px 60px;
  }
  
  .legal-title {
    font-size: 24px;
  }
}
