@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,400;0,500;0,600;1,400;1,500&family=Fira+Code:wght@400;500&family=Nunito+Sans:wght@400;500;600;700&display=swap');
:root {
  --color-cream: #FEF9F3;
  --color-sand: #FEF3E2;
  --color-terracotta-deep: #78350F;
  --color-brown-warm: #92400E;
  --color-orange-muted: #B45309;
  --color-road-orange: #EA580C;
  --color-road-orange-dark: #C2410C;
  --color-sage-green: #6B8E6B;
  --color-white: #FFFFFF;
  --color-black: #1a1a1a;
  --font-editorial: 'Cormorant Garamond', Georgia, serif;
  --font-mono: 'Fira Code', monospace;
  --font-body: 'Nunito Sans', system-ui, sans-serif;
  --border-radius-organic: 24px;
  --border-radius-large: 48px;
  --shadow-soft: 0 24px 72px rgba(120, 53, 15, 0.08);
  --shadow-elevated: 0 40px 120px rgba(120, 53, 15, 0.1);
  --transition-smooth: 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-fast: 0.25s ease-out;
}
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}
strong, b {
  font-weight: inherit;
  color: inherit;
}
p, span, a, li, td, th {
  color: inherit;
}
html {
  scroll-behavior: smooth;
}
body {
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.75;
  color: var(--color-brown-warm);
  background-color: var(--color-cream);
  overflow-x: hidden;
}
::-webkit-scrollbar {
  width: 8px;
}
::-webkit-scrollbar-track {
  background: var(--color-sand);
}
::-webkit-scrollbar-thumb {
  background: linear-gradient(180deg, var(--color-road-orange), var(--color-road-orange-dark));
  border-radius: 4px;
}
::-webkit-scrollbar-thumb:hover {
  opacity: 0.8;
}
a {
  text-decoration: none;
  color: inherit;
}
ul {
  list-style: none;
}
img {
  max-width: 100%;
  height: auto;
  display: block;
}
button {
  font-family: inherit;
  cursor: pointer;
  border: none;
  background: none;
}
.header-sidebar {
  position: fixed;
  left: 0;
  top: 0;
  width: 280px;
  height: 100vh;
  background: rgba(254, 249, 243, 0.99);
  backdrop-filter: blur(20px);
  border-right: 1px solid rgba(234, 88, 12, 0.1);
  box-shadow: 8px 0 48px rgba(120, 53, 15, 0.06);
  border-radius: 0 48px 48px 0;
  z-index: 1000;
  display: flex;
  flex-direction: column;
  padding: 48px 32px;
  justify-content: space-between;
  overflow: hidden;
}
.sidebar-logo {
  flex-shrink: 0;
}
.logo-icon {
  width: 48px;
  height: 48px;
  background: linear-gradient(135deg, var(--color-road-orange), var(--color-sage-green));
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 16px rgba(234, 88, 12, 0.2);
}
.logo-icon svg {
  width: 28px;
  height: 28px;
  stroke: white;
  fill: none;
}
.company-name {
  font-family: var(--font-editorial);
  font-weight: 600;
  font-size: 14px;
  letter-spacing: 0.02em;
  color: var(--color-terracotta-deep);
  margin-top: 12px;
}
.sidebar-nav {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-top: 48px;
}
.nav-item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 14px 18px;
  border-radius: 24px;
  transition: all var(--transition-fast);
  cursor: pointer;
}
.nav-item:hover {
  background: rgba(234, 88, 12, 0.08);
  transform: translateX(4px);
}
.nav-item:hover .nav-icon {
  stroke: var(--color-road-orange);
}
.nav-item:hover .nav-text {
  color: var(--color-road-orange);
}
.nav-icon {
  width: 20px;
  height: 20px;
  stroke: rgba(148, 64, 14, 0.4);
  fill: none;
  stroke-width: 2;
  flex-shrink: 0;
}
.nav-text {
  font-family: var(--font-body);
  font-weight: 500;
  font-size: 14px;
  color: var(--color-brown-warm);
  transition: color var(--transition-fast);
}
.sidebar-cta {
  flex-shrink: 0;
}
.cta-button {
  width: 100%;
  padding: 14px 20px;
  background: linear-gradient(135deg, var(--color-road-orange), var(--color-road-orange-dark));
  color: white;
  font-family: var(--font-editorial);
  font-weight: 600;
  font-size: 14px;
  letter-spacing: 0.02em;
  border-radius: 28px;
  box-shadow: 0 4px 16px rgba(234, 88, 12, 0.25);
  transition: all var(--transition-fast);
  text-align: center;
  display: block;
}
.cta-button:hover {
  box-shadow: 0 8px 28px rgba(234, 88, 12, 0.35);
  transform: translateY(-2px);
}
.sidebar-phone {
  font-family: var(--font-mono);
  font-size: 11px;
  color: var(--color-road-orange);
  letter-spacing: 0.02em;
  margin-top: 12px;
  text-align: left;
}
.main-content {
  margin-left: 280px;
  min-height: 100vh;
  position: relative;
}
.particle-canvas {
  position: fixed;
  top: 0;
  left: 280px;
  width: calc(100% - 280px);
  height: 100vh;
  pointer-events: none;
  z-index: 0;
  overflow: hidden;
}
.hero-section {
  min-height: 100vh;
  background: var(--color-cream);
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
  padding: 120px 80px;
}
.hero-glow {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 800px;
  height: 800px;
  background: radial-gradient(circle, rgba(234, 88, 12, 0.06) 0%, transparent 60%);
  pointer-events: none;
}
.hero-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: 1400px;
  margin: 0 auto;
}
.hero-left {
  position: relative;
}
.hero-decor {
  margin-bottom: 28px;
}
.hero-decor svg {
  width: 56px;
  height: 56px;
  stroke: rgba(234, 88, 12, 0.4);
  fill: none;
  stroke-width: 2;
}
.hero-title-main {
  font-family: var(--font-editorial);
  font-weight: 600;
  font-size: 96px;
  line-height: 0.78;
  letter-spacing: 0.02em;
  color: var(--color-terracotta-deep);
  max-width: 520px;
}
.hero-title-sub {
  font-family: var(--font-editorial);
  font-weight: 600;
  font-size: 48px;
  line-height: 0.85;
  letter-spacing: 0.02em;
  color: var(--color-road-orange);
  margin-top: 8px;
}
.hero-code-line {
  font-family: var(--font-mono);
  font-size: 12px;
  color: rgba(148, 64, 14, 0.5);
  margin-top: 16px;
  letter-spacing: 0.02em;
}
.hero-description {
  font-size: 17px;
  color: var(--color-brown-warm);
  line-height: 1.75;
  max-width: 480px;
  margin-top: 20px;
}
.hero-markers {
  display: flex;
  gap: 12px;
  margin-top: 28px;
}
.hero-marker {
  width: 24px;
  height: 10px;
  background: var(--color-road-orange);
  border-radius: 5px;
  filter: drop-shadow(0 4px 12px rgba(234, 88, 12, 0.2));
}
.hero-line-accent {
  width: 200px;
  height: 4px;
  background: linear-gradient(90deg, var(--color-road-orange), var(--color-sage-green));
  border-radius: 2px;
  margin-top: 16px;
}
.hero-buttons {
  display: flex;
  gap: 12px;
  margin-top: 32px;
  flex-wrap: wrap;
}
.btn-primary {
  padding: 24px 52px;
  background: linear-gradient(135deg, var(--color-road-orange), var(--color-road-orange-dark));
  color: white;
  font-family: var(--font-editorial);
  font-weight: 600;
  font-size: 16px;
  letter-spacing: 0.02em;
  border-radius: 28px;
  box-shadow: 0 8px 32px rgba(234, 88, 12, 0.3);
  transition: all var(--transition-fast);
  display: inline-block;
  white-space: nowrap;
}
.btn-primary:hover {
  box-shadow: 0 12px 40px rgba(234, 88, 12, 0.4);
  transform: translateY(-2px);
}
.btn-secondary {
  padding: 22px 44px;
  background: transparent;
  border: 2px solid var(--color-terracotta-deep);
  color: var(--color-terracotta-deep);
  font-family: var(--font-body);
  font-weight: 600;
  border-radius: 28px;
  transition: all var(--transition-fast);
  display: inline-block;
  white-space: nowrap;
}
.btn-secondary:hover {
  border-color: var(--color-road-orange);
  color: var(--color-road-orange);
  box-shadow: 0 6px 20px rgba(234, 88, 12, 0.15);
}
.hero-right {
  position: relative;
  height: 520px;
}
.bento-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-template-rows: repeat(2, 1fr);
  gap: 20px;
  height: 100%;
  position: relative;
}
.bento-item {
  border-radius: 24px;
  overflow: hidden;
  position: relative;
  transition: all var(--transition-smooth);
}
.bento-item:first-child {
  grid-column: span 1;
  grid-row: span 2;
  height: 100%;
  margin-top: -20px;
  margin-left: -16px;
  box-shadow: var(--shadow-elevated);
  z-index: 3;
}
.bento-item:hover {
  z-index: 10;
  transform: scale(1.02);
}
.bento-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(0.98);
}
.bento-item:first-child img {
  box-shadow: inset 0 0 40px rgba(234, 88, 12, 0.06);
}
.bento-stats {
  position: absolute;
  background: rgba(255, 255, 255, 0.98);
  backdrop-filter: blur(16px);
  border: 1px solid rgba(234, 88, 12, 0.08);
  border-radius: 20px;
  padding: 16px 20px;
  box-shadow: var(--shadow-soft);
  z-index: 5;
}
.bento-stats.top-right {
  top: 40px;
  right: 24px;
}
.bento-stats.bottom-right {
  bottom: 40px;
  right: 24px;
  z-index: 4;
}
.stats-label {
  font-family: var(--font-editorial);
  font-weight: 600;
  font-size: 12px;
  color: var(--color-terracotta-deep);
}
.stats-value {
  font-family: var(--font-mono);
  font-size: 11px;
  color: var(--color-road-orange);
}
.section {
  padding: 120px 80px 100px;
  position: relative;
  overflow: hidden;
}
.section-sand {
  background: var(--color-sand);
}
.section-dark {
  background: var(--color-terracotta-deep);
}
.section-dark .section-title,
.section-dark .section-subtitle {
  color: white;
}
.section-dark .section-description {
  color: rgba(255, 255, 255, 0.85);
}
.section-dark p {
  color: rgba(255, 255, 255, 0.85);
}
.section-header {
  text-align: center;
  margin-bottom: 64px;
}
.section-eyebrow {
  font-family: var(--font-mono);
  font-size: 12px;
  color: var(--color-orange-muted);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 12px;
}
.section-title {
  font-family: var(--font-editorial);
  font-weight: 600;
  font-size: 48px;
  letter-spacing: 0.02em;
  color: var(--color-terracotta-deep);
  margin-bottom: 16px;
}
.section-subtitle {
  font-family: var(--font-editorial);
  font-weight: 500;
  font-size: 24px;
  color: var(--color-road-orange);
}
.section-description {
  font-size: 16px;
  color: var(--color-brown-warm);
  max-width: 600px;
  margin: 0 auto;
}
.services-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}
.service-card {
  background: rgba(255, 255, 255, 0.97);
  backdrop-filter: blur(16px);
  border: 1px solid rgba(234, 88, 12, 0.08);
  border-radius: var(--border-radius-organic);
  padding: 24px;
  transition: all var(--transition-smooth);
  position: relative;
  z-index: 1;
}
.service-card:hover {
  flex-grow: 1.6;
  background: white;
  box-shadow: var(--shadow-elevated);
  border-color: rgba(234, 88, 12, 0.15);
  z-index: 10;
  transform: scale(1.04);
}
.services-container {
  display: flex;
}
.services-container .service-card:hover ~ .service-card {
  flex-grow: 0.6;
  opacity: 0.85;
  z-index: 1;
}
.service-icon {
  width: 44px;
  height: 44px;
  stroke: var(--color-road-orange);
  fill: none;
  stroke-width: 2;
  margin-bottom: 12px;
}
.service-title {
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 14px;
  color: #1a1a1a;
  margin-bottom: 6px;
}
.service-description {
  font-size: 13px;
  color: #333 !important;
  line-height: 1.6;
}
.service-price {
  font-family: var(--font-mono);
  font-size: 12px;
  color: var(--color-orange-muted);
  margin-top: 8px;
}
.service-link {
  color: var(--color-road-orange);
  font-size: 13px;
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  gap: 4px;
  margin-top: 12px;
  transition: all var(--transition-fast);
}
.service-link:hover {
  gap: 8px;
}
.about-split {
  display: grid;
  grid-template-columns: 55% 45%;
  gap: 0;
  position: relative;
}
.about-divider {
  position: absolute;
  left: 55%;
  top: 0;
  width: 8px;
  height: 100%;
  background: linear-gradient(180deg, var(--color-road-orange), var(--color-sage-green));
  transform: translateX(-50%);
}
.about-image {
  position: relative;
  border-radius: var(--border-radius-organic);
  overflow: hidden;
  height: 100%;
  min-height: 500px;
}
.about-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.about-image-decor {
  position: absolute;
  bottom: 40px;
  left: 40px;
  width: 56px;
  height: 56px;
  stroke: rgba(234, 88, 12, 0.3);
  fill: none;
  stroke-width: 2;
}
.about-image-block {
  position: absolute;
  top: 20px;
  left: -40px;
  width: 120px;
  height: 80px;
  background: rgba(234, 88, 12, 0.04);
  border-radius: 20px;
  z-index: 10;
  transition: all var(--transition-smooth);
}
.about-image:hover .about-image-block {
  z-index: 20;
  opacity: 1;
}
.about-content {
  padding: 80px 60px;
}
.about-decor {
  width: 48px;
  height: 48px;
  stroke: rgba(234, 88, 12, 0.4);
  fill: none;
  stroke-width: 2;
  margin-bottom: 24px;
}
.about-title {
  font-family: var(--font-editorial);
  font-weight: 600;
  font-size: 28px;
  letter-spacing: 0.02em;
  color: var(--color-terracotta-deep);
  margin-bottom: 20px;
}
.about-text {
  font-size: 16px;
  color: var(--color-brown-warm);
  line-height: 1.8;
}
.about-text-divider {
  width: 40px;
  height: 2px;
  background: rgba(234, 88, 12, 0.1);
  margin: 20px 0;
}
.btn-about {
  padding: 14px 28px;
  background: linear-gradient(135deg, var(--color-road-orange), var(--color-road-orange-dark));
  color: white;
  font-family: var(--font-editorial);
  font-weight: 600;
  border-radius: 28px;
  box-shadow: 0 6px 20px rgba(234, 88, 12, 0.2);
  transition: all var(--transition-fast);
  display: inline-block;
  margin-top: 24px;
}
.btn-about:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 32px rgba(234, 88, 12, 0.25);
}
.process-timeline {
  position: relative;
  padding: 40px 0;
}
.timeline-line {
  position: absolute;
  left: 50%;
  top: 0;
  width: 4px;
  height: 100%;
  background: linear-gradient(180deg, var(--color-road-orange), var(--color-sage-green), var(--color-road-orange));
  transform: translateX(-50%);
}
.process-timeline-container {
  display: flex;
  flex-direction: column;
  gap: 72px;
  position: relative;
}
.timeline-item {
  display: flex;
  justify-content: flex-end;
  padding-right: calc(50% + 60px);
  position: relative;
}
.timeline-item:nth-child(even) {
  justify-content: flex-start;
  padding-right: 0;
  padding-left: calc(50% + 60px);
  margin-top: 72px;
}
.timeline-card {
  background: rgba(255, 255, 255, 0.98);
  backdrop-filter: blur(16px);
  border-radius: var(--border-radius-organic);
  border: 1px solid rgba(234, 88, 12, 0.08);
  box-shadow: var(--shadow-soft);
  padding: 24px 28px;
  /* width: calc(50% - 60px); */
  position: relative;
  transition: all var(--transition-smooth);
}
.timeline-card:hover {
  z-index: 10;
  transform: scale(1.04);
  box-shadow: var(--shadow-elevated);
}
.timeline-dot {
  position: absolute;
  left: 50%;
  top: -7px;
  width: 14px;
  height: 14px;
  background: var(--color-road-orange);
  border-radius: 50%;
  border: 4px solid white;
  box-shadow: 0 0 0 4px var(--color-road-orange);
  transform: translateX(-50%);
  z-index: 5;
}
.timeline-icon {
  width: 44px;
  height: 44px;
  stroke: var(--color-road-orange);
  fill: none;
  stroke-width: 2;
  margin-bottom: 12px;
}
.timeline-title {
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 16px;
  color: var(--color-terracotta-deep);
}
.timeline-text {
  font-size: 14px;
  color: var(--color-brown-warm);
  margin-top: 6px;
  line-height: 1.6;
}
.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-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  padding: 0 80px;
}
.portfolio-list {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.portfolio-item {
  display: flex;
  align-items: center;
  padding: 20px 24px;
  background: rgba(255, 255, 255, 0.98);
  backdrop-filter: blur(16px);
  border: 1px solid rgba(234, 88, 12, 0.08);
  border-radius: 20px;
  transition: all var(--transition-fast);
  cursor: pointer;
}
.portfolio-item:hover {
  background: white;
  border-color: rgba(234, 88, 12, 0.15);
  box-shadow: 0 32px 96px rgba(234, 88, 12, 0.08);
}
.portfolio-item:hover .portfolio-chevron {
  stroke: var(--color-road-orange);
  transform: translateX(4px);
}
.portfolio-icon {
  width: 40px;
  height: 40px;
  stroke: var(--color-road-orange);
  fill: none;
  stroke-width: 2;
  flex-shrink: 0;
  margin-right: 16px;
}
.portfolio-item-title {
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 14px;
  color: var(--color-terracotta-deep);
  flex: 1;
}
.portfolio-chevron {
  width: 20px;
  height: 20px;
  stroke: rgba(148, 64, 14, 0.3);
  fill: none;
  stroke-width: 2;
  transition: all var(--transition-fast);
}
.portfolio-reveal {
  position: relative;
  min-height: 320px;
}
.portfolio-image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 340px;
  border-radius: var(--border-radius-organic);
  box-shadow: var(--shadow-elevated);
  overflow: hidden;
  opacity: 0;
  transform: translateX(40px) scale(0.95);
  transition: all 0.4s ease;
}
.portfolio-image.visible {
  opacity: 1;
  transform: translateX(0) scale(1);
}
.portfolio-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.portfolio-image-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(rgba(234, 88, 12, 0.1) 0%, transparent 40%);
}
.portfolio-badge {
  position: absolute;
  bottom: 24px;
  left: 24px;
  padding: 10px 20px;
  background: rgba(234, 88, 12, 0.9);
  color: white;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 20px;
  border-radius: 50px;
}
.portfolio-description {
  font-size: 14px;
  color: var(--color-brown-warm);
  line-height: 1.6;
  padding-top: 16px;
}
.testimonials-carousel {
  position: relative;
  height: 480px;
  display: flex;
  justify-content: center;
  align-items: center;
  perspective: 1400px;
  margin-top: 48px;
}
.carousel-track {
  position: relative;
  width: 300px;
  height: 100%;
}
.testimonial-card {
  position: absolute;
  width: 300px;
  background: rgba(255, 255, 255, 0.98);
  backdrop-filter: blur(16px);
  border: 1px solid rgba(234, 88, 12, 0.08);
  border-radius: var(--border-radius-organic);
  box-shadow: var(--shadow-soft);
  overflow: hidden;
  transition: all 0.5s ease;
}
.testimonial-card.active {
  transform: scale(1.04);
  z-index: 100;
  box-shadow: 0 40px 120px rgba(234, 88, 12, 0.12);
}
.testimonial-image {
  height: 120px;
  border-radius: var(--border-radius-organic) var(--border-radius-organic) 0 0;
  overflow: hidden;
}
.testimonial-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.testimonial-content {
  padding: 24px;
}
.testimonial-icon {
  width: 40px;
  height: 40px;
  stroke: var(--color-road-orange);
  fill: none;
  stroke-width: 2;
  margin-bottom: 12px;
}
.testimonial-title {
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 16px;
  color: var(--color-terracotta-deep);
}
.testimonial-role {
  font-family: var(--font-body);
  font-size: 12px;
  color: var(--color-orange-muted);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-top: 4px;
}
.testimonial-text {
  font-size: 13px;
  color: var(--color-brown-warm);
  margin-top: 8px;
  line-height: 1.5;
}
.testimonial-stars {
  display: flex;
  gap: 4px;
  margin-top: 8px;
}
.star {
  width: 16px;
  height: 16px;
  fill: var(--color-road-orange);
}
.testimonial-accent {
  height: 4px;
  width: 100%;
  background: linear-gradient(90deg, var(--color-road-orange), var(--color-sage-green));
  border-radius: 0 0 var(--border-radius-organic) var(--border-radius-organic);
}
.carousel-nav {
  position: absolute;
  width: 52px;
  height: 52px;
  background: rgba(255, 255, 255, 0.98);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(234, 88, 12, 0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all var(--transition-fast);
  z-index: 10;
}
.carousel-nav:hover {
  background: white;
  box-shadow: var(--shadow-soft);
}
.carousel-nav svg {
  width: 24px;
  height: 24px;
  stroke: var(--color-road-orange);
  fill: none;
  stroke-width: 2;
}
.carousel-nav.prev {
  left: -80px;
  top: 50%;
  transform: translateY(-50%);
}
.carousel-nav.next {
  right: -80px;
  top: 50%;
  transform: translateY(-50%);
}
.faq-masonry {
  columns: 3;
  column-gap: 24px;
}
.faq-card {
  background: rgba(255, 255, 255, 0.98);
  backdrop-filter: blur(16px);
  border: 1px solid rgba(234, 88, 12, 0.08);
  border-radius: var(--border-radius-organic);
  box-shadow: var(--shadow-soft);
  margin-bottom: 24px;
  break-inside: avoid;
  overflow: hidden;
  transition: all var(--transition-smooth);
}
.faq-card:hover {
  transform: scale(1.03);
  border-color: rgba(234, 88, 12, 0.15);
  box-shadow: 0 40px 120px rgba(234, 88, 12, 0.08);
}
.faq-card-image {
  height: 200px;
  border-radius: var(--border-radius-organic) var(--border-radius-organic) 0 0;
  overflow: hidden;
}
.faq-card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.faq-card-content {
  padding: 20px 22px;
}
.faq-card-title {
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 16px;
  color: var(--color-terracotta-deep);
}
.faq-category {
  font-family: var(--font-body);
  font-size: 11px;
  color: var(--color-road-orange);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-top: 6px;
}
.faq-card-text {
  font-size: 14px;
  color: var(--color-brown-warm);
  margin-top: 8px;
  line-height: 1.65;
}
.faq-card-accent {
  height: 4px;
  width: 40px;
  background: linear-gradient(90deg, var(--color-road-orange), var(--color-sage-green));
  margin: 0 22px 22px;
  border-radius: 2px;
}
.faq-simple {
  padding: 22px;
}
.faq-simple-icon {
  width: 48px;
  height: 48px;
  stroke: var(--color-road-orange);
  fill: none;
  stroke-width: 2;
  margin-bottom: 14px;
}
.faq-simple-title {
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 15px;
  color: var(--color-terracotta-deep);
}
.faq-simple-text {
  font-size: 13px;
  color: var(--color-brown-warm);
  margin-top: 6px;
  line-height: 1.5;
}
.faq-simple-accent {
  height: 4px;
  width: 100%;
  background: linear-gradient(90deg, var(--color-road-orange), var(--color-sage-green));
  margin-bottom: 14px;
  border-radius: 2px;
}
.achievements-stacking {
  display: flex;
  flex-direction: row;
  align-items: stretch;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
}
.achievement-card {
  flex: 1;
  min-width: 280px;
  max-width: 400px;
  background: rgba(255, 255, 255, 0.98);
  backdrop-filter: blur(16px);
  border-radius: var(--border-radius-organic);
  border: 1px solid rgba(234, 88, 12, 0.08);
  box-shadow: var(--shadow-soft);
  overflow: hidden;
  transition: all var(--transition-smooth);
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 24px 20px;
}
.achievement-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}
.achievement-accent {
  height: 4px;
  width: 100%;
  max-width: 60px;
  background: linear-gradient(90deg, var(--color-road-orange), var(--color-sage-green));
  border-radius: 4px 4px 0 0;
  margin-bottom: 16px;
}
.achievement-icon {
  width: 48px;
  height: 48px;
  stroke: var(--color-road-orange);
  fill: none;
  stroke-width: 2;
  flex-shrink: 0;
  margin-bottom: 16px;
}
.achievement-image {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  flex-shrink: 0;
  overflow: hidden;
  margin-bottom: 16px;
}
.achievement-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(0.98);
}
.achievement-content {
  padding: 0;
}
.achievement-value {
  font-family: var(--font-editorial);
  font-weight: 600;
  font-size: 40px;
  color: var(--color-road-orange) !important;
}
.achievement-label {
  font-family: var(--font-body);
  font-size: 13px;
  color: var(--color-terracotta) !important;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-top: 4px;
}
.achievement-text {
  font-size: 14px;
  color: var(--color-brown-warm) !important;
  margin-top: 8px;
  line-height: 1.6;
  opacity: 0.85;
}
.team-nodes {
  position: relative;
  min-height: 520px;
  display: flex;
  justify-content: center;
  align-items: center;
}
.team-center {
  position: relative;
  z-index: 5;
}
.team-center-circle {
  width: 160px;
  height: 160px;
  background: rgba(234, 88, 12, 0.08);
  border: 2px solid var(--color-road-orange);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 32px 96px rgba(120, 53, 15, 0.12);
}
.team-center-icon {
  width: 64px;
  height: 64px;
  stroke: var(--color-cream);
  fill: none;
  stroke-width: 2;
}
.team-center-inner {
  position: absolute;
  width: 120px;
  height: 120px;
  border: 1px solid rgba(107, 142, 107, 0.2);
  border-radius: 50%;
}
.team-center-outer {
  position: absolute;
  width: 200px;
  height: 200px;
  border: 1px solid rgba(234, 88, 12, 0.08);
  border-radius: 50%;
}
.team-periphery {
  position: absolute;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 24px;
  width: 100%;
  max-width: 600px;
}
.team-card {
  background: rgba(255, 255, 255, 0.98);
  backdrop-filter: blur(16px);
  border-radius: 20px;
  border: 1px solid rgba(234, 88, 12, 0.08);
  padding: 18px 20px;
  box-shadow: var(--shadow-soft);
  width: calc(33.333% - 16px);
  text-align: center;
  transition: all var(--transition-smooth);
}
.team-card:hover {
  z-index: 10;
  transform: scale(1.06);
  opacity: 1;
  box-shadow: var(--shadow-elevated);
}
.team-card-image {
  height: 70px;
  border-radius: 16px;
  margin-bottom: 10px;
  overflow: hidden;
}
.team-card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.team-card-icon {
  width: 40px;
  height: 40px;
  stroke: var(--color-road-orange);
  fill: none;
  stroke-width: 2;
  margin: 0 auto 10px;
}
.team-card-title {
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 14px;
  color: var(--color-terracotta-deep);
}
.team-card-text {
  font-size: 12px;
  color: var(--color-brown-warm);
  margin-top: 4px;
  line-height: 1.5;
}
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
  padding: 0 80px;
}
.contact-panel {
  background: rgba(255, 255, 255, 0.98);
  backdrop-filter: blur(16px);
  border-radius: 20px;
  border: 1px solid rgba(234, 88, 12, 0.08);
  box-shadow: var(--shadow-soft);
  overflow: hidden;
  transition: all var(--transition-fast);
}
.contact-panel:hover {
  border-color: rgba(234, 88, 12, 0.15);
  box-shadow: 0 32px 96px rgba(234, 88, 12, 0.08);
}
.contact-panel-header {
  display: flex;
  align-items: center;
  padding: 24px;
  cursor: pointer;
}
.contact-panel-icon {
  width: 44px;
  height: 44px;
  stroke: var(--color-road-orange);
  fill: none;
  stroke-width: 2;
  margin-right: 16px;
}
.contact-panel-title {
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 16px;
  color: var(--color-terracotta-deep);
  flex: 1;
}
.contact-panel-chevron {
  width: 20px;
  height: 20px;
  stroke: var(--color-orange-muted);
  fill: none;
  stroke-width: 2;
  transition: all 0.3s;
}
.contact-panel.expanded .contact-panel-chevron {
  transform: rotate(180deg);
  stroke: var(--color-road-orange);
}
.contact-panel.expanded {
  border-left: 4px solid var(--color-road-orange);
}
.contact-panel-content {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease;
}
.contact-panel.expanded .contact-panel-content {
  max-height: 400px;
}
.contact-panel-image {
  height: 180px;
  border-radius: 20px;
  margin: 16px;
  overflow: hidden;
}
.contact-panel-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.contact-panel-text {
  font-size: 16px;
  color: var(--color-brown-warm);
  line-height: 1.75;
  margin-top: 12px;
  padding: 0 16px 16px;
}
.contact-panel-accent {
  height: 4px;
  width: 100%;
  background: linear-gradient(90deg, var(--color-road-orange), var(--color-sage-green));
  margin: 0 16px 16px;
  border-radius: 2px;
}
.contact-form-section {
  padding: 80px 80px;
}
.contact-form {
  max-width: 600px;
  margin: 0 auto;
  background: rgba(255, 255, 255, 0.98);
  backdrop-filter: blur(16px);
  border-radius: var(--border-radius-organic);
  border: 1px solid rgba(234, 88, 12, 0.08);
  box-shadow: var(--shadow-soft);
  padding: 48px;
}
.form-group {
  margin-bottom: 24px;
}
.form-label {
  font-family: var(--font-body);
  font-weight: 500;
  font-size: 14px;
  color: var(--color-terracotta-deep);
  margin-bottom: 8px;
  display: block;
}
.form-input,
.form-textarea,
.form-select {
  width: 100%;
  padding: 14px 18px;
  font-family: var(--font-body);
  font-size: 16px;
  color: var(--color-brown-warm);
  background: white;
  border: 1px solid rgba(234, 88, 12, 0.15);
  border-radius: 16px;
  transition: all var(--transition-fast);
  outline: none;
}
.form-input:focus,
.form-textarea:focus,
.form-select:focus {
  border-color: var(--color-road-orange);
  box-shadow: 0 0 0 3px rgba(234, 88, 12, 0.1);
}
.form-textarea {
  min-height: 150px;
  resize: vertical;
}
.form-submit {
  width: 100%;
  padding: 18px;
  background: linear-gradient(135deg, var(--color-road-orange), var(--color-road-orange-dark));
  color: white;
  font-family: var(--font-editorial);
  font-weight: 600;
  font-size: 16px;
  letter-spacing: 0.02em;
  border-radius: 28px;
  box-shadow: 0 6px 24px rgba(234, 88, 12, 0.25);
  transition: all var(--transition-fast);
}
.form-submit:hover {
  box-shadow: 0 10px 32px rgba(234, 88, 12, 0.35);
  transform: translateY(-2px);
}
.footer {
  background: var(--color-cream);
  padding: 64px 80px 32px;
  border-top: 1px solid rgba(234, 88, 12, 0.1);
  margin-left: 280px;
}
.footer-content {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 48px;
  margin-bottom: 48px;
}
.footer-brand-name {
  font-family: var(--font-editorial);
  font-weight: 600;
  font-size: 18px;
  color: var(--color-terracotta-deep);
  margin-top: 16px;
}
.footer-brand-text {
  font-size: 14px;
  color: var(--color-brown-warm);
  margin-top: 12px;
  line-height: 1.6;
}
.footer-title {
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 14px;
  color: var(--color-terracotta-deep);
  margin-bottom: 16px;
}
.footer-links {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.footer-link {
  font-size: 14px;
  color: var(--color-brown-warm);
  transition: color var(--transition-fast);
}
.footer-link:hover {
  color: var(--color-road-orange);
}
.footer-contact-item {
  font-family: var(--font-mono);
  font-size: 13px;
  color: var(--color-brown-warm);
  margin-bottom: 8px;
}
.footer-contact-item a {
  color: var(--color-road-orange);
}
.footer-bottom {
  padding-top: 32px;
  border-top: 1px solid rgba(234, 88, 12, 0.08);
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.footer-copyright {
  font-size: 13px;
  color: var(--color-brown-warm);
}
.footer-legal {
  display: flex;
  gap: 24px;
}
.footer-legal a {
  font-size: 13px;
  color: var(--color-brown-warm);
  transition: color var(--transition-fast);
}
.footer-legal a:hover {
  color: var(--color-road-orange);
}
.cookie-banner {
  position: fixed;
  bottom: 24px;
  left: 304px;
  width: 400px;
  background: white;
  border-radius: 20px;
  border: 1px solid rgba(234, 88, 12, 0.1);
  box-shadow: 0 24px 72px rgba(120, 53, 15, 0.15);
  padding: 24px;
  z-index: 9999;
  display: block;
}
.cookie-banner.hidden {
  display: none;
}
.cookie-title {
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 16px;
  color: var(--color-terracotta-deep);
  margin-bottom: 12px;
}
.cookie-text {
  font-size: 14px;
  color: var(--color-brown-warm);
  line-height: 1.6;
  margin-bottom: 16px;
}
.cookie-categories {
  margin-bottom: 16px;
}
.cookie-category {
  font-size: 13px;
  color: var(--color-brown-warm);
  margin-bottom: 4px;
}
.cookie-category strong {
  font-weight: 600;
}
.cookie-buttons {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}
.cookie-btn {
  padding: 12px 24px;
  border-radius: 20px;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 14px;
  transition: all var(--transition-fast);
  cursor: pointer;
}
.cookie-btn.accept {
  background: linear-gradient(135deg, var(--color-road-orange), var(--color-road-orange-dark));
  color: white;
}
.cookie-btn.accept:hover {
  box-shadow: 0 6px 20px rgba(234, 88, 12, 0.3);
}
.cookie-btn.decline {
  background: transparent;
  border: 1px solid var(--color-brown-warm);
  color: var(--color-brown-warm);
}
.cookie-btn.decline:hover {
  border-color: var(--color-road-orange);
  color: var(--color-road-orange);
}
.cookie-link {
  font-size: 12px;
  color: var(--color-road-orange);
  text-decoration: underline;
  margin-top: 12px;
  display: block;
}
.page-hero {
  min-height: 280px;
  background: var(--color-cream);
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
  padding: 40px 80px;
}
.page-hero-content {
  position: relative;
  z-index: 2;
}
.breadcrumbs {
  font-family: var(--font-mono);
  font-size: 12px;
  color: var(--color-orange-muted);
  letter-spacing: 0.08em;
  margin-bottom: 12px;
}
.breadcrumbs a {
  color: var(--color-orange-muted);
  transition: color var(--transition-fast);
}
.breadcrumbs a:hover {
  color: var(--color-road-orange);
}
.page-hero-title {
  font-family: var(--font-editorial);
  font-weight: 600;
  font-size: 48px;
  letter-spacing: 0.02em;
  color: var(--color-terracotta-deep);
  display: flex;
  align-items: center;
  gap: 12px;
}
.hero-frame {
  width: 24px;
  height: 24px;
  stroke: var(--color-road-orange);
  fill: none;
  stroke-width: 2;
  display: inline-block;
}
.page-hero-markers {
  display: flex;
  gap: 8px;
  margin-top: 16px;
}
.page-hero-marker {
  width: 12px;
  height: 6px;
  background: var(--color-road-orange);
  border-radius: 3px;
}
.thank-you-section {
  min-height: calc(100vh - 200px);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 80px;
}
.thank-you-icon {
  width: 80px;
  height: 80px;
  stroke: var(--color-road-orange);
  fill: none;
  stroke-width: 2;
  margin-bottom: 24px;
}
.thank-you-title {
  font-family: var(--font-editorial);
  font-weight: 600;
  font-size: 48px;
  color: var(--color-terracotta-deep);
  margin-bottom: 16px;
}
.thank-you-text {
  font-size: 18px;
  color: var(--color-brown-warm);
  max-width: 500px;
  margin-bottom: 32px;
}
.legal-content {
  max-width: 800px;
  margin: 0 auto;
  padding: 80px 40px;
}
.legal-title {
  font-family: var(--font-editorial);
  font-weight: 600;
  font-size: 36px;
  color: var(--color-terracotta-deep);
  margin-bottom: 24px;
}
.legal-section {
  margin-bottom: 32px;
}
.legal-section-title {
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 18px;
  color: var(--color-terracotta-deep);
  margin-bottom: 12px;
}
.legal-section-text {
  font-size: 15px;
  color: var(--color-brown-warm);
  line-height: 1.8;
}
.mobile-menu {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(254, 249, 243, 0.99);
  backdrop-filter: blur(24px);
  z-index: 9999;
  display: none;
  flex-direction: column;
  padding-top: 100px;
  opacity: 0;
  transform: scale(0.95);
  transition: all 0.3s ease;
}
.mobile-menu.open {
  display: flex;
  opacity: 1;
  transform: scale(1);
}
.mobile-menu-header {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 64px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 20px;
  background: rgba(254, 249, 243, 0.99);
}
.mobile-logo {
  display: flex;
  align-items: center;
  gap: 12px;
}
.mobile-logo-icon {
  width: 36px;
  height: 36px;
  background: linear-gradient(135deg, var(--color-road-orange), var(--color-sage-green));
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.mobile-logo-icon svg {
  width: 20px;
  height: 20px;
  stroke: white;
  fill: none;
}
.mobile-logo-text {
  font-family: var(--font-editorial);
  font-weight: 600;
  font-size: 13px;
  color: var(--color-terracotta-deep);
}
.mobile-close {
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
}
.mobile-close svg {
  width: 24px;
  height: 24px;
  stroke: var(--color-road-orange);
  fill: none;
  stroke-width: 2;
}
.mobile-nav {
  padding: 0 40px;
}
.mobile-nav-item {
  font-family: var(--font-editorial);
  font-weight: 600;
  font-size: 28px;
  color: var(--color-terracotta-deep);
  padding: 16px 0;
  position: relative;
  opacity: 0;
  transform: translateY(20px);
  transition: all 0.3s ease;
  display: block;
}
.mobile-menu.open .mobile-nav-item {
  opacity: 1;
  transform: translateY(0);
}
.mobile-nav-item::after {
  content: '';
  position: absolute;
  bottom: 8px;
  left: 0;
  width: 60px;
  height: 2px;
  background: var(--color-road-orange);
}
.mobile-contact {
  margin-top: auto;
  padding: 32px 40px;
}
.mobile-phone {
  font-family: var(--font-mono);
  font-size: 14px;
  color: var(--color-road-orange);
}
.mobile-address {
  font-size: 13px;
  color: var(--color-brown-warm);
  margin-top: 8px;
}
.mobile-overlay {
  position: fixed;
  top: 0;
  left: 280px;
  right: 0;
  bottom: 0;
  background: linear-gradient(90deg, rgba(234, 88, 12, 0.05), transparent);
  pointer-events: none;
  z-index: 1;
}
.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.5s ease-out;
}
.reveal-left {
  opacity: 0;
  transform: translateX(-24px);
  transition: all 0.6s ease-out;
}
.reveal-visible {
  opacity: 1;
  transform: translate(0) scale(1);
}
@media (max-width: 1200px) {
  .services-grid {
    grid-template-columns: repeat(3, 1fr);
  }
  .about-split {
    grid-template-columns: 1fr;
  }
  .about-image {
    min-height: 400px;
  }
  .about-divider {
    display: none;
  }
  .about-content {
    padding: 48px 40px;
  }
  .portfolio-grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }
  .contact-grid {
    grid-template-columns: 1fr;
  }
  .footer-content {
    grid-template-columns: 1fr 1fr;
  }
  .faq-masonry {
    columns: 2;
  }
}
@media (max-width: 1024px) {
  .header-sidebar {
    display: none;
  }
  .mobile-overlay {
    display: none;
  }
  .mobile-menu {
    display: none;
  }
  .mobile-menu.open {
    display: flex;
  }
  .main-content {
    margin-left: 0;
  }
  .footer {
    margin-left: 0;
  }
  .particle-canvas {
    left: 0;
    width: 100%;
  }
  .hero-section {
    padding: 80px 40px;
  }
  .hero-content {
    grid-template-columns: 1fr;
  }
  .hero-right {
    display: none;
  }
  .section {
    padding: 80px 40px;
  }
  .services-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .timeline-line {
    left: 20px;
  }
  .timeline-item {
    padding-left: 60px !important;
    padding-right: 0 !important;
    justify-content: flex-start !important;
  }
  .timeline-dot {
    left: 20px !important;
  }
  .timeline-card {
    width: 100%;
  }
  .testimonials-carousel {
    height: auto;
    overflow: hidden;
  }
  .carousel-track {
    display: flex;
    flex-direction: column;
    gap: 24px;
    height: auto;
  }
  .testimonial-card {
    position: relative;
    width: 100%;
    transform: none !important;
    z-index: 1 !important;
  }
  .carousel-nav {
    display: none;
  }
  .cookie-banner {
    left: 24px;
    width: calc(100% - 48px);
  }
  .footer-content {
    grid-template-columns: 1fr;
    gap: 32px;
  }
  .footer-bottom {
    flex-direction: column;
    gap: 16px;
    text-align: center;
  }
}
@media (max-width: 768px) {
  .hero-section {
    padding: 60px 24px;
    min-height: auto;
  }
  .hero-title-main {
    font-size: 64px;
  }
  .hero-title-sub {
    font-size: 32px;
  }
  .hero-buttons {
    flex-direction: column;
  }
  .btn-primary,
  .btn-secondary {
    width: 100%;
    text-align: center;
  }
  .section {
    padding: 60px 24px;
  }
  .section-title {
    font-size: 36px;
  }
  .services-grid {
    grid-template-columns: 1fr;
  }
  .page-hero {
    padding: 40px 24px;
  }
  .page-hero-title {
    font-size: 32px;
  }
  .contact-form {
    padding: 32px 24px;
  }
  .footer {
    padding: 48px 24px 24px;
  }
  .faq-masonry {
    columns: 1;
  }
  .team-periphery {
    flex-direction: column;
    gap: 16px;
  }
  .team-card {
    width: 100%;
  }
}
.hamburger-btn {
  display: none;
  position: fixed;
  top: 16px;
  right: 16px;
  z-index: 50;
  width: 48px;
  height: 48px;
  background: rgba(254, 243, 226, 0.97);
  border-radius: 9999px;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  border: none;
  box-shadow: 0 4px 16px rgba(234, 88, 12, 0.15);
  transition: all var(--transition-fast);
}
.hamburger-btn:hover {
  background: white;
  box-shadow: 0 8px 28px rgba(234, 88, 12, 0.2);
  transform: scale(1.05);
}
.hamburger-btn svg {
  width: 24px;
  height: 24px;
  stroke: #EA580C;
  fill: none;
  stroke-width: 2;
}
.hamburger-btn line {
  transition: all 0.3s ease;
}
@media (max-width: 1024px) {
  .hamburger-btn {
    display: flex;
  }
}
