:root {
  --color-bg: #FFFFFF;
  --color-card: #FFFFFF;
  --color-text-primary: #78350F;
  --color-text-secondary: #92400E;
  --color-accent: #D97706;
  --color-accent-dark: #B45309;
  --color-border: #FDE68A;
  --color-honey: #FCD34D;
  --color-cream: #FEF3C7;
  --color-deep: #451A03;
  --color-overlay: rgba(69, 26, 3, 0.65);
  --font-heading: 'Outfit', 'Helvetica Neue', sans-serif;
  --font-body: 'Manrope', 'Helvetica Neue', sans-serif;
  --font-mono: 'JetBrains Mono', 'Courier New', monospace;
  --shadow-card: 0 16px 40px rgba(217, 119, 6, 0.12), 0 4px 12px rgba(217, 119, 6, 0.06);
  --shadow-card-hover: 0 28px 70px rgba(217, 119, 6, 0.22), 0 8px 22px rgba(217, 119, 6, 0.12);
  --shadow-deep: 0 32px 80px rgba(69, 26, 3, 0.18);
  --radius-sm: 12px;
  --radius-md: 20px;
  --radius-lg: 28px;
  --radius-xl: 40px;
  --sidebar-w: 260px;
  --sidebar-w-collapsed: 80px;
  --transition-base: 0.3s cubic-bezier(0.2, 0.8, 0.2, 1);
  --transition-spring: 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
}

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

html, body {
  margin: 0;
  padding: 0;
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.65;
  color: var(--color-text-primary);
  background: var(--color-bg);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  scroll-behavior: smooth;
  overflow-x: hidden;
}

strong, p, span, h1, h2, h3, h4, h5, h6, a, li, button, label, input, textarea {
  color: inherit;
}

a {
  color: var(--color-accent);
  text-decoration: none;
  transition: color var(--transition-base);
}

a:hover {
  color: var(--color-accent-dark);
}

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

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

h1, h2, h3, h4 {
  font-family: var(--font-heading);
  color: var(--color-text-primary);
  margin: 0 0 0.5em;
  line-height: 1.1;
  letter-spacing: -0.02em;
}

h1 {
  font-size: clamp(40px, 6vw, 96px);
  font-weight: 800;
  letter-spacing: -0.03em;
}

h2 {
  font-size: clamp(30px, 4vw, 60px);
  font-weight: 700;
}

h3 {
  font-size: clamp(20px, 2vw, 28px);
  font-weight: 600;
}

p {
  margin: 0 0 1em;
  font-size: 16px;
  color: var(--color-text-secondary);
}

.mono {
  font-family: var(--font-mono);
  font-size: 13px;
  letter-spacing: 0.02em;
}

.cap-label {
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--color-accent);
  display: inline-block;
  padding: 6px 14px;
  background: var(--color-cream);
  border-radius: 999px;
  border: 1px solid var(--color-border);
}

.app-shell {
  display: flex;
  min-height: 100vh;
}

.app-sidebar {
  position: fixed;
  top: 0;
  left: 0;
  bottom: 0;
  width: var(--sidebar-w);
  background: var(--color-bg);
  border-right: 3px solid var(--color-accent);
  box-shadow: 0 4px 24px rgba(217, 119, 6, 0.10);
  z-index: 100;
  display: flex;
  flex-direction: column;
  padding: 24px 18px;
  transition: width var(--transition-base);
}

.brand-block {
  display: flex;
  flex-direction: column;
  gap: 8px;
  padding-bottom: 22px;
  border-bottom: 1px solid var(--color-border);
  margin-bottom: 22px;
}

.brand-mark {
  width: 54px;
  height: 54px;
  border-radius: 14px;
  background: linear-gradient(135deg, var(--color-accent) 0%, var(--color-honey) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: 28px;
  color: #FFFFFF;
  box-shadow: 0 8px 22px rgba(217, 119, 6, 0.4);
  letter-spacing: -0.05em;
}

.brand-domain {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.04em;
  color: var(--color-text-secondary);
  margin-top: 2px;
  word-break: break-all;
}

.brand-name {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 17px;
  color: var(--color-text-primary);
  line-height: 1.25;
  letter-spacing: -0.01em;
}

.brand-name small {
  display: block;
  font-family: var(--font-body);
  font-weight: 500;
  font-size: 11px;
  color: var(--color-text-secondary);
  margin-top: 2px;
  letter-spacing: 0.04em;
}

.side-nav {
  display: flex;
  flex-direction: column;
  gap: 4px;
  flex: 1;
}

.side-nav a {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 14px;
  border-radius: 10px;
  font-family: var(--font-heading);
  font-weight: 500;
  font-size: 15px;
  color: var(--color-text-primary);
  transition: all var(--transition-base);
  border: 1px solid transparent;
}

.side-nav a:hover {
  background: var(--color-accent);
  color: #FFFFFF;
  transform: translateX(2px);
}

.side-nav a.active {
  background: var(--color-cream);
  color: var(--color-accent-dark);
  border-color: var(--color-border);
}

.side-nav .nav-icon {
  width: 20px;
  height: 20px;
  flex-shrink: 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--color-accent);
}

.side-nav a:hover .nav-icon {
  color: #FFFFFF;
}

.side-cta {
  margin-top: 18px;
  padding: 14px 18px;
  background: var(--color-accent);
  color: #FFFFFF;
  border-radius: 12px;
  text-align: center;
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 14px;
  box-shadow: 0 8px 24px rgba(217, 119, 6, 0.35);
  transition: all var(--transition-base);
  display: block;
  letter-spacing: 0.02em;
}

.side-cta:hover {
  background: var(--color-accent-dark);
  color: #FFFFFF;
  transform: translateY(-2px);
  box-shadow: 0 12px 32px rgba(217, 119, 6, 0.45);
}

.mobile-header {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  height: 64px;
  background: var(--color-bg);
  border-bottom: 2px solid var(--color-accent);
  z-index: 110;
  align-items: center;
  padding: 0 16px;
  box-shadow: 0 4px 16px rgba(217, 119, 6, 0.10);
}

.mobile-brand {
  display: flex;
  align-items: center;
  gap: 10px;
  flex: 1;
}

.mobile-brand .brand-mark {
  width: 40px;
  height: 40px;
  font-size: 20px;
}

.mobile-brand .brand-name {
  font-size: 14px;
}

.mobile-brand .brand-name small {
  font-size: 9px;
}

.burger-btn {
  width: 44px;
  height: 44px;
  border-radius: 10px;
  background: var(--color-accent);
  color: #FFFFFF;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  position: relative;
  flex-shrink: 0;
}

.burger-btn span {
  position: absolute;
  width: 22px;
  height: 2px;
  background: #FFFFFF;
  transition: all 0.3s ease;
}

.burger-btn span:nth-child(1) { top: 14px; }
.burger-btn span:nth-child(2) { top: 21px; }
.burger-btn span:nth-child(3) { top: 28px; }

.burger-btn[aria-expanded="true"] span:nth-child(1) {
  top: 21px;
  transform: rotate(45deg);
}

.burger-btn[aria-expanded="true"] span:nth-child(2) {
  opacity: 0;
}

.burger-btn[aria-expanded="true"] span:nth-child(3) {
  top: 21px;
  transform: rotate(-45deg);
}

.mobile-drawer {
  position: fixed;
  inset: 0;
  background: var(--color-bg);
  z-index: 105;
  padding: 88px 24px 40px;
  transform: translateX(100%);
  transition: transform var(--transition-base);
  overflow-y: auto;
}

.mobile-drawer.open {
  transform: translateX(0);
}

.mobile-drawer a {
  display: block;
  padding: 18px 16px;
  font-family: var(--font-heading);
  font-size: 22px;
  font-weight: 600;
  color: var(--color-text-primary);
  border-bottom: 1px solid var(--color-cream);
  transition: all var(--transition-base);
}

.mobile-drawer a:hover {
  color: var(--color-accent);
  padding-left: 24px;
}

.mobile-drawer .drawer-cta {
  margin-top: 28px;
  background: var(--color-accent);
  color: #FFFFFF;
  text-align: center;
  border-radius: 14px;
  font-size: 18px;
  padding: 18px 16px;
  box-shadow: 0 8px 22px rgba(217, 119, 6, 0.4);
}

.app-main {
  margin-left: var(--sidebar-w);
  flex: 1;
  min-height: 100vh;
  width: calc(100% - var(--sidebar-w));
}

.section {
  padding: 96px 64px;
  position: relative;
}

.section.tight {
  padding: 64px 64px;
}

.section-head {
  max-width: 720px;
  margin-bottom: 48px;
}

.section-head .cap-label {
  margin-bottom: 18px;
}

.section-head h2 {
  margin-bottom: 14px;
}

.section-head p {
  font-size: 17px;
  max-width: 600px;
  color: var(--color-text-secondary);
}

.hero {
  min-height: 100vh;
  padding: 64px 64px 80px;
  position: relative;
  overflow: hidden;
  background: var(--color-bg);
  display: flex;
  align-items: center;
}

.hero-grid {
  display: grid;
  grid-template-columns: 55% 45%;
  gap: 48px;
  align-items: center;
  width: 100%;
  max-width: 1400px;
  margin: 0 auto;
  position: relative;
  z-index: 2;
}

.hero-text h1 {
  margin-bottom: 22px;
}

.hero-sub {
  font-family: var(--font-mono);
  font-size: 13px;
  color: var(--color-text-secondary);
  margin-bottom: 36px;
  padding: 10px 18px;
  background: var(--color-cream);
  border-left: 3px solid var(--color-accent);
  border-radius: 0 8px 8px 0;
  display: inline-block;
  letter-spacing: 0.03em;
}

.hero-cta-row {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  margin-top: 24px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 18px 32px;
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 15px;
  border-radius: 14px;
  border: 2px solid transparent;
  cursor: pointer;
  transition: all var(--transition-base);
  text-decoration: none;
  white-space: nowrap;
  min-height: 56px;
  line-height: 1.2;
}

.btn-primary {
  background: var(--color-accent);
  color: #FFFFFF;
  box-shadow: 0 12px 32px rgba(217, 119, 6, 0.45);
}

.btn-primary:hover {
  background: var(--color-accent-dark);
  color: #FFFFFF;
  transform: translateY(-3px);
  box-shadow: 0 18px 40px rgba(217, 119, 6, 0.55);
}

.btn-outline {
  background: var(--color-bg);
  color: var(--color-accent-dark);
  border-color: var(--color-accent);
  box-shadow: 0 4px 14px rgba(217, 119, 6, 0.10);
}

.btn-outline:hover {
  background: var(--color-cream);
  color: var(--color-accent-dark);
  transform: translateY(-3px);
}

.btn-ghost {
  background: transparent;
  color: var(--color-text-primary);
  border-color: var(--color-border);
}

.btn-ghost:hover {
  background: var(--color-cream);
  color: var(--color-accent-dark);
}

.btn-arrow::after {
  content: "›";
  font-size: 22px;
  margin-left: 4px;
  transition: transform var(--transition-base);
}

.btn-arrow:hover::after {
  transform: translateX(4px);
}

.floating-card {
  background: var(--color-card);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  padding: 32px;
  box-shadow: var(--shadow-card);
  transition: all var(--transition-spring);
  position: relative;
  overflow: hidden;
  z-index: 1;
}

.floating-card:hover {
  transform: translateY(-6px) scale(1.02);
  box-shadow: var(--shadow-card-hover);
  border-color: var(--color-accent);
  z-index: 10;
}

.hero-visual {
  position: relative;
  height: 540px;
  border-radius: var(--radius-xl);
  background: linear-gradient(135deg, var(--color-cream) 0%, var(--color-honey) 100%);
  overflow: hidden;
  box-shadow: var(--shadow-deep);
  border: 1px solid var(--color-border);
}

.hero-visual .hero-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.hero-visual::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 0%, rgba(69, 26, 3, 0.15) 100%);
  z-index: 2;
  pointer-events: none;
}

.hero-floating-decor {
  position: absolute;
  border-radius: var(--radius-md);
  z-index: 1;
  pointer-events: none;
  box-shadow: 0 20px 60px rgba(217, 119, 6, 0.20);
}

.hero-floating-decor.d1 {
  width: 180px;
  height: 180px;
  background: var(--color-honey);
  top: 6%;
  right: 8%;
  transform: rotate(8deg);
  opacity: 0.85;
}

.hero-floating-decor.d2 {
  width: 120px;
  height: 120px;
  background: var(--color-accent);
  bottom: 12%;
  left: 6%;
  transform: rotate(-12deg);
  opacity: 0.55;
}

.hero-floating-decor.d3 {
  width: 90px;
  height: 90px;
  background: var(--color-cream);
  border: 2px solid var(--color-accent);
  top: 50%;
  right: 4%;
  transform: rotate(15deg);
  opacity: 0.92;
}

.hero-floating-decor.d4 {
  width: 70px;
  height: 70px;
  background: var(--color-accent);
  top: 14%;
  left: 4%;
  border-radius: 50%;
  opacity: 0.35;
}

.hero-grid-bg {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(var(--color-border) 1px, transparent 1px),
    linear-gradient(90deg, var(--color-border) 1px, transparent 1px);
  background-size: 50px 50px;
  opacity: 0.18;
  z-index: 0;
  pointer-events: none;
}

.bg-honey-grid {
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(circle at 20% 30%, var(--color-honey) 0%, transparent 22%),
    radial-gradient(circle at 80% 70%, var(--color-cream) 0%, transparent 28%),
    radial-gradient(circle at 50% 50%, var(--color-border) 0%, transparent 18%);
  opacity: 0.5;
  z-index: 0;
  pointer-events: none;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  margin-top: 40px;
}

.service-card {
  background: var(--color-card);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  padding: 0;
  overflow: hidden;
  box-shadow: var(--shadow-card);
  transition: all var(--transition-spring);
  display: flex;
  flex-direction: column;
}

.service-card:hover {
  transform: translateY(-8px) scale(1.02);
  box-shadow: var(--shadow-card-hover);
  border-color: var(--color-accent);
  z-index: 10;
}

.service-thumb {
  width: 100%;
  height: 220px;
  overflow: hidden;
  background: linear-gradient(135deg, var(--color-cream) 0%, var(--color-honey) 100%);
  position: relative;
}

.service-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.service-card:hover .service-thumb img {
  transform: scale(1.06);
}

.service-body {
  padding: 26px 26px 30px;
  display: flex;
  flex-direction: column;
  flex: 1;
}

.service-body h3 {
  margin-bottom: 10px;
  font-size: 21px;
}

.service-meta {
  font-family: var(--font-mono);
  font-size: 12px;
  color: var(--color-text-secondary);
  letter-spacing: 0.04em;
  margin-bottom: 14px;
  display: flex;
  gap: 12px;
  align-items: center;
}

.service-meta .dot {
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: var(--color-accent);
}

.service-price {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 22px;
  color: var(--color-accent-dark);
  margin: 14px 0 18px;
}

.service-price small {
  font-size: 13px;
  font-weight: 400;
  color: var(--color-text-secondary);
  font-family: var(--font-body);
  margin-left: 4px;
}

.service-link {
  margin-top: auto;
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 14px;
  color: var(--color-accent-dark);
  display: inline-flex;
  align-items: center;
  gap: 6px;
  transition: gap var(--transition-base);
}

.service-link:hover {
  gap: 12px;
  color: var(--color-accent-dark);
}

.service-link::after {
  content: "→";
  font-size: 18px;
}

.process-graph {
  position: relative;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 36px;
  margin-top: 56px;
}

.process-node {
  background: var(--color-card);
  border: 1px solid var(--color-border);
  border-radius: 50%;
  aspect-ratio: 1 / 1;
  max-width: 240px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 24px;
  box-shadow: var(--shadow-card);
  position: relative;
  transition: all var(--transition-spring);
}

.process-node:hover {
  transform: scale(1.08);
  border-color: var(--color-accent);
  z-index: 10;
  box-shadow: var(--shadow-card-hover);
}

.process-num {
  font-family: var(--font-heading);
  font-size: 38px;
  font-weight: 800;
  color: var(--color-accent);
  line-height: 1;
  margin-bottom: 10px;
}

.process-node h4 {
  font-family: var(--font-heading);
  font-size: 17px;
  font-weight: 700;
  color: var(--color-text-primary);
  margin: 0 0 6px;
}

.process-node p {
  font-size: 13px;
  color: var(--color-text-secondary);
  margin: 0;
}

.bento-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-auto-rows: 220px;
  gap: 22px;
  margin-top: 40px;
}

.bento-cell {
  background: var(--color-card);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-card);
  position: relative;
  transition: all var(--transition-spring);
}

.bento-cell:hover {
  transform: scale(1.03);
  border-color: var(--color-accent);
  z-index: 10;
  box-shadow: var(--shadow-card-hover);
}

.bento-cell.size-2x2 {
  grid-column: span 2;
  grid-row: span 2;
}

.bento-cell.size-1x2 {
  grid-row: span 2;
}

.bento-cell.size-2x1 {
  grid-column: span 2;
}

.bento-cell img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.bento-cell .bento-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 50%, rgba(69, 26, 3, 0.85) 100%);
  z-index: 2;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 22px;
  color: #FFFFFF;
}

.bento-cell .bento-overlay h4 {
  font-family: var(--font-heading);
  color: #FFFFFF;
  font-size: 19px;
  margin: 0 0 4px;
}

.bento-cell .bento-overlay p {
  font-family: var(--font-mono);
  color: var(--color-honey);
  font-size: 11px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin: 0;
}

.split-screen {
  display: grid;
  grid-template-columns: 50% 50%;
  gap: 64px;
  align-items: start;
}

.split-screen .sticky-photo {
  position: sticky;
  top: 80px;
  height: 600px;
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-deep);
  border: 1px solid var(--color-border);
}

.split-screen .sticky-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.split-content h2 {
  margin-bottom: 22px;
}

.split-content p {
  font-size: 16px;
  margin-bottom: 18px;
}

.fact-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-top: 32px;
  padding: 26px 0;
  border-top: 1px solid var(--color-border);
  border-bottom: 1px solid var(--color-border);
}

.fact-block {
  text-align: center;
}

.fact-num {
  font-family: var(--font-heading);
  font-size: 36px;
  font-weight: 800;
  color: var(--color-accent);
  line-height: 1;
  margin-bottom: 6px;
}

.fact-label {
  font-family: var(--font-mono);
  font-size: 11px;
  color: var(--color-text-secondary);
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.advantages-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
  margin-top: 40px;
}

.advantage-card {
  background: var(--color-card);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  padding: 32px 28px;
  box-shadow: var(--shadow-card);
  transition: all var(--transition-spring);
  position: relative;
  overflow: hidden;
}

.advantage-card:hover {
  transform: scale(1.05);
  border-color: var(--color-accent);
  z-index: 10;
  box-shadow: var(--shadow-card-hover);
}

.advantage-num {
  font-family: var(--font-heading);
  font-size: 52px;
  font-weight: 800;
  color: var(--color-accent);
  line-height: 1;
  margin-bottom: 18px;
  letter-spacing: -0.04em;
}

.advantage-card h4 {
  font-family: var(--font-heading);
  font-size: 18px;
  font-weight: 700;
  color: var(--color-text-primary);
  margin: 0 0 10px;
}

.advantage-card p {
  font-size: 14px;
  color: var(--color-text-secondary);
  margin: 0;
}

.team-list {
  margin-top: 40px;
  display: flex;
  flex-direction: column;
  gap: 0;
}

.team-row {
  display: grid;
  grid-template-columns: 80px 1fr auto;
  gap: 26px;
  align-items: center;
  padding: 24px 0;
  border-bottom: 1px solid var(--color-border);
  transition: all var(--transition-base);
  position: relative;
  cursor: pointer;
}

.team-row:hover {
  padding-left: 16px;
  background: var(--color-cream);
  border-radius: 12px;
  border-bottom-color: transparent;
}

.team-photo {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  overflow: hidden;
  border: 3px solid var(--color-accent);
  background: linear-gradient(135deg, var(--color-honey), var(--color-cream));
  flex-shrink: 0;
}

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

.team-info h4 {
  font-family: var(--font-heading);
  font-size: 22px;
  font-weight: 700;
  margin: 0 0 4px;
  color: var(--color-text-primary);
}

.team-info p {
  font-family: var(--font-mono);
  font-size: 12px;
  color: var(--color-accent);
  letter-spacing: 0.06em;
  text-transform: uppercase;
  margin: 0;
}

.team-exp {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 26px;
  color: var(--color-text-secondary);
}

.team-exp small {
  font-size: 11px;
  font-weight: 400;
  font-family: var(--font-body);
  margin-left: 4px;
  color: var(--color-text-secondary);
}

.testimonials-3d {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  margin-top: 40px;
  perspective: 1200px;
}

.testimonial-card {
  background: var(--color-card);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  padding: 32px;
  box-shadow: var(--shadow-card);
  transition: all var(--transition-spring);
  position: relative;
  display: flex;
  flex-direction: column;
}

.testimonial-card.feature {
  transform: scale(1.04);
  border-color: var(--color-accent);
  box-shadow: var(--shadow-card-hover);
  z-index: 5;
}

.testimonial-card:hover {
  transform: scale(1.06) translateY(-6px);
  z-index: 10;
  border-color: var(--color-accent);
}

.testimonial-card.feature:hover {
  transform: scale(1.08) translateY(-6px);
}

.stars {
  color: var(--color-accent);
  font-size: 18px;
  margin-bottom: 16px;
  letter-spacing: 4px;
}

.testimonial-text {
  font-family: var(--font-body);
  font-size: 15px;
  line-height: 1.7;
  color: var(--color-text-primary);
  margin-bottom: 22px;
  flex: 1;
}

.testimonial-meta {
  display: flex;
  align-items: center;
  gap: 14px;
  padding-top: 18px;
  border-top: 1px solid var(--color-border);
}

.testimonial-photo {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  overflow: hidden;
  border: 2px solid var(--color-accent);
  flex-shrink: 0;
  background: linear-gradient(135deg, var(--color-honey), var(--color-cream));
}

.testimonial-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.testimonial-meta strong {
  font-family: var(--font-heading);
  font-size: 15px;
  color: var(--color-text-primary);
  display: block;
}

.testimonial-meta small {
  font-family: var(--font-mono);
  font-size: 11px;
  color: var(--color-text-secondary);
  letter-spacing: 0.04em;
}

.faq-list {
  margin-top: 40px;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.faq-item {
  background: var(--color-card);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: 0 4px 12px rgba(217, 119, 6, 0.06);
  transition: all var(--transition-base);
}

.faq-item.open {
  border-color: var(--color-accent);
  box-shadow: var(--shadow-card);
}

.faq-q {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 22px 26px;
  font-family: var(--font-heading);
  font-size: 16px;
  font-weight: 600;
  color: var(--color-text-primary);
  text-align: left;
  background: transparent;
  cursor: pointer;
  gap: 16px;
}

.faq-toggle {
  width: 32px;
  height: 32px;
  flex-shrink: 0;
  border-radius: 50%;
  background: var(--color-cream);
  color: var(--color-accent);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-heading);
  font-size: 18px;
  font-weight: 700;
  transition: all var(--transition-base);
}

.faq-item.open .faq-toggle {
  background: var(--color-accent);
  color: #FFFFFF;
  transform: rotate(45deg);
}

.faq-a {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease, padding 0.4s ease;
  padding: 0 26px;
}

.faq-item.open .faq-a {
  max-height: 320px;
  padding: 0 26px 24px;
}

.faq-a p {
  margin: 0;
  font-size: 15px;
  color: var(--color-text-secondary);
}

.contact-grid {
  display: grid;
  grid-template-columns: 50% 50%;
  gap: 56px;
  margin-top: 40px;
}

.contact-form {
  background: var(--color-card);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  padding: 40px;
  box-shadow: var(--shadow-card);
}

.field {
  margin-bottom: 22px;
}

.field label {
  display: block;
  font-family: var(--font-heading);
  font-size: 13px;
  font-weight: 600;
  color: var(--color-text-primary);
  margin-bottom: 8px;
  letter-spacing: 0.04em;
}

.field input,
.field textarea,
.field select {
  width: 100%;
  padding: 14px 0;
  border: none;
  border-bottom: 2px solid var(--color-border);
  background: transparent;
  font-family: var(--font-body);
  font-size: 15px;
  color: var(--color-text-primary);
  transition: border-color var(--transition-base);
  border-radius: 0;
}

.field input::placeholder,
.field textarea::placeholder {
  color: var(--color-text-secondary);
  opacity: 0.7;
}

.field input:focus,
.field textarea:focus,
.field select:focus {
  outline: none;
  border-bottom-color: var(--color-accent);
}

.field textarea {
  resize: vertical;
  min-height: 100px;
}

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

.info-card {
  background: var(--color-card);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  padding: 22px 26px;
  box-shadow: 0 4px 14px rgba(217, 119, 6, 0.08);
  transition: all var(--transition-base);
}

.info-card:hover {
  border-color: var(--color-accent);
  transform: translateY(-2px);
}

.info-label {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--color-accent);
  margin-bottom: 8px;
}

.info-value {
  font-family: var(--font-heading);
  font-size: 17px;
  font-weight: 600;
  color: var(--color-text-primary);
  word-break: break-word;
}

.info-value.large {
  font-size: 26px;
  color: var(--color-accent-dark);
}

.site-footer {
  background: var(--color-accent);
  color: #FFFFFF;
  border-radius: var(--radius-xl) var(--radius-xl) 0 0;
  padding: 64px 64px 32px;
  margin-top: 40px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 36px;
  margin-bottom: 36px;
}

.footer-col h5 {
  font-family: var(--font-heading);
  font-size: 15px;
  font-weight: 700;
  color: #FFFFFF;
  margin: 0 0 16px;
  letter-spacing: 0.04em;
}

.footer-col p {
  color: rgba(255, 255, 255, 0.9);
  font-size: 14px;
  margin-bottom: 14px;
}

.footer-col ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.footer-col li a {
  color: rgba(255, 255, 255, 0.85);
  font-size: 14px;
  transition: color var(--transition-base);
}

.footer-col li a:hover {
  color: #FFFFFF;
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.25);
  padding-top: 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
  font-family: var(--font-mono);
  font-size: 12px;
  color: rgba(255, 255, 255, 0.85);
  letter-spacing: 0.02em;
}

.footer-bottom a {
  color: #FFFFFF;
  margin-left: 14px;
}

.cookie-banner {
  position: fixed;
  bottom: 20px;
  left: 20px;
  right: 20px;
  max-width: 460px;
  background: var(--color-card);
  border: 1px solid var(--color-accent);
  border-radius: var(--radius-lg);
  padding: 24px 26px;
  box-shadow: var(--shadow-deep);
  z-index: 200;
}

.cookie-banner h4 {
  font-family: var(--font-heading);
  font-size: 17px;
  font-weight: 700;
  color: var(--color-text-primary);
  margin: 0 0 8px;
}

.cookie-banner p {
  font-size: 13px;
  color: var(--color-text-secondary);
  margin: 0 0 18px;
  line-height: 1.55;
}

.cookie-banner .cookie-actions {
  display: flex;
  gap: 10px;
}

.cookie-banner .btn {
  padding: 12px 18px;
  font-size: 13px;
  min-height: 44px;
  flex: 1;
}

.cookie-banner.hidden {
  display: none;
}

.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

.hero.compact {
  min-height: auto;
  padding: 64px 64px;
  background: linear-gradient(180deg, var(--color-bg) 0%, var(--color-cream) 100%);
}

.hero.compact .hero-grid {
  grid-template-columns: 1fr;
}

.hero.compact .hero-visual {
  height: 320px;
  max-width: 720px;
  margin: 0 auto;
  width: 100%;
}

.hero.compact .hero-floating-decor {
  display: none;
}

.thanks-box {
  background: var(--color-card);
  border: 1px solid var(--color-accent);
  border-radius: var(--radius-xl);
  padding: 64px 56px;
  text-align: center;
  box-shadow: var(--shadow-card);
  max-width: 720px;
  margin: 64px auto;
}

.thanks-icon {
  width: 96px;
  height: 96px;
  margin: 0 auto 28px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--color-accent), var(--color-honey));
  color: #FFFFFF;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 48px;
  box-shadow: 0 16px 40px rgba(217, 119, 6, 0.4);
}

.legal-content {
  max-width: 820px;
  margin: 0 auto;
  background: var(--color-card);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  padding: 56px 64px;
  box-shadow: var(--shadow-card);
}

.legal-content h2 {
  margin-bottom: 24px;
  padding-bottom: 18px;
  border-bottom: 2px solid var(--color-border);
}

.legal-content h3 {
  margin-top: 32px;
  margin-bottom: 12px;
  font-size: 22px;
  color: var(--color-accent-dark);
}

.legal-content p, .legal-content li {
  font-size: 15px;
  line-height: 1.75;
  color: var(--color-text-secondary);
}

.legal-content ul {
  padding-left: 24px;
}

.legal-content ul li {
  margin-bottom: 8px;
}

.career-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 22px;
  margin-top: 40px;
}

.career-card {
  background: var(--color-card);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  padding: 28px;
  box-shadow: var(--shadow-card);
  transition: all var(--transition-spring);
}

.career-card:hover {
  transform: translateY(-4px);
  border-color: var(--color-accent);
  box-shadow: var(--shadow-card-hover);
}

.career-card h3 {
  font-size: 20px;
  margin-bottom: 8px;
}

.career-meta {
  font-family: var(--font-mono);
  font-size: 12px;
  color: var(--color-accent);
  letter-spacing: 0.05em;
  text-transform: uppercase;
  margin-bottom: 14px;
  display: flex;
  gap: 14px;
}

.career-meta span::before {
  content: "●";
  margin-right: 6px;
  color: var(--color-accent);
}

.career-card p {
  font-size: 14px;
}

.gallery-banner {
  background: var(--color-card);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  padding: 28px 32px;
  margin-top: 28px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 16px;
  box-shadow: var(--shadow-card);
}

.banner-label {
  font-family: var(--font-heading);
  font-size: 22px;
  font-weight: 700;
  color: var(--color-text-primary);
}

.banner-sub {
  font-family: var(--font-mono);
  font-size: 13px;
  color: var(--color-text-secondary);
  margin-top: 4px;
}

@media (max-width: 1100px) {
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .bento-grid { grid-template-columns: repeat(3, 1fr); }
  .advantages-row { grid-template-columns: repeat(2, 1fr); }
  .testimonials-3d { grid-template-columns: repeat(2, 1fr); }
  .testimonial-card.feature { grid-column: span 2; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .process-graph { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 900px) {
  :root { --sidebar-w: 0px; }
  .app-sidebar { display: none; }
  .mobile-header { display: flex; }
  .app-main { margin-left: 0; width: 100%; }
  .hero-grid { grid-template-columns: 1fr; }
  .hero-visual { height: 360px; }
  .split-screen { grid-template-columns: 1fr; gap: 32px; }
  .split-screen .sticky-photo { position: relative; top: 0; height: 360px; }
  .contact-grid { grid-template-columns: 1fr; gap: 32px; }
  .section { padding: 64px 24px; }
  .section.tight { padding: 48px 24px; }
  .hero { padding: 96px 24px 64px; }
  .hero.compact { padding: 96px 24px 48px; }
  .hero-floating-decor { display: none; }
  .site-footer { padding: 56px 24px 24px; border-radius: 32px 32px 0 0; }
  .legal-content { padding: 36px 28px; }
  .bento-grid { grid-template-columns: repeat(2, 1fr); grid-auto-rows: 180px; }
  .bento-cell.size-2x2 { grid-column: span 2; grid-row: span 2; }
  .bento-cell.size-2x1 { grid-column: span 2; }
}

@media (max-width: 640px) {
  .services-grid { grid-template-columns: 1fr; }
  .bento-grid { grid-template-columns: 1fr; }
  .bento-cell, .bento-cell.size-2x2, .bento-cell.size-1x2, .bento-cell.size-2x1 {
    grid-column: span 1;
    grid-row: span 1;
  }
  .advantages-row { grid-template-columns: 1fr; }
  .testimonials-3d { grid-template-columns: 1fr; }
  .testimonial-card.feature { grid-column: span 1; }
  .footer-grid { grid-template-columns: 1fr; }
  .process-graph { grid-template-columns: 1fr; }
  .career-grid { grid-template-columns: 1fr; }
  .hero-cta-row { flex-direction: column; }
  .btn { width: 100%; }
  .cookie-banner { left: 12px; right: 12px; bottom: 12px; padding: 18px 20px; }
  .cookie-banner .cookie-actions { flex-direction: column; }
  h1 { font-size: clamp(34px, 9vw, 56px) !important; }
  h2 { font-size: clamp(26px, 6vw, 38px) !important; }
}
